less copy protection, more size visualization
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
 
 
 

45573 lines
1.1 MiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes) {
  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. name: value.name,
  16. info: value.info,
  17. rename: value.rename,
  18. default: value.default
  19. }
  20. if (value.weight) {
  21. views[key].attributes.weight = {
  22. name: "Mass",
  23. power: 3,
  24. type: "mass",
  25. base: value.weight
  26. };
  27. }
  28. if (value.volume) {
  29. views[key].attributes.volume = {
  30. name: "Volume",
  31. power: 3,
  32. type: "volume",
  33. base: value.volume
  34. };
  35. }
  36. if (value.capacity) {
  37. views[key].attributes.capacity = {
  38. name: "Capacity",
  39. power: 3,
  40. type: "volume",
  41. base: value.capacity
  42. }
  43. }
  44. if (value.energyNeed) {
  45. views[key].attributes.capacity = {
  46. name: "Food Intake",
  47. power: 3,
  48. type: "energy",
  49. base: value.energyNeed
  50. }
  51. }
  52. });
  53. return createEntityMaker(info, views, defaultSizes);
  54. }
  55. const speciesData = {
  56. animal: {
  57. name: "Animal"
  58. },
  59. dog: {
  60. name: "Dog",
  61. parents: [
  62. "canine"
  63. ]
  64. },
  65. canine: {
  66. name: "Canine",
  67. parents: [
  68. "mammal"
  69. ]
  70. },
  71. crux: {
  72. name: "Crux",
  73. parents: [
  74. "mammal"
  75. ]
  76. },
  77. mammal: {
  78. name: "Mammal",
  79. parents: [
  80. "animal"
  81. ]
  82. },
  83. "rough-collie": {
  84. name: "Rough Collie",
  85. parents: [
  86. "dog"
  87. ]
  88. },
  89. dragon: {
  90. name: "Dragon",
  91. parents: [
  92. "reptile"
  93. ]
  94. },
  95. reptile: {
  96. name: "Reptile",
  97. parents: [
  98. "animal"
  99. ]
  100. },
  101. woodpecker: {
  102. name: "Woodpecker",
  103. parents: [
  104. "avian"
  105. ]
  106. },
  107. avian: {
  108. name: "Avian",
  109. parents: [
  110. "animal"
  111. ]
  112. },
  113. kitsune: {
  114. name: "Kitsune",
  115. parents: [
  116. "fox"
  117. ]
  118. },
  119. fox: {
  120. name: "Fox",
  121. parents: [
  122. "mammal"
  123. ]
  124. },
  125. pokemon: {
  126. name: "Pokemon"
  127. },
  128. tiger: {
  129. name: "Tiger",
  130. parents: [
  131. "cat"
  132. ]
  133. },
  134. cat: {
  135. name: "Cat",
  136. parents: [
  137. "feliform"
  138. ]
  139. },
  140. "blue-jay": {
  141. name: "Blue Jay",
  142. parents: [
  143. "avian"
  144. ]
  145. },
  146. wolf: {
  147. name: "Wolf",
  148. parents: [
  149. "mammal"
  150. ]
  151. },
  152. coyote: {
  153. name: "Coyote",
  154. parents: [
  155. "mammal"
  156. ]
  157. },
  158. raccoon: {
  159. name: "Raccoon",
  160. parents: [
  161. "mammal"
  162. ]
  163. },
  164. weasel: {
  165. name: "Weasel",
  166. parents: [
  167. "mustelid"
  168. ]
  169. },
  170. "red-panda": {
  171. name: "Red Panda",
  172. parents: [
  173. "mammal"
  174. ]
  175. },
  176. dolphin: {
  177. name: "Dolphin",
  178. parents: [
  179. "mammal"
  180. ]
  181. },
  182. "african-wild-dog": {
  183. name: "African Wild Dog",
  184. parents: [
  185. "canine"
  186. ]
  187. },
  188. "hyena": {
  189. name: "Hyena",
  190. parents: [
  191. "feliform"
  192. ]
  193. },
  194. "carbuncle": {
  195. name: "Carbuncle",
  196. parents: [
  197. "animal"
  198. ]
  199. },
  200. bat: {
  201. name: "Bat",
  202. parents: [
  203. "mammal"
  204. ]
  205. },
  206. "leaf-nosed-bat": {
  207. name: "Leaf-Nosed Bat",
  208. parents: [
  209. "bat"
  210. ]
  211. },
  212. "fish": {
  213. name: "Fish",
  214. parents: [
  215. "animal"
  216. ]
  217. },
  218. "ram": {
  219. name: "Ram",
  220. parents: [
  221. "mammal"
  222. ]
  223. },
  224. "demon": {
  225. name: "Demon",
  226. parents: [
  227. "supernatural"
  228. ]
  229. },
  230. "cougar": {
  231. name: "Cougar",
  232. parents: [
  233. "cat"
  234. ]
  235. },
  236. "goat": {
  237. name: "Goat",
  238. parents: [
  239. "mammal"
  240. ]
  241. },
  242. "lion": {
  243. name: "Lion",
  244. parents: [
  245. "cat"
  246. ]
  247. },
  248. "harpy-eager": {
  249. name: "Harpy Eagle",
  250. parents: [
  251. "avian"
  252. ]
  253. },
  254. "deer": {
  255. name: "Deer",
  256. parents: [
  257. "mammal"
  258. ]
  259. },
  260. "phoenix": {
  261. name: "Phoenix",
  262. parents: [
  263. "avian"
  264. ]
  265. },
  266. "aeromorph": {
  267. name: "Aeromorph",
  268. parents: [
  269. "machine"
  270. ]
  271. },
  272. "machine": {
  273. name: "Machine",
  274. },
  275. "android": {
  276. name: "Android",
  277. parents: [
  278. "machine"
  279. ]
  280. },
  281. "jackal": {
  282. name: "Jackal",
  283. parents: [
  284. "canine"
  285. ]
  286. },
  287. "corvid": {
  288. name: "Corvid",
  289. parents: [
  290. "avian"
  291. ]
  292. },
  293. "pharaoh-hound": {
  294. name: "Pharaoh Hound",
  295. parents: [
  296. "dog"
  297. ]
  298. },
  299. "skunk": {
  300. name: "Skunk",
  301. parents: [
  302. "mammal"
  303. ]
  304. },
  305. "shark": {
  306. name: "Shark",
  307. parents: [
  308. "fish"
  309. ]
  310. },
  311. "black-panther": {
  312. name: "Black Panther",
  313. parents: [
  314. "cat"
  315. ]
  316. },
  317. "umbra": {
  318. name: "Umbra",
  319. parents: [
  320. "animal"
  321. ]
  322. },
  323. "raven": {
  324. name: "Raven",
  325. parents: [
  326. "corvid"
  327. ]
  328. },
  329. "snow-leopard": {
  330. name: "Snow Leopard",
  331. parents: [
  332. "cat"
  333. ]
  334. },
  335. "barbary-lion": {
  336. name: "Barbary Lion",
  337. parents: [
  338. "lion"
  339. ]
  340. },
  341. "dra'gal": {
  342. name: "Dra'Gal",
  343. parents: [
  344. "mammal"
  345. ]
  346. },
  347. "german-shepherd": {
  348. name: "German Shepherd",
  349. parents: [
  350. "dog"
  351. ]
  352. },
  353. "bayleef": {
  354. name: "Bayleef",
  355. parents: [
  356. "pokemon"
  357. ]
  358. },
  359. "mouse": {
  360. name: "Mouse",
  361. parents: [
  362. "rodent"
  363. ]
  364. },
  365. "rat": {
  366. name: "Rat",
  367. parents: [
  368. "mammal"
  369. ]
  370. },
  371. "hoshiko-beast": {
  372. name: "Hoshiko Beast",
  373. parents: ["animal"]
  374. },
  375. "snow-jugani": {
  376. name: "Snow Jugani",
  377. parents: ["cat"]
  378. },
  379. "patamon": {
  380. name: "Patamon",
  381. parents: ["digimon"]
  382. },
  383. "digimon": {
  384. name: "Digimon",
  385. },
  386. "jugani": {
  387. name: "Jugani",
  388. parents: ["cat"]
  389. },
  390. "luxray": {
  391. name: "Luxray",
  392. parents: ["pokemon"]
  393. },
  394. "mech": {
  395. name: "Mech",
  396. parents: ["machine"]
  397. },
  398. "zoid": {
  399. name: "Zoid",
  400. parents: ["mech"]
  401. },
  402. "monster": {
  403. name: "Monster",
  404. parents: ["animal"]
  405. },
  406. "foo-dog": {
  407. name: "Foo Dog",
  408. parents: ["mammal"]
  409. },
  410. "elephant": {
  411. name: "Elephant",
  412. parents: ["mammal"]
  413. },
  414. "eagle": {
  415. name: "Eagle",
  416. parents: ["avian"]
  417. },
  418. "cow": {
  419. name: "Cow",
  420. parents: ["mammal"]
  421. },
  422. "crocodile": {
  423. name: "Crocodile",
  424. parents: ["reptile"]
  425. },
  426. "borzoi": {
  427. name: "Borzoi",
  428. parents: ["dog"]
  429. },
  430. "snake": {
  431. name: "Snake",
  432. parents: ["reptile"]
  433. },
  434. "horned-bush-viper": {
  435. name: "Horned Bush Viper",
  436. parents: ["snake"]
  437. },
  438. "cobra": {
  439. name: "Cobra",
  440. parents: ["snake"]
  441. },
  442. "harpy-eagle": {
  443. name: "Harpy Eagle",
  444. parents: ["eagle"]
  445. },
  446. "raptor": {
  447. name: "Raptor",
  448. parents: ["dinosaur"]
  449. },
  450. "dinosaur": {
  451. name: "Dinosaur",
  452. parents: ["reptile"]
  453. },
  454. "veilhound": {
  455. name: "Veilhound",
  456. parents: ["hellhound"]
  457. },
  458. "hellhound": {
  459. name: "Hellhound",
  460. parents: ["canine", "demon"]
  461. },
  462. "insect": {
  463. name: "Insect",
  464. parents: ["animal"]
  465. },
  466. "beetle": {
  467. name: "Beetle",
  468. parents: ["insect"]
  469. },
  470. "moth": {
  471. name: "Moth",
  472. parents: ["insect"]
  473. },
  474. "eastern-dragon": {
  475. name: "Eastern Dragon",
  476. parents: ["dragon"]
  477. },
  478. "jaguar": {
  479. name: "Jaguar",
  480. parents: ["cat"]
  481. },
  482. "horse": {
  483. name: "Horse",
  484. parents: ["mammal"]
  485. },
  486. "sergal": {
  487. name: "Sergal",
  488. parents: ["mammal"]
  489. },
  490. "gryphon": {
  491. name: "Gryphon",
  492. parents: ["lion", "eagle"]
  493. },
  494. "robot": {
  495. name: "Robot",
  496. parents: ["machine"]
  497. },
  498. "medihound": {
  499. name: "Medihound",
  500. parents: ["robot", "dog"]
  501. },
  502. "sylveon": {
  503. name: "Sylveon",
  504. parents: ["pokemon"]
  505. },
  506. "catgirl": {
  507. name: "Catgirl",
  508. parents: ["mammal"]
  509. },
  510. "cowgirl": {
  511. name: "Cowgirl",
  512. parents: ["mammal"]
  513. },
  514. "pony": {
  515. name: "Pony",
  516. parents: ["horse"]
  517. },
  518. "rabbit": {
  519. name: "Rabbit",
  520. parents: ["mammal"]
  521. },
  522. "fennec-fox": {
  523. name: "Fennec Fox",
  524. parents: ["fox"]
  525. },
  526. "azodian": {
  527. name: "Azodian",
  528. parents: ["mouse"]
  529. },
  530. "shiba-inu": {
  531. name: "Shiba Inu",
  532. parents: ["dog"]
  533. },
  534. "changeling": {
  535. name: "Changeling",
  536. parents: ["insect"]
  537. },
  538. "cheetah": {
  539. name: "Cheetah",
  540. parents: ["cat"]
  541. },
  542. "golden-jackal": {
  543. name: "Golden Jackal",
  544. parents: ["jackal"]
  545. },
  546. "manectric": {
  547. name: "Manectric",
  548. parents: ["pokemon"]
  549. },
  550. "rat": {
  551. name: "Rat",
  552. parents: ["rodent"]
  553. },
  554. "rodent": {
  555. name: "Rodent",
  556. parents: ["mammal"]
  557. },
  558. "octocoon": {
  559. name: "Octocoon",
  560. parents: ["raccoon", "octopus"]
  561. },
  562. "octopus": {
  563. name: "Octopus",
  564. parents: ["fish"]
  565. },
  566. "werewolf": {
  567. name: "Werewolf",
  568. parents: ["wolf", "werebeast"]
  569. },
  570. "werebeast": {
  571. name: "Werebeast",
  572. parents: ["monster"]
  573. },
  574. "meerkat": {
  575. name: "Meerkat",
  576. parents: ["mammal"]
  577. },
  578. "human": {
  579. name: "Human",
  580. parents: ["mammal"]
  581. },
  582. "geth": {
  583. name: "Geth",
  584. parents: ["android"]
  585. },
  586. "husky": {
  587. name: "Husky",
  588. parents: ["dog"]
  589. },
  590. "long-eared-bat": {
  591. name: "Long Eared Bat",
  592. parents: ["bat"]
  593. },
  594. "lizard": {
  595. name: "Lizard",
  596. parents: ["reptile"]
  597. },
  598. "salamander": {
  599. name: "Salamander",
  600. parents: ["lizard"]
  601. },
  602. "chameleon": {
  603. name: "Chameleon",
  604. parents: ["lizard"]
  605. },
  606. "gecko": {
  607. name: "Gecko",
  608. parents: ["lizard"]
  609. },
  610. "kobold": {
  611. name: "Kobold",
  612. parents: ["reptile"]
  613. },
  614. "charizard": {
  615. name: "Charizard",
  616. parents: ["pokemon"]
  617. },
  618. "lugia": {
  619. name: "Lugia",
  620. parents: ["pokemon"]
  621. },
  622. "cerberus": {
  623. name: "Cerberus",
  624. parents: ["dog"]
  625. },
  626. "tyrantrum": {
  627. name: "Tyrantrum",
  628. parents: ["pokemon"]
  629. },
  630. "lemur": {
  631. name: "Lemur",
  632. parents: ["mammal"]
  633. },
  634. "kelpie": {
  635. name: "Kelpie",
  636. parents: ["horse", "monster"]
  637. },
  638. "labrador": {
  639. name: "Labrador",
  640. parents: ["dog"]
  641. },
  642. "sylveon": {
  643. name: "Sylveon",
  644. parents: ["eeveelution"]
  645. },
  646. "eeveelution": {
  647. name: "Eeveelution",
  648. parents: ["pokemon"]
  649. },
  650. "polar-bear": {
  651. name: "Polar Bear",
  652. parents: ["bear"]
  653. },
  654. "bear": {
  655. name: "Bear",
  656. parents: ["mammal"]
  657. },
  658. "absol": {
  659. name: "Absol",
  660. parents: ["pokemon"]
  661. },
  662. "wolver": {
  663. name: "Wolver",
  664. parents: ["mammal"]
  665. },
  666. "rottweiler": {
  667. name: "Rottweiler",
  668. parents: ["dog"]
  669. },
  670. "zebra": {
  671. name: "Zebra",
  672. parents: ["horse"]
  673. },
  674. "yoshi": {
  675. name: "Yoshi",
  676. parents: ["lizard"]
  677. },
  678. "lynx": {
  679. name: "Lynx",
  680. parents: ["cat"]
  681. },
  682. "unknown": {
  683. name: "Unknown",
  684. parents: []
  685. },
  686. "thylacine": {
  687. name: "Thylacine",
  688. parents: ["mammal"]
  689. },
  690. "gabumon": {
  691. name: "Gabumon",
  692. parents: ["digimon"]
  693. },
  694. "border-collie": {
  695. name: "Border Collie",
  696. parents: ["dog"]
  697. },
  698. "imp": {
  699. name: "Imp",
  700. parents: ["demon"]
  701. },
  702. "kangaroo": {
  703. name: "Kangaroo",
  704. parents: ["marsupial"]
  705. },
  706. "renamon": {
  707. name: "Renamon",
  708. parents: ["digimon"]
  709. },
  710. "candy-orca-dragon": {
  711. name: "Candy Orca Dragon",
  712. parents: ["fish", "dragon", "candy"]
  713. },
  714. "sabertooth-tiger": {
  715. name: "Sabertooth Tiger",
  716. parents: ["cat"]
  717. },
  718. "espurr": {
  719. name: "Espurr",
  720. parents: ["pokemon"]
  721. },
  722. "otter": {
  723. name: "Otter",
  724. parents: ["mustelid"]
  725. },
  726. "elemental": {
  727. name: "Elemental",
  728. parents: ["mammal"]
  729. },
  730. "mew": {
  731. name: "Mew",
  732. parents: ["pokemon"]
  733. },
  734. "goodra": {
  735. name: "Goodra",
  736. parents: ["pokemon"]
  737. },
  738. "fairy": {
  739. name: "Fairy",
  740. parents: ["magical"]
  741. },
  742. "typhlosion": {
  743. name: "Typhlosion",
  744. parents: ["pokemon"]
  745. },
  746. "magical": {
  747. name: "Magical",
  748. parents: []
  749. },
  750. "xenomorph": {
  751. name: "Xenomorph",
  752. parents: ["monster", "alien"]
  753. },
  754. "charr": {
  755. name: "Charr",
  756. parents: ["cat"]
  757. },
  758. "siberian-husky": {
  759. name: "Siberian Husky",
  760. parents: ["husky"]
  761. },
  762. "alligator": {
  763. name: "Alligator",
  764. parents: ["reptile"]
  765. },
  766. "bernese-mountain-dog": {
  767. name: "Bernese Mountain Dog",
  768. parents: ["dog"]
  769. },
  770. "reshiram": {
  771. name: "Reshiram",
  772. parents: ["pokemon"]
  773. },
  774. "grizzly-bear": {
  775. name: "Grizzly Bear",
  776. parents: ["bear"]
  777. },
  778. "water-monitor": {
  779. name: "Water Monitor",
  780. parents: ["lizard"]
  781. },
  782. "banchofossa": {
  783. name: "Banchofossa",
  784. parents: ["mammal"]
  785. },
  786. "kirin": {
  787. name: "Kirin",
  788. parents: ["monster"]
  789. },
  790. "quilava": {
  791. name: "Quilava",
  792. parents: ["pokemon"]
  793. },
  794. "seviper": {
  795. name: "Seviper",
  796. parents: ["pokemon"]
  797. },
  798. "flying-fox": {
  799. name: "Flying Fox",
  800. parents: ["bat"]
  801. },
  802. "keynain": {
  803. name: "Keynain",
  804. parents: ["avian"]
  805. },
  806. "lucario": {
  807. name: "Lucario",
  808. parents: ["pokemon"]
  809. },
  810. "siamese-cat": {
  811. name: "Siamese Cat",
  812. parents: ["cat"]
  813. },
  814. "spider": {
  815. name: "Spider",
  816. parents: ["insect"]
  817. },
  818. "samurott": {
  819. name: "Samurott",
  820. parents: ["pokemon"]
  821. },
  822. "megalodon": {
  823. name: "Megalodon",
  824. parents: ["shark"]
  825. },
  826. "unicorn": {
  827. name: "Unicorn",
  828. parents: ["horse"]
  829. },
  830. "greninja": {
  831. name: "Greninja",
  832. parents: ["pokemon"]
  833. },
  834. "water-dragon": {
  835. name: "Water Dragon",
  836. parents: ["dragon"]
  837. },
  838. "cross-fox": {
  839. name: "Cross Fox",
  840. parents: ["fox"]
  841. },
  842. "synth": {
  843. name: "Synth",
  844. parents: ["machine"]
  845. },
  846. "construct": {
  847. name: "Construct",
  848. parents: []
  849. },
  850. "mexican-wolf": {
  851. name: "Mexican Wolf",
  852. parents: ["wolf"]
  853. },
  854. "leopard": {
  855. name: "Leopard",
  856. parents: ["cat"]
  857. },
  858. "pig": {
  859. name: "Pig",
  860. parents: ["mammal"]
  861. },
  862. "ampharos": {
  863. name: "Ampharos",
  864. parents: ["pokemon"]
  865. },
  866. "orca": {
  867. name: "Orca",
  868. parents: ["fish"]
  869. },
  870. "lycanroc": {
  871. name: "Lycanroc",
  872. parents: ["pokemon"]
  873. },
  874. "surkanu": {
  875. name: "Surkanu",
  876. parents: ["monster"]
  877. },
  878. "seal": {
  879. name: "Seal",
  880. parents: ["mammal"]
  881. },
  882. "keldeo": {
  883. name: "Keldeo",
  884. parents: ["pokemon"]
  885. },
  886. "great-dane": {
  887. name: "Great Dane",
  888. parents: ["dog"]
  889. },
  890. "black-backed-jackal": {
  891. name: "Black Backed Jackal",
  892. parents: ["jackal"]
  893. },
  894. "sheep": {
  895. name: "Sheep",
  896. parents: ["mammal"]
  897. },
  898. "leopard-seal": {
  899. name: "Leopard Seal",
  900. parents: ["seal"]
  901. },
  902. "zoroark": {
  903. name: "Zoroark",
  904. parents: ["pokemon"]
  905. },
  906. "maned-wolf": {
  907. name: "Maned Wolf",
  908. parents: ["canine"]
  909. },
  910. "dracha": {
  911. name: "Dracha",
  912. parents: ["dragon"]
  913. },
  914. "wolxi": {
  915. name: "Wolxi",
  916. parents: ["mammal", "alien"]
  917. },
  918. "dratini": {
  919. name: "Dratini",
  920. parents: ["pokemon", "dragon"]
  921. },
  922. "skaven": {
  923. name: "Skaven",
  924. parents: ["rat"]
  925. },
  926. "mongoose": {
  927. name: "Mongoose",
  928. parents: ["mammal"]
  929. },
  930. "lopunny": {
  931. name: "Lopunny",
  932. parents: ["pokemon", "rabbit"]
  933. },
  934. "feraligatr": {
  935. name: "Feraligatr",
  936. parents: ["pokemon", "alligator"]
  937. },
  938. "houndoom": {
  939. name: "Houndoom",
  940. parents: ["pokemon", "dog"]
  941. },
  942. "protogen": {
  943. name: "Protogen",
  944. parents: ["machine"]
  945. },
  946. "saint-bernard": {
  947. name: "Saint Bernard",
  948. parents: ["dog"]
  949. },
  950. "crow": {
  951. name: "Crow",
  952. parents: ["corvid"]
  953. },
  954. "delphox": {
  955. name: "Delphox",
  956. parents: ["pokemon", "fox"]
  957. },
  958. "moose": {
  959. name: "Moose",
  960. parents: ["mammal"]
  961. },
  962. "joraxian": {
  963. name: "Joraxian",
  964. parents: ["monster", "canine", "demon"]
  965. },
  966. "nimbat": {
  967. name: "Nimbat",
  968. parents: ["mammal"]
  969. },
  970. "aardwolf": {
  971. name: "Aardwolf",
  972. parents: ["canine"]
  973. },
  974. "fluudrani": {
  975. name: "Fluudrani",
  976. parents: ["animal"]
  977. },
  978. "arcanine": {
  979. name: "Arcanine",
  980. parents: ["pokemon", "dog"]
  981. },
  982. "inteleon": {
  983. name: "Inteleon",
  984. parents: ["pokemon", "fish"]
  985. },
  986. "ninetales": {
  987. name: "Ninetales",
  988. parents: ["pokemon", "kitsune"]
  989. },
  990. "tigrex": {
  991. name: "Tigrex",
  992. parents: ["tiger"]
  993. },
  994. "zorua": {
  995. name: "Zorua",
  996. parents: ["pokemon", "fox"]
  997. },
  998. "vulpix": {
  999. name: "Vulpix",
  1000. parents: ["pokemon", "fox"]
  1001. },
  1002. "barghest": {
  1003. name: "Barghest",
  1004. parents: ["monster"]
  1005. },
  1006. "gray-wolf": {
  1007. name: "Gray Wolf",
  1008. parents: ["wolf"]
  1009. },
  1010. "ruppells-fox": {
  1011. name: "Rüppell's Fox",
  1012. parents: ["fox"]
  1013. },
  1014. "bull-terrier": {
  1015. name: "Bull Terrier",
  1016. parents: ["dog"]
  1017. },
  1018. "european-honey-buzzard": {
  1019. name: "European Honey Buzzard",
  1020. parents: ["avian"]
  1021. },
  1022. "t-rex": {
  1023. name: "Tyrannosaurus Rex",
  1024. parents: ["dinosaur"]
  1025. },
  1026. "mactarian": {
  1027. name: "Mactarian",
  1028. parents: ["shark", "monster"]
  1029. },
  1030. "mewtwo-y": {
  1031. name: "Mewtwo Y",
  1032. parents: ["mewtwo"]
  1033. },
  1034. "mewtwo": {
  1035. name: "Mewtwo",
  1036. parents: ["pokemon"]
  1037. },
  1038. "mew": {
  1039. name: "Mew",
  1040. parents: ["pokemon"]
  1041. },
  1042. "eevee": {
  1043. name: "Eevee",
  1044. parents: ["eeveelution"]
  1045. },
  1046. "mienshao": {
  1047. name: "Mienshao",
  1048. parents: ["pokemon"]
  1049. },
  1050. "sugar-glider": {
  1051. name: "Sugar Glider",
  1052. parents: ["opossum"]
  1053. },
  1054. "spectral-bat": {
  1055. name: "Spectral Bat",
  1056. parents: ["bat"]
  1057. },
  1058. "scolipede": {
  1059. name: "Scolipede",
  1060. parents: ["pokemon", "insect"]
  1061. },
  1062. "jackalope": {
  1063. name: "Jackalope",
  1064. parents: ["rabbit", "antelope"]
  1065. },
  1066. "caracal": {
  1067. name: "Caracal",
  1068. parents: ["cat"]
  1069. },
  1070. "stoat": {
  1071. name: "Stoat",
  1072. parents: ["mammal"]
  1073. },
  1074. "african-golden-cat": {
  1075. name: "African Golden Cat",
  1076. parents: ["cat"]
  1077. },
  1078. "gigantosaurus": {
  1079. name: "Gigantosaurus",
  1080. parents: ["dinosaur"]
  1081. },
  1082. "zorgoia": {
  1083. name: "Zorgoia",
  1084. parents: ["mammal"]
  1085. },
  1086. "monitor-lizard": {
  1087. name: "Monitor Lizard",
  1088. parents: ["lizard"]
  1089. },
  1090. "ziralkia": {
  1091. name: "Ziralkia",
  1092. parents: ["mammal"]
  1093. },
  1094. "kiiasi": {
  1095. name: "Kiiasi",
  1096. parents: ["animal"]
  1097. },
  1098. "synx": {
  1099. name: "Synx",
  1100. parents: ["monster"]
  1101. },
  1102. "panther": {
  1103. name: "Panther",
  1104. parents: ["cat"]
  1105. },
  1106. "azumarill": {
  1107. name: "Azumarill",
  1108. parents: ["pokemon"]
  1109. },
  1110. "river-snaptail": {
  1111. name: "River Snaptail",
  1112. parents: ["otter", "crocodile"]
  1113. },
  1114. "great-blue-heron": {
  1115. name: "Great Blue Heron",
  1116. parents: ["avian"]
  1117. },
  1118. "smeargle": {
  1119. name: "Smeargle",
  1120. parents: ["pokemon"]
  1121. },
  1122. "vendeilen": {
  1123. name: "Vendeilen",
  1124. parents: ["monster"]
  1125. },
  1126. "ventura": {
  1127. name: "Ventura",
  1128. parents: ["canine"]
  1129. },
  1130. "clouded-leopard": {
  1131. name: "Clouded Leopard",
  1132. parents: ["leopard"]
  1133. },
  1134. "argonian": {
  1135. name: "Argonian",
  1136. parents: ["lizard"]
  1137. },
  1138. "salazzle": {
  1139. name: "Salazzle",
  1140. parents: ["pokemon", "lizard"]
  1141. },
  1142. "je-stoff-drachen": {
  1143. name: "Je-Stoff Drachen",
  1144. parents: ["dragon"]
  1145. },
  1146. "finnish-spitz-dog": {
  1147. name: "Finnish Spitz Dog",
  1148. parents: ["dog"]
  1149. },
  1150. "gray-fox": {
  1151. name: "Gray Fox",
  1152. parents: ["fox"]
  1153. },
  1154. "opossum": {
  1155. name: "opossum",
  1156. parents: ["mammal"]
  1157. },
  1158. "antelope": {
  1159. name: "Antelope",
  1160. parents: ["mammal"]
  1161. },
  1162. "weavile": {
  1163. name: "Weavile",
  1164. parents: ["pokemon"]
  1165. },
  1166. "pikachu": {
  1167. name: "Pikachu",
  1168. parents: ["pokemon", "mouse"]
  1169. },
  1170. "grovyle": {
  1171. name: "Grovyle",
  1172. parents: ["pokemon", "plant"]
  1173. },
  1174. "sthara": {
  1175. name: "Sthara",
  1176. parents: ["snow-leopard", "reptile"]
  1177. },
  1178. "star-warrior": {
  1179. name: "Star Warrior",
  1180. parents: ["magical"]
  1181. },
  1182. "dragonoid": {
  1183. name: "Dragonoid",
  1184. parents: ["dragon"]
  1185. },
  1186. "suicune": {
  1187. name: "Suicune",
  1188. parents: ["pokemon"]
  1189. },
  1190. "vole": {
  1191. name: "Vole",
  1192. parents: ["mammal"]
  1193. },
  1194. "blaziken": {
  1195. name: "Blaziken",
  1196. parents: ["pokemon", "avian"]
  1197. },
  1198. "buizel": {
  1199. name: "Buizel",
  1200. parents: ["pokemon", "fish"]
  1201. },
  1202. "floatzel": {
  1203. name: "Floatzel",
  1204. parents: ["pokemon", "fish"]
  1205. },
  1206. "umok": {
  1207. name: "Umok",
  1208. parents: ["avian"]
  1209. },
  1210. "sea-monster": {
  1211. name: "Sea Monster",
  1212. parents: ["monster", "fish"]
  1213. },
  1214. "egyptian-vulture": {
  1215. name: "Egyptian Vulture",
  1216. parents: ["avian"]
  1217. },
  1218. "doberman": {
  1219. name: "Doberman",
  1220. parents: ["dog"]
  1221. },
  1222. "zangoose": {
  1223. name: "Zangoose",
  1224. parents: ["pokemon", "mongoose"]
  1225. },
  1226. "mongoose": {
  1227. name: "Mongoose",
  1228. parents: ["mammal"]
  1229. },
  1230. "wickerbeast": {
  1231. name: "Wickerbeast",
  1232. parents: ["monster"]
  1233. },
  1234. "zenari": {
  1235. name: "Zenari",
  1236. parents: ["lizard"]
  1237. },
  1238. "plant": {
  1239. name: "Plant",
  1240. parents: []
  1241. },
  1242. "raskatox": {
  1243. name: "Raskatox",
  1244. parents: ["raccoon", "skunk", "cat", "fox"]
  1245. },
  1246. "mikromare": {
  1247. name: "mikromare",
  1248. parents: ["alien"]
  1249. },
  1250. "alien": {
  1251. name: "Alien",
  1252. parents: ["animal"]
  1253. },
  1254. "deity": {
  1255. name: "Deity",
  1256. parents: []
  1257. },
  1258. "skarlan": {
  1259. name: "Skarlan",
  1260. parents: ["slug", "dragon"]
  1261. },
  1262. "slug": {
  1263. name: "Slug",
  1264. parents: ["mollusk"]
  1265. },
  1266. "mollusk": {
  1267. name: "Mollusk",
  1268. parents: ["animal"]
  1269. },
  1270. "chimera": {
  1271. name: "Chimera",
  1272. parents: ["monster"]
  1273. },
  1274. "gestalt": {
  1275. name: "Gestalt",
  1276. parents: ["construct"]
  1277. },
  1278. "mimic": {
  1279. name: "Mimic",
  1280. parents: ["monster"]
  1281. },
  1282. "calico-rat": {
  1283. name: "Calico Rat",
  1284. parents: ["rat"]
  1285. },
  1286. "panda": {
  1287. name: "Panda",
  1288. parents: ["mammal"]
  1289. },
  1290. "oni": {
  1291. name: "Oni",
  1292. parents: ["monster"]
  1293. },
  1294. "pegasus": {
  1295. name: "Pegasus",
  1296. parents: ["horse"]
  1297. },
  1298. "vulpera": {
  1299. name: "Vulpera",
  1300. parents: ["fennec-fox"]
  1301. },
  1302. "ceratosaurus": {
  1303. name: "Ceratosaurus",
  1304. parents: ["dinosaur"]
  1305. },
  1306. "nykur": {
  1307. name: "Nykur",
  1308. parents: ["horse", "monster"]
  1309. },
  1310. "giraffe": {
  1311. name: "Giraffe",
  1312. parents: ["mammal"]
  1313. },
  1314. "tauren": {
  1315. name: "Tauren",
  1316. parents: ["cow"]
  1317. },
  1318. "draconi": {
  1319. name: "Draconi",
  1320. parents: ["alien", "cat", "cyborg"]
  1321. },
  1322. "dire-wolf": {
  1323. name: "Dire Wolf",
  1324. parents: ["wolf"]
  1325. },
  1326. "ferromorph": {
  1327. name: "Ferromorph",
  1328. parents: ["construct"]
  1329. },
  1330. "meowth": {
  1331. name: "Meowth",
  1332. parents: ["cat", "pokemon"]
  1333. },
  1334. "pavodragon": {
  1335. name: "Pavodragon",
  1336. parents: ["dragon"]
  1337. },
  1338. "aaltranae": {
  1339. name: "Aaltranae",
  1340. parents: ["dragon"]
  1341. },
  1342. "cyborg": {
  1343. name: "Cyborg",
  1344. parents: ["machine"]
  1345. },
  1346. "draptor": {
  1347. name: "Draptor",
  1348. parents: ["dragon"]
  1349. },
  1350. "candy": {
  1351. name: "Candy",
  1352. parents: []
  1353. },
  1354. "drenath": {
  1355. name: "Drenath",
  1356. parents: ["dragon", "snake", "rabbit"]
  1357. },
  1358. "coyju": {
  1359. name: "Coyju",
  1360. parents: ["coyote", "kaiju"]
  1361. },
  1362. "kaiju": {
  1363. name: "Kaiju",
  1364. parents: ["monster"]
  1365. },
  1366. "nickit": {
  1367. name: "Nickit",
  1368. parents: ["pokemon", "cat"]
  1369. },
  1370. "lopunny": {
  1371. name: "Lopunny",
  1372. parents: ["pokemon", "rabbit"]
  1373. },
  1374. "korean-jindo-dog": {
  1375. name: "Korean Jindo Dog",
  1376. parents: ["dog"]
  1377. },
  1378. "naga": {
  1379. name: "Naga",
  1380. parents: ["snake", "monster"]
  1381. },
  1382. "undead": {
  1383. name: "Undead",
  1384. parents: ["monster"]
  1385. },
  1386. "whale": {
  1387. name: "Whale",
  1388. parents: ["fish"]
  1389. },
  1390. "gelato-bee": {
  1391. name: "Gelato Bee",
  1392. parents: ["bee"]
  1393. },
  1394. "bee": {
  1395. name: "Bee",
  1396. parents: ["insect"]
  1397. },
  1398. "gardevoir": {
  1399. name: "Gardevoir",
  1400. parents: ["pokemon"]
  1401. },
  1402. "ant": {
  1403. name: "Ant",
  1404. parents: ["insect"]
  1405. },
  1406. "frog": {
  1407. name: "Frog",
  1408. parents: ["amphibian"]
  1409. },
  1410. "amphibian": {
  1411. name: "Amphibian",
  1412. parents: ["animal"]
  1413. },
  1414. "pangolin": {
  1415. name: "Pangolin",
  1416. parents: ["mammal"]
  1417. },
  1418. "uragi'viidorn": {
  1419. name: "Uragi'viidorn",
  1420. parents: ["avian", "bear"]
  1421. },
  1422. "gryphdelphais": {
  1423. name: "Gryphdelphais",
  1424. parents: ["dolphin", "gryphon"]
  1425. },
  1426. "plush": {
  1427. name: "Plush",
  1428. parents: ["construct"]
  1429. },
  1430. "draiger": {
  1431. name: "Draiger",
  1432. parents: ["dragon","tiger"]
  1433. },
  1434. "foxsky": {
  1435. name: "Foxsky",
  1436. parents: ["fox", "husky"]
  1437. },
  1438. "umbreon": {
  1439. name: "Umbreon",
  1440. parents: ["eeveelution"]
  1441. },
  1442. "slime-dragon": {
  1443. name: "Slime Dragon",
  1444. parents: ["dragon", "goo"]
  1445. },
  1446. "enderman": {
  1447. name: "Enderman",
  1448. parents: ["monster"]
  1449. },
  1450. "gremlin": {
  1451. name: "Gremlin",
  1452. parents: ["monster"]
  1453. },
  1454. "dragonsune": {
  1455. name: "Dragonsune",
  1456. parents: ["dragon", "kitsune"]
  1457. },
  1458. "ghost": {
  1459. name: "Ghost",
  1460. parents: ["supernatural"]
  1461. },
  1462. "false-vampire-bat": {
  1463. name: "False Vampire Bat",
  1464. parents: ["bat"]
  1465. },
  1466. "succubus": {
  1467. name: "Succubus",
  1468. parents: ["demon"]
  1469. },
  1470. "mia": {
  1471. name: "Mia",
  1472. parents: ["canine"]
  1473. },
  1474. "rainbow": {
  1475. name: "Rainbow",
  1476. parents: ["monster"]
  1477. },
  1478. "solgaleo": {
  1479. name: "Solgaleo",
  1480. parents: ["pokemon"]
  1481. },
  1482. "lucent-nargacuga": {
  1483. name: "Lucent Nargacuga",
  1484. parents: ["monster-hunter"]
  1485. },
  1486. "monster-hunter": {
  1487. name: "Monster Hunter",
  1488. parents: ["monster"]
  1489. },
  1490. "leviathan": {
  1491. "name": "Leviathan",
  1492. "url": "sea-monster"
  1493. },
  1494. "bull": {
  1495. name: "Bull",
  1496. parents: ["mammal"]
  1497. },
  1498. "tanuki": {
  1499. name: "Tanuki",
  1500. parents: ["monster"]
  1501. },
  1502. "chakat": {
  1503. name: "Chakat",
  1504. parents: ["cat"]
  1505. },
  1506. "hydra": {
  1507. name: "Hydra",
  1508. parents: ["monster"]
  1509. },
  1510. "zigzagoon": {
  1511. name: "Zigzagoon",
  1512. parents: ["raccoon", "pokemon"]
  1513. },
  1514. "vulture": {
  1515. name: "Vulture",
  1516. parents: ["avian"]
  1517. },
  1518. "eastern-dragon": {
  1519. name: "Eastern Dragon",
  1520. parents: ["dragon"]
  1521. },
  1522. "gryffon": {
  1523. name: "Gryffon",
  1524. parents: ["phoenix", "red-panda"]
  1525. },
  1526. "amtsvane": {
  1527. name: "Amtsvane",
  1528. parents: ["reptile"]
  1529. },
  1530. "kigavi": {
  1531. name: "Kigavi",
  1532. parents: ["avian"]
  1533. },
  1534. "turian": {
  1535. name: "Turian",
  1536. parents: ["avian"]
  1537. },
  1538. "zeraora": {
  1539. name: "Zeraora",
  1540. parents: ["pokemon"]
  1541. },
  1542. "sandshrew": {
  1543. name: "Sandshrew",
  1544. parents: ["pokemon", "pangolin"]
  1545. },
  1546. "valais-blacknose-sheep": {
  1547. name: "Valais Blacknose Sheep",
  1548. parents: ["sheep"]
  1549. },
  1550. "novaleit": {
  1551. name: "Novaleit",
  1552. parents: ["mammal"]
  1553. },
  1554. "dunnoh": {
  1555. name: "Dunnoh",
  1556. parents: ["mammal"]
  1557. },
  1558. "lunaral-dragon": {
  1559. name: "Lunaral Dragon",
  1560. parents: ["dragon"]
  1561. },
  1562. "arctic-wolf": {
  1563. name: "Arctic Wolf",
  1564. parents: ["wolf"]
  1565. },
  1566. "donkey": {
  1567. name: "Donkey",
  1568. parents: ["horse"]
  1569. },
  1570. "chinchilla": {
  1571. name: "Chinchilla",
  1572. parents: ["rodent"]
  1573. },
  1574. "felkin": {
  1575. name: "Felkin",
  1576. parents: ["dragon"]
  1577. },
  1578. "tykeriel": {
  1579. name: "Tykeriel",
  1580. parents: ["avian"]
  1581. },
  1582. "folf": {
  1583. name: "Folf",
  1584. parents: ["fox", "wolf"]
  1585. },
  1586. "pooltoy": {
  1587. name: "Pooltoy",
  1588. parents: ["construct"]
  1589. },
  1590. "demi": {
  1591. name: "Demi",
  1592. parents: ["human"]
  1593. },
  1594. "stegosaurus": {
  1595. name: "Stegosaurus",
  1596. parents: ["dinosaur"]
  1597. },
  1598. "computer-virus": {
  1599. name: "Computer Virus",
  1600. parents: ["program"]
  1601. },
  1602. "program": {
  1603. name: "Program",
  1604. parents: ["construct"]
  1605. },
  1606. "space-springhare": {
  1607. name: "Space Springhare",
  1608. parents: ["rabbit"]
  1609. },
  1610. "river-drake": {
  1611. name: "River Drake",
  1612. parents: ["dragon"]
  1613. },
  1614. "djinn": {
  1615. "name": "Djinn",
  1616. "url": "supernatural"
  1617. },
  1618. "supernatural": {
  1619. name: "Supernatural",
  1620. parents: ["monster"]
  1621. },
  1622. "grasshopper-mouse": {
  1623. name: "Grasshopper Mouse",
  1624. parents: ["mouse"]
  1625. },
  1626. "somali-cat": {
  1627. name: "Somali Cat",
  1628. parents: ["cat"]
  1629. },
  1630. "minccino": {
  1631. name: "Minccino",
  1632. parents: ["pokemon", "chinchilla"]
  1633. },
  1634. "pine-marten": {
  1635. name: "Pine Marten",
  1636. parents: ["marten"]
  1637. },
  1638. "marten": {
  1639. name: "Marten",
  1640. parents: ["mustelid"]
  1641. },
  1642. "mustelid": {
  1643. name: "Mustelid",
  1644. parents: ["mammal"]
  1645. },
  1646. "caribou": {
  1647. name: "Caribou",
  1648. parents: ["deer"]
  1649. },
  1650. "gnoll": {
  1651. name: "Gnoll",
  1652. parents: ["hyena", "monster"]
  1653. },
  1654. "peacekeeper": {
  1655. name: "Peacekeeper",
  1656. parents: ["human"]
  1657. },
  1658. "river-otter": {
  1659. name: "River Otter",
  1660. parents: ["otter"]
  1661. },
  1662. "dhole": {
  1663. name: "Dhole",
  1664. parents: ["canine"]
  1665. },
  1666. "springbok": {
  1667. name: "Springbok",
  1668. parents: ["antelope"]
  1669. },
  1670. "marsupial": {
  1671. name: "Marsupial",
  1672. parents: ["mammal"]
  1673. },
  1674. "townsend-big-eared-bat": {
  1675. name: "Townsend Big-eared Bat",
  1676. parents: ["bat"]
  1677. },
  1678. "squirrel": {
  1679. name: "Squirrel",
  1680. parents: ["rodent"]
  1681. },
  1682. "magpie": {
  1683. name: "Magpie",
  1684. parents: ["corvid"]
  1685. },
  1686. "civet": {
  1687. name: "Civet",
  1688. parents: ["feliform"]
  1689. },
  1690. "feliform": {
  1691. name: "Feliform",
  1692. parents: ["mammal"]
  1693. },
  1694. "tiefling": {
  1695. name: "Tiefling",
  1696. parents: ["devil"]
  1697. },
  1698. "devil": {
  1699. name: "Devil",
  1700. parents: ["supernatural"]
  1701. },
  1702. "sika-deer": {
  1703. name: "Sika Deer",
  1704. parents: ["deer"]
  1705. },
  1706. "vaporeon": {
  1707. name: "Vaporeon",
  1708. parents: ["eeveelution"]
  1709. },
  1710. "leafeon": {
  1711. name: "Leafeon",
  1712. parents: ["eeveelution"]
  1713. },
  1714. "jolteon": {
  1715. name: "Jolteon",
  1716. parents: ["eeveelution"]
  1717. },
  1718. "spireborn": {
  1719. name: "Spireborn",
  1720. parents: ["zorgoia"]
  1721. },
  1722. "vampire": {
  1723. name: "Vampire",
  1724. parents: ["monster"]
  1725. },
  1726. "extraplanar": {
  1727. name: "Extraplanar",
  1728. parents: []
  1729. },
  1730. "goo": {
  1731. name: "Goo",
  1732. parents: []
  1733. },
  1734. "skink": {
  1735. name: "Skink",
  1736. parents: ["lizard"]
  1737. },
  1738. "bat-eared-fox": {
  1739. name: "Bat-eared Fox",
  1740. parents: ["fox"]
  1741. },
  1742. "belted-kingfisher": {
  1743. name: "Belted Kingfisher",
  1744. parents: ["avian"]
  1745. },
  1746. "omnifalcon": {
  1747. name: "Omnifalcon",
  1748. parents: ["gryphon", "falcon", "harpy-eagle"]
  1749. },
  1750. "falcon": {
  1751. name: "Falcon",
  1752. parents: ["avian"]
  1753. },
  1754. "avali": {
  1755. name: "Avali",
  1756. parents: ["avian", "alien"]
  1757. },
  1758. "arctic-fox": {
  1759. name: "Arctic Fox",
  1760. parents: ["fox"]
  1761. },
  1762. "snow-tiger": {
  1763. name: "Snow Tiger",
  1764. parents: ["tiger"]
  1765. },
  1766. "marble-fox": {
  1767. name: "Marble Fox",
  1768. parents: ["fox"]
  1769. },
  1770. "king-wickerbeast": {
  1771. name: "King Wickerbeast",
  1772. parents: ["wickerbeast"]
  1773. },
  1774. "wickerbeast": {
  1775. name: "Wickerbeast",
  1776. parents: ["mammal"]
  1777. },
  1778. "european-polecat": {
  1779. name: "European Polecat",
  1780. parents: ["mustelid"]
  1781. },
  1782. "teshari": {
  1783. name: "Teshari",
  1784. parents: ["avian", "raptor"]
  1785. },
  1786. "alicorn": {
  1787. name: "Alicorn",
  1788. parents: ["horse"]
  1789. },
  1790. "atlas-moth": {
  1791. name: "Atlas Moth",
  1792. parents: ["moth"]
  1793. },
  1794. }
  1795. //species
  1796. function getSpeciesInfo(speciesList) {
  1797. let result = new Set();
  1798. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1799. result.add(entry)
  1800. });
  1801. return Array.from(result);
  1802. };
  1803. function getSpeciesInfoHelper(species) {
  1804. if (!speciesData[species]) {
  1805. console.warn(species + " doesn't exist");
  1806. return [];
  1807. }
  1808. if (speciesData[species].parents) {
  1809. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1810. } else {
  1811. return [species];
  1812. }
  1813. }
  1814. characterMakers.push(() => makeCharacter(
  1815. {
  1816. name: "Fen",
  1817. species: ["crux"],
  1818. description: {
  1819. title: "Bio",
  1820. text: "Very furry. Sheds on everything."
  1821. },
  1822. tags: [
  1823. "anthro",
  1824. "goo"
  1825. ]
  1826. },
  1827. {
  1828. front: {
  1829. height: math.unit(2.2428, "meter"),
  1830. weight: math.unit(124.738, "kg"),
  1831. name: "Front",
  1832. image: {
  1833. source: "./media/characters/fen/front.svg",
  1834. extra: 1804/1562,
  1835. bottom: 205/2009
  1836. }
  1837. },
  1838. diving: {
  1839. height: math.unit(3.3, "meters"),
  1840. weight: math.unit(124.738, "kg"),
  1841. name: "Diving",
  1842. image: {
  1843. source: "./media/characters/fen/diving.svg"
  1844. }
  1845. },
  1846. maw: {
  1847. height: math.unit(2.83, "feet"),
  1848. name: "Maw",
  1849. image: {
  1850. source: "./media/characters/fen/maw.svg"
  1851. }
  1852. },
  1853. back: {
  1854. height: math.unit(2.2428, "meter"),
  1855. weight: math.unit(124.738, "kg"),
  1856. name: "Back",
  1857. image: {
  1858. source: "./media/characters/fen/back.svg",
  1859. },
  1860. info: {
  1861. description: {
  1862. mode: "append",
  1863. text: "\n\nHe is not currently looking at you."
  1864. }
  1865. }
  1866. },
  1867. full: {
  1868. height: math.unit(0.91, "meter"),
  1869. weight: math.unit(225, "kg"),
  1870. name: "Full",
  1871. image: {
  1872. source: "./media/characters/fen/full.svg",
  1873. extra: 1133/859,
  1874. bottom: 145/1278
  1875. },
  1876. info: {
  1877. description: {
  1878. mode: "append",
  1879. text: "\n\nMunch."
  1880. }
  1881. }
  1882. },
  1883. kneeling: {
  1884. height: math.unit(5.4, "feet"),
  1885. weight: math.unit(124.738, "kg"),
  1886. name: "Kneeling",
  1887. image: {
  1888. source: "./media/characters/fen/kneeling.svg",
  1889. extra: 563 / 507
  1890. }
  1891. },
  1892. goo: {
  1893. height: math.unit(2.8, "feet"),
  1894. weight: math.unit(125, "kg"),
  1895. capacity: math.unit(1, "people"),
  1896. name: "Goo",
  1897. image: {
  1898. source: "./media/characters/fen/goo.svg",
  1899. bottom: 116 / 613
  1900. }
  1901. },
  1902. lounging: {
  1903. height: math.unit(6.5, "feet"),
  1904. weight: math.unit(125, "kg"),
  1905. name: "Lounging",
  1906. image: {
  1907. source: "./media/characters/fen/lounging.svg"
  1908. }
  1909. },
  1910. },
  1911. [
  1912. {
  1913. name: "Small",
  1914. height: math.unit(2.2428, "meter")
  1915. },
  1916. {
  1917. name: "Normal",
  1918. height: math.unit(12, "feet"),
  1919. default: true,
  1920. },
  1921. {
  1922. name: "Minimacro",
  1923. height: math.unit(40, "feet"),
  1924. info: {
  1925. description: {
  1926. mode: "append",
  1927. text: "\n\nTOO DAMN BIG"
  1928. }
  1929. }
  1930. },
  1931. {
  1932. name: "Macro",
  1933. height: math.unit(100, "feet"),
  1934. info: {
  1935. description: {
  1936. mode: "append",
  1937. text: "\n\nTOO DAMN BIG"
  1938. }
  1939. }
  1940. },
  1941. {
  1942. name: "Macro+",
  1943. height: math.unit(300, "feet")
  1944. },
  1945. {
  1946. name: "Megamacro",
  1947. height: math.unit(2, "miles")
  1948. }
  1949. ]
  1950. ))
  1951. characterMakers.push(() => makeCharacter(
  1952. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  1953. {
  1954. front: {
  1955. height: math.unit(183, "cm"),
  1956. weight: math.unit(80, "kg"),
  1957. name: "Front",
  1958. image: {
  1959. source: "./media/characters/sofia-fluttertail/front.svg",
  1960. bottom: 0.01,
  1961. extra: 2154 / 2081
  1962. }
  1963. },
  1964. frontAlt: {
  1965. height: math.unit(183, "cm"),
  1966. weight: math.unit(80, "kg"),
  1967. name: "Front (alt)",
  1968. image: {
  1969. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  1970. }
  1971. },
  1972. back: {
  1973. height: math.unit(183, "cm"),
  1974. weight: math.unit(80, "kg"),
  1975. name: "Back",
  1976. image: {
  1977. source: "./media/characters/sofia-fluttertail/back.svg"
  1978. }
  1979. },
  1980. kneeling: {
  1981. height: math.unit(125, "cm"),
  1982. weight: math.unit(80, "kg"),
  1983. name: "Kneeling",
  1984. image: {
  1985. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  1986. extra: 1033 / 977,
  1987. bottom: 23.7 / 1057
  1988. }
  1989. },
  1990. maw: {
  1991. height: math.unit(183 / 5, "cm"),
  1992. name: "Maw",
  1993. image: {
  1994. source: "./media/characters/sofia-fluttertail/maw.svg"
  1995. }
  1996. },
  1997. mawcloseup: {
  1998. height: math.unit(183 / 5 * 0.41, "cm"),
  1999. name: "Maw (Closeup)",
  2000. image: {
  2001. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2002. }
  2003. },
  2004. paws: {
  2005. height: math.unit(1.17, "feet"),
  2006. name: "Paws",
  2007. image: {
  2008. source: "./media/characters/sofia-fluttertail/paws.svg",
  2009. extra: 851 / 851,
  2010. bottom: 17 / 868
  2011. }
  2012. },
  2013. },
  2014. [
  2015. {
  2016. name: "Normal",
  2017. height: math.unit(1.83, "meter")
  2018. },
  2019. {
  2020. name: "Size Thief",
  2021. height: math.unit(18, "feet")
  2022. },
  2023. {
  2024. name: "50 Foot Collie",
  2025. height: math.unit(50, "feet")
  2026. },
  2027. {
  2028. name: "Macro",
  2029. height: math.unit(96, "feet"),
  2030. default: true
  2031. },
  2032. {
  2033. name: "Megamerger",
  2034. height: math.unit(650, "feet")
  2035. },
  2036. ]
  2037. ))
  2038. characterMakers.push(() => makeCharacter(
  2039. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2040. {
  2041. front: {
  2042. height: math.unit(7, "feet"),
  2043. weight: math.unit(100, "kg"),
  2044. name: "Front",
  2045. image: {
  2046. source: "./media/characters/march/front.svg",
  2047. extra: 1992/1851,
  2048. bottom: 39/2031
  2049. }
  2050. },
  2051. foot: {
  2052. height: math.unit(0.9, "feet"),
  2053. name: "Foot",
  2054. image: {
  2055. source: "./media/characters/march/foot.svg"
  2056. }
  2057. },
  2058. },
  2059. [
  2060. {
  2061. name: "Normal",
  2062. height: math.unit(7.9, "feet")
  2063. },
  2064. {
  2065. name: "Macro",
  2066. height: math.unit(220, "meters")
  2067. },
  2068. {
  2069. name: "Megamacro",
  2070. height: math.unit(2.98, "km"),
  2071. default: true
  2072. },
  2073. {
  2074. name: "Gigamacro",
  2075. height: math.unit(15963, "km")
  2076. },
  2077. {
  2078. name: "Teramacro",
  2079. height: math.unit(2980000000, "km")
  2080. },
  2081. {
  2082. name: "Examacro",
  2083. height: math.unit(250, "parsecs")
  2084. },
  2085. ]
  2086. ))
  2087. characterMakers.push(() => makeCharacter(
  2088. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2089. {
  2090. front: {
  2091. height: math.unit(6, "feet"),
  2092. weight: math.unit(60, "kg"),
  2093. name: "Front",
  2094. image: {
  2095. source: "./media/characters/noir/front.svg",
  2096. extra: 1,
  2097. bottom: 0.032
  2098. }
  2099. },
  2100. },
  2101. [
  2102. {
  2103. name: "Normal",
  2104. height: math.unit(6.6, "feet")
  2105. },
  2106. {
  2107. name: "Macro",
  2108. height: math.unit(500, "feet")
  2109. },
  2110. {
  2111. name: "Megamacro",
  2112. height: math.unit(2.5, "km"),
  2113. default: true
  2114. },
  2115. {
  2116. name: "Gigamacro",
  2117. height: math.unit(22500, "km")
  2118. },
  2119. {
  2120. name: "Teramacro",
  2121. height: math.unit(2500000000, "km")
  2122. },
  2123. {
  2124. name: "Examacro",
  2125. height: math.unit(200, "parsecs")
  2126. },
  2127. ]
  2128. ))
  2129. characterMakers.push(() => makeCharacter(
  2130. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  2131. {
  2132. front: {
  2133. height: math.unit(7, "feet"),
  2134. weight: math.unit(100, "kg"),
  2135. name: "Front",
  2136. image: {
  2137. source: "./media/characters/okuri/front.svg",
  2138. extra: 1,
  2139. bottom: 0.037
  2140. }
  2141. },
  2142. back: {
  2143. height: math.unit(7, "feet"),
  2144. weight: math.unit(100, "kg"),
  2145. name: "Back",
  2146. image: {
  2147. source: "./media/characters/okuri/back.svg",
  2148. extra: 1,
  2149. bottom: 0.007
  2150. }
  2151. },
  2152. },
  2153. [
  2154. {
  2155. name: "Megamacro",
  2156. height: math.unit(100, "miles"),
  2157. default: true
  2158. },
  2159. ]
  2160. ))
  2161. characterMakers.push(() => makeCharacter(
  2162. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2163. {
  2164. front: {
  2165. height: math.unit(7, "feet"),
  2166. weight: math.unit(100, "kg"),
  2167. name: "Front",
  2168. image: {
  2169. source: "./media/characters/manny/front.svg",
  2170. extra: 1,
  2171. bottom: 0.06
  2172. }
  2173. },
  2174. back: {
  2175. height: math.unit(7, "feet"),
  2176. weight: math.unit(100, "kg"),
  2177. name: "Back",
  2178. image: {
  2179. source: "./media/characters/manny/back.svg",
  2180. extra: 1,
  2181. bottom: 0.014
  2182. }
  2183. },
  2184. },
  2185. [
  2186. {
  2187. name: "Normal",
  2188. height: math.unit(7, "feet"),
  2189. },
  2190. {
  2191. name: "Macro",
  2192. height: math.unit(78, "feet"),
  2193. default: true
  2194. },
  2195. {
  2196. name: "Macro+",
  2197. height: math.unit(300, "meters")
  2198. },
  2199. {
  2200. name: "Macro++",
  2201. height: math.unit(2400, "meters")
  2202. },
  2203. {
  2204. name: "Megamacro",
  2205. height: math.unit(5167, "meters")
  2206. },
  2207. {
  2208. name: "Gigamacro",
  2209. height: math.unit(41769, "miles")
  2210. },
  2211. ]
  2212. ))
  2213. characterMakers.push(() => makeCharacter(
  2214. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2215. {
  2216. front: {
  2217. height: math.unit(7, "feet"),
  2218. weight: math.unit(100, "kg"),
  2219. name: "Front",
  2220. image: {
  2221. source: "./media/characters/adake/front-1.svg"
  2222. }
  2223. },
  2224. frontAlt: {
  2225. height: math.unit(7, "feet"),
  2226. weight: math.unit(100, "kg"),
  2227. name: "Front (Alt)",
  2228. image: {
  2229. source: "./media/characters/adake/front-2.svg",
  2230. extra: 1,
  2231. bottom: 0.01
  2232. }
  2233. },
  2234. back: {
  2235. height: math.unit(7, "feet"),
  2236. weight: math.unit(100, "kg"),
  2237. name: "Back",
  2238. image: {
  2239. source: "./media/characters/adake/back.svg",
  2240. }
  2241. },
  2242. kneel: {
  2243. height: math.unit(5.385, "feet"),
  2244. weight: math.unit(100, "kg"),
  2245. name: "Kneeling",
  2246. image: {
  2247. source: "./media/characters/adake/kneel.svg",
  2248. bottom: 0.052
  2249. }
  2250. },
  2251. },
  2252. [
  2253. {
  2254. name: "Normal",
  2255. height: math.unit(7, "feet"),
  2256. },
  2257. {
  2258. name: "Macro",
  2259. height: math.unit(78, "feet"),
  2260. default: true
  2261. },
  2262. {
  2263. name: "Macro+",
  2264. height: math.unit(300, "meters")
  2265. },
  2266. {
  2267. name: "Macro++",
  2268. height: math.unit(2400, "meters")
  2269. },
  2270. {
  2271. name: "Megamacro",
  2272. height: math.unit(5167, "meters")
  2273. },
  2274. {
  2275. name: "Gigamacro",
  2276. height: math.unit(41769, "miles")
  2277. },
  2278. ]
  2279. ))
  2280. characterMakers.push(() => makeCharacter(
  2281. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2282. {
  2283. front: {
  2284. height: math.unit(1.65, "meters"),
  2285. weight: math.unit(50, "kg"),
  2286. name: "Front",
  2287. image: {
  2288. source: "./media/characters/elijah/front.svg",
  2289. extra: 858 / 830,
  2290. bottom: 95.5 / 953.8559
  2291. }
  2292. },
  2293. back: {
  2294. height: math.unit(1.65, "meters"),
  2295. weight: math.unit(50, "kg"),
  2296. name: "Back",
  2297. image: {
  2298. source: "./media/characters/elijah/back.svg",
  2299. extra: 895 / 850,
  2300. bottom: 5.3 / 897.956
  2301. }
  2302. },
  2303. frontNsfw: {
  2304. height: math.unit(1.65, "meters"),
  2305. weight: math.unit(50, "kg"),
  2306. name: "Front (NSFW)",
  2307. image: {
  2308. source: "./media/characters/elijah/front-nsfw.svg",
  2309. extra: 858 / 830,
  2310. bottom: 95.5 / 953.8559
  2311. }
  2312. },
  2313. backNsfw: {
  2314. height: math.unit(1.65, "meters"),
  2315. weight: math.unit(50, "kg"),
  2316. name: "Back (NSFW)",
  2317. image: {
  2318. source: "./media/characters/elijah/back-nsfw.svg",
  2319. extra: 895 / 850,
  2320. bottom: 5.3 / 897.956
  2321. }
  2322. },
  2323. dick: {
  2324. height: math.unit(1, "feet"),
  2325. name: "Dick",
  2326. image: {
  2327. source: "./media/characters/elijah/dick.svg"
  2328. }
  2329. },
  2330. beakOpen: {
  2331. height: math.unit(1.25, "feet"),
  2332. name: "Beak (Open)",
  2333. image: {
  2334. source: "./media/characters/elijah/beak-open.svg"
  2335. }
  2336. },
  2337. beakShut: {
  2338. height: math.unit(1.25, "feet"),
  2339. name: "Beak (Shut)",
  2340. image: {
  2341. source: "./media/characters/elijah/beak-shut.svg"
  2342. }
  2343. },
  2344. footFlexing: {
  2345. height: math.unit(1.61, "feet"),
  2346. name: "Foot (Flexing)",
  2347. image: {
  2348. source: "./media/characters/elijah/foot-flexing.svg"
  2349. }
  2350. },
  2351. footStepping: {
  2352. height: math.unit(1.44, "feet"),
  2353. name: "Foot (Stepping)",
  2354. image: {
  2355. source: "./media/characters/elijah/foot-stepping.svg"
  2356. }
  2357. },
  2358. plantigradeLeg: {
  2359. height: math.unit(2.34, "feet"),
  2360. name: "Plantigrade Leg",
  2361. image: {
  2362. source: "./media/characters/elijah/plantigrade-leg.svg"
  2363. }
  2364. },
  2365. plantigradeFootLeft: {
  2366. height: math.unit(0.9, "feet"),
  2367. name: "Plantigrade Foot (Left)",
  2368. image: {
  2369. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2370. }
  2371. },
  2372. plantigradeFootRight: {
  2373. height: math.unit(0.9, "feet"),
  2374. name: "Plantigrade Foot (Right)",
  2375. image: {
  2376. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2377. }
  2378. },
  2379. },
  2380. [
  2381. {
  2382. name: "Normal",
  2383. height: math.unit(1.65, "meters")
  2384. },
  2385. {
  2386. name: "Macro",
  2387. height: math.unit(55, "meters"),
  2388. default: true
  2389. },
  2390. {
  2391. name: "Macro+",
  2392. height: math.unit(105, "meters")
  2393. },
  2394. ]
  2395. ))
  2396. characterMakers.push(() => makeCharacter(
  2397. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2398. {
  2399. front: {
  2400. height: math.unit(7 + 2/12, "feet"),
  2401. weight: math.unit(320, "kg"),
  2402. name: "Front",
  2403. image: {
  2404. source: "./media/characters/rai/front.svg",
  2405. extra: 1802/1696,
  2406. bottom: 68/1870
  2407. }
  2408. },
  2409. frontDressed: {
  2410. height: math.unit(7 + 2/12, "feet"),
  2411. weight: math.unit(320, "kg"),
  2412. name: "Front (Dressed)",
  2413. image: {
  2414. source: "./media/characters/rai/front-dressed.svg",
  2415. extra: 1802/1696,
  2416. bottom: 68/1870
  2417. }
  2418. },
  2419. side: {
  2420. height: math.unit(7 + 2/12, "feet"),
  2421. weight: math.unit(320, "kg"),
  2422. name: "Side",
  2423. image: {
  2424. source: "./media/characters/rai/side.svg",
  2425. extra: 1789/1710,
  2426. bottom: 115/1904
  2427. }
  2428. },
  2429. back: {
  2430. height: math.unit(7 + 2/12, "feet"),
  2431. weight: math.unit(320, "kg"),
  2432. name: "Back",
  2433. image: {
  2434. source: "./media/characters/rai/back.svg",
  2435. extra: 1770/1707,
  2436. bottom: 28/1798
  2437. }
  2438. },
  2439. feral: {
  2440. height: math.unit(9.5, "feet"),
  2441. weight: math.unit(640, "kg"),
  2442. name: "Feral",
  2443. image: {
  2444. source: "./media/characters/rai/feral.svg",
  2445. extra: 945/553,
  2446. bottom: 176/1121
  2447. }
  2448. },
  2449. dragon: {
  2450. height: math.unit(23, "feet"),
  2451. weight: math.unit(50000, "lb"),
  2452. name: "Dragon",
  2453. image: {
  2454. source: "./media/characters/rai/dragon.svg",
  2455. extra: 2498 / 2030,
  2456. bottom: 85.2 / 2584
  2457. }
  2458. },
  2459. maw: {
  2460. height: math.unit(1.69, "feet"),
  2461. name: "Maw",
  2462. image: {
  2463. source: "./media/characters/rai/maw.svg"
  2464. }
  2465. },
  2466. },
  2467. [
  2468. {
  2469. name: "Normal",
  2470. height: math.unit(7 + 2/12, "feet")
  2471. },
  2472. {
  2473. name: "Big",
  2474. height: math.unit(11, "feet")
  2475. },
  2476. {
  2477. name: "Macro",
  2478. height: math.unit(302, "feet"),
  2479. default: true
  2480. },
  2481. ]
  2482. ))
  2483. characterMakers.push(() => makeCharacter(
  2484. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2485. {
  2486. frontDressed: {
  2487. height: math.unit(216, "feet"),
  2488. weight: math.unit(7000000, "lb"),
  2489. name: "Front (Dressed)",
  2490. image: {
  2491. source: "./media/characters/jazzy/front-dressed.svg",
  2492. extra: 2738 / 2651,
  2493. bottom: 41.8 / 2786
  2494. }
  2495. },
  2496. backDressed: {
  2497. height: math.unit(216, "feet"),
  2498. weight: math.unit(7000000, "lb"),
  2499. name: "Back (Dressed)",
  2500. image: {
  2501. source: "./media/characters/jazzy/back-dressed.svg",
  2502. extra: 2775 / 2673,
  2503. bottom: 36.8 / 2817
  2504. }
  2505. },
  2506. front: {
  2507. height: math.unit(216, "feet"),
  2508. weight: math.unit(7000000, "lb"),
  2509. name: "Front",
  2510. image: {
  2511. source: "./media/characters/jazzy/front.svg",
  2512. extra: 2738 / 2651,
  2513. bottom: 41.8 / 2786
  2514. }
  2515. },
  2516. back: {
  2517. height: math.unit(216, "feet"),
  2518. weight: math.unit(7000000, "lb"),
  2519. name: "Back",
  2520. image: {
  2521. source: "./media/characters/jazzy/back.svg",
  2522. extra: 2775 / 2673,
  2523. bottom: 36.8 / 2817
  2524. }
  2525. },
  2526. maw: {
  2527. height: math.unit(20, "feet"),
  2528. name: "Maw",
  2529. image: {
  2530. source: "./media/characters/jazzy/maw.svg"
  2531. }
  2532. },
  2533. paws: {
  2534. height: math.unit(27.5, "feet"),
  2535. name: "Paws",
  2536. image: {
  2537. source: "./media/characters/jazzy/paws.svg"
  2538. }
  2539. },
  2540. eye: {
  2541. height: math.unit(4.4, "feet"),
  2542. name: "Eye",
  2543. image: {
  2544. source: "./media/characters/jazzy/eye.svg"
  2545. }
  2546. },
  2547. droneOffense: {
  2548. height: math.unit(9.5, "inches"),
  2549. name: "Drone (Offense)",
  2550. image: {
  2551. source: "./media/characters/jazzy/drone-offense.svg"
  2552. }
  2553. },
  2554. droneRecon: {
  2555. height: math.unit(9.5, "inches"),
  2556. name: "Drone (Recon)",
  2557. image: {
  2558. source: "./media/characters/jazzy/drone-recon.svg"
  2559. }
  2560. },
  2561. droneDefense: {
  2562. height: math.unit(9.5, "inches"),
  2563. name: "Drone (Defense)",
  2564. image: {
  2565. source: "./media/characters/jazzy/drone-defense.svg"
  2566. }
  2567. },
  2568. },
  2569. [
  2570. {
  2571. name: "Macro",
  2572. height: math.unit(216, "feet"),
  2573. default: true
  2574. },
  2575. ]
  2576. ))
  2577. characterMakers.push(() => makeCharacter(
  2578. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2579. {
  2580. front: {
  2581. height: math.unit(9 + 6/12, "feet"),
  2582. weight: math.unit(700, "lb"),
  2583. name: "Front",
  2584. image: {
  2585. source: "./media/characters/flamm/front.svg",
  2586. extra: 1751/1632,
  2587. bottom: 46/1797
  2588. }
  2589. },
  2590. buff: {
  2591. height: math.unit(9 + 6/12, "feet"),
  2592. weight: math.unit(950, "lb"),
  2593. name: "Buff",
  2594. image: {
  2595. source: "./media/characters/flamm/buff.svg",
  2596. extra: 3018/2874,
  2597. bottom: 221/3239
  2598. }
  2599. },
  2600. },
  2601. [
  2602. {
  2603. name: "Normal",
  2604. height: math.unit(9.5, "feet")
  2605. },
  2606. {
  2607. name: "Macro",
  2608. height: math.unit(200, "feet"),
  2609. default: true
  2610. },
  2611. ]
  2612. ))
  2613. characterMakers.push(() => makeCharacter(
  2614. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2615. {
  2616. front: {
  2617. height: math.unit(5 + 3/12, "feet"),
  2618. weight: math.unit(60, "kg"),
  2619. name: "Front",
  2620. image: {
  2621. source: "./media/characters/zephiro/front.svg",
  2622. extra: 2309 / 2162,
  2623. bottom: 0.069
  2624. }
  2625. },
  2626. side: {
  2627. height: math.unit(5 + 3/12, "feet"),
  2628. weight: math.unit(60, "kg"),
  2629. name: "Side",
  2630. image: {
  2631. source: "./media/characters/zephiro/side.svg",
  2632. extra: 2403 / 2279,
  2633. bottom: 0.015
  2634. }
  2635. },
  2636. back: {
  2637. height: math.unit(5 + 3/12, "feet"),
  2638. weight: math.unit(60, "kg"),
  2639. name: "Back",
  2640. image: {
  2641. source: "./media/characters/zephiro/back.svg",
  2642. extra: 2373 / 2244,
  2643. bottom: 0.013
  2644. }
  2645. },
  2646. hand: {
  2647. height: math.unit(0.68, "feet"),
  2648. name: "Hand",
  2649. image: {
  2650. source: "./media/characters/zephiro/hand.svg"
  2651. }
  2652. },
  2653. paw: {
  2654. height: math.unit(1, "feet"),
  2655. name: "Paw",
  2656. image: {
  2657. source: "./media/characters/zephiro/paw.svg"
  2658. }
  2659. },
  2660. beans: {
  2661. height: math.unit(0.93, "feet"),
  2662. name: "Beans",
  2663. image: {
  2664. source: "./media/characters/zephiro/beans.svg"
  2665. }
  2666. },
  2667. },
  2668. [
  2669. {
  2670. name: "Micro",
  2671. height: math.unit(3, "inches")
  2672. },
  2673. {
  2674. name: "Normal",
  2675. height: math.unit(5 + 3 / 12, "feet"),
  2676. default: true
  2677. },
  2678. {
  2679. name: "Macro",
  2680. height: math.unit(118, "feet")
  2681. },
  2682. ]
  2683. ))
  2684. characterMakers.push(() => makeCharacter(
  2685. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2686. {
  2687. front: {
  2688. height: math.unit(5, "feet"),
  2689. weight: math.unit(90, "kg"),
  2690. name: "Front",
  2691. image: {
  2692. source: "./media/characters/fory/front.svg",
  2693. extra: 2862 / 2674,
  2694. bottom: 180 / 3043.8
  2695. }
  2696. },
  2697. back: {
  2698. height: math.unit(5, "feet"),
  2699. weight: math.unit(90, "kg"),
  2700. name: "Back",
  2701. image: {
  2702. source: "./media/characters/fory/back.svg",
  2703. extra: 2962 / 2791,
  2704. bottom: 106 / 3071.8
  2705. }
  2706. },
  2707. foot: {
  2708. height: math.unit(2.14, "feet"),
  2709. name: "Foot",
  2710. image: {
  2711. source: "./media/characters/fory/foot.svg"
  2712. }
  2713. },
  2714. },
  2715. [
  2716. {
  2717. name: "Normal",
  2718. height: math.unit(5, "feet")
  2719. },
  2720. {
  2721. name: "Macro",
  2722. height: math.unit(50, "feet"),
  2723. default: true
  2724. },
  2725. {
  2726. name: "Megamacro",
  2727. height: math.unit(10, "miles")
  2728. },
  2729. {
  2730. name: "Gigamacro",
  2731. height: math.unit(5, "earths")
  2732. },
  2733. ]
  2734. ))
  2735. characterMakers.push(() => makeCharacter(
  2736. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2737. {
  2738. front: {
  2739. height: math.unit(7, "feet"),
  2740. weight: math.unit(90, "kg"),
  2741. name: "Front",
  2742. image: {
  2743. source: "./media/characters/kurrikage/front.svg",
  2744. extra: 1845/1733,
  2745. bottom: 119/1964
  2746. }
  2747. },
  2748. back: {
  2749. height: math.unit(7, "feet"),
  2750. weight: math.unit(90, "kg"),
  2751. name: "Back",
  2752. image: {
  2753. source: "./media/characters/kurrikage/back.svg",
  2754. extra: 1790/1677,
  2755. bottom: 61/1851
  2756. }
  2757. },
  2758. dressed: {
  2759. height: math.unit(7, "feet"),
  2760. weight: math.unit(90, "kg"),
  2761. name: "Dressed",
  2762. image: {
  2763. source: "./media/characters/kurrikage/dressed.svg",
  2764. extra: 1845/1733,
  2765. bottom: 119/1964
  2766. }
  2767. },
  2768. foot: {
  2769. height: math.unit(1.5, "feet"),
  2770. name: "Foot",
  2771. image: {
  2772. source: "./media/characters/kurrikage/foot.svg"
  2773. }
  2774. },
  2775. staff: {
  2776. height: math.unit(6.7, "feet"),
  2777. name: "Staff",
  2778. image: {
  2779. source: "./media/characters/kurrikage/staff.svg"
  2780. }
  2781. },
  2782. peek: {
  2783. height: math.unit(1.05, "feet"),
  2784. name: "Peeking",
  2785. image: {
  2786. source: "./media/characters/kurrikage/peek.svg",
  2787. bottom: 0.08
  2788. }
  2789. },
  2790. },
  2791. [
  2792. {
  2793. name: "Normal",
  2794. height: math.unit(12, "feet"),
  2795. default: true
  2796. },
  2797. {
  2798. name: "Big",
  2799. height: math.unit(20, "feet")
  2800. },
  2801. {
  2802. name: "Macro",
  2803. height: math.unit(500, "feet")
  2804. },
  2805. {
  2806. name: "Megamacro",
  2807. height: math.unit(20, "miles")
  2808. },
  2809. ]
  2810. ))
  2811. characterMakers.push(() => makeCharacter(
  2812. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2813. {
  2814. front: {
  2815. height: math.unit(6, "feet"),
  2816. weight: math.unit(75, "kg"),
  2817. name: "Front",
  2818. image: {
  2819. source: "./media/characters/shingo/front.svg",
  2820. extra: 1900/1825,
  2821. bottom: 82/1982
  2822. }
  2823. },
  2824. side: {
  2825. height: math.unit(6, "feet"),
  2826. weight: math.unit(75, "kg"),
  2827. name: "Side",
  2828. image: {
  2829. source: "./media/characters/shingo/side.svg",
  2830. extra: 1930/1865,
  2831. bottom: 16/1946
  2832. }
  2833. },
  2834. back: {
  2835. height: math.unit(6, "feet"),
  2836. weight: math.unit(75, "kg"),
  2837. name: "Back",
  2838. image: {
  2839. source: "./media/characters/shingo/back.svg",
  2840. extra: 1922/1852,
  2841. bottom: 16/1938
  2842. }
  2843. },
  2844. frontDressed: {
  2845. height: math.unit(6, "feet"),
  2846. weight: math.unit(150, "lb"),
  2847. name: "Front-dressed",
  2848. image: {
  2849. source: "./media/characters/shingo/front-dressed.svg",
  2850. extra: 1900/1825,
  2851. bottom: 82/1982
  2852. }
  2853. },
  2854. paw: {
  2855. height: math.unit(1.29, "feet"),
  2856. name: "Paw",
  2857. image: {
  2858. source: "./media/characters/shingo/paw.svg"
  2859. }
  2860. },
  2861. hand: {
  2862. height: math.unit(1.07, "feet"),
  2863. name: "Hand",
  2864. image: {
  2865. source: "./media/characters/shingo/hand.svg"
  2866. }
  2867. },
  2868. frontAlt: {
  2869. height: math.unit(6, "feet"),
  2870. weight: math.unit(75, "kg"),
  2871. name: "Front (Alt)",
  2872. image: {
  2873. source: "./media/characters/shingo/front-alt.svg",
  2874. extra: 3511 / 3338,
  2875. bottom: 0.005
  2876. }
  2877. },
  2878. frontAlt2: {
  2879. height: math.unit(6, "feet"),
  2880. weight: math.unit(75, "kg"),
  2881. name: "Front (Alt 2)",
  2882. image: {
  2883. source: "./media/characters/shingo/front-alt-2.svg",
  2884. extra: 706/681,
  2885. bottom: 11/717
  2886. }
  2887. },
  2888. pawAlt: {
  2889. height: math.unit(1, "feet"),
  2890. name: "Paw (Alt)",
  2891. image: {
  2892. source: "./media/characters/shingo/paw-alt.svg"
  2893. }
  2894. },
  2895. },
  2896. [
  2897. {
  2898. name: "Micro",
  2899. height: math.unit(4, "inches")
  2900. },
  2901. {
  2902. name: "Normal",
  2903. height: math.unit(6, "feet"),
  2904. default: true
  2905. },
  2906. {
  2907. name: "Macro",
  2908. height: math.unit(108, "feet")
  2909. },
  2910. {
  2911. name: "Macro+",
  2912. height: math.unit(1500, "feet")
  2913. },
  2914. ]
  2915. ))
  2916. characterMakers.push(() => makeCharacter(
  2917. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2918. {
  2919. side: {
  2920. height: math.unit(6, "feet"),
  2921. weight: math.unit(75, "kg"),
  2922. name: "Side",
  2923. image: {
  2924. source: "./media/characters/aigey/side.svg"
  2925. }
  2926. },
  2927. },
  2928. [
  2929. {
  2930. name: "Macro",
  2931. height: math.unit(200, "feet"),
  2932. default: true
  2933. },
  2934. {
  2935. name: "Megamacro",
  2936. height: math.unit(100, "miles")
  2937. },
  2938. ]
  2939. )
  2940. )
  2941. characterMakers.push(() => makeCharacter(
  2942. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  2943. {
  2944. front: {
  2945. height: math.unit(5 + 5 / 12, "feet"),
  2946. weight: math.unit(75, "kg"),
  2947. name: "Front",
  2948. image: {
  2949. source: "./media/characters/natasha/front.svg",
  2950. extra: 859 / 824,
  2951. bottom: 23 / 879.6
  2952. }
  2953. },
  2954. frontNsfw: {
  2955. height: math.unit(5 + 5 / 12, "feet"),
  2956. weight: math.unit(75, "kg"),
  2957. name: "Front (NSFW)",
  2958. image: {
  2959. source: "./media/characters/natasha/front-nsfw.svg",
  2960. extra: 859 / 824,
  2961. bottom: 23 / 879.6
  2962. }
  2963. },
  2964. frontErect: {
  2965. height: math.unit(5 + 5 / 12, "feet"),
  2966. weight: math.unit(75, "kg"),
  2967. name: "Front (Erect)",
  2968. image: {
  2969. source: "./media/characters/natasha/front-erect.svg",
  2970. extra: 859 / 824,
  2971. bottom: 23 / 879.6
  2972. }
  2973. },
  2974. back: {
  2975. height: math.unit(5 + 5 / 12, "feet"),
  2976. weight: math.unit(75, "kg"),
  2977. name: "Back",
  2978. image: {
  2979. source: "./media/characters/natasha/back.svg",
  2980. extra: 887.9 / 852.6,
  2981. bottom: 9.7 / 896.4
  2982. }
  2983. },
  2984. backAlt: {
  2985. height: math.unit(5 + 5 / 12, "feet"),
  2986. weight: math.unit(75, "kg"),
  2987. name: "Back (Alt)",
  2988. image: {
  2989. source: "./media/characters/natasha/back-alt.svg",
  2990. extra: 1236.7 / 1192,
  2991. bottom: 22.3 / 1258.2
  2992. }
  2993. },
  2994. dick: {
  2995. height: math.unit(1.772, "feet"),
  2996. name: "Dick",
  2997. image: {
  2998. source: "./media/characters/natasha/dick.svg"
  2999. }
  3000. },
  3001. paw: {
  3002. height: math.unit(0.250, "meters"),
  3003. name: "Paw",
  3004. image: {
  3005. source: "./media/characters/natasha/paw.svg"
  3006. }
  3007. },
  3008. },
  3009. [
  3010. {
  3011. name: "Normal",
  3012. height: math.unit(5 + 5 / 12, "feet")
  3013. },
  3014. {
  3015. name: "Large",
  3016. height: math.unit(12, "feet")
  3017. },
  3018. {
  3019. name: "Macro",
  3020. height: math.unit(100, "feet"),
  3021. default: true
  3022. },
  3023. {
  3024. name: "Macro+",
  3025. height: math.unit(260, "feet")
  3026. },
  3027. {
  3028. name: "Macro++",
  3029. height: math.unit(1, "mile")
  3030. },
  3031. ]
  3032. ))
  3033. characterMakers.push(() => makeCharacter(
  3034. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3035. {
  3036. front: {
  3037. height: math.unit(6, "feet"),
  3038. weight: math.unit(75, "kg"),
  3039. name: "Front",
  3040. image: {
  3041. source: "./media/characters/malik/front.svg"
  3042. }
  3043. },
  3044. side: {
  3045. height: math.unit(6, "feet"),
  3046. weight: math.unit(75, "kg"),
  3047. name: "Side",
  3048. image: {
  3049. source: "./media/characters/malik/side.svg",
  3050. extra: 1.1539
  3051. }
  3052. },
  3053. back: {
  3054. height: math.unit(6, "feet"),
  3055. weight: math.unit(75, "kg"),
  3056. name: "Back",
  3057. image: {
  3058. source: "./media/characters/malik/back.svg"
  3059. }
  3060. },
  3061. },
  3062. [
  3063. {
  3064. name: "Macro",
  3065. height: math.unit(156, "feet"),
  3066. default: true
  3067. },
  3068. {
  3069. name: "Macro+",
  3070. height: math.unit(1188, "feet")
  3071. },
  3072. ]
  3073. ))
  3074. characterMakers.push(() => makeCharacter(
  3075. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3076. {
  3077. front: {
  3078. height: math.unit(6, "feet"),
  3079. weight: math.unit(75, "kg"),
  3080. name: "Front",
  3081. image: {
  3082. source: "./media/characters/sefer/front.svg",
  3083. extra: 848 / 659,
  3084. bottom: 28.3 / 876.442
  3085. }
  3086. },
  3087. back: {
  3088. height: math.unit(6, "feet"),
  3089. weight: math.unit(75, "kg"),
  3090. name: "Back",
  3091. image: {
  3092. source: "./media/characters/sefer/back.svg",
  3093. extra: 864 / 695,
  3094. bottom: 10 / 871
  3095. }
  3096. },
  3097. frontDressed: {
  3098. height: math.unit(6, "feet"),
  3099. weight: math.unit(75, "kg"),
  3100. name: "Front (Dressed)",
  3101. image: {
  3102. source: "./media/characters/sefer/front-dressed.svg",
  3103. extra: 839 / 653,
  3104. bottom: 37.6 / 878
  3105. }
  3106. },
  3107. },
  3108. [
  3109. {
  3110. name: "Normal",
  3111. height: math.unit(6, "feet"),
  3112. default: true
  3113. },
  3114. ]
  3115. ))
  3116. characterMakers.push(() => makeCharacter(
  3117. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3118. {
  3119. body: {
  3120. height: math.unit(2.2428, "meter"),
  3121. weight: math.unit(124.738, "kg"),
  3122. name: "Body",
  3123. image: {
  3124. extra: 1225 / 1050,
  3125. source: "./media/characters/north/front.svg"
  3126. }
  3127. }
  3128. },
  3129. [
  3130. {
  3131. name: "Micro",
  3132. height: math.unit(4, "inches")
  3133. },
  3134. {
  3135. name: "Macro",
  3136. height: math.unit(63, "meters")
  3137. },
  3138. {
  3139. name: "Megamacro",
  3140. height: math.unit(101, "miles"),
  3141. default: true
  3142. }
  3143. ]
  3144. ))
  3145. characterMakers.push(() => makeCharacter(
  3146. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3147. {
  3148. angled: {
  3149. height: math.unit(4, "meter"),
  3150. weight: math.unit(150, "kg"),
  3151. name: "Angled",
  3152. image: {
  3153. source: "./media/characters/talan/angled-sfw.svg",
  3154. bottom: 29 / 3734
  3155. }
  3156. },
  3157. angledNsfw: {
  3158. height: math.unit(4, "meter"),
  3159. weight: math.unit(150, "kg"),
  3160. name: "Angled (NSFW)",
  3161. image: {
  3162. source: "./media/characters/talan/angled-nsfw.svg",
  3163. bottom: 29 / 3734
  3164. }
  3165. },
  3166. frontNsfw: {
  3167. height: math.unit(4, "meter"),
  3168. weight: math.unit(150, "kg"),
  3169. name: "Front (NSFW)",
  3170. image: {
  3171. source: "./media/characters/talan/front-nsfw.svg",
  3172. bottom: 29 / 3734
  3173. }
  3174. },
  3175. sideNsfw: {
  3176. height: math.unit(4, "meter"),
  3177. weight: math.unit(150, "kg"),
  3178. name: "Side (NSFW)",
  3179. image: {
  3180. source: "./media/characters/talan/side-nsfw.svg",
  3181. bottom: 29 / 3734
  3182. }
  3183. },
  3184. back: {
  3185. height: math.unit(4, "meter"),
  3186. weight: math.unit(150, "kg"),
  3187. name: "Back",
  3188. image: {
  3189. source: "./media/characters/talan/back.svg"
  3190. }
  3191. },
  3192. dickBottom: {
  3193. height: math.unit(0.621, "meter"),
  3194. name: "Dick (Bottom)",
  3195. image: {
  3196. source: "./media/characters/talan/dick-bottom.svg"
  3197. }
  3198. },
  3199. dickTop: {
  3200. height: math.unit(0.621, "meter"),
  3201. name: "Dick (Top)",
  3202. image: {
  3203. source: "./media/characters/talan/dick-top.svg"
  3204. }
  3205. },
  3206. dickSide: {
  3207. height: math.unit(0.305, "meter"),
  3208. name: "Dick (Side)",
  3209. image: {
  3210. source: "./media/characters/talan/dick-side.svg"
  3211. }
  3212. },
  3213. dickFront: {
  3214. height: math.unit(0.305, "meter"),
  3215. name: "Dick (Front)",
  3216. image: {
  3217. source: "./media/characters/talan/dick-front.svg"
  3218. }
  3219. },
  3220. },
  3221. [
  3222. {
  3223. name: "Normal",
  3224. height: math.unit(4, "meters")
  3225. },
  3226. {
  3227. name: "Macro",
  3228. height: math.unit(100, "meters")
  3229. },
  3230. {
  3231. name: "Megamacro",
  3232. height: math.unit(2, "miles"),
  3233. default: true
  3234. },
  3235. {
  3236. name: "Gigamacro",
  3237. height: math.unit(5000, "miles")
  3238. },
  3239. {
  3240. name: "Teramacro",
  3241. height: math.unit(100, "parsecs")
  3242. }
  3243. ]
  3244. ))
  3245. characterMakers.push(() => makeCharacter(
  3246. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3247. {
  3248. front: {
  3249. height: math.unit(2, "meter"),
  3250. weight: math.unit(90, "kg"),
  3251. name: "Front",
  3252. image: {
  3253. source: "./media/characters/gael'rathus/front.svg"
  3254. }
  3255. },
  3256. frontAlt: {
  3257. height: math.unit(2, "meter"),
  3258. weight: math.unit(90, "kg"),
  3259. name: "Front (alt)",
  3260. image: {
  3261. source: "./media/characters/gael'rathus/front-alt.svg"
  3262. }
  3263. },
  3264. frontAlt2: {
  3265. height: math.unit(2, "meter"),
  3266. weight: math.unit(90, "kg"),
  3267. name: "Front (alt 2)",
  3268. image: {
  3269. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3270. }
  3271. }
  3272. },
  3273. [
  3274. {
  3275. name: "Normal",
  3276. height: math.unit(9, "feet"),
  3277. default: true
  3278. },
  3279. {
  3280. name: "Large",
  3281. height: math.unit(25, "feet")
  3282. },
  3283. {
  3284. name: "Macro",
  3285. height: math.unit(0.25, "miles")
  3286. },
  3287. {
  3288. name: "Megamacro",
  3289. height: math.unit(10, "miles")
  3290. }
  3291. ]
  3292. ))
  3293. characterMakers.push(() => makeCharacter(
  3294. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3295. {
  3296. side: {
  3297. height: math.unit(2, "meter"),
  3298. weight: math.unit(140, "kg"),
  3299. name: "Side",
  3300. image: {
  3301. source: "./media/characters/sosha/side.svg",
  3302. bottom: 0.042
  3303. }
  3304. },
  3305. },
  3306. [
  3307. {
  3308. name: "Normal",
  3309. height: math.unit(12, "feet"),
  3310. default: true
  3311. }
  3312. ]
  3313. ))
  3314. characterMakers.push(() => makeCharacter(
  3315. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3316. {
  3317. side: {
  3318. height: math.unit(5 + 5 / 12, "feet"),
  3319. weight: math.unit(170, "kg"),
  3320. name: "Side",
  3321. image: {
  3322. source: "./media/characters/runnola/side.svg",
  3323. extra: 741 / 448,
  3324. bottom: 0.05
  3325. }
  3326. },
  3327. },
  3328. [
  3329. {
  3330. name: "Small",
  3331. height: math.unit(3, "feet")
  3332. },
  3333. {
  3334. name: "Normal",
  3335. height: math.unit(5 + 5 / 12, "feet"),
  3336. default: true
  3337. },
  3338. {
  3339. name: "Big",
  3340. height: math.unit(10, "feet")
  3341. },
  3342. ]
  3343. ))
  3344. characterMakers.push(() => makeCharacter(
  3345. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3346. {
  3347. front: {
  3348. height: math.unit(2, "meter"),
  3349. weight: math.unit(50, "kg"),
  3350. name: "Front",
  3351. image: {
  3352. source: "./media/characters/kurribird/front.svg",
  3353. bottom: 0.015
  3354. }
  3355. },
  3356. frontAlt: {
  3357. height: math.unit(1.5, "meter"),
  3358. weight: math.unit(50, "kg"),
  3359. name: "Front (Alt)",
  3360. image: {
  3361. source: "./media/characters/kurribird/front-alt.svg",
  3362. extra: 1.45
  3363. }
  3364. },
  3365. },
  3366. [
  3367. {
  3368. name: "Normal",
  3369. height: math.unit(7, "feet")
  3370. },
  3371. {
  3372. name: "Big",
  3373. height: math.unit(12, "feet"),
  3374. default: true
  3375. },
  3376. {
  3377. name: "Macro",
  3378. height: math.unit(1500, "feet")
  3379. },
  3380. {
  3381. name: "Megamacro",
  3382. height: math.unit(2, "miles")
  3383. }
  3384. ]
  3385. ))
  3386. characterMakers.push(() => makeCharacter(
  3387. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3388. {
  3389. front: {
  3390. height: math.unit(2, "meter"),
  3391. weight: math.unit(80, "kg"),
  3392. name: "Front",
  3393. image: {
  3394. source: "./media/characters/elbial/front.svg",
  3395. extra: 1643 / 1556,
  3396. bottom: 60.2 / 1696
  3397. }
  3398. },
  3399. side: {
  3400. height: math.unit(2, "meter"),
  3401. weight: math.unit(80, "kg"),
  3402. name: "Side",
  3403. image: {
  3404. source: "./media/characters/elbial/side.svg",
  3405. extra: 1630 / 1565,
  3406. bottom: 71.5 / 1697
  3407. }
  3408. },
  3409. back: {
  3410. height: math.unit(2, "meter"),
  3411. weight: math.unit(80, "kg"),
  3412. name: "Back",
  3413. image: {
  3414. source: "./media/characters/elbial/back.svg",
  3415. extra: 1668 / 1595,
  3416. bottom: 5.6 / 1672
  3417. }
  3418. },
  3419. frontDressed: {
  3420. height: math.unit(2, "meter"),
  3421. weight: math.unit(80, "kg"),
  3422. name: "Front (Dressed)",
  3423. image: {
  3424. source: "./media/characters/elbial/front-dressed.svg",
  3425. extra: 1653 / 1584,
  3426. bottom: 57 / 1708
  3427. }
  3428. },
  3429. genitals: {
  3430. height: math.unit(2 / 3.367, "meter"),
  3431. name: "Genitals",
  3432. image: {
  3433. source: "./media/characters/elbial/genitals.svg"
  3434. }
  3435. },
  3436. },
  3437. [
  3438. {
  3439. name: "Large",
  3440. height: math.unit(100, "feet")
  3441. },
  3442. {
  3443. name: "Macro",
  3444. height: math.unit(500, "feet"),
  3445. default: true
  3446. },
  3447. {
  3448. name: "Megamacro",
  3449. height: math.unit(10, "miles")
  3450. },
  3451. {
  3452. name: "Gigamacro",
  3453. height: math.unit(25000, "miles")
  3454. },
  3455. {
  3456. name: "Full-Size",
  3457. height: math.unit(8000000, "gigaparsecs")
  3458. }
  3459. ]
  3460. ))
  3461. characterMakers.push(() => makeCharacter(
  3462. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3463. {
  3464. front: {
  3465. height: math.unit(2, "meter"),
  3466. weight: math.unit(60, "kg"),
  3467. name: "Front",
  3468. image: {
  3469. source: "./media/characters/noah/front.svg"
  3470. }
  3471. },
  3472. talons: {
  3473. height: math.unit(0.315, "meter"),
  3474. name: "Talons",
  3475. image: {
  3476. source: "./media/characters/noah/talons.svg"
  3477. }
  3478. }
  3479. },
  3480. [
  3481. {
  3482. name: "Large",
  3483. height: math.unit(50, "feet")
  3484. },
  3485. {
  3486. name: "Macro",
  3487. height: math.unit(750, "feet"),
  3488. default: true
  3489. },
  3490. {
  3491. name: "Megamacro",
  3492. height: math.unit(50, "miles")
  3493. },
  3494. {
  3495. name: "Gigamacro",
  3496. height: math.unit(100000, "miles")
  3497. },
  3498. {
  3499. name: "Full-Size",
  3500. height: math.unit(3000000000, "miles")
  3501. }
  3502. ]
  3503. ))
  3504. characterMakers.push(() => makeCharacter(
  3505. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3506. {
  3507. front: {
  3508. height: math.unit(2, "meter"),
  3509. weight: math.unit(80, "kg"),
  3510. name: "Front",
  3511. image: {
  3512. source: "./media/characters/natalya/front.svg"
  3513. }
  3514. },
  3515. back: {
  3516. height: math.unit(2, "meter"),
  3517. weight: math.unit(80, "kg"),
  3518. name: "Back",
  3519. image: {
  3520. source: "./media/characters/natalya/back.svg"
  3521. }
  3522. }
  3523. },
  3524. [
  3525. {
  3526. name: "Normal",
  3527. height: math.unit(150, "feet"),
  3528. default: true
  3529. },
  3530. {
  3531. name: "Megamacro",
  3532. height: math.unit(5, "miles")
  3533. },
  3534. {
  3535. name: "Full-Size",
  3536. height: math.unit(600, "kiloparsecs")
  3537. }
  3538. ]
  3539. ))
  3540. characterMakers.push(() => makeCharacter(
  3541. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3542. {
  3543. front: {
  3544. height: math.unit(2, "meter"),
  3545. weight: math.unit(50, "kg"),
  3546. name: "Front",
  3547. image: {
  3548. source: "./media/characters/erestrebah/front.svg",
  3549. extra: 1262/1162,
  3550. bottom: 96/1358
  3551. }
  3552. },
  3553. back: {
  3554. height: math.unit(2, "meter"),
  3555. weight: math.unit(50, "kg"),
  3556. name: "Back",
  3557. image: {
  3558. source: "./media/characters/erestrebah/back.svg",
  3559. extra: 1257/1139,
  3560. bottom: 13/1270
  3561. }
  3562. },
  3563. wing: {
  3564. height: math.unit(2, "meter"),
  3565. weight: math.unit(50, "kg"),
  3566. name: "Wing",
  3567. image: {
  3568. source: "./media/characters/erestrebah/wing.svg",
  3569. extra: 1262/1162,
  3570. bottom: 96/1358
  3571. }
  3572. },
  3573. mouth: {
  3574. height: math.unit(0.39, "feet"),
  3575. name: "Mouth",
  3576. image: {
  3577. source: "./media/characters/erestrebah/mouth.svg"
  3578. }
  3579. }
  3580. },
  3581. [
  3582. {
  3583. name: "Normal",
  3584. height: math.unit(10, "feet")
  3585. },
  3586. {
  3587. name: "Large",
  3588. height: math.unit(50, "feet"),
  3589. default: true
  3590. },
  3591. {
  3592. name: "Macro",
  3593. height: math.unit(300, "feet")
  3594. },
  3595. {
  3596. name: "Macro+",
  3597. height: math.unit(750, "feet")
  3598. },
  3599. {
  3600. name: "Megamacro",
  3601. height: math.unit(3, "miles")
  3602. }
  3603. ]
  3604. ))
  3605. characterMakers.push(() => makeCharacter(
  3606. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3607. {
  3608. front: {
  3609. height: math.unit(2, "meter"),
  3610. weight: math.unit(80, "kg"),
  3611. name: "Front",
  3612. image: {
  3613. source: "./media/characters/jennifer/front.svg",
  3614. bottom: 0.11,
  3615. extra: 1.16
  3616. }
  3617. },
  3618. frontAlt: {
  3619. height: math.unit(2, "meter"),
  3620. weight: math.unit(80, "kg"),
  3621. name: "Front (Alt)",
  3622. image: {
  3623. source: "./media/characters/jennifer/front-alt.svg"
  3624. }
  3625. }
  3626. },
  3627. [
  3628. {
  3629. name: "Canon Height",
  3630. height: math.unit(120, "feet"),
  3631. default: true
  3632. },
  3633. {
  3634. name: "Macro+",
  3635. height: math.unit(300, "feet")
  3636. },
  3637. {
  3638. name: "Megamacro",
  3639. height: math.unit(20000, "feet")
  3640. }
  3641. ]
  3642. ))
  3643. characterMakers.push(() => makeCharacter(
  3644. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3645. {
  3646. front: {
  3647. height: math.unit(2, "meter"),
  3648. weight: math.unit(50, "kg"),
  3649. name: "Front",
  3650. image: {
  3651. source: "./media/characters/kalista/front.svg",
  3652. extra: 1947 / 1700,
  3653. bottom: 76.6 / 1412.98
  3654. }
  3655. },
  3656. back: {
  3657. height: math.unit(2, "meter"),
  3658. weight: math.unit(50, "kg"),
  3659. name: "Back",
  3660. image: {
  3661. source: "./media/characters/kalista/back.svg",
  3662. extra: 1366 / 1156,
  3663. bottom: 33.9 / 1362.78
  3664. }
  3665. }
  3666. },
  3667. [
  3668. {
  3669. name: "Uncomfortably Small",
  3670. height: math.unit(10, "feet")
  3671. },
  3672. {
  3673. name: "Small",
  3674. height: math.unit(30, "feet")
  3675. },
  3676. {
  3677. name: "Macro",
  3678. height: math.unit(100, "feet"),
  3679. default: true
  3680. },
  3681. {
  3682. name: "Macro+",
  3683. height: math.unit(2000, "feet")
  3684. },
  3685. {
  3686. name: "True Form",
  3687. height: math.unit(8924, "miles")
  3688. }
  3689. ]
  3690. ))
  3691. characterMakers.push(() => makeCharacter(
  3692. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3693. {
  3694. front: {
  3695. height: math.unit(2, "meter"),
  3696. weight: math.unit(120, "kg"),
  3697. name: "Front",
  3698. image: {
  3699. source: "./media/characters/ggv/front.svg"
  3700. }
  3701. },
  3702. side: {
  3703. height: math.unit(2, "meter"),
  3704. weight: math.unit(120, "kg"),
  3705. name: "Side",
  3706. image: {
  3707. source: "./media/characters/ggv/side.svg"
  3708. }
  3709. }
  3710. },
  3711. [
  3712. {
  3713. name: "Extremely Puny",
  3714. height: math.unit(9 + 5 / 12, "feet")
  3715. },
  3716. {
  3717. name: "Horribly Small",
  3718. height: math.unit(47.7, "miles"),
  3719. default: true
  3720. },
  3721. {
  3722. name: "Reasonably Sized",
  3723. height: math.unit(25000, "parsecs")
  3724. },
  3725. {
  3726. name: "Slightly Uncompressed",
  3727. height: math.unit(7.77e31, "parsecs")
  3728. },
  3729. {
  3730. name: "Omniversal",
  3731. height: math.unit(1e300, "meters")
  3732. },
  3733. ]
  3734. ))
  3735. characterMakers.push(() => makeCharacter(
  3736. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3737. {
  3738. front: {
  3739. height: math.unit(2, "meter"),
  3740. weight: math.unit(75, "lb"),
  3741. name: "Front",
  3742. image: {
  3743. source: "./media/characters/napalm/front.svg"
  3744. }
  3745. },
  3746. back: {
  3747. height: math.unit(2, "meter"),
  3748. weight: math.unit(75, "lb"),
  3749. name: "Back",
  3750. image: {
  3751. source: "./media/characters/napalm/back.svg"
  3752. }
  3753. }
  3754. },
  3755. [
  3756. {
  3757. name: "Standard",
  3758. height: math.unit(55, "feet"),
  3759. default: true
  3760. }
  3761. ]
  3762. ))
  3763. characterMakers.push(() => makeCharacter(
  3764. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3765. {
  3766. front: {
  3767. height: math.unit(7 + 5 / 6, "feet"),
  3768. weight: math.unit(325, "lb"),
  3769. name: "Front",
  3770. image: {
  3771. source: "./media/characters/asana/front.svg",
  3772. extra: 1133 / 1060,
  3773. bottom: 15.2 / 1148.6
  3774. }
  3775. },
  3776. back: {
  3777. height: math.unit(7 + 5 / 6, "feet"),
  3778. weight: math.unit(325, "lb"),
  3779. name: "Back",
  3780. image: {
  3781. source: "./media/characters/asana/back.svg",
  3782. extra: 1114 / 1043,
  3783. bottom: 5 / 1120
  3784. }
  3785. },
  3786. dressedDark: {
  3787. height: math.unit(7 + 5 / 6, "feet"),
  3788. weight: math.unit(325, "lb"),
  3789. name: "Dressed (Dark)",
  3790. image: {
  3791. source: "./media/characters/asana/dressed-dark.svg",
  3792. extra: 1133 / 1060,
  3793. bottom: 15.2 / 1148.6
  3794. }
  3795. },
  3796. dressedLight: {
  3797. height: math.unit(7 + 5 / 6, "feet"),
  3798. weight: math.unit(325, "lb"),
  3799. name: "Dressed (Light)",
  3800. image: {
  3801. source: "./media/characters/asana/dressed-light.svg",
  3802. extra: 1133 / 1060,
  3803. bottom: 15.2 / 1148.6
  3804. }
  3805. },
  3806. },
  3807. [
  3808. {
  3809. name: "Standard",
  3810. height: math.unit(7 + 5 / 6, "feet"),
  3811. default: true
  3812. },
  3813. {
  3814. name: "Large",
  3815. height: math.unit(10, "meters")
  3816. },
  3817. {
  3818. name: "Macro",
  3819. height: math.unit(2500, "meters")
  3820. },
  3821. {
  3822. name: "Megamacro",
  3823. height: math.unit(5e6, "meters")
  3824. },
  3825. {
  3826. name: "Examacro",
  3827. height: math.unit(5e12, "lightyears")
  3828. },
  3829. {
  3830. name: "Max Size",
  3831. height: math.unit(1e31, "lightyears")
  3832. }
  3833. ]
  3834. ))
  3835. characterMakers.push(() => makeCharacter(
  3836. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3837. {
  3838. front: {
  3839. height: math.unit(2, "meter"),
  3840. weight: math.unit(60, "kg"),
  3841. name: "Front",
  3842. image: {
  3843. source: "./media/characters/ebony/front.svg",
  3844. bottom: 0.03,
  3845. extra: 1045 / 810 + 0.03
  3846. }
  3847. },
  3848. side: {
  3849. height: math.unit(2, "meter"),
  3850. weight: math.unit(60, "kg"),
  3851. name: "Side",
  3852. image: {
  3853. source: "./media/characters/ebony/side.svg",
  3854. bottom: 0.03,
  3855. extra: 1045 / 810 + 0.03
  3856. }
  3857. },
  3858. back: {
  3859. height: math.unit(2, "meter"),
  3860. weight: math.unit(60, "kg"),
  3861. name: "Back",
  3862. image: {
  3863. source: "./media/characters/ebony/back.svg",
  3864. bottom: 0.01,
  3865. extra: 1045 / 810 + 0.01
  3866. }
  3867. },
  3868. },
  3869. [
  3870. // TODO check why I did this lol
  3871. {
  3872. name: "Standard",
  3873. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3874. default: true
  3875. },
  3876. {
  3877. name: "Macro",
  3878. height: math.unit(200, "feet")
  3879. },
  3880. {
  3881. name: "Gigamacro",
  3882. height: math.unit(13000, "km")
  3883. }
  3884. ]
  3885. ))
  3886. characterMakers.push(() => makeCharacter(
  3887. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3888. {
  3889. front: {
  3890. height: math.unit(6, "feet"),
  3891. weight: math.unit(175, "lb"),
  3892. name: "Front",
  3893. image: {
  3894. source: "./media/characters/mountain/front.svg",
  3895. extra: 972 / 955,
  3896. bottom: 64 / 1036.6
  3897. }
  3898. },
  3899. back: {
  3900. height: math.unit(6, "feet"),
  3901. weight: math.unit(175, "lb"),
  3902. name: "Back",
  3903. image: {
  3904. source: "./media/characters/mountain/back.svg",
  3905. extra: 970 / 950,
  3906. bottom: 28.25 / 999
  3907. }
  3908. },
  3909. },
  3910. [
  3911. {
  3912. name: "Large",
  3913. height: math.unit(20, "meters")
  3914. },
  3915. {
  3916. name: "Macro",
  3917. height: math.unit(300, "meters")
  3918. },
  3919. {
  3920. name: "Gigamacro",
  3921. height: math.unit(10000, "km"),
  3922. default: true
  3923. },
  3924. {
  3925. name: "Examacro",
  3926. height: math.unit(10e9, "lightyears")
  3927. }
  3928. ]
  3929. ))
  3930. characterMakers.push(() => makeCharacter(
  3931. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  3932. {
  3933. front: {
  3934. height: math.unit(8, "feet"),
  3935. weight: math.unit(500, "lb"),
  3936. name: "Front",
  3937. image: {
  3938. source: "./media/characters/rick/front.svg"
  3939. }
  3940. }
  3941. },
  3942. [
  3943. {
  3944. name: "Normal",
  3945. height: math.unit(8, "feet"),
  3946. default: true
  3947. },
  3948. {
  3949. name: "Macro",
  3950. height: math.unit(5, "km")
  3951. }
  3952. ]
  3953. ))
  3954. characterMakers.push(() => makeCharacter(
  3955. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  3956. {
  3957. front: {
  3958. height: math.unit(8, "feet"),
  3959. weight: math.unit(120, "lb"),
  3960. name: "Front",
  3961. image: {
  3962. source: "./media/characters/ona/front.svg"
  3963. }
  3964. },
  3965. frontAlt: {
  3966. height: math.unit(8, "feet"),
  3967. weight: math.unit(120, "lb"),
  3968. name: "Front (Alt)",
  3969. image: {
  3970. source: "./media/characters/ona/front-alt.svg"
  3971. }
  3972. },
  3973. back: {
  3974. height: math.unit(8, "feet"),
  3975. weight: math.unit(120, "lb"),
  3976. name: "Back",
  3977. image: {
  3978. source: "./media/characters/ona/back.svg"
  3979. }
  3980. },
  3981. foot: {
  3982. height: math.unit(1.1, "feet"),
  3983. name: "Foot",
  3984. image: {
  3985. source: "./media/characters/ona/foot.svg"
  3986. }
  3987. }
  3988. },
  3989. [
  3990. {
  3991. name: "Megamacro",
  3992. height: math.unit(70, "km"),
  3993. default: true
  3994. },
  3995. {
  3996. name: "Gigamacro",
  3997. height: math.unit(681818, "miles")
  3998. },
  3999. {
  4000. name: "Examacro",
  4001. height: math.unit(3800000, "lightyears")
  4002. },
  4003. ]
  4004. ))
  4005. characterMakers.push(() => makeCharacter(
  4006. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  4007. {
  4008. front: {
  4009. height: math.unit(12, "feet"),
  4010. weight: math.unit(3000, "lb"),
  4011. name: "Front",
  4012. image: {
  4013. source: "./media/characters/mech/front.svg",
  4014. extra: 2900 / 2770,
  4015. bottom: 110 / 3010
  4016. }
  4017. },
  4018. back: {
  4019. height: math.unit(12, "feet"),
  4020. weight: math.unit(3000, "lb"),
  4021. name: "Back",
  4022. image: {
  4023. source: "./media/characters/mech/back.svg",
  4024. extra: 3011 / 2890,
  4025. bottom: 94 / 3105
  4026. }
  4027. },
  4028. maw: {
  4029. height: math.unit(3.07, "feet"),
  4030. name: "Maw",
  4031. image: {
  4032. source: "./media/characters/mech/maw.svg"
  4033. }
  4034. },
  4035. head: {
  4036. height: math.unit(2.82, "feet"),
  4037. name: "Head",
  4038. image: {
  4039. source: "./media/characters/mech/head.svg"
  4040. }
  4041. },
  4042. dick: {
  4043. height: math.unit(1.43, "feet"),
  4044. name: "Dick",
  4045. image: {
  4046. source: "./media/characters/mech/dick.svg"
  4047. }
  4048. },
  4049. },
  4050. [
  4051. {
  4052. name: "Normal",
  4053. height: math.unit(12, "feet")
  4054. },
  4055. {
  4056. name: "Macro",
  4057. height: math.unit(300, "feet"),
  4058. default: true
  4059. },
  4060. {
  4061. name: "Macro+",
  4062. height: math.unit(1500, "feet")
  4063. },
  4064. ]
  4065. ))
  4066. characterMakers.push(() => makeCharacter(
  4067. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  4068. {
  4069. front: {
  4070. height: math.unit(1.3, "meter"),
  4071. weight: math.unit(30, "kg"),
  4072. name: "Front",
  4073. image: {
  4074. source: "./media/characters/gregory/front.svg",
  4075. }
  4076. }
  4077. },
  4078. [
  4079. {
  4080. name: "Normal",
  4081. height: math.unit(1.3, "meter"),
  4082. default: true
  4083. },
  4084. {
  4085. name: "Macro",
  4086. height: math.unit(20, "meter")
  4087. }
  4088. ]
  4089. ))
  4090. characterMakers.push(() => makeCharacter(
  4091. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  4092. {
  4093. front: {
  4094. height: math.unit(2.8, "meter"),
  4095. weight: math.unit(200, "kg"),
  4096. name: "Front",
  4097. image: {
  4098. source: "./media/characters/elory/front.svg",
  4099. }
  4100. }
  4101. },
  4102. [
  4103. {
  4104. name: "Normal",
  4105. height: math.unit(2.8, "meter"),
  4106. default: true
  4107. },
  4108. {
  4109. name: "Macro",
  4110. height: math.unit(38, "meter")
  4111. }
  4112. ]
  4113. ))
  4114. characterMakers.push(() => makeCharacter(
  4115. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4116. {
  4117. front: {
  4118. height: math.unit(470, "feet"),
  4119. weight: math.unit(924, "tons"),
  4120. name: "Front",
  4121. image: {
  4122. source: "./media/characters/angelpatamon/front.svg",
  4123. }
  4124. }
  4125. },
  4126. [
  4127. {
  4128. name: "Normal",
  4129. height: math.unit(470, "feet"),
  4130. default: true
  4131. },
  4132. {
  4133. name: "Deity Size I",
  4134. height: math.unit(28651.2, "km")
  4135. },
  4136. {
  4137. name: "Deity Size II",
  4138. height: math.unit(171907.2, "km")
  4139. }
  4140. ]
  4141. ))
  4142. characterMakers.push(() => makeCharacter(
  4143. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4144. {
  4145. side: {
  4146. height: math.unit(7.2, "meter"),
  4147. weight: math.unit(8.2, "tons"),
  4148. name: "Side",
  4149. image: {
  4150. source: "./media/characters/cryae/side.svg",
  4151. extra: 3500 / 1500
  4152. }
  4153. }
  4154. },
  4155. [
  4156. {
  4157. name: "Normal",
  4158. height: math.unit(7.2, "meter"),
  4159. default: true
  4160. }
  4161. ]
  4162. ))
  4163. characterMakers.push(() => makeCharacter(
  4164. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4165. {
  4166. front: {
  4167. height: math.unit(6, "feet"),
  4168. weight: math.unit(175, "lb"),
  4169. name: "Front",
  4170. image: {
  4171. source: "./media/characters/xera/front.svg",
  4172. extra: 2377 / 1972,
  4173. bottom: 75.5 / 2452
  4174. }
  4175. },
  4176. side: {
  4177. height: math.unit(6, "feet"),
  4178. weight: math.unit(175, "lb"),
  4179. name: "Side",
  4180. image: {
  4181. source: "./media/characters/xera/side.svg",
  4182. extra: 2345 / 2019,
  4183. bottom: 39.7 / 2384
  4184. }
  4185. },
  4186. back: {
  4187. height: math.unit(6, "feet"),
  4188. weight: math.unit(175, "lb"),
  4189. name: "Back",
  4190. image: {
  4191. source: "./media/characters/xera/back.svg",
  4192. extra: 2095 / 1984,
  4193. bottom: 67 / 2166
  4194. }
  4195. },
  4196. },
  4197. [
  4198. {
  4199. name: "Small",
  4200. height: math.unit(10, "feet")
  4201. },
  4202. {
  4203. name: "Macro",
  4204. height: math.unit(500, "meters"),
  4205. default: true
  4206. },
  4207. {
  4208. name: "Macro+",
  4209. height: math.unit(10, "km")
  4210. },
  4211. {
  4212. name: "Gigamacro",
  4213. height: math.unit(25000, "km")
  4214. },
  4215. {
  4216. name: "Teramacro",
  4217. height: math.unit(3e6, "km")
  4218. }
  4219. ]
  4220. ))
  4221. characterMakers.push(() => makeCharacter(
  4222. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4223. {
  4224. front: {
  4225. height: math.unit(6, "feet"),
  4226. weight: math.unit(175, "lb"),
  4227. name: "Front",
  4228. image: {
  4229. source: "./media/characters/nebula/front.svg",
  4230. extra: 2566 / 2362,
  4231. bottom: 81 / 2644
  4232. }
  4233. }
  4234. },
  4235. [
  4236. {
  4237. name: "Small",
  4238. height: math.unit(4.5, "meters")
  4239. },
  4240. {
  4241. name: "Macro",
  4242. height: math.unit(1500, "meters"),
  4243. default: true
  4244. },
  4245. {
  4246. name: "Megamacro",
  4247. height: math.unit(150, "km")
  4248. },
  4249. {
  4250. name: "Gigamacro",
  4251. height: math.unit(27000, "km")
  4252. }
  4253. ]
  4254. ))
  4255. characterMakers.push(() => makeCharacter(
  4256. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4257. {
  4258. front: {
  4259. height: math.unit(6, "feet"),
  4260. weight: math.unit(225, "lb"),
  4261. name: "Front",
  4262. image: {
  4263. source: "./media/characters/abysgar/front.svg"
  4264. }
  4265. }
  4266. },
  4267. [
  4268. {
  4269. name: "Small",
  4270. height: math.unit(4.5, "meters")
  4271. },
  4272. {
  4273. name: "Macro",
  4274. height: math.unit(1250, "meters"),
  4275. default: true
  4276. },
  4277. {
  4278. name: "Megamacro",
  4279. height: math.unit(125, "km")
  4280. },
  4281. {
  4282. name: "Gigamacro",
  4283. height: math.unit(26000, "km")
  4284. }
  4285. ]
  4286. ))
  4287. characterMakers.push(() => makeCharacter(
  4288. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  4289. {
  4290. front: {
  4291. height: math.unit(6, "feet"),
  4292. weight: math.unit(180, "lb"),
  4293. name: "Front",
  4294. image: {
  4295. source: "./media/characters/yakuz/front.svg"
  4296. }
  4297. }
  4298. },
  4299. [
  4300. {
  4301. name: "Small",
  4302. height: math.unit(5, "meters")
  4303. },
  4304. {
  4305. name: "Macro",
  4306. height: math.unit(1500, "meters"),
  4307. default: true
  4308. },
  4309. {
  4310. name: "Megamacro",
  4311. height: math.unit(200, "km")
  4312. },
  4313. {
  4314. name: "Gigamacro",
  4315. height: math.unit(100000, "km")
  4316. }
  4317. ]
  4318. ))
  4319. characterMakers.push(() => makeCharacter(
  4320. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4321. {
  4322. front: {
  4323. height: math.unit(6, "feet"),
  4324. weight: math.unit(175, "lb"),
  4325. name: "Front",
  4326. image: {
  4327. source: "./media/characters/mirova/front.svg",
  4328. extra: 3334 / 3071,
  4329. bottom: 42 / 3375.6
  4330. }
  4331. }
  4332. },
  4333. [
  4334. {
  4335. name: "Small",
  4336. height: math.unit(5, "meters")
  4337. },
  4338. {
  4339. name: "Macro",
  4340. height: math.unit(900, "meters"),
  4341. default: true
  4342. },
  4343. {
  4344. name: "Megamacro",
  4345. height: math.unit(135, "km")
  4346. },
  4347. {
  4348. name: "Gigamacro",
  4349. height: math.unit(20000, "km")
  4350. }
  4351. ]
  4352. ))
  4353. characterMakers.push(() => makeCharacter(
  4354. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4355. {
  4356. side: {
  4357. height: math.unit(28.35, "feet"),
  4358. weight: math.unit(99.75, "tons"),
  4359. name: "Side",
  4360. image: {
  4361. source: "./media/characters/asana-mech/side.svg",
  4362. extra: 923 / 699,
  4363. bottom: 50 / 975
  4364. }
  4365. },
  4366. chaingun: {
  4367. height: math.unit(7, "feet"),
  4368. weight: math.unit(2400, "lb"),
  4369. name: "Chaingun",
  4370. image: {
  4371. source: "./media/characters/asana-mech/chaingun.svg"
  4372. }
  4373. },
  4374. laser: {
  4375. height: math.unit(7.12, "feet"),
  4376. weight: math.unit(2000, "lb"),
  4377. name: "Laser",
  4378. image: {
  4379. source: "./media/characters/asana-mech/laser.svg"
  4380. }
  4381. },
  4382. },
  4383. [
  4384. {
  4385. name: "Normal",
  4386. height: math.unit(28.35, "feet"),
  4387. default: true
  4388. },
  4389. {
  4390. name: "Macro",
  4391. height: math.unit(2500, "feet")
  4392. },
  4393. {
  4394. name: "Megamacro",
  4395. height: math.unit(25, "miles")
  4396. },
  4397. {
  4398. name: "Examacro",
  4399. height: math.unit(6e8, "lightyears")
  4400. },
  4401. ]
  4402. ))
  4403. characterMakers.push(() => makeCharacter(
  4404. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4405. {
  4406. front: {
  4407. height: math.unit(5, "meters"),
  4408. weight: math.unit(1000, "kg"),
  4409. name: "Front",
  4410. image: {
  4411. source: "./media/characters/asche/front.svg",
  4412. extra: 1258 / 1190,
  4413. bottom: 47 / 1305
  4414. }
  4415. },
  4416. frontUnderwear: {
  4417. height: math.unit(5, "meters"),
  4418. weight: math.unit(1000, "kg"),
  4419. name: "Front (Underwear)",
  4420. image: {
  4421. source: "./media/characters/asche/front-underwear.svg",
  4422. extra: 1258 / 1190,
  4423. bottom: 47 / 1305
  4424. }
  4425. },
  4426. frontDressed: {
  4427. height: math.unit(5, "meters"),
  4428. weight: math.unit(1000, "kg"),
  4429. name: "Front (Dressed)",
  4430. image: {
  4431. source: "./media/characters/asche/front-dressed.svg",
  4432. extra: 1258 / 1190,
  4433. bottom: 47 / 1305
  4434. }
  4435. },
  4436. frontArmor: {
  4437. height: math.unit(5, "meters"),
  4438. weight: math.unit(1000, "kg"),
  4439. name: "Front (Armored)",
  4440. image: {
  4441. source: "./media/characters/asche/front-armored.svg",
  4442. extra: 1374 / 1308,
  4443. bottom: 23 / 1397
  4444. }
  4445. },
  4446. mp724: {
  4447. height: math.unit(0.96, "meters"),
  4448. weight: math.unit(38, "kg"),
  4449. name: "H&K MP724",
  4450. image: {
  4451. source: "./media/characters/asche/h&k-mp724.svg"
  4452. }
  4453. },
  4454. side: {
  4455. height: math.unit(5, "meters"),
  4456. weight: math.unit(1000, "kg"),
  4457. name: "Side",
  4458. image: {
  4459. source: "./media/characters/asche/side.svg",
  4460. extra: 1717 / 1609,
  4461. bottom: 0.005
  4462. }
  4463. },
  4464. back: {
  4465. height: math.unit(5, "meters"),
  4466. weight: math.unit(1000, "kg"),
  4467. name: "Back",
  4468. image: {
  4469. source: "./media/characters/asche/back.svg",
  4470. extra: 1570 / 1501
  4471. }
  4472. },
  4473. },
  4474. [
  4475. {
  4476. name: "DEFCON 5",
  4477. height: math.unit(5, "meters")
  4478. },
  4479. {
  4480. name: "DEFCON 4",
  4481. height: math.unit(500, "meters"),
  4482. default: true
  4483. },
  4484. {
  4485. name: "DEFCON 3",
  4486. height: math.unit(5, "km")
  4487. },
  4488. {
  4489. name: "DEFCON 2",
  4490. height: math.unit(500, "km")
  4491. },
  4492. {
  4493. name: "DEFCON 1",
  4494. height: math.unit(500000, "km")
  4495. },
  4496. {
  4497. name: "DEFCON 0",
  4498. height: math.unit(3, "gigaparsecs")
  4499. },
  4500. ]
  4501. ))
  4502. characterMakers.push(() => makeCharacter(
  4503. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4504. {
  4505. front: {
  4506. height: math.unit(2, "meters"),
  4507. weight: math.unit(76, "kg"),
  4508. name: "Front",
  4509. image: {
  4510. source: "./media/characters/gale/front.svg"
  4511. }
  4512. },
  4513. frontAlt1: {
  4514. height: math.unit(2, "meters"),
  4515. weight: math.unit(76, "kg"),
  4516. name: "Front (Alt 1)",
  4517. image: {
  4518. source: "./media/characters/gale/front-alt-1.svg"
  4519. }
  4520. },
  4521. frontAlt2: {
  4522. height: math.unit(2, "meters"),
  4523. weight: math.unit(76, "kg"),
  4524. name: "Front (Alt 2)",
  4525. image: {
  4526. source: "./media/characters/gale/front-alt-2.svg"
  4527. }
  4528. },
  4529. },
  4530. [
  4531. {
  4532. name: "Normal",
  4533. height: math.unit(7, "feet")
  4534. },
  4535. {
  4536. name: "Macro",
  4537. height: math.unit(150, "feet"),
  4538. default: true
  4539. },
  4540. {
  4541. name: "Macro+",
  4542. height: math.unit(300, "feet")
  4543. },
  4544. ]
  4545. ))
  4546. characterMakers.push(() => makeCharacter(
  4547. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4548. {
  4549. front: {
  4550. height: math.unit(5 + 10/12, "feet"),
  4551. weight: math.unit(67, "kg"),
  4552. name: "Front",
  4553. image: {
  4554. source: "./media/characters/draylen/front.svg",
  4555. extra: 832/777,
  4556. bottom: 85/917
  4557. }
  4558. }
  4559. },
  4560. [
  4561. {
  4562. name: "Normal",
  4563. height: math.unit(5 + 10/12, "feet")
  4564. },
  4565. {
  4566. name: "Macro",
  4567. height: math.unit(150, "feet"),
  4568. default: true
  4569. }
  4570. ]
  4571. ))
  4572. characterMakers.push(() => makeCharacter(
  4573. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4574. {
  4575. front: {
  4576. height: math.unit(7 + 9 / 12, "feet"),
  4577. weight: math.unit(379, "lbs"),
  4578. name: "Front",
  4579. image: {
  4580. source: "./media/characters/chez/front.svg"
  4581. }
  4582. },
  4583. side: {
  4584. height: math.unit(7 + 9 / 12, "feet"),
  4585. weight: math.unit(379, "lbs"),
  4586. name: "Side",
  4587. image: {
  4588. source: "./media/characters/chez/side.svg"
  4589. }
  4590. }
  4591. },
  4592. [
  4593. {
  4594. name: "Normal",
  4595. height: math.unit(7 + 9 / 12, "feet"),
  4596. default: true
  4597. },
  4598. {
  4599. name: "God King",
  4600. height: math.unit(9750000, "meters")
  4601. }
  4602. ]
  4603. ))
  4604. characterMakers.push(() => makeCharacter(
  4605. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4606. {
  4607. front: {
  4608. height: math.unit(6, "feet"),
  4609. weight: math.unit(275, "lbs"),
  4610. name: "Front",
  4611. image: {
  4612. source: "./media/characters/kaylum/front.svg",
  4613. bottom: 0.01,
  4614. extra: 1166 / 1031
  4615. }
  4616. },
  4617. frontWingless: {
  4618. height: math.unit(6, "feet"),
  4619. weight: math.unit(275, "lbs"),
  4620. name: "Front (Wingless)",
  4621. image: {
  4622. source: "./media/characters/kaylum/front-wingless.svg",
  4623. bottom: 0.01,
  4624. extra: 1117 / 1031
  4625. }
  4626. }
  4627. },
  4628. [
  4629. {
  4630. name: "Normal",
  4631. height: math.unit(3.05, "meters")
  4632. },
  4633. {
  4634. name: "Master",
  4635. height: math.unit(5.5, "meters")
  4636. },
  4637. {
  4638. name: "Rampage",
  4639. height: math.unit(19, "meters")
  4640. },
  4641. {
  4642. name: "Macro Lite",
  4643. height: math.unit(37, "meters")
  4644. },
  4645. {
  4646. name: "Hyper Predator",
  4647. height: math.unit(61, "meters")
  4648. },
  4649. {
  4650. name: "Macro",
  4651. height: math.unit(138, "meters"),
  4652. default: true
  4653. }
  4654. ]
  4655. ))
  4656. characterMakers.push(() => makeCharacter(
  4657. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4658. {
  4659. front: {
  4660. height: math.unit(6, "feet"),
  4661. weight: math.unit(150, "lbs"),
  4662. name: "Front",
  4663. image: {
  4664. source: "./media/characters/geta/front.svg"
  4665. }
  4666. }
  4667. },
  4668. [
  4669. {
  4670. name: "Micro",
  4671. height: math.unit(3, "inches"),
  4672. default: true
  4673. },
  4674. {
  4675. name: "Normal",
  4676. height: math.unit(5 + 5 / 12, "feet")
  4677. }
  4678. ]
  4679. ))
  4680. characterMakers.push(() => makeCharacter(
  4681. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4682. {
  4683. front: {
  4684. height: math.unit(6, "feet"),
  4685. weight: math.unit(300, "lbs"),
  4686. name: "Front",
  4687. image: {
  4688. source: "./media/characters/tyrnn/front.svg"
  4689. }
  4690. }
  4691. },
  4692. [
  4693. {
  4694. name: "Main Height",
  4695. height: math.unit(355, "feet"),
  4696. default: true
  4697. },
  4698. {
  4699. name: "Fave. Height",
  4700. height: math.unit(2400, "feet")
  4701. }
  4702. ]
  4703. ))
  4704. characterMakers.push(() => makeCharacter(
  4705. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4706. {
  4707. front: {
  4708. height: math.unit(6, "feet"),
  4709. weight: math.unit(300, "lbs"),
  4710. name: "Front",
  4711. image: {
  4712. source: "./media/characters/appledectomy/front.svg"
  4713. }
  4714. }
  4715. },
  4716. [
  4717. {
  4718. name: "Macro",
  4719. height: math.unit(2500, "feet")
  4720. },
  4721. {
  4722. name: "Megamacro",
  4723. height: math.unit(50, "miles"),
  4724. default: true
  4725. },
  4726. {
  4727. name: "Gigamacro",
  4728. height: math.unit(5000, "miles")
  4729. },
  4730. {
  4731. name: "Teramacro",
  4732. height: math.unit(250000, "miles")
  4733. },
  4734. ]
  4735. ))
  4736. characterMakers.push(() => makeCharacter(
  4737. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4738. {
  4739. front: {
  4740. height: math.unit(6, "feet"),
  4741. weight: math.unit(200, "lbs"),
  4742. name: "Front",
  4743. image: {
  4744. source: "./media/characters/vulpes/front.svg",
  4745. extra: 573 / 543,
  4746. bottom: 0.033
  4747. }
  4748. },
  4749. side: {
  4750. height: math.unit(6, "feet"),
  4751. weight: math.unit(200, "lbs"),
  4752. name: "Side",
  4753. image: {
  4754. source: "./media/characters/vulpes/side.svg",
  4755. extra: 577 / 549,
  4756. bottom: 11 / 588
  4757. }
  4758. },
  4759. back: {
  4760. height: math.unit(6, "feet"),
  4761. weight: math.unit(200, "lbs"),
  4762. name: "Back",
  4763. image: {
  4764. source: "./media/characters/vulpes/back.svg",
  4765. extra: 573 / 549,
  4766. bottom: 20 / 593
  4767. }
  4768. },
  4769. feet: {
  4770. height: math.unit(1.276, "feet"),
  4771. name: "Feet",
  4772. image: {
  4773. source: "./media/characters/vulpes/feet.svg"
  4774. }
  4775. },
  4776. maw: {
  4777. height: math.unit(1.18, "feet"),
  4778. name: "Maw",
  4779. image: {
  4780. source: "./media/characters/vulpes/maw.svg"
  4781. }
  4782. },
  4783. },
  4784. [
  4785. {
  4786. name: "Micro",
  4787. height: math.unit(2, "inches")
  4788. },
  4789. {
  4790. name: "Normal",
  4791. height: math.unit(6.3, "feet")
  4792. },
  4793. {
  4794. name: "Macro",
  4795. height: math.unit(850, "feet")
  4796. },
  4797. {
  4798. name: "Megamacro",
  4799. height: math.unit(7500, "feet"),
  4800. default: true
  4801. },
  4802. {
  4803. name: "Gigamacro",
  4804. height: math.unit(570000, "miles")
  4805. }
  4806. ]
  4807. ))
  4808. characterMakers.push(() => makeCharacter(
  4809. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4810. {
  4811. front: {
  4812. height: math.unit(6, "feet"),
  4813. weight: math.unit(210, "lbs"),
  4814. name: "Front",
  4815. image: {
  4816. source: "./media/characters/rain-fallen/front.svg"
  4817. }
  4818. },
  4819. side: {
  4820. height: math.unit(6, "feet"),
  4821. weight: math.unit(210, "lbs"),
  4822. name: "Side",
  4823. image: {
  4824. source: "./media/characters/rain-fallen/side.svg"
  4825. }
  4826. },
  4827. back: {
  4828. height: math.unit(6, "feet"),
  4829. weight: math.unit(210, "lbs"),
  4830. name: "Back",
  4831. image: {
  4832. source: "./media/characters/rain-fallen/back.svg"
  4833. }
  4834. },
  4835. feral: {
  4836. height: math.unit(9, "feet"),
  4837. weight: math.unit(700, "lbs"),
  4838. name: "Feral",
  4839. image: {
  4840. source: "./media/characters/rain-fallen/feral.svg"
  4841. }
  4842. },
  4843. },
  4844. [
  4845. {
  4846. name: "Meddling with Mortals",
  4847. height: math.unit(8 + 8/12, "feet")
  4848. },
  4849. {
  4850. name: "Normal",
  4851. height: math.unit(5, "meter")
  4852. },
  4853. {
  4854. name: "Macro",
  4855. height: math.unit(150, "meter"),
  4856. default: true
  4857. },
  4858. {
  4859. name: "Megamacro",
  4860. height: math.unit(278e6, "meter")
  4861. },
  4862. {
  4863. name: "Gigamacro",
  4864. height: math.unit(2e9, "meter")
  4865. },
  4866. {
  4867. name: "Teramacro",
  4868. height: math.unit(8e12, "meter")
  4869. },
  4870. {
  4871. name: "Devourer",
  4872. height: math.unit(14, "zettameters")
  4873. },
  4874. {
  4875. name: "Scarlet King",
  4876. height: math.unit(18, "yottameters")
  4877. },
  4878. {
  4879. name: "Void",
  4880. height: math.unit(1e88, "yottameters")
  4881. }
  4882. ]
  4883. ))
  4884. characterMakers.push(() => makeCharacter(
  4885. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4886. {
  4887. standing: {
  4888. height: math.unit(6, "feet"),
  4889. weight: math.unit(180, "lbs"),
  4890. name: "Standing",
  4891. image: {
  4892. source: "./media/characters/zaakira/standing.svg",
  4893. extra: 1599/1504,
  4894. bottom: 39/1638
  4895. }
  4896. },
  4897. laying: {
  4898. height: math.unit(3, "feet"),
  4899. weight: math.unit(180, "lbs"),
  4900. name: "Laying",
  4901. image: {
  4902. source: "./media/characters/zaakira/laying.svg"
  4903. }
  4904. },
  4905. },
  4906. [
  4907. {
  4908. name: "Normal",
  4909. height: math.unit(12, "feet")
  4910. },
  4911. {
  4912. name: "Macro",
  4913. height: math.unit(279, "feet"),
  4914. default: true
  4915. }
  4916. ]
  4917. ))
  4918. characterMakers.push(() => makeCharacter(
  4919. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4920. {
  4921. femSfw: {
  4922. height: math.unit(8, "feet"),
  4923. weight: math.unit(350, "lb"),
  4924. name: "Fem",
  4925. image: {
  4926. source: "./media/characters/sigvald/fem-sfw.svg",
  4927. extra: 182 / 164,
  4928. bottom: 8.7 / 190.5
  4929. }
  4930. },
  4931. femNsfw: {
  4932. height: math.unit(8, "feet"),
  4933. weight: math.unit(350, "lb"),
  4934. name: "Fem (NSFW)",
  4935. image: {
  4936. source: "./media/characters/sigvald/fem-nsfw.svg",
  4937. extra: 182 / 164,
  4938. bottom: 8.7 / 190.5
  4939. }
  4940. },
  4941. maleNsfw: {
  4942. height: math.unit(8, "feet"),
  4943. weight: math.unit(350, "lb"),
  4944. name: "Male (NSFW)",
  4945. image: {
  4946. source: "./media/characters/sigvald/male-nsfw.svg",
  4947. extra: 182 / 164,
  4948. bottom: 8.7 / 190.5
  4949. }
  4950. },
  4951. hermNsfw: {
  4952. height: math.unit(8, "feet"),
  4953. weight: math.unit(350, "lb"),
  4954. name: "Herm (NSFW)",
  4955. image: {
  4956. source: "./media/characters/sigvald/herm-nsfw.svg",
  4957. extra: 182 / 164,
  4958. bottom: 8.7 / 190.5
  4959. }
  4960. },
  4961. dick: {
  4962. height: math.unit(2.36, "feet"),
  4963. name: "Dick",
  4964. image: {
  4965. source: "./media/characters/sigvald/dick.svg"
  4966. }
  4967. },
  4968. eye: {
  4969. height: math.unit(0.31, "feet"),
  4970. name: "Eye",
  4971. image: {
  4972. source: "./media/characters/sigvald/eye.svg"
  4973. }
  4974. },
  4975. mouth: {
  4976. height: math.unit(0.92, "feet"),
  4977. name: "Mouth",
  4978. image: {
  4979. source: "./media/characters/sigvald/mouth.svg"
  4980. }
  4981. },
  4982. paws: {
  4983. height: math.unit(2.2, "feet"),
  4984. name: "Paws",
  4985. image: {
  4986. source: "./media/characters/sigvald/paws.svg"
  4987. }
  4988. }
  4989. },
  4990. [
  4991. {
  4992. name: "Normal",
  4993. height: math.unit(8, "feet")
  4994. },
  4995. {
  4996. name: "Large",
  4997. height: math.unit(12, "feet")
  4998. },
  4999. {
  5000. name: "Larger",
  5001. height: math.unit(20, "feet")
  5002. },
  5003. {
  5004. name: "Macro",
  5005. height: math.unit(150, "feet")
  5006. },
  5007. {
  5008. name: "Macro+",
  5009. height: math.unit(200, "feet"),
  5010. default: true
  5011. },
  5012. ]
  5013. ))
  5014. characterMakers.push(() => makeCharacter(
  5015. { name: "Scott", species: ["fox"], tags: ["taur"] },
  5016. {
  5017. side: {
  5018. height: math.unit(12, "feet"),
  5019. weight: math.unit(2000, "kg"),
  5020. name: "Side",
  5021. image: {
  5022. source: "./media/characters/scott/side.svg",
  5023. extra: 754 / 724,
  5024. bottom: 0.069
  5025. }
  5026. },
  5027. upright: {
  5028. height: math.unit(12, "feet"),
  5029. weight: math.unit(2000, "kg"),
  5030. name: "Upright",
  5031. image: {
  5032. source: "./media/characters/scott/upright.svg",
  5033. extra: 3881 / 3722,
  5034. bottom: 0.05
  5035. }
  5036. },
  5037. },
  5038. [
  5039. {
  5040. name: "Normal",
  5041. height: math.unit(12, "feet"),
  5042. default: true
  5043. },
  5044. ]
  5045. ))
  5046. characterMakers.push(() => makeCharacter(
  5047. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  5048. {
  5049. side: {
  5050. height: math.unit(8, "meters"),
  5051. weight: math.unit(84755, "lbs"),
  5052. name: "Side",
  5053. image: {
  5054. source: "./media/characters/tobias/side.svg",
  5055. extra: 1474 / 1096,
  5056. bottom: 38.9 / 1513.1235
  5057. }
  5058. },
  5059. },
  5060. [
  5061. {
  5062. name: "Normal",
  5063. height: math.unit(8, "meters"),
  5064. default: true
  5065. },
  5066. ]
  5067. ))
  5068. characterMakers.push(() => makeCharacter(
  5069. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  5070. {
  5071. front: {
  5072. height: math.unit(5.5, "feet"),
  5073. weight: math.unit(400, "lbs"),
  5074. name: "Front",
  5075. image: {
  5076. source: "./media/characters/kieran/front.svg",
  5077. extra: 2694 / 2364,
  5078. bottom: 217 / 2908
  5079. }
  5080. },
  5081. side: {
  5082. height: math.unit(5.5, "feet"),
  5083. weight: math.unit(400, "lbs"),
  5084. name: "Side",
  5085. image: {
  5086. source: "./media/characters/kieran/side.svg",
  5087. extra: 875 / 777,
  5088. bottom: 84.6 / 959
  5089. }
  5090. },
  5091. },
  5092. [
  5093. {
  5094. name: "Normal",
  5095. height: math.unit(5.5, "feet"),
  5096. default: true
  5097. },
  5098. ]
  5099. ))
  5100. characterMakers.push(() => makeCharacter(
  5101. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  5102. {
  5103. side: {
  5104. height: math.unit(2, "meters"),
  5105. weight: math.unit(70, "kg"),
  5106. name: "Side",
  5107. image: {
  5108. source: "./media/characters/sanya/side.svg",
  5109. bottom: 0.02,
  5110. extra: 1.02
  5111. }
  5112. },
  5113. },
  5114. [
  5115. {
  5116. name: "Small",
  5117. height: math.unit(2, "meters")
  5118. },
  5119. {
  5120. name: "Normal",
  5121. height: math.unit(3, "meters")
  5122. },
  5123. {
  5124. name: "Macro",
  5125. height: math.unit(16, "meters"),
  5126. default: true
  5127. },
  5128. ]
  5129. ))
  5130. characterMakers.push(() => makeCharacter(
  5131. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  5132. {
  5133. front: {
  5134. height: math.unit(2, "meters"),
  5135. weight: math.unit(120, "kg"),
  5136. name: "Front",
  5137. image: {
  5138. source: "./media/characters/miranda/front.svg",
  5139. extra: 195 / 185,
  5140. bottom: 10.9 / 206.5
  5141. }
  5142. },
  5143. back: {
  5144. height: math.unit(2, "meters"),
  5145. weight: math.unit(120, "kg"),
  5146. name: "Back",
  5147. image: {
  5148. source: "./media/characters/miranda/back.svg",
  5149. extra: 201 / 193,
  5150. bottom: 2.3 / 203.7
  5151. }
  5152. },
  5153. },
  5154. [
  5155. {
  5156. name: "Normal",
  5157. height: math.unit(10, "feet"),
  5158. default: true
  5159. }
  5160. ]
  5161. ))
  5162. characterMakers.push(() => makeCharacter(
  5163. { name: "James", species: ["deer"], tags: ["anthro"] },
  5164. {
  5165. side: {
  5166. height: math.unit(2, "meters"),
  5167. weight: math.unit(100, "kg"),
  5168. name: "Front",
  5169. image: {
  5170. source: "./media/characters/james/front.svg",
  5171. extra: 10 / 8.5
  5172. }
  5173. },
  5174. },
  5175. [
  5176. {
  5177. name: "Normal",
  5178. height: math.unit(8.5, "feet"),
  5179. default: true
  5180. }
  5181. ]
  5182. ))
  5183. characterMakers.push(() => makeCharacter(
  5184. { name: "Heather", species: ["cow"], tags: ["taur"] },
  5185. {
  5186. side: {
  5187. height: math.unit(9.5, "feet"),
  5188. weight: math.unit(2500, "lbs"),
  5189. name: "Side",
  5190. image: {
  5191. source: "./media/characters/heather/side.svg"
  5192. }
  5193. },
  5194. },
  5195. [
  5196. {
  5197. name: "Normal",
  5198. height: math.unit(9.5, "feet"),
  5199. default: true
  5200. }
  5201. ]
  5202. ))
  5203. characterMakers.push(() => makeCharacter(
  5204. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  5205. {
  5206. side: {
  5207. height: math.unit(6.5, "feet"),
  5208. weight: math.unit(400, "lbs"),
  5209. name: "Side",
  5210. image: {
  5211. source: "./media/characters/lukas/side.svg",
  5212. extra: 7.25 / 6.5
  5213. }
  5214. },
  5215. },
  5216. [
  5217. {
  5218. name: "Normal",
  5219. height: math.unit(6.5, "feet"),
  5220. default: true
  5221. }
  5222. ]
  5223. ))
  5224. characterMakers.push(() => makeCharacter(
  5225. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  5226. {
  5227. side: {
  5228. height: math.unit(5, "feet"),
  5229. weight: math.unit(3000, "lbs"),
  5230. name: "Side",
  5231. image: {
  5232. source: "./media/characters/louise/side.svg"
  5233. }
  5234. },
  5235. },
  5236. [
  5237. {
  5238. name: "Normal",
  5239. height: math.unit(5, "feet"),
  5240. default: true
  5241. }
  5242. ]
  5243. ))
  5244. characterMakers.push(() => makeCharacter(
  5245. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  5246. {
  5247. side: {
  5248. height: math.unit(6, "feet"),
  5249. weight: math.unit(150, "lbs"),
  5250. name: "Side",
  5251. image: {
  5252. source: "./media/characters/ramona/side.svg"
  5253. }
  5254. },
  5255. },
  5256. [
  5257. {
  5258. name: "Normal",
  5259. height: math.unit(5.3, "meters"),
  5260. default: true
  5261. },
  5262. {
  5263. name: "Macro",
  5264. height: math.unit(20, "stories")
  5265. },
  5266. {
  5267. name: "Macro+",
  5268. height: math.unit(50, "stories")
  5269. },
  5270. ]
  5271. ))
  5272. characterMakers.push(() => makeCharacter(
  5273. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  5274. {
  5275. standing: {
  5276. height: math.unit(5.75, "feet"),
  5277. weight: math.unit(160, "lbs"),
  5278. name: "Standing",
  5279. image: {
  5280. source: "./media/characters/deerpuff/standing.svg",
  5281. extra: 682 / 624
  5282. }
  5283. },
  5284. sitting: {
  5285. height: math.unit(5.75 / 1.79, "feet"),
  5286. weight: math.unit(160, "lbs"),
  5287. name: "Sitting",
  5288. image: {
  5289. source: "./media/characters/deerpuff/sitting.svg",
  5290. bottom: 44 / 400,
  5291. extra: 1
  5292. }
  5293. },
  5294. taurLaying: {
  5295. height: math.unit(6, "feet"),
  5296. weight: math.unit(400, "lbs"),
  5297. name: "Taur (Laying)",
  5298. image: {
  5299. source: "./media/characters/deerpuff/taur-laying.svg"
  5300. }
  5301. },
  5302. },
  5303. [
  5304. {
  5305. name: "Puffball",
  5306. height: math.unit(6, "inches")
  5307. },
  5308. {
  5309. name: "Normalpuff",
  5310. height: math.unit(5.75, "feet")
  5311. },
  5312. {
  5313. name: "Macropuff",
  5314. height: math.unit(1500, "feet"),
  5315. default: true
  5316. },
  5317. {
  5318. name: "Megapuff",
  5319. height: math.unit(500, "miles")
  5320. },
  5321. {
  5322. name: "Gigapuff",
  5323. height: math.unit(250000, "miles")
  5324. },
  5325. {
  5326. name: "Omegapuff",
  5327. height: math.unit(1000, "lightyears")
  5328. },
  5329. ]
  5330. ))
  5331. characterMakers.push(() => makeCharacter(
  5332. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5333. {
  5334. stomping: {
  5335. height: math.unit(6, "feet"),
  5336. weight: math.unit(170, "lbs"),
  5337. name: "Stomping",
  5338. image: {
  5339. source: "./media/characters/vivian/stomping.svg"
  5340. }
  5341. },
  5342. sitting: {
  5343. height: math.unit(6 / 1.75, "feet"),
  5344. weight: math.unit(170, "lbs"),
  5345. name: "Sitting",
  5346. image: {
  5347. source: "./media/characters/vivian/sitting.svg",
  5348. bottom: 1 / 6.4,
  5349. extra: 1,
  5350. }
  5351. },
  5352. },
  5353. [
  5354. {
  5355. name: "Normal",
  5356. height: math.unit(7, "feet"),
  5357. default: true
  5358. },
  5359. {
  5360. name: "Macro",
  5361. height: math.unit(10, "stories")
  5362. },
  5363. {
  5364. name: "Macro+",
  5365. height: math.unit(30, "stories")
  5366. },
  5367. {
  5368. name: "Megamacro",
  5369. height: math.unit(10, "miles")
  5370. },
  5371. {
  5372. name: "Megamacro+",
  5373. height: math.unit(2750000, "meters")
  5374. },
  5375. ]
  5376. ))
  5377. characterMakers.push(() => makeCharacter(
  5378. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5379. {
  5380. front: {
  5381. height: math.unit(6, "feet"),
  5382. weight: math.unit(160, "lbs"),
  5383. name: "Front",
  5384. image: {
  5385. source: "./media/characters/prince/front.svg",
  5386. extra: 3400 / 3000
  5387. }
  5388. },
  5389. jumping: {
  5390. height: math.unit(6, "feet"),
  5391. weight: math.unit(160, "lbs"),
  5392. name: "Jumping",
  5393. image: {
  5394. source: "./media/characters/prince/jump.svg",
  5395. extra: 2555 / 2134
  5396. }
  5397. },
  5398. },
  5399. [
  5400. {
  5401. name: "Normal",
  5402. height: math.unit(7.75, "feet"),
  5403. default: true
  5404. },
  5405. {
  5406. name: "Not cute",
  5407. height: math.unit(17, "feet")
  5408. },
  5409. {
  5410. name: "I said NOT",
  5411. height: math.unit(91, "feet")
  5412. },
  5413. {
  5414. name: "Please stop",
  5415. height: math.unit(560, "feet")
  5416. },
  5417. {
  5418. name: "What have you done",
  5419. height: math.unit(2200, "feet")
  5420. },
  5421. {
  5422. name: "Deer God",
  5423. height: math.unit(3.6, "miles")
  5424. },
  5425. ]
  5426. ))
  5427. characterMakers.push(() => makeCharacter(
  5428. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5429. {
  5430. standing: {
  5431. height: math.unit(6, "feet"),
  5432. weight: math.unit(300, "lbs"),
  5433. name: "Standing",
  5434. image: {
  5435. source: "./media/characters/psymon/standing.svg",
  5436. extra: 1888 / 1810,
  5437. bottom: 0.05
  5438. }
  5439. },
  5440. slithering: {
  5441. height: math.unit(6, "feet"),
  5442. weight: math.unit(300, "lbs"),
  5443. name: "Slithering",
  5444. image: {
  5445. source: "./media/characters/psymon/slithering.svg",
  5446. extra: 1330 / 1224
  5447. }
  5448. },
  5449. slitheringAlt: {
  5450. height: math.unit(6, "feet"),
  5451. weight: math.unit(300, "lbs"),
  5452. name: "Slithering (Alt)",
  5453. image: {
  5454. source: "./media/characters/psymon/slithering-alt.svg",
  5455. extra: 1330 / 1224
  5456. }
  5457. },
  5458. },
  5459. [
  5460. {
  5461. name: "Normal",
  5462. height: math.unit(11.25, "feet"),
  5463. default: true
  5464. },
  5465. {
  5466. name: "Large",
  5467. height: math.unit(27, "feet")
  5468. },
  5469. {
  5470. name: "Giant",
  5471. height: math.unit(87, "feet")
  5472. },
  5473. {
  5474. name: "Macro",
  5475. height: math.unit(365, "feet")
  5476. },
  5477. {
  5478. name: "Megamacro",
  5479. height: math.unit(3, "miles")
  5480. },
  5481. {
  5482. name: "World Serpent",
  5483. height: math.unit(8000, "miles")
  5484. },
  5485. ]
  5486. ))
  5487. characterMakers.push(() => makeCharacter(
  5488. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5489. {
  5490. front: {
  5491. height: math.unit(6, "feet"),
  5492. weight: math.unit(180, "lbs"),
  5493. name: "Front",
  5494. image: {
  5495. source: "./media/characters/daimos/front.svg",
  5496. extra: 4160 / 3897,
  5497. bottom: 0.021
  5498. }
  5499. }
  5500. },
  5501. [
  5502. {
  5503. name: "Normal",
  5504. height: math.unit(8, "feet"),
  5505. default: true
  5506. },
  5507. {
  5508. name: "Big Dog",
  5509. height: math.unit(22, "feet")
  5510. },
  5511. {
  5512. name: "Macro",
  5513. height: math.unit(127, "feet")
  5514. },
  5515. {
  5516. name: "Megamacro",
  5517. height: math.unit(3600, "feet")
  5518. },
  5519. ]
  5520. ))
  5521. characterMakers.push(() => makeCharacter(
  5522. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5523. {
  5524. side: {
  5525. height: math.unit(6, "feet"),
  5526. weight: math.unit(180, "lbs"),
  5527. name: "Side",
  5528. image: {
  5529. source: "./media/characters/blake/side.svg",
  5530. extra: 1212 / 1120,
  5531. bottom: 0.05
  5532. }
  5533. },
  5534. crouched: {
  5535. height: math.unit(6 * 0.57, "feet"),
  5536. weight: math.unit(180, "lbs"),
  5537. name: "Crouched",
  5538. image: {
  5539. source: "./media/characters/blake/crouched.svg",
  5540. extra: 840 / 587,
  5541. bottom: 0.04
  5542. }
  5543. },
  5544. bent: {
  5545. height: math.unit(6 * 0.75, "feet"),
  5546. weight: math.unit(180, "lbs"),
  5547. name: "Bent",
  5548. image: {
  5549. source: "./media/characters/blake/bent.svg",
  5550. extra: 592 / 544,
  5551. bottom: 0.035
  5552. }
  5553. },
  5554. },
  5555. [
  5556. {
  5557. name: "Normal",
  5558. height: math.unit(8 + 1 / 6, "feet"),
  5559. default: true
  5560. },
  5561. {
  5562. name: "Big Backside",
  5563. height: math.unit(37, "feet")
  5564. },
  5565. {
  5566. name: "Subway Shredder",
  5567. height: math.unit(72, "feet")
  5568. },
  5569. {
  5570. name: "City Carver",
  5571. height: math.unit(1675, "feet")
  5572. },
  5573. {
  5574. name: "Tectonic Tweaker",
  5575. height: math.unit(2300, "miles")
  5576. },
  5577. ]
  5578. ))
  5579. characterMakers.push(() => makeCharacter(
  5580. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5581. {
  5582. front: {
  5583. height: math.unit(6, "feet"),
  5584. weight: math.unit(180, "lbs"),
  5585. name: "Front",
  5586. image: {
  5587. source: "./media/characters/guisetto/front.svg",
  5588. extra: 856 / 817,
  5589. bottom: 0.06
  5590. }
  5591. },
  5592. airborne: {
  5593. height: math.unit(6, "feet"),
  5594. weight: math.unit(180, "lbs"),
  5595. name: "Airborne",
  5596. image: {
  5597. source: "./media/characters/guisetto/airborne.svg",
  5598. extra: 584 / 525
  5599. }
  5600. },
  5601. },
  5602. [
  5603. {
  5604. name: "Normal",
  5605. height: math.unit(10 + 11 / 12, "feet"),
  5606. default: true
  5607. },
  5608. {
  5609. name: "Large",
  5610. height: math.unit(35, "feet")
  5611. },
  5612. {
  5613. name: "Macro",
  5614. height: math.unit(475, "feet")
  5615. },
  5616. ]
  5617. ))
  5618. characterMakers.push(() => makeCharacter(
  5619. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5620. {
  5621. front: {
  5622. height: math.unit(6, "feet"),
  5623. weight: math.unit(180, "lbs"),
  5624. name: "Front",
  5625. image: {
  5626. source: "./media/characters/luxor/front.svg",
  5627. extra: 2940 / 2152
  5628. }
  5629. },
  5630. back: {
  5631. height: math.unit(6, "feet"),
  5632. weight: math.unit(180, "lbs"),
  5633. name: "Back",
  5634. image: {
  5635. source: "./media/characters/luxor/back.svg",
  5636. extra: 1083 / 960
  5637. }
  5638. },
  5639. },
  5640. [
  5641. {
  5642. name: "Normal",
  5643. height: math.unit(5 + 5 / 6, "feet"),
  5644. default: true
  5645. },
  5646. {
  5647. name: "Lamp",
  5648. height: math.unit(50, "feet")
  5649. },
  5650. {
  5651. name: "Lämp",
  5652. height: math.unit(300, "feet")
  5653. },
  5654. {
  5655. name: "The sun is a lamp",
  5656. height: math.unit(250000, "miles")
  5657. },
  5658. ]
  5659. ))
  5660. characterMakers.push(() => makeCharacter(
  5661. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5662. {
  5663. front: {
  5664. height: math.unit(6, "feet"),
  5665. weight: math.unit(50, "lbs"),
  5666. name: "Front",
  5667. image: {
  5668. source: "./media/characters/huoyan/front.svg"
  5669. }
  5670. },
  5671. side: {
  5672. height: math.unit(6, "feet"),
  5673. weight: math.unit(180, "lbs"),
  5674. name: "Side",
  5675. image: {
  5676. source: "./media/characters/huoyan/side.svg"
  5677. }
  5678. },
  5679. },
  5680. [
  5681. {
  5682. name: "Chef",
  5683. height: math.unit(9, "feet")
  5684. },
  5685. {
  5686. name: "Normal",
  5687. height: math.unit(65, "feet"),
  5688. default: true
  5689. },
  5690. {
  5691. name: "Macro",
  5692. height: math.unit(780, "feet")
  5693. },
  5694. {
  5695. name: "Flaming Mountain",
  5696. height: math.unit(4.8, "miles")
  5697. },
  5698. {
  5699. name: "Celestial",
  5700. height: math.unit(765000, "miles")
  5701. },
  5702. ]
  5703. ))
  5704. characterMakers.push(() => makeCharacter(
  5705. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5706. {
  5707. front: {
  5708. height: math.unit(5 + 3 / 4, "feet"),
  5709. weight: math.unit(120, "lbs"),
  5710. name: "Front",
  5711. image: {
  5712. source: "./media/characters/tails/front.svg"
  5713. }
  5714. }
  5715. },
  5716. [
  5717. {
  5718. name: "Normal",
  5719. height: math.unit(5 + 3 / 4, "feet"),
  5720. default: true
  5721. }
  5722. ]
  5723. ))
  5724. characterMakers.push(() => makeCharacter(
  5725. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5726. {
  5727. front: {
  5728. height: math.unit(4, "feet"),
  5729. weight: math.unit(50, "lbs"),
  5730. name: "Front",
  5731. image: {
  5732. source: "./media/characters/rainy/front.svg"
  5733. }
  5734. }
  5735. },
  5736. [
  5737. {
  5738. name: "Macro",
  5739. height: math.unit(800, "feet"),
  5740. default: true
  5741. }
  5742. ]
  5743. ))
  5744. characterMakers.push(() => makeCharacter(
  5745. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5746. {
  5747. front: {
  5748. height: math.unit(6, "feet"),
  5749. weight: math.unit(150, "lbs"),
  5750. name: "Front",
  5751. image: {
  5752. source: "./media/characters/rainier/front.svg"
  5753. }
  5754. }
  5755. },
  5756. [
  5757. {
  5758. name: "Micro",
  5759. height: math.unit(2, "mm"),
  5760. default: true
  5761. }
  5762. ]
  5763. ))
  5764. characterMakers.push(() => makeCharacter(
  5765. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  5766. {
  5767. front: {
  5768. height: math.unit(8 + 4/12, "feet"),
  5769. name: "Front",
  5770. image: {
  5771. source: "./media/characters/andy-renard/front.svg",
  5772. extra: 1839/1726,
  5773. bottom: 134/1973
  5774. }
  5775. },
  5776. back: {
  5777. height: math.unit(8 + 4/12, "feet"),
  5778. name: "Back",
  5779. image: {
  5780. source: "./media/characters/andy-renard/back.svg",
  5781. extra: 1838/1710,
  5782. bottom: 105/1943
  5783. }
  5784. },
  5785. },
  5786. [
  5787. {
  5788. name: "Tall",
  5789. height: math.unit(8 + 4/12, "feet")
  5790. },
  5791. {
  5792. name: "Mini Macro",
  5793. height: math.unit(15, "feet"),
  5794. default: true
  5795. },
  5796. {
  5797. name: "Macro",
  5798. height: math.unit(100, "feet")
  5799. },
  5800. {
  5801. name: "Mega Macro",
  5802. height: math.unit(1000, "feet")
  5803. },
  5804. {
  5805. name: "Giga Macro",
  5806. height: math.unit(10, "miles")
  5807. },
  5808. {
  5809. name: "God Macro",
  5810. height: math.unit(1, "multiverse")
  5811. },
  5812. ]
  5813. ))
  5814. characterMakers.push(() => makeCharacter(
  5815. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5816. {
  5817. front: {
  5818. height: math.unit(6, "feet"),
  5819. weight: math.unit(210, "lbs"),
  5820. name: "Front",
  5821. image: {
  5822. source: "./media/characters/cimmaron/front-sfw.svg",
  5823. extra: 701 / 676,
  5824. bottom: 0.046
  5825. }
  5826. },
  5827. back: {
  5828. height: math.unit(6, "feet"),
  5829. weight: math.unit(210, "lbs"),
  5830. name: "Back",
  5831. image: {
  5832. source: "./media/characters/cimmaron/back-sfw.svg",
  5833. extra: 701 / 676,
  5834. bottom: 0.046
  5835. }
  5836. },
  5837. frontNsfw: {
  5838. height: math.unit(6, "feet"),
  5839. weight: math.unit(210, "lbs"),
  5840. name: "Front (NSFW)",
  5841. image: {
  5842. source: "./media/characters/cimmaron/front-nsfw.svg",
  5843. extra: 701 / 676,
  5844. bottom: 0.046
  5845. }
  5846. },
  5847. backNsfw: {
  5848. height: math.unit(6, "feet"),
  5849. weight: math.unit(210, "lbs"),
  5850. name: "Back (NSFW)",
  5851. image: {
  5852. source: "./media/characters/cimmaron/back-nsfw.svg",
  5853. extra: 701 / 676,
  5854. bottom: 0.046
  5855. }
  5856. },
  5857. dick: {
  5858. height: math.unit(1.714, "feet"),
  5859. name: "Dick",
  5860. image: {
  5861. source: "./media/characters/cimmaron/dick.svg"
  5862. }
  5863. },
  5864. },
  5865. [
  5866. {
  5867. name: "Normal",
  5868. height: math.unit(6, "feet"),
  5869. default: true
  5870. },
  5871. {
  5872. name: "Macro Mayor",
  5873. height: math.unit(350, "meters")
  5874. },
  5875. ]
  5876. ))
  5877. characterMakers.push(() => makeCharacter(
  5878. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5879. {
  5880. front: {
  5881. height: math.unit(6, "feet"),
  5882. weight: math.unit(200, "lbs"),
  5883. name: "Front",
  5884. image: {
  5885. source: "./media/characters/akari/front.svg",
  5886. extra: 962 / 901,
  5887. bottom: 0.04
  5888. }
  5889. }
  5890. },
  5891. [
  5892. {
  5893. name: "Micro",
  5894. height: math.unit(5, "inches"),
  5895. default: true
  5896. },
  5897. {
  5898. name: "Normal",
  5899. height: math.unit(7, "feet")
  5900. },
  5901. ]
  5902. ))
  5903. characterMakers.push(() => makeCharacter(
  5904. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  5905. {
  5906. front: {
  5907. height: math.unit(6, "feet"),
  5908. weight: math.unit(140, "lbs"),
  5909. name: "Front",
  5910. image: {
  5911. source: "./media/characters/cynosura/front.svg",
  5912. extra: 896 / 847
  5913. }
  5914. },
  5915. back: {
  5916. height: math.unit(6, "feet"),
  5917. weight: math.unit(140, "lbs"),
  5918. name: "Back",
  5919. image: {
  5920. source: "./media/characters/cynosura/back.svg",
  5921. extra: 1365 / 1250
  5922. }
  5923. },
  5924. },
  5925. [
  5926. {
  5927. name: "Micro",
  5928. height: math.unit(4, "inches")
  5929. },
  5930. {
  5931. name: "Normal",
  5932. height: math.unit(5.75, "feet"),
  5933. default: true
  5934. },
  5935. {
  5936. name: "Tall",
  5937. height: math.unit(10, "feet")
  5938. },
  5939. {
  5940. name: "Big",
  5941. height: math.unit(20, "feet")
  5942. },
  5943. {
  5944. name: "Macro",
  5945. height: math.unit(50, "feet")
  5946. },
  5947. ]
  5948. ))
  5949. characterMakers.push(() => makeCharacter(
  5950. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  5951. {
  5952. front: {
  5953. height: math.unit(13 + 2/12, "feet"),
  5954. weight: math.unit(800, "kg"),
  5955. name: "Front",
  5956. image: {
  5957. source: "./media/characters/gin/front.svg",
  5958. extra: 1312/1191,
  5959. bottom: 45/1357
  5960. }
  5961. },
  5962. mouth: {
  5963. height: math.unit(2.39 * 1.8, "feet"),
  5964. name: "Mouth",
  5965. image: {
  5966. source: "./media/characters/gin/mouth.svg"
  5967. }
  5968. },
  5969. hand: {
  5970. height: math.unit(1.57 * 2.19, "feet"),
  5971. name: "Hand",
  5972. image: {
  5973. source: "./media/characters/gin/hand.svg"
  5974. }
  5975. },
  5976. foot: {
  5977. height: math.unit(6 / 4.25 * 2.19, "feet"),
  5978. name: "Foot",
  5979. image: {
  5980. source: "./media/characters/gin/foot.svg"
  5981. }
  5982. },
  5983. sole: {
  5984. height: math.unit(6 / 4.40 * 2.19, "feet"),
  5985. name: "Sole",
  5986. image: {
  5987. source: "./media/characters/gin/sole.svg"
  5988. }
  5989. },
  5990. },
  5991. [
  5992. {
  5993. name: "Very Small",
  5994. height: math.unit(13 + 2 / 12, "feet")
  5995. },
  5996. {
  5997. name: "Micro",
  5998. height: math.unit(600, "miles")
  5999. },
  6000. {
  6001. name: "Regular",
  6002. height: math.unit(20, "earths"),
  6003. default: true
  6004. },
  6005. {
  6006. name: "Macro",
  6007. height: math.unit(2.2, "solarradii")
  6008. },
  6009. {
  6010. name: "Teramacro",
  6011. height: math.unit(1.2, "galaxies")
  6012. },
  6013. {
  6014. name: "Omegamacro",
  6015. height: math.unit(200, "universes")
  6016. },
  6017. ]
  6018. ))
  6019. characterMakers.push(() => makeCharacter(
  6020. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  6021. {
  6022. front: {
  6023. height: math.unit(6 + 1 / 6, "feet"),
  6024. weight: math.unit(178, "lbs"),
  6025. name: "Front",
  6026. image: {
  6027. source: "./media/characters/guy/front.svg"
  6028. }
  6029. }
  6030. },
  6031. [
  6032. {
  6033. name: "Normal",
  6034. height: math.unit(6 + 1 / 6, "feet"),
  6035. default: true
  6036. },
  6037. {
  6038. name: "Large",
  6039. height: math.unit(25 + 7 / 12, "feet")
  6040. },
  6041. {
  6042. name: "Macro",
  6043. height: math.unit(60 + 9 / 12, "feet")
  6044. },
  6045. {
  6046. name: "Macro+",
  6047. height: math.unit(246, "feet")
  6048. },
  6049. {
  6050. name: "Macro++",
  6051. height: math.unit(878, "feet")
  6052. }
  6053. ]
  6054. ))
  6055. characterMakers.push(() => makeCharacter(
  6056. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  6057. {
  6058. front: {
  6059. height: math.unit(9, "feet"),
  6060. weight: math.unit(800, "lbs"),
  6061. name: "Front",
  6062. image: {
  6063. source: "./media/characters/tiberius/front.svg",
  6064. extra: 2295 / 2071
  6065. }
  6066. },
  6067. back: {
  6068. height: math.unit(9, "feet"),
  6069. weight: math.unit(800, "lbs"),
  6070. name: "Back",
  6071. image: {
  6072. source: "./media/characters/tiberius/back.svg",
  6073. extra: 2373 / 2160
  6074. }
  6075. },
  6076. },
  6077. [
  6078. {
  6079. name: "Normal",
  6080. height: math.unit(9, "feet"),
  6081. default: true
  6082. }
  6083. ]
  6084. ))
  6085. characterMakers.push(() => makeCharacter(
  6086. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  6087. {
  6088. front: {
  6089. height: math.unit(6, "feet"),
  6090. weight: math.unit(600, "lbs"),
  6091. name: "Front",
  6092. image: {
  6093. source: "./media/characters/surgo/front.svg",
  6094. extra: 3591 / 2227
  6095. }
  6096. },
  6097. back: {
  6098. height: math.unit(6, "feet"),
  6099. weight: math.unit(600, "lbs"),
  6100. name: "Back",
  6101. image: {
  6102. source: "./media/characters/surgo/back.svg",
  6103. extra: 3557 / 2228
  6104. }
  6105. },
  6106. laying: {
  6107. height: math.unit(6 * 0.85, "feet"),
  6108. weight: math.unit(600, "lbs"),
  6109. name: "Laying",
  6110. image: {
  6111. source: "./media/characters/surgo/laying.svg"
  6112. }
  6113. },
  6114. },
  6115. [
  6116. {
  6117. name: "Normal",
  6118. height: math.unit(6, "feet"),
  6119. default: true
  6120. }
  6121. ]
  6122. ))
  6123. characterMakers.push(() => makeCharacter(
  6124. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  6125. {
  6126. side: {
  6127. height: math.unit(6, "feet"),
  6128. weight: math.unit(150, "lbs"),
  6129. name: "Side",
  6130. image: {
  6131. source: "./media/characters/cibus/side.svg",
  6132. extra: 800 / 400
  6133. }
  6134. },
  6135. },
  6136. [
  6137. {
  6138. name: "Normal",
  6139. height: math.unit(6, "feet"),
  6140. default: true
  6141. }
  6142. ]
  6143. ))
  6144. characterMakers.push(() => makeCharacter(
  6145. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  6146. {
  6147. front: {
  6148. height: math.unit(6, "feet"),
  6149. weight: math.unit(240, "lbs"),
  6150. name: "Front",
  6151. image: {
  6152. source: "./media/characters/nibbles/front.svg"
  6153. }
  6154. },
  6155. side: {
  6156. height: math.unit(6, "feet"),
  6157. weight: math.unit(240, "lbs"),
  6158. name: "Side",
  6159. image: {
  6160. source: "./media/characters/nibbles/side.svg"
  6161. }
  6162. },
  6163. },
  6164. [
  6165. {
  6166. name: "Normal",
  6167. height: math.unit(9, "feet"),
  6168. default: true
  6169. }
  6170. ]
  6171. ))
  6172. characterMakers.push(() => makeCharacter(
  6173. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  6174. {
  6175. side: {
  6176. height: math.unit(5 + 1 / 6, "feet"),
  6177. weight: math.unit(130, "lbs"),
  6178. name: "Side",
  6179. image: {
  6180. source: "./media/characters/rikky/side.svg",
  6181. extra: 851 / 801
  6182. }
  6183. },
  6184. },
  6185. [
  6186. {
  6187. name: "Normal",
  6188. height: math.unit(5 + 1 / 6, "feet")
  6189. },
  6190. {
  6191. name: "Macro",
  6192. height: math.unit(152, "feet"),
  6193. default: true
  6194. },
  6195. {
  6196. name: "Megamacro",
  6197. height: math.unit(7, "miles")
  6198. }
  6199. ]
  6200. ))
  6201. characterMakers.push(() => makeCharacter(
  6202. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  6203. {
  6204. side: {
  6205. height: math.unit(370, "cm"),
  6206. weight: math.unit(350, "lbs"),
  6207. name: "Side",
  6208. image: {
  6209. source: "./media/characters/malfressa/side.svg"
  6210. }
  6211. },
  6212. walking: {
  6213. height: math.unit(370, "cm"),
  6214. weight: math.unit(350, "lbs"),
  6215. name: "Walking",
  6216. image: {
  6217. source: "./media/characters/malfressa/walking.svg"
  6218. }
  6219. },
  6220. feral: {
  6221. height: math.unit(2500, "cm"),
  6222. weight: math.unit(100000, "lbs"),
  6223. name: "Feral",
  6224. image: {
  6225. source: "./media/characters/malfressa/feral.svg",
  6226. extra: 2108 / 837,
  6227. bottom: 0.02
  6228. }
  6229. },
  6230. },
  6231. [
  6232. {
  6233. name: "Normal",
  6234. height: math.unit(370, "cm")
  6235. },
  6236. {
  6237. name: "Macro",
  6238. height: math.unit(300, "meters"),
  6239. default: true
  6240. }
  6241. ]
  6242. ))
  6243. characterMakers.push(() => makeCharacter(
  6244. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  6245. {
  6246. front: {
  6247. height: math.unit(6, "feet"),
  6248. weight: math.unit(60, "kg"),
  6249. name: "Front",
  6250. image: {
  6251. source: "./media/characters/jaro/front.svg"
  6252. }
  6253. },
  6254. back: {
  6255. height: math.unit(6, "feet"),
  6256. weight: math.unit(60, "kg"),
  6257. name: "Back",
  6258. image: {
  6259. source: "./media/characters/jaro/back.svg"
  6260. }
  6261. },
  6262. },
  6263. [
  6264. {
  6265. name: "Micro",
  6266. height: math.unit(7, "inches")
  6267. },
  6268. {
  6269. name: "Normal",
  6270. height: math.unit(5.5, "feet"),
  6271. default: true
  6272. },
  6273. {
  6274. name: "Minimacro",
  6275. height: math.unit(20, "feet")
  6276. },
  6277. {
  6278. name: "Macro",
  6279. height: math.unit(200, "meters")
  6280. }
  6281. ]
  6282. ))
  6283. characterMakers.push(() => makeCharacter(
  6284. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  6285. {
  6286. front: {
  6287. height: math.unit(6, "feet"),
  6288. weight: math.unit(195, "lb"),
  6289. name: "Front",
  6290. image: {
  6291. source: "./media/characters/rogue/front.svg"
  6292. }
  6293. },
  6294. },
  6295. [
  6296. {
  6297. name: "Macro",
  6298. height: math.unit(90, "feet"),
  6299. default: true
  6300. },
  6301. ]
  6302. ))
  6303. characterMakers.push(() => makeCharacter(
  6304. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  6305. {
  6306. front: {
  6307. height: math.unit(5 + 8 / 12, "feet"),
  6308. weight: math.unit(140, "lb"),
  6309. name: "Front",
  6310. image: {
  6311. source: "./media/characters/piper/front.svg",
  6312. extra: 3948/3655,
  6313. bottom: 0/3948
  6314. }
  6315. },
  6316. },
  6317. [
  6318. {
  6319. name: "Micro",
  6320. height: math.unit(2, "inches")
  6321. },
  6322. {
  6323. name: "Normal",
  6324. height: math.unit(5 + 8 / 12, "feet")
  6325. },
  6326. {
  6327. name: "Macro",
  6328. height: math.unit(250, "feet"),
  6329. default: true
  6330. },
  6331. {
  6332. name: "Megamacro",
  6333. height: math.unit(7, "miles")
  6334. },
  6335. ]
  6336. ))
  6337. characterMakers.push(() => makeCharacter(
  6338. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  6339. {
  6340. front: {
  6341. height: math.unit(6, "feet"),
  6342. weight: math.unit(220, "lb"),
  6343. name: "Front",
  6344. image: {
  6345. source: "./media/characters/gemini/front.svg"
  6346. }
  6347. },
  6348. back: {
  6349. height: math.unit(6, "feet"),
  6350. weight: math.unit(220, "lb"),
  6351. name: "Back",
  6352. image: {
  6353. source: "./media/characters/gemini/back.svg"
  6354. }
  6355. },
  6356. kneeling: {
  6357. height: math.unit(6 / 1.5, "feet"),
  6358. weight: math.unit(220, "lb"),
  6359. name: "Kneeling",
  6360. image: {
  6361. source: "./media/characters/gemini/kneeling.svg",
  6362. bottom: 0.02
  6363. }
  6364. },
  6365. },
  6366. [
  6367. {
  6368. name: "Macro",
  6369. height: math.unit(300, "meters"),
  6370. default: true
  6371. },
  6372. {
  6373. name: "Megamacro",
  6374. height: math.unit(6900, "meters")
  6375. },
  6376. ]
  6377. ))
  6378. characterMakers.push(() => makeCharacter(
  6379. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6380. {
  6381. anthro: {
  6382. height: math.unit(2.35, "meters"),
  6383. weight: math.unit(73, "kg"),
  6384. name: "Anthro",
  6385. image: {
  6386. source: "./media/characters/alicia/anthro.svg",
  6387. extra: 2571 / 2385,
  6388. bottom: 75 / 2648
  6389. }
  6390. },
  6391. paw: {
  6392. height: math.unit(1.32, "feet"),
  6393. name: "Paw",
  6394. image: {
  6395. source: "./media/characters/alicia/paw.svg"
  6396. }
  6397. },
  6398. feral: {
  6399. height: math.unit(1.69, "meters"),
  6400. weight: math.unit(73, "kg"),
  6401. name: "Feral",
  6402. image: {
  6403. source: "./media/characters/alicia/feral.svg",
  6404. extra: 2123 / 1715,
  6405. bottom: 222 / 2349
  6406. }
  6407. },
  6408. },
  6409. [
  6410. {
  6411. name: "Normal",
  6412. height: math.unit(2.35, "meters")
  6413. },
  6414. {
  6415. name: "Macro",
  6416. height: math.unit(60, "meters"),
  6417. default: true
  6418. },
  6419. {
  6420. name: "Megamacro",
  6421. height: math.unit(10000, "kilometers")
  6422. },
  6423. ]
  6424. ))
  6425. characterMakers.push(() => makeCharacter(
  6426. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6427. {
  6428. front: {
  6429. height: math.unit(7, "feet"),
  6430. weight: math.unit(250, "lbs"),
  6431. name: "Front",
  6432. image: {
  6433. source: "./media/characters/archy/front.svg"
  6434. }
  6435. }
  6436. },
  6437. [
  6438. {
  6439. name: "Micro",
  6440. height: math.unit(1, "inch")
  6441. },
  6442. {
  6443. name: "Shorty",
  6444. height: math.unit(5, "feet")
  6445. },
  6446. {
  6447. name: "Normal",
  6448. height: math.unit(7, "feet")
  6449. },
  6450. {
  6451. name: "Macro",
  6452. height: math.unit(600, "meters"),
  6453. default: true
  6454. },
  6455. {
  6456. name: "Megamacro",
  6457. height: math.unit(1, "mile")
  6458. },
  6459. ]
  6460. ))
  6461. characterMakers.push(() => makeCharacter(
  6462. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6463. {
  6464. front: {
  6465. height: math.unit(1.65, "meters"),
  6466. weight: math.unit(74, "kg"),
  6467. name: "Front",
  6468. image: {
  6469. source: "./media/characters/berri/front.svg",
  6470. extra: 857 / 837,
  6471. bottom: 18 / 877
  6472. }
  6473. },
  6474. bum: {
  6475. height: math.unit(1.46, "feet"),
  6476. name: "Bum",
  6477. image: {
  6478. source: "./media/characters/berri/bum.svg"
  6479. }
  6480. },
  6481. mouth: {
  6482. height: math.unit(0.44, "feet"),
  6483. name: "Mouth",
  6484. image: {
  6485. source: "./media/characters/berri/mouth.svg"
  6486. }
  6487. },
  6488. paw: {
  6489. height: math.unit(0.826, "feet"),
  6490. name: "Paw",
  6491. image: {
  6492. source: "./media/characters/berri/paw.svg"
  6493. }
  6494. },
  6495. },
  6496. [
  6497. {
  6498. name: "Normal",
  6499. height: math.unit(1.65, "meters")
  6500. },
  6501. {
  6502. name: "Macro",
  6503. height: math.unit(60, "m"),
  6504. default: true
  6505. },
  6506. {
  6507. name: "Megamacro",
  6508. height: math.unit(9.213, "km")
  6509. },
  6510. {
  6511. name: "Planet Eater",
  6512. height: math.unit(489, "megameters")
  6513. },
  6514. {
  6515. name: "Teramacro",
  6516. height: math.unit(2471635000000, "meters")
  6517. },
  6518. {
  6519. name: "Examacro",
  6520. height: math.unit(8.0624e+26, "meters")
  6521. }
  6522. ]
  6523. ))
  6524. characterMakers.push(() => makeCharacter(
  6525. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  6526. {
  6527. front: {
  6528. height: math.unit(1.72, "meters"),
  6529. weight: math.unit(68, "kg"),
  6530. name: "Front",
  6531. image: {
  6532. source: "./media/characters/lexi/front.svg"
  6533. }
  6534. }
  6535. },
  6536. [
  6537. {
  6538. name: "Very Smol",
  6539. height: math.unit(10, "mm")
  6540. },
  6541. {
  6542. name: "Micro",
  6543. height: math.unit(6.8, "cm"),
  6544. default: true
  6545. },
  6546. {
  6547. name: "Normal",
  6548. height: math.unit(1.72, "m")
  6549. }
  6550. ]
  6551. ))
  6552. characterMakers.push(() => makeCharacter(
  6553. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  6554. {
  6555. front: {
  6556. height: math.unit(1.69, "meters"),
  6557. weight: math.unit(68, "kg"),
  6558. name: "Front",
  6559. image: {
  6560. source: "./media/characters/martin/front.svg",
  6561. extra: 596 / 581
  6562. }
  6563. }
  6564. },
  6565. [
  6566. {
  6567. name: "Micro",
  6568. height: math.unit(6.85, "cm"),
  6569. default: true
  6570. },
  6571. {
  6572. name: "Normal",
  6573. height: math.unit(1.69, "m")
  6574. }
  6575. ]
  6576. ))
  6577. characterMakers.push(() => makeCharacter(
  6578. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6579. {
  6580. front: {
  6581. height: math.unit(1.69, "meters"),
  6582. weight: math.unit(68, "kg"),
  6583. name: "Front",
  6584. image: {
  6585. source: "./media/characters/juno/front.svg"
  6586. }
  6587. }
  6588. },
  6589. [
  6590. {
  6591. name: "Micro",
  6592. height: math.unit(7, "cm")
  6593. },
  6594. {
  6595. name: "Normal",
  6596. height: math.unit(1.89, "m")
  6597. },
  6598. {
  6599. name: "Macro",
  6600. height: math.unit(353, "meters"),
  6601. default: true
  6602. }
  6603. ]
  6604. ))
  6605. characterMakers.push(() => makeCharacter(
  6606. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6607. {
  6608. front: {
  6609. height: math.unit(1.93, "meters"),
  6610. weight: math.unit(83, "kg"),
  6611. name: "Front",
  6612. image: {
  6613. source: "./media/characters/samantha/front.svg"
  6614. }
  6615. },
  6616. frontClothed: {
  6617. height: math.unit(1.93, "meters"),
  6618. weight: math.unit(83, "kg"),
  6619. name: "Front (Clothed)",
  6620. image: {
  6621. source: "./media/characters/samantha/front-clothed.svg"
  6622. }
  6623. },
  6624. back: {
  6625. height: math.unit(1.93, "meters"),
  6626. weight: math.unit(83, "kg"),
  6627. name: "Back",
  6628. image: {
  6629. source: "./media/characters/samantha/back.svg"
  6630. }
  6631. },
  6632. },
  6633. [
  6634. {
  6635. name: "Normal",
  6636. height: math.unit(1.93, "m")
  6637. },
  6638. {
  6639. name: "Macro",
  6640. height: math.unit(74, "meters"),
  6641. default: true
  6642. },
  6643. {
  6644. name: "Macro+",
  6645. height: math.unit(223, "meters"),
  6646. },
  6647. {
  6648. name: "Megamacro",
  6649. height: math.unit(8381, "meters"),
  6650. },
  6651. {
  6652. name: "Megamacro+",
  6653. height: math.unit(12000, "kilometers")
  6654. },
  6655. ]
  6656. ))
  6657. characterMakers.push(() => makeCharacter(
  6658. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6659. {
  6660. front: {
  6661. height: math.unit(1.92, "meters"),
  6662. weight: math.unit(80, "kg"),
  6663. name: "Front",
  6664. image: {
  6665. source: "./media/characters/dr-clay/front.svg"
  6666. }
  6667. },
  6668. frontClothed: {
  6669. height: math.unit(1.92, "meters"),
  6670. weight: math.unit(80, "kg"),
  6671. name: "Front (Clothed)",
  6672. image: {
  6673. source: "./media/characters/dr-clay/front-clothed.svg"
  6674. }
  6675. }
  6676. },
  6677. [
  6678. {
  6679. name: "Normal",
  6680. height: math.unit(1.92, "m")
  6681. },
  6682. {
  6683. name: "Macro",
  6684. height: math.unit(214, "meters"),
  6685. default: true
  6686. },
  6687. {
  6688. name: "Macro+",
  6689. height: math.unit(12.237, "meters"),
  6690. },
  6691. {
  6692. name: "Megamacro",
  6693. height: math.unit(557, "megameters"),
  6694. },
  6695. {
  6696. name: "Unimaginable",
  6697. height: math.unit(120e9, "lightyears")
  6698. },
  6699. ]
  6700. ))
  6701. characterMakers.push(() => makeCharacter(
  6702. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6703. {
  6704. front: {
  6705. height: math.unit(2, "meters"),
  6706. weight: math.unit(80, "kg"),
  6707. name: "Front",
  6708. image: {
  6709. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6710. }
  6711. }
  6712. },
  6713. [
  6714. {
  6715. name: "Teramacro",
  6716. height: math.unit(500000, "lightyears"),
  6717. default: true
  6718. },
  6719. ]
  6720. ))
  6721. characterMakers.push(() => makeCharacter(
  6722. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  6723. {
  6724. crux: {
  6725. height: math.unit(2, "meters"),
  6726. weight: math.unit(150, "kg"),
  6727. name: "Crux",
  6728. image: {
  6729. source: "./media/characters/vemus/crux.svg",
  6730. extra: 1074/936,
  6731. bottom: 23/1097
  6732. }
  6733. },
  6734. skunkTanuki: {
  6735. height: math.unit(2, "meters"),
  6736. weight: math.unit(150, "kg"),
  6737. name: "Skunk-Tanuki",
  6738. image: {
  6739. source: "./media/characters/vemus/skunk-tanuki.svg",
  6740. extra: 926/893,
  6741. bottom: 20/946
  6742. }
  6743. },
  6744. },
  6745. [
  6746. {
  6747. name: "Normal",
  6748. height: math.unit(3.75, "meters"),
  6749. default: true
  6750. },
  6751. {
  6752. name: "Big",
  6753. height: math.unit(8, "meters")
  6754. },
  6755. {
  6756. name: "Macro",
  6757. height: math.unit(100, "meters")
  6758. },
  6759. {
  6760. name: "Macro+",
  6761. height: math.unit(1500, "meters")
  6762. },
  6763. {
  6764. name: "Stellar",
  6765. height: math.unit(14e8, "meters")
  6766. },
  6767. ]
  6768. ))
  6769. characterMakers.push(() => makeCharacter(
  6770. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6771. {
  6772. front: {
  6773. height: math.unit(2, "meters"),
  6774. weight: math.unit(70, "kg"),
  6775. name: "Front",
  6776. image: {
  6777. source: "./media/characters/beherit/front.svg",
  6778. extra: 1408 / 1242
  6779. }
  6780. }
  6781. },
  6782. [
  6783. {
  6784. name: "Normal",
  6785. height: math.unit(6, "feet")
  6786. },
  6787. {
  6788. name: "Lorg",
  6789. height: math.unit(25, "feet"),
  6790. default: true
  6791. },
  6792. {
  6793. name: "Lorger",
  6794. height: math.unit(75, "feet")
  6795. },
  6796. {
  6797. name: "Macro",
  6798. height: math.unit(200, "meters")
  6799. },
  6800. ]
  6801. ))
  6802. characterMakers.push(() => makeCharacter(
  6803. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6804. {
  6805. front: {
  6806. height: math.unit(2, "meters"),
  6807. weight: math.unit(150, "kg"),
  6808. name: "Front",
  6809. image: {
  6810. source: "./media/characters/everett/front.svg",
  6811. extra: 2038 / 1737,
  6812. bottom: 0.03
  6813. }
  6814. },
  6815. paw: {
  6816. height: math.unit(2 / 3.6, "meters"),
  6817. name: "Paw",
  6818. image: {
  6819. source: "./media/characters/everett/paw.svg"
  6820. }
  6821. },
  6822. },
  6823. [
  6824. {
  6825. name: "Normal",
  6826. height: math.unit(15, "feet"),
  6827. default: true
  6828. },
  6829. {
  6830. name: "Lorg",
  6831. height: math.unit(70, "feet"),
  6832. default: true
  6833. },
  6834. {
  6835. name: "Lorger",
  6836. height: math.unit(250, "feet")
  6837. },
  6838. {
  6839. name: "Macro",
  6840. height: math.unit(500, "meters")
  6841. },
  6842. ]
  6843. ))
  6844. characterMakers.push(() => makeCharacter(
  6845. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  6846. {
  6847. front: {
  6848. height: math.unit(2, "meters"),
  6849. weight: math.unit(86, "kg"),
  6850. name: "Front",
  6851. image: {
  6852. source: "./media/characters/rose/front.svg",
  6853. extra: 1785/1636,
  6854. bottom: 30/1815
  6855. }
  6856. },
  6857. frontSporty: {
  6858. height: math.unit(2, "meters"),
  6859. weight: math.unit(86, "kg"),
  6860. name: "Front (Sporty)",
  6861. image: {
  6862. source: "./media/characters/rose/front-sporty.svg",
  6863. extra: 350/335,
  6864. bottom: 10/360
  6865. }
  6866. },
  6867. frontAlt: {
  6868. height: math.unit(1.6, "meters"),
  6869. weight: math.unit(86, "kg"),
  6870. name: "Front (Alt)",
  6871. image: {
  6872. source: "./media/characters/rose/front-alt.svg",
  6873. extra: 299/283,
  6874. bottom: 3/302
  6875. }
  6876. },
  6877. plush: {
  6878. height: math.unit(2, "meters"),
  6879. weight: math.unit(86/3, "kg"),
  6880. name: "Plush",
  6881. image: {
  6882. source: "./media/characters/rose/plush.svg",
  6883. extra: 361/337,
  6884. bottom: 11/372
  6885. }
  6886. },
  6887. },
  6888. [
  6889. {
  6890. name: "True Micro",
  6891. height: math.unit(9, "cm")
  6892. },
  6893. {
  6894. name: "Micro",
  6895. height: math.unit(16, "cm")
  6896. },
  6897. {
  6898. name: "Normal",
  6899. height: math.unit(1.85, "meters"),
  6900. default: true
  6901. },
  6902. {
  6903. name: "Mini-Macro",
  6904. height: math.unit(5, "meters")
  6905. },
  6906. {
  6907. name: "Macro",
  6908. height: math.unit(15, "meters")
  6909. },
  6910. {
  6911. name: "True Macro",
  6912. height: math.unit(40, "meters")
  6913. },
  6914. {
  6915. name: "City Scale",
  6916. height: math.unit(1, "km")
  6917. },
  6918. ]
  6919. ))
  6920. characterMakers.push(() => makeCharacter(
  6921. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  6922. {
  6923. front: {
  6924. height: math.unit(2, "meters"),
  6925. weight: math.unit(350, "lbs"),
  6926. name: "Front",
  6927. image: {
  6928. source: "./media/characters/regal/front.svg"
  6929. }
  6930. },
  6931. back: {
  6932. height: math.unit(2, "meters"),
  6933. weight: math.unit(350, "lbs"),
  6934. name: "Back",
  6935. image: {
  6936. source: "./media/characters/regal/back.svg"
  6937. }
  6938. },
  6939. },
  6940. [
  6941. {
  6942. name: "Macro",
  6943. height: math.unit(350, "feet"),
  6944. default: true
  6945. }
  6946. ]
  6947. ))
  6948. characterMakers.push(() => makeCharacter(
  6949. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  6950. {
  6951. front: {
  6952. height: math.unit(4 + 11 / 12, "feet"),
  6953. weight: math.unit(100, "lbs"),
  6954. name: "Front",
  6955. image: {
  6956. source: "./media/characters/opal/front.svg"
  6957. }
  6958. },
  6959. frontAlt: {
  6960. height: math.unit(4 + 11 / 12, "feet"),
  6961. weight: math.unit(100, "lbs"),
  6962. name: "Front (Alt)",
  6963. image: {
  6964. source: "./media/characters/opal/front-alt.svg"
  6965. }
  6966. },
  6967. },
  6968. [
  6969. {
  6970. name: "Small",
  6971. height: math.unit(4 + 11 / 12, "feet")
  6972. },
  6973. {
  6974. name: "Normal",
  6975. height: math.unit(20, "feet"),
  6976. default: true
  6977. },
  6978. {
  6979. name: "Macro",
  6980. height: math.unit(120, "feet")
  6981. },
  6982. {
  6983. name: "Megamacro",
  6984. height: math.unit(80, "miles")
  6985. },
  6986. {
  6987. name: "True Size",
  6988. height: math.unit(100000, "lightyears")
  6989. },
  6990. ]
  6991. ))
  6992. characterMakers.push(() => makeCharacter(
  6993. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  6994. {
  6995. front: {
  6996. height: math.unit(6, "feet"),
  6997. weight: math.unit(200, "lbs"),
  6998. name: "Front",
  6999. image: {
  7000. source: "./media/characters/vector-wuff/front.svg"
  7001. }
  7002. }
  7003. },
  7004. [
  7005. {
  7006. name: "Normal",
  7007. height: math.unit(2.8, "meters")
  7008. },
  7009. {
  7010. name: "Macro",
  7011. height: math.unit(450, "meters"),
  7012. default: true
  7013. },
  7014. {
  7015. name: "Megamacro",
  7016. height: math.unit(15, "kilometers")
  7017. }
  7018. ]
  7019. ))
  7020. characterMakers.push(() => makeCharacter(
  7021. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  7022. {
  7023. front: {
  7024. height: math.unit(6, "feet"),
  7025. weight: math.unit(256, "lbs"),
  7026. name: "Front",
  7027. image: {
  7028. source: "./media/characters/dannik/front.svg"
  7029. }
  7030. }
  7031. },
  7032. [
  7033. {
  7034. name: "Macro",
  7035. height: math.unit(69.57, "meters"),
  7036. default: true
  7037. },
  7038. ]
  7039. ))
  7040. characterMakers.push(() => makeCharacter(
  7041. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  7042. {
  7043. front: {
  7044. height: math.unit(6, "feet"),
  7045. weight: math.unit(120, "lbs"),
  7046. name: "Front",
  7047. image: {
  7048. source: "./media/characters/azura-saharah/front.svg"
  7049. }
  7050. },
  7051. back: {
  7052. height: math.unit(6, "feet"),
  7053. weight: math.unit(120, "lbs"),
  7054. name: "Back",
  7055. image: {
  7056. source: "./media/characters/azura-saharah/back.svg"
  7057. }
  7058. },
  7059. },
  7060. [
  7061. {
  7062. name: "Macro",
  7063. height: math.unit(100, "feet"),
  7064. default: true
  7065. },
  7066. ]
  7067. ))
  7068. characterMakers.push(() => makeCharacter(
  7069. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  7070. {
  7071. side: {
  7072. height: math.unit(5 + 4 / 12, "feet"),
  7073. weight: math.unit(163, "lbs"),
  7074. name: "Side",
  7075. image: {
  7076. source: "./media/characters/kennedy/side.svg"
  7077. }
  7078. }
  7079. },
  7080. [
  7081. {
  7082. name: "Standard Doggo",
  7083. height: math.unit(5 + 4 / 12, "feet")
  7084. },
  7085. {
  7086. name: "Big Doggo",
  7087. height: math.unit(25 + 3 / 12, "feet"),
  7088. default: true
  7089. },
  7090. ]
  7091. ))
  7092. characterMakers.push(() => makeCharacter(
  7093. { name: "Odi Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  7094. {
  7095. front: {
  7096. height: math.unit(6, "feet"),
  7097. weight: math.unit(90, "lbs"),
  7098. name: "Front",
  7099. image: {
  7100. source: "./media/characters/odi-lunar/front.svg"
  7101. }
  7102. }
  7103. },
  7104. [
  7105. {
  7106. name: "Micro",
  7107. height: math.unit(3, "inches"),
  7108. default: true
  7109. },
  7110. {
  7111. name: "Normal",
  7112. height: math.unit(5.5, "feet")
  7113. }
  7114. ]
  7115. ))
  7116. characterMakers.push(() => makeCharacter(
  7117. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  7118. {
  7119. back: {
  7120. height: math.unit(6, "feet"),
  7121. weight: math.unit(220, "lbs"),
  7122. name: "Back",
  7123. image: {
  7124. source: "./media/characters/mandake/back.svg"
  7125. }
  7126. }
  7127. },
  7128. [
  7129. {
  7130. name: "Normal",
  7131. height: math.unit(7, "feet"),
  7132. default: true
  7133. },
  7134. {
  7135. name: "Macro",
  7136. height: math.unit(78, "feet")
  7137. },
  7138. {
  7139. name: "Macro+",
  7140. height: math.unit(300, "meters")
  7141. },
  7142. {
  7143. name: "Macro++",
  7144. height: math.unit(2400, "feet")
  7145. },
  7146. {
  7147. name: "Megamacro",
  7148. height: math.unit(5167, "meters")
  7149. },
  7150. {
  7151. name: "Gigamacro",
  7152. height: math.unit(41769, "miles")
  7153. },
  7154. ]
  7155. ))
  7156. characterMakers.push(() => makeCharacter(
  7157. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  7158. {
  7159. front: {
  7160. height: math.unit(6, "feet"),
  7161. weight: math.unit(120, "lbs"),
  7162. name: "Front",
  7163. image: {
  7164. source: "./media/characters/yozey/front.svg"
  7165. }
  7166. },
  7167. frontAlt: {
  7168. height: math.unit(6, "feet"),
  7169. weight: math.unit(120, "lbs"),
  7170. name: "Front (Alt)",
  7171. image: {
  7172. source: "./media/characters/yozey/front-alt.svg"
  7173. }
  7174. },
  7175. side: {
  7176. height: math.unit(6, "feet"),
  7177. weight: math.unit(120, "lbs"),
  7178. name: "Side",
  7179. image: {
  7180. source: "./media/characters/yozey/side.svg"
  7181. }
  7182. },
  7183. },
  7184. [
  7185. {
  7186. name: "Micro",
  7187. height: math.unit(3, "inches"),
  7188. default: true
  7189. },
  7190. {
  7191. name: "Normal",
  7192. height: math.unit(6, "feet")
  7193. }
  7194. ]
  7195. ))
  7196. characterMakers.push(() => makeCharacter(
  7197. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  7198. {
  7199. front: {
  7200. height: math.unit(6, "feet"),
  7201. weight: math.unit(103, "lbs"),
  7202. name: "Front",
  7203. image: {
  7204. source: "./media/characters/valeska-voss/front.svg"
  7205. }
  7206. }
  7207. },
  7208. [
  7209. {
  7210. name: "Mini-Sized Sub",
  7211. height: math.unit(3.1, "inches")
  7212. },
  7213. {
  7214. name: "Mid-Sized Sub",
  7215. height: math.unit(6.2, "inches")
  7216. },
  7217. {
  7218. name: "Full-Sized Sub",
  7219. height: math.unit(9.3, "inches")
  7220. },
  7221. {
  7222. name: "Normal",
  7223. height: math.unit(5 + 2 / 12, "foot"),
  7224. default: true
  7225. },
  7226. ]
  7227. ))
  7228. characterMakers.push(() => makeCharacter(
  7229. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  7230. {
  7231. front: {
  7232. height: math.unit(6, "feet"),
  7233. weight: math.unit(160, "lbs"),
  7234. name: "Front",
  7235. image: {
  7236. source: "./media/characters/gene-zeta/front.svg",
  7237. extra: 3006 / 2826,
  7238. bottom: 182 / 3188
  7239. }
  7240. }
  7241. },
  7242. [
  7243. {
  7244. name: "Micro",
  7245. height: math.unit(6, "inches")
  7246. },
  7247. {
  7248. name: "Normal",
  7249. height: math.unit(5 + 11 / 12, "foot"),
  7250. default: true
  7251. },
  7252. {
  7253. name: "Macro",
  7254. height: math.unit(140, "feet")
  7255. },
  7256. {
  7257. name: "Supercharged",
  7258. height: math.unit(2500, "feet")
  7259. },
  7260. ]
  7261. ))
  7262. characterMakers.push(() => makeCharacter(
  7263. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  7264. {
  7265. front: {
  7266. height: math.unit(6, "feet"),
  7267. weight: math.unit(350, "lbs"),
  7268. name: "Front",
  7269. image: {
  7270. source: "./media/characters/razinox/front.svg",
  7271. extra: 1686 / 1548,
  7272. bottom: 28.2 / 1868
  7273. }
  7274. },
  7275. back: {
  7276. height: math.unit(6, "feet"),
  7277. weight: math.unit(350, "lbs"),
  7278. name: "Back",
  7279. image: {
  7280. source: "./media/characters/razinox/back.svg",
  7281. extra: 1660 / 1590,
  7282. bottom: 15 / 1665
  7283. }
  7284. },
  7285. },
  7286. [
  7287. {
  7288. name: "Normal",
  7289. height: math.unit(10 + 8 / 12, "foot")
  7290. },
  7291. {
  7292. name: "Minimacro",
  7293. height: math.unit(15, "foot")
  7294. },
  7295. {
  7296. name: "Macro",
  7297. height: math.unit(60, "foot"),
  7298. default: true
  7299. },
  7300. {
  7301. name: "Megamacro",
  7302. height: math.unit(5, "miles")
  7303. },
  7304. {
  7305. name: "Gigamacro",
  7306. height: math.unit(6000, "miles")
  7307. },
  7308. ]
  7309. ))
  7310. characterMakers.push(() => makeCharacter(
  7311. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  7312. {
  7313. front: {
  7314. height: math.unit(6, "feet"),
  7315. weight: math.unit(150, "lbs"),
  7316. name: "Front",
  7317. image: {
  7318. source: "./media/characters/cobalt/front.svg"
  7319. }
  7320. }
  7321. },
  7322. [
  7323. {
  7324. name: "Normal",
  7325. height: math.unit(8 + 1 / 12, "foot")
  7326. },
  7327. {
  7328. name: "Macro",
  7329. height: math.unit(111, "foot"),
  7330. default: true
  7331. },
  7332. {
  7333. name: "Supracosmic",
  7334. height: math.unit(1e42, "feet")
  7335. },
  7336. ]
  7337. ))
  7338. characterMakers.push(() => makeCharacter(
  7339. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  7340. {
  7341. front: {
  7342. height: math.unit(6, "feet"),
  7343. weight: math.unit(140, "lbs"),
  7344. name: "Front",
  7345. image: {
  7346. source: "./media/characters/amanda/front.svg"
  7347. }
  7348. }
  7349. },
  7350. [
  7351. {
  7352. name: "Micro",
  7353. height: math.unit(5, "inches"),
  7354. default: true
  7355. },
  7356. ]
  7357. ))
  7358. characterMakers.push(() => makeCharacter(
  7359. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  7360. {
  7361. front: {
  7362. height: math.unit(2.75, "meters"),
  7363. weight: math.unit(1200, "lb"),
  7364. name: "Front",
  7365. image: {
  7366. source: "./media/characters/teal/front.svg",
  7367. extra: 2463 / 2320,
  7368. bottom: 166 / 2629
  7369. }
  7370. },
  7371. back: {
  7372. height: math.unit(2.75, "meters"),
  7373. weight: math.unit(1200, "lb"),
  7374. name: "Back",
  7375. image: {
  7376. source: "./media/characters/teal/back.svg",
  7377. extra: 2580 / 2489,
  7378. bottom: 151 / 2731
  7379. }
  7380. },
  7381. sitting: {
  7382. height: math.unit(1.9, "meters"),
  7383. weight: math.unit(1200, "lb"),
  7384. name: "Sitting",
  7385. image: {
  7386. source: "./media/characters/teal/sitting.svg",
  7387. extra: 623 / 590,
  7388. bottom: 121 / 744
  7389. }
  7390. },
  7391. standing: {
  7392. height: math.unit(2.75, "meters"),
  7393. weight: math.unit(1200, "lb"),
  7394. name: "Standing",
  7395. image: {
  7396. source: "./media/characters/teal/standing.svg",
  7397. extra: 923 / 893,
  7398. bottom: 60 / 983
  7399. }
  7400. },
  7401. stretching: {
  7402. height: math.unit(3.65, "meters"),
  7403. weight: math.unit(1200, "lb"),
  7404. name: "Stretching",
  7405. image: {
  7406. source: "./media/characters/teal/stretching.svg",
  7407. extra: 1276 / 1244,
  7408. bottom: 0 / 1276
  7409. }
  7410. },
  7411. legged: {
  7412. height: math.unit(1.3, "meters"),
  7413. weight: math.unit(100, "lb"),
  7414. name: "Legged",
  7415. image: {
  7416. source: "./media/characters/teal/legged.svg",
  7417. extra: 462 / 437,
  7418. bottom: 24 / 486
  7419. }
  7420. },
  7421. naga: {
  7422. height: math.unit(5.4, "meters"),
  7423. weight: math.unit(4000, "lb"),
  7424. name: "Naga",
  7425. image: {
  7426. source: "./media/characters/teal/naga.svg",
  7427. extra: 1902 / 1858,
  7428. bottom: 0 / 1902
  7429. }
  7430. },
  7431. hand: {
  7432. height: math.unit(0.52, "meters"),
  7433. name: "Hand",
  7434. image: {
  7435. source: "./media/characters/teal/hand.svg"
  7436. }
  7437. },
  7438. maw: {
  7439. height: math.unit(0.43, "meters"),
  7440. name: "Maw",
  7441. image: {
  7442. source: "./media/characters/teal/maw.svg"
  7443. }
  7444. },
  7445. slit: {
  7446. height: math.unit(0.25, "meters"),
  7447. name: "Slit",
  7448. image: {
  7449. source: "./media/characters/teal/slit.svg"
  7450. }
  7451. },
  7452. },
  7453. [
  7454. {
  7455. name: "Normal",
  7456. height: math.unit(2.75, "meters"),
  7457. default: true
  7458. },
  7459. {
  7460. name: "Macro",
  7461. height: math.unit(300, "feet")
  7462. },
  7463. {
  7464. name: "Macro+",
  7465. height: math.unit(2000, "feet")
  7466. },
  7467. ]
  7468. ))
  7469. characterMakers.push(() => makeCharacter(
  7470. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  7471. {
  7472. frontCat: {
  7473. height: math.unit(6, "feet"),
  7474. weight: math.unit(180, "lbs"),
  7475. name: "Front (Cat)",
  7476. image: {
  7477. source: "./media/characters/ravin-amulet/front-cat.svg"
  7478. }
  7479. },
  7480. frontCatAlt: {
  7481. height: math.unit(6, "feet"),
  7482. weight: math.unit(180, "lbs"),
  7483. name: "Front (Alt, Cat)",
  7484. image: {
  7485. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  7486. }
  7487. },
  7488. frontWerewolf: {
  7489. height: math.unit(6 * 1.2, "feet"),
  7490. weight: math.unit(225, "lbs"),
  7491. name: "Front (Werewolf)",
  7492. image: {
  7493. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  7494. }
  7495. },
  7496. backWerewolf: {
  7497. height: math.unit(6 * 1.2, "feet"),
  7498. weight: math.unit(225, "lbs"),
  7499. name: "Back (Werewolf)",
  7500. image: {
  7501. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  7502. }
  7503. },
  7504. },
  7505. [
  7506. {
  7507. name: "Nano",
  7508. height: math.unit(1, "micrometer")
  7509. },
  7510. {
  7511. name: "Micro",
  7512. height: math.unit(1, "inch")
  7513. },
  7514. {
  7515. name: "Normal",
  7516. height: math.unit(6, "feet"),
  7517. default: true
  7518. },
  7519. {
  7520. name: "Macro",
  7521. height: math.unit(60, "feet")
  7522. }
  7523. ]
  7524. ))
  7525. characterMakers.push(() => makeCharacter(
  7526. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  7527. {
  7528. front: {
  7529. height: math.unit(6, "feet"),
  7530. weight: math.unit(165, "lbs"),
  7531. name: "Front",
  7532. image: {
  7533. source: "./media/characters/fluoresce/front.svg"
  7534. }
  7535. }
  7536. },
  7537. [
  7538. {
  7539. name: "Micro",
  7540. height: math.unit(6, "cm")
  7541. },
  7542. {
  7543. name: "Normal",
  7544. height: math.unit(5 + 7 / 12, "feet"),
  7545. default: true
  7546. },
  7547. {
  7548. name: "Macro",
  7549. height: math.unit(56, "feet")
  7550. },
  7551. {
  7552. name: "Megamacro",
  7553. height: math.unit(1.9, "miles")
  7554. },
  7555. ]
  7556. ))
  7557. characterMakers.push(() => makeCharacter(
  7558. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  7559. {
  7560. front: {
  7561. height: math.unit(9 + 6 / 12, "feet"),
  7562. weight: math.unit(523, "lbs"),
  7563. name: "Side",
  7564. image: {
  7565. source: "./media/characters/aurora/side.svg"
  7566. }
  7567. }
  7568. },
  7569. [
  7570. {
  7571. name: "Normal",
  7572. height: math.unit(9 + 6 / 12, "feet")
  7573. },
  7574. {
  7575. name: "Macro",
  7576. height: math.unit(96, "feet"),
  7577. default: true
  7578. },
  7579. {
  7580. name: "Macro+",
  7581. height: math.unit(243, "feet")
  7582. },
  7583. ]
  7584. ))
  7585. characterMakers.push(() => makeCharacter(
  7586. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  7587. {
  7588. front: {
  7589. height: math.unit(194, "cm"),
  7590. weight: math.unit(90, "kg"),
  7591. name: "Front",
  7592. image: {
  7593. source: "./media/characters/ranek/front.svg"
  7594. }
  7595. },
  7596. side: {
  7597. height: math.unit(194, "cm"),
  7598. weight: math.unit(90, "kg"),
  7599. name: "Side",
  7600. image: {
  7601. source: "./media/characters/ranek/side.svg"
  7602. }
  7603. },
  7604. back: {
  7605. height: math.unit(194, "cm"),
  7606. weight: math.unit(90, "kg"),
  7607. name: "Back",
  7608. image: {
  7609. source: "./media/characters/ranek/back.svg"
  7610. }
  7611. },
  7612. feral: {
  7613. height: math.unit(30, "cm"),
  7614. weight: math.unit(1.6, "lbs"),
  7615. name: "Feral",
  7616. image: {
  7617. source: "./media/characters/ranek/feral.svg"
  7618. }
  7619. },
  7620. },
  7621. [
  7622. {
  7623. name: "Normal",
  7624. height: math.unit(194, "cm"),
  7625. default: true
  7626. },
  7627. {
  7628. name: "Macro",
  7629. height: math.unit(100, "meters")
  7630. },
  7631. ]
  7632. ))
  7633. characterMakers.push(() => makeCharacter(
  7634. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  7635. {
  7636. front: {
  7637. height: math.unit(5 + 6 / 12, "feet"),
  7638. weight: math.unit(153, "lbs"),
  7639. name: "Front",
  7640. image: {
  7641. source: "./media/characters/andrew-cooper/front.svg"
  7642. }
  7643. },
  7644. },
  7645. [
  7646. {
  7647. name: "Nano",
  7648. height: math.unit(1, "mm")
  7649. },
  7650. {
  7651. name: "Micro",
  7652. height: math.unit(2, "inches")
  7653. },
  7654. {
  7655. name: "Normal",
  7656. height: math.unit(5 + 6 / 12, "feet"),
  7657. default: true
  7658. }
  7659. ]
  7660. ))
  7661. characterMakers.push(() => makeCharacter(
  7662. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  7663. {
  7664. front: {
  7665. height: math.unit(6, "feet"),
  7666. weight: math.unit(180, "lbs"),
  7667. name: "Front",
  7668. image: {
  7669. source: "./media/characters/akane-sato/front.svg",
  7670. extra: 1219 / 1140
  7671. }
  7672. },
  7673. back: {
  7674. height: math.unit(6, "feet"),
  7675. weight: math.unit(180, "lbs"),
  7676. name: "Back",
  7677. image: {
  7678. source: "./media/characters/akane-sato/back.svg",
  7679. extra: 1219 / 1170
  7680. }
  7681. },
  7682. },
  7683. [
  7684. {
  7685. name: "Normal",
  7686. height: math.unit(2.5, "meters")
  7687. },
  7688. {
  7689. name: "Macro",
  7690. height: math.unit(250, "meters"),
  7691. default: true
  7692. },
  7693. {
  7694. name: "Megamacro",
  7695. height: math.unit(25, "km")
  7696. },
  7697. ]
  7698. ))
  7699. characterMakers.push(() => makeCharacter(
  7700. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  7701. {
  7702. front: {
  7703. height: math.unit(6, "feet"),
  7704. weight: math.unit(65, "kg"),
  7705. name: "Front",
  7706. image: {
  7707. source: "./media/characters/rook/front.svg",
  7708. extra: 960 / 950
  7709. }
  7710. }
  7711. },
  7712. [
  7713. {
  7714. name: "Normal",
  7715. height: math.unit(8.8, "feet")
  7716. },
  7717. {
  7718. name: "Macro",
  7719. height: math.unit(88, "feet"),
  7720. default: true
  7721. },
  7722. {
  7723. name: "Megamacro",
  7724. height: math.unit(8, "miles")
  7725. },
  7726. ]
  7727. ))
  7728. characterMakers.push(() => makeCharacter(
  7729. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  7730. {
  7731. front: {
  7732. height: math.unit(12 + 2 / 12, "feet"),
  7733. weight: math.unit(808, "lbs"),
  7734. name: "Front",
  7735. image: {
  7736. source: "./media/characters/prodigy/front.svg"
  7737. }
  7738. }
  7739. },
  7740. [
  7741. {
  7742. name: "Normal",
  7743. height: math.unit(12 + 2 / 12, "feet"),
  7744. default: true
  7745. },
  7746. {
  7747. name: "Macro",
  7748. height: math.unit(143, "feet")
  7749. },
  7750. {
  7751. name: "Macro+",
  7752. height: math.unit(400, "feet")
  7753. },
  7754. ]
  7755. ))
  7756. characterMakers.push(() => makeCharacter(
  7757. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  7758. {
  7759. front: {
  7760. height: math.unit(6, "feet"),
  7761. weight: math.unit(225, "lbs"),
  7762. name: "Front",
  7763. image: {
  7764. source: "./media/characters/daniel/front.svg"
  7765. }
  7766. },
  7767. leaning: {
  7768. height: math.unit(6, "feet"),
  7769. weight: math.unit(225, "lbs"),
  7770. name: "Leaning",
  7771. image: {
  7772. source: "./media/characters/daniel/leaning.svg"
  7773. }
  7774. },
  7775. },
  7776. [
  7777. {
  7778. name: "Macro",
  7779. height: math.unit(1000, "feet"),
  7780. default: true
  7781. },
  7782. ]
  7783. ))
  7784. characterMakers.push(() => makeCharacter(
  7785. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  7786. {
  7787. front: {
  7788. height: math.unit(6, "feet"),
  7789. weight: math.unit(88, "lbs"),
  7790. name: "Front",
  7791. image: {
  7792. source: "./media/characters/chiros/front.svg",
  7793. extra: 306 / 226
  7794. }
  7795. },
  7796. side: {
  7797. height: math.unit(6, "feet"),
  7798. weight: math.unit(88, "lbs"),
  7799. name: "Side",
  7800. image: {
  7801. source: "./media/characters/chiros/side.svg",
  7802. extra: 306 / 226
  7803. }
  7804. },
  7805. },
  7806. [
  7807. {
  7808. name: "Normal",
  7809. height: math.unit(6, "cm"),
  7810. default: true
  7811. },
  7812. ]
  7813. ))
  7814. characterMakers.push(() => makeCharacter(
  7815. { name: "Selka", species: ["snake"], tags: ["naga"] },
  7816. {
  7817. front: {
  7818. height: math.unit(6, "feet"),
  7819. weight: math.unit(100, "lbs"),
  7820. name: "Front",
  7821. image: {
  7822. source: "./media/characters/selka/front.svg",
  7823. extra: 947 / 887
  7824. }
  7825. }
  7826. },
  7827. [
  7828. {
  7829. name: "Normal",
  7830. height: math.unit(5, "cm"),
  7831. default: true
  7832. },
  7833. ]
  7834. ))
  7835. characterMakers.push(() => makeCharacter(
  7836. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  7837. {
  7838. front: {
  7839. height: math.unit(8 + 3 / 12, "feet"),
  7840. weight: math.unit(424, "lbs"),
  7841. name: "Front",
  7842. image: {
  7843. source: "./media/characters/verin/front.svg",
  7844. extra: 1845 / 1550
  7845. }
  7846. },
  7847. frontArmored: {
  7848. height: math.unit(8 + 3 / 12, "feet"),
  7849. weight: math.unit(424, "lbs"),
  7850. name: "Front (Armored)",
  7851. image: {
  7852. source: "./media/characters/verin/front-armor.svg",
  7853. extra: 1845 / 1550,
  7854. bottom: 0.01
  7855. }
  7856. },
  7857. back: {
  7858. height: math.unit(8 + 3 / 12, "feet"),
  7859. weight: math.unit(424, "lbs"),
  7860. name: "Back",
  7861. image: {
  7862. source: "./media/characters/verin/back.svg",
  7863. bottom: 0.1,
  7864. extra: 1
  7865. }
  7866. },
  7867. foot: {
  7868. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  7869. name: "Foot",
  7870. image: {
  7871. source: "./media/characters/verin/foot.svg"
  7872. }
  7873. },
  7874. },
  7875. [
  7876. {
  7877. name: "Normal",
  7878. height: math.unit(8 + 3 / 12, "feet")
  7879. },
  7880. {
  7881. name: "Minimacro",
  7882. height: math.unit(21, "feet"),
  7883. default: true
  7884. },
  7885. {
  7886. name: "Macro",
  7887. height: math.unit(626, "feet")
  7888. },
  7889. ]
  7890. ))
  7891. characterMakers.push(() => makeCharacter(
  7892. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  7893. {
  7894. front: {
  7895. height: math.unit(2.718, "meters"),
  7896. weight: math.unit(150, "lbs"),
  7897. name: "Front",
  7898. image: {
  7899. source: "./media/characters/sovrim-terraquian/front.svg"
  7900. }
  7901. },
  7902. back: {
  7903. height: math.unit(2.718, "meters"),
  7904. weight: math.unit(150, "lbs"),
  7905. name: "Back",
  7906. image: {
  7907. source: "./media/characters/sovrim-terraquian/back.svg"
  7908. }
  7909. }
  7910. },
  7911. [
  7912. {
  7913. name: "Micro",
  7914. height: math.unit(2, "inches")
  7915. },
  7916. {
  7917. name: "Small",
  7918. height: math.unit(1, "meter")
  7919. },
  7920. {
  7921. name: "Normal",
  7922. height: math.unit(Math.E, "meters"),
  7923. default: true
  7924. },
  7925. {
  7926. name: "Macro",
  7927. height: math.unit(20, "meters")
  7928. },
  7929. {
  7930. name: "Macro+",
  7931. height: math.unit(400, "meters")
  7932. },
  7933. ]
  7934. ))
  7935. characterMakers.push(() => makeCharacter(
  7936. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  7937. {
  7938. front: {
  7939. height: math.unit(7, "feet"),
  7940. weight: math.unit(489, "lbs"),
  7941. name: "Front",
  7942. image: {
  7943. source: "./media/characters/reece-silvermane/front.svg",
  7944. bottom: 0.02,
  7945. extra: 1
  7946. }
  7947. },
  7948. },
  7949. [
  7950. {
  7951. name: "Macro",
  7952. height: math.unit(1.5, "miles"),
  7953. default: true
  7954. },
  7955. ]
  7956. ))
  7957. characterMakers.push(() => makeCharacter(
  7958. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  7959. {
  7960. front: {
  7961. height: math.unit(6, "feet"),
  7962. weight: math.unit(78, "kg"),
  7963. name: "Front",
  7964. image: {
  7965. source: "./media/characters/kane/front.svg",
  7966. extra: 978 / 899
  7967. }
  7968. },
  7969. },
  7970. [
  7971. {
  7972. name: "Normal",
  7973. height: math.unit(2.1, "m"),
  7974. },
  7975. {
  7976. name: "Macro",
  7977. height: math.unit(1, "km"),
  7978. default: true
  7979. },
  7980. ]
  7981. ))
  7982. characterMakers.push(() => makeCharacter(
  7983. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  7984. {
  7985. front: {
  7986. height: math.unit(6, "feet"),
  7987. weight: math.unit(200, "kg"),
  7988. name: "Front",
  7989. image: {
  7990. source: "./media/characters/tegon/front.svg",
  7991. bottom: 0.01,
  7992. extra: 1
  7993. }
  7994. },
  7995. },
  7996. [
  7997. {
  7998. name: "Micro",
  7999. height: math.unit(1, "inch")
  8000. },
  8001. {
  8002. name: "Normal",
  8003. height: math.unit(6 + 3 / 12, "feet"),
  8004. default: true
  8005. },
  8006. {
  8007. name: "Macro",
  8008. height: math.unit(300, "feet")
  8009. },
  8010. {
  8011. name: "Megamacro",
  8012. height: math.unit(69, "miles")
  8013. },
  8014. ]
  8015. ))
  8016. characterMakers.push(() => makeCharacter(
  8017. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  8018. {
  8019. side: {
  8020. height: math.unit(6, "feet"),
  8021. weight: math.unit(2304, "lbs"),
  8022. name: "Side",
  8023. image: {
  8024. source: "./media/characters/arcturax/side.svg",
  8025. extra: 790 / 376,
  8026. bottom: 0.01
  8027. }
  8028. },
  8029. },
  8030. [
  8031. {
  8032. name: "Micro",
  8033. height: math.unit(2, "inch")
  8034. },
  8035. {
  8036. name: "Normal",
  8037. height: math.unit(6, "feet")
  8038. },
  8039. {
  8040. name: "Macro",
  8041. height: math.unit(39, "feet"),
  8042. default: true
  8043. },
  8044. {
  8045. name: "Megamacro",
  8046. height: math.unit(7, "miles")
  8047. },
  8048. ]
  8049. ))
  8050. characterMakers.push(() => makeCharacter(
  8051. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  8052. {
  8053. front: {
  8054. height: math.unit(6, "feet"),
  8055. weight: math.unit(50, "lbs"),
  8056. name: "Front",
  8057. image: {
  8058. source: "./media/characters/sentri/front.svg",
  8059. extra: 1750 / 1570,
  8060. bottom: 0.025
  8061. }
  8062. },
  8063. frontAlt: {
  8064. height: math.unit(6, "feet"),
  8065. weight: math.unit(50, "lbs"),
  8066. name: "Front (Alt)",
  8067. image: {
  8068. source: "./media/characters/sentri/front-alt.svg",
  8069. extra: 1750 / 1570,
  8070. bottom: 0.025
  8071. }
  8072. },
  8073. },
  8074. [
  8075. {
  8076. name: "Normal",
  8077. height: math.unit(15, "feet"),
  8078. default: true
  8079. },
  8080. {
  8081. name: "Macro",
  8082. height: math.unit(2500, "feet")
  8083. }
  8084. ]
  8085. ))
  8086. characterMakers.push(() => makeCharacter(
  8087. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  8088. {
  8089. front: {
  8090. height: math.unit(5 + 8 / 12, "feet"),
  8091. weight: math.unit(130, "lbs"),
  8092. name: "Front",
  8093. image: {
  8094. source: "./media/characters/corvin/front.svg",
  8095. extra: 1803 / 1629
  8096. }
  8097. },
  8098. frontShirt: {
  8099. height: math.unit(5 + 8 / 12, "feet"),
  8100. weight: math.unit(130, "lbs"),
  8101. name: "Front (Shirt)",
  8102. image: {
  8103. source: "./media/characters/corvin/front-shirt.svg",
  8104. extra: 1803 / 1629
  8105. }
  8106. },
  8107. frontPoncho: {
  8108. height: math.unit(5 + 8 / 12, "feet"),
  8109. weight: math.unit(130, "lbs"),
  8110. name: "Front (Poncho)",
  8111. image: {
  8112. source: "./media/characters/corvin/front-poncho.svg",
  8113. extra: 1803 / 1629
  8114. }
  8115. },
  8116. side: {
  8117. height: math.unit(5 + 8 / 12, "feet"),
  8118. weight: math.unit(130, "lbs"),
  8119. name: "Side",
  8120. image: {
  8121. source: "./media/characters/corvin/side.svg",
  8122. extra: 1012 / 945
  8123. }
  8124. },
  8125. back: {
  8126. height: math.unit(5 + 8 / 12, "feet"),
  8127. weight: math.unit(130, "lbs"),
  8128. name: "Back",
  8129. image: {
  8130. source: "./media/characters/corvin/back.svg",
  8131. extra: 1803 / 1629
  8132. }
  8133. },
  8134. },
  8135. [
  8136. {
  8137. name: "Micro",
  8138. height: math.unit(3, "inches")
  8139. },
  8140. {
  8141. name: "Normal",
  8142. height: math.unit(5 + 8 / 12, "feet")
  8143. },
  8144. {
  8145. name: "Macro",
  8146. height: math.unit(300, "feet"),
  8147. default: true
  8148. },
  8149. {
  8150. name: "Megamacro",
  8151. height: math.unit(500, "miles")
  8152. }
  8153. ]
  8154. ))
  8155. characterMakers.push(() => makeCharacter(
  8156. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  8157. {
  8158. front: {
  8159. height: math.unit(6, "feet"),
  8160. weight: math.unit(135, "lbs"),
  8161. name: "Front",
  8162. image: {
  8163. source: "./media/characters/q/front.svg",
  8164. extra: 854 / 752,
  8165. bottom: 0.005
  8166. }
  8167. },
  8168. back: {
  8169. height: math.unit(6, "feet"),
  8170. weight: math.unit(130, "lbs"),
  8171. name: "Back",
  8172. image: {
  8173. source: "./media/characters/q/back.svg",
  8174. extra: 854 / 752
  8175. }
  8176. },
  8177. },
  8178. [
  8179. {
  8180. name: "Macro",
  8181. height: math.unit(90, "feet"),
  8182. default: true
  8183. },
  8184. {
  8185. name: "Extra Macro",
  8186. height: math.unit(300, "feet"),
  8187. },
  8188. {
  8189. name: "BIG WALF",
  8190. height: math.unit(750, "feet"),
  8191. },
  8192. ]
  8193. ))
  8194. characterMakers.push(() => makeCharacter(
  8195. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  8196. {
  8197. front: {
  8198. height: math.unit(6, "feet"),
  8199. weight: math.unit(150, "lbs"),
  8200. name: "Front",
  8201. image: {
  8202. source: "./media/characters/carley/front.svg",
  8203. extra: 3927 / 3540,
  8204. bottom: 29.2 / 735
  8205. }
  8206. }
  8207. },
  8208. [
  8209. {
  8210. name: "Normal",
  8211. height: math.unit(6 + 3 / 12, "feet")
  8212. },
  8213. {
  8214. name: "Macro",
  8215. height: math.unit(185, "feet"),
  8216. default: true
  8217. },
  8218. {
  8219. name: "Megamacro",
  8220. height: math.unit(8, "miles"),
  8221. },
  8222. ]
  8223. ))
  8224. characterMakers.push(() => makeCharacter(
  8225. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  8226. {
  8227. front: {
  8228. height: math.unit(3, "feet"),
  8229. weight: math.unit(28, "lbs"),
  8230. name: "Front",
  8231. image: {
  8232. source: "./media/characters/citrine/front.svg"
  8233. }
  8234. }
  8235. },
  8236. [
  8237. {
  8238. name: "Normal",
  8239. height: math.unit(3, "feet"),
  8240. default: true
  8241. }
  8242. ]
  8243. ))
  8244. characterMakers.push(() => makeCharacter(
  8245. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  8246. {
  8247. front: {
  8248. height: math.unit(14, "feet"),
  8249. weight: math.unit(1450, "kg"),
  8250. capacity: math.unit(15, "people"),
  8251. name: "Front",
  8252. image: {
  8253. source: "./media/characters/aura-starwind/front.svg",
  8254. extra: 1440/1327,
  8255. bottom: 11/1451
  8256. }
  8257. },
  8258. side: {
  8259. height: math.unit(14, "feet"),
  8260. weight: math.unit(1450, "kg"),
  8261. capacity: math.unit(15, "people"),
  8262. name: "Side",
  8263. image: {
  8264. source: "./media/characters/aura-starwind/side.svg",
  8265. extra: 1654 / 1497
  8266. }
  8267. },
  8268. taur: {
  8269. height: math.unit(18, "feet"),
  8270. weight: math.unit(5500, "kg"),
  8271. capacity: math.unit(50, "people"),
  8272. name: "Taur",
  8273. image: {
  8274. source: "./media/characters/aura-starwind/taur.svg",
  8275. extra: 1760 / 1650
  8276. }
  8277. },
  8278. feral: {
  8279. height: math.unit(46, "feet"),
  8280. weight: math.unit(25000, "kg"),
  8281. capacity: math.unit(120, "people"),
  8282. name: "Feral",
  8283. image: {
  8284. source: "./media/characters/aura-starwind/feral.svg"
  8285. }
  8286. },
  8287. },
  8288. [
  8289. {
  8290. name: "Normal",
  8291. height: math.unit(14, "feet"),
  8292. default: true
  8293. },
  8294. {
  8295. name: "Macro",
  8296. height: math.unit(50, "meters")
  8297. },
  8298. {
  8299. name: "Megamacro",
  8300. height: math.unit(5000, "meters")
  8301. },
  8302. {
  8303. name: "Gigamacro",
  8304. height: math.unit(100000, "kilometers")
  8305. },
  8306. ]
  8307. ))
  8308. characterMakers.push(() => makeCharacter(
  8309. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  8310. {
  8311. front: {
  8312. height: math.unit(2 + 7 / 12, "feet"),
  8313. weight: math.unit(32, "lbs"),
  8314. name: "Front",
  8315. image: {
  8316. source: "./media/characters/rivet/front.svg",
  8317. extra: 1716 / 1658,
  8318. bottom: 0.03
  8319. }
  8320. },
  8321. foot: {
  8322. height: math.unit(0.551, "feet"),
  8323. name: "Rivet's Foot",
  8324. image: {
  8325. source: "./media/characters/rivet/foot.svg"
  8326. },
  8327. rename: true
  8328. }
  8329. },
  8330. [
  8331. {
  8332. name: "Micro",
  8333. height: math.unit(1.5, "inches"),
  8334. },
  8335. {
  8336. name: "Normal",
  8337. height: math.unit(2 + 7 / 12, "feet"),
  8338. default: true
  8339. },
  8340. {
  8341. name: "Macro",
  8342. height: math.unit(85, "feet")
  8343. },
  8344. {
  8345. name: "Megamacro",
  8346. height: math.unit(2.2, "km")
  8347. }
  8348. ]
  8349. ))
  8350. characterMakers.push(() => makeCharacter(
  8351. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  8352. {
  8353. front: {
  8354. height: math.unit(5 + 9 / 12, "feet"),
  8355. weight: math.unit(150, "lbs"),
  8356. name: "Front",
  8357. image: {
  8358. source: "./media/characters/coffee/front.svg",
  8359. extra: 3666 / 3032,
  8360. bottom: 0.04
  8361. }
  8362. },
  8363. foot: {
  8364. height: math.unit(1.29, "feet"),
  8365. name: "Foot",
  8366. image: {
  8367. source: "./media/characters/coffee/foot.svg"
  8368. }
  8369. },
  8370. },
  8371. [
  8372. {
  8373. name: "Micro",
  8374. height: math.unit(2, "inches"),
  8375. },
  8376. {
  8377. name: "Normal",
  8378. height: math.unit(5 + 9 / 12, "feet"),
  8379. default: true
  8380. },
  8381. {
  8382. name: "Macro",
  8383. height: math.unit(800, "feet")
  8384. },
  8385. {
  8386. name: "Megamacro",
  8387. height: math.unit(25, "miles")
  8388. }
  8389. ]
  8390. ))
  8391. characterMakers.push(() => makeCharacter(
  8392. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  8393. {
  8394. front: {
  8395. height: math.unit(6, "feet"),
  8396. weight: math.unit(200, "lbs"),
  8397. name: "Front",
  8398. image: {
  8399. source: "./media/characters/chari-gal/front.svg",
  8400. extra: 1568 / 1385,
  8401. bottom: 0.047
  8402. }
  8403. },
  8404. gigantamax: {
  8405. height: math.unit(6 * 16, "feet"),
  8406. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  8407. name: "Gigantamax",
  8408. image: {
  8409. source: "./media/characters/chari-gal/gigantamax.svg",
  8410. extra: 1124 / 888,
  8411. bottom: 0.03
  8412. }
  8413. },
  8414. },
  8415. [
  8416. {
  8417. name: "Normal",
  8418. height: math.unit(5 + 7 / 12, "feet")
  8419. },
  8420. {
  8421. name: "Macro",
  8422. height: math.unit(200, "feet"),
  8423. default: true
  8424. }
  8425. ]
  8426. ))
  8427. characterMakers.push(() => makeCharacter(
  8428. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  8429. {
  8430. front: {
  8431. height: math.unit(6, "feet"),
  8432. weight: math.unit(150, "lbs"),
  8433. name: "Front",
  8434. image: {
  8435. source: "./media/characters/nova/front.svg",
  8436. extra: 5000 / 4722,
  8437. bottom: 0.02
  8438. }
  8439. }
  8440. },
  8441. [
  8442. {
  8443. name: "Micro-",
  8444. height: math.unit(0.8, "inches")
  8445. },
  8446. {
  8447. name: "Micro",
  8448. height: math.unit(2, "inches"),
  8449. default: true
  8450. },
  8451. ]
  8452. ))
  8453. characterMakers.push(() => makeCharacter(
  8454. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  8455. {
  8456. front: {
  8457. height: math.unit(3 + 1 / 12, "feet"),
  8458. weight: math.unit(21.7, "lbs"),
  8459. name: "Front",
  8460. image: {
  8461. source: "./media/characters/argent/front.svg",
  8462. extra: 1471 / 1331,
  8463. bottom: 100.8 / 1575.5
  8464. }
  8465. }
  8466. },
  8467. [
  8468. {
  8469. name: "Micro",
  8470. height: math.unit(2, "inches")
  8471. },
  8472. {
  8473. name: "Normal",
  8474. height: math.unit(3 + 1 / 12, "feet"),
  8475. default: true
  8476. },
  8477. {
  8478. name: "Macro",
  8479. height: math.unit(120, "feet")
  8480. },
  8481. ]
  8482. ))
  8483. characterMakers.push(() => makeCharacter(
  8484. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  8485. {
  8486. lamp: {
  8487. height: math.unit(7 * 1559 / 989, "feet"),
  8488. name: "Magic Lamp",
  8489. image: {
  8490. source: "./media/characters/mira-al-cul/lamp.svg",
  8491. extra: 1617 / 1559
  8492. }
  8493. },
  8494. front: {
  8495. height: math.unit(7, "feet"),
  8496. name: "Front",
  8497. image: {
  8498. source: "./media/characters/mira-al-cul/front.svg",
  8499. extra: 1044 / 990
  8500. }
  8501. },
  8502. },
  8503. [
  8504. {
  8505. name: "Heavily Restricted",
  8506. height: math.unit(7 * 1559 / 989, "feet")
  8507. },
  8508. {
  8509. name: "Freshly Freed",
  8510. height: math.unit(50 * 1559 / 989, "feet")
  8511. },
  8512. {
  8513. name: "World Encompassing",
  8514. height: math.unit(10000 * 1559 / 989, "miles")
  8515. },
  8516. {
  8517. name: "Galactic",
  8518. height: math.unit(1.433 * 1559 / 989, "zettameters")
  8519. },
  8520. {
  8521. name: "Palmed Universe",
  8522. height: math.unit(6000 * 1559 / 989, "yottameters"),
  8523. default: true
  8524. },
  8525. {
  8526. name: "Multiversal Matriarch",
  8527. height: math.unit(8.87e10, "yottameters")
  8528. },
  8529. {
  8530. name: "Void Mother",
  8531. height: math.unit(3.14e110, "yottaparsecs")
  8532. },
  8533. {
  8534. name: "Toying with Transcendence",
  8535. height: math.unit(1e307, "meters")
  8536. },
  8537. ]
  8538. ))
  8539. characterMakers.push(() => makeCharacter(
  8540. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  8541. {
  8542. front: {
  8543. height: math.unit(17 + 1 / 12, "feet"),
  8544. weight: math.unit(476.2 * 5, "lbs"),
  8545. name: "Front",
  8546. image: {
  8547. source: "./media/characters/kuro-shi-uchū/front.svg",
  8548. extra: 2329 / 1835,
  8549. bottom: 0.02
  8550. }
  8551. },
  8552. },
  8553. [
  8554. {
  8555. name: "Micro",
  8556. height: math.unit(2, "inches")
  8557. },
  8558. {
  8559. name: "Normal",
  8560. height: math.unit(12, "meters")
  8561. },
  8562. {
  8563. name: "Planetary",
  8564. height: math.unit(0.00929, "AU"),
  8565. default: true
  8566. },
  8567. {
  8568. name: "Universal",
  8569. height: math.unit(20, "gigaparsecs")
  8570. },
  8571. ]
  8572. ))
  8573. characterMakers.push(() => makeCharacter(
  8574. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  8575. {
  8576. front: {
  8577. height: math.unit(5 + 2 / 12, "feet"),
  8578. weight: math.unit(120, "lbs"),
  8579. name: "Front",
  8580. image: {
  8581. source: "./media/characters/katherine/front.svg",
  8582. extra: 2075 / 1969
  8583. }
  8584. },
  8585. dress: {
  8586. height: math.unit(5 + 2 / 12, "feet"),
  8587. weight: math.unit(120, "lbs"),
  8588. name: "Dress",
  8589. image: {
  8590. source: "./media/characters/katherine/dress.svg",
  8591. extra: 2258 / 2064
  8592. }
  8593. },
  8594. },
  8595. [
  8596. {
  8597. name: "Micro",
  8598. height: math.unit(1, "inches"),
  8599. default: true
  8600. },
  8601. {
  8602. name: "Normal",
  8603. height: math.unit(5 + 2 / 12, "feet")
  8604. },
  8605. {
  8606. name: "Macro",
  8607. height: math.unit(100, "meters")
  8608. },
  8609. {
  8610. name: "Megamacro",
  8611. height: math.unit(80, "miles")
  8612. },
  8613. ]
  8614. ))
  8615. characterMakers.push(() => makeCharacter(
  8616. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  8617. {
  8618. front: {
  8619. height: math.unit(7 + 8 / 12, "feet"),
  8620. weight: math.unit(250, "lbs"),
  8621. name: "Front",
  8622. image: {
  8623. source: "./media/characters/yevis/front.svg",
  8624. extra: 1938 / 1755
  8625. }
  8626. }
  8627. },
  8628. [
  8629. {
  8630. name: "Mortal",
  8631. height: math.unit(7 + 8 / 12, "feet")
  8632. },
  8633. {
  8634. name: "Battle",
  8635. height: math.unit(25 + 11 / 12, "feet")
  8636. },
  8637. {
  8638. name: "Wrath",
  8639. height: math.unit(1654 + 11 / 12, "feet")
  8640. },
  8641. {
  8642. name: "Planet Destroyer",
  8643. height: math.unit(12000, "miles")
  8644. },
  8645. {
  8646. name: "Galaxy Conqueror",
  8647. height: math.unit(1.45, "zettameters"),
  8648. default: true
  8649. },
  8650. {
  8651. name: "Universal War",
  8652. height: math.unit(184, "gigaparsecs")
  8653. },
  8654. {
  8655. name: "Eternity War",
  8656. height: math.unit(1.98e55, "yottaparsecs")
  8657. },
  8658. ]
  8659. ))
  8660. characterMakers.push(() => makeCharacter(
  8661. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  8662. {
  8663. front: {
  8664. height: math.unit(5 + 8 / 12, "feet"),
  8665. weight: math.unit(63, "kg"),
  8666. name: "Front",
  8667. image: {
  8668. source: "./media/characters/xavier/front.svg",
  8669. extra: 944 / 883
  8670. }
  8671. },
  8672. frontStretch: {
  8673. height: math.unit(5 + 8 / 12, "feet"),
  8674. weight: math.unit(63, "kg"),
  8675. name: "Stretching",
  8676. image: {
  8677. source: "./media/characters/xavier/front-stretch.svg",
  8678. extra: 962 / 820
  8679. }
  8680. },
  8681. },
  8682. [
  8683. {
  8684. name: "Normal",
  8685. height: math.unit(5 + 8 / 12, "feet")
  8686. },
  8687. {
  8688. name: "Macro",
  8689. height: math.unit(100, "meters"),
  8690. default: true
  8691. },
  8692. {
  8693. name: "McLargeHuge",
  8694. height: math.unit(10, "miles")
  8695. },
  8696. ]
  8697. ))
  8698. characterMakers.push(() => makeCharacter(
  8699. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  8700. {
  8701. front: {
  8702. height: math.unit(5 + 5 / 12, "feet"),
  8703. weight: math.unit(150, "lb"),
  8704. name: "Front",
  8705. image: {
  8706. source: "./media/characters/joshii/front.svg",
  8707. extra: 765 / 653,
  8708. bottom: 51 / 816
  8709. }
  8710. },
  8711. foot: {
  8712. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  8713. name: "Foot",
  8714. image: {
  8715. source: "./media/characters/joshii/foot.svg"
  8716. }
  8717. },
  8718. },
  8719. [
  8720. {
  8721. name: "Micro",
  8722. height: math.unit(2, "inches"),
  8723. default: true
  8724. },
  8725. {
  8726. name: "Normal",
  8727. height: math.unit(5 + 5 / 12, "feet")
  8728. },
  8729. {
  8730. name: "Macro",
  8731. height: math.unit(785, "feet")
  8732. },
  8733. {
  8734. name: "Megamacro",
  8735. height: math.unit(24.5, "miles")
  8736. },
  8737. ]
  8738. ))
  8739. characterMakers.push(() => makeCharacter(
  8740. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  8741. {
  8742. front: {
  8743. height: math.unit(6, "feet"),
  8744. weight: math.unit(150, "lb"),
  8745. name: "Front",
  8746. image: {
  8747. source: "./media/characters/goddess-elizabeth/front.svg",
  8748. extra: 1800 / 1525,
  8749. bottom: 0.005
  8750. }
  8751. },
  8752. foot: {
  8753. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  8754. name: "Foot",
  8755. image: {
  8756. source: "./media/characters/goddess-elizabeth/foot.svg"
  8757. }
  8758. },
  8759. mouth: {
  8760. height: math.unit(6, "feet"),
  8761. name: "Mouth",
  8762. image: {
  8763. source: "./media/characters/goddess-elizabeth/mouth.svg"
  8764. }
  8765. },
  8766. },
  8767. [
  8768. {
  8769. name: "Micro",
  8770. height: math.unit(12, "feet")
  8771. },
  8772. {
  8773. name: "Normal",
  8774. height: math.unit(80, "miles"),
  8775. default: true
  8776. },
  8777. {
  8778. name: "Macro",
  8779. height: math.unit(15000, "parsecs")
  8780. },
  8781. ]
  8782. ))
  8783. characterMakers.push(() => makeCharacter(
  8784. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  8785. {
  8786. front: {
  8787. height: math.unit(5 + 9 / 12, "feet"),
  8788. weight: math.unit(144, "lb"),
  8789. name: "Front",
  8790. image: {
  8791. source: "./media/characters/kara/front.svg"
  8792. }
  8793. },
  8794. feet: {
  8795. height: math.unit(6 / 6.765, "feet"),
  8796. name: "Kara's Feet",
  8797. rename: true,
  8798. image: {
  8799. source: "./media/characters/kara/feet.svg"
  8800. }
  8801. },
  8802. },
  8803. [
  8804. {
  8805. name: "Normal",
  8806. height: math.unit(5 + 9 / 12, "feet")
  8807. },
  8808. {
  8809. name: "Macro",
  8810. height: math.unit(174, "feet"),
  8811. default: true
  8812. },
  8813. ]
  8814. ))
  8815. characterMakers.push(() => makeCharacter(
  8816. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  8817. {
  8818. front: {
  8819. height: math.unit(18, "feet"),
  8820. weight: math.unit(4050, "lb"),
  8821. name: "Front",
  8822. image: {
  8823. source: "./media/characters/tyrone/front.svg",
  8824. extra: 2405 / 2270,
  8825. bottom: 182 / 2587
  8826. }
  8827. },
  8828. },
  8829. [
  8830. {
  8831. name: "Normal",
  8832. height: math.unit(18, "feet"),
  8833. default: true
  8834. },
  8835. {
  8836. name: "Macro",
  8837. height: math.unit(300, "feet")
  8838. },
  8839. {
  8840. name: "Megamacro",
  8841. height: math.unit(15, "km")
  8842. },
  8843. {
  8844. name: "Gigamacro",
  8845. height: math.unit(500, "km")
  8846. },
  8847. {
  8848. name: "Teramacro",
  8849. height: math.unit(0.5, "gigameters")
  8850. },
  8851. {
  8852. name: "Omnimacro",
  8853. height: math.unit(1e252, "yottauniverse")
  8854. },
  8855. ]
  8856. ))
  8857. characterMakers.push(() => makeCharacter(
  8858. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  8859. {
  8860. front: {
  8861. height: math.unit(7 + 8 / 12, "feet"),
  8862. weight: math.unit(120, "lb"),
  8863. name: "Front",
  8864. image: {
  8865. source: "./media/characters/danny/front.svg",
  8866. extra: 1490 / 1350
  8867. }
  8868. },
  8869. back: {
  8870. height: math.unit(7 + 8 / 12, "feet"),
  8871. weight: math.unit(120, "lb"),
  8872. name: "Back",
  8873. image: {
  8874. source: "./media/characters/danny/back.svg",
  8875. extra: 1490 / 1350
  8876. }
  8877. },
  8878. },
  8879. [
  8880. {
  8881. name: "Normal",
  8882. height: math.unit(7 + 8 / 12, "feet"),
  8883. default: true
  8884. },
  8885. ]
  8886. ))
  8887. characterMakers.push(() => makeCharacter(
  8888. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  8889. {
  8890. front: {
  8891. height: math.unit(3.5, "inches"),
  8892. weight: math.unit(19, "grams"),
  8893. name: "Front",
  8894. image: {
  8895. source: "./media/characters/mallow/front.svg",
  8896. extra: 471 / 431
  8897. }
  8898. },
  8899. back: {
  8900. height: math.unit(3.5, "inches"),
  8901. weight: math.unit(19, "grams"),
  8902. name: "Back",
  8903. image: {
  8904. source: "./media/characters/mallow/back.svg",
  8905. extra: 471 / 431
  8906. }
  8907. },
  8908. },
  8909. [
  8910. {
  8911. name: "Normal",
  8912. height: math.unit(3.5, "inches"),
  8913. default: true
  8914. },
  8915. ]
  8916. ))
  8917. characterMakers.push(() => makeCharacter(
  8918. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  8919. {
  8920. front: {
  8921. height: math.unit(9, "feet"),
  8922. weight: math.unit(230, "kg"),
  8923. name: "Front",
  8924. image: {
  8925. source: "./media/characters/starry-aqua/front.svg"
  8926. }
  8927. },
  8928. back: {
  8929. height: math.unit(9, "feet"),
  8930. weight: math.unit(230, "kg"),
  8931. name: "Back",
  8932. image: {
  8933. source: "./media/characters/starry-aqua/back.svg"
  8934. }
  8935. },
  8936. hand: {
  8937. height: math.unit(9 * 0.1168, "feet"),
  8938. name: "Hand",
  8939. image: {
  8940. source: "./media/characters/starry-aqua/hand.svg"
  8941. }
  8942. },
  8943. foot: {
  8944. height: math.unit(9 * 0.18, "feet"),
  8945. name: "Foot",
  8946. image: {
  8947. source: "./media/characters/starry-aqua/foot.svg"
  8948. }
  8949. }
  8950. },
  8951. [
  8952. {
  8953. name: "Micro",
  8954. height: math.unit(3, "inches")
  8955. },
  8956. {
  8957. name: "Normal",
  8958. height: math.unit(9, "feet")
  8959. },
  8960. {
  8961. name: "Macro",
  8962. height: math.unit(300, "feet"),
  8963. default: true
  8964. },
  8965. {
  8966. name: "Megamacro",
  8967. height: math.unit(3200, "feet")
  8968. }
  8969. ]
  8970. ))
  8971. characterMakers.push(() => makeCharacter(
  8972. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  8973. {
  8974. front: {
  8975. height: math.unit(15, "feet"),
  8976. weight: math.unit(5026, "lb"),
  8977. name: "Front",
  8978. image: {
  8979. source: "./media/characters/luka-towers/front.svg",
  8980. extra: 1269/1133,
  8981. bottom: 51/1320
  8982. }
  8983. },
  8984. },
  8985. [
  8986. {
  8987. name: "Normal",
  8988. height: math.unit(15, "feet"),
  8989. default: true
  8990. },
  8991. {
  8992. name: "Minimacro",
  8993. height: math.unit(25, "feet")
  8994. },
  8995. {
  8996. name: "Macro",
  8997. height: math.unit(320, "feet")
  8998. },
  8999. {
  9000. name: "Megamacro",
  9001. height: math.unit(35000, "feet")
  9002. },
  9003. {
  9004. name: "Gigamacro",
  9005. height: math.unit(4000, "miles")
  9006. },
  9007. {
  9008. name: "Teramacro",
  9009. height: math.unit(15000, "miles")
  9010. },
  9011. ]
  9012. ))
  9013. characterMakers.push(() => makeCharacter(
  9014. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  9015. {
  9016. front: {
  9017. height: math.unit(6, "feet"),
  9018. weight: math.unit(150, "lb"),
  9019. name: "Front",
  9020. image: {
  9021. source: "./media/characters/natalie-nightring/front.svg",
  9022. extra: 1,
  9023. bottom: 0.06
  9024. }
  9025. },
  9026. },
  9027. [
  9028. {
  9029. name: "Uh Oh",
  9030. height: math.unit(0.1, "mm")
  9031. },
  9032. {
  9033. name: "Small",
  9034. height: math.unit(3, "inches")
  9035. },
  9036. {
  9037. name: "Human Scale",
  9038. height: math.unit(6, "feet")
  9039. },
  9040. {
  9041. name: "Librarian",
  9042. height: math.unit(50, "feet"),
  9043. default: true
  9044. },
  9045. {
  9046. name: "Immense",
  9047. height: math.unit(200, "miles")
  9048. },
  9049. ]
  9050. ))
  9051. characterMakers.push(() => makeCharacter(
  9052. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  9053. {
  9054. front: {
  9055. height: math.unit(6, "feet"),
  9056. weight: math.unit(180, "lbs"),
  9057. name: "Front",
  9058. image: {
  9059. source: "./media/characters/danni-rosie/front.svg",
  9060. extra: 1260 / 1128,
  9061. bottom: 0.022
  9062. }
  9063. },
  9064. },
  9065. [
  9066. {
  9067. name: "Micro",
  9068. height: math.unit(2, "inches"),
  9069. default: true
  9070. },
  9071. ]
  9072. ))
  9073. characterMakers.push(() => makeCharacter(
  9074. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  9075. {
  9076. front: {
  9077. height: math.unit(5 + 9 / 12, "feet"),
  9078. weight: math.unit(220, "lb"),
  9079. name: "Front",
  9080. image: {
  9081. source: "./media/characters/samantha-kruse/front.svg",
  9082. extra: (985 / 935),
  9083. bottom: 0.03
  9084. }
  9085. },
  9086. frontUndressed: {
  9087. height: math.unit(5 + 9 / 12, "feet"),
  9088. weight: math.unit(220, "lb"),
  9089. name: "Front (Undressed)",
  9090. image: {
  9091. source: "./media/characters/samantha-kruse/front-undressed.svg",
  9092. extra: (973 / 923),
  9093. bottom: 0.025
  9094. }
  9095. },
  9096. fat: {
  9097. height: math.unit(5 + 9 / 12, "feet"),
  9098. weight: math.unit(900, "lb"),
  9099. name: "Front (Fat)",
  9100. image: {
  9101. source: "./media/characters/samantha-kruse/fat.svg",
  9102. extra: 2688 / 2561
  9103. }
  9104. },
  9105. },
  9106. [
  9107. {
  9108. name: "Normal",
  9109. height: math.unit(5 + 9 / 12, "feet"),
  9110. default: true
  9111. }
  9112. ]
  9113. ))
  9114. characterMakers.push(() => makeCharacter(
  9115. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  9116. {
  9117. back: {
  9118. height: math.unit(5 + 4 / 12, "feet"),
  9119. weight: math.unit(4963, "lb"),
  9120. name: "Back",
  9121. image: {
  9122. source: "./media/characters/amelia-rosie/back.svg",
  9123. extra: 1113 / 963,
  9124. bottom: 0.01
  9125. }
  9126. },
  9127. },
  9128. [
  9129. {
  9130. name: "Level 0",
  9131. height: math.unit(5 + 4 / 12, "feet")
  9132. },
  9133. {
  9134. name: "Level 1",
  9135. height: math.unit(164597, "feet"),
  9136. default: true
  9137. },
  9138. {
  9139. name: "Level 2",
  9140. height: math.unit(956243, "miles")
  9141. },
  9142. {
  9143. name: "Level 3",
  9144. height: math.unit(29421709423, "miles")
  9145. },
  9146. {
  9147. name: "Level 4",
  9148. height: math.unit(154, "lightyears")
  9149. },
  9150. {
  9151. name: "Level 5",
  9152. height: math.unit(4738272, "lightyears")
  9153. },
  9154. {
  9155. name: "Level 6",
  9156. height: math.unit(145787152896, "lightyears")
  9157. },
  9158. ]
  9159. ))
  9160. characterMakers.push(() => makeCharacter(
  9161. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  9162. {
  9163. front: {
  9164. height: math.unit(5 + 11 / 12, "feet"),
  9165. weight: math.unit(65, "kg"),
  9166. name: "Front",
  9167. image: {
  9168. source: "./media/characters/rook-kitara/front.svg",
  9169. extra: 1347 / 1274,
  9170. bottom: 0.005
  9171. }
  9172. },
  9173. },
  9174. [
  9175. {
  9176. name: "Totally Unfair",
  9177. height: math.unit(1.8, "mm")
  9178. },
  9179. {
  9180. name: "Lap Rookie",
  9181. height: math.unit(1.4, "feet")
  9182. },
  9183. {
  9184. name: "Normal",
  9185. height: math.unit(5 + 11 / 12, "feet"),
  9186. default: true
  9187. },
  9188. {
  9189. name: "How Did This Happen",
  9190. height: math.unit(80, "miles")
  9191. }
  9192. ]
  9193. ))
  9194. characterMakers.push(() => makeCharacter(
  9195. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  9196. {
  9197. front: {
  9198. height: math.unit(7, "feet"),
  9199. weight: math.unit(300, "lb"),
  9200. name: "Front",
  9201. image: {
  9202. source: "./media/characters/pisces/front.svg",
  9203. extra: 2255 / 2115,
  9204. bottom: 0.03
  9205. }
  9206. },
  9207. back: {
  9208. height: math.unit(7, "feet"),
  9209. weight: math.unit(300, "lb"),
  9210. name: "Back",
  9211. image: {
  9212. source: "./media/characters/pisces/back.svg",
  9213. extra: 2146 / 2055,
  9214. bottom: 0.04
  9215. }
  9216. },
  9217. },
  9218. [
  9219. {
  9220. name: "Normal",
  9221. height: math.unit(7, "feet"),
  9222. default: true
  9223. },
  9224. {
  9225. name: "Swimming Pool",
  9226. height: math.unit(12.2, "meters")
  9227. },
  9228. {
  9229. name: "Olympic Swimming Pool",
  9230. height: math.unit(56.3, "meters")
  9231. },
  9232. {
  9233. name: "Lake Superior",
  9234. height: math.unit(93900, "meters")
  9235. },
  9236. {
  9237. name: "Mediterranean Sea",
  9238. height: math.unit(644457, "meters")
  9239. },
  9240. {
  9241. name: "World's Oceans",
  9242. height: math.unit(4567491, "meters")
  9243. },
  9244. ]
  9245. ))
  9246. characterMakers.push(() => makeCharacter(
  9247. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  9248. {
  9249. front: {
  9250. height: math.unit(2.3, "meters"),
  9251. weight: math.unit(120, "kg"),
  9252. name: "Front",
  9253. image: {
  9254. source: "./media/characters/zelas/front.svg"
  9255. }
  9256. },
  9257. side: {
  9258. height: math.unit(2.3, "meters"),
  9259. weight: math.unit(120, "kg"),
  9260. name: "Side",
  9261. image: {
  9262. source: "./media/characters/zelas/side.svg"
  9263. }
  9264. },
  9265. back: {
  9266. height: math.unit(2.3, "meters"),
  9267. weight: math.unit(120, "kg"),
  9268. name: "Back",
  9269. image: {
  9270. source: "./media/characters/zelas/back.svg"
  9271. }
  9272. },
  9273. foot: {
  9274. height: math.unit(1.116, "feet"),
  9275. name: "Foot",
  9276. image: {
  9277. source: "./media/characters/zelas/foot.svg"
  9278. }
  9279. },
  9280. },
  9281. [
  9282. {
  9283. name: "Normal",
  9284. height: math.unit(2.3, "meters")
  9285. },
  9286. {
  9287. name: "Macro",
  9288. height: math.unit(30, "meters"),
  9289. default: true
  9290. },
  9291. ]
  9292. ))
  9293. characterMakers.push(() => makeCharacter(
  9294. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  9295. {
  9296. front: {
  9297. height: math.unit(1, "inch"),
  9298. weight: math.unit(0.21, "grams"),
  9299. name: "Front",
  9300. image: {
  9301. source: "./media/characters/talbot/front.svg",
  9302. extra: 594 / 544
  9303. }
  9304. },
  9305. },
  9306. [
  9307. {
  9308. name: "Micro",
  9309. height: math.unit(1, "inch"),
  9310. default: true
  9311. },
  9312. ]
  9313. ))
  9314. characterMakers.push(() => makeCharacter(
  9315. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  9316. {
  9317. front: {
  9318. height: math.unit(3 + 3 / 12, "feet"),
  9319. weight: math.unit(51.8, "lb"),
  9320. name: "Front",
  9321. image: {
  9322. source: "./media/characters/fliss/front.svg",
  9323. extra: 840 / 640
  9324. }
  9325. },
  9326. },
  9327. [
  9328. {
  9329. name: "Teeny Tiny",
  9330. height: math.unit(1, "mm")
  9331. },
  9332. {
  9333. name: "Small",
  9334. height: math.unit(1, "inch"),
  9335. default: true
  9336. },
  9337. {
  9338. name: "Standard Sylveon",
  9339. height: math.unit(3 + 3 / 12, "feet")
  9340. },
  9341. {
  9342. name: "Large Nuisance",
  9343. height: math.unit(33, "feet")
  9344. },
  9345. {
  9346. name: "City Filler",
  9347. height: math.unit(3000, "feet")
  9348. },
  9349. {
  9350. name: "New Horizon",
  9351. height: math.unit(6000, "miles")
  9352. },
  9353. ]
  9354. ))
  9355. characterMakers.push(() => makeCharacter(
  9356. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  9357. {
  9358. front: {
  9359. height: math.unit(5, "cm"),
  9360. weight: math.unit(1.94, "g"),
  9361. name: "Front",
  9362. image: {
  9363. source: "./media/characters/fleta/front.svg",
  9364. extra: 835 / 803
  9365. }
  9366. },
  9367. back: {
  9368. height: math.unit(5, "cm"),
  9369. weight: math.unit(1.94, "g"),
  9370. name: "Back",
  9371. image: {
  9372. source: "./media/characters/fleta/back.svg",
  9373. extra: 835 / 803
  9374. }
  9375. },
  9376. },
  9377. [
  9378. {
  9379. name: "Micro",
  9380. height: math.unit(5, "cm"),
  9381. default: true
  9382. },
  9383. ]
  9384. ))
  9385. characterMakers.push(() => makeCharacter(
  9386. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  9387. {
  9388. front: {
  9389. height: math.unit(6, "feet"),
  9390. weight: math.unit(225, "lb"),
  9391. name: "Front",
  9392. image: {
  9393. source: "./media/characters/dominic/front.svg",
  9394. extra: 1770 / 1620,
  9395. bottom: 0.025
  9396. }
  9397. },
  9398. back: {
  9399. height: math.unit(6, "feet"),
  9400. weight: math.unit(225, "lb"),
  9401. name: "Back",
  9402. image: {
  9403. source: "./media/characters/dominic/back.svg",
  9404. extra: 1745 / 1620,
  9405. bottom: 0.065
  9406. }
  9407. },
  9408. },
  9409. [
  9410. {
  9411. name: "Nano",
  9412. height: math.unit(0.1, "mm")
  9413. },
  9414. {
  9415. name: "Micro-",
  9416. height: math.unit(1, "mm")
  9417. },
  9418. {
  9419. name: "Micro",
  9420. height: math.unit(4, "inches")
  9421. },
  9422. {
  9423. name: "Normal",
  9424. height: math.unit(6 + 4 / 12, "feet"),
  9425. default: true
  9426. },
  9427. {
  9428. name: "Macro",
  9429. height: math.unit(115, "feet")
  9430. },
  9431. {
  9432. name: "Macro+",
  9433. height: math.unit(955, "feet")
  9434. },
  9435. {
  9436. name: "Megamacro",
  9437. height: math.unit(8990, "feet")
  9438. },
  9439. {
  9440. name: "Gigmacro",
  9441. height: math.unit(9310, "miles")
  9442. },
  9443. {
  9444. name: "Teramacro",
  9445. height: math.unit(1567005010, "miles")
  9446. },
  9447. {
  9448. name: "Examacro",
  9449. height: math.unit(1425, "parsecs")
  9450. },
  9451. ]
  9452. ))
  9453. characterMakers.push(() => makeCharacter(
  9454. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  9455. {
  9456. front: {
  9457. height: math.unit(400, "feet"),
  9458. weight: math.unit(44444444, "lb"),
  9459. name: "Front",
  9460. image: {
  9461. source: "./media/characters/major-colonel/front.svg"
  9462. }
  9463. },
  9464. back: {
  9465. height: math.unit(400, "feet"),
  9466. weight: math.unit(44444444, "lb"),
  9467. name: "Back",
  9468. image: {
  9469. source: "./media/characters/major-colonel/back.svg"
  9470. }
  9471. },
  9472. },
  9473. [
  9474. {
  9475. name: "Macro",
  9476. height: math.unit(400, "feet"),
  9477. default: true
  9478. },
  9479. ]
  9480. ))
  9481. characterMakers.push(() => makeCharacter(
  9482. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  9483. {
  9484. catFront: {
  9485. height: math.unit(6, "feet"),
  9486. weight: math.unit(120, "lb"),
  9487. name: "Front (Cat Side)",
  9488. image: {
  9489. source: "./media/characters/axel-lycan/cat-front.svg",
  9490. extra: 430 / 402,
  9491. bottom: 43 / 472.35
  9492. }
  9493. },
  9494. catBack: {
  9495. height: math.unit(6, "feet"),
  9496. weight: math.unit(120, "lb"),
  9497. name: "Back (Cat Side)",
  9498. image: {
  9499. source: "./media/characters/axel-lycan/cat-back.svg",
  9500. extra: 447 / 419,
  9501. bottom: 23.3 / 469
  9502. }
  9503. },
  9504. wolfFront: {
  9505. height: math.unit(6, "feet"),
  9506. weight: math.unit(120, "lb"),
  9507. name: "Front (Wolf Side)",
  9508. image: {
  9509. source: "./media/characters/axel-lycan/wolf-front.svg",
  9510. extra: 485 / 456,
  9511. bottom: 19 / 504
  9512. }
  9513. },
  9514. wolfBack: {
  9515. height: math.unit(6, "feet"),
  9516. weight: math.unit(120, "lb"),
  9517. name: "Back (Wolf Side)",
  9518. image: {
  9519. source: "./media/characters/axel-lycan/wolf-back.svg",
  9520. extra: 475 / 438,
  9521. bottom: 39.2 / 514
  9522. }
  9523. },
  9524. },
  9525. [
  9526. {
  9527. name: "Macro",
  9528. height: math.unit(1, "km"),
  9529. default: true
  9530. },
  9531. ]
  9532. ))
  9533. characterMakers.push(() => makeCharacter(
  9534. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  9535. {
  9536. front: {
  9537. height: math.unit(5 + 9 / 12, "feet"),
  9538. weight: math.unit(175, "lb"),
  9539. name: "Front",
  9540. image: {
  9541. source: "./media/characters/vanrel-hyena/front.svg",
  9542. extra: 1086 / 1010,
  9543. bottom: 0.04
  9544. }
  9545. },
  9546. },
  9547. [
  9548. {
  9549. name: "Normal",
  9550. height: math.unit(5 + 9 / 12, "feet"),
  9551. default: true
  9552. },
  9553. ]
  9554. ))
  9555. characterMakers.push(() => makeCharacter(
  9556. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  9557. {
  9558. front: {
  9559. height: math.unit(6, "feet"),
  9560. weight: math.unit(103, "lb"),
  9561. name: "Front",
  9562. image: {
  9563. source: "./media/characters/abbott-absol/front.svg",
  9564. extra: 2010 / 1842
  9565. }
  9566. },
  9567. },
  9568. [
  9569. {
  9570. name: "Megamicro",
  9571. height: math.unit(0.1, "mm")
  9572. },
  9573. {
  9574. name: "Micro",
  9575. height: math.unit(1, "inch")
  9576. },
  9577. {
  9578. name: "Normal",
  9579. height: math.unit(6, "feet"),
  9580. default: true
  9581. },
  9582. ]
  9583. ))
  9584. characterMakers.push(() => makeCharacter(
  9585. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  9586. {
  9587. front: {
  9588. height: math.unit(6, "feet"),
  9589. weight: math.unit(264, "lb"),
  9590. name: "Front",
  9591. image: {
  9592. source: "./media/characters/hector/front.svg",
  9593. extra: 2280 / 2130,
  9594. bottom: 0.07
  9595. }
  9596. },
  9597. },
  9598. [
  9599. {
  9600. name: "Normal",
  9601. height: math.unit(12.25, "foot"),
  9602. default: true
  9603. },
  9604. {
  9605. name: "Macro",
  9606. height: math.unit(160, "feet")
  9607. },
  9608. ]
  9609. ))
  9610. characterMakers.push(() => makeCharacter(
  9611. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  9612. {
  9613. front: {
  9614. height: math.unit(6, "feet"),
  9615. weight: math.unit(150, "lb"),
  9616. name: "Front",
  9617. image: {
  9618. source: "./media/characters/sal/front.svg",
  9619. extra: 1846 / 1699,
  9620. bottom: 0.04
  9621. }
  9622. },
  9623. },
  9624. [
  9625. {
  9626. name: "Megamacro",
  9627. height: math.unit(10, "miles"),
  9628. default: true
  9629. },
  9630. ]
  9631. ))
  9632. characterMakers.push(() => makeCharacter(
  9633. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  9634. {
  9635. front: {
  9636. height: math.unit(3, "meters"),
  9637. weight: math.unit(450, "kg"),
  9638. name: "front",
  9639. image: {
  9640. source: "./media/characters/ranger/front.svg",
  9641. extra: 2401 / 2243,
  9642. bottom: 0.05
  9643. }
  9644. },
  9645. },
  9646. [
  9647. {
  9648. name: "Normal",
  9649. height: math.unit(3, "meters"),
  9650. default: true
  9651. },
  9652. ]
  9653. ))
  9654. characterMakers.push(() => makeCharacter(
  9655. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  9656. {
  9657. front: {
  9658. height: math.unit(14, "feet"),
  9659. weight: math.unit(800, "kg"),
  9660. name: "Front",
  9661. image: {
  9662. source: "./media/characters/theresa/front.svg",
  9663. extra: 3575 / 3346,
  9664. bottom: 0.03
  9665. }
  9666. },
  9667. },
  9668. [
  9669. {
  9670. name: "Normal",
  9671. height: math.unit(14, "feet"),
  9672. default: true
  9673. },
  9674. ]
  9675. ))
  9676. characterMakers.push(() => makeCharacter(
  9677. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  9678. {
  9679. front: {
  9680. height: math.unit(6, "feet"),
  9681. weight: math.unit(3, "kg"),
  9682. name: "Front",
  9683. image: {
  9684. source: "./media/characters/ine/front.svg",
  9685. extra: 678 / 539,
  9686. bottom: 0.023
  9687. }
  9688. },
  9689. },
  9690. [
  9691. {
  9692. name: "Normal",
  9693. height: math.unit(2.265, "feet"),
  9694. default: true
  9695. },
  9696. ]
  9697. ))
  9698. characterMakers.push(() => makeCharacter(
  9699. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  9700. {
  9701. front: {
  9702. height: math.unit(5, "feet"),
  9703. weight: math.unit(30, "kg"),
  9704. name: "Front",
  9705. image: {
  9706. source: "./media/characters/vial/front.svg",
  9707. extra: 1365 / 1277,
  9708. bottom: 0.04
  9709. }
  9710. },
  9711. },
  9712. [
  9713. {
  9714. name: "Normal",
  9715. height: math.unit(5, "feet"),
  9716. default: true
  9717. },
  9718. ]
  9719. ))
  9720. characterMakers.push(() => makeCharacter(
  9721. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  9722. {
  9723. side: {
  9724. height: math.unit(3.4, "meters"),
  9725. weight: math.unit(1000, "lb"),
  9726. name: "Side",
  9727. image: {
  9728. source: "./media/characters/rovoska/side.svg",
  9729. extra: 4403 / 1515
  9730. }
  9731. },
  9732. },
  9733. [
  9734. {
  9735. name: "Normal",
  9736. height: math.unit(3.4, "meters"),
  9737. default: true
  9738. },
  9739. ]
  9740. ))
  9741. characterMakers.push(() => makeCharacter(
  9742. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  9743. {
  9744. front: {
  9745. height: math.unit(8, "feet"),
  9746. weight: math.unit(315, "lb"),
  9747. name: "Front",
  9748. image: {
  9749. source: "./media/characters/gunner-rotthbauer/front.svg"
  9750. }
  9751. },
  9752. back: {
  9753. height: math.unit(8, "feet"),
  9754. weight: math.unit(315, "lb"),
  9755. name: "Back",
  9756. image: {
  9757. source: "./media/characters/gunner-rotthbauer/back.svg"
  9758. }
  9759. },
  9760. },
  9761. [
  9762. {
  9763. name: "Micro",
  9764. height: math.unit(3.5, "inches")
  9765. },
  9766. {
  9767. name: "Normal",
  9768. height: math.unit(8, "feet"),
  9769. default: true
  9770. },
  9771. {
  9772. name: "Macro",
  9773. height: math.unit(250, "feet")
  9774. },
  9775. {
  9776. name: "Megamacro",
  9777. height: math.unit(1, "AU")
  9778. },
  9779. ]
  9780. ))
  9781. characterMakers.push(() => makeCharacter(
  9782. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  9783. {
  9784. front: {
  9785. height: math.unit(5 + 5 / 12, "feet"),
  9786. weight: math.unit(140, "lb"),
  9787. name: "Front",
  9788. image: {
  9789. source: "./media/characters/allatia/front.svg",
  9790. extra: 1227 / 1180,
  9791. bottom: 0.027
  9792. }
  9793. },
  9794. },
  9795. [
  9796. {
  9797. name: "Normal",
  9798. height: math.unit(5 + 5 / 12, "feet")
  9799. },
  9800. {
  9801. name: "Macro",
  9802. height: math.unit(250, "feet"),
  9803. default: true
  9804. },
  9805. {
  9806. name: "Megamacro",
  9807. height: math.unit(8, "miles")
  9808. }
  9809. ]
  9810. ))
  9811. characterMakers.push(() => makeCharacter(
  9812. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  9813. {
  9814. front: {
  9815. height: math.unit(6, "feet"),
  9816. weight: math.unit(120, "lb"),
  9817. name: "Front",
  9818. image: {
  9819. source: "./media/characters/tene/front.svg",
  9820. extra: 1728 / 1578,
  9821. bottom: 0.022
  9822. }
  9823. },
  9824. stomping: {
  9825. height: math.unit(2.025, "meters"),
  9826. weight: math.unit(120, "lb"),
  9827. name: "Stomping",
  9828. image: {
  9829. source: "./media/characters/tene/stomping.svg",
  9830. extra: 938 / 873,
  9831. bottom: 0.01
  9832. }
  9833. },
  9834. sitting: {
  9835. height: math.unit(1, "meter"),
  9836. weight: math.unit(120, "lb"),
  9837. name: "Sitting",
  9838. image: {
  9839. source: "./media/characters/tene/sitting.svg",
  9840. extra: 437 / 415,
  9841. bottom: 0.1
  9842. }
  9843. },
  9844. feral: {
  9845. height: math.unit(3.9, "feet"),
  9846. weight: math.unit(250, "lb"),
  9847. name: "Feral",
  9848. image: {
  9849. source: "./media/characters/tene/feral.svg",
  9850. extra: 717 / 458,
  9851. bottom: 0.179
  9852. }
  9853. },
  9854. },
  9855. [
  9856. {
  9857. name: "Normal",
  9858. height: math.unit(6, "feet")
  9859. },
  9860. {
  9861. name: "Macro",
  9862. height: math.unit(300, "feet"),
  9863. default: true
  9864. },
  9865. {
  9866. name: "Megamacro",
  9867. height: math.unit(5, "miles")
  9868. },
  9869. ]
  9870. ))
  9871. characterMakers.push(() => makeCharacter(
  9872. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  9873. {
  9874. side: {
  9875. height: math.unit(6, "feet"),
  9876. name: "Side",
  9877. image: {
  9878. source: "./media/characters/evander/side.svg",
  9879. extra: 877 / 477
  9880. }
  9881. },
  9882. },
  9883. [
  9884. {
  9885. name: "Normal",
  9886. height: math.unit(0.83, "meters"),
  9887. default: true
  9888. },
  9889. ]
  9890. ))
  9891. characterMakers.push(() => makeCharacter(
  9892. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  9893. {
  9894. front: {
  9895. height: math.unit(12, "feet"),
  9896. weight: math.unit(1000, "lb"),
  9897. name: "Front",
  9898. image: {
  9899. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  9900. extra: 1762 / 1611
  9901. }
  9902. },
  9903. back: {
  9904. height: math.unit(12, "feet"),
  9905. weight: math.unit(1000, "lb"),
  9906. name: "Back",
  9907. image: {
  9908. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  9909. extra: 1762 / 1611
  9910. }
  9911. },
  9912. },
  9913. [
  9914. {
  9915. name: "Normal",
  9916. height: math.unit(12, "feet"),
  9917. default: true
  9918. },
  9919. {
  9920. name: "Kaiju",
  9921. height: math.unit(150, "feet")
  9922. },
  9923. ]
  9924. ))
  9925. characterMakers.push(() => makeCharacter(
  9926. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  9927. {
  9928. front: {
  9929. height: math.unit(6, "feet"),
  9930. weight: math.unit(150, "lb"),
  9931. name: "Front",
  9932. image: {
  9933. source: "./media/characters/zero-alurus/front.svg"
  9934. }
  9935. },
  9936. back: {
  9937. height: math.unit(6, "feet"),
  9938. weight: math.unit(150, "lb"),
  9939. name: "Back",
  9940. image: {
  9941. source: "./media/characters/zero-alurus/back.svg"
  9942. }
  9943. },
  9944. },
  9945. [
  9946. {
  9947. name: "Normal",
  9948. height: math.unit(5 + 10 / 12, "feet")
  9949. },
  9950. {
  9951. name: "Macro",
  9952. height: math.unit(60, "feet"),
  9953. default: true
  9954. },
  9955. {
  9956. name: "Macro+",
  9957. height: math.unit(450, "feet")
  9958. },
  9959. ]
  9960. ))
  9961. characterMakers.push(() => makeCharacter(
  9962. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  9963. {
  9964. front: {
  9965. height: math.unit(6, "feet"),
  9966. weight: math.unit(200, "lb"),
  9967. name: "Front",
  9968. image: {
  9969. source: "./media/characters/mega-shi/front.svg",
  9970. extra: 1279 / 1250,
  9971. bottom: 0.02
  9972. }
  9973. },
  9974. back: {
  9975. height: math.unit(6, "feet"),
  9976. weight: math.unit(200, "lb"),
  9977. name: "Back",
  9978. image: {
  9979. source: "./media/characters/mega-shi/back.svg",
  9980. extra: 1279 / 1250,
  9981. bottom: 0.02
  9982. }
  9983. },
  9984. },
  9985. [
  9986. {
  9987. name: "Micro",
  9988. height: math.unit(16 + 6 / 12, "feet")
  9989. },
  9990. {
  9991. name: "Third Dimension",
  9992. height: math.unit(40, "meters")
  9993. },
  9994. {
  9995. name: "Normal",
  9996. height: math.unit(660, "feet"),
  9997. default: true
  9998. },
  9999. {
  10000. name: "Megamacro",
  10001. height: math.unit(10, "miles")
  10002. },
  10003. {
  10004. name: "Planetary Launch",
  10005. height: math.unit(500, "miles")
  10006. },
  10007. {
  10008. name: "Interstellar",
  10009. height: math.unit(1e9, "miles")
  10010. },
  10011. {
  10012. name: "Leaving the Universe",
  10013. height: math.unit(1, "gigaparsec")
  10014. },
  10015. {
  10016. name: "Travelling Universes",
  10017. height: math.unit(30e15, "parsecs")
  10018. },
  10019. ]
  10020. ))
  10021. characterMakers.push(() => makeCharacter(
  10022. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  10023. {
  10024. front: {
  10025. height: math.unit(6, "feet"),
  10026. weight: math.unit(150, "lb"),
  10027. name: "Front",
  10028. image: {
  10029. source: "./media/characters/odyssey/front.svg",
  10030. extra: 1782 / 1582,
  10031. bottom: 0.01
  10032. }
  10033. },
  10034. side: {
  10035. height: math.unit(5.7, "feet"),
  10036. weight: math.unit(140, "lb"),
  10037. name: "Side",
  10038. image: {
  10039. source: "./media/characters/odyssey/side.svg",
  10040. extra: 6462 / 5700
  10041. }
  10042. },
  10043. },
  10044. [
  10045. {
  10046. name: "Normal",
  10047. height: math.unit(5 + 4 / 12, "feet")
  10048. },
  10049. {
  10050. name: "Macro",
  10051. height: math.unit(1, "km")
  10052. },
  10053. {
  10054. name: "Megamacro",
  10055. height: math.unit(3000, "km")
  10056. },
  10057. {
  10058. name: "Gigamacro",
  10059. height: math.unit(1, "AU"),
  10060. default: true
  10061. },
  10062. {
  10063. name: "Omniversal",
  10064. height: math.unit(100e14, "lightyears")
  10065. },
  10066. ]
  10067. ))
  10068. characterMakers.push(() => makeCharacter(
  10069. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  10070. {
  10071. front: {
  10072. height: math.unit(6, "feet"),
  10073. weight: math.unit(300, "lb"),
  10074. name: "Front",
  10075. image: {
  10076. source: "./media/characters/mekuto/front.svg",
  10077. extra: 921 / 832,
  10078. bottom: 0.03
  10079. }
  10080. },
  10081. hand: {
  10082. height: math.unit(6 / 10.24, "feet"),
  10083. name: "Hand",
  10084. image: {
  10085. source: "./media/characters/mekuto/hand.svg"
  10086. }
  10087. },
  10088. foot: {
  10089. height: math.unit(6 / 5.05, "feet"),
  10090. name: "Foot",
  10091. image: {
  10092. source: "./media/characters/mekuto/foot.svg"
  10093. }
  10094. },
  10095. },
  10096. [
  10097. {
  10098. name: "Minimicro",
  10099. height: math.unit(0.2, "inches")
  10100. },
  10101. {
  10102. name: "Micro",
  10103. height: math.unit(1.5, "inches")
  10104. },
  10105. {
  10106. name: "Normal",
  10107. height: math.unit(5 + 11 / 12, "feet"),
  10108. default: true
  10109. },
  10110. {
  10111. name: "Minimacro",
  10112. height: math.unit(17 + 9 / 12, "feet")
  10113. },
  10114. {
  10115. name: "Macro",
  10116. height: math.unit(177.5, "feet")
  10117. },
  10118. {
  10119. name: "Megamacro",
  10120. height: math.unit(152, "miles")
  10121. },
  10122. ]
  10123. ))
  10124. characterMakers.push(() => makeCharacter(
  10125. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  10126. {
  10127. front: {
  10128. height: math.unit(6.5, "inches"),
  10129. weight: math.unit(13, "oz"),
  10130. name: "Front",
  10131. image: {
  10132. source: "./media/characters/dafydd-tomos/front.svg",
  10133. extra: 2990 / 2603,
  10134. bottom: 0.03
  10135. }
  10136. },
  10137. },
  10138. [
  10139. {
  10140. name: "Micro",
  10141. height: math.unit(6.5, "inches"),
  10142. default: true
  10143. },
  10144. ]
  10145. ))
  10146. characterMakers.push(() => makeCharacter(
  10147. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  10148. {
  10149. front: {
  10150. height: math.unit(6, "feet"),
  10151. weight: math.unit(150, "lb"),
  10152. name: "Front",
  10153. image: {
  10154. source: "./media/characters/splinter/front.svg",
  10155. extra: 2990 / 2882,
  10156. bottom: 0.04
  10157. }
  10158. },
  10159. back: {
  10160. height: math.unit(6, "feet"),
  10161. weight: math.unit(150, "lb"),
  10162. name: "Back",
  10163. image: {
  10164. source: "./media/characters/splinter/back.svg",
  10165. extra: 2990 / 2882,
  10166. bottom: 0.04
  10167. }
  10168. },
  10169. },
  10170. [
  10171. {
  10172. name: "Normal",
  10173. height: math.unit(6, "feet")
  10174. },
  10175. {
  10176. name: "Macro",
  10177. height: math.unit(230, "meters"),
  10178. default: true
  10179. },
  10180. ]
  10181. ))
  10182. characterMakers.push(() => makeCharacter(
  10183. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  10184. {
  10185. front: {
  10186. height: math.unit(4 + 10 / 12, "feet"),
  10187. weight: math.unit(480, "lb"),
  10188. name: "Front",
  10189. image: {
  10190. source: "./media/characters/snow-gabumon/front.svg",
  10191. extra: 1140 / 963,
  10192. bottom: 0.058
  10193. }
  10194. },
  10195. back: {
  10196. height: math.unit(4 + 10 / 12, "feet"),
  10197. weight: math.unit(480, "lb"),
  10198. name: "Back",
  10199. image: {
  10200. source: "./media/characters/snow-gabumon/back.svg",
  10201. extra: 1115 / 962,
  10202. bottom: 0.041
  10203. }
  10204. },
  10205. frontUndresed: {
  10206. height: math.unit(4 + 10 / 12, "feet"),
  10207. weight: math.unit(480, "lb"),
  10208. name: "Front (Undressed)",
  10209. image: {
  10210. source: "./media/characters/snow-gabumon/front-undressed.svg",
  10211. extra: 1061 / 960,
  10212. bottom: 0.045
  10213. }
  10214. },
  10215. },
  10216. [
  10217. {
  10218. name: "Micro",
  10219. height: math.unit(1, "inch")
  10220. },
  10221. {
  10222. name: "Normal",
  10223. height: math.unit(4 + 10 / 12, "feet"),
  10224. default: true
  10225. },
  10226. {
  10227. name: "Macro",
  10228. height: math.unit(200, "feet")
  10229. },
  10230. {
  10231. name: "Megamacro",
  10232. height: math.unit(120, "miles")
  10233. },
  10234. {
  10235. name: "Gigamacro",
  10236. height: math.unit(9800, "miles")
  10237. },
  10238. ]
  10239. ))
  10240. characterMakers.push(() => makeCharacter(
  10241. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  10242. {
  10243. front: {
  10244. height: math.unit(1.7, "meters"),
  10245. weight: math.unit(140, "lb"),
  10246. name: "Front",
  10247. image: {
  10248. source: "./media/characters/moody/front.svg",
  10249. extra: 3226 / 3007,
  10250. bottom: 0.087
  10251. }
  10252. },
  10253. },
  10254. [
  10255. {
  10256. name: "Micro",
  10257. height: math.unit(1, "mm")
  10258. },
  10259. {
  10260. name: "Normal",
  10261. height: math.unit(1.7, "meters"),
  10262. default: true
  10263. },
  10264. {
  10265. name: "Macro",
  10266. height: math.unit(80, "meters")
  10267. },
  10268. {
  10269. name: "Macro+",
  10270. height: math.unit(500, "meters")
  10271. },
  10272. ]
  10273. ))
  10274. characterMakers.push(() => makeCharacter(
  10275. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  10276. {
  10277. front: {
  10278. height: math.unit(6, "feet"),
  10279. weight: math.unit(150, "lb"),
  10280. name: "Front",
  10281. image: {
  10282. source: "./media/characters/zyas/front.svg",
  10283. extra: 1180 / 1120,
  10284. bottom: 0.045
  10285. }
  10286. },
  10287. },
  10288. [
  10289. {
  10290. name: "Normal",
  10291. height: math.unit(10, "feet"),
  10292. default: true
  10293. },
  10294. {
  10295. name: "Macro",
  10296. height: math.unit(500, "feet")
  10297. },
  10298. {
  10299. name: "Megamacro",
  10300. height: math.unit(5, "miles")
  10301. },
  10302. {
  10303. name: "Teramacro",
  10304. height: math.unit(150000, "miles")
  10305. },
  10306. ]
  10307. ))
  10308. characterMakers.push(() => makeCharacter(
  10309. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  10310. {
  10311. front: {
  10312. height: math.unit(6, "feet"),
  10313. weight: math.unit(150, "lb"),
  10314. name: "Front",
  10315. image: {
  10316. source: "./media/characters/cuon/front.svg",
  10317. extra: 1390 / 1320,
  10318. bottom: 0.008
  10319. }
  10320. },
  10321. },
  10322. [
  10323. {
  10324. name: "Micro",
  10325. height: math.unit(3, "inches")
  10326. },
  10327. {
  10328. name: "Normal",
  10329. height: math.unit(18 + 9 / 12, "feet"),
  10330. default: true
  10331. },
  10332. {
  10333. name: "Macro",
  10334. height: math.unit(360, "feet")
  10335. },
  10336. {
  10337. name: "Megamacro",
  10338. height: math.unit(360, "miles")
  10339. },
  10340. ]
  10341. ))
  10342. characterMakers.push(() => makeCharacter(
  10343. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  10344. {
  10345. front: {
  10346. height: math.unit(2.4, "meters"),
  10347. weight: math.unit(70, "kg"),
  10348. name: "Front",
  10349. image: {
  10350. source: "./media/characters/nyanuxk/front.svg",
  10351. extra: 1172 / 1084,
  10352. bottom: 0.065
  10353. }
  10354. },
  10355. side: {
  10356. height: math.unit(2.4, "meters"),
  10357. weight: math.unit(70, "kg"),
  10358. name: "Side",
  10359. image: {
  10360. source: "./media/characters/nyanuxk/side.svg",
  10361. extra: 1190 / 1132,
  10362. bottom: 0.007
  10363. }
  10364. },
  10365. back: {
  10366. height: math.unit(2.4, "meters"),
  10367. weight: math.unit(70, "kg"),
  10368. name: "Back",
  10369. image: {
  10370. source: "./media/characters/nyanuxk/back.svg",
  10371. extra: 1200 / 1141,
  10372. bottom: 0.015
  10373. }
  10374. },
  10375. foot: {
  10376. height: math.unit(0.52, "meters"),
  10377. name: "Foot",
  10378. image: {
  10379. source: "./media/characters/nyanuxk/foot.svg"
  10380. }
  10381. },
  10382. },
  10383. [
  10384. {
  10385. name: "Micro",
  10386. height: math.unit(2, "cm")
  10387. },
  10388. {
  10389. name: "Normal",
  10390. height: math.unit(2.4, "meters"),
  10391. default: true
  10392. },
  10393. {
  10394. name: "Smaller Macro",
  10395. height: math.unit(120, "meters")
  10396. },
  10397. {
  10398. name: "Bigger Macro",
  10399. height: math.unit(1.2, "km")
  10400. },
  10401. {
  10402. name: "Megamacro",
  10403. height: math.unit(15, "kilometers")
  10404. },
  10405. {
  10406. name: "Gigamacro",
  10407. height: math.unit(2000, "km")
  10408. },
  10409. {
  10410. name: "Teramacro",
  10411. height: math.unit(500000, "km")
  10412. },
  10413. ]
  10414. ))
  10415. characterMakers.push(() => makeCharacter(
  10416. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  10417. {
  10418. side: {
  10419. height: math.unit(6, "feet"),
  10420. name: "Side",
  10421. image: {
  10422. source: "./media/characters/ailbhe/side.svg",
  10423. extra: 757 / 464,
  10424. bottom: 0.041
  10425. }
  10426. },
  10427. },
  10428. [
  10429. {
  10430. name: "Normal",
  10431. height: math.unit(1.07, "meters"),
  10432. default: true
  10433. },
  10434. ]
  10435. ))
  10436. characterMakers.push(() => makeCharacter(
  10437. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  10438. {
  10439. front: {
  10440. height: math.unit(6, "feet"),
  10441. weight: math.unit(120, "kg"),
  10442. name: "Front",
  10443. image: {
  10444. source: "./media/characters/zevulfius/front.svg",
  10445. extra: 965 / 903
  10446. }
  10447. },
  10448. side: {
  10449. height: math.unit(6, "feet"),
  10450. weight: math.unit(120, "kg"),
  10451. name: "Side",
  10452. image: {
  10453. source: "./media/characters/zevulfius/side.svg",
  10454. extra: 939 / 900
  10455. }
  10456. },
  10457. back: {
  10458. height: math.unit(6, "feet"),
  10459. weight: math.unit(120, "kg"),
  10460. name: "Back",
  10461. image: {
  10462. source: "./media/characters/zevulfius/back.svg",
  10463. extra: 918 / 854,
  10464. bottom: 0.005
  10465. }
  10466. },
  10467. foot: {
  10468. height: math.unit(6 / 3.72, "feet"),
  10469. name: "Foot",
  10470. image: {
  10471. source: "./media/characters/zevulfius/foot.svg"
  10472. }
  10473. },
  10474. },
  10475. [
  10476. {
  10477. name: "Macro",
  10478. height: math.unit(750, "meters")
  10479. },
  10480. {
  10481. name: "Megamacro",
  10482. height: math.unit(20, "km"),
  10483. default: true
  10484. },
  10485. {
  10486. name: "Gigamacro",
  10487. height: math.unit(2000, "km")
  10488. },
  10489. {
  10490. name: "Teramacro",
  10491. height: math.unit(250000, "km")
  10492. },
  10493. ]
  10494. ))
  10495. characterMakers.push(() => makeCharacter(
  10496. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  10497. {
  10498. front: {
  10499. height: math.unit(100, "feet"),
  10500. weight: math.unit(350, "kg"),
  10501. name: "Front",
  10502. image: {
  10503. source: "./media/characters/rikes/front.svg",
  10504. extra: 1565 / 1483,
  10505. bottom: 0.017
  10506. }
  10507. },
  10508. },
  10509. [
  10510. {
  10511. name: "Macro",
  10512. height: math.unit(100, "feet"),
  10513. default: true
  10514. },
  10515. ]
  10516. ))
  10517. characterMakers.push(() => makeCharacter(
  10518. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  10519. {
  10520. front: {
  10521. height: math.unit(8, "feet"),
  10522. weight: math.unit(356, "lb"),
  10523. name: "Front",
  10524. image: {
  10525. source: "./media/characters/adam-silver-mane/front.svg",
  10526. extra: 1036/937,
  10527. bottom: 63/1099
  10528. }
  10529. },
  10530. side: {
  10531. height: math.unit(8, "feet"),
  10532. weight: math.unit(356, "lb"),
  10533. name: "Side",
  10534. image: {
  10535. source: "./media/characters/adam-silver-mane/side.svg",
  10536. extra: 997/901,
  10537. bottom: 59/1056
  10538. }
  10539. },
  10540. frontNsfw: {
  10541. height: math.unit(8, "feet"),
  10542. weight: math.unit(356, "lb"),
  10543. name: "Front (NSFW)",
  10544. image: {
  10545. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  10546. extra: 1036/937,
  10547. bottom: 63/1099
  10548. }
  10549. },
  10550. sideNsfw: {
  10551. height: math.unit(8, "feet"),
  10552. weight: math.unit(356, "lb"),
  10553. name: "Side (NSFW)",
  10554. image: {
  10555. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  10556. extra: 997/901,
  10557. bottom: 59/1056
  10558. }
  10559. },
  10560. dick: {
  10561. height: math.unit(2.1, "feet"),
  10562. name: "Dick",
  10563. image: {
  10564. source: "./media/characters/adam-silver-mane/dick.svg"
  10565. }
  10566. },
  10567. taur: {
  10568. height: math.unit(16, "feet"),
  10569. weight: math.unit(1500, "kg"),
  10570. name: "Taur",
  10571. image: {
  10572. source: "./media/characters/adam-silver-mane/taur.svg",
  10573. extra: 1713 / 1571,
  10574. bottom: 0.01
  10575. }
  10576. },
  10577. },
  10578. [
  10579. {
  10580. name: "Normal",
  10581. height: math.unit(8, "feet")
  10582. },
  10583. {
  10584. name: "Minimacro",
  10585. height: math.unit(80, "feet")
  10586. },
  10587. {
  10588. name: "MDA",
  10589. height: math.unit(80, "meters")
  10590. },
  10591. {
  10592. name: "Macro",
  10593. height: math.unit(800, "feet"),
  10594. default: true
  10595. },
  10596. {
  10597. name: "Megamacro",
  10598. height: math.unit(8000, "feet")
  10599. },
  10600. {
  10601. name: "Gigamacro",
  10602. height: math.unit(800, "miles")
  10603. },
  10604. {
  10605. name: "Teramacro",
  10606. height: math.unit(80000, "miles")
  10607. },
  10608. {
  10609. name: "Celestial",
  10610. height: math.unit(8e6, "miles")
  10611. },
  10612. {
  10613. name: "Star Dragon",
  10614. height: math.unit(800000, "parsecs")
  10615. },
  10616. {
  10617. name: "Godly",
  10618. height: math.unit(800, "teraparsecs")
  10619. },
  10620. ]
  10621. ))
  10622. characterMakers.push(() => makeCharacter(
  10623. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  10624. {
  10625. front: {
  10626. height: math.unit(6, "feet"),
  10627. weight: math.unit(150, "lb"),
  10628. name: "Front",
  10629. image: {
  10630. source: "./media/characters/ky'owin/front.svg",
  10631. extra: 3888 / 3068,
  10632. bottom: 0.015
  10633. }
  10634. },
  10635. },
  10636. [
  10637. {
  10638. name: "Normal",
  10639. height: math.unit(6 + 8 / 12, "feet")
  10640. },
  10641. {
  10642. name: "Large",
  10643. height: math.unit(68, "feet")
  10644. },
  10645. {
  10646. name: "Macro",
  10647. height: math.unit(132, "feet")
  10648. },
  10649. {
  10650. name: "Macro+",
  10651. height: math.unit(340, "feet")
  10652. },
  10653. {
  10654. name: "Macro++",
  10655. height: math.unit(680, "feet"),
  10656. default: true
  10657. },
  10658. {
  10659. name: "Megamacro",
  10660. height: math.unit(1, "mile")
  10661. },
  10662. {
  10663. name: "Megamacro+",
  10664. height: math.unit(10, "miles")
  10665. },
  10666. ]
  10667. ))
  10668. characterMakers.push(() => makeCharacter(
  10669. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  10670. {
  10671. front: {
  10672. height: math.unit(4, "feet"),
  10673. weight: math.unit(50, "lb"),
  10674. name: "Front",
  10675. image: {
  10676. source: "./media/characters/mal/front.svg",
  10677. extra: 785 / 724,
  10678. bottom: 0.07
  10679. }
  10680. },
  10681. },
  10682. [
  10683. {
  10684. name: "Micro",
  10685. height: math.unit(4, "inches")
  10686. },
  10687. {
  10688. name: "Normal",
  10689. height: math.unit(4, "feet"),
  10690. default: true
  10691. },
  10692. {
  10693. name: "Macro",
  10694. height: math.unit(200, "feet")
  10695. },
  10696. ]
  10697. ))
  10698. characterMakers.push(() => makeCharacter(
  10699. { name: "Jordan Deware", species: ["otter"], 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/jordan-deware/front.svg",
  10707. extra: 1191 / 1012
  10708. }
  10709. },
  10710. },
  10711. [
  10712. {
  10713. name: "Nano",
  10714. height: math.unit(0.01, "mm")
  10715. },
  10716. {
  10717. name: "Minimicro",
  10718. height: math.unit(1, "mm")
  10719. },
  10720. {
  10721. name: "Micro",
  10722. height: math.unit(0.5, "inches")
  10723. },
  10724. {
  10725. name: "Normal",
  10726. height: math.unit(4, "feet"),
  10727. default: true
  10728. },
  10729. {
  10730. name: "Minimacro",
  10731. height: math.unit(40, "meters")
  10732. },
  10733. {
  10734. name: "Small Macro",
  10735. height: math.unit(400, "meters")
  10736. },
  10737. {
  10738. name: "Macro",
  10739. height: math.unit(4, "miles")
  10740. },
  10741. {
  10742. name: "Megamacro",
  10743. height: math.unit(40, "miles")
  10744. },
  10745. {
  10746. name: "Megamacro+",
  10747. height: math.unit(400, "miles")
  10748. },
  10749. {
  10750. name: "Gigamacro",
  10751. height: math.unit(400000, "miles")
  10752. },
  10753. ]
  10754. ))
  10755. characterMakers.push(() => makeCharacter(
  10756. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  10757. {
  10758. side: {
  10759. height: math.unit(6, "feet"),
  10760. weight: math.unit(150, "lb"),
  10761. name: "Side",
  10762. image: {
  10763. source: "./media/characters/kimiko/side.svg",
  10764. extra: 600 / 358
  10765. }
  10766. },
  10767. },
  10768. [
  10769. {
  10770. name: "Normal",
  10771. height: math.unit(15, "feet"),
  10772. default: true
  10773. },
  10774. {
  10775. name: "Macro",
  10776. height: math.unit(220, "feet")
  10777. },
  10778. {
  10779. name: "Macro+",
  10780. height: math.unit(1450, "feet")
  10781. },
  10782. {
  10783. name: "Megamacro",
  10784. height: math.unit(11500, "feet")
  10785. },
  10786. {
  10787. name: "Gigamacro",
  10788. height: math.unit(9500, "miles")
  10789. },
  10790. {
  10791. name: "Teramacro",
  10792. height: math.unit(2208005005, "miles")
  10793. },
  10794. {
  10795. name: "Examacro",
  10796. height: math.unit(2750, "parsecs")
  10797. },
  10798. {
  10799. name: "Zettamacro",
  10800. height: math.unit(101500, "parsecs")
  10801. },
  10802. ]
  10803. ))
  10804. characterMakers.push(() => makeCharacter(
  10805. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  10806. {
  10807. front: {
  10808. height: math.unit(6, "feet"),
  10809. weight: math.unit(70, "kg"),
  10810. name: "Front",
  10811. image: {
  10812. source: "./media/characters/andrew-sleepy/front.svg"
  10813. }
  10814. },
  10815. side: {
  10816. height: math.unit(6, "feet"),
  10817. weight: math.unit(70, "kg"),
  10818. name: "Side",
  10819. image: {
  10820. source: "./media/characters/andrew-sleepy/side.svg"
  10821. }
  10822. },
  10823. },
  10824. [
  10825. {
  10826. name: "Micro",
  10827. height: math.unit(1, "mm"),
  10828. default: true
  10829. },
  10830. ]
  10831. ))
  10832. characterMakers.push(() => makeCharacter(
  10833. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  10834. {
  10835. front: {
  10836. height: math.unit(6, "feet"),
  10837. weight: math.unit(150, "lb"),
  10838. name: "Front",
  10839. image: {
  10840. source: "./media/characters/judio/front.svg",
  10841. extra: 1258 / 1110
  10842. }
  10843. },
  10844. },
  10845. [
  10846. {
  10847. name: "Normal",
  10848. height: math.unit(5 + 6 / 12, "feet")
  10849. },
  10850. {
  10851. name: "Macro",
  10852. height: math.unit(1000, "feet"),
  10853. default: true
  10854. },
  10855. {
  10856. name: "Megamacro",
  10857. height: math.unit(10, "miles")
  10858. },
  10859. ]
  10860. ))
  10861. characterMakers.push(() => makeCharacter(
  10862. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  10863. {
  10864. front: {
  10865. height: math.unit(6, "feet"),
  10866. weight: math.unit(68, "kg"),
  10867. name: "Front",
  10868. image: {
  10869. source: "./media/characters/nomaxice/front.svg",
  10870. extra: 1498 / 1073,
  10871. bottom: 0.075
  10872. }
  10873. },
  10874. foot: {
  10875. height: math.unit(1.1, "feet"),
  10876. name: "Foot",
  10877. image: {
  10878. source: "./media/characters/nomaxice/foot.svg"
  10879. }
  10880. },
  10881. },
  10882. [
  10883. {
  10884. name: "Micro",
  10885. height: math.unit(8, "cm")
  10886. },
  10887. {
  10888. name: "Norm",
  10889. height: math.unit(1.82, "m")
  10890. },
  10891. {
  10892. name: "Norm+",
  10893. height: math.unit(8.8, "feet")
  10894. },
  10895. {
  10896. name: "Big",
  10897. height: math.unit(8, "meters"),
  10898. default: true
  10899. },
  10900. {
  10901. name: "Macro",
  10902. height: math.unit(18, "meters")
  10903. },
  10904. {
  10905. name: "Macro+",
  10906. height: math.unit(88, "meters")
  10907. },
  10908. ]
  10909. ))
  10910. characterMakers.push(() => makeCharacter(
  10911. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  10912. {
  10913. front: {
  10914. height: math.unit(12, "feet"),
  10915. weight: math.unit(1.5, "tons"),
  10916. name: "Front",
  10917. image: {
  10918. source: "./media/characters/dydros/front.svg",
  10919. extra: 863 / 800,
  10920. bottom: 0.015
  10921. }
  10922. },
  10923. back: {
  10924. height: math.unit(12, "feet"),
  10925. weight: math.unit(1.5, "tons"),
  10926. name: "Back",
  10927. image: {
  10928. source: "./media/characters/dydros/back.svg",
  10929. extra: 900 / 843,
  10930. bottom: 0.005
  10931. }
  10932. },
  10933. },
  10934. [
  10935. {
  10936. name: "Normal",
  10937. height: math.unit(12, "feet"),
  10938. default: true
  10939. },
  10940. ]
  10941. ))
  10942. characterMakers.push(() => makeCharacter(
  10943. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  10944. {
  10945. front: {
  10946. height: math.unit(6, "feet"),
  10947. weight: math.unit(100, "kg"),
  10948. name: "Front",
  10949. image: {
  10950. source: "./media/characters/riggi/front.svg",
  10951. extra: 5787 / 5303
  10952. }
  10953. },
  10954. hyper: {
  10955. height: math.unit(6 * 5 / 3, "feet"),
  10956. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  10957. name: "Hyper",
  10958. image: {
  10959. source: "./media/characters/riggi/hyper.svg",
  10960. extra: 3595 / 3485
  10961. }
  10962. },
  10963. },
  10964. [
  10965. {
  10966. name: "Small Macro",
  10967. height: math.unit(50, "feet")
  10968. },
  10969. {
  10970. name: "Default",
  10971. height: math.unit(200, "feet"),
  10972. default: true
  10973. },
  10974. {
  10975. name: "Loom",
  10976. height: math.unit(10000, "feet")
  10977. },
  10978. {
  10979. name: "Cruising Altitude",
  10980. height: math.unit(30000, "feet")
  10981. },
  10982. {
  10983. name: "Megamacro",
  10984. height: math.unit(100, "miles")
  10985. },
  10986. {
  10987. name: "Continent Sized",
  10988. height: math.unit(2800, "miles")
  10989. },
  10990. {
  10991. name: "Earth Sized",
  10992. height: math.unit(8000, "miles")
  10993. },
  10994. ]
  10995. ))
  10996. characterMakers.push(() => makeCharacter(
  10997. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  10998. {
  10999. front: {
  11000. height: math.unit(6, "feet"),
  11001. weight: math.unit(250, "lb"),
  11002. name: "Front",
  11003. image: {
  11004. source: "./media/characters/alexi/front.svg",
  11005. extra: 3483 / 3291,
  11006. bottom: 0.04
  11007. }
  11008. },
  11009. back: {
  11010. height: math.unit(6, "feet"),
  11011. weight: math.unit(250, "lb"),
  11012. name: "Back",
  11013. image: {
  11014. source: "./media/characters/alexi/back.svg",
  11015. extra: 3533 / 3356,
  11016. bottom: 0.021
  11017. }
  11018. },
  11019. frontTransforming: {
  11020. height: math.unit(8.58, "feet"),
  11021. weight: math.unit(1300, "lb"),
  11022. name: "Transforming",
  11023. image: {
  11024. source: "./media/characters/alexi/front-transforming.svg",
  11025. extra: 437 / 409,
  11026. bottom: 19 / 458.66
  11027. }
  11028. },
  11029. frontTransformed: {
  11030. height: math.unit(12.5, "feet"),
  11031. weight: math.unit(4000, "lb"),
  11032. name: "Transformed",
  11033. image: {
  11034. source: "./media/characters/alexi/front-transformed.svg",
  11035. extra: 639 / 614,
  11036. bottom: 30.55 / 671
  11037. }
  11038. },
  11039. },
  11040. [
  11041. {
  11042. name: "Normal",
  11043. height: math.unit(14, "feet"),
  11044. default: true
  11045. },
  11046. {
  11047. name: "Minimacro",
  11048. height: math.unit(30, "meters")
  11049. },
  11050. {
  11051. name: "Macro",
  11052. height: math.unit(500, "meters")
  11053. },
  11054. {
  11055. name: "Megamacro",
  11056. height: math.unit(9000, "km")
  11057. },
  11058. {
  11059. name: "Teramacro",
  11060. height: math.unit(384000, "km")
  11061. },
  11062. ]
  11063. ))
  11064. characterMakers.push(() => makeCharacter(
  11065. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  11066. {
  11067. front: {
  11068. height: math.unit(6, "feet"),
  11069. weight: math.unit(150, "lb"),
  11070. name: "Front",
  11071. image: {
  11072. source: "./media/characters/kayroo/front.svg",
  11073. extra: 1153 / 1038,
  11074. bottom: 0.06
  11075. }
  11076. },
  11077. foot: {
  11078. height: math.unit(6, "feet"),
  11079. weight: math.unit(150, "lb"),
  11080. name: "Foot",
  11081. image: {
  11082. source: "./media/characters/kayroo/foot.svg"
  11083. }
  11084. },
  11085. },
  11086. [
  11087. {
  11088. name: "Normal",
  11089. height: math.unit(8, "feet"),
  11090. default: true
  11091. },
  11092. {
  11093. name: "Minimacro",
  11094. height: math.unit(250, "feet")
  11095. },
  11096. {
  11097. name: "Macro",
  11098. height: math.unit(2800, "feet")
  11099. },
  11100. {
  11101. name: "Megamacro",
  11102. height: math.unit(5200, "feet")
  11103. },
  11104. {
  11105. name: "Gigamacro",
  11106. height: math.unit(27000, "feet")
  11107. },
  11108. {
  11109. name: "Omega",
  11110. height: math.unit(45000, "feet")
  11111. },
  11112. ]
  11113. ))
  11114. characterMakers.push(() => makeCharacter(
  11115. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  11116. {
  11117. front: {
  11118. height: math.unit(18, "feet"),
  11119. weight: math.unit(5800, "lb"),
  11120. name: "Front",
  11121. image: {
  11122. source: "./media/characters/rhys/front.svg",
  11123. extra: 3386 / 3090,
  11124. bottom: 0.07
  11125. }
  11126. },
  11127. },
  11128. [
  11129. {
  11130. name: "Normal",
  11131. height: math.unit(18, "feet"),
  11132. default: true
  11133. },
  11134. {
  11135. name: "Working Size",
  11136. height: math.unit(200, "feet")
  11137. },
  11138. {
  11139. name: "Demolition Size",
  11140. height: math.unit(2000, "feet")
  11141. },
  11142. {
  11143. name: "Maximum Licensed Size",
  11144. height: math.unit(5, "miles")
  11145. },
  11146. {
  11147. name: "Maximum Observed Size",
  11148. height: math.unit(10, "yottameters")
  11149. },
  11150. ]
  11151. ))
  11152. characterMakers.push(() => makeCharacter(
  11153. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  11154. {
  11155. front: {
  11156. height: math.unit(6, "feet"),
  11157. weight: math.unit(250, "lb"),
  11158. name: "Front",
  11159. image: {
  11160. source: "./media/characters/toto/front.svg",
  11161. extra: 527 / 479,
  11162. bottom: 0.05
  11163. }
  11164. },
  11165. },
  11166. [
  11167. {
  11168. name: "Micro",
  11169. height: math.unit(3, "feet")
  11170. },
  11171. {
  11172. name: "Normal",
  11173. height: math.unit(10, "feet")
  11174. },
  11175. {
  11176. name: "Macro",
  11177. height: math.unit(150, "feet"),
  11178. default: true
  11179. },
  11180. {
  11181. name: "Megamacro",
  11182. height: math.unit(1200, "feet")
  11183. },
  11184. ]
  11185. ))
  11186. characterMakers.push(() => makeCharacter(
  11187. { name: "King", species: ["lion"], tags: ["anthro"] },
  11188. {
  11189. back: {
  11190. height: math.unit(6, "feet"),
  11191. weight: math.unit(150, "lb"),
  11192. name: "Back",
  11193. image: {
  11194. source: "./media/characters/king/back.svg"
  11195. }
  11196. },
  11197. },
  11198. [
  11199. {
  11200. name: "Micro",
  11201. height: math.unit(2, "inches")
  11202. },
  11203. {
  11204. name: "Normal",
  11205. height: math.unit(8, "feet")
  11206. },
  11207. {
  11208. name: "Macro",
  11209. height: math.unit(200, "feet"),
  11210. default: true
  11211. },
  11212. {
  11213. name: "Megamacro",
  11214. height: math.unit(50, "miles")
  11215. },
  11216. ]
  11217. ))
  11218. characterMakers.push(() => makeCharacter(
  11219. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  11220. {
  11221. front: {
  11222. height: math.unit(11, "feet"),
  11223. weight: math.unit(1400, "lb"),
  11224. name: "Front",
  11225. image: {
  11226. source: "./media/characters/cordite/front.svg",
  11227. extra: 1919/1827,
  11228. bottom: 40/1959
  11229. }
  11230. },
  11231. side: {
  11232. height: math.unit(11, "feet"),
  11233. weight: math.unit(1400, "lb"),
  11234. name: "Side",
  11235. image: {
  11236. source: "./media/characters/cordite/side.svg",
  11237. extra: 1908/1793,
  11238. bottom: 38/1946
  11239. }
  11240. },
  11241. back: {
  11242. height: math.unit(11, "feet"),
  11243. weight: math.unit(1400, "lb"),
  11244. name: "Back",
  11245. image: {
  11246. source: "./media/characters/cordite/back.svg",
  11247. extra: 1938/1837,
  11248. bottom: 10/1948
  11249. }
  11250. },
  11251. feral: {
  11252. height: math.unit(2, "feet"),
  11253. weight: math.unit(90, "lb"),
  11254. name: "Feral",
  11255. image: {
  11256. source: "./media/characters/cordite/feral.svg",
  11257. extra: 1260 / 755,
  11258. bottom: 0.05
  11259. }
  11260. },
  11261. },
  11262. [
  11263. {
  11264. name: "Normal",
  11265. height: math.unit(11, "feet"),
  11266. default: true
  11267. },
  11268. ]
  11269. ))
  11270. characterMakers.push(() => makeCharacter(
  11271. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  11272. {
  11273. front: {
  11274. height: math.unit(6, "feet"),
  11275. weight: math.unit(150, "lb"),
  11276. name: "Front",
  11277. image: {
  11278. source: "./media/characters/pianostrong/front.svg",
  11279. extra: 6577 / 6254,
  11280. bottom: 0.02
  11281. }
  11282. },
  11283. side: {
  11284. height: math.unit(6, "feet"),
  11285. weight: math.unit(150, "lb"),
  11286. name: "Side",
  11287. image: {
  11288. source: "./media/characters/pianostrong/side.svg",
  11289. extra: 6106 / 5730
  11290. }
  11291. },
  11292. back: {
  11293. height: math.unit(6, "feet"),
  11294. weight: math.unit(150, "lb"),
  11295. name: "Back",
  11296. image: {
  11297. source: "./media/characters/pianostrong/back.svg",
  11298. extra: 6085 / 5733,
  11299. bottom: 0.01
  11300. }
  11301. },
  11302. },
  11303. [
  11304. {
  11305. name: "Macro",
  11306. height: math.unit(100, "feet")
  11307. },
  11308. {
  11309. name: "Macro+",
  11310. height: math.unit(300, "feet"),
  11311. default: true
  11312. },
  11313. {
  11314. name: "Macro++",
  11315. height: math.unit(1000, "feet")
  11316. },
  11317. ]
  11318. ))
  11319. characterMakers.push(() => makeCharacter(
  11320. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  11321. {
  11322. front: {
  11323. height: math.unit(6, "feet"),
  11324. weight: math.unit(150, "lb"),
  11325. name: "Front",
  11326. image: {
  11327. source: "./media/characters/kona/front.svg",
  11328. extra: 2960 / 2629,
  11329. bottom: 0.005
  11330. }
  11331. },
  11332. },
  11333. [
  11334. {
  11335. name: "Normal",
  11336. height: math.unit(11 + 8 / 12, "feet")
  11337. },
  11338. {
  11339. name: "Macro",
  11340. height: math.unit(850, "feet"),
  11341. default: true
  11342. },
  11343. {
  11344. name: "Macro+",
  11345. height: math.unit(1.5, "km"),
  11346. default: true
  11347. },
  11348. {
  11349. name: "Megamacro",
  11350. height: math.unit(80, "miles")
  11351. },
  11352. {
  11353. name: "Gigamacro",
  11354. height: math.unit(3500, "miles")
  11355. },
  11356. ]
  11357. ))
  11358. characterMakers.push(() => makeCharacter(
  11359. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  11360. {
  11361. side: {
  11362. height: math.unit(1.9, "meters"),
  11363. weight: math.unit(326, "kg"),
  11364. name: "Side",
  11365. image: {
  11366. source: "./media/characters/levi/side.svg",
  11367. extra: 1704 / 1334,
  11368. bottom: 0.02
  11369. }
  11370. },
  11371. },
  11372. [
  11373. {
  11374. name: "Normal",
  11375. height: math.unit(1.9, "meters"),
  11376. default: true
  11377. },
  11378. {
  11379. name: "Macro",
  11380. height: math.unit(20, "meters")
  11381. },
  11382. {
  11383. name: "Macro+",
  11384. height: math.unit(200, "meters")
  11385. },
  11386. {
  11387. name: "Megamacro",
  11388. height: math.unit(2, "km")
  11389. },
  11390. {
  11391. name: "Megamacro+",
  11392. height: math.unit(20, "km")
  11393. },
  11394. {
  11395. name: "Gigamacro",
  11396. height: math.unit(2500, "km")
  11397. },
  11398. {
  11399. name: "Gigamacro+",
  11400. height: math.unit(120000, "km")
  11401. },
  11402. {
  11403. name: "Teramacro",
  11404. height: math.unit(7.77e6, "km")
  11405. },
  11406. ]
  11407. ))
  11408. characterMakers.push(() => makeCharacter(
  11409. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  11410. {
  11411. front: {
  11412. height: math.unit(6 + 4/12, "feet"),
  11413. weight: math.unit(190, "lb"),
  11414. name: "Front",
  11415. image: {
  11416. source: "./media/characters/bmc/front.svg",
  11417. extra: 1626/1472,
  11418. bottom: 79/1705
  11419. }
  11420. },
  11421. back: {
  11422. height: math.unit(6 + 4/12, "feet"),
  11423. weight: math.unit(190, "lb"),
  11424. name: "Back",
  11425. image: {
  11426. source: "./media/characters/bmc/back.svg",
  11427. extra: 1640/1479,
  11428. bottom: 45/1685
  11429. }
  11430. },
  11431. frontArmor: {
  11432. height: math.unit(6 + 4/12, "feet"),
  11433. weight: math.unit(190, "lb"),
  11434. name: "Front-armor",
  11435. image: {
  11436. source: "./media/characters/bmc/front-armor.svg",
  11437. extra: 1538/1468,
  11438. bottom: 79/1617
  11439. }
  11440. },
  11441. },
  11442. [
  11443. {
  11444. name: "Human-sized",
  11445. height: math.unit(6 + 4 / 12, "feet")
  11446. },
  11447. {
  11448. name: "Interactive Size",
  11449. height: math.unit(25, "feet")
  11450. },
  11451. {
  11452. name: "Small",
  11453. height: math.unit(250, "feet")
  11454. },
  11455. {
  11456. name: "Normal",
  11457. height: math.unit(1250, "feet"),
  11458. default: true
  11459. },
  11460. {
  11461. name: "Good Day",
  11462. height: math.unit(88, "miles")
  11463. },
  11464. {
  11465. name: "Largest Measured Size",
  11466. height: math.unit(105.960, "galaxies")
  11467. },
  11468. ]
  11469. ))
  11470. characterMakers.push(() => makeCharacter(
  11471. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  11472. {
  11473. front: {
  11474. height: math.unit(20, "feet"),
  11475. weight: math.unit(2016, "kg"),
  11476. name: "Front",
  11477. image: {
  11478. source: "./media/characters/sven-the-kaiju/front.svg",
  11479. extra: 1277/1250,
  11480. bottom: 35/1312
  11481. }
  11482. },
  11483. mouth: {
  11484. height: math.unit(1.85, "feet"),
  11485. name: "Mouth",
  11486. image: {
  11487. source: "./media/characters/sven-the-kaiju/mouth.svg"
  11488. }
  11489. },
  11490. },
  11491. [
  11492. {
  11493. name: "Fairy",
  11494. height: math.unit(6, "inches")
  11495. },
  11496. {
  11497. name: "Normal",
  11498. height: math.unit(20, "feet"),
  11499. default: true
  11500. },
  11501. {
  11502. name: "Rampage",
  11503. height: math.unit(200, "feet")
  11504. },
  11505. {
  11506. name: "Archfey Forest Guardian",
  11507. height: math.unit(1, "mile")
  11508. },
  11509. ]
  11510. ))
  11511. characterMakers.push(() => makeCharacter(
  11512. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  11513. {
  11514. front: {
  11515. height: math.unit(4, "meters"),
  11516. weight: math.unit(2, "tons"),
  11517. name: "Front",
  11518. image: {
  11519. source: "./media/characters/marik/front.svg",
  11520. extra: 1057 / 1003,
  11521. bottom: 0.08
  11522. }
  11523. },
  11524. },
  11525. [
  11526. {
  11527. name: "Normal",
  11528. height: math.unit(4, "meters"),
  11529. default: true
  11530. },
  11531. {
  11532. name: "Macro",
  11533. height: math.unit(20, "meters")
  11534. },
  11535. {
  11536. name: "Megamacro",
  11537. height: math.unit(50, "km")
  11538. },
  11539. {
  11540. name: "Gigamacro",
  11541. height: math.unit(100, "km")
  11542. },
  11543. {
  11544. name: "Alpha Macro",
  11545. height: math.unit(7.88e7, "yottameters")
  11546. },
  11547. ]
  11548. ))
  11549. characterMakers.push(() => makeCharacter(
  11550. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  11551. {
  11552. front: {
  11553. height: math.unit(6, "feet"),
  11554. weight: math.unit(110, "lb"),
  11555. name: "Front",
  11556. image: {
  11557. source: "./media/characters/mel/front.svg",
  11558. extra: 736 / 617,
  11559. bottom: 0.017
  11560. }
  11561. },
  11562. },
  11563. [
  11564. {
  11565. name: "Pico",
  11566. height: math.unit(3, "pm")
  11567. },
  11568. {
  11569. name: "Nano",
  11570. height: math.unit(3, "nm")
  11571. },
  11572. {
  11573. name: "Micro",
  11574. height: math.unit(0.3, "mm"),
  11575. default: true
  11576. },
  11577. {
  11578. name: "Micro+",
  11579. height: math.unit(3, "mm")
  11580. },
  11581. {
  11582. name: "Normal",
  11583. height: math.unit(5 + 10.5 / 12, "feet")
  11584. },
  11585. ]
  11586. ))
  11587. characterMakers.push(() => makeCharacter(
  11588. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  11589. {
  11590. kaiju: {
  11591. height: math.unit(1.75, "meters"),
  11592. weight: math.unit(55, "kg"),
  11593. name: "Kaiju",
  11594. image: {
  11595. source: "./media/characters/lykonous/kaiju.svg",
  11596. extra: 1055 / 946,
  11597. bottom: 0.135
  11598. }
  11599. },
  11600. },
  11601. [
  11602. {
  11603. name: "Normal",
  11604. height: math.unit(2.5, "meters"),
  11605. default: true
  11606. },
  11607. {
  11608. name: "Kaiju Dragon",
  11609. height: math.unit(60, "meters")
  11610. },
  11611. {
  11612. name: "Mega Kaiju",
  11613. height: math.unit(120, "km")
  11614. },
  11615. {
  11616. name: "Giga Kaiju",
  11617. height: math.unit(200, "megameters")
  11618. },
  11619. {
  11620. name: "Terra Kaiju",
  11621. height: math.unit(400, "gigameters")
  11622. },
  11623. {
  11624. name: "Kaiju Dragon God",
  11625. height: math.unit(13000, "exaparsecs")
  11626. },
  11627. ]
  11628. ))
  11629. characterMakers.push(() => makeCharacter(
  11630. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  11631. {
  11632. front: {
  11633. height: math.unit(6, "feet"),
  11634. weight: math.unit(150, "lb"),
  11635. name: "Front",
  11636. image: {
  11637. source: "./media/characters/blü/front.svg",
  11638. extra: 1883 / 1564,
  11639. bottom: 0.031
  11640. }
  11641. },
  11642. },
  11643. [
  11644. {
  11645. name: "Normal",
  11646. height: math.unit(13, "feet"),
  11647. default: true
  11648. },
  11649. {
  11650. name: "Big Boi",
  11651. height: math.unit(150, "meters")
  11652. },
  11653. {
  11654. name: "Mini Stomper",
  11655. height: math.unit(300, "meters")
  11656. },
  11657. {
  11658. name: "Macro",
  11659. height: math.unit(1000, "meters")
  11660. },
  11661. {
  11662. name: "Megamacro",
  11663. height: math.unit(11000, "meters")
  11664. },
  11665. {
  11666. name: "Gigamacro",
  11667. height: math.unit(11000, "km")
  11668. },
  11669. {
  11670. name: "Teramacro",
  11671. height: math.unit(420000, "km")
  11672. },
  11673. {
  11674. name: "Examacro",
  11675. height: math.unit(120, "parsecs")
  11676. },
  11677. {
  11678. name: "God Tho",
  11679. height: math.unit(98000000000, "parsecs")
  11680. },
  11681. ]
  11682. ))
  11683. characterMakers.push(() => makeCharacter(
  11684. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  11685. {
  11686. taurFront: {
  11687. height: math.unit(6, "feet"),
  11688. weight: math.unit(200, "lb"),
  11689. name: "Taur (Front)",
  11690. image: {
  11691. source: "./media/characters/scales/taur-front.svg",
  11692. extra: 1,
  11693. bottom: 0.05
  11694. }
  11695. },
  11696. taurBack: {
  11697. height: math.unit(6, "feet"),
  11698. weight: math.unit(200, "lb"),
  11699. name: "Taur (Back)",
  11700. image: {
  11701. source: "./media/characters/scales/taur-back.svg",
  11702. extra: 1,
  11703. bottom: 0.08
  11704. }
  11705. },
  11706. anthro: {
  11707. height: math.unit(6 * 7 / 12, "feet"),
  11708. weight: math.unit(100, "lb"),
  11709. name: "Anthro",
  11710. image: {
  11711. source: "./media/characters/scales/anthro.svg",
  11712. extra: 1,
  11713. bottom: 0.06
  11714. }
  11715. },
  11716. },
  11717. [
  11718. {
  11719. name: "Normal",
  11720. height: math.unit(12, "feet"),
  11721. default: true
  11722. },
  11723. ]
  11724. ))
  11725. characterMakers.push(() => makeCharacter(
  11726. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  11727. {
  11728. front: {
  11729. height: math.unit(6, "feet"),
  11730. weight: math.unit(150, "lb"),
  11731. name: "Front",
  11732. image: {
  11733. source: "./media/characters/koragos/front.svg",
  11734. extra: 841 / 794,
  11735. bottom: 0.035
  11736. }
  11737. },
  11738. back: {
  11739. height: math.unit(6, "feet"),
  11740. weight: math.unit(150, "lb"),
  11741. name: "Back",
  11742. image: {
  11743. source: "./media/characters/koragos/back.svg",
  11744. extra: 841 / 810,
  11745. bottom: 0.022
  11746. }
  11747. },
  11748. },
  11749. [
  11750. {
  11751. name: "Normal",
  11752. height: math.unit(6 + 11 / 12, "feet"),
  11753. default: true
  11754. },
  11755. {
  11756. name: "Macro",
  11757. height: math.unit(490, "feet")
  11758. },
  11759. {
  11760. name: "Megamacro",
  11761. height: math.unit(10, "miles")
  11762. },
  11763. {
  11764. name: "Gigamacro",
  11765. height: math.unit(50, "miles")
  11766. },
  11767. ]
  11768. ))
  11769. characterMakers.push(() => makeCharacter(
  11770. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  11771. {
  11772. front: {
  11773. height: math.unit(6, "feet"),
  11774. weight: math.unit(250, "lb"),
  11775. name: "Front",
  11776. image: {
  11777. source: "./media/characters/xylrem/front.svg",
  11778. extra: 3323 / 3050,
  11779. bottom: 0.065
  11780. }
  11781. },
  11782. },
  11783. [
  11784. {
  11785. name: "Micro",
  11786. height: math.unit(4, "feet")
  11787. },
  11788. {
  11789. name: "Normal",
  11790. height: math.unit(16, "feet"),
  11791. default: true
  11792. },
  11793. {
  11794. name: "Macro",
  11795. height: math.unit(2720, "feet")
  11796. },
  11797. {
  11798. name: "Megamacro",
  11799. height: math.unit(25000, "miles")
  11800. },
  11801. ]
  11802. ))
  11803. characterMakers.push(() => makeCharacter(
  11804. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  11805. {
  11806. front: {
  11807. height: math.unit(8, "feet"),
  11808. weight: math.unit(250, "kg"),
  11809. name: "Front",
  11810. image: {
  11811. source: "./media/characters/ikideru/front.svg",
  11812. extra: 930 / 870,
  11813. bottom: 0.087
  11814. }
  11815. },
  11816. back: {
  11817. height: math.unit(8, "feet"),
  11818. weight: math.unit(250, "kg"),
  11819. name: "Back",
  11820. image: {
  11821. source: "./media/characters/ikideru/back.svg",
  11822. extra: 919 / 852,
  11823. bottom: 0.055
  11824. }
  11825. },
  11826. },
  11827. [
  11828. {
  11829. name: "Rare",
  11830. height: math.unit(8, "feet"),
  11831. default: true
  11832. },
  11833. {
  11834. name: "Playful Loom",
  11835. height: math.unit(80, "feet")
  11836. },
  11837. {
  11838. name: "City Leaner",
  11839. height: math.unit(230, "feet")
  11840. },
  11841. {
  11842. name: "Megamacro",
  11843. height: math.unit(2500, "feet")
  11844. },
  11845. {
  11846. name: "Gigamacro",
  11847. height: math.unit(26400, "feet")
  11848. },
  11849. {
  11850. name: "Tectonic Shifter",
  11851. height: math.unit(1.7, "megameters")
  11852. },
  11853. {
  11854. name: "Planet Carer",
  11855. height: math.unit(21, "megameters")
  11856. },
  11857. {
  11858. name: "God",
  11859. height: math.unit(11157.22, "parsecs")
  11860. },
  11861. ]
  11862. ))
  11863. characterMakers.push(() => makeCharacter(
  11864. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  11865. {
  11866. front: {
  11867. height: math.unit(6, "feet"),
  11868. weight: math.unit(120, "lb"),
  11869. name: "Front",
  11870. image: {
  11871. source: "./media/characters/neo/front.svg"
  11872. }
  11873. },
  11874. },
  11875. [
  11876. {
  11877. name: "Micro",
  11878. height: math.unit(2, "inches"),
  11879. default: true
  11880. },
  11881. {
  11882. name: "Human Size",
  11883. height: math.unit(5 + 8 / 12, "feet")
  11884. },
  11885. ]
  11886. ))
  11887. characterMakers.push(() => makeCharacter(
  11888. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  11889. {
  11890. front: {
  11891. height: math.unit(13 + 10 / 12, "feet"),
  11892. weight: math.unit(5320, "lb"),
  11893. name: "Front",
  11894. image: {
  11895. source: "./media/characters/chauncey-chantz/front.svg",
  11896. extra: 1587 / 1435,
  11897. bottom: 0.02
  11898. }
  11899. },
  11900. },
  11901. [
  11902. {
  11903. name: "Normal",
  11904. height: math.unit(13 + 10 / 12, "feet"),
  11905. default: true
  11906. },
  11907. {
  11908. name: "Macro",
  11909. height: math.unit(45, "feet")
  11910. },
  11911. {
  11912. name: "Megamacro",
  11913. height: math.unit(250, "miles")
  11914. },
  11915. {
  11916. name: "Planetary",
  11917. height: math.unit(10000, "miles")
  11918. },
  11919. {
  11920. name: "Galactic",
  11921. height: math.unit(40000, "parsecs")
  11922. },
  11923. {
  11924. name: "Universal",
  11925. height: math.unit(1, "yottameter")
  11926. },
  11927. ]
  11928. ))
  11929. characterMakers.push(() => makeCharacter(
  11930. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  11931. {
  11932. front: {
  11933. height: math.unit(6, "feet"),
  11934. weight: math.unit(150, "lb"),
  11935. name: "Front",
  11936. image: {
  11937. source: "./media/characters/epifox/front.svg",
  11938. extra: 1,
  11939. bottom: 0.075
  11940. }
  11941. },
  11942. },
  11943. [
  11944. {
  11945. name: "Micro",
  11946. height: math.unit(6, "inches")
  11947. },
  11948. {
  11949. name: "Normal",
  11950. height: math.unit(12, "feet"),
  11951. default: true
  11952. },
  11953. {
  11954. name: "Macro",
  11955. height: math.unit(3810, "feet")
  11956. },
  11957. {
  11958. name: "Megamacro",
  11959. height: math.unit(500, "miles")
  11960. },
  11961. ]
  11962. ))
  11963. characterMakers.push(() => makeCharacter(
  11964. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  11965. {
  11966. front: {
  11967. height: math.unit(1.8796, "m"),
  11968. weight: math.unit(230, "lb"),
  11969. name: "Front",
  11970. image: {
  11971. source: "./media/characters/colin-t/front.svg",
  11972. extra: 1272 / 1193,
  11973. bottom: 0.07
  11974. }
  11975. },
  11976. },
  11977. [
  11978. {
  11979. name: "Micro",
  11980. height: math.unit(0.571, "meters")
  11981. },
  11982. {
  11983. name: "Normal",
  11984. height: math.unit(1.8796, "meters"),
  11985. default: true
  11986. },
  11987. {
  11988. name: "Tall",
  11989. height: math.unit(4, "meters")
  11990. },
  11991. {
  11992. name: "Macro",
  11993. height: math.unit(67.241, "meters")
  11994. },
  11995. {
  11996. name: "Megamacro",
  11997. height: math.unit(371.856, "meters")
  11998. },
  11999. {
  12000. name: "Planetary",
  12001. height: math.unit(12631.5689, "km")
  12002. },
  12003. ]
  12004. ))
  12005. characterMakers.push(() => makeCharacter(
  12006. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  12007. {
  12008. front: {
  12009. height: math.unit(1.85, "meters"),
  12010. weight: math.unit(80, "kg"),
  12011. name: "Front",
  12012. image: {
  12013. source: "./media/characters/matvei/front.svg",
  12014. extra: 614 / 594,
  12015. bottom: 0.01
  12016. }
  12017. },
  12018. },
  12019. [
  12020. {
  12021. name: "Normal",
  12022. height: math.unit(1.85, "meters"),
  12023. default: true
  12024. },
  12025. ]
  12026. ))
  12027. characterMakers.push(() => makeCharacter(
  12028. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  12029. {
  12030. front: {
  12031. height: math.unit(5 + 9 / 12, "feet"),
  12032. weight: math.unit(70, "lb"),
  12033. name: "Front",
  12034. image: {
  12035. source: "./media/characters/quincy/front.svg",
  12036. extra: 3041 / 2751
  12037. }
  12038. },
  12039. back: {
  12040. height: math.unit(5 + 9 / 12, "feet"),
  12041. weight: math.unit(70, "lb"),
  12042. name: "Back",
  12043. image: {
  12044. source: "./media/characters/quincy/back.svg",
  12045. extra: 3041 / 2751
  12046. }
  12047. },
  12048. flying: {
  12049. height: math.unit(5 + 4 / 12, "feet"),
  12050. weight: math.unit(70, "lb"),
  12051. name: "Flying",
  12052. image: {
  12053. source: "./media/characters/quincy/flying.svg",
  12054. extra: 1044 / 930
  12055. }
  12056. },
  12057. },
  12058. [
  12059. {
  12060. name: "Micro",
  12061. height: math.unit(3, "cm")
  12062. },
  12063. {
  12064. name: "Normal",
  12065. height: math.unit(5 + 9 / 12, "feet")
  12066. },
  12067. {
  12068. name: "Macro",
  12069. height: math.unit(200, "meters"),
  12070. default: true
  12071. },
  12072. {
  12073. name: "Megamacro",
  12074. height: math.unit(1000, "meters")
  12075. },
  12076. ]
  12077. ))
  12078. characterMakers.push(() => makeCharacter(
  12079. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  12080. {
  12081. front: {
  12082. height: math.unit(3 + 11/12, "feet"),
  12083. weight: math.unit(50, "lb"),
  12084. name: "Front",
  12085. image: {
  12086. source: "./media/characters/vanrel/front.svg",
  12087. extra: 1104/949,
  12088. bottom: 52/1156
  12089. }
  12090. },
  12091. back: {
  12092. height: math.unit(3 + 11/12, "feet"),
  12093. weight: math.unit(50, "lb"),
  12094. name: "Back",
  12095. image: {
  12096. source: "./media/characters/vanrel/back.svg",
  12097. extra: 1119/976,
  12098. bottom: 37/1156
  12099. }
  12100. },
  12101. tome: {
  12102. height: math.unit(1.35, "feet"),
  12103. weight: math.unit(10, "lb"),
  12104. name: "Vanrel's Tome",
  12105. rename: true,
  12106. image: {
  12107. source: "./media/characters/vanrel/tome.svg"
  12108. }
  12109. },
  12110. beans: {
  12111. height: math.unit(0.89, "feet"),
  12112. name: "Beans",
  12113. image: {
  12114. source: "./media/characters/vanrel/beans.svg"
  12115. }
  12116. },
  12117. },
  12118. [
  12119. {
  12120. name: "Normal",
  12121. height: math.unit(3 + 11/12, "feet"),
  12122. default: true
  12123. },
  12124. ]
  12125. ))
  12126. characterMakers.push(() => makeCharacter(
  12127. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  12128. {
  12129. front: {
  12130. height: math.unit(7 + 5 / 12, "feet"),
  12131. name: "Front",
  12132. image: {
  12133. source: "./media/characters/kuiper-vanrel/front.svg",
  12134. extra: 1219/1169,
  12135. bottom: 69/1288
  12136. }
  12137. },
  12138. back: {
  12139. height: math.unit(7 + 5 / 12, "feet"),
  12140. name: "Back",
  12141. image: {
  12142. source: "./media/characters/kuiper-vanrel/back.svg",
  12143. extra: 1236/1193,
  12144. bottom: 27/1263
  12145. }
  12146. },
  12147. foot: {
  12148. height: math.unit(0.55, "meters"),
  12149. name: "Foot",
  12150. image: {
  12151. source: "./media/characters/kuiper-vanrel/foot.svg",
  12152. }
  12153. },
  12154. battle: {
  12155. height: math.unit(6.824, "feet"),
  12156. name: "Battle",
  12157. image: {
  12158. source: "./media/characters/kuiper-vanrel/battle.svg",
  12159. extra: 1466 / 1327,
  12160. bottom: 29 / 1492.5
  12161. }
  12162. },
  12163. meerkui: {
  12164. height: math.unit(18, "inches"),
  12165. name: "Meerkui",
  12166. image: {
  12167. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  12168. extra: 1354/1289,
  12169. bottom: 69/1423
  12170. }
  12171. },
  12172. },
  12173. [
  12174. {
  12175. name: "Normal",
  12176. height: math.unit(7 + 5 / 12, "feet"),
  12177. default: true
  12178. },
  12179. ]
  12180. ))
  12181. characterMakers.push(() => makeCharacter(
  12182. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  12183. {
  12184. front: {
  12185. height: math.unit(8 + 5 / 12, "feet"),
  12186. name: "Front",
  12187. image: {
  12188. source: "./media/characters/keset-vanrel/front.svg",
  12189. extra: 1231/1148,
  12190. bottom: 82/1313
  12191. }
  12192. },
  12193. back: {
  12194. height: math.unit(8 + 5 / 12, "feet"),
  12195. name: "Back",
  12196. image: {
  12197. source: "./media/characters/keset-vanrel/back.svg",
  12198. extra: 1240/1174,
  12199. bottom: 33/1273
  12200. }
  12201. },
  12202. hand: {
  12203. height: math.unit(0.6, "meters"),
  12204. name: "Hand",
  12205. image: {
  12206. source: "./media/characters/keset-vanrel/hand.svg"
  12207. }
  12208. },
  12209. foot: {
  12210. height: math.unit(0.94978, "meters"),
  12211. name: "Foot",
  12212. image: {
  12213. source: "./media/characters/keset-vanrel/foot.svg"
  12214. }
  12215. },
  12216. battle: {
  12217. height: math.unit(7.408, "feet"),
  12218. name: "Battle",
  12219. image: {
  12220. source: "./media/characters/keset-vanrel/battle.svg",
  12221. extra: 1890 / 1386,
  12222. bottom: 73.28 / 1970
  12223. }
  12224. },
  12225. },
  12226. [
  12227. {
  12228. name: "Normal",
  12229. height: math.unit(8 + 5 / 12, "feet"),
  12230. default: true
  12231. },
  12232. ]
  12233. ))
  12234. characterMakers.push(() => makeCharacter(
  12235. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  12236. {
  12237. front: {
  12238. height: math.unit(6, "feet"),
  12239. weight: math.unit(150, "lb"),
  12240. name: "Front",
  12241. image: {
  12242. source: "./media/characters/neos/front.svg",
  12243. extra: 1696 / 992,
  12244. bottom: 0.14
  12245. }
  12246. },
  12247. },
  12248. [
  12249. {
  12250. name: "Normal",
  12251. height: math.unit(54, "cm"),
  12252. default: true
  12253. },
  12254. {
  12255. name: "Macro",
  12256. height: math.unit(100, "m")
  12257. },
  12258. {
  12259. name: "Megamacro",
  12260. height: math.unit(10, "km")
  12261. },
  12262. {
  12263. name: "Megamacro+",
  12264. height: math.unit(100, "km")
  12265. },
  12266. {
  12267. name: "Gigamacro",
  12268. height: math.unit(100, "Mm")
  12269. },
  12270. {
  12271. name: "Teramacro",
  12272. height: math.unit(100, "Gm")
  12273. },
  12274. {
  12275. name: "Examacro",
  12276. height: math.unit(100, "Em")
  12277. },
  12278. {
  12279. name: "Godly",
  12280. height: math.unit(10000, "Ym")
  12281. },
  12282. {
  12283. name: "Beyond Godly",
  12284. height: math.unit(25, "multiverses")
  12285. },
  12286. ]
  12287. ))
  12288. characterMakers.push(() => makeCharacter(
  12289. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  12290. {
  12291. feminine: {
  12292. height: math.unit(5, "feet"),
  12293. weight: math.unit(100, "lb"),
  12294. name: "Feminine",
  12295. image: {
  12296. source: "./media/characters/sammy-mouse/feminine.svg",
  12297. extra: 2526 / 2425,
  12298. bottom: 0.123
  12299. }
  12300. },
  12301. masculine: {
  12302. height: math.unit(5, "feet"),
  12303. weight: math.unit(100, "lb"),
  12304. name: "Masculine",
  12305. image: {
  12306. source: "./media/characters/sammy-mouse/masculine.svg",
  12307. extra: 2526 / 2425,
  12308. bottom: 0.123
  12309. }
  12310. },
  12311. },
  12312. [
  12313. {
  12314. name: "Micro",
  12315. height: math.unit(5, "inches")
  12316. },
  12317. {
  12318. name: "Normal",
  12319. height: math.unit(5, "feet"),
  12320. default: true
  12321. },
  12322. {
  12323. name: "Macro",
  12324. height: math.unit(60, "feet")
  12325. },
  12326. ]
  12327. ))
  12328. characterMakers.push(() => makeCharacter(
  12329. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  12330. {
  12331. front: {
  12332. height: math.unit(4, "feet"),
  12333. weight: math.unit(50, "lb"),
  12334. name: "Front",
  12335. image: {
  12336. source: "./media/characters/kole/front.svg",
  12337. extra: 1423 / 1303,
  12338. bottom: 0.025
  12339. }
  12340. },
  12341. back: {
  12342. height: math.unit(4, "feet"),
  12343. weight: math.unit(50, "lb"),
  12344. name: "Back",
  12345. image: {
  12346. source: "./media/characters/kole/back.svg",
  12347. extra: 1426 / 1280,
  12348. bottom: 0.02
  12349. }
  12350. },
  12351. },
  12352. [
  12353. {
  12354. name: "Normal",
  12355. height: math.unit(4, "feet"),
  12356. default: true
  12357. },
  12358. ]
  12359. ))
  12360. characterMakers.push(() => makeCharacter(
  12361. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  12362. {
  12363. front: {
  12364. height: math.unit(2.5, "feet"),
  12365. weight: math.unit(32, "lb"),
  12366. name: "Front",
  12367. image: {
  12368. source: "./media/characters/rufran/front.svg",
  12369. extra: 1313/885,
  12370. bottom: 94/1407
  12371. }
  12372. },
  12373. side: {
  12374. height: math.unit(2.5, "feet"),
  12375. weight: math.unit(32, "lb"),
  12376. name: "Side",
  12377. image: {
  12378. source: "./media/characters/rufran/side.svg",
  12379. extra: 1109/852,
  12380. bottom: 118/1227
  12381. }
  12382. },
  12383. back: {
  12384. height: math.unit(2.5, "feet"),
  12385. weight: math.unit(32, "lb"),
  12386. name: "Back",
  12387. image: {
  12388. source: "./media/characters/rufran/back.svg",
  12389. extra: 1280/878,
  12390. bottom: 131/1411
  12391. }
  12392. },
  12393. mouth: {
  12394. height: math.unit(1.13, "feet"),
  12395. name: "Mouth",
  12396. image: {
  12397. source: "./media/characters/rufran/mouth.svg"
  12398. }
  12399. },
  12400. foot: {
  12401. height: math.unit(1.33, "feet"),
  12402. name: "Foot",
  12403. image: {
  12404. source: "./media/characters/rufran/foot.svg"
  12405. }
  12406. },
  12407. koboldFront: {
  12408. height: math.unit(2 + 6 / 12, "feet"),
  12409. weight: math.unit(20, "lb"),
  12410. name: "Front (Kobold)",
  12411. image: {
  12412. source: "./media/characters/rufran/kobold-front.svg",
  12413. extra: 2041 / 1839,
  12414. bottom: 0.055
  12415. }
  12416. },
  12417. koboldBack: {
  12418. height: math.unit(2 + 6 / 12, "feet"),
  12419. weight: math.unit(20, "lb"),
  12420. name: "Back (Kobold)",
  12421. image: {
  12422. source: "./media/characters/rufran/kobold-back.svg",
  12423. extra: 2054 / 1839,
  12424. bottom: 0.01
  12425. }
  12426. },
  12427. koboldHand: {
  12428. height: math.unit(0.2166, "meters"),
  12429. name: "Hand (Kobold)",
  12430. image: {
  12431. source: "./media/characters/rufran/kobold-hand.svg"
  12432. }
  12433. },
  12434. koboldFoot: {
  12435. height: math.unit(0.185, "meters"),
  12436. name: "Foot (Kobold)",
  12437. image: {
  12438. source: "./media/characters/rufran/kobold-foot.svg"
  12439. }
  12440. },
  12441. },
  12442. [
  12443. {
  12444. name: "Micro",
  12445. height: math.unit(1, "inch")
  12446. },
  12447. {
  12448. name: "Normal",
  12449. height: math.unit(2 + 6 / 12, "feet"),
  12450. default: true
  12451. },
  12452. {
  12453. name: "Big",
  12454. height: math.unit(60, "feet")
  12455. },
  12456. {
  12457. name: "Macro",
  12458. height: math.unit(325, "feet")
  12459. },
  12460. ]
  12461. ))
  12462. characterMakers.push(() => makeCharacter(
  12463. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  12464. {
  12465. front: {
  12466. height: math.unit(0.3, "meters"),
  12467. weight: math.unit(3.5, "kg"),
  12468. name: "Front",
  12469. image: {
  12470. source: "./media/characters/chip/front.svg",
  12471. extra: 748 / 674
  12472. }
  12473. },
  12474. },
  12475. [
  12476. {
  12477. name: "Micro",
  12478. height: math.unit(1, "inch"),
  12479. default: true
  12480. },
  12481. ]
  12482. ))
  12483. characterMakers.push(() => makeCharacter(
  12484. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  12485. {
  12486. side: {
  12487. height: math.unit(2.3, "meters"),
  12488. weight: math.unit(3500, "lb"),
  12489. name: "Side",
  12490. image: {
  12491. source: "./media/characters/torvid/side.svg",
  12492. extra: 1972 / 722,
  12493. bottom: 0.035
  12494. }
  12495. },
  12496. },
  12497. [
  12498. {
  12499. name: "Normal",
  12500. height: math.unit(2.3, "meters"),
  12501. default: true
  12502. },
  12503. ]
  12504. ))
  12505. characterMakers.push(() => makeCharacter(
  12506. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  12507. {
  12508. front: {
  12509. height: math.unit(2, "meters"),
  12510. weight: math.unit(150.5, "kg"),
  12511. name: "Front",
  12512. image: {
  12513. source: "./media/characters/susan/front.svg",
  12514. extra: 693 / 635,
  12515. bottom: 0.05
  12516. }
  12517. },
  12518. },
  12519. [
  12520. {
  12521. name: "Megamacro",
  12522. height: math.unit(505, "miles"),
  12523. default: true
  12524. },
  12525. ]
  12526. ))
  12527. characterMakers.push(() => makeCharacter(
  12528. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  12529. {
  12530. front: {
  12531. height: math.unit(6, "feet"),
  12532. weight: math.unit(150, "lb"),
  12533. name: "Front",
  12534. image: {
  12535. source: "./media/characters/raindrops/front.svg",
  12536. extra: 2655 / 2461,
  12537. bottom: 49 / 2705
  12538. }
  12539. },
  12540. back: {
  12541. height: math.unit(6, "feet"),
  12542. weight: math.unit(150, "lb"),
  12543. name: "Back",
  12544. image: {
  12545. source: "./media/characters/raindrops/back.svg",
  12546. extra: 2574 / 2400,
  12547. bottom: 65 / 2634
  12548. }
  12549. },
  12550. },
  12551. [
  12552. {
  12553. name: "Micro",
  12554. height: math.unit(6, "inches")
  12555. },
  12556. {
  12557. name: "Normal",
  12558. height: math.unit(6 + 2 / 12, "feet")
  12559. },
  12560. {
  12561. name: "Macro",
  12562. height: math.unit(131, "feet"),
  12563. default: true
  12564. },
  12565. {
  12566. name: "Megamacro",
  12567. height: math.unit(15, "miles")
  12568. },
  12569. {
  12570. name: "Gigamacro",
  12571. height: math.unit(4000, "miles")
  12572. },
  12573. {
  12574. name: "Teramacro",
  12575. height: math.unit(315000, "miles")
  12576. },
  12577. ]
  12578. ))
  12579. characterMakers.push(() => makeCharacter(
  12580. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  12581. {
  12582. front: {
  12583. height: math.unit(2.794, "meters"),
  12584. weight: math.unit(325, "kg"),
  12585. name: "Front",
  12586. image: {
  12587. source: "./media/characters/tezwa/front.svg",
  12588. extra: 2083 / 1906,
  12589. bottom: 0.031
  12590. }
  12591. },
  12592. foot: {
  12593. height: math.unit(0.687, "meters"),
  12594. name: "Foot",
  12595. image: {
  12596. source: "./media/characters/tezwa/foot.svg"
  12597. }
  12598. },
  12599. },
  12600. [
  12601. {
  12602. name: "Normal",
  12603. height: math.unit(9 + 2 / 12, "feet"),
  12604. default: true
  12605. },
  12606. ]
  12607. ))
  12608. characterMakers.push(() => makeCharacter(
  12609. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  12610. {
  12611. front: {
  12612. height: math.unit(58, "feet"),
  12613. weight: math.unit(89000, "lb"),
  12614. name: "Front",
  12615. image: {
  12616. source: "./media/characters/typhus/front.svg",
  12617. extra: 816 / 800,
  12618. bottom: 0.065
  12619. }
  12620. },
  12621. },
  12622. [
  12623. {
  12624. name: "Macro",
  12625. height: math.unit(58, "feet"),
  12626. default: true
  12627. },
  12628. ]
  12629. ))
  12630. characterMakers.push(() => makeCharacter(
  12631. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  12632. {
  12633. front: {
  12634. height: math.unit(12, "feet"),
  12635. weight: math.unit(6, "tonnes"),
  12636. name: "Front",
  12637. image: {
  12638. source: "./media/characters/lyra-von-wulf/front.svg",
  12639. extra: 1,
  12640. bottom: 0.10
  12641. }
  12642. },
  12643. frontMecha: {
  12644. height: math.unit(12, "feet"),
  12645. weight: math.unit(12, "tonnes"),
  12646. name: "Front (Mecha)",
  12647. image: {
  12648. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  12649. extra: 1,
  12650. bottom: 0.042
  12651. }
  12652. },
  12653. maw: {
  12654. height: math.unit(2.2, "feet"),
  12655. name: "Maw",
  12656. image: {
  12657. source: "./media/characters/lyra-von-wulf/maw.svg"
  12658. }
  12659. },
  12660. },
  12661. [
  12662. {
  12663. name: "Normal",
  12664. height: math.unit(12, "feet"),
  12665. default: true
  12666. },
  12667. {
  12668. name: "Classic",
  12669. height: math.unit(50, "feet")
  12670. },
  12671. {
  12672. name: "Macro",
  12673. height: math.unit(500, "feet")
  12674. },
  12675. {
  12676. name: "Megamacro",
  12677. height: math.unit(1, "mile")
  12678. },
  12679. {
  12680. name: "Gigamacro",
  12681. height: math.unit(400, "miles")
  12682. },
  12683. {
  12684. name: "Teramacro",
  12685. height: math.unit(22000, "miles")
  12686. },
  12687. {
  12688. name: "Solarmacro",
  12689. height: math.unit(8600000, "miles")
  12690. },
  12691. {
  12692. name: "Galactic",
  12693. height: math.unit(1057000, "lightyears")
  12694. },
  12695. ]
  12696. ))
  12697. characterMakers.push(() => makeCharacter(
  12698. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  12699. {
  12700. front: {
  12701. height: math.unit(6 + 10 / 12, "feet"),
  12702. weight: math.unit(150, "lb"),
  12703. name: "Front",
  12704. image: {
  12705. source: "./media/characters/dixon/front.svg",
  12706. extra: 3361 / 3209,
  12707. bottom: 0.01
  12708. }
  12709. },
  12710. },
  12711. [
  12712. {
  12713. name: "Normal",
  12714. height: math.unit(6 + 10 / 12, "feet"),
  12715. default: true
  12716. },
  12717. {
  12718. name: "Big",
  12719. height: math.unit(12, "meters")
  12720. },
  12721. {
  12722. name: "Macro",
  12723. height: math.unit(500, "meters")
  12724. },
  12725. {
  12726. name: "Megamacro",
  12727. height: math.unit(2, "km")
  12728. },
  12729. ]
  12730. ))
  12731. characterMakers.push(() => makeCharacter(
  12732. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  12733. {
  12734. front: {
  12735. height: math.unit(185, "cm"),
  12736. weight: math.unit(68, "kg"),
  12737. name: "Front",
  12738. image: {
  12739. source: "./media/characters/kauko/front.svg",
  12740. extra: 1455 / 1421,
  12741. bottom: 0.03
  12742. }
  12743. },
  12744. back: {
  12745. height: math.unit(185, "cm"),
  12746. weight: math.unit(68, "kg"),
  12747. name: "Back",
  12748. image: {
  12749. source: "./media/characters/kauko/back.svg",
  12750. extra: 1455 / 1421,
  12751. bottom: 0.004
  12752. }
  12753. },
  12754. },
  12755. [
  12756. {
  12757. name: "Normal",
  12758. height: math.unit(185, "cm"),
  12759. default: true
  12760. },
  12761. ]
  12762. ))
  12763. characterMakers.push(() => makeCharacter(
  12764. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  12765. {
  12766. front: {
  12767. height: math.unit(6, "feet"),
  12768. weight: math.unit(150, "kg"),
  12769. name: "Front",
  12770. image: {
  12771. source: "./media/characters/varg/front.svg",
  12772. extra: 1108 / 1018,
  12773. bottom: 0.0375
  12774. }
  12775. },
  12776. },
  12777. [
  12778. {
  12779. name: "Normal",
  12780. height: math.unit(5, "meters")
  12781. },
  12782. {
  12783. name: "Macro",
  12784. height: math.unit(200, "meters")
  12785. },
  12786. {
  12787. name: "Megamacro",
  12788. height: math.unit(20, "kilometers")
  12789. },
  12790. {
  12791. name: "True Size",
  12792. height: math.unit(211, "km"),
  12793. default: true
  12794. },
  12795. {
  12796. name: "Gigamacro",
  12797. height: math.unit(1000, "km")
  12798. },
  12799. {
  12800. name: "Gigamacro+",
  12801. height: math.unit(8000, "km")
  12802. },
  12803. {
  12804. name: "Teramacro",
  12805. height: math.unit(1000000, "km")
  12806. },
  12807. ]
  12808. ))
  12809. characterMakers.push(() => makeCharacter(
  12810. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  12811. {
  12812. front: {
  12813. height: math.unit(7 + 7 / 12, "feet"),
  12814. weight: math.unit(267, "lb"),
  12815. name: "Front",
  12816. image: {
  12817. source: "./media/characters/dayza/front.svg",
  12818. extra: 1262 / 1200,
  12819. bottom: 0.035
  12820. }
  12821. },
  12822. side: {
  12823. height: math.unit(7 + 7 / 12, "feet"),
  12824. weight: math.unit(267, "lb"),
  12825. name: "Side",
  12826. image: {
  12827. source: "./media/characters/dayza/side.svg",
  12828. extra: 1295 / 1245,
  12829. bottom: 0.05
  12830. }
  12831. },
  12832. back: {
  12833. height: math.unit(7 + 7 / 12, "feet"),
  12834. weight: math.unit(267, "lb"),
  12835. name: "Back",
  12836. image: {
  12837. source: "./media/characters/dayza/back.svg",
  12838. extra: 1241 / 1170
  12839. }
  12840. },
  12841. },
  12842. [
  12843. {
  12844. name: "Normal",
  12845. height: math.unit(7 + 7 / 12, "feet"),
  12846. default: true
  12847. },
  12848. {
  12849. name: "Macro",
  12850. height: math.unit(155, "feet")
  12851. },
  12852. ]
  12853. ))
  12854. characterMakers.push(() => makeCharacter(
  12855. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  12856. {
  12857. front: {
  12858. height: math.unit(6 + 5 / 12, "feet"),
  12859. weight: math.unit(160, "lb"),
  12860. name: "Front",
  12861. image: {
  12862. source: "./media/characters/xanthos/front.svg",
  12863. extra: 1,
  12864. bottom: 0.04
  12865. }
  12866. },
  12867. back: {
  12868. height: math.unit(6 + 5 / 12, "feet"),
  12869. weight: math.unit(160, "lb"),
  12870. name: "Back",
  12871. image: {
  12872. source: "./media/characters/xanthos/back.svg",
  12873. extra: 1,
  12874. bottom: 0.03
  12875. }
  12876. },
  12877. hand: {
  12878. height: math.unit(0.928, "feet"),
  12879. name: "Hand",
  12880. image: {
  12881. source: "./media/characters/xanthos/hand.svg"
  12882. }
  12883. },
  12884. foot: {
  12885. height: math.unit(1.286, "feet"),
  12886. name: "Foot",
  12887. image: {
  12888. source: "./media/characters/xanthos/foot.svg"
  12889. }
  12890. },
  12891. },
  12892. [
  12893. {
  12894. name: "Normal",
  12895. height: math.unit(6 + 5 / 12, "feet"),
  12896. default: true
  12897. },
  12898. {
  12899. name: "Normal+",
  12900. height: math.unit(6, "meters")
  12901. },
  12902. {
  12903. name: "Macro",
  12904. height: math.unit(40, "feet")
  12905. },
  12906. {
  12907. name: "Macro+",
  12908. height: math.unit(200, "meters")
  12909. },
  12910. {
  12911. name: "Megamacro",
  12912. height: math.unit(20, "km")
  12913. },
  12914. {
  12915. name: "Megamacro+",
  12916. height: math.unit(100, "km")
  12917. },
  12918. {
  12919. name: "Gigamacro",
  12920. height: math.unit(200, "megameters")
  12921. },
  12922. {
  12923. name: "Gigamacro+",
  12924. height: math.unit(1.5, "gigameters")
  12925. },
  12926. ]
  12927. ))
  12928. characterMakers.push(() => makeCharacter(
  12929. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  12930. {
  12931. front: {
  12932. height: math.unit(6 + 3 / 12, "feet"),
  12933. weight: math.unit(215, "lb"),
  12934. name: "Front",
  12935. image: {
  12936. source: "./media/characters/grynn/front.svg",
  12937. extra: 4627 / 4209,
  12938. bottom: 0.047
  12939. }
  12940. },
  12941. },
  12942. [
  12943. {
  12944. name: "Micro",
  12945. height: math.unit(6, "inches")
  12946. },
  12947. {
  12948. name: "Normal",
  12949. height: math.unit(6 + 3 / 12, "feet"),
  12950. default: true
  12951. },
  12952. {
  12953. name: "Big",
  12954. height: math.unit(104, "feet")
  12955. },
  12956. {
  12957. name: "Macro",
  12958. height: math.unit(944, "feet")
  12959. },
  12960. {
  12961. name: "Macro+",
  12962. height: math.unit(9480, "feet")
  12963. },
  12964. {
  12965. name: "Megamacro",
  12966. height: math.unit(78752, "feet")
  12967. },
  12968. {
  12969. name: "Megamacro+",
  12970. height: math.unit(630128, "feet")
  12971. },
  12972. {
  12973. name: "Megamacro++",
  12974. height: math.unit(3150695, "feet")
  12975. },
  12976. ]
  12977. ))
  12978. characterMakers.push(() => makeCharacter(
  12979. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  12980. {
  12981. front: {
  12982. height: math.unit(7 + 5 / 12, "feet"),
  12983. weight: math.unit(450, "lb"),
  12984. name: "Front",
  12985. image: {
  12986. source: "./media/characters/mocha-aura/front.svg",
  12987. extra: 1907 / 1817,
  12988. bottom: 0.04
  12989. }
  12990. },
  12991. back: {
  12992. height: math.unit(7 + 5 / 12, "feet"),
  12993. weight: math.unit(450, "lb"),
  12994. name: "Back",
  12995. image: {
  12996. source: "./media/characters/mocha-aura/back.svg",
  12997. extra: 1900 / 1825,
  12998. bottom: 0.045
  12999. }
  13000. },
  13001. },
  13002. [
  13003. {
  13004. name: "Nano",
  13005. height: math.unit(1, "nm")
  13006. },
  13007. {
  13008. name: "Megamicro",
  13009. height: math.unit(1, "mm")
  13010. },
  13011. {
  13012. name: "Micro",
  13013. height: math.unit(3, "inches")
  13014. },
  13015. {
  13016. name: "Normal",
  13017. height: math.unit(7 + 5 / 12, "feet"),
  13018. default: true
  13019. },
  13020. {
  13021. name: "Macro",
  13022. height: math.unit(30, "feet")
  13023. },
  13024. {
  13025. name: "Megamacro",
  13026. height: math.unit(3500, "feet")
  13027. },
  13028. {
  13029. name: "Teramacro",
  13030. height: math.unit(500000, "miles")
  13031. },
  13032. {
  13033. name: "Petamacro",
  13034. height: math.unit(50000000000000000, "parsecs")
  13035. },
  13036. ]
  13037. ))
  13038. characterMakers.push(() => makeCharacter(
  13039. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  13040. {
  13041. front: {
  13042. height: math.unit(6, "feet"),
  13043. weight: math.unit(150, "lb"),
  13044. name: "Front",
  13045. image: {
  13046. source: "./media/characters/ilisha-devya/front.svg",
  13047. extra: 1,
  13048. bottom: 0.175
  13049. }
  13050. },
  13051. back: {
  13052. height: math.unit(6, "feet"),
  13053. weight: math.unit(150, "lb"),
  13054. name: "Back",
  13055. image: {
  13056. source: "./media/characters/ilisha-devya/back.svg",
  13057. extra: 1,
  13058. bottom: 0.015
  13059. }
  13060. },
  13061. },
  13062. [
  13063. {
  13064. name: "Macro",
  13065. height: math.unit(500, "feet"),
  13066. default: true
  13067. },
  13068. {
  13069. name: "Megamacro",
  13070. height: math.unit(10, "miles")
  13071. },
  13072. {
  13073. name: "Gigamacro",
  13074. height: math.unit(100000, "miles")
  13075. },
  13076. {
  13077. name: "Examacro",
  13078. height: math.unit(1e9, "lightyears")
  13079. },
  13080. {
  13081. name: "Omniversal",
  13082. height: math.unit(1e33, "lightyears")
  13083. },
  13084. {
  13085. name: "Beyond Infinite",
  13086. height: math.unit(1e100, "lightyears")
  13087. },
  13088. ]
  13089. ))
  13090. characterMakers.push(() => makeCharacter(
  13091. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  13092. {
  13093. Side: {
  13094. height: math.unit(6, "feet"),
  13095. weight: math.unit(150, "lb"),
  13096. name: "Side",
  13097. image: {
  13098. source: "./media/characters/mira/side.svg",
  13099. extra: 900 / 799,
  13100. bottom: 0.02
  13101. }
  13102. },
  13103. },
  13104. [
  13105. {
  13106. name: "Human Size",
  13107. height: math.unit(6, "feet")
  13108. },
  13109. {
  13110. name: "Macro",
  13111. height: math.unit(100, "feet"),
  13112. default: true
  13113. },
  13114. {
  13115. name: "Megamacro",
  13116. height: math.unit(10, "miles")
  13117. },
  13118. {
  13119. name: "Gigamacro",
  13120. height: math.unit(25000, "miles")
  13121. },
  13122. {
  13123. name: "Teramacro",
  13124. height: math.unit(300, "AU")
  13125. },
  13126. {
  13127. name: "Full Size",
  13128. height: math.unit(4.5e10, "lightyears")
  13129. },
  13130. ]
  13131. ))
  13132. characterMakers.push(() => makeCharacter(
  13133. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  13134. {
  13135. front: {
  13136. height: math.unit(6, "feet"),
  13137. weight: math.unit(150, "lb"),
  13138. name: "Front",
  13139. image: {
  13140. source: "./media/characters/holly/front.svg",
  13141. extra: 639 / 606
  13142. }
  13143. },
  13144. back: {
  13145. height: math.unit(6, "feet"),
  13146. weight: math.unit(150, "lb"),
  13147. name: "Back",
  13148. image: {
  13149. source: "./media/characters/holly/back.svg",
  13150. extra: 623 / 598
  13151. }
  13152. },
  13153. frontWorking: {
  13154. height: math.unit(6, "feet"),
  13155. weight: math.unit(150, "lb"),
  13156. name: "Front (Working)",
  13157. image: {
  13158. source: "./media/characters/holly/front-working.svg",
  13159. extra: 607 / 577,
  13160. bottom: 0.048
  13161. }
  13162. },
  13163. },
  13164. [
  13165. {
  13166. name: "Normal",
  13167. height: math.unit(12 + 3 / 12, "feet"),
  13168. default: true
  13169. },
  13170. ]
  13171. ))
  13172. characterMakers.push(() => makeCharacter(
  13173. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  13174. {
  13175. front: {
  13176. height: math.unit(6, "feet"),
  13177. weight: math.unit(150, "lb"),
  13178. name: "Front",
  13179. image: {
  13180. source: "./media/characters/porter/front.svg",
  13181. extra: 1,
  13182. bottom: 0.01
  13183. }
  13184. },
  13185. frontRobes: {
  13186. height: math.unit(6, "feet"),
  13187. weight: math.unit(150, "lb"),
  13188. name: "Front (Robes)",
  13189. image: {
  13190. source: "./media/characters/porter/front-robes.svg",
  13191. extra: 1.01,
  13192. bottom: 0.01
  13193. }
  13194. },
  13195. },
  13196. [
  13197. {
  13198. name: "Normal",
  13199. height: math.unit(11 + 9 / 12, "feet"),
  13200. default: true
  13201. },
  13202. ]
  13203. ))
  13204. characterMakers.push(() => makeCharacter(
  13205. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  13206. {
  13207. legendary: {
  13208. height: math.unit(6, "feet"),
  13209. weight: math.unit(150, "lb"),
  13210. name: "Legendary",
  13211. image: {
  13212. source: "./media/characters/lucy/legendary.svg",
  13213. extra: 1355 / 1100,
  13214. bottom: 0.045
  13215. }
  13216. },
  13217. },
  13218. [
  13219. {
  13220. name: "Legendary",
  13221. height: math.unit(86882 * 2, "miles"),
  13222. default: true
  13223. },
  13224. ]
  13225. ))
  13226. characterMakers.push(() => makeCharacter(
  13227. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  13228. {
  13229. front: {
  13230. height: math.unit(6, "feet"),
  13231. weight: math.unit(150, "lb"),
  13232. name: "Front",
  13233. image: {
  13234. source: "./media/characters/drusilla/front.svg",
  13235. extra: 678 / 635,
  13236. bottom: 0.03
  13237. }
  13238. },
  13239. back: {
  13240. height: math.unit(6, "feet"),
  13241. weight: math.unit(150, "lb"),
  13242. name: "Back",
  13243. image: {
  13244. source: "./media/characters/drusilla/back.svg",
  13245. extra: 678 / 635,
  13246. bottom: 0.005
  13247. }
  13248. },
  13249. },
  13250. [
  13251. {
  13252. name: "Macro",
  13253. height: math.unit(100, "feet")
  13254. },
  13255. {
  13256. name: "Canon Height",
  13257. height: math.unit(2000, "feet"),
  13258. default: true
  13259. },
  13260. ]
  13261. ))
  13262. characterMakers.push(() => makeCharacter(
  13263. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  13264. {
  13265. front: {
  13266. height: math.unit(6, "feet"),
  13267. weight: math.unit(180, "lb"),
  13268. name: "Front",
  13269. image: {
  13270. source: "./media/characters/renard-thatch/front.svg",
  13271. extra: 2411 / 2275,
  13272. bottom: 0.01
  13273. }
  13274. },
  13275. frontPosing: {
  13276. height: math.unit(6, "feet"),
  13277. weight: math.unit(180, "lb"),
  13278. name: "Front (Posing)",
  13279. image: {
  13280. source: "./media/characters/renard-thatch/front-posing.svg",
  13281. extra: 2381 / 2261,
  13282. bottom: 0.01
  13283. }
  13284. },
  13285. back: {
  13286. height: math.unit(6, "feet"),
  13287. weight: math.unit(180, "lb"),
  13288. name: "Back",
  13289. image: {
  13290. source: "./media/characters/renard-thatch/back.svg",
  13291. extra: 2428 / 2288
  13292. }
  13293. },
  13294. },
  13295. [
  13296. {
  13297. name: "Micro",
  13298. height: math.unit(3, "inches")
  13299. },
  13300. {
  13301. name: "Default",
  13302. height: math.unit(6, "feet"),
  13303. default: true
  13304. },
  13305. {
  13306. name: "Macro",
  13307. height: math.unit(75, "feet")
  13308. },
  13309. ]
  13310. ))
  13311. characterMakers.push(() => makeCharacter(
  13312. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  13313. {
  13314. front: {
  13315. height: math.unit(1450, "feet"),
  13316. weight: math.unit(1.21e6, "tons"),
  13317. name: "Front",
  13318. image: {
  13319. source: "./media/characters/sekvra/front.svg",
  13320. extra: 1,
  13321. bottom: 0.03
  13322. }
  13323. },
  13324. frontClothed: {
  13325. height: math.unit(1450, "feet"),
  13326. weight: math.unit(1.21e6, "tons"),
  13327. name: "Front (Clothed)",
  13328. image: {
  13329. source: "./media/characters/sekvra/front-clothed.svg",
  13330. extra: 1,
  13331. bottom: 0.03
  13332. }
  13333. },
  13334. side: {
  13335. height: math.unit(1450, "feet"),
  13336. weight: math.unit(1.21e6, "tons"),
  13337. name: "Side",
  13338. image: {
  13339. source: "./media/characters/sekvra/side.svg",
  13340. extra: 1,
  13341. bottom: 0.025
  13342. }
  13343. },
  13344. back: {
  13345. height: math.unit(1450, "feet"),
  13346. weight: math.unit(1.21e6, "tons"),
  13347. name: "Back",
  13348. image: {
  13349. source: "./media/characters/sekvra/back.svg",
  13350. extra: 1,
  13351. bottom: 0.005
  13352. }
  13353. },
  13354. },
  13355. [
  13356. {
  13357. name: "Macro",
  13358. height: math.unit(1450, "feet"),
  13359. default: true
  13360. },
  13361. {
  13362. name: "Megamacro",
  13363. height: math.unit(15000, "feet")
  13364. },
  13365. ]
  13366. ))
  13367. characterMakers.push(() => makeCharacter(
  13368. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  13369. {
  13370. front: {
  13371. height: math.unit(6, "feet"),
  13372. weight: math.unit(150, "lb"),
  13373. name: "Front",
  13374. image: {
  13375. source: "./media/characters/carmine/front.svg",
  13376. extra: 1,
  13377. bottom: 0.035
  13378. }
  13379. },
  13380. frontArmor: {
  13381. height: math.unit(6, "feet"),
  13382. weight: math.unit(150, "lb"),
  13383. name: "Front (Armor)",
  13384. image: {
  13385. source: "./media/characters/carmine/front-armor.svg",
  13386. extra: 1,
  13387. bottom: 0.035
  13388. }
  13389. },
  13390. },
  13391. [
  13392. {
  13393. name: "Large",
  13394. height: math.unit(1, "mile")
  13395. },
  13396. {
  13397. name: "Huge",
  13398. height: math.unit(40, "miles"),
  13399. default: true
  13400. },
  13401. {
  13402. name: "Colossal",
  13403. height: math.unit(2500, "miles")
  13404. },
  13405. ]
  13406. ))
  13407. characterMakers.push(() => makeCharacter(
  13408. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  13409. {
  13410. front: {
  13411. height: math.unit(6, "feet"),
  13412. weight: math.unit(150, "lb"),
  13413. name: "Front",
  13414. image: {
  13415. source: "./media/characters/elyssia/front.svg",
  13416. extra: 2201 / 2035,
  13417. bottom: 0.05
  13418. }
  13419. },
  13420. frontClothed: {
  13421. height: math.unit(6, "feet"),
  13422. weight: math.unit(150, "lb"),
  13423. name: "Front (Clothed)",
  13424. image: {
  13425. source: "./media/characters/elyssia/front-clothed.svg",
  13426. extra: 2201 / 2035,
  13427. bottom: 0.05
  13428. }
  13429. },
  13430. back: {
  13431. height: math.unit(6, "feet"),
  13432. weight: math.unit(150, "lb"),
  13433. name: "Back",
  13434. image: {
  13435. source: "./media/characters/elyssia/back.svg",
  13436. extra: 2201 / 2035,
  13437. bottom: 0.013
  13438. }
  13439. },
  13440. },
  13441. [
  13442. {
  13443. name: "Smaller",
  13444. height: math.unit(150, "feet")
  13445. },
  13446. {
  13447. name: "Standard",
  13448. height: math.unit(1400, "feet"),
  13449. default: true
  13450. },
  13451. {
  13452. name: "Distracted",
  13453. height: math.unit(15000, "feet")
  13454. },
  13455. ]
  13456. ))
  13457. characterMakers.push(() => makeCharacter(
  13458. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  13459. {
  13460. front: {
  13461. height: math.unit(7 + 4 / 12, "feet"),
  13462. weight: math.unit(500, "lb"),
  13463. name: "Front",
  13464. image: {
  13465. source: "./media/characters/geno-maxwell/front.svg",
  13466. extra: 2207 / 2040,
  13467. bottom: 0.015
  13468. }
  13469. },
  13470. },
  13471. [
  13472. {
  13473. name: "Micro",
  13474. height: math.unit(3, "inches")
  13475. },
  13476. {
  13477. name: "Normal",
  13478. height: math.unit(7 + 4 / 12, "feet"),
  13479. default: true
  13480. },
  13481. {
  13482. name: "Macro",
  13483. height: math.unit(220, "feet")
  13484. },
  13485. {
  13486. name: "Megamacro",
  13487. height: math.unit(11, "miles")
  13488. },
  13489. ]
  13490. ))
  13491. characterMakers.push(() => makeCharacter(
  13492. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  13493. {
  13494. front: {
  13495. height: math.unit(7 + 4 / 12, "feet"),
  13496. weight: math.unit(500, "lb"),
  13497. name: "Front",
  13498. image: {
  13499. source: "./media/characters/regena-maxwell/front.svg",
  13500. extra: 3115 / 2770,
  13501. bottom: 0.02
  13502. }
  13503. },
  13504. },
  13505. [
  13506. {
  13507. name: "Normal",
  13508. height: math.unit(7 + 4 / 12, "feet"),
  13509. default: true
  13510. },
  13511. {
  13512. name: "Macro",
  13513. height: math.unit(220, "feet")
  13514. },
  13515. {
  13516. name: "Megamacro",
  13517. height: math.unit(11, "miles")
  13518. },
  13519. ]
  13520. ))
  13521. characterMakers.push(() => makeCharacter(
  13522. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  13523. {
  13524. front: {
  13525. height: math.unit(6, "feet"),
  13526. weight: math.unit(150, "lb"),
  13527. name: "Front",
  13528. image: {
  13529. source: "./media/characters/x-gliding-dragon-x/front.svg",
  13530. extra: 860 / 690,
  13531. bottom: 0.03
  13532. }
  13533. },
  13534. },
  13535. [
  13536. {
  13537. name: "Normal",
  13538. height: math.unit(1.7, "meters"),
  13539. default: true
  13540. },
  13541. ]
  13542. ))
  13543. characterMakers.push(() => makeCharacter(
  13544. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  13545. {
  13546. front: {
  13547. height: math.unit(6, "feet"),
  13548. weight: math.unit(150, "lb"),
  13549. name: "Front",
  13550. image: {
  13551. source: "./media/characters/quilly/front.svg",
  13552. extra: 890 / 776
  13553. }
  13554. },
  13555. },
  13556. [
  13557. {
  13558. name: "Gigamacro",
  13559. height: math.unit(404090, "miles"),
  13560. default: true
  13561. },
  13562. ]
  13563. ))
  13564. characterMakers.push(() => makeCharacter(
  13565. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  13566. {
  13567. front: {
  13568. height: math.unit(7 + 8 / 12, "feet"),
  13569. weight: math.unit(350, "lb"),
  13570. name: "Front",
  13571. image: {
  13572. source: "./media/characters/tempest/front.svg",
  13573. extra: 1175 / 1086,
  13574. bottom: 0.02
  13575. }
  13576. },
  13577. },
  13578. [
  13579. {
  13580. name: "Normal",
  13581. height: math.unit(7 + 8 / 12, "feet"),
  13582. default: true
  13583. },
  13584. ]
  13585. ))
  13586. characterMakers.push(() => makeCharacter(
  13587. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  13588. {
  13589. side: {
  13590. height: math.unit(4 + 5 / 12, "feet"),
  13591. weight: math.unit(80, "lb"),
  13592. name: "Side",
  13593. image: {
  13594. source: "./media/characters/rodger/side.svg",
  13595. extra: 1235 / 1118
  13596. }
  13597. },
  13598. },
  13599. [
  13600. {
  13601. name: "Micro",
  13602. height: math.unit(1, "inch")
  13603. },
  13604. {
  13605. name: "Normal",
  13606. height: math.unit(4 + 5 / 12, "feet"),
  13607. default: true
  13608. },
  13609. {
  13610. name: "Macro",
  13611. height: math.unit(120, "feet")
  13612. },
  13613. ]
  13614. ))
  13615. characterMakers.push(() => makeCharacter(
  13616. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  13617. {
  13618. front: {
  13619. height: math.unit(6, "feet"),
  13620. weight: math.unit(150, "lb"),
  13621. name: "Front",
  13622. image: {
  13623. source: "./media/characters/danyel/front.svg",
  13624. extra: 1185 / 1123,
  13625. bottom: 0.05
  13626. }
  13627. },
  13628. },
  13629. [
  13630. {
  13631. name: "Shrunken",
  13632. height: math.unit(0.5, "mm")
  13633. },
  13634. {
  13635. name: "Micro",
  13636. height: math.unit(1, "mm"),
  13637. default: true
  13638. },
  13639. {
  13640. name: "Upsized",
  13641. height: math.unit(5 + 5 / 12, "feet")
  13642. },
  13643. ]
  13644. ))
  13645. characterMakers.push(() => makeCharacter(
  13646. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  13647. {
  13648. front: {
  13649. height: math.unit(5 + 6 / 12, "feet"),
  13650. weight: math.unit(200, "lb"),
  13651. name: "Front",
  13652. image: {
  13653. source: "./media/characters/vivian-bijoux/front.svg",
  13654. extra: 1,
  13655. bottom: 0.072
  13656. }
  13657. },
  13658. },
  13659. [
  13660. {
  13661. name: "Normal",
  13662. height: math.unit(5 + 6 / 12, "feet"),
  13663. default: true
  13664. },
  13665. {
  13666. name: "Bad Dream",
  13667. height: math.unit(500, "feet")
  13668. },
  13669. {
  13670. name: "Nightmare",
  13671. height: math.unit(500, "miles")
  13672. },
  13673. ]
  13674. ))
  13675. characterMakers.push(() => makeCharacter(
  13676. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  13677. {
  13678. front: {
  13679. height: math.unit(6 + 1 / 12, "feet"),
  13680. weight: math.unit(260, "lb"),
  13681. name: "Front",
  13682. image: {
  13683. source: "./media/characters/zeta/front.svg",
  13684. extra: 1968 / 1889,
  13685. bottom: 0.06
  13686. }
  13687. },
  13688. back: {
  13689. height: math.unit(6 + 1 / 12, "feet"),
  13690. weight: math.unit(260, "lb"),
  13691. name: "Back",
  13692. image: {
  13693. source: "./media/characters/zeta/back.svg",
  13694. extra: 1944 / 1858,
  13695. bottom: 0.03
  13696. }
  13697. },
  13698. hand: {
  13699. height: math.unit(1.112, "feet"),
  13700. name: "Hand",
  13701. image: {
  13702. source: "./media/characters/zeta/hand.svg"
  13703. }
  13704. },
  13705. foot: {
  13706. height: math.unit(1.48, "feet"),
  13707. name: "Foot",
  13708. image: {
  13709. source: "./media/characters/zeta/foot.svg"
  13710. }
  13711. },
  13712. },
  13713. [
  13714. {
  13715. name: "Micro",
  13716. height: math.unit(6, "inches")
  13717. },
  13718. {
  13719. name: "Normal",
  13720. height: math.unit(6 + 1 / 12, "feet"),
  13721. default: true
  13722. },
  13723. {
  13724. name: "Macro",
  13725. height: math.unit(20, "feet")
  13726. },
  13727. ]
  13728. ))
  13729. characterMakers.push(() => makeCharacter(
  13730. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  13731. {
  13732. front: {
  13733. height: math.unit(6, "feet"),
  13734. weight: math.unit(150, "lb"),
  13735. name: "Front",
  13736. image: {
  13737. source: "./media/characters/jamie-larsen/front.svg",
  13738. extra: 962 / 933,
  13739. bottom: 0.02
  13740. }
  13741. },
  13742. back: {
  13743. height: math.unit(6, "feet"),
  13744. weight: math.unit(150, "lb"),
  13745. name: "Back",
  13746. image: {
  13747. source: "./media/characters/jamie-larsen/back.svg",
  13748. extra: 997 / 946
  13749. }
  13750. },
  13751. },
  13752. [
  13753. {
  13754. name: "Macro",
  13755. height: math.unit(28 + 7 / 12, "feet"),
  13756. default: true
  13757. },
  13758. {
  13759. name: "Macro+",
  13760. height: math.unit(180, "feet")
  13761. },
  13762. {
  13763. name: "Megamacro",
  13764. height: math.unit(10, "miles")
  13765. },
  13766. {
  13767. name: "Gigamacro",
  13768. height: math.unit(200000, "miles")
  13769. },
  13770. ]
  13771. ))
  13772. characterMakers.push(() => makeCharacter(
  13773. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  13774. {
  13775. front: {
  13776. height: math.unit(6, "feet"),
  13777. weight: math.unit(120, "lb"),
  13778. name: "Front",
  13779. image: {
  13780. source: "./media/characters/vance/front.svg",
  13781. extra: 1980 / 1890,
  13782. bottom: 0.09
  13783. }
  13784. },
  13785. back: {
  13786. height: math.unit(6, "feet"),
  13787. weight: math.unit(120, "lb"),
  13788. name: "Back",
  13789. image: {
  13790. source: "./media/characters/vance/back.svg",
  13791. extra: 2081 / 1994,
  13792. bottom: 0.014
  13793. }
  13794. },
  13795. hand: {
  13796. height: math.unit(0.88, "feet"),
  13797. name: "Hand",
  13798. image: {
  13799. source: "./media/characters/vance/hand.svg"
  13800. }
  13801. },
  13802. foot: {
  13803. height: math.unit(0.64, "feet"),
  13804. name: "Foot",
  13805. image: {
  13806. source: "./media/characters/vance/foot.svg"
  13807. }
  13808. },
  13809. },
  13810. [
  13811. {
  13812. name: "Small",
  13813. height: math.unit(90, "feet"),
  13814. default: true
  13815. },
  13816. {
  13817. name: "Macro",
  13818. height: math.unit(100, "meters")
  13819. },
  13820. {
  13821. name: "Megamacro",
  13822. height: math.unit(15, "miles")
  13823. },
  13824. ]
  13825. ))
  13826. characterMakers.push(() => makeCharacter(
  13827. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  13828. {
  13829. front: {
  13830. height: math.unit(6, "feet"),
  13831. weight: math.unit(180, "lb"),
  13832. name: "Front",
  13833. image: {
  13834. source: "./media/characters/xochitl/front.svg",
  13835. extra: 2297 / 2261,
  13836. bottom: 0.065
  13837. }
  13838. },
  13839. back: {
  13840. height: math.unit(6, "feet"),
  13841. weight: math.unit(180, "lb"),
  13842. name: "Back",
  13843. image: {
  13844. source: "./media/characters/xochitl/back.svg",
  13845. extra: 2386 / 2354,
  13846. bottom: 0.01
  13847. }
  13848. },
  13849. foot: {
  13850. height: math.unit(6 / 5 * 1.15, "feet"),
  13851. weight: math.unit(150, "lb"),
  13852. name: "Foot",
  13853. image: {
  13854. source: "./media/characters/xochitl/foot.svg"
  13855. }
  13856. },
  13857. },
  13858. [
  13859. {
  13860. name: "Macro",
  13861. height: math.unit(80, "feet")
  13862. },
  13863. {
  13864. name: "Macro+",
  13865. height: math.unit(400, "feet"),
  13866. default: true
  13867. },
  13868. {
  13869. name: "Gigamacro",
  13870. height: math.unit(80000, "miles")
  13871. },
  13872. {
  13873. name: "Gigamacro+",
  13874. height: math.unit(400000, "miles")
  13875. },
  13876. {
  13877. name: "Teramacro",
  13878. height: math.unit(300, "AU")
  13879. },
  13880. ]
  13881. ))
  13882. characterMakers.push(() => makeCharacter(
  13883. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  13884. {
  13885. front: {
  13886. height: math.unit(6, "feet"),
  13887. weight: math.unit(150, "lb"),
  13888. name: "Front",
  13889. image: {
  13890. source: "./media/characters/vincent/front.svg",
  13891. extra: 1130 / 1080,
  13892. bottom: 0.055
  13893. }
  13894. },
  13895. beak: {
  13896. height: math.unit(6 * 0.1, "feet"),
  13897. name: "Beak",
  13898. image: {
  13899. source: "./media/characters/vincent/beak.svg"
  13900. }
  13901. },
  13902. hand: {
  13903. height: math.unit(6 * 0.85, "feet"),
  13904. weight: math.unit(150, "lb"),
  13905. name: "Hand",
  13906. image: {
  13907. source: "./media/characters/vincent/hand.svg"
  13908. }
  13909. },
  13910. foot: {
  13911. height: math.unit(6 * 0.19, "feet"),
  13912. weight: math.unit(150, "lb"),
  13913. name: "Foot",
  13914. image: {
  13915. source: "./media/characters/vincent/foot.svg"
  13916. }
  13917. },
  13918. },
  13919. [
  13920. {
  13921. name: "Base",
  13922. height: math.unit(6 + 5 / 12, "feet"),
  13923. default: true
  13924. },
  13925. {
  13926. name: "Macro",
  13927. height: math.unit(300, "feet")
  13928. },
  13929. {
  13930. name: "Megamacro",
  13931. height: math.unit(2, "miles")
  13932. },
  13933. {
  13934. name: "Gigamacro",
  13935. height: math.unit(1000, "miles")
  13936. },
  13937. ]
  13938. ))
  13939. characterMakers.push(() => makeCharacter(
  13940. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  13941. {
  13942. front: {
  13943. height: math.unit(2, "meters"),
  13944. weight: math.unit(500, "kg"),
  13945. name: "Front",
  13946. image: {
  13947. source: "./media/characters/coatl/front.svg",
  13948. extra: 3948 / 3500,
  13949. bottom: 0.082
  13950. }
  13951. },
  13952. },
  13953. [
  13954. {
  13955. name: "Normal",
  13956. height: math.unit(4, "meters")
  13957. },
  13958. {
  13959. name: "Macro",
  13960. height: math.unit(100, "meters"),
  13961. default: true
  13962. },
  13963. {
  13964. name: "Macro+",
  13965. height: math.unit(300, "meters")
  13966. },
  13967. {
  13968. name: "Megamacro",
  13969. height: math.unit(3, "gigameters")
  13970. },
  13971. {
  13972. name: "Megamacro+",
  13973. height: math.unit(300, "terameters")
  13974. },
  13975. {
  13976. name: "Megamacro++",
  13977. height: math.unit(3, "lightyears")
  13978. },
  13979. ]
  13980. ))
  13981. characterMakers.push(() => makeCharacter(
  13982. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  13983. {
  13984. front: {
  13985. height: math.unit(6, "feet"),
  13986. weight: math.unit(50, "kg"),
  13987. name: "front",
  13988. image: {
  13989. source: "./media/characters/shiroryu/front.svg",
  13990. extra: 1990 / 1935
  13991. }
  13992. },
  13993. },
  13994. [
  13995. {
  13996. name: "Mortal Mingling",
  13997. height: math.unit(3, "meters")
  13998. },
  13999. {
  14000. name: "Kaiju-ish",
  14001. height: math.unit(250, "meters")
  14002. },
  14003. {
  14004. name: "Somewhat Godly",
  14005. height: math.unit(400, "km"),
  14006. default: true
  14007. },
  14008. {
  14009. name: "Planetary",
  14010. height: math.unit(300, "megameters")
  14011. },
  14012. {
  14013. name: "Galaxy-dwarfing",
  14014. height: math.unit(450, "kiloparsecs")
  14015. },
  14016. {
  14017. name: "Universe Eater",
  14018. height: math.unit(150, "gigaparsecs")
  14019. },
  14020. {
  14021. name: "Almost Immeasurable",
  14022. height: math.unit(1.3e266, "yottaparsecs")
  14023. },
  14024. ]
  14025. ))
  14026. characterMakers.push(() => makeCharacter(
  14027. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  14028. {
  14029. front: {
  14030. height: math.unit(6, "feet"),
  14031. weight: math.unit(150, "lb"),
  14032. name: "Front",
  14033. image: {
  14034. source: "./media/characters/umeko/front.svg",
  14035. extra: 1,
  14036. bottom: 0.019
  14037. }
  14038. },
  14039. frontArmored: {
  14040. height: math.unit(6, "feet"),
  14041. weight: math.unit(150, "lb"),
  14042. name: "Front (Armored)",
  14043. image: {
  14044. source: "./media/characters/umeko/front-armored.svg",
  14045. extra: 1,
  14046. bottom: 0.021
  14047. }
  14048. },
  14049. },
  14050. [
  14051. {
  14052. name: "Macro",
  14053. height: math.unit(220, "feet"),
  14054. default: true
  14055. },
  14056. {
  14057. name: "Guardian Dragon",
  14058. height: math.unit(50, "miles")
  14059. },
  14060. {
  14061. name: "Cosmic",
  14062. height: math.unit(800000, "miles")
  14063. },
  14064. ]
  14065. ))
  14066. characterMakers.push(() => makeCharacter(
  14067. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  14068. {
  14069. front: {
  14070. height: math.unit(6, "feet"),
  14071. weight: math.unit(150, "lb"),
  14072. name: "Front",
  14073. image: {
  14074. source: "./media/characters/cassidy/front.svg",
  14075. extra: 1,
  14076. bottom: 0.043
  14077. }
  14078. },
  14079. },
  14080. [
  14081. {
  14082. name: "Canon Height",
  14083. height: math.unit(120, "feet"),
  14084. default: true
  14085. },
  14086. {
  14087. name: "Macro+",
  14088. height: math.unit(400, "feet")
  14089. },
  14090. {
  14091. name: "Macro++",
  14092. height: math.unit(4000, "feet")
  14093. },
  14094. {
  14095. name: "Megamacro",
  14096. height: math.unit(3, "miles")
  14097. },
  14098. ]
  14099. ))
  14100. characterMakers.push(() => makeCharacter(
  14101. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  14102. {
  14103. front: {
  14104. height: math.unit(6, "feet"),
  14105. weight: math.unit(150, "lb"),
  14106. name: "Front",
  14107. image: {
  14108. source: "./media/characters/isaac/front.svg",
  14109. extra: 896 / 815,
  14110. bottom: 0.11
  14111. }
  14112. },
  14113. },
  14114. [
  14115. {
  14116. name: "Human Size",
  14117. height: math.unit(8, "feet"),
  14118. default: true
  14119. },
  14120. {
  14121. name: "Macro",
  14122. height: math.unit(400, "feet")
  14123. },
  14124. {
  14125. name: "Megamacro",
  14126. height: math.unit(50, "miles")
  14127. },
  14128. {
  14129. name: "Canon Height",
  14130. height: math.unit(200, "AU")
  14131. },
  14132. ]
  14133. ))
  14134. characterMakers.push(() => makeCharacter(
  14135. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  14136. {
  14137. front: {
  14138. height: math.unit(6, "feet"),
  14139. weight: math.unit(72, "kg"),
  14140. name: "Front",
  14141. image: {
  14142. source: "./media/characters/sleekit/front.svg",
  14143. extra: 4693 / 4487,
  14144. bottom: 0.012
  14145. }
  14146. },
  14147. },
  14148. [
  14149. {
  14150. name: "Minimum Height",
  14151. height: math.unit(10, "meters")
  14152. },
  14153. {
  14154. name: "Smaller",
  14155. height: math.unit(25, "meters")
  14156. },
  14157. {
  14158. name: "Larger",
  14159. height: math.unit(38, "meters"),
  14160. default: true
  14161. },
  14162. {
  14163. name: "Maximum height",
  14164. height: math.unit(100, "meters")
  14165. },
  14166. ]
  14167. ))
  14168. characterMakers.push(() => makeCharacter(
  14169. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  14170. {
  14171. front: {
  14172. height: math.unit(6, "feet"),
  14173. weight: math.unit(150, "lb"),
  14174. name: "Front",
  14175. image: {
  14176. source: "./media/characters/nillia/front.svg",
  14177. extra: 2195 / 2037,
  14178. bottom: 0.005
  14179. }
  14180. },
  14181. back: {
  14182. height: math.unit(6, "feet"),
  14183. weight: math.unit(150, "lb"),
  14184. name: "Back",
  14185. image: {
  14186. source: "./media/characters/nillia/back.svg",
  14187. extra: 2195 / 2037,
  14188. bottom: 0.005
  14189. }
  14190. },
  14191. },
  14192. [
  14193. {
  14194. name: "Canon Height",
  14195. height: math.unit(489, "feet"),
  14196. default: true
  14197. }
  14198. ]
  14199. ))
  14200. characterMakers.push(() => makeCharacter(
  14201. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  14202. {
  14203. front: {
  14204. height: math.unit(6, "feet"),
  14205. weight: math.unit(150, "lb"),
  14206. name: "Front",
  14207. image: {
  14208. source: "./media/characters/mesmyriza/front.svg",
  14209. extra: 2067 / 1784,
  14210. bottom: 0.035
  14211. }
  14212. },
  14213. foot: {
  14214. height: math.unit(6 / (250 / 35), "feet"),
  14215. name: "Foot",
  14216. image: {
  14217. source: "./media/characters/mesmyriza/foot.svg"
  14218. }
  14219. },
  14220. },
  14221. [
  14222. {
  14223. name: "Macro",
  14224. height: math.unit(457, "meters"),
  14225. default: true
  14226. },
  14227. {
  14228. name: "Megamacro",
  14229. height: math.unit(8, "megameters")
  14230. },
  14231. ]
  14232. ))
  14233. characterMakers.push(() => makeCharacter(
  14234. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  14235. {
  14236. front: {
  14237. height: math.unit(6, "feet"),
  14238. weight: math.unit(250, "lb"),
  14239. name: "Front",
  14240. image: {
  14241. source: "./media/characters/saudade/front.svg",
  14242. extra: 1172 / 1139,
  14243. bottom: 0.035
  14244. }
  14245. },
  14246. },
  14247. [
  14248. {
  14249. name: "Micro",
  14250. height: math.unit(3, "inches")
  14251. },
  14252. {
  14253. name: "Normal",
  14254. height: math.unit(6, "feet"),
  14255. default: true
  14256. },
  14257. {
  14258. name: "Macro",
  14259. height: math.unit(50, "feet")
  14260. },
  14261. {
  14262. name: "Megamacro",
  14263. height: math.unit(2800, "feet")
  14264. },
  14265. ]
  14266. ))
  14267. characterMakers.push(() => makeCharacter(
  14268. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  14269. {
  14270. front: {
  14271. height: math.unit(5 + 4 / 12, "feet"),
  14272. weight: math.unit(100, "lb"),
  14273. name: "Front",
  14274. image: {
  14275. source: "./media/characters/keireer/front.svg",
  14276. extra: 716 / 666,
  14277. bottom: 0.05
  14278. }
  14279. },
  14280. },
  14281. [
  14282. {
  14283. name: "Normal",
  14284. height: math.unit(5 + 4 / 12, "feet"),
  14285. default: true
  14286. },
  14287. ]
  14288. ))
  14289. characterMakers.push(() => makeCharacter(
  14290. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  14291. {
  14292. front: {
  14293. height: math.unit(6, "feet"),
  14294. weight: math.unit(90, "kg"),
  14295. name: "Front",
  14296. image: {
  14297. source: "./media/characters/mirja/front.svg",
  14298. extra: 1789 / 1683,
  14299. bottom: 0.05
  14300. }
  14301. },
  14302. frontDressed: {
  14303. height: math.unit(6, "feet"),
  14304. weight: math.unit(90, "lb"),
  14305. name: "Front (Dressed)",
  14306. image: {
  14307. source: "./media/characters/mirja/front-dressed.svg",
  14308. extra: 1789 / 1683,
  14309. bottom: 0.05
  14310. }
  14311. },
  14312. back: {
  14313. height: math.unit(6, "feet"),
  14314. weight: math.unit(90, "lb"),
  14315. name: "Back",
  14316. image: {
  14317. source: "./media/characters/mirja/back.svg",
  14318. extra: 953 / 917,
  14319. bottom: 0.017
  14320. }
  14321. },
  14322. },
  14323. [
  14324. {
  14325. name: "\"Incognito\"",
  14326. height: math.unit(3, "meters")
  14327. },
  14328. {
  14329. name: "Strolling Size",
  14330. height: math.unit(15, "km")
  14331. },
  14332. {
  14333. name: "Larger Strolling Size",
  14334. height: math.unit(400, "km")
  14335. },
  14336. {
  14337. name: "Preferred Size",
  14338. height: math.unit(5000, "km")
  14339. },
  14340. {
  14341. name: "True Size",
  14342. height: math.unit(30657809462086840000000000000000, "parsecs"),
  14343. default: true
  14344. },
  14345. ]
  14346. ))
  14347. characterMakers.push(() => makeCharacter(
  14348. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  14349. {
  14350. front: {
  14351. height: math.unit(15, "feet"),
  14352. weight: math.unit(880, "kg"),
  14353. name: "Front",
  14354. image: {
  14355. source: "./media/characters/nightraver/front.svg",
  14356. extra: 2444 / 2160,
  14357. bottom: 0.027
  14358. }
  14359. },
  14360. back: {
  14361. height: math.unit(15, "feet"),
  14362. weight: math.unit(880, "kg"),
  14363. name: "Back",
  14364. image: {
  14365. source: "./media/characters/nightraver/back.svg",
  14366. extra: 2309 / 2180,
  14367. bottom: 0.005
  14368. }
  14369. },
  14370. sole: {
  14371. height: math.unit(2.878, "feet"),
  14372. name: "Sole",
  14373. image: {
  14374. source: "./media/characters/nightraver/sole.svg"
  14375. }
  14376. },
  14377. foot: {
  14378. height: math.unit(2.285, "feet"),
  14379. name: "Foot",
  14380. image: {
  14381. source: "./media/characters/nightraver/foot.svg"
  14382. }
  14383. },
  14384. maw: {
  14385. height: math.unit(2.67, "feet"),
  14386. name: "Maw",
  14387. image: {
  14388. source: "./media/characters/nightraver/maw.svg"
  14389. }
  14390. },
  14391. },
  14392. [
  14393. {
  14394. name: "Micro",
  14395. height: math.unit(1, "cm")
  14396. },
  14397. {
  14398. name: "Normal",
  14399. height: math.unit(15, "feet"),
  14400. default: true
  14401. },
  14402. {
  14403. name: "Macro",
  14404. height: math.unit(300, "feet")
  14405. },
  14406. {
  14407. name: "Megamacro",
  14408. height: math.unit(300, "miles")
  14409. },
  14410. {
  14411. name: "Gigamacro",
  14412. height: math.unit(10000, "miles")
  14413. },
  14414. ]
  14415. ))
  14416. characterMakers.push(() => makeCharacter(
  14417. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  14418. {
  14419. side: {
  14420. height: math.unit(2, "inches"),
  14421. weight: math.unit(5, "grams"),
  14422. name: "Side",
  14423. image: {
  14424. source: "./media/characters/arc/side.svg"
  14425. }
  14426. },
  14427. },
  14428. [
  14429. {
  14430. name: "Micro",
  14431. height: math.unit(2, "inches"),
  14432. default: true
  14433. },
  14434. ]
  14435. ))
  14436. characterMakers.push(() => makeCharacter(
  14437. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  14438. {
  14439. front: {
  14440. height: math.unit(1.1938, "meters"),
  14441. weight: math.unit(54, "kg"),
  14442. name: "Front",
  14443. image: {
  14444. source: "./media/characters/nebula-shahar/front.svg",
  14445. extra: 1642 / 1436,
  14446. bottom: 0.06
  14447. }
  14448. },
  14449. },
  14450. [
  14451. {
  14452. name: "Megamicro",
  14453. height: math.unit(0.3, "mm")
  14454. },
  14455. {
  14456. name: "Micro",
  14457. height: math.unit(3, "cm")
  14458. },
  14459. {
  14460. name: "Normal",
  14461. height: math.unit(138, "cm"),
  14462. default: true
  14463. },
  14464. {
  14465. name: "Macro",
  14466. height: math.unit(30, "m")
  14467. },
  14468. ]
  14469. ))
  14470. characterMakers.push(() => makeCharacter(
  14471. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  14472. {
  14473. front: {
  14474. height: math.unit(5.24, "feet"),
  14475. weight: math.unit(150, "lb"),
  14476. name: "Front",
  14477. image: {
  14478. source: "./media/characters/shayla/front.svg",
  14479. extra: 1512 / 1414,
  14480. bottom: 0.01
  14481. }
  14482. },
  14483. back: {
  14484. height: math.unit(5.24, "feet"),
  14485. weight: math.unit(150, "lb"),
  14486. name: "Back",
  14487. image: {
  14488. source: "./media/characters/shayla/back.svg",
  14489. extra: 1512 / 1414
  14490. }
  14491. },
  14492. hand: {
  14493. height: math.unit(0.7781496062992126, "feet"),
  14494. name: "Hand",
  14495. image: {
  14496. source: "./media/characters/shayla/hand.svg"
  14497. }
  14498. },
  14499. foot: {
  14500. height: math.unit(1.4206036745406823, "feet"),
  14501. name: "Foot",
  14502. image: {
  14503. source: "./media/characters/shayla/foot.svg"
  14504. }
  14505. },
  14506. },
  14507. [
  14508. {
  14509. name: "Micro",
  14510. height: math.unit(0.32, "feet")
  14511. },
  14512. {
  14513. name: "Normal",
  14514. height: math.unit(5.24, "feet"),
  14515. default: true
  14516. },
  14517. {
  14518. name: "Macro",
  14519. height: math.unit(492.12, "feet")
  14520. },
  14521. {
  14522. name: "Megamacro",
  14523. height: math.unit(186.41, "miles")
  14524. },
  14525. ]
  14526. ))
  14527. characterMakers.push(() => makeCharacter(
  14528. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  14529. {
  14530. front: {
  14531. height: math.unit(2.2, "m"),
  14532. weight: math.unit(120, "kg"),
  14533. name: "Front",
  14534. image: {
  14535. source: "./media/characters/pia-jr/front.svg",
  14536. extra: 1000 / 970,
  14537. bottom: 0.035
  14538. }
  14539. },
  14540. hand: {
  14541. height: math.unit(0.759 * 7.21 / 6, "feet"),
  14542. name: "Hand",
  14543. image: {
  14544. source: "./media/characters/pia-jr/hand.svg"
  14545. }
  14546. },
  14547. paw: {
  14548. height: math.unit(1.185 * 7.21 / 6, "feet"),
  14549. name: "Paw",
  14550. image: {
  14551. source: "./media/characters/pia-jr/paw.svg"
  14552. }
  14553. },
  14554. },
  14555. [
  14556. {
  14557. name: "Micro",
  14558. height: math.unit(1.2, "cm")
  14559. },
  14560. {
  14561. name: "Normal",
  14562. height: math.unit(2.2, "m"),
  14563. default: true
  14564. },
  14565. {
  14566. name: "Macro",
  14567. height: math.unit(180, "m")
  14568. },
  14569. {
  14570. name: "Megamacro",
  14571. height: math.unit(420, "km")
  14572. },
  14573. ]
  14574. ))
  14575. characterMakers.push(() => makeCharacter(
  14576. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  14577. {
  14578. front: {
  14579. height: math.unit(2, "m"),
  14580. weight: math.unit(115, "kg"),
  14581. name: "Front",
  14582. image: {
  14583. source: "./media/characters/pia-sr/front.svg",
  14584. extra: 760 / 730,
  14585. bottom: 0.015
  14586. }
  14587. },
  14588. back: {
  14589. height: math.unit(2, "m"),
  14590. weight: math.unit(115, "kg"),
  14591. name: "Back",
  14592. image: {
  14593. source: "./media/characters/pia-sr/back.svg",
  14594. extra: 760 / 730,
  14595. bottom: 0.01
  14596. }
  14597. },
  14598. hand: {
  14599. height: math.unit(0.89 * 6.56 / 6, "feet"),
  14600. name: "Hand",
  14601. image: {
  14602. source: "./media/characters/pia-sr/hand.svg"
  14603. }
  14604. },
  14605. foot: {
  14606. height: math.unit(1.83, "feet"),
  14607. name: "Foot",
  14608. image: {
  14609. source: "./media/characters/pia-sr/foot.svg"
  14610. }
  14611. },
  14612. },
  14613. [
  14614. {
  14615. name: "Micro",
  14616. height: math.unit(88, "mm")
  14617. },
  14618. {
  14619. name: "Normal",
  14620. height: math.unit(2, "m"),
  14621. default: true
  14622. },
  14623. {
  14624. name: "Macro",
  14625. height: math.unit(200, "m")
  14626. },
  14627. {
  14628. name: "Megamacro",
  14629. height: math.unit(420, "km")
  14630. },
  14631. ]
  14632. ))
  14633. characterMakers.push(() => makeCharacter(
  14634. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  14635. {
  14636. front: {
  14637. height: math.unit(8 + 2 / 12, "feet"),
  14638. weight: math.unit(300, "lb"),
  14639. name: "Front",
  14640. image: {
  14641. source: "./media/characters/kibibyte/front.svg",
  14642. extra: 2221 / 2098,
  14643. bottom: 0.04
  14644. }
  14645. },
  14646. },
  14647. [
  14648. {
  14649. name: "Normal",
  14650. height: math.unit(8 + 2 / 12, "feet"),
  14651. default: true
  14652. },
  14653. {
  14654. name: "Socialable Macro",
  14655. height: math.unit(50, "feet")
  14656. },
  14657. {
  14658. name: "Macro",
  14659. height: math.unit(300, "feet")
  14660. },
  14661. {
  14662. name: "Megamacro",
  14663. height: math.unit(500, "miles")
  14664. },
  14665. ]
  14666. ))
  14667. characterMakers.push(() => makeCharacter(
  14668. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  14669. {
  14670. front: {
  14671. height: math.unit(6, "feet"),
  14672. weight: math.unit(150, "lb"),
  14673. name: "Front",
  14674. image: {
  14675. source: "./media/characters/felix/front.svg",
  14676. extra: 762 / 722,
  14677. bottom: 0.02
  14678. }
  14679. },
  14680. frontClothed: {
  14681. height: math.unit(6, "feet"),
  14682. weight: math.unit(150, "lb"),
  14683. name: "Front (Clothed)",
  14684. image: {
  14685. source: "./media/characters/felix/front-clothed.svg",
  14686. extra: 762 / 722,
  14687. bottom: 0.02
  14688. }
  14689. },
  14690. },
  14691. [
  14692. {
  14693. name: "Normal",
  14694. height: math.unit(6 + 8 / 12, "feet"),
  14695. default: true
  14696. },
  14697. {
  14698. name: "Macro",
  14699. height: math.unit(2600, "feet")
  14700. },
  14701. {
  14702. name: "Megamacro",
  14703. height: math.unit(450, "miles")
  14704. },
  14705. ]
  14706. ))
  14707. characterMakers.push(() => makeCharacter(
  14708. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  14709. {
  14710. front: {
  14711. height: math.unit(6 + 1 / 12, "feet"),
  14712. weight: math.unit(250, "lb"),
  14713. name: "Front",
  14714. image: {
  14715. source: "./media/characters/tobo/front.svg",
  14716. extra: 608 / 586,
  14717. bottom: 0.023
  14718. }
  14719. },
  14720. back: {
  14721. height: math.unit(6 + 1 / 12, "feet"),
  14722. weight: math.unit(250, "lb"),
  14723. name: "Back",
  14724. image: {
  14725. source: "./media/characters/tobo/back.svg",
  14726. extra: 608 / 586
  14727. }
  14728. },
  14729. },
  14730. [
  14731. {
  14732. name: "Nano",
  14733. height: math.unit(2, "nm")
  14734. },
  14735. {
  14736. name: "Megamicro",
  14737. height: math.unit(0.1, "mm")
  14738. },
  14739. {
  14740. name: "Micro",
  14741. height: math.unit(1, "inch"),
  14742. default: true
  14743. },
  14744. {
  14745. name: "Human-sized",
  14746. height: math.unit(6 + 1 / 12, "feet")
  14747. },
  14748. {
  14749. name: "Macro",
  14750. height: math.unit(250, "feet")
  14751. },
  14752. {
  14753. name: "Megamacro",
  14754. height: math.unit(75, "miles")
  14755. },
  14756. {
  14757. name: "Texas-sized",
  14758. height: math.unit(750, "miles")
  14759. },
  14760. {
  14761. name: "Teramacro",
  14762. height: math.unit(50000, "miles")
  14763. },
  14764. ]
  14765. ))
  14766. characterMakers.push(() => makeCharacter(
  14767. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  14768. {
  14769. front: {
  14770. height: math.unit(6, "feet"),
  14771. weight: math.unit(269, "lb"),
  14772. name: "Front",
  14773. image: {
  14774. source: "./media/characters/danny-kapowsky/front.svg",
  14775. extra: 766 / 736,
  14776. bottom: 0.044
  14777. }
  14778. },
  14779. back: {
  14780. height: math.unit(6, "feet"),
  14781. weight: math.unit(269, "lb"),
  14782. name: "Back",
  14783. image: {
  14784. source: "./media/characters/danny-kapowsky/back.svg",
  14785. extra: 797 / 760,
  14786. bottom: 0.025
  14787. }
  14788. },
  14789. },
  14790. [
  14791. {
  14792. name: "Macro",
  14793. height: math.unit(150, "feet"),
  14794. default: true
  14795. },
  14796. {
  14797. name: "Macro+",
  14798. height: math.unit(200, "feet")
  14799. },
  14800. {
  14801. name: "Macro++",
  14802. height: math.unit(300, "feet")
  14803. },
  14804. {
  14805. name: "Macro+++",
  14806. height: math.unit(400, "feet")
  14807. },
  14808. ]
  14809. ))
  14810. characterMakers.push(() => makeCharacter(
  14811. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  14812. {
  14813. side: {
  14814. height: math.unit(6, "feet"),
  14815. weight: math.unit(170, "lb"),
  14816. name: "Side",
  14817. image: {
  14818. source: "./media/characters/finn/side.svg",
  14819. extra: 1953 / 1807,
  14820. bottom: 0.057
  14821. }
  14822. },
  14823. },
  14824. [
  14825. {
  14826. name: "Megamacro",
  14827. height: math.unit(14445, "feet"),
  14828. default: true
  14829. },
  14830. ]
  14831. ))
  14832. characterMakers.push(() => makeCharacter(
  14833. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  14834. {
  14835. front: {
  14836. height: math.unit(5 + 6 / 12, "feet"),
  14837. weight: math.unit(125, "lb"),
  14838. name: "Front",
  14839. image: {
  14840. source: "./media/characters/roy/front.svg",
  14841. extra: 1,
  14842. bottom: 0.11
  14843. }
  14844. },
  14845. },
  14846. [
  14847. {
  14848. name: "Micro",
  14849. height: math.unit(3, "inches"),
  14850. default: true
  14851. },
  14852. {
  14853. name: "Normal",
  14854. height: math.unit(5 + 6 / 12, "feet")
  14855. },
  14856. {
  14857. name: "Lesser Macro",
  14858. height: math.unit(60, "feet")
  14859. },
  14860. {
  14861. name: "Greater Macro",
  14862. height: math.unit(120, "feet")
  14863. },
  14864. ]
  14865. ))
  14866. characterMakers.push(() => makeCharacter(
  14867. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  14868. {
  14869. front: {
  14870. height: math.unit(6, "feet"),
  14871. weight: math.unit(100, "lb"),
  14872. name: "Front",
  14873. image: {
  14874. source: "./media/characters/aevsivs/front.svg",
  14875. extra: 1,
  14876. bottom: 0.03
  14877. }
  14878. },
  14879. back: {
  14880. height: math.unit(6, "feet"),
  14881. weight: math.unit(100, "lb"),
  14882. name: "Back",
  14883. image: {
  14884. source: "./media/characters/aevsivs/back.svg"
  14885. }
  14886. },
  14887. },
  14888. [
  14889. {
  14890. name: "Micro",
  14891. height: math.unit(2, "inches"),
  14892. default: true
  14893. },
  14894. {
  14895. name: "Normal",
  14896. height: math.unit(5, "feet")
  14897. },
  14898. ]
  14899. ))
  14900. characterMakers.push(() => makeCharacter(
  14901. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  14902. {
  14903. front: {
  14904. height: math.unit(5 + 7 / 12, "feet"),
  14905. weight: math.unit(159, "lb"),
  14906. name: "Front",
  14907. image: {
  14908. source: "./media/characters/hildegard/front.svg",
  14909. extra: 289 / 269,
  14910. bottom: 7.63 / 297.8
  14911. }
  14912. },
  14913. back: {
  14914. height: math.unit(5 + 7 / 12, "feet"),
  14915. weight: math.unit(159, "lb"),
  14916. name: "Back",
  14917. image: {
  14918. source: "./media/characters/hildegard/back.svg",
  14919. extra: 280 / 260,
  14920. bottom: 2.3 / 282
  14921. }
  14922. },
  14923. },
  14924. [
  14925. {
  14926. name: "Normal",
  14927. height: math.unit(5 + 7 / 12, "feet"),
  14928. default: true
  14929. },
  14930. ]
  14931. ))
  14932. characterMakers.push(() => makeCharacter(
  14933. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  14934. {
  14935. bernard: {
  14936. height: math.unit(2 + 7 / 12, "feet"),
  14937. weight: math.unit(66, "lb"),
  14938. name: "Bernard",
  14939. rename: true,
  14940. image: {
  14941. source: "./media/characters/bernard-wilder/bernard.svg",
  14942. extra: 192 / 128,
  14943. bottom: 0.05
  14944. }
  14945. },
  14946. wilder: {
  14947. height: math.unit(5 + 8 / 12, "feet"),
  14948. weight: math.unit(143, "lb"),
  14949. name: "Wilder",
  14950. rename: true,
  14951. image: {
  14952. source: "./media/characters/bernard-wilder/wilder.svg",
  14953. extra: 361 / 312,
  14954. bottom: 0.02
  14955. }
  14956. },
  14957. },
  14958. [
  14959. {
  14960. name: "Normal",
  14961. height: math.unit(2 + 7 / 12, "feet"),
  14962. default: true
  14963. },
  14964. ]
  14965. ))
  14966. characterMakers.push(() => makeCharacter(
  14967. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  14968. {
  14969. anthro: {
  14970. height: math.unit(6 + 1 / 12, "feet"),
  14971. weight: math.unit(155, "lb"),
  14972. name: "Anthro",
  14973. image: {
  14974. source: "./media/characters/hearth/anthro.svg",
  14975. extra: 260 / 250,
  14976. bottom: 0.02
  14977. }
  14978. },
  14979. feral: {
  14980. height: math.unit(3.78, "feet"),
  14981. weight: math.unit(35, "kg"),
  14982. name: "Feral",
  14983. image: {
  14984. source: "./media/characters/hearth/feral.svg",
  14985. extra: 153 / 135,
  14986. bottom: 0.03
  14987. }
  14988. },
  14989. },
  14990. [
  14991. {
  14992. name: "Normal",
  14993. height: math.unit(6 + 1 / 12, "feet"),
  14994. default: true
  14995. },
  14996. ]
  14997. ))
  14998. characterMakers.push(() => makeCharacter(
  14999. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  15000. {
  15001. front: {
  15002. height: math.unit(6, "feet"),
  15003. weight: math.unit(182, "lb"),
  15004. name: "Front",
  15005. image: {
  15006. source: "./media/characters/ingrid/front.svg",
  15007. extra: 294 / 268,
  15008. bottom: 0.027
  15009. }
  15010. },
  15011. },
  15012. [
  15013. {
  15014. name: "Normal",
  15015. height: math.unit(6, "feet"),
  15016. default: true
  15017. },
  15018. ]
  15019. ))
  15020. characterMakers.push(() => makeCharacter(
  15021. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  15022. {
  15023. eevee: {
  15024. height: math.unit(2 + 10 / 12, "feet"),
  15025. weight: math.unit(86, "lb"),
  15026. name: "Malgam",
  15027. image: {
  15028. source: "./media/characters/malgam/eevee.svg",
  15029. extra: 218 / 180,
  15030. bottom: 0.2
  15031. }
  15032. },
  15033. sylveon: {
  15034. height: math.unit(4, "feet"),
  15035. weight: math.unit(101, "lb"),
  15036. name: "Future Malgam",
  15037. rename: true,
  15038. image: {
  15039. source: "./media/characters/malgam/sylveon.svg",
  15040. extra: 371 / 325,
  15041. bottom: 0.015
  15042. }
  15043. },
  15044. gigantamax: {
  15045. height: math.unit(50, "feet"),
  15046. name: "Gigantamax Malgam",
  15047. rename: true,
  15048. image: {
  15049. source: "./media/characters/malgam/gigantamax.svg"
  15050. }
  15051. },
  15052. },
  15053. [
  15054. {
  15055. name: "Normal",
  15056. height: math.unit(2 + 10 / 12, "feet"),
  15057. default: true
  15058. },
  15059. ]
  15060. ))
  15061. characterMakers.push(() => makeCharacter(
  15062. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  15063. {
  15064. front: {
  15065. height: math.unit(5 + 11 / 12, "feet"),
  15066. weight: math.unit(188, "lb"),
  15067. name: "Front",
  15068. image: {
  15069. source: "./media/characters/fleur/front.svg",
  15070. extra: 309 / 283,
  15071. bottom: 0.007
  15072. }
  15073. },
  15074. },
  15075. [
  15076. {
  15077. name: "Normal",
  15078. height: math.unit(5 + 11 / 12, "feet"),
  15079. default: true
  15080. },
  15081. ]
  15082. ))
  15083. characterMakers.push(() => makeCharacter(
  15084. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  15085. {
  15086. front: {
  15087. height: math.unit(5 + 4 / 12, "feet"),
  15088. weight: math.unit(122, "lb"),
  15089. name: "Front",
  15090. image: {
  15091. source: "./media/characters/jude/front.svg",
  15092. extra: 288 / 273,
  15093. bottom: 0.03
  15094. }
  15095. },
  15096. },
  15097. [
  15098. {
  15099. name: "Normal",
  15100. height: math.unit(5 + 4 / 12, "feet"),
  15101. default: true
  15102. },
  15103. ]
  15104. ))
  15105. characterMakers.push(() => makeCharacter(
  15106. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  15107. {
  15108. front: {
  15109. height: math.unit(5 + 11 / 12, "feet"),
  15110. weight: math.unit(190, "lb"),
  15111. name: "Front",
  15112. image: {
  15113. source: "./media/characters/seara/front.svg",
  15114. extra: 1,
  15115. bottom: 0.05
  15116. }
  15117. },
  15118. },
  15119. [
  15120. {
  15121. name: "Normal",
  15122. height: math.unit(5 + 11 / 12, "feet"),
  15123. default: true
  15124. },
  15125. ]
  15126. ))
  15127. characterMakers.push(() => makeCharacter(
  15128. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  15129. {
  15130. front: {
  15131. height: math.unit(16 + 5 / 12, "feet"),
  15132. weight: math.unit(524, "lb"),
  15133. name: "Front",
  15134. image: {
  15135. source: "./media/characters/caspian/front.svg",
  15136. extra: 1,
  15137. bottom: 0.04
  15138. }
  15139. },
  15140. },
  15141. [
  15142. {
  15143. name: "Normal",
  15144. height: math.unit(16 + 5 / 12, "feet"),
  15145. default: true
  15146. },
  15147. ]
  15148. ))
  15149. characterMakers.push(() => makeCharacter(
  15150. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  15151. {
  15152. front: {
  15153. height: math.unit(5 + 7 / 12, "feet"),
  15154. weight: math.unit(170, "lb"),
  15155. name: "Front",
  15156. image: {
  15157. source: "./media/characters/mika/front.svg",
  15158. extra: 1,
  15159. bottom: 0.016
  15160. }
  15161. },
  15162. },
  15163. [
  15164. {
  15165. name: "Normal",
  15166. height: math.unit(5 + 7 / 12, "feet"),
  15167. default: true
  15168. },
  15169. ]
  15170. ))
  15171. characterMakers.push(() => makeCharacter(
  15172. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  15173. {
  15174. front: {
  15175. height: math.unit(6 + 2 / 12, "feet"),
  15176. weight: math.unit(268, "lb"),
  15177. name: "Front",
  15178. image: {
  15179. source: "./media/characters/sol/front.svg",
  15180. extra: 247 / 231,
  15181. bottom: 0.05
  15182. }
  15183. },
  15184. },
  15185. [
  15186. {
  15187. name: "Normal",
  15188. height: math.unit(6 + 2 / 12, "feet"),
  15189. default: true
  15190. },
  15191. ]
  15192. ))
  15193. characterMakers.push(() => makeCharacter(
  15194. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  15195. {
  15196. buizel: {
  15197. height: math.unit(2 + 5 / 12, "feet"),
  15198. weight: math.unit(87, "lb"),
  15199. name: "Buizel",
  15200. image: {
  15201. source: "./media/characters/umiko/buizel.svg",
  15202. extra: 172 / 157,
  15203. bottom: 0.01
  15204. }
  15205. },
  15206. floatzel: {
  15207. height: math.unit(5 + 9 / 12, "feet"),
  15208. weight: math.unit(250, "lb"),
  15209. name: "Floatzel",
  15210. image: {
  15211. source: "./media/characters/umiko/floatzel.svg",
  15212. extra: 262 / 248
  15213. }
  15214. },
  15215. },
  15216. [
  15217. {
  15218. name: "Normal",
  15219. height: math.unit(2 + 5 / 12, "feet"),
  15220. default: true
  15221. },
  15222. ]
  15223. ))
  15224. characterMakers.push(() => makeCharacter(
  15225. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  15226. {
  15227. front: {
  15228. height: math.unit(6 + 2 / 12, "feet"),
  15229. weight: math.unit(146, "lb"),
  15230. name: "Front",
  15231. image: {
  15232. source: "./media/characters/iliac/front.svg",
  15233. extra: 389 / 365,
  15234. bottom: 0.035
  15235. }
  15236. },
  15237. },
  15238. [
  15239. {
  15240. name: "Normal",
  15241. height: math.unit(6 + 2 / 12, "feet"),
  15242. default: true
  15243. },
  15244. ]
  15245. ))
  15246. characterMakers.push(() => makeCharacter(
  15247. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  15248. {
  15249. front: {
  15250. height: math.unit(6, "feet"),
  15251. weight: math.unit(170, "lb"),
  15252. name: "Front",
  15253. image: {
  15254. source: "./media/characters/topaz/front.svg",
  15255. extra: 317 / 303,
  15256. bottom: 0.055
  15257. }
  15258. },
  15259. },
  15260. [
  15261. {
  15262. name: "Normal",
  15263. height: math.unit(6, "feet"),
  15264. default: true
  15265. },
  15266. ]
  15267. ))
  15268. characterMakers.push(() => makeCharacter(
  15269. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  15270. {
  15271. front: {
  15272. height: math.unit(5 + 11 / 12, "feet"),
  15273. weight: math.unit(144, "lb"),
  15274. name: "Front",
  15275. image: {
  15276. source: "./media/characters/gabriel/front.svg",
  15277. extra: 285 / 262,
  15278. bottom: 0.004
  15279. }
  15280. },
  15281. },
  15282. [
  15283. {
  15284. name: "Normal",
  15285. height: math.unit(5 + 11 / 12, "feet"),
  15286. default: true
  15287. },
  15288. ]
  15289. ))
  15290. characterMakers.push(() => makeCharacter(
  15291. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  15292. {
  15293. side: {
  15294. height: math.unit(6 + 5 / 12, "feet"),
  15295. weight: math.unit(300, "lb"),
  15296. name: "Side",
  15297. image: {
  15298. source: "./media/characters/tempest-suicune/side.svg",
  15299. extra: 195 / 154,
  15300. bottom: 0.04
  15301. }
  15302. },
  15303. },
  15304. [
  15305. {
  15306. name: "Normal",
  15307. height: math.unit(6 + 5 / 12, "feet"),
  15308. default: true
  15309. },
  15310. ]
  15311. ))
  15312. characterMakers.push(() => makeCharacter(
  15313. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  15314. {
  15315. front: {
  15316. height: math.unit(7 + 2 / 12, "feet"),
  15317. weight: math.unit(322, "lb"),
  15318. name: "Front",
  15319. image: {
  15320. source: "./media/characters/vulcan/front.svg",
  15321. extra: 154 / 147,
  15322. bottom: 0.04
  15323. }
  15324. },
  15325. },
  15326. [
  15327. {
  15328. name: "Normal",
  15329. height: math.unit(7 + 2 / 12, "feet"),
  15330. default: true
  15331. },
  15332. ]
  15333. ))
  15334. characterMakers.push(() => makeCharacter(
  15335. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  15336. {
  15337. front: {
  15338. height: math.unit(5 + 10 / 12, "feet"),
  15339. weight: math.unit(264, "lb"),
  15340. name: "Front",
  15341. image: {
  15342. source: "./media/characters/gault/front.svg",
  15343. extra: 161 / 140,
  15344. bottom: 0.028
  15345. }
  15346. },
  15347. },
  15348. [
  15349. {
  15350. name: "Normal",
  15351. height: math.unit(5 + 10 / 12, "feet"),
  15352. default: true
  15353. },
  15354. ]
  15355. ))
  15356. characterMakers.push(() => makeCharacter(
  15357. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  15358. {
  15359. front: {
  15360. height: math.unit(6, "feet"),
  15361. weight: math.unit(150, "lb"),
  15362. name: "Front",
  15363. image: {
  15364. source: "./media/characters/shard/front.svg",
  15365. extra: 273 / 238,
  15366. bottom: 0.02
  15367. }
  15368. },
  15369. },
  15370. [
  15371. {
  15372. name: "Normal",
  15373. height: math.unit(3 + 6 / 12, "feet"),
  15374. default: true
  15375. },
  15376. ]
  15377. ))
  15378. characterMakers.push(() => makeCharacter(
  15379. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  15380. {
  15381. front: {
  15382. height: math.unit(5 + 11 / 12, "feet"),
  15383. weight: math.unit(146, "lb"),
  15384. name: "Front",
  15385. image: {
  15386. source: "./media/characters/ashe/front.svg",
  15387. extra: 400 / 373,
  15388. bottom: 0.01
  15389. }
  15390. },
  15391. },
  15392. [
  15393. {
  15394. name: "Normal",
  15395. height: math.unit(5 + 11 / 12, "feet"),
  15396. default: true
  15397. },
  15398. ]
  15399. ))
  15400. characterMakers.push(() => makeCharacter(
  15401. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  15402. {
  15403. front: {
  15404. height: math.unit(5 + 5 / 12, "feet"),
  15405. weight: math.unit(135, "lb"),
  15406. name: "Front",
  15407. image: {
  15408. source: "./media/characters/beatrix/front.svg",
  15409. extra: 392 / 379,
  15410. bottom: 0.01
  15411. }
  15412. },
  15413. },
  15414. [
  15415. {
  15416. name: "Normal",
  15417. height: math.unit(6, "feet"),
  15418. default: true
  15419. },
  15420. ]
  15421. ))
  15422. characterMakers.push(() => makeCharacter(
  15423. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  15424. {
  15425. front: {
  15426. height: math.unit(6, "feet"),
  15427. weight: math.unit(150, "lb"),
  15428. name: "Front",
  15429. image: {
  15430. source: "./media/characters/ignatius/front.svg",
  15431. extra: 245 / 222,
  15432. bottom: 0.01
  15433. }
  15434. },
  15435. },
  15436. [
  15437. {
  15438. name: "Normal",
  15439. height: math.unit(5 + 5 / 12, "feet"),
  15440. default: true
  15441. },
  15442. ]
  15443. ))
  15444. characterMakers.push(() => makeCharacter(
  15445. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  15446. {
  15447. front: {
  15448. height: math.unit(6 + 2 / 12, "feet"),
  15449. weight: math.unit(138, "lb"),
  15450. name: "Front",
  15451. image: {
  15452. source: "./media/characters/mei-li/front.svg",
  15453. extra: 237 / 229,
  15454. bottom: 0.03
  15455. }
  15456. },
  15457. },
  15458. [
  15459. {
  15460. name: "Normal",
  15461. height: math.unit(6 + 2 / 12, "feet"),
  15462. default: true
  15463. },
  15464. ]
  15465. ))
  15466. characterMakers.push(() => makeCharacter(
  15467. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  15468. {
  15469. front: {
  15470. height: math.unit(2 + 4 / 12, "feet"),
  15471. weight: math.unit(62, "lb"),
  15472. name: "Front",
  15473. image: {
  15474. source: "./media/characters/puru/front.svg",
  15475. extra: 206 / 149,
  15476. bottom: 0.06
  15477. }
  15478. },
  15479. },
  15480. [
  15481. {
  15482. name: "Normal",
  15483. height: math.unit(2 + 4 / 12, "feet"),
  15484. default: true
  15485. },
  15486. ]
  15487. ))
  15488. characterMakers.push(() => makeCharacter(
  15489. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  15490. {
  15491. anthro: {
  15492. height: math.unit(5 + 8/12, "feet"),
  15493. weight: math.unit(200, "lb"),
  15494. energyNeed: math.unit(2000, "kcal"),
  15495. name: "Anthro",
  15496. image: {
  15497. source: "./media/characters/kee/anthro.svg",
  15498. extra: 3251/3184,
  15499. bottom: 250/3501
  15500. }
  15501. },
  15502. taur: {
  15503. height: math.unit(11, "feet"),
  15504. weight: math.unit(500, "lb"),
  15505. energyNeed: math.unit(5000, "kcal"),
  15506. name: "Taur",
  15507. image: {
  15508. source: "./media/characters/kee/taur.svg",
  15509. extra: 1362/1320,
  15510. bottom: 83/1445
  15511. }
  15512. },
  15513. },
  15514. [
  15515. {
  15516. name: "Normal",
  15517. height: math.unit(5 + 8/12, "feet"),
  15518. default: true
  15519. },
  15520. {
  15521. name: "Macro",
  15522. height: math.unit(35, "feet")
  15523. },
  15524. ]
  15525. ))
  15526. characterMakers.push(() => makeCharacter(
  15527. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  15528. {
  15529. anthro: {
  15530. height: math.unit(7, "feet"),
  15531. weight: math.unit(190, "lb"),
  15532. name: "Anthro",
  15533. image: {
  15534. source: "./media/characters/cobalt-dracha/anthro.svg",
  15535. extra: 231 / 225,
  15536. bottom: 0.04
  15537. }
  15538. },
  15539. feral: {
  15540. height: math.unit(9 + 7 / 12, "feet"),
  15541. weight: math.unit(294, "lb"),
  15542. name: "Feral",
  15543. image: {
  15544. source: "./media/characters/cobalt-dracha/feral.svg",
  15545. extra: 692 / 633,
  15546. bottom: 0.05
  15547. }
  15548. },
  15549. },
  15550. [
  15551. {
  15552. name: "Normal",
  15553. height: math.unit(7, "feet"),
  15554. default: true
  15555. },
  15556. ]
  15557. ))
  15558. characterMakers.push(() => makeCharacter(
  15559. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  15560. {
  15561. fallen: {
  15562. height: math.unit(11 + 8 / 12, "feet"),
  15563. weight: math.unit(485, "lb"),
  15564. name: "Java (Fallen)",
  15565. rename: true,
  15566. image: {
  15567. source: "./media/characters/java/fallen.svg",
  15568. extra: 226 / 208,
  15569. bottom: 0.005
  15570. }
  15571. },
  15572. godkin: {
  15573. height: math.unit(10 + 6 / 12, "feet"),
  15574. weight: math.unit(328, "lb"),
  15575. name: "Java (Godkin)",
  15576. rename: true,
  15577. image: {
  15578. source: "./media/characters/java/godkin.svg",
  15579. extra: 270 / 262,
  15580. bottom: 0.02
  15581. }
  15582. },
  15583. },
  15584. [
  15585. {
  15586. name: "Normal",
  15587. height: math.unit(11 + 8 / 12, "feet"),
  15588. default: true
  15589. },
  15590. ]
  15591. ))
  15592. characterMakers.push(() => makeCharacter(
  15593. { name: "Skoll", species: ["wolf"], tags: ["anthro"] },
  15594. {
  15595. front: {
  15596. height: math.unit(7 + 8 / 12, "feet"),
  15597. weight: math.unit(320, "lb"),
  15598. name: "Front",
  15599. image: {
  15600. source: "./media/characters/skoll/front.svg",
  15601. extra: 232 / 220,
  15602. bottom: 0.02
  15603. }
  15604. },
  15605. },
  15606. [
  15607. {
  15608. name: "Normal",
  15609. height: math.unit(7 + 8 / 12, "feet"),
  15610. default: true
  15611. },
  15612. ]
  15613. ))
  15614. characterMakers.push(() => makeCharacter(
  15615. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  15616. {
  15617. front: {
  15618. height: math.unit(5 + 9 / 12, "feet"),
  15619. weight: math.unit(170, "lb"),
  15620. name: "Front",
  15621. image: {
  15622. source: "./media/characters/purna/front.svg",
  15623. extra: 239 / 229,
  15624. bottom: 0.01
  15625. }
  15626. },
  15627. },
  15628. [
  15629. {
  15630. name: "Normal",
  15631. height: math.unit(5 + 9 / 12, "feet"),
  15632. default: true
  15633. },
  15634. ]
  15635. ))
  15636. characterMakers.push(() => makeCharacter(
  15637. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  15638. {
  15639. front: {
  15640. height: math.unit(5 + 9 / 12, "feet"),
  15641. weight: math.unit(142, "lb"),
  15642. name: "Front",
  15643. image: {
  15644. source: "./media/characters/kuva/front.svg",
  15645. extra: 281 / 271,
  15646. bottom: 0.006
  15647. }
  15648. },
  15649. },
  15650. [
  15651. {
  15652. name: "Normal",
  15653. height: math.unit(5 + 9 / 12, "feet"),
  15654. default: true
  15655. },
  15656. ]
  15657. ))
  15658. characterMakers.push(() => makeCharacter(
  15659. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  15660. {
  15661. anthro: {
  15662. height: math.unit(9 + 2 / 12, "feet"),
  15663. weight: math.unit(270, "lb"),
  15664. name: "Anthro",
  15665. image: {
  15666. source: "./media/characters/embra/anthro.svg",
  15667. extra: 200 / 187,
  15668. bottom: 0.02
  15669. }
  15670. },
  15671. feral: {
  15672. height: math.unit(18 + 8 / 12, "feet"),
  15673. weight: math.unit(576, "lb"),
  15674. name: "Feral",
  15675. image: {
  15676. source: "./media/characters/embra/feral.svg",
  15677. extra: 152 / 137,
  15678. bottom: 0.037
  15679. }
  15680. },
  15681. },
  15682. [
  15683. {
  15684. name: "Normal",
  15685. height: math.unit(9 + 2 / 12, "feet"),
  15686. default: true
  15687. },
  15688. ]
  15689. ))
  15690. characterMakers.push(() => makeCharacter(
  15691. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  15692. {
  15693. anthro: {
  15694. height: math.unit(10 + 9 / 12, "feet"),
  15695. weight: math.unit(224, "lb"),
  15696. name: "Anthro",
  15697. image: {
  15698. source: "./media/characters/grottos/anthro.svg",
  15699. extra: 350 / 332,
  15700. bottom: 0.045
  15701. }
  15702. },
  15703. feral: {
  15704. height: math.unit(20 + 7 / 12, "feet"),
  15705. weight: math.unit(629, "lb"),
  15706. name: "Feral",
  15707. image: {
  15708. source: "./media/characters/grottos/feral.svg",
  15709. extra: 207 / 190,
  15710. bottom: 0.05
  15711. }
  15712. },
  15713. },
  15714. [
  15715. {
  15716. name: "Normal",
  15717. height: math.unit(10 + 9 / 12, "feet"),
  15718. default: true
  15719. },
  15720. ]
  15721. ))
  15722. characterMakers.push(() => makeCharacter(
  15723. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  15724. {
  15725. anthro: {
  15726. height: math.unit(9 + 6 / 12, "feet"),
  15727. weight: math.unit(298, "lb"),
  15728. name: "Anthro",
  15729. image: {
  15730. source: "./media/characters/frifna/anthro.svg",
  15731. extra: 282 / 269,
  15732. bottom: 0.015
  15733. }
  15734. },
  15735. feral: {
  15736. height: math.unit(16 + 2 / 12, "feet"),
  15737. weight: math.unit(624, "lb"),
  15738. name: "Feral",
  15739. image: {
  15740. source: "./media/characters/frifna/feral.svg"
  15741. }
  15742. },
  15743. },
  15744. [
  15745. {
  15746. name: "Normal",
  15747. height: math.unit(9 + 6 / 12, "feet"),
  15748. default: true
  15749. },
  15750. ]
  15751. ))
  15752. characterMakers.push(() => makeCharacter(
  15753. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  15754. {
  15755. front: {
  15756. height: math.unit(6 + 2 / 12, "feet"),
  15757. weight: math.unit(168, "lb"),
  15758. name: "Front",
  15759. image: {
  15760. source: "./media/characters/elise/front.svg",
  15761. extra: 276 / 271
  15762. }
  15763. },
  15764. },
  15765. [
  15766. {
  15767. name: "Normal",
  15768. height: math.unit(6 + 2 / 12, "feet"),
  15769. default: true
  15770. },
  15771. ]
  15772. ))
  15773. characterMakers.push(() => makeCharacter(
  15774. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  15775. {
  15776. front: {
  15777. height: math.unit(5 + 10 / 12, "feet"),
  15778. weight: math.unit(210, "lb"),
  15779. name: "Front",
  15780. image: {
  15781. source: "./media/characters/glade/front.svg",
  15782. extra: 258 / 247,
  15783. bottom: 0.008
  15784. }
  15785. },
  15786. },
  15787. [
  15788. {
  15789. name: "Normal",
  15790. height: math.unit(5 + 10 / 12, "feet"),
  15791. default: true
  15792. },
  15793. ]
  15794. ))
  15795. characterMakers.push(() => makeCharacter(
  15796. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  15797. {
  15798. front: {
  15799. height: math.unit(5 + 10 / 12, "feet"),
  15800. weight: math.unit(129, "lb"),
  15801. name: "Front",
  15802. image: {
  15803. source: "./media/characters/rina/front.svg",
  15804. extra: 266 / 255,
  15805. bottom: 0.005
  15806. }
  15807. },
  15808. },
  15809. [
  15810. {
  15811. name: "Normal",
  15812. height: math.unit(5 + 10 / 12, "feet"),
  15813. default: true
  15814. },
  15815. ]
  15816. ))
  15817. characterMakers.push(() => makeCharacter(
  15818. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  15819. {
  15820. front: {
  15821. height: math.unit(6 + 1 / 12, "feet"),
  15822. weight: math.unit(192, "lb"),
  15823. name: "Front",
  15824. image: {
  15825. source: "./media/characters/veronica/front.svg",
  15826. extra: 319 / 309,
  15827. bottom: 0.005
  15828. }
  15829. },
  15830. },
  15831. [
  15832. {
  15833. name: "Normal",
  15834. height: math.unit(6 + 1 / 12, "feet"),
  15835. default: true
  15836. },
  15837. ]
  15838. ))
  15839. characterMakers.push(() => makeCharacter(
  15840. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  15841. {
  15842. front: {
  15843. height: math.unit(9 + 3 / 12, "feet"),
  15844. weight: math.unit(1100, "lb"),
  15845. name: "Front",
  15846. image: {
  15847. source: "./media/characters/braxton/front.svg",
  15848. extra: 1057 / 984,
  15849. bottom: 0.05
  15850. }
  15851. },
  15852. },
  15853. [
  15854. {
  15855. name: "Normal",
  15856. height: math.unit(9 + 3 / 12, "feet")
  15857. },
  15858. {
  15859. name: "Giant",
  15860. height: math.unit(300, "feet"),
  15861. default: true
  15862. },
  15863. {
  15864. name: "Macro",
  15865. height: math.unit(700, "feet")
  15866. },
  15867. {
  15868. name: "Megamacro",
  15869. height: math.unit(6000, "feet")
  15870. },
  15871. ]
  15872. ))
  15873. characterMakers.push(() => makeCharacter(
  15874. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  15875. {
  15876. front: {
  15877. height: math.unit(6 + 7 / 12, "feet"),
  15878. weight: math.unit(150, "lb"),
  15879. name: "Front",
  15880. image: {
  15881. source: "./media/characters/blue-feyonics/front.svg",
  15882. extra: 1403 / 1306,
  15883. bottom: 0.047
  15884. }
  15885. },
  15886. },
  15887. [
  15888. {
  15889. name: "Normal",
  15890. height: math.unit(6 + 7 / 12, "feet"),
  15891. default: true
  15892. },
  15893. ]
  15894. ))
  15895. characterMakers.push(() => makeCharacter(
  15896. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  15897. {
  15898. front: {
  15899. height: math.unit(1.8, "meters"),
  15900. weight: math.unit(60, "kg"),
  15901. name: "Front",
  15902. image: {
  15903. source: "./media/characters/maxwell/front.svg",
  15904. extra: 2060 / 1873
  15905. }
  15906. },
  15907. },
  15908. [
  15909. {
  15910. name: "Micro",
  15911. height: math.unit(1, "mm")
  15912. },
  15913. {
  15914. name: "Normal",
  15915. height: math.unit(1.8, "meter"),
  15916. default: true
  15917. },
  15918. {
  15919. name: "Macro",
  15920. height: math.unit(30, "meters")
  15921. },
  15922. {
  15923. name: "Megamacro",
  15924. height: math.unit(10, "km")
  15925. },
  15926. ]
  15927. ))
  15928. characterMakers.push(() => makeCharacter(
  15929. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  15930. {
  15931. front: {
  15932. height: math.unit(6, "feet"),
  15933. weight: math.unit(150, "lb"),
  15934. name: "Front",
  15935. image: {
  15936. source: "./media/characters/jack/front.svg",
  15937. extra: 1754 / 1640,
  15938. bottom: 0.01
  15939. }
  15940. },
  15941. },
  15942. [
  15943. {
  15944. name: "Normal",
  15945. height: math.unit(80000, "feet"),
  15946. default: true
  15947. },
  15948. {
  15949. name: "Max size",
  15950. height: math.unit(10, "lightyears")
  15951. },
  15952. ]
  15953. ))
  15954. characterMakers.push(() => makeCharacter(
  15955. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  15956. {
  15957. urban: {
  15958. height: math.unit(5, "feet"),
  15959. weight: math.unit(240, "lb"),
  15960. name: "Urban",
  15961. image: {
  15962. source: "./media/characters/cafat/urban.svg",
  15963. extra: 1223/1126,
  15964. bottom: 205/1428
  15965. }
  15966. },
  15967. summer: {
  15968. height: math.unit(5, "feet"),
  15969. weight: math.unit(240, "lb"),
  15970. name: "Summer",
  15971. image: {
  15972. source: "./media/characters/cafat/summer.svg",
  15973. extra: 1223/1126,
  15974. bottom: 205/1428
  15975. }
  15976. },
  15977. winter: {
  15978. height: math.unit(5, "feet"),
  15979. weight: math.unit(240, "lb"),
  15980. name: "Winter",
  15981. image: {
  15982. source: "./media/characters/cafat/winter.svg",
  15983. extra: 1223/1126,
  15984. bottom: 205/1428
  15985. }
  15986. },
  15987. lingerie: {
  15988. height: math.unit(5, "feet"),
  15989. weight: math.unit(240, "lb"),
  15990. name: "Lingerie",
  15991. image: {
  15992. source: "./media/characters/cafat/lingerie.svg",
  15993. extra: 1223/1126,
  15994. bottom: 205/1428
  15995. }
  15996. },
  15997. upright: {
  15998. height: math.unit(6.3, "feet"),
  15999. weight: math.unit(240, "lb"),
  16000. name: "Upright",
  16001. image: {
  16002. source: "./media/characters/cafat/upright.svg",
  16003. bottom: 0.01
  16004. }
  16005. },
  16006. uprightFull: {
  16007. height: math.unit(6.3, "feet"),
  16008. weight: math.unit(240, "lb"),
  16009. name: "Upright (Full)",
  16010. image: {
  16011. source: "./media/characters/cafat/upright-full.svg",
  16012. bottom: 0.01
  16013. }
  16014. },
  16015. },
  16016. [
  16017. {
  16018. name: "Small",
  16019. height: math.unit(5, "feet"),
  16020. default: true
  16021. },
  16022. {
  16023. name: "Large",
  16024. height: math.unit(13, "feet")
  16025. },
  16026. ]
  16027. ))
  16028. characterMakers.push(() => makeCharacter(
  16029. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  16030. {
  16031. front: {
  16032. height: math.unit(6, "feet"),
  16033. weight: math.unit(150, "lb"),
  16034. name: "Front",
  16035. image: {
  16036. source: "./media/characters/verin-raharra/front.svg",
  16037. extra: 5019 / 4835,
  16038. bottom: 0.023
  16039. }
  16040. },
  16041. },
  16042. [
  16043. {
  16044. name: "Normal",
  16045. height: math.unit(7 + 5 / 12, "feet"),
  16046. default: true
  16047. },
  16048. {
  16049. name: "Upsized",
  16050. height: math.unit(20, "feet")
  16051. },
  16052. ]
  16053. ))
  16054. characterMakers.push(() => makeCharacter(
  16055. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  16056. {
  16057. front: {
  16058. height: math.unit(7, "feet"),
  16059. weight: math.unit(230, "lb"),
  16060. name: "Front",
  16061. image: {
  16062. source: "./media/characters/nakata/front.svg",
  16063. extra: 1.005,
  16064. bottom: 0.01
  16065. }
  16066. },
  16067. },
  16068. [
  16069. {
  16070. name: "Normal",
  16071. height: math.unit(7, "feet"),
  16072. default: true
  16073. },
  16074. {
  16075. name: "Big",
  16076. height: math.unit(14, "feet")
  16077. },
  16078. {
  16079. name: "Macro",
  16080. height: math.unit(400, "feet")
  16081. },
  16082. ]
  16083. ))
  16084. characterMakers.push(() => makeCharacter(
  16085. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  16086. {
  16087. front: {
  16088. height: math.unit(4.91, "feet"),
  16089. weight: math.unit(100, "lb"),
  16090. name: "Front",
  16091. image: {
  16092. source: "./media/characters/lily/front.svg",
  16093. extra: 1585 / 1415,
  16094. bottom: 0.02
  16095. }
  16096. },
  16097. },
  16098. [
  16099. {
  16100. name: "Normal",
  16101. height: math.unit(4.91, "feet"),
  16102. default: true
  16103. },
  16104. ]
  16105. ))
  16106. characterMakers.push(() => makeCharacter(
  16107. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  16108. {
  16109. laying: {
  16110. height: math.unit(4 + 4 / 12, "feet"),
  16111. weight: math.unit(600, "lb"),
  16112. name: "Laying",
  16113. image: {
  16114. source: "./media/characters/sheila/laying.svg",
  16115. extra: 1333 / 1265,
  16116. bottom: 0.16
  16117. }
  16118. },
  16119. },
  16120. [
  16121. {
  16122. name: "Normal",
  16123. height: math.unit(4 + 4 / 12, "feet"),
  16124. default: true
  16125. },
  16126. ]
  16127. ))
  16128. characterMakers.push(() => makeCharacter(
  16129. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  16130. {
  16131. front: {
  16132. height: math.unit(6, "feet"),
  16133. weight: math.unit(190, "lb"),
  16134. name: "Front",
  16135. image: {
  16136. source: "./media/characters/sax/front.svg",
  16137. extra: 1187 / 973,
  16138. bottom: 0.042
  16139. }
  16140. },
  16141. },
  16142. [
  16143. {
  16144. name: "Micro",
  16145. height: math.unit(4, "inches"),
  16146. default: true
  16147. },
  16148. ]
  16149. ))
  16150. characterMakers.push(() => makeCharacter(
  16151. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  16152. {
  16153. front: {
  16154. height: math.unit(6, "feet"),
  16155. weight: math.unit(150, "lb"),
  16156. name: "Front",
  16157. image: {
  16158. source: "./media/characters/pandora/front.svg",
  16159. extra: 2720 / 2556,
  16160. bottom: 0.015
  16161. }
  16162. },
  16163. back: {
  16164. height: math.unit(6, "feet"),
  16165. weight: math.unit(150, "lb"),
  16166. name: "Back",
  16167. image: {
  16168. source: "./media/characters/pandora/back.svg",
  16169. extra: 2720 / 2556,
  16170. bottom: 0.01
  16171. }
  16172. },
  16173. beans: {
  16174. height: math.unit(6 / 8, "feet"),
  16175. name: "Beans",
  16176. image: {
  16177. source: "./media/characters/pandora/beans.svg"
  16178. }
  16179. },
  16180. collar: {
  16181. height: math.unit(0.31, "feet"),
  16182. name: "Collar",
  16183. image: {
  16184. source: "./media/characters/pandora/collar.svg"
  16185. }
  16186. },
  16187. skirt: {
  16188. height: math.unit(6, "feet"),
  16189. weight: math.unit(150, "lb"),
  16190. name: "Skirt",
  16191. image: {
  16192. source: "./media/characters/pandora/skirt.svg",
  16193. extra: 1622 / 1525,
  16194. bottom: 0.015
  16195. }
  16196. },
  16197. hoodie: {
  16198. height: math.unit(6, "feet"),
  16199. weight: math.unit(150, "lb"),
  16200. name: "Hoodie",
  16201. image: {
  16202. source: "./media/characters/pandora/hoodie.svg",
  16203. extra: 1622 / 1525,
  16204. bottom: 0.015
  16205. }
  16206. },
  16207. casual: {
  16208. height: math.unit(6, "feet"),
  16209. weight: math.unit(150, "lb"),
  16210. name: "Casual",
  16211. image: {
  16212. source: "./media/characters/pandora/casual.svg",
  16213. extra: 1622 / 1525,
  16214. bottom: 0.015
  16215. }
  16216. },
  16217. },
  16218. [
  16219. {
  16220. name: "Normal",
  16221. height: math.unit(6, "feet")
  16222. },
  16223. {
  16224. name: "Big Steppy",
  16225. height: math.unit(1, "km"),
  16226. default: true
  16227. },
  16228. {
  16229. name: "Galactic Steppy",
  16230. height: math.unit(2, "gigameters")
  16231. },
  16232. ]
  16233. ))
  16234. characterMakers.push(() => makeCharacter(
  16235. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  16236. {
  16237. side: {
  16238. height: math.unit(10, "feet"),
  16239. weight: math.unit(800, "kg"),
  16240. name: "Side",
  16241. image: {
  16242. source: "./media/characters/venio-darcony/side.svg",
  16243. extra: 1373 / 1003,
  16244. bottom: 0.037
  16245. }
  16246. },
  16247. front: {
  16248. height: math.unit(19, "feet"),
  16249. weight: math.unit(800, "kg"),
  16250. name: "Front",
  16251. image: {
  16252. source: "./media/characters/venio-darcony/front.svg"
  16253. }
  16254. },
  16255. back: {
  16256. height: math.unit(19, "feet"),
  16257. weight: math.unit(800, "kg"),
  16258. name: "Back",
  16259. image: {
  16260. source: "./media/characters/venio-darcony/back.svg"
  16261. }
  16262. },
  16263. sideNsfw: {
  16264. height: math.unit(10, "feet"),
  16265. weight: math.unit(800, "kg"),
  16266. name: "Side (NSFW)",
  16267. image: {
  16268. source: "./media/characters/venio-darcony/side-nsfw.svg",
  16269. extra: 1373 / 1003,
  16270. bottom: 0.037
  16271. }
  16272. },
  16273. frontNsfw: {
  16274. height: math.unit(19, "feet"),
  16275. weight: math.unit(800, "kg"),
  16276. name: "Front (NSFW)",
  16277. image: {
  16278. source: "./media/characters/venio-darcony/front-nsfw.svg"
  16279. }
  16280. },
  16281. backNsfw: {
  16282. height: math.unit(19, "feet"),
  16283. weight: math.unit(800, "kg"),
  16284. name: "Back (NSFW)",
  16285. image: {
  16286. source: "./media/characters/venio-darcony/back-nsfw.svg"
  16287. }
  16288. },
  16289. sideArmored: {
  16290. height: math.unit(10, "feet"),
  16291. weight: math.unit(800, "kg"),
  16292. name: "Side (Armored)",
  16293. image: {
  16294. source: "./media/characters/venio-darcony/side-armored.svg",
  16295. extra: 1373 / 1003,
  16296. bottom: 0.037
  16297. }
  16298. },
  16299. frontArmored: {
  16300. height: math.unit(19, "feet"),
  16301. weight: math.unit(900, "kg"),
  16302. name: "Front (Armored)",
  16303. image: {
  16304. source: "./media/characters/venio-darcony/front-armored.svg"
  16305. }
  16306. },
  16307. backArmored: {
  16308. height: math.unit(19, "feet"),
  16309. weight: math.unit(900, "kg"),
  16310. name: "Back (Armored)",
  16311. image: {
  16312. source: "./media/characters/venio-darcony/back-armored.svg"
  16313. }
  16314. },
  16315. sword: {
  16316. height: math.unit(10, "feet"),
  16317. weight: math.unit(50, "lb"),
  16318. name: "Sword",
  16319. image: {
  16320. source: "./media/characters/venio-darcony/sword.svg"
  16321. }
  16322. },
  16323. },
  16324. [
  16325. {
  16326. name: "Normal",
  16327. height: math.unit(10, "feet")
  16328. },
  16329. {
  16330. name: "Macro",
  16331. height: math.unit(130, "feet"),
  16332. default: true
  16333. },
  16334. {
  16335. name: "Macro+",
  16336. height: math.unit(240, "feet")
  16337. },
  16338. ]
  16339. ))
  16340. characterMakers.push(() => makeCharacter(
  16341. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  16342. {
  16343. front: {
  16344. height: math.unit(6, "feet"),
  16345. weight: math.unit(150, "lb"),
  16346. name: "Front",
  16347. image: {
  16348. source: "./media/characters/veski/front.svg",
  16349. extra: 1299 / 1225,
  16350. bottom: 0.04
  16351. }
  16352. },
  16353. back: {
  16354. height: math.unit(6, "feet"),
  16355. weight: math.unit(150, "lb"),
  16356. name: "Back",
  16357. image: {
  16358. source: "./media/characters/veski/back.svg",
  16359. extra: 1299 / 1225,
  16360. bottom: 0.008
  16361. }
  16362. },
  16363. maw: {
  16364. height: math.unit(1.5 * 1.21, "feet"),
  16365. name: "Maw",
  16366. image: {
  16367. source: "./media/characters/veski/maw.svg"
  16368. }
  16369. },
  16370. },
  16371. [
  16372. {
  16373. name: "Macro",
  16374. height: math.unit(2, "km"),
  16375. default: true
  16376. },
  16377. ]
  16378. ))
  16379. characterMakers.push(() => makeCharacter(
  16380. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  16381. {
  16382. front: {
  16383. height: math.unit(5 + 7 / 12, "feet"),
  16384. name: "Front",
  16385. image: {
  16386. source: "./media/characters/isabelle/front.svg",
  16387. extra: 2130 / 1976,
  16388. bottom: 0.05
  16389. }
  16390. },
  16391. },
  16392. [
  16393. {
  16394. name: "Supermicro",
  16395. height: math.unit(10, "micrometers")
  16396. },
  16397. {
  16398. name: "Micro",
  16399. height: math.unit(1, "inch")
  16400. },
  16401. {
  16402. name: "Tiny",
  16403. height: math.unit(5, "inches")
  16404. },
  16405. {
  16406. name: "Standard",
  16407. height: math.unit(5 + 7 / 12, "inches")
  16408. },
  16409. {
  16410. name: "Macro",
  16411. height: math.unit(80, "meters"),
  16412. default: true
  16413. },
  16414. {
  16415. name: "Megamacro",
  16416. height: math.unit(250, "meters")
  16417. },
  16418. {
  16419. name: "Gigamacro",
  16420. height: math.unit(5, "km")
  16421. },
  16422. {
  16423. name: "Cosmic",
  16424. height: math.unit(2.5e6, "miles")
  16425. },
  16426. ]
  16427. ))
  16428. characterMakers.push(() => makeCharacter(
  16429. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  16430. {
  16431. front: {
  16432. height: math.unit(6, "feet"),
  16433. weight: math.unit(150, "lb"),
  16434. name: "Front",
  16435. image: {
  16436. source: "./media/characters/hanzo/front.svg",
  16437. extra: 374 / 344,
  16438. bottom: 0.02
  16439. }
  16440. },
  16441. },
  16442. [
  16443. {
  16444. name: "Normal",
  16445. height: math.unit(8, "feet"),
  16446. default: true
  16447. },
  16448. ]
  16449. ))
  16450. characterMakers.push(() => makeCharacter(
  16451. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  16452. {
  16453. front: {
  16454. height: math.unit(7, "feet"),
  16455. weight: math.unit(130, "lb"),
  16456. name: "Front",
  16457. image: {
  16458. source: "./media/characters/anna/front.svg",
  16459. extra: 169 / 145,
  16460. bottom: 0.06
  16461. }
  16462. },
  16463. full: {
  16464. height: math.unit(4.96, "feet"),
  16465. weight: math.unit(220, "lb"),
  16466. name: "Full",
  16467. image: {
  16468. source: "./media/characters/anna/full.svg",
  16469. extra: 138 / 114,
  16470. bottom: 0.15
  16471. }
  16472. },
  16473. tongue: {
  16474. height: math.unit(2.53, "feet"),
  16475. name: "Tongue",
  16476. image: {
  16477. source: "./media/characters/anna/tongue.svg"
  16478. }
  16479. },
  16480. },
  16481. [
  16482. {
  16483. name: "Normal",
  16484. height: math.unit(7, "feet"),
  16485. default: true
  16486. },
  16487. ]
  16488. ))
  16489. characterMakers.push(() => makeCharacter(
  16490. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  16491. {
  16492. front: {
  16493. height: math.unit(7, "feet"),
  16494. weight: math.unit(150, "lb"),
  16495. name: "Front",
  16496. image: {
  16497. source: "./media/characters/ian-corvid/front.svg",
  16498. extra: 150 / 142,
  16499. bottom: 0.02
  16500. }
  16501. },
  16502. back: {
  16503. height: math.unit(7, "feet"),
  16504. weight: math.unit(150, "lb"),
  16505. name: "Back",
  16506. image: {
  16507. source: "./media/characters/ian-corvid/back.svg",
  16508. extra: 150 / 143,
  16509. bottom: 0.01
  16510. }
  16511. },
  16512. stomping: {
  16513. height: math.unit(7, "feet"),
  16514. weight: math.unit(150, "lb"),
  16515. name: "Stomping",
  16516. image: {
  16517. source: "./media/characters/ian-corvid/stomping.svg",
  16518. extra: 76 / 72
  16519. }
  16520. },
  16521. sitting: {
  16522. height: math.unit(7 / 1.8, "feet"),
  16523. weight: math.unit(150, "lb"),
  16524. name: "Sitting",
  16525. image: {
  16526. source: "./media/characters/ian-corvid/sitting.svg",
  16527. extra: 1400 / 1269,
  16528. bottom: 0.15
  16529. }
  16530. },
  16531. },
  16532. [
  16533. {
  16534. name: "Tiny Microw",
  16535. height: math.unit(1, "inch")
  16536. },
  16537. {
  16538. name: "Microw",
  16539. height: math.unit(6, "inches")
  16540. },
  16541. {
  16542. name: "Crow",
  16543. height: math.unit(7 + 1 / 12, "feet"),
  16544. default: true
  16545. },
  16546. {
  16547. name: "Macrow",
  16548. height: math.unit(176, "feet")
  16549. },
  16550. ]
  16551. ))
  16552. characterMakers.push(() => makeCharacter(
  16553. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  16554. {
  16555. front: {
  16556. height: math.unit(5 + 7 / 12, "feet"),
  16557. weight: math.unit(147, "lb"),
  16558. name: "Front",
  16559. image: {
  16560. source: "./media/characters/natalie-kellon/front.svg",
  16561. extra: 1214 / 1141,
  16562. bottom: 0.02
  16563. }
  16564. },
  16565. },
  16566. [
  16567. {
  16568. name: "Micro",
  16569. height: math.unit(1 / 16, "inch")
  16570. },
  16571. {
  16572. name: "Tiny",
  16573. height: math.unit(4, "inches")
  16574. },
  16575. {
  16576. name: "Normal",
  16577. height: math.unit(5 + 7 / 12, "feet"),
  16578. default: true
  16579. },
  16580. {
  16581. name: "Amazon",
  16582. height: math.unit(12, "feet")
  16583. },
  16584. {
  16585. name: "Giantess",
  16586. height: math.unit(160, "meters")
  16587. },
  16588. {
  16589. name: "Titaness",
  16590. height: math.unit(800, "meters")
  16591. },
  16592. ]
  16593. ))
  16594. characterMakers.push(() => makeCharacter(
  16595. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  16596. {
  16597. front: {
  16598. height: math.unit(6, "feet"),
  16599. weight: math.unit(150, "lb"),
  16600. name: "Front",
  16601. image: {
  16602. source: "./media/characters/alluria/front.svg",
  16603. extra: 806 / 738,
  16604. bottom: 0.01
  16605. }
  16606. },
  16607. side: {
  16608. height: math.unit(6, "feet"),
  16609. weight: math.unit(150, "lb"),
  16610. name: "Side",
  16611. image: {
  16612. source: "./media/characters/alluria/side.svg",
  16613. extra: 800 / 750,
  16614. }
  16615. },
  16616. back: {
  16617. height: math.unit(6, "feet"),
  16618. weight: math.unit(150, "lb"),
  16619. name: "Back",
  16620. image: {
  16621. source: "./media/characters/alluria/back.svg",
  16622. extra: 806 / 738,
  16623. }
  16624. },
  16625. frontMaid: {
  16626. height: math.unit(6, "feet"),
  16627. weight: math.unit(150, "lb"),
  16628. name: "Front (Maid)",
  16629. image: {
  16630. source: "./media/characters/alluria/front-maid.svg",
  16631. extra: 806 / 738,
  16632. bottom: 0.01
  16633. }
  16634. },
  16635. sideMaid: {
  16636. height: math.unit(6, "feet"),
  16637. weight: math.unit(150, "lb"),
  16638. name: "Side (Maid)",
  16639. image: {
  16640. source: "./media/characters/alluria/side-maid.svg",
  16641. extra: 800 / 750,
  16642. bottom: 0.005
  16643. }
  16644. },
  16645. backMaid: {
  16646. height: math.unit(6, "feet"),
  16647. weight: math.unit(150, "lb"),
  16648. name: "Back (Maid)",
  16649. image: {
  16650. source: "./media/characters/alluria/back-maid.svg",
  16651. extra: 806 / 738,
  16652. }
  16653. },
  16654. },
  16655. [
  16656. {
  16657. name: "Micro",
  16658. height: math.unit(6, "inches"),
  16659. default: true
  16660. },
  16661. ]
  16662. ))
  16663. characterMakers.push(() => makeCharacter(
  16664. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  16665. {
  16666. front: {
  16667. height: math.unit(6, "feet"),
  16668. weight: math.unit(150, "lb"),
  16669. name: "Front",
  16670. image: {
  16671. source: "./media/characters/kyle/front.svg",
  16672. extra: 1069 / 962,
  16673. bottom: 77.228 / 1727.45
  16674. }
  16675. },
  16676. },
  16677. [
  16678. {
  16679. name: "Macro",
  16680. height: math.unit(150, "feet"),
  16681. default: true
  16682. },
  16683. ]
  16684. ))
  16685. characterMakers.push(() => makeCharacter(
  16686. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  16687. {
  16688. front: {
  16689. height: math.unit(6, "feet"),
  16690. weight: math.unit(300, "lb"),
  16691. name: "Front",
  16692. image: {
  16693. source: "./media/characters/duncan/front.svg",
  16694. extra: 1650 / 1482,
  16695. bottom: 0.05
  16696. }
  16697. },
  16698. },
  16699. [
  16700. {
  16701. name: "Macro",
  16702. height: math.unit(100, "feet"),
  16703. default: true
  16704. },
  16705. ]
  16706. ))
  16707. characterMakers.push(() => makeCharacter(
  16708. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  16709. {
  16710. front: {
  16711. height: math.unit(5 + 4 / 12, "feet"),
  16712. weight: math.unit(220, "lb"),
  16713. name: "Front",
  16714. image: {
  16715. source: "./media/characters/memory/front.svg",
  16716. extra: 3641 / 3545,
  16717. bottom: 0.03
  16718. }
  16719. },
  16720. back: {
  16721. height: math.unit(5 + 4 / 12, "feet"),
  16722. weight: math.unit(220, "lb"),
  16723. name: "Back",
  16724. image: {
  16725. source: "./media/characters/memory/back.svg",
  16726. extra: 3641 / 3545,
  16727. bottom: 0.025
  16728. }
  16729. },
  16730. frontSkirt: {
  16731. height: math.unit(5 + 4 / 12, "feet"),
  16732. weight: math.unit(220, "lb"),
  16733. name: "Front (Skirt)",
  16734. image: {
  16735. source: "./media/characters/memory/front-skirt.svg",
  16736. extra: 3641 / 3545,
  16737. bottom: 0.03
  16738. }
  16739. },
  16740. frontDress: {
  16741. height: math.unit(5 + 4 / 12, "feet"),
  16742. weight: math.unit(220, "lb"),
  16743. name: "Front (Dress)",
  16744. image: {
  16745. source: "./media/characters/memory/front-dress.svg",
  16746. extra: 3641 / 3545,
  16747. bottom: 0.03
  16748. }
  16749. },
  16750. },
  16751. [
  16752. {
  16753. name: "Micro",
  16754. height: math.unit(6, "inches"),
  16755. default: true
  16756. },
  16757. {
  16758. name: "Normal",
  16759. height: math.unit(5 + 4 / 12, "feet")
  16760. },
  16761. ]
  16762. ))
  16763. characterMakers.push(() => makeCharacter(
  16764. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  16765. {
  16766. front: {
  16767. height: math.unit(4 + 11 / 12, "feet"),
  16768. weight: math.unit(100, "lb"),
  16769. name: "Front",
  16770. image: {
  16771. source: "./media/characters/luno/front.svg",
  16772. extra: 1535 / 1487,
  16773. bottom: 0.03
  16774. }
  16775. },
  16776. },
  16777. [
  16778. {
  16779. name: "Micro",
  16780. height: math.unit(3, "inches")
  16781. },
  16782. {
  16783. name: "Normal",
  16784. height: math.unit(4 + 11 / 12, "feet"),
  16785. default: true
  16786. },
  16787. {
  16788. name: "Macro",
  16789. height: math.unit(300, "feet")
  16790. },
  16791. {
  16792. name: "Megamacro",
  16793. height: math.unit(700, "miles")
  16794. },
  16795. ]
  16796. ))
  16797. characterMakers.push(() => makeCharacter(
  16798. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  16799. {
  16800. front: {
  16801. height: math.unit(6 + 2 / 12, "feet"),
  16802. weight: math.unit(170, "lb"),
  16803. name: "Front",
  16804. image: {
  16805. source: "./media/characters/jamesy/front.svg",
  16806. extra: 440 / 382,
  16807. bottom: 0.005
  16808. }
  16809. },
  16810. },
  16811. [
  16812. {
  16813. name: "Micro",
  16814. height: math.unit(3, "inches")
  16815. },
  16816. {
  16817. name: "Normal",
  16818. height: math.unit(6 + 2 / 12, "feet"),
  16819. default: true
  16820. },
  16821. {
  16822. name: "Macro",
  16823. height: math.unit(300, "feet")
  16824. },
  16825. {
  16826. name: "Megamacro",
  16827. height: math.unit(700, "miles")
  16828. },
  16829. ]
  16830. ))
  16831. characterMakers.push(() => makeCharacter(
  16832. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  16833. {
  16834. front: {
  16835. height: math.unit(6, "feet"),
  16836. weight: math.unit(160, "lb"),
  16837. name: "Front",
  16838. image: {
  16839. source: "./media/characters/mark/front.svg",
  16840. extra: 3300 / 3100,
  16841. bottom: 136.42 / 3440.47
  16842. }
  16843. },
  16844. },
  16845. [
  16846. {
  16847. name: "Macro",
  16848. height: math.unit(120, "meters")
  16849. },
  16850. {
  16851. name: "Bigger Macro",
  16852. height: math.unit(350, "meters")
  16853. },
  16854. {
  16855. name: "Megamacro",
  16856. height: math.unit(8, "km"),
  16857. default: true
  16858. },
  16859. {
  16860. name: "Continental",
  16861. height: math.unit(4550, "km")
  16862. },
  16863. {
  16864. name: "Planetary",
  16865. height: math.unit(65000, "km")
  16866. },
  16867. ]
  16868. ))
  16869. characterMakers.push(() => makeCharacter(
  16870. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  16871. {
  16872. front: {
  16873. height: math.unit(6, "feet"),
  16874. weight: math.unit(400, "lb"),
  16875. name: "Front",
  16876. image: {
  16877. source: "./media/characters/mac/front.svg",
  16878. extra: 1048 / 987.7,
  16879. bottom: 60 / 1107.6,
  16880. }
  16881. },
  16882. },
  16883. [
  16884. {
  16885. name: "Macro",
  16886. height: math.unit(500, "feet"),
  16887. default: true
  16888. },
  16889. ]
  16890. ))
  16891. characterMakers.push(() => makeCharacter(
  16892. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  16893. {
  16894. front: {
  16895. height: math.unit(5 + 2 / 12, "feet"),
  16896. weight: math.unit(190, "lb"),
  16897. name: "Front",
  16898. image: {
  16899. source: "./media/characters/bari/front.svg",
  16900. extra: 3156 / 2880,
  16901. bottom: 0.03
  16902. }
  16903. },
  16904. back: {
  16905. height: math.unit(5 + 2 / 12, "feet"),
  16906. weight: math.unit(190, "lb"),
  16907. name: "Back",
  16908. image: {
  16909. source: "./media/characters/bari/back.svg",
  16910. extra: 3260 / 2834,
  16911. bottom: 0.025
  16912. }
  16913. },
  16914. frontPlush: {
  16915. height: math.unit(5 + 2 / 12, "feet"),
  16916. weight: math.unit(190, "lb"),
  16917. name: "Front (Plush)",
  16918. image: {
  16919. source: "./media/characters/bari/front-plush.svg",
  16920. extra: 1112 / 1061,
  16921. bottom: 0.002
  16922. }
  16923. },
  16924. },
  16925. [
  16926. {
  16927. name: "Micro",
  16928. height: math.unit(3, "inches")
  16929. },
  16930. {
  16931. name: "Normal",
  16932. height: math.unit(5 + 2 / 12, "feet"),
  16933. default: true
  16934. },
  16935. {
  16936. name: "Macro",
  16937. height: math.unit(20, "feet")
  16938. },
  16939. ]
  16940. ))
  16941. characterMakers.push(() => makeCharacter(
  16942. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  16943. {
  16944. front: {
  16945. height: math.unit(6 + 1 / 12, "feet"),
  16946. weight: math.unit(275, "lb"),
  16947. name: "Front",
  16948. image: {
  16949. source: "./media/characters/hunter-misha-raven/front.svg"
  16950. }
  16951. },
  16952. },
  16953. [
  16954. {
  16955. name: "Mortal",
  16956. height: math.unit(6 + 1 / 12, "feet")
  16957. },
  16958. {
  16959. name: "Divine",
  16960. height: math.unit(1.12134e34, "parsecs"),
  16961. default: true
  16962. },
  16963. ]
  16964. ))
  16965. characterMakers.push(() => makeCharacter(
  16966. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  16967. {
  16968. front: {
  16969. height: math.unit(6 + 3 / 12, "feet"),
  16970. weight: math.unit(220, "lb"),
  16971. name: "Front",
  16972. image: {
  16973. source: "./media/characters/max-calore/front.svg",
  16974. extra: 1700 / 1648,
  16975. bottom: 0.01
  16976. }
  16977. },
  16978. back: {
  16979. height: math.unit(6 + 3 / 12, "feet"),
  16980. weight: math.unit(220, "lb"),
  16981. name: "Back",
  16982. image: {
  16983. source: "./media/characters/max-calore/back.svg",
  16984. extra: 1700 / 1648,
  16985. bottom: 0.01
  16986. }
  16987. },
  16988. },
  16989. [
  16990. {
  16991. name: "Normal",
  16992. height: math.unit(6 + 3 / 12, "feet"),
  16993. default: true
  16994. },
  16995. ]
  16996. ))
  16997. characterMakers.push(() => makeCharacter(
  16998. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  16999. {
  17000. side: {
  17001. height: math.unit(2 + 8 / 12, "feet"),
  17002. weight: math.unit(99, "lb"),
  17003. name: "Side",
  17004. image: {
  17005. source: "./media/characters/aspen/side.svg",
  17006. extra: 152 / 138,
  17007. bottom: 0.032
  17008. }
  17009. },
  17010. },
  17011. [
  17012. {
  17013. name: "Normal",
  17014. height: math.unit(2 + 8 / 12, "feet"),
  17015. default: true
  17016. },
  17017. ]
  17018. ))
  17019. characterMakers.push(() => makeCharacter(
  17020. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  17021. {
  17022. side: {
  17023. height: math.unit(3 + 2 / 12, "feet"),
  17024. weight: math.unit(224, "lb"),
  17025. name: "Side",
  17026. image: {
  17027. source: "./media/characters/sheila-feral-wolf/side.svg",
  17028. extra: 179 / 166,
  17029. bottom: 0.03
  17030. }
  17031. },
  17032. },
  17033. [
  17034. {
  17035. name: "Normal",
  17036. height: math.unit(3 + 2 / 12, "feet"),
  17037. default: true
  17038. },
  17039. ]
  17040. ))
  17041. characterMakers.push(() => makeCharacter(
  17042. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  17043. {
  17044. side: {
  17045. height: math.unit(1 + 9 / 12, "feet"),
  17046. weight: math.unit(38, "lb"),
  17047. name: "Side",
  17048. image: {
  17049. source: "./media/characters/michelle/side.svg",
  17050. extra: 147 / 136.7,
  17051. bottom: 0.03
  17052. }
  17053. },
  17054. },
  17055. [
  17056. {
  17057. name: "Normal",
  17058. height: math.unit(1 + 9 / 12, "feet"),
  17059. default: true
  17060. },
  17061. ]
  17062. ))
  17063. characterMakers.push(() => makeCharacter(
  17064. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  17065. {
  17066. front: {
  17067. height: math.unit(1 + 1 / 12, "feet"),
  17068. weight: math.unit(18, "lb"),
  17069. name: "Front",
  17070. image: {
  17071. source: "./media/characters/nino/front.svg"
  17072. }
  17073. },
  17074. },
  17075. [
  17076. {
  17077. name: "Normal",
  17078. height: math.unit(1 + 1 / 12, "feet"),
  17079. default: true
  17080. },
  17081. ]
  17082. ))
  17083. characterMakers.push(() => makeCharacter(
  17084. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  17085. {
  17086. front: {
  17087. height: math.unit(1, "feet"),
  17088. weight: math.unit(16, "lb"),
  17089. name: "Front",
  17090. image: {
  17091. source: "./media/characters/viola/front.svg"
  17092. }
  17093. },
  17094. },
  17095. [
  17096. {
  17097. name: "Normal",
  17098. height: math.unit(1, "feet"),
  17099. default: true
  17100. },
  17101. ]
  17102. ))
  17103. characterMakers.push(() => makeCharacter(
  17104. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  17105. {
  17106. front: {
  17107. height: math.unit(6 + 5 / 12, "feet"),
  17108. weight: math.unit(580, "lb"),
  17109. name: "Front",
  17110. image: {
  17111. source: "./media/characters/atlas/front.svg",
  17112. extra: 298.5 / 290,
  17113. bottom: 0.015
  17114. }
  17115. },
  17116. },
  17117. [
  17118. {
  17119. name: "Normal",
  17120. height: math.unit(6 + 5 / 12, "feet"),
  17121. default: true
  17122. },
  17123. ]
  17124. ))
  17125. characterMakers.push(() => makeCharacter(
  17126. { name: "Davy", species: ["cat"], tags: ["feral"] },
  17127. {
  17128. side: {
  17129. height: math.unit(1 + 10 / 12, "feet"),
  17130. weight: math.unit(25, "lb"),
  17131. name: "Side",
  17132. image: {
  17133. source: "./media/characters/davy/side.svg",
  17134. extra: 200 / 170,
  17135. bottom: 0.01
  17136. }
  17137. },
  17138. },
  17139. [
  17140. {
  17141. name: "Normal",
  17142. height: math.unit(1 + 10 / 12, "feet"),
  17143. default: true
  17144. },
  17145. ]
  17146. ))
  17147. characterMakers.push(() => makeCharacter(
  17148. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  17149. {
  17150. side: {
  17151. height: math.unit(4 + 8 / 12, "feet"),
  17152. weight: math.unit(166, "lb"),
  17153. name: "Side",
  17154. image: {
  17155. source: "./media/characters/fiona/side.svg",
  17156. extra: 232 / 220,
  17157. bottom: 0.03
  17158. }
  17159. },
  17160. },
  17161. [
  17162. {
  17163. name: "Normal",
  17164. height: math.unit(4 + 8 / 12, "feet"),
  17165. default: true
  17166. },
  17167. ]
  17168. ))
  17169. characterMakers.push(() => makeCharacter(
  17170. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  17171. {
  17172. front: {
  17173. height: math.unit(2, "feet"),
  17174. weight: math.unit(62, "lb"),
  17175. name: "Front",
  17176. image: {
  17177. source: "./media/characters/lyla/front.svg",
  17178. bottom: 0.1
  17179. }
  17180. },
  17181. },
  17182. [
  17183. {
  17184. name: "Normal",
  17185. height: math.unit(2, "feet"),
  17186. default: true
  17187. },
  17188. ]
  17189. ))
  17190. characterMakers.push(() => makeCharacter(
  17191. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  17192. {
  17193. side: {
  17194. height: math.unit(1.8, "feet"),
  17195. weight: math.unit(44, "lb"),
  17196. name: "Side",
  17197. image: {
  17198. source: "./media/characters/perseus/side.svg",
  17199. bottom: 0.21
  17200. }
  17201. },
  17202. },
  17203. [
  17204. {
  17205. name: "Normal",
  17206. height: math.unit(1.8, "feet"),
  17207. default: true
  17208. },
  17209. ]
  17210. ))
  17211. characterMakers.push(() => makeCharacter(
  17212. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  17213. {
  17214. side: {
  17215. height: math.unit(4 + 2 / 12, "feet"),
  17216. weight: math.unit(20, "lb"),
  17217. name: "Side",
  17218. image: {
  17219. source: "./media/characters/remus/side.svg"
  17220. }
  17221. },
  17222. },
  17223. [
  17224. {
  17225. name: "Normal",
  17226. height: math.unit(4 + 2 / 12, "feet"),
  17227. default: true
  17228. },
  17229. ]
  17230. ))
  17231. characterMakers.push(() => makeCharacter(
  17232. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  17233. {
  17234. front: {
  17235. height: math.unit(4 + 11 / 12, "feet"),
  17236. weight: math.unit(114, "lb"),
  17237. name: "Front",
  17238. image: {
  17239. source: "./media/characters/raf/front.svg",
  17240. bottom: 20.5 / 1863
  17241. }
  17242. },
  17243. side: {
  17244. height: math.unit(4 + 11 / 12, "feet"),
  17245. weight: math.unit(114, "lb"),
  17246. name: "Side",
  17247. image: {
  17248. source: "./media/characters/raf/side.svg",
  17249. bottom: 22 / 1822
  17250. }
  17251. },
  17252. },
  17253. [
  17254. {
  17255. name: "Micro",
  17256. height: math.unit(2, "inches")
  17257. },
  17258. {
  17259. name: "Normal",
  17260. height: math.unit(4 + 11 / 12, "feet"),
  17261. default: true
  17262. },
  17263. {
  17264. name: "Macro",
  17265. height: math.unit(70, "feet")
  17266. },
  17267. ]
  17268. ))
  17269. characterMakers.push(() => makeCharacter(
  17270. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  17271. {
  17272. front: {
  17273. height: math.unit(1.5, "meters"),
  17274. weight: math.unit(68, "kg"),
  17275. name: "Front",
  17276. image: {
  17277. source: "./media/characters/liam-einarr/front.svg",
  17278. extra: 2822 / 2666
  17279. }
  17280. },
  17281. back: {
  17282. height: math.unit(1.5, "meters"),
  17283. weight: math.unit(68, "kg"),
  17284. name: "Back",
  17285. image: {
  17286. source: "./media/characters/liam-einarr/back.svg",
  17287. extra: 2822 / 2666,
  17288. bottom: 0.015
  17289. }
  17290. },
  17291. },
  17292. [
  17293. {
  17294. name: "Normal",
  17295. height: math.unit(1.5, "meters"),
  17296. default: true
  17297. },
  17298. {
  17299. name: "Macro",
  17300. height: math.unit(150, "meters")
  17301. },
  17302. {
  17303. name: "Megamacro",
  17304. height: math.unit(35, "km")
  17305. },
  17306. ]
  17307. ))
  17308. characterMakers.push(() => makeCharacter(
  17309. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  17310. {
  17311. front: {
  17312. height: math.unit(6, "feet"),
  17313. weight: math.unit(75, "kg"),
  17314. name: "Front",
  17315. image: {
  17316. source: "./media/characters/linda/front.svg",
  17317. extra: 930 / 874,
  17318. bottom: 0.004
  17319. }
  17320. },
  17321. },
  17322. [
  17323. {
  17324. name: "Normal",
  17325. height: math.unit(6, "feet"),
  17326. default: true
  17327. },
  17328. ]
  17329. ))
  17330. characterMakers.push(() => makeCharacter(
  17331. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  17332. {
  17333. front: {
  17334. height: math.unit(6 + 8 / 12, "feet"),
  17335. weight: math.unit(220, "lb"),
  17336. name: "Front",
  17337. image: {
  17338. source: "./media/characters/caylex/front.svg",
  17339. extra: 821 / 772,
  17340. bottom: 0.07
  17341. }
  17342. },
  17343. back: {
  17344. height: math.unit(6 + 8 / 12, "feet"),
  17345. weight: math.unit(220, "lb"),
  17346. name: "Back",
  17347. image: {
  17348. source: "./media/characters/caylex/back.svg",
  17349. extra: 821 / 772,
  17350. bottom: 0.022
  17351. }
  17352. },
  17353. hand: {
  17354. height: math.unit(1.25, "feet"),
  17355. name: "Hand",
  17356. image: {
  17357. source: "./media/characters/caylex/hand.svg"
  17358. }
  17359. },
  17360. foot: {
  17361. height: math.unit(1.6, "feet"),
  17362. name: "Foot",
  17363. image: {
  17364. source: "./media/characters/caylex/foot.svg"
  17365. }
  17366. },
  17367. armored: {
  17368. height: math.unit(6 + 8 / 12, "feet"),
  17369. weight: math.unit(250, "lb"),
  17370. name: "Armored",
  17371. image: {
  17372. source: "./media/characters/caylex/armored.svg",
  17373. extra: 1420 / 1310,
  17374. bottom: 0.045
  17375. }
  17376. },
  17377. },
  17378. [
  17379. {
  17380. name: "Normal",
  17381. height: math.unit(6 + 8 / 12, "feet"),
  17382. default: true
  17383. },
  17384. {
  17385. name: "Normal+",
  17386. height: math.unit(12, "feet")
  17387. },
  17388. ]
  17389. ))
  17390. characterMakers.push(() => makeCharacter(
  17391. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  17392. {
  17393. front: {
  17394. height: math.unit(7 + 6 / 12, "feet"),
  17395. weight: math.unit(288, "lb"),
  17396. name: "Front",
  17397. image: {
  17398. source: "./media/characters/alana/front.svg",
  17399. extra: 679 / 653,
  17400. bottom: 22.5 / 701
  17401. }
  17402. },
  17403. },
  17404. [
  17405. {
  17406. name: "Normal",
  17407. height: math.unit(7 + 6 / 12, "feet")
  17408. },
  17409. {
  17410. name: "Large",
  17411. height: math.unit(50, "feet")
  17412. },
  17413. {
  17414. name: "Macro",
  17415. height: math.unit(100, "feet"),
  17416. default: true
  17417. },
  17418. {
  17419. name: "Macro+",
  17420. height: math.unit(200, "feet")
  17421. },
  17422. ]
  17423. ))
  17424. characterMakers.push(() => makeCharacter(
  17425. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  17426. {
  17427. front: {
  17428. height: math.unit(6 + 1 / 12, "feet"),
  17429. weight: math.unit(210, "lb"),
  17430. name: "Front",
  17431. image: {
  17432. source: "./media/characters/hasani/front.svg",
  17433. extra: 244 / 232,
  17434. bottom: 0.01
  17435. }
  17436. },
  17437. back: {
  17438. height: math.unit(6 + 1 / 12, "feet"),
  17439. weight: math.unit(210, "lb"),
  17440. name: "Back",
  17441. image: {
  17442. source: "./media/characters/hasani/back.svg",
  17443. extra: 244 / 232,
  17444. bottom: 0.01
  17445. }
  17446. },
  17447. },
  17448. [
  17449. {
  17450. name: "Normal",
  17451. height: math.unit(6 + 1 / 12, "feet")
  17452. },
  17453. {
  17454. name: "Macro",
  17455. height: math.unit(175, "feet"),
  17456. default: true
  17457. },
  17458. ]
  17459. ))
  17460. characterMakers.push(() => makeCharacter(
  17461. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  17462. {
  17463. front: {
  17464. height: math.unit(1.82, "meters"),
  17465. weight: math.unit(140, "lb"),
  17466. name: "Front",
  17467. image: {
  17468. source: "./media/characters/nita/front.svg",
  17469. extra: 2473 / 2363,
  17470. bottom: 0.01
  17471. }
  17472. },
  17473. },
  17474. [
  17475. {
  17476. name: "Normal",
  17477. height: math.unit(1.82, "m")
  17478. },
  17479. {
  17480. name: "Macro",
  17481. height: math.unit(300, "m")
  17482. },
  17483. {
  17484. name: "Mistake Canon",
  17485. height: math.unit(0.5, "miles"),
  17486. default: true
  17487. },
  17488. {
  17489. name: "Big Mistake",
  17490. height: math.unit(13, "miles")
  17491. },
  17492. {
  17493. name: "Playing God",
  17494. height: math.unit(2450, "miles")
  17495. },
  17496. ]
  17497. ))
  17498. characterMakers.push(() => makeCharacter(
  17499. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  17500. {
  17501. front: {
  17502. height: math.unit(4, "feet"),
  17503. weight: math.unit(120, "lb"),
  17504. name: "Front",
  17505. image: {
  17506. source: "./media/characters/shiriko/front.svg",
  17507. extra: 970/934,
  17508. bottom: 5/975
  17509. }
  17510. },
  17511. },
  17512. [
  17513. {
  17514. name: "Normal",
  17515. height: math.unit(4, "feet"),
  17516. default: true
  17517. },
  17518. ]
  17519. ))
  17520. characterMakers.push(() => makeCharacter(
  17521. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  17522. {
  17523. front: {
  17524. height: math.unit(6, "feet"),
  17525. name: "front",
  17526. image: {
  17527. source: "./media/characters/deja/front.svg",
  17528. extra: 926 / 840,
  17529. bottom: 0.07
  17530. }
  17531. },
  17532. },
  17533. [
  17534. {
  17535. name: "Planck Length",
  17536. height: math.unit(1.6e-35, "meters")
  17537. },
  17538. {
  17539. name: "Normal",
  17540. height: math.unit(30.48, "meters"),
  17541. default: true
  17542. },
  17543. {
  17544. name: "Universal",
  17545. height: math.unit(8.8e26, "meters")
  17546. },
  17547. ]
  17548. ))
  17549. characterMakers.push(() => makeCharacter(
  17550. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  17551. {
  17552. side: {
  17553. height: math.unit(8, "feet"),
  17554. weight: math.unit(6300, "lb"),
  17555. name: "Side",
  17556. image: {
  17557. source: "./media/characters/anima/side.svg",
  17558. bottom: 0.035
  17559. }
  17560. },
  17561. },
  17562. [
  17563. {
  17564. name: "Normal",
  17565. height: math.unit(8, "feet"),
  17566. default: true
  17567. },
  17568. ]
  17569. ))
  17570. characterMakers.push(() => makeCharacter(
  17571. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  17572. {
  17573. front: {
  17574. height: math.unit(8, "feet"),
  17575. weight: math.unit(350, "lb"),
  17576. name: "Front",
  17577. image: {
  17578. source: "./media/characters/bianca/front.svg",
  17579. extra: 234 / 225,
  17580. bottom: 0.03
  17581. }
  17582. },
  17583. },
  17584. [
  17585. {
  17586. name: "Normal",
  17587. height: math.unit(8, "feet"),
  17588. default: true
  17589. },
  17590. ]
  17591. ))
  17592. characterMakers.push(() => makeCharacter(
  17593. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  17594. {
  17595. front: {
  17596. height: math.unit(6, "feet"),
  17597. weight: math.unit(150, "lb"),
  17598. name: "Front",
  17599. image: {
  17600. source: "./media/characters/adinia/front.svg",
  17601. extra: 1845 / 1672,
  17602. bottom: 0.02
  17603. }
  17604. },
  17605. back: {
  17606. height: math.unit(6, "feet"),
  17607. weight: math.unit(150, "lb"),
  17608. name: "Back",
  17609. image: {
  17610. source: "./media/characters/adinia/back.svg",
  17611. extra: 1845 / 1672,
  17612. bottom: 0.002
  17613. }
  17614. },
  17615. },
  17616. [
  17617. {
  17618. name: "Normal",
  17619. height: math.unit(11 + 5 / 12, "feet"),
  17620. default: true
  17621. },
  17622. ]
  17623. ))
  17624. characterMakers.push(() => makeCharacter(
  17625. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  17626. {
  17627. front: {
  17628. height: math.unit(3, "meters"),
  17629. weight: math.unit(200, "kg"),
  17630. name: "Front",
  17631. image: {
  17632. source: "./media/characters/lykasa/front.svg",
  17633. extra: 1076 / 976,
  17634. bottom: 0.06
  17635. }
  17636. },
  17637. },
  17638. [
  17639. {
  17640. name: "Normal",
  17641. height: math.unit(3, "meters")
  17642. },
  17643. {
  17644. name: "Kaiju",
  17645. height: math.unit(120, "meters"),
  17646. default: true
  17647. },
  17648. {
  17649. name: "Mega Kaiju",
  17650. height: math.unit(240, "km")
  17651. },
  17652. {
  17653. name: "Giga Kaiju",
  17654. height: math.unit(400, "megameters")
  17655. },
  17656. {
  17657. name: "Tera Kaiju",
  17658. height: math.unit(800, "gigameters")
  17659. },
  17660. {
  17661. name: "Kaiju Dragon Goddess",
  17662. height: math.unit(26, "zettaparsecs")
  17663. },
  17664. ]
  17665. ))
  17666. characterMakers.push(() => makeCharacter(
  17667. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  17668. {
  17669. side: {
  17670. height: math.unit(283 / 124 * 6, "feet"),
  17671. weight: math.unit(35000, "lb"),
  17672. name: "Side",
  17673. image: {
  17674. source: "./media/characters/malfaren/side.svg",
  17675. extra: 2500 / 1010,
  17676. bottom: 0.01
  17677. }
  17678. },
  17679. front: {
  17680. height: math.unit(22.36, "feet"),
  17681. weight: math.unit(35000, "lb"),
  17682. name: "Front",
  17683. image: {
  17684. source: "./media/characters/malfaren/front.svg",
  17685. extra: 1631 / 1476,
  17686. bottom: 0.01
  17687. }
  17688. },
  17689. maw: {
  17690. height: math.unit(6.9, "feet"),
  17691. name: "Maw",
  17692. image: {
  17693. source: "./media/characters/malfaren/maw.svg"
  17694. }
  17695. },
  17696. },
  17697. [
  17698. {
  17699. name: "Big",
  17700. height: math.unit(283 / 162 * 6, "feet"),
  17701. },
  17702. {
  17703. name: "Bigger",
  17704. height: math.unit(283 / 124 * 6, "feet")
  17705. },
  17706. {
  17707. name: "Massive",
  17708. height: math.unit(283 / 92 * 6, "feet"),
  17709. default: true
  17710. },
  17711. {
  17712. name: "👀💦",
  17713. height: math.unit(283 / 73 * 6, "feet"),
  17714. },
  17715. ]
  17716. ))
  17717. characterMakers.push(() => makeCharacter(
  17718. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  17719. {
  17720. front: {
  17721. height: math.unit(1.7, "m"),
  17722. weight: math.unit(70, "kg"),
  17723. name: "Front",
  17724. image: {
  17725. source: "./media/characters/kernel/front.svg",
  17726. extra: 222 / 210,
  17727. bottom: 0.007
  17728. }
  17729. },
  17730. },
  17731. [
  17732. {
  17733. name: "Nano",
  17734. height: math.unit(17, "micrometers")
  17735. },
  17736. {
  17737. name: "Micro",
  17738. height: math.unit(1.7, "mm")
  17739. },
  17740. {
  17741. name: "Small",
  17742. height: math.unit(1.7, "cm")
  17743. },
  17744. {
  17745. name: "Normal",
  17746. height: math.unit(1.7, "m"),
  17747. default: true
  17748. },
  17749. ]
  17750. ))
  17751. characterMakers.push(() => makeCharacter(
  17752. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  17753. {
  17754. front: {
  17755. height: math.unit(1.75, "meters"),
  17756. weight: math.unit(65, "kg"),
  17757. name: "Front",
  17758. image: {
  17759. source: "./media/characters/jayne-folest/front.svg",
  17760. extra: 2115 / 2007,
  17761. bottom: 0.02
  17762. }
  17763. },
  17764. back: {
  17765. height: math.unit(1.75, "meters"),
  17766. weight: math.unit(65, "kg"),
  17767. name: "Back",
  17768. image: {
  17769. source: "./media/characters/jayne-folest/back.svg",
  17770. extra: 2115 / 2007,
  17771. bottom: 0.005
  17772. }
  17773. },
  17774. frontClothed: {
  17775. height: math.unit(1.75, "meters"),
  17776. weight: math.unit(65, "kg"),
  17777. name: "Front (Clothed)",
  17778. image: {
  17779. source: "./media/characters/jayne-folest/front-clothed.svg",
  17780. extra: 2115 / 2007,
  17781. bottom: 0.035
  17782. }
  17783. },
  17784. hand: {
  17785. height: math.unit(1 / 1.260, "feet"),
  17786. name: "Hand",
  17787. image: {
  17788. source: "./media/characters/jayne-folest/hand.svg"
  17789. }
  17790. },
  17791. foot: {
  17792. height: math.unit(1 / 0.918, "feet"),
  17793. name: "Foot",
  17794. image: {
  17795. source: "./media/characters/jayne-folest/foot.svg"
  17796. }
  17797. },
  17798. },
  17799. [
  17800. {
  17801. name: "Micro",
  17802. height: math.unit(4, "cm")
  17803. },
  17804. {
  17805. name: "Normal",
  17806. height: math.unit(1.75, "meters")
  17807. },
  17808. {
  17809. name: "Macro",
  17810. height: math.unit(47.5, "meters"),
  17811. default: true
  17812. },
  17813. ]
  17814. ))
  17815. characterMakers.push(() => makeCharacter(
  17816. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  17817. {
  17818. front: {
  17819. height: math.unit(180, "cm"),
  17820. weight: math.unit(70, "kg"),
  17821. name: "Front",
  17822. image: {
  17823. source: "./media/characters/algier/front.svg",
  17824. extra: 596 / 572,
  17825. bottom: 0.04
  17826. }
  17827. },
  17828. back: {
  17829. height: math.unit(180, "cm"),
  17830. weight: math.unit(70, "kg"),
  17831. name: "Back",
  17832. image: {
  17833. source: "./media/characters/algier/back.svg",
  17834. extra: 596 / 572,
  17835. bottom: 0.025
  17836. }
  17837. },
  17838. frontdressed: {
  17839. height: math.unit(180, "cm"),
  17840. weight: math.unit(150, "kg"),
  17841. name: "Front-dressed",
  17842. image: {
  17843. source: "./media/characters/algier/front-dressed.svg",
  17844. extra: 596 / 572,
  17845. bottom: 0.038
  17846. }
  17847. },
  17848. },
  17849. [
  17850. {
  17851. name: "Micro",
  17852. height: math.unit(5, "cm")
  17853. },
  17854. {
  17855. name: "Normal",
  17856. height: math.unit(180, "cm"),
  17857. default: true
  17858. },
  17859. {
  17860. name: "Macro",
  17861. height: math.unit(64, "m")
  17862. },
  17863. ]
  17864. ))
  17865. characterMakers.push(() => makeCharacter(
  17866. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  17867. {
  17868. upright: {
  17869. height: math.unit(7, "feet"),
  17870. weight: math.unit(300, "lb"),
  17871. name: "Upright",
  17872. image: {
  17873. source: "./media/characters/pretzel/upright.svg",
  17874. extra: 534 / 522,
  17875. bottom: 0.065
  17876. }
  17877. },
  17878. sprawling: {
  17879. height: math.unit(3.75, "feet"),
  17880. weight: math.unit(300, "lb"),
  17881. name: "Sprawling",
  17882. image: {
  17883. source: "./media/characters/pretzel/sprawling.svg",
  17884. extra: 314 / 281,
  17885. bottom: 0.1
  17886. }
  17887. },
  17888. tongue: {
  17889. height: math.unit(2, "feet"),
  17890. name: "Tongue",
  17891. image: {
  17892. source: "./media/characters/pretzel/tongue.svg"
  17893. }
  17894. },
  17895. },
  17896. [
  17897. {
  17898. name: "Normal",
  17899. height: math.unit(7, "feet"),
  17900. default: true
  17901. },
  17902. {
  17903. name: "Oversized",
  17904. height: math.unit(15, "feet")
  17905. },
  17906. {
  17907. name: "Huge",
  17908. height: math.unit(30, "feet")
  17909. },
  17910. {
  17911. name: "Macro",
  17912. height: math.unit(250, "feet")
  17913. },
  17914. ]
  17915. ))
  17916. characterMakers.push(() => makeCharacter(
  17917. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  17918. {
  17919. sideFront: {
  17920. height: math.unit(5 + 2 / 12, "feet"),
  17921. weight: math.unit(120, "lb"),
  17922. name: "Front Side",
  17923. image: {
  17924. source: "./media/characters/roxi/side-front.svg",
  17925. extra: 2924 / 2717,
  17926. bottom: 0.08
  17927. }
  17928. },
  17929. sideBack: {
  17930. height: math.unit(5 + 2 / 12, "feet"),
  17931. weight: math.unit(120, "lb"),
  17932. name: "Back Side",
  17933. image: {
  17934. source: "./media/characters/roxi/side-back.svg",
  17935. extra: 2904 / 2693,
  17936. bottom: 0.06
  17937. }
  17938. },
  17939. front: {
  17940. height: math.unit(5 + 2 / 12, "feet"),
  17941. weight: math.unit(120, "lb"),
  17942. name: "Front",
  17943. image: {
  17944. source: "./media/characters/roxi/front.svg",
  17945. extra: 2028 / 1907,
  17946. bottom: 0.01
  17947. }
  17948. },
  17949. frontAlt: {
  17950. height: math.unit(5 + 2 / 12, "feet"),
  17951. weight: math.unit(120, "lb"),
  17952. name: "Front (Alt)",
  17953. image: {
  17954. source: "./media/characters/roxi/front-alt.svg",
  17955. extra: 1828 / 1798,
  17956. bottom: 0.01
  17957. }
  17958. },
  17959. sitting: {
  17960. height: math.unit(2.8, "feet"),
  17961. weight: math.unit(120, "lb"),
  17962. name: "Sitting",
  17963. image: {
  17964. source: "./media/characters/roxi/sitting.svg",
  17965. extra: 2660 / 2462,
  17966. bottom: 0.1
  17967. }
  17968. },
  17969. },
  17970. [
  17971. {
  17972. name: "Normal",
  17973. height: math.unit(5 + 2 / 12, "feet"),
  17974. default: true
  17975. },
  17976. ]
  17977. ))
  17978. characterMakers.push(() => makeCharacter(
  17979. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  17980. {
  17981. side: {
  17982. height: math.unit(55, "feet"),
  17983. weight: math.unit(153, "tons"),
  17984. name: "Side",
  17985. image: {
  17986. source: "./media/characters/shadow/side.svg",
  17987. extra: 701 / 628,
  17988. bottom: 0.02
  17989. }
  17990. },
  17991. flying: {
  17992. height: math.unit(145, "feet"),
  17993. weight: math.unit(153, "tons"),
  17994. name: "Flying",
  17995. image: {
  17996. source: "./media/characters/shadow/flying.svg"
  17997. }
  17998. },
  17999. },
  18000. [
  18001. {
  18002. name: "Normal",
  18003. height: math.unit(55, "feet"),
  18004. default: true
  18005. },
  18006. ]
  18007. ))
  18008. characterMakers.push(() => makeCharacter(
  18009. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  18010. {
  18011. front: {
  18012. height: math.unit(6, "feet"),
  18013. weight: math.unit(200, "lb"),
  18014. name: "Front",
  18015. image: {
  18016. source: "./media/characters/marcie/front.svg",
  18017. extra: 960 / 876,
  18018. bottom: 58 / 1017.87
  18019. }
  18020. },
  18021. },
  18022. [
  18023. {
  18024. name: "Macro",
  18025. height: math.unit(1, "mile"),
  18026. default: true
  18027. },
  18028. ]
  18029. ))
  18030. characterMakers.push(() => makeCharacter(
  18031. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  18032. {
  18033. front: {
  18034. height: math.unit(7, "feet"),
  18035. weight: math.unit(200, "lb"),
  18036. name: "Front",
  18037. image: {
  18038. source: "./media/characters/kachina/front.svg",
  18039. extra: 1290.68 / 1119,
  18040. bottom: 36.5 / 1327.18
  18041. }
  18042. },
  18043. },
  18044. [
  18045. {
  18046. name: "Normal",
  18047. height: math.unit(7, "feet"),
  18048. default: true
  18049. },
  18050. ]
  18051. ))
  18052. characterMakers.push(() => makeCharacter(
  18053. { name: "Kash", species: ["canine"], tags: ["feral"] },
  18054. {
  18055. looking: {
  18056. height: math.unit(2, "meters"),
  18057. weight: math.unit(300, "kg"),
  18058. name: "Looking",
  18059. image: {
  18060. source: "./media/characters/kash/looking.svg",
  18061. extra: 474 / 344,
  18062. bottom: 0.03
  18063. }
  18064. },
  18065. side: {
  18066. height: math.unit(2, "meters"),
  18067. weight: math.unit(300, "kg"),
  18068. name: "Side",
  18069. image: {
  18070. source: "./media/characters/kash/side.svg",
  18071. extra: 302 / 251,
  18072. bottom: 0.03
  18073. }
  18074. },
  18075. front: {
  18076. height: math.unit(2, "meters"),
  18077. weight: math.unit(300, "kg"),
  18078. name: "Front",
  18079. image: {
  18080. source: "./media/characters/kash/front.svg",
  18081. extra: 495 / 360,
  18082. bottom: 0.015
  18083. }
  18084. },
  18085. },
  18086. [
  18087. {
  18088. name: "Normal",
  18089. height: math.unit(2, "meters"),
  18090. default: true
  18091. },
  18092. {
  18093. name: "Big",
  18094. height: math.unit(3, "meters")
  18095. },
  18096. {
  18097. name: "Large",
  18098. height: math.unit(5, "meters")
  18099. },
  18100. ]
  18101. ))
  18102. characterMakers.push(() => makeCharacter(
  18103. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  18104. {
  18105. feeding: {
  18106. height: math.unit(6.7, "feet"),
  18107. weight: math.unit(350, "lb"),
  18108. name: "Feeding",
  18109. image: {
  18110. source: "./media/characters/lalim/feeding.svg",
  18111. }
  18112. },
  18113. },
  18114. [
  18115. {
  18116. name: "Normal",
  18117. height: math.unit(6.7, "feet"),
  18118. default: true
  18119. },
  18120. ]
  18121. ))
  18122. characterMakers.push(() => makeCharacter(
  18123. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  18124. {
  18125. front: {
  18126. height: math.unit(9.5, "feet"),
  18127. weight: math.unit(600, "lb"),
  18128. name: "Front",
  18129. image: {
  18130. source: "./media/characters/de'vout/front.svg",
  18131. extra: 1443 / 1328,
  18132. bottom: 0.025
  18133. }
  18134. },
  18135. back: {
  18136. height: math.unit(9.5, "feet"),
  18137. weight: math.unit(600, "lb"),
  18138. name: "Back",
  18139. image: {
  18140. source: "./media/characters/de'vout/back.svg",
  18141. extra: 1443 / 1328
  18142. }
  18143. },
  18144. frontDressed: {
  18145. height: math.unit(9.5, "feet"),
  18146. weight: math.unit(600, "lb"),
  18147. name: "Front (Dressed",
  18148. image: {
  18149. source: "./media/characters/de'vout/front-dressed.svg",
  18150. extra: 1443 / 1328,
  18151. bottom: 0.025
  18152. }
  18153. },
  18154. backDressed: {
  18155. height: math.unit(9.5, "feet"),
  18156. weight: math.unit(600, "lb"),
  18157. name: "Back (Dressed",
  18158. image: {
  18159. source: "./media/characters/de'vout/back-dressed.svg",
  18160. extra: 1443 / 1328
  18161. }
  18162. },
  18163. },
  18164. [
  18165. {
  18166. name: "Normal",
  18167. height: math.unit(9.5, "feet"),
  18168. default: true
  18169. },
  18170. ]
  18171. ))
  18172. characterMakers.push(() => makeCharacter(
  18173. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  18174. {
  18175. front: {
  18176. height: math.unit(8, "feet"),
  18177. weight: math.unit(225, "lb"),
  18178. name: "Front",
  18179. image: {
  18180. source: "./media/characters/talana/front.svg",
  18181. extra: 1410 / 1300,
  18182. bottom: 0.015
  18183. }
  18184. },
  18185. frontDressed: {
  18186. height: math.unit(8, "feet"),
  18187. weight: math.unit(225, "lb"),
  18188. name: "Front (Dressed",
  18189. image: {
  18190. source: "./media/characters/talana/front-dressed.svg",
  18191. extra: 1410 / 1300,
  18192. bottom: 0.015
  18193. }
  18194. },
  18195. },
  18196. [
  18197. {
  18198. name: "Normal",
  18199. height: math.unit(8, "feet"),
  18200. default: true
  18201. },
  18202. ]
  18203. ))
  18204. characterMakers.push(() => makeCharacter(
  18205. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  18206. {
  18207. side: {
  18208. height: math.unit(7.2, "feet"),
  18209. weight: math.unit(150, "lb"),
  18210. name: "Side",
  18211. image: {
  18212. source: "./media/characters/xeauvok/side.svg",
  18213. extra: 1975 / 1523,
  18214. bottom: 0.07
  18215. }
  18216. },
  18217. },
  18218. [
  18219. {
  18220. name: "Normal",
  18221. height: math.unit(7.2, "feet"),
  18222. default: true
  18223. },
  18224. ]
  18225. ))
  18226. characterMakers.push(() => makeCharacter(
  18227. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  18228. {
  18229. side: {
  18230. height: math.unit(10, "feet"),
  18231. weight: math.unit(900, "kg"),
  18232. name: "Side",
  18233. image: {
  18234. source: "./media/characters/zara/side.svg",
  18235. extra: 504 / 498
  18236. }
  18237. },
  18238. },
  18239. [
  18240. {
  18241. name: "Normal",
  18242. height: math.unit(10, "feet"),
  18243. default: true
  18244. },
  18245. ]
  18246. ))
  18247. characterMakers.push(() => makeCharacter(
  18248. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  18249. {
  18250. side: {
  18251. height: math.unit(6, "feet"),
  18252. weight: math.unit(150, "lb"),
  18253. name: "Side",
  18254. image: {
  18255. source: "./media/characters/richard-dragon/side.svg",
  18256. extra: 845 / 340,
  18257. bottom: 0.017
  18258. }
  18259. },
  18260. maw: {
  18261. height: math.unit(2.97, "feet"),
  18262. name: "Maw",
  18263. image: {
  18264. source: "./media/characters/richard-dragon/maw.svg"
  18265. }
  18266. },
  18267. },
  18268. [
  18269. ]
  18270. ))
  18271. characterMakers.push(() => makeCharacter(
  18272. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  18273. {
  18274. front: {
  18275. height: math.unit(4, "feet"),
  18276. weight: math.unit(100, "lb"),
  18277. name: "Front",
  18278. image: {
  18279. source: "./media/characters/richard-smeargle/front.svg",
  18280. extra: 2952 / 2820,
  18281. bottom: 0.028
  18282. }
  18283. },
  18284. },
  18285. [
  18286. {
  18287. name: "Normal",
  18288. height: math.unit(4, "feet"),
  18289. default: true
  18290. },
  18291. {
  18292. name: "Dynamax",
  18293. height: math.unit(20, "meters")
  18294. },
  18295. ]
  18296. ))
  18297. characterMakers.push(() => makeCharacter(
  18298. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  18299. {
  18300. front: {
  18301. height: math.unit(6, "feet"),
  18302. weight: math.unit(110, "lb"),
  18303. name: "Front",
  18304. image: {
  18305. source: "./media/characters/klay/front.svg",
  18306. extra: 962 / 883,
  18307. bottom: 0.04
  18308. }
  18309. },
  18310. back: {
  18311. height: math.unit(6, "feet"),
  18312. weight: math.unit(110, "lb"),
  18313. name: "Back",
  18314. image: {
  18315. source: "./media/characters/klay/back.svg",
  18316. extra: 962 / 883
  18317. }
  18318. },
  18319. beans: {
  18320. height: math.unit(1.15, "feet"),
  18321. name: "Beans",
  18322. image: {
  18323. source: "./media/characters/klay/beans.svg"
  18324. }
  18325. },
  18326. },
  18327. [
  18328. {
  18329. name: "Micro",
  18330. height: math.unit(6, "inches")
  18331. },
  18332. {
  18333. name: "Mini",
  18334. height: math.unit(3, "feet")
  18335. },
  18336. {
  18337. name: "Normal",
  18338. height: math.unit(6, "feet"),
  18339. default: true
  18340. },
  18341. {
  18342. name: "Big",
  18343. height: math.unit(25, "feet")
  18344. },
  18345. {
  18346. name: "Macro",
  18347. height: math.unit(100, "feet")
  18348. },
  18349. {
  18350. name: "Megamacro",
  18351. height: math.unit(400, "feet")
  18352. },
  18353. ]
  18354. ))
  18355. characterMakers.push(() => makeCharacter(
  18356. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  18357. {
  18358. front: {
  18359. height: math.unit(6, "feet"),
  18360. weight: math.unit(160, "lb"),
  18361. name: "Front",
  18362. image: {
  18363. source: "./media/characters/marcus/front.svg",
  18364. extra: 734 / 676,
  18365. bottom: 0.03
  18366. }
  18367. },
  18368. },
  18369. [
  18370. {
  18371. name: "Little",
  18372. height: math.unit(6, "feet")
  18373. },
  18374. {
  18375. name: "Normal",
  18376. height: math.unit(110, "feet"),
  18377. default: true
  18378. },
  18379. {
  18380. name: "Macro",
  18381. height: math.unit(250, "feet")
  18382. },
  18383. {
  18384. name: "Megamacro",
  18385. height: math.unit(1000, "feet")
  18386. },
  18387. ]
  18388. ))
  18389. characterMakers.push(() => makeCharacter(
  18390. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  18391. {
  18392. front: {
  18393. height: math.unit(7, "feet"),
  18394. weight: math.unit(275, "lb"),
  18395. name: "Front",
  18396. image: {
  18397. source: "./media/characters/claude-delroute/front.svg",
  18398. extra: 230 / 214,
  18399. bottom: 0.007
  18400. }
  18401. },
  18402. side: {
  18403. height: math.unit(7, "feet"),
  18404. weight: math.unit(275, "lb"),
  18405. name: "Side",
  18406. image: {
  18407. source: "./media/characters/claude-delroute/side.svg",
  18408. extra: 222 / 214,
  18409. bottom: 0.01
  18410. }
  18411. },
  18412. back: {
  18413. height: math.unit(7, "feet"),
  18414. weight: math.unit(275, "lb"),
  18415. name: "Back",
  18416. image: {
  18417. source: "./media/characters/claude-delroute/back.svg",
  18418. extra: 230 / 214,
  18419. bottom: 0.015
  18420. }
  18421. },
  18422. maw: {
  18423. height: math.unit(0.6407, "meters"),
  18424. name: "Maw",
  18425. image: {
  18426. source: "./media/characters/claude-delroute/maw.svg"
  18427. }
  18428. },
  18429. },
  18430. [
  18431. {
  18432. name: "Normal",
  18433. height: math.unit(7, "feet"),
  18434. default: true
  18435. },
  18436. {
  18437. name: "Lorge",
  18438. height: math.unit(20, "feet")
  18439. },
  18440. ]
  18441. ))
  18442. characterMakers.push(() => makeCharacter(
  18443. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  18444. {
  18445. front: {
  18446. height: math.unit(8 + 4 / 12, "feet"),
  18447. weight: math.unit(600, "lb"),
  18448. name: "Front",
  18449. image: {
  18450. source: "./media/characters/dragonien/front.svg",
  18451. extra: 100 / 94,
  18452. bottom: 3.3 / 103.3445
  18453. }
  18454. },
  18455. back: {
  18456. height: math.unit(8 + 4 / 12, "feet"),
  18457. weight: math.unit(600, "lb"),
  18458. name: "Back",
  18459. image: {
  18460. source: "./media/characters/dragonien/back.svg",
  18461. extra: 776 / 746,
  18462. bottom: 6.4 / 782.0616
  18463. }
  18464. },
  18465. foot: {
  18466. height: math.unit(1.54, "feet"),
  18467. name: "Foot",
  18468. image: {
  18469. source: "./media/characters/dragonien/foot.svg",
  18470. }
  18471. },
  18472. },
  18473. [
  18474. {
  18475. name: "Normal",
  18476. height: math.unit(8 + 4 / 12, "feet"),
  18477. default: true
  18478. },
  18479. {
  18480. name: "Macro",
  18481. height: math.unit(200, "feet")
  18482. },
  18483. {
  18484. name: "Megamacro",
  18485. height: math.unit(1, "mile")
  18486. },
  18487. {
  18488. name: "Gigamacro",
  18489. height: math.unit(1000, "miles")
  18490. },
  18491. ]
  18492. ))
  18493. characterMakers.push(() => makeCharacter(
  18494. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  18495. {
  18496. front: {
  18497. height: math.unit(5 + 2 / 12, "feet"),
  18498. weight: math.unit(110, "lb"),
  18499. name: "Front",
  18500. image: {
  18501. source: "./media/characters/desta/front.svg",
  18502. extra: 767 / 726,
  18503. bottom: 11.7 / 779
  18504. }
  18505. },
  18506. back: {
  18507. height: math.unit(5 + 2 / 12, "feet"),
  18508. weight: math.unit(110, "lb"),
  18509. name: "Back",
  18510. image: {
  18511. source: "./media/characters/desta/back.svg",
  18512. extra: 777 / 728,
  18513. bottom: 6 / 784
  18514. }
  18515. },
  18516. frontAlt: {
  18517. height: math.unit(5 + 2 / 12, "feet"),
  18518. weight: math.unit(110, "lb"),
  18519. name: "Front",
  18520. image: {
  18521. source: "./media/characters/desta/front-alt.svg",
  18522. extra: 1482 / 1417
  18523. }
  18524. },
  18525. side: {
  18526. height: math.unit(5 + 2 / 12, "feet"),
  18527. weight: math.unit(110, "lb"),
  18528. name: "Side",
  18529. image: {
  18530. source: "./media/characters/desta/side.svg",
  18531. extra: 2579 / 2491,
  18532. bottom: 0.053
  18533. }
  18534. },
  18535. },
  18536. [
  18537. {
  18538. name: "Micro",
  18539. height: math.unit(6, "inches")
  18540. },
  18541. {
  18542. name: "Normal",
  18543. height: math.unit(5 + 2 / 12, "feet"),
  18544. default: true
  18545. },
  18546. {
  18547. name: "Macro",
  18548. height: math.unit(62, "feet")
  18549. },
  18550. {
  18551. name: "Megamacro",
  18552. height: math.unit(1800, "feet")
  18553. },
  18554. ]
  18555. ))
  18556. characterMakers.push(() => makeCharacter(
  18557. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  18558. {
  18559. front: {
  18560. height: math.unit(10, "feet"),
  18561. weight: math.unit(700, "lb"),
  18562. name: "Front",
  18563. image: {
  18564. source: "./media/characters/storm-alystar/front.svg",
  18565. extra: 2112 / 1898,
  18566. bottom: 0.034
  18567. }
  18568. },
  18569. },
  18570. [
  18571. {
  18572. name: "Micro",
  18573. height: math.unit(3.5, "inches")
  18574. },
  18575. {
  18576. name: "Normal",
  18577. height: math.unit(10, "feet"),
  18578. default: true
  18579. },
  18580. {
  18581. name: "Macro",
  18582. height: math.unit(400, "feet")
  18583. },
  18584. {
  18585. name: "Deific",
  18586. height: math.unit(60, "miles")
  18587. },
  18588. ]
  18589. ))
  18590. characterMakers.push(() => makeCharacter(
  18591. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  18592. {
  18593. front: {
  18594. height: math.unit(2.35, "meters"),
  18595. weight: math.unit(119, "kg"),
  18596. name: "Front",
  18597. image: {
  18598. source: "./media/characters/ilia/front.svg",
  18599. extra: 1285 / 1255,
  18600. bottom: 0.06
  18601. }
  18602. },
  18603. },
  18604. [
  18605. {
  18606. name: "Normal",
  18607. height: math.unit(2.35, "meters")
  18608. },
  18609. {
  18610. name: "Macro",
  18611. height: math.unit(140, "meters"),
  18612. default: true
  18613. },
  18614. {
  18615. name: "Megamacro",
  18616. height: math.unit(100, "miles")
  18617. },
  18618. ]
  18619. ))
  18620. characterMakers.push(() => makeCharacter(
  18621. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  18622. {
  18623. front: {
  18624. height: math.unit(6 + 5 / 12, "feet"),
  18625. weight: math.unit(190, "lb"),
  18626. name: "Front",
  18627. image: {
  18628. source: "./media/characters/kingdead/front.svg",
  18629. extra: 1228 / 1177
  18630. }
  18631. },
  18632. },
  18633. [
  18634. {
  18635. name: "Micro",
  18636. height: math.unit(7, "inches")
  18637. },
  18638. {
  18639. name: "Normal",
  18640. height: math.unit(6 + 5 / 12, "feet")
  18641. },
  18642. {
  18643. name: "Macro",
  18644. height: math.unit(150, "feet"),
  18645. default: true
  18646. },
  18647. {
  18648. name: "Megamacro",
  18649. height: math.unit(200, "miles")
  18650. },
  18651. ]
  18652. ))
  18653. characterMakers.push(() => makeCharacter(
  18654. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  18655. {
  18656. front: {
  18657. height: math.unit(8, "feet"),
  18658. weight: math.unit(600, "lb"),
  18659. name: "Front",
  18660. image: {
  18661. source: "./media/characters/kyrehx/front.svg",
  18662. extra: 1195 / 1095,
  18663. bottom: 0.034
  18664. }
  18665. },
  18666. },
  18667. [
  18668. {
  18669. name: "Micro",
  18670. height: math.unit(2, "inches")
  18671. },
  18672. {
  18673. name: "Normal",
  18674. height: math.unit(8, "feet"),
  18675. default: true
  18676. },
  18677. {
  18678. name: "Macro",
  18679. height: math.unit(255, "feet")
  18680. },
  18681. ]
  18682. ))
  18683. characterMakers.push(() => makeCharacter(
  18684. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  18685. {
  18686. front: {
  18687. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18688. weight: math.unit(184, "lb"),
  18689. name: "Front",
  18690. image: {
  18691. source: "./media/characters/xang/front.svg",
  18692. extra: 845 / 755
  18693. }
  18694. },
  18695. },
  18696. [
  18697. {
  18698. name: "Normal",
  18699. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18700. default: true
  18701. },
  18702. {
  18703. name: "Macro",
  18704. height: math.unit(0.935 * 146, "feet")
  18705. },
  18706. {
  18707. name: "Megamacro",
  18708. height: math.unit(0.935 * 3, "miles")
  18709. },
  18710. ]
  18711. ))
  18712. characterMakers.push(() => makeCharacter(
  18713. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  18714. {
  18715. frontDressed: {
  18716. height: math.unit(5 + 7 / 12, "feet"),
  18717. weight: math.unit(140, "lb"),
  18718. name: "Front (Dressed)",
  18719. image: {
  18720. source: "./media/characters/doc-weardno/front-dressed.svg",
  18721. extra: 263 / 234
  18722. }
  18723. },
  18724. backDressed: {
  18725. height: math.unit(5 + 7 / 12, "feet"),
  18726. weight: math.unit(140, "lb"),
  18727. name: "Back (Dressed)",
  18728. image: {
  18729. source: "./media/characters/doc-weardno/back-dressed.svg",
  18730. extra: 266 / 238
  18731. }
  18732. },
  18733. front: {
  18734. height: math.unit(5 + 7 / 12, "feet"),
  18735. weight: math.unit(140, "lb"),
  18736. name: "Front",
  18737. image: {
  18738. source: "./media/characters/doc-weardno/front.svg",
  18739. extra: 254 / 233
  18740. }
  18741. },
  18742. },
  18743. [
  18744. {
  18745. name: "Micro",
  18746. height: math.unit(3, "inches")
  18747. },
  18748. {
  18749. name: "Normal",
  18750. height: math.unit(5 + 7 / 12, "feet"),
  18751. default: true
  18752. },
  18753. {
  18754. name: "Macro",
  18755. height: math.unit(25, "feet")
  18756. },
  18757. {
  18758. name: "Megamacro",
  18759. height: math.unit(2, "miles")
  18760. },
  18761. ]
  18762. ))
  18763. characterMakers.push(() => makeCharacter(
  18764. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  18765. {
  18766. front: {
  18767. height: math.unit(6 + 2 / 12, "feet"),
  18768. weight: math.unit(153, "lb"),
  18769. name: "Front",
  18770. image: {
  18771. source: "./media/characters/seth-whilst/front.svg",
  18772. bottom: 0.07
  18773. }
  18774. },
  18775. },
  18776. [
  18777. {
  18778. name: "Micro",
  18779. height: math.unit(5, "inches")
  18780. },
  18781. {
  18782. name: "Normal",
  18783. height: math.unit(6 + 2 / 12, "feet"),
  18784. default: true
  18785. },
  18786. ]
  18787. ))
  18788. characterMakers.push(() => makeCharacter(
  18789. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  18790. {
  18791. front: {
  18792. height: math.unit(3, "inches"),
  18793. weight: math.unit(8, "grams"),
  18794. name: "Front",
  18795. image: {
  18796. source: "./media/characters/pocket-jabari/front.svg",
  18797. extra: 1024 / 974,
  18798. bottom: 0.039
  18799. }
  18800. },
  18801. },
  18802. [
  18803. {
  18804. name: "Minimicro",
  18805. height: math.unit(8, "mm")
  18806. },
  18807. {
  18808. name: "Micro",
  18809. height: math.unit(3, "inches"),
  18810. default: true
  18811. },
  18812. {
  18813. name: "Normal",
  18814. height: math.unit(3, "feet")
  18815. },
  18816. ]
  18817. ))
  18818. characterMakers.push(() => makeCharacter(
  18819. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  18820. {
  18821. front: {
  18822. height: math.unit(15, "feet"),
  18823. weight: math.unit(3280, "lb"),
  18824. name: "Front",
  18825. image: {
  18826. source: "./media/characters/sapphy/front.svg",
  18827. extra: 671 / 577,
  18828. bottom: 0.085
  18829. }
  18830. },
  18831. back: {
  18832. height: math.unit(15, "feet"),
  18833. weight: math.unit(3280, "lb"),
  18834. name: "Back",
  18835. image: {
  18836. source: "./media/characters/sapphy/back.svg",
  18837. extra: 631 / 607,
  18838. bottom: 0.045
  18839. }
  18840. },
  18841. },
  18842. [
  18843. {
  18844. name: "Normal",
  18845. height: math.unit(15, "feet")
  18846. },
  18847. {
  18848. name: "Casual Macro",
  18849. height: math.unit(120, "feet")
  18850. },
  18851. {
  18852. name: "Macro",
  18853. height: math.unit(2150, "feet"),
  18854. default: true
  18855. },
  18856. {
  18857. name: "Megamacro",
  18858. height: math.unit(8, "miles")
  18859. },
  18860. {
  18861. name: "Galaxy Mom",
  18862. height: math.unit(6, "megalightyears")
  18863. },
  18864. ]
  18865. ))
  18866. characterMakers.push(() => makeCharacter(
  18867. { name: "Kiro", species: ["folf"], tags: ["anthro"] },
  18868. {
  18869. front: {
  18870. height: math.unit(6, "feet"),
  18871. weight: math.unit(170, "lb"),
  18872. name: "Front",
  18873. image: {
  18874. source: "./media/characters/kiro/front.svg",
  18875. extra: 1064 / 1012,
  18876. bottom: 0.052
  18877. }
  18878. },
  18879. },
  18880. [
  18881. {
  18882. name: "Micro",
  18883. height: math.unit(6, "inches")
  18884. },
  18885. {
  18886. name: "Normal",
  18887. height: math.unit(6, "feet"),
  18888. default: true
  18889. },
  18890. {
  18891. name: "Macro",
  18892. height: math.unit(72, "feet")
  18893. },
  18894. ]
  18895. ))
  18896. characterMakers.push(() => makeCharacter(
  18897. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  18898. {
  18899. front: {
  18900. height: math.unit(5 + 9 / 12, "feet"),
  18901. weight: math.unit(175, "lb"),
  18902. name: "Front",
  18903. image: {
  18904. source: "./media/characters/irishfox/front.svg",
  18905. extra: 1912 / 1680,
  18906. bottom: 0.02
  18907. }
  18908. },
  18909. },
  18910. [
  18911. {
  18912. name: "Nano",
  18913. height: math.unit(1, "mm")
  18914. },
  18915. {
  18916. name: "Micro",
  18917. height: math.unit(2, "inches")
  18918. },
  18919. {
  18920. name: "Normal",
  18921. height: math.unit(5 + 9 / 12, "feet"),
  18922. default: true
  18923. },
  18924. {
  18925. name: "Macro",
  18926. height: math.unit(45, "feet")
  18927. },
  18928. ]
  18929. ))
  18930. characterMakers.push(() => makeCharacter(
  18931. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  18932. {
  18933. front: {
  18934. height: math.unit(6 + 1 / 12, "feet"),
  18935. weight: math.unit(75, "lb"),
  18936. name: "Front",
  18937. image: {
  18938. source: "./media/characters/aronai-sieyes/front.svg",
  18939. extra: 1556 / 1480,
  18940. bottom: 0.015
  18941. }
  18942. },
  18943. side: {
  18944. height: math.unit(6 + 1 / 12, "feet"),
  18945. weight: math.unit(75, "lb"),
  18946. name: "Side",
  18947. image: {
  18948. source: "./media/characters/aronai-sieyes/side.svg",
  18949. extra: 1433 / 1390,
  18950. bottom: 0.0393
  18951. }
  18952. },
  18953. back: {
  18954. height: math.unit(6 + 1 / 12, "feet"),
  18955. weight: math.unit(75, "lb"),
  18956. name: "Back",
  18957. image: {
  18958. source: "./media/characters/aronai-sieyes/back.svg",
  18959. extra: 1544 / 1494,
  18960. bottom: 0.02
  18961. }
  18962. },
  18963. frontClothed: {
  18964. height: math.unit(6 + 1 / 12, "feet"),
  18965. weight: math.unit(75, "lb"),
  18966. name: "Front (Clothed)",
  18967. image: {
  18968. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  18969. extra: 1582 / 1527
  18970. }
  18971. },
  18972. feral: {
  18973. height: math.unit(18, "feet"),
  18974. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  18975. name: "Feral",
  18976. image: {
  18977. source: "./media/characters/aronai-sieyes/feral.svg",
  18978. extra: 1530 / 1240,
  18979. bottom: 0.035
  18980. }
  18981. },
  18982. },
  18983. [
  18984. {
  18985. name: "Micro",
  18986. height: math.unit(2, "inches")
  18987. },
  18988. {
  18989. name: "Normal",
  18990. height: math.unit(6 + 1 / 12, "feet"),
  18991. default: true
  18992. }
  18993. ]
  18994. ))
  18995. characterMakers.push(() => makeCharacter(
  18996. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  18997. {
  18998. front: {
  18999. height: math.unit(12, "feet"),
  19000. weight: math.unit(410, "kg"),
  19001. name: "Front",
  19002. image: {
  19003. source: "./media/characters/xuna/front.svg",
  19004. extra: 2184 / 1980
  19005. }
  19006. },
  19007. side: {
  19008. height: math.unit(12, "feet"),
  19009. weight: math.unit(410, "kg"),
  19010. name: "Side",
  19011. image: {
  19012. source: "./media/characters/xuna/side.svg",
  19013. extra: 2184 / 1980
  19014. }
  19015. },
  19016. back: {
  19017. height: math.unit(12, "feet"),
  19018. weight: math.unit(410, "kg"),
  19019. name: "Back",
  19020. image: {
  19021. source: "./media/characters/xuna/back.svg",
  19022. extra: 2184 / 1980
  19023. }
  19024. },
  19025. },
  19026. [
  19027. {
  19028. name: "Nano glow",
  19029. height: math.unit(10, "nm")
  19030. },
  19031. {
  19032. name: "Micro floof",
  19033. height: math.unit(0.3, "m")
  19034. },
  19035. {
  19036. name: "Huggable softy boi",
  19037. height: math.unit(3.6576, "m"),
  19038. default: true
  19039. },
  19040. {
  19041. name: "Admirable floof",
  19042. height: math.unit(80, "meters")
  19043. },
  19044. {
  19045. name: "Gentle macro",
  19046. height: math.unit(300, "meters")
  19047. },
  19048. {
  19049. name: "Very careful floof",
  19050. height: math.unit(3200, "meters")
  19051. },
  19052. {
  19053. name: "The mega floof",
  19054. height: math.unit(36000, "meters")
  19055. },
  19056. {
  19057. name: "Giga-fur-Wicker",
  19058. height: math.unit(4800000, "meters")
  19059. },
  19060. {
  19061. name: "Licky world",
  19062. height: math.unit(20000000, "meters")
  19063. },
  19064. {
  19065. name: "Floofy cyan sun",
  19066. height: math.unit(1500000000, "meters")
  19067. },
  19068. {
  19069. name: "Milky Wicker",
  19070. height: math.unit(1000000000000000000000, "meters")
  19071. },
  19072. {
  19073. name: "The observing Wicker",
  19074. height: math.unit(999999999999999999999999999, "meters")
  19075. },
  19076. ]
  19077. ))
  19078. characterMakers.push(() => makeCharacter(
  19079. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19080. {
  19081. front: {
  19082. height: math.unit(5 + 9 / 12, "feet"),
  19083. weight: math.unit(150, "lb"),
  19084. name: "Front",
  19085. image: {
  19086. source: "./media/characters/arokha-sieyes/front.svg",
  19087. extra: 1425 / 1284,
  19088. bottom: 0.05
  19089. }
  19090. },
  19091. },
  19092. [
  19093. {
  19094. name: "Normal",
  19095. height: math.unit(5 + 9 / 12, "feet")
  19096. },
  19097. {
  19098. name: "Macro",
  19099. height: math.unit(30, "meters"),
  19100. default: true
  19101. },
  19102. ]
  19103. ))
  19104. characterMakers.push(() => makeCharacter(
  19105. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19106. {
  19107. front: {
  19108. height: math.unit(6, "feet"),
  19109. weight: math.unit(180, "lb"),
  19110. name: "Front",
  19111. image: {
  19112. source: "./media/characters/arokh-sieyes/front.svg",
  19113. extra: 1830 / 1769,
  19114. bottom: 0.01
  19115. }
  19116. },
  19117. },
  19118. [
  19119. {
  19120. name: "Normal",
  19121. height: math.unit(6, "feet")
  19122. },
  19123. {
  19124. name: "Macro",
  19125. height: math.unit(30, "meters"),
  19126. default: true
  19127. },
  19128. ]
  19129. ))
  19130. characterMakers.push(() => makeCharacter(
  19131. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  19132. {
  19133. side: {
  19134. height: math.unit(13 + 1 / 12, "feet"),
  19135. weight: math.unit(8.5, "tonnes"),
  19136. name: "Side",
  19137. image: {
  19138. source: "./media/characters/goldeneye/side.svg",
  19139. extra: 1182 / 778,
  19140. bottom: 0.067
  19141. }
  19142. },
  19143. paw: {
  19144. height: math.unit(3.4, "feet"),
  19145. name: "Paw",
  19146. image: {
  19147. source: "./media/characters/goldeneye/paw.svg"
  19148. }
  19149. },
  19150. },
  19151. [
  19152. {
  19153. name: "Normal",
  19154. height: math.unit(13 + 1 / 12, "feet"),
  19155. default: true
  19156. },
  19157. ]
  19158. ))
  19159. characterMakers.push(() => makeCharacter(
  19160. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  19161. {
  19162. front: {
  19163. height: math.unit(6 + 1 / 12, "feet"),
  19164. weight: math.unit(210, "lb"),
  19165. name: "Front",
  19166. image: {
  19167. source: "./media/characters/leonardo-lycheborne/front.svg",
  19168. extra: 776/723,
  19169. bottom: 34/810
  19170. }
  19171. },
  19172. side: {
  19173. height: math.unit(6 + 1 / 12, "feet"),
  19174. weight: math.unit(210, "lb"),
  19175. name: "Side",
  19176. image: {
  19177. source: "./media/characters/leonardo-lycheborne/side.svg",
  19178. extra: 780/728,
  19179. bottom: 12/792
  19180. }
  19181. },
  19182. back: {
  19183. height: math.unit(6 + 1 / 12, "feet"),
  19184. weight: math.unit(210, "lb"),
  19185. name: "Back",
  19186. image: {
  19187. source: "./media/characters/leonardo-lycheborne/back.svg",
  19188. extra: 775/721,
  19189. bottom: 17/792
  19190. }
  19191. },
  19192. hand: {
  19193. height: math.unit(1.08, "feet"),
  19194. name: "Hand",
  19195. image: {
  19196. source: "./media/characters/leonardo-lycheborne/hand.svg"
  19197. }
  19198. },
  19199. foot: {
  19200. height: math.unit(1.32, "feet"),
  19201. name: "Foot",
  19202. image: {
  19203. source: "./media/characters/leonardo-lycheborne/foot.svg"
  19204. }
  19205. },
  19206. maw: {
  19207. height: math.unit(1, "feet"),
  19208. name: "Maw",
  19209. image: {
  19210. source: "./media/characters/leonardo-lycheborne/maw.svg"
  19211. }
  19212. },
  19213. were: {
  19214. height: math.unit(20, "feet"),
  19215. weight: math.unit(7800, "lb"),
  19216. name: "Were",
  19217. image: {
  19218. source: "./media/characters/leonardo-lycheborne/were.svg",
  19219. extra: 1224/1165,
  19220. bottom: 72/1296
  19221. }
  19222. },
  19223. feral: {
  19224. height: math.unit(7.5, "feet"),
  19225. weight: math.unit(600, "lb"),
  19226. name: "Feral",
  19227. image: {
  19228. source: "./media/characters/leonardo-lycheborne/feral.svg",
  19229. extra: 797/702,
  19230. bottom: 139/936
  19231. }
  19232. },
  19233. taur: {
  19234. height: math.unit(11, "feet"),
  19235. weight: math.unit(3300, "lb"),
  19236. name: "Taur",
  19237. image: {
  19238. source: "./media/characters/leonardo-lycheborne/taur.svg",
  19239. extra: 1271/1197,
  19240. bottom: 47/1318
  19241. }
  19242. },
  19243. barghest: {
  19244. height: math.unit(11, "feet"),
  19245. weight: math.unit(1300, "lb"),
  19246. name: "Barghest",
  19247. image: {
  19248. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  19249. extra: 1291/1204,
  19250. bottom: 37/1328
  19251. }
  19252. },
  19253. dick: {
  19254. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  19255. name: "Dick",
  19256. image: {
  19257. source: "./media/characters/leonardo-lycheborne/dick.svg"
  19258. }
  19259. },
  19260. dickWere: {
  19261. height: math.unit((20) / 3.8, "feet"),
  19262. name: "Dick (Were)",
  19263. image: {
  19264. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  19265. }
  19266. },
  19267. },
  19268. [
  19269. {
  19270. name: "Normal",
  19271. height: math.unit(6 + 1 / 12, "feet"),
  19272. default: true
  19273. },
  19274. ]
  19275. ))
  19276. characterMakers.push(() => makeCharacter(
  19277. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  19278. {
  19279. front: {
  19280. height: math.unit(10, "feet"),
  19281. weight: math.unit(350, "lb"),
  19282. name: "Front",
  19283. image: {
  19284. source: "./media/characters/jet/front.svg",
  19285. extra: 2050 / 1980,
  19286. bottom: 0.013
  19287. }
  19288. },
  19289. back: {
  19290. height: math.unit(10, "feet"),
  19291. weight: math.unit(350, "lb"),
  19292. name: "Back",
  19293. image: {
  19294. source: "./media/characters/jet/back.svg",
  19295. extra: 2050 / 1980,
  19296. bottom: 0.013
  19297. }
  19298. },
  19299. },
  19300. [
  19301. {
  19302. name: "Micro",
  19303. height: math.unit(6, "inches")
  19304. },
  19305. {
  19306. name: "Normal",
  19307. height: math.unit(10, "feet"),
  19308. default: true
  19309. },
  19310. {
  19311. name: "Macro",
  19312. height: math.unit(100, "feet")
  19313. },
  19314. ]
  19315. ))
  19316. characterMakers.push(() => makeCharacter(
  19317. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  19318. {
  19319. front: {
  19320. height: math.unit(15, "feet"),
  19321. weight: math.unit(2800, "lb"),
  19322. name: "Front",
  19323. image: {
  19324. source: "./media/characters/tanarath/front.svg",
  19325. extra: 2392 / 2220,
  19326. bottom: 0.03
  19327. }
  19328. },
  19329. back: {
  19330. height: math.unit(15, "feet"),
  19331. weight: math.unit(2800, "lb"),
  19332. name: "Back",
  19333. image: {
  19334. source: "./media/characters/tanarath/back.svg",
  19335. extra: 2392 / 2220,
  19336. bottom: 0.03
  19337. }
  19338. },
  19339. },
  19340. [
  19341. {
  19342. name: "Normal",
  19343. height: math.unit(15, "feet"),
  19344. default: true
  19345. },
  19346. ]
  19347. ))
  19348. characterMakers.push(() => makeCharacter(
  19349. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  19350. {
  19351. front: {
  19352. height: math.unit(7 + 1 / 12, "feet"),
  19353. weight: math.unit(175, "lb"),
  19354. name: "Front",
  19355. image: {
  19356. source: "./media/characters/patty-cattybatty/front.svg",
  19357. extra: 908 / 874,
  19358. bottom: 0.025
  19359. }
  19360. },
  19361. },
  19362. [
  19363. {
  19364. name: "Micro",
  19365. height: math.unit(1, "inch")
  19366. },
  19367. {
  19368. name: "Normal",
  19369. height: math.unit(7 + 1 / 12, "feet")
  19370. },
  19371. {
  19372. name: "Mini Macro",
  19373. height: math.unit(155, "feet")
  19374. },
  19375. {
  19376. name: "Macro",
  19377. height: math.unit(1077, "feet")
  19378. },
  19379. {
  19380. name: "Mega Macro",
  19381. height: math.unit(47650, "feet"),
  19382. default: true
  19383. },
  19384. {
  19385. name: "Giga Macro",
  19386. height: math.unit(440, "miles")
  19387. },
  19388. {
  19389. name: "Tera Macro",
  19390. height: math.unit(8700, "miles")
  19391. },
  19392. {
  19393. name: "Planetary Macro",
  19394. height: math.unit(32700, "miles")
  19395. },
  19396. {
  19397. name: "Solar Macro",
  19398. height: math.unit(550000, "miles")
  19399. },
  19400. {
  19401. name: "Celestial Macro",
  19402. height: math.unit(2.5, "AU")
  19403. },
  19404. ]
  19405. ))
  19406. characterMakers.push(() => makeCharacter(
  19407. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  19408. {
  19409. front: {
  19410. height: math.unit(4 + 5 / 12, "feet"),
  19411. weight: math.unit(90, "lb"),
  19412. name: "Front",
  19413. image: {
  19414. source: "./media/characters/cappu/front.svg",
  19415. extra: 1247 / 1152,
  19416. bottom: 0.012
  19417. }
  19418. },
  19419. },
  19420. [
  19421. {
  19422. name: "Normal",
  19423. height: math.unit(4 + 5 / 12, "feet"),
  19424. default: true
  19425. },
  19426. ]
  19427. ))
  19428. characterMakers.push(() => makeCharacter(
  19429. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  19430. {
  19431. frontDressed: {
  19432. height: math.unit(70, "cm"),
  19433. weight: math.unit(6, "kg"),
  19434. name: "Front (Dressed)",
  19435. image: {
  19436. source: "./media/characters/sebi/front-dressed.svg",
  19437. extra: 713.5 / 686.5,
  19438. bottom: 0.003
  19439. }
  19440. },
  19441. front: {
  19442. height: math.unit(70, "cm"),
  19443. weight: math.unit(5, "kg"),
  19444. name: "Front",
  19445. image: {
  19446. source: "./media/characters/sebi/front.svg",
  19447. extra: 713.5 / 686.5,
  19448. bottom: 0.003
  19449. }
  19450. }
  19451. },
  19452. [
  19453. {
  19454. name: "Normal",
  19455. height: math.unit(70, "cm"),
  19456. default: true
  19457. },
  19458. {
  19459. name: "Macro",
  19460. height: math.unit(8, "meters")
  19461. },
  19462. ]
  19463. ))
  19464. characterMakers.push(() => makeCharacter(
  19465. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  19466. {
  19467. front: {
  19468. height: math.unit(6, "feet"),
  19469. weight: math.unit(150, "lb"),
  19470. name: "Front",
  19471. image: {
  19472. source: "./media/characters/typhek/front.svg",
  19473. extra: 1948 / 1929,
  19474. bottom: 0.025
  19475. }
  19476. },
  19477. side: {
  19478. height: math.unit(6, "feet"),
  19479. weight: math.unit(150, "lb"),
  19480. name: "Side",
  19481. image: {
  19482. source: "./media/characters/typhek/side.svg",
  19483. extra: 2034 / 2010,
  19484. bottom: 0.003
  19485. }
  19486. },
  19487. back: {
  19488. height: math.unit(6, "feet"),
  19489. weight: math.unit(150, "lb"),
  19490. name: "Back",
  19491. image: {
  19492. source: "./media/characters/typhek/back.svg",
  19493. extra: 2005 / 1978,
  19494. bottom: 0.004
  19495. }
  19496. },
  19497. palm: {
  19498. height: math.unit(1.2, "feet"),
  19499. name: "Palm",
  19500. image: {
  19501. source: "./media/characters/typhek/palm.svg"
  19502. }
  19503. },
  19504. fist: {
  19505. height: math.unit(1.1, "feet"),
  19506. name: "Fist",
  19507. image: {
  19508. source: "./media/characters/typhek/fist.svg"
  19509. }
  19510. },
  19511. foot: {
  19512. height: math.unit(1.57, "feet"),
  19513. name: "Foot",
  19514. image: {
  19515. source: "./media/characters/typhek/foot.svg"
  19516. }
  19517. },
  19518. sole: {
  19519. height: math.unit(2.05, "feet"),
  19520. name: "Sole",
  19521. image: {
  19522. source: "./media/characters/typhek/sole.svg"
  19523. }
  19524. },
  19525. },
  19526. [
  19527. {
  19528. name: "Macro",
  19529. height: math.unit(40, "stories"),
  19530. default: true
  19531. },
  19532. {
  19533. name: "Megamacro",
  19534. height: math.unit(1, "mile")
  19535. },
  19536. {
  19537. name: "Gigamacro",
  19538. height: math.unit(4000, "solarradii")
  19539. },
  19540. {
  19541. name: "Universal",
  19542. height: math.unit(1.1, "universes")
  19543. }
  19544. ]
  19545. ))
  19546. characterMakers.push(() => makeCharacter(
  19547. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  19548. {
  19549. side: {
  19550. height: math.unit(5 + 7 / 12, "feet"),
  19551. weight: math.unit(150, "lb"),
  19552. name: "Side",
  19553. image: {
  19554. source: "./media/characters/kassy/side.svg",
  19555. extra: 1280 / 1225,
  19556. bottom: 0.002
  19557. }
  19558. },
  19559. front: {
  19560. height: math.unit(5 + 7 / 12, "feet"),
  19561. weight: math.unit(150, "lb"),
  19562. name: "Front",
  19563. image: {
  19564. source: "./media/characters/kassy/front.svg",
  19565. extra: 1280 / 1225,
  19566. bottom: 0.025
  19567. }
  19568. },
  19569. back: {
  19570. height: math.unit(5 + 7 / 12, "feet"),
  19571. weight: math.unit(150, "lb"),
  19572. name: "Back",
  19573. image: {
  19574. source: "./media/characters/kassy/back.svg",
  19575. extra: 1280 / 1225,
  19576. bottom: 0.002
  19577. }
  19578. },
  19579. foot: {
  19580. height: math.unit(1.266, "feet"),
  19581. name: "Foot",
  19582. image: {
  19583. source: "./media/characters/kassy/foot.svg"
  19584. }
  19585. },
  19586. },
  19587. [
  19588. {
  19589. name: "Normal",
  19590. height: math.unit(5 + 7 / 12, "feet")
  19591. },
  19592. {
  19593. name: "Macro",
  19594. height: math.unit(137, "feet"),
  19595. default: true
  19596. },
  19597. {
  19598. name: "Megamacro",
  19599. height: math.unit(1, "mile")
  19600. },
  19601. ]
  19602. ))
  19603. characterMakers.push(() => makeCharacter(
  19604. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  19605. {
  19606. front: {
  19607. height: math.unit(6 + 1 / 12, "feet"),
  19608. weight: math.unit(200, "lb"),
  19609. name: "Front",
  19610. image: {
  19611. source: "./media/characters/neil/front.svg",
  19612. extra: 1326 / 1250,
  19613. bottom: 0.023
  19614. }
  19615. },
  19616. },
  19617. [
  19618. {
  19619. name: "Normal",
  19620. height: math.unit(6 + 1 / 12, "feet"),
  19621. default: true
  19622. },
  19623. {
  19624. name: "Macro",
  19625. height: math.unit(200, "feet")
  19626. },
  19627. ]
  19628. ))
  19629. characterMakers.push(() => makeCharacter(
  19630. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  19631. {
  19632. front: {
  19633. height: math.unit(5 + 9 / 12, "feet"),
  19634. weight: math.unit(190, "lb"),
  19635. name: "Front",
  19636. image: {
  19637. source: "./media/characters/atticus/front.svg",
  19638. extra: 2934 / 2785,
  19639. bottom: 0.025
  19640. }
  19641. },
  19642. },
  19643. [
  19644. {
  19645. name: "Normal",
  19646. height: math.unit(5 + 9 / 12, "feet"),
  19647. default: true
  19648. },
  19649. {
  19650. name: "Macro",
  19651. height: math.unit(180, "feet")
  19652. },
  19653. ]
  19654. ))
  19655. characterMakers.push(() => makeCharacter(
  19656. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  19657. {
  19658. side: {
  19659. height: math.unit(9, "feet"),
  19660. weight: math.unit(650, "lb"),
  19661. name: "Side",
  19662. image: {
  19663. source: "./media/characters/milo/side.svg",
  19664. extra: 2644 / 2310,
  19665. bottom: 0.032
  19666. }
  19667. },
  19668. },
  19669. [
  19670. {
  19671. name: "Normal",
  19672. height: math.unit(9, "feet"),
  19673. default: true
  19674. },
  19675. {
  19676. name: "Macro",
  19677. height: math.unit(300, "feet")
  19678. },
  19679. ]
  19680. ))
  19681. characterMakers.push(() => makeCharacter(
  19682. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  19683. {
  19684. side: {
  19685. height: math.unit(8, "meters"),
  19686. weight: math.unit(90000, "kg"),
  19687. name: "Side",
  19688. image: {
  19689. source: "./media/characters/ijzer/side.svg",
  19690. extra: 2756 / 1600,
  19691. bottom: 0.01
  19692. }
  19693. },
  19694. },
  19695. [
  19696. {
  19697. name: "Small",
  19698. height: math.unit(3, "meters")
  19699. },
  19700. {
  19701. name: "Normal",
  19702. height: math.unit(8, "meters"),
  19703. default: true
  19704. },
  19705. {
  19706. name: "Normal+",
  19707. height: math.unit(10, "meters")
  19708. },
  19709. {
  19710. name: "Bigger",
  19711. height: math.unit(24, "meters")
  19712. },
  19713. {
  19714. name: "Huge",
  19715. height: math.unit(80, "meters")
  19716. },
  19717. ]
  19718. ))
  19719. characterMakers.push(() => makeCharacter(
  19720. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  19721. {
  19722. front: {
  19723. height: math.unit(6 + 2 / 12, "feet"),
  19724. weight: math.unit(153, "lb"),
  19725. name: "Front",
  19726. image: {
  19727. source: "./media/characters/luca-cervicum/front.svg",
  19728. extra: 370 / 327,
  19729. bottom: 0.015
  19730. }
  19731. },
  19732. back: {
  19733. height: math.unit(6 + 2 / 12, "feet"),
  19734. weight: math.unit(153, "lb"),
  19735. name: "Back",
  19736. image: {
  19737. source: "./media/characters/luca-cervicum/back.svg",
  19738. extra: 367 / 333,
  19739. bottom: 0.005
  19740. }
  19741. },
  19742. frontGear: {
  19743. height: math.unit(6 + 2 / 12, "feet"),
  19744. weight: math.unit(173, "lb"),
  19745. name: "Front (Gear)",
  19746. image: {
  19747. source: "./media/characters/luca-cervicum/front-gear.svg",
  19748. extra: 377 / 333,
  19749. bottom: 0.006
  19750. }
  19751. },
  19752. },
  19753. [
  19754. {
  19755. name: "Normal",
  19756. height: math.unit(6 + 2 / 12, "feet"),
  19757. default: true
  19758. },
  19759. ]
  19760. ))
  19761. characterMakers.push(() => makeCharacter(
  19762. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  19763. {
  19764. front: {
  19765. height: math.unit(6 + 1 / 12, "feet"),
  19766. weight: math.unit(304, "lb"),
  19767. name: "Front",
  19768. image: {
  19769. source: "./media/characters/oliver/front.svg",
  19770. extra: 157 / 143,
  19771. bottom: 0.08
  19772. }
  19773. },
  19774. },
  19775. [
  19776. {
  19777. name: "Normal",
  19778. height: math.unit(6 + 1 / 12, "feet"),
  19779. default: true
  19780. },
  19781. ]
  19782. ))
  19783. characterMakers.push(() => makeCharacter(
  19784. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  19785. {
  19786. front: {
  19787. height: math.unit(5 + 7 / 12, "feet"),
  19788. weight: math.unit(140, "lb"),
  19789. name: "Front",
  19790. image: {
  19791. source: "./media/characters/shane/front.svg",
  19792. extra: 304 / 289,
  19793. bottom: 0.005
  19794. }
  19795. },
  19796. },
  19797. [
  19798. {
  19799. name: "Normal",
  19800. height: math.unit(5 + 7 / 12, "feet"),
  19801. default: true
  19802. },
  19803. ]
  19804. ))
  19805. characterMakers.push(() => makeCharacter(
  19806. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  19807. {
  19808. front: {
  19809. height: math.unit(5 + 9 / 12, "feet"),
  19810. weight: math.unit(178, "lb"),
  19811. name: "Front",
  19812. image: {
  19813. source: "./media/characters/shin/front.svg",
  19814. extra: 159 / 151,
  19815. bottom: 0.015
  19816. }
  19817. },
  19818. },
  19819. [
  19820. {
  19821. name: "Normal",
  19822. height: math.unit(5 + 9 / 12, "feet"),
  19823. default: true
  19824. },
  19825. ]
  19826. ))
  19827. characterMakers.push(() => makeCharacter(
  19828. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  19829. {
  19830. front: {
  19831. height: math.unit(5 + 10 / 12, "feet"),
  19832. weight: math.unit(168, "lb"),
  19833. name: "Front",
  19834. image: {
  19835. source: "./media/characters/xerxes/front.svg",
  19836. extra: 282 / 260,
  19837. bottom: 0.045
  19838. }
  19839. },
  19840. },
  19841. [
  19842. {
  19843. name: "Normal",
  19844. height: math.unit(5 + 10 / 12, "feet"),
  19845. default: true
  19846. },
  19847. ]
  19848. ))
  19849. characterMakers.push(() => makeCharacter(
  19850. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  19851. {
  19852. front: {
  19853. height: math.unit(6 + 7 / 12, "feet"),
  19854. weight: math.unit(208, "lb"),
  19855. name: "Front",
  19856. image: {
  19857. source: "./media/characters/chaska/front.svg",
  19858. extra: 332 / 319,
  19859. bottom: 0.015
  19860. }
  19861. },
  19862. },
  19863. [
  19864. {
  19865. name: "Normal",
  19866. height: math.unit(6 + 7 / 12, "feet"),
  19867. default: true
  19868. },
  19869. ]
  19870. ))
  19871. characterMakers.push(() => makeCharacter(
  19872. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  19873. {
  19874. front: {
  19875. height: math.unit(5 + 8 / 12, "feet"),
  19876. weight: math.unit(208, "lb"),
  19877. name: "Front",
  19878. image: {
  19879. source: "./media/characters/enuk/front.svg",
  19880. extra: 437 / 406,
  19881. bottom: 0.02
  19882. }
  19883. },
  19884. },
  19885. [
  19886. {
  19887. name: "Normal",
  19888. height: math.unit(5 + 8 / 12, "feet"),
  19889. default: true
  19890. },
  19891. ]
  19892. ))
  19893. characterMakers.push(() => makeCharacter(
  19894. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  19895. {
  19896. front: {
  19897. height: math.unit(5 + 10 / 12, "feet"),
  19898. weight: math.unit(252, "lb"),
  19899. name: "Front",
  19900. image: {
  19901. source: "./media/characters/bruun/front.svg",
  19902. extra: 197 / 187,
  19903. bottom: 0.012
  19904. }
  19905. },
  19906. },
  19907. [
  19908. {
  19909. name: "Normal",
  19910. height: math.unit(5 + 10 / 12, "feet"),
  19911. default: true
  19912. },
  19913. ]
  19914. ))
  19915. characterMakers.push(() => makeCharacter(
  19916. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  19917. {
  19918. front: {
  19919. height: math.unit(6 + 10 / 12, "feet"),
  19920. weight: math.unit(255, "lb"),
  19921. name: "Front",
  19922. image: {
  19923. source: "./media/characters/alexeev/front.svg",
  19924. extra: 213 / 200,
  19925. bottom: 0.05
  19926. }
  19927. },
  19928. },
  19929. [
  19930. {
  19931. name: "Normal",
  19932. height: math.unit(6 + 10 / 12, "feet"),
  19933. default: true
  19934. },
  19935. ]
  19936. ))
  19937. characterMakers.push(() => makeCharacter(
  19938. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  19939. {
  19940. front: {
  19941. height: math.unit(2 + 8 / 12, "feet"),
  19942. weight: math.unit(22, "lb"),
  19943. name: "Front",
  19944. image: {
  19945. source: "./media/characters/evelyn/front.svg",
  19946. extra: 208 / 180
  19947. }
  19948. },
  19949. },
  19950. [
  19951. {
  19952. name: "Normal",
  19953. height: math.unit(2 + 8 / 12, "feet"),
  19954. default: true
  19955. },
  19956. ]
  19957. ))
  19958. characterMakers.push(() => makeCharacter(
  19959. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  19960. {
  19961. front: {
  19962. height: math.unit(5 + 9 / 12, "feet"),
  19963. weight: math.unit(139, "lb"),
  19964. name: "Front",
  19965. image: {
  19966. source: "./media/characters/inca/front.svg",
  19967. extra: 294 / 291,
  19968. bottom: 0.03
  19969. }
  19970. },
  19971. },
  19972. [
  19973. {
  19974. name: "Normal",
  19975. height: math.unit(5 + 9 / 12, "feet"),
  19976. default: true
  19977. },
  19978. ]
  19979. ))
  19980. characterMakers.push(() => makeCharacter(
  19981. { name: "Magdalene", species: ["mewtwo-y", "mew"], tags: ["anthro"] },
  19982. {
  19983. front: {
  19984. height: math.unit(5 + 1 / 12, "feet"),
  19985. weight: math.unit(84, "lb"),
  19986. name: "Front",
  19987. image: {
  19988. source: "./media/characters/magdalene/front.svg",
  19989. extra: 293 / 273
  19990. }
  19991. },
  19992. },
  19993. [
  19994. {
  19995. name: "Normal",
  19996. height: math.unit(5 + 1 / 12, "feet"),
  19997. default: true
  19998. },
  19999. ]
  20000. ))
  20001. characterMakers.push(() => makeCharacter(
  20002. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  20003. {
  20004. front: {
  20005. height: math.unit(6 + 3 / 12, "feet"),
  20006. weight: math.unit(185, "lb"),
  20007. name: "Front",
  20008. image: {
  20009. source: "./media/characters/mera/front.svg",
  20010. extra: 291 / 277,
  20011. bottom: 0.03
  20012. }
  20013. },
  20014. },
  20015. [
  20016. {
  20017. name: "Normal",
  20018. height: math.unit(6 + 3 / 12, "feet"),
  20019. default: true
  20020. },
  20021. ]
  20022. ))
  20023. characterMakers.push(() => makeCharacter(
  20024. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  20025. {
  20026. front: {
  20027. height: math.unit(6 + 7 / 12, "feet"),
  20028. weight: math.unit(160, "lb"),
  20029. name: "Front",
  20030. image: {
  20031. source: "./media/characters/ceres/front.svg",
  20032. extra: 1023 / 950,
  20033. bottom: 0.027
  20034. }
  20035. },
  20036. back: {
  20037. height: math.unit(6 + 7 / 12, "feet"),
  20038. weight: math.unit(160, "lb"),
  20039. name: "Back",
  20040. image: {
  20041. source: "./media/characters/ceres/back.svg",
  20042. extra: 1023 / 950
  20043. }
  20044. },
  20045. },
  20046. [
  20047. {
  20048. name: "Normal",
  20049. height: math.unit(6 + 7 / 12, "feet"),
  20050. default: true
  20051. },
  20052. ]
  20053. ))
  20054. characterMakers.push(() => makeCharacter(
  20055. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  20056. {
  20057. front: {
  20058. height: math.unit(5 + 10 / 12, "feet"),
  20059. weight: math.unit(150, "lb"),
  20060. name: "Front",
  20061. image: {
  20062. source: "./media/characters/kris/front.svg",
  20063. extra: 885 / 803,
  20064. bottom: 0.03
  20065. }
  20066. },
  20067. },
  20068. [
  20069. {
  20070. name: "Normal",
  20071. height: math.unit(5 + 10 / 12, "feet"),
  20072. default: true
  20073. },
  20074. ]
  20075. ))
  20076. characterMakers.push(() => makeCharacter(
  20077. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  20078. {
  20079. front: {
  20080. height: math.unit(7, "feet"),
  20081. weight: math.unit(120, "kg"),
  20082. name: "Front",
  20083. image: {
  20084. source: "./media/characters/taluthus/front.svg",
  20085. extra: 903 / 833,
  20086. bottom: 0.015
  20087. }
  20088. },
  20089. },
  20090. [
  20091. {
  20092. name: "Normal",
  20093. height: math.unit(7, "feet"),
  20094. default: true
  20095. },
  20096. {
  20097. name: "Macro",
  20098. height: math.unit(300, "feet")
  20099. },
  20100. ]
  20101. ))
  20102. characterMakers.push(() => makeCharacter(
  20103. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  20104. {
  20105. front: {
  20106. height: math.unit(5 + 9 / 12, "feet"),
  20107. weight: math.unit(145, "lb"),
  20108. name: "Front",
  20109. image: {
  20110. source: "./media/characters/dawn/front.svg",
  20111. extra: 2094 / 2016,
  20112. bottom: 0.025
  20113. }
  20114. },
  20115. back: {
  20116. height: math.unit(5 + 9 / 12, "feet"),
  20117. weight: math.unit(160, "lb"),
  20118. name: "Back",
  20119. image: {
  20120. source: "./media/characters/dawn/back.svg",
  20121. extra: 2112 / 2080,
  20122. bottom: 0.005
  20123. }
  20124. },
  20125. },
  20126. [
  20127. {
  20128. name: "Normal",
  20129. height: math.unit(6 + 7 / 12, "feet"),
  20130. default: true
  20131. },
  20132. ]
  20133. ))
  20134. characterMakers.push(() => makeCharacter(
  20135. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  20136. {
  20137. anthro: {
  20138. height: math.unit(8 + 3 / 12, "feet"),
  20139. weight: math.unit(450, "lb"),
  20140. name: "Anthro",
  20141. image: {
  20142. source: "./media/characters/arador/anthro.svg",
  20143. extra: 1835 / 1718,
  20144. bottom: 0.025
  20145. }
  20146. },
  20147. feral: {
  20148. height: math.unit(4, "feet"),
  20149. weight: math.unit(200, "lb"),
  20150. name: "Feral",
  20151. image: {
  20152. source: "./media/characters/arador/feral.svg",
  20153. extra: 1683 / 1514,
  20154. bottom: 0.07
  20155. }
  20156. },
  20157. },
  20158. [
  20159. {
  20160. name: "Normal",
  20161. height: math.unit(8 + 3 / 12, "feet")
  20162. },
  20163. {
  20164. name: "Macro",
  20165. height: math.unit(82.5, "feet"),
  20166. default: true
  20167. },
  20168. ]
  20169. ))
  20170. characterMakers.push(() => makeCharacter(
  20171. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  20172. {
  20173. front: {
  20174. height: math.unit(5 + 10 / 12, "feet"),
  20175. weight: math.unit(125, "lb"),
  20176. name: "Front",
  20177. image: {
  20178. source: "./media/characters/dharsi/front.svg",
  20179. extra: 716 / 630,
  20180. bottom: 0.035
  20181. }
  20182. },
  20183. },
  20184. [
  20185. {
  20186. name: "Nano",
  20187. height: math.unit(100, "nm")
  20188. },
  20189. {
  20190. name: "Micro",
  20191. height: math.unit(2, "inches")
  20192. },
  20193. {
  20194. name: "Normal",
  20195. height: math.unit(5 + 10 / 12, "feet"),
  20196. default: true
  20197. },
  20198. {
  20199. name: "Macro",
  20200. height: math.unit(1000, "feet")
  20201. },
  20202. {
  20203. name: "Megamacro",
  20204. height: math.unit(10, "miles")
  20205. },
  20206. {
  20207. name: "Gigamacro",
  20208. height: math.unit(3000, "miles")
  20209. },
  20210. {
  20211. name: "Teramacro",
  20212. height: math.unit(500000, "miles")
  20213. },
  20214. {
  20215. name: "Teramacro+",
  20216. height: math.unit(30, "galaxies")
  20217. },
  20218. ]
  20219. ))
  20220. characterMakers.push(() => makeCharacter(
  20221. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  20222. {
  20223. front: {
  20224. height: math.unit(6, "feet"),
  20225. weight: math.unit(150, "lb"),
  20226. name: "Front",
  20227. image: {
  20228. source: "./media/characters/deathy/front.svg",
  20229. extra: 1552 / 1463,
  20230. bottom: 0.025
  20231. }
  20232. },
  20233. side: {
  20234. height: math.unit(6, "feet"),
  20235. weight: math.unit(150, "lb"),
  20236. name: "Side",
  20237. image: {
  20238. source: "./media/characters/deathy/side.svg",
  20239. extra: 1604 / 1455,
  20240. bottom: 0.025
  20241. }
  20242. },
  20243. back: {
  20244. height: math.unit(6, "feet"),
  20245. weight: math.unit(150, "lb"),
  20246. name: "Back",
  20247. image: {
  20248. source: "./media/characters/deathy/back.svg",
  20249. extra: 1580 / 1463,
  20250. bottom: 0.005
  20251. }
  20252. },
  20253. },
  20254. [
  20255. {
  20256. name: "Micro",
  20257. height: math.unit(5, "millimeters")
  20258. },
  20259. {
  20260. name: "Normal",
  20261. height: math.unit(6 + 5 / 12, "feet"),
  20262. default: true
  20263. },
  20264. ]
  20265. ))
  20266. characterMakers.push(() => makeCharacter(
  20267. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  20268. {
  20269. front: {
  20270. height: math.unit(16, "feet"),
  20271. weight: math.unit(4000, "lb"),
  20272. name: "Front",
  20273. image: {
  20274. source: "./media/characters/juniper/front.svg",
  20275. bottom: 0.04
  20276. }
  20277. },
  20278. },
  20279. [
  20280. {
  20281. name: "Normal",
  20282. height: math.unit(16, "feet"),
  20283. default: true
  20284. },
  20285. ]
  20286. ))
  20287. characterMakers.push(() => makeCharacter(
  20288. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  20289. {
  20290. front: {
  20291. height: math.unit(6, "feet"),
  20292. weight: math.unit(150, "lb"),
  20293. name: "Front",
  20294. image: {
  20295. source: "./media/characters/hipster/front.svg",
  20296. extra: 1312 / 1209,
  20297. bottom: 0.025
  20298. }
  20299. },
  20300. back: {
  20301. height: math.unit(6, "feet"),
  20302. weight: math.unit(150, "lb"),
  20303. name: "Back",
  20304. image: {
  20305. source: "./media/characters/hipster/back.svg",
  20306. extra: 1281 / 1196,
  20307. bottom: 0.01
  20308. }
  20309. },
  20310. },
  20311. [
  20312. {
  20313. name: "Micro",
  20314. height: math.unit(1, "mm")
  20315. },
  20316. {
  20317. name: "Normal",
  20318. height: math.unit(4, "inches"),
  20319. default: true
  20320. },
  20321. {
  20322. name: "Macro",
  20323. height: math.unit(500, "feet")
  20324. },
  20325. {
  20326. name: "Megamacro",
  20327. height: math.unit(1000, "miles")
  20328. },
  20329. ]
  20330. ))
  20331. characterMakers.push(() => makeCharacter(
  20332. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  20333. {
  20334. front: {
  20335. height: math.unit(6, "feet"),
  20336. weight: math.unit(150, "lb"),
  20337. name: "Front",
  20338. image: {
  20339. source: "./media/characters/tendirmuldr/front.svg",
  20340. extra: 1878 / 1772,
  20341. bottom: 0.015
  20342. }
  20343. },
  20344. },
  20345. [
  20346. {
  20347. name: "Megamacro",
  20348. height: math.unit(1500, "miles"),
  20349. default: true
  20350. },
  20351. ]
  20352. ))
  20353. characterMakers.push(() => makeCharacter(
  20354. { name: "Mort", species: ["demon"], tags: ["feral"] },
  20355. {
  20356. front: {
  20357. height: math.unit(14, "feet"),
  20358. weight: math.unit(12000, "lb"),
  20359. name: "Front",
  20360. image: {
  20361. source: "./media/characters/mort/front.svg",
  20362. extra: 365 / 318,
  20363. bottom: 0.01
  20364. }
  20365. },
  20366. side: {
  20367. height: math.unit(14, "feet"),
  20368. weight: math.unit(12000, "lb"),
  20369. name: "Side",
  20370. image: {
  20371. source: "./media/characters/mort/side.svg",
  20372. extra: 365 / 318,
  20373. bottom: 0.052
  20374. },
  20375. default: true
  20376. },
  20377. back: {
  20378. height: math.unit(14, "feet"),
  20379. weight: math.unit(12000, "lb"),
  20380. name: "Back",
  20381. image: {
  20382. source: "./media/characters/mort/back.svg",
  20383. extra: 371 / 332,
  20384. bottom: 0.18
  20385. }
  20386. },
  20387. },
  20388. [
  20389. {
  20390. name: "Normal",
  20391. height: math.unit(14, "feet"),
  20392. default: true
  20393. },
  20394. ]
  20395. ))
  20396. characterMakers.push(() => makeCharacter(
  20397. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  20398. {
  20399. front: {
  20400. height: math.unit(8, "feet"),
  20401. weight: math.unit(1, "ton"),
  20402. name: "Front",
  20403. image: {
  20404. source: "./media/characters/lycoa/front.svg",
  20405. extra: 1875 / 1789,
  20406. bottom: 0.022
  20407. }
  20408. },
  20409. back: {
  20410. height: math.unit(8, "feet"),
  20411. weight: math.unit(1, "ton"),
  20412. name: "Back",
  20413. image: {
  20414. source: "./media/characters/lycoa/back.svg",
  20415. extra: 1835 / 1781,
  20416. bottom: 0.03
  20417. }
  20418. },
  20419. head: {
  20420. height: math.unit(2.1, "feet"),
  20421. name: "Head",
  20422. image: {
  20423. source: "./media/characters/lycoa/head.svg"
  20424. }
  20425. },
  20426. tailmaw: {
  20427. height: math.unit(1.9, "feet"),
  20428. name: "Tailmaw",
  20429. image: {
  20430. source: "./media/characters/lycoa/tailmaw.svg"
  20431. }
  20432. },
  20433. tentacles: {
  20434. height: math.unit(2.1, "feet"),
  20435. name: "Tentacles",
  20436. image: {
  20437. source: "./media/characters/lycoa/tentacles.svg"
  20438. }
  20439. },
  20440. dick: {
  20441. height: math.unit(1.73, "feet"),
  20442. name: "Dick",
  20443. image: {
  20444. source: "./media/characters/lycoa/dick.svg"
  20445. }
  20446. },
  20447. },
  20448. [
  20449. {
  20450. name: "Normal",
  20451. height: math.unit(8, "feet"),
  20452. default: true
  20453. },
  20454. {
  20455. name: "Macro",
  20456. height: math.unit(30, "feet")
  20457. },
  20458. ]
  20459. ))
  20460. characterMakers.push(() => makeCharacter(
  20461. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  20462. {
  20463. front: {
  20464. height: math.unit(4 + 2 / 12, "feet"),
  20465. weight: math.unit(70, "lb"),
  20466. name: "Front",
  20467. image: {
  20468. source: "./media/characters/naldara/front.svg",
  20469. extra: 841 / 720,
  20470. bottom: 0.04
  20471. }
  20472. },
  20473. naga: {
  20474. height: math.unit(23, "feet"),
  20475. weight: math.unit(15000, "kg"),
  20476. name: "Naga",
  20477. image: {
  20478. source: "./media/characters/naldara/naga.svg",
  20479. extra: 3290 / 2959,
  20480. bottom: 124 / 3432
  20481. }
  20482. },
  20483. },
  20484. [
  20485. {
  20486. name: "Normal",
  20487. height: math.unit(4 + 2 / 12, "feet"),
  20488. default: true
  20489. },
  20490. ]
  20491. ))
  20492. characterMakers.push(() => makeCharacter(
  20493. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  20494. {
  20495. front: {
  20496. height: math.unit(13 + 7 / 12, "feet"),
  20497. weight: math.unit(1500, "lb"),
  20498. name: "Front",
  20499. image: {
  20500. source: "./media/characters/briar/front.svg",
  20501. extra: 626 / 596,
  20502. bottom: 0.08
  20503. }
  20504. },
  20505. },
  20506. [
  20507. {
  20508. name: "Normal",
  20509. height: math.unit(13 + 7 / 12, "feet"),
  20510. default: true
  20511. },
  20512. ]
  20513. ))
  20514. characterMakers.push(() => makeCharacter(
  20515. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  20516. {
  20517. side: {
  20518. height: math.unit(10, "feet"),
  20519. weight: math.unit(500, "lb"),
  20520. name: "Side",
  20521. image: {
  20522. source: "./media/characters/vanguard/side.svg",
  20523. extra: 502 / 425,
  20524. bottom: 0.087
  20525. }
  20526. },
  20527. },
  20528. [
  20529. {
  20530. name: "Normal",
  20531. height: math.unit(10, "feet"),
  20532. default: true
  20533. },
  20534. ]
  20535. ))
  20536. characterMakers.push(() => makeCharacter(
  20537. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  20538. {
  20539. front: {
  20540. height: math.unit(7.5, "feet"),
  20541. weight: math.unit(2, "lb"),
  20542. name: "Front",
  20543. image: {
  20544. source: "./media/characters/artemis/front.svg",
  20545. extra: 1192 / 1075,
  20546. bottom: 0.07
  20547. }
  20548. },
  20549. frontNsfw: {
  20550. height: math.unit(7.5, "feet"),
  20551. weight: math.unit(2, "lb"),
  20552. name: "Front (NSFW)",
  20553. image: {
  20554. source: "./media/characters/artemis/front-nsfw.svg",
  20555. extra: 1192 / 1075,
  20556. bottom: 0.07
  20557. }
  20558. },
  20559. frontNsfwer: {
  20560. height: math.unit(7.5, "feet"),
  20561. weight: math.unit(2, "lb"),
  20562. name: "Front (NSFW-er)",
  20563. image: {
  20564. source: "./media/characters/artemis/front-nsfwer.svg",
  20565. extra: 1192 / 1075,
  20566. bottom: 0.07
  20567. }
  20568. },
  20569. side: {
  20570. height: math.unit(7.5, "feet"),
  20571. weight: math.unit(2, "lb"),
  20572. name: "Side",
  20573. image: {
  20574. source: "./media/characters/artemis/side.svg",
  20575. extra: 1192 / 1075,
  20576. bottom: 0.07
  20577. }
  20578. },
  20579. sideNsfw: {
  20580. height: math.unit(7.5, "feet"),
  20581. weight: math.unit(2, "lb"),
  20582. name: "Side (NSFW)",
  20583. image: {
  20584. source: "./media/characters/artemis/side-nsfw.svg",
  20585. extra: 1192 / 1075,
  20586. bottom: 0.07
  20587. }
  20588. },
  20589. sideNsfwer: {
  20590. height: math.unit(7.5, "feet"),
  20591. weight: math.unit(2, "lb"),
  20592. name: "Side (NSFW-er)",
  20593. image: {
  20594. source: "./media/characters/artemis/side-nsfwer.svg",
  20595. extra: 1192 / 1075,
  20596. bottom: 0.07
  20597. }
  20598. },
  20599. maw: {
  20600. height: math.unit(1.1, "feet"),
  20601. name: "Maw",
  20602. image: {
  20603. source: "./media/characters/artemis/maw.svg"
  20604. }
  20605. },
  20606. stomach: {
  20607. height: math.unit(0.95, "feet"),
  20608. name: "Stomach",
  20609. image: {
  20610. source: "./media/characters/artemis/stomach.svg"
  20611. }
  20612. },
  20613. dickCanine: {
  20614. height: math.unit(1, "feet"),
  20615. name: "Dick (Canine)",
  20616. image: {
  20617. source: "./media/characters/artemis/dick-canine.svg"
  20618. }
  20619. },
  20620. dickEquine: {
  20621. height: math.unit(0.85, "feet"),
  20622. name: "Dick (Equine)",
  20623. image: {
  20624. source: "./media/characters/artemis/dick-equine.svg"
  20625. }
  20626. },
  20627. dickExotic: {
  20628. height: math.unit(0.85, "feet"),
  20629. name: "Dick (Exotic)",
  20630. image: {
  20631. source: "./media/characters/artemis/dick-exotic.svg"
  20632. }
  20633. },
  20634. },
  20635. [
  20636. {
  20637. name: "Normal",
  20638. height: math.unit(7.5, "feet"),
  20639. default: true
  20640. },
  20641. {
  20642. name: "Enlarged",
  20643. height: math.unit(12, "feet")
  20644. },
  20645. ]
  20646. ))
  20647. characterMakers.push(() => makeCharacter(
  20648. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  20649. {
  20650. front: {
  20651. height: math.unit(5 + 3 / 12, "feet"),
  20652. weight: math.unit(160, "lb"),
  20653. name: "Front",
  20654. image: {
  20655. source: "./media/characters/kira/front.svg",
  20656. extra: 906 / 786,
  20657. bottom: 0.01
  20658. }
  20659. },
  20660. back: {
  20661. height: math.unit(5 + 3 / 12, "feet"),
  20662. weight: math.unit(160, "lb"),
  20663. name: "Back",
  20664. image: {
  20665. source: "./media/characters/kira/back.svg",
  20666. extra: 882 / 757,
  20667. bottom: 0.005
  20668. }
  20669. },
  20670. frontDressed: {
  20671. height: math.unit(5 + 3 / 12, "feet"),
  20672. weight: math.unit(160, "lb"),
  20673. name: "Front (Dressed)",
  20674. image: {
  20675. source: "./media/characters/kira/front-dressed.svg",
  20676. extra: 906 / 786,
  20677. bottom: 0.01
  20678. }
  20679. },
  20680. beans: {
  20681. height: math.unit(0.92, "feet"),
  20682. name: "Beans",
  20683. image: {
  20684. source: "./media/characters/kira/beans.svg"
  20685. }
  20686. },
  20687. },
  20688. [
  20689. {
  20690. name: "Normal",
  20691. height: math.unit(5 + 3 / 12, "feet"),
  20692. default: true
  20693. },
  20694. ]
  20695. ))
  20696. characterMakers.push(() => makeCharacter(
  20697. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  20698. {
  20699. front: {
  20700. height: math.unit(5 + 4 / 12, "feet"),
  20701. weight: math.unit(145, "lb"),
  20702. name: "Front",
  20703. image: {
  20704. source: "./media/characters/scramble/front.svg",
  20705. extra: 763 / 727,
  20706. bottom: 0.05
  20707. }
  20708. },
  20709. back: {
  20710. height: math.unit(5 + 4 / 12, "feet"),
  20711. weight: math.unit(145, "lb"),
  20712. name: "Back",
  20713. image: {
  20714. source: "./media/characters/scramble/back.svg",
  20715. extra: 826 / 737,
  20716. bottom: 0.002
  20717. }
  20718. },
  20719. },
  20720. [
  20721. {
  20722. name: "Normal",
  20723. height: math.unit(5 + 4 / 12, "feet"),
  20724. default: true
  20725. },
  20726. ]
  20727. ))
  20728. characterMakers.push(() => makeCharacter(
  20729. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  20730. {
  20731. side: {
  20732. height: math.unit(6 + 2 / 12, "feet"),
  20733. weight: math.unit(190, "lb"),
  20734. name: "Side",
  20735. image: {
  20736. source: "./media/characters/biscuit/side.svg",
  20737. extra: 858 / 791,
  20738. bottom: 0.044
  20739. }
  20740. },
  20741. },
  20742. [
  20743. {
  20744. name: "Normal",
  20745. height: math.unit(6 + 2 / 12, "feet"),
  20746. default: true
  20747. },
  20748. ]
  20749. ))
  20750. characterMakers.push(() => makeCharacter(
  20751. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  20752. {
  20753. front: {
  20754. height: math.unit(5 + 2 / 12, "feet"),
  20755. weight: math.unit(120, "lb"),
  20756. name: "Front",
  20757. image: {
  20758. source: "./media/characters/poffin/front.svg",
  20759. extra: 786 / 680,
  20760. bottom: 0.005
  20761. }
  20762. },
  20763. },
  20764. [
  20765. {
  20766. name: "Normal",
  20767. height: math.unit(5 + 2 / 12, "feet"),
  20768. default: true
  20769. },
  20770. ]
  20771. ))
  20772. characterMakers.push(() => makeCharacter(
  20773. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  20774. {
  20775. front: {
  20776. height: math.unit(6 + 3 / 12, "feet"),
  20777. weight: math.unit(519, "lb"),
  20778. name: "Front",
  20779. image: {
  20780. source: "./media/characters/dhari/front.svg",
  20781. extra: 1048 / 946,
  20782. bottom: 0.015
  20783. }
  20784. },
  20785. back: {
  20786. height: math.unit(6 + 3 / 12, "feet"),
  20787. weight: math.unit(519, "lb"),
  20788. name: "Back",
  20789. image: {
  20790. source: "./media/characters/dhari/back.svg",
  20791. extra: 1048 / 931,
  20792. bottom: 0.005
  20793. }
  20794. },
  20795. frontDressed: {
  20796. height: math.unit(6 + 3 / 12, "feet"),
  20797. weight: math.unit(519, "lb"),
  20798. name: "Front (Dressed)",
  20799. image: {
  20800. source: "./media/characters/dhari/front-dressed.svg",
  20801. extra: 1713 / 1546,
  20802. bottom: 0.02
  20803. }
  20804. },
  20805. backDressed: {
  20806. height: math.unit(6 + 3 / 12, "feet"),
  20807. weight: math.unit(519, "lb"),
  20808. name: "Back (Dressed)",
  20809. image: {
  20810. source: "./media/characters/dhari/back-dressed.svg",
  20811. extra: 1699 / 1537,
  20812. bottom: 0.01
  20813. }
  20814. },
  20815. maw: {
  20816. height: math.unit(0.95, "feet"),
  20817. name: "Maw",
  20818. image: {
  20819. source: "./media/characters/dhari/maw.svg"
  20820. }
  20821. },
  20822. wereFront: {
  20823. height: math.unit(12 + 8 / 12, "feet"),
  20824. weight: math.unit(4000, "lb"),
  20825. name: "Front (Were)",
  20826. image: {
  20827. source: "./media/characters/dhari/were-front.svg",
  20828. extra: 1065 / 969,
  20829. bottom: 0.015
  20830. }
  20831. },
  20832. wereBack: {
  20833. height: math.unit(12 + 8 / 12, "feet"),
  20834. weight: math.unit(4000, "lb"),
  20835. name: "Back (Were)",
  20836. image: {
  20837. source: "./media/characters/dhari/were-back.svg",
  20838. extra: 1065 / 969,
  20839. bottom: 0.012
  20840. }
  20841. },
  20842. wereMaw: {
  20843. height: math.unit(0.625, "meters"),
  20844. name: "Maw (Were)",
  20845. image: {
  20846. source: "./media/characters/dhari/were-maw.svg"
  20847. }
  20848. },
  20849. },
  20850. [
  20851. {
  20852. name: "Normal",
  20853. height: math.unit(6 + 3 / 12, "feet"),
  20854. default: true
  20855. },
  20856. ]
  20857. ))
  20858. characterMakers.push(() => makeCharacter(
  20859. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  20860. {
  20861. anthro: {
  20862. height: math.unit(5 + 7 / 12, "feet"),
  20863. weight: math.unit(175, "lb"),
  20864. name: "Anthro",
  20865. image: {
  20866. source: "./media/characters/rena-dyne/anthro.svg",
  20867. extra: 1849 / 1785,
  20868. bottom: 0.005
  20869. }
  20870. },
  20871. taur: {
  20872. height: math.unit(15 + 6 / 12, "feet"),
  20873. weight: math.unit(8000, "lb"),
  20874. name: "Taur",
  20875. image: {
  20876. source: "./media/characters/rena-dyne/taur.svg",
  20877. extra: 2315 / 2234,
  20878. bottom: 0.033
  20879. }
  20880. },
  20881. },
  20882. [
  20883. {
  20884. name: "Normal",
  20885. height: math.unit(5 + 7 / 12, "feet"),
  20886. default: true
  20887. },
  20888. ]
  20889. ))
  20890. characterMakers.push(() => makeCharacter(
  20891. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  20892. {
  20893. front: {
  20894. height: math.unit(8, "feet"),
  20895. weight: math.unit(600, "lb"),
  20896. name: "Front",
  20897. image: {
  20898. source: "./media/characters/weremeep/front.svg",
  20899. extra: 967 / 862,
  20900. bottom: 0.01
  20901. }
  20902. },
  20903. },
  20904. [
  20905. {
  20906. name: "Normal",
  20907. height: math.unit(8, "feet"),
  20908. default: true
  20909. },
  20910. {
  20911. name: "Lorg",
  20912. height: math.unit(12, "feet")
  20913. },
  20914. {
  20915. name: "Oh Lawd She Comin'",
  20916. height: math.unit(20, "feet")
  20917. },
  20918. ]
  20919. ))
  20920. characterMakers.push(() => makeCharacter(
  20921. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  20922. {
  20923. front: {
  20924. height: math.unit(4, "feet"),
  20925. weight: math.unit(90, "lb"),
  20926. name: "Front",
  20927. image: {
  20928. source: "./media/characters/reza/front.svg",
  20929. extra: 1183 / 1111,
  20930. bottom: 0.017
  20931. }
  20932. },
  20933. back: {
  20934. height: math.unit(4, "feet"),
  20935. weight: math.unit(90, "lb"),
  20936. name: "Back",
  20937. image: {
  20938. source: "./media/characters/reza/back.svg",
  20939. extra: 1183 / 1111,
  20940. bottom: 0.01
  20941. }
  20942. },
  20943. drake: {
  20944. height: math.unit(30, "feet"),
  20945. weight: math.unit(246960, "lb"),
  20946. name: "Drake",
  20947. image: {
  20948. source: "./media/characters/reza/drake.svg",
  20949. extra: 2350 / 2024,
  20950. bottom: 60.7 / 2403
  20951. }
  20952. },
  20953. },
  20954. [
  20955. {
  20956. name: "Normal",
  20957. height: math.unit(4, "feet"),
  20958. default: true
  20959. },
  20960. ]
  20961. ))
  20962. characterMakers.push(() => makeCharacter(
  20963. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  20964. {
  20965. side: {
  20966. height: math.unit(15, "feet"),
  20967. weight: math.unit(14, "tons"),
  20968. name: "Side",
  20969. image: {
  20970. source: "./media/characters/athea/side.svg",
  20971. extra: 960 / 540,
  20972. bottom: 0.003
  20973. }
  20974. },
  20975. sitting: {
  20976. height: math.unit(6 * 2.85, "feet"),
  20977. weight: math.unit(14, "tons"),
  20978. name: "Sitting",
  20979. image: {
  20980. source: "./media/characters/athea/sitting.svg",
  20981. extra: 621 / 581,
  20982. bottom: 0.075
  20983. }
  20984. },
  20985. maw: {
  20986. height: math.unit(7.59498031496063, "feet"),
  20987. name: "Maw",
  20988. image: {
  20989. source: "./media/characters/athea/maw.svg"
  20990. }
  20991. },
  20992. },
  20993. [
  20994. {
  20995. name: "Lap Cat",
  20996. height: math.unit(2.5, "feet")
  20997. },
  20998. {
  20999. name: "Minimacro",
  21000. height: math.unit(15, "feet"),
  21001. default: true
  21002. },
  21003. {
  21004. name: "Macro",
  21005. height: math.unit(120, "feet")
  21006. },
  21007. {
  21008. name: "Macro+",
  21009. height: math.unit(640, "feet")
  21010. },
  21011. {
  21012. name: "Colossus",
  21013. height: math.unit(2.2, "miles")
  21014. },
  21015. ]
  21016. ))
  21017. characterMakers.push(() => makeCharacter(
  21018. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  21019. {
  21020. front: {
  21021. height: math.unit(8 + 8 / 12, "feet"),
  21022. weight: math.unit(130, "kg"),
  21023. name: "Front",
  21024. image: {
  21025. source: "./media/characters/seroko/front.svg",
  21026. extra: 1385 / 1280,
  21027. bottom: 0.025
  21028. }
  21029. },
  21030. back: {
  21031. height: math.unit(8 + 8 / 12, "feet"),
  21032. weight: math.unit(130, "kg"),
  21033. name: "Back",
  21034. image: {
  21035. source: "./media/characters/seroko/back.svg",
  21036. extra: 1369 / 1238,
  21037. bottom: 0.018
  21038. }
  21039. },
  21040. frontDressed: {
  21041. height: math.unit(8 + 8 / 12, "feet"),
  21042. weight: math.unit(130, "kg"),
  21043. name: "Front (Dressed)",
  21044. image: {
  21045. source: "./media/characters/seroko/front-dressed.svg",
  21046. extra: 1366 / 1275,
  21047. bottom: 0.03
  21048. }
  21049. },
  21050. },
  21051. [
  21052. {
  21053. name: "Normal",
  21054. height: math.unit(8 + 8 / 12, "feet"),
  21055. default: true
  21056. },
  21057. ]
  21058. ))
  21059. characterMakers.push(() => makeCharacter(
  21060. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  21061. {
  21062. front: {
  21063. height: math.unit(5.5, "feet"),
  21064. weight: math.unit(160, "lb"),
  21065. name: "Front",
  21066. image: {
  21067. source: "./media/characters/quatzi/front.svg",
  21068. extra: 2346 / 2242,
  21069. bottom: 0.015
  21070. }
  21071. },
  21072. },
  21073. [
  21074. {
  21075. name: "Normal",
  21076. height: math.unit(5.5, "feet"),
  21077. default: true
  21078. },
  21079. {
  21080. name: "Big",
  21081. height: math.unit(7.7, "feet")
  21082. },
  21083. ]
  21084. ))
  21085. characterMakers.push(() => makeCharacter(
  21086. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  21087. {
  21088. front: {
  21089. height: math.unit(5 + 11 / 12, "feet"),
  21090. weight: math.unit(180, "lb"),
  21091. name: "Front",
  21092. image: {
  21093. source: "./media/characters/sen/front.svg",
  21094. extra: 1321 / 1254,
  21095. bottom: 0.015
  21096. }
  21097. },
  21098. side: {
  21099. height: math.unit(5 + 11 / 12, "feet"),
  21100. weight: math.unit(180, "lb"),
  21101. name: "Side",
  21102. image: {
  21103. source: "./media/characters/sen/side.svg",
  21104. extra: 1321 / 1254,
  21105. bottom: 0.007
  21106. }
  21107. },
  21108. back: {
  21109. height: math.unit(5 + 11 / 12, "feet"),
  21110. weight: math.unit(180, "lb"),
  21111. name: "Back",
  21112. image: {
  21113. source: "./media/characters/sen/back.svg",
  21114. extra: 1321 / 1254
  21115. }
  21116. },
  21117. },
  21118. [
  21119. {
  21120. name: "Normal",
  21121. height: math.unit(5 + 11 / 12, "feet"),
  21122. default: true
  21123. },
  21124. ]
  21125. ))
  21126. characterMakers.push(() => makeCharacter(
  21127. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  21128. {
  21129. front: {
  21130. height: math.unit(166.6, "cm"),
  21131. weight: math.unit(66.6, "kg"),
  21132. name: "Front",
  21133. image: {
  21134. source: "./media/characters/fruity/front.svg",
  21135. extra: 1510 / 1386,
  21136. bottom: 0.04
  21137. }
  21138. },
  21139. back: {
  21140. height: math.unit(166.6, "cm"),
  21141. weight: math.unit(66.6, "lb"),
  21142. name: "Back",
  21143. image: {
  21144. source: "./media/characters/fruity/back.svg",
  21145. extra: 1563 / 1435,
  21146. bottom: 0.005
  21147. }
  21148. },
  21149. },
  21150. [
  21151. {
  21152. name: "Normal",
  21153. height: math.unit(166.6, "cm"),
  21154. default: true
  21155. },
  21156. {
  21157. name: "Demonic",
  21158. height: math.unit(166.6, "feet")
  21159. },
  21160. ]
  21161. ))
  21162. characterMakers.push(() => makeCharacter(
  21163. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  21164. {
  21165. side: {
  21166. height: math.unit(10, "feet"),
  21167. weight: math.unit(500, "lb"),
  21168. name: "Side",
  21169. image: {
  21170. source: "./media/characters/zost/side.svg",
  21171. extra: 966 / 880,
  21172. bottom: 0.075
  21173. }
  21174. },
  21175. mawFront: {
  21176. height: math.unit(1.08, "meters"),
  21177. name: "Maw (Front)",
  21178. image: {
  21179. source: "./media/characters/zost/maw-front.svg"
  21180. }
  21181. },
  21182. mawSide: {
  21183. height: math.unit(2.66, "feet"),
  21184. name: "Maw (Side)",
  21185. image: {
  21186. source: "./media/characters/zost/maw-side.svg"
  21187. }
  21188. },
  21189. },
  21190. [
  21191. {
  21192. name: "Normal",
  21193. height: math.unit(10, "feet"),
  21194. default: true
  21195. },
  21196. ]
  21197. ))
  21198. characterMakers.push(() => makeCharacter(
  21199. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  21200. {
  21201. front: {
  21202. height: math.unit(5 + 4 / 12, "feet"),
  21203. weight: math.unit(120, "lb"),
  21204. name: "Front",
  21205. image: {
  21206. source: "./media/characters/luci/front.svg",
  21207. extra: 1985 / 1884,
  21208. bottom: 0.04
  21209. }
  21210. },
  21211. back: {
  21212. height: math.unit(5 + 4 / 12, "feet"),
  21213. weight: math.unit(120, "lb"),
  21214. name: "Back",
  21215. image: {
  21216. source: "./media/characters/luci/back.svg",
  21217. extra: 1892 / 1791,
  21218. bottom: 0.002
  21219. }
  21220. },
  21221. },
  21222. [
  21223. {
  21224. name: "Normal",
  21225. height: math.unit(5 + 4 / 12, "feet"),
  21226. default: true
  21227. },
  21228. ]
  21229. ))
  21230. characterMakers.push(() => makeCharacter(
  21231. { name: "2th", species: ["monster"], tags: ["anthro"] },
  21232. {
  21233. front: {
  21234. height: math.unit(1500, "feet"),
  21235. weight: math.unit(3.8e6, "tons"),
  21236. name: "Front",
  21237. image: {
  21238. source: "./media/characters/2th/front.svg",
  21239. extra: 3489 / 3350,
  21240. bottom: 0.1
  21241. }
  21242. },
  21243. foot: {
  21244. height: math.unit(461, "feet"),
  21245. name: "Foot",
  21246. image: {
  21247. source: "./media/characters/2th/foot.svg"
  21248. }
  21249. },
  21250. },
  21251. [
  21252. {
  21253. name: "\"Micro\"",
  21254. height: math.unit(15 + 7 / 12, "feet")
  21255. },
  21256. {
  21257. name: "Normal",
  21258. height: math.unit(1500, "feet"),
  21259. default: true
  21260. },
  21261. {
  21262. name: "Macro",
  21263. height: math.unit(5000, "feet")
  21264. },
  21265. {
  21266. name: "Megamacro",
  21267. height: math.unit(15, "miles")
  21268. },
  21269. {
  21270. name: "Gigamacro",
  21271. height: math.unit(4000, "miles")
  21272. },
  21273. {
  21274. name: "Galactic",
  21275. height: math.unit(50, "AU")
  21276. },
  21277. ]
  21278. ))
  21279. characterMakers.push(() => makeCharacter(
  21280. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  21281. {
  21282. front: {
  21283. height: math.unit(5 + 6 / 12, "feet"),
  21284. weight: math.unit(220, "lb"),
  21285. name: "Front",
  21286. image: {
  21287. source: "./media/characters/amethyst/front.svg",
  21288. extra: 2078 / 2040,
  21289. bottom: 0.045
  21290. }
  21291. },
  21292. back: {
  21293. height: math.unit(5 + 6 / 12, "feet"),
  21294. weight: math.unit(220, "lb"),
  21295. name: "Back",
  21296. image: {
  21297. source: "./media/characters/amethyst/back.svg",
  21298. extra: 2021 / 1989,
  21299. bottom: 0.02
  21300. }
  21301. },
  21302. },
  21303. [
  21304. {
  21305. name: "Normal",
  21306. height: math.unit(5 + 6 / 12, "feet"),
  21307. default: true
  21308. },
  21309. ]
  21310. ))
  21311. characterMakers.push(() => makeCharacter(
  21312. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  21313. {
  21314. front: {
  21315. height: math.unit(4 + 11 / 12, "feet"),
  21316. weight: math.unit(120, "lb"),
  21317. name: "Front",
  21318. image: {
  21319. source: "./media/characters/yumi-akiyama/front.svg",
  21320. extra: 1327 / 1235,
  21321. bottom: 0.02
  21322. }
  21323. },
  21324. back: {
  21325. height: math.unit(4 + 11 / 12, "feet"),
  21326. weight: math.unit(120, "lb"),
  21327. name: "Back",
  21328. image: {
  21329. source: "./media/characters/yumi-akiyama/back.svg",
  21330. extra: 1287 / 1245,
  21331. bottom: 0.002
  21332. }
  21333. },
  21334. },
  21335. [
  21336. {
  21337. name: "Galactic",
  21338. height: math.unit(50, "galaxies"),
  21339. default: true
  21340. },
  21341. {
  21342. name: "Universal",
  21343. height: math.unit(100, "universes")
  21344. },
  21345. ]
  21346. ))
  21347. characterMakers.push(() => makeCharacter(
  21348. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  21349. {
  21350. front: {
  21351. height: math.unit(8, "feet"),
  21352. weight: math.unit(500, "lb"),
  21353. name: "Front",
  21354. image: {
  21355. source: "./media/characters/rifter-yrmori/front.svg",
  21356. extra: 1180 / 1125,
  21357. bottom: 0.02
  21358. }
  21359. },
  21360. back: {
  21361. height: math.unit(8, "feet"),
  21362. weight: math.unit(500, "lb"),
  21363. name: "Back",
  21364. image: {
  21365. source: "./media/characters/rifter-yrmori/back.svg",
  21366. extra: 1190 / 1145,
  21367. bottom: 0.001
  21368. }
  21369. },
  21370. wings: {
  21371. height: math.unit(7.75, "feet"),
  21372. weight: math.unit(500, "lb"),
  21373. name: "Wings",
  21374. image: {
  21375. source: "./media/characters/rifter-yrmori/wings.svg",
  21376. extra: 1357 / 1285
  21377. }
  21378. },
  21379. maw: {
  21380. height: math.unit(0.8, "feet"),
  21381. name: "Maw",
  21382. image: {
  21383. source: "./media/characters/rifter-yrmori/maw.svg"
  21384. }
  21385. },
  21386. mawfront: {
  21387. height: math.unit(1.45, "feet"),
  21388. name: "Maw (Front)",
  21389. image: {
  21390. source: "./media/characters/rifter-yrmori/maw-front.svg"
  21391. }
  21392. },
  21393. },
  21394. [
  21395. {
  21396. name: "Normal",
  21397. height: math.unit(8, "feet"),
  21398. default: true
  21399. },
  21400. {
  21401. name: "Macro",
  21402. height: math.unit(42, "meters")
  21403. },
  21404. ]
  21405. ))
  21406. characterMakers.push(() => makeCharacter(
  21407. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  21408. {
  21409. were: {
  21410. height: math.unit(25 + 6 / 12, "feet"),
  21411. weight: math.unit(10000, "lb"),
  21412. name: "Were",
  21413. image: {
  21414. source: "./media/characters/tahajin/were.svg",
  21415. extra: 801 / 770,
  21416. bottom: 0.042
  21417. }
  21418. },
  21419. aquatic: {
  21420. height: math.unit(6 + 4 / 12, "feet"),
  21421. weight: math.unit(160, "lb"),
  21422. name: "Aquatic",
  21423. image: {
  21424. source: "./media/characters/tahajin/aquatic.svg",
  21425. extra: 572 / 542,
  21426. bottom: 0.04
  21427. }
  21428. },
  21429. chow: {
  21430. height: math.unit(8 + 11 / 12, "feet"),
  21431. weight: math.unit(450, "lb"),
  21432. name: "Chow",
  21433. image: {
  21434. source: "./media/characters/tahajin/chow.svg",
  21435. extra: 660 / 640,
  21436. bottom: 0.015
  21437. }
  21438. },
  21439. demiNaga: {
  21440. height: math.unit(6 + 8 / 12, "feet"),
  21441. weight: math.unit(300, "lb"),
  21442. name: "Demi Naga",
  21443. image: {
  21444. source: "./media/characters/tahajin/demi-naga.svg",
  21445. extra: 643 / 615,
  21446. bottom: 0.1
  21447. }
  21448. },
  21449. data: {
  21450. height: math.unit(5, "inches"),
  21451. weight: math.unit(0.1, "lb"),
  21452. name: "Data",
  21453. image: {
  21454. source: "./media/characters/tahajin/data.svg"
  21455. }
  21456. },
  21457. fluu: {
  21458. height: math.unit(5 + 7 / 12, "feet"),
  21459. weight: math.unit(140, "lb"),
  21460. name: "Fluu",
  21461. image: {
  21462. source: "./media/characters/tahajin/fluu.svg",
  21463. extra: 628 / 592,
  21464. bottom: 0.02
  21465. }
  21466. },
  21467. starWarrior: {
  21468. height: math.unit(4 + 5 / 12, "feet"),
  21469. weight: math.unit(50, "lb"),
  21470. name: "Star Warrior",
  21471. image: {
  21472. source: "./media/characters/tahajin/star-warrior.svg"
  21473. }
  21474. },
  21475. },
  21476. [
  21477. {
  21478. name: "Normal",
  21479. height: math.unit(25 + 6 / 12, "feet"),
  21480. default: true
  21481. },
  21482. ]
  21483. ))
  21484. characterMakers.push(() => makeCharacter(
  21485. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  21486. {
  21487. front: {
  21488. height: math.unit(8, "feet"),
  21489. weight: math.unit(350, "lb"),
  21490. name: "Front",
  21491. image: {
  21492. source: "./media/characters/gabira/front.svg",
  21493. extra: 608 / 580,
  21494. bottom: 0.03
  21495. }
  21496. },
  21497. back: {
  21498. height: math.unit(8, "feet"),
  21499. weight: math.unit(350, "lb"),
  21500. name: "Back",
  21501. image: {
  21502. source: "./media/characters/gabira/back.svg",
  21503. extra: 608 / 580,
  21504. bottom: 0.03
  21505. }
  21506. },
  21507. },
  21508. [
  21509. {
  21510. name: "Normal",
  21511. height: math.unit(8, "feet"),
  21512. default: true
  21513. },
  21514. ]
  21515. ))
  21516. characterMakers.push(() => makeCharacter(
  21517. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  21518. {
  21519. front: {
  21520. height: math.unit(5 + 3 / 12, "feet"),
  21521. weight: math.unit(137, "lb"),
  21522. name: "Front",
  21523. image: {
  21524. source: "./media/characters/sasha-katraine/front.svg",
  21525. bottom: 0.045
  21526. }
  21527. },
  21528. },
  21529. [
  21530. {
  21531. name: "Micro",
  21532. height: math.unit(5, "inches")
  21533. },
  21534. {
  21535. name: "Normal",
  21536. height: math.unit(5 + 3 / 12, "feet"),
  21537. default: true
  21538. },
  21539. ]
  21540. ))
  21541. characterMakers.push(() => makeCharacter(
  21542. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  21543. {
  21544. side: {
  21545. height: math.unit(4, "inches"),
  21546. weight: math.unit(200, "grams"),
  21547. name: "Side",
  21548. image: {
  21549. source: "./media/characters/der/side.svg",
  21550. extra: 719 / 400,
  21551. bottom: 30.6 / 749.9187
  21552. }
  21553. },
  21554. },
  21555. [
  21556. {
  21557. name: "Micro",
  21558. height: math.unit(4, "inches"),
  21559. default: true
  21560. },
  21561. ]
  21562. ))
  21563. characterMakers.push(() => makeCharacter(
  21564. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  21565. {
  21566. side: {
  21567. height: math.unit(30, "meters"),
  21568. weight: math.unit(700, "tonnes"),
  21569. name: "Side",
  21570. image: {
  21571. source: "./media/characters/fixerdragon/side.svg",
  21572. extra: (1293.0514 - 116.03) / 1106.86,
  21573. bottom: 116.03 / 1293.0514
  21574. }
  21575. },
  21576. },
  21577. [
  21578. {
  21579. name: "Planck",
  21580. height: math.unit(1.6e-35, "meters")
  21581. },
  21582. {
  21583. name: "Micro",
  21584. height: math.unit(0.4, "meters")
  21585. },
  21586. {
  21587. name: "Normal",
  21588. height: math.unit(30, "meters"),
  21589. default: true
  21590. },
  21591. {
  21592. name: "Megamacro",
  21593. height: math.unit(1.2, "megameters")
  21594. },
  21595. {
  21596. name: "Teramacro",
  21597. height: math.unit(130, "terameters")
  21598. },
  21599. {
  21600. name: "Yottamacro",
  21601. height: math.unit(6200, "yottameters")
  21602. },
  21603. ]
  21604. ));
  21605. characterMakers.push(() => makeCharacter(
  21606. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  21607. {
  21608. front: {
  21609. height: math.unit(8, "feet"),
  21610. weight: math.unit(250, "lb"),
  21611. name: "Front",
  21612. image: {
  21613. source: "./media/characters/kite/front.svg",
  21614. extra: 2796 / 2659,
  21615. bottom: 0.002
  21616. }
  21617. },
  21618. },
  21619. [
  21620. {
  21621. name: "Normal",
  21622. height: math.unit(8, "feet"),
  21623. default: true
  21624. },
  21625. {
  21626. name: "Macro",
  21627. height: math.unit(360, "feet")
  21628. },
  21629. {
  21630. name: "Megamacro",
  21631. height: math.unit(1500, "feet")
  21632. },
  21633. ]
  21634. ))
  21635. characterMakers.push(() => makeCharacter(
  21636. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  21637. {
  21638. front: {
  21639. height: math.unit(5 + 11/12, "feet"),
  21640. weight: math.unit(170, "lb"),
  21641. name: "Front",
  21642. image: {
  21643. source: "./media/characters/poojawa-vynar/front.svg",
  21644. extra: 1735/1585,
  21645. bottom: 96/1831
  21646. }
  21647. },
  21648. back: {
  21649. height: math.unit(5 + 11/12, "feet"),
  21650. weight: math.unit(170, "lb"),
  21651. name: "Back",
  21652. image: {
  21653. source: "./media/characters/poojawa-vynar/back.svg",
  21654. extra: 1749/1607,
  21655. bottom: 28/1777
  21656. }
  21657. },
  21658. male: {
  21659. height: math.unit(5 + 11/12, "feet"),
  21660. weight: math.unit(170, "lb"),
  21661. name: "Male",
  21662. image: {
  21663. source: "./media/characters/poojawa-vynar/male.svg",
  21664. extra: 1855/1713,
  21665. bottom: 63/1918
  21666. }
  21667. },
  21668. taur: {
  21669. height: math.unit(5 + 11/12, "feet"),
  21670. weight: math.unit(170, "lb"),
  21671. name: "Taur",
  21672. image: {
  21673. source: "./media/characters/poojawa-vynar/taur.svg",
  21674. extra: 1151/1059,
  21675. bottom: 356/1507
  21676. }
  21677. },
  21678. frontDressed: {
  21679. height: math.unit(5 + 11/12, "feet"),
  21680. weight: math.unit(170, "lb"),
  21681. name: "Front (Dressed)",
  21682. image: {
  21683. source: "./media/characters/poojawa-vynar/front-dressed.svg",
  21684. extra: 1735/1585,
  21685. bottom: 96/1831
  21686. }
  21687. },
  21688. backDressed: {
  21689. height: math.unit(5 + 11/12, "feet"),
  21690. weight: math.unit(170, "lb"),
  21691. name: "Back (Dressed)",
  21692. image: {
  21693. source: "./media/characters/poojawa-vynar/back-dressed.svg",
  21694. extra: 1749/1607,
  21695. bottom: 28/1777
  21696. }
  21697. },
  21698. maleDressed: {
  21699. height: math.unit(5 + 11/12, "feet"),
  21700. weight: math.unit(170, "lb"),
  21701. name: "Male (Dressed)",
  21702. image: {
  21703. source: "./media/characters/poojawa-vynar/male-dressed.svg",
  21704. extra: 1855/1713,
  21705. bottom: 63/1918
  21706. }
  21707. },
  21708. taurDressed: {
  21709. height: math.unit(5 + 11/12, "feet"),
  21710. weight: math.unit(170, "lb"),
  21711. name: "Taur (Dressed)",
  21712. image: {
  21713. source: "./media/characters/poojawa-vynar/taur-dressed.svg",
  21714. extra: 1151/1059,
  21715. bottom: 356/1507
  21716. }
  21717. },
  21718. maw: {
  21719. height: math.unit(1.46, "feet"),
  21720. name: "Maw",
  21721. image: {
  21722. source: "./media/characters/poojawa-vynar/maw.svg"
  21723. }
  21724. },
  21725. head: {
  21726. height: math.unit(2.34, "feet"),
  21727. name: "Head",
  21728. image: {
  21729. source: "./media/characters/poojawa-vynar/head.svg"
  21730. }
  21731. },
  21732. paw: {
  21733. height: math.unit(1.61, "feet"),
  21734. name: "Paw",
  21735. image: {
  21736. source: "./media/characters/poojawa-vynar/paw.svg"
  21737. }
  21738. },
  21739. pawToering: {
  21740. height: math.unit(1.72, "feet"),
  21741. name: "Paw (Toering)",
  21742. image: {
  21743. source: "./media/characters/poojawa-vynar/paw-toering.svg"
  21744. }
  21745. },
  21746. toering: {
  21747. height: math.unit(2.9, "inches"),
  21748. name: "Toering",
  21749. image: {
  21750. source: "./media/characters/poojawa-vynar/toering.svg"
  21751. }
  21752. },
  21753. shaft: {
  21754. height: math.unit(0.625, "feet"),
  21755. name: "Shaft",
  21756. image: {
  21757. source: "./media/characters/poojawa-vynar/shaft.svg"
  21758. }
  21759. },
  21760. spade: {
  21761. height: math.unit(0.42, "feet"),
  21762. name: "Spade",
  21763. image: {
  21764. source: "./media/characters/poojawa-vynar/spade.svg"
  21765. }
  21766. },
  21767. },
  21768. [
  21769. {
  21770. name: "Shortstack",
  21771. height: math.unit(4, "feet")
  21772. },
  21773. {
  21774. name: "Normal",
  21775. height: math.unit(5 + 11 / 12, "feet"),
  21776. default: true
  21777. },
  21778. {
  21779. name: "Tauric",
  21780. height: math.unit(4, "meters")
  21781. },
  21782. ]
  21783. ))
  21784. characterMakers.push(() => makeCharacter(
  21785. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  21786. {
  21787. front: {
  21788. height: math.unit(293, "meters"),
  21789. weight: math.unit(70400, "tons"),
  21790. name: "Front",
  21791. image: {
  21792. source: "./media/characters/violette/front.svg",
  21793. extra: 1227 / 1180,
  21794. bottom: 0.005
  21795. }
  21796. },
  21797. back: {
  21798. height: math.unit(293, "meters"),
  21799. weight: math.unit(70400, "tons"),
  21800. name: "Back",
  21801. image: {
  21802. source: "./media/characters/violette/back.svg",
  21803. extra: 1227 / 1180,
  21804. bottom: 0.005
  21805. }
  21806. },
  21807. },
  21808. [
  21809. {
  21810. name: "Macro",
  21811. height: math.unit(293, "meters"),
  21812. default: true
  21813. },
  21814. ]
  21815. ))
  21816. characterMakers.push(() => makeCharacter(
  21817. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  21818. {
  21819. front: {
  21820. height: math.unit(1050, "feet"),
  21821. weight: math.unit(200000, "tons"),
  21822. name: "Front",
  21823. image: {
  21824. source: "./media/characters/alessandra/front.svg",
  21825. extra: 960 / 912,
  21826. bottom: 0.06
  21827. }
  21828. },
  21829. },
  21830. [
  21831. {
  21832. name: "Macro",
  21833. height: math.unit(1050, "feet")
  21834. },
  21835. {
  21836. name: "Macro+",
  21837. height: math.unit(900, "meters"),
  21838. default: true
  21839. },
  21840. ]
  21841. ))
  21842. characterMakers.push(() => makeCharacter(
  21843. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  21844. {
  21845. front: {
  21846. height: math.unit(5, "feet"),
  21847. weight: math.unit(187, "lb"),
  21848. name: "Front",
  21849. image: {
  21850. source: "./media/characters/person/front.svg",
  21851. extra: 3087 / 2945,
  21852. bottom: 91 / 3181
  21853. }
  21854. },
  21855. },
  21856. [
  21857. {
  21858. name: "Micro",
  21859. height: math.unit(3, "inches")
  21860. },
  21861. {
  21862. name: "Normal",
  21863. height: math.unit(5, "feet"),
  21864. default: true
  21865. },
  21866. {
  21867. name: "Macro",
  21868. height: math.unit(90, "feet")
  21869. },
  21870. {
  21871. name: "Max Size",
  21872. height: math.unit(280, "feet")
  21873. },
  21874. ]
  21875. ))
  21876. characterMakers.push(() => makeCharacter(
  21877. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  21878. {
  21879. front: {
  21880. height: math.unit(4.5, "meters"),
  21881. weight: math.unit(3200, "lb"),
  21882. name: "Front",
  21883. image: {
  21884. source: "./media/characters/ty/front.svg",
  21885. extra: 1038 / 960,
  21886. bottom: 31.156 / 1068
  21887. }
  21888. },
  21889. back: {
  21890. height: math.unit(4.5, "meters"),
  21891. weight: math.unit(3200, "lb"),
  21892. name: "Back",
  21893. image: {
  21894. source: "./media/characters/ty/back.svg",
  21895. extra: 1044 / 966,
  21896. bottom: 7.48 / 1049
  21897. }
  21898. },
  21899. },
  21900. [
  21901. {
  21902. name: "Normal",
  21903. height: math.unit(4.5, "meters"),
  21904. default: true
  21905. },
  21906. ]
  21907. ))
  21908. characterMakers.push(() => makeCharacter(
  21909. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  21910. {
  21911. front: {
  21912. height: math.unit(5 + 4 / 12, "feet"),
  21913. weight: math.unit(115, "lb"),
  21914. name: "Front",
  21915. image: {
  21916. source: "./media/characters/rocky/front.svg",
  21917. extra: 1012 / 975,
  21918. bottom: 54 / 1066
  21919. }
  21920. },
  21921. },
  21922. [
  21923. {
  21924. name: "Normal",
  21925. height: math.unit(5 + 4 / 12, "feet"),
  21926. default: true
  21927. },
  21928. ]
  21929. ))
  21930. characterMakers.push(() => makeCharacter(
  21931. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  21932. {
  21933. upright: {
  21934. height: math.unit(6, "meters"),
  21935. weight: math.unit(4000, "kg"),
  21936. name: "Upright",
  21937. image: {
  21938. source: "./media/characters/ruin/upright.svg",
  21939. extra: 668 / 661,
  21940. bottom: 42 / 799.8396
  21941. }
  21942. },
  21943. },
  21944. [
  21945. {
  21946. name: "Normal",
  21947. height: math.unit(6, "meters"),
  21948. default: true
  21949. },
  21950. ]
  21951. ))
  21952. characterMakers.push(() => makeCharacter(
  21953. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  21954. {
  21955. front: {
  21956. height: math.unit(5, "feet"),
  21957. weight: math.unit(106, "lb"),
  21958. name: "Front",
  21959. image: {
  21960. source: "./media/characters/robin/front.svg",
  21961. extra: 862 / 799,
  21962. bottom: 42.4 / 914.8856
  21963. }
  21964. },
  21965. },
  21966. [
  21967. {
  21968. name: "Normal",
  21969. height: math.unit(5, "feet"),
  21970. default: true
  21971. },
  21972. ]
  21973. ))
  21974. characterMakers.push(() => makeCharacter(
  21975. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  21976. {
  21977. side: {
  21978. height: math.unit(3, "feet"),
  21979. weight: math.unit(225, "lb"),
  21980. name: "Side",
  21981. image: {
  21982. source: "./media/characters/saian/side.svg",
  21983. extra: 566 / 356,
  21984. bottom: 79.7 / 643
  21985. }
  21986. },
  21987. maw: {
  21988. height: math.unit(2.85, "feet"),
  21989. name: "Maw",
  21990. image: {
  21991. source: "./media/characters/saian/maw.svg"
  21992. }
  21993. },
  21994. },
  21995. [
  21996. {
  21997. name: "Normal",
  21998. height: math.unit(3, "feet"),
  21999. default: true
  22000. },
  22001. ]
  22002. ))
  22003. characterMakers.push(() => makeCharacter(
  22004. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  22005. {
  22006. side: {
  22007. height: math.unit(8, "feet"),
  22008. weight: math.unit(300, "lb"),
  22009. name: "Side",
  22010. image: {
  22011. source: "./media/characters/equus-silvermane/side.svg",
  22012. extra: 2176 / 2050,
  22013. bottom: 65.7 / 2245
  22014. }
  22015. },
  22016. front: {
  22017. height: math.unit(8, "feet"),
  22018. weight: math.unit(300, "lb"),
  22019. name: "Front",
  22020. image: {
  22021. source: "./media/characters/equus-silvermane/front.svg",
  22022. extra: 4633 / 4400,
  22023. bottom: 71.3 / 4706.915
  22024. }
  22025. },
  22026. sideStepping: {
  22027. height: math.unit(8, "feet"),
  22028. weight: math.unit(300, "lb"),
  22029. name: "Side (Stepping)",
  22030. image: {
  22031. source: "./media/characters/equus-silvermane/side-stepping.svg",
  22032. extra: 1968 / 1860,
  22033. bottom: 16.4 / 1989
  22034. }
  22035. },
  22036. },
  22037. [
  22038. {
  22039. name: "Normal",
  22040. height: math.unit(8, "feet")
  22041. },
  22042. {
  22043. name: "Minimacro",
  22044. height: math.unit(75, "feet"),
  22045. default: true
  22046. },
  22047. {
  22048. name: "Macro",
  22049. height: math.unit(150, "feet")
  22050. },
  22051. {
  22052. name: "Macro+",
  22053. height: math.unit(1000, "feet")
  22054. },
  22055. {
  22056. name: "Megamacro",
  22057. height: math.unit(1, "mile")
  22058. },
  22059. ]
  22060. ))
  22061. characterMakers.push(() => makeCharacter(
  22062. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  22063. {
  22064. side: {
  22065. height: math.unit(20, "feet"),
  22066. weight: math.unit(30000, "kg"),
  22067. name: "Side",
  22068. image: {
  22069. source: "./media/characters/windar/side.svg",
  22070. extra: 1491 / 1248,
  22071. bottom: 82.56 / 1568
  22072. }
  22073. },
  22074. },
  22075. [
  22076. {
  22077. name: "Normal",
  22078. height: math.unit(20, "feet"),
  22079. default: true
  22080. },
  22081. ]
  22082. ))
  22083. characterMakers.push(() => makeCharacter(
  22084. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  22085. {
  22086. side: {
  22087. height: math.unit(15.66, "feet"),
  22088. weight: math.unit(150, "lb"),
  22089. name: "Side",
  22090. image: {
  22091. source: "./media/characters/melody/side.svg",
  22092. extra: 1097 / 944,
  22093. bottom: 11.8 / 1109
  22094. }
  22095. },
  22096. sideOutfit: {
  22097. height: math.unit(15.66, "feet"),
  22098. weight: math.unit(150, "lb"),
  22099. name: "Side (Outfit)",
  22100. image: {
  22101. source: "./media/characters/melody/side-outfit.svg",
  22102. extra: 1097 / 944,
  22103. bottom: 11.8 / 1109
  22104. }
  22105. },
  22106. },
  22107. [
  22108. {
  22109. name: "Normal",
  22110. height: math.unit(15.66, "feet"),
  22111. default: true
  22112. },
  22113. ]
  22114. ))
  22115. characterMakers.push(() => makeCharacter(
  22116. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  22117. {
  22118. front: {
  22119. height: math.unit(8, "feet"),
  22120. weight: math.unit(325, "lb"),
  22121. name: "Front",
  22122. image: {
  22123. source: "./media/characters/windera/front.svg",
  22124. extra: 3180 / 2845,
  22125. bottom: 178 / 3365
  22126. }
  22127. },
  22128. },
  22129. [
  22130. {
  22131. name: "Normal",
  22132. height: math.unit(8, "feet"),
  22133. default: true
  22134. },
  22135. ]
  22136. ))
  22137. characterMakers.push(() => makeCharacter(
  22138. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  22139. {
  22140. front: {
  22141. height: math.unit(28.75, "feet"),
  22142. weight: math.unit(2000, "kg"),
  22143. name: "Front",
  22144. image: {
  22145. source: "./media/characters/sonear/front.svg",
  22146. extra: 1041.1 / 964.9,
  22147. bottom: 53.7 / 1096.6
  22148. }
  22149. },
  22150. },
  22151. [
  22152. {
  22153. name: "Normal",
  22154. height: math.unit(28.75, "feet"),
  22155. default: true
  22156. },
  22157. ]
  22158. ))
  22159. characterMakers.push(() => makeCharacter(
  22160. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  22161. {
  22162. side: {
  22163. height: math.unit(25.5, "feet"),
  22164. weight: math.unit(23000, "kg"),
  22165. name: "Side",
  22166. image: {
  22167. source: "./media/characters/kanara/side.svg"
  22168. }
  22169. },
  22170. },
  22171. [
  22172. {
  22173. name: "Normal",
  22174. height: math.unit(25.5, "feet"),
  22175. default: true
  22176. },
  22177. ]
  22178. ))
  22179. characterMakers.push(() => makeCharacter(
  22180. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  22181. {
  22182. side: {
  22183. height: math.unit(10, "feet"),
  22184. weight: math.unit(1000, "kg"),
  22185. name: "Side",
  22186. image: {
  22187. source: "./media/characters/ereus/side.svg",
  22188. extra: 1157 / 959,
  22189. bottom: 153 / 1312.5
  22190. }
  22191. },
  22192. },
  22193. [
  22194. {
  22195. name: "Normal",
  22196. height: math.unit(10, "feet"),
  22197. default: true
  22198. },
  22199. ]
  22200. ))
  22201. characterMakers.push(() => makeCharacter(
  22202. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  22203. {
  22204. side: {
  22205. height: math.unit(4.5, "feet"),
  22206. weight: math.unit(500, "lb"),
  22207. name: "Side",
  22208. image: {
  22209. source: "./media/characters/e-ter/side.svg",
  22210. extra: 1550 / 1248,
  22211. bottom: 146 / 1694
  22212. }
  22213. },
  22214. },
  22215. [
  22216. {
  22217. name: "Normal",
  22218. height: math.unit(4.5, "feet"),
  22219. default: true
  22220. },
  22221. ]
  22222. ))
  22223. characterMakers.push(() => makeCharacter(
  22224. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  22225. {
  22226. side: {
  22227. height: math.unit(9.7, "feet"),
  22228. weight: math.unit(4000, "kg"),
  22229. name: "Side",
  22230. image: {
  22231. source: "./media/characters/yamie/side.svg"
  22232. }
  22233. },
  22234. },
  22235. [
  22236. {
  22237. name: "Normal",
  22238. height: math.unit(9.7, "feet"),
  22239. default: true
  22240. },
  22241. ]
  22242. ))
  22243. characterMakers.push(() => makeCharacter(
  22244. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  22245. {
  22246. front: {
  22247. height: math.unit(50, "feet"),
  22248. weight: math.unit(50000, "kg"),
  22249. name: "Front",
  22250. image: {
  22251. source: "./media/characters/anders/front.svg",
  22252. extra: 570 / 539,
  22253. bottom: 14.7 / 586.7
  22254. }
  22255. },
  22256. },
  22257. [
  22258. {
  22259. name: "Large",
  22260. height: math.unit(50, "feet")
  22261. },
  22262. {
  22263. name: "Macro",
  22264. height: math.unit(2000, "feet"),
  22265. default: true
  22266. },
  22267. {
  22268. name: "Megamacro",
  22269. height: math.unit(12, "miles")
  22270. },
  22271. ]
  22272. ))
  22273. characterMakers.push(() => makeCharacter(
  22274. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  22275. {
  22276. front: {
  22277. height: math.unit(7 + 2 / 12, "feet"),
  22278. weight: math.unit(300, "lb"),
  22279. name: "Front",
  22280. image: {
  22281. source: "./media/characters/reban/front.svg",
  22282. extra: 516 / 487,
  22283. bottom: 42.82 / 558.356
  22284. }
  22285. },
  22286. dick: {
  22287. height: math.unit(7 / 5, "feet"),
  22288. name: "Dick",
  22289. image: {
  22290. source: "./media/characters/reban/dick.svg"
  22291. }
  22292. },
  22293. },
  22294. [
  22295. {
  22296. name: "Natural Height",
  22297. height: math.unit(7 + 2 / 12, "feet")
  22298. },
  22299. {
  22300. name: "Macro",
  22301. height: math.unit(500, "feet"),
  22302. default: true
  22303. },
  22304. {
  22305. name: "Canon Height",
  22306. height: math.unit(50, "AU")
  22307. },
  22308. ]
  22309. ))
  22310. characterMakers.push(() => makeCharacter(
  22311. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  22312. {
  22313. front: {
  22314. height: math.unit(6, "feet"),
  22315. weight: math.unit(150, "lb"),
  22316. name: "Front",
  22317. image: {
  22318. source: "./media/characters/terrance-keayes/front.svg",
  22319. extra: 1.005,
  22320. bottom: 151 / 1615
  22321. }
  22322. },
  22323. side: {
  22324. height: math.unit(6, "feet"),
  22325. weight: math.unit(150, "lb"),
  22326. name: "Side",
  22327. image: {
  22328. source: "./media/characters/terrance-keayes/side.svg",
  22329. extra: 1.005,
  22330. bottom: 129.4 / 1544
  22331. }
  22332. },
  22333. back: {
  22334. height: math.unit(6, "feet"),
  22335. weight: math.unit(150, "lb"),
  22336. name: "Back",
  22337. image: {
  22338. source: "./media/characters/terrance-keayes/back.svg",
  22339. extra: 1.005,
  22340. bottom: 58.4 / 1557.3
  22341. }
  22342. },
  22343. dick: {
  22344. height: math.unit(6 * 0.208, "feet"),
  22345. name: "Dick",
  22346. image: {
  22347. source: "./media/characters/terrance-keayes/dick.svg"
  22348. }
  22349. },
  22350. },
  22351. [
  22352. {
  22353. name: "Canon Height",
  22354. height: math.unit(35, "miles"),
  22355. default: true
  22356. },
  22357. ]
  22358. ))
  22359. characterMakers.push(() => makeCharacter(
  22360. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  22361. {
  22362. front: {
  22363. height: math.unit(6, "feet"),
  22364. weight: math.unit(150, "lb"),
  22365. name: "Front",
  22366. image: {
  22367. source: "./media/characters/ofelia/front.svg",
  22368. extra: 546 / 541,
  22369. bottom: 39 / 583
  22370. }
  22371. },
  22372. back: {
  22373. height: math.unit(6, "feet"),
  22374. weight: math.unit(150, "lb"),
  22375. name: "Back",
  22376. image: {
  22377. source: "./media/characters/ofelia/back.svg",
  22378. extra: 564 / 559.5,
  22379. bottom: 8.69 / 573.02
  22380. }
  22381. },
  22382. maw: {
  22383. height: math.unit(1, "feet"),
  22384. name: "Maw",
  22385. image: {
  22386. source: "./media/characters/ofelia/maw.svg"
  22387. }
  22388. },
  22389. foot: {
  22390. height: math.unit(1.949, "feet"),
  22391. name: "Foot",
  22392. image: {
  22393. source: "./media/characters/ofelia/foot.svg"
  22394. }
  22395. },
  22396. },
  22397. [
  22398. {
  22399. name: "Canon Height",
  22400. height: math.unit(2000, "miles"),
  22401. default: true
  22402. },
  22403. ]
  22404. ))
  22405. characterMakers.push(() => makeCharacter(
  22406. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  22407. {
  22408. front: {
  22409. height: math.unit(6, "feet"),
  22410. weight: math.unit(150, "lb"),
  22411. name: "Front",
  22412. image: {
  22413. source: "./media/characters/samuel/front.svg",
  22414. extra: 265 / 258,
  22415. bottom: 2 / 266.1566
  22416. }
  22417. },
  22418. },
  22419. [
  22420. {
  22421. name: "Macro",
  22422. height: math.unit(100, "feet"),
  22423. default: true
  22424. },
  22425. {
  22426. name: "Full Size",
  22427. height: math.unit(1000, "miles")
  22428. },
  22429. ]
  22430. ))
  22431. characterMakers.push(() => makeCharacter(
  22432. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  22433. {
  22434. front: {
  22435. height: math.unit(6, "feet"),
  22436. weight: math.unit(300, "lb"),
  22437. name: "Front",
  22438. image: {
  22439. source: "./media/characters/beishir-kiel/front.svg",
  22440. extra: 569 / 547,
  22441. bottom: 41.9 / 609
  22442. }
  22443. },
  22444. maw: {
  22445. height: math.unit(6 * 0.202, "feet"),
  22446. name: "Maw",
  22447. image: {
  22448. source: "./media/characters/beishir-kiel/maw.svg"
  22449. }
  22450. },
  22451. },
  22452. [
  22453. {
  22454. name: "Macro",
  22455. height: math.unit(300, "feet"),
  22456. default: true
  22457. },
  22458. ]
  22459. ))
  22460. characterMakers.push(() => makeCharacter(
  22461. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  22462. {
  22463. front: {
  22464. height: math.unit(5 + 7/12, "feet"),
  22465. weight: math.unit(120, "lb"),
  22466. name: "Front",
  22467. image: {
  22468. source: "./media/characters/logan-grey/front.svg",
  22469. extra: 1836/1738,
  22470. bottom: 108/1944
  22471. }
  22472. },
  22473. back: {
  22474. height: math.unit(5 + 7/12, "feet"),
  22475. weight: math.unit(120, "lb"),
  22476. name: "Back",
  22477. image: {
  22478. source: "./media/characters/logan-grey/back.svg",
  22479. extra: 1880/1794,
  22480. bottom: 24/1904
  22481. }
  22482. },
  22483. frontSfw: {
  22484. height: math.unit(5 + 7/12, "feet"),
  22485. weight: math.unit(120, "lb"),
  22486. name: "Front (SFW)",
  22487. image: {
  22488. source: "./media/characters/logan-grey/front-sfw.svg",
  22489. extra: 1836/1738,
  22490. bottom: 108/1944
  22491. }
  22492. },
  22493. backSfw: {
  22494. height: math.unit(5 + 7/12, "feet"),
  22495. weight: math.unit(120, "lb"),
  22496. name: "Back (SFW)",
  22497. image: {
  22498. source: "./media/characters/logan-grey/back-sfw.svg",
  22499. extra: 1880/1794,
  22500. bottom: 24/1904
  22501. }
  22502. },
  22503. hands: {
  22504. height: math.unit(0.84, "feet"),
  22505. name: "Hands",
  22506. image: {
  22507. source: "./media/characters/logan-grey/hands.svg"
  22508. }
  22509. },
  22510. paws: {
  22511. height: math.unit(0.72, "feet"),
  22512. name: "Paws",
  22513. image: {
  22514. source: "./media/characters/logan-grey/paws.svg"
  22515. }
  22516. },
  22517. cock: {
  22518. height: math.unit(1.45, "feet"),
  22519. name: "Cock",
  22520. image: {
  22521. source: "./media/characters/logan-grey/cock.svg"
  22522. }
  22523. },
  22524. cockAlt: {
  22525. height: math.unit(1.437, "feet"),
  22526. name: "Cock (alt)",
  22527. image: {
  22528. source: "./media/characters/logan-grey/cock-alt.svg"
  22529. }
  22530. },
  22531. },
  22532. [
  22533. {
  22534. name: "Normal",
  22535. height: math.unit(5 + 8 / 12, "feet")
  22536. },
  22537. {
  22538. name: "The 500 Foot Femboy",
  22539. height: math.unit(500, "feet"),
  22540. default: true
  22541. },
  22542. {
  22543. name: "Megmacro",
  22544. height: math.unit(20, "miles")
  22545. },
  22546. ]
  22547. ))
  22548. characterMakers.push(() => makeCharacter(
  22549. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  22550. {
  22551. front: {
  22552. height: math.unit(8 + 2 / 12, "feet"),
  22553. weight: math.unit(275, "lb"),
  22554. name: "Front",
  22555. image: {
  22556. source: "./media/characters/draganta/front.svg",
  22557. extra: 1177 / 1135,
  22558. bottom: 33.46 / 1212.1
  22559. }
  22560. },
  22561. },
  22562. [
  22563. {
  22564. name: "Normal",
  22565. height: math.unit(8 + 6 / 12, "feet"),
  22566. default: true
  22567. },
  22568. {
  22569. name: "Macro",
  22570. height: math.unit(150, "feet")
  22571. },
  22572. {
  22573. name: "Megamacro",
  22574. height: math.unit(1000, "miles")
  22575. },
  22576. ]
  22577. ))
  22578. characterMakers.push(() => makeCharacter(
  22579. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  22580. {
  22581. front: {
  22582. height: math.unit(1.72, "m"),
  22583. weight: math.unit(80, "lb"),
  22584. name: "Front",
  22585. image: {
  22586. source: "./media/characters/voski/front.svg",
  22587. extra: 2076.22 / 2022.4,
  22588. bottom: 102.7 / 2177.3866
  22589. }
  22590. },
  22591. frontNsfw: {
  22592. height: math.unit(1.72, "m"),
  22593. weight: math.unit(80, "lb"),
  22594. name: "Front (NSFW)",
  22595. image: {
  22596. source: "./media/characters/voski/front-nsfw.svg",
  22597. extra: 2076.22 / 2022.4,
  22598. bottom: 102.7 / 2177.3866
  22599. }
  22600. },
  22601. back: {
  22602. height: math.unit(1.72, "m"),
  22603. weight: math.unit(80, "lb"),
  22604. name: "Back",
  22605. image: {
  22606. source: "./media/characters/voski/back.svg",
  22607. extra: 2104 / 2051,
  22608. bottom: 10.45 / 2113.63
  22609. }
  22610. },
  22611. },
  22612. [
  22613. {
  22614. name: "Normal",
  22615. height: math.unit(1.72, "m")
  22616. },
  22617. {
  22618. name: "Macro",
  22619. height: math.unit(55, "m"),
  22620. default: true
  22621. },
  22622. {
  22623. name: "Macro+",
  22624. height: math.unit(300, "m")
  22625. },
  22626. {
  22627. name: "Macro++",
  22628. height: math.unit(700, "m")
  22629. },
  22630. {
  22631. name: "Macro+++",
  22632. height: math.unit(4500, "m")
  22633. },
  22634. {
  22635. name: "Macro++++",
  22636. height: math.unit(45, "km")
  22637. },
  22638. {
  22639. name: "Macro+++++",
  22640. height: math.unit(1220, "km")
  22641. },
  22642. ]
  22643. ))
  22644. characterMakers.push(() => makeCharacter(
  22645. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  22646. {
  22647. front: {
  22648. height: math.unit(2.3, "m"),
  22649. weight: math.unit(304, "kg"),
  22650. name: "Front",
  22651. image: {
  22652. source: "./media/characters/icowom-lee/front.svg",
  22653. extra: 985 / 955,
  22654. bottom: 25.4 / 1012
  22655. }
  22656. },
  22657. fronttentacles: {
  22658. height: math.unit(2.3, "m"),
  22659. weight: math.unit(304, "kg"),
  22660. name: "Front-tentacles",
  22661. image: {
  22662. source: "./media/characters/icowom-lee/front-tentacles.svg",
  22663. extra: 985 / 955,
  22664. bottom: 25.4 / 1012
  22665. }
  22666. },
  22667. back: {
  22668. height: math.unit(2.3, "m"),
  22669. weight: math.unit(304, "kg"),
  22670. name: "Back",
  22671. image: {
  22672. source: "./media/characters/icowom-lee/back.svg",
  22673. extra: 975 / 954,
  22674. bottom: 9.5 / 985
  22675. }
  22676. },
  22677. backtentacles: {
  22678. height: math.unit(2.3, "m"),
  22679. weight: math.unit(304, "kg"),
  22680. name: "Back-tentacles",
  22681. image: {
  22682. source: "./media/characters/icowom-lee/back-tentacles.svg",
  22683. extra: 975 / 954,
  22684. bottom: 9.5 / 985
  22685. }
  22686. },
  22687. frontDressed: {
  22688. height: math.unit(2.3, "m"),
  22689. weight: math.unit(304, "kg"),
  22690. name: "Front (Dressed)",
  22691. image: {
  22692. source: "./media/characters/icowom-lee/front-dressed.svg",
  22693. extra: 3076 / 2933,
  22694. bottom: 51.4 / 3125.1889
  22695. }
  22696. },
  22697. rump: {
  22698. height: math.unit(0.776, "meters"),
  22699. name: "Rump",
  22700. image: {
  22701. source: "./media/characters/icowom-lee/rump.svg"
  22702. }
  22703. },
  22704. genitals: {
  22705. height: math.unit(0.78, "meters"),
  22706. name: "Genitals",
  22707. image: {
  22708. source: "./media/characters/icowom-lee/genitals.svg"
  22709. }
  22710. },
  22711. },
  22712. [
  22713. {
  22714. name: "Normal",
  22715. height: math.unit(2.3, "meters"),
  22716. default: true
  22717. },
  22718. {
  22719. name: "Macro",
  22720. height: math.unit(94, "meters"),
  22721. default: true
  22722. },
  22723. ]
  22724. ))
  22725. characterMakers.push(() => makeCharacter(
  22726. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  22727. {
  22728. front: {
  22729. height: math.unit(22, "meters"),
  22730. weight: math.unit(21000, "kg"),
  22731. name: "Front",
  22732. image: {
  22733. source: "./media/characters/shock-diamond/front.svg",
  22734. extra: 2204 / 2053,
  22735. bottom: 65 / 2239.47
  22736. }
  22737. },
  22738. frontNude: {
  22739. height: math.unit(22, "meters"),
  22740. weight: math.unit(21000, "kg"),
  22741. name: "Front (Nude)",
  22742. image: {
  22743. source: "./media/characters/shock-diamond/front-nude.svg",
  22744. extra: 2514 / 2285,
  22745. bottom: 13 / 2527.56
  22746. }
  22747. },
  22748. },
  22749. [
  22750. {
  22751. name: "Normal",
  22752. height: math.unit(3, "meters")
  22753. },
  22754. {
  22755. name: "Macro",
  22756. height: math.unit(22, "meters"),
  22757. default: true
  22758. },
  22759. ]
  22760. ))
  22761. characterMakers.push(() => makeCharacter(
  22762. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  22763. {
  22764. front: {
  22765. height: math.unit(5 + 4 / 12, "feet"),
  22766. weight: math.unit(120, "lb"),
  22767. name: "Front",
  22768. image: {
  22769. source: "./media/characters/rory/front.svg",
  22770. extra: 1318/1241,
  22771. bottom: 42/1360
  22772. }
  22773. },
  22774. back: {
  22775. height: math.unit(5 + 4 / 12, "feet"),
  22776. weight: math.unit(120, "lb"),
  22777. name: "Back",
  22778. image: {
  22779. source: "./media/characters/rory/back.svg",
  22780. extra: 1318/1241,
  22781. bottom: 42/1360
  22782. }
  22783. },
  22784. butt: {
  22785. height: math.unit(1.74, "feet"),
  22786. name: "Butt",
  22787. image: {
  22788. source: "./media/characters/rory/butt.svg"
  22789. }
  22790. },
  22791. dick: {
  22792. height: math.unit(1.02, "feet"),
  22793. name: "Dick",
  22794. image: {
  22795. source: "./media/characters/rory/dick.svg"
  22796. }
  22797. },
  22798. paws: {
  22799. height: math.unit(1, "feet"),
  22800. name: "Paws",
  22801. image: {
  22802. source: "./media/characters/rory/paws.svg"
  22803. }
  22804. },
  22805. frontAlt: {
  22806. height: math.unit(5 + 4 / 12, "feet"),
  22807. weight: math.unit(120, "lb"),
  22808. name: "Front (Alt)",
  22809. image: {
  22810. source: "./media/characters/rory/front-alt.svg",
  22811. extra: 589 / 556,
  22812. bottom: 45.7 / 635.76
  22813. }
  22814. },
  22815. frontAltNude: {
  22816. height: math.unit(5 + 4 / 12, "feet"),
  22817. weight: math.unit(120, "lb"),
  22818. name: "Front (Alt, Nude)",
  22819. image: {
  22820. source: "./media/characters/rory/front-alt-nude.svg",
  22821. extra: 589 / 556,
  22822. bottom: 45.7 / 635.76
  22823. }
  22824. },
  22825. side: {
  22826. height: math.unit(5 + 4 / 12, "feet"),
  22827. weight: math.unit(120, "lb"),
  22828. name: "Side",
  22829. image: {
  22830. source: "./media/characters/rory/side.svg",
  22831. extra: 597 / 564,
  22832. bottom: 55 / 653
  22833. }
  22834. },
  22835. backAlt: {
  22836. height: math.unit(5 + 4 / 12, "feet"),
  22837. weight: math.unit(120, "lb"),
  22838. name: "Back (Alt)",
  22839. image: {
  22840. source: "./media/characters/rory/back-alt.svg",
  22841. extra: 620 / 585,
  22842. bottom: 8.86 / 630.43
  22843. }
  22844. },
  22845. dickAlt: {
  22846. height: math.unit(0.86, "feet"),
  22847. name: "Dick (Alt)",
  22848. image: {
  22849. source: "./media/characters/rory/dick-alt.svg"
  22850. }
  22851. },
  22852. },
  22853. [
  22854. {
  22855. name: "Normal",
  22856. height: math.unit(5 + 4 / 12, "feet"),
  22857. default: true
  22858. },
  22859. {
  22860. name: "Macro",
  22861. height: math.unit(100, "feet")
  22862. },
  22863. {
  22864. name: "Macro+",
  22865. height: math.unit(140, "feet")
  22866. },
  22867. {
  22868. name: "Macro++",
  22869. height: math.unit(300, "feet")
  22870. },
  22871. ]
  22872. ))
  22873. characterMakers.push(() => makeCharacter(
  22874. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  22875. {
  22876. front: {
  22877. height: math.unit(5 + 9 / 12, "feet"),
  22878. weight: math.unit(190, "lb"),
  22879. name: "Front",
  22880. image: {
  22881. source: "./media/characters/sprisk/front.svg",
  22882. extra: 1225 / 1180,
  22883. bottom: 42.7 / 1266.4
  22884. }
  22885. },
  22886. frontNsfw: {
  22887. height: math.unit(5 + 9 / 12, "feet"),
  22888. weight: math.unit(190, "lb"),
  22889. name: "Front (NSFW)",
  22890. image: {
  22891. source: "./media/characters/sprisk/front-nsfw.svg",
  22892. extra: 1225 / 1180,
  22893. bottom: 42.7 / 1266.4
  22894. }
  22895. },
  22896. back: {
  22897. height: math.unit(5 + 9 / 12, "feet"),
  22898. weight: math.unit(190, "lb"),
  22899. name: "Back",
  22900. image: {
  22901. source: "./media/characters/sprisk/back.svg",
  22902. extra: 1247 / 1200,
  22903. bottom: 5.6 / 1253.04
  22904. }
  22905. },
  22906. },
  22907. [
  22908. {
  22909. name: "Tiny",
  22910. height: math.unit(2, "inches")
  22911. },
  22912. {
  22913. name: "Normal",
  22914. height: math.unit(5 + 9 / 12, "feet"),
  22915. default: true
  22916. },
  22917. {
  22918. name: "Mini Macro",
  22919. height: math.unit(18, "feet")
  22920. },
  22921. {
  22922. name: "Macro",
  22923. height: math.unit(100, "feet")
  22924. },
  22925. {
  22926. name: "MACRO",
  22927. height: math.unit(50, "miles")
  22928. },
  22929. {
  22930. name: "M A C R O",
  22931. height: math.unit(300, "miles")
  22932. },
  22933. ]
  22934. ))
  22935. characterMakers.push(() => makeCharacter(
  22936. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  22937. {
  22938. side: {
  22939. height: math.unit(15.6, "meters"),
  22940. weight: math.unit(700000, "kg"),
  22941. name: "Side",
  22942. image: {
  22943. source: "./media/characters/bunsen/side.svg",
  22944. extra: 1644 / 358
  22945. }
  22946. },
  22947. foot: {
  22948. height: math.unit(1.611 * 1644 / 358, "meter"),
  22949. name: "Foot",
  22950. image: {
  22951. source: "./media/characters/bunsen/foot.svg"
  22952. }
  22953. },
  22954. },
  22955. [
  22956. {
  22957. name: "Small",
  22958. height: math.unit(10, "feet")
  22959. },
  22960. {
  22961. name: "Normal",
  22962. height: math.unit(15.6, "meters"),
  22963. default: true
  22964. },
  22965. ]
  22966. ))
  22967. characterMakers.push(() => makeCharacter(
  22968. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  22969. {
  22970. front: {
  22971. height: math.unit(4 + 11 / 12, "feet"),
  22972. weight: math.unit(140, "lb"),
  22973. name: "Front",
  22974. image: {
  22975. source: "./media/characters/sesh/front.svg",
  22976. extra: 3420 / 3231,
  22977. bottom: 72 / 3949.5
  22978. }
  22979. },
  22980. },
  22981. [
  22982. {
  22983. name: "Normal",
  22984. height: math.unit(4 + 11 / 12, "feet")
  22985. },
  22986. {
  22987. name: "Grown",
  22988. height: math.unit(15, "feet"),
  22989. default: true
  22990. },
  22991. {
  22992. name: "Macro",
  22993. height: math.unit(1500, "feet")
  22994. },
  22995. {
  22996. name: "Megamacro",
  22997. height: math.unit(30, "miles")
  22998. },
  22999. {
  23000. name: "Continental",
  23001. height: math.unit(3000, "miles")
  23002. },
  23003. {
  23004. name: "Gravity Mass",
  23005. height: math.unit(300000, "miles")
  23006. },
  23007. {
  23008. name: "Planet Buster",
  23009. height: math.unit(30000000, "miles")
  23010. },
  23011. {
  23012. name: "Big",
  23013. height: math.unit(3000000000, "miles")
  23014. },
  23015. ]
  23016. ))
  23017. characterMakers.push(() => makeCharacter(
  23018. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  23019. {
  23020. front: {
  23021. height: math.unit(9, "feet"),
  23022. weight: math.unit(350, "lb"),
  23023. name: "Front",
  23024. image: {
  23025. source: "./media/characters/pepper/front.svg",
  23026. extra: 1448 / 1312,
  23027. bottom: 9.4 / 1457.88
  23028. }
  23029. },
  23030. back: {
  23031. height: math.unit(9, "feet"),
  23032. weight: math.unit(350, "lb"),
  23033. name: "Back",
  23034. image: {
  23035. source: "./media/characters/pepper/back.svg",
  23036. extra: 1423 / 1300,
  23037. bottom: 4.6 / 1429
  23038. }
  23039. },
  23040. maw: {
  23041. height: math.unit(0.932, "feet"),
  23042. name: "Maw",
  23043. image: {
  23044. source: "./media/characters/pepper/maw.svg"
  23045. }
  23046. },
  23047. },
  23048. [
  23049. {
  23050. name: "Normal",
  23051. height: math.unit(9, "feet"),
  23052. default: true
  23053. },
  23054. ]
  23055. ))
  23056. characterMakers.push(() => makeCharacter(
  23057. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  23058. {
  23059. front: {
  23060. height: math.unit(6, "feet"),
  23061. weight: math.unit(150, "lb"),
  23062. name: "Front",
  23063. image: {
  23064. source: "./media/characters/maelstrom/front.svg",
  23065. extra: 2100 / 1883,
  23066. bottom: 94 / 2196.7
  23067. }
  23068. },
  23069. },
  23070. [
  23071. {
  23072. name: "Less Kaiju",
  23073. height: math.unit(200, "feet")
  23074. },
  23075. {
  23076. name: "Kaiju",
  23077. height: math.unit(400, "feet"),
  23078. default: true
  23079. },
  23080. {
  23081. name: "Kaiju-er",
  23082. height: math.unit(600, "feet")
  23083. },
  23084. ]
  23085. ))
  23086. characterMakers.push(() => makeCharacter(
  23087. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  23088. {
  23089. front: {
  23090. height: math.unit(6 + 5 / 12, "feet"),
  23091. weight: math.unit(180, "lb"),
  23092. name: "Front",
  23093. image: {
  23094. source: "./media/characters/lexir/front.svg",
  23095. extra: 180 / 172,
  23096. bottom: 12 / 192
  23097. }
  23098. },
  23099. back: {
  23100. height: math.unit(6 + 5 / 12, "feet"),
  23101. weight: math.unit(180, "lb"),
  23102. name: "Back",
  23103. image: {
  23104. source: "./media/characters/lexir/back.svg",
  23105. extra: 183.84 / 175.5,
  23106. bottom: 3.1 / 187
  23107. }
  23108. },
  23109. },
  23110. [
  23111. {
  23112. name: "Very Smal",
  23113. height: math.unit(1, "nm")
  23114. },
  23115. {
  23116. name: "Normal",
  23117. height: math.unit(6 + 5 / 12, "feet"),
  23118. default: true
  23119. },
  23120. {
  23121. name: "Macro",
  23122. height: math.unit(1, "mile")
  23123. },
  23124. {
  23125. name: "Megamacro",
  23126. height: math.unit(50, "miles")
  23127. },
  23128. ]
  23129. ))
  23130. characterMakers.push(() => makeCharacter(
  23131. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  23132. {
  23133. front: {
  23134. height: math.unit(1.5, "meters"),
  23135. weight: math.unit(100, "lb"),
  23136. name: "Front",
  23137. image: {
  23138. source: "./media/characters/maksio/front.svg",
  23139. extra: 1549 / 1531,
  23140. bottom: 123.7 / 1674.5429
  23141. }
  23142. },
  23143. back: {
  23144. height: math.unit(1.5, "meters"),
  23145. weight: math.unit(100, "lb"),
  23146. name: "Back",
  23147. image: {
  23148. source: "./media/characters/maksio/back.svg",
  23149. extra: 1541 / 1509,
  23150. bottom: 97 / 1639
  23151. }
  23152. },
  23153. hand: {
  23154. height: math.unit(0.621, "feet"),
  23155. name: "Hand",
  23156. image: {
  23157. source: "./media/characters/maksio/hand.svg"
  23158. }
  23159. },
  23160. foot: {
  23161. height: math.unit(1.611, "feet"),
  23162. name: "Foot",
  23163. image: {
  23164. source: "./media/characters/maksio/foot.svg"
  23165. }
  23166. },
  23167. },
  23168. [
  23169. {
  23170. name: "Shrunken",
  23171. height: math.unit(10, "cm")
  23172. },
  23173. {
  23174. name: "Normal",
  23175. height: math.unit(150, "cm"),
  23176. default: true
  23177. },
  23178. ]
  23179. ))
  23180. characterMakers.push(() => makeCharacter(
  23181. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  23182. {
  23183. front: {
  23184. height: math.unit(100, "feet"),
  23185. name: "Front",
  23186. image: {
  23187. source: "./media/characters/erza-bear/front.svg",
  23188. extra: 2449 / 2390,
  23189. bottom: 46 / 2494
  23190. }
  23191. },
  23192. back: {
  23193. height: math.unit(100, "feet"),
  23194. name: "Back",
  23195. image: {
  23196. source: "./media/characters/erza-bear/back.svg",
  23197. extra: 2489 / 2430,
  23198. bottom: 85.4 / 2480
  23199. }
  23200. },
  23201. tail: {
  23202. height: math.unit(42, "feet"),
  23203. name: "Tail",
  23204. image: {
  23205. source: "./media/characters/erza-bear/tail.svg"
  23206. }
  23207. },
  23208. tongue: {
  23209. height: math.unit(8, "feet"),
  23210. name: "Tongue",
  23211. image: {
  23212. source: "./media/characters/erza-bear/tongue.svg"
  23213. }
  23214. },
  23215. dick: {
  23216. height: math.unit(10.5, "feet"),
  23217. name: "Dick",
  23218. image: {
  23219. source: "./media/characters/erza-bear/dick.svg"
  23220. }
  23221. },
  23222. dickVertical: {
  23223. height: math.unit(16.9, "feet"),
  23224. name: "Dick (Vertical)",
  23225. image: {
  23226. source: "./media/characters/erza-bear/dick-vertical.svg"
  23227. }
  23228. },
  23229. },
  23230. [
  23231. {
  23232. name: "Macro",
  23233. height: math.unit(100, "feet"),
  23234. default: true
  23235. },
  23236. ]
  23237. ))
  23238. characterMakers.push(() => makeCharacter(
  23239. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  23240. {
  23241. front: {
  23242. height: math.unit(172, "cm"),
  23243. weight: math.unit(73, "kg"),
  23244. name: "Front",
  23245. image: {
  23246. source: "./media/characters/violet-flor/front.svg",
  23247. extra: 1530 / 1442,
  23248. bottom: 61.9 / 1588.8
  23249. }
  23250. },
  23251. back: {
  23252. height: math.unit(180, "cm"),
  23253. weight: math.unit(73, "kg"),
  23254. name: "Back",
  23255. image: {
  23256. source: "./media/characters/violet-flor/back.svg",
  23257. extra: 1692 / 1630,
  23258. bottom: 20 / 1712
  23259. }
  23260. },
  23261. },
  23262. [
  23263. {
  23264. name: "Normal",
  23265. height: math.unit(172, "cm"),
  23266. default: true
  23267. },
  23268. ]
  23269. ))
  23270. characterMakers.push(() => makeCharacter(
  23271. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  23272. {
  23273. front: {
  23274. height: math.unit(6, "feet"),
  23275. weight: math.unit(220, "lb"),
  23276. name: "Front",
  23277. image: {
  23278. source: "./media/characters/lynn-rhea/front.svg",
  23279. extra: 310 / 273
  23280. }
  23281. },
  23282. back: {
  23283. height: math.unit(6, "feet"),
  23284. weight: math.unit(220, "lb"),
  23285. name: "Back",
  23286. image: {
  23287. source: "./media/characters/lynn-rhea/back.svg",
  23288. extra: 310 / 273
  23289. }
  23290. },
  23291. dicks: {
  23292. height: math.unit(0.9, "feet"),
  23293. name: "Dicks",
  23294. image: {
  23295. source: "./media/characters/lynn-rhea/dicks.svg"
  23296. }
  23297. },
  23298. slit: {
  23299. height: math.unit(0.4, "feet"),
  23300. name: "Slit",
  23301. image: {
  23302. source: "./media/characters/lynn-rhea/slit.svg"
  23303. }
  23304. },
  23305. },
  23306. [
  23307. {
  23308. name: "Micro",
  23309. height: math.unit(1, "inch")
  23310. },
  23311. {
  23312. name: "Macro",
  23313. height: math.unit(60, "feet"),
  23314. default: true
  23315. },
  23316. {
  23317. name: "Megamacro",
  23318. height: math.unit(2, "miles")
  23319. },
  23320. {
  23321. name: "Gigamacro",
  23322. height: math.unit(3, "earths")
  23323. },
  23324. {
  23325. name: "Galactic",
  23326. height: math.unit(0.8, "galaxies")
  23327. },
  23328. ]
  23329. ))
  23330. characterMakers.push(() => makeCharacter(
  23331. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  23332. {
  23333. front: {
  23334. height: math.unit(1600, "feet"),
  23335. weight: math.unit(85758785169, "kg"),
  23336. name: "Front",
  23337. image: {
  23338. source: "./media/characters/valathos/front.svg",
  23339. extra: 1451 / 1339
  23340. }
  23341. },
  23342. },
  23343. [
  23344. {
  23345. name: "Macro",
  23346. height: math.unit(1600, "feet"),
  23347. default: true
  23348. },
  23349. ]
  23350. ))
  23351. characterMakers.push(() => makeCharacter(
  23352. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  23353. {
  23354. front: {
  23355. height: math.unit(7 + 5 / 12, "feet"),
  23356. weight: math.unit(300, "lb"),
  23357. name: "Front",
  23358. image: {
  23359. source: "./media/characters/azula/front.svg",
  23360. extra: 3208 / 2880,
  23361. bottom: 80.2 / 3277
  23362. }
  23363. },
  23364. back: {
  23365. height: math.unit(7 + 5 / 12, "feet"),
  23366. weight: math.unit(300, "lb"),
  23367. name: "Back",
  23368. image: {
  23369. source: "./media/characters/azula/back.svg",
  23370. extra: 3169 / 2822,
  23371. bottom: 150.6 / 3321
  23372. }
  23373. },
  23374. },
  23375. [
  23376. {
  23377. name: "Normal",
  23378. height: math.unit(7 + 5 / 12, "feet"),
  23379. default: true
  23380. },
  23381. {
  23382. name: "Big",
  23383. height: math.unit(20, "feet")
  23384. },
  23385. ]
  23386. ))
  23387. characterMakers.push(() => makeCharacter(
  23388. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  23389. {
  23390. front: {
  23391. height: math.unit(5 + 1 / 12, "feet"),
  23392. weight: math.unit(110, "lb"),
  23393. name: "Front",
  23394. image: {
  23395. source: "./media/characters/rupert/front.svg",
  23396. extra: 1549 / 1495,
  23397. bottom: 54.2 / 1604.4
  23398. }
  23399. },
  23400. },
  23401. [
  23402. {
  23403. name: "Normal",
  23404. height: math.unit(5 + 1 / 12, "feet"),
  23405. default: true
  23406. },
  23407. ]
  23408. ))
  23409. characterMakers.push(() => makeCharacter(
  23410. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  23411. {
  23412. front: {
  23413. height: math.unit(8 + 4 / 12, "feet"),
  23414. weight: math.unit(350, "lb"),
  23415. name: "Front",
  23416. image: {
  23417. source: "./media/characters/sheera-castellar/front.svg",
  23418. extra: 1957 / 1894,
  23419. bottom: 26.97 / 1975.017
  23420. }
  23421. },
  23422. side: {
  23423. height: math.unit(8 + 4 / 12, "feet"),
  23424. weight: math.unit(350, "lb"),
  23425. name: "Side",
  23426. image: {
  23427. source: "./media/characters/sheera-castellar/side.svg",
  23428. extra: 1957 / 1894
  23429. }
  23430. },
  23431. back: {
  23432. height: math.unit(8 + 4 / 12, "feet"),
  23433. weight: math.unit(350, "lb"),
  23434. name: "Back",
  23435. image: {
  23436. source: "./media/characters/sheera-castellar/back.svg",
  23437. extra: 1957 / 1894
  23438. }
  23439. },
  23440. angled: {
  23441. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  23442. weight: math.unit(350, "lb"),
  23443. name: "Angled",
  23444. image: {
  23445. source: "./media/characters/sheera-castellar/angled.svg",
  23446. extra: 1807 / 1707,
  23447. bottom: 68 / 1875
  23448. }
  23449. },
  23450. genitals: {
  23451. height: math.unit(2.2, "feet"),
  23452. name: "Genitals",
  23453. image: {
  23454. source: "./media/characters/sheera-castellar/genitals.svg"
  23455. }
  23456. },
  23457. taur: {
  23458. height: math.unit(10 + 6/12, "feet"),
  23459. name: "Taur",
  23460. image: {
  23461. source: "./media/characters/sheera-castellar/taur.svg",
  23462. extra: 2017/1909,
  23463. bottom: 185/2202
  23464. }
  23465. },
  23466. },
  23467. [
  23468. {
  23469. name: "Normal",
  23470. height: math.unit(8 + 4 / 12, "feet")
  23471. },
  23472. {
  23473. name: "Macro",
  23474. height: math.unit(150, "feet"),
  23475. default: true
  23476. },
  23477. {
  23478. name: "Macro+",
  23479. height: math.unit(800, "feet")
  23480. },
  23481. ]
  23482. ))
  23483. characterMakers.push(() => makeCharacter(
  23484. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  23485. {
  23486. front: {
  23487. height: math.unit(6, "feet"),
  23488. weight: math.unit(150, "lb"),
  23489. name: "Front",
  23490. image: {
  23491. source: "./media/characters/jaipur/front.svg",
  23492. extra: 3860 / 3731,
  23493. bottom: 287 / 4140
  23494. }
  23495. },
  23496. back: {
  23497. height: math.unit(6, "feet"),
  23498. weight: math.unit(150, "lb"),
  23499. name: "Back",
  23500. image: {
  23501. source: "./media/characters/jaipur/back.svg",
  23502. extra: 4060 / 3930,
  23503. bottom: 151 / 4200
  23504. }
  23505. },
  23506. },
  23507. [
  23508. {
  23509. name: "Normal",
  23510. height: math.unit(1.85, "meters"),
  23511. default: true
  23512. },
  23513. {
  23514. name: "Macro",
  23515. height: math.unit(150, "meters")
  23516. },
  23517. {
  23518. name: "Macro+",
  23519. height: math.unit(0.5, "miles")
  23520. },
  23521. {
  23522. name: "Macro++",
  23523. height: math.unit(2.5, "miles")
  23524. },
  23525. {
  23526. name: "Macro+++",
  23527. height: math.unit(12, "miles")
  23528. },
  23529. {
  23530. name: "Macro++++",
  23531. height: math.unit(120, "miles")
  23532. },
  23533. {
  23534. name: "Macro+++++",
  23535. height: math.unit(1200, "miles")
  23536. },
  23537. ]
  23538. ))
  23539. characterMakers.push(() => makeCharacter(
  23540. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  23541. {
  23542. front: {
  23543. height: math.unit(6, "feet"),
  23544. weight: math.unit(150, "lb"),
  23545. name: "Front",
  23546. image: {
  23547. source: "./media/characters/sheila-wolf/front.svg",
  23548. extra: 1931 / 1808,
  23549. bottom: 29.5 / 1960
  23550. }
  23551. },
  23552. dick: {
  23553. height: math.unit(1.464, "feet"),
  23554. name: "Dick",
  23555. image: {
  23556. source: "./media/characters/sheila-wolf/dick.svg"
  23557. }
  23558. },
  23559. muzzle: {
  23560. height: math.unit(0.513, "feet"),
  23561. name: "Muzzle",
  23562. image: {
  23563. source: "./media/characters/sheila-wolf/muzzle.svg"
  23564. }
  23565. },
  23566. },
  23567. [
  23568. {
  23569. name: "Macro",
  23570. height: math.unit(70, "feet"),
  23571. default: true
  23572. },
  23573. ]
  23574. ))
  23575. characterMakers.push(() => makeCharacter(
  23576. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  23577. {
  23578. front: {
  23579. height: math.unit(32, "meters"),
  23580. weight: math.unit(300000, "kg"),
  23581. name: "Front",
  23582. image: {
  23583. source: "./media/characters/almor/front.svg",
  23584. extra: 1408 / 1322,
  23585. bottom: 94.6 / 1506.5
  23586. }
  23587. },
  23588. },
  23589. [
  23590. {
  23591. name: "Macro",
  23592. height: math.unit(32, "meters"),
  23593. default: true
  23594. },
  23595. ]
  23596. ))
  23597. characterMakers.push(() => makeCharacter(
  23598. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  23599. {
  23600. front: {
  23601. height: math.unit(7, "feet"),
  23602. weight: math.unit(200, "lb"),
  23603. name: "Front",
  23604. image: {
  23605. source: "./media/characters/silver/front.svg",
  23606. extra: 472.1 / 450.5,
  23607. bottom: 26.5 / 499.424
  23608. }
  23609. },
  23610. },
  23611. [
  23612. {
  23613. name: "Normal",
  23614. height: math.unit(7, "feet"),
  23615. default: true
  23616. },
  23617. {
  23618. name: "Macro",
  23619. height: math.unit(800, "feet")
  23620. },
  23621. {
  23622. name: "Megamacro",
  23623. height: math.unit(250, "miles")
  23624. },
  23625. ]
  23626. ))
  23627. characterMakers.push(() => makeCharacter(
  23628. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  23629. {
  23630. front: {
  23631. height: math.unit(6, "feet"),
  23632. weight: math.unit(150, "lb"),
  23633. name: "Front",
  23634. image: {
  23635. source: "./media/characters/pliskin/front.svg",
  23636. extra: 1469 / 1359,
  23637. bottom: 70 / 1540
  23638. }
  23639. },
  23640. },
  23641. [
  23642. {
  23643. name: "Micro",
  23644. height: math.unit(3, "inches")
  23645. },
  23646. {
  23647. name: "Normal",
  23648. height: math.unit(5 + 11 / 12, "feet"),
  23649. default: true
  23650. },
  23651. {
  23652. name: "Macro",
  23653. height: math.unit(120, "feet")
  23654. },
  23655. ]
  23656. ))
  23657. characterMakers.push(() => makeCharacter(
  23658. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  23659. {
  23660. front: {
  23661. height: math.unit(6, "feet"),
  23662. weight: math.unit(150, "lb"),
  23663. name: "Front",
  23664. image: {
  23665. source: "./media/characters/sammy/front.svg",
  23666. extra: 1193 / 1089,
  23667. bottom: 30.5 / 1226
  23668. }
  23669. },
  23670. },
  23671. [
  23672. {
  23673. name: "Macro",
  23674. height: math.unit(1700, "feet"),
  23675. default: true
  23676. },
  23677. {
  23678. name: "Examacro",
  23679. height: math.unit(2.5e9, "lightyears")
  23680. },
  23681. ]
  23682. ))
  23683. characterMakers.push(() => makeCharacter(
  23684. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  23685. {
  23686. front: {
  23687. height: math.unit(21, "meters"),
  23688. weight: math.unit(12, "tonnes"),
  23689. name: "Front",
  23690. image: {
  23691. source: "./media/characters/kuru/front.svg",
  23692. extra: 4301 / 3785,
  23693. bottom: 371.3 / 4691
  23694. }
  23695. },
  23696. },
  23697. [
  23698. {
  23699. name: "Macro",
  23700. height: math.unit(21, "meters"),
  23701. default: true
  23702. },
  23703. ]
  23704. ))
  23705. characterMakers.push(() => makeCharacter(
  23706. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  23707. {
  23708. front: {
  23709. height: math.unit(23, "meters"),
  23710. weight: math.unit(12.2, "tonnes"),
  23711. name: "Front",
  23712. image: {
  23713. source: "./media/characters/rakka/front.svg",
  23714. extra: 4670 / 4169,
  23715. bottom: 301 / 4968.7
  23716. }
  23717. },
  23718. },
  23719. [
  23720. {
  23721. name: "Macro",
  23722. height: math.unit(23, "meters"),
  23723. default: true
  23724. },
  23725. ]
  23726. ))
  23727. characterMakers.push(() => makeCharacter(
  23728. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  23729. {
  23730. front: {
  23731. height: math.unit(6, "feet"),
  23732. weight: math.unit(150, "lb"),
  23733. name: "Front",
  23734. image: {
  23735. source: "./media/characters/rhys-feline/front.svg",
  23736. extra: 2488 / 2308,
  23737. bottom: 35.67 / 2519.19
  23738. }
  23739. },
  23740. },
  23741. [
  23742. {
  23743. name: "Really Small",
  23744. height: math.unit(1, "nm")
  23745. },
  23746. {
  23747. name: "Micro",
  23748. height: math.unit(4, "inches")
  23749. },
  23750. {
  23751. name: "Normal",
  23752. height: math.unit(4 + 10 / 12, "feet"),
  23753. default: true
  23754. },
  23755. {
  23756. name: "Macro",
  23757. height: math.unit(100, "feet")
  23758. },
  23759. {
  23760. name: "Megamacto",
  23761. height: math.unit(50, "miles")
  23762. },
  23763. ]
  23764. ))
  23765. characterMakers.push(() => makeCharacter(
  23766. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  23767. {
  23768. side: {
  23769. height: math.unit(30, "feet"),
  23770. weight: math.unit(35000, "kg"),
  23771. name: "Side",
  23772. image: {
  23773. source: "./media/characters/alydar/side.svg",
  23774. extra: 234 / 222,
  23775. bottom: 6.5 / 241
  23776. }
  23777. },
  23778. front: {
  23779. height: math.unit(30, "feet"),
  23780. weight: math.unit(35000, "kg"),
  23781. name: "Front",
  23782. image: {
  23783. source: "./media/characters/alydar/front.svg",
  23784. extra: 223.37 / 210.2,
  23785. bottom: 22.3 / 246.76
  23786. }
  23787. },
  23788. top: {
  23789. height: math.unit(64.54, "feet"),
  23790. weight: math.unit(35000, "kg"),
  23791. name: "Top",
  23792. image: {
  23793. source: "./media/characters/alydar/top.svg"
  23794. }
  23795. },
  23796. anthro: {
  23797. height: math.unit(30, "feet"),
  23798. weight: math.unit(9000, "kg"),
  23799. name: "Anthro",
  23800. image: {
  23801. source: "./media/characters/alydar/anthro.svg",
  23802. extra: 432 / 421,
  23803. bottom: 7.18 / 440
  23804. }
  23805. },
  23806. maw: {
  23807. height: math.unit(11.693, "feet"),
  23808. name: "Maw",
  23809. image: {
  23810. source: "./media/characters/alydar/maw.svg"
  23811. }
  23812. },
  23813. head: {
  23814. height: math.unit(11.693, "feet"),
  23815. name: "Head",
  23816. image: {
  23817. source: "./media/characters/alydar/head.svg"
  23818. }
  23819. },
  23820. headAlt: {
  23821. height: math.unit(12.861, "feet"),
  23822. name: "Head (Alt)",
  23823. image: {
  23824. source: "./media/characters/alydar/head-alt.svg"
  23825. }
  23826. },
  23827. wing: {
  23828. height: math.unit(20.712, "feet"),
  23829. name: "Wing",
  23830. image: {
  23831. source: "./media/characters/alydar/wing.svg"
  23832. }
  23833. },
  23834. wingFeather: {
  23835. height: math.unit(9.662, "feet"),
  23836. name: "Wing Feather",
  23837. image: {
  23838. source: "./media/characters/alydar/wing-feather.svg"
  23839. }
  23840. },
  23841. countourFeather: {
  23842. height: math.unit(4.154, "feet"),
  23843. name: "Contour Feather",
  23844. image: {
  23845. source: "./media/characters/alydar/contour-feather.svg"
  23846. }
  23847. },
  23848. },
  23849. [
  23850. {
  23851. name: "Diplomatic",
  23852. height: math.unit(13, "feet"),
  23853. default: true
  23854. },
  23855. {
  23856. name: "Small",
  23857. height: math.unit(30, "feet")
  23858. },
  23859. {
  23860. name: "Normal",
  23861. height: math.unit(95, "feet"),
  23862. default: true
  23863. },
  23864. {
  23865. name: "Large",
  23866. height: math.unit(285, "feet")
  23867. },
  23868. {
  23869. name: "Incomprehensible",
  23870. height: math.unit(450, "megameters")
  23871. },
  23872. ]
  23873. ))
  23874. characterMakers.push(() => makeCharacter(
  23875. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  23876. {
  23877. side: {
  23878. height: math.unit(11, "feet"),
  23879. weight: math.unit(1750, "kg"),
  23880. name: "Side",
  23881. image: {
  23882. source: "./media/characters/selicia/side.svg",
  23883. extra: 440 / 396,
  23884. bottom: 24.8 / 465.979
  23885. }
  23886. },
  23887. maw: {
  23888. height: math.unit(4.665, "feet"),
  23889. name: "Maw",
  23890. image: {
  23891. source: "./media/characters/selicia/maw.svg"
  23892. }
  23893. },
  23894. },
  23895. [
  23896. {
  23897. name: "Normal",
  23898. height: math.unit(11, "feet"),
  23899. default: true
  23900. },
  23901. ]
  23902. ))
  23903. characterMakers.push(() => makeCharacter(
  23904. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  23905. {
  23906. side: {
  23907. height: math.unit(2 + 6 / 12, "feet"),
  23908. weight: math.unit(30, "lb"),
  23909. name: "Side",
  23910. image: {
  23911. source: "./media/characters/layla/side.svg",
  23912. extra: 244 / 188,
  23913. bottom: 18.2 / 262.1
  23914. }
  23915. },
  23916. back: {
  23917. height: math.unit(2 + 6 / 12, "feet"),
  23918. weight: math.unit(30, "lb"),
  23919. name: "Back",
  23920. image: {
  23921. source: "./media/characters/layla/back.svg",
  23922. extra: 308 / 241.5,
  23923. bottom: 8.9 / 316.8
  23924. }
  23925. },
  23926. cumming: {
  23927. height: math.unit(2 + 6 / 12, "feet"),
  23928. weight: math.unit(30, "lb"),
  23929. name: "Cumming",
  23930. image: {
  23931. source: "./media/characters/layla/cumming.svg",
  23932. extra: 342 / 279,
  23933. bottom: 595 / 938
  23934. }
  23935. },
  23936. dickFlaccid: {
  23937. height: math.unit(2.595, "feet"),
  23938. name: "Flaccid Genitals",
  23939. image: {
  23940. source: "./media/characters/layla/dick-flaccid.svg"
  23941. }
  23942. },
  23943. dickErect: {
  23944. height: math.unit(2.359, "feet"),
  23945. name: "Erect Genitals",
  23946. image: {
  23947. source: "./media/characters/layla/dick-erect.svg"
  23948. }
  23949. },
  23950. dragon: {
  23951. height: math.unit(40, "feet"),
  23952. name: "Dragon",
  23953. image: {
  23954. source: "./media/characters/layla/dragon.svg",
  23955. extra: 610/535,
  23956. bottom: 367/977
  23957. }
  23958. },
  23959. taur: {
  23960. height: math.unit(30, "feet"),
  23961. name: "Taur",
  23962. image: {
  23963. source: "./media/characters/layla/taur.svg",
  23964. extra: 1268/1199,
  23965. bottom: 112/1380
  23966. }
  23967. },
  23968. },
  23969. [
  23970. {
  23971. name: "Micro",
  23972. height: math.unit(1, "inch")
  23973. },
  23974. {
  23975. name: "Small",
  23976. height: math.unit(1, "foot")
  23977. },
  23978. {
  23979. name: "Normal",
  23980. height: math.unit(2 + 6 / 12, "feet"),
  23981. default: true
  23982. },
  23983. {
  23984. name: "Macro",
  23985. height: math.unit(200, "feet")
  23986. },
  23987. {
  23988. name: "Megamacro",
  23989. height: math.unit(1000, "miles")
  23990. },
  23991. {
  23992. name: "Planetary",
  23993. height: math.unit(8000, "miles")
  23994. },
  23995. {
  23996. name: "True Layla",
  23997. height: math.unit(200000 * 7, "multiverses")
  23998. },
  23999. ]
  24000. ))
  24001. characterMakers.push(() => makeCharacter(
  24002. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  24003. {
  24004. back: {
  24005. height: math.unit(10.5, "feet"),
  24006. weight: math.unit(800, "lb"),
  24007. name: "Back",
  24008. image: {
  24009. source: "./media/characters/knox/back.svg",
  24010. extra: 1486 / 1089,
  24011. bottom: 107 / 1601.4
  24012. }
  24013. },
  24014. side: {
  24015. height: math.unit(10.5, "feet"),
  24016. weight: math.unit(800, "lb"),
  24017. name: "Side",
  24018. image: {
  24019. source: "./media/characters/knox/side.svg",
  24020. extra: 244 / 218,
  24021. bottom: 14 / 260
  24022. }
  24023. },
  24024. },
  24025. [
  24026. {
  24027. name: "Compact",
  24028. height: math.unit(10.5, "feet"),
  24029. default: true
  24030. },
  24031. {
  24032. name: "Dynamax",
  24033. height: math.unit(210, "feet")
  24034. },
  24035. {
  24036. name: "Full Macro",
  24037. height: math.unit(850, "feet")
  24038. },
  24039. ]
  24040. ))
  24041. characterMakers.push(() => makeCharacter(
  24042. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  24043. {
  24044. front: {
  24045. height: math.unit(28, "feet"),
  24046. weight: math.unit(10500, "lb"),
  24047. name: "Front",
  24048. image: {
  24049. source: "./media/characters/kayda/front.svg",
  24050. extra: 1536 / 1428,
  24051. bottom: 68.7 / 1603
  24052. }
  24053. },
  24054. back: {
  24055. height: math.unit(28, "feet"),
  24056. weight: math.unit(10500, "lb"),
  24057. name: "Back",
  24058. image: {
  24059. source: "./media/characters/kayda/back.svg",
  24060. extra: 1557 / 1464,
  24061. bottom: 39.5 / 1597.49
  24062. }
  24063. },
  24064. dick: {
  24065. height: math.unit(3.858, "feet"),
  24066. name: "Dick",
  24067. image: {
  24068. source: "./media/characters/kayda/dick.svg"
  24069. }
  24070. },
  24071. },
  24072. [
  24073. {
  24074. name: "Macro",
  24075. height: math.unit(28, "feet"),
  24076. default: true
  24077. },
  24078. ]
  24079. ))
  24080. characterMakers.push(() => makeCharacter(
  24081. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  24082. {
  24083. front: {
  24084. height: math.unit(10 + 11 / 12, "feet"),
  24085. weight: math.unit(1400, "lb"),
  24086. name: "Front",
  24087. image: {
  24088. source: "./media/characters/brian/front.svg",
  24089. extra: 737 / 692,
  24090. bottom: 55.4 / 785
  24091. }
  24092. },
  24093. },
  24094. [
  24095. {
  24096. name: "Normal",
  24097. height: math.unit(10 + 11 / 12, "feet"),
  24098. default: true
  24099. },
  24100. ]
  24101. ))
  24102. characterMakers.push(() => makeCharacter(
  24103. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  24104. {
  24105. front: {
  24106. height: math.unit(5 + 8 / 12, "feet"),
  24107. weight: math.unit(140, "lb"),
  24108. name: "Front",
  24109. image: {
  24110. source: "./media/characters/khemri/front.svg",
  24111. extra: 4780 / 4059,
  24112. bottom: 80.1 / 4859.25
  24113. }
  24114. },
  24115. },
  24116. [
  24117. {
  24118. name: "Micro",
  24119. height: math.unit(6, "inches")
  24120. },
  24121. {
  24122. name: "Normal",
  24123. height: math.unit(5 + 8 / 12, "feet"),
  24124. default: true
  24125. },
  24126. ]
  24127. ))
  24128. characterMakers.push(() => makeCharacter(
  24129. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  24130. {
  24131. front: {
  24132. height: math.unit(13, "feet"),
  24133. weight: math.unit(1700, "lb"),
  24134. name: "Front",
  24135. image: {
  24136. source: "./media/characters/felix-braveheart/front.svg",
  24137. extra: 1222 / 1157,
  24138. bottom: 53.2 / 1280
  24139. }
  24140. },
  24141. back: {
  24142. height: math.unit(13, "feet"),
  24143. weight: math.unit(1700, "lb"),
  24144. name: "Back",
  24145. image: {
  24146. source: "./media/characters/felix-braveheart/back.svg",
  24147. extra: 1277 / 1203,
  24148. bottom: 50.2 / 1327
  24149. }
  24150. },
  24151. feral: {
  24152. height: math.unit(6, "feet"),
  24153. weight: math.unit(400, "lb"),
  24154. name: "Feral",
  24155. image: {
  24156. source: "./media/characters/felix-braveheart/feral.svg",
  24157. extra: 682 / 625,
  24158. bottom: 6.9 / 688
  24159. }
  24160. },
  24161. },
  24162. [
  24163. {
  24164. name: "Normal",
  24165. height: math.unit(13, "feet"),
  24166. default: true
  24167. },
  24168. ]
  24169. ))
  24170. characterMakers.push(() => makeCharacter(
  24171. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  24172. {
  24173. side: {
  24174. height: math.unit(5 + 11 / 12, "feet"),
  24175. weight: math.unit(1400, "lb"),
  24176. name: "Side",
  24177. image: {
  24178. source: "./media/characters/shadow-blade/side.svg",
  24179. extra: 1726 / 1267,
  24180. bottom: 58.4 / 1785
  24181. }
  24182. },
  24183. },
  24184. [
  24185. {
  24186. name: "Normal",
  24187. height: math.unit(5 + 11 / 12, "feet"),
  24188. default: true
  24189. },
  24190. ]
  24191. ))
  24192. characterMakers.push(() => makeCharacter(
  24193. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  24194. {
  24195. front: {
  24196. height: math.unit(1 + 6 / 12, "feet"),
  24197. weight: math.unit(25, "lb"),
  24198. name: "Front",
  24199. image: {
  24200. source: "./media/characters/karla-halldor/front.svg",
  24201. extra: 1459 / 1383,
  24202. bottom: 12 / 1472
  24203. }
  24204. },
  24205. },
  24206. [
  24207. {
  24208. name: "Normal",
  24209. height: math.unit(1 + 6 / 12, "feet"),
  24210. default: true
  24211. },
  24212. ]
  24213. ))
  24214. characterMakers.push(() => makeCharacter(
  24215. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  24216. {
  24217. front: {
  24218. height: math.unit(6 + 2 / 12, "feet"),
  24219. weight: math.unit(160, "lb"),
  24220. name: "Front",
  24221. image: {
  24222. source: "./media/characters/ariam/front.svg",
  24223. extra: 1073/976,
  24224. bottom: 52/1125
  24225. }
  24226. },
  24227. back: {
  24228. height: math.unit(6 + 2/12, "feet"),
  24229. weight: math.unit(160, "lb"),
  24230. name: "Back",
  24231. image: {
  24232. source: "./media/characters/ariam/back.svg",
  24233. extra: 1103/1023,
  24234. bottom: 9/1112
  24235. }
  24236. },
  24237. dressed: {
  24238. height: math.unit(6 + 2/12, "feet"),
  24239. weight: math.unit(160, "lb"),
  24240. name: "Dressed",
  24241. image: {
  24242. source: "./media/characters/ariam/dressed.svg",
  24243. extra: 1099/1009,
  24244. bottom: 25/1124
  24245. }
  24246. },
  24247. squatting: {
  24248. height: math.unit(4.1, "feet"),
  24249. weight: math.unit(160, "lb"),
  24250. name: "Squatting",
  24251. image: {
  24252. source: "./media/characters/ariam/squatting.svg",
  24253. extra: 2617 / 2112,
  24254. bottom: 61.2 / 2681,
  24255. }
  24256. },
  24257. },
  24258. [
  24259. {
  24260. name: "Normal",
  24261. height: math.unit(6 + 2 / 12, "feet"),
  24262. default: true
  24263. },
  24264. {
  24265. name: "Normal+",
  24266. height: math.unit(4, "meters")
  24267. },
  24268. {
  24269. name: "Macro",
  24270. height: math.unit(50, "meters")
  24271. },
  24272. {
  24273. name: "Macro+",
  24274. height: math.unit(100, "meters")
  24275. },
  24276. {
  24277. name: "Megamacro",
  24278. height: math.unit(20, "km")
  24279. },
  24280. {
  24281. name: "Caretaker",
  24282. height: math.unit(444, "megameters")
  24283. },
  24284. ]
  24285. ))
  24286. characterMakers.push(() => makeCharacter(
  24287. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  24288. {
  24289. front: {
  24290. height: math.unit(1.67, "meters"),
  24291. weight: math.unit(140, "lb"),
  24292. name: "Front",
  24293. image: {
  24294. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  24295. extra: 438 / 410,
  24296. bottom: 0.75 / 439
  24297. }
  24298. },
  24299. },
  24300. [
  24301. {
  24302. name: "Shrunken",
  24303. height: math.unit(7.6, "cm")
  24304. },
  24305. {
  24306. name: "Human Scale",
  24307. height: math.unit(1.67, "meters")
  24308. },
  24309. {
  24310. name: "Wolxi Scale",
  24311. height: math.unit(36.7, "meters"),
  24312. default: true
  24313. },
  24314. ]
  24315. ))
  24316. characterMakers.push(() => makeCharacter(
  24317. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  24318. {
  24319. front: {
  24320. height: math.unit(1.73, "meters"),
  24321. weight: math.unit(240, "lb"),
  24322. name: "Front",
  24323. image: {
  24324. source: "./media/characters/izue-two-mothers/front.svg",
  24325. extra: 469 / 437,
  24326. bottom: 1.24 / 470.6
  24327. }
  24328. },
  24329. },
  24330. [
  24331. {
  24332. name: "Shrunken",
  24333. height: math.unit(7.86, "cm")
  24334. },
  24335. {
  24336. name: "Human Scale",
  24337. height: math.unit(1.73, "meters")
  24338. },
  24339. {
  24340. name: "Wolxi Scale",
  24341. height: math.unit(38, "meters"),
  24342. default: true
  24343. },
  24344. ]
  24345. ))
  24346. characterMakers.push(() => makeCharacter(
  24347. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  24348. {
  24349. front: {
  24350. height: math.unit(1.55, "meters"),
  24351. weight: math.unit(120, "lb"),
  24352. name: "Front",
  24353. image: {
  24354. source: "./media/characters/teeku-love-shack/front.svg",
  24355. extra: 387 / 362,
  24356. bottom: 1.51 / 388
  24357. }
  24358. },
  24359. },
  24360. [
  24361. {
  24362. name: "Shrunken",
  24363. height: math.unit(7, "cm")
  24364. },
  24365. {
  24366. name: "Human Scale",
  24367. height: math.unit(1.55, "meters")
  24368. },
  24369. {
  24370. name: "Wolxi Scale",
  24371. height: math.unit(34.1, "meters"),
  24372. default: true
  24373. },
  24374. ]
  24375. ))
  24376. characterMakers.push(() => makeCharacter(
  24377. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  24378. {
  24379. front: {
  24380. height: math.unit(1.83, "meters"),
  24381. weight: math.unit(135, "lb"),
  24382. name: "Front",
  24383. image: {
  24384. source: "./media/characters/dejma-the-red/front.svg",
  24385. extra: 480 / 458,
  24386. bottom: 1.8 / 482
  24387. }
  24388. },
  24389. },
  24390. [
  24391. {
  24392. name: "Shrunken",
  24393. height: math.unit(8.3, "cm")
  24394. },
  24395. {
  24396. name: "Human Scale",
  24397. height: math.unit(1.83, "meters")
  24398. },
  24399. {
  24400. name: "Wolxi Scale",
  24401. height: math.unit(40, "meters"),
  24402. default: true
  24403. },
  24404. ]
  24405. ))
  24406. characterMakers.push(() => makeCharacter(
  24407. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  24408. {
  24409. front: {
  24410. height: math.unit(1.78, "meters"),
  24411. weight: math.unit(65, "kg"),
  24412. name: "Front",
  24413. image: {
  24414. source: "./media/characters/aki/front.svg",
  24415. extra: 452 / 415
  24416. }
  24417. },
  24418. frontNsfw: {
  24419. height: math.unit(1.78, "meters"),
  24420. weight: math.unit(65, "kg"),
  24421. name: "Front (NSFW)",
  24422. image: {
  24423. source: "./media/characters/aki/front-nsfw.svg",
  24424. extra: 452 / 415
  24425. }
  24426. },
  24427. back: {
  24428. height: math.unit(1.78, "meters"),
  24429. weight: math.unit(65, "kg"),
  24430. name: "Back",
  24431. image: {
  24432. source: "./media/characters/aki/back.svg",
  24433. extra: 452 / 415
  24434. }
  24435. },
  24436. rump: {
  24437. height: math.unit(2.05, "feet"),
  24438. name: "Rump",
  24439. image: {
  24440. source: "./media/characters/aki/rump.svg"
  24441. }
  24442. },
  24443. dick: {
  24444. height: math.unit(0.95, "feet"),
  24445. name: "Dick",
  24446. image: {
  24447. source: "./media/characters/aki/dick.svg"
  24448. }
  24449. },
  24450. },
  24451. [
  24452. {
  24453. name: "Micro",
  24454. height: math.unit(15, "cm")
  24455. },
  24456. {
  24457. name: "Normal",
  24458. height: math.unit(178, "cm"),
  24459. default: true
  24460. },
  24461. {
  24462. name: "Macro",
  24463. height: math.unit(214, "m")
  24464. },
  24465. {
  24466. name: "Macro+",
  24467. height: math.unit(534, "m")
  24468. },
  24469. ]
  24470. ))
  24471. characterMakers.push(() => makeCharacter(
  24472. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  24473. {
  24474. front: {
  24475. height: math.unit(5 + 5 / 12, "feet"),
  24476. weight: math.unit(120, "lb"),
  24477. name: "Front",
  24478. image: {
  24479. source: "./media/characters/ari/front.svg",
  24480. extra: 714.5 / 682,
  24481. bottom: 8 / 722.5
  24482. }
  24483. },
  24484. },
  24485. [
  24486. {
  24487. name: "Normal",
  24488. height: math.unit(5 + 5 / 12, "feet")
  24489. },
  24490. {
  24491. name: "Macro",
  24492. height: math.unit(100, "feet"),
  24493. default: true
  24494. },
  24495. {
  24496. name: "Megamacro",
  24497. height: math.unit(100, "miles")
  24498. },
  24499. {
  24500. name: "Gigamacro",
  24501. height: math.unit(80000, "miles")
  24502. },
  24503. ]
  24504. ))
  24505. characterMakers.push(() => makeCharacter(
  24506. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  24507. {
  24508. side: {
  24509. height: math.unit(9, "feet"),
  24510. weight: math.unit(400, "kg"),
  24511. name: "Side",
  24512. image: {
  24513. source: "./media/characters/bolt/side.svg",
  24514. extra: 1126 / 896,
  24515. bottom: 60 / 1187.3,
  24516. }
  24517. },
  24518. },
  24519. [
  24520. {
  24521. name: "Micro",
  24522. height: math.unit(5, "inches")
  24523. },
  24524. {
  24525. name: "Normal",
  24526. height: math.unit(9, "feet"),
  24527. default: true
  24528. },
  24529. {
  24530. name: "Macro",
  24531. height: math.unit(700, "feet")
  24532. },
  24533. {
  24534. name: "Max Size",
  24535. height: math.unit(1.52e22, "yottameters")
  24536. },
  24537. ]
  24538. ))
  24539. characterMakers.push(() => makeCharacter(
  24540. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  24541. {
  24542. front: {
  24543. height: math.unit(4.53, "meters"),
  24544. weight: math.unit(3, "tons"),
  24545. name: "Front",
  24546. image: {
  24547. source: "./media/characters/draekon-sylviar/front.svg",
  24548. extra: 1228 / 1068,
  24549. bottom: 41 / 1270
  24550. }
  24551. },
  24552. tail: {
  24553. height: math.unit(1.772, "meter"),
  24554. name: "Tail",
  24555. image: {
  24556. source: "./media/characters/draekon-sylviar/tail.svg"
  24557. }
  24558. },
  24559. head: {
  24560. height: math.unit(1.331, "meter"),
  24561. name: "Head",
  24562. image: {
  24563. source: "./media/characters/draekon-sylviar/head.svg"
  24564. }
  24565. },
  24566. hand: {
  24567. height: math.unit(0.564, "meter"),
  24568. name: "Hand",
  24569. image: {
  24570. source: "./media/characters/draekon-sylviar/hand.svg"
  24571. }
  24572. },
  24573. foot: {
  24574. height: math.unit(0.621, "meter"),
  24575. name: "Foot",
  24576. image: {
  24577. source: "./media/characters/draekon-sylviar/foot.svg",
  24578. bottom: 32 / 324
  24579. }
  24580. },
  24581. dick: {
  24582. height: math.unit(61, "cm"),
  24583. name: "Dick",
  24584. image: {
  24585. source: "./media/characters/draekon-sylviar/dick.svg"
  24586. }
  24587. },
  24588. dickseparated: {
  24589. height: math.unit(61, "cm"),
  24590. name: "Dick-separated",
  24591. image: {
  24592. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  24593. }
  24594. },
  24595. },
  24596. [
  24597. {
  24598. name: "Small",
  24599. height: math.unit(4.53 / 2, "meters"),
  24600. default: true
  24601. },
  24602. {
  24603. name: "Normal",
  24604. height: math.unit(4.53, "meters"),
  24605. default: true
  24606. },
  24607. {
  24608. name: "Large",
  24609. height: math.unit(4.53 * 2, "meters"),
  24610. },
  24611. ]
  24612. ))
  24613. characterMakers.push(() => makeCharacter(
  24614. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  24615. {
  24616. front: {
  24617. height: math.unit(6 + 2 / 12, "feet"),
  24618. weight: math.unit(180, "lb"),
  24619. name: "Front",
  24620. image: {
  24621. source: "./media/characters/brawler/front.svg",
  24622. extra: 3301 / 3027,
  24623. bottom: 138 / 3439
  24624. }
  24625. },
  24626. },
  24627. [
  24628. {
  24629. name: "Normal",
  24630. height: math.unit(6 + 2 / 12, "feet"),
  24631. default: true
  24632. },
  24633. ]
  24634. ))
  24635. characterMakers.push(() => makeCharacter(
  24636. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  24637. {
  24638. front: {
  24639. height: math.unit(11, "feet"),
  24640. weight: math.unit(1000, "lb"),
  24641. name: "Front",
  24642. image: {
  24643. source: "./media/characters/alex/front.svg",
  24644. bottom: 44.5 / 620
  24645. }
  24646. },
  24647. },
  24648. [
  24649. {
  24650. name: "Micro",
  24651. height: math.unit(5, "inches")
  24652. },
  24653. {
  24654. name: "Normal",
  24655. height: math.unit(11, "feet"),
  24656. default: true
  24657. },
  24658. {
  24659. name: "Macro",
  24660. height: math.unit(9.5e9, "feet")
  24661. },
  24662. {
  24663. name: "Max Size",
  24664. height: math.unit(1.4e283, "yottameters")
  24665. },
  24666. ]
  24667. ))
  24668. characterMakers.push(() => makeCharacter(
  24669. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  24670. {
  24671. female: {
  24672. height: math.unit(29.9, "m"),
  24673. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  24674. name: "Female",
  24675. image: {
  24676. source: "./media/characters/zenari/female.svg",
  24677. extra: 3281.6 / 3217,
  24678. bottom: 72.2 / 3353
  24679. }
  24680. },
  24681. male: {
  24682. height: math.unit(27.7, "m"),
  24683. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  24684. name: "Male",
  24685. image: {
  24686. source: "./media/characters/zenari/male.svg",
  24687. extra: 3008 / 2991,
  24688. bottom: 54.6 / 3069
  24689. }
  24690. },
  24691. },
  24692. [
  24693. {
  24694. name: "Macro",
  24695. height: math.unit(29.7, "meters"),
  24696. default: true
  24697. },
  24698. ]
  24699. ))
  24700. characterMakers.push(() => makeCharacter(
  24701. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  24702. {
  24703. female: {
  24704. height: math.unit(23.8, "m"),
  24705. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24706. name: "Female",
  24707. image: {
  24708. source: "./media/characters/mactarian/female.svg",
  24709. extra: 2662 / 2569,
  24710. bottom: 73 / 2736
  24711. }
  24712. },
  24713. male: {
  24714. height: math.unit(23.8, "m"),
  24715. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24716. name: "Male",
  24717. image: {
  24718. source: "./media/characters/mactarian/male.svg",
  24719. extra: 2673 / 2600,
  24720. bottom: 76 / 2750
  24721. }
  24722. },
  24723. },
  24724. [
  24725. {
  24726. name: "Macro",
  24727. height: math.unit(23.8, "meters"),
  24728. default: true
  24729. },
  24730. ]
  24731. ))
  24732. characterMakers.push(() => makeCharacter(
  24733. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  24734. {
  24735. female: {
  24736. height: math.unit(19.3, "m"),
  24737. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  24738. name: "Female",
  24739. image: {
  24740. source: "./media/characters/umok/female.svg",
  24741. extra: 2186 / 2078,
  24742. bottom: 87 / 2277
  24743. }
  24744. },
  24745. male: {
  24746. height: math.unit(19.5, "m"),
  24747. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  24748. name: "Male",
  24749. image: {
  24750. source: "./media/characters/umok/male.svg",
  24751. extra: 2233 / 2140,
  24752. bottom: 24.4 / 2258
  24753. }
  24754. },
  24755. },
  24756. [
  24757. {
  24758. name: "Macro",
  24759. height: math.unit(19.3, "meters"),
  24760. default: true
  24761. },
  24762. ]
  24763. ))
  24764. characterMakers.push(() => makeCharacter(
  24765. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  24766. {
  24767. female: {
  24768. height: math.unit(26.15, "m"),
  24769. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  24770. name: "Female",
  24771. image: {
  24772. source: "./media/characters/joraxian/female.svg",
  24773. extra: 2912 / 2824,
  24774. bottom: 36 / 2956
  24775. }
  24776. },
  24777. male: {
  24778. height: math.unit(25.4, "m"),
  24779. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  24780. name: "Male",
  24781. image: {
  24782. source: "./media/characters/joraxian/male.svg",
  24783. extra: 2877 / 2721,
  24784. bottom: 82 / 2967
  24785. }
  24786. },
  24787. },
  24788. [
  24789. {
  24790. name: "Macro",
  24791. height: math.unit(26.15, "meters"),
  24792. default: true
  24793. },
  24794. ]
  24795. ))
  24796. characterMakers.push(() => makeCharacter(
  24797. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  24798. {
  24799. female: {
  24800. height: math.unit(21.6, "m"),
  24801. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  24802. name: "Female",
  24803. image: {
  24804. source: "./media/characters/sthara/female.svg",
  24805. extra: 2516 / 2347,
  24806. bottom: 21.5 / 2537
  24807. }
  24808. },
  24809. male: {
  24810. height: math.unit(24, "m"),
  24811. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  24812. name: "Male",
  24813. image: {
  24814. source: "./media/characters/sthara/male.svg",
  24815. extra: 2732 / 2607,
  24816. bottom: 23 / 2732
  24817. }
  24818. },
  24819. },
  24820. [
  24821. {
  24822. name: "Macro",
  24823. height: math.unit(21.6, "meters"),
  24824. default: true
  24825. },
  24826. ]
  24827. ))
  24828. characterMakers.push(() => makeCharacter(
  24829. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  24830. {
  24831. front: {
  24832. height: math.unit(6 + 4 / 12, "feet"),
  24833. weight: math.unit(175, "lb"),
  24834. name: "Front",
  24835. image: {
  24836. source: "./media/characters/luka-bryzant/front.svg",
  24837. extra: 311 / 289,
  24838. bottom: 4 / 315
  24839. }
  24840. },
  24841. back: {
  24842. height: math.unit(6 + 4 / 12, "feet"),
  24843. weight: math.unit(175, "lb"),
  24844. name: "Back",
  24845. image: {
  24846. source: "./media/characters/luka-bryzant/back.svg",
  24847. extra: 311 / 289,
  24848. bottom: 3.8 / 313.7
  24849. }
  24850. },
  24851. },
  24852. [
  24853. {
  24854. name: "Micro",
  24855. height: math.unit(10, "inches")
  24856. },
  24857. {
  24858. name: "Normal",
  24859. height: math.unit(6 + 4 / 12, "feet"),
  24860. default: true
  24861. },
  24862. {
  24863. name: "Large",
  24864. height: math.unit(12, "feet")
  24865. },
  24866. ]
  24867. ))
  24868. characterMakers.push(() => makeCharacter(
  24869. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  24870. {
  24871. front: {
  24872. height: math.unit(5 + 7 / 12, "feet"),
  24873. weight: math.unit(185, "lb"),
  24874. name: "Front",
  24875. image: {
  24876. source: "./media/characters/aman-aquila/front.svg",
  24877. extra: 1013 / 976,
  24878. bottom: 45.6 / 1057
  24879. }
  24880. },
  24881. side: {
  24882. height: math.unit(5 + 7 / 12, "feet"),
  24883. weight: math.unit(185, "lb"),
  24884. name: "Side",
  24885. image: {
  24886. source: "./media/characters/aman-aquila/side.svg",
  24887. extra: 1054 / 1011,
  24888. bottom: 15 / 1070
  24889. }
  24890. },
  24891. back: {
  24892. height: math.unit(5 + 7 / 12, "feet"),
  24893. weight: math.unit(185, "lb"),
  24894. name: "Back",
  24895. image: {
  24896. source: "./media/characters/aman-aquila/back.svg",
  24897. extra: 1026 / 970,
  24898. bottom: 12 / 1039
  24899. }
  24900. },
  24901. head: {
  24902. height: math.unit(1.211, "feet"),
  24903. name: "Head",
  24904. image: {
  24905. source: "./media/characters/aman-aquila/head.svg",
  24906. }
  24907. },
  24908. },
  24909. [
  24910. {
  24911. name: "Minimicro",
  24912. height: math.unit(0.057, "inches")
  24913. },
  24914. {
  24915. name: "Micro",
  24916. height: math.unit(7, "inches")
  24917. },
  24918. {
  24919. name: "Mini",
  24920. height: math.unit(3 + 7 / 12, "feet")
  24921. },
  24922. {
  24923. name: "Normal",
  24924. height: math.unit(5 + 7 / 12, "feet"),
  24925. default: true
  24926. },
  24927. {
  24928. name: "Macro",
  24929. height: math.unit(157 + 7 / 12, "feet")
  24930. },
  24931. {
  24932. name: "Megamacro",
  24933. height: math.unit(1557 + 7 / 12, "feet")
  24934. },
  24935. {
  24936. name: "Gigamacro",
  24937. height: math.unit(15557 + 7 / 12, "feet")
  24938. },
  24939. ]
  24940. ))
  24941. characterMakers.push(() => makeCharacter(
  24942. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  24943. {
  24944. front: {
  24945. height: math.unit(3 + 2 / 12, "inches"),
  24946. weight: math.unit(0.3, "ounces"),
  24947. name: "Front",
  24948. image: {
  24949. source: "./media/characters/hiphae/front.svg",
  24950. extra: 1931 / 1683,
  24951. bottom: 24 / 1955
  24952. }
  24953. },
  24954. },
  24955. [
  24956. {
  24957. name: "Normal",
  24958. height: math.unit(3 + 1 / 2, "inches"),
  24959. default: true
  24960. },
  24961. ]
  24962. ))
  24963. characterMakers.push(() => makeCharacter(
  24964. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  24965. {
  24966. front: {
  24967. height: math.unit(5 + 10 / 12, "feet"),
  24968. weight: math.unit(165, "lb"),
  24969. name: "Front",
  24970. image: {
  24971. source: "./media/characters/nicky/front.svg",
  24972. extra: 3144 / 2886,
  24973. bottom: 45.6 / 3192
  24974. }
  24975. },
  24976. back: {
  24977. height: math.unit(5 + 10 / 12, "feet"),
  24978. weight: math.unit(165, "lb"),
  24979. name: "Back",
  24980. image: {
  24981. source: "./media/characters/nicky/back.svg",
  24982. extra: 3055 / 2804,
  24983. bottom: 28.4 / 3087
  24984. }
  24985. },
  24986. frontclothed: {
  24987. height: math.unit(5 + 10 / 12, "feet"),
  24988. weight: math.unit(165, "lb"),
  24989. name: "Front-clothed",
  24990. image: {
  24991. source: "./media/characters/nicky/front-clothed.svg",
  24992. extra: 3184.9 / 2926.9,
  24993. bottom: 86.5 / 3239.9
  24994. }
  24995. },
  24996. foot: {
  24997. height: math.unit(1.16, "feet"),
  24998. name: "Foot",
  24999. image: {
  25000. source: "./media/characters/nicky/foot.svg"
  25001. }
  25002. },
  25003. feet: {
  25004. height: math.unit(1.34, "feet"),
  25005. name: "Feet",
  25006. image: {
  25007. source: "./media/characters/nicky/feet.svg"
  25008. }
  25009. },
  25010. maw: {
  25011. height: math.unit(0.9, "feet"),
  25012. name: "Maw",
  25013. image: {
  25014. source: "./media/characters/nicky/maw.svg"
  25015. }
  25016. },
  25017. },
  25018. [
  25019. {
  25020. name: "Normal",
  25021. height: math.unit(5 + 10 / 12, "feet"),
  25022. default: true
  25023. },
  25024. {
  25025. name: "Macro",
  25026. height: math.unit(60, "feet")
  25027. },
  25028. {
  25029. name: "Megamacro",
  25030. height: math.unit(1, "mile")
  25031. },
  25032. ]
  25033. ))
  25034. characterMakers.push(() => makeCharacter(
  25035. { name: "Blair", species: ["seal"], tags: ["taur"] },
  25036. {
  25037. side: {
  25038. height: math.unit(10, "feet"),
  25039. weight: math.unit(600, "lb"),
  25040. name: "Side",
  25041. image: {
  25042. source: "./media/characters/blair/side.svg",
  25043. bottom: 16.6 / 475,
  25044. extra: 458 / 431
  25045. }
  25046. },
  25047. },
  25048. [
  25049. {
  25050. name: "Micro",
  25051. height: math.unit(8, "inches")
  25052. },
  25053. {
  25054. name: "Normal",
  25055. height: math.unit(10, "feet"),
  25056. default: true
  25057. },
  25058. {
  25059. name: "Macro",
  25060. height: math.unit(180, "feet")
  25061. },
  25062. ]
  25063. ))
  25064. characterMakers.push(() => makeCharacter(
  25065. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  25066. {
  25067. front: {
  25068. height: math.unit(5 + 4 / 12, "feet"),
  25069. weight: math.unit(125, "lb"),
  25070. name: "Front",
  25071. image: {
  25072. source: "./media/characters/fisher/front.svg",
  25073. extra: 444 / 390,
  25074. bottom: 2 / 444.8
  25075. }
  25076. },
  25077. },
  25078. [
  25079. {
  25080. name: "Micro",
  25081. height: math.unit(4, "inches")
  25082. },
  25083. {
  25084. name: "Normal",
  25085. height: math.unit(5 + 4 / 12, "feet"),
  25086. default: true
  25087. },
  25088. {
  25089. name: "Macro",
  25090. height: math.unit(100, "feet")
  25091. },
  25092. ]
  25093. ))
  25094. characterMakers.push(() => makeCharacter(
  25095. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  25096. {
  25097. front: {
  25098. height: math.unit(6.71, "feet"),
  25099. weight: math.unit(200, "lb"),
  25100. capacity: math.unit(1000000, "people"),
  25101. name: "Front",
  25102. image: {
  25103. source: "./media/characters/gliss/front.svg",
  25104. extra: 2347 / 2231,
  25105. bottom: 113 / 2462
  25106. }
  25107. },
  25108. hammerspaceSize: {
  25109. height: math.unit(6.71 * 717, "feet"),
  25110. weight: math.unit(200, "lb"),
  25111. capacity: math.unit(1000000, "people"),
  25112. name: "Hammerspace Size",
  25113. image: {
  25114. source: "./media/characters/gliss/front.svg",
  25115. extra: 2347 / 2231,
  25116. bottom: 113 / 2462
  25117. }
  25118. },
  25119. },
  25120. [
  25121. {
  25122. name: "Normal",
  25123. height: math.unit(6.71, "feet"),
  25124. default: true
  25125. },
  25126. ]
  25127. ))
  25128. characterMakers.push(() => makeCharacter(
  25129. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  25130. {
  25131. side: {
  25132. height: math.unit(1.44, "m"),
  25133. weight: math.unit(80, "kg"),
  25134. name: "Side",
  25135. image: {
  25136. source: "./media/characters/dune-anderson/side.svg",
  25137. bottom: 49 / 1426
  25138. }
  25139. },
  25140. },
  25141. [
  25142. {
  25143. name: "Wolf-sized",
  25144. height: math.unit(1.44, "meters")
  25145. },
  25146. {
  25147. name: "Normal",
  25148. height: math.unit(5.05, "meters"),
  25149. default: true
  25150. },
  25151. {
  25152. name: "Big",
  25153. height: math.unit(14.4, "meters")
  25154. },
  25155. {
  25156. name: "Huge",
  25157. height: math.unit(144, "meters")
  25158. },
  25159. ]
  25160. ))
  25161. characterMakers.push(() => makeCharacter(
  25162. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  25163. {
  25164. front: {
  25165. height: math.unit(7, "feet"),
  25166. weight: math.unit(425, "lb"),
  25167. name: "Front",
  25168. image: {
  25169. source: "./media/characters/hind/front.svg",
  25170. extra: 2091 / 1860,
  25171. bottom: 129 / 2220
  25172. }
  25173. },
  25174. back: {
  25175. height: math.unit(7, "feet"),
  25176. weight: math.unit(425, "lb"),
  25177. name: "Back",
  25178. image: {
  25179. source: "./media/characters/hind/back.svg",
  25180. extra: 2091 / 1860,
  25181. bottom: 24.6 / 2309
  25182. }
  25183. },
  25184. tail: {
  25185. height: math.unit(2.8, "feet"),
  25186. name: "Tail",
  25187. image: {
  25188. source: "./media/characters/hind/tail.svg"
  25189. }
  25190. },
  25191. head: {
  25192. height: math.unit(2.55, "feet"),
  25193. name: "Head",
  25194. image: {
  25195. source: "./media/characters/hind/head.svg"
  25196. }
  25197. },
  25198. },
  25199. [
  25200. {
  25201. name: "XS",
  25202. height: math.unit(0.7, "feet")
  25203. },
  25204. {
  25205. name: "Normal",
  25206. height: math.unit(7, "feet"),
  25207. default: true
  25208. },
  25209. {
  25210. name: "XL",
  25211. height: math.unit(70, "feet")
  25212. },
  25213. ]
  25214. ))
  25215. characterMakers.push(() => makeCharacter(
  25216. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  25217. {
  25218. front: {
  25219. height: math.unit(2.1, "meters"),
  25220. weight: math.unit(150, "lb"),
  25221. name: "Front",
  25222. image: {
  25223. source: "./media/characters/tharquench-sizestealer/front.svg",
  25224. extra: 1605/1470,
  25225. bottom: 36/1641
  25226. }
  25227. },
  25228. frontAlt: {
  25229. height: math.unit(2.1, "meters"),
  25230. weight: math.unit(150, "lb"),
  25231. name: "Front (Alt)",
  25232. image: {
  25233. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  25234. extra: 2318 / 2063,
  25235. bottom: 93.4 / 2410
  25236. }
  25237. },
  25238. },
  25239. [
  25240. {
  25241. name: "Nano",
  25242. height: math.unit(1, "mm")
  25243. },
  25244. {
  25245. name: "Micro",
  25246. height: math.unit(1, "cm")
  25247. },
  25248. {
  25249. name: "Normal",
  25250. height: math.unit(2.1, "meters"),
  25251. default: true
  25252. },
  25253. ]
  25254. ))
  25255. characterMakers.push(() => makeCharacter(
  25256. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  25257. {
  25258. front: {
  25259. height: math.unit(7 + 5 / 12, "feet"),
  25260. weight: math.unit(357, "lb"),
  25261. name: "Front",
  25262. image: {
  25263. source: "./media/characters/solex-draconov/front.svg",
  25264. extra: 1993 / 1865,
  25265. bottom: 117 / 2111
  25266. }
  25267. },
  25268. },
  25269. [
  25270. {
  25271. name: "Natural Height",
  25272. height: math.unit(7 + 5 / 12, "feet"),
  25273. default: true
  25274. },
  25275. {
  25276. name: "Macro",
  25277. height: math.unit(350, "feet")
  25278. },
  25279. {
  25280. name: "Macro+",
  25281. height: math.unit(1000, "feet")
  25282. },
  25283. {
  25284. name: "Megamacro",
  25285. height: math.unit(20, "km")
  25286. },
  25287. {
  25288. name: "Megamacro+",
  25289. height: math.unit(1000, "km")
  25290. },
  25291. {
  25292. name: "Gigamacro",
  25293. height: math.unit(2.5, "Gm")
  25294. },
  25295. {
  25296. name: "Teramacro",
  25297. height: math.unit(15, "Tm")
  25298. },
  25299. {
  25300. name: "Galactic",
  25301. height: math.unit(30, "Zm")
  25302. },
  25303. {
  25304. name: "Universal",
  25305. height: math.unit(21000, "Ym")
  25306. },
  25307. {
  25308. name: "Omniversal",
  25309. height: math.unit(9.861e50, "Ym")
  25310. },
  25311. {
  25312. name: "Existential",
  25313. height: math.unit(1e300, "meters")
  25314. },
  25315. ]
  25316. ))
  25317. characterMakers.push(() => makeCharacter(
  25318. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  25319. {
  25320. side: {
  25321. height: math.unit(25, "feet"),
  25322. weight: math.unit(90000, "lb"),
  25323. name: "Side",
  25324. image: {
  25325. source: "./media/characters/mandarax/side.svg",
  25326. extra: 614 / 332,
  25327. bottom: 55 / 630
  25328. }
  25329. },
  25330. head: {
  25331. height: math.unit(11.4, "feet"),
  25332. name: "Head",
  25333. image: {
  25334. source: "./media/characters/mandarax/head.svg"
  25335. }
  25336. },
  25337. belly: {
  25338. height: math.unit(33, "feet"),
  25339. name: "Belly",
  25340. capacity: math.unit(500, "people"),
  25341. image: {
  25342. source: "./media/characters/mandarax/belly.svg"
  25343. }
  25344. },
  25345. dick: {
  25346. height: math.unit(8.46, "feet"),
  25347. name: "Dick",
  25348. image: {
  25349. source: "./media/characters/mandarax/dick.svg"
  25350. }
  25351. },
  25352. top: {
  25353. height: math.unit(28, "meters"),
  25354. name: "Top",
  25355. image: {
  25356. source: "./media/characters/mandarax/top.svg"
  25357. }
  25358. },
  25359. },
  25360. [
  25361. {
  25362. name: "Normal",
  25363. height: math.unit(25, "feet"),
  25364. default: true
  25365. },
  25366. ]
  25367. ))
  25368. characterMakers.push(() => makeCharacter(
  25369. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  25370. {
  25371. front: {
  25372. height: math.unit(5, "feet"),
  25373. weight: math.unit(90, "lb"),
  25374. name: "Front",
  25375. image: {
  25376. source: "./media/characters/pixil/front.svg",
  25377. extra: 2000 / 1618,
  25378. bottom: 12.3 / 2011
  25379. }
  25380. },
  25381. },
  25382. [
  25383. {
  25384. name: "Normal",
  25385. height: math.unit(5, "feet"),
  25386. default: true
  25387. },
  25388. {
  25389. name: "Megamacro",
  25390. height: math.unit(10, "miles"),
  25391. },
  25392. ]
  25393. ))
  25394. characterMakers.push(() => makeCharacter(
  25395. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  25396. {
  25397. front: {
  25398. height: math.unit(7 + 2 / 12, "feet"),
  25399. weight: math.unit(200, "lb"),
  25400. name: "Front",
  25401. image: {
  25402. source: "./media/characters/angel/front.svg",
  25403. extra: 1830 / 1737,
  25404. bottom: 22.6 / 1854,
  25405. }
  25406. },
  25407. },
  25408. [
  25409. {
  25410. name: "Normal",
  25411. height: math.unit(7 + 2 / 12, "feet"),
  25412. default: true
  25413. },
  25414. {
  25415. name: "Macro",
  25416. height: math.unit(1000, "feet")
  25417. },
  25418. {
  25419. name: "Megamacro",
  25420. height: math.unit(2, "miles")
  25421. },
  25422. {
  25423. name: "Gigamacro",
  25424. height: math.unit(20, "earths")
  25425. },
  25426. ]
  25427. ))
  25428. characterMakers.push(() => makeCharacter(
  25429. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  25430. {
  25431. front: {
  25432. height: math.unit(5, "feet"),
  25433. weight: math.unit(180, "lb"),
  25434. name: "Front",
  25435. image: {
  25436. source: "./media/characters/mekana/front.svg",
  25437. extra: 1671 / 1605,
  25438. bottom: 3.5 / 1691
  25439. }
  25440. },
  25441. side: {
  25442. height: math.unit(5, "feet"),
  25443. weight: math.unit(180, "lb"),
  25444. name: "Side",
  25445. image: {
  25446. source: "./media/characters/mekana/side.svg",
  25447. extra: 1671 / 1605,
  25448. bottom: 3.5 / 1691
  25449. }
  25450. },
  25451. back: {
  25452. height: math.unit(5, "feet"),
  25453. weight: math.unit(180, "lb"),
  25454. name: "Back",
  25455. image: {
  25456. source: "./media/characters/mekana/back.svg",
  25457. extra: 1671 / 1605,
  25458. bottom: 3.5 / 1691
  25459. }
  25460. },
  25461. },
  25462. [
  25463. {
  25464. name: "Normal",
  25465. height: math.unit(5, "feet"),
  25466. default: true
  25467. },
  25468. ]
  25469. ))
  25470. characterMakers.push(() => makeCharacter(
  25471. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  25472. {
  25473. front: {
  25474. height: math.unit(4 + 6 / 12, "feet"),
  25475. weight: math.unit(80, "lb"),
  25476. name: "Front",
  25477. image: {
  25478. source: "./media/characters/pixie/front.svg",
  25479. extra: 1924 / 1825,
  25480. bottom: 22.4 / 1946
  25481. }
  25482. },
  25483. },
  25484. [
  25485. {
  25486. name: "Normal",
  25487. height: math.unit(4 + 6 / 12, "feet"),
  25488. default: true
  25489. },
  25490. {
  25491. name: "Macro",
  25492. height: math.unit(40, "feet")
  25493. },
  25494. ]
  25495. ))
  25496. characterMakers.push(() => makeCharacter(
  25497. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  25498. {
  25499. front: {
  25500. height: math.unit(2.1, "meters"),
  25501. weight: math.unit(200, "lb"),
  25502. name: "Front",
  25503. image: {
  25504. source: "./media/characters/the-lascivious/front.svg",
  25505. extra: 1 / 0.893,
  25506. bottom: 3.5 / 573.7
  25507. }
  25508. },
  25509. },
  25510. [
  25511. {
  25512. name: "Human Scale",
  25513. height: math.unit(2.1, "meters")
  25514. },
  25515. {
  25516. name: "Wolxi Scale",
  25517. height: math.unit(46.2, "m"),
  25518. default: true
  25519. },
  25520. {
  25521. name: "Boinker of Buildings",
  25522. height: math.unit(10, "km")
  25523. },
  25524. {
  25525. name: "Shagger of Skyscrapers",
  25526. height: math.unit(40, "km")
  25527. },
  25528. {
  25529. name: "Banger of Boroughs",
  25530. height: math.unit(4000, "km")
  25531. },
  25532. {
  25533. name: "Screwer of States",
  25534. height: math.unit(100000, "km")
  25535. },
  25536. {
  25537. name: "Pounder of Planets",
  25538. height: math.unit(2000000, "km")
  25539. },
  25540. ]
  25541. ))
  25542. characterMakers.push(() => makeCharacter(
  25543. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  25544. {
  25545. front: {
  25546. height: math.unit(6, "feet"),
  25547. weight: math.unit(150, "lb"),
  25548. name: "Front",
  25549. image: {
  25550. source: "./media/characters/aj/front.svg",
  25551. extra: 2039 / 1562,
  25552. bottom: 40 / 2079
  25553. }
  25554. },
  25555. },
  25556. [
  25557. {
  25558. name: "Normal",
  25559. height: math.unit(11 + 6 / 12, "feet"),
  25560. default: true
  25561. },
  25562. {
  25563. name: "Megamacro",
  25564. height: math.unit(60, "megameters")
  25565. },
  25566. ]
  25567. ))
  25568. characterMakers.push(() => makeCharacter(
  25569. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  25570. {
  25571. side: {
  25572. height: math.unit(31 + 8 / 12, "feet"),
  25573. weight: math.unit(75000, "kg"),
  25574. name: "Side",
  25575. image: {
  25576. source: "./media/characters/koros/side.svg",
  25577. extra: 1442 / 1297,
  25578. bottom: 122.7 / 1562
  25579. }
  25580. },
  25581. dicksKingsCrown: {
  25582. height: math.unit(6, "feet"),
  25583. name: "Dicks (King's Crown)",
  25584. image: {
  25585. source: "./media/characters/koros/dicks-kings-crown.svg"
  25586. }
  25587. },
  25588. dicksTailSet: {
  25589. height: math.unit(3, "feet"),
  25590. name: "Dicks (Tail Set)",
  25591. image: {
  25592. source: "./media/characters/koros/dicks-tail-set.svg"
  25593. }
  25594. },
  25595. dickCumming: {
  25596. height: math.unit(7.98, "feet"),
  25597. name: "Dick (Cumming)",
  25598. image: {
  25599. source: "./media/characters/koros/dick-cumming.svg"
  25600. }
  25601. },
  25602. dicksBack: {
  25603. height: math.unit(5.9, "feet"),
  25604. name: "Dicks (Back)",
  25605. image: {
  25606. source: "./media/characters/koros/dicks-back.svg"
  25607. }
  25608. },
  25609. dicksFront: {
  25610. height: math.unit(3.72, "feet"),
  25611. name: "Dicks (Front)",
  25612. image: {
  25613. source: "./media/characters/koros/dicks-front.svg"
  25614. }
  25615. },
  25616. dicksPeeking: {
  25617. height: math.unit(3.0, "feet"),
  25618. name: "Dicks (Peeking)",
  25619. image: {
  25620. source: "./media/characters/koros/dicks-peeking.svg"
  25621. }
  25622. },
  25623. eye: {
  25624. height: math.unit(1.7, "feet"),
  25625. name: "Eye",
  25626. image: {
  25627. source: "./media/characters/koros/eye.svg"
  25628. }
  25629. },
  25630. headFront: {
  25631. height: math.unit(11.69, "feet"),
  25632. name: "Head (Front)",
  25633. image: {
  25634. source: "./media/characters/koros/head-front.svg"
  25635. }
  25636. },
  25637. headSide: {
  25638. height: math.unit(14, "feet"),
  25639. name: "Head (Side)",
  25640. image: {
  25641. source: "./media/characters/koros/head-side.svg"
  25642. }
  25643. },
  25644. leg: {
  25645. height: math.unit(17, "feet"),
  25646. name: "Leg",
  25647. image: {
  25648. source: "./media/characters/koros/leg.svg"
  25649. }
  25650. },
  25651. mawSide: {
  25652. height: math.unit(12.8, "feet"),
  25653. name: "Maw (Side)",
  25654. image: {
  25655. source: "./media/characters/koros/maw-side.svg"
  25656. }
  25657. },
  25658. mawSpitting: {
  25659. height: math.unit(17, "feet"),
  25660. name: "Maw (Spitting)",
  25661. image: {
  25662. source: "./media/characters/koros/maw-spitting.svg"
  25663. }
  25664. },
  25665. slit: {
  25666. height: math.unit(2.8, "feet"),
  25667. name: "Slit",
  25668. image: {
  25669. source: "./media/characters/koros/slit.svg"
  25670. }
  25671. },
  25672. stomach: {
  25673. height: math.unit(6.8, "feet"),
  25674. capacity: math.unit(20, "people"),
  25675. name: "Stomach",
  25676. image: {
  25677. source: "./media/characters/koros/stomach.svg"
  25678. }
  25679. },
  25680. wingspanBottom: {
  25681. height: math.unit(114, "feet"),
  25682. name: "Wingspan (Bottom)",
  25683. image: {
  25684. source: "./media/characters/koros/wingspan-bottom.svg"
  25685. }
  25686. },
  25687. wingspanTop: {
  25688. height: math.unit(104, "feet"),
  25689. name: "Wingspan (Top)",
  25690. image: {
  25691. source: "./media/characters/koros/wingspan-top.svg"
  25692. }
  25693. },
  25694. },
  25695. [
  25696. {
  25697. name: "Normal",
  25698. height: math.unit(31 + 8 / 12, "feet"),
  25699. default: true
  25700. },
  25701. ]
  25702. ))
  25703. characterMakers.push(() => makeCharacter(
  25704. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  25705. {
  25706. front: {
  25707. height: math.unit(18 + 5 / 12, "feet"),
  25708. weight: math.unit(3750, "kg"),
  25709. name: "Front",
  25710. image: {
  25711. source: "./media/characters/vexx/front.svg",
  25712. extra: 426 / 396,
  25713. bottom: 31.5 / 458
  25714. }
  25715. },
  25716. maw: {
  25717. height: math.unit(6, "feet"),
  25718. name: "Maw",
  25719. image: {
  25720. source: "./media/characters/vexx/maw.svg"
  25721. }
  25722. },
  25723. },
  25724. [
  25725. {
  25726. name: "Normal",
  25727. height: math.unit(18 + 5 / 12, "feet"),
  25728. default: true
  25729. },
  25730. ]
  25731. ))
  25732. characterMakers.push(() => makeCharacter(
  25733. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  25734. {
  25735. front: {
  25736. height: math.unit(17 + 6 / 12, "feet"),
  25737. weight: math.unit(150, "lb"),
  25738. name: "Front",
  25739. image: {
  25740. source: "./media/characters/baadra/front.svg",
  25741. extra: 3137 / 2890,
  25742. bottom: 168.4 / 3305
  25743. }
  25744. },
  25745. back: {
  25746. height: math.unit(17 + 6 / 12, "feet"),
  25747. weight: math.unit(150, "lb"),
  25748. name: "Back",
  25749. image: {
  25750. source: "./media/characters/baadra/back.svg",
  25751. extra: 3142 / 2890,
  25752. bottom: 220 / 3371
  25753. }
  25754. },
  25755. head: {
  25756. height: math.unit(5.45, "feet"),
  25757. name: "Head",
  25758. image: {
  25759. source: "./media/characters/baadra/head.svg"
  25760. }
  25761. },
  25762. headAngry: {
  25763. height: math.unit(4.95, "feet"),
  25764. name: "Head (Angry)",
  25765. image: {
  25766. source: "./media/characters/baadra/head-angry.svg"
  25767. }
  25768. },
  25769. headOpen: {
  25770. height: math.unit(6, "feet"),
  25771. name: "Head (Open)",
  25772. image: {
  25773. source: "./media/characters/baadra/head-open.svg"
  25774. }
  25775. },
  25776. },
  25777. [
  25778. {
  25779. name: "Normal",
  25780. height: math.unit(17 + 6 / 12, "feet"),
  25781. default: true
  25782. },
  25783. ]
  25784. ))
  25785. characterMakers.push(() => makeCharacter(
  25786. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  25787. {
  25788. front: {
  25789. height: math.unit(7 + 3 / 12, "feet"),
  25790. weight: math.unit(180, "lb"),
  25791. name: "Front",
  25792. image: {
  25793. source: "./media/characters/juri/front.svg",
  25794. extra: 1401 / 1237,
  25795. bottom: 18.5 / 1418
  25796. }
  25797. },
  25798. side: {
  25799. height: math.unit(7 + 3 / 12, "feet"),
  25800. weight: math.unit(180, "lb"),
  25801. name: "Side",
  25802. image: {
  25803. source: "./media/characters/juri/side.svg",
  25804. extra: 1424 / 1242,
  25805. bottom: 18.5 / 1447
  25806. }
  25807. },
  25808. sitting: {
  25809. height: math.unit(6, "feet"),
  25810. weight: math.unit(180, "lb"),
  25811. name: "Sitting",
  25812. image: {
  25813. source: "./media/characters/juri/sitting.svg",
  25814. extra: 1270 / 1143,
  25815. bottom: 100 / 1343
  25816. }
  25817. },
  25818. back: {
  25819. height: math.unit(7 + 3 / 12, "feet"),
  25820. weight: math.unit(180, "lb"),
  25821. name: "Back",
  25822. image: {
  25823. source: "./media/characters/juri/back.svg",
  25824. extra: 1377 / 1240,
  25825. bottom: 23.7 / 1405
  25826. }
  25827. },
  25828. maw: {
  25829. height: math.unit(2.8, "feet"),
  25830. name: "Maw",
  25831. image: {
  25832. source: "./media/characters/juri/maw.svg"
  25833. }
  25834. },
  25835. stomach: {
  25836. height: math.unit(0.89, "feet"),
  25837. capacity: math.unit(4, "liters"),
  25838. name: "Stomach",
  25839. image: {
  25840. source: "./media/characters/juri/stomach.svg"
  25841. }
  25842. },
  25843. },
  25844. [
  25845. {
  25846. name: "Normal",
  25847. height: math.unit(7 + 3 / 12, "feet"),
  25848. default: true
  25849. },
  25850. ]
  25851. ))
  25852. characterMakers.push(() => makeCharacter(
  25853. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  25854. {
  25855. fox: {
  25856. height: math.unit(5 + 6 / 12, "feet"),
  25857. weight: math.unit(140, "lb"),
  25858. name: "Fox",
  25859. image: {
  25860. source: "./media/characters/maxene-sita/fox.svg",
  25861. extra: 146 / 138,
  25862. bottom: 2.1 / 148.19
  25863. }
  25864. },
  25865. foxLaying: {
  25866. height: math.unit(1.70, "feet"),
  25867. weight: math.unit(140, "lb"),
  25868. name: "Fox (Laying)",
  25869. image: {
  25870. source: "./media/characters/maxene-sita/fox-laying.svg",
  25871. extra: 910 / 572,
  25872. bottom: 71 / 981
  25873. }
  25874. },
  25875. kitsune: {
  25876. height: math.unit(10, "feet"),
  25877. weight: math.unit(800, "lb"),
  25878. name: "Kitsune",
  25879. image: {
  25880. source: "./media/characters/maxene-sita/kitsune.svg",
  25881. extra: 185 / 176,
  25882. bottom: 4.7 / 189.9
  25883. }
  25884. },
  25885. hellhound: {
  25886. height: math.unit(10, "feet"),
  25887. weight: math.unit(700, "lb"),
  25888. name: "Hellhound",
  25889. image: {
  25890. source: "./media/characters/maxene-sita/hellhound.svg",
  25891. extra: 1600 / 1545,
  25892. bottom: 81 / 1681
  25893. }
  25894. },
  25895. },
  25896. [
  25897. {
  25898. name: "Normal",
  25899. height: math.unit(5 + 6 / 12, "feet"),
  25900. default: true
  25901. },
  25902. ]
  25903. ))
  25904. characterMakers.push(() => makeCharacter(
  25905. { name: "Maia", species: ["mew"], tags: ["feral"] },
  25906. {
  25907. front: {
  25908. height: math.unit(3 + 4 / 12, "feet"),
  25909. weight: math.unit(70, "lb"),
  25910. name: "Front",
  25911. image: {
  25912. source: "./media/characters/maia/front.svg",
  25913. extra: 227 / 219.5,
  25914. bottom: 40 / 267
  25915. }
  25916. },
  25917. back: {
  25918. height: math.unit(3 + 4 / 12, "feet"),
  25919. weight: math.unit(70, "lb"),
  25920. name: "Back",
  25921. image: {
  25922. source: "./media/characters/maia/back.svg",
  25923. extra: 237 / 225
  25924. }
  25925. },
  25926. },
  25927. [
  25928. {
  25929. name: "Normal",
  25930. height: math.unit(3 + 4 / 12, "feet"),
  25931. default: true
  25932. },
  25933. ]
  25934. ))
  25935. characterMakers.push(() => makeCharacter(
  25936. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  25937. {
  25938. front: {
  25939. height: math.unit(5 + 10 / 12, "feet"),
  25940. weight: math.unit(197, "lb"),
  25941. name: "Front",
  25942. image: {
  25943. source: "./media/characters/jabaro/front.svg",
  25944. extra: 225 / 216,
  25945. bottom: 5.06 / 230
  25946. }
  25947. },
  25948. back: {
  25949. height: math.unit(5 + 10 / 12, "feet"),
  25950. weight: math.unit(197, "lb"),
  25951. name: "Back",
  25952. image: {
  25953. source: "./media/characters/jabaro/back.svg",
  25954. extra: 225 / 219,
  25955. bottom: 1.9 / 227
  25956. }
  25957. },
  25958. },
  25959. [
  25960. {
  25961. name: "Normal",
  25962. height: math.unit(5 + 10 / 12, "feet"),
  25963. default: true
  25964. },
  25965. ]
  25966. ))
  25967. characterMakers.push(() => makeCharacter(
  25968. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  25969. {
  25970. front: {
  25971. height: math.unit(5 + 8 / 12, "feet"),
  25972. weight: math.unit(139, "lb"),
  25973. name: "Front",
  25974. image: {
  25975. source: "./media/characters/risa/front.svg",
  25976. extra: 270 / 260,
  25977. bottom: 11.2 / 282
  25978. }
  25979. },
  25980. back: {
  25981. height: math.unit(5 + 8 / 12, "feet"),
  25982. weight: math.unit(139, "lb"),
  25983. name: "Back",
  25984. image: {
  25985. source: "./media/characters/risa/back.svg",
  25986. extra: 264 / 255,
  25987. bottom: 4 / 268
  25988. }
  25989. },
  25990. },
  25991. [
  25992. {
  25993. name: "Normal",
  25994. height: math.unit(5 + 8 / 12, "feet"),
  25995. default: true
  25996. },
  25997. ]
  25998. ))
  25999. characterMakers.push(() => makeCharacter(
  26000. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  26001. {
  26002. front: {
  26003. height: math.unit(2 + 11 / 12, "feet"),
  26004. weight: math.unit(30, "lb"),
  26005. name: "Front",
  26006. image: {
  26007. source: "./media/characters/weatley/front.svg",
  26008. bottom: 10.7 / 414,
  26009. extra: 403.5 / 362
  26010. }
  26011. },
  26012. back: {
  26013. height: math.unit(2 + 11 / 12, "feet"),
  26014. weight: math.unit(30, "lb"),
  26015. name: "Back",
  26016. image: {
  26017. source: "./media/characters/weatley/back.svg",
  26018. bottom: 10.7 / 414,
  26019. extra: 403.5 / 362
  26020. }
  26021. },
  26022. },
  26023. [
  26024. {
  26025. name: "Normal",
  26026. height: math.unit(2 + 11 / 12, "feet"),
  26027. default: true
  26028. },
  26029. ]
  26030. ))
  26031. characterMakers.push(() => makeCharacter(
  26032. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  26033. {
  26034. front: {
  26035. height: math.unit(5 + 2 / 12, "feet"),
  26036. weight: math.unit(50, "kg"),
  26037. name: "Front",
  26038. image: {
  26039. source: "./media/characters/mercury-crescent/front.svg",
  26040. extra: 1088 / 1033,
  26041. bottom: 18.9 / 1109
  26042. }
  26043. },
  26044. },
  26045. [
  26046. {
  26047. name: "Normal",
  26048. height: math.unit(5 + 2 / 12, "feet"),
  26049. default: true
  26050. },
  26051. ]
  26052. ))
  26053. characterMakers.push(() => makeCharacter(
  26054. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  26055. {
  26056. front: {
  26057. height: math.unit(2, "feet"),
  26058. weight: math.unit(15, "kg"),
  26059. name: "Front",
  26060. image: {
  26061. source: "./media/characters/diamond-jones/front.svg",
  26062. extra: 727/723,
  26063. bottom: 46/773
  26064. }
  26065. },
  26066. },
  26067. [
  26068. {
  26069. name: "Normal",
  26070. height: math.unit(2, "feet"),
  26071. default: true
  26072. },
  26073. ]
  26074. ))
  26075. characterMakers.push(() => makeCharacter(
  26076. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  26077. {
  26078. front: {
  26079. height: math.unit(3, "feet"),
  26080. weight: math.unit(30, "kg"),
  26081. name: "Front",
  26082. image: {
  26083. source: "./media/characters/sweet-bit/front.svg",
  26084. extra: 675 / 567,
  26085. bottom: 27.7 / 703
  26086. }
  26087. },
  26088. },
  26089. [
  26090. {
  26091. name: "Normal",
  26092. height: math.unit(3, "feet"),
  26093. default: true
  26094. },
  26095. ]
  26096. ))
  26097. characterMakers.push(() => makeCharacter(
  26098. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  26099. {
  26100. side: {
  26101. height: math.unit(9.178, "feet"),
  26102. weight: math.unit(500, "lb"),
  26103. name: "Side",
  26104. image: {
  26105. source: "./media/characters/umbrazen/side.svg",
  26106. extra: 1730 / 1473,
  26107. bottom: 34.6 / 1765
  26108. }
  26109. },
  26110. },
  26111. [
  26112. {
  26113. name: "Normal",
  26114. height: math.unit(9.178, "feet"),
  26115. default: true
  26116. },
  26117. ]
  26118. ))
  26119. characterMakers.push(() => makeCharacter(
  26120. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  26121. {
  26122. front: {
  26123. height: math.unit(10, "feet"),
  26124. weight: math.unit(750, "lb"),
  26125. name: "Front",
  26126. image: {
  26127. source: "./media/characters/arlist/front.svg",
  26128. extra: 961 / 778,
  26129. bottom: 6.2 / 986
  26130. }
  26131. },
  26132. },
  26133. [
  26134. {
  26135. name: "Normal",
  26136. height: math.unit(10, "feet"),
  26137. default: true
  26138. },
  26139. ]
  26140. ))
  26141. characterMakers.push(() => makeCharacter(
  26142. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  26143. {
  26144. front: {
  26145. height: math.unit(5 + 1 / 12, "feet"),
  26146. weight: math.unit(110, "lb"),
  26147. name: "Front",
  26148. image: {
  26149. source: "./media/characters/aradel/front.svg",
  26150. extra: 324 / 303,
  26151. bottom: 3.6 / 329.4
  26152. }
  26153. },
  26154. },
  26155. [
  26156. {
  26157. name: "Normal",
  26158. height: math.unit(5 + 1 / 12, "feet"),
  26159. default: true
  26160. },
  26161. ]
  26162. ))
  26163. characterMakers.push(() => makeCharacter(
  26164. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  26165. {
  26166. front: {
  26167. height: math.unit(3 + 8 / 12, "feet"),
  26168. weight: math.unit(50, "lb"),
  26169. name: "Front",
  26170. image: {
  26171. source: "./media/characters/serryn/front.svg",
  26172. extra: 1792 / 1656,
  26173. bottom: 43.5 / 1840
  26174. }
  26175. },
  26176. },
  26177. [
  26178. {
  26179. name: "Normal",
  26180. height: math.unit(3 + 8 / 12, "feet"),
  26181. default: true
  26182. },
  26183. ]
  26184. ))
  26185. characterMakers.push(() => makeCharacter(
  26186. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  26187. {
  26188. front: {
  26189. height: math.unit(7 + 10 / 12, "feet"),
  26190. weight: math.unit(255, "lb"),
  26191. name: "Front",
  26192. image: {
  26193. source: "./media/characters/xavier-thyme/front.svg",
  26194. extra: 3733 / 3642,
  26195. bottom: 131 / 3869
  26196. }
  26197. },
  26198. frontRaven: {
  26199. height: math.unit(7 + 10 / 12, "feet"),
  26200. weight: math.unit(255, "lb"),
  26201. name: "Front (Raven)",
  26202. image: {
  26203. source: "./media/characters/xavier-thyme/front-raven.svg",
  26204. extra: 4385 / 3642,
  26205. bottom: 131 / 4517
  26206. }
  26207. },
  26208. },
  26209. [
  26210. {
  26211. name: "Normal",
  26212. height: math.unit(7 + 10 / 12, "feet"),
  26213. default: true
  26214. },
  26215. ]
  26216. ))
  26217. characterMakers.push(() => makeCharacter(
  26218. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  26219. {
  26220. front: {
  26221. height: math.unit(1.6, "m"),
  26222. weight: math.unit(50, "kg"),
  26223. name: "Front",
  26224. image: {
  26225. source: "./media/characters/kiki/front.svg",
  26226. extra: 4682 / 3610,
  26227. bottom: 115 / 4777
  26228. }
  26229. },
  26230. },
  26231. [
  26232. {
  26233. name: "Normal",
  26234. height: math.unit(1.6, "meters"),
  26235. default: true
  26236. },
  26237. ]
  26238. ))
  26239. characterMakers.push(() => makeCharacter(
  26240. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  26241. {
  26242. front: {
  26243. height: math.unit(50, "m"),
  26244. weight: math.unit(500, "tonnes"),
  26245. name: "Front",
  26246. image: {
  26247. source: "./media/characters/ryoko/front.svg",
  26248. extra: 4632 / 3926,
  26249. bottom: 193 / 4823
  26250. }
  26251. },
  26252. },
  26253. [
  26254. {
  26255. name: "Normal",
  26256. height: math.unit(50, "meters"),
  26257. default: true
  26258. },
  26259. ]
  26260. ))
  26261. characterMakers.push(() => makeCharacter(
  26262. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  26263. {
  26264. front: {
  26265. height: math.unit(30, "m"),
  26266. weight: math.unit(22, "tonnes"),
  26267. name: "Front",
  26268. image: {
  26269. source: "./media/characters/elio/front.svg",
  26270. extra: 4582 / 3720,
  26271. bottom: 236 / 4828
  26272. }
  26273. },
  26274. },
  26275. [
  26276. {
  26277. name: "Normal",
  26278. height: math.unit(30, "meters"),
  26279. default: true
  26280. },
  26281. ]
  26282. ))
  26283. characterMakers.push(() => makeCharacter(
  26284. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  26285. {
  26286. front: {
  26287. height: math.unit(6 + 3 / 12, "feet"),
  26288. weight: math.unit(120, "lb"),
  26289. name: "Front",
  26290. image: {
  26291. source: "./media/characters/azura/front.svg",
  26292. extra: 1149 / 1135,
  26293. bottom: 45 / 1194
  26294. }
  26295. },
  26296. frontClothed: {
  26297. height: math.unit(6 + 3 / 12, "feet"),
  26298. weight: math.unit(120, "lb"),
  26299. name: "Front (Clothed)",
  26300. image: {
  26301. source: "./media/characters/azura/front-clothed.svg",
  26302. extra: 1149 / 1135,
  26303. bottom: 45 / 1194
  26304. }
  26305. },
  26306. },
  26307. [
  26308. {
  26309. name: "Normal",
  26310. height: math.unit(6 + 3 / 12, "feet"),
  26311. default: true
  26312. },
  26313. {
  26314. name: "Macro",
  26315. height: math.unit(20 + 6 / 12, "feet")
  26316. },
  26317. {
  26318. name: "Megamacro",
  26319. height: math.unit(12, "miles")
  26320. },
  26321. {
  26322. name: "Gigamacro",
  26323. height: math.unit(10000, "miles")
  26324. },
  26325. {
  26326. name: "Teramacro",
  26327. height: math.unit(900000, "miles")
  26328. },
  26329. ]
  26330. ))
  26331. characterMakers.push(() => makeCharacter(
  26332. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  26333. {
  26334. front: {
  26335. height: math.unit(12, "feet"),
  26336. weight: math.unit(1, "ton"),
  26337. capacity: math.unit(660000, "gallons"),
  26338. name: "Front",
  26339. image: {
  26340. source: "./media/characters/zeus/front.svg",
  26341. extra: 5005 / 4717,
  26342. bottom: 363 / 5388
  26343. }
  26344. },
  26345. },
  26346. [
  26347. {
  26348. name: "Normal",
  26349. height: math.unit(12, "feet")
  26350. },
  26351. {
  26352. name: "Preferred Size",
  26353. height: math.unit(0.5, "miles"),
  26354. default: true
  26355. },
  26356. {
  26357. name: "Giga Horse",
  26358. height: math.unit(300, "miles")
  26359. },
  26360. {
  26361. name: "Riding Planets",
  26362. height: math.unit(30, "megameters")
  26363. },
  26364. {
  26365. name: "Cosmic Giant",
  26366. height: math.unit(3, "zettameters")
  26367. },
  26368. {
  26369. name: "Breeding God",
  26370. height: math.unit(9.92e22, "yottameters")
  26371. },
  26372. ]
  26373. ))
  26374. characterMakers.push(() => makeCharacter(
  26375. { name: "Fang", species: ["monster"], tags: ["feral"] },
  26376. {
  26377. side: {
  26378. height: math.unit(9, "feet"),
  26379. weight: math.unit(1500, "kg"),
  26380. name: "Side",
  26381. image: {
  26382. source: "./media/characters/fang/side.svg",
  26383. extra: 924 / 866,
  26384. bottom: 47.5 / 972.3
  26385. }
  26386. },
  26387. },
  26388. [
  26389. {
  26390. name: "Normal",
  26391. height: math.unit(9, "feet"),
  26392. default: true
  26393. },
  26394. {
  26395. name: "Macro",
  26396. height: math.unit(75 + 6 / 12, "feet")
  26397. },
  26398. {
  26399. name: "Teramacro",
  26400. height: math.unit(50000, "miles")
  26401. },
  26402. ]
  26403. ))
  26404. characterMakers.push(() => makeCharacter(
  26405. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  26406. {
  26407. front: {
  26408. height: math.unit(10, "feet"),
  26409. weight: math.unit(2, "tons"),
  26410. name: "Front",
  26411. image: {
  26412. source: "./media/characters/rekhit/front.svg",
  26413. extra: 2796 / 2590,
  26414. bottom: 225 / 3022
  26415. }
  26416. },
  26417. },
  26418. [
  26419. {
  26420. name: "Normal",
  26421. height: math.unit(10, "feet"),
  26422. default: true
  26423. },
  26424. {
  26425. name: "Macro",
  26426. height: math.unit(500, "feet")
  26427. },
  26428. ]
  26429. ))
  26430. characterMakers.push(() => makeCharacter(
  26431. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  26432. {
  26433. front: {
  26434. height: math.unit(7 + 6.451 / 12, "feet"),
  26435. weight: math.unit(310, "lb"),
  26436. name: "Front",
  26437. image: {
  26438. source: "./media/characters/dahlia-verrick/front.svg",
  26439. extra: 1488 / 1365,
  26440. bottom: 6.2 / 1495
  26441. }
  26442. },
  26443. back: {
  26444. height: math.unit(7 + 6.451 / 12, "feet"),
  26445. weight: math.unit(310, "lb"),
  26446. name: "Back",
  26447. image: {
  26448. source: "./media/characters/dahlia-verrick/back.svg",
  26449. extra: 1472 / 1351,
  26450. bottom: 5.28 / 1477
  26451. }
  26452. },
  26453. frontBusiness: {
  26454. height: math.unit(7 + 6.451 / 12, "feet"),
  26455. weight: math.unit(200, "lb"),
  26456. name: "Front (Business)",
  26457. image: {
  26458. source: "./media/characters/dahlia-verrick/front-business.svg",
  26459. extra: 1478 / 1381,
  26460. bottom: 5.5 / 1484
  26461. }
  26462. },
  26463. frontCasual: {
  26464. height: math.unit(7 + 6.451 / 12, "feet"),
  26465. weight: math.unit(200, "lb"),
  26466. name: "Front (Casual)",
  26467. image: {
  26468. source: "./media/characters/dahlia-verrick/front-casual.svg",
  26469. extra: 1478 / 1381,
  26470. bottom: 5.5 / 1484
  26471. }
  26472. },
  26473. },
  26474. [
  26475. {
  26476. name: "Travel-Sized",
  26477. height: math.unit(7.45, "inches")
  26478. },
  26479. {
  26480. name: "Normal",
  26481. height: math.unit(7 + 6.451 / 12, "feet"),
  26482. default: true
  26483. },
  26484. {
  26485. name: "Hitting the Town",
  26486. height: math.unit(37 + 8 / 12, "feet")
  26487. },
  26488. {
  26489. name: "Stomp in the Suburbs",
  26490. height: math.unit(964 + 9.728 / 12, "feet")
  26491. },
  26492. {
  26493. name: "Sit on the City",
  26494. height: math.unit(61747 + 10.592 / 12, "feet")
  26495. },
  26496. {
  26497. name: "Glomp the Globe",
  26498. height: math.unit(252919327 + 4.832 / 12, "feet")
  26499. },
  26500. ]
  26501. ))
  26502. characterMakers.push(() => makeCharacter(
  26503. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  26504. {
  26505. front: {
  26506. height: math.unit(6 + 4 / 12, "feet"),
  26507. weight: math.unit(320, "lb"),
  26508. name: "Front",
  26509. image: {
  26510. source: "./media/characters/balina-mahigan/front.svg",
  26511. extra: 447 / 428,
  26512. bottom: 18 / 466
  26513. }
  26514. },
  26515. back: {
  26516. height: math.unit(6 + 4 / 12, "feet"),
  26517. weight: math.unit(320, "lb"),
  26518. name: "Back",
  26519. image: {
  26520. source: "./media/characters/balina-mahigan/back.svg",
  26521. extra: 445 / 428,
  26522. bottom: 4.07 / 448
  26523. }
  26524. },
  26525. arm: {
  26526. height: math.unit(1.88, "feet"),
  26527. name: "Arm",
  26528. image: {
  26529. source: "./media/characters/balina-mahigan/arm.svg"
  26530. }
  26531. },
  26532. backPort: {
  26533. height: math.unit(0.685, "feet"),
  26534. name: "Back Port",
  26535. image: {
  26536. source: "./media/characters/balina-mahigan/back-port.svg"
  26537. }
  26538. },
  26539. hoofpaw: {
  26540. height: math.unit(1.41, "feet"),
  26541. name: "Hoofpaw",
  26542. image: {
  26543. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  26544. }
  26545. },
  26546. leftHandBack: {
  26547. height: math.unit(0.938, "feet"),
  26548. name: "Left Hand (Back)",
  26549. image: {
  26550. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  26551. }
  26552. },
  26553. leftHandFront: {
  26554. height: math.unit(0.938, "feet"),
  26555. name: "Left Hand (Front)",
  26556. image: {
  26557. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  26558. }
  26559. },
  26560. rightHandBack: {
  26561. height: math.unit(0.95, "feet"),
  26562. name: "Right Hand (Back)",
  26563. image: {
  26564. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  26565. }
  26566. },
  26567. rightHandFront: {
  26568. height: math.unit(0.95, "feet"),
  26569. name: "Right Hand (Front)",
  26570. image: {
  26571. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  26572. }
  26573. },
  26574. },
  26575. [
  26576. {
  26577. name: "Normal",
  26578. height: math.unit(6 + 4 / 12, "feet"),
  26579. default: true
  26580. },
  26581. ]
  26582. ))
  26583. characterMakers.push(() => makeCharacter(
  26584. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  26585. {
  26586. front: {
  26587. height: math.unit(6, "feet"),
  26588. weight: math.unit(320, "lb"),
  26589. name: "Front",
  26590. image: {
  26591. source: "./media/characters/balina-mejeri/front.svg",
  26592. extra: 517 / 488,
  26593. bottom: 44.2 / 561
  26594. }
  26595. },
  26596. },
  26597. [
  26598. {
  26599. name: "Normal",
  26600. height: math.unit(6 + 4 / 12, "feet")
  26601. },
  26602. {
  26603. name: "Business",
  26604. height: math.unit(155, "feet"),
  26605. default: true
  26606. },
  26607. ]
  26608. ))
  26609. characterMakers.push(() => makeCharacter(
  26610. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  26611. {
  26612. kneeling: {
  26613. height: math.unit(6 + 4 / 12, "feet"),
  26614. weight: math.unit(300 * 20, "lb"),
  26615. name: "Kneeling",
  26616. image: {
  26617. source: "./media/characters/balbarian/kneeling.svg",
  26618. extra: 922 / 862,
  26619. bottom: 42.4 / 965
  26620. }
  26621. },
  26622. },
  26623. [
  26624. {
  26625. name: "Normal",
  26626. height: math.unit(6 + 4 / 12, "feet")
  26627. },
  26628. {
  26629. name: "Treasured",
  26630. height: math.unit(18 + 9 / 12, "feet"),
  26631. default: true
  26632. },
  26633. {
  26634. name: "Macro",
  26635. height: math.unit(900, "feet")
  26636. },
  26637. ]
  26638. ))
  26639. characterMakers.push(() => makeCharacter(
  26640. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  26641. {
  26642. front: {
  26643. height: math.unit(6 + 4 / 12, "feet"),
  26644. weight: math.unit(325, "lb"),
  26645. name: "Front",
  26646. image: {
  26647. source: "./media/characters/balina-amarini/front.svg",
  26648. extra: 415 / 403,
  26649. bottom: 19 / 433.4
  26650. }
  26651. },
  26652. back: {
  26653. height: math.unit(6 + 4 / 12, "feet"),
  26654. weight: math.unit(325, "lb"),
  26655. name: "Back",
  26656. image: {
  26657. source: "./media/characters/balina-amarini/back.svg",
  26658. extra: 415 / 403,
  26659. bottom: 13.5 / 432
  26660. }
  26661. },
  26662. overdrive: {
  26663. height: math.unit(6 + 4 / 12, "feet"),
  26664. weight: math.unit(400, "lb"),
  26665. name: "Overdrive",
  26666. image: {
  26667. source: "./media/characters/balina-amarini/overdrive.svg",
  26668. extra: 269 / 259,
  26669. bottom: 12 / 282
  26670. }
  26671. },
  26672. },
  26673. [
  26674. {
  26675. name: "Boom",
  26676. height: math.unit(9 + 10 / 12, "feet"),
  26677. default: true
  26678. },
  26679. {
  26680. name: "Macro",
  26681. height: math.unit(280, "feet")
  26682. },
  26683. ]
  26684. ))
  26685. characterMakers.push(() => makeCharacter(
  26686. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  26687. {
  26688. goddess: {
  26689. height: math.unit(600, "feet"),
  26690. weight: math.unit(2000000, "tons"),
  26691. name: "Goddess",
  26692. image: {
  26693. source: "./media/characters/lady-kubwa/goddess.svg",
  26694. extra: 1240.5 / 1223,
  26695. bottom: 22 / 1263
  26696. }
  26697. },
  26698. goddesser: {
  26699. height: math.unit(900, "feet"),
  26700. weight: math.unit(20000000, "lb"),
  26701. name: "Goddess-er",
  26702. image: {
  26703. source: "./media/characters/lady-kubwa/goddess-er.svg",
  26704. extra: 899 / 888,
  26705. bottom: 12.6 / 912
  26706. }
  26707. },
  26708. },
  26709. [
  26710. {
  26711. name: "Macro",
  26712. height: math.unit(600, "feet"),
  26713. default: true
  26714. },
  26715. {
  26716. name: "Megamacro",
  26717. height: math.unit(250, "miles")
  26718. },
  26719. ]
  26720. ))
  26721. characterMakers.push(() => makeCharacter(
  26722. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  26723. {
  26724. front: {
  26725. height: math.unit(7 + 7 / 12, "feet"),
  26726. weight: math.unit(250, "lb"),
  26727. name: "Front",
  26728. image: {
  26729. source: "./media/characters/tala-grovehorn/front.svg",
  26730. extra: 2636 / 2525,
  26731. bottom: 147 / 2781
  26732. }
  26733. },
  26734. back: {
  26735. height: math.unit(7 + 7 / 12, "feet"),
  26736. weight: math.unit(250, "lb"),
  26737. name: "Back",
  26738. image: {
  26739. source: "./media/characters/tala-grovehorn/back.svg",
  26740. extra: 2635 / 2539,
  26741. bottom: 100 / 2732.8
  26742. }
  26743. },
  26744. mouth: {
  26745. height: math.unit(1.15, "feet"),
  26746. name: "Mouth",
  26747. image: {
  26748. source: "./media/characters/tala-grovehorn/mouth.svg"
  26749. }
  26750. },
  26751. dick: {
  26752. height: math.unit(2.36, "feet"),
  26753. name: "Dick",
  26754. image: {
  26755. source: "./media/characters/tala-grovehorn/dick.svg"
  26756. }
  26757. },
  26758. slit: {
  26759. height: math.unit(0.61, "feet"),
  26760. name: "Slit",
  26761. image: {
  26762. source: "./media/characters/tala-grovehorn/slit.svg"
  26763. }
  26764. },
  26765. },
  26766. [
  26767. ]
  26768. ))
  26769. characterMakers.push(() => makeCharacter(
  26770. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  26771. {
  26772. front: {
  26773. height: math.unit(7 + 7 / 12, "feet"),
  26774. weight: math.unit(225, "lb"),
  26775. name: "Front",
  26776. image: {
  26777. source: "./media/characters/epona/front.svg",
  26778. extra: 2445 / 2290,
  26779. bottom: 251 / 2696
  26780. }
  26781. },
  26782. back: {
  26783. height: math.unit(7 + 7 / 12, "feet"),
  26784. weight: math.unit(225, "lb"),
  26785. name: "Back",
  26786. image: {
  26787. source: "./media/characters/epona/back.svg",
  26788. extra: 2546 / 2408,
  26789. bottom: 44 / 2589
  26790. }
  26791. },
  26792. genitals: {
  26793. height: math.unit(1.5, "feet"),
  26794. name: "Genitals",
  26795. image: {
  26796. source: "./media/characters/epona/genitals.svg"
  26797. }
  26798. },
  26799. },
  26800. [
  26801. {
  26802. name: "Normal",
  26803. height: math.unit(7 + 7 / 12, "feet"),
  26804. default: true
  26805. },
  26806. ]
  26807. ))
  26808. characterMakers.push(() => makeCharacter(
  26809. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  26810. {
  26811. front: {
  26812. height: math.unit(7, "feet"),
  26813. weight: math.unit(518, "lb"),
  26814. name: "Front",
  26815. image: {
  26816. source: "./media/characters/avia-bloodbourn/front.svg",
  26817. extra: 1466 / 1350,
  26818. bottom: 65 / 1527
  26819. }
  26820. },
  26821. },
  26822. [
  26823. ]
  26824. ))
  26825. characterMakers.push(() => makeCharacter(
  26826. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  26827. {
  26828. front: {
  26829. height: math.unit(9.35, "feet"),
  26830. weight: math.unit(600, "lb"),
  26831. name: "Front",
  26832. image: {
  26833. source: "./media/characters/amera/front.svg",
  26834. extra: 891 / 818,
  26835. bottom: 30 / 922.7
  26836. }
  26837. },
  26838. back: {
  26839. height: math.unit(9.35, "feet"),
  26840. weight: math.unit(600, "lb"),
  26841. name: "Back",
  26842. image: {
  26843. source: "./media/characters/amera/back.svg",
  26844. extra: 876 / 824,
  26845. bottom: 6.8 / 884
  26846. }
  26847. },
  26848. dick: {
  26849. height: math.unit(2.14, "feet"),
  26850. name: "Dick",
  26851. image: {
  26852. source: "./media/characters/amera/dick.svg"
  26853. }
  26854. },
  26855. },
  26856. [
  26857. {
  26858. name: "Normal",
  26859. height: math.unit(9.35, "feet"),
  26860. default: true
  26861. },
  26862. ]
  26863. ))
  26864. characterMakers.push(() => makeCharacter(
  26865. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  26866. {
  26867. kneeling: {
  26868. height: math.unit(3 + 4 / 12, "feet"),
  26869. weight: math.unit(90, "lb"),
  26870. name: "Kneeling",
  26871. image: {
  26872. source: "./media/characters/rosewen/kneeling.svg",
  26873. extra: 1835 / 1571,
  26874. bottom: 27.7 / 1862
  26875. }
  26876. },
  26877. },
  26878. [
  26879. {
  26880. name: "Normal",
  26881. height: math.unit(3 + 4 / 12, "feet"),
  26882. default: true
  26883. },
  26884. ]
  26885. ))
  26886. characterMakers.push(() => makeCharacter(
  26887. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  26888. {
  26889. front: {
  26890. height: math.unit(5 + 10 / 12, "feet"),
  26891. weight: math.unit(200, "lb"),
  26892. name: "Front",
  26893. image: {
  26894. source: "./media/characters/sabah/front.svg",
  26895. extra: 849 / 763,
  26896. bottom: 33.9 / 881
  26897. }
  26898. },
  26899. },
  26900. [
  26901. {
  26902. name: "Normal",
  26903. height: math.unit(5 + 10 / 12, "feet"),
  26904. default: true
  26905. },
  26906. ]
  26907. ))
  26908. characterMakers.push(() => makeCharacter(
  26909. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  26910. {
  26911. front: {
  26912. height: math.unit(3 + 5 / 12, "feet"),
  26913. weight: math.unit(40, "kg"),
  26914. name: "Front",
  26915. image: {
  26916. source: "./media/characters/purple-flame/front.svg",
  26917. extra: 1577 / 1412,
  26918. bottom: 97 / 1694
  26919. }
  26920. },
  26921. frontDressed: {
  26922. height: math.unit(3 + 5 / 12, "feet"),
  26923. weight: math.unit(40, "kg"),
  26924. name: "Front (Dressed)",
  26925. image: {
  26926. source: "./media/characters/purple-flame/front-dressed.svg",
  26927. extra: 1577 / 1412,
  26928. bottom: 97 / 1694
  26929. }
  26930. },
  26931. headphones: {
  26932. height: math.unit(0.85, "feet"),
  26933. name: "Headphones",
  26934. image: {
  26935. source: "./media/characters/purple-flame/headphones.svg"
  26936. }
  26937. },
  26938. },
  26939. [
  26940. {
  26941. name: "Really Small",
  26942. height: math.unit(5, "cm")
  26943. },
  26944. {
  26945. name: "Micro",
  26946. height: math.unit(1 + 5 / 12, "feet")
  26947. },
  26948. {
  26949. name: "Normal",
  26950. height: math.unit(3 + 5 / 12, "feet"),
  26951. default: true
  26952. },
  26953. {
  26954. name: "Minimacro",
  26955. height: math.unit(125, "feet")
  26956. },
  26957. {
  26958. name: "Macro",
  26959. height: math.unit(0.5, "miles")
  26960. },
  26961. {
  26962. name: "Megamacro",
  26963. height: math.unit(50, "miles")
  26964. },
  26965. {
  26966. name: "Gigantic",
  26967. height: math.unit(750, "miles")
  26968. },
  26969. {
  26970. name: "Planetary",
  26971. height: math.unit(15000, "miles")
  26972. },
  26973. ]
  26974. ))
  26975. characterMakers.push(() => makeCharacter(
  26976. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  26977. {
  26978. front: {
  26979. height: math.unit(14, "feet"),
  26980. weight: math.unit(959, "lb"),
  26981. name: "Front",
  26982. image: {
  26983. source: "./media/characters/arsenal/front.svg",
  26984. extra: 2357 / 2157,
  26985. bottom: 93 / 2458
  26986. }
  26987. },
  26988. },
  26989. [
  26990. {
  26991. name: "Normal",
  26992. height: math.unit(14, "feet"),
  26993. default: true
  26994. },
  26995. ]
  26996. ))
  26997. characterMakers.push(() => makeCharacter(
  26998. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  26999. {
  27000. front: {
  27001. height: math.unit(6, "feet"),
  27002. weight: math.unit(150, "lb"),
  27003. name: "Front",
  27004. image: {
  27005. source: "./media/characters/adira/front.svg",
  27006. extra: 1078 / 1029,
  27007. bottom: 87 / 1166
  27008. }
  27009. },
  27010. },
  27011. [
  27012. {
  27013. name: "Micro",
  27014. height: math.unit(4, "inches"),
  27015. default: true
  27016. },
  27017. {
  27018. name: "Macro",
  27019. height: math.unit(50, "feet")
  27020. },
  27021. ]
  27022. ))
  27023. characterMakers.push(() => makeCharacter(
  27024. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  27025. {
  27026. front: {
  27027. height: math.unit(16, "feet"),
  27028. weight: math.unit(1000, "lb"),
  27029. name: "Front",
  27030. image: {
  27031. source: "./media/characters/grim/front.svg",
  27032. extra: 622 / 614,
  27033. bottom: 18.1 / 642
  27034. }
  27035. },
  27036. back: {
  27037. height: math.unit(16, "feet"),
  27038. weight: math.unit(1000, "lb"),
  27039. name: "Back",
  27040. image: {
  27041. source: "./media/characters/grim/back.svg",
  27042. extra: 610.6 / 602,
  27043. bottom: 40.8 / 652
  27044. }
  27045. },
  27046. hunched: {
  27047. height: math.unit(9.75, "feet"),
  27048. weight: math.unit(1000, "lb"),
  27049. name: "Hunched",
  27050. image: {
  27051. source: "./media/characters/grim/hunched.svg",
  27052. extra: 304 / 297,
  27053. bottom: 35.4 / 394
  27054. }
  27055. },
  27056. },
  27057. [
  27058. {
  27059. name: "Normal",
  27060. height: math.unit(16, "feet"),
  27061. default: true
  27062. },
  27063. ]
  27064. ))
  27065. characterMakers.push(() => makeCharacter(
  27066. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  27067. {
  27068. front: {
  27069. height: math.unit(2.3, "meters"),
  27070. weight: math.unit(300, "lb"),
  27071. name: "Front",
  27072. image: {
  27073. source: "./media/characters/sinja/front-sfw.svg",
  27074. extra: 1393 / 1294,
  27075. bottom: 70 / 1463
  27076. }
  27077. },
  27078. frontNsfw: {
  27079. height: math.unit(2.3, "meters"),
  27080. weight: math.unit(300, "lb"),
  27081. name: "Front (NSFW)",
  27082. image: {
  27083. source: "./media/characters/sinja/front-nsfw.svg",
  27084. extra: 1393 / 1294,
  27085. bottom: 70 / 1463
  27086. }
  27087. },
  27088. back: {
  27089. height: math.unit(2.3, "meters"),
  27090. weight: math.unit(300, "lb"),
  27091. name: "Back",
  27092. image: {
  27093. source: "./media/characters/sinja/back.svg",
  27094. extra: 1393 / 1294,
  27095. bottom: 70 / 1463
  27096. }
  27097. },
  27098. head: {
  27099. height: math.unit(1.771, "feet"),
  27100. name: "Head",
  27101. image: {
  27102. source: "./media/characters/sinja/head.svg"
  27103. }
  27104. },
  27105. slit: {
  27106. height: math.unit(0.8, "feet"),
  27107. name: "Slit",
  27108. image: {
  27109. source: "./media/characters/sinja/slit.svg"
  27110. }
  27111. },
  27112. },
  27113. [
  27114. {
  27115. name: "Normal",
  27116. height: math.unit(2.3, "meters")
  27117. },
  27118. {
  27119. name: "Macro",
  27120. height: math.unit(91, "meters"),
  27121. default: true
  27122. },
  27123. {
  27124. name: "Megamacro",
  27125. height: math.unit(91440, "meters")
  27126. },
  27127. {
  27128. name: "Gigamacro",
  27129. height: math.unit(60960000, "meters")
  27130. },
  27131. {
  27132. name: "Teramacro",
  27133. height: math.unit(9144000000, "meters")
  27134. },
  27135. ]
  27136. ))
  27137. characterMakers.push(() => makeCharacter(
  27138. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  27139. {
  27140. front: {
  27141. height: math.unit(1.7, "meters"),
  27142. weight: math.unit(130, "lb"),
  27143. name: "Front",
  27144. image: {
  27145. source: "./media/characters/kyu/front.svg",
  27146. extra: 415 / 395,
  27147. bottom: 5 / 420
  27148. }
  27149. },
  27150. head: {
  27151. height: math.unit(1.75, "feet"),
  27152. name: "Head",
  27153. image: {
  27154. source: "./media/characters/kyu/head.svg"
  27155. }
  27156. },
  27157. foot: {
  27158. height: math.unit(0.81, "feet"),
  27159. name: "Foot",
  27160. image: {
  27161. source: "./media/characters/kyu/foot.svg"
  27162. }
  27163. },
  27164. },
  27165. [
  27166. {
  27167. name: "Normal",
  27168. height: math.unit(1.7, "meters")
  27169. },
  27170. {
  27171. name: "Macro",
  27172. height: math.unit(131, "feet"),
  27173. default: true
  27174. },
  27175. {
  27176. name: "Megamacro",
  27177. height: math.unit(91440, "meters")
  27178. },
  27179. {
  27180. name: "Gigamacro",
  27181. height: math.unit(60960000, "meters")
  27182. },
  27183. {
  27184. name: "Teramacro",
  27185. height: math.unit(9144000000, "meters")
  27186. },
  27187. ]
  27188. ))
  27189. characterMakers.push(() => makeCharacter(
  27190. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  27191. {
  27192. front: {
  27193. height: math.unit(7 + 1 / 12, "feet"),
  27194. weight: math.unit(250, "lb"),
  27195. name: "Front",
  27196. image: {
  27197. source: "./media/characters/joey/front.svg",
  27198. extra: 1791 / 1537,
  27199. bottom: 28 / 1816
  27200. }
  27201. },
  27202. },
  27203. [
  27204. {
  27205. name: "Micro",
  27206. height: math.unit(3, "inches")
  27207. },
  27208. {
  27209. name: "Normal",
  27210. height: math.unit(7 + 1 / 12, "feet"),
  27211. default: true
  27212. },
  27213. ]
  27214. ))
  27215. characterMakers.push(() => makeCharacter(
  27216. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  27217. {
  27218. front: {
  27219. height: math.unit(165, "cm"),
  27220. weight: math.unit(140, "lb"),
  27221. name: "Front",
  27222. image: {
  27223. source: "./media/characters/sam-evans/front.svg",
  27224. extra: 3417 / 3230,
  27225. bottom: 41.3 / 3417
  27226. }
  27227. },
  27228. frontSixTails: {
  27229. height: math.unit(165, "cm"),
  27230. weight: math.unit(140, "lb"),
  27231. name: "Front-six-tails",
  27232. image: {
  27233. source: "./media/characters/sam-evans/front-six-tails.svg",
  27234. extra: 3417 / 3230,
  27235. bottom: 41.3 / 3417
  27236. }
  27237. },
  27238. back: {
  27239. height: math.unit(165, "cm"),
  27240. weight: math.unit(140, "lb"),
  27241. name: "Back",
  27242. image: {
  27243. source: "./media/characters/sam-evans/back.svg",
  27244. extra: 3227 / 3032,
  27245. bottom: 6.8 / 3234
  27246. }
  27247. },
  27248. face: {
  27249. height: math.unit(0.68, "feet"),
  27250. name: "Face",
  27251. image: {
  27252. source: "./media/characters/sam-evans/face.svg"
  27253. }
  27254. },
  27255. },
  27256. [
  27257. {
  27258. name: "Normal",
  27259. height: math.unit(165, "cm"),
  27260. default: true
  27261. },
  27262. {
  27263. name: "Macro",
  27264. height: math.unit(100, "meters")
  27265. },
  27266. {
  27267. name: "Macro+",
  27268. height: math.unit(800, "meters")
  27269. },
  27270. {
  27271. name: "Macro++",
  27272. height: math.unit(3, "km")
  27273. },
  27274. {
  27275. name: "Macro+++",
  27276. height: math.unit(30, "km")
  27277. },
  27278. ]
  27279. ))
  27280. characterMakers.push(() => makeCharacter(
  27281. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  27282. {
  27283. front: {
  27284. height: math.unit(10, "feet"),
  27285. weight: math.unit(750, "lb"),
  27286. name: "Front",
  27287. image: {
  27288. source: "./media/characters/juliet-a/front.svg",
  27289. extra: 1766 / 1720,
  27290. bottom: 43 / 1809
  27291. }
  27292. },
  27293. back: {
  27294. height: math.unit(10, "feet"),
  27295. weight: math.unit(750, "lb"),
  27296. name: "Back",
  27297. image: {
  27298. source: "./media/characters/juliet-a/back.svg",
  27299. extra: 1781 / 1734,
  27300. bottom: 35 / 1810,
  27301. }
  27302. },
  27303. },
  27304. [
  27305. {
  27306. name: "Normal",
  27307. height: math.unit(10, "feet"),
  27308. default: true
  27309. },
  27310. {
  27311. name: "Dragon Form",
  27312. height: math.unit(250, "feet")
  27313. },
  27314. {
  27315. name: "Macro",
  27316. height: math.unit(1000, "feet")
  27317. },
  27318. {
  27319. name: "Megamacro",
  27320. height: math.unit(10000, "feet")
  27321. }
  27322. ]
  27323. ))
  27324. characterMakers.push(() => makeCharacter(
  27325. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  27326. {
  27327. regular: {
  27328. height: math.unit(7 + 3 / 12, "feet"),
  27329. weight: math.unit(260, "lb"),
  27330. name: "Regular",
  27331. image: {
  27332. source: "./media/characters/wild/regular.svg",
  27333. extra: 97.45 / 92,
  27334. bottom: 6.8 / 104.3
  27335. }
  27336. },
  27337. biggums: {
  27338. height: math.unit(8 + 6 / 12, "feet"),
  27339. weight: math.unit(425, "lb"),
  27340. name: "Biggums",
  27341. image: {
  27342. source: "./media/characters/wild/biggums.svg",
  27343. extra: 97.45 / 92,
  27344. bottom: 7.5 / 132.34
  27345. }
  27346. },
  27347. mawRegular: {
  27348. height: math.unit(1.24, "feet"),
  27349. name: "Maw (Regular)",
  27350. image: {
  27351. source: "./media/characters/wild/maw.svg"
  27352. }
  27353. },
  27354. mawBiggums: {
  27355. height: math.unit(1.47, "feet"),
  27356. name: "Maw (Biggums)",
  27357. image: {
  27358. source: "./media/characters/wild/maw.svg"
  27359. }
  27360. },
  27361. },
  27362. [
  27363. {
  27364. name: "Normal",
  27365. height: math.unit(7 + 3 / 12, "feet"),
  27366. default: true
  27367. },
  27368. ]
  27369. ))
  27370. characterMakers.push(() => makeCharacter(
  27371. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  27372. {
  27373. front: {
  27374. height: math.unit(2.5, "meters"),
  27375. weight: math.unit(200, "kg"),
  27376. name: "Front",
  27377. image: {
  27378. source: "./media/characters/vidar/front.svg",
  27379. extra: 2994 / 2795,
  27380. bottom: 56 / 3061
  27381. }
  27382. },
  27383. back: {
  27384. height: math.unit(2.5, "meters"),
  27385. weight: math.unit(200, "kg"),
  27386. name: "Back",
  27387. image: {
  27388. source: "./media/characters/vidar/back.svg",
  27389. extra: 3131 / 2928,
  27390. bottom: 13.5 / 3141.5
  27391. }
  27392. },
  27393. feral: {
  27394. height: math.unit(2.5, "meters"),
  27395. weight: math.unit(2000, "kg"),
  27396. name: "Feral",
  27397. image: {
  27398. source: "./media/characters/vidar/feral.svg",
  27399. extra: 2790 / 1765,
  27400. bottom: 6 / 2796
  27401. }
  27402. },
  27403. },
  27404. [
  27405. {
  27406. name: "Normal",
  27407. height: math.unit(2.5, "meters"),
  27408. default: true
  27409. },
  27410. {
  27411. name: "Macro",
  27412. height: math.unit(100, "meters")
  27413. },
  27414. ]
  27415. ))
  27416. characterMakers.push(() => makeCharacter(
  27417. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  27418. {
  27419. front: {
  27420. height: math.unit(5 + 9 / 12, "feet"),
  27421. weight: math.unit(120, "lb"),
  27422. name: "Front",
  27423. image: {
  27424. source: "./media/characters/ash/front.svg",
  27425. extra: 2189 / 1961,
  27426. bottom: 5.2 / 2194
  27427. }
  27428. },
  27429. },
  27430. [
  27431. {
  27432. name: "Normal",
  27433. height: math.unit(5 + 9 / 12, "feet"),
  27434. default: true
  27435. },
  27436. ]
  27437. ))
  27438. characterMakers.push(() => makeCharacter(
  27439. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  27440. {
  27441. front: {
  27442. height: math.unit(9, "feet"),
  27443. weight: math.unit(10000, "lb"),
  27444. name: "Front",
  27445. image: {
  27446. source: "./media/characters/gygabite/front.svg",
  27447. bottom: 31.7 / 537.8,
  27448. extra: 505 / 370
  27449. }
  27450. },
  27451. },
  27452. [
  27453. {
  27454. name: "Normal",
  27455. height: math.unit(9, "feet"),
  27456. default: true
  27457. },
  27458. ]
  27459. ))
  27460. characterMakers.push(() => makeCharacter(
  27461. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  27462. {
  27463. front: {
  27464. height: math.unit(12, "feet"),
  27465. weight: math.unit(35000, "lb"),
  27466. name: "Front",
  27467. image: {
  27468. source: "./media/characters/p0tat0/front.svg",
  27469. extra: 1065 / 921,
  27470. bottom: 55.7 / 1121.25
  27471. }
  27472. },
  27473. },
  27474. [
  27475. {
  27476. name: "Normal",
  27477. height: math.unit(12, "feet"),
  27478. default: true
  27479. },
  27480. ]
  27481. ))
  27482. characterMakers.push(() => makeCharacter(
  27483. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  27484. {
  27485. side: {
  27486. height: math.unit(6.5, "feet"),
  27487. weight: math.unit(800, "lb"),
  27488. name: "Side",
  27489. image: {
  27490. source: "./media/characters/dusk/side.svg",
  27491. extra: 615 / 373,
  27492. bottom: 53 / 664
  27493. }
  27494. },
  27495. sitting: {
  27496. height: math.unit(7, "feet"),
  27497. weight: math.unit(800, "lb"),
  27498. name: "Sitting",
  27499. image: {
  27500. source: "./media/characters/dusk/sitting.svg",
  27501. extra: 753 / 425,
  27502. bottom: 33 / 774
  27503. }
  27504. },
  27505. head: {
  27506. height: math.unit(6.1, "feet"),
  27507. name: "Head",
  27508. image: {
  27509. source: "./media/characters/dusk/head.svg"
  27510. }
  27511. },
  27512. },
  27513. [
  27514. {
  27515. name: "Normal",
  27516. height: math.unit(7, "feet"),
  27517. default: true
  27518. },
  27519. ]
  27520. ))
  27521. characterMakers.push(() => makeCharacter(
  27522. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  27523. {
  27524. front: {
  27525. height: math.unit(15, "feet"),
  27526. weight: math.unit(7000, "lb"),
  27527. name: "Front",
  27528. image: {
  27529. source: "./media/characters/jay-direwolf/front.svg",
  27530. extra: 1810 / 1732,
  27531. bottom: 66 / 1892
  27532. }
  27533. },
  27534. },
  27535. [
  27536. {
  27537. name: "Normal",
  27538. height: math.unit(15, "feet"),
  27539. default: true
  27540. },
  27541. ]
  27542. ))
  27543. characterMakers.push(() => makeCharacter(
  27544. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  27545. {
  27546. front: {
  27547. height: math.unit(4 + 9 / 12, "feet"),
  27548. weight: math.unit(130, "lb"),
  27549. name: "Front",
  27550. image: {
  27551. source: "./media/characters/anchovie/front.svg",
  27552. extra: 382 / 350,
  27553. bottom: 25 / 409
  27554. }
  27555. },
  27556. back: {
  27557. height: math.unit(4 + 9 / 12, "feet"),
  27558. weight: math.unit(130, "lb"),
  27559. name: "Back",
  27560. image: {
  27561. source: "./media/characters/anchovie/back.svg",
  27562. extra: 385 / 352,
  27563. bottom: 16.6 / 402
  27564. }
  27565. },
  27566. frontDressed: {
  27567. height: math.unit(4 + 9 / 12, "feet"),
  27568. weight: math.unit(130, "lb"),
  27569. name: "Front (Dressed)",
  27570. image: {
  27571. source: "./media/characters/anchovie/front-dressed.svg",
  27572. extra: 382 / 350,
  27573. bottom: 25 / 409
  27574. }
  27575. },
  27576. backDressed: {
  27577. height: math.unit(4 + 9 / 12, "feet"),
  27578. weight: math.unit(130, "lb"),
  27579. name: "Back (Dressed)",
  27580. image: {
  27581. source: "./media/characters/anchovie/back-dressed.svg",
  27582. extra: 385 / 352,
  27583. bottom: 16.6 / 402
  27584. }
  27585. },
  27586. },
  27587. [
  27588. {
  27589. name: "Micro",
  27590. height: math.unit(6.4, "inches")
  27591. },
  27592. {
  27593. name: "Normal",
  27594. height: math.unit(4 + 9 / 12, "feet"),
  27595. default: true
  27596. },
  27597. ]
  27598. ))
  27599. characterMakers.push(() => makeCharacter(
  27600. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  27601. {
  27602. front: {
  27603. height: math.unit(2, "meters"),
  27604. weight: math.unit(180, "lb"),
  27605. name: "Front",
  27606. image: {
  27607. source: "./media/characters/acidrenamon/front.svg",
  27608. extra: 987 / 890,
  27609. bottom: 22.8 / 1009
  27610. }
  27611. },
  27612. back: {
  27613. height: math.unit(2, "meters"),
  27614. weight: math.unit(180, "lb"),
  27615. name: "Back",
  27616. image: {
  27617. source: "./media/characters/acidrenamon/back.svg",
  27618. extra: 983 / 891,
  27619. bottom: 8.4 / 992
  27620. }
  27621. },
  27622. head: {
  27623. height: math.unit(1.92, "feet"),
  27624. name: "Head",
  27625. image: {
  27626. source: "./media/characters/acidrenamon/head.svg"
  27627. }
  27628. },
  27629. rump: {
  27630. height: math.unit(1.72, "feet"),
  27631. name: "Rump",
  27632. image: {
  27633. source: "./media/characters/acidrenamon/rump.svg"
  27634. }
  27635. },
  27636. tail: {
  27637. height: math.unit(4.2, "feet"),
  27638. name: "Tail",
  27639. image: {
  27640. source: "./media/characters/acidrenamon/tail.svg"
  27641. }
  27642. },
  27643. },
  27644. [
  27645. {
  27646. name: "Normal",
  27647. height: math.unit(2, "meters"),
  27648. default: true
  27649. },
  27650. {
  27651. name: "Minimacro",
  27652. height: math.unit(7, "meters")
  27653. },
  27654. {
  27655. name: "Macro",
  27656. height: math.unit(200, "meters")
  27657. },
  27658. {
  27659. name: "Gigamacro",
  27660. height: math.unit(0.2, "earths")
  27661. },
  27662. ]
  27663. ))
  27664. characterMakers.push(() => makeCharacter(
  27665. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  27666. {
  27667. front: {
  27668. height: math.unit(6, "feet"),
  27669. weight: math.unit(150, "lb"),
  27670. name: "Front",
  27671. image: {
  27672. source: "./media/characters/kenzie-lee/front.svg",
  27673. extra: 1525 / 1465,
  27674. bottom: 45 / 1570
  27675. }
  27676. },
  27677. side: {
  27678. height: math.unit(6, "feet"),
  27679. weight: math.unit(150, "lb"),
  27680. name: "Side",
  27681. image: {
  27682. source: "./media/characters/kenzie-lee/side.svg",
  27683. extra: 5505 / 5383,
  27684. bottom: 60 / 5573
  27685. }
  27686. },
  27687. paw: {
  27688. height: math.unit(0.57, "feet"),
  27689. name: "Paw",
  27690. image: {
  27691. source: "./media/characters/kenzie-lee/paw.svg"
  27692. }
  27693. },
  27694. },
  27695. [
  27696. {
  27697. name: "Normal",
  27698. height: math.unit(152, "feet"),
  27699. default: true
  27700. },
  27701. {
  27702. name: "Megamacro",
  27703. height: math.unit(7, "miles")
  27704. },
  27705. {
  27706. name: "Gigamacro",
  27707. height: math.unit(8000, "miles")
  27708. },
  27709. ]
  27710. ))
  27711. characterMakers.push(() => makeCharacter(
  27712. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  27713. {
  27714. side: {
  27715. height: math.unit(6, "feet"),
  27716. weight: math.unit(150, "lb"),
  27717. name: "Side",
  27718. image: {
  27719. source: "./media/characters/withers/side.svg",
  27720. extra: 1830 / 1728,
  27721. bottom: 96 / 1927
  27722. }
  27723. },
  27724. front: {
  27725. height: math.unit(6, "feet"),
  27726. weight: math.unit(150, "lb"),
  27727. name: "Front",
  27728. image: {
  27729. source: "./media/characters/withers/front.svg",
  27730. extra: 1514 / 1438,
  27731. bottom: 118 / 1632
  27732. }
  27733. },
  27734. },
  27735. [
  27736. {
  27737. name: "Macro",
  27738. height: math.unit(168, "feet"),
  27739. default: true
  27740. },
  27741. {
  27742. name: "Megamacro",
  27743. height: math.unit(15, "miles")
  27744. }
  27745. ]
  27746. ))
  27747. characterMakers.push(() => makeCharacter(
  27748. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  27749. {
  27750. front: {
  27751. height: math.unit(6 + 7 / 12, "feet"),
  27752. weight: math.unit(250, "lb"),
  27753. name: "Front",
  27754. image: {
  27755. source: "./media/characters/nemoskii/front.svg",
  27756. extra: 2270 / 1734,
  27757. bottom: 86 / 2354
  27758. }
  27759. },
  27760. back: {
  27761. height: math.unit(6 + 7 / 12, "feet"),
  27762. weight: math.unit(250, "lb"),
  27763. name: "Back",
  27764. image: {
  27765. source: "./media/characters/nemoskii/back.svg",
  27766. extra: 1845 / 1788,
  27767. bottom: 10.5 / 1852
  27768. }
  27769. },
  27770. head: {
  27771. height: math.unit(1.31, "feet"),
  27772. name: "Head",
  27773. image: {
  27774. source: "./media/characters/nemoskii/head.svg"
  27775. }
  27776. },
  27777. },
  27778. [
  27779. {
  27780. name: "Micro",
  27781. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  27782. },
  27783. {
  27784. name: "Normal",
  27785. height: math.unit(6 + 7 / 12, "feet"),
  27786. default: true
  27787. },
  27788. {
  27789. name: "Macro",
  27790. height: math.unit((6 + 7 / 12) * 150, "feet")
  27791. },
  27792. {
  27793. name: "Macro+",
  27794. height: math.unit((6 + 7 / 12) * 500, "feet")
  27795. },
  27796. {
  27797. name: "Megamacro",
  27798. height: math.unit((6 + 7 / 12) * 100000, "feet")
  27799. },
  27800. ]
  27801. ))
  27802. characterMakers.push(() => makeCharacter(
  27803. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  27804. {
  27805. front: {
  27806. height: math.unit(1, "mile"),
  27807. weight: math.unit(265261.9, "lb"),
  27808. name: "Front",
  27809. image: {
  27810. source: "./media/characters/shui/front.svg",
  27811. extra: 1633 / 1564,
  27812. bottom: 91.5 / 1726
  27813. }
  27814. },
  27815. },
  27816. [
  27817. {
  27818. name: "Macro",
  27819. height: math.unit(1, "mile"),
  27820. default: true
  27821. },
  27822. ]
  27823. ))
  27824. characterMakers.push(() => makeCharacter(
  27825. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  27826. {
  27827. front: {
  27828. height: math.unit(12 + 6 / 12, "feet"),
  27829. weight: math.unit(1342, "lb"),
  27830. name: "Front",
  27831. image: {
  27832. source: "./media/characters/arokh-takakura/front.svg",
  27833. extra: 1089 / 1043,
  27834. bottom: 77.4 / 1176.7
  27835. }
  27836. },
  27837. back: {
  27838. height: math.unit(12 + 6 / 12, "feet"),
  27839. weight: math.unit(1342, "lb"),
  27840. name: "Back",
  27841. image: {
  27842. source: "./media/characters/arokh-takakura/back.svg",
  27843. extra: 1046 / 1019,
  27844. bottom: 102 / 1150
  27845. }
  27846. },
  27847. },
  27848. [
  27849. {
  27850. name: "Big",
  27851. height: math.unit(12 + 6 / 12, "feet"),
  27852. default: true
  27853. },
  27854. ]
  27855. ))
  27856. characterMakers.push(() => makeCharacter(
  27857. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  27858. {
  27859. front: {
  27860. height: math.unit(5 + 6 / 12, "feet"),
  27861. weight: math.unit(150, "lb"),
  27862. name: "Front",
  27863. image: {
  27864. source: "./media/characters/theo/front.svg",
  27865. extra: 1184 / 1131,
  27866. bottom: 7.4 / 1191
  27867. }
  27868. },
  27869. },
  27870. [
  27871. {
  27872. name: "Micro",
  27873. height: math.unit(5, "inches")
  27874. },
  27875. {
  27876. name: "Normal",
  27877. height: math.unit(5 + 6 / 12, "feet"),
  27878. default: true
  27879. },
  27880. ]
  27881. ))
  27882. characterMakers.push(() => makeCharacter(
  27883. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  27884. {
  27885. front: {
  27886. height: math.unit(5 + 9 / 12, "feet"),
  27887. weight: math.unit(130, "lb"),
  27888. name: "Front",
  27889. image: {
  27890. source: "./media/characters/cecelia-swift/front.svg",
  27891. extra: 502 / 484,
  27892. bottom: 23 / 523
  27893. }
  27894. },
  27895. back: {
  27896. height: math.unit(5 + 9 / 12, "feet"),
  27897. weight: math.unit(130, "lb"),
  27898. name: "Back",
  27899. image: {
  27900. source: "./media/characters/cecelia-swift/back.svg",
  27901. extra: 499 / 485,
  27902. bottom: 12 / 511
  27903. }
  27904. },
  27905. head: {
  27906. height: math.unit(0.90, "feet"),
  27907. name: "Head",
  27908. image: {
  27909. source: "./media/characters/cecelia-swift/head.svg"
  27910. }
  27911. },
  27912. rump: {
  27913. height: math.unit(1.75, "feet"),
  27914. name: "Rump",
  27915. image: {
  27916. source: "./media/characters/cecelia-swift/rump.svg"
  27917. }
  27918. },
  27919. },
  27920. [
  27921. {
  27922. name: "Normal",
  27923. height: math.unit(5 + 9 / 12, "feet"),
  27924. default: true
  27925. },
  27926. {
  27927. name: "Big",
  27928. height: math.unit(50, "feet")
  27929. },
  27930. {
  27931. name: "Macro",
  27932. height: math.unit(100, "feet")
  27933. },
  27934. {
  27935. name: "Macro+",
  27936. height: math.unit(500, "feet")
  27937. },
  27938. {
  27939. name: "Macro++",
  27940. height: math.unit(1000, "feet")
  27941. },
  27942. ]
  27943. ))
  27944. characterMakers.push(() => makeCharacter(
  27945. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  27946. {
  27947. front: {
  27948. height: math.unit(6, "feet"),
  27949. weight: math.unit(150, "lb"),
  27950. name: "Front",
  27951. image: {
  27952. source: "./media/characters/kaunan/front.svg",
  27953. extra: 2890 / 2523,
  27954. bottom: 49 / 2939
  27955. }
  27956. },
  27957. },
  27958. [
  27959. {
  27960. name: "Macro",
  27961. height: math.unit(150, "feet"),
  27962. default: true
  27963. },
  27964. ]
  27965. ))
  27966. characterMakers.push(() => makeCharacter(
  27967. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  27968. {
  27969. front: {
  27970. height: math.unit(175, "cm"),
  27971. weight: math.unit(60, "kg"),
  27972. name: "Front",
  27973. image: {
  27974. source: "./media/characters/fei/front.svg",
  27975. extra: 1873/1723,
  27976. bottom: 53/1926
  27977. }
  27978. },
  27979. },
  27980. [
  27981. {
  27982. name: "Mortal",
  27983. height: math.unit(175, "cm")
  27984. },
  27985. {
  27986. name: "Normal",
  27987. height: math.unit(3500, "m"),
  27988. default: true
  27989. },
  27990. {
  27991. name: "Stroll",
  27992. height: math.unit(17.5, "km")
  27993. },
  27994. {
  27995. name: "Showoff",
  27996. height: math.unit(175, "km")
  27997. },
  27998. ]
  27999. ))
  28000. characterMakers.push(() => makeCharacter(
  28001. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  28002. {
  28003. front: {
  28004. height: math.unit(7, "feet"),
  28005. weight: math.unit(1000, "kg"),
  28006. name: "Front",
  28007. image: {
  28008. source: "./media/characters/edrax/front.svg",
  28009. extra: 2838 / 2550,
  28010. bottom: 130 / 2968
  28011. }
  28012. },
  28013. },
  28014. [
  28015. {
  28016. name: "Small",
  28017. height: math.unit(7, "feet")
  28018. },
  28019. {
  28020. name: "Normal",
  28021. height: math.unit(1500, "meters")
  28022. },
  28023. {
  28024. name: "Mega",
  28025. height: math.unit(12000000, "km"),
  28026. default: true
  28027. },
  28028. {
  28029. name: "Megamacro",
  28030. height: math.unit(10600000, "lightyears")
  28031. },
  28032. {
  28033. name: "Hypermacro",
  28034. height: math.unit(256, "yottameters")
  28035. },
  28036. ]
  28037. ))
  28038. characterMakers.push(() => makeCharacter(
  28039. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  28040. {
  28041. front: {
  28042. height: math.unit(10, "feet"),
  28043. weight: math.unit(750, "lb"),
  28044. name: "Front",
  28045. image: {
  28046. source: "./media/characters/clove/front.svg",
  28047. extra: 2031 / 1860,
  28048. bottom: 47.8 / 2080
  28049. }
  28050. },
  28051. back: {
  28052. height: math.unit(10, "feet"),
  28053. weight: math.unit(750, "lb"),
  28054. name: "Back",
  28055. image: {
  28056. source: "./media/characters/clove/back.svg",
  28057. extra: 2025 / 1859,
  28058. bottom: 46 / 2071
  28059. }
  28060. },
  28061. },
  28062. [
  28063. {
  28064. name: "Normal",
  28065. height: math.unit(10, "feet"),
  28066. default: true
  28067. },
  28068. ]
  28069. ))
  28070. characterMakers.push(() => makeCharacter(
  28071. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  28072. {
  28073. front: {
  28074. height: math.unit(4, "feet"),
  28075. weight: math.unit(50, "lb"),
  28076. name: "Front",
  28077. image: {
  28078. source: "./media/characters/alex-rabbit/front.svg",
  28079. extra: 507 / 458,
  28080. bottom: 18.5 / 527
  28081. }
  28082. },
  28083. back: {
  28084. height: math.unit(4, "feet"),
  28085. weight: math.unit(50, "lb"),
  28086. name: "Back",
  28087. image: {
  28088. source: "./media/characters/alex-rabbit/back.svg",
  28089. extra: 502 / 460,
  28090. bottom: 18.9 / 521
  28091. }
  28092. },
  28093. },
  28094. [
  28095. {
  28096. name: "Normal",
  28097. height: math.unit(4, "feet"),
  28098. default: true
  28099. },
  28100. ]
  28101. ))
  28102. characterMakers.push(() => makeCharacter(
  28103. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  28104. {
  28105. front: {
  28106. height: math.unit(1 + 3 / 12, "feet"),
  28107. weight: math.unit(80, "lb"),
  28108. name: "Front",
  28109. image: {
  28110. source: "./media/characters/zander-rose/front.svg",
  28111. extra: 916 / 797,
  28112. bottom: 17 / 933
  28113. }
  28114. },
  28115. back: {
  28116. height: math.unit(1 + 3 / 12, "feet"),
  28117. weight: math.unit(80, "lb"),
  28118. name: "Back",
  28119. image: {
  28120. source: "./media/characters/zander-rose/back.svg",
  28121. extra: 903 / 779,
  28122. bottom: 31 / 934
  28123. }
  28124. },
  28125. },
  28126. [
  28127. {
  28128. name: "Normal",
  28129. height: math.unit(1 + 3 / 12, "feet"),
  28130. default: true
  28131. },
  28132. ]
  28133. ))
  28134. characterMakers.push(() => makeCharacter(
  28135. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  28136. {
  28137. anthro: {
  28138. height: math.unit(6, "feet"),
  28139. weight: math.unit(150, "lb"),
  28140. name: "Anthro",
  28141. image: {
  28142. source: "./media/characters/razz/anthro.svg",
  28143. extra: 1437 / 1343,
  28144. bottom: 48 / 1485
  28145. }
  28146. },
  28147. feral: {
  28148. height: math.unit(6, "feet"),
  28149. weight: math.unit(150, "lb"),
  28150. name: "Feral",
  28151. image: {
  28152. source: "./media/characters/razz/feral.svg",
  28153. extra: 2569 / 1385,
  28154. bottom: 95 / 2664
  28155. }
  28156. },
  28157. },
  28158. [
  28159. {
  28160. name: "Normal",
  28161. height: math.unit(6, "feet"),
  28162. default: true
  28163. },
  28164. ]
  28165. ))
  28166. characterMakers.push(() => makeCharacter(
  28167. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  28168. {
  28169. front: {
  28170. height: math.unit(9 + 4 / 12, "feet"),
  28171. weight: math.unit(500, "lb"),
  28172. name: "Front",
  28173. image: {
  28174. source: "./media/characters/morrigan/front.svg",
  28175. extra: 2707 / 2579,
  28176. bottom: 156 / 2863
  28177. }
  28178. },
  28179. },
  28180. [
  28181. {
  28182. name: "Normal",
  28183. height: math.unit(9 + 4 / 12, "feet"),
  28184. default: true
  28185. },
  28186. ]
  28187. ))
  28188. characterMakers.push(() => makeCharacter(
  28189. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  28190. {
  28191. front: {
  28192. height: math.unit(5, "stories"),
  28193. weight: math.unit(4000, "lb"),
  28194. name: "Front",
  28195. image: {
  28196. source: "./media/characters/jenene/front.svg",
  28197. extra: 1780 / 1710,
  28198. bottom: 57 / 1837
  28199. }
  28200. },
  28201. },
  28202. [
  28203. {
  28204. name: "Normal",
  28205. height: math.unit(5, "stories"),
  28206. default: true
  28207. },
  28208. ]
  28209. ))
  28210. characterMakers.push(() => makeCharacter(
  28211. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  28212. {
  28213. taurSfw: {
  28214. height: math.unit(10, "meters"),
  28215. weight: math.unit(17500, "kg"),
  28216. name: "Taur",
  28217. image: {
  28218. source: "./media/characters/faey/taur-sfw.svg",
  28219. extra: 1200 / 968,
  28220. bottom: 41 / 1241
  28221. }
  28222. },
  28223. chestmaw: {
  28224. height: math.unit(2.01, "meters"),
  28225. name: "Chestmaw",
  28226. image: {
  28227. source: "./media/characters/faey/chestmaw.svg"
  28228. }
  28229. },
  28230. foot: {
  28231. height: math.unit(2.43, "meters"),
  28232. name: "Foot",
  28233. image: {
  28234. source: "./media/characters/faey/foot.svg"
  28235. }
  28236. },
  28237. jaws: {
  28238. height: math.unit(1.66, "meters"),
  28239. name: "Jaws",
  28240. image: {
  28241. source: "./media/characters/faey/jaws.svg"
  28242. }
  28243. },
  28244. tongues: {
  28245. height: math.unit(2.01, "meters"),
  28246. name: "Tongues",
  28247. image: {
  28248. source: "./media/characters/faey/tongues.svg"
  28249. }
  28250. },
  28251. },
  28252. [
  28253. {
  28254. name: "Small",
  28255. height: math.unit(10, "meters"),
  28256. default: true
  28257. },
  28258. {
  28259. name: "Big",
  28260. height: math.unit(500000, "km")
  28261. },
  28262. ]
  28263. ))
  28264. characterMakers.push(() => makeCharacter(
  28265. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  28266. {
  28267. front: {
  28268. height: math.unit(7, "feet"),
  28269. weight: math.unit(275, "lb"),
  28270. name: "Front",
  28271. image: {
  28272. source: "./media/characters/roku/front.svg",
  28273. extra: 903 / 878,
  28274. bottom: 37 / 940
  28275. }
  28276. },
  28277. },
  28278. [
  28279. {
  28280. name: "Normal",
  28281. height: math.unit(7, "feet"),
  28282. default: true
  28283. },
  28284. {
  28285. name: "Macro",
  28286. height: math.unit(500, "feet")
  28287. },
  28288. {
  28289. name: "Megamacro",
  28290. height: math.unit(200, "miles")
  28291. },
  28292. ]
  28293. ))
  28294. characterMakers.push(() => makeCharacter(
  28295. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  28296. {
  28297. front: {
  28298. height: math.unit(6 + 2 / 12, "feet"),
  28299. weight: math.unit(150, "lb"),
  28300. name: "Front",
  28301. image: {
  28302. source: "./media/characters/lira/front.svg",
  28303. extra: 1727 / 1605,
  28304. bottom: 26 / 1753
  28305. }
  28306. },
  28307. back: {
  28308. height: math.unit(6 + 2 / 12, "feet"),
  28309. weight: math.unit(150, "lb"),
  28310. name: "Back",
  28311. image: {
  28312. source: "./media/characters/lira/back.svg",
  28313. extra: 1713/1621,
  28314. bottom: 20/1733
  28315. }
  28316. },
  28317. hand: {
  28318. height: math.unit(0.75, "feet"),
  28319. name: "Hand",
  28320. image: {
  28321. source: "./media/characters/lira/hand.svg"
  28322. }
  28323. },
  28324. maw: {
  28325. height: math.unit(0.65, "feet"),
  28326. name: "Maw",
  28327. image: {
  28328. source: "./media/characters/lira/maw.svg"
  28329. }
  28330. },
  28331. pawDigi: {
  28332. height: math.unit(1.6, "feet"),
  28333. name: "Paw Digi",
  28334. image: {
  28335. source: "./media/characters/lira/paw-digi.svg"
  28336. }
  28337. },
  28338. pawPlanti: {
  28339. height: math.unit(1.4, "feet"),
  28340. name: "Paw Planti",
  28341. image: {
  28342. source: "./media/characters/lira/paw-planti.svg"
  28343. }
  28344. },
  28345. },
  28346. [
  28347. {
  28348. name: "Normal",
  28349. height: math.unit(6 + 2 / 12, "feet"),
  28350. default: true
  28351. },
  28352. {
  28353. name: "Macro",
  28354. height: math.unit(100, "feet")
  28355. },
  28356. {
  28357. name: "Macro²",
  28358. height: math.unit(1600, "feet")
  28359. },
  28360. {
  28361. name: "Planetary",
  28362. height: math.unit(20, "earths")
  28363. },
  28364. ]
  28365. ))
  28366. characterMakers.push(() => makeCharacter(
  28367. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  28368. {
  28369. front: {
  28370. height: math.unit(6, "feet"),
  28371. weight: math.unit(150, "lb"),
  28372. name: "Front",
  28373. image: {
  28374. source: "./media/characters/hadjet/front.svg",
  28375. extra: 1480 / 1346,
  28376. bottom: 26 / 1506
  28377. }
  28378. },
  28379. frontNsfw: {
  28380. height: math.unit(6, "feet"),
  28381. weight: math.unit(150, "lb"),
  28382. name: "Front (NSFW)",
  28383. image: {
  28384. source: "./media/characters/hadjet/front-nsfw.svg",
  28385. extra: 1440 / 1358,
  28386. bottom: 52 / 1492
  28387. }
  28388. },
  28389. },
  28390. [
  28391. {
  28392. name: "Macro",
  28393. height: math.unit(10, "stories"),
  28394. default: true
  28395. },
  28396. {
  28397. name: "Megamacro",
  28398. height: math.unit(1.5, "miles")
  28399. },
  28400. {
  28401. name: "Megamacro+",
  28402. height: math.unit(5, "miles")
  28403. },
  28404. ]
  28405. ))
  28406. characterMakers.push(() => makeCharacter(
  28407. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  28408. {
  28409. side: {
  28410. height: math.unit(106, "feet"),
  28411. weight: math.unit(500, "tonnes"),
  28412. name: "Side",
  28413. image: {
  28414. source: "./media/characters/kodran/side.svg",
  28415. extra: 553 / 480,
  28416. bottom: 33 / 586
  28417. }
  28418. },
  28419. front: {
  28420. height: math.unit(132, "feet"),
  28421. weight: math.unit(500, "tonnes"),
  28422. name: "Front",
  28423. image: {
  28424. source: "./media/characters/kodran/front.svg",
  28425. extra: 667 / 643,
  28426. bottom: 42 / 709
  28427. }
  28428. },
  28429. flying: {
  28430. height: math.unit(350, "feet"),
  28431. weight: math.unit(500, "tonnes"),
  28432. name: "Flying",
  28433. image: {
  28434. source: "./media/characters/kodran/flying.svg"
  28435. }
  28436. },
  28437. foot: {
  28438. height: math.unit(33, "feet"),
  28439. name: "Foot",
  28440. image: {
  28441. source: "./media/characters/kodran/foot.svg"
  28442. }
  28443. },
  28444. footFront: {
  28445. height: math.unit(19, "feet"),
  28446. name: "Foot (Front)",
  28447. image: {
  28448. source: "./media/characters/kodran/foot-front.svg",
  28449. extra: 261 / 261,
  28450. bottom: 91 / 352
  28451. }
  28452. },
  28453. headFront: {
  28454. height: math.unit(53, "feet"),
  28455. name: "Head (Front)",
  28456. image: {
  28457. source: "./media/characters/kodran/head-front.svg"
  28458. }
  28459. },
  28460. headSide: {
  28461. height: math.unit(65, "feet"),
  28462. name: "Head (Side)",
  28463. image: {
  28464. source: "./media/characters/kodran/head-side.svg"
  28465. }
  28466. },
  28467. throat: {
  28468. height: math.unit(79, "feet"),
  28469. name: "Throat",
  28470. image: {
  28471. source: "./media/characters/kodran/throat.svg"
  28472. }
  28473. },
  28474. },
  28475. [
  28476. {
  28477. name: "Large",
  28478. height: math.unit(106, "feet"),
  28479. default: true
  28480. },
  28481. ]
  28482. ))
  28483. characterMakers.push(() => makeCharacter(
  28484. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  28485. {
  28486. side: {
  28487. height: math.unit(11, "feet"),
  28488. weight: math.unit(150, "lb"),
  28489. name: "Side",
  28490. image: {
  28491. source: "./media/characters/pyxaron/side.svg",
  28492. extra: 305 / 195,
  28493. bottom: 17 / 322
  28494. }
  28495. },
  28496. },
  28497. [
  28498. {
  28499. name: "Normal",
  28500. height: math.unit(11, "feet"),
  28501. default: true
  28502. },
  28503. ]
  28504. ))
  28505. characterMakers.push(() => makeCharacter(
  28506. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  28507. {
  28508. front: {
  28509. height: math.unit(6, "feet"),
  28510. weight: math.unit(150, "lb"),
  28511. name: "Front",
  28512. image: {
  28513. source: "./media/characters/meep/front.svg",
  28514. extra: 88 / 80,
  28515. bottom: 6 / 94
  28516. }
  28517. },
  28518. },
  28519. [
  28520. {
  28521. name: "Fun Sized",
  28522. height: math.unit(2, "inches"),
  28523. default: true
  28524. },
  28525. {
  28526. name: "Friend Sized",
  28527. height: math.unit(8, "inches")
  28528. },
  28529. ]
  28530. ))
  28531. characterMakers.push(() => makeCharacter(
  28532. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  28533. {
  28534. front: {
  28535. height: math.unit(15, "feet"),
  28536. weight: math.unit(2500, "lb"),
  28537. name: "Front",
  28538. image: {
  28539. source: "./media/characters/holly-rabbit/front.svg",
  28540. extra: 1433 / 1233,
  28541. bottom: 125 / 1558
  28542. }
  28543. },
  28544. dick: {
  28545. height: math.unit(4.6, "feet"),
  28546. name: "Dick",
  28547. image: {
  28548. source: "./media/characters/holly-rabbit/dick.svg"
  28549. }
  28550. },
  28551. },
  28552. [
  28553. {
  28554. name: "Normal",
  28555. height: math.unit(15, "feet"),
  28556. default: true
  28557. },
  28558. {
  28559. name: "Macro",
  28560. height: math.unit(250, "feet")
  28561. },
  28562. {
  28563. name: "Macro+",
  28564. height: math.unit(2500, "feet")
  28565. },
  28566. ]
  28567. ))
  28568. characterMakers.push(() => makeCharacter(
  28569. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  28570. {
  28571. front: {
  28572. height: math.unit(3.02, "meters"),
  28573. weight: math.unit(500, "kg"),
  28574. name: "Front",
  28575. image: {
  28576. source: "./media/characters/drena/front.svg",
  28577. extra: 282 / 243,
  28578. bottom: 8 / 290
  28579. }
  28580. },
  28581. side: {
  28582. height: math.unit(3.02, "meters"),
  28583. weight: math.unit(500, "kg"),
  28584. name: "Side",
  28585. image: {
  28586. source: "./media/characters/drena/side.svg",
  28587. extra: 280 / 245,
  28588. bottom: 10 / 290
  28589. }
  28590. },
  28591. back: {
  28592. height: math.unit(3.02, "meters"),
  28593. weight: math.unit(500, "kg"),
  28594. name: "Back",
  28595. image: {
  28596. source: "./media/characters/drena/back.svg",
  28597. extra: 278 / 243,
  28598. bottom: 2 / 280
  28599. }
  28600. },
  28601. foot: {
  28602. height: math.unit(0.75, "meters"),
  28603. name: "Foot",
  28604. image: {
  28605. source: "./media/characters/drena/foot.svg"
  28606. }
  28607. },
  28608. maw: {
  28609. height: math.unit(0.82, "meters"),
  28610. name: "Maw",
  28611. image: {
  28612. source: "./media/characters/drena/maw.svg"
  28613. }
  28614. },
  28615. rump: {
  28616. height: math.unit(0.93, "meters"),
  28617. name: "Rump",
  28618. image: {
  28619. source: "./media/characters/drena/rump.svg"
  28620. }
  28621. },
  28622. },
  28623. [
  28624. {
  28625. name: "Normal",
  28626. height: math.unit(3.02, "meters"),
  28627. default: true
  28628. },
  28629. ]
  28630. ))
  28631. characterMakers.push(() => makeCharacter(
  28632. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  28633. {
  28634. front: {
  28635. height: math.unit(6 + 4 / 12, "feet"),
  28636. weight: math.unit(250, "lb"),
  28637. name: "Front",
  28638. image: {
  28639. source: "./media/characters/remmyzilla/front.svg",
  28640. extra: 4033 / 3588,
  28641. bottom: 123 / 4156
  28642. }
  28643. },
  28644. back: {
  28645. height: math.unit(6 + 4 / 12, "feet"),
  28646. weight: math.unit(250, "lb"),
  28647. name: "Back",
  28648. image: {
  28649. source: "./media/characters/remmyzilla/back.svg",
  28650. extra: 2687 / 2555,
  28651. bottom: 48 / 2735
  28652. }
  28653. },
  28654. paw: {
  28655. height: math.unit(1.73, "feet"),
  28656. name: "Paw",
  28657. image: {
  28658. source: "./media/characters/remmyzilla/paw.svg"
  28659. }
  28660. },
  28661. maw: {
  28662. height: math.unit(1.73, "feet"),
  28663. name: "Maw",
  28664. image: {
  28665. source: "./media/characters/remmyzilla/maw.svg"
  28666. }
  28667. },
  28668. },
  28669. [
  28670. {
  28671. name: "Normal",
  28672. height: math.unit(6 + 4 / 12, "feet")
  28673. },
  28674. {
  28675. name: "Minimacro",
  28676. height: math.unit(12 + 8 / 12, "feet")
  28677. },
  28678. {
  28679. name: "Normal",
  28680. height: math.unit(640, "feet"),
  28681. default: true
  28682. },
  28683. {
  28684. name: "Megamacro",
  28685. height: math.unit(6400, "feet")
  28686. },
  28687. {
  28688. name: "Gigamacro",
  28689. height: math.unit(64000, "miles")
  28690. },
  28691. ]
  28692. ))
  28693. characterMakers.push(() => makeCharacter(
  28694. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  28695. {
  28696. front: {
  28697. height: math.unit(2.5, "meters"),
  28698. weight: math.unit(300, "lb"),
  28699. name: "Front",
  28700. image: {
  28701. source: "./media/characters/lawrence/front.svg",
  28702. extra: 357 / 335,
  28703. bottom: 30 / 387
  28704. }
  28705. },
  28706. back: {
  28707. height: math.unit(2.5, "meters"),
  28708. weight: math.unit(300, "lb"),
  28709. name: "Back",
  28710. image: {
  28711. source: "./media/characters/lawrence/back.svg",
  28712. extra: 357 / 338,
  28713. bottom: 16 / 373
  28714. }
  28715. },
  28716. head: {
  28717. height: math.unit(0.9, "meter"),
  28718. name: "Head",
  28719. image: {
  28720. source: "./media/characters/lawrence/head.svg"
  28721. }
  28722. },
  28723. maw: {
  28724. height: math.unit(0.7, "meter"),
  28725. name: "Maw",
  28726. image: {
  28727. source: "./media/characters/lawrence/maw.svg"
  28728. }
  28729. },
  28730. footBottom: {
  28731. height: math.unit(0.5, "meter"),
  28732. name: "Foot (Bottom)",
  28733. image: {
  28734. source: "./media/characters/lawrence/foot-bottom.svg"
  28735. }
  28736. },
  28737. footTop: {
  28738. height: math.unit(0.5, "meter"),
  28739. name: "Foot (Top)",
  28740. image: {
  28741. source: "./media/characters/lawrence/foot-top.svg"
  28742. }
  28743. },
  28744. },
  28745. [
  28746. {
  28747. name: "Normal",
  28748. height: math.unit(2.5, "meters"),
  28749. default: true
  28750. },
  28751. {
  28752. name: "Macro",
  28753. height: math.unit(95, "meters")
  28754. },
  28755. {
  28756. name: "Megamacro",
  28757. height: math.unit(150, "km")
  28758. },
  28759. ]
  28760. ))
  28761. characterMakers.push(() => makeCharacter(
  28762. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  28763. {
  28764. front: {
  28765. height: math.unit(4.2, "meters"),
  28766. name: "Front",
  28767. image: {
  28768. source: "./media/characters/sydney/front.svg",
  28769. extra: 1323 / 1277,
  28770. bottom: 111 / 1434
  28771. }
  28772. },
  28773. },
  28774. [
  28775. {
  28776. name: "Normal",
  28777. height: math.unit(4.2, "meters"),
  28778. default: true
  28779. },
  28780. ]
  28781. ))
  28782. characterMakers.push(() => makeCharacter(
  28783. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  28784. {
  28785. back: {
  28786. height: math.unit(201, "feet"),
  28787. name: "Back",
  28788. image: {
  28789. source: "./media/characters/jessica/back.svg",
  28790. extra: 273 / 259,
  28791. bottom: 7 / 280
  28792. }
  28793. },
  28794. },
  28795. [
  28796. {
  28797. name: "Normal",
  28798. height: math.unit(201, "feet"),
  28799. default: true
  28800. },
  28801. {
  28802. name: "Megamacro",
  28803. height: math.unit(8, "miles")
  28804. },
  28805. ]
  28806. ))
  28807. characterMakers.push(() => makeCharacter(
  28808. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  28809. {
  28810. side: {
  28811. height: math.unit(320, "cm"),
  28812. name: "Side",
  28813. image: {
  28814. source: "./media/characters/victoria/side.svg",
  28815. extra: 778 / 346,
  28816. bottom: 56 / 834
  28817. }
  28818. },
  28819. maw: {
  28820. height: math.unit(5.9, "feet"),
  28821. name: "Maw",
  28822. image: {
  28823. source: "./media/characters/victoria/maw.svg"
  28824. }
  28825. },
  28826. },
  28827. [
  28828. {
  28829. name: "Normal",
  28830. height: math.unit(320, "cm"),
  28831. default: true
  28832. },
  28833. ]
  28834. ))
  28835. characterMakers.push(() => makeCharacter(
  28836. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  28837. {
  28838. front: {
  28839. height: math.unit(5 + 6 / 12, "feet"),
  28840. name: "Front",
  28841. image: {
  28842. source: "./media/characters/cat/front.svg",
  28843. extra: 1449/1295,
  28844. bottom: 34/1483
  28845. }
  28846. },
  28847. back: {
  28848. height: math.unit(5 + 6 / 12, "feet"),
  28849. name: "Back",
  28850. image: {
  28851. source: "./media/characters/cat/back.svg",
  28852. extra: 1466/1301,
  28853. bottom: 19/1485
  28854. }
  28855. },
  28856. taur: {
  28857. height: math.unit(7, "feet"),
  28858. name: "Taur",
  28859. image: {
  28860. source: "./media/characters/cat/taur.svg",
  28861. extra: 1389/1233,
  28862. bottom: 83/1472
  28863. }
  28864. },
  28865. lucarioFront: {
  28866. height: math.unit(4, "feet"),
  28867. name: "Lucario (Front)",
  28868. image: {
  28869. source: "./media/characters/cat/lucario-front.svg",
  28870. extra: 1149/1019,
  28871. bottom: 84/1233
  28872. }
  28873. },
  28874. lucarioBack: {
  28875. height: math.unit(4, "feet"),
  28876. name: "Lucario (Back)",
  28877. image: {
  28878. source: "./media/characters/cat/lucario-back.svg",
  28879. extra: 1190/1059,
  28880. bottom: 33/1223
  28881. }
  28882. },
  28883. megaLucario: {
  28884. height: math.unit(4, "feet"),
  28885. name: "Mega Lucario",
  28886. image: {
  28887. source: "./media/characters/cat/mega-lucario.svg",
  28888. extra: 1515 / 1319,
  28889. bottom: 63 / 1578
  28890. }
  28891. },
  28892. nickit: {
  28893. height: math.unit(2, "feet"),
  28894. name: "Nickit",
  28895. image: {
  28896. source: "./media/characters/cat/nickit.svg",
  28897. extra: 1980 / 1585,
  28898. bottom: 102 / 2082
  28899. }
  28900. },
  28901. lopunnyFront: {
  28902. height: math.unit(5, "feet"),
  28903. name: "Lopunny (Front)",
  28904. image: {
  28905. source: "./media/characters/cat/lopunny-front.svg",
  28906. extra: 1782 / 1469,
  28907. bottom: 38 / 1820
  28908. }
  28909. },
  28910. lopunnyBack: {
  28911. height: math.unit(5, "feet"),
  28912. name: "Lopunny (Back)",
  28913. image: {
  28914. source: "./media/characters/cat/lopunny-back.svg",
  28915. extra: 1660 / 1490,
  28916. bottom: 25 / 1685
  28917. }
  28918. },
  28919. },
  28920. [
  28921. {
  28922. name: "Really small",
  28923. height: math.unit(1, "nm")
  28924. },
  28925. {
  28926. name: "Micro",
  28927. height: math.unit(5, "inches")
  28928. },
  28929. {
  28930. name: "Normal",
  28931. height: math.unit(5 + 6 / 12, "feet"),
  28932. default: true
  28933. },
  28934. {
  28935. name: "Macro",
  28936. height: math.unit(50, "feet")
  28937. },
  28938. {
  28939. name: "Macro+",
  28940. height: math.unit(150, "feet")
  28941. },
  28942. {
  28943. name: "Megamacro",
  28944. height: math.unit(100, "miles")
  28945. },
  28946. ]
  28947. ))
  28948. characterMakers.push(() => makeCharacter(
  28949. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  28950. {
  28951. front: {
  28952. height: math.unit(63.4, "meters"),
  28953. weight: math.unit(3.28349e+6, "kilograms"),
  28954. name: "Front",
  28955. image: {
  28956. source: "./media/characters/kirina-violet/front.svg",
  28957. extra: 2812 / 2725,
  28958. bottom: 0 / 2812
  28959. }
  28960. },
  28961. back: {
  28962. height: math.unit(63.4, "meters"),
  28963. weight: math.unit(3.28349e+6, "kilograms"),
  28964. name: "Back",
  28965. image: {
  28966. source: "./media/characters/kirina-violet/back.svg",
  28967. extra: 2812 / 2725,
  28968. bottom: 0 / 2812
  28969. }
  28970. },
  28971. mouth: {
  28972. height: math.unit(4.35, "meters"),
  28973. name: "Mouth",
  28974. image: {
  28975. source: "./media/characters/kirina-violet/mouth.svg"
  28976. }
  28977. },
  28978. paw: {
  28979. height: math.unit(5.6, "meters"),
  28980. name: "Paw",
  28981. image: {
  28982. source: "./media/characters/kirina-violet/paw.svg"
  28983. }
  28984. },
  28985. tail: {
  28986. height: math.unit(18, "meters"),
  28987. name: "Tail",
  28988. image: {
  28989. source: "./media/characters/kirina-violet/tail.svg"
  28990. }
  28991. },
  28992. },
  28993. [
  28994. {
  28995. name: "Macro",
  28996. height: math.unit(63.4, "meters"),
  28997. default: true
  28998. },
  28999. ]
  29000. ))
  29001. characterMakers.push(() => makeCharacter(
  29002. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  29003. {
  29004. front: {
  29005. height: math.unit(75, "feet"),
  29006. name: "Front",
  29007. image: {
  29008. source: "./media/characters/cat-gigachu/front.svg",
  29009. extra: 1239/1027,
  29010. bottom: 32/1271
  29011. }
  29012. },
  29013. back: {
  29014. height: math.unit(75, "feet"),
  29015. name: "Back",
  29016. image: {
  29017. source: "./media/characters/cat-gigachu/back.svg",
  29018. extra: 1229/1030,
  29019. bottom: 9/1238
  29020. }
  29021. },
  29022. },
  29023. [
  29024. {
  29025. name: "Dynamax",
  29026. height: math.unit(75, "feet"),
  29027. default: true
  29028. },
  29029. ]
  29030. ))
  29031. characterMakers.push(() => makeCharacter(
  29032. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  29033. {
  29034. front: {
  29035. height: math.unit(6, "feet"),
  29036. weight: math.unit(150, "lb"),
  29037. name: "Front",
  29038. image: {
  29039. source: "./media/characters/sfaiyan/front.svg",
  29040. extra: 999 / 978,
  29041. bottom: 5 / 1004
  29042. }
  29043. },
  29044. },
  29045. [
  29046. {
  29047. name: "Normal",
  29048. height: math.unit(1.82, "meters")
  29049. },
  29050. {
  29051. name: "Giant",
  29052. height: math.unit(2.27, "km"),
  29053. default: true
  29054. },
  29055. ]
  29056. ))
  29057. characterMakers.push(() => makeCharacter(
  29058. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  29059. {
  29060. front: {
  29061. height: math.unit(179, "cm"),
  29062. weight: math.unit(100, "kg"),
  29063. name: "Front",
  29064. image: {
  29065. source: "./media/characters/raunehkeli/front.svg",
  29066. extra: 1934 / 1926,
  29067. bottom: 0 / 1934
  29068. }
  29069. },
  29070. },
  29071. [
  29072. {
  29073. name: "Normal",
  29074. height: math.unit(179, "cm")
  29075. },
  29076. {
  29077. name: "Maximum",
  29078. height: math.unit(575, "meters"),
  29079. default: true
  29080. },
  29081. ]
  29082. ))
  29083. characterMakers.push(() => makeCharacter(
  29084. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  29085. {
  29086. front: {
  29087. height: math.unit(6, "feet"),
  29088. weight: math.unit(150, "lb"),
  29089. name: "Front",
  29090. image: {
  29091. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  29092. extra: 2625 / 2518,
  29093. bottom: 60 / 2685
  29094. }
  29095. },
  29096. },
  29097. [
  29098. {
  29099. name: "Normal",
  29100. height: math.unit(6 + 2 / 12, "feet")
  29101. },
  29102. {
  29103. name: "Macro",
  29104. height: math.unit(1180, "feet"),
  29105. default: true
  29106. },
  29107. ]
  29108. ))
  29109. characterMakers.push(() => makeCharacter(
  29110. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  29111. {
  29112. front: {
  29113. height: math.unit(5 + 6 / 12, "feet"),
  29114. weight: math.unit(108, "lb"),
  29115. name: "Front",
  29116. image: {
  29117. source: "./media/characters/lilith-zott/front.svg",
  29118. extra: 2510 / 2238,
  29119. bottom: 100 / 2610
  29120. }
  29121. },
  29122. frontDressed: {
  29123. height: math.unit(5 + 6 / 12, "feet"),
  29124. weight: math.unit(108, "lb"),
  29125. name: "Front (Dressed)",
  29126. image: {
  29127. source: "./media/characters/lilith-zott/front-dressed.svg",
  29128. extra: 2510 / 2238,
  29129. bottom: 100 / 2610
  29130. }
  29131. },
  29132. },
  29133. [
  29134. {
  29135. name: "Normal",
  29136. height: math.unit(5 + 6 / 12, "feet")
  29137. },
  29138. {
  29139. name: "Macro",
  29140. height: math.unit(1030, "feet"),
  29141. default: true
  29142. },
  29143. ]
  29144. ))
  29145. characterMakers.push(() => makeCharacter(
  29146. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  29147. {
  29148. front: {
  29149. height: math.unit(6, "feet"),
  29150. weight: math.unit(150, "lb"),
  29151. name: "Front",
  29152. image: {
  29153. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  29154. extra: 2567 / 2435,
  29155. bottom: 39 / 2606
  29156. }
  29157. },
  29158. frontSuper: {
  29159. height: math.unit(6, "feet"),
  29160. name: "Front (Super)",
  29161. image: {
  29162. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  29163. extra: 2567 / 2435,
  29164. bottom: 39 / 2606
  29165. }
  29166. },
  29167. },
  29168. [
  29169. {
  29170. name: "Normal",
  29171. height: math.unit(5 + 10 / 12, "feet")
  29172. },
  29173. {
  29174. name: "Macro",
  29175. height: math.unit(1100, "feet"),
  29176. default: true
  29177. },
  29178. ]
  29179. ))
  29180. characterMakers.push(() => makeCharacter(
  29181. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  29182. {
  29183. front: {
  29184. height: math.unit(100, "miles"),
  29185. name: "Front",
  29186. image: {
  29187. source: "./media/characters/sona/front.svg",
  29188. extra: 2433 / 2201,
  29189. bottom: 53 / 2486
  29190. }
  29191. },
  29192. foot: {
  29193. height: math.unit(16.1, "miles"),
  29194. name: "Foot",
  29195. image: {
  29196. source: "./media/characters/sona/foot.svg"
  29197. }
  29198. },
  29199. },
  29200. [
  29201. {
  29202. name: "Macro",
  29203. height: math.unit(100, "miles"),
  29204. default: true
  29205. },
  29206. ]
  29207. ))
  29208. characterMakers.push(() => makeCharacter(
  29209. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  29210. {
  29211. front: {
  29212. height: math.unit(6, "feet"),
  29213. weight: math.unit(150, "lb"),
  29214. name: "Front",
  29215. image: {
  29216. source: "./media/characters/bailey/front.svg",
  29217. extra: 1778 / 1724,
  29218. bottom: 30 / 1808
  29219. }
  29220. },
  29221. },
  29222. [
  29223. {
  29224. name: "Micro",
  29225. height: math.unit(4, "inches")
  29226. },
  29227. {
  29228. name: "Normal",
  29229. height: math.unit(5 + 5 / 12, "feet"),
  29230. default: true
  29231. },
  29232. {
  29233. name: "Macro",
  29234. height: math.unit(250, "feet")
  29235. },
  29236. {
  29237. name: "Megamacro",
  29238. height: math.unit(100, "miles")
  29239. },
  29240. ]
  29241. ))
  29242. characterMakers.push(() => makeCharacter(
  29243. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  29244. {
  29245. front: {
  29246. height: math.unit(5 + 2 / 12, "feet"),
  29247. weight: math.unit(120, "lb"),
  29248. name: "Front",
  29249. image: {
  29250. source: "./media/characters/snaps/front.svg",
  29251. extra: 2370 / 2177,
  29252. bottom: 48 / 2418
  29253. }
  29254. },
  29255. back: {
  29256. height: math.unit(5 + 2 / 12, "feet"),
  29257. weight: math.unit(120, "lb"),
  29258. name: "Back",
  29259. image: {
  29260. source: "./media/characters/snaps/back.svg",
  29261. extra: 2408 / 2258,
  29262. bottom: 15 / 2423
  29263. }
  29264. },
  29265. },
  29266. [
  29267. {
  29268. name: "Micro",
  29269. height: math.unit(9, "inches")
  29270. },
  29271. {
  29272. name: "Normal",
  29273. height: math.unit(5 + 2 / 12, "feet"),
  29274. default: true
  29275. },
  29276. {
  29277. name: "Mini Macro",
  29278. height: math.unit(10, "feet")
  29279. },
  29280. ]
  29281. ))
  29282. characterMakers.push(() => makeCharacter(
  29283. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  29284. {
  29285. front: {
  29286. height: math.unit(1.8, "meters"),
  29287. weight: math.unit(85, "kg"),
  29288. name: "Front",
  29289. image: {
  29290. source: "./media/characters/azteck/front.svg",
  29291. extra: 2815 / 2625,
  29292. bottom: 89 / 2904
  29293. }
  29294. },
  29295. back: {
  29296. height: math.unit(1.8, "meters"),
  29297. weight: math.unit(85, "kg"),
  29298. name: "Back",
  29299. image: {
  29300. source: "./media/characters/azteck/back.svg",
  29301. extra: 2856 / 2648,
  29302. bottom: 85 / 2941
  29303. }
  29304. },
  29305. frontDressed: {
  29306. height: math.unit(1.8, "meters"),
  29307. weight: math.unit(85, "kg"),
  29308. name: "Front (Dressed)",
  29309. image: {
  29310. source: "./media/characters/azteck/front-dressed.svg",
  29311. extra: 2147 / 2003,
  29312. bottom: 68 / 2215
  29313. }
  29314. },
  29315. head: {
  29316. height: math.unit(0.47, "meters"),
  29317. weight: math.unit(85, "kg"),
  29318. name: "Head",
  29319. image: {
  29320. source: "./media/characters/azteck/head.svg"
  29321. }
  29322. },
  29323. },
  29324. [
  29325. {
  29326. name: "Bite sized",
  29327. height: math.unit(16, "cm")
  29328. },
  29329. {
  29330. name: "Normal",
  29331. height: math.unit(1.8, "meters"),
  29332. default: true
  29333. },
  29334. ]
  29335. ))
  29336. characterMakers.push(() => makeCharacter(
  29337. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  29338. {
  29339. front: {
  29340. height: math.unit(6, "feet"),
  29341. weight: math.unit(150, "lb"),
  29342. name: "Front",
  29343. image: {
  29344. source: "./media/characters/pidge/front.svg",
  29345. extra: 620 / 588,
  29346. bottom: 9 / 629
  29347. }
  29348. },
  29349. back: {
  29350. height: math.unit(6, "feet"),
  29351. weight: math.unit(150, "lb"),
  29352. name: "Back",
  29353. image: {
  29354. source: "./media/characters/pidge/back.svg",
  29355. extra: 620 / 588,
  29356. bottom: 9 / 629
  29357. }
  29358. },
  29359. },
  29360. [
  29361. {
  29362. name: "Macro",
  29363. height: math.unit(1, "mile"),
  29364. default: true
  29365. },
  29366. ]
  29367. ))
  29368. characterMakers.push(() => makeCharacter(
  29369. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  29370. {
  29371. front: {
  29372. height: math.unit(6, "feet"),
  29373. weight: math.unit(150, "lb"),
  29374. name: "Front",
  29375. image: {
  29376. source: "./media/characters/en/front.svg",
  29377. extra: 1697 / 1563,
  29378. bottom: 103 / 1800
  29379. }
  29380. },
  29381. back: {
  29382. height: math.unit(6, "feet"),
  29383. weight: math.unit(150, "lb"),
  29384. name: "Back",
  29385. image: {
  29386. source: "./media/characters/en/back.svg",
  29387. extra: 1700 / 1570,
  29388. bottom: 51 / 1751
  29389. }
  29390. },
  29391. frontDressed: {
  29392. height: math.unit(6, "feet"),
  29393. weight: math.unit(150, "lb"),
  29394. name: "Front (Dressed)",
  29395. image: {
  29396. source: "./media/characters/en/front-dressed.svg",
  29397. extra: 1697 / 1563,
  29398. bottom: 103 / 1800
  29399. }
  29400. },
  29401. backDressed: {
  29402. height: math.unit(6, "feet"),
  29403. weight: math.unit(150, "lb"),
  29404. name: "Back (Dressed)",
  29405. image: {
  29406. source: "./media/characters/en/back-dressed.svg",
  29407. extra: 1700 / 1570,
  29408. bottom: 51 / 1751
  29409. }
  29410. },
  29411. },
  29412. [
  29413. {
  29414. name: "Macro",
  29415. height: math.unit(210, "feet"),
  29416. default: true
  29417. },
  29418. ]
  29419. ))
  29420. characterMakers.push(() => makeCharacter(
  29421. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  29422. {
  29423. front: {
  29424. height: math.unit(6, "feet"),
  29425. weight: math.unit(150, "lb"),
  29426. name: "Front",
  29427. image: {
  29428. source: "./media/characters/haze-orris/front.svg",
  29429. extra: 3975 / 3525,
  29430. bottom: 137 / 4112
  29431. }
  29432. },
  29433. },
  29434. [
  29435. {
  29436. name: "Micro",
  29437. height: math.unit(150, "mm"),
  29438. default: true
  29439. },
  29440. ]
  29441. ))
  29442. characterMakers.push(() => makeCharacter(
  29443. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  29444. {
  29445. front: {
  29446. height: math.unit(6, "feet"),
  29447. weight: math.unit(150, "lb"),
  29448. name: "Front",
  29449. image: {
  29450. source: "./media/characters/casselene-yaro/front.svg",
  29451. extra: 4721 / 4541,
  29452. bottom: 82 / 4803
  29453. }
  29454. },
  29455. back: {
  29456. height: math.unit(6, "feet"),
  29457. weight: math.unit(150, "lb"),
  29458. name: "Back",
  29459. image: {
  29460. source: "./media/characters/casselene-yaro/back.svg",
  29461. extra: 4569 / 4377,
  29462. bottom: 69 / 4638
  29463. }
  29464. },
  29465. frontDressed: {
  29466. height: math.unit(6, "feet"),
  29467. weight: math.unit(150, "lb"),
  29468. name: "Front-dressed",
  29469. image: {
  29470. source: "./media/characters/casselene-yaro/front-dressed.svg",
  29471. extra: 4721 / 4541,
  29472. bottom: 82 / 4803
  29473. }
  29474. },
  29475. },
  29476. [
  29477. {
  29478. name: "Macro",
  29479. height: math.unit(190, "feet"),
  29480. default: true
  29481. },
  29482. ]
  29483. ))
  29484. characterMakers.push(() => makeCharacter(
  29485. { name: "Myra Rue Delore", species: ["monster"], tags: ["anthro"] },
  29486. {
  29487. front: {
  29488. height: math.unit(6, "feet"),
  29489. weight: math.unit(150, "lb"),
  29490. name: "Front",
  29491. image: {
  29492. source: "./media/characters/myra-rue-delore/front.svg",
  29493. extra: 1340 / 1308,
  29494. bottom: 67 / 1407
  29495. }
  29496. },
  29497. back: {
  29498. height: math.unit(6, "feet"),
  29499. weight: math.unit(150, "lb"),
  29500. name: "Back",
  29501. image: {
  29502. source: "./media/characters/myra-rue-delore/back.svg",
  29503. extra: 1341 / 1310,
  29504. bottom: 40 / 1381
  29505. }
  29506. },
  29507. frontDressed: {
  29508. height: math.unit(6, "feet"),
  29509. weight: math.unit(150, "lb"),
  29510. name: "Front (Dressed)",
  29511. image: {
  29512. source: "./media/characters/myra-rue-delore/front-dressed.svg",
  29513. extra: 1340 / 1308,
  29514. bottom: 67 / 1407
  29515. }
  29516. },
  29517. },
  29518. [
  29519. {
  29520. name: "Macro",
  29521. height: math.unit(150, "feet"),
  29522. default: true
  29523. },
  29524. ]
  29525. ))
  29526. characterMakers.push(() => makeCharacter(
  29527. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  29528. {
  29529. front: {
  29530. height: math.unit(10, "feet"),
  29531. weight: math.unit(15015, "lb"),
  29532. name: "Front",
  29533. image: {
  29534. source: "./media/characters/fem!plat/front.svg",
  29535. extra: 2799 / 2604,
  29536. bottom: 149 / 2948
  29537. }
  29538. },
  29539. },
  29540. [
  29541. {
  29542. name: "Normal",
  29543. height: math.unit(10, "feet"),
  29544. default: true
  29545. },
  29546. {
  29547. name: "Macro",
  29548. height: math.unit(100, "feet")
  29549. },
  29550. {
  29551. name: "Megamacro",
  29552. height: math.unit(1000, "feet")
  29553. },
  29554. ]
  29555. ))
  29556. characterMakers.push(() => makeCharacter(
  29557. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  29558. {
  29559. front: {
  29560. height: math.unit(15 + 5 / 12, "feet"),
  29561. weight: math.unit(4600, "lb"),
  29562. name: "Front",
  29563. image: {
  29564. source: "./media/characters/neapolitan-ananassa/front.svg",
  29565. extra: 2903 / 2736,
  29566. bottom: 0 / 2903
  29567. }
  29568. },
  29569. side: {
  29570. height: math.unit(15 + 5 / 12, "feet"),
  29571. weight: math.unit(4600, "lb"),
  29572. name: "Side",
  29573. image: {
  29574. source: "./media/characters/neapolitan-ananassa/side.svg",
  29575. extra: 2925 / 2719,
  29576. bottom: 0 / 2925
  29577. }
  29578. },
  29579. back: {
  29580. height: math.unit(15 + 5 / 12, "feet"),
  29581. weight: math.unit(4600, "lb"),
  29582. name: "Back",
  29583. image: {
  29584. source: "./media/characters/neapolitan-ananassa/back.svg",
  29585. extra: 2903 / 2736,
  29586. bottom: 0 / 2903
  29587. }
  29588. },
  29589. },
  29590. [
  29591. {
  29592. name: "Normal",
  29593. height: math.unit(15 + 5 / 12, "feet"),
  29594. default: true
  29595. },
  29596. {
  29597. name: "Post-Millenium",
  29598. height: math.unit(35 + 5 / 12, "feet")
  29599. },
  29600. {
  29601. name: "Post-Era",
  29602. height: math.unit(450 + 5 / 12, "feet")
  29603. },
  29604. ]
  29605. ))
  29606. characterMakers.push(() => makeCharacter(
  29607. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  29608. {
  29609. front: {
  29610. height: math.unit(300, "meters"),
  29611. weight: math.unit(125000, "tonnes"),
  29612. name: "Front",
  29613. image: {
  29614. source: "./media/characters/pazuzu/front.svg",
  29615. extra: 877 / 794,
  29616. bottom: 47 / 924
  29617. }
  29618. },
  29619. },
  29620. [
  29621. {
  29622. name: "Macro",
  29623. height: math.unit(300, "meters"),
  29624. default: true
  29625. },
  29626. ]
  29627. ))
  29628. characterMakers.push(() => makeCharacter(
  29629. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  29630. {
  29631. side: {
  29632. height: math.unit(10 + 7 / 12, "feet"),
  29633. weight: math.unit(2.5, "tons"),
  29634. name: "Side",
  29635. image: {
  29636. source: "./media/characters/aasha/side.svg",
  29637. extra: 1345 / 1245,
  29638. bottom: 111 / 1456
  29639. }
  29640. },
  29641. back: {
  29642. height: math.unit(10 + 7 / 12, "feet"),
  29643. weight: math.unit(2.5, "tons"),
  29644. name: "Back",
  29645. image: {
  29646. source: "./media/characters/aasha/back.svg",
  29647. extra: 1133 / 1057,
  29648. bottom: 257 / 1390
  29649. }
  29650. },
  29651. },
  29652. [
  29653. {
  29654. name: "Normal",
  29655. height: math.unit(10 + 7 / 12, "feet"),
  29656. default: true
  29657. },
  29658. ]
  29659. ))
  29660. characterMakers.push(() => makeCharacter(
  29661. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  29662. {
  29663. front: {
  29664. height: math.unit(6 + 3 / 12, "feet"),
  29665. name: "Front",
  29666. image: {
  29667. source: "./media/characters/nevan/front.svg",
  29668. extra: 704 / 704,
  29669. bottom: 28 / 732
  29670. }
  29671. },
  29672. back: {
  29673. height: math.unit(6 + 3 / 12, "feet"),
  29674. name: "Back",
  29675. image: {
  29676. source: "./media/characters/nevan/back.svg",
  29677. extra: 714 / 714,
  29678. bottom: 21 / 735
  29679. }
  29680. },
  29681. frontFlaccid: {
  29682. height: math.unit(6 + 3 / 12, "feet"),
  29683. name: "Front (Flaccid)",
  29684. image: {
  29685. source: "./media/characters/nevan/front-flaccid.svg",
  29686. extra: 704 / 704,
  29687. bottom: 28 / 732
  29688. }
  29689. },
  29690. frontErect: {
  29691. height: math.unit(6 + 3 / 12, "feet"),
  29692. name: "Front (Erect)",
  29693. image: {
  29694. source: "./media/characters/nevan/front-erect.svg",
  29695. extra: 704 / 704,
  29696. bottom: 28 / 732
  29697. }
  29698. },
  29699. backFlaccid: {
  29700. height: math.unit(6 + 3 / 12, "feet"),
  29701. name: "Back (Flaccid)",
  29702. image: {
  29703. source: "./media/characters/nevan/back-flaccid.svg",
  29704. extra: 714 / 714,
  29705. bottom: 21 / 735
  29706. }
  29707. },
  29708. },
  29709. [
  29710. {
  29711. name: "Normal",
  29712. height: math.unit(6 + 3 / 12, "feet"),
  29713. default: true
  29714. },
  29715. ]
  29716. ))
  29717. characterMakers.push(() => makeCharacter(
  29718. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  29719. {
  29720. front: {
  29721. height: math.unit(4, "feet"),
  29722. name: "Front",
  29723. image: {
  29724. source: "./media/characters/arhan/front.svg",
  29725. extra: 3368 / 3133,
  29726. bottom: 0 / 3368
  29727. }
  29728. },
  29729. side: {
  29730. height: math.unit(4, "feet"),
  29731. name: "Side",
  29732. image: {
  29733. source: "./media/characters/arhan/side.svg",
  29734. extra: 3347 / 3105,
  29735. bottom: 0 / 3347
  29736. }
  29737. },
  29738. tongue: {
  29739. height: math.unit(1.42, "feet"),
  29740. name: "Tongue",
  29741. image: {
  29742. source: "./media/characters/arhan/tongue.svg"
  29743. }
  29744. },
  29745. head: {
  29746. height: math.unit(0.85, "feet"),
  29747. name: "Head",
  29748. image: {
  29749. source: "./media/characters/arhan/head.svg"
  29750. }
  29751. },
  29752. },
  29753. [
  29754. {
  29755. name: "Normal",
  29756. height: math.unit(4, "feet"),
  29757. default: true
  29758. },
  29759. ]
  29760. ))
  29761. characterMakers.push(() => makeCharacter(
  29762. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  29763. {
  29764. front: {
  29765. height: math.unit(5 + 7.5 / 12, "feet"),
  29766. weight: math.unit(120, "lb"),
  29767. name: "Front",
  29768. image: {
  29769. source: "./media/characters/digi-duncan/front.svg",
  29770. extra: 330 / 326,
  29771. bottom: 16 / 346
  29772. }
  29773. },
  29774. side: {
  29775. height: math.unit(5 + 7.5 / 12, "feet"),
  29776. weight: math.unit(120, "lb"),
  29777. name: "Side",
  29778. image: {
  29779. source: "./media/characters/digi-duncan/side.svg",
  29780. extra: 341 / 337,
  29781. bottom: 1 / 342
  29782. }
  29783. },
  29784. back: {
  29785. height: math.unit(5 + 7.5 / 12, "feet"),
  29786. weight: math.unit(120, "lb"),
  29787. name: "Back",
  29788. image: {
  29789. source: "./media/characters/digi-duncan/back.svg",
  29790. extra: 330 / 326,
  29791. bottom: 12 / 342
  29792. }
  29793. },
  29794. },
  29795. [
  29796. {
  29797. name: "Speck",
  29798. height: math.unit(0.25, "mm")
  29799. },
  29800. {
  29801. name: "Micro",
  29802. height: math.unit(5, "mm")
  29803. },
  29804. {
  29805. name: "Tiny",
  29806. height: math.unit(0.5, "inches"),
  29807. default: true
  29808. },
  29809. {
  29810. name: "Human",
  29811. height: math.unit(5 + 7.5 / 12, "feet")
  29812. },
  29813. {
  29814. name: "Minigiant",
  29815. height: math.unit(8 + 5.25, "feet")
  29816. },
  29817. {
  29818. name: "Giant",
  29819. height: math.unit(2000, "feet")
  29820. },
  29821. {
  29822. name: "Mega",
  29823. height: math.unit(371.1, "miles")
  29824. },
  29825. ]
  29826. ))
  29827. characterMakers.push(() => makeCharacter(
  29828. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  29829. {
  29830. front: {
  29831. height: math.unit(2, "meters"),
  29832. weight: math.unit(350, "kg"),
  29833. name: "Front",
  29834. image: {
  29835. source: "./media/characters/jagaz-soulbreaker/front.svg",
  29836. extra: 898 / 838,
  29837. bottom: 9 / 907
  29838. }
  29839. },
  29840. },
  29841. [
  29842. {
  29843. name: "Micro",
  29844. height: math.unit(8, "meters")
  29845. },
  29846. {
  29847. name: "Normal",
  29848. height: math.unit(50, "meters"),
  29849. default: true
  29850. },
  29851. {
  29852. name: "Macro",
  29853. height: math.unit(500, "meters")
  29854. },
  29855. ]
  29856. ))
  29857. characterMakers.push(() => makeCharacter(
  29858. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  29859. {
  29860. front: {
  29861. height: math.unit(6 + 6 / 12, "feet"),
  29862. name: "Front",
  29863. image: {
  29864. source: "./media/characters/khardesh/front.svg",
  29865. extra: 888 / 797,
  29866. bottom: 25 / 913
  29867. }
  29868. },
  29869. },
  29870. [
  29871. {
  29872. name: "Normal",
  29873. height: math.unit(6 + 6 / 12, "feet"),
  29874. default: true
  29875. },
  29876. {
  29877. name: "Normal+",
  29878. height: math.unit(4, "meters")
  29879. },
  29880. {
  29881. name: "Macro",
  29882. height: math.unit(50, "meters")
  29883. },
  29884. {
  29885. name: "Macro+",
  29886. height: math.unit(100, "meters")
  29887. },
  29888. {
  29889. name: "Megamacro",
  29890. height: math.unit(20, "km")
  29891. },
  29892. ]
  29893. ))
  29894. characterMakers.push(() => makeCharacter(
  29895. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  29896. {
  29897. front: {
  29898. height: math.unit(6, "feet"),
  29899. weight: math.unit(150, "lb"),
  29900. name: "Front",
  29901. image: {
  29902. source: "./media/characters/kosho/front.svg",
  29903. extra: 1847 / 1847,
  29904. bottom: 86 / 1933
  29905. }
  29906. },
  29907. },
  29908. [
  29909. {
  29910. name: "Second-stage micro",
  29911. height: math.unit(0.5, "inches")
  29912. },
  29913. {
  29914. name: "First-stage micro",
  29915. height: math.unit(6, "inches")
  29916. },
  29917. {
  29918. name: "Normal",
  29919. height: math.unit(6, "feet"),
  29920. default: true
  29921. },
  29922. {
  29923. name: "First-stage macro",
  29924. height: math.unit(72, "feet")
  29925. },
  29926. {
  29927. name: "Second-stage macro",
  29928. height: math.unit(864, "feet")
  29929. },
  29930. ]
  29931. ))
  29932. characterMakers.push(() => makeCharacter(
  29933. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  29934. {
  29935. normal: {
  29936. height: math.unit(4 + 6 / 12, "feet"),
  29937. name: "Normal",
  29938. image: {
  29939. source: "./media/characters/hydra/normal.svg",
  29940. extra: 2833 / 2634,
  29941. bottom: 68 / 2901
  29942. }
  29943. },
  29944. smol: {
  29945. height: math.unit(0.705, "inches"),
  29946. name: "Smol",
  29947. image: {
  29948. source: "./media/characters/hydra/smol.svg",
  29949. extra: 2715 / 2540,
  29950. bottom: 0 / 2715
  29951. }
  29952. },
  29953. },
  29954. [
  29955. {
  29956. name: "Normal",
  29957. height: math.unit(4 + 6 / 12, "feet"),
  29958. default: true
  29959. }
  29960. ]
  29961. ))
  29962. characterMakers.push(() => makeCharacter(
  29963. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  29964. {
  29965. front: {
  29966. height: math.unit(0.6, "cm"),
  29967. name: "Front",
  29968. image: {
  29969. source: "./media/characters/daz/front.svg",
  29970. extra: 1682 / 1164,
  29971. bottom: 42 / 1724
  29972. }
  29973. },
  29974. },
  29975. [
  29976. {
  29977. name: "Normal",
  29978. height: math.unit(0.6, "cm"),
  29979. default: true
  29980. },
  29981. ]
  29982. ))
  29983. characterMakers.push(() => makeCharacter(
  29984. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  29985. {
  29986. front: {
  29987. height: math.unit(6, "feet"),
  29988. weight: math.unit(235, "lb"),
  29989. name: "Front",
  29990. image: {
  29991. source: "./media/characters/theo-pangolin/front.svg",
  29992. extra: 1996 / 1969,
  29993. bottom: 115 / 2111
  29994. }
  29995. },
  29996. back: {
  29997. height: math.unit(6, "feet"),
  29998. weight: math.unit(235, "lb"),
  29999. name: "Back",
  30000. image: {
  30001. source: "./media/characters/theo-pangolin/back.svg",
  30002. extra: 1979 / 1979,
  30003. bottom: 40 / 2019
  30004. }
  30005. },
  30006. feral: {
  30007. height: math.unit(2, "feet"),
  30008. weight: math.unit(30, "lb"),
  30009. name: "Feral",
  30010. image: {
  30011. source: "./media/characters/theo-pangolin/feral.svg",
  30012. extra: 803 / 791,
  30013. bottom: 181 / 984
  30014. }
  30015. },
  30016. footFive: {
  30017. height: math.unit(1.43, "feet"),
  30018. name: "Foot (Five Toes)",
  30019. image: {
  30020. source: "./media/characters/theo-pangolin/foot-five.svg"
  30021. }
  30022. },
  30023. footFour: {
  30024. height: math.unit(1.43, "feet"),
  30025. name: "Foot (Four Toes)",
  30026. image: {
  30027. source: "./media/characters/theo-pangolin/foot-four.svg"
  30028. }
  30029. },
  30030. handFour: {
  30031. height: math.unit(0.81, "feet"),
  30032. name: "Hand (Four Fingers)",
  30033. image: {
  30034. source: "./media/characters/theo-pangolin/hand-four.svg"
  30035. }
  30036. },
  30037. handThree: {
  30038. height: math.unit(0.81, "feet"),
  30039. name: "Hand (Three Fingers)",
  30040. image: {
  30041. source: "./media/characters/theo-pangolin/hand-three.svg"
  30042. }
  30043. },
  30044. headFront: {
  30045. height: math.unit(1.37, "feet"),
  30046. name: "Head (Front)",
  30047. image: {
  30048. source: "./media/characters/theo-pangolin/head-front.svg"
  30049. }
  30050. },
  30051. headSide: {
  30052. height: math.unit(1.43, "feet"),
  30053. name: "Head (Side)",
  30054. image: {
  30055. source: "./media/characters/theo-pangolin/head-side.svg"
  30056. }
  30057. },
  30058. tongue: {
  30059. height: math.unit(2.29, "feet"),
  30060. name: "Tongue",
  30061. image: {
  30062. source: "./media/characters/theo-pangolin/tongue.svg"
  30063. }
  30064. },
  30065. },
  30066. [
  30067. {
  30068. name: "Normal",
  30069. height: math.unit(6, "feet")
  30070. },
  30071. {
  30072. name: "Macro",
  30073. height: math.unit(400, "feet"),
  30074. default: true
  30075. },
  30076. ]
  30077. ))
  30078. characterMakers.push(() => makeCharacter(
  30079. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  30080. {
  30081. front: {
  30082. height: math.unit(6, "inches"),
  30083. weight: math.unit(0.036, "kg"),
  30084. name: "Front",
  30085. image: {
  30086. source: "./media/characters/renée/front.svg",
  30087. extra: 900 / 886,
  30088. bottom: 8 / 908
  30089. }
  30090. },
  30091. },
  30092. [
  30093. {
  30094. name: "Nano",
  30095. height: math.unit(1, "nm")
  30096. },
  30097. {
  30098. name: "Micro",
  30099. height: math.unit(1, "mm")
  30100. },
  30101. {
  30102. name: "Normal",
  30103. height: math.unit(6, "inches")
  30104. },
  30105. {
  30106. name: "Macro",
  30107. height: math.unit(2000, "feet"),
  30108. default: true
  30109. },
  30110. {
  30111. name: "Megamacro",
  30112. height: math.unit(2, "km")
  30113. },
  30114. {
  30115. name: "Gigamacro",
  30116. height: math.unit(2000, "km")
  30117. },
  30118. {
  30119. name: "Teramacro",
  30120. height: math.unit(250000, "km")
  30121. },
  30122. ]
  30123. ))
  30124. characterMakers.push(() => makeCharacter(
  30125. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  30126. {
  30127. front: {
  30128. height: math.unit(4, "meters"),
  30129. weight: math.unit(150, "kg"),
  30130. name: "Front",
  30131. image: {
  30132. source: "./media/characters/caledvwlch/front.svg",
  30133. extra: 1760 / 1551,
  30134. bottom: 28 / 1788
  30135. }
  30136. },
  30137. side: {
  30138. height: math.unit(4, "meters"),
  30139. weight: math.unit(150, "kg"),
  30140. name: "Side",
  30141. image: {
  30142. source: "./media/characters/caledvwlch/side.svg",
  30143. extra: 1605 / 1536,
  30144. bottom: 31 / 1636
  30145. }
  30146. },
  30147. back: {
  30148. height: math.unit(4, "meters"),
  30149. weight: math.unit(150, "kg"),
  30150. name: "Back",
  30151. image: {
  30152. source: "./media/characters/caledvwlch/back.svg",
  30153. extra: 1635 / 1565,
  30154. bottom: 27 / 1662
  30155. }
  30156. },
  30157. },
  30158. [
  30159. {
  30160. name: "\"Incognito\"",
  30161. height: math.unit(4, "meters")
  30162. },
  30163. {
  30164. name: "Small rampage",
  30165. height: math.unit(600, "meters")
  30166. },
  30167. {
  30168. name: "Mega",
  30169. height: math.unit(30, "km")
  30170. },
  30171. {
  30172. name: "Home-size",
  30173. height: math.unit(50, "km"),
  30174. default: true
  30175. },
  30176. {
  30177. name: "Giga",
  30178. height: math.unit(300, "km")
  30179. },
  30180. {
  30181. name: "Lounging",
  30182. height: math.unit(11000, "km")
  30183. },
  30184. {
  30185. name: "Planet snacking",
  30186. height: math.unit(2000000, "km")
  30187. },
  30188. ]
  30189. ))
  30190. characterMakers.push(() => makeCharacter(
  30191. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  30192. {
  30193. front: {
  30194. height: math.unit(6, "feet"),
  30195. weight: math.unit(215, "lb"),
  30196. name: "Front",
  30197. image: {
  30198. source: "./media/characters/sapphire-svell/front.svg",
  30199. extra: 495 / 455,
  30200. bottom: 20 / 515
  30201. }
  30202. },
  30203. back: {
  30204. height: math.unit(6, "feet"),
  30205. weight: math.unit(216, "lb"),
  30206. name: "Back",
  30207. image: {
  30208. source: "./media/characters/sapphire-svell/back.svg",
  30209. extra: 497 / 477,
  30210. bottom: 7 / 504
  30211. }
  30212. },
  30213. maw: {
  30214. height: math.unit(1.57, "feet"),
  30215. name: "Maw",
  30216. image: {
  30217. source: "./media/characters/sapphire-svell/maw.svg"
  30218. }
  30219. },
  30220. foot: {
  30221. height: math.unit(1.07, "feet"),
  30222. name: "Foot",
  30223. image: {
  30224. source: "./media/characters/sapphire-svell/foot.svg"
  30225. }
  30226. },
  30227. toering: {
  30228. height: math.unit(1.7, "inch"),
  30229. name: "Toering",
  30230. image: {
  30231. source: "./media/characters/sapphire-svell/toering.svg"
  30232. }
  30233. },
  30234. },
  30235. [
  30236. {
  30237. name: "Normal",
  30238. height: math.unit(300, "feet"),
  30239. default: true
  30240. },
  30241. {
  30242. name: "Augmented",
  30243. height: math.unit(1250, "feet")
  30244. },
  30245. {
  30246. name: "Unleashed",
  30247. height: math.unit(3000, "feet")
  30248. },
  30249. ]
  30250. ))
  30251. characterMakers.push(() => makeCharacter(
  30252. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  30253. {
  30254. side: {
  30255. height: math.unit(2 + 3 / 12, "feet"),
  30256. weight: math.unit(110, "lb"),
  30257. name: "Side",
  30258. image: {
  30259. source: "./media/characters/glitch-flux/side.svg",
  30260. extra: 997 / 805,
  30261. bottom: 20 / 1017
  30262. }
  30263. },
  30264. },
  30265. [
  30266. {
  30267. name: "Normal",
  30268. height: math.unit(2 + 3 / 12, "feet"),
  30269. default: true
  30270. },
  30271. ]
  30272. ))
  30273. characterMakers.push(() => makeCharacter(
  30274. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  30275. {
  30276. front: {
  30277. height: math.unit(4, "meters"),
  30278. name: "Front",
  30279. image: {
  30280. source: "./media/characters/mid/front.svg",
  30281. extra: 507 / 476,
  30282. bottom: 17 / 524
  30283. }
  30284. },
  30285. back: {
  30286. height: math.unit(4, "meters"),
  30287. name: "Back",
  30288. image: {
  30289. source: "./media/characters/mid/back.svg",
  30290. extra: 519 / 487,
  30291. bottom: 7 / 526
  30292. }
  30293. },
  30294. stuck: {
  30295. height: math.unit(2.2, "meters"),
  30296. name: "Stuck",
  30297. image: {
  30298. source: "./media/characters/mid/stuck.svg",
  30299. extra: 1951 / 1869,
  30300. bottom: 88 / 2039
  30301. }
  30302. }
  30303. },
  30304. [
  30305. {
  30306. name: "Normal",
  30307. height: math.unit(4, "meters"),
  30308. default: true
  30309. },
  30310. {
  30311. name: "Big",
  30312. height: math.unit(10, "meters")
  30313. },
  30314. {
  30315. name: "Macro",
  30316. height: math.unit(800, "meters")
  30317. },
  30318. {
  30319. name: "Megamacro",
  30320. height: math.unit(100, "km")
  30321. },
  30322. {
  30323. name: "Overgrown",
  30324. height: math.unit(1, "parsec")
  30325. },
  30326. ]
  30327. ))
  30328. characterMakers.push(() => makeCharacter(
  30329. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  30330. {
  30331. front: {
  30332. height: math.unit(2.5, "meters"),
  30333. weight: math.unit(225, "kg"),
  30334. name: "Front",
  30335. image: {
  30336. source: "./media/characters/iris/front.svg",
  30337. extra: 3348 / 3251,
  30338. bottom: 205 / 3553
  30339. }
  30340. },
  30341. maw: {
  30342. height: math.unit(0.56, "meter"),
  30343. name: "Maw",
  30344. image: {
  30345. source: "./media/characters/iris/maw.svg"
  30346. }
  30347. },
  30348. },
  30349. [
  30350. {
  30351. name: "Mewter cat",
  30352. height: math.unit(1.2, "meters")
  30353. },
  30354. {
  30355. name: "Minimacro",
  30356. height: math.unit(2.5, "meters"),
  30357. default: true
  30358. },
  30359. {
  30360. name: "Macro",
  30361. height: math.unit(180, "meters")
  30362. },
  30363. {
  30364. name: "Megamacro",
  30365. height: math.unit(2746, "meters")
  30366. },
  30367. ]
  30368. ))
  30369. characterMakers.push(() => makeCharacter(
  30370. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  30371. {
  30372. front: {
  30373. height: math.unit(6, "feet"),
  30374. weight: math.unit(135, "lb"),
  30375. name: "Front",
  30376. image: {
  30377. source: "./media/characters/axel/front.svg",
  30378. extra: 908 / 908,
  30379. bottom: 58 / 966
  30380. }
  30381. },
  30382. side: {
  30383. height: math.unit(6, "feet"),
  30384. weight: math.unit(135, "lb"),
  30385. name: "Side",
  30386. image: {
  30387. source: "./media/characters/axel/side.svg",
  30388. extra: 958 / 958,
  30389. bottom: 11 / 969
  30390. }
  30391. },
  30392. back: {
  30393. height: math.unit(6, "feet"),
  30394. weight: math.unit(135, "lb"),
  30395. name: "Back",
  30396. image: {
  30397. source: "./media/characters/axel/back.svg",
  30398. extra: 887 / 887,
  30399. bottom: 34 / 921
  30400. }
  30401. },
  30402. head: {
  30403. height: math.unit(1.07, "feet"),
  30404. name: "Head",
  30405. image: {
  30406. source: "./media/characters/axel/head.svg"
  30407. }
  30408. },
  30409. beak: {
  30410. height: math.unit(1.4, "feet"),
  30411. name: "Beak",
  30412. image: {
  30413. source: "./media/characters/axel/beak.svg"
  30414. }
  30415. },
  30416. beakSide: {
  30417. height: math.unit(1.4, "feet"),
  30418. name: "Beak Side",
  30419. image: {
  30420. source: "./media/characters/axel/beak-side.svg"
  30421. }
  30422. },
  30423. sheath: {
  30424. height: math.unit(0.5, "feet"),
  30425. name: "Sheath",
  30426. image: {
  30427. source: "./media/characters/axel/sheath.svg"
  30428. }
  30429. },
  30430. dick: {
  30431. height: math.unit(0.98, "feet"),
  30432. name: "Dick",
  30433. image: {
  30434. source: "./media/characters/axel/dick.svg"
  30435. }
  30436. },
  30437. },
  30438. [
  30439. {
  30440. name: "Macro",
  30441. height: math.unit(68, "meters"),
  30442. default: true
  30443. },
  30444. ]
  30445. ))
  30446. characterMakers.push(() => makeCharacter(
  30447. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  30448. {
  30449. front: {
  30450. height: math.unit(3.5, "meters"),
  30451. weight: math.unit(1200, "kg"),
  30452. name: "Front",
  30453. image: {
  30454. source: "./media/characters/joanna/front.svg",
  30455. extra: 1596 / 1488,
  30456. bottom: 29 / 1625
  30457. }
  30458. },
  30459. back: {
  30460. height: math.unit(3.5, "meters"),
  30461. weight: math.unit(1200, "kg"),
  30462. name: "Back",
  30463. image: {
  30464. source: "./media/characters/joanna/back.svg",
  30465. extra: 1594 / 1495,
  30466. bottom: 26 / 1620
  30467. }
  30468. },
  30469. frontShorts: {
  30470. height: math.unit(3.5, "meters"),
  30471. weight: math.unit(1200, "kg"),
  30472. name: "Front (Shorts)",
  30473. image: {
  30474. source: "./media/characters/joanna/front-shorts.svg",
  30475. extra: 1596 / 1488,
  30476. bottom: 29 / 1625
  30477. }
  30478. },
  30479. frontBiker: {
  30480. height: math.unit(3.5, "meters"),
  30481. weight: math.unit(1200, "kg"),
  30482. name: "Front (Biker)",
  30483. image: {
  30484. source: "./media/characters/joanna/front-biker.svg",
  30485. extra: 1596 / 1488,
  30486. bottom: 29 / 1625
  30487. }
  30488. },
  30489. backBiker: {
  30490. height: math.unit(3.5, "meters"),
  30491. weight: math.unit(1200, "kg"),
  30492. name: "Back (Biker)",
  30493. image: {
  30494. source: "./media/characters/joanna/back-biker.svg",
  30495. extra: 1594 / 1495,
  30496. bottom: 88 / 1682
  30497. }
  30498. },
  30499. bikeLeft: {
  30500. height: math.unit(2.4, "meters"),
  30501. weight: math.unit(1600, "kg"),
  30502. name: "Bike (Left)",
  30503. image: {
  30504. source: "./media/characters/joanna/bike-left.svg",
  30505. extra: 720 / 720,
  30506. bottom: 8 / 728
  30507. }
  30508. },
  30509. bikeRight: {
  30510. height: math.unit(2.4, "meters"),
  30511. weight: math.unit(1600, "kg"),
  30512. name: "Bike (Right)",
  30513. image: {
  30514. source: "./media/characters/joanna/bike-right.svg",
  30515. extra: 720 / 720,
  30516. bottom: 8 / 728
  30517. }
  30518. },
  30519. },
  30520. [
  30521. {
  30522. name: "Incognito",
  30523. height: math.unit(3.5, "meters")
  30524. },
  30525. {
  30526. name: "Casual Big",
  30527. height: math.unit(200, "meters")
  30528. },
  30529. {
  30530. name: "Macro",
  30531. height: math.unit(600, "meters")
  30532. },
  30533. {
  30534. name: "Original",
  30535. height: math.unit(20, "km"),
  30536. default: true
  30537. },
  30538. {
  30539. name: "Giga",
  30540. height: math.unit(400, "km")
  30541. },
  30542. {
  30543. name: "Lounging",
  30544. height: math.unit(1500, "km")
  30545. },
  30546. {
  30547. name: "Planetary",
  30548. height: math.unit(200000, "km")
  30549. },
  30550. ]
  30551. ))
  30552. characterMakers.push(() => makeCharacter(
  30553. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  30554. {
  30555. front: {
  30556. height: math.unit(6, "feet"),
  30557. weight: math.unit(150, "lb"),
  30558. name: "Front",
  30559. image: {
  30560. source: "./media/characters/hugo-sigil/front.svg",
  30561. extra: 522 / 500,
  30562. bottom: 2 / 524
  30563. }
  30564. },
  30565. back: {
  30566. height: math.unit(6, "feet"),
  30567. weight: math.unit(150, "lb"),
  30568. name: "Back",
  30569. image: {
  30570. source: "./media/characters/hugo-sigil/back.svg",
  30571. extra: 519 / 495,
  30572. bottom: 5 / 524
  30573. }
  30574. },
  30575. maw: {
  30576. height: math.unit(1.4, "feet"),
  30577. weight: math.unit(150, "lb"),
  30578. name: "Maw",
  30579. image: {
  30580. source: "./media/characters/hugo-sigil/maw.svg"
  30581. }
  30582. },
  30583. feet: {
  30584. height: math.unit(1.56, "feet"),
  30585. weight: math.unit(150, "lb"),
  30586. name: "Feet",
  30587. image: {
  30588. source: "./media/characters/hugo-sigil/feet.svg",
  30589. extra: 177 / 177,
  30590. bottom: 12 / 189
  30591. }
  30592. },
  30593. },
  30594. [
  30595. {
  30596. name: "Normal",
  30597. height: math.unit(6, "feet")
  30598. },
  30599. {
  30600. name: "Macro",
  30601. height: math.unit(200, "feet"),
  30602. default: true
  30603. },
  30604. ]
  30605. ))
  30606. characterMakers.push(() => makeCharacter(
  30607. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  30608. {
  30609. front: {
  30610. height: math.unit(6, "feet"),
  30611. weight: math.unit(150, "lb"),
  30612. name: "Front",
  30613. image: {
  30614. source: "./media/characters/peri/front.svg",
  30615. extra: 2354 / 2233,
  30616. bottom: 49 / 2403
  30617. }
  30618. },
  30619. },
  30620. [
  30621. {
  30622. name: "Really Small",
  30623. height: math.unit(1, "nm")
  30624. },
  30625. {
  30626. name: "Micro",
  30627. height: math.unit(4, "inches")
  30628. },
  30629. {
  30630. name: "Normal",
  30631. height: math.unit(7, "inches"),
  30632. default: true
  30633. },
  30634. {
  30635. name: "Macro",
  30636. height: math.unit(400, "feet")
  30637. },
  30638. {
  30639. name: "Megamacro",
  30640. height: math.unit(100, "miles")
  30641. },
  30642. ]
  30643. ))
  30644. characterMakers.push(() => makeCharacter(
  30645. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  30646. {
  30647. frontSlim: {
  30648. height: math.unit(7, "feet"),
  30649. name: "Front (Slim)",
  30650. image: {
  30651. source: "./media/characters/issilora/front-slim.svg",
  30652. extra: 529 / 449,
  30653. bottom: 53 / 582
  30654. }
  30655. },
  30656. sideSlim: {
  30657. height: math.unit(7, "feet"),
  30658. name: "Side (Slim)",
  30659. image: {
  30660. source: "./media/characters/issilora/side-slim.svg",
  30661. extra: 570 / 480,
  30662. bottom: 30 / 600
  30663. }
  30664. },
  30665. backSlim: {
  30666. height: math.unit(7, "feet"),
  30667. name: "Back (Slim)",
  30668. image: {
  30669. source: "./media/characters/issilora/back-slim.svg",
  30670. extra: 537 / 455,
  30671. bottom: 46 / 583
  30672. }
  30673. },
  30674. frontBuff: {
  30675. height: math.unit(7, "feet"),
  30676. name: "Front (Buff)",
  30677. image: {
  30678. source: "./media/characters/issilora/front-buff.svg",
  30679. extra: 2310 / 2035,
  30680. bottom: 335 / 2645
  30681. }
  30682. },
  30683. head: {
  30684. height: math.unit(1.94, "feet"),
  30685. name: "Head",
  30686. image: {
  30687. source: "./media/characters/issilora/head.svg"
  30688. }
  30689. },
  30690. },
  30691. [
  30692. {
  30693. name: "Minimum",
  30694. height: math.unit(7, "feet")
  30695. },
  30696. {
  30697. name: "Comfortable",
  30698. height: math.unit(17, "feet")
  30699. },
  30700. {
  30701. name: "Fun Size",
  30702. height: math.unit(47, "feet")
  30703. },
  30704. {
  30705. name: "Natural Macro",
  30706. height: math.unit(137, "feet"),
  30707. default: true
  30708. },
  30709. {
  30710. name: "Maximum Kaiju",
  30711. height: math.unit(397, "feet")
  30712. },
  30713. ]
  30714. ))
  30715. characterMakers.push(() => makeCharacter(
  30716. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  30717. {
  30718. front: {
  30719. height: math.unit(50 + 9/12, "feet"),
  30720. weight: math.unit(32.8, "tons"),
  30721. name: "Front",
  30722. image: {
  30723. source: "./media/characters/irb'iiritaahn/front.svg",
  30724. extra: 1878/1826,
  30725. bottom: 326/2204
  30726. }
  30727. },
  30728. back: {
  30729. height: math.unit(50 + 9/12, "feet"),
  30730. weight: math.unit(32.8, "tons"),
  30731. name: "Back",
  30732. image: {
  30733. source: "./media/characters/irb'iiritaahn/back.svg",
  30734. extra: 2052/2018,
  30735. bottom: 152/2204
  30736. }
  30737. },
  30738. head: {
  30739. height: math.unit(12.86, "feet"),
  30740. name: "Head",
  30741. image: {
  30742. source: "./media/characters/irb'iiritaahn/head.svg"
  30743. }
  30744. },
  30745. maw: {
  30746. height: math.unit(9.66, "feet"),
  30747. name: "Maw",
  30748. image: {
  30749. source: "./media/characters/irb'iiritaahn/maw.svg"
  30750. }
  30751. },
  30752. frontDick: {
  30753. height: math.unit(8.78461, "feet"),
  30754. name: "Front Dick",
  30755. image: {
  30756. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  30757. }
  30758. },
  30759. rearDick: {
  30760. height: math.unit(8.78461, "feet"),
  30761. name: "Rear Dick",
  30762. image: {
  30763. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  30764. }
  30765. },
  30766. rearDickUnfolded: {
  30767. height: math.unit(8.78, "feet"),
  30768. name: "Rear Dick (Unfolded)",
  30769. image: {
  30770. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  30771. }
  30772. },
  30773. wings: {
  30774. height: math.unit(43, "feet"),
  30775. name: "Wings",
  30776. image: {
  30777. source: "./media/characters/irb'iiritaahn/wings.svg"
  30778. }
  30779. },
  30780. },
  30781. [
  30782. {
  30783. name: "Macro",
  30784. height: math.unit(50 + 9/12, "feet"),
  30785. default: true
  30786. },
  30787. ]
  30788. ))
  30789. characterMakers.push(() => makeCharacter(
  30790. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  30791. {
  30792. front: {
  30793. height: math.unit(205, "cm"),
  30794. weight: math.unit(102, "kg"),
  30795. name: "Front",
  30796. image: {
  30797. source: "./media/characters/irbisgreif/front.svg",
  30798. extra: 785/706,
  30799. bottom: 13/798
  30800. }
  30801. },
  30802. back: {
  30803. height: math.unit(205, "cm"),
  30804. weight: math.unit(102, "kg"),
  30805. name: "Back",
  30806. image: {
  30807. source: "./media/characters/irbisgreif/back.svg",
  30808. extra: 713/701,
  30809. bottom: 26/739
  30810. }
  30811. },
  30812. frontDressed: {
  30813. height: math.unit(216, "cm"),
  30814. weight: math.unit(102, "kg"),
  30815. name: "Front-dressed",
  30816. image: {
  30817. source: "./media/characters/irbisgreif/front-dressed.svg",
  30818. extra: 902/776,
  30819. bottom: 14/916
  30820. }
  30821. },
  30822. sideDressed: {
  30823. height: math.unit(195, "cm"),
  30824. weight: math.unit(102, "kg"),
  30825. name: "Side-dressed",
  30826. image: {
  30827. source: "./media/characters/irbisgreif/side-dressed.svg",
  30828. extra: 788/688,
  30829. bottom: 21/809
  30830. }
  30831. },
  30832. backDressed: {
  30833. height: math.unit(216, "cm"),
  30834. weight: math.unit(102, "kg"),
  30835. name: "Back-dressed",
  30836. image: {
  30837. source: "./media/characters/irbisgreif/back-dressed.svg",
  30838. extra: 901/783,
  30839. bottom: 10/911
  30840. }
  30841. },
  30842. dick: {
  30843. height: math.unit(0.49, "feet"),
  30844. name: "Dick",
  30845. image: {
  30846. source: "./media/characters/irbisgreif/dick.svg"
  30847. }
  30848. },
  30849. wingTop: {
  30850. height: math.unit(1.93 , "feet"),
  30851. name: "Wing-top",
  30852. image: {
  30853. source: "./media/characters/irbisgreif/wing-top.svg"
  30854. }
  30855. },
  30856. wingBottom: {
  30857. height: math.unit(1.93 , "feet"),
  30858. name: "Wing-bottom",
  30859. image: {
  30860. source: "./media/characters/irbisgreif/wing-bottom.svg"
  30861. }
  30862. },
  30863. },
  30864. [
  30865. {
  30866. name: "Normal",
  30867. height: math.unit(216, "cm"),
  30868. default: true
  30869. },
  30870. ]
  30871. ))
  30872. characterMakers.push(() => makeCharacter(
  30873. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  30874. {
  30875. front: {
  30876. height: math.unit(6, "feet"),
  30877. weight: math.unit(150, "lb"),
  30878. name: "Front",
  30879. image: {
  30880. source: "./media/characters/pride/front.svg",
  30881. extra: 1299/1230,
  30882. bottom: 18/1317
  30883. }
  30884. },
  30885. },
  30886. [
  30887. {
  30888. name: "Normal",
  30889. height: math.unit(7, "feet")
  30890. },
  30891. {
  30892. name: "Mini-macro",
  30893. height: math.unit(11, "feet")
  30894. },
  30895. {
  30896. name: "Macro",
  30897. height: math.unit(15, "meters"),
  30898. default: true
  30899. },
  30900. {
  30901. name: "Macro+",
  30902. height: math.unit(40, "meters")
  30903. },
  30904. ]
  30905. ))
  30906. characterMakers.push(() => makeCharacter(
  30907. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  30908. {
  30909. front: {
  30910. height: math.unit(4 + 2 / 12, "feet"),
  30911. weight: math.unit(95, "lb"),
  30912. name: "Front",
  30913. image: {
  30914. source: "./media/characters/vaelophis-nyx/front.svg",
  30915. extra: 2532/2330,
  30916. bottom: 0/2532
  30917. }
  30918. },
  30919. back: {
  30920. height: math.unit(4 + 2 / 12, "feet"),
  30921. weight: math.unit(95, "lb"),
  30922. name: "Back",
  30923. image: {
  30924. source: "./media/characters/vaelophis-nyx/back.svg",
  30925. extra: 2484/2361,
  30926. bottom: 0/2484
  30927. }
  30928. },
  30929. feralSide: {
  30930. height: math.unit(2 + 1/12, "feet"),
  30931. weight: math.unit(20, "lb"),
  30932. name: "Feral (Side)",
  30933. image: {
  30934. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  30935. extra: 1721/1581,
  30936. bottom: 70/1791
  30937. }
  30938. },
  30939. feralLazing: {
  30940. height: math.unit(1.08, "feet"),
  30941. weight: math.unit(20, "lb"),
  30942. name: "Feral (Lazing)",
  30943. image: {
  30944. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  30945. extra: 822/822,
  30946. bottom: 248/1070
  30947. }
  30948. },
  30949. ear: {
  30950. height: math.unit(0.416, "feet"),
  30951. name: "Ear",
  30952. image: {
  30953. source: "./media/characters/vaelophis-nyx/ear.svg"
  30954. }
  30955. },
  30956. eye: {
  30957. height: math.unit(0.0748, "feet"),
  30958. name: "Eye",
  30959. image: {
  30960. source: "./media/characters/vaelophis-nyx/eye.svg"
  30961. }
  30962. },
  30963. mouth: {
  30964. height: math.unit(0.378, "feet"),
  30965. name: "Mouth",
  30966. image: {
  30967. source: "./media/characters/vaelophis-nyx/mouth.svg"
  30968. }
  30969. },
  30970. spade: {
  30971. height: math.unit(0.55, "feet"),
  30972. name: "Spade",
  30973. image: {
  30974. source: "./media/characters/vaelophis-nyx/spade.svg"
  30975. }
  30976. },
  30977. },
  30978. [
  30979. {
  30980. name: "Normal",
  30981. height: math.unit(4 + 2/12, "feet"),
  30982. default: true
  30983. },
  30984. ]
  30985. ))
  30986. characterMakers.push(() => makeCharacter(
  30987. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  30988. {
  30989. front: {
  30990. height: math.unit(7, "feet"),
  30991. weight: math.unit(231, "lb"),
  30992. name: "Front",
  30993. image: {
  30994. source: "./media/characters/flux/front.svg",
  30995. extra: 919/871,
  30996. bottom: 0/919
  30997. }
  30998. },
  30999. back: {
  31000. height: math.unit(7, "feet"),
  31001. weight: math.unit(231, "lb"),
  31002. name: "Back",
  31003. image: {
  31004. source: "./media/characters/flux/back.svg",
  31005. extra: 1040/992,
  31006. bottom: 0/1040
  31007. }
  31008. },
  31009. frontDressed: {
  31010. height: math.unit(7, "feet"),
  31011. weight: math.unit(231, "lb"),
  31012. name: "Front (Dressed)",
  31013. image: {
  31014. source: "./media/characters/flux/front-dressed.svg",
  31015. extra: 919/871,
  31016. bottom: 0/919
  31017. }
  31018. },
  31019. feralSide: {
  31020. height: math.unit(5, "feet"),
  31021. weight: math.unit(150, "lb"),
  31022. name: "Feral (Side)",
  31023. image: {
  31024. source: "./media/characters/flux/feral-side.svg",
  31025. extra: 598/528,
  31026. bottom: 28/626
  31027. }
  31028. },
  31029. head: {
  31030. height: math.unit(1.585, "feet"),
  31031. name: "Head",
  31032. image: {
  31033. source: "./media/characters/flux/head.svg"
  31034. }
  31035. },
  31036. headSide: {
  31037. height: math.unit(1.74, "feet"),
  31038. name: "Head (Side)",
  31039. image: {
  31040. source: "./media/characters/flux/head-side.svg"
  31041. }
  31042. },
  31043. headSideFire: {
  31044. height: math.unit(1.76, "feet"),
  31045. name: "Head (Side, Fire)",
  31046. image: {
  31047. source: "./media/characters/flux/head-side-fire.svg"
  31048. }
  31049. },
  31050. },
  31051. [
  31052. {
  31053. name: "Normal",
  31054. height: math.unit(7, "feet"),
  31055. default: true
  31056. },
  31057. ]
  31058. ))
  31059. characterMakers.push(() => makeCharacter(
  31060. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  31061. {
  31062. front: {
  31063. height: math.unit(9, "feet"),
  31064. weight: math.unit(1012, "lb"),
  31065. name: "Front",
  31066. image: {
  31067. source: "./media/characters/ulfra-lupae/front.svg",
  31068. extra: 1083/1011,
  31069. bottom: 67/1150
  31070. }
  31071. },
  31072. },
  31073. [
  31074. {
  31075. name: "Micro",
  31076. height: math.unit(6, "inches")
  31077. },
  31078. {
  31079. name: "Socializing",
  31080. height: math.unit(6 + 5/12, "feet")
  31081. },
  31082. {
  31083. name: "Normal",
  31084. height: math.unit(9, "feet"),
  31085. default: true
  31086. },
  31087. {
  31088. name: "Macro",
  31089. height: math.unit(150, "feet")
  31090. },
  31091. ]
  31092. ))
  31093. characterMakers.push(() => makeCharacter(
  31094. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  31095. {
  31096. front: {
  31097. height: math.unit(5 + 2/12, "feet"),
  31098. weight: math.unit(120, "lb"),
  31099. name: "Front",
  31100. image: {
  31101. source: "./media/characters/timber/front.svg",
  31102. extra: 2814/2705,
  31103. bottom: 181/2995
  31104. }
  31105. },
  31106. },
  31107. [
  31108. {
  31109. name: "Normal",
  31110. height: math.unit(5 + 2/12, "feet"),
  31111. default: true
  31112. },
  31113. ]
  31114. ))
  31115. characterMakers.push(() => makeCharacter(
  31116. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  31117. {
  31118. front: {
  31119. height: math.unit(5 + 7/12, "feet"),
  31120. weight: math.unit(220, "lb"),
  31121. name: "Front",
  31122. image: {
  31123. source: "./media/characters/nicki/front.svg",
  31124. extra: 453/419,
  31125. bottom: 7/460
  31126. }
  31127. },
  31128. frontAlt: {
  31129. height: math.unit(5 + 7/12, "feet"),
  31130. weight: math.unit(220, "lb"),
  31131. name: "Front-alt",
  31132. image: {
  31133. source: "./media/characters/nicki/front-alt.svg",
  31134. extra: 435/411,
  31135. bottom: 12/447
  31136. }
  31137. },
  31138. back: {
  31139. height: math.unit(5 + 7/12, "feet"),
  31140. weight: math.unit(220, "lb"),
  31141. name: "Back",
  31142. image: {
  31143. source: "./media/characters/nicki/back.svg",
  31144. extra: 440/413,
  31145. bottom: 19/459
  31146. }
  31147. },
  31148. taur: {
  31149. height: math.unit(7 + 6/12, "feet"),
  31150. weight: math.unit(700, "lb"),
  31151. name: "Taur",
  31152. image: {
  31153. source: "./media/characters/nicki/taur.svg",
  31154. extra: 975/773,
  31155. bottom: 0/975
  31156. }
  31157. },
  31158. frontNsfw: {
  31159. height: math.unit(5 + 7/12, "feet"),
  31160. weight: math.unit(220, "lb"),
  31161. name: "Front (NSFW)",
  31162. image: {
  31163. source: "./media/characters/nicki/front-nsfw.svg",
  31164. extra: 453/419,
  31165. bottom: 7/460
  31166. }
  31167. },
  31168. frontNsfwAlt: {
  31169. height: math.unit(5 + 7/12, "feet"),
  31170. weight: math.unit(220, "lb"),
  31171. name: "Front (Alt, NSFW)",
  31172. image: {
  31173. source: "./media/characters/nicki/front-alt-nsfw.svg",
  31174. extra: 435/411,
  31175. bottom: 12/447
  31176. }
  31177. },
  31178. backNsfw: {
  31179. height: math.unit(5 + 7/12, "feet"),
  31180. weight: math.unit(220, "lb"),
  31181. name: "Back (NSFW)",
  31182. image: {
  31183. source: "./media/characters/nicki/back-nsfw.svg",
  31184. extra: 440/413,
  31185. bottom: 19/459
  31186. }
  31187. },
  31188. head: {
  31189. height: math.unit(2.1, "feet"),
  31190. name: "Head",
  31191. image: {
  31192. source: "./media/characters/nicki/head.svg"
  31193. }
  31194. },
  31195. paw: {
  31196. height: math.unit(1.88, "feet"),
  31197. name: "Paw",
  31198. image: {
  31199. source: "./media/characters/nicki/paw.svg"
  31200. }
  31201. },
  31202. },
  31203. [
  31204. {
  31205. name: "Normal",
  31206. height: math.unit(5 + 7/12, "feet"),
  31207. default: true
  31208. },
  31209. ]
  31210. ))
  31211. characterMakers.push(() => makeCharacter(
  31212. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  31213. {
  31214. front: {
  31215. height: math.unit(7 + 10/12, "feet"),
  31216. weight: math.unit(3.5, "tons"),
  31217. name: "Front",
  31218. image: {
  31219. source: "./media/characters/lee/front.svg",
  31220. extra: 1773/1615,
  31221. bottom: 86/1859
  31222. }
  31223. },
  31224. hand: {
  31225. height: math.unit(1.78, "feet"),
  31226. name: "Hand",
  31227. image: {
  31228. source: "./media/characters/lee/hand.svg"
  31229. }
  31230. },
  31231. maw: {
  31232. height: math.unit(1.18, "feet"),
  31233. name: "Maw",
  31234. image: {
  31235. source: "./media/characters/lee/maw.svg"
  31236. }
  31237. },
  31238. },
  31239. [
  31240. {
  31241. name: "Normal",
  31242. height: math.unit(7 + 10/12, "feet"),
  31243. default: true
  31244. },
  31245. ]
  31246. ))
  31247. characterMakers.push(() => makeCharacter(
  31248. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  31249. {
  31250. front: {
  31251. height: math.unit(9, "feet"),
  31252. name: "Front",
  31253. image: {
  31254. source: "./media/characters/guti/front.svg",
  31255. extra: 4551/4355,
  31256. bottom: 123/4674
  31257. }
  31258. },
  31259. tongue: {
  31260. height: math.unit(1, "feet"),
  31261. name: "Tongue",
  31262. image: {
  31263. source: "./media/characters/guti/tongue.svg"
  31264. }
  31265. },
  31266. paw: {
  31267. height: math.unit(1.18, "feet"),
  31268. name: "Paw",
  31269. image: {
  31270. source: "./media/characters/guti/paw.svg"
  31271. }
  31272. },
  31273. },
  31274. [
  31275. {
  31276. name: "Normal",
  31277. height: math.unit(9, "feet"),
  31278. default: true
  31279. },
  31280. ]
  31281. ))
  31282. characterMakers.push(() => makeCharacter(
  31283. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  31284. {
  31285. side: {
  31286. height: math.unit(5, "meters"),
  31287. name: "Side",
  31288. image: {
  31289. source: "./media/characters/vesper/side.svg",
  31290. extra: 1605/1518,
  31291. bottom: 0/1605
  31292. }
  31293. },
  31294. },
  31295. [
  31296. {
  31297. name: "Small",
  31298. height: math.unit(5, "meters")
  31299. },
  31300. {
  31301. name: "Sage",
  31302. height: math.unit(100, "meters"),
  31303. default: true
  31304. },
  31305. {
  31306. name: "Fun Size",
  31307. height: math.unit(600, "meters")
  31308. },
  31309. {
  31310. name: "Goddess",
  31311. height: math.unit(20000, "km")
  31312. },
  31313. {
  31314. name: "Maximum",
  31315. height: math.unit(5, "galaxies")
  31316. },
  31317. ]
  31318. ))
  31319. characterMakers.push(() => makeCharacter(
  31320. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  31321. {
  31322. front: {
  31323. height: math.unit(6 + 3/12, "feet"),
  31324. weight: math.unit(190, "lb"),
  31325. name: "Front",
  31326. image: {
  31327. source: "./media/characters/gawain/front.svg",
  31328. extra: 2222/2139,
  31329. bottom: 90/2312
  31330. }
  31331. },
  31332. back: {
  31333. height: math.unit(6 + 3/12, "feet"),
  31334. weight: math.unit(190, "lb"),
  31335. name: "Back",
  31336. image: {
  31337. source: "./media/characters/gawain/back.svg",
  31338. extra: 2199/2111,
  31339. bottom: 73/2272
  31340. }
  31341. },
  31342. },
  31343. [
  31344. {
  31345. name: "Normal",
  31346. height: math.unit(6 + 3/12, "feet"),
  31347. default: true
  31348. },
  31349. ]
  31350. ))
  31351. characterMakers.push(() => makeCharacter(
  31352. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  31353. {
  31354. side: {
  31355. height: math.unit(3.5, "meters"),
  31356. weight: math.unit(16000, "lb"),
  31357. name: "Side",
  31358. image: {
  31359. source: "./media/characters/dascalti/side.svg",
  31360. extra: 392/273,
  31361. bottom: 47/439
  31362. }
  31363. },
  31364. breath: {
  31365. height: math.unit(7.4, "feet"),
  31366. name: "Breath",
  31367. image: {
  31368. source: "./media/characters/dascalti/breath.svg"
  31369. }
  31370. },
  31371. fed: {
  31372. height: math.unit(3.6, "meters"),
  31373. weight: math.unit(16000, "lb"),
  31374. name: "Fed",
  31375. image: {
  31376. source: "./media/characters/dascalti/fed.svg",
  31377. extra: 1419/820,
  31378. bottom: 95/1514
  31379. }
  31380. },
  31381. },
  31382. [
  31383. {
  31384. name: "Normal",
  31385. height: math.unit(3.5, "meters"),
  31386. default: true
  31387. },
  31388. ]
  31389. ))
  31390. characterMakers.push(() => makeCharacter(
  31391. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  31392. {
  31393. front: {
  31394. height: math.unit(3 + 5/12, "feet"),
  31395. name: "Front",
  31396. image: {
  31397. source: "./media/characters/mauve/front.svg",
  31398. extra: 1126/1033,
  31399. bottom: 65/1191
  31400. }
  31401. },
  31402. side: {
  31403. height: math.unit(3 + 5/12, "feet"),
  31404. name: "Side",
  31405. image: {
  31406. source: "./media/characters/mauve/side.svg",
  31407. extra: 1089/1001,
  31408. bottom: 29/1118
  31409. }
  31410. },
  31411. back: {
  31412. height: math.unit(3 + 5/12, "feet"),
  31413. name: "Back",
  31414. image: {
  31415. source: "./media/characters/mauve/back.svg",
  31416. extra: 1173/1053,
  31417. bottom: 109/1282
  31418. }
  31419. },
  31420. },
  31421. [
  31422. {
  31423. name: "Normal",
  31424. height: math.unit(3 + 5/12, "feet"),
  31425. default: true
  31426. },
  31427. ]
  31428. ))
  31429. characterMakers.push(() => makeCharacter(
  31430. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  31431. {
  31432. front: {
  31433. height: math.unit(6 + 3/12, "feet"),
  31434. weight: math.unit(430, "lb"),
  31435. name: "Front",
  31436. image: {
  31437. source: "./media/characters/carlos/front.svg",
  31438. extra: 1964/1913,
  31439. bottom: 70/2034
  31440. }
  31441. },
  31442. },
  31443. [
  31444. {
  31445. name: "Normal",
  31446. height: math.unit(6 + 3/12, "feet"),
  31447. default: true
  31448. },
  31449. ]
  31450. ))
  31451. characterMakers.push(() => makeCharacter(
  31452. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  31453. {
  31454. back: {
  31455. height: math.unit(5 + 10/12, "feet"),
  31456. weight: math.unit(200, "lb"),
  31457. name: "Back",
  31458. image: {
  31459. source: "./media/characters/jax/back.svg",
  31460. extra: 764/739,
  31461. bottom: 25/789
  31462. }
  31463. },
  31464. },
  31465. [
  31466. {
  31467. name: "Normal",
  31468. height: math.unit(5 + 10/12, "feet"),
  31469. default: true
  31470. },
  31471. ]
  31472. ))
  31473. characterMakers.push(() => makeCharacter(
  31474. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  31475. {
  31476. front: {
  31477. height: math.unit(8, "feet"),
  31478. weight: math.unit(250, "lb"),
  31479. name: "Front",
  31480. image: {
  31481. source: "./media/characters/eikthynir/front.svg",
  31482. extra: 1332/1166,
  31483. bottom: 82/1414
  31484. }
  31485. },
  31486. back: {
  31487. height: math.unit(8, "feet"),
  31488. weight: math.unit(250, "lb"),
  31489. name: "Back",
  31490. image: {
  31491. source: "./media/characters/eikthynir/back.svg",
  31492. extra: 1342/1190,
  31493. bottom: 19/1361
  31494. }
  31495. },
  31496. dick: {
  31497. height: math.unit(2.35, "feet"),
  31498. name: "Dick",
  31499. image: {
  31500. source: "./media/characters/eikthynir/dick.svg"
  31501. }
  31502. },
  31503. },
  31504. [
  31505. {
  31506. name: "Normal",
  31507. height: math.unit(8, "feet"),
  31508. default: true
  31509. },
  31510. ]
  31511. ))
  31512. characterMakers.push(() => makeCharacter(
  31513. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  31514. {
  31515. front: {
  31516. height: math.unit(99, "meters"),
  31517. weight: math.unit(13000, "tons"),
  31518. name: "Front",
  31519. image: {
  31520. source: "./media/characters/zlmos/front.svg",
  31521. extra: 2202/1992,
  31522. bottom: 315/2517
  31523. }
  31524. },
  31525. },
  31526. [
  31527. {
  31528. name: "Macro",
  31529. height: math.unit(99, "meters"),
  31530. default: true
  31531. },
  31532. ]
  31533. ))
  31534. characterMakers.push(() => makeCharacter(
  31535. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  31536. {
  31537. front: {
  31538. height: math.unit(6 + 5/12, "feet"),
  31539. name: "Front",
  31540. image: {
  31541. source: "./media/characters/purri/front.svg",
  31542. extra: 1698/1610,
  31543. bottom: 32/1730
  31544. }
  31545. },
  31546. frontAlt: {
  31547. height: math.unit(6 + 5/12, "feet"),
  31548. name: "Front (Alt)",
  31549. image: {
  31550. source: "./media/characters/purri/front-alt.svg",
  31551. extra: 450/420,
  31552. bottom: 26/476
  31553. }
  31554. },
  31555. boots: {
  31556. height: math.unit(5.5, "feet"),
  31557. name: "Boots",
  31558. image: {
  31559. source: "./media/characters/purri/boots.svg",
  31560. extra: 905/853,
  31561. bottom: 18/923
  31562. }
  31563. },
  31564. lying: {
  31565. height: math.unit(2, "feet"),
  31566. name: "Lying",
  31567. image: {
  31568. source: "./media/characters/purri/lying.svg",
  31569. extra: 940/843,
  31570. bottom: 146/1086
  31571. }
  31572. },
  31573. devious: {
  31574. height: math.unit(1.77, "feet"),
  31575. name: "Devious",
  31576. image: {
  31577. source: "./media/characters/purri/devious.svg",
  31578. extra: 1440/1155,
  31579. bottom: 147/1587
  31580. }
  31581. },
  31582. bean: {
  31583. height: math.unit(1.94, "feet"),
  31584. name: "Bean",
  31585. image: {
  31586. source: "./media/characters/purri/bean.svg"
  31587. }
  31588. },
  31589. },
  31590. [
  31591. {
  31592. name: "Micro",
  31593. height: math.unit(1, "mm")
  31594. },
  31595. {
  31596. name: "Normal",
  31597. height: math.unit(6 + 5/12, "feet"),
  31598. default: true
  31599. },
  31600. {
  31601. name: "Macro :3c",
  31602. height: math.unit(2, "miles")
  31603. },
  31604. ]
  31605. ))
  31606. characterMakers.push(() => makeCharacter(
  31607. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  31608. {
  31609. front: {
  31610. height: math.unit(6 + 2/12, "feet"),
  31611. weight: math.unit(250, "lb"),
  31612. name: "Front",
  31613. image: {
  31614. source: "./media/characters/moonlight/front.svg",
  31615. extra: 1044/908,
  31616. bottom: 56/1100
  31617. }
  31618. },
  31619. feral: {
  31620. height: math.unit(3 + 1/12, "feet"),
  31621. weight: math.unit(50, "kg"),
  31622. name: "Feral",
  31623. image: {
  31624. source: "./media/characters/moonlight/feral.svg",
  31625. extra: 3705/2791,
  31626. bottom: 145/3850
  31627. }
  31628. },
  31629. paw: {
  31630. height: math.unit(1, "feet"),
  31631. name: "Paw",
  31632. image: {
  31633. source: "./media/characters/moonlight/paw.svg"
  31634. }
  31635. },
  31636. paws: {
  31637. height: math.unit(0.98, "feet"),
  31638. name: "Paws",
  31639. image: {
  31640. source: "./media/characters/moonlight/paws.svg",
  31641. extra: 939/939,
  31642. bottom: 50/989
  31643. }
  31644. },
  31645. mouth: {
  31646. height: math.unit(0.48, "feet"),
  31647. name: "Mouth",
  31648. image: {
  31649. source: "./media/characters/moonlight/mouth.svg"
  31650. }
  31651. },
  31652. dick: {
  31653. height: math.unit(1.46, "feet"),
  31654. name: "Dick",
  31655. image: {
  31656. source: "./media/characters/moonlight/dick.svg"
  31657. }
  31658. },
  31659. },
  31660. [
  31661. {
  31662. name: "Normal",
  31663. height: math.unit(6 + 2/12, "feet"),
  31664. default: true
  31665. },
  31666. {
  31667. name: "Macro",
  31668. height: math.unit(300, "feet")
  31669. },
  31670. {
  31671. name: "Macro+",
  31672. height: math.unit(1, "mile")
  31673. },
  31674. {
  31675. name: "Mt. Moon",
  31676. height: math.unit(5, "miles")
  31677. },
  31678. {
  31679. name: "Megamacro",
  31680. height: math.unit(15, "miles")
  31681. },
  31682. ]
  31683. ))
  31684. characterMakers.push(() => makeCharacter(
  31685. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  31686. {
  31687. back: {
  31688. height: math.unit(6, "feet"),
  31689. weight: math.unit(150, "lb"),
  31690. name: "Back",
  31691. image: {
  31692. source: "./media/characters/sylen/back.svg",
  31693. extra: 1335/1273,
  31694. bottom: 107/1442
  31695. }
  31696. },
  31697. },
  31698. [
  31699. {
  31700. name: "Normal",
  31701. height: math.unit(5 + 5/12, "feet")
  31702. },
  31703. {
  31704. name: "Megamacro",
  31705. height: math.unit(3, "miles"),
  31706. default: true
  31707. },
  31708. ]
  31709. ))
  31710. characterMakers.push(() => makeCharacter(
  31711. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  31712. {
  31713. front: {
  31714. height: math.unit(6, "feet"),
  31715. weight: math.unit(190, "lb"),
  31716. name: "Front",
  31717. image: {
  31718. source: "./media/characters/huttser/front.svg",
  31719. extra: 1152/1058,
  31720. bottom: 23/1175
  31721. }
  31722. },
  31723. side: {
  31724. height: math.unit(6, "feet"),
  31725. weight: math.unit(190, "lb"),
  31726. name: "Side",
  31727. image: {
  31728. source: "./media/characters/huttser/side.svg",
  31729. extra: 1174/1065,
  31730. bottom: 18/1192
  31731. }
  31732. },
  31733. back: {
  31734. height: math.unit(6, "feet"),
  31735. weight: math.unit(190, "lb"),
  31736. name: "Back",
  31737. image: {
  31738. source: "./media/characters/huttser/back.svg",
  31739. extra: 1158/1056,
  31740. bottom: 12/1170
  31741. }
  31742. },
  31743. },
  31744. [
  31745. ]
  31746. ))
  31747. characterMakers.push(() => makeCharacter(
  31748. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  31749. {
  31750. side: {
  31751. height: math.unit(12 + 9/12, "feet"),
  31752. weight: math.unit(15000, "lb"),
  31753. name: "Side",
  31754. image: {
  31755. source: "./media/characters/faan/side.svg",
  31756. extra: 2747/2697,
  31757. bottom: 0/2747
  31758. }
  31759. },
  31760. front: {
  31761. height: math.unit(12 + 9/12, "feet"),
  31762. weight: math.unit(15000, "lb"),
  31763. name: "Front",
  31764. image: {
  31765. source: "./media/characters/faan/front.svg",
  31766. extra: 607/571,
  31767. bottom: 24/631
  31768. }
  31769. },
  31770. head: {
  31771. height: math.unit(2.85, "feet"),
  31772. name: "Head",
  31773. image: {
  31774. source: "./media/characters/faan/head.svg"
  31775. }
  31776. },
  31777. headAlt: {
  31778. height: math.unit(3.13, "feet"),
  31779. name: "Head-alt",
  31780. image: {
  31781. source: "./media/characters/faan/head-alt.svg"
  31782. }
  31783. },
  31784. },
  31785. [
  31786. {
  31787. name: "Normal",
  31788. height: math.unit(12 + 9/12, "feet"),
  31789. default: true
  31790. },
  31791. ]
  31792. ))
  31793. characterMakers.push(() => makeCharacter(
  31794. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  31795. {
  31796. front: {
  31797. height: math.unit(6, "feet"),
  31798. weight: math.unit(300, "lb"),
  31799. name: "Front",
  31800. image: {
  31801. source: "./media/characters/tanio/front.svg",
  31802. extra: 711/673,
  31803. bottom: 25/736
  31804. }
  31805. },
  31806. },
  31807. [
  31808. {
  31809. name: "Normal",
  31810. height: math.unit(6, "feet"),
  31811. default: true
  31812. },
  31813. ]
  31814. ))
  31815. characterMakers.push(() => makeCharacter(
  31816. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  31817. {
  31818. front: {
  31819. height: math.unit(3, "inches"),
  31820. name: "Front",
  31821. image: {
  31822. source: "./media/characters/noboru/front.svg",
  31823. extra: 1039/932,
  31824. bottom: 18/1057
  31825. }
  31826. },
  31827. },
  31828. [
  31829. {
  31830. name: "Micro",
  31831. height: math.unit(3, "inches"),
  31832. default: true
  31833. },
  31834. ]
  31835. ))
  31836. characterMakers.push(() => makeCharacter(
  31837. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  31838. {
  31839. front: {
  31840. height: math.unit(1.85, "meters"),
  31841. weight: math.unit(80, "kg"),
  31842. name: "Front",
  31843. image: {
  31844. source: "./media/characters/daniel-barrett/front.svg",
  31845. extra: 355/337,
  31846. bottom: 9/364
  31847. }
  31848. },
  31849. },
  31850. [
  31851. {
  31852. name: "Pico",
  31853. height: math.unit(0.0433, "mm")
  31854. },
  31855. {
  31856. name: "Nano",
  31857. height: math.unit(1.5, "mm")
  31858. },
  31859. {
  31860. name: "Micro",
  31861. height: math.unit(5.3, "cm"),
  31862. default: true
  31863. },
  31864. {
  31865. name: "Normal",
  31866. height: math.unit(1.85, "meters")
  31867. },
  31868. {
  31869. name: "Macro",
  31870. height: math.unit(64.7, "meters")
  31871. },
  31872. {
  31873. name: "Megamacro",
  31874. height: math.unit(2.26, "km")
  31875. },
  31876. {
  31877. name: "Gigamacro",
  31878. height: math.unit(79, "km")
  31879. },
  31880. {
  31881. name: "Teramacro",
  31882. height: math.unit(2765, "km")
  31883. },
  31884. {
  31885. name: "Petamacro",
  31886. height: math.unit(96678, "km")
  31887. },
  31888. ]
  31889. ))
  31890. characterMakers.push(() => makeCharacter(
  31891. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  31892. {
  31893. front: {
  31894. height: math.unit(30, "meters"),
  31895. weight: math.unit(400, "tons"),
  31896. name: "Front",
  31897. image: {
  31898. source: "./media/characters/zeel/front.svg",
  31899. extra: 2599/2599,
  31900. bottom: 226/2825
  31901. }
  31902. },
  31903. },
  31904. [
  31905. {
  31906. name: "Macro",
  31907. height: math.unit(30, "meters"),
  31908. default: true
  31909. },
  31910. ]
  31911. ))
  31912. characterMakers.push(() => makeCharacter(
  31913. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  31914. {
  31915. front: {
  31916. height: math.unit(6 + 7/12, "feet"),
  31917. weight: math.unit(210, "lb"),
  31918. name: "Front",
  31919. image: {
  31920. source: "./media/characters/tarn/front.svg",
  31921. extra: 3517/3220,
  31922. bottom: 91/3608
  31923. }
  31924. },
  31925. back: {
  31926. height: math.unit(6 + 7/12, "feet"),
  31927. weight: math.unit(210, "lb"),
  31928. name: "Back",
  31929. image: {
  31930. source: "./media/characters/tarn/back.svg",
  31931. extra: 3566/3241,
  31932. bottom: 34/3600
  31933. }
  31934. },
  31935. dick: {
  31936. height: math.unit(1.65, "feet"),
  31937. name: "Dick",
  31938. image: {
  31939. source: "./media/characters/tarn/dick.svg"
  31940. }
  31941. },
  31942. paw: {
  31943. height: math.unit(1.80, "feet"),
  31944. name: "Paw",
  31945. image: {
  31946. source: "./media/characters/tarn/paw.svg"
  31947. }
  31948. },
  31949. tongue: {
  31950. height: math.unit(0.97, "feet"),
  31951. name: "Tongue",
  31952. image: {
  31953. source: "./media/characters/tarn/tongue.svg"
  31954. }
  31955. },
  31956. },
  31957. [
  31958. {
  31959. name: "Micro",
  31960. height: math.unit(4, "inches")
  31961. },
  31962. {
  31963. name: "Normal",
  31964. height: math.unit(6 + 7/12, "feet"),
  31965. default: true
  31966. },
  31967. {
  31968. name: "Macro",
  31969. height: math.unit(300, "feet")
  31970. },
  31971. ]
  31972. ))
  31973. characterMakers.push(() => makeCharacter(
  31974. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  31975. {
  31976. front: {
  31977. height: math.unit(5 + 7/12, "feet"),
  31978. weight: math.unit(80, "kg"),
  31979. name: "Front",
  31980. image: {
  31981. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  31982. extra: 3023/2865,
  31983. bottom: 33/3056
  31984. }
  31985. },
  31986. back: {
  31987. height: math.unit(5 + 7/12, "feet"),
  31988. weight: math.unit(80, "kg"),
  31989. name: "Back",
  31990. image: {
  31991. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  31992. extra: 3020/2886,
  31993. bottom: 30/3050
  31994. }
  31995. },
  31996. dick: {
  31997. height: math.unit(0.98, "feet"),
  31998. name: "Dick",
  31999. image: {
  32000. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  32001. }
  32002. },
  32003. anatomy: {
  32004. height: math.unit(2.86, "feet"),
  32005. name: "Anatomy",
  32006. image: {
  32007. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  32008. }
  32009. },
  32010. },
  32011. [
  32012. {
  32013. name: "Really Small",
  32014. height: math.unit(2, "inches")
  32015. },
  32016. {
  32017. name: "Micro",
  32018. height: math.unit(5.583, "inches")
  32019. },
  32020. {
  32021. name: "Normal",
  32022. height: math.unit(5 + 7/12, "feet"),
  32023. default: true
  32024. },
  32025. {
  32026. name: "Macro",
  32027. height: math.unit(67, "feet")
  32028. },
  32029. {
  32030. name: "Megamacro",
  32031. height: math.unit(134, "feet")
  32032. },
  32033. ]
  32034. ))
  32035. characterMakers.push(() => makeCharacter(
  32036. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  32037. {
  32038. front: {
  32039. height: math.unit(9, "feet"),
  32040. weight: math.unit(120, "lb"),
  32041. name: "Front",
  32042. image: {
  32043. source: "./media/characters/sally/front.svg",
  32044. extra: 1506/1349,
  32045. bottom: 66/1572
  32046. }
  32047. },
  32048. },
  32049. [
  32050. {
  32051. name: "Normal",
  32052. height: math.unit(9, "feet"),
  32053. default: true
  32054. },
  32055. ]
  32056. ))
  32057. characterMakers.push(() => makeCharacter(
  32058. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  32059. {
  32060. front: {
  32061. height: math.unit(8, "feet"),
  32062. weight: math.unit(900, "lb"),
  32063. name: "Front",
  32064. image: {
  32065. source: "./media/characters/owen/front.svg",
  32066. extra: 1761/1657,
  32067. bottom: 74/1835
  32068. }
  32069. },
  32070. side: {
  32071. height: math.unit(8, "feet"),
  32072. weight: math.unit(900, "lb"),
  32073. name: "Side",
  32074. image: {
  32075. source: "./media/characters/owen/side.svg",
  32076. extra: 1797/1734,
  32077. bottom: 30/1827
  32078. }
  32079. },
  32080. back: {
  32081. height: math.unit(8, "feet"),
  32082. weight: math.unit(900, "lb"),
  32083. name: "Back",
  32084. image: {
  32085. source: "./media/characters/owen/back.svg",
  32086. extra: 1796/1706,
  32087. bottom: 59/1855
  32088. }
  32089. },
  32090. maw: {
  32091. height: math.unit(1.76, "feet"),
  32092. name: "Maw",
  32093. image: {
  32094. source: "./media/characters/owen/maw.svg"
  32095. }
  32096. },
  32097. },
  32098. [
  32099. {
  32100. name: "Normal",
  32101. height: math.unit(8, "feet"),
  32102. default: true
  32103. },
  32104. ]
  32105. ))
  32106. characterMakers.push(() => makeCharacter(
  32107. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  32108. {
  32109. front: {
  32110. height: math.unit(4, "feet"),
  32111. weight: math.unit(400, "lb"),
  32112. name: "Front",
  32113. image: {
  32114. source: "./media/characters/ryth/front.svg",
  32115. extra: 1920/1748,
  32116. bottom: 42/1962
  32117. }
  32118. },
  32119. back: {
  32120. height: math.unit(4, "feet"),
  32121. weight: math.unit(400, "lb"),
  32122. name: "Back",
  32123. image: {
  32124. source: "./media/characters/ryth/back.svg",
  32125. extra: 1897/1690,
  32126. bottom: 89/1986
  32127. }
  32128. },
  32129. mouth: {
  32130. height: math.unit(1.39, "feet"),
  32131. name: "Mouth",
  32132. image: {
  32133. source: "./media/characters/ryth/mouth.svg"
  32134. }
  32135. },
  32136. tailmaw: {
  32137. height: math.unit(1.23, "feet"),
  32138. name: "Tailmaw",
  32139. image: {
  32140. source: "./media/characters/ryth/tailmaw.svg"
  32141. }
  32142. },
  32143. goia: {
  32144. height: math.unit(4, "meters"),
  32145. weight: math.unit(10800, "lb"),
  32146. name: "Goia",
  32147. image: {
  32148. source: "./media/characters/ryth/goia.svg",
  32149. extra: 745/640,
  32150. bottom: 107/852
  32151. }
  32152. },
  32153. goiaFront: {
  32154. height: math.unit(4, "meters"),
  32155. weight: math.unit(10800, "lb"),
  32156. name: "Goia (Front)",
  32157. image: {
  32158. source: "./media/characters/ryth/goia-front.svg",
  32159. extra: 750/586,
  32160. bottom: 114/864
  32161. }
  32162. },
  32163. goiaMaw: {
  32164. height: math.unit(5.55, "feet"),
  32165. name: "Goia Maw",
  32166. image: {
  32167. source: "./media/characters/ryth/goia-maw.svg"
  32168. }
  32169. },
  32170. goiaForepaw: {
  32171. height: math.unit(3.5, "feet"),
  32172. name: "Goia Forepaw",
  32173. image: {
  32174. source: "./media/characters/ryth/goia-forepaw.svg"
  32175. }
  32176. },
  32177. goiaHindpaw: {
  32178. height: math.unit(5.55, "feet"),
  32179. name: "Goia Hindpaw",
  32180. image: {
  32181. source: "./media/characters/ryth/goia-hindpaw.svg"
  32182. }
  32183. },
  32184. },
  32185. [
  32186. {
  32187. name: "Normal",
  32188. height: math.unit(4, "feet"),
  32189. default: true
  32190. },
  32191. ]
  32192. ))
  32193. characterMakers.push(() => makeCharacter(
  32194. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  32195. {
  32196. front: {
  32197. height: math.unit(7, "feet"),
  32198. weight: math.unit(180, "lb"),
  32199. name: "Front",
  32200. image: {
  32201. source: "./media/characters/necrolance/front.svg",
  32202. extra: 1062/947,
  32203. bottom: 41/1103
  32204. }
  32205. },
  32206. back: {
  32207. height: math.unit(7, "feet"),
  32208. weight: math.unit(180, "lb"),
  32209. name: "Back",
  32210. image: {
  32211. source: "./media/characters/necrolance/back.svg",
  32212. extra: 1045/984,
  32213. bottom: 14/1059
  32214. }
  32215. },
  32216. wing: {
  32217. height: math.unit(2.67, "feet"),
  32218. name: "Wing",
  32219. image: {
  32220. source: "./media/characters/necrolance/wing.svg"
  32221. }
  32222. },
  32223. },
  32224. [
  32225. {
  32226. name: "Normal",
  32227. height: math.unit(7, "feet"),
  32228. default: true
  32229. },
  32230. ]
  32231. ))
  32232. characterMakers.push(() => makeCharacter(
  32233. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  32234. {
  32235. front: {
  32236. height: math.unit(76, "meters"),
  32237. weight: math.unit(30000, "tons"),
  32238. name: "Front",
  32239. image: {
  32240. source: "./media/characters/tyler/front.svg",
  32241. extra: 1640/1640,
  32242. bottom: 114/1754
  32243. }
  32244. },
  32245. },
  32246. [
  32247. {
  32248. name: "Macro",
  32249. height: math.unit(76, "meters"),
  32250. default: true
  32251. },
  32252. ]
  32253. ))
  32254. characterMakers.push(() => makeCharacter(
  32255. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  32256. {
  32257. front: {
  32258. height: math.unit(4 + 11/12, "feet"),
  32259. weight: math.unit(132, "lb"),
  32260. name: "Front",
  32261. image: {
  32262. source: "./media/characters/icey/front.svg",
  32263. extra: 2750/2550,
  32264. bottom: 33/2783
  32265. }
  32266. },
  32267. back: {
  32268. height: math.unit(4 + 11/12, "feet"),
  32269. weight: math.unit(132, "lb"),
  32270. name: "Back",
  32271. image: {
  32272. source: "./media/characters/icey/back.svg",
  32273. extra: 2624/2481,
  32274. bottom: 35/2659
  32275. }
  32276. },
  32277. },
  32278. [
  32279. {
  32280. name: "Normal",
  32281. height: math.unit(4 + 11/12, "feet"),
  32282. default: true
  32283. },
  32284. ]
  32285. ))
  32286. characterMakers.push(() => makeCharacter(
  32287. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  32288. {
  32289. front: {
  32290. height: math.unit(100, "feet"),
  32291. weight: math.unit(0, "lb"),
  32292. name: "Front",
  32293. image: {
  32294. source: "./media/characters/smile/front.svg",
  32295. extra: 2983/2912,
  32296. bottom: 162/3145
  32297. }
  32298. },
  32299. back: {
  32300. height: math.unit(100, "feet"),
  32301. weight: math.unit(0, "lb"),
  32302. name: "Back",
  32303. image: {
  32304. source: "./media/characters/smile/back.svg",
  32305. extra: 3143/3031,
  32306. bottom: 91/3234
  32307. }
  32308. },
  32309. head: {
  32310. height: math.unit(26.3, "feet"),
  32311. weight: math.unit(0, "lb"),
  32312. name: "Head",
  32313. image: {
  32314. source: "./media/characters/smile/head.svg"
  32315. }
  32316. },
  32317. collar: {
  32318. height: math.unit(5.3, "feet"),
  32319. weight: math.unit(0, "lb"),
  32320. name: "Collar",
  32321. image: {
  32322. source: "./media/characters/smile/collar.svg"
  32323. }
  32324. },
  32325. },
  32326. [
  32327. {
  32328. name: "Macro",
  32329. height: math.unit(100, "feet"),
  32330. default: true
  32331. },
  32332. ]
  32333. ))
  32334. characterMakers.push(() => makeCharacter(
  32335. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  32336. {
  32337. dragon: {
  32338. height: math.unit(26, "feet"),
  32339. weight: math.unit(36, "tons"),
  32340. name: "Dragon",
  32341. image: {
  32342. source: "./media/characters/arimphae/dragon.svg",
  32343. extra: 1574/983,
  32344. bottom: 357/1931
  32345. }
  32346. },
  32347. drake: {
  32348. height: math.unit(9, "feet"),
  32349. weight: math.unit(1.5, "tons"),
  32350. name: "Drake",
  32351. image: {
  32352. source: "./media/characters/arimphae/drake.svg",
  32353. extra: 1120/925,
  32354. bottom: 435/1555
  32355. }
  32356. },
  32357. },
  32358. [
  32359. {
  32360. name: "Small",
  32361. height: math.unit(26*5/9, "feet")
  32362. },
  32363. {
  32364. name: "Normal",
  32365. height: math.unit(26, "feet"),
  32366. default: true
  32367. },
  32368. ]
  32369. ))
  32370. characterMakers.push(() => makeCharacter(
  32371. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  32372. {
  32373. front: {
  32374. height: math.unit(8 + 9/12, "feet"),
  32375. name: "Front",
  32376. image: {
  32377. source: "./media/characters/xander/front.svg",
  32378. extra: 1237/974,
  32379. bottom: 94/1331
  32380. }
  32381. },
  32382. },
  32383. [
  32384. {
  32385. name: "Normal",
  32386. height: math.unit(8 + 9/12, "feet"),
  32387. default: true
  32388. },
  32389. {
  32390. name: "Gaze Grabber",
  32391. height: math.unit(13 + 8/12, "feet")
  32392. },
  32393. {
  32394. name: "Jaw Dropper",
  32395. height: math.unit(27, "feet")
  32396. },
  32397. {
  32398. name: "Show Stopper",
  32399. height: math.unit(136, "feet")
  32400. },
  32401. {
  32402. name: "Superstar",
  32403. height: math.unit(1.9e6, "miles")
  32404. },
  32405. ]
  32406. ))
  32407. characterMakers.push(() => makeCharacter(
  32408. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  32409. {
  32410. side: {
  32411. height: math.unit(2100, "feet"),
  32412. name: "Side",
  32413. image: {
  32414. source: "./media/characters/osiris/side.svg",
  32415. extra: 1105/939,
  32416. bottom: 167/1272
  32417. }
  32418. },
  32419. },
  32420. [
  32421. {
  32422. name: "Macro",
  32423. height: math.unit(2100, "feet"),
  32424. default: true
  32425. },
  32426. ]
  32427. ))
  32428. characterMakers.push(() => makeCharacter(
  32429. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  32430. {
  32431. front: {
  32432. height: math.unit(6 + 8/12, "feet"),
  32433. weight: math.unit(225, "lb"),
  32434. name: "Front",
  32435. image: {
  32436. source: "./media/characters/rhys-londe/front.svg",
  32437. extra: 2258/2141,
  32438. bottom: 188/2446
  32439. }
  32440. },
  32441. back: {
  32442. height: math.unit(6 + 8/12, "feet"),
  32443. weight: math.unit(225, "lb"),
  32444. name: "Back",
  32445. image: {
  32446. source: "./media/characters/rhys-londe/back.svg",
  32447. extra: 2237/2137,
  32448. bottom: 63/2300
  32449. }
  32450. },
  32451. frontNsfw: {
  32452. height: math.unit(6 + 8/12, "feet"),
  32453. weight: math.unit(225, "lb"),
  32454. name: "Front (NSFW)",
  32455. image: {
  32456. source: "./media/characters/rhys-londe/front-nsfw.svg",
  32457. extra: 2258/2141,
  32458. bottom: 188/2446
  32459. }
  32460. },
  32461. backNsfw: {
  32462. height: math.unit(6 + 8/12, "feet"),
  32463. weight: math.unit(225, "lb"),
  32464. name: "Back (NSFW)",
  32465. image: {
  32466. source: "./media/characters/rhys-londe/back-nsfw.svg",
  32467. extra: 2237/2137,
  32468. bottom: 63/2300
  32469. }
  32470. },
  32471. dick: {
  32472. height: math.unit(30, "inches"),
  32473. name: "Dick",
  32474. image: {
  32475. source: "./media/characters/rhys-londe/dick.svg"
  32476. }
  32477. },
  32478. maw: {
  32479. height: math.unit(1.6, "feet"),
  32480. name: "Maw",
  32481. image: {
  32482. source: "./media/characters/rhys-londe/maw.svg"
  32483. }
  32484. },
  32485. },
  32486. [
  32487. {
  32488. name: "Normal",
  32489. height: math.unit(6 + 8/12, "feet"),
  32490. default: true
  32491. },
  32492. ]
  32493. ))
  32494. characterMakers.push(() => makeCharacter(
  32495. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  32496. {
  32497. front: {
  32498. height: math.unit(3 + 10/12, "feet"),
  32499. weight: math.unit(90, "lb"),
  32500. name: "Front",
  32501. image: {
  32502. source: "./media/characters/taivas-ensim/front.svg",
  32503. extra: 1327/1216,
  32504. bottom: 96/1423
  32505. }
  32506. },
  32507. back: {
  32508. height: math.unit(3 + 10/12, "feet"),
  32509. weight: math.unit(90, "lb"),
  32510. name: "Back",
  32511. image: {
  32512. source: "./media/characters/taivas-ensim/back.svg",
  32513. extra: 1355/1247,
  32514. bottom: 11/1366
  32515. }
  32516. },
  32517. frontNsfw: {
  32518. height: math.unit(3 + 10/12, "feet"),
  32519. weight: math.unit(90, "lb"),
  32520. name: "Front (NSFW)",
  32521. image: {
  32522. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  32523. extra: 1327/1216,
  32524. bottom: 96/1423
  32525. }
  32526. },
  32527. backNsfw: {
  32528. height: math.unit(3 + 10/12, "feet"),
  32529. weight: math.unit(90, "lb"),
  32530. name: "Back (NSFW)",
  32531. image: {
  32532. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  32533. extra: 1355/1247,
  32534. bottom: 11/1366
  32535. }
  32536. },
  32537. },
  32538. [
  32539. {
  32540. name: "Normal",
  32541. height: math.unit(3 + 10/12, "feet"),
  32542. default: true
  32543. },
  32544. ]
  32545. ))
  32546. characterMakers.push(() => makeCharacter(
  32547. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  32548. {
  32549. front: {
  32550. height: math.unit(9 + 6/12, "feet"),
  32551. weight: math.unit(940, "lb"),
  32552. name: "Front",
  32553. image: {
  32554. source: "./media/characters/byliss/front.svg",
  32555. extra: 1327/1290,
  32556. bottom: 82/1409
  32557. }
  32558. },
  32559. back: {
  32560. height: math.unit(9 + 6/12, "feet"),
  32561. weight: math.unit(940, "lb"),
  32562. name: "Back",
  32563. image: {
  32564. source: "./media/characters/byliss/back.svg",
  32565. extra: 1376/1349,
  32566. bottom: 9/1385
  32567. }
  32568. },
  32569. frontNsfw: {
  32570. height: math.unit(9 + 6/12, "feet"),
  32571. weight: math.unit(940, "lb"),
  32572. name: "Front (NSFW)",
  32573. image: {
  32574. source: "./media/characters/byliss/front-nsfw.svg",
  32575. extra: 1327/1290,
  32576. bottom: 82/1409
  32577. }
  32578. },
  32579. backNsfw: {
  32580. height: math.unit(9 + 6/12, "feet"),
  32581. weight: math.unit(940, "lb"),
  32582. name: "Back (NSFW)",
  32583. image: {
  32584. source: "./media/characters/byliss/back-nsfw.svg",
  32585. extra: 1376/1349,
  32586. bottom: 9/1385
  32587. }
  32588. },
  32589. },
  32590. [
  32591. {
  32592. name: "Normal",
  32593. height: math.unit(9 + 6/12, "feet"),
  32594. default: true
  32595. },
  32596. ]
  32597. ))
  32598. characterMakers.push(() => makeCharacter(
  32599. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  32600. {
  32601. front: {
  32602. height: math.unit(5 + 2/12, "feet"),
  32603. weight: math.unit(200, "lb"),
  32604. name: "Front",
  32605. image: {
  32606. source: "./media/characters/noraly/front.svg",
  32607. extra: 4985/4773,
  32608. bottom: 150/5135
  32609. }
  32610. },
  32611. full: {
  32612. height: math.unit(5 + 2/12, "feet"),
  32613. weight: math.unit(164, "lb"),
  32614. name: "Full",
  32615. image: {
  32616. source: "./media/characters/noraly/full.svg",
  32617. extra: 1114/1059,
  32618. bottom: 35/1149
  32619. }
  32620. },
  32621. fuller: {
  32622. height: math.unit(5 + 2/12, "feet"),
  32623. weight: math.unit(230, "lb"),
  32624. name: "Fuller",
  32625. image: {
  32626. source: "./media/characters/noraly/fuller.svg",
  32627. extra: 1114/1059,
  32628. bottom: 35/1149
  32629. }
  32630. },
  32631. fullest: {
  32632. height: math.unit(5 + 2/12, "feet"),
  32633. weight: math.unit(300, "lb"),
  32634. name: "Fullest",
  32635. image: {
  32636. source: "./media/characters/noraly/fullest.svg",
  32637. extra: 1114/1059,
  32638. bottom: 35/1149
  32639. }
  32640. },
  32641. },
  32642. [
  32643. {
  32644. name: "Normal",
  32645. height: math.unit(5 + 2/12, "feet"),
  32646. default: true
  32647. },
  32648. ]
  32649. ))
  32650. characterMakers.push(() => makeCharacter(
  32651. { name: "Pera", species: ["snake"], tags: ["naga"] },
  32652. {
  32653. front: {
  32654. height: math.unit(5 + 2/12, "feet"),
  32655. weight: math.unit(210, "lb"),
  32656. name: "Front",
  32657. image: {
  32658. source: "./media/characters/pera/front.svg",
  32659. extra: 1560/1531,
  32660. bottom: 165/1725
  32661. }
  32662. },
  32663. back: {
  32664. height: math.unit(5 + 2/12, "feet"),
  32665. weight: math.unit(210, "lb"),
  32666. name: "Back",
  32667. image: {
  32668. source: "./media/characters/pera/back.svg",
  32669. extra: 1523/1493,
  32670. bottom: 152/1675
  32671. }
  32672. },
  32673. dick: {
  32674. height: math.unit(2.4, "feet"),
  32675. name: "Dick",
  32676. image: {
  32677. source: "./media/characters/pera/dick.svg"
  32678. }
  32679. },
  32680. },
  32681. [
  32682. {
  32683. name: "Normal",
  32684. height: math.unit(5 + 2/12, "feet"),
  32685. default: true
  32686. },
  32687. ]
  32688. ))
  32689. characterMakers.push(() => makeCharacter(
  32690. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  32691. {
  32692. front: {
  32693. height: math.unit(12, "feet"),
  32694. weight: math.unit(3200, "lb"),
  32695. name: "Front",
  32696. image: {
  32697. source: "./media/characters/julian/front.svg",
  32698. extra: 2962/2701,
  32699. bottom: 184/3146
  32700. }
  32701. },
  32702. maw: {
  32703. height: math.unit(5.35, "feet"),
  32704. name: "Maw",
  32705. image: {
  32706. source: "./media/characters/julian/maw.svg"
  32707. }
  32708. },
  32709. paw: {
  32710. height: math.unit(3.07, "feet"),
  32711. name: "Paw",
  32712. image: {
  32713. source: "./media/characters/julian/paw.svg"
  32714. }
  32715. },
  32716. },
  32717. [
  32718. {
  32719. name: "Default",
  32720. height: math.unit(12, "feet"),
  32721. default: true
  32722. },
  32723. {
  32724. name: "Big",
  32725. height: math.unit(50, "feet")
  32726. },
  32727. {
  32728. name: "Really Big",
  32729. height: math.unit(1, "mile")
  32730. },
  32731. {
  32732. name: "Extremely Big",
  32733. height: math.unit(100, "miles")
  32734. },
  32735. {
  32736. name: "Planet Hugger",
  32737. height: math.unit(200, "megameters")
  32738. },
  32739. {
  32740. name: "Unreasonably Big",
  32741. height: math.unit(1e300, "meters")
  32742. },
  32743. ]
  32744. ))
  32745. characterMakers.push(() => makeCharacter(
  32746. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  32747. {
  32748. solgooleo: {
  32749. height: math.unit(4, "meters"),
  32750. weight: math.unit(6000*1.5, "kg"),
  32751. volume: math.unit(6000, "liters"),
  32752. name: "Solgooleo",
  32753. image: {
  32754. source: "./media/characters/pi/solgooleo.svg",
  32755. extra: 388/331,
  32756. bottom: 29/417
  32757. }
  32758. },
  32759. },
  32760. [
  32761. {
  32762. name: "Normal",
  32763. height: math.unit(4, "meters"),
  32764. default: true
  32765. },
  32766. ]
  32767. ))
  32768. characterMakers.push(() => makeCharacter(
  32769. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  32770. {
  32771. front: {
  32772. height: math.unit(8, "feet"),
  32773. weight: math.unit(4, "tons"),
  32774. name: "Front",
  32775. image: {
  32776. source: "./media/characters/shaun/front.svg",
  32777. extra: 503/495,
  32778. bottom: 20/523
  32779. }
  32780. },
  32781. back: {
  32782. height: math.unit(8, "feet"),
  32783. weight: math.unit(4, "tons"),
  32784. name: "Back",
  32785. image: {
  32786. source: "./media/characters/shaun/back.svg",
  32787. extra: 487/480,
  32788. bottom: 20/507
  32789. }
  32790. },
  32791. },
  32792. [
  32793. {
  32794. name: "Lorg",
  32795. height: math.unit(8, "feet"),
  32796. default: true
  32797. },
  32798. ]
  32799. ))
  32800. characterMakers.push(() => makeCharacter(
  32801. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  32802. {
  32803. front: {
  32804. height: math.unit(7, "feet"),
  32805. name: "Front",
  32806. image: {
  32807. source: "./media/characters/sini/front.svg",
  32808. extra: 726/678,
  32809. bottom: 35/761
  32810. }
  32811. },
  32812. back: {
  32813. height: math.unit(7, "feet"),
  32814. name: "Back",
  32815. image: {
  32816. source: "./media/characters/sini/back.svg",
  32817. extra: 743/701,
  32818. bottom: 12/755
  32819. }
  32820. },
  32821. mawAnthro: {
  32822. height: math.unit(2.14, "feet"),
  32823. name: "Maw (Anthro)",
  32824. image: {
  32825. source: "./media/characters/sini/maw-anthro.svg"
  32826. }
  32827. },
  32828. dick: {
  32829. height: math.unit(1.45, "feet"),
  32830. name: "Dick (Anthro)",
  32831. image: {
  32832. source: "./media/characters/sini/dick-anthro.svg"
  32833. }
  32834. },
  32835. feral: {
  32836. height: math.unit(16, "feet"),
  32837. name: "Feral",
  32838. image: {
  32839. source: "./media/characters/sini/feral.svg",
  32840. extra: 814/605,
  32841. bottom: 11/825
  32842. }
  32843. },
  32844. mawFeral: {
  32845. height: math.unit(5.66, "feet"),
  32846. name: "Maw-feral",
  32847. image: {
  32848. source: "./media/characters/sini/maw-feral.svg"
  32849. }
  32850. },
  32851. footFeral: {
  32852. height: math.unit(5.17, "feet"),
  32853. name: "Foot-feral",
  32854. image: {
  32855. source: "./media/characters/sini/foot-feral.svg"
  32856. }
  32857. },
  32858. },
  32859. [
  32860. {
  32861. name: "Normal",
  32862. height: math.unit(7, "feet"),
  32863. default: true
  32864. },
  32865. ]
  32866. ))
  32867. characterMakers.push(() => makeCharacter(
  32868. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  32869. {
  32870. side: {
  32871. height: math.unit(13, "meters"),
  32872. weight: math.unit(9072, "kg"),
  32873. name: "Side",
  32874. image: {
  32875. source: "./media/characters/raylldo/side.svg",
  32876. extra: 403/344,
  32877. bottom: 42/445
  32878. }
  32879. },
  32880. leaping: {
  32881. height: math.unit(12.3, "meters"),
  32882. weight: math.unit(9072, "kg"),
  32883. name: "Leaping",
  32884. image: {
  32885. source: "./media/characters/raylldo/leaping.svg",
  32886. extra: 470/249,
  32887. bottom: 13/483
  32888. }
  32889. },
  32890. flying: {
  32891. height: math.unit(18, "meters"),
  32892. weight: math.unit(9072, "kg"),
  32893. name: "Flying",
  32894. image: {
  32895. source: "./media/characters/raylldo/flying.svg"
  32896. }
  32897. },
  32898. head: {
  32899. height: math.unit(5.85, "meters"),
  32900. name: "Head",
  32901. image: {
  32902. source: "./media/characters/raylldo/head.svg"
  32903. }
  32904. },
  32905. maw: {
  32906. height: math.unit(5.32, "meters"),
  32907. name: "Maw",
  32908. image: {
  32909. source: "./media/characters/raylldo/maw.svg"
  32910. }
  32911. },
  32912. eye: {
  32913. height: math.unit(0.54, "meters"),
  32914. name: "Eye",
  32915. image: {
  32916. source: "./media/characters/raylldo/eye.svg"
  32917. }
  32918. },
  32919. },
  32920. [
  32921. {
  32922. name: "Normal",
  32923. height: math.unit(13, "meters"),
  32924. default: true
  32925. },
  32926. ]
  32927. ))
  32928. characterMakers.push(() => makeCharacter(
  32929. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  32930. {
  32931. anthroFront: {
  32932. height: math.unit(9, "feet"),
  32933. weight: math.unit(600, "lb"),
  32934. name: "Anthro (Front)",
  32935. image: {
  32936. source: "./media/characters/glint/anthro-front.svg",
  32937. extra: 1097/1018,
  32938. bottom: 28/1125
  32939. }
  32940. },
  32941. anthroBack: {
  32942. height: math.unit(9, "feet"),
  32943. weight: math.unit(600, "lb"),
  32944. name: "Anthro (Back)",
  32945. image: {
  32946. source: "./media/characters/glint/anthro-back.svg",
  32947. extra: 1154/997,
  32948. bottom: 36/1190
  32949. }
  32950. },
  32951. feral: {
  32952. height: math.unit(11, "feet"),
  32953. weight: math.unit(50000, "lb"),
  32954. name: "Feral",
  32955. image: {
  32956. source: "./media/characters/glint/feral.svg",
  32957. extra: 3035/1585,
  32958. bottom: 1169/4204
  32959. }
  32960. },
  32961. dickAnthro: {
  32962. height: math.unit(0.7, "meters"),
  32963. name: "Dick (Anthro)",
  32964. image: {
  32965. source: "./media/characters/glint/dick-anthro.svg"
  32966. }
  32967. },
  32968. dickFeral: {
  32969. height: math.unit(2.65, "meters"),
  32970. name: "Dick (Feral)",
  32971. image: {
  32972. source: "./media/characters/glint/dick-feral.svg"
  32973. }
  32974. },
  32975. slitHidden: {
  32976. height: math.unit(5.85, "meters"),
  32977. name: "Slit (Hidden)",
  32978. image: {
  32979. source: "./media/characters/glint/slit-hidden.svg"
  32980. }
  32981. },
  32982. slitErect: {
  32983. height: math.unit(5.85, "meters"),
  32984. name: "Slit (Erect)",
  32985. image: {
  32986. source: "./media/characters/glint/slit-erect.svg"
  32987. }
  32988. },
  32989. mawAnthro: {
  32990. height: math.unit(0.63, "meters"),
  32991. name: "Maw (Anthro)",
  32992. image: {
  32993. source: "./media/characters/glint/maw.svg"
  32994. }
  32995. },
  32996. mawFeral: {
  32997. height: math.unit(2.89, "meters"),
  32998. name: "Maw (Feral)",
  32999. image: {
  33000. source: "./media/characters/glint/maw.svg"
  33001. }
  33002. },
  33003. },
  33004. [
  33005. {
  33006. name: "Normal",
  33007. height: math.unit(9, "feet"),
  33008. default: true
  33009. },
  33010. ]
  33011. ))
  33012. characterMakers.push(() => makeCharacter(
  33013. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  33014. {
  33015. side: {
  33016. height: math.unit(15, "feet"),
  33017. weight: math.unit(5000, "kg"),
  33018. name: "Side",
  33019. image: {
  33020. source: "./media/characters/kairne/side.svg",
  33021. extra: 979/811,
  33022. bottom: 13/992
  33023. }
  33024. },
  33025. front: {
  33026. height: math.unit(15, "feet"),
  33027. weight: math.unit(5000, "kg"),
  33028. name: "Front",
  33029. image: {
  33030. source: "./media/characters/kairne/front.svg",
  33031. extra: 908/814,
  33032. bottom: 26/934
  33033. }
  33034. },
  33035. sideNsfw: {
  33036. height: math.unit(15, "feet"),
  33037. weight: math.unit(5000, "kg"),
  33038. name: "Side (NSFW)",
  33039. image: {
  33040. source: "./media/characters/kairne/side-nsfw.svg",
  33041. extra: 979/811,
  33042. bottom: 13/992
  33043. }
  33044. },
  33045. frontNsfw: {
  33046. height: math.unit(15, "feet"),
  33047. weight: math.unit(5000, "kg"),
  33048. name: "Front (NSFW)",
  33049. image: {
  33050. source: "./media/characters/kairne/front-nsfw.svg",
  33051. extra: 908/814,
  33052. bottom: 26/934
  33053. }
  33054. },
  33055. dickCaged: {
  33056. height: math.unit(0.65, "meters"),
  33057. name: "Dick-caged",
  33058. image: {
  33059. source: "./media/characters/kairne/dick-caged.svg"
  33060. }
  33061. },
  33062. dick: {
  33063. height: math.unit(0.79, "meters"),
  33064. name: "Dick",
  33065. image: {
  33066. source: "./media/characters/kairne/dick.svg"
  33067. }
  33068. },
  33069. genitals: {
  33070. height: math.unit(1.29, "meters"),
  33071. name: "Genitals",
  33072. image: {
  33073. source: "./media/characters/kairne/genitals.svg"
  33074. }
  33075. },
  33076. maw: {
  33077. height: math.unit(1.73, "meters"),
  33078. name: "Maw",
  33079. image: {
  33080. source: "./media/characters/kairne/maw.svg"
  33081. }
  33082. },
  33083. },
  33084. [
  33085. {
  33086. name: "Normal",
  33087. height: math.unit(15, "feet"),
  33088. default: true
  33089. },
  33090. ]
  33091. ))
  33092. characterMakers.push(() => makeCharacter(
  33093. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  33094. {
  33095. front: {
  33096. height: math.unit(5 + 8/12, "feet"),
  33097. weight: math.unit(139, "lb"),
  33098. name: "Front",
  33099. image: {
  33100. source: "./media/characters/biscuit-jackal/front.svg",
  33101. extra: 2106/1961,
  33102. bottom: 58/2164
  33103. }
  33104. },
  33105. back: {
  33106. height: math.unit(5 + 8/12, "feet"),
  33107. weight: math.unit(139, "lb"),
  33108. name: "Back",
  33109. image: {
  33110. source: "./media/characters/biscuit-jackal/back.svg",
  33111. extra: 2132/1976,
  33112. bottom: 57/2189
  33113. }
  33114. },
  33115. werejackal: {
  33116. height: math.unit(6 + 3/12, "feet"),
  33117. weight: math.unit(188, "lb"),
  33118. name: "Werejackal",
  33119. image: {
  33120. source: "./media/characters/biscuit-jackal/werejackal.svg",
  33121. extra: 2373/2178,
  33122. bottom: 53/2426
  33123. }
  33124. },
  33125. },
  33126. [
  33127. {
  33128. name: "Normal",
  33129. height: math.unit(5 + 8/12, "feet"),
  33130. default: true
  33131. },
  33132. ]
  33133. ))
  33134. characterMakers.push(() => makeCharacter(
  33135. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  33136. {
  33137. front: {
  33138. height: math.unit(140, "cm"),
  33139. weight: math.unit(45, "kg"),
  33140. name: "Front",
  33141. image: {
  33142. source: "./media/characters/tayra-white/front.svg",
  33143. extra: 2229/2192,
  33144. bottom: 75/2304
  33145. }
  33146. },
  33147. },
  33148. [
  33149. {
  33150. name: "Normal",
  33151. height: math.unit(140, "cm"),
  33152. default: true
  33153. },
  33154. ]
  33155. ))
  33156. characterMakers.push(() => makeCharacter(
  33157. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  33158. {
  33159. front: {
  33160. height: math.unit(4 + 5/12, "feet"),
  33161. name: "Front",
  33162. image: {
  33163. source: "./media/characters/scoop/front.svg",
  33164. extra: 1257/1136,
  33165. bottom: 69/1326
  33166. }
  33167. },
  33168. back: {
  33169. height: math.unit(4 + 5/12, "feet"),
  33170. name: "Back",
  33171. image: {
  33172. source: "./media/characters/scoop/back.svg",
  33173. extra: 1321/1152,
  33174. bottom: 32/1353
  33175. }
  33176. },
  33177. maw: {
  33178. height: math.unit(0.68, "feet"),
  33179. name: "Maw",
  33180. image: {
  33181. source: "./media/characters/scoop/maw.svg"
  33182. }
  33183. },
  33184. },
  33185. [
  33186. {
  33187. name: "Really Small",
  33188. height: math.unit(1, "mm")
  33189. },
  33190. {
  33191. name: "Micro",
  33192. height: math.unit(1, "inch")
  33193. },
  33194. {
  33195. name: "Normal",
  33196. height: math.unit(4 + 5/12, "feet"),
  33197. default: true
  33198. },
  33199. {
  33200. name: "Macro",
  33201. height: math.unit(200, "feet")
  33202. },
  33203. {
  33204. name: "Megamacro",
  33205. height: math.unit(3240, "feet")
  33206. },
  33207. {
  33208. name: "Teramacro",
  33209. height: math.unit(2500, "miles")
  33210. },
  33211. ]
  33212. ))
  33213. characterMakers.push(() => makeCharacter(
  33214. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  33215. {
  33216. front: {
  33217. height: math.unit(15 + 7/12, "feet"),
  33218. name: "Front",
  33219. image: {
  33220. source: "./media/characters/saphinara/front.svg",
  33221. extra: 604/546,
  33222. bottom: 19/623
  33223. }
  33224. },
  33225. side: {
  33226. height: math.unit(15 + 7/12, "feet"),
  33227. name: "Side",
  33228. image: {
  33229. source: "./media/characters/saphinara/side.svg",
  33230. extra: 605/547,
  33231. bottom: 6/611
  33232. }
  33233. },
  33234. back: {
  33235. height: math.unit(15 + 7/12, "feet"),
  33236. name: "Back",
  33237. image: {
  33238. source: "./media/characters/saphinara/back.svg",
  33239. extra: 591/531,
  33240. bottom: 13/604
  33241. }
  33242. },
  33243. frontTail: {
  33244. height: math.unit(15 + 7/12, "feet"),
  33245. name: "Front (Full Tail)",
  33246. image: {
  33247. source: "./media/characters/saphinara/front-tail.svg",
  33248. extra: 748/547,
  33249. bottom: 66/814
  33250. }
  33251. },
  33252. },
  33253. [
  33254. {
  33255. name: "Normal",
  33256. height: math.unit(15 + 7/12, "feet"),
  33257. default: true
  33258. },
  33259. {
  33260. name: "Angry",
  33261. height: math.unit(30 + 6/12, "feet")
  33262. },
  33263. {
  33264. name: "Enraged",
  33265. height: math.unit(102 + 1/12, "feet")
  33266. },
  33267. ]
  33268. ))
  33269. characterMakers.push(() => makeCharacter(
  33270. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  33271. {
  33272. front: {
  33273. height: math.unit(6 + 8/12, "feet"),
  33274. weight: math.unit(300, "lb"),
  33275. name: "Front",
  33276. image: {
  33277. source: "./media/characters/jrain/front.svg",
  33278. extra: 3039/2865,
  33279. bottom: 399/3438
  33280. }
  33281. },
  33282. back: {
  33283. height: math.unit(6 + 8/12, "feet"),
  33284. weight: math.unit(300, "lb"),
  33285. name: "Back",
  33286. image: {
  33287. source: "./media/characters/jrain/back.svg",
  33288. extra: 3089/2938,
  33289. bottom: 172/3261
  33290. }
  33291. },
  33292. head: {
  33293. height: math.unit(2.14, "feet"),
  33294. name: "Head",
  33295. image: {
  33296. source: "./media/characters/jrain/head.svg"
  33297. }
  33298. },
  33299. maw: {
  33300. height: math.unit(1.77, "feet"),
  33301. name: "Maw",
  33302. image: {
  33303. source: "./media/characters/jrain/maw.svg"
  33304. }
  33305. },
  33306. leftHand: {
  33307. height: math.unit(1.1, "feet"),
  33308. name: "Left Hand",
  33309. image: {
  33310. source: "./media/characters/jrain/left-hand.svg"
  33311. }
  33312. },
  33313. rightHand: {
  33314. height: math.unit(1.1, "feet"),
  33315. name: "Right Hand",
  33316. image: {
  33317. source: "./media/characters/jrain/right-hand.svg"
  33318. }
  33319. },
  33320. eye: {
  33321. height: math.unit(0.35, "feet"),
  33322. name: "Eye",
  33323. image: {
  33324. source: "./media/characters/jrain/eye.svg"
  33325. }
  33326. },
  33327. },
  33328. [
  33329. {
  33330. name: "Normal",
  33331. height: math.unit(6 + 8/12, "feet"),
  33332. default: true
  33333. },
  33334. {
  33335. name: "Casually Large",
  33336. height: math.unit(25, "feet")
  33337. },
  33338. {
  33339. name: "Giant",
  33340. height: math.unit(100, "feet")
  33341. },
  33342. {
  33343. name: "Kaiju",
  33344. height: math.unit(300, "feet")
  33345. },
  33346. ]
  33347. ))
  33348. characterMakers.push(() => makeCharacter(
  33349. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  33350. {
  33351. dragon: {
  33352. height: math.unit(5, "meters"),
  33353. name: "Dragon",
  33354. image: {
  33355. source: "./media/characters/sabrina/dragon.svg",
  33356. extra: 3670 / 2365,
  33357. bottom: 333 / 4003
  33358. }
  33359. },
  33360. gryphon: {
  33361. height: math.unit(3, "meters"),
  33362. name: "Gryphon",
  33363. image: {
  33364. source: "./media/characters/sabrina/gryphon.svg",
  33365. extra: 1576 / 945,
  33366. bottom: 71 / 1647
  33367. }
  33368. },
  33369. snake: {
  33370. height: math.unit(12, "meters"),
  33371. name: "Snake",
  33372. image: {
  33373. source: "./media/characters/sabrina/snake.svg",
  33374. extra: 1758 / 1320,
  33375. bottom: 186 / 1944
  33376. }
  33377. },
  33378. collar: {
  33379. height: math.unit(1.86, "meters"),
  33380. name: "Collar",
  33381. image: {
  33382. source: "./media/characters/sabrina/collar.svg"
  33383. }
  33384. },
  33385. eye: {
  33386. height: math.unit(0.53, "meters"),
  33387. name: "Eye",
  33388. image: {
  33389. source: "./media/characters/sabrina/eye.svg"
  33390. }
  33391. },
  33392. foot: {
  33393. height: math.unit(1.86, "meters"),
  33394. name: "Foot",
  33395. image: {
  33396. source: "./media/characters/sabrina/foot.svg"
  33397. }
  33398. },
  33399. hand: {
  33400. height: math.unit(1.32, "meters"),
  33401. name: "Hand",
  33402. image: {
  33403. source: "./media/characters/sabrina/hand.svg"
  33404. }
  33405. },
  33406. head: {
  33407. height: math.unit(2.44, "meters"),
  33408. name: "Head",
  33409. image: {
  33410. source: "./media/characters/sabrina/head.svg"
  33411. }
  33412. },
  33413. headAngry: {
  33414. height: math.unit(2.44, "meters"),
  33415. name: "Head (Angry))",
  33416. image: {
  33417. source: "./media/characters/sabrina/head-angry.svg"
  33418. }
  33419. },
  33420. maw: {
  33421. height: math.unit(1.65, "meters"),
  33422. name: "Maw",
  33423. image: {
  33424. source: "./media/characters/sabrina/maw.svg"
  33425. }
  33426. },
  33427. spikes: {
  33428. height: math.unit(1.69, "meters"),
  33429. name: "Spikes",
  33430. image: {
  33431. source: "./media/characters/sabrina/spikes.svg"
  33432. }
  33433. },
  33434. stomach: {
  33435. height: math.unit(1.15, "meters"),
  33436. name: "Stomach",
  33437. image: {
  33438. source: "./media/characters/sabrina/stomach.svg"
  33439. }
  33440. },
  33441. tongue: {
  33442. height: math.unit(1.27, "meters"),
  33443. name: "Tongue",
  33444. image: {
  33445. source: "./media/characters/sabrina/tongue.svg"
  33446. }
  33447. },
  33448. wingDorsal: {
  33449. height: math.unit(4.85, "meters"),
  33450. name: "Wing (Dorsal)",
  33451. image: {
  33452. source: "./media/characters/sabrina/wing-dorsal.svg"
  33453. }
  33454. },
  33455. wingVentral: {
  33456. height: math.unit(4.85, "meters"),
  33457. name: "Wing (Ventral)",
  33458. image: {
  33459. source: "./media/characters/sabrina/wing-ventral.svg"
  33460. }
  33461. },
  33462. },
  33463. [
  33464. {
  33465. name: "Normal",
  33466. height: math.unit(5, "meters"),
  33467. default: true
  33468. },
  33469. ]
  33470. ))
  33471. characterMakers.push(() => makeCharacter(
  33472. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  33473. {
  33474. frontMaid: {
  33475. height: math.unit(5 + 5/12, "feet"),
  33476. weight: math.unit(130, "lb"),
  33477. name: "Front (Maid)",
  33478. image: {
  33479. source: "./media/characters/midnight-tales/front-maid.svg",
  33480. extra: 489/454,
  33481. bottom: 61/550
  33482. }
  33483. },
  33484. frontFormal: {
  33485. height: math.unit(5 + 5/12, "feet"),
  33486. weight: math.unit(130, "lb"),
  33487. name: "Front (Formal)",
  33488. image: {
  33489. source: "./media/characters/midnight-tales/front-formal.svg",
  33490. extra: 489/454,
  33491. bottom: 61/550
  33492. }
  33493. },
  33494. back: {
  33495. height: math.unit(5 + 5/12, "feet"),
  33496. weight: math.unit(130, "lb"),
  33497. name: "Back",
  33498. image: {
  33499. source: "./media/characters/midnight-tales/back.svg",
  33500. extra: 498/456,
  33501. bottom: 33/531
  33502. }
  33503. },
  33504. frontBeast: {
  33505. height: math.unit(40, "feet"),
  33506. weight: math.unit(64000, "lb"),
  33507. name: "Front (Beast)",
  33508. image: {
  33509. source: "./media/characters/midnight-tales/front-beast.svg",
  33510. extra: 927/860,
  33511. bottom: 53/980
  33512. }
  33513. },
  33514. backBeast: {
  33515. height: math.unit(40, "feet"),
  33516. weight: math.unit(64000, "lb"),
  33517. name: "Back (Beast)",
  33518. image: {
  33519. source: "./media/characters/midnight-tales/back-beast.svg",
  33520. extra: 929/855,
  33521. bottom: 16/945
  33522. }
  33523. },
  33524. footBeast: {
  33525. height: math.unit(6.7, "feet"),
  33526. name: "Foot (Beast)",
  33527. image: {
  33528. source: "./media/characters/midnight-tales/foot-beast.svg"
  33529. }
  33530. },
  33531. headBeast: {
  33532. height: math.unit(8, "feet"),
  33533. name: "Head (Beast)",
  33534. image: {
  33535. source: "./media/characters/midnight-tales/head-beast.svg"
  33536. }
  33537. },
  33538. },
  33539. [
  33540. {
  33541. name: "Normal",
  33542. height: math.unit(5 + 5 / 12, "feet"),
  33543. default: true
  33544. },
  33545. {
  33546. name: "Macro",
  33547. height: math.unit(25, "feet")
  33548. },
  33549. ]
  33550. ))
  33551. characterMakers.push(() => makeCharacter(
  33552. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  33553. {
  33554. front: {
  33555. height: math.unit(5 + 10/12, "feet"),
  33556. name: "Front",
  33557. image: {
  33558. source: "./media/characters/argon/front.svg",
  33559. extra: 2009/1935,
  33560. bottom: 118/2127
  33561. }
  33562. },
  33563. back: {
  33564. height: math.unit(5 + 10/12, "feet"),
  33565. name: "Back",
  33566. image: {
  33567. source: "./media/characters/argon/back.svg",
  33568. extra: 2047/1992,
  33569. bottom: 20/2067
  33570. }
  33571. },
  33572. frontDressed: {
  33573. height: math.unit(5 + 10/12, "feet"),
  33574. name: "Front (Dressed)",
  33575. image: {
  33576. source: "./media/characters/argon/front-dressed.svg",
  33577. extra: 2009/1935,
  33578. bottom: 118/2127
  33579. }
  33580. },
  33581. },
  33582. [
  33583. {
  33584. name: "Normal",
  33585. height: math.unit(5 + 10/12, "feet"),
  33586. default: true
  33587. },
  33588. ]
  33589. ))
  33590. characterMakers.push(() => makeCharacter(
  33591. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  33592. {
  33593. front: {
  33594. height: math.unit(8 + 6/12, "feet"),
  33595. weight: math.unit(1150, "lb"),
  33596. name: "Front",
  33597. image: {
  33598. source: "./media/characters/kichi/front.svg",
  33599. extra: 1267/1164,
  33600. bottom: 61/1328
  33601. }
  33602. },
  33603. back: {
  33604. height: math.unit(8 + 6/12, "feet"),
  33605. weight: math.unit(1150, "lb"),
  33606. name: "Back",
  33607. image: {
  33608. source: "./media/characters/kichi/back.svg",
  33609. extra: 1273/1166,
  33610. bottom: 33/1306
  33611. }
  33612. },
  33613. },
  33614. [
  33615. {
  33616. name: "Normal",
  33617. height: math.unit(8 + 6/12, "feet"),
  33618. default: true
  33619. },
  33620. ]
  33621. ))
  33622. characterMakers.push(() => makeCharacter(
  33623. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  33624. {
  33625. front: {
  33626. height: math.unit(6, "feet"),
  33627. weight: math.unit(210, "lb"),
  33628. name: "Front",
  33629. image: {
  33630. source: "./media/characters/manetel-greyscale/front.svg",
  33631. extra: 350/312,
  33632. bottom: 8/358
  33633. }
  33634. },
  33635. },
  33636. [
  33637. {
  33638. name: "Micro",
  33639. height: math.unit(2, "inches")
  33640. },
  33641. {
  33642. name: "Normal",
  33643. height: math.unit(6, "feet"),
  33644. default: true
  33645. },
  33646. {
  33647. name: "Minimacro",
  33648. height: math.unit(17, "feet")
  33649. },
  33650. {
  33651. name: "Macro",
  33652. height: math.unit(117, "feet")
  33653. },
  33654. ]
  33655. ))
  33656. characterMakers.push(() => makeCharacter(
  33657. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  33658. {
  33659. side: {
  33660. height: math.unit(5 + 1/12, "feet"),
  33661. weight: math.unit(418, "lb"),
  33662. name: "Side",
  33663. image: {
  33664. source: "./media/characters/softpurr/side.svg",
  33665. extra: 1993/1945,
  33666. bottom: 134/2127
  33667. }
  33668. },
  33669. front: {
  33670. height: math.unit(5 + 1/12, "feet"),
  33671. weight: math.unit(418, "lb"),
  33672. name: "Front",
  33673. image: {
  33674. source: "./media/characters/softpurr/front.svg",
  33675. extra: 1950/1856,
  33676. bottom: 174/2124
  33677. }
  33678. },
  33679. paw: {
  33680. height: math.unit(1, "feet"),
  33681. name: "Paw",
  33682. image: {
  33683. source: "./media/characters/softpurr/paw.svg"
  33684. }
  33685. },
  33686. },
  33687. [
  33688. {
  33689. name: "Normal",
  33690. height: math.unit(5 + 1/12, "feet"),
  33691. default: true
  33692. },
  33693. ]
  33694. ))
  33695. characterMakers.push(() => makeCharacter(
  33696. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  33697. {
  33698. front: {
  33699. height: math.unit(260, "meters"),
  33700. name: "Front",
  33701. image: {
  33702. source: "./media/characters/anahita/front.svg",
  33703. extra: 665/635,
  33704. bottom: 89/754
  33705. }
  33706. },
  33707. },
  33708. [
  33709. {
  33710. name: "Macro",
  33711. height: math.unit(260, "meters"),
  33712. default: true
  33713. },
  33714. ]
  33715. ))
  33716. characterMakers.push(() => makeCharacter(
  33717. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  33718. {
  33719. front: {
  33720. height: math.unit(4 + 10/12, "feet"),
  33721. weight: math.unit(160, "lb"),
  33722. name: "Front",
  33723. image: {
  33724. source: "./media/characters/chip-mouse/front.svg",
  33725. extra: 3528/3408,
  33726. bottom: 0/3528
  33727. }
  33728. },
  33729. frontNsfw: {
  33730. height: math.unit(4 + 10/12, "feet"),
  33731. weight: math.unit(160, "lb"),
  33732. name: "Front (NSFW)",
  33733. image: {
  33734. source: "./media/characters/chip-mouse/front-nsfw.svg",
  33735. extra: 3528/3408,
  33736. bottom: 0/3528
  33737. }
  33738. },
  33739. },
  33740. [
  33741. {
  33742. name: "Normal",
  33743. height: math.unit(4 + 10/12, "feet"),
  33744. default: true
  33745. },
  33746. ]
  33747. ))
  33748. characterMakers.push(() => makeCharacter(
  33749. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  33750. {
  33751. side: {
  33752. height: math.unit(10, "feet"),
  33753. weight: math.unit(14000, "lb"),
  33754. name: "Side",
  33755. image: {
  33756. source: "./media/characters/kremm/side.svg",
  33757. extra: 1390/1053,
  33758. bottom: 90/1480
  33759. }
  33760. },
  33761. gut: {
  33762. height: math.unit(5.8, "feet"),
  33763. name: "Gut",
  33764. image: {
  33765. source: "./media/characters/kremm/gut.svg"
  33766. }
  33767. },
  33768. ass: {
  33769. height: math.unit(6.1, "feet"),
  33770. name: "Ass",
  33771. image: {
  33772. source: "./media/characters/kremm/ass.svg"
  33773. }
  33774. },
  33775. jaws: {
  33776. height: math.unit(2.2, "feet"),
  33777. name: "Jaws",
  33778. image: {
  33779. source: "./media/characters/kremm/jaws.svg"
  33780. }
  33781. },
  33782. dick: {
  33783. height: math.unit(4.26, "feet"),
  33784. name: "Dick",
  33785. image: {
  33786. source: "./media/characters/kremm/dick.svg"
  33787. }
  33788. },
  33789. },
  33790. [
  33791. {
  33792. name: "Normal",
  33793. height: math.unit(10, "feet"),
  33794. default: true
  33795. },
  33796. ]
  33797. ))
  33798. characterMakers.push(() => makeCharacter(
  33799. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  33800. {
  33801. front: {
  33802. height: math.unit(30, "stories"),
  33803. name: "Front",
  33804. image: {
  33805. source: "./media/characters/kai/front.svg",
  33806. extra: 1892/1718,
  33807. bottom: 162/2054
  33808. }
  33809. },
  33810. },
  33811. [
  33812. {
  33813. name: "Macro",
  33814. height: math.unit(30, "stories"),
  33815. default: true
  33816. },
  33817. ]
  33818. ))
  33819. characterMakers.push(() => makeCharacter(
  33820. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  33821. {
  33822. front: {
  33823. height: math.unit(6 + 4/12, "feet"),
  33824. weight: math.unit(145, "lb"),
  33825. name: "Front",
  33826. image: {
  33827. source: "./media/characters/sykes/front.svg",
  33828. extra: 1321 / 1187,
  33829. bottom: 66 / 1387
  33830. }
  33831. },
  33832. back: {
  33833. height: math.unit(6 + 4/12, "feet"),
  33834. weight: math.unit(145, "lb"),
  33835. name: "Back",
  33836. image: {
  33837. source: "./media/characters/sykes/back.svg",
  33838. extra: 1326/1181,
  33839. bottom: 31/1357
  33840. }
  33841. },
  33842. handBack: {
  33843. height: math.unit(0.9, "feet"),
  33844. name: "Hand (Back)",
  33845. image: {
  33846. source: "./media/characters/sykes/hand-back.svg"
  33847. }
  33848. },
  33849. handFront: {
  33850. height: math.unit(0.839, "feet"),
  33851. name: "Hand (Front)",
  33852. image: {
  33853. source: "./media/characters/sykes/hand-front.svg"
  33854. }
  33855. },
  33856. leftFoot: {
  33857. height: math.unit(1.2, "feet"),
  33858. name: "Foot (Left)",
  33859. image: {
  33860. source: "./media/characters/sykes/foot-left.svg"
  33861. }
  33862. },
  33863. rightFoot: {
  33864. height: math.unit(1.2, "feet"),
  33865. name: "Foot (Right)",
  33866. image: {
  33867. source: "./media/characters/sykes/foot-right.svg"
  33868. }
  33869. },
  33870. maw: {
  33871. height: math.unit(1.93, "feet"),
  33872. name: "Maw",
  33873. image: {
  33874. source: "./media/characters/sykes/maw.svg"
  33875. }
  33876. },
  33877. teeth: {
  33878. height: math.unit(0.51, "feet"),
  33879. name: "Teeth",
  33880. image: {
  33881. source: "./media/characters/sykes/teeth.svg"
  33882. }
  33883. },
  33884. tongue: {
  33885. height: math.unit(2.13, "feet"),
  33886. name: "Tongue",
  33887. image: {
  33888. source: "./media/characters/sykes/tongue.svg"
  33889. }
  33890. },
  33891. uvula: {
  33892. height: math.unit(0.16, "feet"),
  33893. name: "Uvula",
  33894. image: {
  33895. source: "./media/characters/sykes/uvula.svg"
  33896. }
  33897. },
  33898. collar: {
  33899. height: math.unit(0.287, "feet"),
  33900. name: "Collar",
  33901. image: {
  33902. source: "./media/characters/sykes/collar.svg"
  33903. }
  33904. },
  33905. },
  33906. [
  33907. {
  33908. name: "Shrunken",
  33909. height: math.unit(5, "inches")
  33910. },
  33911. {
  33912. name: "Normal",
  33913. height: math.unit(6 + 4 / 12, "feet"),
  33914. default: true
  33915. },
  33916. {
  33917. name: "Big",
  33918. height: math.unit(15, "feet")
  33919. },
  33920. ]
  33921. ))
  33922. characterMakers.push(() => makeCharacter(
  33923. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  33924. {
  33925. front: {
  33926. height: math.unit(5 + 8/12, "feet"),
  33927. weight: math.unit(190, "lb"),
  33928. name: "Front",
  33929. image: {
  33930. source: "./media/characters/oven-otter/front.svg",
  33931. extra: 1809/1740,
  33932. bottom: 181/1990
  33933. }
  33934. },
  33935. back: {
  33936. height: math.unit(5 + 8/12, "feet"),
  33937. weight: math.unit(190, "lb"),
  33938. name: "Back",
  33939. image: {
  33940. source: "./media/characters/oven-otter/back.svg",
  33941. extra: 1709/1635,
  33942. bottom: 118/1827
  33943. }
  33944. },
  33945. hand: {
  33946. height: math.unit(1.07, "feet"),
  33947. name: "Hand",
  33948. image: {
  33949. source: "./media/characters/oven-otter/hand.svg"
  33950. }
  33951. },
  33952. beans: {
  33953. height: math.unit(1.74, "feet"),
  33954. name: "Beans",
  33955. image: {
  33956. source: "./media/characters/oven-otter/beans.svg"
  33957. }
  33958. },
  33959. },
  33960. [
  33961. {
  33962. name: "Micro",
  33963. height: math.unit(0.5, "inches")
  33964. },
  33965. {
  33966. name: "Normal",
  33967. height: math.unit(5 + 8/12, "feet"),
  33968. default: true
  33969. },
  33970. {
  33971. name: "Macro",
  33972. height: math.unit(250, "feet")
  33973. },
  33974. {
  33975. name: "Really High",
  33976. height: math.unit(420, "feet")
  33977. },
  33978. ]
  33979. ))
  33980. characterMakers.push(() => makeCharacter(
  33981. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  33982. {
  33983. front: {
  33984. height: math.unit(5, "meters"),
  33985. weight: math.unit(292000000000000, "kg"),
  33986. name: "Front",
  33987. image: {
  33988. source: "./media/characters/devourer/front.svg",
  33989. extra: 1800/1733,
  33990. bottom: 211/2011
  33991. }
  33992. },
  33993. maw: {
  33994. height: math.unit(1.1, "meter"),
  33995. name: "Maw",
  33996. image: {
  33997. source: "./media/characters/devourer/maw.svg"
  33998. }
  33999. },
  34000. },
  34001. [
  34002. {
  34003. name: "Small",
  34004. height: math.unit(3, "meters")
  34005. },
  34006. {
  34007. name: "Large",
  34008. height: math.unit(5, "meters"),
  34009. default: true
  34010. },
  34011. ]
  34012. ))
  34013. characterMakers.push(() => makeCharacter(
  34014. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  34015. {
  34016. front: {
  34017. height: math.unit(6, "feet"),
  34018. weight: math.unit(400, "lb"),
  34019. name: "Front",
  34020. image: {
  34021. source: "./media/characters/ellarby/front.svg",
  34022. extra: 1909/1763,
  34023. bottom: 80/1989
  34024. }
  34025. },
  34026. back: {
  34027. height: math.unit(6, "feet"),
  34028. weight: math.unit(400, "lb"),
  34029. name: "Back",
  34030. image: {
  34031. source: "./media/characters/ellarby/back.svg",
  34032. extra: 1914/1784,
  34033. bottom: 172/2086
  34034. }
  34035. },
  34036. },
  34037. [
  34038. {
  34039. name: "Mischief",
  34040. height: math.unit(18, "inches")
  34041. },
  34042. {
  34043. name: "Trouble",
  34044. height: math.unit(12, "feet")
  34045. },
  34046. {
  34047. name: "Havoc",
  34048. height: math.unit(200, "feet"),
  34049. default: true
  34050. },
  34051. {
  34052. name: "Pandemonium",
  34053. height: math.unit(1, "mile")
  34054. },
  34055. {
  34056. name: "Catastrophe",
  34057. height: math.unit(100, "miles")
  34058. },
  34059. ]
  34060. ))
  34061. characterMakers.push(() => makeCharacter(
  34062. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  34063. {
  34064. front: {
  34065. height: math.unit(4.7, "meters"),
  34066. weight: math.unit(6500, "kg"),
  34067. name: "Front",
  34068. image: {
  34069. source: "./media/characters/vex/front.svg",
  34070. extra: 1288/1140,
  34071. bottom: 100/1388
  34072. }
  34073. },
  34074. },
  34075. [
  34076. {
  34077. name: "Normal",
  34078. height: math.unit(4.7, "meters"),
  34079. default: true
  34080. },
  34081. ]
  34082. ))
  34083. characterMakers.push(() => makeCharacter(
  34084. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  34085. {
  34086. normal: {
  34087. height: math.unit(6, "feet"),
  34088. weight: math.unit(350, "lb"),
  34089. name: "Normal",
  34090. image: {
  34091. source: "./media/characters/teshy/normal.svg",
  34092. extra: 1795/1735,
  34093. bottom: 16/1811
  34094. }
  34095. },
  34096. monsterFront: {
  34097. height: math.unit(12, "feet"),
  34098. weight: math.unit(4700, "lb"),
  34099. name: "Monster (Front)",
  34100. image: {
  34101. source: "./media/characters/teshy/monster-front.svg",
  34102. extra: 2042/2034,
  34103. bottom: 128/2170
  34104. }
  34105. },
  34106. monsterSide: {
  34107. height: math.unit(12, "feet"),
  34108. weight: math.unit(4700, "lb"),
  34109. name: "Monster (Side)",
  34110. image: {
  34111. source: "./media/characters/teshy/monster-side.svg",
  34112. extra: 2067/2056,
  34113. bottom: 70/2137
  34114. }
  34115. },
  34116. monsterBack: {
  34117. height: math.unit(12, "feet"),
  34118. weight: math.unit(4700, "lb"),
  34119. name: "Monster (Back)",
  34120. image: {
  34121. source: "./media/characters/teshy/monster-back.svg",
  34122. extra: 1921/1914,
  34123. bottom: 171/2092
  34124. }
  34125. },
  34126. },
  34127. [
  34128. {
  34129. name: "Normal",
  34130. height: math.unit(6, "feet"),
  34131. default: true
  34132. },
  34133. ]
  34134. ))
  34135. characterMakers.push(() => makeCharacter(
  34136. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  34137. {
  34138. front: {
  34139. height: math.unit(6, "feet"),
  34140. name: "Front",
  34141. image: {
  34142. source: "./media/characters/ramey/front.svg",
  34143. extra: 790/787,
  34144. bottom: 27/817
  34145. }
  34146. },
  34147. },
  34148. [
  34149. {
  34150. name: "Normal",
  34151. height: math.unit(6, "feet"),
  34152. default: true
  34153. },
  34154. ]
  34155. ))
  34156. characterMakers.push(() => makeCharacter(
  34157. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  34158. {
  34159. front: {
  34160. height: math.unit(5 + 5/12, "feet"),
  34161. weight: math.unit(120, "lb"),
  34162. name: "Front",
  34163. image: {
  34164. source: "./media/characters/phirae/front.svg",
  34165. extra: 2491/2436,
  34166. bottom: 38/2529
  34167. }
  34168. },
  34169. },
  34170. [
  34171. {
  34172. name: "Normal",
  34173. height: math.unit(5 + 5/12, "feet"),
  34174. default: true
  34175. },
  34176. ]
  34177. ))
  34178. characterMakers.push(() => makeCharacter(
  34179. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  34180. {
  34181. front: {
  34182. height: math.unit(5 + 3/12, "feet"),
  34183. name: "Front",
  34184. image: {
  34185. source: "./media/characters/stagglas/front.svg",
  34186. extra: 962/882,
  34187. bottom: 53/1015
  34188. }
  34189. },
  34190. feral: {
  34191. height: math.unit(335, "cm"),
  34192. name: "Feral",
  34193. image: {
  34194. source: "./media/characters/stagglas/feral.svg",
  34195. extra: 1732/1090,
  34196. bottom: 48/1780
  34197. }
  34198. },
  34199. },
  34200. [
  34201. {
  34202. name: "Normal",
  34203. height: math.unit(5 + 3/12, "feet"),
  34204. default: true
  34205. },
  34206. ]
  34207. ))
  34208. characterMakers.push(() => makeCharacter(
  34209. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  34210. {
  34211. front: {
  34212. height: math.unit(5 + 4/12, "feet"),
  34213. weight: math.unit(145, "lb"),
  34214. name: "Front",
  34215. image: {
  34216. source: "./media/characters/starra/front.svg",
  34217. extra: 1790/1691,
  34218. bottom: 91/1881
  34219. }
  34220. },
  34221. },
  34222. [
  34223. {
  34224. name: "Normal",
  34225. height: math.unit(5 + 4/12, "feet"),
  34226. default: true
  34227. },
  34228. ]
  34229. ))
  34230. characterMakers.push(() => makeCharacter(
  34231. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  34232. {
  34233. front: {
  34234. height: math.unit(2.2, "meters"),
  34235. name: "Front",
  34236. image: {
  34237. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  34238. extra: 1194/1005,
  34239. bottom: 25/1219
  34240. }
  34241. },
  34242. },
  34243. [
  34244. {
  34245. name: "Normal",
  34246. height: math.unit(2.2, "meters"),
  34247. default: true
  34248. },
  34249. ]
  34250. ))
  34251. characterMakers.push(() => makeCharacter(
  34252. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  34253. {
  34254. side: {
  34255. height: math.unit(8 + 2/12, "feet"),
  34256. weight: math.unit(1240, "lb"),
  34257. name: "Side",
  34258. image: {
  34259. source: "./media/characters/mika-valentine/side.svg",
  34260. extra: 2670/2501,
  34261. bottom: 250/2920
  34262. }
  34263. },
  34264. },
  34265. [
  34266. {
  34267. name: "Normal",
  34268. height: math.unit(8 + 2/12, "feet"),
  34269. default: true
  34270. },
  34271. ]
  34272. ))
  34273. characterMakers.push(() => makeCharacter(
  34274. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  34275. {
  34276. front: {
  34277. height: math.unit(7 + 2/12, "feet"),
  34278. name: "Front",
  34279. image: {
  34280. source: "./media/characters/xoltol/front.svg",
  34281. extra: 2212/2124,
  34282. bottom: 84/2296
  34283. }
  34284. },
  34285. side: {
  34286. height: math.unit(7 + 2/12, "feet"),
  34287. name: "Side",
  34288. image: {
  34289. source: "./media/characters/xoltol/side.svg",
  34290. extra: 2273/2197,
  34291. bottom: 26/2299
  34292. }
  34293. },
  34294. hand: {
  34295. height: math.unit(2.5, "feet"),
  34296. name: "Hand",
  34297. image: {
  34298. source: "./media/characters/xoltol/hand.svg"
  34299. }
  34300. },
  34301. },
  34302. [
  34303. {
  34304. name: "Small-ish",
  34305. height: math.unit(5 + 11/12, "feet")
  34306. },
  34307. {
  34308. name: "Normal",
  34309. height: math.unit(7 + 2/12, "feet")
  34310. },
  34311. {
  34312. name: "\"Macro\"",
  34313. height: math.unit(14 + 9/12, "feet"),
  34314. default: true
  34315. },
  34316. {
  34317. name: "Alternate Height",
  34318. height: math.unit(20, "feet")
  34319. },
  34320. {
  34321. name: "Actually Macro",
  34322. height: math.unit(100, "feet")
  34323. },
  34324. ]
  34325. ))
  34326. characterMakers.push(() => makeCharacter(
  34327. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  34328. {
  34329. front: {
  34330. height: math.unit(5 + 2/12, "feet"),
  34331. name: "Front",
  34332. image: {
  34333. source: "./media/characters/kotetsu-redwood/front.svg",
  34334. extra: 1053/942,
  34335. bottom: 60/1113
  34336. }
  34337. },
  34338. },
  34339. [
  34340. {
  34341. name: "Normal",
  34342. height: math.unit(5 + 2/12, "feet"),
  34343. default: true
  34344. },
  34345. ]
  34346. ))
  34347. characterMakers.push(() => makeCharacter(
  34348. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  34349. {
  34350. front: {
  34351. height: math.unit(2.4, "meters"),
  34352. weight: math.unit(125, "kg"),
  34353. name: "Front",
  34354. image: {
  34355. source: "./media/characters/lilith/front.svg",
  34356. extra: 1590/1513,
  34357. bottom: 203/1793
  34358. }
  34359. },
  34360. },
  34361. [
  34362. {
  34363. name: "Humanoid",
  34364. height: math.unit(2.4, "meters")
  34365. },
  34366. {
  34367. name: "Normal",
  34368. height: math.unit(6, "meters"),
  34369. default: true
  34370. },
  34371. {
  34372. name: "Largest",
  34373. height: math.unit(55, "meters")
  34374. },
  34375. ]
  34376. ))
  34377. characterMakers.push(() => makeCharacter(
  34378. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  34379. {
  34380. front: {
  34381. height: math.unit(8 + 4/12, "feet"),
  34382. weight: math.unit(535, "lb"),
  34383. name: "Front",
  34384. image: {
  34385. source: "./media/characters/beh'kah-bolger/front.svg",
  34386. extra: 1660/1603,
  34387. bottom: 37/1697
  34388. }
  34389. },
  34390. },
  34391. [
  34392. {
  34393. name: "Normal",
  34394. height: math.unit(8 + 4/12, "feet"),
  34395. default: true
  34396. },
  34397. {
  34398. name: "Kaiju",
  34399. height: math.unit(250, "feet")
  34400. },
  34401. {
  34402. name: "Still Growing",
  34403. height: math.unit(10, "miles")
  34404. },
  34405. {
  34406. name: "Continental",
  34407. height: math.unit(5000, "miles")
  34408. },
  34409. {
  34410. name: "Final Form",
  34411. height: math.unit(2500000, "miles")
  34412. },
  34413. ]
  34414. ))
  34415. characterMakers.push(() => makeCharacter(
  34416. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  34417. {
  34418. front: {
  34419. height: math.unit(7 + 2/12, "feet"),
  34420. weight: math.unit(230, "kg"),
  34421. name: "Front",
  34422. image: {
  34423. source: "./media/characters/tatyana-milewska/front.svg",
  34424. extra: 1199/1150,
  34425. bottom: 86/1285
  34426. }
  34427. },
  34428. },
  34429. [
  34430. {
  34431. name: "Normal",
  34432. height: math.unit(7 + 2/12, "feet"),
  34433. default: true
  34434. },
  34435. {
  34436. name: "Big",
  34437. height: math.unit(12, "feet")
  34438. },
  34439. {
  34440. name: "Minimacro",
  34441. height: math.unit(20, "feet")
  34442. },
  34443. {
  34444. name: "Macro",
  34445. height: math.unit(120, "feet")
  34446. },
  34447. ]
  34448. ))
  34449. characterMakers.push(() => makeCharacter(
  34450. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  34451. {
  34452. front: {
  34453. height: math.unit(7 + 8/12, "feet"),
  34454. weight: math.unit(152, "kg"),
  34455. name: "Front",
  34456. image: {
  34457. source: "./media/characters/helen-arri/front.svg",
  34458. extra: 440/423,
  34459. bottom: 14/454
  34460. }
  34461. },
  34462. back: {
  34463. height: math.unit(7 + 8/12, "feet"),
  34464. weight: math.unit(152, "kg"),
  34465. name: "Back",
  34466. image: {
  34467. source: "./media/characters/helen-arri/back.svg",
  34468. extra: 443/426,
  34469. bottom: 8/451
  34470. }
  34471. },
  34472. },
  34473. [
  34474. {
  34475. name: "Normal",
  34476. height: math.unit(7 + 8/12, "feet"),
  34477. default: true
  34478. },
  34479. {
  34480. name: "Big",
  34481. height: math.unit(14, "feet")
  34482. },
  34483. {
  34484. name: "Minimacro",
  34485. height: math.unit(24, "feet")
  34486. },
  34487. {
  34488. name: "Macro",
  34489. height: math.unit(140, "feet")
  34490. },
  34491. ]
  34492. ))
  34493. characterMakers.push(() => makeCharacter(
  34494. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  34495. {
  34496. front: {
  34497. height: math.unit(6, "meters"),
  34498. name: "Front",
  34499. image: {
  34500. source: "./media/characters/ehanu-rehu/front.svg",
  34501. extra: 1800/1800,
  34502. bottom: 59/1859
  34503. }
  34504. },
  34505. },
  34506. [
  34507. {
  34508. name: "Normal",
  34509. height: math.unit(6, "meters"),
  34510. default: true
  34511. },
  34512. ]
  34513. ))
  34514. characterMakers.push(() => makeCharacter(
  34515. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  34516. {
  34517. front: {
  34518. height: math.unit(7 + 3/12, "feet"),
  34519. name: "Front",
  34520. image: {
  34521. source: "./media/characters/renholder/front.svg",
  34522. extra: 3096/2960,
  34523. bottom: 250/3346
  34524. }
  34525. },
  34526. },
  34527. [
  34528. {
  34529. name: "Normal Bat",
  34530. height: math.unit(7 + 3/12, "feet"),
  34531. default: true
  34532. },
  34533. {
  34534. name: "Slightly Tall Bat",
  34535. height: math.unit(100, "feet")
  34536. },
  34537. {
  34538. name: "Big Bat",
  34539. height: math.unit(1000, "feet")
  34540. },
  34541. {
  34542. name: "City-Sized Bat",
  34543. height: math.unit(200000, "feet")
  34544. },
  34545. {
  34546. name: "Bigger Bat",
  34547. height: math.unit(10000, "miles")
  34548. },
  34549. {
  34550. name: "Solar Sized Bat",
  34551. height: math.unit(100, "AU")
  34552. },
  34553. {
  34554. name: "Galactic Bat",
  34555. height: math.unit(200000, "lightyears")
  34556. },
  34557. {
  34558. name: "Universally Known Bat",
  34559. height: math.unit(1, "universe")
  34560. },
  34561. ]
  34562. ))
  34563. characterMakers.push(() => makeCharacter(
  34564. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  34565. {
  34566. front: {
  34567. height: math.unit(6 + 11/12, "feet"),
  34568. weight: math.unit(250, "lb"),
  34569. name: "Front",
  34570. image: {
  34571. source: "./media/characters/cookiecat/front.svg",
  34572. extra: 893/827,
  34573. bottom: 14/907
  34574. }
  34575. },
  34576. },
  34577. [
  34578. {
  34579. name: "Micro",
  34580. height: math.unit(3, "inches")
  34581. },
  34582. {
  34583. name: "Normal",
  34584. height: math.unit(6 + 11/12, "feet"),
  34585. default: true
  34586. },
  34587. {
  34588. name: "Macro",
  34589. height: math.unit(100, "feet")
  34590. },
  34591. {
  34592. name: "Macro+",
  34593. height: math.unit(404, "feet")
  34594. },
  34595. {
  34596. name: "Megamacro",
  34597. height: math.unit(165, "miles")
  34598. },
  34599. {
  34600. name: "Planetary",
  34601. height: math.unit(4600, "miles")
  34602. },
  34603. ]
  34604. ))
  34605. characterMakers.push(() => makeCharacter(
  34606. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  34607. {
  34608. front: {
  34609. height: math.unit(10 + 3/12, "feet"),
  34610. weight: math.unit(1500, "lb"),
  34611. name: "Front",
  34612. image: {
  34613. source: "./media/characters/tux-kusanagi/front.svg",
  34614. extra: 944/840,
  34615. bottom: 39/983
  34616. }
  34617. },
  34618. back: {
  34619. height: math.unit(10 + 3/12, "feet"),
  34620. weight: math.unit(1500, "lb"),
  34621. name: "Back",
  34622. image: {
  34623. source: "./media/characters/tux-kusanagi/back.svg",
  34624. extra: 941/842,
  34625. bottom: 28/969
  34626. }
  34627. },
  34628. rump: {
  34629. height: math.unit(5.25, "feet"),
  34630. name: "Rump",
  34631. image: {
  34632. source: "./media/characters/tux-kusanagi/rump.svg"
  34633. }
  34634. },
  34635. beak: {
  34636. height: math.unit(1.54, "feet"),
  34637. name: "Beak",
  34638. image: {
  34639. source: "./media/characters/tux-kusanagi/beak.svg"
  34640. }
  34641. },
  34642. },
  34643. [
  34644. {
  34645. name: "Normal",
  34646. height: math.unit(10 + 3/12, "feet"),
  34647. default: true
  34648. },
  34649. ]
  34650. ))
  34651. characterMakers.push(() => makeCharacter(
  34652. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  34653. {
  34654. front: {
  34655. height: math.unit(58, "feet"),
  34656. weight: math.unit(200, "tons"),
  34657. name: "Front",
  34658. image: {
  34659. source: "./media/characters/uzarmazari/front.svg",
  34660. extra: 1575/1455,
  34661. bottom: 152/1727
  34662. }
  34663. },
  34664. back: {
  34665. height: math.unit(58, "feet"),
  34666. weight: math.unit(200, "tons"),
  34667. name: "Back",
  34668. image: {
  34669. source: "./media/characters/uzarmazari/back.svg",
  34670. extra: 1585/1510,
  34671. bottom: 157/1742
  34672. }
  34673. },
  34674. head: {
  34675. height: math.unit(26, "feet"),
  34676. name: "Head",
  34677. image: {
  34678. source: "./media/characters/uzarmazari/head.svg"
  34679. }
  34680. },
  34681. },
  34682. [
  34683. {
  34684. name: "Normal",
  34685. height: math.unit(58, "feet"),
  34686. default: true
  34687. },
  34688. ]
  34689. ))
  34690. characterMakers.push(() => makeCharacter(
  34691. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  34692. {
  34693. side: {
  34694. height: math.unit(15, "feet"),
  34695. name: "Side",
  34696. image: {
  34697. source: "./media/characters/akitu/side.svg",
  34698. extra: 1421/1321,
  34699. bottom: 157/1578
  34700. }
  34701. },
  34702. front: {
  34703. height: math.unit(15, "feet"),
  34704. name: "Front",
  34705. image: {
  34706. source: "./media/characters/akitu/front.svg",
  34707. extra: 1435/1326,
  34708. bottom: 232/1667
  34709. }
  34710. },
  34711. },
  34712. [
  34713. {
  34714. name: "Normal",
  34715. height: math.unit(15, "feet"),
  34716. default: true
  34717. },
  34718. ]
  34719. ))
  34720. characterMakers.push(() => makeCharacter(
  34721. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  34722. {
  34723. front: {
  34724. height: math.unit(10 + 8/12, "feet"),
  34725. name: "Front",
  34726. image: {
  34727. source: "./media/characters/azalie-croixland/front.svg",
  34728. extra: 1972/1856,
  34729. bottom: 31/2003
  34730. }
  34731. },
  34732. },
  34733. [
  34734. {
  34735. name: "Original Height",
  34736. height: math.unit(5 + 4/12, "feet")
  34737. },
  34738. {
  34739. name: "Normal Height",
  34740. height: math.unit(10 + 8/12, "feet"),
  34741. default: true
  34742. },
  34743. ]
  34744. ))
  34745. characterMakers.push(() => makeCharacter(
  34746. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  34747. {
  34748. side: {
  34749. height: math.unit(7 + 1/12, "feet"),
  34750. weight: math.unit(245, "lb"),
  34751. name: "Side",
  34752. image: {
  34753. source: "./media/characters/kavus-kazian/side.svg",
  34754. extra: 349/342,
  34755. bottom: 15/364
  34756. }
  34757. },
  34758. },
  34759. [
  34760. {
  34761. name: "Normal",
  34762. height: math.unit(7 + 1/12, "feet"),
  34763. default: true
  34764. },
  34765. ]
  34766. ))
  34767. characterMakers.push(() => makeCharacter(
  34768. { name: "Moonlight Rose", species: ["eevee"], tags: ["anthro"] },
  34769. {
  34770. normal: {
  34771. height: math.unit(5 + 11/12, "feet"),
  34772. name: "Normal",
  34773. image: {
  34774. source: "./media/characters/moonlight-rose/normal.svg",
  34775. extra: 1979/1835,
  34776. bottom: 14/1993
  34777. }
  34778. },
  34779. demon: {
  34780. height: math.unit(5, "km"),
  34781. name: "Demon",
  34782. image: {
  34783. source: "./media/characters/moonlight-rose/demon.svg",
  34784. extra: 986/916,
  34785. bottom: 28/1014
  34786. }
  34787. },
  34788. },
  34789. [
  34790. {
  34791. name: "\"Natural\" height",
  34792. height: math.unit(5 + 11/12, "feet")
  34793. },
  34794. {
  34795. name: "Comfortable Size",
  34796. height: math.unit(40, "meters")
  34797. },
  34798. {
  34799. name: "Common Size",
  34800. height: math.unit(50, "km"),
  34801. default: true
  34802. },
  34803. {
  34804. name: "Demonic",
  34805. height: math.unit(1.24415e+21, "meters")
  34806. },
  34807. ]
  34808. ))
  34809. characterMakers.push(() => makeCharacter(
  34810. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  34811. {
  34812. front: {
  34813. height: math.unit(16, "feet"),
  34814. weight: math.unit(610, "kg"),
  34815. name: "Front",
  34816. image: {
  34817. source: "./media/characters/huckle/front.svg",
  34818. extra: 1731/1625,
  34819. bottom: 33/1764
  34820. }
  34821. },
  34822. back: {
  34823. height: math.unit(16, "feet"),
  34824. weight: math.unit(610, "kg"),
  34825. name: "Back",
  34826. image: {
  34827. source: "./media/characters/huckle/back.svg",
  34828. extra: 1738/1651,
  34829. bottom: 37/1775
  34830. }
  34831. },
  34832. laughing: {
  34833. height: math.unit(3.75, "feet"),
  34834. name: "Laughing",
  34835. image: {
  34836. source: "./media/characters/huckle/laughing.svg"
  34837. }
  34838. },
  34839. angry: {
  34840. height: math.unit(4.15, "feet"),
  34841. name: "Angry",
  34842. image: {
  34843. source: "./media/characters/huckle/angry.svg"
  34844. }
  34845. },
  34846. },
  34847. [
  34848. {
  34849. name: "Normal",
  34850. height: math.unit(16, "feet"),
  34851. default: true
  34852. },
  34853. {
  34854. name: "Mini Macro",
  34855. height: math.unit(463, "feet")
  34856. },
  34857. {
  34858. name: "Macro",
  34859. height: math.unit(1680, "meters")
  34860. },
  34861. {
  34862. name: "Mega Macro",
  34863. height: math.unit(175, "km")
  34864. },
  34865. {
  34866. name: "Terra Macro",
  34867. height: math.unit(32, "gigameters")
  34868. },
  34869. {
  34870. name: "Multiverse+",
  34871. height: math.unit(2.56e23, "yottameters")
  34872. },
  34873. ]
  34874. ))
  34875. characterMakers.push(() => makeCharacter(
  34876. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  34877. {
  34878. front: {
  34879. height: math.unit(6 + 9/12, "feet"),
  34880. weight: math.unit(280, "lb"),
  34881. name: "Front",
  34882. image: {
  34883. source: "./media/characters/candy/front.svg",
  34884. extra: 234/217,
  34885. bottom: 11/245
  34886. }
  34887. },
  34888. },
  34889. [
  34890. {
  34891. name: "Really Small",
  34892. height: math.unit(0.1, "nm")
  34893. },
  34894. {
  34895. name: "Micro",
  34896. height: math.unit(2, "inches")
  34897. },
  34898. {
  34899. name: "Normal",
  34900. height: math.unit(6 + 9/12, "feet"),
  34901. default: true
  34902. },
  34903. {
  34904. name: "Small Macro",
  34905. height: math.unit(69, "feet")
  34906. },
  34907. {
  34908. name: "Macro",
  34909. height: math.unit(160, "feet")
  34910. },
  34911. {
  34912. name: "Megamacro",
  34913. height: math.unit(22000, "miles")
  34914. },
  34915. {
  34916. name: "Gigamacro",
  34917. height: math.unit(50000, "miles")
  34918. },
  34919. ]
  34920. ))
  34921. characterMakers.push(() => makeCharacter(
  34922. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  34923. {
  34924. front: {
  34925. height: math.unit(4, "feet"),
  34926. weight: math.unit(90, "lb"),
  34927. name: "Front",
  34928. image: {
  34929. source: "./media/characters/joey-mcdonald/front.svg",
  34930. extra: 1059/852,
  34931. bottom: 33/1092
  34932. }
  34933. },
  34934. back: {
  34935. height: math.unit(4, "feet"),
  34936. weight: math.unit(90, "lb"),
  34937. name: "Back",
  34938. image: {
  34939. source: "./media/characters/joey-mcdonald/back.svg",
  34940. extra: 1077/879,
  34941. bottom: 5/1082
  34942. }
  34943. },
  34944. frontKobold: {
  34945. height: math.unit(4, "feet"),
  34946. weight: math.unit(100, "lb"),
  34947. name: "Front-kobold",
  34948. image: {
  34949. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  34950. extra: 1480/1367,
  34951. bottom: 0/1480
  34952. }
  34953. },
  34954. backKobold: {
  34955. height: math.unit(4, "feet"),
  34956. weight: math.unit(100, "lb"),
  34957. name: "Back-kobold",
  34958. image: {
  34959. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  34960. extra: 1449/1361,
  34961. bottom: 0/1449
  34962. }
  34963. },
  34964. },
  34965. [
  34966. {
  34967. name: "Normal",
  34968. height: math.unit(4, "feet"),
  34969. default: true
  34970. },
  34971. ]
  34972. ))
  34973. characterMakers.push(() => makeCharacter(
  34974. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  34975. {
  34976. front: {
  34977. height: math.unit(12 + 6/12, "feet"),
  34978. name: "Front",
  34979. image: {
  34980. source: "./media/characters/kass-lockheed/front.svg",
  34981. extra: 354/343,
  34982. bottom: 9/363
  34983. }
  34984. },
  34985. back: {
  34986. height: math.unit(12 + 6/12, "feet"),
  34987. name: "Back",
  34988. image: {
  34989. source: "./media/characters/kass-lockheed/back.svg",
  34990. extra: 364/352,
  34991. bottom: 3/367
  34992. }
  34993. },
  34994. dick: {
  34995. height: math.unit(3.12, "feet"),
  34996. name: "Dick",
  34997. image: {
  34998. source: "./media/characters/kass-lockheed/dick.svg"
  34999. }
  35000. },
  35001. head: {
  35002. height: math.unit(2.6, "feet"),
  35003. name: "Head",
  35004. image: {
  35005. source: "./media/characters/kass-lockheed/head.svg"
  35006. }
  35007. },
  35008. bleh: {
  35009. height: math.unit(2.85, "feet"),
  35010. name: "Bleh",
  35011. image: {
  35012. source: "./media/characters/kass-lockheed/bleh.svg"
  35013. }
  35014. },
  35015. smug: {
  35016. height: math.unit(2.85, "feet"),
  35017. name: "Smug",
  35018. image: {
  35019. source: "./media/characters/kass-lockheed/smug.svg"
  35020. }
  35021. },
  35022. },
  35023. [
  35024. {
  35025. name: "Normal",
  35026. height: math.unit(12 + 6/12, "feet"),
  35027. default: true
  35028. },
  35029. ]
  35030. ))
  35031. characterMakers.push(() => makeCharacter(
  35032. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  35033. {
  35034. front: {
  35035. height: math.unit(6 + 2/12, "feet"),
  35036. name: "Front",
  35037. image: {
  35038. source: "./media/characters/taylor/front.svg",
  35039. extra: 639/495,
  35040. bottom: 12/651
  35041. }
  35042. },
  35043. },
  35044. [
  35045. {
  35046. name: "Normal",
  35047. height: math.unit(6 + 2/12, "feet"),
  35048. default: true
  35049. },
  35050. {
  35051. name: "Big",
  35052. height: math.unit(15, "feet")
  35053. },
  35054. {
  35055. name: "Lorg",
  35056. height: math.unit(80, "feet")
  35057. },
  35058. {
  35059. name: "Too Lorg",
  35060. height: math.unit(120, "feet")
  35061. },
  35062. ]
  35063. ))
  35064. characterMakers.push(() => makeCharacter(
  35065. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  35066. {
  35067. front: {
  35068. height: math.unit(15, "feet"),
  35069. name: "Front",
  35070. image: {
  35071. source: "./media/characters/kaizer/front.svg",
  35072. extra: 1612/1436,
  35073. bottom: 43/1655
  35074. }
  35075. },
  35076. },
  35077. [
  35078. {
  35079. name: "Normal",
  35080. height: math.unit(15, "feet"),
  35081. default: true
  35082. },
  35083. ]
  35084. ))
  35085. characterMakers.push(() => makeCharacter(
  35086. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  35087. {
  35088. front: {
  35089. height: math.unit(2, "feet"),
  35090. weight: math.unit(30, "lb"),
  35091. name: "Front",
  35092. image: {
  35093. source: "./media/characters/sandy/front.svg",
  35094. extra: 1439/1307,
  35095. bottom: 194/1633
  35096. }
  35097. },
  35098. },
  35099. [
  35100. {
  35101. name: "Normal",
  35102. height: math.unit(2, "feet"),
  35103. default: true
  35104. },
  35105. ]
  35106. ))
  35107. characterMakers.push(() => makeCharacter(
  35108. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  35109. {
  35110. front: {
  35111. height: math.unit(3, "feet"),
  35112. name: "Front",
  35113. image: {
  35114. source: "./media/characters/mellvi/front.svg",
  35115. extra: 1831/1630,
  35116. bottom: 58/1889
  35117. }
  35118. },
  35119. },
  35120. [
  35121. {
  35122. name: "Normal",
  35123. height: math.unit(3, "feet"),
  35124. default: true
  35125. },
  35126. ]
  35127. ))
  35128. characterMakers.push(() => makeCharacter(
  35129. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  35130. {
  35131. front: {
  35132. height: math.unit(5 + 11/12, "feet"),
  35133. weight: math.unit(200, "lb"),
  35134. name: "Front",
  35135. image: {
  35136. source: "./media/characters/shirou/front.svg",
  35137. extra: 2491/2383,
  35138. bottom: 189/2680
  35139. }
  35140. },
  35141. back: {
  35142. height: math.unit(5 + 11/12, "feet"),
  35143. weight: math.unit(200, "lb"),
  35144. name: "Back",
  35145. image: {
  35146. source: "./media/characters/shirou/back.svg",
  35147. extra: 2554/2450,
  35148. bottom: 76/2630
  35149. }
  35150. },
  35151. },
  35152. [
  35153. {
  35154. name: "Normal",
  35155. height: math.unit(5 + 11/12, "feet"),
  35156. default: true
  35157. },
  35158. ]
  35159. ))
  35160. characterMakers.push(() => makeCharacter(
  35161. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  35162. {
  35163. front: {
  35164. height: math.unit(6 + 3/12, "feet"),
  35165. weight: math.unit(177, "lb"),
  35166. name: "Front",
  35167. image: {
  35168. source: "./media/characters/noryu/front.svg",
  35169. extra: 973/885,
  35170. bottom: 10/983
  35171. }
  35172. },
  35173. },
  35174. [
  35175. {
  35176. name: "Normal",
  35177. height: math.unit(6 + 3/12, "feet"),
  35178. default: true
  35179. },
  35180. ]
  35181. ))
  35182. characterMakers.push(() => makeCharacter(
  35183. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  35184. {
  35185. front: {
  35186. height: math.unit(5 + 6/12, "feet"),
  35187. weight: math.unit(170, "lb"),
  35188. name: "Front",
  35189. image: {
  35190. source: "./media/characters/mevolas-rubenido/front.svg",
  35191. extra: 2109/1901,
  35192. bottom: 96/2205
  35193. }
  35194. },
  35195. },
  35196. [
  35197. {
  35198. name: "Normal",
  35199. height: math.unit(5 + 6/12, "feet"),
  35200. default: true
  35201. },
  35202. ]
  35203. ))
  35204. characterMakers.push(() => makeCharacter(
  35205. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  35206. {
  35207. front: {
  35208. height: math.unit(100, "feet"),
  35209. name: "Front",
  35210. image: {
  35211. source: "./media/characters/dee/front.svg",
  35212. extra: 2153/2036,
  35213. bottom: 59/2212
  35214. }
  35215. },
  35216. back: {
  35217. height: math.unit(100, "feet"),
  35218. name: "Back",
  35219. image: {
  35220. source: "./media/characters/dee/back.svg",
  35221. extra: 2183/2058,
  35222. bottom: 75/2258
  35223. }
  35224. },
  35225. foot: {
  35226. height: math.unit(19.43, "feet"),
  35227. name: "Foot",
  35228. image: {
  35229. source: "./media/characters/dee/foot.svg"
  35230. }
  35231. },
  35232. hoof: {
  35233. height: math.unit(20.6, "feet"),
  35234. name: "Hoof",
  35235. image: {
  35236. source: "./media/characters/dee/hoof.svg"
  35237. }
  35238. },
  35239. },
  35240. [
  35241. {
  35242. name: "Macro",
  35243. height: math.unit(100, "feet"),
  35244. default: true
  35245. },
  35246. ]
  35247. ))
  35248. characterMakers.push(() => makeCharacter(
  35249. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  35250. {
  35251. front: {
  35252. height: math.unit(5 + 6/12, "feet"),
  35253. name: "Front",
  35254. image: {
  35255. source: "./media/characters/teh/front.svg",
  35256. extra: 1002/847,
  35257. bottom: 62/1064
  35258. }
  35259. },
  35260. },
  35261. [
  35262. {
  35263. name: "Normal",
  35264. height: math.unit(5 + 6/12, "feet"),
  35265. default: true
  35266. },
  35267. ]
  35268. ))
  35269. characterMakers.push(() => makeCharacter(
  35270. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  35271. {
  35272. side: {
  35273. height: math.unit(6 + 1/12, "feet"),
  35274. weight: math.unit(204, "lb"),
  35275. name: "Side",
  35276. image: {
  35277. source: "./media/characters/quicksilver-ayukoti/side.svg",
  35278. extra: 974/775,
  35279. bottom: 169/1143
  35280. }
  35281. },
  35282. sitting: {
  35283. height: math.unit(6 + 2/12, "feet"),
  35284. weight: math.unit(204, "lb"),
  35285. name: "Sitting",
  35286. image: {
  35287. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  35288. extra: 1175/964,
  35289. bottom: 378/1553
  35290. }
  35291. },
  35292. },
  35293. [
  35294. {
  35295. name: "Normal",
  35296. height: math.unit(6 + 1/12, "feet"),
  35297. default: true
  35298. },
  35299. ]
  35300. ))
  35301. characterMakers.push(() => makeCharacter(
  35302. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  35303. {
  35304. front: {
  35305. height: math.unit(6, "inches"),
  35306. name: "Front",
  35307. image: {
  35308. source: "./media/characters/tululi/front.svg",
  35309. extra: 1997/1876,
  35310. bottom: 20/2017
  35311. }
  35312. },
  35313. },
  35314. [
  35315. {
  35316. name: "Normal",
  35317. height: math.unit(6, "inches"),
  35318. default: true
  35319. },
  35320. ]
  35321. ))
  35322. characterMakers.push(() => makeCharacter(
  35323. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  35324. {
  35325. front: {
  35326. height: math.unit(4 + 1/12, "feet"),
  35327. name: "Front",
  35328. image: {
  35329. source: "./media/characters/star/front.svg",
  35330. extra: 1493/1189,
  35331. bottom: 48/1541
  35332. }
  35333. },
  35334. },
  35335. [
  35336. {
  35337. name: "Normal",
  35338. height: math.unit(4 + 1/12, "feet"),
  35339. default: true
  35340. },
  35341. ]
  35342. ))
  35343. characterMakers.push(() => makeCharacter(
  35344. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  35345. {
  35346. front: {
  35347. height: math.unit(6 + 3/12, "feet"),
  35348. name: "Front",
  35349. image: {
  35350. source: "./media/characters/comet/front.svg",
  35351. extra: 1681/1462,
  35352. bottom: 26/1707
  35353. }
  35354. },
  35355. },
  35356. [
  35357. {
  35358. name: "Normal",
  35359. height: math.unit(6 + 3/12, "feet"),
  35360. default: true
  35361. },
  35362. ]
  35363. ))
  35364. characterMakers.push(() => makeCharacter(
  35365. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  35366. {
  35367. front: {
  35368. height: math.unit(950, "feet"),
  35369. name: "Front",
  35370. image: {
  35371. source: "./media/characters/vortex/front.svg",
  35372. extra: 1497/1434,
  35373. bottom: 56/1553
  35374. }
  35375. },
  35376. maw: {
  35377. height: math.unit(285, "feet"),
  35378. name: "Maw",
  35379. image: {
  35380. source: "./media/characters/vortex/maw.svg"
  35381. }
  35382. },
  35383. },
  35384. [
  35385. {
  35386. name: "Macro",
  35387. height: math.unit(950, "feet"),
  35388. default: true
  35389. },
  35390. ]
  35391. ))
  35392. characterMakers.push(() => makeCharacter(
  35393. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  35394. {
  35395. front: {
  35396. height: math.unit(600, "feet"),
  35397. weight: math.unit(0.02, "grams"),
  35398. name: "Front",
  35399. image: {
  35400. source: "./media/characters/doodle/front.svg",
  35401. extra: 1578/1413,
  35402. bottom: 37/1615
  35403. }
  35404. },
  35405. },
  35406. [
  35407. {
  35408. name: "Macro",
  35409. height: math.unit(600, "feet"),
  35410. default: true
  35411. },
  35412. ]
  35413. ))
  35414. characterMakers.push(() => makeCharacter(
  35415. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  35416. {
  35417. front: {
  35418. height: math.unit(6 + 6/12, "feet"),
  35419. name: "Front",
  35420. image: {
  35421. source: "./media/characters/jai/front.svg",
  35422. extra: 1645/1534,
  35423. bottom: 115/1760
  35424. }
  35425. },
  35426. },
  35427. [
  35428. {
  35429. name: "Normal",
  35430. height: math.unit(6 + 6/12, "feet"),
  35431. default: true
  35432. },
  35433. ]
  35434. ))
  35435. characterMakers.push(() => makeCharacter(
  35436. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  35437. {
  35438. front: {
  35439. height: math.unit(6 + 8/12, "feet"),
  35440. name: "Front",
  35441. image: {
  35442. source: "./media/characters/pixel/front.svg",
  35443. extra: 1900/1735,
  35444. bottom: 63/1963
  35445. }
  35446. },
  35447. },
  35448. [
  35449. {
  35450. name: "Normal",
  35451. height: math.unit(6 + 8/12, "feet"),
  35452. default: true
  35453. },
  35454. ]
  35455. ))
  35456. characterMakers.push(() => makeCharacter(
  35457. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  35458. {
  35459. front: {
  35460. height: math.unit(4 + 11/12, "feet"),
  35461. weight: math.unit(111, "lb"),
  35462. name: "Front",
  35463. image: {
  35464. source: "./media/characters/rhett/front.svg",
  35465. extra: 1682/1586,
  35466. bottom: 92/1774
  35467. }
  35468. },
  35469. },
  35470. [
  35471. {
  35472. name: "Mini",
  35473. height: math.unit(1 + 1/12, "feet")
  35474. },
  35475. {
  35476. name: "Normal",
  35477. height: math.unit(4 + 11/12, "feet"),
  35478. default: true
  35479. },
  35480. ]
  35481. ))
  35482. characterMakers.push(() => makeCharacter(
  35483. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  35484. {
  35485. front: {
  35486. height: math.unit(3 + 3/12, "feet"),
  35487. name: "Front",
  35488. image: {
  35489. source: "./media/characters/penny/front.svg",
  35490. extra: 1406/1311,
  35491. bottom: 26/1432
  35492. }
  35493. },
  35494. },
  35495. [
  35496. {
  35497. name: "Normal",
  35498. height: math.unit(3 + 3/12, "feet"),
  35499. default: true
  35500. },
  35501. ]
  35502. ))
  35503. characterMakers.push(() => makeCharacter(
  35504. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  35505. {
  35506. front: {
  35507. height: math.unit(4 + 11/12, "feet"),
  35508. name: "Front",
  35509. image: {
  35510. source: "./media/characters/monty/front.svg",
  35511. extra: 1479/1209,
  35512. bottom: 0/1479
  35513. }
  35514. },
  35515. },
  35516. [
  35517. {
  35518. name: "Normal",
  35519. height: math.unit(4 + 11/12, "feet"),
  35520. default: true
  35521. },
  35522. ]
  35523. ))
  35524. characterMakers.push(() => makeCharacter(
  35525. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  35526. {
  35527. front: {
  35528. height: math.unit(8 + 4/12, "feet"),
  35529. name: "Front",
  35530. image: {
  35531. source: "./media/characters/sterling/front.svg",
  35532. extra: 1420/1236,
  35533. bottom: 27/1447
  35534. }
  35535. },
  35536. },
  35537. [
  35538. {
  35539. name: "Normal",
  35540. height: math.unit(8 + 4/12, "feet"),
  35541. default: true
  35542. },
  35543. ]
  35544. ))
  35545. characterMakers.push(() => makeCharacter(
  35546. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  35547. {
  35548. front: {
  35549. height: math.unit(15, "feet"),
  35550. name: "Front",
  35551. image: {
  35552. source: "./media/characters/marble/front.svg",
  35553. extra: 973/937,
  35554. bottom: 32/1005
  35555. }
  35556. },
  35557. },
  35558. [
  35559. {
  35560. name: "Normal",
  35561. height: math.unit(15, "feet"),
  35562. default: true
  35563. },
  35564. ]
  35565. ))
  35566. characterMakers.push(() => makeCharacter(
  35567. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  35568. {
  35569. front: {
  35570. height: math.unit(3, "inches"),
  35571. name: "Front",
  35572. image: {
  35573. source: "./media/characters/powder/front.svg",
  35574. extra: 1504/1334,
  35575. bottom: 518/2022
  35576. }
  35577. },
  35578. },
  35579. [
  35580. {
  35581. name: "Normal",
  35582. height: math.unit(3, "inches"),
  35583. default: true
  35584. },
  35585. ]
  35586. ))
  35587. characterMakers.push(() => makeCharacter(
  35588. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  35589. {
  35590. front: {
  35591. height: math.unit(4 + 5/12, "feet"),
  35592. name: "Front",
  35593. image: {
  35594. source: "./media/characters/joey-raccoon/front.svg",
  35595. extra: 1273/1197,
  35596. bottom: 0/1273
  35597. }
  35598. },
  35599. },
  35600. [
  35601. {
  35602. name: "Normal",
  35603. height: math.unit(4 + 5/12, "feet"),
  35604. default: true
  35605. },
  35606. ]
  35607. ))
  35608. characterMakers.push(() => makeCharacter(
  35609. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  35610. {
  35611. front: {
  35612. height: math.unit(8 + 4/12, "feet"),
  35613. name: "Front",
  35614. image: {
  35615. source: "./media/characters/vick/front.svg",
  35616. extra: 2187/2118,
  35617. bottom: 47/2234
  35618. }
  35619. },
  35620. },
  35621. [
  35622. {
  35623. name: "Normal",
  35624. height: math.unit(8 + 4/12, "feet"),
  35625. default: true
  35626. },
  35627. ]
  35628. ))
  35629. characterMakers.push(() => makeCharacter(
  35630. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  35631. {
  35632. front: {
  35633. height: math.unit(5 + 5/12, "feet"),
  35634. name: "Front",
  35635. image: {
  35636. source: "./media/characters/mitsy/front.svg",
  35637. extra: 1842/1695,
  35638. bottom: 0/1842
  35639. }
  35640. },
  35641. },
  35642. [
  35643. {
  35644. name: "Normal",
  35645. height: math.unit(5 + 5/12, "feet"),
  35646. default: true
  35647. },
  35648. ]
  35649. ))
  35650. characterMakers.push(() => makeCharacter(
  35651. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  35652. {
  35653. front: {
  35654. height: math.unit(6 + 3/12, "feet"),
  35655. name: "Front",
  35656. image: {
  35657. source: "./media/characters/silvy/front.svg",
  35658. extra: 1995/1836,
  35659. bottom: 225/2220
  35660. }
  35661. },
  35662. },
  35663. [
  35664. {
  35665. name: "Normal",
  35666. height: math.unit(6 + 3/12, "feet"),
  35667. default: true
  35668. },
  35669. ]
  35670. ))
  35671. characterMakers.push(() => makeCharacter(
  35672. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  35673. {
  35674. front: {
  35675. height: math.unit(3 + 8/12, "feet"),
  35676. name: "Front",
  35677. image: {
  35678. source: "./media/characters/rodney/front.svg",
  35679. extra: 1956/1747,
  35680. bottom: 31/1987
  35681. }
  35682. },
  35683. frontDressed: {
  35684. height: math.unit(2.9, "feet"),
  35685. name: "Front (Dressed)",
  35686. image: {
  35687. source: "./media/characters/rodney/front-dressed.svg",
  35688. extra: 1382/1241,
  35689. bottom: 385/1767
  35690. }
  35691. },
  35692. },
  35693. [
  35694. {
  35695. name: "Normal",
  35696. height: math.unit(3 + 8/12, "feet"),
  35697. default: true
  35698. },
  35699. ]
  35700. ))
  35701. characterMakers.push(() => makeCharacter(
  35702. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  35703. {
  35704. front: {
  35705. height: math.unit(5 + 9/12, "feet"),
  35706. weight: math.unit(194, "lbs"),
  35707. name: "Front",
  35708. image: {
  35709. source: "./media/characters/zakail-sudekai/front.svg",
  35710. extra: 2696/2533,
  35711. bottom: 248/2944
  35712. }
  35713. },
  35714. maw: {
  35715. height: math.unit(1.35, "feet"),
  35716. name: "Maw",
  35717. image: {
  35718. source: "./media/characters/zakail-sudekai/maw.svg"
  35719. }
  35720. },
  35721. },
  35722. [
  35723. {
  35724. name: "Normal",
  35725. height: math.unit(5 + 9/12, "feet"),
  35726. default: true
  35727. },
  35728. ]
  35729. ))
  35730. characterMakers.push(() => makeCharacter(
  35731. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  35732. {
  35733. front: {
  35734. height: math.unit(8 + 4/12, "feet"),
  35735. weight: math.unit(1200, "lb"),
  35736. name: "Front",
  35737. image: {
  35738. source: "./media/characters/eleanor/front.svg",
  35739. extra: 1226/1192,
  35740. bottom: 52/1278
  35741. }
  35742. },
  35743. back: {
  35744. height: math.unit(8 + 4/12, "feet"),
  35745. weight: math.unit(1200, "lb"),
  35746. name: "Back",
  35747. image: {
  35748. source: "./media/characters/eleanor/back.svg",
  35749. extra: 1242/1184,
  35750. bottom: 60/1302
  35751. }
  35752. },
  35753. head: {
  35754. height: math.unit(2.62, "feet"),
  35755. name: "Head",
  35756. image: {
  35757. source: "./media/characters/eleanor/head.svg"
  35758. }
  35759. },
  35760. },
  35761. [
  35762. {
  35763. name: "Normal",
  35764. height: math.unit(8 + 4/12, "feet"),
  35765. default: true
  35766. },
  35767. ]
  35768. ))
  35769. characterMakers.push(() => makeCharacter(
  35770. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  35771. {
  35772. front: {
  35773. height: math.unit(8 + 4/12, "feet"),
  35774. weight: math.unit(750, "lb"),
  35775. name: "Front",
  35776. image: {
  35777. source: "./media/characters/tanya/front.svg",
  35778. extra: 1749/1615,
  35779. bottom: 33/1782
  35780. }
  35781. },
  35782. },
  35783. [
  35784. {
  35785. name: "Normal",
  35786. height: math.unit(8 + 4/12, "feet"),
  35787. default: true
  35788. },
  35789. ]
  35790. ))
  35791. characterMakers.push(() => makeCharacter(
  35792. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  35793. {
  35794. front: {
  35795. height: math.unit(5, "feet"),
  35796. weight: math.unit(225, "lb"),
  35797. name: "Front",
  35798. image: {
  35799. source: "./media/characters/cindy/front.svg",
  35800. extra: 1320/1250,
  35801. bottom: 42/1362
  35802. }
  35803. },
  35804. frontDressed: {
  35805. height: math.unit(5, "feet"),
  35806. weight: math.unit(225, "lb"),
  35807. name: "Front (Dressed)",
  35808. image: {
  35809. source: "./media/characters/cindy/front-dressed.svg",
  35810. extra: 1320/1250,
  35811. bottom: 42/1362
  35812. }
  35813. },
  35814. back: {
  35815. height: math.unit(5, "feet"),
  35816. weight: math.unit(225, "lb"),
  35817. name: "Back",
  35818. image: {
  35819. source: "./media/characters/cindy/back.svg",
  35820. extra: 1384/1346,
  35821. bottom: 14/1398
  35822. }
  35823. },
  35824. },
  35825. [
  35826. {
  35827. name: "Normal",
  35828. height: math.unit(5, "feet"),
  35829. default: true
  35830. },
  35831. ]
  35832. ))
  35833. characterMakers.push(() => makeCharacter(
  35834. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  35835. {
  35836. front: {
  35837. height: math.unit(6 + 9/12, "feet"),
  35838. weight: math.unit(440, "lb"),
  35839. name: "Front",
  35840. image: {
  35841. source: "./media/characters/wilbur-owen/front.svg",
  35842. extra: 1575/1448,
  35843. bottom: 72/1647
  35844. }
  35845. },
  35846. back: {
  35847. height: math.unit(6 + 9/12, "feet"),
  35848. weight: math.unit(440, "lb"),
  35849. name: "Back",
  35850. image: {
  35851. source: "./media/characters/wilbur-owen/back.svg",
  35852. extra: 1578/1445,
  35853. bottom: 36/1614
  35854. }
  35855. },
  35856. },
  35857. [
  35858. {
  35859. name: "Normal",
  35860. height: math.unit(6 + 9/12, "feet"),
  35861. default: true
  35862. },
  35863. ]
  35864. ))
  35865. characterMakers.push(() => makeCharacter(
  35866. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  35867. {
  35868. front: {
  35869. height: math.unit(6 + 5/12, "feet"),
  35870. weight: math.unit(650, "lb"),
  35871. name: "Front",
  35872. image: {
  35873. source: "./media/characters/keegan/front.svg",
  35874. extra: 2387/2198,
  35875. bottom: 33/2420
  35876. }
  35877. },
  35878. side: {
  35879. height: math.unit(6 + 5/12, "feet"),
  35880. weight: math.unit(650, "lb"),
  35881. name: "Side",
  35882. image: {
  35883. source: "./media/characters/keegan/side.svg",
  35884. extra: 2390/2202,
  35885. bottom: 47/2437
  35886. }
  35887. },
  35888. back: {
  35889. height: math.unit(6 + 5/12, "feet"),
  35890. weight: math.unit(650, "lb"),
  35891. name: "Back",
  35892. image: {
  35893. source: "./media/characters/keegan/back.svg",
  35894. extra: 2418/2268,
  35895. bottom: 15/2433
  35896. }
  35897. },
  35898. frontSfw: {
  35899. height: math.unit(6 + 5/12, "feet"),
  35900. weight: math.unit(650, "lb"),
  35901. name: "Front (SFW)",
  35902. image: {
  35903. source: "./media/characters/keegan/front-sfw.svg",
  35904. extra: 2387/2198,
  35905. bottom: 33/2420
  35906. }
  35907. },
  35908. beans: {
  35909. height: math.unit(1.85, "feet"),
  35910. name: "Beans",
  35911. image: {
  35912. source: "./media/characters/keegan/beans.svg"
  35913. }
  35914. },
  35915. },
  35916. [
  35917. {
  35918. name: "Normal",
  35919. height: math.unit(6 + 5/12, "feet"),
  35920. default: true
  35921. },
  35922. ]
  35923. ))
  35924. characterMakers.push(() => makeCharacter(
  35925. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  35926. {
  35927. front: {
  35928. height: math.unit(9, "feet"),
  35929. name: "Front",
  35930. image: {
  35931. source: "./media/characters/colton/front.svg",
  35932. extra: 1589/1326,
  35933. bottom: 139/1728
  35934. }
  35935. },
  35936. },
  35937. [
  35938. {
  35939. name: "Normal",
  35940. height: math.unit(9, "feet"),
  35941. default: true
  35942. },
  35943. ]
  35944. ))
  35945. characterMakers.push(() => makeCharacter(
  35946. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  35947. {
  35948. front: {
  35949. height: math.unit(2 + 9/12, "feet"),
  35950. name: "Front",
  35951. image: {
  35952. source: "./media/characters/bora/front.svg",
  35953. extra: 1265/1250,
  35954. bottom: 24/1289
  35955. }
  35956. },
  35957. },
  35958. [
  35959. {
  35960. name: "Normal",
  35961. height: math.unit(2 + 9/12, "feet"),
  35962. default: true
  35963. },
  35964. ]
  35965. ))
  35966. characterMakers.push(() => makeCharacter(
  35967. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  35968. {
  35969. front: {
  35970. height: math.unit(8, "feet"),
  35971. name: "Front",
  35972. image: {
  35973. source: "./media/characters/myu-myu/front.svg",
  35974. extra: 1949/1857,
  35975. bottom: 90/2039
  35976. }
  35977. },
  35978. },
  35979. [
  35980. {
  35981. name: "Normal",
  35982. height: math.unit(8, "feet"),
  35983. default: true
  35984. },
  35985. {
  35986. name: "Big",
  35987. height: math.unit(15, "feet")
  35988. },
  35989. {
  35990. name: "BIG",
  35991. height: math.unit(25, "feet")
  35992. },
  35993. ]
  35994. ))
  35995. characterMakers.push(() => makeCharacter(
  35996. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  35997. {
  35998. side: {
  35999. height: math.unit(7 + 5/12, "feet"),
  36000. weight: math.unit(2800, "lb"),
  36001. name: "Side",
  36002. image: {
  36003. source: "./media/characters/haloren/side.svg",
  36004. extra: 1793/409,
  36005. bottom: 59/1852
  36006. }
  36007. },
  36008. frontPaw: {
  36009. height: math.unit(2.36, "feet"),
  36010. name: "Front paw",
  36011. image: {
  36012. source: "./media/characters/haloren/front-paw.svg"
  36013. }
  36014. },
  36015. hindPaw: {
  36016. height: math.unit(3.18, "feet"),
  36017. name: "Hind paw",
  36018. image: {
  36019. source: "./media/characters/haloren/hind-paw.svg"
  36020. }
  36021. },
  36022. maw: {
  36023. height: math.unit(5.05, "feet"),
  36024. name: "Maw",
  36025. image: {
  36026. source: "./media/characters/haloren/maw.svg"
  36027. }
  36028. },
  36029. dick: {
  36030. height: math.unit(2.90, "feet"),
  36031. name: "Dick",
  36032. image: {
  36033. source: "./media/characters/haloren/dick.svg"
  36034. }
  36035. },
  36036. },
  36037. [
  36038. {
  36039. name: "Normal",
  36040. height: math.unit(7 + 5/12, "feet"),
  36041. default: true
  36042. },
  36043. {
  36044. name: "Enhanced",
  36045. height: math.unit(14 + 3/12, "feet")
  36046. },
  36047. ]
  36048. ))
  36049. characterMakers.push(() => makeCharacter(
  36050. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  36051. {
  36052. front: {
  36053. height: math.unit(171, "cm"),
  36054. name: "Front",
  36055. image: {
  36056. source: "./media/characters/kimmy/front.svg",
  36057. extra: 1491/1435,
  36058. bottom: 53/1544
  36059. }
  36060. },
  36061. },
  36062. [
  36063. {
  36064. name: "Small",
  36065. height: math.unit(9, "cm")
  36066. },
  36067. {
  36068. name: "Normal",
  36069. height: math.unit(171, "cm"),
  36070. default: true
  36071. },
  36072. ]
  36073. ))
  36074. characterMakers.push(() => makeCharacter(
  36075. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  36076. {
  36077. front: {
  36078. height: math.unit(8, "feet"),
  36079. weight: math.unit(300, "lb"),
  36080. name: "Front",
  36081. image: {
  36082. source: "./media/characters/galeboomer/front.svg",
  36083. extra: 4651/4415,
  36084. bottom: 162/4813
  36085. }
  36086. },
  36087. back: {
  36088. height: math.unit(8, "feet"),
  36089. weight: math.unit(300, "lb"),
  36090. name: "Back",
  36091. image: {
  36092. source: "./media/characters/galeboomer/back.svg",
  36093. extra: 4544/4314,
  36094. bottom: 16/4560
  36095. }
  36096. },
  36097. frontAlt: {
  36098. height: math.unit(8, "feet"),
  36099. weight: math.unit(300, "lb"),
  36100. name: "Front (Alt)",
  36101. image: {
  36102. source: "./media/characters/galeboomer/front-alt.svg",
  36103. extra: 4458/4228,
  36104. bottom: 68/4526
  36105. }
  36106. },
  36107. maw: {
  36108. height: math.unit(1.2, "feet"),
  36109. name: "Maw",
  36110. image: {
  36111. source: "./media/characters/galeboomer/maw.svg"
  36112. }
  36113. },
  36114. },
  36115. [
  36116. {
  36117. name: "Normal",
  36118. height: math.unit(8, "feet"),
  36119. default: true
  36120. },
  36121. ]
  36122. ))
  36123. characterMakers.push(() => makeCharacter(
  36124. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  36125. {
  36126. front: {
  36127. height: math.unit(5 + 9/12, "feet"),
  36128. weight: math.unit(120, "lb"),
  36129. name: "Front",
  36130. image: {
  36131. source: "./media/characters/chyr/front.svg",
  36132. extra: 1323/1254,
  36133. bottom: 63/1386
  36134. }
  36135. },
  36136. back: {
  36137. height: math.unit(5 + 9/12, "feet"),
  36138. weight: math.unit(120, "lb"),
  36139. name: "Back",
  36140. image: {
  36141. source: "./media/characters/chyr/back.svg",
  36142. extra: 1323/1252,
  36143. bottom: 48/1371
  36144. }
  36145. },
  36146. },
  36147. [
  36148. {
  36149. name: "Normal",
  36150. height: math.unit(5 + 9/12, "feet"),
  36151. default: true
  36152. },
  36153. ]
  36154. ))
  36155. characterMakers.push(() => makeCharacter(
  36156. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  36157. {
  36158. front: {
  36159. height: math.unit(7, "feet"),
  36160. weight: math.unit(310, "lb"),
  36161. name: "Front",
  36162. image: {
  36163. source: "./media/characters/solarus/front.svg",
  36164. extra: 2415/2021,
  36165. bottom: 103/2518
  36166. }
  36167. },
  36168. back: {
  36169. height: math.unit(7, "feet"),
  36170. weight: math.unit(310, "lb"),
  36171. name: "Back",
  36172. image: {
  36173. source: "./media/characters/solarus/back.svg",
  36174. extra: 2463/2089,
  36175. bottom: 79/2542
  36176. }
  36177. },
  36178. },
  36179. [
  36180. {
  36181. name: "Normal",
  36182. height: math.unit(7, "feet"),
  36183. default: true
  36184. },
  36185. ]
  36186. ))
  36187. characterMakers.push(() => makeCharacter(
  36188. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  36189. {
  36190. front: {
  36191. height: math.unit(16, "feet"),
  36192. name: "Front",
  36193. image: {
  36194. source: "./media/characters/mutsuju-koizaemon/front.svg",
  36195. extra: 1844/1780,
  36196. bottom: 58/1902
  36197. }
  36198. },
  36199. winterCoat: {
  36200. height: math.unit(16, "feet"),
  36201. name: "Winter Coat",
  36202. image: {
  36203. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  36204. extra: 1807/1775,
  36205. bottom: 69/1876
  36206. }
  36207. },
  36208. },
  36209. [
  36210. {
  36211. name: "Normal",
  36212. height: math.unit(16, "feet"),
  36213. default: true
  36214. },
  36215. {
  36216. name: "Chicago Size",
  36217. height: math.unit(560, "feet")
  36218. },
  36219. ]
  36220. ))
  36221. characterMakers.push(() => makeCharacter(
  36222. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  36223. {
  36224. front: {
  36225. height: math.unit(11 + 6/12, "feet"),
  36226. weight: math.unit(1366, "lb"),
  36227. name: "Front",
  36228. image: {
  36229. source: "./media/characters/lexor/front.svg",
  36230. extra: 1560/1481,
  36231. bottom: 211/1771
  36232. }
  36233. },
  36234. back: {
  36235. height: math.unit(11 + 6/12, "feet"),
  36236. weight: math.unit(1366, "lb"),
  36237. name: "Back",
  36238. image: {
  36239. source: "./media/characters/lexor/back.svg",
  36240. extra: 1614/1533,
  36241. bottom: 76/1690
  36242. }
  36243. },
  36244. maw: {
  36245. height: math.unit(3, "feet"),
  36246. name: "Maw",
  36247. image: {
  36248. source: "./media/characters/lexor/maw.svg"
  36249. }
  36250. },
  36251. dick: {
  36252. height: math.unit(2.59, "feet"),
  36253. name: "Dick",
  36254. image: {
  36255. source: "./media/characters/lexor/dick.svg"
  36256. }
  36257. },
  36258. },
  36259. [
  36260. {
  36261. name: "Normal",
  36262. height: math.unit(11 + 6/12, "feet"),
  36263. default: true
  36264. },
  36265. ]
  36266. ))
  36267. characterMakers.push(() => makeCharacter(
  36268. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  36269. {
  36270. front: {
  36271. height: math.unit(5 + 8/12, "feet"),
  36272. name: "Front",
  36273. image: {
  36274. source: "./media/characters/magnum/front.svg",
  36275. extra: 942/855,
  36276. bottom: 26/968
  36277. }
  36278. },
  36279. },
  36280. [
  36281. {
  36282. name: "Normal",
  36283. height: math.unit(5 + 8/12, "feet"),
  36284. default: true
  36285. },
  36286. ]
  36287. ))
  36288. characterMakers.push(() => makeCharacter(
  36289. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  36290. {
  36291. front: {
  36292. height: math.unit(18 + 4/12, "feet"),
  36293. weight: math.unit(1500, "kg"),
  36294. name: "Front",
  36295. image: {
  36296. source: "./media/characters/solas-sharpsman/front.svg",
  36297. extra: 1698/1589,
  36298. bottom: 0/1698
  36299. }
  36300. },
  36301. },
  36302. [
  36303. {
  36304. name: "Normal",
  36305. height: math.unit(18 + 4/12, "feet"),
  36306. default: true
  36307. },
  36308. ]
  36309. ))
  36310. characterMakers.push(() => makeCharacter(
  36311. { name: "October", species: ["tiger"], tags: ["anthro"] },
  36312. {
  36313. front: {
  36314. height: math.unit(5 + 5/12, "feet"),
  36315. weight: math.unit(180, "lb"),
  36316. name: "Front",
  36317. image: {
  36318. source: "./media/characters/october/front.svg",
  36319. extra: 1800/1650,
  36320. bottom: 0/1800
  36321. }
  36322. },
  36323. frontNsfw: {
  36324. height: math.unit(5 + 5/12, "feet"),
  36325. weight: math.unit(180, "lb"),
  36326. name: "Front (NSFW)",
  36327. image: {
  36328. source: "./media/characters/october/front-nsfw.svg",
  36329. extra: 1392/1307,
  36330. bottom: 42/1434
  36331. }
  36332. },
  36333. },
  36334. [
  36335. {
  36336. name: "Normal",
  36337. height: math.unit(5 + 5/12, "feet"),
  36338. default: true
  36339. },
  36340. ]
  36341. ))
  36342. characterMakers.push(() => makeCharacter(
  36343. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  36344. {
  36345. front: {
  36346. height: math.unit(8 + 6/12, "feet"),
  36347. name: "Front",
  36348. image: {
  36349. source: "./media/characters/essynkardi/front.svg",
  36350. extra: 1914/1846,
  36351. bottom: 22/1936
  36352. }
  36353. },
  36354. },
  36355. [
  36356. {
  36357. name: "Normal",
  36358. height: math.unit(8 + 6/12, "feet"),
  36359. default: true
  36360. },
  36361. ]
  36362. ))
  36363. characterMakers.push(() => makeCharacter(
  36364. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  36365. {
  36366. front: {
  36367. height: math.unit(6 + 6/12, "feet"),
  36368. weight: math.unit(7, "lb"),
  36369. name: "Front",
  36370. image: {
  36371. source: "./media/characters/icky/front.svg",
  36372. extra: 813/782,
  36373. bottom: 66/879
  36374. }
  36375. },
  36376. back: {
  36377. height: math.unit(6 + 6/12, "feet"),
  36378. weight: math.unit(7, "lb"),
  36379. name: "Back",
  36380. image: {
  36381. source: "./media/characters/icky/back.svg",
  36382. extra: 754/735,
  36383. bottom: 56/810
  36384. }
  36385. },
  36386. },
  36387. [
  36388. {
  36389. name: "Normal",
  36390. height: math.unit(6 + 6/12, "feet"),
  36391. default: true
  36392. },
  36393. ]
  36394. ))
  36395. characterMakers.push(() => makeCharacter(
  36396. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  36397. {
  36398. front: {
  36399. height: math.unit(15, "feet"),
  36400. name: "Front",
  36401. image: {
  36402. source: "./media/characters/rojas/front.svg",
  36403. extra: 1462/1408,
  36404. bottom: 95/1557
  36405. }
  36406. },
  36407. back: {
  36408. height: math.unit(15, "feet"),
  36409. name: "Back",
  36410. image: {
  36411. source: "./media/characters/rojas/back.svg",
  36412. extra: 1023/954,
  36413. bottom: 28/1051
  36414. }
  36415. },
  36416. },
  36417. [
  36418. {
  36419. name: "Normal",
  36420. height: math.unit(15, "feet"),
  36421. default: true
  36422. },
  36423. ]
  36424. ))
  36425. characterMakers.push(() => makeCharacter(
  36426. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  36427. {
  36428. frontHuman: {
  36429. height: math.unit(5 + 7/12, "feet"),
  36430. name: "Front (Human)",
  36431. image: {
  36432. source: "./media/characters/alek-dryagan/front-human.svg",
  36433. extra: 1687/1667,
  36434. bottom: 69/1756
  36435. }
  36436. },
  36437. backHuman: {
  36438. height: math.unit(5 + 7/12, "feet"),
  36439. name: "Back (Human)",
  36440. image: {
  36441. source: "./media/characters/alek-dryagan/back-human.svg",
  36442. extra: 1670/1649,
  36443. bottom: 65/1735
  36444. }
  36445. },
  36446. frontDemi: {
  36447. height: math.unit(65, "feet"),
  36448. name: "Front (Demi)",
  36449. image: {
  36450. source: "./media/characters/alek-dryagan/front-demi.svg",
  36451. extra: 1669/1642,
  36452. bottom: 49/1718
  36453. }
  36454. },
  36455. backDemi: {
  36456. height: math.unit(65, "feet"),
  36457. name: "Back (Demi)",
  36458. image: {
  36459. source: "./media/characters/alek-dryagan/back-demi.svg",
  36460. extra: 1658/1637,
  36461. bottom: 40/1698
  36462. }
  36463. },
  36464. mawHuman: {
  36465. height: math.unit(0.3, "feet"),
  36466. name: "Maw (Human)",
  36467. image: {
  36468. source: "./media/characters/alek-dryagan/maw-human.svg"
  36469. }
  36470. },
  36471. mawDemi: {
  36472. height: math.unit(3.8, "feet"),
  36473. name: "Maw (Demi)",
  36474. image: {
  36475. source: "./media/characters/alek-dryagan/maw-demi.svg"
  36476. }
  36477. },
  36478. },
  36479. [
  36480. {
  36481. name: "Normal",
  36482. height: math.unit(5 + 7/12, "feet"),
  36483. default: true
  36484. },
  36485. ]
  36486. ))
  36487. characterMakers.push(() => makeCharacter(
  36488. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  36489. {
  36490. frontHuman: {
  36491. height: math.unit(5 + 2/12, "feet"),
  36492. name: "Front (Human)",
  36493. image: {
  36494. source: "./media/characters/gen/front-human.svg",
  36495. extra: 1627/1538,
  36496. bottom: 71/1698
  36497. }
  36498. },
  36499. backHuman: {
  36500. height: math.unit(5 + 2/12, "feet"),
  36501. name: "Back (Human)",
  36502. image: {
  36503. source: "./media/characters/gen/back-human.svg",
  36504. extra: 1638/1548,
  36505. bottom: 69/1707
  36506. }
  36507. },
  36508. frontDemi: {
  36509. height: math.unit(5 + 2/12, "feet"),
  36510. name: "Front (Demi)",
  36511. image: {
  36512. source: "./media/characters/gen/front-demi.svg",
  36513. extra: 1627/1538,
  36514. bottom: 71/1698
  36515. }
  36516. },
  36517. backDemi: {
  36518. height: math.unit(5 + 2/12, "feet"),
  36519. name: "Back (Demi)",
  36520. image: {
  36521. source: "./media/characters/gen/back-demi.svg",
  36522. extra: 1638/1548,
  36523. bottom: 69/1707
  36524. }
  36525. },
  36526. },
  36527. [
  36528. {
  36529. name: "Normal",
  36530. height: math.unit(5 + 2/12, "feet"),
  36531. default: true
  36532. },
  36533. ]
  36534. ))
  36535. characterMakers.push(() => makeCharacter(
  36536. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  36537. {
  36538. frontImp: {
  36539. height: math.unit(1 + 11/12, "feet"),
  36540. name: "Front (Imp)",
  36541. image: {
  36542. source: "./media/characters/max-kobold/front-imp.svg",
  36543. extra: 1238/1134,
  36544. bottom: 81/1319
  36545. }
  36546. },
  36547. backImp: {
  36548. height: math.unit(1 + 11/12, "feet"),
  36549. name: "Back (Imp)",
  36550. image: {
  36551. source: "./media/characters/max-kobold/back-imp.svg",
  36552. extra: 1334/1175,
  36553. bottom: 34/1368
  36554. }
  36555. },
  36556. frontDemi: {
  36557. height: math.unit(5 + 9/12, "feet"),
  36558. name: "Front (Demi)",
  36559. image: {
  36560. source: "./media/characters/max-kobold/front-demi.svg",
  36561. extra: 1715/1685,
  36562. bottom: 54/1769
  36563. }
  36564. },
  36565. backDemi: {
  36566. height: math.unit(5 + 9/12, "feet"),
  36567. name: "Back (Demi)",
  36568. image: {
  36569. source: "./media/characters/max-kobold/back-demi.svg",
  36570. extra: 1752/1729,
  36571. bottom: 41/1793
  36572. }
  36573. },
  36574. handImp: {
  36575. height: math.unit(0.45, "feet"),
  36576. name: "Hand (Imp)",
  36577. image: {
  36578. source: "./media/characters/max-kobold/hand.svg"
  36579. }
  36580. },
  36581. pawImp: {
  36582. height: math.unit(0.46, "feet"),
  36583. name: "Paw (Imp)",
  36584. image: {
  36585. source: "./media/characters/max-kobold/paw.svg"
  36586. }
  36587. },
  36588. handDemi: {
  36589. height: math.unit(0.80, "feet"),
  36590. name: "Hand (Demi)",
  36591. image: {
  36592. source: "./media/characters/max-kobold/hand.svg"
  36593. }
  36594. },
  36595. pawDemi: {
  36596. height: math.unit(1.1, "feet"),
  36597. name: "Paw (Demi)",
  36598. image: {
  36599. source: "./media/characters/max-kobold/paw.svg"
  36600. }
  36601. },
  36602. headImp: {
  36603. height: math.unit(1.33, "feet"),
  36604. name: "Head (Imp)",
  36605. image: {
  36606. source: "./media/characters/max-kobold/head-imp.svg"
  36607. }
  36608. },
  36609. mawImp: {
  36610. height: math.unit(0.75, "feet"),
  36611. name: "Maw (Imp)",
  36612. image: {
  36613. source: "./media/characters/max-kobold/maw-imp.svg"
  36614. }
  36615. },
  36616. mawDemi: {
  36617. height: math.unit(0.42, "feet"),
  36618. name: "Maw (Demi)",
  36619. image: {
  36620. source: "./media/characters/max-kobold/maw-demi.svg"
  36621. }
  36622. },
  36623. },
  36624. [
  36625. {
  36626. name: "Normal",
  36627. height: math.unit(1 + 11/12, "feet"),
  36628. default: true
  36629. },
  36630. ]
  36631. ))
  36632. characterMakers.push(() => makeCharacter(
  36633. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  36634. {
  36635. front: {
  36636. height: math.unit(7 + 5/12, "feet"),
  36637. name: "Front",
  36638. image: {
  36639. source: "./media/characters/carbon/front.svg",
  36640. extra: 1754/1689,
  36641. bottom: 65/1819
  36642. }
  36643. },
  36644. back: {
  36645. height: math.unit(7 + 5/12, "feet"),
  36646. name: "Back",
  36647. image: {
  36648. source: "./media/characters/carbon/back.svg",
  36649. extra: 1762/1695,
  36650. bottom: 24/1786
  36651. }
  36652. },
  36653. frontGigantamax: {
  36654. height: math.unit(150, "feet"),
  36655. name: "Front (Gigantamax)",
  36656. image: {
  36657. source: "./media/characters/carbon/front-gigantamax.svg",
  36658. extra: 1826/1669,
  36659. bottom: 59/1885
  36660. }
  36661. },
  36662. backGigantamax: {
  36663. height: math.unit(150, "feet"),
  36664. name: "Back (Gigantamax)",
  36665. image: {
  36666. source: "./media/characters/carbon/back-gigantamax.svg",
  36667. extra: 1796/1653,
  36668. bottom: 53/1849
  36669. }
  36670. },
  36671. maw: {
  36672. height: math.unit(0.48, "feet"),
  36673. name: "Maw",
  36674. image: {
  36675. source: "./media/characters/carbon/maw.svg"
  36676. }
  36677. },
  36678. mawGigantamax: {
  36679. height: math.unit(7.5, "feet"),
  36680. name: "Maw (Gigantamax)",
  36681. image: {
  36682. source: "./media/characters/carbon/maw-gigantamax.svg"
  36683. }
  36684. },
  36685. },
  36686. [
  36687. {
  36688. name: "Normal",
  36689. height: math.unit(7 + 5/12, "feet"),
  36690. default: true
  36691. },
  36692. ]
  36693. ))
  36694. characterMakers.push(() => makeCharacter(
  36695. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  36696. {
  36697. front: {
  36698. height: math.unit(6, "feet"),
  36699. name: "Front",
  36700. image: {
  36701. source: "./media/characters/maverick/front.svg",
  36702. extra: 1672/1661,
  36703. bottom: 85/1757
  36704. }
  36705. },
  36706. back: {
  36707. height: math.unit(6, "feet"),
  36708. name: "Back",
  36709. image: {
  36710. source: "./media/characters/maverick/back.svg",
  36711. extra: 1642/1631,
  36712. bottom: 38/1680
  36713. }
  36714. },
  36715. },
  36716. [
  36717. {
  36718. name: "Normal",
  36719. height: math.unit(6, "feet"),
  36720. default: true
  36721. },
  36722. ]
  36723. ))
  36724. characterMakers.push(() => makeCharacter(
  36725. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  36726. {
  36727. front: {
  36728. height: math.unit(15, "feet"),
  36729. weight: math.unit(615, "lb"),
  36730. name: "Front",
  36731. image: {
  36732. source: "./media/characters/grockle/front.svg",
  36733. extra: 1535/1427,
  36734. bottom: 56/1591
  36735. }
  36736. },
  36737. },
  36738. [
  36739. {
  36740. name: "Normal",
  36741. height: math.unit(15, "feet"),
  36742. default: true
  36743. },
  36744. {
  36745. name: "Large",
  36746. height: math.unit(150, "feet")
  36747. },
  36748. {
  36749. name: "Macro",
  36750. height: math.unit(1876, "feet")
  36751. },
  36752. {
  36753. name: "Mega Macro",
  36754. height: math.unit(121940, "feet")
  36755. },
  36756. {
  36757. name: "Giga Macro",
  36758. height: math.unit(750, "km")
  36759. },
  36760. {
  36761. name: "Tera Macro",
  36762. height: math.unit(750000, "km")
  36763. },
  36764. {
  36765. name: "Galactic",
  36766. height: math.unit(1.4e5, "km")
  36767. },
  36768. {
  36769. name: "Godlike",
  36770. height: math.unit(9.8e280, "galaxies")
  36771. },
  36772. ]
  36773. ))
  36774. characterMakers.push(() => makeCharacter(
  36775. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  36776. {
  36777. front: {
  36778. height: math.unit(11, "meters"),
  36779. weight: math.unit(20, "tonnes"),
  36780. name: "Front",
  36781. image: {
  36782. source: "./media/characters/alistair/front.svg",
  36783. extra: 1265/1009,
  36784. bottom: 93/1358
  36785. }
  36786. },
  36787. },
  36788. [
  36789. {
  36790. name: "Normal",
  36791. height: math.unit(11, "meters"),
  36792. default: true
  36793. },
  36794. ]
  36795. ))
  36796. characterMakers.push(() => makeCharacter(
  36797. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  36798. {
  36799. front: {
  36800. height: math.unit(5 + 8/12, "feet"),
  36801. name: "Front",
  36802. image: {
  36803. source: "./media/characters/haruka/front.svg",
  36804. extra: 2012/1952,
  36805. bottom: 0/2012
  36806. }
  36807. },
  36808. },
  36809. [
  36810. {
  36811. name: "Normal",
  36812. height: math.unit(5 + 8/12, "feet"),
  36813. default: true
  36814. },
  36815. ]
  36816. ))
  36817. characterMakers.push(() => makeCharacter(
  36818. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  36819. {
  36820. back: {
  36821. height: math.unit(9, "feet"),
  36822. name: "Back",
  36823. image: {
  36824. source: "./media/characters/vivian-sylveon/back.svg",
  36825. extra: 1853/1714,
  36826. bottom: 0/1853
  36827. }
  36828. },
  36829. },
  36830. [
  36831. {
  36832. name: "Normal",
  36833. height: math.unit(9, "feet"),
  36834. default: true
  36835. },
  36836. {
  36837. name: "Macro",
  36838. height: math.unit(500, "feet")
  36839. },
  36840. {
  36841. name: "Megamacro",
  36842. height: math.unit(600, "miles")
  36843. },
  36844. {
  36845. name: "Gigamacro",
  36846. height: math.unit(30000, "miles")
  36847. },
  36848. ]
  36849. ))
  36850. characterMakers.push(() => makeCharacter(
  36851. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  36852. {
  36853. anthro: {
  36854. height: math.unit(5 + 10/12, "feet"),
  36855. weight: math.unit(100, "lb"),
  36856. name: "Anthro",
  36857. image: {
  36858. source: "./media/characters/daiki/anthro.svg",
  36859. extra: 1115/1027,
  36860. bottom: 69/1184
  36861. }
  36862. },
  36863. feral: {
  36864. height: math.unit(200, "feet"),
  36865. name: "Feral",
  36866. image: {
  36867. source: "./media/characters/daiki/feral.svg",
  36868. extra: 1256/313,
  36869. bottom: 39/1295
  36870. }
  36871. },
  36872. feralHead: {
  36873. height: math.unit(171, "feet"),
  36874. name: "Feral Head",
  36875. image: {
  36876. source: "./media/characters/daiki/feral-head.svg"
  36877. }
  36878. },
  36879. manaDragon: {
  36880. height: math.unit(170, "meters"),
  36881. name: "Mana-dragon",
  36882. image: {
  36883. source: "./media/characters/daiki/mana-dragon.svg",
  36884. extra: 763/420,
  36885. bottom: 97/860
  36886. }
  36887. },
  36888. },
  36889. [
  36890. {
  36891. name: "Normal",
  36892. height: math.unit(5 + 10/12, "feet"),
  36893. default: true
  36894. },
  36895. ]
  36896. ))
  36897. characterMakers.push(() => makeCharacter(
  36898. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  36899. {
  36900. fullyEquippedFront: {
  36901. height: math.unit(3 + 1/12, "feet"),
  36902. weight: math.unit(24, "lb"),
  36903. name: "Fully Equipped (Front)",
  36904. image: {
  36905. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  36906. extra: 687/605,
  36907. bottom: 18/705
  36908. }
  36909. },
  36910. fullyEquippedBack: {
  36911. height: math.unit(3 + 1/12, "feet"),
  36912. weight: math.unit(24, "lb"),
  36913. name: "Fully Equipped (Back)",
  36914. image: {
  36915. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  36916. extra: 689/590,
  36917. bottom: 18/707
  36918. }
  36919. },
  36920. dailyWear: {
  36921. height: math.unit(3 + 1/12, "feet"),
  36922. weight: math.unit(24, "lb"),
  36923. name: "Daily Wear",
  36924. image: {
  36925. source: "./media/characters/tea-spot/daily-wear.svg",
  36926. extra: 701/620,
  36927. bottom: 21/722
  36928. }
  36929. },
  36930. maidWork: {
  36931. height: math.unit(3 + 1/12, "feet"),
  36932. weight: math.unit(24, "lb"),
  36933. name: "Maid Work",
  36934. image: {
  36935. source: "./media/characters/tea-spot/maid-work.svg",
  36936. extra: 693/609,
  36937. bottom: 15/708
  36938. }
  36939. },
  36940. },
  36941. [
  36942. {
  36943. name: "Normal",
  36944. height: math.unit(3 + 1/12, "feet"),
  36945. default: true
  36946. },
  36947. ]
  36948. ))
  36949. characterMakers.push(() => makeCharacter(
  36950. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  36951. {
  36952. front: {
  36953. height: math.unit(175, "cm"),
  36954. weight: math.unit(75, "kg"),
  36955. name: "Front",
  36956. image: {
  36957. source: "./media/characters/chee/front.svg",
  36958. extra: 1796/1740,
  36959. bottom: 40/1836
  36960. }
  36961. },
  36962. },
  36963. [
  36964. {
  36965. name: "Micro-Micro",
  36966. height: math.unit(1, "nm")
  36967. },
  36968. {
  36969. name: "Micro-erst",
  36970. height: math.unit(1, "micrometer")
  36971. },
  36972. {
  36973. name: "Micro-er",
  36974. height: math.unit(1, "cm")
  36975. },
  36976. {
  36977. name: "Normal",
  36978. height: math.unit(175, "cm"),
  36979. default: true
  36980. },
  36981. {
  36982. name: "Macro",
  36983. height: math.unit(100, "m")
  36984. },
  36985. {
  36986. name: "Macro-er",
  36987. height: math.unit(1, "km")
  36988. },
  36989. {
  36990. name: "Macro-erst",
  36991. height: math.unit(10, "km")
  36992. },
  36993. {
  36994. name: "Macro-Macro",
  36995. height: math.unit(100, "km")
  36996. },
  36997. ]
  36998. ))
  36999. characterMakers.push(() => makeCharacter(
  37000. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  37001. {
  37002. front: {
  37003. height: math.unit(11 + 9/12, "feet"),
  37004. weight: math.unit(935, "lb"),
  37005. name: "Front",
  37006. image: {
  37007. source: "./media/characters/kingsley/front.svg",
  37008. extra: 1803/1674,
  37009. bottom: 127/1930
  37010. }
  37011. },
  37012. frontNude: {
  37013. height: math.unit(11 + 9/12, "feet"),
  37014. weight: math.unit(935, "lb"),
  37015. name: "Front (Nude)",
  37016. image: {
  37017. source: "./media/characters/kingsley/front-nude.svg",
  37018. extra: 1803/1674,
  37019. bottom: 127/1930
  37020. }
  37021. },
  37022. },
  37023. [
  37024. {
  37025. name: "Normal",
  37026. height: math.unit(11 + 9/12, "feet"),
  37027. default: true
  37028. },
  37029. ]
  37030. ))
  37031. characterMakers.push(() => makeCharacter(
  37032. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  37033. {
  37034. side: {
  37035. height: math.unit(9, "feet"),
  37036. name: "Side",
  37037. image: {
  37038. source: "./media/characters/rymel/side.svg",
  37039. extra: 792/469,
  37040. bottom: 121/913
  37041. }
  37042. },
  37043. maw: {
  37044. height: math.unit(2.4, "meters"),
  37045. name: "Maw",
  37046. image: {
  37047. source: "./media/characters/rymel/maw.svg"
  37048. }
  37049. },
  37050. },
  37051. [
  37052. {
  37053. name: "House Drake",
  37054. height: math.unit(2, "feet")
  37055. },
  37056. {
  37057. name: "Reduced",
  37058. height: math.unit(4.5, "feet")
  37059. },
  37060. {
  37061. name: "Normal",
  37062. height: math.unit(9, "feet"),
  37063. default: true
  37064. },
  37065. ]
  37066. ))
  37067. characterMakers.push(() => makeCharacter(
  37068. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  37069. {
  37070. front: {
  37071. height: math.unit(1.74, "meters"),
  37072. weight: math.unit(55, "kg"),
  37073. name: "Front",
  37074. image: {
  37075. source: "./media/characters/rubus/front.svg",
  37076. extra: 1894/1742,
  37077. bottom: 44/1938
  37078. }
  37079. },
  37080. },
  37081. [
  37082. {
  37083. name: "Normal",
  37084. height: math.unit(1.74, "meters"),
  37085. default: true
  37086. },
  37087. ]
  37088. ))
  37089. characterMakers.push(() => makeCharacter(
  37090. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  37091. {
  37092. front: {
  37093. height: math.unit(5 + 2/12, "feet"),
  37094. weight: math.unit(112, "lb"),
  37095. name: "Front",
  37096. image: {
  37097. source: "./media/characters/cassie-kingston/front.svg",
  37098. extra: 1438/1390,
  37099. bottom: 47/1485
  37100. }
  37101. },
  37102. },
  37103. [
  37104. {
  37105. name: "Normal",
  37106. height: math.unit(5 + 2/12, "feet"),
  37107. default: true
  37108. },
  37109. {
  37110. name: "Macro",
  37111. height: math.unit(128, "feet")
  37112. },
  37113. {
  37114. name: "Megamacro",
  37115. height: math.unit(2.56, "miles")
  37116. },
  37117. ]
  37118. ))
  37119. characterMakers.push(() => makeCharacter(
  37120. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  37121. {
  37122. front: {
  37123. height: math.unit(7, "feet"),
  37124. name: "Front",
  37125. image: {
  37126. source: "./media/characters/fox/front.svg",
  37127. extra: 1798/1703,
  37128. bottom: 55/1853
  37129. }
  37130. },
  37131. back: {
  37132. height: math.unit(7, "feet"),
  37133. name: "Back",
  37134. image: {
  37135. source: "./media/characters/fox/back.svg",
  37136. extra: 1748/1649,
  37137. bottom: 32/1780
  37138. }
  37139. },
  37140. head: {
  37141. height: math.unit(1.95, "feet"),
  37142. name: "Head",
  37143. image: {
  37144. source: "./media/characters/fox/head.svg"
  37145. }
  37146. },
  37147. dick: {
  37148. height: math.unit(1.33, "feet"),
  37149. name: "Dick",
  37150. image: {
  37151. source: "./media/characters/fox/dick.svg"
  37152. }
  37153. },
  37154. foot: {
  37155. height: math.unit(1, "feet"),
  37156. name: "Foot",
  37157. image: {
  37158. source: "./media/characters/fox/foot.svg"
  37159. }
  37160. },
  37161. paw: {
  37162. height: math.unit(0.92, "feet"),
  37163. name: "Paw",
  37164. image: {
  37165. source: "./media/characters/fox/paw.svg"
  37166. }
  37167. },
  37168. },
  37169. [
  37170. {
  37171. name: "Small",
  37172. height: math.unit(3, "inches")
  37173. },
  37174. {
  37175. name: "\"Realistic\"",
  37176. height: math.unit(7, "feet")
  37177. },
  37178. {
  37179. name: "Normal",
  37180. height: math.unit(150, "feet"),
  37181. default: true
  37182. },
  37183. {
  37184. name: "BIG",
  37185. height: math.unit(1200, "feet")
  37186. },
  37187. {
  37188. name: "👀",
  37189. height: math.unit(5, "miles")
  37190. },
  37191. {
  37192. name: "👀👀👀",
  37193. height: math.unit(64, "miles")
  37194. },
  37195. ]
  37196. ))
  37197. characterMakers.push(() => makeCharacter(
  37198. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  37199. {
  37200. front: {
  37201. height: math.unit(625, "feet"),
  37202. name: "Front",
  37203. image: {
  37204. source: "./media/characters/asonja-rossa/front.svg",
  37205. extra: 1833/1686,
  37206. bottom: 24/1857
  37207. }
  37208. },
  37209. back: {
  37210. height: math.unit(625, "feet"),
  37211. name: "Back",
  37212. image: {
  37213. source: "./media/characters/asonja-rossa/back.svg",
  37214. extra: 1852/1753,
  37215. bottom: 26/1878
  37216. }
  37217. },
  37218. },
  37219. [
  37220. {
  37221. name: "Macro",
  37222. height: math.unit(625, "feet"),
  37223. default: true
  37224. },
  37225. ]
  37226. ))
  37227. characterMakers.push(() => makeCharacter(
  37228. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  37229. {
  37230. side: {
  37231. height: math.unit(8, "feet"),
  37232. name: "Side",
  37233. image: {
  37234. source: "./media/characters/rezukii/side.svg",
  37235. extra: 979/542,
  37236. bottom: 87/1066
  37237. }
  37238. },
  37239. sitting: {
  37240. height: math.unit(14.6, "feet"),
  37241. name: "Sitting",
  37242. image: {
  37243. source: "./media/characters/rezukii/sitting.svg",
  37244. extra: 1023/813,
  37245. bottom: 45/1068
  37246. }
  37247. },
  37248. },
  37249. [
  37250. {
  37251. name: "Tiny",
  37252. height: math.unit(2, "feet")
  37253. },
  37254. {
  37255. name: "Smol",
  37256. height: math.unit(4, "feet")
  37257. },
  37258. {
  37259. name: "Normal",
  37260. height: math.unit(8, "feet"),
  37261. default: true
  37262. },
  37263. {
  37264. name: "Big",
  37265. height: math.unit(12, "feet")
  37266. },
  37267. {
  37268. name: "Macro",
  37269. height: math.unit(30, "feet")
  37270. },
  37271. ]
  37272. ))
  37273. characterMakers.push(() => makeCharacter(
  37274. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  37275. {
  37276. front: {
  37277. height: math.unit(14, "feet"),
  37278. weight: math.unit(9.5, "tonnes"),
  37279. name: "Front",
  37280. image: {
  37281. source: "./media/characters/dawnheart/front.svg",
  37282. extra: 2792/2675,
  37283. bottom: 64/2856
  37284. }
  37285. },
  37286. },
  37287. [
  37288. {
  37289. name: "Normal",
  37290. height: math.unit(14, "feet"),
  37291. default: true
  37292. },
  37293. ]
  37294. ))
  37295. characterMakers.push(() => makeCharacter(
  37296. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  37297. {
  37298. front: {
  37299. height: math.unit(1.7, "m"),
  37300. name: "Front",
  37301. image: {
  37302. source: "./media/characters/gladi/front.svg",
  37303. extra: 1460/1362,
  37304. bottom: 19/1479
  37305. }
  37306. },
  37307. back: {
  37308. height: math.unit(1.7, "m"),
  37309. name: "Back",
  37310. image: {
  37311. source: "./media/characters/gladi/back.svg",
  37312. extra: 1459/1357,
  37313. bottom: 12/1471
  37314. }
  37315. },
  37316. feral: {
  37317. height: math.unit(2.05, "m"),
  37318. name: "Feral",
  37319. image: {
  37320. source: "./media/characters/gladi/feral.svg",
  37321. extra: 821/557,
  37322. bottom: 91/912
  37323. }
  37324. },
  37325. },
  37326. [
  37327. {
  37328. name: "Shortest",
  37329. height: math.unit(70, "cm")
  37330. },
  37331. {
  37332. name: "Normal",
  37333. height: math.unit(1.7, "m")
  37334. },
  37335. {
  37336. name: "Macro",
  37337. height: math.unit(10, "m"),
  37338. default: true
  37339. },
  37340. {
  37341. name: "Tallest",
  37342. height: math.unit(200, "m")
  37343. },
  37344. ]
  37345. ))
  37346. characterMakers.push(() => makeCharacter(
  37347. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  37348. {
  37349. front: {
  37350. height: math.unit(5 + 7/12, "feet"),
  37351. weight: math.unit(2, "tons"),
  37352. name: "Front",
  37353. image: {
  37354. source: "./media/characters/erdno/front.svg",
  37355. extra: 1234/1129,
  37356. bottom: 35/1269
  37357. }
  37358. },
  37359. angled: {
  37360. height: math.unit(5 + 7/12, "feet"),
  37361. weight: math.unit(2, "tons"),
  37362. name: "Angled",
  37363. image: {
  37364. source: "./media/characters/erdno/angled.svg",
  37365. extra: 1185/1139,
  37366. bottom: 36/1221
  37367. }
  37368. },
  37369. side: {
  37370. height: math.unit(5 + 7/12, "feet"),
  37371. weight: math.unit(2, "tons"),
  37372. name: "Side",
  37373. image: {
  37374. source: "./media/characters/erdno/side.svg",
  37375. extra: 1191/1144,
  37376. bottom: 40/1231
  37377. }
  37378. },
  37379. back: {
  37380. height: math.unit(5 + 7/12, "feet"),
  37381. weight: math.unit(2, "tons"),
  37382. name: "Back",
  37383. image: {
  37384. source: "./media/characters/erdno/back.svg",
  37385. extra: 1202/1146,
  37386. bottom: 17/1219
  37387. }
  37388. },
  37389. frontNsfw: {
  37390. height: math.unit(5 + 7/12, "feet"),
  37391. weight: math.unit(2, "tons"),
  37392. name: "Front (NSFW)",
  37393. image: {
  37394. source: "./media/characters/erdno/front-nsfw.svg",
  37395. extra: 1234/1129,
  37396. bottom: 35/1269
  37397. }
  37398. },
  37399. angledNsfw: {
  37400. height: math.unit(5 + 7/12, "feet"),
  37401. weight: math.unit(2, "tons"),
  37402. name: "Angled (NSFW)",
  37403. image: {
  37404. source: "./media/characters/erdno/angled-nsfw.svg",
  37405. extra: 1185/1139,
  37406. bottom: 36/1221
  37407. }
  37408. },
  37409. sideNsfw: {
  37410. height: math.unit(5 + 7/12, "feet"),
  37411. weight: math.unit(2, "tons"),
  37412. name: "Side (NSFW)",
  37413. image: {
  37414. source: "./media/characters/erdno/side-nsfw.svg",
  37415. extra: 1191/1144,
  37416. bottom: 40/1231
  37417. }
  37418. },
  37419. backNsfw: {
  37420. height: math.unit(5 + 7/12, "feet"),
  37421. weight: math.unit(2, "tons"),
  37422. name: "Back (NSFW)",
  37423. image: {
  37424. source: "./media/characters/erdno/back-nsfw.svg",
  37425. extra: 1202/1146,
  37426. bottom: 17/1219
  37427. }
  37428. },
  37429. frontHyper: {
  37430. height: math.unit(5 + 7/12, "feet"),
  37431. weight: math.unit(2, "tons"),
  37432. name: "Front (Hyper)",
  37433. image: {
  37434. source: "./media/characters/erdno/front-hyper.svg",
  37435. extra: 1298/1136,
  37436. bottom: 35/1333
  37437. }
  37438. },
  37439. },
  37440. [
  37441. {
  37442. name: "Normal",
  37443. height: math.unit(5 + 7/12, "feet"),
  37444. default: true
  37445. },
  37446. {
  37447. name: "Big",
  37448. height: math.unit(5.7, "meters")
  37449. },
  37450. {
  37451. name: "Macro",
  37452. height: math.unit(5.7, "kilometers")
  37453. },
  37454. {
  37455. name: "Megamacro",
  37456. height: math.unit(5.7, "earths")
  37457. },
  37458. ]
  37459. ))
  37460. characterMakers.push(() => makeCharacter(
  37461. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  37462. {
  37463. front: {
  37464. height: math.unit(5 + 10/12, "feet"),
  37465. weight: math.unit(150, "lb"),
  37466. name: "Front",
  37467. image: {
  37468. source: "./media/characters/jamie/front.svg",
  37469. extra: 1908/1768,
  37470. bottom: 19/1927
  37471. }
  37472. },
  37473. },
  37474. [
  37475. {
  37476. name: "Minimum",
  37477. height: math.unit(2, "cm")
  37478. },
  37479. {
  37480. name: "Micro",
  37481. height: math.unit(3, "inches")
  37482. },
  37483. {
  37484. name: "Normal",
  37485. height: math.unit(5 + 10/12, "feet"),
  37486. default: true
  37487. },
  37488. {
  37489. name: "Macro",
  37490. height: math.unit(150, "feet")
  37491. },
  37492. {
  37493. name: "Megamacro",
  37494. height: math.unit(10000, "m")
  37495. },
  37496. ]
  37497. ))
  37498. characterMakers.push(() => makeCharacter(
  37499. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  37500. {
  37501. front: {
  37502. height: math.unit(2, "meters"),
  37503. weight: math.unit(100, "kg"),
  37504. name: "Front",
  37505. image: {
  37506. source: "./media/characters/shiron/front.svg",
  37507. extra: 2103/1985,
  37508. bottom: 98/2201
  37509. }
  37510. },
  37511. back: {
  37512. height: math.unit(2, "meters"),
  37513. weight: math.unit(100, "kg"),
  37514. name: "Back",
  37515. image: {
  37516. source: "./media/characters/shiron/back.svg",
  37517. extra: 2110/2015,
  37518. bottom: 89/2199
  37519. }
  37520. },
  37521. hand: {
  37522. height: math.unit(0.96, "feet"),
  37523. name: "Hand",
  37524. image: {
  37525. source: "./media/characters/shiron/hand.svg"
  37526. }
  37527. },
  37528. foot: {
  37529. height: math.unit(1.464, "feet"),
  37530. name: "Foot",
  37531. image: {
  37532. source: "./media/characters/shiron/foot.svg"
  37533. }
  37534. },
  37535. },
  37536. [
  37537. {
  37538. name: "Normal",
  37539. height: math.unit(2, "meters")
  37540. },
  37541. {
  37542. name: "Macro",
  37543. height: math.unit(500, "meters"),
  37544. default: true
  37545. },
  37546. {
  37547. name: "Megamacro",
  37548. height: math.unit(20, "km")
  37549. },
  37550. ]
  37551. ))
  37552. characterMakers.push(() => makeCharacter(
  37553. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  37554. {
  37555. front: {
  37556. height: math.unit(6, "feet"),
  37557. name: "Front",
  37558. image: {
  37559. source: "./media/characters/sam/front.svg",
  37560. extra: 849/826,
  37561. bottom: 19/868
  37562. }
  37563. },
  37564. },
  37565. [
  37566. {
  37567. name: "Normal",
  37568. height: math.unit(6, "feet"),
  37569. default: true
  37570. },
  37571. ]
  37572. ))
  37573. characterMakers.push(() => makeCharacter(
  37574. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  37575. {
  37576. front: {
  37577. height: math.unit(8 + 4/12, "feet"),
  37578. weight: math.unit(122, "kg"),
  37579. name: "Front",
  37580. image: {
  37581. source: "./media/characters/namori-kurogawa/front.svg",
  37582. extra: 1894/1576,
  37583. bottom: 34/1928
  37584. }
  37585. },
  37586. },
  37587. [
  37588. {
  37589. name: "Normal",
  37590. height: math.unit(8 + 4/12, "feet"),
  37591. default: true
  37592. },
  37593. ]
  37594. ))
  37595. characterMakers.push(() => makeCharacter(
  37596. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  37597. {
  37598. front: {
  37599. height: math.unit(9, "feet"),
  37600. weight: math.unit(621, "lb"),
  37601. name: "Front",
  37602. image: {
  37603. source: "./media/characters/unmru/front.svg",
  37604. extra: 1853/1747,
  37605. bottom: 73/1926
  37606. }
  37607. },
  37608. side: {
  37609. height: math.unit(9, "feet"),
  37610. weight: math.unit(621, "lb"),
  37611. name: "Side",
  37612. image: {
  37613. source: "./media/characters/unmru/side.svg",
  37614. extra: 1781/1671,
  37615. bottom: 127/1908
  37616. }
  37617. },
  37618. back: {
  37619. height: math.unit(9, "feet"),
  37620. weight: math.unit(621, "lb"),
  37621. name: "Back",
  37622. image: {
  37623. source: "./media/characters/unmru/back.svg",
  37624. extra: 1894/1765,
  37625. bottom: 75/1969
  37626. }
  37627. },
  37628. dick: {
  37629. height: math.unit(3, "feet"),
  37630. weight: math.unit(35, "lb"),
  37631. name: "Dick",
  37632. image: {
  37633. source: "./media/characters/unmru/dick.svg"
  37634. }
  37635. },
  37636. },
  37637. [
  37638. {
  37639. name: "Normal",
  37640. height: math.unit(9, "feet")
  37641. },
  37642. {
  37643. name: "Natural",
  37644. height: math.unit(27, "feet"),
  37645. default: true
  37646. },
  37647. {
  37648. name: "Giant",
  37649. height: math.unit(90, "feet")
  37650. },
  37651. {
  37652. name: "Kaiju",
  37653. height: math.unit(270, "feet")
  37654. },
  37655. {
  37656. name: "Macro",
  37657. height: math.unit(900, "feet")
  37658. },
  37659. {
  37660. name: "Macro+",
  37661. height: math.unit(2700, "feet")
  37662. },
  37663. {
  37664. name: "Megamacro",
  37665. height: math.unit(9000, "feet")
  37666. },
  37667. {
  37668. name: "City-Crushing",
  37669. height: math.unit(27000, "feet")
  37670. },
  37671. {
  37672. name: "Mountain-Mashing",
  37673. height: math.unit(90000, "feet")
  37674. },
  37675. {
  37676. name: "Earth-Eclipsing",
  37677. height: math.unit(2.7e8, "feet")
  37678. },
  37679. {
  37680. name: "Sol-Swallowing",
  37681. height: math.unit(9e10, "feet")
  37682. },
  37683. {
  37684. name: "Majoris-Munching",
  37685. height: math.unit(2.7e13, "feet")
  37686. },
  37687. ]
  37688. ))
  37689. characterMakers.push(() => makeCharacter(
  37690. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  37691. {
  37692. front: {
  37693. height: math.unit(1, "inch"),
  37694. name: "Front",
  37695. image: {
  37696. source: "./media/characters/squeaks-mouse/front.svg",
  37697. extra: 352/308,
  37698. bottom: 25/377
  37699. }
  37700. },
  37701. },
  37702. [
  37703. {
  37704. name: "Micro",
  37705. height: math.unit(1, "inch"),
  37706. default: true
  37707. },
  37708. ]
  37709. ))
  37710. characterMakers.push(() => makeCharacter(
  37711. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  37712. {
  37713. side: {
  37714. height: math.unit(35, "feet"),
  37715. name: "Side",
  37716. image: {
  37717. source: "./media/characters/sayko/side.svg",
  37718. extra: 1697/1021,
  37719. bottom: 82/1779
  37720. }
  37721. },
  37722. head: {
  37723. height: math.unit(16, "feet"),
  37724. name: "Head",
  37725. image: {
  37726. source: "./media/characters/sayko/head.svg"
  37727. }
  37728. },
  37729. forepaw: {
  37730. height: math.unit(7.85, "feet"),
  37731. name: "Forepaw",
  37732. image: {
  37733. source: "./media/characters/sayko/forepaw.svg"
  37734. }
  37735. },
  37736. hindpaw: {
  37737. height: math.unit(8.8, "feet"),
  37738. name: "Hindpaw",
  37739. image: {
  37740. source: "./media/characters/sayko/hindpaw.svg"
  37741. }
  37742. },
  37743. },
  37744. [
  37745. {
  37746. name: "Normal",
  37747. height: math.unit(35, "feet"),
  37748. default: true
  37749. },
  37750. {
  37751. name: "Colossus",
  37752. height: math.unit(100, "meters")
  37753. },
  37754. {
  37755. name: "\"Small\" Deity",
  37756. height: math.unit(1, "km")
  37757. },
  37758. {
  37759. name: "\"Large\" Deity",
  37760. height: math.unit(15, "km")
  37761. },
  37762. ]
  37763. ))
  37764. characterMakers.push(() => makeCharacter(
  37765. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  37766. {
  37767. front: {
  37768. height: math.unit(6, "feet"),
  37769. weight: math.unit(250, "lb"),
  37770. name: "Front",
  37771. image: {
  37772. source: "./media/characters/mukiro/front.svg",
  37773. extra: 1368/1310,
  37774. bottom: 34/1402
  37775. }
  37776. },
  37777. },
  37778. [
  37779. {
  37780. name: "Normal",
  37781. height: math.unit(6, "feet"),
  37782. default: true
  37783. },
  37784. ]
  37785. ))
  37786. characterMakers.push(() => makeCharacter(
  37787. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  37788. {
  37789. front: {
  37790. height: math.unit(12 + 4/12, "feet"),
  37791. name: "Front",
  37792. image: {
  37793. source: "./media/characters/zeph-the-tiger-god/front.svg",
  37794. extra: 1346/1311,
  37795. bottom: 65/1411
  37796. }
  37797. },
  37798. },
  37799. [
  37800. {
  37801. name: "Base",
  37802. height: math.unit(12 + 4/12, "feet"),
  37803. default: true
  37804. },
  37805. {
  37806. name: "Macro",
  37807. height: math.unit(150, "feet")
  37808. },
  37809. {
  37810. name: "Mega",
  37811. height: math.unit(2, "miles")
  37812. },
  37813. {
  37814. name: "Demi God",
  37815. height: math.unit(4, "AU")
  37816. },
  37817. {
  37818. name: "God Size",
  37819. height: math.unit(1, "universe")
  37820. },
  37821. ]
  37822. ))
  37823. characterMakers.push(() => makeCharacter(
  37824. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  37825. {
  37826. front: {
  37827. height: math.unit(3 + 3/12, "feet"),
  37828. weight: math.unit(88, "lb"),
  37829. name: "Front",
  37830. image: {
  37831. source: "./media/characters/trey/front.svg",
  37832. extra: 1815/1509,
  37833. bottom: 60/1875
  37834. }
  37835. },
  37836. },
  37837. [
  37838. {
  37839. name: "Normal",
  37840. height: math.unit(3 + 3/12, "feet"),
  37841. default: true
  37842. },
  37843. ]
  37844. ))
  37845. characterMakers.push(() => makeCharacter(
  37846. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  37847. {
  37848. front: {
  37849. height: math.unit(4, "meters"),
  37850. name: "Front",
  37851. image: {
  37852. source: "./media/characters/adelonda/front.svg",
  37853. extra: 1077/982,
  37854. bottom: 39/1116
  37855. }
  37856. },
  37857. back: {
  37858. height: math.unit(4, "meters"),
  37859. name: "Back",
  37860. image: {
  37861. source: "./media/characters/adelonda/back.svg",
  37862. extra: 1105/1003,
  37863. bottom: 25/1130
  37864. }
  37865. },
  37866. feral: {
  37867. height: math.unit(40/1.5, "meters"),
  37868. name: "Feral",
  37869. image: {
  37870. source: "./media/characters/adelonda/feral.svg",
  37871. extra: 597/271,
  37872. bottom: 387/984
  37873. }
  37874. },
  37875. },
  37876. [
  37877. {
  37878. name: "Normal",
  37879. height: math.unit(4, "meters"),
  37880. default: true
  37881. },
  37882. ]
  37883. ))
  37884. characterMakers.push(() => makeCharacter(
  37885. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  37886. {
  37887. front: {
  37888. height: math.unit(8 + 4/12, "feet"),
  37889. weight: math.unit(670, "lb"),
  37890. name: "Front",
  37891. image: {
  37892. source: "./media/characters/acadiel/front.svg",
  37893. extra: 1901/1595,
  37894. bottom: 142/2043
  37895. }
  37896. },
  37897. },
  37898. [
  37899. {
  37900. name: "Normal",
  37901. height: math.unit(8 + 4/12, "feet"),
  37902. default: true
  37903. },
  37904. {
  37905. name: "Macro",
  37906. height: math.unit(200, "feet")
  37907. },
  37908. ]
  37909. ))
  37910. characterMakers.push(() => makeCharacter(
  37911. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  37912. {
  37913. front: {
  37914. height: math.unit(6 + 2/12, "feet"),
  37915. weight: math.unit(185, "lb"),
  37916. name: "Front",
  37917. image: {
  37918. source: "./media/characters/kayne-ein/front.svg",
  37919. extra: 1780/1560,
  37920. bottom: 81/1861
  37921. }
  37922. },
  37923. },
  37924. [
  37925. {
  37926. name: "Normal",
  37927. height: math.unit(6 + 2/12, "feet"),
  37928. default: true
  37929. },
  37930. {
  37931. name: "Transformation Stage",
  37932. height: math.unit(15, "feet")
  37933. },
  37934. {
  37935. name: "Macro",
  37936. height: math.unit(150, "feet")
  37937. },
  37938. {
  37939. name: "Earth's Shadow",
  37940. height: math.unit(6200, "miles")
  37941. },
  37942. {
  37943. name: "Universal Demon",
  37944. height: math.unit(28e9, "parsecs")
  37945. },
  37946. {
  37947. name: "Multiverse God",
  37948. height: math.unit(3, "multiverses")
  37949. },
  37950. ]
  37951. ))
  37952. characterMakers.push(() => makeCharacter(
  37953. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  37954. {
  37955. front: {
  37956. height: math.unit(5 + 5/12, "feet"),
  37957. name: "Front",
  37958. image: {
  37959. source: "./media/characters/fawn/front.svg",
  37960. extra: 1873/1731,
  37961. bottom: 95/1968
  37962. }
  37963. },
  37964. back: {
  37965. height: math.unit(5 + 5/12, "feet"),
  37966. name: "Back",
  37967. image: {
  37968. source: "./media/characters/fawn/back.svg",
  37969. extra: 1813/1700,
  37970. bottom: 14/1827
  37971. }
  37972. },
  37973. hoof: {
  37974. height: math.unit(1.45, "feet"),
  37975. name: "Hoof",
  37976. image: {
  37977. source: "./media/characters/fawn/hoof.svg"
  37978. }
  37979. },
  37980. },
  37981. [
  37982. {
  37983. name: "Normal",
  37984. height: math.unit(5 + 5/12, "feet"),
  37985. default: true
  37986. },
  37987. ]
  37988. ))
  37989. characterMakers.push(() => makeCharacter(
  37990. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  37991. {
  37992. front: {
  37993. height: math.unit(2 + 5/12, "feet"),
  37994. name: "Front",
  37995. image: {
  37996. source: "./media/characters/orion/front.svg",
  37997. extra: 1366/1304,
  37998. bottom: 43/1409
  37999. }
  38000. },
  38001. paw: {
  38002. height: math.unit(0.52, "feet"),
  38003. name: "Paw",
  38004. image: {
  38005. source: "./media/characters/orion/paw.svg"
  38006. }
  38007. },
  38008. },
  38009. [
  38010. {
  38011. name: "Normal",
  38012. height: math.unit(2 + 5/12, "feet"),
  38013. default: true
  38014. },
  38015. ]
  38016. ))
  38017. characterMakers.push(() => makeCharacter(
  38018. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  38019. {
  38020. front: {
  38021. height: math.unit(5 + 10/12, "feet"),
  38022. name: "Front",
  38023. image: {
  38024. source: "./media/characters/vera/front.svg",
  38025. extra: 1680/1575,
  38026. bottom: 49/1729
  38027. }
  38028. },
  38029. back: {
  38030. height: math.unit(5 + 10/12, "feet"),
  38031. name: "Back",
  38032. image: {
  38033. source: "./media/characters/vera/back.svg",
  38034. extra: 1700/1588,
  38035. bottom: 18/1718
  38036. }
  38037. },
  38038. arcanine: {
  38039. height: math.unit(6 + 8/12, "feet"),
  38040. name: "Arcanine",
  38041. image: {
  38042. source: "./media/characters/vera/arcanine.svg",
  38043. extra: 1590/1511,
  38044. bottom: 71/1661
  38045. }
  38046. },
  38047. maw: {
  38048. height: math.unit(0.82, "feet"),
  38049. name: "Maw",
  38050. image: {
  38051. source: "./media/characters/vera/maw.svg"
  38052. }
  38053. },
  38054. mawArcanine: {
  38055. height: math.unit(0.97, "feet"),
  38056. name: "Maw (Arcanine)",
  38057. image: {
  38058. source: "./media/characters/vera/maw-arcanine.svg"
  38059. }
  38060. },
  38061. paw: {
  38062. height: math.unit(0.75, "feet"),
  38063. name: "Paw",
  38064. image: {
  38065. source: "./media/characters/vera/paw.svg"
  38066. }
  38067. },
  38068. pawprint: {
  38069. height: math.unit(0.52, "feet"),
  38070. name: "Pawprint",
  38071. image: {
  38072. source: "./media/characters/vera/pawprint.svg"
  38073. }
  38074. },
  38075. },
  38076. [
  38077. {
  38078. name: "Normal",
  38079. height: math.unit(5 + 10/12, "feet"),
  38080. default: true
  38081. },
  38082. {
  38083. name: "Macro",
  38084. height: math.unit(75, "feet")
  38085. },
  38086. ]
  38087. ))
  38088. characterMakers.push(() => makeCharacter(
  38089. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  38090. {
  38091. front: {
  38092. height: math.unit(4, "feet"),
  38093. weight: math.unit(40, "lb"),
  38094. name: "Front",
  38095. image: {
  38096. source: "./media/characters/orvan-rabbit/front.svg",
  38097. extra: 1896/1642,
  38098. bottom: 29/1925
  38099. }
  38100. },
  38101. },
  38102. [
  38103. {
  38104. name: "Normal",
  38105. height: math.unit(4, "feet"),
  38106. default: true
  38107. },
  38108. ]
  38109. ))
  38110. characterMakers.push(() => makeCharacter(
  38111. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  38112. {
  38113. front: {
  38114. height: math.unit(6, "feet"),
  38115. weight: math.unit(168, "lb"),
  38116. name: "Front",
  38117. image: {
  38118. source: "./media/characters/lisa/front.svg",
  38119. extra: 2065/1867,
  38120. bottom: 46/2111
  38121. }
  38122. },
  38123. back: {
  38124. height: math.unit(6, "feet"),
  38125. weight: math.unit(168, "lb"),
  38126. name: "Back",
  38127. image: {
  38128. source: "./media/characters/lisa/back.svg",
  38129. extra: 1982/1838,
  38130. bottom: 29/2011
  38131. }
  38132. },
  38133. maw: {
  38134. height: math.unit(0.81, "feet"),
  38135. name: "Maw",
  38136. image: {
  38137. source: "./media/characters/lisa/maw.svg"
  38138. }
  38139. },
  38140. paw: {
  38141. height: math.unit(0.9, "feet"),
  38142. name: "Paw",
  38143. image: {
  38144. source: "./media/characters/lisa/paw.svg"
  38145. }
  38146. },
  38147. caribousune: {
  38148. height: math.unit(7 + 2/12, "feet"),
  38149. weight: math.unit(268, "lb"),
  38150. name: "Caribousune",
  38151. image: {
  38152. source: "./media/characters/lisa/caribousune.svg",
  38153. extra: 1843/1633,
  38154. bottom: 29/1872
  38155. }
  38156. },
  38157. frontCaribousune: {
  38158. height: math.unit(7 + 2/12, "feet"),
  38159. weight: math.unit(268, "lb"),
  38160. name: "Front (Caribousune)",
  38161. image: {
  38162. source: "./media/characters/lisa/front-caribousune.svg",
  38163. extra: 1818/1638,
  38164. bottom: 52/1870
  38165. }
  38166. },
  38167. sideCaribousune: {
  38168. height: math.unit(7 + 2/12, "feet"),
  38169. weight: math.unit(268, "lb"),
  38170. name: "Side (Caribousune)",
  38171. image: {
  38172. source: "./media/characters/lisa/side-caribousune.svg",
  38173. extra: 1851/1635,
  38174. bottom: 16/1867
  38175. }
  38176. },
  38177. backCaribousune: {
  38178. height: math.unit(7 + 2/12, "feet"),
  38179. weight: math.unit(268, "lb"),
  38180. name: "Back (Caribousune)",
  38181. image: {
  38182. source: "./media/characters/lisa/back-caribousune.svg",
  38183. extra: 1801/1604,
  38184. bottom: 44/1845
  38185. }
  38186. },
  38187. caribou: {
  38188. height: math.unit(7 + 2/12, "feet"),
  38189. weight: math.unit(268, "lb"),
  38190. name: "Caribou",
  38191. image: {
  38192. source: "./media/characters/lisa/caribou.svg",
  38193. extra: 1843/1633,
  38194. bottom: 29/1872
  38195. }
  38196. },
  38197. frontCaribou: {
  38198. height: math.unit(7 + 2/12, "feet"),
  38199. weight: math.unit(268, "lb"),
  38200. name: "Front (Caribou)",
  38201. image: {
  38202. source: "./media/characters/lisa/front-caribou.svg",
  38203. extra: 1818/1638,
  38204. bottom: 52/1870
  38205. }
  38206. },
  38207. sideCaribou: {
  38208. height: math.unit(7 + 2/12, "feet"),
  38209. weight: math.unit(268, "lb"),
  38210. name: "Side (Caribou)",
  38211. image: {
  38212. source: "./media/characters/lisa/side-caribou.svg",
  38213. extra: 1851/1635,
  38214. bottom: 16/1867
  38215. }
  38216. },
  38217. backCaribou: {
  38218. height: math.unit(7 + 2/12, "feet"),
  38219. weight: math.unit(268, "lb"),
  38220. name: "Back (Caribou)",
  38221. image: {
  38222. source: "./media/characters/lisa/back-caribou.svg",
  38223. extra: 1801/1604,
  38224. bottom: 44/1845
  38225. }
  38226. },
  38227. mawCaribou: {
  38228. height: math.unit(1.45, "feet"),
  38229. name: "Maw (Caribou)",
  38230. image: {
  38231. source: "./media/characters/lisa/maw-caribou.svg"
  38232. }
  38233. },
  38234. mawCaribousune: {
  38235. height: math.unit(1.45, "feet"),
  38236. name: "Maw (Caribousune)",
  38237. image: {
  38238. source: "./media/characters/lisa/maw-caribousune.svg"
  38239. }
  38240. },
  38241. pawCaribousune: {
  38242. height: math.unit(1.61, "feet"),
  38243. name: "Paw (Caribou)",
  38244. image: {
  38245. source: "./media/characters/lisa/paw-caribousune.svg"
  38246. }
  38247. },
  38248. },
  38249. [
  38250. {
  38251. name: "Normal",
  38252. height: math.unit(6, "feet")
  38253. },
  38254. {
  38255. name: "God Size",
  38256. height: math.unit(72, "feet"),
  38257. default: true
  38258. },
  38259. {
  38260. name: "Towering",
  38261. height: math.unit(288, "feet")
  38262. },
  38263. {
  38264. name: "City Size",
  38265. height: math.unit(48384, "feet")
  38266. },
  38267. {
  38268. name: "Continental",
  38269. height: math.unit(4200, "miles")
  38270. },
  38271. {
  38272. name: "Planet Eater",
  38273. height: math.unit(42, "earths")
  38274. },
  38275. {
  38276. name: "Star Swallower",
  38277. height: math.unit(42, "solarradii")
  38278. },
  38279. {
  38280. name: "System Swallower",
  38281. height: math.unit(84000, "AU")
  38282. },
  38283. {
  38284. name: "Galaxy Gobbler",
  38285. height: math.unit(42, "galaxies")
  38286. },
  38287. {
  38288. name: "Universe Devourer",
  38289. height: math.unit(42, "universes")
  38290. },
  38291. {
  38292. name: "Multiverse Muncher",
  38293. height: math.unit(42, "multiverses")
  38294. },
  38295. ]
  38296. ))
  38297. characterMakers.push(() => makeCharacter(
  38298. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  38299. {
  38300. front: {
  38301. height: math.unit(36, "feet"),
  38302. name: "Front",
  38303. image: {
  38304. source: "./media/characters/shadow-rat/front.svg",
  38305. extra: 1845/1758,
  38306. bottom: 83/1928
  38307. }
  38308. },
  38309. },
  38310. [
  38311. {
  38312. name: "Macro",
  38313. height: math.unit(36, "feet"),
  38314. default: true
  38315. },
  38316. ]
  38317. ))
  38318. characterMakers.push(() => makeCharacter(
  38319. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  38320. {
  38321. side: {
  38322. height: math.unit(8, "feet"),
  38323. weight: math.unit(2630, "lb"),
  38324. name: "Side",
  38325. image: {
  38326. source: "./media/characters/torallia/side.svg",
  38327. extra: 2164/2021,
  38328. bottom: 371/2535
  38329. }
  38330. },
  38331. },
  38332. [
  38333. {
  38334. name: "Mortal Interaction",
  38335. height: math.unit(8, "feet")
  38336. },
  38337. {
  38338. name: "Natural",
  38339. height: math.unit(24, "feet"),
  38340. default: true
  38341. },
  38342. {
  38343. name: "Giant",
  38344. height: math.unit(80, "feet")
  38345. },
  38346. {
  38347. name: "Kaiju",
  38348. height: math.unit(240, "feet")
  38349. },
  38350. {
  38351. name: "Macro",
  38352. height: math.unit(800, "feet")
  38353. },
  38354. {
  38355. name: "Macro+",
  38356. height: math.unit(2400, "feet")
  38357. },
  38358. {
  38359. name: "Macro++",
  38360. height: math.unit(8000, "feet")
  38361. },
  38362. {
  38363. name: "City-Crushing",
  38364. height: math.unit(24000, "feet")
  38365. },
  38366. {
  38367. name: "Mountain-Mashing",
  38368. height: math.unit(80000, "feet")
  38369. },
  38370. {
  38371. name: "District Demolisher",
  38372. height: math.unit(240000, "feet")
  38373. },
  38374. {
  38375. name: "Tri-County Terror",
  38376. height: math.unit(800000, "feet")
  38377. },
  38378. {
  38379. name: "State Smasher",
  38380. height: math.unit(2.4e6, "feet")
  38381. },
  38382. {
  38383. name: "Nation Nemesis",
  38384. height: math.unit(8e6, "feet")
  38385. },
  38386. {
  38387. name: "Continent Cracker",
  38388. height: math.unit(2.4e7, "feet")
  38389. },
  38390. {
  38391. name: "Planet-Pillaging",
  38392. height: math.unit(8e7, "feet")
  38393. },
  38394. {
  38395. name: "Earth-Eclipsing",
  38396. height: math.unit(2.4e8, "feet")
  38397. },
  38398. {
  38399. name: "Jovian-Jostling",
  38400. height: math.unit(8e8, "feet")
  38401. },
  38402. {
  38403. name: "Gas Giant Gulper",
  38404. height: math.unit(2.4e9, "feet")
  38405. },
  38406. {
  38407. name: "Astral Annihilator",
  38408. height: math.unit(8e9, "feet")
  38409. },
  38410. {
  38411. name: "Celestial Conqueror",
  38412. height: math.unit(2.4e10, "feet")
  38413. },
  38414. {
  38415. name: "Sol-Swallowing",
  38416. height: math.unit(8e10, "feet")
  38417. },
  38418. {
  38419. name: "Hunter of the Heavens",
  38420. height: math.unit(2.4e13, "feet")
  38421. },
  38422. ]
  38423. ))
  38424. characterMakers.push(() => makeCharacter(
  38425. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  38426. {
  38427. front: {
  38428. height: math.unit(6 + 8/12, "feet"),
  38429. name: "Front",
  38430. image: {
  38431. source: "./media/characters/rebecca-pawlson/front.svg",
  38432. extra: 1737/1596,
  38433. bottom: 107/1844
  38434. }
  38435. },
  38436. back: {
  38437. height: math.unit(6 + 8/12, "feet"),
  38438. name: "Back",
  38439. image: {
  38440. source: "./media/characters/rebecca-pawlson/back.svg",
  38441. extra: 1702/1523,
  38442. bottom: 86/1788
  38443. }
  38444. },
  38445. },
  38446. [
  38447. {
  38448. name: "Normal",
  38449. height: math.unit(6 + 8/12, "feet")
  38450. },
  38451. {
  38452. name: "Mini Macro",
  38453. height: math.unit(10, "feet"),
  38454. default: true
  38455. },
  38456. {
  38457. name: "Macro",
  38458. height: math.unit(100, "feet")
  38459. },
  38460. {
  38461. name: "Mega Macro",
  38462. height: math.unit(2500, "feet")
  38463. },
  38464. {
  38465. name: "Giga Macro",
  38466. height: math.unit(50, "miles")
  38467. },
  38468. ]
  38469. ))
  38470. characterMakers.push(() => makeCharacter(
  38471. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  38472. {
  38473. front: {
  38474. height: math.unit(7 + 6/12, "feet"),
  38475. weight: math.unit(600, "lb"),
  38476. name: "Front",
  38477. image: {
  38478. source: "./media/characters/moxie-nova/front.svg",
  38479. extra: 1734/1652,
  38480. bottom: 41/1775
  38481. }
  38482. },
  38483. },
  38484. [
  38485. {
  38486. name: "Normal",
  38487. height: math.unit(7 + 6/12, "feet"),
  38488. default: true
  38489. },
  38490. ]
  38491. ))
  38492. characterMakers.push(() => makeCharacter(
  38493. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  38494. {
  38495. goat: {
  38496. height: math.unit(4, "feet"),
  38497. weight: math.unit(180, "lb"),
  38498. name: "Goat",
  38499. image: {
  38500. source: "./media/characters/tiffany/goat.svg",
  38501. extra: 1845/1595,
  38502. bottom: 106/1951
  38503. }
  38504. },
  38505. front: {
  38506. height: math.unit(5, "feet"),
  38507. weight: math.unit(150, "lb"),
  38508. name: "Foxcoon",
  38509. image: {
  38510. source: "./media/characters/tiffany/foxcoon.svg",
  38511. extra: 1941/1845,
  38512. bottom: 58/1999
  38513. }
  38514. },
  38515. },
  38516. [
  38517. {
  38518. name: "Normal",
  38519. height: math.unit(5, "feet"),
  38520. default: true
  38521. },
  38522. ]
  38523. ))
  38524. characterMakers.push(() => makeCharacter(
  38525. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  38526. {
  38527. front: {
  38528. height: math.unit(8, "feet"),
  38529. weight: math.unit(300, "lb"),
  38530. name: "Front",
  38531. image: {
  38532. source: "./media/characters/raxinath/front.svg",
  38533. extra: 1407/1309,
  38534. bottom: 39/1446
  38535. }
  38536. },
  38537. back: {
  38538. height: math.unit(8, "feet"),
  38539. weight: math.unit(300, "lb"),
  38540. name: "Back",
  38541. image: {
  38542. source: "./media/characters/raxinath/back.svg",
  38543. extra: 1405/1315,
  38544. bottom: 9/1414
  38545. }
  38546. },
  38547. },
  38548. [
  38549. {
  38550. name: "Speck",
  38551. height: math.unit(0.5, "nm")
  38552. },
  38553. {
  38554. name: "Micro",
  38555. height: math.unit(3, "inches")
  38556. },
  38557. {
  38558. name: "Kobold",
  38559. height: math.unit(3, "feet")
  38560. },
  38561. {
  38562. name: "Normal",
  38563. height: math.unit(8, "feet"),
  38564. default: true
  38565. },
  38566. {
  38567. name: "Giant",
  38568. height: math.unit(50, "feet")
  38569. },
  38570. {
  38571. name: "Macro",
  38572. height: math.unit(1000, "feet")
  38573. },
  38574. {
  38575. name: "Megamacro",
  38576. height: math.unit(1, "mile")
  38577. },
  38578. ]
  38579. ))
  38580. characterMakers.push(() => makeCharacter(
  38581. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  38582. {
  38583. front: {
  38584. height: math.unit(10, "feet"),
  38585. weight: math.unit(1442, "lb"),
  38586. name: "Front",
  38587. image: {
  38588. source: "./media/characters/mal-dragon/front.svg",
  38589. extra: 1515/1444,
  38590. bottom: 113/1628
  38591. }
  38592. },
  38593. back: {
  38594. height: math.unit(10, "feet"),
  38595. weight: math.unit(1442, "lb"),
  38596. name: "Back",
  38597. image: {
  38598. source: "./media/characters/mal-dragon/back.svg",
  38599. extra: 1527/1434,
  38600. bottom: 25/1552
  38601. }
  38602. },
  38603. },
  38604. [
  38605. {
  38606. name: "Mortal Interaction",
  38607. height: math.unit(10, "feet"),
  38608. default: true
  38609. },
  38610. {
  38611. name: "Large",
  38612. height: math.unit(30, "feet")
  38613. },
  38614. {
  38615. name: "Kaiju",
  38616. height: math.unit(300, "feet")
  38617. },
  38618. {
  38619. name: "Megamacro",
  38620. height: math.unit(10000, "feet")
  38621. },
  38622. {
  38623. name: "Continent Cracker",
  38624. height: math.unit(30000000, "feet")
  38625. },
  38626. {
  38627. name: "Sol-Swallowing",
  38628. height: math.unit(1e11, "feet")
  38629. },
  38630. {
  38631. name: "Light Universal",
  38632. height: math.unit(5, "universes")
  38633. },
  38634. {
  38635. name: "Universe Atoms",
  38636. height: math.unit(1.829e9, "universes")
  38637. },
  38638. {
  38639. name: "Light Multiversal",
  38640. height: math.unit(5, "multiverses")
  38641. },
  38642. {
  38643. name: "Multiverse Atoms",
  38644. height: math.unit(1.829e9, "multiverses")
  38645. },
  38646. {
  38647. name: "Fabric of Time",
  38648. height: math.unit(1e262, "multiverses")
  38649. },
  38650. ]
  38651. ))
  38652. characterMakers.push(() => makeCharacter(
  38653. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  38654. {
  38655. front: {
  38656. height: math.unit(9, "feet"),
  38657. weight: math.unit(1050, "lb"),
  38658. name: "Front",
  38659. image: {
  38660. source: "./media/characters/tabitha/front.svg",
  38661. extra: 2083/1994,
  38662. bottom: 68/2151
  38663. }
  38664. },
  38665. },
  38666. [
  38667. {
  38668. name: "Baseline",
  38669. height: math.unit(9, "feet"),
  38670. default: true
  38671. },
  38672. {
  38673. name: "Giant",
  38674. height: math.unit(90, "feet")
  38675. },
  38676. {
  38677. name: "Macro",
  38678. height: math.unit(900, "feet")
  38679. },
  38680. {
  38681. name: "Megamacro",
  38682. height: math.unit(9000, "feet")
  38683. },
  38684. {
  38685. name: "City-Crushing",
  38686. height: math.unit(27000, "feet")
  38687. },
  38688. {
  38689. name: "Mountain-Mashing",
  38690. height: math.unit(90000, "feet")
  38691. },
  38692. {
  38693. name: "Nation Nemesis",
  38694. height: math.unit(9e6, "feet")
  38695. },
  38696. {
  38697. name: "Continent Cracker",
  38698. height: math.unit(27e6, "feet")
  38699. },
  38700. {
  38701. name: "Earth-Eclipsing",
  38702. height: math.unit(2.7e8, "feet")
  38703. },
  38704. {
  38705. name: "Gas Giant Gulper",
  38706. height: math.unit(2.7e9, "feet")
  38707. },
  38708. {
  38709. name: "Sol-Swallowing",
  38710. height: math.unit(9e10, "feet")
  38711. },
  38712. {
  38713. name: "Galaxy Gulper",
  38714. height: math.unit(9, "galaxies")
  38715. },
  38716. {
  38717. name: "Cosmos Churner",
  38718. height: math.unit(9, "universes")
  38719. },
  38720. ]
  38721. ))
  38722. characterMakers.push(() => makeCharacter(
  38723. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  38724. {
  38725. front: {
  38726. height: math.unit(160, "cm"),
  38727. weight: math.unit(55, "kg"),
  38728. name: "Front",
  38729. image: {
  38730. source: "./media/characters/tow/front.svg",
  38731. extra: 1751/1722,
  38732. bottom: 74/1825
  38733. }
  38734. },
  38735. },
  38736. [
  38737. {
  38738. name: "Norm",
  38739. height: math.unit(160, "cm")
  38740. },
  38741. {
  38742. name: "Casual",
  38743. height: math.unit(3200, "m"),
  38744. default: true
  38745. },
  38746. {
  38747. name: "Show-Off",
  38748. height: math.unit(160, "km")
  38749. },
  38750. ]
  38751. ))
  38752. characterMakers.push(() => makeCharacter(
  38753. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  38754. {
  38755. front: {
  38756. height: math.unit(7 + 11/12, "feet"),
  38757. weight: math.unit(342.8, "lb"),
  38758. name: "Front",
  38759. image: {
  38760. source: "./media/characters/vivian-orca-dragon/front.svg",
  38761. extra: 1890/1865,
  38762. bottom: 28/1918
  38763. }
  38764. },
  38765. },
  38766. [
  38767. {
  38768. name: "Micro",
  38769. height: math.unit(5, "inches")
  38770. },
  38771. {
  38772. name: "Normal",
  38773. height: math.unit(7 + 11/12, "feet"),
  38774. default: true
  38775. },
  38776. {
  38777. name: "Macro",
  38778. height: math.unit(395 + 7/12, "feet")
  38779. },
  38780. ]
  38781. ))
  38782. characterMakers.push(() => makeCharacter(
  38783. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  38784. {
  38785. side: {
  38786. height: math.unit(10, "feet"),
  38787. weight: math.unit(1442, "lb"),
  38788. name: "Side",
  38789. image: {
  38790. source: "./media/characters/lotherakon/side.svg",
  38791. extra: 1604/1497,
  38792. bottom: 89/1693
  38793. }
  38794. },
  38795. },
  38796. [
  38797. {
  38798. name: "Mortal Interaction",
  38799. height: math.unit(10, "feet")
  38800. },
  38801. {
  38802. name: "Large",
  38803. height: math.unit(30, "feet"),
  38804. default: true
  38805. },
  38806. {
  38807. name: "Giant",
  38808. height: math.unit(100, "feet")
  38809. },
  38810. {
  38811. name: "Kaiju",
  38812. height: math.unit(300, "feet")
  38813. },
  38814. {
  38815. name: "Macro",
  38816. height: math.unit(1000, "feet")
  38817. },
  38818. {
  38819. name: "Macro+",
  38820. height: math.unit(3000, "feet")
  38821. },
  38822. {
  38823. name: "Megamacro",
  38824. height: math.unit(10000, "feet")
  38825. },
  38826. {
  38827. name: "City-Crushing",
  38828. height: math.unit(30000, "feet")
  38829. },
  38830. {
  38831. name: "Continent Cracker",
  38832. height: math.unit(30e6, "feet")
  38833. },
  38834. {
  38835. name: "Earth Eclipsing",
  38836. height: math.unit(3e8, "feet")
  38837. },
  38838. {
  38839. name: "Gas Giant Gulper",
  38840. height: math.unit(3e9, "feet")
  38841. },
  38842. {
  38843. name: "Sol-Swallowing",
  38844. height: math.unit(1e11, "feet")
  38845. },
  38846. {
  38847. name: "System Swallower",
  38848. height: math.unit(3e14, "feet")
  38849. },
  38850. {
  38851. name: "Galaxy Gulper",
  38852. height: math.unit(10, "galaxies")
  38853. },
  38854. {
  38855. name: "Light Universal",
  38856. height: math.unit(5, "universes")
  38857. },
  38858. {
  38859. name: "Universe Palm",
  38860. height: math.unit(20, "universes")
  38861. },
  38862. {
  38863. name: "Light Multiversal",
  38864. height: math.unit(5, "multiverses")
  38865. },
  38866. {
  38867. name: "Multiverse Palm",
  38868. height: math.unit(20, "multiverses")
  38869. },
  38870. {
  38871. name: "Inferno Incarnate",
  38872. height: math.unit(1e7, "multiverses")
  38873. },
  38874. ]
  38875. ))
  38876. characterMakers.push(() => makeCharacter(
  38877. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  38878. {
  38879. front: {
  38880. height: math.unit(8, "feet"),
  38881. weight: math.unit(1200, "lb"),
  38882. name: "Front",
  38883. image: {
  38884. source: "./media/characters/malithee/front.svg",
  38885. extra: 1675/1640,
  38886. bottom: 162/1837
  38887. }
  38888. },
  38889. },
  38890. [
  38891. {
  38892. name: "Mortal Interaction",
  38893. height: math.unit(8, "feet"),
  38894. default: true
  38895. },
  38896. {
  38897. name: "Large",
  38898. height: math.unit(24, "feet")
  38899. },
  38900. {
  38901. name: "Kaiju",
  38902. height: math.unit(240, "feet")
  38903. },
  38904. {
  38905. name: "Megamacro",
  38906. height: math.unit(8000, "feet")
  38907. },
  38908. {
  38909. name: "Continent Cracker",
  38910. height: math.unit(24e6, "feet")
  38911. },
  38912. {
  38913. name: "Earth-Eclipsing",
  38914. height: math.unit(2.4e8, "feet")
  38915. },
  38916. {
  38917. name: "Sol-Swallowing",
  38918. height: math.unit(8e10, "feet")
  38919. },
  38920. {
  38921. name: "Galaxy Gulper",
  38922. height: math.unit(8, "galaxies")
  38923. },
  38924. {
  38925. name: "Light Universal",
  38926. height: math.unit(4, "universes")
  38927. },
  38928. {
  38929. name: "Universe Atoms",
  38930. height: math.unit(1.829e9, "universes")
  38931. },
  38932. {
  38933. name: "Light Multiversal",
  38934. height: math.unit(4, "multiverses")
  38935. },
  38936. {
  38937. name: "Multiverse Atoms",
  38938. height: math.unit(1.829e9, "multiverses")
  38939. },
  38940. {
  38941. name: "Nigh-Omnipresence",
  38942. height: math.unit(8e261, "multiverses")
  38943. },
  38944. ]
  38945. ))
  38946. characterMakers.push(() => makeCharacter(
  38947. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  38948. {
  38949. front: {
  38950. height: math.unit(10, "feet"),
  38951. weight: math.unit(1500, "lb"),
  38952. name: "Front",
  38953. image: {
  38954. source: "./media/characters/miles-thestia/front.svg",
  38955. extra: 1812/1727,
  38956. bottom: 86/1898
  38957. }
  38958. },
  38959. back: {
  38960. height: math.unit(10, "feet"),
  38961. weight: math.unit(1500, "lb"),
  38962. name: "Back",
  38963. image: {
  38964. source: "./media/characters/miles-thestia/back.svg",
  38965. extra: 1799/1690,
  38966. bottom: 47/1846
  38967. }
  38968. },
  38969. frontNsfw: {
  38970. height: math.unit(10, "feet"),
  38971. weight: math.unit(1500, "lb"),
  38972. name: "Front (NSFW)",
  38973. image: {
  38974. source: "./media/characters/miles-thestia/front-nsfw.svg",
  38975. extra: 1812/1727,
  38976. bottom: 86/1898
  38977. }
  38978. },
  38979. },
  38980. [
  38981. {
  38982. name: "Mini-Macro",
  38983. height: math.unit(10, "feet"),
  38984. default: true
  38985. },
  38986. ]
  38987. ))
  38988. characterMakers.push(() => makeCharacter(
  38989. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  38990. {
  38991. front: {
  38992. height: math.unit(25, "feet"),
  38993. name: "Front",
  38994. image: {
  38995. source: "./media/characters/titan-s-wulf/front.svg",
  38996. extra: 1560/1484,
  38997. bottom: 76/1636
  38998. }
  38999. },
  39000. },
  39001. [
  39002. {
  39003. name: "Smallest",
  39004. height: math.unit(25, "feet"),
  39005. default: true
  39006. },
  39007. {
  39008. name: "Normal",
  39009. height: math.unit(200, "feet")
  39010. },
  39011. {
  39012. name: "Macro",
  39013. height: math.unit(200000, "feet")
  39014. },
  39015. {
  39016. name: "Multiversal Original",
  39017. height: math.unit(10000, "multiverses")
  39018. },
  39019. ]
  39020. ))
  39021. characterMakers.push(() => makeCharacter(
  39022. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  39023. {
  39024. front: {
  39025. height: math.unit(8, "feet"),
  39026. weight: math.unit(553, "lb"),
  39027. name: "Front",
  39028. image: {
  39029. source: "./media/characters/tawendeh/front.svg",
  39030. extra: 2365/2268,
  39031. bottom: 83/2448
  39032. }
  39033. },
  39034. frontClothed: {
  39035. height: math.unit(8, "feet"),
  39036. weight: math.unit(553, "lb"),
  39037. name: "Front (Clothed)",
  39038. image: {
  39039. source: "./media/characters/tawendeh/front-clothed.svg",
  39040. extra: 2365/2268,
  39041. bottom: 83/2448
  39042. }
  39043. },
  39044. back: {
  39045. height: math.unit(8, "feet"),
  39046. weight: math.unit(553, "lb"),
  39047. name: "Back",
  39048. image: {
  39049. source: "./media/characters/tawendeh/back.svg",
  39050. extra: 2397/2294,
  39051. bottom: 42/2439
  39052. }
  39053. },
  39054. },
  39055. [
  39056. {
  39057. name: "Mortal Interaction",
  39058. height: math.unit(8, "feet"),
  39059. default: true
  39060. },
  39061. {
  39062. name: "Giant",
  39063. height: math.unit(80, "feet")
  39064. },
  39065. {
  39066. name: "Macro",
  39067. height: math.unit(800, "feet")
  39068. },
  39069. {
  39070. name: "Megamacro",
  39071. height: math.unit(8000, "feet")
  39072. },
  39073. {
  39074. name: "City-Crushing",
  39075. height: math.unit(24000, "feet")
  39076. },
  39077. {
  39078. name: "Mountain-Mashing",
  39079. height: math.unit(80000, "feet")
  39080. },
  39081. {
  39082. name: "Nation Nemesis",
  39083. height: math.unit(8e6, "feet")
  39084. },
  39085. {
  39086. name: "Continent Cracker",
  39087. height: math.unit(24e6, "feet")
  39088. },
  39089. {
  39090. name: "Earth-Eclipsing",
  39091. height: math.unit(2.4e8, "feet")
  39092. },
  39093. {
  39094. name: "Gas Giant Gulper",
  39095. height: math.unit(2.4e9, "feet")
  39096. },
  39097. {
  39098. name: "Sol-Swallowing",
  39099. height: math.unit(8e10, "feet")
  39100. },
  39101. {
  39102. name: "Galaxy Gulper",
  39103. height: math.unit(8, "galaxies")
  39104. },
  39105. {
  39106. name: "Cosmos Churner",
  39107. height: math.unit(8, "universes")
  39108. },
  39109. {
  39110. name: "Omnipotent Otter",
  39111. height: math.unit(80, "universes")
  39112. },
  39113. ]
  39114. ))
  39115. characterMakers.push(() => makeCharacter(
  39116. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  39117. {
  39118. front: {
  39119. height: math.unit(2.6, "meters"),
  39120. weight: math.unit(900, "kg"),
  39121. name: "Front",
  39122. image: {
  39123. source: "./media/characters/neesha/front.svg",
  39124. extra: 1803/1653,
  39125. bottom: 128/1931
  39126. }
  39127. },
  39128. },
  39129. [
  39130. {
  39131. name: "Normal",
  39132. height: math.unit(2.6, "meters"),
  39133. default: true
  39134. },
  39135. {
  39136. name: "Macro",
  39137. height: math.unit(50, "meters")
  39138. },
  39139. ]
  39140. ))
  39141. characterMakers.push(() => makeCharacter(
  39142. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  39143. {
  39144. front: {
  39145. height: math.unit(5, "feet"),
  39146. weight: math.unit(185, "lb"),
  39147. name: "Front",
  39148. image: {
  39149. source: "./media/characters/kyera/front.svg",
  39150. extra: 1875/1790,
  39151. bottom: 96/1971
  39152. }
  39153. },
  39154. },
  39155. [
  39156. {
  39157. name: "Normal",
  39158. height: math.unit(5, "feet"),
  39159. default: true
  39160. },
  39161. ]
  39162. ))
  39163. characterMakers.push(() => makeCharacter(
  39164. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  39165. {
  39166. front: {
  39167. height: math.unit(7 + 6/12, "feet"),
  39168. weight: math.unit(540, "lb"),
  39169. name: "Front",
  39170. image: {
  39171. source: "./media/characters/yuko/front.svg",
  39172. extra: 1282/1222,
  39173. bottom: 101/1383
  39174. }
  39175. },
  39176. frontClothed: {
  39177. height: math.unit(7 + 6/12, "feet"),
  39178. weight: math.unit(540, "lb"),
  39179. name: "Front (Clothed)",
  39180. image: {
  39181. source: "./media/characters/yuko/front-clothed.svg",
  39182. extra: 1282/1222,
  39183. bottom: 101/1383
  39184. }
  39185. },
  39186. },
  39187. [
  39188. {
  39189. name: "Normal",
  39190. height: math.unit(7 + 6/12, "feet"),
  39191. default: true
  39192. },
  39193. {
  39194. name: "Macro",
  39195. height: math.unit(26 + 9/12, "feet")
  39196. },
  39197. {
  39198. name: "Megamacro",
  39199. height: math.unit(300, "feet")
  39200. },
  39201. {
  39202. name: "Gigamacro",
  39203. height: math.unit(5000, "feet")
  39204. },
  39205. {
  39206. name: "Planetary",
  39207. height: math.unit(10000, "miles")
  39208. },
  39209. ]
  39210. ))
  39211. characterMakers.push(() => makeCharacter(
  39212. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  39213. {
  39214. front: {
  39215. height: math.unit(8 + 2/12, "feet"),
  39216. weight: math.unit(600, "lb"),
  39217. name: "Front",
  39218. image: {
  39219. source: "./media/characters/deam-nitrel/front.svg",
  39220. extra: 1308/1234,
  39221. bottom: 125/1433
  39222. }
  39223. },
  39224. },
  39225. [
  39226. {
  39227. name: "Normal",
  39228. height: math.unit(8 + 2/12, "feet"),
  39229. default: true
  39230. },
  39231. ]
  39232. ))
  39233. characterMakers.push(() => makeCharacter(
  39234. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  39235. {
  39236. front: {
  39237. height: math.unit(6.1, "feet"),
  39238. weight: math.unit(180, "lb"),
  39239. name: "Front",
  39240. image: {
  39241. source: "./media/characters/skyress/front.svg",
  39242. extra: 1045/915,
  39243. bottom: 28/1073
  39244. }
  39245. },
  39246. maw: {
  39247. height: math.unit(1, "feet"),
  39248. name: "Maw",
  39249. image: {
  39250. source: "./media/characters/skyress/maw.svg"
  39251. }
  39252. },
  39253. },
  39254. [
  39255. {
  39256. name: "Normal",
  39257. height: math.unit(6.1, "feet"),
  39258. default: true
  39259. },
  39260. {
  39261. name: "Macro",
  39262. height: math.unit(200, "feet")
  39263. },
  39264. ]
  39265. ))
  39266. characterMakers.push(() => makeCharacter(
  39267. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  39268. {
  39269. front: {
  39270. height: math.unit(4 + 2/12, "feet"),
  39271. weight: math.unit(40, "kg"),
  39272. name: "Front",
  39273. image: {
  39274. source: "./media/characters/amethyst-jones/front.svg",
  39275. extra: 1220/1150,
  39276. bottom: 101/1321
  39277. }
  39278. },
  39279. },
  39280. [
  39281. {
  39282. name: "Normal",
  39283. height: math.unit(4 + 2/12, "feet"),
  39284. default: true
  39285. },
  39286. ]
  39287. ))
  39288. characterMakers.push(() => makeCharacter(
  39289. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  39290. {
  39291. front: {
  39292. height: math.unit(1.7, "m"),
  39293. weight: math.unit(135, "lb"),
  39294. name: "Front",
  39295. image: {
  39296. source: "./media/characters/jade/front.svg",
  39297. extra: 1818/1767,
  39298. bottom: 32/1850
  39299. }
  39300. },
  39301. back: {
  39302. height: math.unit(1.7, "m"),
  39303. weight: math.unit(135, "lb"),
  39304. name: "Back",
  39305. image: {
  39306. source: "./media/characters/jade/back.svg",
  39307. extra: 1869/1809,
  39308. bottom: 35/1904
  39309. }
  39310. },
  39311. hand: {
  39312. height: math.unit(0.24, "m"),
  39313. name: "Hand",
  39314. image: {
  39315. source: "./media/characters/jade/hand.svg"
  39316. }
  39317. },
  39318. foot: {
  39319. height: math.unit(0.263, "m"),
  39320. name: "Foot",
  39321. image: {
  39322. source: "./media/characters/jade/foot.svg"
  39323. }
  39324. },
  39325. dick: {
  39326. height: math.unit(0.47, "m"),
  39327. name: "Dick",
  39328. image: {
  39329. source: "./media/characters/jade/dick.svg"
  39330. }
  39331. },
  39332. },
  39333. [
  39334. {
  39335. name: "Micro",
  39336. height: math.unit(22, "cm")
  39337. },
  39338. {
  39339. name: "Normal",
  39340. height: math.unit(1.7, "m"),
  39341. default: true
  39342. },
  39343. {
  39344. name: "Macro",
  39345. height: math.unit(152, "m")
  39346. },
  39347. ]
  39348. ))
  39349. characterMakers.push(() => makeCharacter(
  39350. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  39351. {
  39352. front: {
  39353. height: math.unit(100, "miles"),
  39354. weight: math.unit(20000, "tons"),
  39355. name: "Front",
  39356. image: {
  39357. source: "./media/characters/cookie/front.svg",
  39358. extra: 1125/1070,
  39359. bottom: 30/1155
  39360. }
  39361. },
  39362. },
  39363. [
  39364. {
  39365. name: "Big",
  39366. height: math.unit(50, "feet")
  39367. },
  39368. {
  39369. name: "Macro",
  39370. height: math.unit(100, "miles"),
  39371. default: true
  39372. },
  39373. {
  39374. name: "Megamacro",
  39375. height: math.unit(90000, "miles")
  39376. },
  39377. ]
  39378. ))
  39379. characterMakers.push(() => makeCharacter(
  39380. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  39381. {
  39382. front: {
  39383. height: math.unit(6, "feet"),
  39384. weight: math.unit(145, "lb"),
  39385. name: "Front",
  39386. image: {
  39387. source: "./media/characters/farzian/front.svg",
  39388. extra: 1902/1693,
  39389. bottom: 108/2010
  39390. }
  39391. },
  39392. },
  39393. [
  39394. {
  39395. name: "Macro",
  39396. height: math.unit(500, "feet"),
  39397. default: true
  39398. },
  39399. ]
  39400. ))
  39401. characterMakers.push(() => makeCharacter(
  39402. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  39403. {
  39404. front: {
  39405. height: math.unit(3 + 6/12, "feet"),
  39406. weight: math.unit(50, "lb"),
  39407. name: "Front",
  39408. image: {
  39409. source: "./media/characters/kimberly-tilson/front.svg",
  39410. extra: 1400/1322,
  39411. bottom: 36/1436
  39412. }
  39413. },
  39414. back: {
  39415. height: math.unit(3 + 6/12, "feet"),
  39416. weight: math.unit(50, "lb"),
  39417. name: "Back",
  39418. image: {
  39419. source: "./media/characters/kimberly-tilson/back.svg",
  39420. extra: 1370/1307,
  39421. bottom: 20/1390
  39422. }
  39423. },
  39424. },
  39425. [
  39426. {
  39427. name: "Normal",
  39428. height: math.unit(3 + 6/12, "feet"),
  39429. default: true
  39430. },
  39431. ]
  39432. ))
  39433. characterMakers.push(() => makeCharacter(
  39434. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  39435. {
  39436. front: {
  39437. height: math.unit(1148, "feet"),
  39438. weight: math.unit(34057, "lb"),
  39439. name: "Front",
  39440. image: {
  39441. source: "./media/characters/harthos/front.svg",
  39442. extra: 1391/1339,
  39443. bottom: 13/1404
  39444. }
  39445. },
  39446. },
  39447. [
  39448. {
  39449. name: "Macro",
  39450. height: math.unit(1148, "feet"),
  39451. default: true
  39452. },
  39453. ]
  39454. ))
  39455. characterMakers.push(() => makeCharacter(
  39456. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  39457. {
  39458. front: {
  39459. height: math.unit(15, "feet"),
  39460. name: "Front",
  39461. image: {
  39462. source: "./media/characters/hypatia/front.svg",
  39463. extra: 1653/1591,
  39464. bottom: 79/1732
  39465. }
  39466. },
  39467. },
  39468. [
  39469. {
  39470. name: "Normal",
  39471. height: math.unit(15, "feet")
  39472. },
  39473. {
  39474. name: "Small",
  39475. height: math.unit(300, "feet")
  39476. },
  39477. {
  39478. name: "Macro",
  39479. height: math.unit(2500, "feet"),
  39480. default: true
  39481. },
  39482. {
  39483. name: "Mega Macro",
  39484. height: math.unit(1500, "miles")
  39485. },
  39486. {
  39487. name: "Giga Macro",
  39488. height: math.unit(1.5e6, "miles")
  39489. },
  39490. ]
  39491. ))
  39492. characterMakers.push(() => makeCharacter(
  39493. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  39494. {
  39495. front: {
  39496. height: math.unit(6, "feet"),
  39497. weight: math.unit(200, "lb"),
  39498. name: "Front",
  39499. image: {
  39500. source: "./media/characters/wulver/front.svg",
  39501. extra: 1724/1632,
  39502. bottom: 130/1854
  39503. }
  39504. },
  39505. frontNsfw: {
  39506. height: math.unit(6, "feet"),
  39507. weight: math.unit(200, "lb"),
  39508. name: "Front (NSFW)",
  39509. image: {
  39510. source: "./media/characters/wulver/front-nsfw.svg",
  39511. extra: 1724/1632,
  39512. bottom: 130/1854
  39513. }
  39514. },
  39515. },
  39516. [
  39517. {
  39518. name: "Human-Sized",
  39519. height: math.unit(6, "feet")
  39520. },
  39521. {
  39522. name: "Normal",
  39523. height: math.unit(4, "meters"),
  39524. default: true
  39525. },
  39526. {
  39527. name: "Large",
  39528. height: math.unit(6, "m")
  39529. },
  39530. ]
  39531. ))
  39532. characterMakers.push(() => makeCharacter(
  39533. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  39534. {
  39535. front: {
  39536. height: math.unit(7, "feet"),
  39537. name: "Front",
  39538. image: {
  39539. source: "./media/characters/maru/front.svg",
  39540. extra: 1595/1570,
  39541. bottom: 0/1595
  39542. }
  39543. },
  39544. },
  39545. [
  39546. {
  39547. name: "Normal",
  39548. height: math.unit(7, "feet"),
  39549. default: true
  39550. },
  39551. {
  39552. name: "Macro",
  39553. height: math.unit(700, "feet")
  39554. },
  39555. {
  39556. name: "Mega Macro",
  39557. height: math.unit(25, "miles")
  39558. },
  39559. ]
  39560. ))
  39561. characterMakers.push(() => makeCharacter(
  39562. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  39563. {
  39564. front: {
  39565. height: math.unit(6, "feet"),
  39566. weight: math.unit(170, "lb"),
  39567. name: "Front",
  39568. image: {
  39569. source: "./media/characters/xenon/front.svg",
  39570. extra: 1376/1305,
  39571. bottom: 56/1432
  39572. }
  39573. },
  39574. back: {
  39575. height: math.unit(6, "feet"),
  39576. weight: math.unit(170, "lb"),
  39577. name: "Back",
  39578. image: {
  39579. source: "./media/characters/xenon/back.svg",
  39580. extra: 1328/1259,
  39581. bottom: 95/1423
  39582. }
  39583. },
  39584. maw: {
  39585. height: math.unit(0.52, "feet"),
  39586. name: "Maw",
  39587. image: {
  39588. source: "./media/characters/xenon/maw.svg"
  39589. }
  39590. },
  39591. hand: {
  39592. height: math.unit(0.82, "feet"),
  39593. name: "Hand",
  39594. image: {
  39595. source: "./media/characters/xenon/hand.svg"
  39596. }
  39597. },
  39598. foot: {
  39599. height: math.unit(1.13, "feet"),
  39600. name: "Foot",
  39601. image: {
  39602. source: "./media/characters/xenon/foot.svg"
  39603. }
  39604. },
  39605. },
  39606. [
  39607. {
  39608. name: "Micro",
  39609. height: math.unit(0.8, "inches")
  39610. },
  39611. {
  39612. name: "Normal",
  39613. height: math.unit(6, "feet")
  39614. },
  39615. {
  39616. name: "Macro",
  39617. height: math.unit(50, "feet"),
  39618. default: true
  39619. },
  39620. {
  39621. name: "Macro+",
  39622. height: math.unit(250, "feet")
  39623. },
  39624. {
  39625. name: "Megamacro",
  39626. height: math.unit(1500, "feet")
  39627. },
  39628. ]
  39629. ))
  39630. characterMakers.push(() => makeCharacter(
  39631. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  39632. {
  39633. front: {
  39634. height: math.unit(7 + 5/12, "feet"),
  39635. name: "Front",
  39636. image: {
  39637. source: "./media/characters/zane/front.svg",
  39638. extra: 1260/1203,
  39639. bottom: 94/1354
  39640. }
  39641. },
  39642. back: {
  39643. height: math.unit(5.05, "feet"),
  39644. name: "Back",
  39645. image: {
  39646. source: "./media/characters/zane/back.svg",
  39647. extra: 893/829,
  39648. bottom: 30/923
  39649. }
  39650. },
  39651. werewolf: {
  39652. height: math.unit(11, "feet"),
  39653. name: "Werewolf",
  39654. image: {
  39655. source: "./media/characters/zane/werewolf.svg",
  39656. extra: 1383/1323,
  39657. bottom: 89/1472
  39658. }
  39659. },
  39660. foot: {
  39661. height: math.unit(1.46, "feet"),
  39662. name: "Foot",
  39663. image: {
  39664. source: "./media/characters/zane/foot.svg"
  39665. }
  39666. },
  39667. footFront: {
  39668. height: math.unit(0.784, "feet"),
  39669. name: "Foot (Front)",
  39670. image: {
  39671. source: "./media/characters/zane/foot-front.svg"
  39672. }
  39673. },
  39674. dick: {
  39675. height: math.unit(1.95, "feet"),
  39676. name: "Dick",
  39677. image: {
  39678. source: "./media/characters/zane/dick.svg"
  39679. }
  39680. },
  39681. dickWerewolf: {
  39682. height: math.unit(3.77, "feet"),
  39683. name: "Dick (Werewolf)",
  39684. image: {
  39685. source: "./media/characters/zane/dick.svg"
  39686. }
  39687. },
  39688. },
  39689. [
  39690. {
  39691. name: "Normal",
  39692. height: math.unit(7 + 5/12, "feet"),
  39693. default: true
  39694. },
  39695. ]
  39696. ))
  39697. characterMakers.push(() => makeCharacter(
  39698. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  39699. {
  39700. front: {
  39701. height: math.unit(6 + 2/12, "feet"),
  39702. weight: math.unit(284, "lb"),
  39703. name: "Front",
  39704. image: {
  39705. source: "./media/characters/benni-desparque/front.svg",
  39706. extra: 1353/1126,
  39707. bottom: 69/1422
  39708. }
  39709. },
  39710. },
  39711. [
  39712. {
  39713. name: "Civilian",
  39714. height: math.unit(6 + 2/12, "feet")
  39715. },
  39716. {
  39717. name: "Normal",
  39718. height: math.unit(98, "feet"),
  39719. default: true
  39720. },
  39721. {
  39722. name: "Kaiju Fighter",
  39723. height: math.unit(268, "feet")
  39724. },
  39725. ]
  39726. ))
  39727. characterMakers.push(() => makeCharacter(
  39728. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  39729. {
  39730. front: {
  39731. height: math.unit(5, "feet"),
  39732. weight: math.unit(105, "lb"),
  39733. name: "Front",
  39734. image: {
  39735. source: "./media/characters/maxine/front.svg",
  39736. extra: 1386/1250,
  39737. bottom: 71/1457
  39738. }
  39739. },
  39740. },
  39741. [
  39742. {
  39743. name: "Normal",
  39744. height: math.unit(5, "feet"),
  39745. default: true
  39746. },
  39747. ]
  39748. ))
  39749. characterMakers.push(() => makeCharacter(
  39750. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  39751. {
  39752. front: {
  39753. height: math.unit(11 + 7/12, "feet"),
  39754. weight: math.unit(9576, "lb"),
  39755. name: "Front",
  39756. image: {
  39757. source: "./media/characters/scaly/front.svg",
  39758. extra: 888/867,
  39759. bottom: 36/924
  39760. }
  39761. },
  39762. },
  39763. [
  39764. {
  39765. name: "Normal",
  39766. height: math.unit(11 + 7/12, "feet"),
  39767. default: true
  39768. },
  39769. ]
  39770. ))
  39771. characterMakers.push(() => makeCharacter(
  39772. { name: "Saelria", species: ["mouse", "human"], tags: ["anthro"] },
  39773. {
  39774. front: {
  39775. height: math.unit(9, "inches"),
  39776. name: "Front",
  39777. image: {
  39778. source: "./media/characters/saelria/front.svg",
  39779. extra: 662/621,
  39780. bottom: 12/674
  39781. }
  39782. },
  39783. },
  39784. [
  39785. {
  39786. name: "Tiny",
  39787. height: math.unit(9, "inches"),
  39788. default: true
  39789. },
  39790. ]
  39791. ))
  39792. characterMakers.push(() => makeCharacter(
  39793. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  39794. {
  39795. front: {
  39796. height: math.unit(80, "meters"),
  39797. weight: math.unit(7000, "tonnes"),
  39798. name: "Front",
  39799. image: {
  39800. source: "./media/characters/tef/front.svg",
  39801. extra: 2036/1991,
  39802. bottom: 54/2090
  39803. }
  39804. },
  39805. back: {
  39806. height: math.unit(80, "meters"),
  39807. weight: math.unit(7000, "tonnes"),
  39808. name: "Back",
  39809. image: {
  39810. source: "./media/characters/tef/back.svg",
  39811. extra: 2036/1991,
  39812. bottom: 54/2090
  39813. }
  39814. },
  39815. },
  39816. [
  39817. {
  39818. name: "Macro",
  39819. height: math.unit(80, "meters"),
  39820. default: true
  39821. },
  39822. ]
  39823. ))
  39824. characterMakers.push(() => makeCharacter(
  39825. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  39826. {
  39827. front: {
  39828. height: math.unit(13, "feet"),
  39829. weight: math.unit(6, "tons"),
  39830. name: "Front",
  39831. image: {
  39832. source: "./media/characters/rover/front.svg",
  39833. extra: 1233/1156,
  39834. bottom: 50/1283
  39835. }
  39836. },
  39837. back: {
  39838. height: math.unit(13, "feet"),
  39839. weight: math.unit(6, "tons"),
  39840. name: "Back",
  39841. image: {
  39842. source: "./media/characters/rover/back.svg",
  39843. extra: 1327/1258,
  39844. bottom: 39/1366
  39845. }
  39846. },
  39847. },
  39848. [
  39849. {
  39850. name: "Normal",
  39851. height: math.unit(13, "feet"),
  39852. default: true
  39853. },
  39854. {
  39855. name: "Macro",
  39856. height: math.unit(1300, "feet")
  39857. },
  39858. {
  39859. name: "Megamacro",
  39860. height: math.unit(1300, "miles")
  39861. },
  39862. {
  39863. name: "Gigamacro",
  39864. height: math.unit(1300000, "miles")
  39865. },
  39866. ]
  39867. ))
  39868. characterMakers.push(() => makeCharacter(
  39869. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  39870. {
  39871. front: {
  39872. height: math.unit(6, "feet"),
  39873. weight: math.unit(150, "lb"),
  39874. name: "Front",
  39875. image: {
  39876. source: "./media/characters/ariz/front.svg",
  39877. extra: 1401/1346,
  39878. bottom: 5/1406
  39879. }
  39880. },
  39881. },
  39882. [
  39883. {
  39884. name: "Normal",
  39885. height: math.unit(10, "feet"),
  39886. default: true
  39887. },
  39888. ]
  39889. ))
  39890. characterMakers.push(() => makeCharacter(
  39891. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  39892. {
  39893. front: {
  39894. height: math.unit(6, "feet"),
  39895. weight: math.unit(140, "lb"),
  39896. name: "Front",
  39897. image: {
  39898. source: "./media/characters/sigrun/front.svg",
  39899. extra: 1418/1359,
  39900. bottom: 27/1445
  39901. }
  39902. },
  39903. },
  39904. [
  39905. {
  39906. name: "Macro",
  39907. height: math.unit(35, "feet"),
  39908. default: true
  39909. },
  39910. ]
  39911. ))
  39912. characterMakers.push(() => makeCharacter(
  39913. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  39914. {
  39915. front: {
  39916. height: math.unit(6, "feet"),
  39917. weight: math.unit(150, "lb"),
  39918. name: "Front",
  39919. image: {
  39920. source: "./media/characters/numin/front.svg",
  39921. extra: 1433/1388,
  39922. bottom: 12/1445
  39923. }
  39924. },
  39925. },
  39926. [
  39927. {
  39928. name: "Macro",
  39929. height: math.unit(21.5, "km"),
  39930. default: true
  39931. },
  39932. ]
  39933. ))
  39934. characterMakers.push(() => makeCharacter(
  39935. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  39936. {
  39937. front: {
  39938. height: math.unit(6, "feet"),
  39939. weight: math.unit(463, "lb"),
  39940. name: "Front",
  39941. image: {
  39942. source: "./media/characters/melwa/front.svg",
  39943. extra: 1307/1248,
  39944. bottom: 93/1400
  39945. }
  39946. },
  39947. },
  39948. [
  39949. {
  39950. name: "Macro",
  39951. height: math.unit(50, "meters"),
  39952. default: true
  39953. },
  39954. ]
  39955. ))
  39956. characterMakers.push(() => makeCharacter(
  39957. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  39958. {
  39959. front: {
  39960. height: math.unit(325, "feet"),
  39961. name: "Front",
  39962. image: {
  39963. source: "./media/characters/zorkaiju/front.svg",
  39964. extra: 1955/1814,
  39965. bottom: 40/1995
  39966. }
  39967. },
  39968. frontExtended: {
  39969. height: math.unit(325, "feet"),
  39970. name: "Front (Extended)",
  39971. image: {
  39972. source: "./media/characters/zorkaiju/front-extended.svg",
  39973. extra: 1955/1814,
  39974. bottom: 40/1995
  39975. }
  39976. },
  39977. side: {
  39978. height: math.unit(325, "feet"),
  39979. name: "Side",
  39980. image: {
  39981. source: "./media/characters/zorkaiju/side.svg",
  39982. extra: 1495/1396,
  39983. bottom: 17/1512
  39984. }
  39985. },
  39986. sideExtended: {
  39987. height: math.unit(325, "feet"),
  39988. name: "Side (Extended)",
  39989. image: {
  39990. source: "./media/characters/zorkaiju/side-extended.svg",
  39991. extra: 1495/1396,
  39992. bottom: 17/1512
  39993. }
  39994. },
  39995. back: {
  39996. height: math.unit(325, "feet"),
  39997. name: "Back",
  39998. image: {
  39999. source: "./media/characters/zorkaiju/back.svg",
  40000. extra: 1959/1821,
  40001. bottom: 31/1990
  40002. }
  40003. },
  40004. backExtended: {
  40005. height: math.unit(325, "feet"),
  40006. name: "Back (Extended)",
  40007. image: {
  40008. source: "./media/characters/zorkaiju/back-extended.svg",
  40009. extra: 1959/1821,
  40010. bottom: 31/1990
  40011. }
  40012. },
  40013. hand: {
  40014. height: math.unit(58.4, "feet"),
  40015. name: "Hand",
  40016. image: {
  40017. source: "./media/characters/zorkaiju/hand.svg"
  40018. }
  40019. },
  40020. handExtended: {
  40021. height: math.unit(61.4, "feet"),
  40022. name: "Hand (Extended)",
  40023. image: {
  40024. source: "./media/characters/zorkaiju/hand-extended.svg"
  40025. }
  40026. },
  40027. foot: {
  40028. height: math.unit(95, "feet"),
  40029. name: "Foot",
  40030. image: {
  40031. source: "./media/characters/zorkaiju/foot.svg"
  40032. }
  40033. },
  40034. leftArm: {
  40035. height: math.unit(59, "feet"),
  40036. name: "Left Arm",
  40037. image: {
  40038. source: "./media/characters/zorkaiju/left-arm.svg"
  40039. }
  40040. },
  40041. rightArm: {
  40042. height: math.unit(59, "feet"),
  40043. name: "Right Arm",
  40044. image: {
  40045. source: "./media/characters/zorkaiju/right-arm.svg"
  40046. }
  40047. },
  40048. tail: {
  40049. height: math.unit(104, "feet"),
  40050. name: "Tail",
  40051. image: {
  40052. source: "./media/characters/zorkaiju/tail.svg"
  40053. }
  40054. },
  40055. tailExtended: {
  40056. height: math.unit(104, "feet"),
  40057. name: "Tail (Extended)",
  40058. image: {
  40059. source: "./media/characters/zorkaiju/tail-extended.svg"
  40060. }
  40061. },
  40062. tailBottom: {
  40063. height: math.unit(104, "feet"),
  40064. name: "Tail Bottom",
  40065. image: {
  40066. source: "./media/characters/zorkaiju/tail-bottom.svg"
  40067. }
  40068. },
  40069. crystal: {
  40070. height: math.unit(27.54, "feet"),
  40071. name: "Crystal",
  40072. image: {
  40073. source: "./media/characters/zorkaiju/crystal.svg"
  40074. }
  40075. },
  40076. },
  40077. [
  40078. {
  40079. name: "Kaiju",
  40080. height: math.unit(325, "feet"),
  40081. default: true
  40082. },
  40083. ]
  40084. ))
  40085. characterMakers.push(() => makeCharacter(
  40086. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  40087. {
  40088. front: {
  40089. height: math.unit(6 + 1/12, "feet"),
  40090. weight: math.unit(115, "lb"),
  40091. name: "Front",
  40092. image: {
  40093. source: "./media/characters/bailey-belfry/front.svg",
  40094. extra: 1240/1121,
  40095. bottom: 101/1341
  40096. }
  40097. },
  40098. },
  40099. [
  40100. {
  40101. name: "Normal",
  40102. height: math.unit(6 + 1/12, "feet"),
  40103. default: true
  40104. },
  40105. ]
  40106. ))
  40107. characterMakers.push(() => makeCharacter(
  40108. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  40109. {
  40110. side: {
  40111. height: math.unit(4, "meters"),
  40112. weight: math.unit(250, "kg"),
  40113. name: "Side",
  40114. image: {
  40115. source: "./media/characters/blacky/side.svg",
  40116. extra: 1027/919,
  40117. bottom: 43/1070
  40118. }
  40119. },
  40120. maw: {
  40121. height: math.unit(1, "meters"),
  40122. name: "Maw",
  40123. image: {
  40124. source: "./media/characters/blacky/maw.svg"
  40125. }
  40126. },
  40127. paw: {
  40128. height: math.unit(1, "meters"),
  40129. name: "Paw",
  40130. image: {
  40131. source: "./media/characters/blacky/paw.svg"
  40132. }
  40133. },
  40134. },
  40135. [
  40136. {
  40137. name: "Normal",
  40138. height: math.unit(4, "meters"),
  40139. default: true
  40140. },
  40141. ]
  40142. ))
  40143. characterMakers.push(() => makeCharacter(
  40144. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  40145. {
  40146. front: {
  40147. height: math.unit(170, "cm"),
  40148. weight: math.unit(66, "kg"),
  40149. name: "Front",
  40150. image: {
  40151. source: "./media/characters/thux-ei/front.svg",
  40152. extra: 1109/1011,
  40153. bottom: 8/1117
  40154. }
  40155. },
  40156. },
  40157. [
  40158. {
  40159. name: "Normal",
  40160. height: math.unit(170, "cm"),
  40161. default: true
  40162. },
  40163. ]
  40164. ))
  40165. characterMakers.push(() => makeCharacter(
  40166. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  40167. {
  40168. front: {
  40169. height: math.unit(5, "feet"),
  40170. weight: math.unit(120, "lb"),
  40171. name: "Front",
  40172. image: {
  40173. source: "./media/characters/roxanne-voltaire/front.svg",
  40174. extra: 1901/1779,
  40175. bottom: 53/1954
  40176. }
  40177. },
  40178. },
  40179. [
  40180. {
  40181. name: "Normal",
  40182. height: math.unit(5, "feet"),
  40183. default: true
  40184. },
  40185. {
  40186. name: "Giant",
  40187. height: math.unit(50, "feet")
  40188. },
  40189. {
  40190. name: "Titan",
  40191. height: math.unit(500, "feet")
  40192. },
  40193. {
  40194. name: "Macro",
  40195. height: math.unit(5000, "feet")
  40196. },
  40197. {
  40198. name: "Megamacro",
  40199. height: math.unit(50000, "feet")
  40200. },
  40201. {
  40202. name: "Gigamacro",
  40203. height: math.unit(500000, "feet")
  40204. },
  40205. {
  40206. name: "Teramacro",
  40207. height: math.unit(5e6, "feet")
  40208. },
  40209. ]
  40210. ))
  40211. characterMakers.push(() => makeCharacter(
  40212. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  40213. {
  40214. front: {
  40215. height: math.unit(6 + 2/12, "feet"),
  40216. name: "Front",
  40217. image: {
  40218. source: "./media/characters/squeaks/front.svg",
  40219. extra: 1823/1768,
  40220. bottom: 138/1961
  40221. }
  40222. },
  40223. },
  40224. [
  40225. {
  40226. name: "Micro",
  40227. height: math.unit(0.5, "inches")
  40228. },
  40229. {
  40230. name: "Normal",
  40231. height: math.unit(6 + 2/12, "feet"),
  40232. default: true
  40233. },
  40234. {
  40235. name: "Macro",
  40236. height: math.unit(600, "feet")
  40237. },
  40238. ]
  40239. ))
  40240. characterMakers.push(() => makeCharacter(
  40241. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  40242. {
  40243. front: {
  40244. height: math.unit(1.72, "meters"),
  40245. name: "Front",
  40246. image: {
  40247. source: "./media/characters/archinger/front.svg",
  40248. extra: 1861/1675,
  40249. bottom: 125/1986
  40250. }
  40251. },
  40252. back: {
  40253. height: math.unit(1.72, "meters"),
  40254. name: "Back",
  40255. image: {
  40256. source: "./media/characters/archinger/back.svg",
  40257. extra: 1844/1701,
  40258. bottom: 104/1948
  40259. }
  40260. },
  40261. cock: {
  40262. height: math.unit(0.59, "feet"),
  40263. name: "Cock",
  40264. image: {
  40265. source: "./media/characters/archinger/cock.svg"
  40266. }
  40267. },
  40268. },
  40269. [
  40270. {
  40271. name: "Normal",
  40272. height: math.unit(1.72, "meters"),
  40273. default: true
  40274. },
  40275. {
  40276. name: "Macro",
  40277. height: math.unit(84, "meters")
  40278. },
  40279. {
  40280. name: "Macro+",
  40281. height: math.unit(112, "meters")
  40282. },
  40283. {
  40284. name: "Macro++",
  40285. height: math.unit(960, "meters")
  40286. },
  40287. {
  40288. name: "Macro+++",
  40289. height: math.unit(4, "km")
  40290. },
  40291. {
  40292. name: "Macro++++",
  40293. height: math.unit(48, "km")
  40294. },
  40295. {
  40296. name: "Macro+++++",
  40297. height: math.unit(4500, "km")
  40298. },
  40299. ]
  40300. ))
  40301. characterMakers.push(() => makeCharacter(
  40302. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  40303. {
  40304. front: {
  40305. height: math.unit(5 + 5/12, "feet"),
  40306. name: "Front",
  40307. image: {
  40308. source: "./media/characters/alsnapz/front.svg",
  40309. extra: 1157/1065,
  40310. bottom: 42/1199
  40311. }
  40312. },
  40313. },
  40314. [
  40315. {
  40316. name: "Normal",
  40317. height: math.unit(5 + 5/12, "feet"),
  40318. default: true
  40319. },
  40320. ]
  40321. ))
  40322. characterMakers.push(() => makeCharacter(
  40323. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  40324. {
  40325. side: {
  40326. height: math.unit(3.2, "earths"),
  40327. name: "Side",
  40328. image: {
  40329. source: "./media/characters/mag/side.svg",
  40330. extra: 1331/1008,
  40331. bottom: 52/1383
  40332. }
  40333. },
  40334. wing: {
  40335. height: math.unit(1.94, "earths"),
  40336. name: "Wing",
  40337. image: {
  40338. source: "./media/characters/mag/wing.svg"
  40339. }
  40340. },
  40341. dick: {
  40342. height: math.unit(1.8, "earths"),
  40343. name: "Dick",
  40344. image: {
  40345. source: "./media/characters/mag/dick.svg"
  40346. }
  40347. },
  40348. ass: {
  40349. height: math.unit(1.33, "earths"),
  40350. name: "Ass",
  40351. image: {
  40352. source: "./media/characters/mag/ass.svg"
  40353. }
  40354. },
  40355. head: {
  40356. height: math.unit(1.1, "earths"),
  40357. name: "Head",
  40358. image: {
  40359. source: "./media/characters/mag/head.svg"
  40360. }
  40361. },
  40362. maw: {
  40363. height: math.unit(1.62, "earths"),
  40364. name: "Maw",
  40365. image: {
  40366. source: "./media/characters/mag/maw.svg"
  40367. }
  40368. },
  40369. },
  40370. [
  40371. {
  40372. name: "Small",
  40373. height: math.unit(162, "feet")
  40374. },
  40375. {
  40376. name: "Normal",
  40377. height: math.unit(3.2, "earths"),
  40378. default: true
  40379. },
  40380. ]
  40381. ))
  40382. characterMakers.push(() => makeCharacter(
  40383. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  40384. {
  40385. front: {
  40386. height: math.unit(512, "feet"),
  40387. weight: math.unit(63509, "tonnes"),
  40388. name: "Front",
  40389. image: {
  40390. source: "./media/characters/vorrel-harroc/front.svg",
  40391. extra: 1075/1063,
  40392. bottom: 62/1137
  40393. }
  40394. },
  40395. },
  40396. [
  40397. {
  40398. name: "Normal",
  40399. height: math.unit(10, "feet")
  40400. },
  40401. {
  40402. name: "Macro",
  40403. height: math.unit(512, "feet"),
  40404. default: true
  40405. },
  40406. {
  40407. name: "Megamacro",
  40408. height: math.unit(256, "miles")
  40409. },
  40410. {
  40411. name: "Gigamacro",
  40412. height: math.unit(4096, "miles")
  40413. },
  40414. ]
  40415. ))
  40416. characterMakers.push(() => makeCharacter(
  40417. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  40418. {
  40419. side: {
  40420. height: math.unit(50, "feet"),
  40421. name: "Side",
  40422. image: {
  40423. source: "./media/characters/froimar/side.svg",
  40424. extra: 855/638,
  40425. bottom: 99/954
  40426. }
  40427. },
  40428. },
  40429. [
  40430. {
  40431. name: "Macro",
  40432. height: math.unit(50, "feet"),
  40433. default: true
  40434. },
  40435. ]
  40436. ))
  40437. characterMakers.push(() => makeCharacter(
  40438. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  40439. {
  40440. front: {
  40441. height: math.unit(210, "miles"),
  40442. name: "Front",
  40443. image: {
  40444. source: "./media/characters/timothy/front.svg",
  40445. extra: 1007/943,
  40446. bottom: 62/1069
  40447. }
  40448. },
  40449. frontSkirt: {
  40450. height: math.unit(210, "miles"),
  40451. name: "Front (Skirt)",
  40452. image: {
  40453. source: "./media/characters/timothy/front-skirt.svg",
  40454. extra: 1007/943,
  40455. bottom: 62/1069
  40456. }
  40457. },
  40458. frontCoat: {
  40459. height: math.unit(210, "miles"),
  40460. name: "Front (Coat)",
  40461. image: {
  40462. source: "./media/characters/timothy/front-coat.svg",
  40463. extra: 1007/943,
  40464. bottom: 62/1069
  40465. }
  40466. },
  40467. },
  40468. [
  40469. {
  40470. name: "Macro",
  40471. height: math.unit(210, "miles"),
  40472. default: true
  40473. },
  40474. {
  40475. name: "Megamacro",
  40476. height: math.unit(210000, "miles")
  40477. },
  40478. ]
  40479. ))
  40480. characterMakers.push(() => makeCharacter(
  40481. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  40482. {
  40483. front: {
  40484. height: math.unit(188, "feet"),
  40485. name: "Front",
  40486. image: {
  40487. source: "./media/characters/pyotr/front.svg",
  40488. extra: 1912/1826,
  40489. bottom: 18/1930
  40490. }
  40491. },
  40492. },
  40493. [
  40494. {
  40495. name: "Macro",
  40496. height: math.unit(188, "feet"),
  40497. default: true
  40498. },
  40499. {
  40500. name: "Megamacro",
  40501. height: math.unit(8, "miles")
  40502. },
  40503. ]
  40504. ))
  40505. characterMakers.push(() => makeCharacter(
  40506. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  40507. {
  40508. side: {
  40509. height: math.unit(10, "feet"),
  40510. weight: math.unit(4500, "lb"),
  40511. name: "Side",
  40512. image: {
  40513. source: "./media/characters/ackart/side.svg",
  40514. extra: 1776/1668,
  40515. bottom: 116/1892
  40516. }
  40517. },
  40518. },
  40519. [
  40520. {
  40521. name: "Normal",
  40522. height: math.unit(10, "feet"),
  40523. default: true
  40524. },
  40525. ]
  40526. ))
  40527. characterMakers.push(() => makeCharacter(
  40528. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  40529. {
  40530. side: {
  40531. height: math.unit(21, "feet"),
  40532. name: "Side",
  40533. image: {
  40534. source: "./media/characters/nolow/side.svg",
  40535. extra: 1484/1434,
  40536. bottom: 85/1569
  40537. }
  40538. },
  40539. sideErect: {
  40540. height: math.unit(21, "feet"),
  40541. name: "Side-erect",
  40542. image: {
  40543. source: "./media/characters/nolow/side-erect.svg",
  40544. extra: 1484/1434,
  40545. bottom: 85/1569
  40546. }
  40547. },
  40548. },
  40549. [
  40550. {
  40551. name: "Regular",
  40552. height: math.unit(12, "feet")
  40553. },
  40554. {
  40555. name: "Big Chee",
  40556. height: math.unit(21, "feet"),
  40557. default: true
  40558. },
  40559. ]
  40560. ))
  40561. characterMakers.push(() => makeCharacter(
  40562. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  40563. {
  40564. front: {
  40565. height: math.unit(7, "feet"),
  40566. weight: math.unit(250, "lb"),
  40567. name: "Front",
  40568. image: {
  40569. source: "./media/characters/nines/front.svg",
  40570. extra: 1741/1607,
  40571. bottom: 41/1782
  40572. }
  40573. },
  40574. side: {
  40575. height: math.unit(7, "feet"),
  40576. weight: math.unit(250, "lb"),
  40577. name: "Side",
  40578. image: {
  40579. source: "./media/characters/nines/side.svg",
  40580. extra: 1854/1735,
  40581. bottom: 93/1947
  40582. }
  40583. },
  40584. back: {
  40585. height: math.unit(7, "feet"),
  40586. weight: math.unit(250, "lb"),
  40587. name: "Back",
  40588. image: {
  40589. source: "./media/characters/nines/back.svg",
  40590. extra: 1748/1615,
  40591. bottom: 20/1768
  40592. }
  40593. },
  40594. },
  40595. [
  40596. {
  40597. name: "Megamacro",
  40598. height: math.unit(99, "km"),
  40599. default: true
  40600. },
  40601. ]
  40602. ))
  40603. characterMakers.push(() => makeCharacter(
  40604. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  40605. {
  40606. front: {
  40607. height: math.unit(5 + 10/12, "feet"),
  40608. weight: math.unit(210, "lb"),
  40609. name: "Front",
  40610. image: {
  40611. source: "./media/characters/zenith/front.svg",
  40612. extra: 1531/1452,
  40613. bottom: 198/1729
  40614. }
  40615. },
  40616. back: {
  40617. height: math.unit(5 + 10/12, "feet"),
  40618. weight: math.unit(210, "lb"),
  40619. name: "Back",
  40620. image: {
  40621. source: "./media/characters/zenith/back.svg",
  40622. extra: 1571/1487,
  40623. bottom: 75/1646
  40624. }
  40625. },
  40626. },
  40627. [
  40628. {
  40629. name: "Normal",
  40630. height: math.unit(5 + 10/12, "feet"),
  40631. default: true
  40632. }
  40633. ]
  40634. ))
  40635. characterMakers.push(() => makeCharacter(
  40636. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  40637. {
  40638. front: {
  40639. height: math.unit(4, "feet"),
  40640. weight: math.unit(60, "lb"),
  40641. name: "Front",
  40642. image: {
  40643. source: "./media/characters/jasper/front.svg",
  40644. extra: 1450/1379,
  40645. bottom: 19/1469
  40646. }
  40647. },
  40648. },
  40649. [
  40650. {
  40651. name: "Normal",
  40652. height: math.unit(4, "feet"),
  40653. default: true
  40654. },
  40655. ]
  40656. ))
  40657. characterMakers.push(() => makeCharacter(
  40658. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  40659. {
  40660. front: {
  40661. height: math.unit(6 + 5/12, "feet"),
  40662. weight: math.unit(290, "lb"),
  40663. name: "Front",
  40664. image: {
  40665. source: "./media/characters/tiberius-thyben/front.svg",
  40666. extra: 757/739,
  40667. bottom: 39/796
  40668. }
  40669. },
  40670. },
  40671. [
  40672. {
  40673. name: "Micro",
  40674. height: math.unit(1.5, "inches")
  40675. },
  40676. {
  40677. name: "Normal",
  40678. height: math.unit(6 + 5/12, "feet"),
  40679. default: true
  40680. },
  40681. {
  40682. name: "Macro",
  40683. height: math.unit(300, "feet")
  40684. },
  40685. ]
  40686. ))
  40687. characterMakers.push(() => makeCharacter(
  40688. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  40689. {
  40690. front: {
  40691. height: math.unit(5 + 6/12, "feet"),
  40692. weight: math.unit(60, "kg"),
  40693. name: "Front",
  40694. image: {
  40695. source: "./media/characters/sabre/front.svg",
  40696. extra: 738/671,
  40697. bottom: 27/765
  40698. }
  40699. },
  40700. },
  40701. [
  40702. {
  40703. name: "Teeny",
  40704. height: math.unit(2, "inches")
  40705. },
  40706. {
  40707. name: "Smol",
  40708. height: math.unit(8, "inches")
  40709. },
  40710. {
  40711. name: "Normal",
  40712. height: math.unit(5 + 6/12, "feet"),
  40713. default: true
  40714. },
  40715. {
  40716. name: "Mini-Macro",
  40717. height: math.unit(15, "feet")
  40718. },
  40719. {
  40720. name: "Macro",
  40721. height: math.unit(50, "feet")
  40722. },
  40723. ]
  40724. ))
  40725. characterMakers.push(() => makeCharacter(
  40726. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  40727. {
  40728. front: {
  40729. height: math.unit(6 + 4/12, "feet"),
  40730. weight: math.unit(170, "lb"),
  40731. name: "Front",
  40732. image: {
  40733. source: "./media/characters/charlie/front.svg",
  40734. extra: 1348/1228,
  40735. bottom: 15/1363
  40736. }
  40737. },
  40738. },
  40739. [
  40740. {
  40741. name: "Macro",
  40742. height: math.unit(1700, "meters"),
  40743. default: true
  40744. },
  40745. {
  40746. name: "MegaMacro",
  40747. height: math.unit(20400, "meters")
  40748. },
  40749. ]
  40750. ))
  40751. characterMakers.push(() => makeCharacter(
  40752. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  40753. {
  40754. front: {
  40755. height: math.unit(6 + 3/12, "feet"),
  40756. weight: math.unit(185, "lb"),
  40757. name: "Front",
  40758. image: {
  40759. source: "./media/characters/susan-grant/front.svg",
  40760. extra: 1351/1327,
  40761. bottom: 26/1377
  40762. }
  40763. },
  40764. },
  40765. [
  40766. {
  40767. name: "Normal",
  40768. height: math.unit(6 + 3/12, "feet"),
  40769. default: true
  40770. },
  40771. {
  40772. name: "Macro",
  40773. height: math.unit(225, "feet")
  40774. },
  40775. {
  40776. name: "Macro+",
  40777. height: math.unit(900, "feet")
  40778. },
  40779. {
  40780. name: "MegaMacro",
  40781. height: math.unit(14400, "feet")
  40782. },
  40783. ]
  40784. ))
  40785. characterMakers.push(() => makeCharacter(
  40786. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  40787. {
  40788. front: {
  40789. height: math.unit(5 + 4/12, "feet"),
  40790. weight: math.unit(110, "lb"),
  40791. name: "Front",
  40792. image: {
  40793. source: "./media/characters/axel-isanov/front.svg",
  40794. extra: 1096/1065,
  40795. bottom: 13/1109
  40796. }
  40797. },
  40798. },
  40799. [
  40800. {
  40801. name: "Normal",
  40802. height: math.unit(5 + 4/12, "feet"),
  40803. default: true
  40804. },
  40805. ]
  40806. ))
  40807. characterMakers.push(() => makeCharacter(
  40808. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  40809. {
  40810. front: {
  40811. height: math.unit(9, "feet"),
  40812. weight: math.unit(467, "lb"),
  40813. name: "Front",
  40814. image: {
  40815. source: "./media/characters/necahual/front.svg",
  40816. extra: 920/873,
  40817. bottom: 26/946
  40818. }
  40819. },
  40820. back: {
  40821. height: math.unit(9, "feet"),
  40822. weight: math.unit(467, "lb"),
  40823. name: "Back",
  40824. image: {
  40825. source: "./media/characters/necahual/back.svg",
  40826. extra: 930/884,
  40827. bottom: 16/946
  40828. }
  40829. },
  40830. frontUnderwear: {
  40831. height: math.unit(9, "feet"),
  40832. weight: math.unit(467, "lb"),
  40833. name: "Front (Underwear)",
  40834. image: {
  40835. source: "./media/characters/necahual/front-underwear.svg",
  40836. extra: 920/873,
  40837. bottom: 26/946
  40838. }
  40839. },
  40840. frontDressed: {
  40841. height: math.unit(9, "feet"),
  40842. weight: math.unit(467, "lb"),
  40843. name: "Front (Dressed)",
  40844. image: {
  40845. source: "./media/characters/necahual/front-dressed.svg",
  40846. extra: 920/873,
  40847. bottom: 26/946
  40848. }
  40849. },
  40850. },
  40851. [
  40852. {
  40853. name: "Comprsesed",
  40854. height: math.unit(9, "feet")
  40855. },
  40856. {
  40857. name: "Natural",
  40858. height: math.unit(15, "feet"),
  40859. default: true
  40860. },
  40861. {
  40862. name: "Boosted",
  40863. height: math.unit(50, "feet")
  40864. },
  40865. {
  40866. name: "Boosted+",
  40867. height: math.unit(150, "feet")
  40868. },
  40869. {
  40870. name: "Max",
  40871. height: math.unit(500, "feet")
  40872. },
  40873. ]
  40874. ))
  40875. characterMakers.push(() => makeCharacter(
  40876. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  40877. {
  40878. front: {
  40879. height: math.unit(22 + 1/12, "feet"),
  40880. weight: math.unit(3200, "lb"),
  40881. name: "Front",
  40882. image: {
  40883. source: "./media/characters/theo-acacia/front.svg",
  40884. extra: 1796/1741,
  40885. bottom: 83/1879
  40886. }
  40887. },
  40888. frontUnderwear: {
  40889. height: math.unit(22 + 1/12, "feet"),
  40890. weight: math.unit(3200, "lb"),
  40891. name: "Front (Underwear)",
  40892. image: {
  40893. source: "./media/characters/theo-acacia/front-underwear.svg",
  40894. extra: 1796/1741,
  40895. bottom: 83/1879
  40896. }
  40897. },
  40898. frontNude: {
  40899. height: math.unit(22 + 1/12, "feet"),
  40900. weight: math.unit(3200, "lb"),
  40901. name: "Front (Nude)",
  40902. image: {
  40903. source: "./media/characters/theo-acacia/front-nude.svg",
  40904. extra: 1796/1741,
  40905. bottom: 83/1879
  40906. }
  40907. },
  40908. },
  40909. [
  40910. {
  40911. name: "Normal",
  40912. height: math.unit(22 + 1/12, "feet"),
  40913. default: true
  40914. },
  40915. ]
  40916. ))
  40917. characterMakers.push(() => makeCharacter(
  40918. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  40919. {
  40920. front: {
  40921. height: math.unit(20, "feet"),
  40922. name: "Front",
  40923. image: {
  40924. source: "./media/characters/astra/front.svg",
  40925. extra: 1850/1714,
  40926. bottom: 106/1956
  40927. }
  40928. },
  40929. frontUndressed: {
  40930. height: math.unit(20, "feet"),
  40931. name: "Front (Undressed)",
  40932. image: {
  40933. source: "./media/characters/astra/front-undressed.svg",
  40934. extra: 1926/1749,
  40935. bottom: 0/1926
  40936. }
  40937. },
  40938. hand: {
  40939. height: math.unit(1.53, "feet"),
  40940. name: "Hand",
  40941. image: {
  40942. source: "./media/characters/astra/hand.svg"
  40943. }
  40944. },
  40945. paw: {
  40946. height: math.unit(1.53, "feet"),
  40947. name: "Paw",
  40948. image: {
  40949. source: "./media/characters/astra/paw.svg"
  40950. }
  40951. },
  40952. },
  40953. [
  40954. {
  40955. name: "Smallest",
  40956. height: math.unit(20, "feet")
  40957. },
  40958. {
  40959. name: "Normal",
  40960. height: math.unit(1e9, "miles"),
  40961. default: true
  40962. },
  40963. {
  40964. name: "Larger",
  40965. height: math.unit(5, "multiverses")
  40966. },
  40967. {
  40968. name: "Largest",
  40969. height: math.unit(1e9, "multiverses")
  40970. },
  40971. ]
  40972. ))
  40973. characterMakers.push(() => makeCharacter(
  40974. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  40975. {
  40976. front: {
  40977. height: math.unit(8, "feet"),
  40978. name: "Front",
  40979. image: {
  40980. source: "./media/characters/breanna/front.svg",
  40981. extra: 1912/1632,
  40982. bottom: 33/1945
  40983. }
  40984. },
  40985. },
  40986. [
  40987. {
  40988. name: "Smallest",
  40989. height: math.unit(8, "feet")
  40990. },
  40991. {
  40992. name: "Normal",
  40993. height: math.unit(1, "mile"),
  40994. default: true
  40995. },
  40996. {
  40997. name: "Maximum",
  40998. height: math.unit(1500000000000, "lightyears")
  40999. },
  41000. ]
  41001. ))
  41002. characterMakers.push(() => makeCharacter(
  41003. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  41004. {
  41005. front: {
  41006. height: math.unit(5 + 11/12, "feet"),
  41007. weight: math.unit(155, "lb"),
  41008. name: "Front",
  41009. image: {
  41010. source: "./media/characters/cai/front.svg",
  41011. extra: 1823/1702,
  41012. bottom: 32/1855
  41013. }
  41014. },
  41015. back: {
  41016. height: math.unit(5 + 11/12, "feet"),
  41017. weight: math.unit(155, "lb"),
  41018. name: "Back",
  41019. image: {
  41020. source: "./media/characters/cai/back.svg",
  41021. extra: 1809/1708,
  41022. bottom: 31/1840
  41023. }
  41024. },
  41025. },
  41026. [
  41027. {
  41028. name: "Normal",
  41029. height: math.unit(5 + 11/12, "feet"),
  41030. default: true
  41031. },
  41032. {
  41033. name: "Big",
  41034. height: math.unit(15, "feet")
  41035. },
  41036. {
  41037. name: "Macro",
  41038. height: math.unit(200, "feet")
  41039. },
  41040. ]
  41041. ))
  41042. characterMakers.push(() => makeCharacter(
  41043. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  41044. {
  41045. front: {
  41046. height: math.unit(5 + 6/12, "feet"),
  41047. weight: math.unit(160, "lb"),
  41048. name: "Front",
  41049. image: {
  41050. source: "./media/characters/zanna-virtuedòttir/front.svg",
  41051. extra: 1227/1174,
  41052. bottom: 37/1264
  41053. }
  41054. },
  41055. },
  41056. [
  41057. {
  41058. name: "Macro",
  41059. height: math.unit(444, "meters"),
  41060. default: true
  41061. },
  41062. ]
  41063. ))
  41064. characterMakers.push(() => makeCharacter(
  41065. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  41066. {
  41067. front: {
  41068. height: math.unit(18 + 7/12, "feet"),
  41069. name: "Front",
  41070. image: {
  41071. source: "./media/characters/rex/front.svg",
  41072. extra: 1941/1807,
  41073. bottom: 66/2007
  41074. }
  41075. },
  41076. back: {
  41077. height: math.unit(18 + 7/12, "feet"),
  41078. name: "Back",
  41079. image: {
  41080. source: "./media/characters/rex/back.svg",
  41081. extra: 1937/1822,
  41082. bottom: 42/1979
  41083. }
  41084. },
  41085. boot: {
  41086. height: math.unit(3.45, "feet"),
  41087. name: "Boot",
  41088. image: {
  41089. source: "./media/characters/rex/boot.svg"
  41090. }
  41091. },
  41092. paw: {
  41093. height: math.unit(4.17, "feet"),
  41094. name: "Paw",
  41095. image: {
  41096. source: "./media/characters/rex/paw.svg"
  41097. }
  41098. },
  41099. head: {
  41100. height: math.unit(6.728, "feet"),
  41101. name: "Head",
  41102. image: {
  41103. source: "./media/characters/rex/head.svg"
  41104. }
  41105. },
  41106. },
  41107. [
  41108. {
  41109. name: "Nano",
  41110. height: math.unit(18 + 7/12, "feet")
  41111. },
  41112. {
  41113. name: "Micro",
  41114. height: math.unit(1.5, "megameters")
  41115. },
  41116. {
  41117. name: "Normal",
  41118. height: math.unit(440, "megameters"),
  41119. default: true
  41120. },
  41121. {
  41122. name: "Macro",
  41123. height: math.unit(2.5, "gigameters")
  41124. },
  41125. {
  41126. name: "Gigamacro",
  41127. height: math.unit(2, "galaxies")
  41128. },
  41129. ]
  41130. ))
  41131. characterMakers.push(() => makeCharacter(
  41132. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  41133. {
  41134. side: {
  41135. height: math.unit(32, "feet"),
  41136. weight: math.unit(250000, "lb"),
  41137. name: "Side",
  41138. image: {
  41139. source: "./media/characters/silverwing/side.svg",
  41140. extra: 1100/1019,
  41141. bottom: 204/1304
  41142. }
  41143. },
  41144. },
  41145. [
  41146. {
  41147. name: "Normal",
  41148. height: math.unit(32, "feet"),
  41149. default: true
  41150. },
  41151. ]
  41152. ))
  41153. characterMakers.push(() => makeCharacter(
  41154. { name: "Tristan Hawthorne", species: ["labrador"], tags: ["anthro"] },
  41155. {
  41156. front: {
  41157. height: math.unit(6 + 6/12, "feet"),
  41158. weight: math.unit(350, "lb"),
  41159. name: "Front",
  41160. image: {
  41161. source: "./media/characters/tristan-hawthorne/front.svg",
  41162. extra: 1159/1124,
  41163. bottom: 37/1196
  41164. }
  41165. },
  41166. },
  41167. [
  41168. {
  41169. name: "Normal",
  41170. height: math.unit(6 + 6/12, "feet"),
  41171. default: true
  41172. },
  41173. ]
  41174. ))
  41175. characterMakers.push(() => makeCharacter(
  41176. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  41177. {
  41178. front: {
  41179. height: math.unit(5 + 11/12, "feet"),
  41180. weight: math.unit(190, "lb"),
  41181. name: "Front",
  41182. image: {
  41183. source: "./media/characters/mizu/front.svg",
  41184. extra: 1988/1788,
  41185. bottom: 14/2002
  41186. }
  41187. },
  41188. },
  41189. [
  41190. {
  41191. name: "Normal",
  41192. height: math.unit(5 + 11/12, "feet"),
  41193. default: true
  41194. },
  41195. ]
  41196. ))
  41197. characterMakers.push(() => makeCharacter(
  41198. { name: "Moonlight Rose (Terra)", species: ["leafeon"], tags: ["anthro"] },
  41199. {
  41200. front: {
  41201. height: math.unit(6, "feet"),
  41202. name: "Front",
  41203. image: {
  41204. source: "./media/characters/moonlight-rose-terra/front.svg",
  41205. extra: 1434/1252,
  41206. bottom: 48/1482
  41207. }
  41208. },
  41209. },
  41210. [
  41211. {
  41212. name: "TRAPPIST-1D",
  41213. height: math.unit(4992*2, "km")
  41214. },
  41215. {
  41216. name: "Earth",
  41217. height: math.unit(6367*2, "km"),
  41218. default: true
  41219. },
  41220. {
  41221. name: "Kepler-22b",
  41222. height: math.unit(15282*2, "km")
  41223. },
  41224. ]
  41225. ))
  41226. characterMakers.push(() => makeCharacter(
  41227. { name: "Moonlight Rose (Neptune)", species: ["vaporeon"], tags: ["anthro"] },
  41228. {
  41229. front: {
  41230. height: math.unit(6, "feet"),
  41231. name: "Front",
  41232. image: {
  41233. source: "./media/characters/moonlight-rose-neptune/front.svg",
  41234. extra: 1851/1712,
  41235. bottom: 0/1851
  41236. }
  41237. },
  41238. },
  41239. [
  41240. {
  41241. name: "Enceladus",
  41242. height: math.unit(513*2, "km")
  41243. },
  41244. {
  41245. name: "Europe",
  41246. height: math.unit(1560*2, "km")
  41247. },
  41248. {
  41249. name: "Neptune",
  41250. height: math.unit(24622*2, "km"),
  41251. default: true
  41252. },
  41253. {
  41254. name: "CoRoT-9b",
  41255. height: math.unit(75067*2, "km")
  41256. },
  41257. ]
  41258. ))
  41259. characterMakers.push(() => makeCharacter(
  41260. { name: "Moonlight Rose (Jupiter)", species: ["jolteon"], tags: ["anthro"] },
  41261. {
  41262. front: {
  41263. height: math.unit(6, "feet"),
  41264. name: "Front",
  41265. image: {
  41266. source: "./media/characters/moonlight-rose-jupiter/front.svg",
  41267. extra: 1367/1286,
  41268. bottom: 55/1422
  41269. }
  41270. },
  41271. },
  41272. [
  41273. {
  41274. name: "Saturn",
  41275. height: math.unit(58232*2, "km")
  41276. },
  41277. {
  41278. name: "Jupiter",
  41279. height: math.unit(69911*2, "km"),
  41280. default: true
  41281. },
  41282. {
  41283. name: "HD 100546 b",
  41284. height: math.unit(482938, "km")
  41285. },
  41286. ]
  41287. ))
  41288. characterMakers.push(() => makeCharacter(
  41289. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  41290. {
  41291. front: {
  41292. height: math.unit(1.7, "feet"),
  41293. weight: math.unit(50, "lb"),
  41294. name: "Front",
  41295. image: {
  41296. source: "./media/characters/dechroma/front.svg",
  41297. extra: 1095/859,
  41298. bottom: 64/1159
  41299. }
  41300. },
  41301. },
  41302. [
  41303. {
  41304. name: "Normal",
  41305. height: math.unit(1.7, "feet"),
  41306. default: true
  41307. },
  41308. ]
  41309. ))
  41310. characterMakers.push(() => makeCharacter(
  41311. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  41312. {
  41313. side: {
  41314. height: math.unit(30, "feet"),
  41315. name: "Side",
  41316. image: {
  41317. source: "./media/characters/veluren-thanazel/side.svg",
  41318. extra: 1611/633,
  41319. bottom: 118/1729
  41320. }
  41321. },
  41322. front: {
  41323. height: math.unit(30, "feet"),
  41324. name: "Front",
  41325. image: {
  41326. source: "./media/characters/veluren-thanazel/front.svg",
  41327. extra: 1486/636,
  41328. bottom: 238/1724
  41329. }
  41330. },
  41331. head: {
  41332. height: math.unit(21.4, "feet"),
  41333. name: "Head",
  41334. image: {
  41335. source: "./media/characters/veluren-thanazel/head.svg"
  41336. }
  41337. },
  41338. genitals: {
  41339. height: math.unit(19.4, "feet"),
  41340. name: "Genitals",
  41341. image: {
  41342. source: "./media/characters/veluren-thanazel/genitals.svg"
  41343. }
  41344. },
  41345. },
  41346. [
  41347. {
  41348. name: "Social",
  41349. height: math.unit(6, "feet")
  41350. },
  41351. {
  41352. name: "Play",
  41353. height: math.unit(12, "feet")
  41354. },
  41355. {
  41356. name: "True",
  41357. height: math.unit(30, "feet"),
  41358. default: true
  41359. },
  41360. ]
  41361. ))
  41362. characterMakers.push(() => makeCharacter(
  41363. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  41364. {
  41365. front: {
  41366. height: math.unit(7 + 6/12, "feet"),
  41367. weight: math.unit(500, "kg"),
  41368. name: "Front",
  41369. image: {
  41370. source: "./media/characters/arcturas/front.svg",
  41371. extra: 1700/1500,
  41372. bottom: 145/1845
  41373. }
  41374. },
  41375. },
  41376. [
  41377. {
  41378. name: "Normal",
  41379. height: math.unit(7 + 6/12, "feet"),
  41380. default: true
  41381. },
  41382. ]
  41383. ))
  41384. characterMakers.push(() => makeCharacter(
  41385. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  41386. {
  41387. side: {
  41388. height: math.unit(6, "feet"),
  41389. weight: math.unit(2, "tons"),
  41390. name: "Side",
  41391. image: {
  41392. source: "./media/characters/vitaen/side.svg",
  41393. extra: 1157/617,
  41394. bottom: 122/1279
  41395. }
  41396. },
  41397. },
  41398. [
  41399. {
  41400. name: "Normal",
  41401. height: math.unit(6, "feet"),
  41402. default: true
  41403. },
  41404. ]
  41405. ))
  41406. characterMakers.push(() => makeCharacter(
  41407. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  41408. {
  41409. front: {
  41410. height: math.unit(19, "feet"),
  41411. name: "Front",
  41412. image: {
  41413. source: "./media/characters/fia-dreamweaver/front.svg",
  41414. extra: 1630/1504,
  41415. bottom: 25/1655
  41416. }
  41417. },
  41418. },
  41419. [
  41420. {
  41421. name: "Normal",
  41422. height: math.unit(19, "feet"),
  41423. default: true
  41424. },
  41425. ]
  41426. ))
  41427. characterMakers.push(() => makeCharacter(
  41428. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  41429. {
  41430. front: {
  41431. height: math.unit(5 + 4/12, "feet"),
  41432. name: "Front",
  41433. image: {
  41434. source: "./media/characters/artan/front.svg",
  41435. extra: 1618/1535,
  41436. bottom: 46/1664
  41437. }
  41438. },
  41439. back: {
  41440. height: math.unit(5 + 4/12, "feet"),
  41441. name: "Back",
  41442. image: {
  41443. source: "./media/characters/artan/back.svg",
  41444. extra: 1618/1543,
  41445. bottom: 31/1649
  41446. }
  41447. },
  41448. },
  41449. [
  41450. {
  41451. name: "Normal",
  41452. height: math.unit(5 + 4/12, "feet"),
  41453. default: true
  41454. },
  41455. ]
  41456. ))
  41457. characterMakers.push(() => makeCharacter(
  41458. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  41459. {
  41460. side: {
  41461. height: math.unit(182, "cm"),
  41462. weight: math.unit(1000, "lb"),
  41463. name: "Side",
  41464. image: {
  41465. source: "./media/characters/silver-dragon/side.svg",
  41466. extra: 710/287,
  41467. bottom: 88/798
  41468. }
  41469. },
  41470. },
  41471. [
  41472. {
  41473. name: "Normal",
  41474. height: math.unit(182, "cm"),
  41475. default: true
  41476. },
  41477. ]
  41478. ))
  41479. characterMakers.push(() => makeCharacter(
  41480. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  41481. {
  41482. side: {
  41483. height: math.unit(6 + 6/12, "feet"),
  41484. weight: math.unit(1.5, "tons"),
  41485. name: "Side",
  41486. image: {
  41487. source: "./media/characters/zephyr/side.svg",
  41488. extra: 1433/586,
  41489. bottom: 109/1542
  41490. }
  41491. },
  41492. },
  41493. [
  41494. {
  41495. name: "Normal",
  41496. height: math.unit(6 + 6/12, "feet"),
  41497. default: true
  41498. },
  41499. ]
  41500. ))
  41501. characterMakers.push(() => makeCharacter(
  41502. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  41503. {
  41504. side: {
  41505. height: math.unit(1, "feet"),
  41506. name: "Side",
  41507. image: {
  41508. source: "./media/characters/vixye/side.svg",
  41509. extra: 632/541,
  41510. bottom: 0/632
  41511. }
  41512. },
  41513. },
  41514. [
  41515. {
  41516. name: "Normal",
  41517. height: math.unit(1, "feet"),
  41518. default: true
  41519. },
  41520. {
  41521. name: "True",
  41522. height: math.unit(1e15, "multiverses")
  41523. },
  41524. ]
  41525. ))
  41526. characterMakers.push(() => makeCharacter(
  41527. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  41528. {
  41529. front: {
  41530. height: math.unit(8 + 2/12, "feet"),
  41531. weight: math.unit(650, "lb"),
  41532. name: "Front",
  41533. image: {
  41534. source: "./media/characters/darla-mac-lochlainn/front.svg",
  41535. extra: 1174/1137,
  41536. bottom: 82/1256
  41537. }
  41538. },
  41539. back: {
  41540. height: math.unit(8 + 2/12, "feet"),
  41541. weight: math.unit(650, "lb"),
  41542. name: "Back",
  41543. image: {
  41544. source: "./media/characters/darla-mac-lochlainn/back.svg",
  41545. extra: 1204/1157,
  41546. bottom: 46/1250
  41547. }
  41548. },
  41549. },
  41550. [
  41551. {
  41552. name: "Wildform",
  41553. height: math.unit(8 + 2/12, "feet"),
  41554. default: true
  41555. },
  41556. ]
  41557. ))
  41558. characterMakers.push(() => makeCharacter(
  41559. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  41560. {
  41561. front: {
  41562. height: math.unit(18, "feet"),
  41563. name: "Front",
  41564. image: {
  41565. source: "./media/characters/cyphin/front.svg",
  41566. extra: 970/886,
  41567. bottom: 42/1012
  41568. }
  41569. },
  41570. back: {
  41571. height: math.unit(18, "feet"),
  41572. name: "Back",
  41573. image: {
  41574. source: "./media/characters/cyphin/back.svg",
  41575. extra: 1009/894,
  41576. bottom: 24/1033
  41577. }
  41578. },
  41579. head: {
  41580. height: math.unit(5.05, "feet"),
  41581. name: "Head",
  41582. image: {
  41583. source: "./media/characters/cyphin/head.svg"
  41584. }
  41585. },
  41586. tailbud: {
  41587. height: math.unit(5, "feet"),
  41588. name: "Tailbud",
  41589. image: {
  41590. source: "./media/characters/cyphin/tailbud.svg"
  41591. }
  41592. },
  41593. },
  41594. [
  41595. ]
  41596. ))
  41597. characterMakers.push(() => makeCharacter(
  41598. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  41599. {
  41600. side: {
  41601. height: math.unit(10, "feet"),
  41602. weight: math.unit(6, "tons"),
  41603. name: "Side",
  41604. image: {
  41605. source: "./media/characters/raijin/side.svg",
  41606. extra: 1529/613,
  41607. bottom: 337/1866
  41608. }
  41609. },
  41610. },
  41611. [
  41612. {
  41613. name: "Normal",
  41614. height: math.unit(10, "feet"),
  41615. default: true
  41616. },
  41617. ]
  41618. ))
  41619. characterMakers.push(() => makeCharacter(
  41620. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  41621. {
  41622. side: {
  41623. height: math.unit(9, "feet"),
  41624. name: "Side",
  41625. image: {
  41626. source: "./media/characters/nilghais/side.svg",
  41627. extra: 1047/744,
  41628. bottom: 91/1138
  41629. }
  41630. },
  41631. head: {
  41632. height: math.unit(3.14, "feet"),
  41633. name: "Head",
  41634. image: {
  41635. source: "./media/characters/nilghais/head.svg"
  41636. }
  41637. },
  41638. mouth: {
  41639. height: math.unit(4.6, "feet"),
  41640. name: "Mouth",
  41641. image: {
  41642. source: "./media/characters/nilghais/mouth.svg"
  41643. }
  41644. },
  41645. wings: {
  41646. height: math.unit(24, "feet"),
  41647. name: "Wings",
  41648. image: {
  41649. source: "./media/characters/nilghais/wings.svg"
  41650. }
  41651. },
  41652. ass: {
  41653. height: math.unit(6.12, "feet"),
  41654. name: "Ass",
  41655. image: {
  41656. source: "./media/characters/nilghais/ass.svg"
  41657. }
  41658. },
  41659. },
  41660. [
  41661. {
  41662. name: "Normal",
  41663. height: math.unit(9, "feet"),
  41664. default: true
  41665. },
  41666. ]
  41667. ))
  41668. characterMakers.push(() => makeCharacter(
  41669. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  41670. {
  41671. regular: {
  41672. height: math.unit(16 + 2/12, "feet"),
  41673. weight: math.unit(2300, "lb"),
  41674. name: "Regular",
  41675. image: {
  41676. source: "./media/characters/zolgar/regular.svg",
  41677. extra: 1246/1004,
  41678. bottom: 124/1370
  41679. }
  41680. },
  41681. boxers: {
  41682. height: math.unit(16 + 2/12, "feet"),
  41683. weight: math.unit(2300, "lb"),
  41684. name: "Boxers",
  41685. image: {
  41686. source: "./media/characters/zolgar/boxers.svg",
  41687. extra: 1246/1004,
  41688. bottom: 124/1370
  41689. }
  41690. },
  41691. armored: {
  41692. height: math.unit(16 + 2/12, "feet"),
  41693. weight: math.unit(2300, "lb"),
  41694. name: "Armored",
  41695. image: {
  41696. source: "./media/characters/zolgar/armored.svg",
  41697. extra: 1246/1004,
  41698. bottom: 124/1370
  41699. }
  41700. },
  41701. goth: {
  41702. height: math.unit(16 + 2/12, "feet"),
  41703. weight: math.unit(2300, "lb"),
  41704. name: "Goth",
  41705. image: {
  41706. source: "./media/characters/zolgar/goth.svg",
  41707. extra: 1246/1004,
  41708. bottom: 124/1370
  41709. }
  41710. },
  41711. },
  41712. [
  41713. {
  41714. name: "Shrunken Down",
  41715. height: math.unit(9 + 2/12, "feet")
  41716. },
  41717. {
  41718. name: "Normal",
  41719. height: math.unit(16 + 2/12, "feet"),
  41720. default: true
  41721. },
  41722. ]
  41723. ))
  41724. characterMakers.push(() => makeCharacter(
  41725. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  41726. {
  41727. front: {
  41728. height: math.unit(6, "feet"),
  41729. weight: math.unit(168, "lb"),
  41730. name: "Front",
  41731. image: {
  41732. source: "./media/characters/luca/front.svg",
  41733. extra: 841/667,
  41734. bottom: 102/943
  41735. }
  41736. },
  41737. },
  41738. [
  41739. {
  41740. name: "Normal",
  41741. height: math.unit(6, "feet"),
  41742. default: true
  41743. },
  41744. ]
  41745. ))
  41746. characterMakers.push(() => makeCharacter(
  41747. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  41748. {
  41749. side: {
  41750. height: math.unit(7 + 3/12, "feet"),
  41751. weight: math.unit(312, "lb"),
  41752. name: "Side",
  41753. image: {
  41754. source: "./media/characters/zezo/side.svg",
  41755. extra: 1192/1067,
  41756. bottom: 63/1255
  41757. }
  41758. },
  41759. },
  41760. [
  41761. {
  41762. name: "Normal",
  41763. height: math.unit(7 + 3/12, "feet"),
  41764. default: true
  41765. },
  41766. ]
  41767. ))
  41768. characterMakers.push(() => makeCharacter(
  41769. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  41770. {
  41771. front: {
  41772. height: math.unit(5 + 5/12, "feet"),
  41773. weight: math.unit(170, "lb"),
  41774. name: "Front",
  41775. image: {
  41776. source: "./media/characters/mayso/front.svg",
  41777. extra: 1215/1108,
  41778. bottom: 16/1231
  41779. }
  41780. },
  41781. },
  41782. [
  41783. {
  41784. name: "Normal",
  41785. height: math.unit(5 + 5/12, "feet"),
  41786. default: true
  41787. },
  41788. ]
  41789. ))
  41790. characterMakers.push(() => makeCharacter(
  41791. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  41792. {
  41793. front: {
  41794. height: math.unit(4 + 3/12, "feet"),
  41795. weight: math.unit(80, "lb"),
  41796. name: "Front",
  41797. image: {
  41798. source: "./media/characters/hess/front.svg",
  41799. extra: 1200/1123,
  41800. bottom: 16/1216
  41801. }
  41802. },
  41803. },
  41804. [
  41805. {
  41806. name: "Normal",
  41807. height: math.unit(4 + 3/12, "feet"),
  41808. default: true
  41809. },
  41810. ]
  41811. ))
  41812. characterMakers.push(() => makeCharacter(
  41813. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  41814. {
  41815. front: {
  41816. height: math.unit(1.9, "meters"),
  41817. name: "Front",
  41818. image: {
  41819. source: "./media/characters/ashgar/front.svg",
  41820. extra: 1177/1146,
  41821. bottom: 99/1276
  41822. }
  41823. },
  41824. back: {
  41825. height: math.unit(1.9, "meters"),
  41826. name: "Back",
  41827. image: {
  41828. source: "./media/characters/ashgar/back.svg",
  41829. extra: 1201/1183,
  41830. bottom: 53/1254
  41831. }
  41832. },
  41833. feral: {
  41834. height: math.unit(1.4, "meters"),
  41835. name: "Feral",
  41836. image: {
  41837. source: "./media/characters/ashgar/feral.svg",
  41838. extra: 370/345,
  41839. bottom: 45/415
  41840. }
  41841. },
  41842. },
  41843. [
  41844. {
  41845. name: "Normal",
  41846. height: math.unit(1.9, "meters"),
  41847. default: true
  41848. },
  41849. ]
  41850. ))
  41851. characterMakers.push(() => makeCharacter(
  41852. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  41853. {
  41854. regular: {
  41855. height: math.unit(6, "feet"),
  41856. weight: math.unit(220, "lb"),
  41857. name: "Regular",
  41858. image: {
  41859. source: "./media/characters/phillip/regular.svg",
  41860. extra: 1373/1277,
  41861. bottom: 75/1448
  41862. }
  41863. },
  41864. dressed: {
  41865. height: math.unit(6, "feet"),
  41866. weight: math.unit(220, "lb"),
  41867. name: "Dressed",
  41868. image: {
  41869. source: "./media/characters/phillip/dressed.svg",
  41870. extra: 1373/1277,
  41871. bottom: 75/1448
  41872. }
  41873. },
  41874. paw: {
  41875. height: math.unit(1.44, "feet"),
  41876. name: "Paw",
  41877. image: {
  41878. source: "./media/characters/phillip/paw.svg"
  41879. }
  41880. },
  41881. },
  41882. [
  41883. {
  41884. name: "Normal",
  41885. height: math.unit(6, "feet"),
  41886. default: true
  41887. },
  41888. ]
  41889. ))
  41890. characterMakers.push(() => makeCharacter(
  41891. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  41892. {
  41893. side: {
  41894. height: math.unit(42, "feet"),
  41895. name: "Side",
  41896. image: {
  41897. source: "./media/characters/uvula/side.svg",
  41898. extra: 683/586,
  41899. bottom: 60/743
  41900. }
  41901. },
  41902. front: {
  41903. height: math.unit(42, "feet"),
  41904. name: "Front",
  41905. image: {
  41906. source: "./media/characters/uvula/front.svg",
  41907. extra: 705/613,
  41908. bottom: 54/759
  41909. }
  41910. },
  41911. maw: {
  41912. height: math.unit(23.5, "feet"),
  41913. name: "Maw",
  41914. image: {
  41915. source: "./media/characters/uvula/maw.svg"
  41916. }
  41917. },
  41918. },
  41919. [
  41920. {
  41921. name: "Original Size",
  41922. height: math.unit(14, "inches")
  41923. },
  41924. {
  41925. name: "Human Size",
  41926. height: math.unit(6, "feet")
  41927. },
  41928. {
  41929. name: "Big",
  41930. height: math.unit(42, "feet"),
  41931. default: true
  41932. },
  41933. {
  41934. name: "Bigger",
  41935. height: math.unit(100, "feet")
  41936. },
  41937. ]
  41938. ))
  41939. characterMakers.push(() => makeCharacter(
  41940. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  41941. {
  41942. front: {
  41943. height: math.unit(5 + 11/12, "feet"),
  41944. name: "Front",
  41945. image: {
  41946. source: "./media/characters/lannah/front.svg",
  41947. extra: 1208/1113,
  41948. bottom: 97/1305
  41949. }
  41950. },
  41951. },
  41952. [
  41953. {
  41954. name: "Normal",
  41955. height: math.unit(5 + 11/12, "feet"),
  41956. default: true
  41957. },
  41958. ]
  41959. ))
  41960. characterMakers.push(() => makeCharacter(
  41961. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  41962. {
  41963. front: {
  41964. height: math.unit(6 + 3/12, "feet"),
  41965. weight: math.unit(3.5, "tons"),
  41966. name: "Front",
  41967. image: {
  41968. source: "./media/characters/emberflame/front.svg",
  41969. extra: 1198/672,
  41970. bottom: 82/1280
  41971. }
  41972. },
  41973. side: {
  41974. height: math.unit(6 + 3/12, "feet"),
  41975. weight: math.unit(3.5, "tons"),
  41976. name: "Side",
  41977. image: {
  41978. source: "./media/characters/emberflame/side.svg",
  41979. extra: 938/527,
  41980. bottom: 56/994
  41981. }
  41982. },
  41983. },
  41984. [
  41985. {
  41986. name: "Normal",
  41987. height: math.unit(6 + 3/12, "feet"),
  41988. default: true
  41989. },
  41990. ]
  41991. ))
  41992. characterMakers.push(() => makeCharacter(
  41993. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  41994. {
  41995. side: {
  41996. height: math.unit(17.5, "feet"),
  41997. weight: math.unit(35, "tons"),
  41998. name: "Side",
  41999. image: {
  42000. source: "./media/characters/sophie-ambrose/side.svg",
  42001. extra: 1573/1242,
  42002. bottom: 71/1644
  42003. }
  42004. },
  42005. maw: {
  42006. height: math.unit(7.4, "feet"),
  42007. name: "Maw",
  42008. image: {
  42009. source: "./media/characters/sophie-ambrose/maw.svg"
  42010. }
  42011. },
  42012. },
  42013. [
  42014. {
  42015. name: "Normal",
  42016. height: math.unit(17.5, "feet"),
  42017. default: true
  42018. },
  42019. ]
  42020. ))
  42021. characterMakers.push(() => makeCharacter(
  42022. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  42023. {
  42024. front: {
  42025. height: math.unit(280, "feet"),
  42026. weight: math.unit(550, "tons"),
  42027. name: "Front",
  42028. image: {
  42029. source: "./media/characters/king-mugi/front.svg",
  42030. extra: 1102/947,
  42031. bottom: 104/1206
  42032. }
  42033. },
  42034. },
  42035. [
  42036. {
  42037. name: "King Mugi",
  42038. height: math.unit(280, "feet"),
  42039. default: true
  42040. },
  42041. ]
  42042. ))
  42043. characterMakers.push(() => makeCharacter(
  42044. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  42045. {
  42046. front: {
  42047. height: math.unit(64, "meters"),
  42048. name: "Front",
  42049. image: {
  42050. source: "./media/characters/nova-fox/front.svg",
  42051. extra: 1310/1246,
  42052. bottom: 65/1375
  42053. }
  42054. },
  42055. },
  42056. [
  42057. {
  42058. name: "Macro",
  42059. height: math.unit(64, "meters"),
  42060. default: true
  42061. },
  42062. ]
  42063. ))
  42064. characterMakers.push(() => makeCharacter(
  42065. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  42066. {
  42067. front: {
  42068. height: math.unit(6 + 3/12, "feet"),
  42069. weight: math.unit(170, "lb"),
  42070. name: "Front",
  42071. image: {
  42072. source: "./media/characters/sam-bat/front.svg",
  42073. extra: 1601/1411,
  42074. bottom: 125/1726
  42075. }
  42076. },
  42077. back: {
  42078. height: math.unit(6 + 3/12, "feet"),
  42079. weight: math.unit(170, "lb"),
  42080. name: "Back",
  42081. image: {
  42082. source: "./media/characters/sam-bat/back.svg",
  42083. extra: 1577/1405,
  42084. bottom: 58/1635
  42085. }
  42086. },
  42087. },
  42088. [
  42089. {
  42090. name: "Normal",
  42091. height: math.unit(6 + 3/12, "feet"),
  42092. default: true
  42093. },
  42094. ]
  42095. ))
  42096. characterMakers.push(() => makeCharacter(
  42097. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  42098. {
  42099. front: {
  42100. height: math.unit(59, "feet"),
  42101. weight: math.unit(40000, "lb"),
  42102. name: "Front",
  42103. image: {
  42104. source: "./media/characters/inari/front.svg",
  42105. extra: 1884/1350,
  42106. bottom: 95/1979
  42107. }
  42108. },
  42109. },
  42110. [
  42111. {
  42112. name: "Gigantamax",
  42113. height: math.unit(59, "feet"),
  42114. default: true
  42115. },
  42116. ]
  42117. ))
  42118. characterMakers.push(() => makeCharacter(
  42119. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  42120. {
  42121. front: {
  42122. height: math.unit(5 + 8/12, "feet"),
  42123. name: "Front",
  42124. image: {
  42125. source: "./media/characters/elizabeth/front.svg",
  42126. extra: 1395/1298,
  42127. bottom: 54/1449
  42128. }
  42129. },
  42130. mouth: {
  42131. height: math.unit(1.97, "feet"),
  42132. name: "Mouth",
  42133. image: {
  42134. source: "./media/characters/elizabeth/mouth.svg"
  42135. }
  42136. },
  42137. foot: {
  42138. height: math.unit(1.17, "feet"),
  42139. name: "Foot",
  42140. image: {
  42141. source: "./media/characters/elizabeth/foot.svg"
  42142. }
  42143. },
  42144. },
  42145. [
  42146. {
  42147. name: "Normal",
  42148. height: math.unit(5 + 8/12, "feet"),
  42149. default: true
  42150. },
  42151. {
  42152. name: "Minimacro",
  42153. height: math.unit(18, "feet")
  42154. },
  42155. {
  42156. name: "Macro",
  42157. height: math.unit(180, "feet")
  42158. },
  42159. ]
  42160. ))
  42161. characterMakers.push(() => makeCharacter(
  42162. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  42163. {
  42164. front: {
  42165. height: math.unit(5 + 2/12, "feet"),
  42166. name: "Front",
  42167. image: {
  42168. source: "./media/characters/october-gossamer/front.svg",
  42169. extra: 505/454,
  42170. bottom: 7/512
  42171. }
  42172. },
  42173. back: {
  42174. height: math.unit(5 + 2/12, "feet"),
  42175. name: "Back",
  42176. image: {
  42177. source: "./media/characters/october-gossamer/back.svg",
  42178. extra: 501/454,
  42179. bottom: 11/512
  42180. }
  42181. },
  42182. },
  42183. [
  42184. {
  42185. name: "Normal",
  42186. height: math.unit(5 + 2/12, "feet"),
  42187. default: true
  42188. },
  42189. ]
  42190. ))
  42191. characterMakers.push(() => makeCharacter(
  42192. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  42193. {
  42194. front: {
  42195. height: math.unit(5, "feet"),
  42196. name: "Front",
  42197. image: {
  42198. source: "./media/characters/epiglottis/front.svg",
  42199. extra: 923/849,
  42200. bottom: 17/940
  42201. }
  42202. },
  42203. },
  42204. [
  42205. {
  42206. name: "Original Size",
  42207. height: math.unit(10, "inches")
  42208. },
  42209. {
  42210. name: "Human Size",
  42211. height: math.unit(5, "feet"),
  42212. default: true
  42213. },
  42214. {
  42215. name: "Big",
  42216. height: math.unit(25, "feet")
  42217. },
  42218. {
  42219. name: "Bigger",
  42220. height: math.unit(50, "feet")
  42221. },
  42222. {
  42223. name: "oh lawd",
  42224. height: math.unit(75, "feet")
  42225. },
  42226. ]
  42227. ))
  42228. characterMakers.push(() => makeCharacter(
  42229. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  42230. {
  42231. front: {
  42232. height: math.unit(2 + 4/12, "feet"),
  42233. weight: math.unit(60, "lb"),
  42234. name: "Front",
  42235. image: {
  42236. source: "./media/characters/lerm/front.svg",
  42237. extra: 796/790,
  42238. bottom: 79/875
  42239. }
  42240. },
  42241. },
  42242. [
  42243. {
  42244. name: "Normal",
  42245. height: math.unit(2 + 4/12, "feet"),
  42246. default: true
  42247. },
  42248. ]
  42249. ))
  42250. characterMakers.push(() => makeCharacter(
  42251. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  42252. {
  42253. front: {
  42254. height: math.unit(5.5, "feet"),
  42255. weight: math.unit(130, "lb"),
  42256. name: "Front",
  42257. image: {
  42258. source: "./media/characters/xena-nebadon/front.svg",
  42259. extra: 1828/1730,
  42260. bottom: 79/1907
  42261. }
  42262. },
  42263. },
  42264. [
  42265. {
  42266. name: "Tiny Puppy",
  42267. height: math.unit(3, "inches")
  42268. },
  42269. {
  42270. name: "Normal",
  42271. height: math.unit(5.5, "feet"),
  42272. default: true
  42273. },
  42274. {
  42275. name: "Lotta Lady",
  42276. height: math.unit(12, "feet")
  42277. },
  42278. {
  42279. name: "Pretty Big",
  42280. height: math.unit(100, "feet")
  42281. },
  42282. {
  42283. name: "Big",
  42284. height: math.unit(500, "feet")
  42285. },
  42286. {
  42287. name: "Skyscraper Toys",
  42288. height: math.unit(2500, "feet")
  42289. },
  42290. {
  42291. name: "Plane Catcher",
  42292. height: math.unit(8, "miles")
  42293. },
  42294. {
  42295. name: "Planet Toys",
  42296. height: math.unit(15, "earths")
  42297. },
  42298. {
  42299. name: "Stardust",
  42300. height: math.unit(0.25, "galaxies")
  42301. },
  42302. {
  42303. name: "Snacks",
  42304. height: math.unit(70, "universes")
  42305. },
  42306. ]
  42307. ))
  42308. characterMakers.push(() => makeCharacter(
  42309. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  42310. {
  42311. front: {
  42312. height: math.unit(1.6, "meters"),
  42313. weight: math.unit(60, "kg"),
  42314. name: "Front",
  42315. image: {
  42316. source: "./media/characters/bounty/front.svg",
  42317. extra: 1426/1308,
  42318. bottom: 15/1441
  42319. }
  42320. },
  42321. back: {
  42322. height: math.unit(1.6, "meters"),
  42323. weight: math.unit(60, "kg"),
  42324. name: "Back",
  42325. image: {
  42326. source: "./media/characters/bounty/back.svg",
  42327. extra: 1417/1307,
  42328. bottom: 8/1425
  42329. }
  42330. },
  42331. },
  42332. [
  42333. {
  42334. name: "Normal",
  42335. height: math.unit(1.6, "meters"),
  42336. default: true
  42337. },
  42338. {
  42339. name: "Macro",
  42340. height: math.unit(300, "meters")
  42341. },
  42342. ]
  42343. ))
  42344. characterMakers.push(() => makeCharacter(
  42345. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  42346. {
  42347. front: {
  42348. height: math.unit(2 + 8/12, "feet"),
  42349. weight: math.unit(15, "lb"),
  42350. name: "Front",
  42351. image: {
  42352. source: "./media/characters/mochi/front.svg",
  42353. extra: 1022/852,
  42354. bottom: 435/1457
  42355. }
  42356. },
  42357. back: {
  42358. height: math.unit(2 + 8/12, "feet"),
  42359. weight: math.unit(15, "lb"),
  42360. name: "Back",
  42361. image: {
  42362. source: "./media/characters/mochi/back.svg",
  42363. extra: 1335/1119,
  42364. bottom: 39/1374
  42365. }
  42366. },
  42367. bird: {
  42368. height: math.unit(2 + 8/12, "feet"),
  42369. weight: math.unit(15, "lb"),
  42370. name: "Bird",
  42371. image: {
  42372. source: "./media/characters/mochi/bird.svg",
  42373. extra: 1251/1113,
  42374. bottom: 178/1429
  42375. }
  42376. },
  42377. kaiju: {
  42378. height: math.unit(154, "feet"),
  42379. weight: math.unit(1e7, "lb"),
  42380. name: "Kaiju",
  42381. image: {
  42382. source: "./media/characters/mochi/kaiju.svg",
  42383. extra: 460/324,
  42384. bottom: 40/500
  42385. }
  42386. },
  42387. head: {
  42388. height: math.unit(1.21, "feet"),
  42389. name: "Head",
  42390. image: {
  42391. source: "./media/characters/mochi/head.svg"
  42392. }
  42393. },
  42394. alternateTail: {
  42395. height: math.unit(2 + 8/12, "feet"),
  42396. weight: math.unit(45, "lb"),
  42397. name: "Alternate Tail",
  42398. image: {
  42399. source: "./media/characters/mochi/alternate-tail.svg",
  42400. extra: 139/76,
  42401. bottom: 45/184
  42402. }
  42403. },
  42404. },
  42405. [
  42406. {
  42407. name: "Micro",
  42408. height: math.unit(2, "inches")
  42409. },
  42410. {
  42411. name: "Normal",
  42412. height: math.unit(2 + 8/12, "feet"),
  42413. default: true
  42414. },
  42415. {
  42416. name: "Macro",
  42417. height: math.unit(106, "feet")
  42418. },
  42419. ]
  42420. ))
  42421. characterMakers.push(() => makeCharacter(
  42422. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  42423. {
  42424. front: {
  42425. height: math.unit(5.67, "feet"),
  42426. weight: math.unit(135, "lb"),
  42427. name: "Front",
  42428. image: {
  42429. source: "./media/characters/sarel/front.svg",
  42430. extra: 865/788,
  42431. bottom: 97/962
  42432. }
  42433. },
  42434. back: {
  42435. height: math.unit(5.67, "feet"),
  42436. weight: math.unit(135, "lb"),
  42437. name: "Back",
  42438. image: {
  42439. source: "./media/characters/sarel/back.svg",
  42440. extra: 857/777,
  42441. bottom: 32/889
  42442. }
  42443. },
  42444. chozoan: {
  42445. height: math.unit(5.67, "feet"),
  42446. weight: math.unit(135, "lb"),
  42447. name: "Chozoan",
  42448. image: {
  42449. source: "./media/characters/sarel/chozoan.svg",
  42450. extra: 865/788,
  42451. bottom: 97/962
  42452. }
  42453. },
  42454. current: {
  42455. height: math.unit(5.67, "feet"),
  42456. weight: math.unit(135, "lb"),
  42457. name: "Current",
  42458. image: {
  42459. source: "./media/characters/sarel/current.svg",
  42460. extra: 865/788,
  42461. bottom: 97/962
  42462. }
  42463. },
  42464. head: {
  42465. height: math.unit(1.77, "feet"),
  42466. name: "Head",
  42467. image: {
  42468. source: "./media/characters/sarel/head.svg"
  42469. }
  42470. },
  42471. claws: {
  42472. height: math.unit(1.8, "feet"),
  42473. name: "Claws",
  42474. image: {
  42475. source: "./media/characters/sarel/claws.svg"
  42476. }
  42477. },
  42478. clawsAlt: {
  42479. height: math.unit(1.8, "feet"),
  42480. name: "Claws-alt",
  42481. image: {
  42482. source: "./media/characters/sarel/claws-alt.svg"
  42483. }
  42484. },
  42485. },
  42486. [
  42487. {
  42488. name: "Normal",
  42489. height: math.unit(5.67, "feet"),
  42490. default: true
  42491. },
  42492. ]
  42493. ))
  42494. characterMakers.push(() => makeCharacter(
  42495. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  42496. {
  42497. front: {
  42498. height: math.unit(5500, "feet"),
  42499. name: "Front",
  42500. image: {
  42501. source: "./media/characters/alyonia/front.svg",
  42502. extra: 1200/1135,
  42503. bottom: 29/1229
  42504. }
  42505. },
  42506. back: {
  42507. height: math.unit(5500, "feet"),
  42508. name: "Back",
  42509. image: {
  42510. source: "./media/characters/alyonia/back.svg",
  42511. extra: 1205/1138,
  42512. bottom: 10/1215
  42513. }
  42514. },
  42515. },
  42516. [
  42517. {
  42518. name: "Small",
  42519. height: math.unit(10, "feet")
  42520. },
  42521. {
  42522. name: "Macro",
  42523. height: math.unit(500, "feet")
  42524. },
  42525. {
  42526. name: "Mega Macro",
  42527. height: math.unit(5500, "feet"),
  42528. default: true
  42529. },
  42530. {
  42531. name: "Mega Macro+",
  42532. height: math.unit(500000, "feet")
  42533. },
  42534. {
  42535. name: "Giga Macro",
  42536. height: math.unit(3000, "miles")
  42537. },
  42538. {
  42539. name: "Tera Macro",
  42540. height: math.unit(2.8e6, "miles")
  42541. },
  42542. {
  42543. name: "Galactic",
  42544. height: math.unit(120000, "lightyears")
  42545. },
  42546. ]
  42547. ))
  42548. characterMakers.push(() => makeCharacter(
  42549. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  42550. {
  42551. werewolf: {
  42552. height: math.unit(8, "feet"),
  42553. weight: math.unit(425, "lb"),
  42554. name: "Werewolf",
  42555. image: {
  42556. source: "./media/characters/autumn/werewolf.svg",
  42557. extra: 2154/2031,
  42558. bottom: 160/2314
  42559. }
  42560. },
  42561. human: {
  42562. height: math.unit(5 + 8/12, "feet"),
  42563. weight: math.unit(150, "lb"),
  42564. name: "Human",
  42565. image: {
  42566. source: "./media/characters/autumn/human.svg",
  42567. extra: 1200/1149,
  42568. bottom: 30/1230
  42569. }
  42570. },
  42571. },
  42572. [
  42573. {
  42574. name: "Normal",
  42575. height: math.unit(8, "feet"),
  42576. default: true
  42577. },
  42578. ]
  42579. ))
  42580. characterMakers.push(() => makeCharacter(
  42581. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  42582. {
  42583. front: {
  42584. height: math.unit(8 + 5/12, "feet"),
  42585. weight: math.unit(825, "lb"),
  42586. name: "Front",
  42587. image: {
  42588. source: "./media/characters/cobalt-charizard/front.svg",
  42589. extra: 1268/1155,
  42590. bottom: 122/1390
  42591. }
  42592. },
  42593. side: {
  42594. height: math.unit(8 + 5/12, "feet"),
  42595. weight: math.unit(825, "lb"),
  42596. name: "Side",
  42597. image: {
  42598. source: "./media/characters/cobalt-charizard/side.svg",
  42599. extra: 1348/1257,
  42600. bottom: 58/1406
  42601. }
  42602. },
  42603. gMax: {
  42604. height: math.unit(134 + 11/12, "feet"),
  42605. name: "G-Max",
  42606. image: {
  42607. source: "./media/characters/cobalt-charizard/g-max.svg",
  42608. extra: 1835/1541,
  42609. bottom: 151/1986
  42610. }
  42611. },
  42612. },
  42613. [
  42614. {
  42615. name: "Normal",
  42616. height: math.unit(8 + 5/12, "feet"),
  42617. default: true
  42618. },
  42619. ]
  42620. ))
  42621. characterMakers.push(() => makeCharacter(
  42622. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  42623. {
  42624. front: {
  42625. height: math.unit(6 + 3/12, "feet"),
  42626. weight: math.unit(210, "lb"),
  42627. name: "Front",
  42628. image: {
  42629. source: "./media/characters/stella/front.svg",
  42630. extra: 3549/3335,
  42631. bottom: 51/3600
  42632. }
  42633. },
  42634. },
  42635. [
  42636. {
  42637. name: "Normal",
  42638. height: math.unit(6 + 3/12, "feet"),
  42639. default: true
  42640. },
  42641. ]
  42642. ))
  42643. characterMakers.push(() => makeCharacter(
  42644. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  42645. {
  42646. front: {
  42647. height: math.unit(5, "feet"),
  42648. weight: math.unit(90, "lb"),
  42649. name: "Front",
  42650. image: {
  42651. source: "./media/characters/riley-bishop/front.svg",
  42652. extra: 1450/1428,
  42653. bottom: 152/1602
  42654. }
  42655. },
  42656. },
  42657. [
  42658. {
  42659. name: "Normal",
  42660. height: math.unit(5, "feet"),
  42661. default: true
  42662. },
  42663. ]
  42664. ))
  42665. characterMakers.push(() => makeCharacter(
  42666. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  42667. {
  42668. side: {
  42669. height: math.unit(8 + 2/12, "feet"),
  42670. weight: math.unit(500, "kg"),
  42671. name: "Side",
  42672. image: {
  42673. source: "./media/characters/theo-arcanine/side.svg",
  42674. extra: 1342/1074,
  42675. bottom: 111/1453
  42676. }
  42677. },
  42678. },
  42679. [
  42680. {
  42681. name: "Normal",
  42682. height: math.unit(8 + 2/12, "feet"),
  42683. default: true
  42684. },
  42685. ]
  42686. ))
  42687. characterMakers.push(() => makeCharacter(
  42688. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  42689. {
  42690. front: {
  42691. height: math.unit(4, "feet"),
  42692. name: "Front",
  42693. image: {
  42694. source: "./media/characters/kali/front.svg",
  42695. extra: 1921/1357,
  42696. bottom: 70/1991
  42697. }
  42698. },
  42699. },
  42700. [
  42701. {
  42702. name: "Normal",
  42703. height: math.unit(4, "feet"),
  42704. default: true
  42705. },
  42706. {
  42707. name: "Macro",
  42708. height: math.unit(32, "meters")
  42709. },
  42710. {
  42711. name: "Macro+",
  42712. height: math.unit(150, "meters")
  42713. },
  42714. {
  42715. name: "Megamacro",
  42716. height: math.unit(7500, "meters")
  42717. },
  42718. {
  42719. name: "Megamacro+",
  42720. height: math.unit(80, "kilometers")
  42721. },
  42722. ]
  42723. ))
  42724. characterMakers.push(() => makeCharacter(
  42725. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  42726. {
  42727. side: {
  42728. height: math.unit(5 + 11/12, "feet"),
  42729. weight: math.unit(236, "lb"),
  42730. name: "Side",
  42731. image: {
  42732. source: "./media/characters/gapp/side.svg",
  42733. extra: 775/340,
  42734. bottom: 58/833
  42735. }
  42736. },
  42737. mouth: {
  42738. height: math.unit(2.98, "feet"),
  42739. name: "Mouth",
  42740. image: {
  42741. source: "./media/characters/gapp/mouth.svg"
  42742. }
  42743. },
  42744. },
  42745. [
  42746. {
  42747. name: "Normal",
  42748. height: math.unit(5 + 1/12, "feet"),
  42749. default: true
  42750. },
  42751. ]
  42752. ))
  42753. characterMakers.push(() => makeCharacter(
  42754. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  42755. {
  42756. front: {
  42757. height: math.unit(6, "feet"),
  42758. name: "Front",
  42759. image: {
  42760. source: "./media/characters/persephone/front.svg",
  42761. extra: 1895/1717,
  42762. bottom: 96/1991
  42763. }
  42764. },
  42765. back: {
  42766. height: math.unit(6, "feet"),
  42767. name: "Back",
  42768. image: {
  42769. source: "./media/characters/persephone/back.svg",
  42770. extra: 1868/1679,
  42771. bottom: 26/1894
  42772. }
  42773. },
  42774. casual: {
  42775. height: math.unit(6, "feet"),
  42776. name: "Casual",
  42777. image: {
  42778. source: "./media/characters/persephone/casual.svg",
  42779. extra: 1713/1541,
  42780. bottom: 76/1789
  42781. }
  42782. },
  42783. },
  42784. [
  42785. {
  42786. name: "Human Size",
  42787. height: math.unit(6, "feet")
  42788. },
  42789. {
  42790. name: "Big Steppy",
  42791. height: math.unit(600, "meters"),
  42792. default: true
  42793. },
  42794. {
  42795. name: "Galaxy Brain",
  42796. height: math.unit(1, "zettameter")
  42797. },
  42798. ]
  42799. ))
  42800. characterMakers.push(() => makeCharacter(
  42801. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  42802. {
  42803. front: {
  42804. height: math.unit(1.85, "meters"),
  42805. name: "Front",
  42806. image: {
  42807. source: "./media/characters/riley-foxthing/front.svg",
  42808. extra: 1495/1354,
  42809. bottom: 122/1617
  42810. }
  42811. },
  42812. frontAlt: {
  42813. height: math.unit(1.85, "meters"),
  42814. name: "Front (Alt)",
  42815. image: {
  42816. source: "./media/characters/riley-foxthing/front-alt.svg",
  42817. extra: 1572/1389,
  42818. bottom: 116/1688
  42819. }
  42820. },
  42821. },
  42822. [
  42823. {
  42824. name: "Normal Sized",
  42825. height: math.unit(1.85, "meters"),
  42826. default: true
  42827. },
  42828. {
  42829. name: "Quite Sizable",
  42830. height: math.unit(5, "meters")
  42831. },
  42832. {
  42833. name: "Rather Large",
  42834. height: math.unit(20, "meters")
  42835. },
  42836. {
  42837. name: "Macro",
  42838. height: math.unit(450, "meters")
  42839. },
  42840. {
  42841. name: "Giga",
  42842. height: math.unit(5, "km")
  42843. },
  42844. ]
  42845. ))
  42846. characterMakers.push(() => makeCharacter(
  42847. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  42848. {
  42849. front: {
  42850. height: math.unit(6, "feet"),
  42851. weight: math.unit(200, "lb"),
  42852. name: "Front",
  42853. image: {
  42854. source: "./media/characters/blizzard/front.svg",
  42855. extra: 1136/990,
  42856. bottom: 136/1272
  42857. }
  42858. },
  42859. back: {
  42860. height: math.unit(6, "feet"),
  42861. weight: math.unit(200, "lb"),
  42862. name: "Back",
  42863. image: {
  42864. source: "./media/characters/blizzard/back.svg",
  42865. extra: 1175/1034,
  42866. bottom: 97/1272
  42867. }
  42868. },
  42869. sitting: {
  42870. height: math.unit(3.725, "feet"),
  42871. weight: math.unit(200, "lb"),
  42872. name: "Sitting",
  42873. image: {
  42874. source: "./media/characters/blizzard/sitting.svg",
  42875. extra: 581/485,
  42876. bottom: 90/671
  42877. }
  42878. },
  42879. frontWizard: {
  42880. height: math.unit(7.9, "feet"),
  42881. weight: math.unit(200, "lb"),
  42882. name: "Front (Wizard)",
  42883. image: {
  42884. source: "./media/characters/blizzard/front-wizard.svg"
  42885. }
  42886. },
  42887. backWizard: {
  42888. height: math.unit(7.9, "feet"),
  42889. weight: math.unit(200, "lb"),
  42890. name: "Back (Wizard)",
  42891. image: {
  42892. source: "./media/characters/blizzard/back-wizard.svg"
  42893. }
  42894. },
  42895. frontNsfw: {
  42896. height: math.unit(6, "feet"),
  42897. weight: math.unit(200, "lb"),
  42898. name: "Front (NSFW)",
  42899. image: {
  42900. source: "./media/characters/blizzard/front-nsfw.svg",
  42901. extra: 1136/990,
  42902. bottom: 136/1272
  42903. }
  42904. },
  42905. backNsfw: {
  42906. height: math.unit(6, "feet"),
  42907. weight: math.unit(200, "lb"),
  42908. name: "Back (NSFW)",
  42909. image: {
  42910. source: "./media/characters/blizzard/back-nsfw.svg",
  42911. extra: 1175/1034,
  42912. bottom: 97/1272
  42913. }
  42914. },
  42915. sittingNsfw: {
  42916. height: math.unit(3.725, "feet"),
  42917. weight: math.unit(200, "lb"),
  42918. name: "Sitting (NSFW)",
  42919. image: {
  42920. source: "./media/characters/blizzard/sitting-nsfw.svg",
  42921. extra: 581/485,
  42922. bottom: 90/671
  42923. }
  42924. },
  42925. wizardFrontNsfw: {
  42926. height: math.unit(7.9, "feet"),
  42927. weight: math.unit(200, "lb"),
  42928. name: "Wizard (Front, NSFW)",
  42929. image: {
  42930. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  42931. }
  42932. },
  42933. },
  42934. [
  42935. {
  42936. name: "Normal",
  42937. height: math.unit(6, "feet"),
  42938. default: true
  42939. },
  42940. ]
  42941. ))
  42942. characterMakers.push(() => makeCharacter(
  42943. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  42944. {
  42945. front: {
  42946. height: math.unit(5 + 2/12, "feet"),
  42947. name: "Front",
  42948. image: {
  42949. source: "./media/characters/lumi/front.svg",
  42950. extra: 1328/1268,
  42951. bottom: 103/1431
  42952. }
  42953. },
  42954. back: {
  42955. height: math.unit(5 + 2/12, "feet"),
  42956. name: "Back",
  42957. image: {
  42958. source: "./media/characters/lumi/back.svg",
  42959. extra: 1381/1327,
  42960. bottom: 43/1424
  42961. }
  42962. },
  42963. },
  42964. [
  42965. {
  42966. name: "Normal",
  42967. height: math.unit(5 + 2/12, "feet"),
  42968. default: true
  42969. },
  42970. ]
  42971. ))
  42972. characterMakers.push(() => makeCharacter(
  42973. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  42974. {
  42975. front: {
  42976. height: math.unit(5 + 9/12, "feet"),
  42977. name: "Front",
  42978. image: {
  42979. source: "./media/characters/aliya-cotton/front.svg",
  42980. extra: 577/564,
  42981. bottom: 29/606
  42982. }
  42983. },
  42984. },
  42985. [
  42986. {
  42987. name: "Normal",
  42988. height: math.unit(5 + 9/12, "feet"),
  42989. default: true
  42990. },
  42991. ]
  42992. ))
  42993. characterMakers.push(() => makeCharacter(
  42994. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  42995. {
  42996. front: {
  42997. height: math.unit(2.7, "meters"),
  42998. weight: math.unit(25000, "lb"),
  42999. name: "Front",
  43000. image: {
  43001. source: "./media/characters/noah-luxray/front.svg",
  43002. extra: 1644/825,
  43003. bottom: 339/1983
  43004. }
  43005. },
  43006. side: {
  43007. height: math.unit(2.97, "meters"),
  43008. weight: math.unit(25000, "lb"),
  43009. name: "Side",
  43010. image: {
  43011. source: "./media/characters/noah-luxray/side.svg",
  43012. extra: 1319/650,
  43013. bottom: 163/1482
  43014. }
  43015. },
  43016. dick: {
  43017. height: math.unit(7.4, "feet"),
  43018. weight: math.unit(2500, "lb"),
  43019. name: "Dick",
  43020. image: {
  43021. source: "./media/characters/noah-luxray/dick.svg"
  43022. }
  43023. },
  43024. dickAlt: {
  43025. height: math.unit(10.83, "feet"),
  43026. weight: math.unit(2500, "lb"),
  43027. name: "Dick-alt",
  43028. image: {
  43029. source: "./media/characters/noah-luxray/dick-alt.svg"
  43030. }
  43031. },
  43032. },
  43033. [
  43034. {
  43035. name: "BIG",
  43036. height: math.unit(2.7, "meters"),
  43037. default: true
  43038. },
  43039. ]
  43040. ))
  43041. characterMakers.push(() => makeCharacter(
  43042. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  43043. {
  43044. standing: {
  43045. height: math.unit(183, "cm"),
  43046. weight: math.unit(68, "kg"),
  43047. name: "Standing",
  43048. image: {
  43049. source: "./media/characters/arion/standing.svg",
  43050. extra: 1869/1807,
  43051. bottom: 93/1962
  43052. }
  43053. },
  43054. reclining: {
  43055. height: math.unit(70.5, "cm"),
  43056. weight: math.unit(68, "lb"),
  43057. name: "Reclining",
  43058. image: {
  43059. source: "./media/characters/arion/reclining.svg",
  43060. extra: 937/870,
  43061. bottom: 63/1000
  43062. }
  43063. },
  43064. },
  43065. [
  43066. {
  43067. name: "Colossus Size, Low",
  43068. height: math.unit(33, "meters"),
  43069. default: true
  43070. },
  43071. {
  43072. name: "Colossus Size, Mid",
  43073. height: math.unit(52, "meters")
  43074. },
  43075. {
  43076. name: "Colossus Size, High",
  43077. height: math.unit(60, "meters")
  43078. },
  43079. {
  43080. name: "Titan Size, Low",
  43081. height: math.unit(91, "meters"),
  43082. },
  43083. {
  43084. name: "Titan Size, Mid",
  43085. height: math.unit(122, "meters")
  43086. },
  43087. {
  43088. name: "Titan Size, High",
  43089. height: math.unit(162, "meters")
  43090. },
  43091. ]
  43092. ))
  43093. characterMakers.push(() => makeCharacter(
  43094. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  43095. {
  43096. front: {
  43097. height: math.unit(53, "meters"),
  43098. name: "Front",
  43099. image: {
  43100. source: "./media/characters/stellar-marbey/front.svg",
  43101. extra: 1913/1805,
  43102. bottom: 92/2005
  43103. }
  43104. },
  43105. back: {
  43106. height: math.unit(53, "meters"),
  43107. name: "Back",
  43108. image: {
  43109. source: "./media/characters/stellar-marbey/back.svg",
  43110. extra: 1960/1851,
  43111. bottom: 28/1988
  43112. }
  43113. },
  43114. mouth: {
  43115. height: math.unit(3.5, "meters"),
  43116. name: "Mouth",
  43117. image: {
  43118. source: "./media/characters/stellar-marbey/mouth.svg"
  43119. }
  43120. },
  43121. },
  43122. [
  43123. {
  43124. name: "Macro",
  43125. height: math.unit(53, "meters"),
  43126. default: true
  43127. },
  43128. ]
  43129. ))
  43130. characterMakers.push(() => makeCharacter(
  43131. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  43132. {
  43133. front: {
  43134. height: math.unit(8 + 1/12, "feet"),
  43135. weight: math.unit(233, "lb"),
  43136. name: "Front",
  43137. image: {
  43138. source: "./media/characters/matsu/front.svg",
  43139. extra: 832/772,
  43140. bottom: 40/872
  43141. }
  43142. },
  43143. back: {
  43144. height: math.unit(8 + 1/12, "feet"),
  43145. weight: math.unit(233, "lb"),
  43146. name: "Back",
  43147. image: {
  43148. source: "./media/characters/matsu/back.svg",
  43149. extra: 839/780,
  43150. bottom: 47/886
  43151. }
  43152. },
  43153. },
  43154. [
  43155. {
  43156. name: "Normal",
  43157. height: math.unit(8 + 1/12, "feet"),
  43158. default: true
  43159. },
  43160. ]
  43161. ))
  43162. characterMakers.push(() => makeCharacter(
  43163. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  43164. {
  43165. front: {
  43166. height: math.unit(4, "feet"),
  43167. weight: math.unit(148, "lb"),
  43168. name: "Front",
  43169. image: {
  43170. source: "./media/characters/thiz/front.svg",
  43171. extra: 1913/1748,
  43172. bottom: 62/1975
  43173. }
  43174. },
  43175. },
  43176. [
  43177. {
  43178. name: "Normal",
  43179. height: math.unit(4, "feet"),
  43180. default: true
  43181. },
  43182. ]
  43183. ))
  43184. characterMakers.push(() => makeCharacter(
  43185. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  43186. {
  43187. front: {
  43188. height: math.unit(7 + 6/12, "feet"),
  43189. weight: math.unit(267, "lb"),
  43190. name: "Front",
  43191. image: {
  43192. source: "./media/characters/marcel/front.svg",
  43193. extra: 1221/1096,
  43194. bottom: 76/1297
  43195. }
  43196. },
  43197. },
  43198. [
  43199. {
  43200. name: "Normal",
  43201. height: math.unit(7 + 6/12, "feet"),
  43202. default: true
  43203. },
  43204. ]
  43205. ))
  43206. characterMakers.push(() => makeCharacter(
  43207. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  43208. {
  43209. side: {
  43210. height: math.unit(42, "meters"),
  43211. name: "Side",
  43212. image: {
  43213. source: "./media/characters/flake/side.svg",
  43214. extra: 1525/1306,
  43215. bottom: 209/1734
  43216. }
  43217. },
  43218. },
  43219. [
  43220. {
  43221. name: "Normal",
  43222. height: math.unit(42, "meters"),
  43223. default: true
  43224. },
  43225. ]
  43226. ))
  43227. characterMakers.push(() => makeCharacter(
  43228. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  43229. {
  43230. dressed: {
  43231. height: math.unit(6 + 4/12, "feet"),
  43232. weight: math.unit(520, "lb"),
  43233. name: "Dressed",
  43234. image: {
  43235. source: "./media/characters/someonne/dressed.svg",
  43236. extra: 1020/1010,
  43237. bottom: 178/1198
  43238. }
  43239. },
  43240. undressed: {
  43241. height: math.unit(6 + 4/12, "feet"),
  43242. weight: math.unit(520, "lb"),
  43243. name: "Undressed",
  43244. image: {
  43245. source: "./media/characters/someonne/undressed.svg",
  43246. extra: 1019/1014,
  43247. bottom: 169/1188
  43248. }
  43249. },
  43250. },
  43251. [
  43252. {
  43253. name: "Normal",
  43254. height: math.unit(6 + 4/12, "feet"),
  43255. default: true
  43256. },
  43257. ]
  43258. ))
  43259. characterMakers.push(() => makeCharacter(
  43260. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  43261. {
  43262. front: {
  43263. height: math.unit(3, "feet"),
  43264. weight: math.unit(30, "lb"),
  43265. name: "Front",
  43266. image: {
  43267. source: "./media/characters/till/front.svg",
  43268. extra: 892/823,
  43269. bottom: 55/947
  43270. }
  43271. },
  43272. },
  43273. [
  43274. {
  43275. name: "Normal",
  43276. height: math.unit(3, "feet"),
  43277. default: true
  43278. },
  43279. ]
  43280. ))
  43281. characterMakers.push(() => makeCharacter(
  43282. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  43283. {
  43284. front: {
  43285. height: math.unit(9 + 8/12, "feet"),
  43286. weight: math.unit(800, "lb"),
  43287. name: "Front",
  43288. image: {
  43289. source: "./media/characters/sydney-heki/front.svg",
  43290. extra: 1360/1300,
  43291. bottom: 22/1382
  43292. }
  43293. },
  43294. back: {
  43295. height: math.unit(9 + 8/12, "feet"),
  43296. weight: math.unit(800, "lb"),
  43297. name: "Back",
  43298. image: {
  43299. source: "./media/characters/sydney-heki/back.svg",
  43300. extra: 1356/1293,
  43301. bottom: 12/1368
  43302. }
  43303. },
  43304. frontDressed: {
  43305. height: math.unit(9 + 8/12, "feet"),
  43306. weight: math.unit(800, "lb"),
  43307. name: "Front-dressed",
  43308. image: {
  43309. source: "./media/characters/sydney-heki/front-dressed.svg",
  43310. extra: 1360/1300,
  43311. bottom: 22/1382
  43312. }
  43313. },
  43314. },
  43315. [
  43316. {
  43317. name: "Normal",
  43318. height: math.unit(9 + 8/12, "feet"),
  43319. default: true
  43320. },
  43321. {
  43322. name: "Macro",
  43323. height: math.unit(500, "feet")
  43324. },
  43325. {
  43326. name: "Megamacro",
  43327. height: math.unit(3.6, "miles")
  43328. },
  43329. ]
  43330. ))
  43331. characterMakers.push(() => makeCharacter(
  43332. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  43333. {
  43334. front: {
  43335. height: math.unit(200, "cm"),
  43336. weight: math.unit(250, "lb"),
  43337. name: "Front",
  43338. image: {
  43339. source: "./media/characters/fowler-karlsson/front.svg",
  43340. extra: 897/845,
  43341. bottom: 123/1020
  43342. }
  43343. },
  43344. back: {
  43345. height: math.unit(200, "cm"),
  43346. weight: math.unit(250, "lb"),
  43347. name: "Back",
  43348. image: {
  43349. source: "./media/characters/fowler-karlsson/back.svg",
  43350. extra: 999/944,
  43351. bottom: 26/1025
  43352. }
  43353. },
  43354. dick: {
  43355. height: math.unit(1.92, "feet"),
  43356. weight: math.unit(150, "lb"),
  43357. name: "Dick",
  43358. image: {
  43359. source: "./media/characters/fowler-karlsson/dick.svg"
  43360. }
  43361. },
  43362. },
  43363. [
  43364. {
  43365. name: "Normal",
  43366. height: math.unit(200, "cm"),
  43367. default: true
  43368. },
  43369. {
  43370. name: "Smaller Macro",
  43371. height: math.unit(90, "m")
  43372. },
  43373. {
  43374. name: "Macro",
  43375. height: math.unit(150, "m")
  43376. },
  43377. {
  43378. name: "Bigger Macro",
  43379. height: math.unit(300, "m")
  43380. },
  43381. ]
  43382. ))
  43383. characterMakers.push(() => makeCharacter(
  43384. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  43385. {
  43386. side: {
  43387. height: math.unit(8 + 2/12, "feet"),
  43388. weight: math.unit(1, "tonne"),
  43389. name: "Side",
  43390. image: {
  43391. source: "./media/characters/rylide/side.svg",
  43392. extra: 1318/1034,
  43393. bottom: 106/1424
  43394. }
  43395. },
  43396. sitting: {
  43397. height: math.unit(303, "cm"),
  43398. weight: math.unit(1, "tonne"),
  43399. name: "Sitting",
  43400. image: {
  43401. source: "./media/characters/rylide/sitting.svg",
  43402. extra: 1303/1103,
  43403. bottom: 36/1339
  43404. }
  43405. },
  43406. },
  43407. [
  43408. {
  43409. name: "Normal",
  43410. height: math.unit(8 + 2/12, "feet"),
  43411. default: true
  43412. },
  43413. ]
  43414. ))
  43415. characterMakers.push(() => makeCharacter(
  43416. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  43417. {
  43418. front: {
  43419. height: math.unit(5 + 10/12, "feet"),
  43420. weight: math.unit(160, "lb"),
  43421. name: "Front",
  43422. image: {
  43423. source: "./media/characters/pudask/front.svg",
  43424. extra: 1616/1590,
  43425. bottom: 161/1777
  43426. }
  43427. },
  43428. },
  43429. [
  43430. {
  43431. name: "Ferret Height",
  43432. height: math.unit(2 + 5/12, "feet")
  43433. },
  43434. {
  43435. name: "Canon Height",
  43436. height: math.unit(5 + 10/12, "feet"),
  43437. default: true
  43438. },
  43439. ]
  43440. ))
  43441. characterMakers.push(() => makeCharacter(
  43442. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  43443. {
  43444. front: {
  43445. height: math.unit(3 + 6/12, "feet"),
  43446. weight: math.unit(60, "lb"),
  43447. name: "Front",
  43448. image: {
  43449. source: "./media/characters/ramita/front.svg",
  43450. extra: 1402/1232,
  43451. bottom: 62/1464
  43452. }
  43453. },
  43454. dressed: {
  43455. height: math.unit(3 + 6/12, "feet"),
  43456. weight: math.unit(60, "lb"),
  43457. name: "Dressed",
  43458. image: {
  43459. source: "./media/characters/ramita/dressed.svg",
  43460. extra: 1534/1249,
  43461. bottom: 50/1584
  43462. }
  43463. },
  43464. },
  43465. [
  43466. {
  43467. name: "Normal",
  43468. height: math.unit(3 + 6/12, "feet"),
  43469. default: true
  43470. },
  43471. ]
  43472. ))
  43473. characterMakers.push(() => makeCharacter(
  43474. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  43475. {
  43476. front: {
  43477. height: math.unit(8, "feet"),
  43478. name: "Front",
  43479. image: {
  43480. source: "./media/characters/ark/front.svg",
  43481. extra: 772/693,
  43482. bottom: 45/817
  43483. }
  43484. },
  43485. },
  43486. [
  43487. {
  43488. name: "Normal",
  43489. height: math.unit(8, "feet"),
  43490. default: true
  43491. },
  43492. ]
  43493. ))
  43494. characterMakers.push(() => makeCharacter(
  43495. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  43496. {
  43497. front: {
  43498. height: math.unit(6, "feet"),
  43499. weight: math.unit(250, "lb"),
  43500. volume: math.unit(5/8, "gallons"),
  43501. name: "Front",
  43502. image: {
  43503. source: "./media/characters/ludwig-horn/front.svg",
  43504. extra: 1782/1635,
  43505. bottom: 96/1878
  43506. }
  43507. },
  43508. back: {
  43509. height: math.unit(6, "feet"),
  43510. weight: math.unit(250, "lb"),
  43511. volume: math.unit(5/8, "gallons"),
  43512. name: "Back",
  43513. image: {
  43514. source: "./media/characters/ludwig-horn/back.svg",
  43515. extra: 1874/1729,
  43516. bottom: 27/1901
  43517. }
  43518. },
  43519. dick: {
  43520. height: math.unit(1.05, "feet"),
  43521. weight: math.unit(15, "lb"),
  43522. volume: math.unit(5/8, "gallons"),
  43523. name: "Dick",
  43524. image: {
  43525. source: "./media/characters/ludwig-horn/dick.svg"
  43526. }
  43527. },
  43528. },
  43529. [
  43530. {
  43531. name: "Small",
  43532. height: math.unit(6, "feet")
  43533. },
  43534. {
  43535. name: "Typical",
  43536. height: math.unit(12, "feet"),
  43537. default: true
  43538. },
  43539. {
  43540. name: "Building",
  43541. height: math.unit(80, "feet")
  43542. },
  43543. {
  43544. name: "Town",
  43545. height: math.unit(800, "feet")
  43546. },
  43547. {
  43548. name: "Kingdom",
  43549. height: math.unit(80000, "feet")
  43550. },
  43551. {
  43552. name: "Planet",
  43553. height: math.unit(8000000, "feet")
  43554. },
  43555. {
  43556. name: "Universe",
  43557. height: math.unit(8000000000, "feet")
  43558. },
  43559. {
  43560. name: "Transcended",
  43561. height: math.unit(8e27, "feet")
  43562. },
  43563. ]
  43564. ))
  43565. characterMakers.push(() => makeCharacter(
  43566. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  43567. {
  43568. front: {
  43569. height: math.unit(5, "feet"),
  43570. weight: math.unit(50, "kg"),
  43571. name: "Front",
  43572. image: {
  43573. source: "./media/characters/biot-avery/front.svg",
  43574. extra: 1295/1232,
  43575. bottom: 86/1381
  43576. }
  43577. },
  43578. },
  43579. [
  43580. {
  43581. name: "Normal",
  43582. height: math.unit(5, "feet"),
  43583. default: true
  43584. },
  43585. ]
  43586. ))
  43587. characterMakers.push(() => makeCharacter(
  43588. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  43589. {
  43590. front: {
  43591. height: math.unit(6, "feet"),
  43592. name: "Front",
  43593. image: {
  43594. source: "./media/characters/kitsune-kiro/front.svg",
  43595. extra: 1270/1158,
  43596. bottom: 42/1312
  43597. }
  43598. },
  43599. frontAlt: {
  43600. height: math.unit(6, "feet"),
  43601. name: "Front-alt",
  43602. image: {
  43603. source: "./media/characters/kitsune-kiro/front-alt.svg",
  43604. extra: 1130/1081,
  43605. bottom: 36/1166
  43606. }
  43607. },
  43608. },
  43609. [
  43610. {
  43611. name: "Smol",
  43612. height: math.unit(3, "feet")
  43613. },
  43614. {
  43615. name: "Normal",
  43616. height: math.unit(6, "feet"),
  43617. default: true
  43618. },
  43619. ]
  43620. ))
  43621. characterMakers.push(() => makeCharacter(
  43622. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  43623. {
  43624. front: {
  43625. height: math.unit(6, "feet"),
  43626. weight: math.unit(125, "lb"),
  43627. name: "Front",
  43628. image: {
  43629. source: "./media/characters/jack-thatcher/front.svg",
  43630. extra: 1474/1370,
  43631. bottom: 26/1500
  43632. }
  43633. },
  43634. back: {
  43635. height: math.unit(6, "feet"),
  43636. weight: math.unit(125, "lb"),
  43637. name: "Back",
  43638. image: {
  43639. source: "./media/characters/jack-thatcher/back.svg",
  43640. extra: 1489/1384,
  43641. bottom: 18/1507
  43642. }
  43643. },
  43644. },
  43645. [
  43646. {
  43647. name: "Normal",
  43648. height: math.unit(6, "feet"),
  43649. default: true
  43650. },
  43651. {
  43652. name: "Macro",
  43653. height: math.unit(75, "feet")
  43654. },
  43655. {
  43656. name: "Macro-er",
  43657. height: math.unit(250, "feet")
  43658. },
  43659. ]
  43660. ))
  43661. characterMakers.push(() => makeCharacter(
  43662. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  43663. {
  43664. front: {
  43665. height: math.unit(7, "feet"),
  43666. weight: math.unit(110, "kg"),
  43667. name: "Front",
  43668. image: {
  43669. source: "./media/characters/max-hyper/front.svg",
  43670. extra: 1969/1881,
  43671. bottom: 49/2018
  43672. }
  43673. },
  43674. },
  43675. [
  43676. {
  43677. name: "Normal",
  43678. height: math.unit(7, "feet"),
  43679. default: true
  43680. },
  43681. ]
  43682. ))
  43683. characterMakers.push(() => makeCharacter(
  43684. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  43685. {
  43686. front: {
  43687. height: math.unit(5 + 5/12, "feet"),
  43688. weight: math.unit(160, "lb"),
  43689. name: "Front",
  43690. image: {
  43691. source: "./media/characters/spook/front.svg",
  43692. extra: 794/791,
  43693. bottom: 54/848
  43694. }
  43695. },
  43696. back: {
  43697. height: math.unit(5 + 5/12, "feet"),
  43698. weight: math.unit(160, "lb"),
  43699. name: "Back",
  43700. image: {
  43701. source: "./media/characters/spook/back.svg",
  43702. extra: 812/798,
  43703. bottom: 32/844
  43704. }
  43705. },
  43706. },
  43707. [
  43708. {
  43709. name: "Normal",
  43710. height: math.unit(5 + 5/12, "feet"),
  43711. default: true
  43712. },
  43713. ]
  43714. ))
  43715. characterMakers.push(() => makeCharacter(
  43716. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  43717. {
  43718. front: {
  43719. height: math.unit(18, "feet"),
  43720. name: "Front",
  43721. image: {
  43722. source: "./media/characters/xeaduulix/front.svg",
  43723. extra: 1380/1166,
  43724. bottom: 110/1490
  43725. }
  43726. },
  43727. back: {
  43728. height: math.unit(18, "feet"),
  43729. name: "Back",
  43730. image: {
  43731. source: "./media/characters/xeaduulix/back.svg",
  43732. extra: 1592/1170,
  43733. bottom: 128/1720
  43734. }
  43735. },
  43736. frontNsfw: {
  43737. height: math.unit(18, "feet"),
  43738. name: "Front (NSFW)",
  43739. image: {
  43740. source: "./media/characters/xeaduulix/front-nsfw.svg",
  43741. extra: 1380/1166,
  43742. bottom: 110/1490
  43743. }
  43744. },
  43745. backNsfw: {
  43746. height: math.unit(18, "feet"),
  43747. name: "Back (NSFW)",
  43748. image: {
  43749. source: "./media/characters/xeaduulix/back-nsfw.svg",
  43750. extra: 1592/1170,
  43751. bottom: 128/1720
  43752. }
  43753. },
  43754. },
  43755. [
  43756. {
  43757. name: "Normal",
  43758. height: math.unit(18, "feet"),
  43759. default: true
  43760. },
  43761. ]
  43762. ))
  43763. characterMakers.push(() => makeCharacter(
  43764. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  43765. {
  43766. spreadWings: {
  43767. height: math.unit(20, "feet"),
  43768. name: "Spread Wings",
  43769. image: {
  43770. source: "./media/characters/fledge/spread-wings.svg",
  43771. extra: 693/635,
  43772. bottom: 26/719
  43773. }
  43774. },
  43775. front: {
  43776. height: math.unit(20, "feet"),
  43777. name: "Front",
  43778. image: {
  43779. source: "./media/characters/fledge/front.svg",
  43780. extra: 684/637,
  43781. bottom: 18/702
  43782. }
  43783. },
  43784. frontAlt: {
  43785. height: math.unit(20, "feet"),
  43786. name: "Front (Alt)",
  43787. image: {
  43788. source: "./media/characters/fledge/front-alt.svg",
  43789. extra: 708/664,
  43790. bottom: 13/721
  43791. }
  43792. },
  43793. back: {
  43794. height: math.unit(20, "feet"),
  43795. name: "Back",
  43796. image: {
  43797. source: "./media/characters/fledge/back.svg",
  43798. extra: 718/634,
  43799. bottom: 22/740
  43800. }
  43801. },
  43802. head: {
  43803. height: math.unit(5.55, "feet"),
  43804. name: "Head",
  43805. image: {
  43806. source: "./media/characters/fledge/head.svg"
  43807. }
  43808. },
  43809. headAlt: {
  43810. height: math.unit(5.1, "feet"),
  43811. name: "Head (Alt)",
  43812. image: {
  43813. source: "./media/characters/fledge/head-alt.svg"
  43814. }
  43815. },
  43816. },
  43817. [
  43818. {
  43819. name: "Small",
  43820. height: math.unit(6 + 2/12, "feet")
  43821. },
  43822. {
  43823. name: "Big",
  43824. height: math.unit(20, "feet"),
  43825. default: true
  43826. },
  43827. {
  43828. name: "Giant",
  43829. height: math.unit(100, "feet")
  43830. },
  43831. {
  43832. name: "Macro",
  43833. height: math.unit(200, "feet")
  43834. },
  43835. ]
  43836. ))
  43837. characterMakers.push(() => makeCharacter(
  43838. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  43839. {
  43840. front: {
  43841. height: math.unit(1, "meter"),
  43842. name: "Front",
  43843. image: {
  43844. source: "./media/characters/atlas-morenai/front.svg",
  43845. extra: 1275/1043,
  43846. bottom: 19/1294
  43847. }
  43848. },
  43849. back: {
  43850. height: math.unit(1, "meter"),
  43851. name: "Back",
  43852. image: {
  43853. source: "./media/characters/atlas-morenai/back.svg",
  43854. extra: 1141/1001,
  43855. bottom: 25/1166
  43856. }
  43857. },
  43858. },
  43859. [
  43860. {
  43861. name: "Normal",
  43862. height: math.unit(1, "meter"),
  43863. default: true
  43864. },
  43865. {
  43866. name: "Magic-Infused",
  43867. height: math.unit(5, "meters")
  43868. },
  43869. ]
  43870. ))
  43871. characterMakers.push(() => makeCharacter(
  43872. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  43873. {
  43874. front: {
  43875. height: math.unit(5, "meters"),
  43876. name: "Front",
  43877. image: {
  43878. source: "./media/characters/cintia/front.svg",
  43879. extra: 1312/1228,
  43880. bottom: 38/1350
  43881. }
  43882. },
  43883. back: {
  43884. height: math.unit(5, "meters"),
  43885. name: "Back",
  43886. image: {
  43887. source: "./media/characters/cintia/back.svg",
  43888. extra: 1260/1166,
  43889. bottom: 98/1358
  43890. }
  43891. },
  43892. frontDick: {
  43893. height: math.unit(5, "meters"),
  43894. name: "Front (Dick)",
  43895. image: {
  43896. source: "./media/characters/cintia/front-dick.svg",
  43897. extra: 1312/1228,
  43898. bottom: 38/1350
  43899. }
  43900. },
  43901. backDick: {
  43902. height: math.unit(5, "meters"),
  43903. name: "Back (Dick)",
  43904. image: {
  43905. source: "./media/characters/cintia/back-dick.svg",
  43906. extra: 1260/1166,
  43907. bottom: 98/1358
  43908. }
  43909. },
  43910. bust: {
  43911. height: math.unit(1.97, "meters"),
  43912. name: "Bust",
  43913. image: {
  43914. source: "./media/characters/cintia/bust.svg",
  43915. extra: 617/565,
  43916. bottom: 0/617
  43917. }
  43918. },
  43919. },
  43920. [
  43921. {
  43922. name: "Normal",
  43923. height: math.unit(5, "meters"),
  43924. default: true
  43925. },
  43926. ]
  43927. ))
  43928. characterMakers.push(() => makeCharacter(
  43929. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  43930. {
  43931. side: {
  43932. height: math.unit(100, "feet"),
  43933. name: "Side",
  43934. image: {
  43935. source: "./media/characters/denora/side.svg",
  43936. extra: 875/803,
  43937. bottom: 9/884
  43938. }
  43939. },
  43940. },
  43941. [
  43942. {
  43943. name: "Standard",
  43944. height: math.unit(100, "feet"),
  43945. default: true
  43946. },
  43947. {
  43948. name: "Grand",
  43949. height: math.unit(1000, "feet")
  43950. },
  43951. {
  43952. name: "Conquering",
  43953. height: math.unit(10000, "feet")
  43954. },
  43955. ]
  43956. ))
  43957. characterMakers.push(() => makeCharacter(
  43958. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  43959. {
  43960. dressed: {
  43961. height: math.unit(8 + 5/12, "feet"),
  43962. weight: math.unit(700, "lb"),
  43963. name: "Dressed",
  43964. image: {
  43965. source: "./media/characters/kiva/dressed.svg",
  43966. extra: 1102/1055,
  43967. bottom: 60/1162
  43968. }
  43969. },
  43970. nude: {
  43971. height: math.unit(8 + 5/12, "feet"),
  43972. weight: math.unit(700, "lb"),
  43973. name: "Nude",
  43974. image: {
  43975. source: "./media/characters/kiva/nude.svg",
  43976. extra: 1102/1055,
  43977. bottom: 60/1162
  43978. }
  43979. },
  43980. },
  43981. [
  43982. {
  43983. name: "Base Height",
  43984. height: math.unit(8 + 5/12, "feet"),
  43985. default: true
  43986. },
  43987. {
  43988. name: "Macro",
  43989. height: math.unit(100, "feet")
  43990. },
  43991. {
  43992. name: "Max",
  43993. height: math.unit(3280, "feet")
  43994. },
  43995. ]
  43996. ))
  43997. characterMakers.push(() => makeCharacter(
  43998. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  43999. {
  44000. front: {
  44001. height: math.unit(6 + 8/12, "feet"),
  44002. weight: math.unit(250, "lb"),
  44003. name: "Front",
  44004. image: {
  44005. source: "./media/characters/ztragon/front.svg",
  44006. extra: 1825/1684,
  44007. bottom: 98/1923
  44008. }
  44009. },
  44010. },
  44011. [
  44012. {
  44013. name: "Normal",
  44014. height: math.unit(6 + 8/12, "feet"),
  44015. default: true
  44016. },
  44017. {
  44018. name: "Macro",
  44019. height: math.unit(80, "feet")
  44020. },
  44021. ]
  44022. ))
  44023. characterMakers.push(() => makeCharacter(
  44024. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  44025. {
  44026. front: {
  44027. height: math.unit(10.4, "feet"),
  44028. weight: math.unit(2, "tons"),
  44029. name: "Front",
  44030. image: {
  44031. source: "./media/characters/yesenia/front.svg",
  44032. extra: 1479/1474,
  44033. bottom: 233/1712
  44034. }
  44035. },
  44036. },
  44037. [
  44038. {
  44039. name: "Normal",
  44040. height: math.unit(10.4, "feet"),
  44041. default: true
  44042. },
  44043. ]
  44044. ))
  44045. characterMakers.push(() => makeCharacter(
  44046. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  44047. {
  44048. normal: {
  44049. height: math.unit(6 + 1/12, "feet"),
  44050. weight: math.unit(180, "lb"),
  44051. name: "Normal",
  44052. image: {
  44053. source: "./media/characters/leanne-lycheborne/normal.svg",
  44054. extra: 1748/1660,
  44055. bottom: 98/1846
  44056. }
  44057. },
  44058. were: {
  44059. height: math.unit(12, "feet"),
  44060. weight: math.unit(1600, "lb"),
  44061. name: "Were",
  44062. image: {
  44063. source: "./media/characters/leanne-lycheborne/were.svg",
  44064. extra: 1485/1432,
  44065. bottom: 66/1551
  44066. }
  44067. },
  44068. },
  44069. [
  44070. {
  44071. name: "Normal",
  44072. height: math.unit(6 + 1/12, "feet"),
  44073. default: true
  44074. },
  44075. ]
  44076. ))
  44077. characterMakers.push(() => makeCharacter(
  44078. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  44079. {
  44080. side: {
  44081. height: math.unit(13, "feet"),
  44082. name: "Side",
  44083. image: {
  44084. source: "./media/characters/kira-tyler/side.svg",
  44085. extra: 693/393,
  44086. bottom: 58/751
  44087. }
  44088. },
  44089. },
  44090. [
  44091. {
  44092. name: "Normal",
  44093. height: math.unit(13, "feet"),
  44094. default: true
  44095. },
  44096. ]
  44097. ))
  44098. characterMakers.push(() => makeCharacter(
  44099. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  44100. {
  44101. front: {
  44102. height: math.unit(10.3, "feet"),
  44103. weight: math.unit(150, "lb"),
  44104. name: "Front",
  44105. image: {
  44106. source: "./media/characters/blaze/front.svg",
  44107. extra: 1378/1286,
  44108. bottom: 172/1550
  44109. }
  44110. },
  44111. },
  44112. [
  44113. {
  44114. name: "Normal",
  44115. height: math.unit(10.3, "feet"),
  44116. default: true
  44117. },
  44118. ]
  44119. ))
  44120. characterMakers.push(() => makeCharacter(
  44121. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  44122. {
  44123. side: {
  44124. height: math.unit(2, "meters"),
  44125. weight: math.unit(400, "kg"),
  44126. name: "Side",
  44127. image: {
  44128. source: "./media/characters/anu/side.svg",
  44129. extra: 506/394,
  44130. bottom: 18/524
  44131. }
  44132. },
  44133. },
  44134. [
  44135. {
  44136. name: "Humanoid",
  44137. height: math.unit(2, "meters")
  44138. },
  44139. {
  44140. name: "Normal",
  44141. height: math.unit(5, "meters"),
  44142. default: true
  44143. },
  44144. ]
  44145. ))
  44146. characterMakers.push(() => makeCharacter(
  44147. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  44148. {
  44149. front: {
  44150. height: math.unit(5 + 5/12, "feet"),
  44151. weight: math.unit(170, "lb"),
  44152. name: "Front",
  44153. image: {
  44154. source: "./media/characters/synx-the-lynx/front.svg",
  44155. extra: 1893/1745,
  44156. bottom: 17/1910
  44157. }
  44158. },
  44159. side: {
  44160. height: math.unit(5 + 5/12, "feet"),
  44161. weight: math.unit(170, "lb"),
  44162. name: "Side",
  44163. image: {
  44164. source: "./media/characters/synx-the-lynx/side.svg",
  44165. extra: 1884/1740,
  44166. bottom: 39/1923
  44167. }
  44168. },
  44169. back: {
  44170. height: math.unit(5 + 5/12, "feet"),
  44171. weight: math.unit(170, "lb"),
  44172. name: "Back",
  44173. image: {
  44174. source: "./media/characters/synx-the-lynx/back.svg",
  44175. extra: 1903/1755,
  44176. bottom: 14/1917
  44177. }
  44178. },
  44179. },
  44180. [
  44181. {
  44182. name: "Normal",
  44183. height: math.unit(5 + 5/12, "feet"),
  44184. default: true
  44185. },
  44186. ]
  44187. ))
  44188. characterMakers.push(() => makeCharacter(
  44189. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  44190. {
  44191. back: {
  44192. height: math.unit(15, "feet"),
  44193. name: "Back",
  44194. image: {
  44195. source: "./media/characters/nadezda-fex/back.svg",
  44196. extra: 1695/1481,
  44197. bottom: 25/1720
  44198. }
  44199. },
  44200. },
  44201. [
  44202. {
  44203. name: "Normal",
  44204. height: math.unit(15, "feet"),
  44205. default: true
  44206. },
  44207. {
  44208. name: "Macro",
  44209. height: math.unit(2.5, "miles")
  44210. },
  44211. {
  44212. name: "Goddess",
  44213. height: math.unit(2, "multiverses")
  44214. },
  44215. ]
  44216. ))
  44217. characterMakers.push(() => makeCharacter(
  44218. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  44219. {
  44220. front: {
  44221. height: math.unit(216, "cm"),
  44222. name: "Front",
  44223. image: {
  44224. source: "./media/characters/lev/front.svg",
  44225. extra: 1728/1670,
  44226. bottom: 82/1810
  44227. }
  44228. },
  44229. back: {
  44230. height: math.unit(216, "cm"),
  44231. name: "Back",
  44232. image: {
  44233. source: "./media/characters/lev/back.svg",
  44234. extra: 1738/1675,
  44235. bottom: 24/1762
  44236. }
  44237. },
  44238. dressed: {
  44239. height: math.unit(216, "cm"),
  44240. name: "Dressed",
  44241. image: {
  44242. source: "./media/characters/lev/dressed.svg",
  44243. extra: 1397/1351,
  44244. bottom: 73/1470
  44245. }
  44246. },
  44247. head: {
  44248. height: math.unit(0.51, "meter"),
  44249. name: "Head",
  44250. image: {
  44251. source: "./media/characters/lev/head.svg"
  44252. }
  44253. },
  44254. },
  44255. [
  44256. {
  44257. name: "Normal",
  44258. height: math.unit(216, "cm"),
  44259. default: true
  44260. },
  44261. {
  44262. name: "Relatively Macro",
  44263. height: math.unit(80, "meters")
  44264. },
  44265. {
  44266. name: "Megamacro",
  44267. height: math.unit(21600, "meters")
  44268. },
  44269. {
  44270. name: "Megamacro+",
  44271. height: math.unit(64800, "meters")
  44272. },
  44273. ]
  44274. ))
  44275. characterMakers.push(() => makeCharacter(
  44276. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  44277. {
  44278. front: {
  44279. height: math.unit(2, "meters"),
  44280. weight: math.unit(80, "kg"),
  44281. name: "Front",
  44282. image: {
  44283. source: "./media/characters/moka/front.svg",
  44284. extra: 1337/1255,
  44285. bottom: 58/1395
  44286. }
  44287. },
  44288. },
  44289. [
  44290. {
  44291. name: "Micro",
  44292. height: math.unit(15, "cm")
  44293. },
  44294. {
  44295. name: "Normal",
  44296. height: math.unit(2, "meters"),
  44297. default: true
  44298. },
  44299. {
  44300. name: "Macro",
  44301. height: math.unit(20, "meters"),
  44302. },
  44303. ]
  44304. ))
  44305. characterMakers.push(() => makeCharacter(
  44306. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  44307. {
  44308. front: {
  44309. height: math.unit(9, "feet"),
  44310. weight: math.unit(240, "lb"),
  44311. name: "Front",
  44312. image: {
  44313. source: "./media/characters/kuzco/front.svg",
  44314. extra: 1593/1487,
  44315. bottom: 32/1625
  44316. }
  44317. },
  44318. side: {
  44319. height: math.unit(9, "feet"),
  44320. weight: math.unit(240, "lb"),
  44321. name: "Side",
  44322. image: {
  44323. source: "./media/characters/kuzco/side.svg",
  44324. extra: 1575/1485,
  44325. bottom: 30/1605
  44326. }
  44327. },
  44328. back: {
  44329. height: math.unit(9, "feet"),
  44330. weight: math.unit(240, "lb"),
  44331. name: "Back",
  44332. image: {
  44333. source: "./media/characters/kuzco/back.svg",
  44334. extra: 1603/1514,
  44335. bottom: 14/1617
  44336. }
  44337. },
  44338. },
  44339. [
  44340. {
  44341. name: "Normal",
  44342. height: math.unit(9, "feet"),
  44343. default: true
  44344. },
  44345. ]
  44346. ))
  44347. characterMakers.push(() => makeCharacter(
  44348. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  44349. {
  44350. side: {
  44351. height: math.unit(2, "meters"),
  44352. weight: math.unit(300, "kg"),
  44353. name: "Side",
  44354. image: {
  44355. source: "./media/characters/ceruleus/side.svg",
  44356. extra: 1068/974,
  44357. bottom: 126/1194
  44358. }
  44359. },
  44360. },
  44361. [
  44362. {
  44363. name: "Normal",
  44364. height: math.unit(16, "meters"),
  44365. default: true
  44366. },
  44367. ]
  44368. ))
  44369. characterMakers.push(() => makeCharacter(
  44370. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  44371. {
  44372. front: {
  44373. height: math.unit(9, "feet"),
  44374. weight: math.unit(500, "kg"),
  44375. name: "Front",
  44376. image: {
  44377. source: "./media/characters/acouya/front.svg",
  44378. extra: 1660/1473,
  44379. bottom: 28/1688
  44380. }
  44381. },
  44382. },
  44383. [
  44384. {
  44385. name: "Normal",
  44386. height: math.unit(9, "feet"),
  44387. default: true
  44388. },
  44389. ]
  44390. ))
  44391. characterMakers.push(() => makeCharacter(
  44392. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  44393. {
  44394. front: {
  44395. height: math.unit(5 + 6/12, "feet"),
  44396. weight: math.unit(195, "lb"),
  44397. name: "Front",
  44398. image: {
  44399. source: "./media/characters/vant/front.svg",
  44400. extra: 1396/1320,
  44401. bottom: 20/1416
  44402. }
  44403. },
  44404. back: {
  44405. height: math.unit(5 + 6/12, "feet"),
  44406. weight: math.unit(195, "lb"),
  44407. name: "Back",
  44408. image: {
  44409. source: "./media/characters/vant/back.svg",
  44410. extra: 1396/1320,
  44411. bottom: 20/1416
  44412. }
  44413. },
  44414. maw: {
  44415. height: math.unit(0.75, "feet"),
  44416. name: "Maw",
  44417. image: {
  44418. source: "./media/characters/vant/maw.svg"
  44419. }
  44420. },
  44421. paw: {
  44422. height: math.unit(1.07, "feet"),
  44423. name: "Paw",
  44424. image: {
  44425. source: "./media/characters/vant/paw.svg"
  44426. }
  44427. },
  44428. },
  44429. [
  44430. {
  44431. name: "Micro",
  44432. height: math.unit(0.25, "inches")
  44433. },
  44434. {
  44435. name: "Normal",
  44436. height: math.unit(5 + 6/12, "feet"),
  44437. default: true
  44438. },
  44439. {
  44440. name: "Macro",
  44441. height: math.unit(75, "feet")
  44442. },
  44443. ]
  44444. ))
  44445. //characters
  44446. function makeCharacters() {
  44447. const results = [];
  44448. characterMakers.forEach(character => {
  44449. results.push(character());
  44450. });
  44451. return results;
  44452. }