less copy protection, more size visualization
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

43932 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. }
  1779. //species
  1780. function getSpeciesInfo(speciesList) {
  1781. let result = new Set();
  1782. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1783. result.add(entry)
  1784. });
  1785. return Array.from(result);
  1786. };
  1787. function getSpeciesInfoHelper(species) {
  1788. if (!speciesData[species]) {
  1789. console.warn(species + " doesn't exist");
  1790. return [];
  1791. }
  1792. if (speciesData[species].parents) {
  1793. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1794. } else {
  1795. return [species];
  1796. }
  1797. }
  1798. characterMakers.push(() => makeCharacter(
  1799. {
  1800. name: "Fen",
  1801. species: ["crux"],
  1802. description: {
  1803. title: "Bio",
  1804. text: "Very furry. Sheds on everything."
  1805. },
  1806. tags: [
  1807. "anthro",
  1808. "goo"
  1809. ]
  1810. },
  1811. {
  1812. back: {
  1813. height: math.unit(2.2428, "meter"),
  1814. weight: math.unit(124.738, "kg"),
  1815. name: "Back",
  1816. image: {
  1817. source: "./media/characters/fen/back.svg",
  1818. },
  1819. info: {
  1820. description: {
  1821. mode: "append",
  1822. text: "\n\nHe is not currently looking at you."
  1823. }
  1824. }
  1825. },
  1826. full: {
  1827. height: math.unit(0.91, "meter"),
  1828. weight: math.unit(225, "kg"),
  1829. name: "Full",
  1830. image: {
  1831. source: "./media/characters/fen/full.svg",
  1832. extra: 1133/859,
  1833. bottom: 145/1278
  1834. },
  1835. info: {
  1836. description: {
  1837. mode: "append",
  1838. text: "\n\nMunch."
  1839. }
  1840. }
  1841. },
  1842. kneeling: {
  1843. height: math.unit(5.4, "feet"),
  1844. weight: math.unit(124.738, "kg"),
  1845. name: "Kneeling",
  1846. image: {
  1847. source: "./media/characters/fen/kneeling.svg",
  1848. extra: 563 / 507
  1849. }
  1850. },
  1851. goo: {
  1852. height: math.unit(2.8, "feet"),
  1853. weight: math.unit(125, "kg"),
  1854. capacity: math.unit(1, "people"),
  1855. name: "Goo",
  1856. image: {
  1857. source: "./media/characters/fen/goo.svg",
  1858. bottom: 116 / 613
  1859. }
  1860. },
  1861. lounging: {
  1862. height: math.unit(6.5, "feet"),
  1863. weight: math.unit(125, "kg"),
  1864. name: "Lounging",
  1865. image: {
  1866. source: "./media/characters/fen/lounging.svg"
  1867. }
  1868. },
  1869. },
  1870. [
  1871. {
  1872. name: "Normal",
  1873. height: math.unit(2.2428, "meter")
  1874. },
  1875. {
  1876. name: "Big",
  1877. height: math.unit(12, "feet")
  1878. },
  1879. {
  1880. name: "Minimacro",
  1881. height: math.unit(40, "feet"),
  1882. default: true,
  1883. info: {
  1884. description: {
  1885. mode: "append",
  1886. text: "\n\nTOO DAMN BIG"
  1887. }
  1888. }
  1889. },
  1890. {
  1891. name: "Macro",
  1892. height: math.unit(100, "feet"),
  1893. info: {
  1894. description: {
  1895. mode: "append",
  1896. text: "\n\nTOO DAMN BIG"
  1897. }
  1898. }
  1899. },
  1900. {
  1901. name: "Macro+",
  1902. height: math.unit(300, "feet")
  1903. },
  1904. {
  1905. name: "Megamacro",
  1906. height: math.unit(2, "miles")
  1907. }
  1908. ]
  1909. ))
  1910. characterMakers.push(() => makeCharacter(
  1911. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  1912. {
  1913. front: {
  1914. height: math.unit(183, "cm"),
  1915. weight: math.unit(80, "kg"),
  1916. name: "Front",
  1917. image: {
  1918. source: "./media/characters/sofia-fluttertail/front.svg",
  1919. bottom: 0.01,
  1920. extra: 2154 / 2081
  1921. }
  1922. },
  1923. frontAlt: {
  1924. height: math.unit(183, "cm"),
  1925. weight: math.unit(80, "kg"),
  1926. name: "Front (alt)",
  1927. image: {
  1928. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  1929. }
  1930. },
  1931. back: {
  1932. height: math.unit(183, "cm"),
  1933. weight: math.unit(80, "kg"),
  1934. name: "Back",
  1935. image: {
  1936. source: "./media/characters/sofia-fluttertail/back.svg"
  1937. }
  1938. },
  1939. kneeling: {
  1940. height: math.unit(125, "cm"),
  1941. weight: math.unit(80, "kg"),
  1942. name: "Kneeling",
  1943. image: {
  1944. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  1945. extra: 1033 / 977,
  1946. bottom: 23.7 / 1057
  1947. }
  1948. },
  1949. maw: {
  1950. height: math.unit(183 / 5, "cm"),
  1951. name: "Maw",
  1952. image: {
  1953. source: "./media/characters/sofia-fluttertail/maw.svg"
  1954. }
  1955. },
  1956. mawcloseup: {
  1957. height: math.unit(183 / 5 * 0.41, "cm"),
  1958. name: "Maw (Closeup)",
  1959. image: {
  1960. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  1961. }
  1962. },
  1963. paws: {
  1964. height: math.unit(1.17, "feet"),
  1965. name: "Paws",
  1966. image: {
  1967. source: "./media/characters/sofia-fluttertail/paws.svg",
  1968. extra: 851 / 851,
  1969. bottom: 17 / 868
  1970. }
  1971. },
  1972. },
  1973. [
  1974. {
  1975. name: "Normal",
  1976. height: math.unit(1.83, "meter")
  1977. },
  1978. {
  1979. name: "Size Thief",
  1980. height: math.unit(18, "feet")
  1981. },
  1982. {
  1983. name: "50 Foot Collie",
  1984. height: math.unit(50, "feet")
  1985. },
  1986. {
  1987. name: "Macro",
  1988. height: math.unit(96, "feet"),
  1989. default: true
  1990. },
  1991. {
  1992. name: "Megamerger",
  1993. height: math.unit(650, "feet")
  1994. },
  1995. ]
  1996. ))
  1997. characterMakers.push(() => makeCharacter(
  1998. { name: "March", species: ["dragon"], tags: ["anthro"] },
  1999. {
  2000. front: {
  2001. height: math.unit(7, "feet"),
  2002. weight: math.unit(100, "kg"),
  2003. name: "Front",
  2004. image: {
  2005. source: "./media/characters/march/front.svg",
  2006. extra: 1992/1851,
  2007. bottom: 39/2031
  2008. }
  2009. },
  2010. foot: {
  2011. height: math.unit(0.9, "feet"),
  2012. name: "Foot",
  2013. image: {
  2014. source: "./media/characters/march/foot.svg"
  2015. }
  2016. },
  2017. },
  2018. [
  2019. {
  2020. name: "Normal",
  2021. height: math.unit(7.9, "feet")
  2022. },
  2023. {
  2024. name: "Macro",
  2025. height: math.unit(220, "meters")
  2026. },
  2027. {
  2028. name: "Megamacro",
  2029. height: math.unit(2.98, "km"),
  2030. default: true
  2031. },
  2032. {
  2033. name: "Gigamacro",
  2034. height: math.unit(15963, "km")
  2035. },
  2036. {
  2037. name: "Teramacro",
  2038. height: math.unit(2980000000, "km")
  2039. },
  2040. {
  2041. name: "Examacro",
  2042. height: math.unit(250, "parsecs")
  2043. },
  2044. ]
  2045. ))
  2046. characterMakers.push(() => makeCharacter(
  2047. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2048. {
  2049. front: {
  2050. height: math.unit(6, "feet"),
  2051. weight: math.unit(60, "kg"),
  2052. name: "Front",
  2053. image: {
  2054. source: "./media/characters/noir/front.svg",
  2055. extra: 1,
  2056. bottom: 0.032
  2057. }
  2058. },
  2059. },
  2060. [
  2061. {
  2062. name: "Normal",
  2063. height: math.unit(6.6, "feet")
  2064. },
  2065. {
  2066. name: "Macro",
  2067. height: math.unit(500, "feet")
  2068. },
  2069. {
  2070. name: "Megamacro",
  2071. height: math.unit(2.5, "km"),
  2072. default: true
  2073. },
  2074. {
  2075. name: "Gigamacro",
  2076. height: math.unit(22500, "km")
  2077. },
  2078. {
  2079. name: "Teramacro",
  2080. height: math.unit(2500000000, "km")
  2081. },
  2082. {
  2083. name: "Examacro",
  2084. height: math.unit(200, "parsecs")
  2085. },
  2086. ]
  2087. ))
  2088. characterMakers.push(() => makeCharacter(
  2089. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  2090. {
  2091. front: {
  2092. height: math.unit(7, "feet"),
  2093. weight: math.unit(100, "kg"),
  2094. name: "Front",
  2095. image: {
  2096. source: "./media/characters/okuri/front.svg",
  2097. extra: 1,
  2098. bottom: 0.037
  2099. }
  2100. },
  2101. back: {
  2102. height: math.unit(7, "feet"),
  2103. weight: math.unit(100, "kg"),
  2104. name: "Back",
  2105. image: {
  2106. source: "./media/characters/okuri/back.svg",
  2107. extra: 1,
  2108. bottom: 0.007
  2109. }
  2110. },
  2111. },
  2112. [
  2113. {
  2114. name: "Megamacro",
  2115. height: math.unit(100, "miles"),
  2116. default: true
  2117. },
  2118. ]
  2119. ))
  2120. characterMakers.push(() => makeCharacter(
  2121. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2122. {
  2123. front: {
  2124. height: math.unit(7, "feet"),
  2125. weight: math.unit(100, "kg"),
  2126. name: "Front",
  2127. image: {
  2128. source: "./media/characters/manny/front.svg",
  2129. extra: 1,
  2130. bottom: 0.06
  2131. }
  2132. },
  2133. back: {
  2134. height: math.unit(7, "feet"),
  2135. weight: math.unit(100, "kg"),
  2136. name: "Back",
  2137. image: {
  2138. source: "./media/characters/manny/back.svg",
  2139. extra: 1,
  2140. bottom: 0.014
  2141. }
  2142. },
  2143. },
  2144. [
  2145. {
  2146. name: "Normal",
  2147. height: math.unit(7, "feet"),
  2148. },
  2149. {
  2150. name: "Macro",
  2151. height: math.unit(78, "feet"),
  2152. default: true
  2153. },
  2154. {
  2155. name: "Macro+",
  2156. height: math.unit(300, "meters")
  2157. },
  2158. {
  2159. name: "Macro++",
  2160. height: math.unit(2400, "meters")
  2161. },
  2162. {
  2163. name: "Megamacro",
  2164. height: math.unit(5167, "meters")
  2165. },
  2166. {
  2167. name: "Gigamacro",
  2168. height: math.unit(41769, "miles")
  2169. },
  2170. ]
  2171. ))
  2172. characterMakers.push(() => makeCharacter(
  2173. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2174. {
  2175. front: {
  2176. height: math.unit(7, "feet"),
  2177. weight: math.unit(100, "kg"),
  2178. name: "Front",
  2179. image: {
  2180. source: "./media/characters/adake/front-1.svg"
  2181. }
  2182. },
  2183. frontAlt: {
  2184. height: math.unit(7, "feet"),
  2185. weight: math.unit(100, "kg"),
  2186. name: "Front (Alt)",
  2187. image: {
  2188. source: "./media/characters/adake/front-2.svg",
  2189. extra: 1,
  2190. bottom: 0.01
  2191. }
  2192. },
  2193. back: {
  2194. height: math.unit(7, "feet"),
  2195. weight: math.unit(100, "kg"),
  2196. name: "Back",
  2197. image: {
  2198. source: "./media/characters/adake/back.svg",
  2199. }
  2200. },
  2201. kneel: {
  2202. height: math.unit(5.385, "feet"),
  2203. weight: math.unit(100, "kg"),
  2204. name: "Kneeling",
  2205. image: {
  2206. source: "./media/characters/adake/kneel.svg",
  2207. bottom: 0.052
  2208. }
  2209. },
  2210. },
  2211. [
  2212. {
  2213. name: "Normal",
  2214. height: math.unit(7, "feet"),
  2215. },
  2216. {
  2217. name: "Macro",
  2218. height: math.unit(78, "feet"),
  2219. default: true
  2220. },
  2221. {
  2222. name: "Macro+",
  2223. height: math.unit(300, "meters")
  2224. },
  2225. {
  2226. name: "Macro++",
  2227. height: math.unit(2400, "meters")
  2228. },
  2229. {
  2230. name: "Megamacro",
  2231. height: math.unit(5167, "meters")
  2232. },
  2233. {
  2234. name: "Gigamacro",
  2235. height: math.unit(41769, "miles")
  2236. },
  2237. ]
  2238. ))
  2239. characterMakers.push(() => makeCharacter(
  2240. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2241. {
  2242. front: {
  2243. height: math.unit(1.65, "meters"),
  2244. weight: math.unit(50, "kg"),
  2245. name: "Front",
  2246. image: {
  2247. source: "./media/characters/elijah/front.svg",
  2248. extra: 858 / 830,
  2249. bottom: 95.5 / 953.8559
  2250. }
  2251. },
  2252. back: {
  2253. height: math.unit(1.65, "meters"),
  2254. weight: math.unit(50, "kg"),
  2255. name: "Back",
  2256. image: {
  2257. source: "./media/characters/elijah/back.svg",
  2258. extra: 895 / 850,
  2259. bottom: 5.3 / 897.956
  2260. }
  2261. },
  2262. frontNsfw: {
  2263. height: math.unit(1.65, "meters"),
  2264. weight: math.unit(50, "kg"),
  2265. name: "Front (NSFW)",
  2266. image: {
  2267. source: "./media/characters/elijah/front-nsfw.svg",
  2268. extra: 858 / 830,
  2269. bottom: 95.5 / 953.8559
  2270. }
  2271. },
  2272. backNsfw: {
  2273. height: math.unit(1.65, "meters"),
  2274. weight: math.unit(50, "kg"),
  2275. name: "Back (NSFW)",
  2276. image: {
  2277. source: "./media/characters/elijah/back-nsfw.svg",
  2278. extra: 895 / 850,
  2279. bottom: 5.3 / 897.956
  2280. }
  2281. },
  2282. dick: {
  2283. height: math.unit(1, "feet"),
  2284. name: "Dick",
  2285. image: {
  2286. source: "./media/characters/elijah/dick.svg"
  2287. }
  2288. },
  2289. beakOpen: {
  2290. height: math.unit(1.25, "feet"),
  2291. name: "Beak (Open)",
  2292. image: {
  2293. source: "./media/characters/elijah/beak-open.svg"
  2294. }
  2295. },
  2296. beakShut: {
  2297. height: math.unit(1.25, "feet"),
  2298. name: "Beak (Shut)",
  2299. image: {
  2300. source: "./media/characters/elijah/beak-shut.svg"
  2301. }
  2302. },
  2303. footFlexing: {
  2304. height: math.unit(1.61, "feet"),
  2305. name: "Foot (Flexing)",
  2306. image: {
  2307. source: "./media/characters/elijah/foot-flexing.svg"
  2308. }
  2309. },
  2310. footStepping: {
  2311. height: math.unit(1.44, "feet"),
  2312. name: "Foot (Stepping)",
  2313. image: {
  2314. source: "./media/characters/elijah/foot-stepping.svg"
  2315. }
  2316. },
  2317. plantigradeLeg: {
  2318. height: math.unit(2.34, "feet"),
  2319. name: "Plantigrade Leg",
  2320. image: {
  2321. source: "./media/characters/elijah/plantigrade-leg.svg"
  2322. }
  2323. },
  2324. plantigradeFootLeft: {
  2325. height: math.unit(0.9, "feet"),
  2326. name: "Plantigrade Foot (Left)",
  2327. image: {
  2328. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2329. }
  2330. },
  2331. plantigradeFootRight: {
  2332. height: math.unit(0.9, "feet"),
  2333. name: "Plantigrade Foot (Right)",
  2334. image: {
  2335. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2336. }
  2337. },
  2338. },
  2339. [
  2340. {
  2341. name: "Normal",
  2342. height: math.unit(1.65, "meters")
  2343. },
  2344. {
  2345. name: "Macro",
  2346. height: math.unit(55, "meters"),
  2347. default: true
  2348. },
  2349. {
  2350. name: "Macro+",
  2351. height: math.unit(105, "meters")
  2352. },
  2353. ]
  2354. ))
  2355. characterMakers.push(() => makeCharacter(
  2356. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2357. {
  2358. front: {
  2359. height: math.unit(11, "feet"),
  2360. weight: math.unit(320, "kg"),
  2361. name: "Front",
  2362. image: {
  2363. source: "./media/characters/rai/front.svg",
  2364. extra: 1802/1696,
  2365. bottom: 68/1870
  2366. }
  2367. },
  2368. frontDressed: {
  2369. height: math.unit(11, "feet"),
  2370. weight: math.unit(320, "kg"),
  2371. name: "Front (Dressed)",
  2372. image: {
  2373. source: "./media/characters/rai/front-dressed.svg",
  2374. extra: 1802/1696,
  2375. bottom: 68/1870
  2376. }
  2377. },
  2378. side: {
  2379. height: math.unit(11, "feet"),
  2380. weight: math.unit(320, "kg"),
  2381. name: "Side",
  2382. image: {
  2383. source: "./media/characters/rai/side.svg",
  2384. extra: 1789/1710,
  2385. bottom: 115/1904
  2386. }
  2387. },
  2388. back: {
  2389. height: math.unit(11, "feet"),
  2390. weight: math.unit(320, "kg"),
  2391. name: "Back",
  2392. image: {
  2393. source: "./media/characters/rai/back.svg",
  2394. extra: 1770/1707,
  2395. bottom: 28/1798
  2396. }
  2397. },
  2398. feral: {
  2399. height: math.unit(11, "feet"),
  2400. weight: math.unit(640, "kg"),
  2401. name: "Feral",
  2402. image: {
  2403. source: "./media/characters/rai/feral.svg",
  2404. extra: 1035/642,
  2405. bottom: 86/1121
  2406. }
  2407. },
  2408. dragon: {
  2409. height: math.unit(23, "feet"),
  2410. weight: math.unit(50000, "lb"),
  2411. name: "Dragon",
  2412. image: {
  2413. source: "./media/characters/rai/dragon.svg",
  2414. extra: 2498 / 2030,
  2415. bottom: 85.2 / 2584
  2416. }
  2417. },
  2418. maw: {
  2419. height: math.unit(6 / 3.81416, "feet"),
  2420. name: "Maw",
  2421. image: {
  2422. source: "./media/characters/rai/maw.svg"
  2423. }
  2424. },
  2425. },
  2426. [
  2427. {
  2428. name: "Normal",
  2429. height: math.unit(11, "feet")
  2430. },
  2431. {
  2432. name: "Macro",
  2433. height: math.unit(302, "feet"),
  2434. default: true
  2435. },
  2436. ]
  2437. ))
  2438. characterMakers.push(() => makeCharacter(
  2439. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2440. {
  2441. frontDressed: {
  2442. height: math.unit(216, "feet"),
  2443. weight: math.unit(7000000, "lb"),
  2444. name: "Front (Dressed)",
  2445. image: {
  2446. source: "./media/characters/jazzy/front-dressed.svg",
  2447. extra: 2738 / 2651,
  2448. bottom: 41.8 / 2786
  2449. }
  2450. },
  2451. backDressed: {
  2452. height: math.unit(216, "feet"),
  2453. weight: math.unit(7000000, "lb"),
  2454. name: "Back (Dressed)",
  2455. image: {
  2456. source: "./media/characters/jazzy/back-dressed.svg",
  2457. extra: 2775 / 2673,
  2458. bottom: 36.8 / 2817
  2459. }
  2460. },
  2461. front: {
  2462. height: math.unit(216, "feet"),
  2463. weight: math.unit(7000000, "lb"),
  2464. name: "Front",
  2465. image: {
  2466. source: "./media/characters/jazzy/front.svg",
  2467. extra: 2738 / 2651,
  2468. bottom: 41.8 / 2786
  2469. }
  2470. },
  2471. back: {
  2472. height: math.unit(216, "feet"),
  2473. weight: math.unit(7000000, "lb"),
  2474. name: "Back",
  2475. image: {
  2476. source: "./media/characters/jazzy/back.svg",
  2477. extra: 2775 / 2673,
  2478. bottom: 36.8 / 2817
  2479. }
  2480. },
  2481. maw: {
  2482. height: math.unit(20, "feet"),
  2483. name: "Maw",
  2484. image: {
  2485. source: "./media/characters/jazzy/maw.svg"
  2486. }
  2487. },
  2488. paws: {
  2489. height: math.unit(27.5, "feet"),
  2490. name: "Paws",
  2491. image: {
  2492. source: "./media/characters/jazzy/paws.svg"
  2493. }
  2494. },
  2495. eye: {
  2496. height: math.unit(4.4, "feet"),
  2497. name: "Eye",
  2498. image: {
  2499. source: "./media/characters/jazzy/eye.svg"
  2500. }
  2501. },
  2502. droneOffense: {
  2503. height: math.unit(9.5, "inches"),
  2504. name: "Drone (Offense)",
  2505. image: {
  2506. source: "./media/characters/jazzy/drone-offense.svg"
  2507. }
  2508. },
  2509. droneRecon: {
  2510. height: math.unit(9.5, "inches"),
  2511. name: "Drone (Recon)",
  2512. image: {
  2513. source: "./media/characters/jazzy/drone-recon.svg"
  2514. }
  2515. },
  2516. droneDefense: {
  2517. height: math.unit(9.5, "inches"),
  2518. name: "Drone (Defense)",
  2519. image: {
  2520. source: "./media/characters/jazzy/drone-defense.svg"
  2521. }
  2522. },
  2523. },
  2524. [
  2525. {
  2526. name: "Macro",
  2527. height: math.unit(216, "feet"),
  2528. default: true
  2529. },
  2530. ]
  2531. ))
  2532. characterMakers.push(() => makeCharacter(
  2533. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2534. {
  2535. front: {
  2536. height: math.unit(9 + 6/12, "feet"),
  2537. weight: math.unit(700, "lb"),
  2538. name: "Front",
  2539. image: {
  2540. source: "./media/characters/flamm/front.svg",
  2541. extra: 1751/1632,
  2542. bottom: 46/1797
  2543. }
  2544. },
  2545. buff: {
  2546. height: math.unit(9 + 6/12, "feet"),
  2547. weight: math.unit(950, "lb"),
  2548. name: "Buff",
  2549. image: {
  2550. source: "./media/characters/flamm/buff.svg",
  2551. extra: 3018/2874,
  2552. bottom: 221/3239
  2553. }
  2554. },
  2555. },
  2556. [
  2557. {
  2558. name: "Normal",
  2559. height: math.unit(9.5, "feet")
  2560. },
  2561. {
  2562. name: "Macro",
  2563. height: math.unit(200, "feet"),
  2564. default: true
  2565. },
  2566. ]
  2567. ))
  2568. characterMakers.push(() => makeCharacter(
  2569. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2570. {
  2571. front: {
  2572. height: math.unit(5 + 3/12, "feet"),
  2573. weight: math.unit(60, "kg"),
  2574. name: "Front",
  2575. image: {
  2576. source: "./media/characters/zephiro/front.svg",
  2577. extra: 2309 / 2162,
  2578. bottom: 0.069
  2579. }
  2580. },
  2581. side: {
  2582. height: math.unit(5 + 3/12, "feet"),
  2583. weight: math.unit(60, "kg"),
  2584. name: "Side",
  2585. image: {
  2586. source: "./media/characters/zephiro/side.svg",
  2587. extra: 2403 / 2279,
  2588. bottom: 0.015
  2589. }
  2590. },
  2591. back: {
  2592. height: math.unit(5 + 3/12, "feet"),
  2593. weight: math.unit(60, "kg"),
  2594. name: "Back",
  2595. image: {
  2596. source: "./media/characters/zephiro/back.svg",
  2597. extra: 2373 / 2244,
  2598. bottom: 0.013
  2599. }
  2600. },
  2601. hand: {
  2602. height: math.unit(0.68, "feet"),
  2603. name: "Hand",
  2604. image: {
  2605. source: "./media/characters/zephiro/hand.svg"
  2606. }
  2607. },
  2608. paw: {
  2609. height: math.unit(1, "feet"),
  2610. name: "Paw",
  2611. image: {
  2612. source: "./media/characters/zephiro/paw.svg"
  2613. }
  2614. },
  2615. beans: {
  2616. height: math.unit(0.93, "feet"),
  2617. name: "Beans",
  2618. image: {
  2619. source: "./media/characters/zephiro/beans.svg"
  2620. }
  2621. },
  2622. },
  2623. [
  2624. {
  2625. name: "Micro",
  2626. height: math.unit(3, "inches")
  2627. },
  2628. {
  2629. name: "Normal",
  2630. height: math.unit(5 + 3 / 12, "feet"),
  2631. default: true
  2632. },
  2633. {
  2634. name: "Macro",
  2635. height: math.unit(118, "feet")
  2636. },
  2637. ]
  2638. ))
  2639. characterMakers.push(() => makeCharacter(
  2640. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2641. {
  2642. front: {
  2643. height: math.unit(5, "feet"),
  2644. weight: math.unit(90, "kg"),
  2645. name: "Front",
  2646. image: {
  2647. source: "./media/characters/fory/front.svg",
  2648. extra: 2862 / 2674,
  2649. bottom: 180 / 3043.8
  2650. }
  2651. },
  2652. back: {
  2653. height: math.unit(5, "feet"),
  2654. weight: math.unit(90, "kg"),
  2655. name: "Back",
  2656. image: {
  2657. source: "./media/characters/fory/back.svg",
  2658. extra: 2962 / 2791,
  2659. bottom: 106 / 3071.8
  2660. }
  2661. },
  2662. foot: {
  2663. height: math.unit(2.14, "feet"),
  2664. name: "Foot",
  2665. image: {
  2666. source: "./media/characters/fory/foot.svg"
  2667. }
  2668. },
  2669. },
  2670. [
  2671. {
  2672. name: "Normal",
  2673. height: math.unit(5, "feet")
  2674. },
  2675. {
  2676. name: "Macro",
  2677. height: math.unit(50, "feet"),
  2678. default: true
  2679. },
  2680. {
  2681. name: "Megamacro",
  2682. height: math.unit(10, "miles")
  2683. },
  2684. {
  2685. name: "Gigamacro",
  2686. height: math.unit(5, "earths")
  2687. },
  2688. ]
  2689. ))
  2690. characterMakers.push(() => makeCharacter(
  2691. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2692. {
  2693. front: {
  2694. height: math.unit(7, "feet"),
  2695. weight: math.unit(90, "kg"),
  2696. name: "Front",
  2697. image: {
  2698. source: "./media/characters/kurrikage/front.svg",
  2699. extra: 1,
  2700. bottom: 0.035
  2701. }
  2702. },
  2703. back: {
  2704. height: math.unit(7, "feet"),
  2705. weight: math.unit(90, "lb"),
  2706. name: "Back",
  2707. image: {
  2708. source: "./media/characters/kurrikage/back.svg"
  2709. }
  2710. },
  2711. paw: {
  2712. height: math.unit(1.5, "feet"),
  2713. name: "Paw",
  2714. image: {
  2715. source: "./media/characters/kurrikage/paw.svg"
  2716. }
  2717. },
  2718. staff: {
  2719. height: math.unit(6.7, "feet"),
  2720. name: "Staff",
  2721. image: {
  2722. source: "./media/characters/kurrikage/staff.svg"
  2723. }
  2724. },
  2725. peek: {
  2726. height: math.unit(1.05, "feet"),
  2727. name: "Peeking",
  2728. image: {
  2729. source: "./media/characters/kurrikage/peek.svg",
  2730. bottom: 0.08
  2731. }
  2732. },
  2733. },
  2734. [
  2735. {
  2736. name: "Normal",
  2737. height: math.unit(12, "feet"),
  2738. default: true
  2739. },
  2740. {
  2741. name: "Big",
  2742. height: math.unit(20, "feet")
  2743. },
  2744. {
  2745. name: "Macro",
  2746. height: math.unit(500, "feet")
  2747. },
  2748. {
  2749. name: "Megamacro",
  2750. height: math.unit(20, "miles")
  2751. },
  2752. ]
  2753. ))
  2754. characterMakers.push(() => makeCharacter(
  2755. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2756. {
  2757. front: {
  2758. height: math.unit(6, "feet"),
  2759. weight: math.unit(75, "kg"),
  2760. name: "Front",
  2761. image: {
  2762. source: "./media/characters/shingo/front.svg",
  2763. extra: 1900/1825,
  2764. bottom: 82/1982
  2765. }
  2766. },
  2767. side: {
  2768. height: math.unit(6, "feet"),
  2769. weight: math.unit(75, "kg"),
  2770. name: "Side",
  2771. image: {
  2772. source: "./media/characters/shingo/side.svg",
  2773. extra: 1930/1865,
  2774. bottom: 16/1946
  2775. }
  2776. },
  2777. back: {
  2778. height: math.unit(6, "feet"),
  2779. weight: math.unit(75, "kg"),
  2780. name: "Back",
  2781. image: {
  2782. source: "./media/characters/shingo/back.svg",
  2783. extra: 1922/1852,
  2784. bottom: 16/1938
  2785. }
  2786. },
  2787. frontDressed: {
  2788. height: math.unit(6, "feet"),
  2789. weight: math.unit(150, "lb"),
  2790. name: "Front-dressed",
  2791. image: {
  2792. source: "./media/characters/shingo/front-dressed.svg",
  2793. extra: 1900/1825,
  2794. bottom: 82/1982
  2795. }
  2796. },
  2797. paw: {
  2798. height: math.unit(1.29, "feet"),
  2799. name: "Paw",
  2800. image: {
  2801. source: "./media/characters/shingo/paw.svg"
  2802. }
  2803. },
  2804. hand: {
  2805. height: math.unit(1.07, "feet"),
  2806. name: "Hand",
  2807. image: {
  2808. source: "./media/characters/shingo/hand.svg"
  2809. }
  2810. },
  2811. frontAlt: {
  2812. height: math.unit(6, "feet"),
  2813. weight: math.unit(75, "kg"),
  2814. name: "Front (Alt)",
  2815. image: {
  2816. source: "./media/characters/shingo/front-alt.svg",
  2817. extra: 3511 / 3338,
  2818. bottom: 0.005
  2819. }
  2820. },
  2821. frontAlt2: {
  2822. height: math.unit(6, "feet"),
  2823. weight: math.unit(75, "kg"),
  2824. name: "Front (Alt 2)",
  2825. image: {
  2826. source: "./media/characters/shingo/front-alt-2.svg",
  2827. extra: 706/681,
  2828. bottom: 11/717
  2829. }
  2830. },
  2831. pawAlt: {
  2832. height: math.unit(1, "feet"),
  2833. name: "Paw (Alt)",
  2834. image: {
  2835. source: "./media/characters/shingo/paw-alt.svg"
  2836. }
  2837. },
  2838. },
  2839. [
  2840. {
  2841. name: "Micro",
  2842. height: math.unit(4, "inches")
  2843. },
  2844. {
  2845. name: "Normal",
  2846. height: math.unit(6, "feet"),
  2847. default: true
  2848. },
  2849. {
  2850. name: "Macro",
  2851. height: math.unit(108, "feet")
  2852. },
  2853. {
  2854. name: "Macro+",
  2855. height: math.unit(1500, "feet")
  2856. },
  2857. ]
  2858. ))
  2859. characterMakers.push(() => makeCharacter(
  2860. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2861. {
  2862. side: {
  2863. height: math.unit(6, "feet"),
  2864. weight: math.unit(75, "kg"),
  2865. name: "Side",
  2866. image: {
  2867. source: "./media/characters/aigey/side.svg"
  2868. }
  2869. },
  2870. },
  2871. [
  2872. {
  2873. name: "Macro",
  2874. height: math.unit(200, "feet"),
  2875. default: true
  2876. },
  2877. {
  2878. name: "Megamacro",
  2879. height: math.unit(100, "miles")
  2880. },
  2881. ]
  2882. )
  2883. )
  2884. characterMakers.push(() => makeCharacter(
  2885. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  2886. {
  2887. front: {
  2888. height: math.unit(5 + 5 / 12, "feet"),
  2889. weight: math.unit(75, "kg"),
  2890. name: "Front",
  2891. image: {
  2892. source: "./media/characters/natasha/front.svg",
  2893. extra: 859 / 824,
  2894. bottom: 23 / 879.6
  2895. }
  2896. },
  2897. frontNsfw: {
  2898. height: math.unit(5 + 5 / 12, "feet"),
  2899. weight: math.unit(75, "kg"),
  2900. name: "Front (NSFW)",
  2901. image: {
  2902. source: "./media/characters/natasha/front-nsfw.svg",
  2903. extra: 859 / 824,
  2904. bottom: 23 / 879.6
  2905. }
  2906. },
  2907. frontErect: {
  2908. height: math.unit(5 + 5 / 12, "feet"),
  2909. weight: math.unit(75, "kg"),
  2910. name: "Front (Erect)",
  2911. image: {
  2912. source: "./media/characters/natasha/front-erect.svg",
  2913. extra: 859 / 824,
  2914. bottom: 23 / 879.6
  2915. }
  2916. },
  2917. back: {
  2918. height: math.unit(5 + 5 / 12, "feet"),
  2919. weight: math.unit(75, "kg"),
  2920. name: "Back",
  2921. image: {
  2922. source: "./media/characters/natasha/back.svg",
  2923. extra: 887.9 / 852.6,
  2924. bottom: 9.7 / 896.4
  2925. }
  2926. },
  2927. backAlt: {
  2928. height: math.unit(5 + 5 / 12, "feet"),
  2929. weight: math.unit(75, "kg"),
  2930. name: "Back (Alt)",
  2931. image: {
  2932. source: "./media/characters/natasha/back-alt.svg",
  2933. extra: 1236.7 / 1192,
  2934. bottom: 22.3 / 1258.2
  2935. }
  2936. },
  2937. dick: {
  2938. height: math.unit(1.772, "feet"),
  2939. name: "Dick",
  2940. image: {
  2941. source: "./media/characters/natasha/dick.svg"
  2942. }
  2943. },
  2944. paw: {
  2945. height: math.unit(0.250, "meters"),
  2946. name: "Paw",
  2947. image: {
  2948. source: "./media/characters/natasha/paw.svg"
  2949. }
  2950. },
  2951. },
  2952. [
  2953. {
  2954. name: "Normal",
  2955. height: math.unit(5 + 5 / 12, "feet")
  2956. },
  2957. {
  2958. name: "Large",
  2959. height: math.unit(12, "feet")
  2960. },
  2961. {
  2962. name: "Macro",
  2963. height: math.unit(100, "feet"),
  2964. default: true
  2965. },
  2966. {
  2967. name: "Macro+",
  2968. height: math.unit(260, "feet")
  2969. },
  2970. {
  2971. name: "Macro++",
  2972. height: math.unit(1, "mile")
  2973. },
  2974. ]
  2975. ))
  2976. characterMakers.push(() => makeCharacter(
  2977. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  2978. {
  2979. front: {
  2980. height: math.unit(6, "feet"),
  2981. weight: math.unit(75, "kg"),
  2982. name: "Front",
  2983. image: {
  2984. source: "./media/characters/malik/front.svg"
  2985. }
  2986. },
  2987. side: {
  2988. height: math.unit(6, "feet"),
  2989. weight: math.unit(75, "kg"),
  2990. name: "Side",
  2991. image: {
  2992. source: "./media/characters/malik/side.svg",
  2993. extra: 1.1539
  2994. }
  2995. },
  2996. back: {
  2997. height: math.unit(6, "feet"),
  2998. weight: math.unit(75, "kg"),
  2999. name: "Back",
  3000. image: {
  3001. source: "./media/characters/malik/back.svg"
  3002. }
  3003. },
  3004. },
  3005. [
  3006. {
  3007. name: "Macro",
  3008. height: math.unit(156, "feet"),
  3009. default: true
  3010. },
  3011. {
  3012. name: "Macro+",
  3013. height: math.unit(1188, "feet")
  3014. },
  3015. ]
  3016. ))
  3017. characterMakers.push(() => makeCharacter(
  3018. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3019. {
  3020. front: {
  3021. height: math.unit(6, "feet"),
  3022. weight: math.unit(75, "kg"),
  3023. name: "Front",
  3024. image: {
  3025. source: "./media/characters/sefer/front.svg",
  3026. extra: 848 / 659,
  3027. bottom: 28.3 / 876.442
  3028. }
  3029. },
  3030. back: {
  3031. height: math.unit(6, "feet"),
  3032. weight: math.unit(75, "kg"),
  3033. name: "Back",
  3034. image: {
  3035. source: "./media/characters/sefer/back.svg",
  3036. extra: 864 / 695,
  3037. bottom: 10 / 871
  3038. }
  3039. },
  3040. frontDressed: {
  3041. height: math.unit(6, "feet"),
  3042. weight: math.unit(75, "kg"),
  3043. name: "Front (Dressed)",
  3044. image: {
  3045. source: "./media/characters/sefer/front-dressed.svg",
  3046. extra: 839 / 653,
  3047. bottom: 37.6 / 878
  3048. }
  3049. },
  3050. },
  3051. [
  3052. {
  3053. name: "Normal",
  3054. height: math.unit(6, "feet"),
  3055. default: true
  3056. },
  3057. ]
  3058. ))
  3059. characterMakers.push(() => makeCharacter(
  3060. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3061. {
  3062. body: {
  3063. height: math.unit(2.2428, "meter"),
  3064. weight: math.unit(124.738, "kg"),
  3065. name: "Body",
  3066. image: {
  3067. extra: 1225 / 1050,
  3068. source: "./media/characters/north/front.svg"
  3069. }
  3070. }
  3071. },
  3072. [
  3073. {
  3074. name: "Micro",
  3075. height: math.unit(4, "inches")
  3076. },
  3077. {
  3078. name: "Macro",
  3079. height: math.unit(63, "meters")
  3080. },
  3081. {
  3082. name: "Megamacro",
  3083. height: math.unit(101, "miles"),
  3084. default: true
  3085. }
  3086. ]
  3087. ))
  3088. characterMakers.push(() => makeCharacter(
  3089. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3090. {
  3091. angled: {
  3092. height: math.unit(4, "meter"),
  3093. weight: math.unit(150, "kg"),
  3094. name: "Angled",
  3095. image: {
  3096. source: "./media/characters/talan/angled-sfw.svg",
  3097. bottom: 29 / 3734
  3098. }
  3099. },
  3100. angledNsfw: {
  3101. height: math.unit(4, "meter"),
  3102. weight: math.unit(150, "kg"),
  3103. name: "Angled (NSFW)",
  3104. image: {
  3105. source: "./media/characters/talan/angled-nsfw.svg",
  3106. bottom: 29 / 3734
  3107. }
  3108. },
  3109. frontNsfw: {
  3110. height: math.unit(4, "meter"),
  3111. weight: math.unit(150, "kg"),
  3112. name: "Front (NSFW)",
  3113. image: {
  3114. source: "./media/characters/talan/front-nsfw.svg",
  3115. bottom: 29 / 3734
  3116. }
  3117. },
  3118. sideNsfw: {
  3119. height: math.unit(4, "meter"),
  3120. weight: math.unit(150, "kg"),
  3121. name: "Side (NSFW)",
  3122. image: {
  3123. source: "./media/characters/talan/side-nsfw.svg",
  3124. bottom: 29 / 3734
  3125. }
  3126. },
  3127. back: {
  3128. height: math.unit(4, "meter"),
  3129. weight: math.unit(150, "kg"),
  3130. name: "Back",
  3131. image: {
  3132. source: "./media/characters/talan/back.svg"
  3133. }
  3134. },
  3135. dickBottom: {
  3136. height: math.unit(0.621, "meter"),
  3137. name: "Dick (Bottom)",
  3138. image: {
  3139. source: "./media/characters/talan/dick-bottom.svg"
  3140. }
  3141. },
  3142. dickTop: {
  3143. height: math.unit(0.621, "meter"),
  3144. name: "Dick (Top)",
  3145. image: {
  3146. source: "./media/characters/talan/dick-top.svg"
  3147. }
  3148. },
  3149. dickSide: {
  3150. height: math.unit(0.305, "meter"),
  3151. name: "Dick (Side)",
  3152. image: {
  3153. source: "./media/characters/talan/dick-side.svg"
  3154. }
  3155. },
  3156. dickFront: {
  3157. height: math.unit(0.305, "meter"),
  3158. name: "Dick (Front)",
  3159. image: {
  3160. source: "./media/characters/talan/dick-front.svg"
  3161. }
  3162. },
  3163. },
  3164. [
  3165. {
  3166. name: "Normal",
  3167. height: math.unit(4, "meters")
  3168. },
  3169. {
  3170. name: "Macro",
  3171. height: math.unit(100, "meters")
  3172. },
  3173. {
  3174. name: "Megamacro",
  3175. height: math.unit(2, "miles"),
  3176. default: true
  3177. },
  3178. {
  3179. name: "Gigamacro",
  3180. height: math.unit(5000, "miles")
  3181. },
  3182. {
  3183. name: "Teramacro",
  3184. height: math.unit(100, "parsecs")
  3185. }
  3186. ]
  3187. ))
  3188. characterMakers.push(() => makeCharacter(
  3189. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3190. {
  3191. front: {
  3192. height: math.unit(2, "meter"),
  3193. weight: math.unit(90, "kg"),
  3194. name: "Front",
  3195. image: {
  3196. source: "./media/characters/gael'rathus/front.svg"
  3197. }
  3198. },
  3199. frontAlt: {
  3200. height: math.unit(2, "meter"),
  3201. weight: math.unit(90, "kg"),
  3202. name: "Front (alt)",
  3203. image: {
  3204. source: "./media/characters/gael'rathus/front-alt.svg"
  3205. }
  3206. },
  3207. frontAlt2: {
  3208. height: math.unit(2, "meter"),
  3209. weight: math.unit(90, "kg"),
  3210. name: "Front (alt 2)",
  3211. image: {
  3212. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3213. }
  3214. }
  3215. },
  3216. [
  3217. {
  3218. name: "Normal",
  3219. height: math.unit(9, "feet"),
  3220. default: true
  3221. },
  3222. {
  3223. name: "Large",
  3224. height: math.unit(25, "feet")
  3225. },
  3226. {
  3227. name: "Macro",
  3228. height: math.unit(0.25, "miles")
  3229. },
  3230. {
  3231. name: "Megamacro",
  3232. height: math.unit(10, "miles")
  3233. }
  3234. ]
  3235. ))
  3236. characterMakers.push(() => makeCharacter(
  3237. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3238. {
  3239. side: {
  3240. height: math.unit(2, "meter"),
  3241. weight: math.unit(140, "kg"),
  3242. name: "Side",
  3243. image: {
  3244. source: "./media/characters/sosha/side.svg",
  3245. bottom: 0.042
  3246. }
  3247. },
  3248. },
  3249. [
  3250. {
  3251. name: "Normal",
  3252. height: math.unit(12, "feet"),
  3253. default: true
  3254. }
  3255. ]
  3256. ))
  3257. characterMakers.push(() => makeCharacter(
  3258. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3259. {
  3260. side: {
  3261. height: math.unit(5 + 5 / 12, "feet"),
  3262. weight: math.unit(170, "kg"),
  3263. name: "Side",
  3264. image: {
  3265. source: "./media/characters/runnola/side.svg",
  3266. extra: 741 / 448,
  3267. bottom: 0.05
  3268. }
  3269. },
  3270. },
  3271. [
  3272. {
  3273. name: "Small",
  3274. height: math.unit(3, "feet")
  3275. },
  3276. {
  3277. name: "Normal",
  3278. height: math.unit(5 + 5 / 12, "feet"),
  3279. default: true
  3280. },
  3281. {
  3282. name: "Big",
  3283. height: math.unit(10, "feet")
  3284. },
  3285. ]
  3286. ))
  3287. characterMakers.push(() => makeCharacter(
  3288. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3289. {
  3290. front: {
  3291. height: math.unit(2, "meter"),
  3292. weight: math.unit(50, "kg"),
  3293. name: "Front",
  3294. image: {
  3295. source: "./media/characters/kurribird/front.svg",
  3296. bottom: 0.015
  3297. }
  3298. },
  3299. frontAlt: {
  3300. height: math.unit(1.5, "meter"),
  3301. weight: math.unit(50, "kg"),
  3302. name: "Front (Alt)",
  3303. image: {
  3304. source: "./media/characters/kurribird/front-alt.svg",
  3305. extra: 1.45
  3306. }
  3307. },
  3308. },
  3309. [
  3310. {
  3311. name: "Normal",
  3312. height: math.unit(7, "feet")
  3313. },
  3314. {
  3315. name: "Big",
  3316. height: math.unit(12, "feet"),
  3317. default: true
  3318. },
  3319. {
  3320. name: "Macro",
  3321. height: math.unit(1500, "feet")
  3322. },
  3323. {
  3324. name: "Megamacro",
  3325. height: math.unit(2, "miles")
  3326. }
  3327. ]
  3328. ))
  3329. characterMakers.push(() => makeCharacter(
  3330. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3331. {
  3332. front: {
  3333. height: math.unit(2, "meter"),
  3334. weight: math.unit(80, "kg"),
  3335. name: "Front",
  3336. image: {
  3337. source: "./media/characters/elbial/front.svg",
  3338. extra: 1643 / 1556,
  3339. bottom: 60.2 / 1696
  3340. }
  3341. },
  3342. side: {
  3343. height: math.unit(2, "meter"),
  3344. weight: math.unit(80, "kg"),
  3345. name: "Side",
  3346. image: {
  3347. source: "./media/characters/elbial/side.svg",
  3348. extra: 1630 / 1565,
  3349. bottom: 71.5 / 1697
  3350. }
  3351. },
  3352. back: {
  3353. height: math.unit(2, "meter"),
  3354. weight: math.unit(80, "kg"),
  3355. name: "Back",
  3356. image: {
  3357. source: "./media/characters/elbial/back.svg",
  3358. extra: 1668 / 1595,
  3359. bottom: 5.6 / 1672
  3360. }
  3361. },
  3362. frontDressed: {
  3363. height: math.unit(2, "meter"),
  3364. weight: math.unit(80, "kg"),
  3365. name: "Front (Dressed)",
  3366. image: {
  3367. source: "./media/characters/elbial/front-dressed.svg",
  3368. extra: 1653 / 1584,
  3369. bottom: 57 / 1708
  3370. }
  3371. },
  3372. genitals: {
  3373. height: math.unit(2 / 3.367, "meter"),
  3374. name: "Genitals",
  3375. image: {
  3376. source: "./media/characters/elbial/genitals.svg"
  3377. }
  3378. },
  3379. },
  3380. [
  3381. {
  3382. name: "Large",
  3383. height: math.unit(100, "feet")
  3384. },
  3385. {
  3386. name: "Macro",
  3387. height: math.unit(500, "feet"),
  3388. default: true
  3389. },
  3390. {
  3391. name: "Megamacro",
  3392. height: math.unit(10, "miles")
  3393. },
  3394. {
  3395. name: "Gigamacro",
  3396. height: math.unit(25000, "miles")
  3397. },
  3398. {
  3399. name: "Full-Size",
  3400. height: math.unit(8000000, "gigaparsecs")
  3401. }
  3402. ]
  3403. ))
  3404. characterMakers.push(() => makeCharacter(
  3405. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3406. {
  3407. front: {
  3408. height: math.unit(2, "meter"),
  3409. weight: math.unit(60, "kg"),
  3410. name: "Front",
  3411. image: {
  3412. source: "./media/characters/noah/front.svg"
  3413. }
  3414. },
  3415. talons: {
  3416. height: math.unit(0.315, "meter"),
  3417. name: "Talons",
  3418. image: {
  3419. source: "./media/characters/noah/talons.svg"
  3420. }
  3421. }
  3422. },
  3423. [
  3424. {
  3425. name: "Large",
  3426. height: math.unit(50, "feet")
  3427. },
  3428. {
  3429. name: "Macro",
  3430. height: math.unit(750, "feet"),
  3431. default: true
  3432. },
  3433. {
  3434. name: "Megamacro",
  3435. height: math.unit(50, "miles")
  3436. },
  3437. {
  3438. name: "Gigamacro",
  3439. height: math.unit(100000, "miles")
  3440. },
  3441. {
  3442. name: "Full-Size",
  3443. height: math.unit(3000000000, "miles")
  3444. }
  3445. ]
  3446. ))
  3447. characterMakers.push(() => makeCharacter(
  3448. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3449. {
  3450. front: {
  3451. height: math.unit(2, "meter"),
  3452. weight: math.unit(80, "kg"),
  3453. name: "Front",
  3454. image: {
  3455. source: "./media/characters/natalya/front.svg"
  3456. }
  3457. },
  3458. back: {
  3459. height: math.unit(2, "meter"),
  3460. weight: math.unit(80, "kg"),
  3461. name: "Back",
  3462. image: {
  3463. source: "./media/characters/natalya/back.svg"
  3464. }
  3465. }
  3466. },
  3467. [
  3468. {
  3469. name: "Normal",
  3470. height: math.unit(150, "feet"),
  3471. default: true
  3472. },
  3473. {
  3474. name: "Megamacro",
  3475. height: math.unit(5, "miles")
  3476. },
  3477. {
  3478. name: "Full-Size",
  3479. height: math.unit(600, "kiloparsecs")
  3480. }
  3481. ]
  3482. ))
  3483. characterMakers.push(() => makeCharacter(
  3484. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3485. {
  3486. front: {
  3487. height: math.unit(2, "meter"),
  3488. weight: math.unit(50, "kg"),
  3489. name: "Front",
  3490. image: {
  3491. source: "./media/characters/erestrebah/front.svg",
  3492. extra: 208 / 193,
  3493. bottom: 0.055
  3494. }
  3495. },
  3496. back: {
  3497. height: math.unit(2, "meter"),
  3498. weight: math.unit(50, "kg"),
  3499. name: "Back",
  3500. image: {
  3501. source: "./media/characters/erestrebah/back.svg",
  3502. extra: 1.3
  3503. }
  3504. }
  3505. },
  3506. [
  3507. {
  3508. name: "Normal",
  3509. height: math.unit(10, "feet")
  3510. },
  3511. {
  3512. name: "Large",
  3513. height: math.unit(50, "feet"),
  3514. default: true
  3515. },
  3516. {
  3517. name: "Macro",
  3518. height: math.unit(300, "feet")
  3519. },
  3520. {
  3521. name: "Macro+",
  3522. height: math.unit(750, "feet")
  3523. },
  3524. {
  3525. name: "Megamacro",
  3526. height: math.unit(3, "miles")
  3527. }
  3528. ]
  3529. ))
  3530. characterMakers.push(() => makeCharacter(
  3531. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3532. {
  3533. front: {
  3534. height: math.unit(2, "meter"),
  3535. weight: math.unit(80, "kg"),
  3536. name: "Front",
  3537. image: {
  3538. source: "./media/characters/jennifer/front.svg",
  3539. bottom: 0.11,
  3540. extra: 1.16
  3541. }
  3542. },
  3543. frontAlt: {
  3544. height: math.unit(2, "meter"),
  3545. weight: math.unit(80, "kg"),
  3546. name: "Front (Alt)",
  3547. image: {
  3548. source: "./media/characters/jennifer/front-alt.svg"
  3549. }
  3550. }
  3551. },
  3552. [
  3553. {
  3554. name: "Canon Height",
  3555. height: math.unit(120, "feet"),
  3556. default: true
  3557. },
  3558. {
  3559. name: "Macro+",
  3560. height: math.unit(300, "feet")
  3561. },
  3562. {
  3563. name: "Megamacro",
  3564. height: math.unit(20000, "feet")
  3565. }
  3566. ]
  3567. ))
  3568. characterMakers.push(() => makeCharacter(
  3569. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3570. {
  3571. front: {
  3572. height: math.unit(2, "meter"),
  3573. weight: math.unit(50, "kg"),
  3574. name: "Front",
  3575. image: {
  3576. source: "./media/characters/kalista/front.svg",
  3577. extra: 1947 / 1700,
  3578. bottom: 76.6 / 1412.98
  3579. }
  3580. },
  3581. back: {
  3582. height: math.unit(2, "meter"),
  3583. weight: math.unit(50, "kg"),
  3584. name: "Back",
  3585. image: {
  3586. source: "./media/characters/kalista/back.svg",
  3587. extra: 1366 / 1156,
  3588. bottom: 33.9 / 1362.78
  3589. }
  3590. }
  3591. },
  3592. [
  3593. {
  3594. name: "Uncomfortably Small",
  3595. height: math.unit(10, "feet")
  3596. },
  3597. {
  3598. name: "Small",
  3599. height: math.unit(30, "feet")
  3600. },
  3601. {
  3602. name: "Macro",
  3603. height: math.unit(100, "feet"),
  3604. default: true
  3605. },
  3606. {
  3607. name: "Macro+",
  3608. height: math.unit(2000, "feet")
  3609. },
  3610. {
  3611. name: "True Form",
  3612. height: math.unit(8924, "miles")
  3613. }
  3614. ]
  3615. ))
  3616. characterMakers.push(() => makeCharacter(
  3617. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3618. {
  3619. front: {
  3620. height: math.unit(2, "meter"),
  3621. weight: math.unit(120, "kg"),
  3622. name: "Front",
  3623. image: {
  3624. source: "./media/characters/ggv/front.svg"
  3625. }
  3626. },
  3627. side: {
  3628. height: math.unit(2, "meter"),
  3629. weight: math.unit(120, "kg"),
  3630. name: "Side",
  3631. image: {
  3632. source: "./media/characters/ggv/side.svg"
  3633. }
  3634. }
  3635. },
  3636. [
  3637. {
  3638. name: "Extremely Puny",
  3639. height: math.unit(9 + 5 / 12, "feet")
  3640. },
  3641. {
  3642. name: "Horribly Small",
  3643. height: math.unit(47.7, "miles"),
  3644. default: true
  3645. },
  3646. {
  3647. name: "Reasonably Sized",
  3648. height: math.unit(25000, "parsecs")
  3649. },
  3650. {
  3651. name: "Slightly Uncompressed",
  3652. height: math.unit(7.77e31, "parsecs")
  3653. },
  3654. {
  3655. name: "Omniversal",
  3656. height: math.unit(1e300, "meters")
  3657. },
  3658. ]
  3659. ))
  3660. characterMakers.push(() => makeCharacter(
  3661. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3662. {
  3663. front: {
  3664. height: math.unit(2, "meter"),
  3665. weight: math.unit(75, "lb"),
  3666. name: "Front",
  3667. image: {
  3668. source: "./media/characters/napalm/front.svg"
  3669. }
  3670. },
  3671. back: {
  3672. height: math.unit(2, "meter"),
  3673. weight: math.unit(75, "lb"),
  3674. name: "Back",
  3675. image: {
  3676. source: "./media/characters/napalm/back.svg"
  3677. }
  3678. }
  3679. },
  3680. [
  3681. {
  3682. name: "Standard",
  3683. height: math.unit(55, "feet"),
  3684. default: true
  3685. }
  3686. ]
  3687. ))
  3688. characterMakers.push(() => makeCharacter(
  3689. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3690. {
  3691. front: {
  3692. height: math.unit(7 + 5 / 6, "feet"),
  3693. weight: math.unit(325, "lb"),
  3694. name: "Front",
  3695. image: {
  3696. source: "./media/characters/asana/front.svg",
  3697. extra: 1133 / 1060,
  3698. bottom: 15.2 / 1148.6
  3699. }
  3700. },
  3701. back: {
  3702. height: math.unit(7 + 5 / 6, "feet"),
  3703. weight: math.unit(325, "lb"),
  3704. name: "Back",
  3705. image: {
  3706. source: "./media/characters/asana/back.svg",
  3707. extra: 1114 / 1043,
  3708. bottom: 5 / 1120
  3709. }
  3710. },
  3711. dressedDark: {
  3712. height: math.unit(7 + 5 / 6, "feet"),
  3713. weight: math.unit(325, "lb"),
  3714. name: "Dressed (Dark)",
  3715. image: {
  3716. source: "./media/characters/asana/dressed-dark.svg",
  3717. extra: 1133 / 1060,
  3718. bottom: 15.2 / 1148.6
  3719. }
  3720. },
  3721. dressedLight: {
  3722. height: math.unit(7 + 5 / 6, "feet"),
  3723. weight: math.unit(325, "lb"),
  3724. name: "Dressed (Light)",
  3725. image: {
  3726. source: "./media/characters/asana/dressed-light.svg",
  3727. extra: 1133 / 1060,
  3728. bottom: 15.2 / 1148.6
  3729. }
  3730. },
  3731. },
  3732. [
  3733. {
  3734. name: "Standard",
  3735. height: math.unit(7 + 5 / 6, "feet"),
  3736. default: true
  3737. },
  3738. {
  3739. name: "Large",
  3740. height: math.unit(10, "meters")
  3741. },
  3742. {
  3743. name: "Macro",
  3744. height: math.unit(2500, "meters")
  3745. },
  3746. {
  3747. name: "Megamacro",
  3748. height: math.unit(5e6, "meters")
  3749. },
  3750. {
  3751. name: "Examacro",
  3752. height: math.unit(5e12, "lightyears")
  3753. },
  3754. {
  3755. name: "Max Size",
  3756. height: math.unit(1e31, "lightyears")
  3757. }
  3758. ]
  3759. ))
  3760. characterMakers.push(() => makeCharacter(
  3761. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3762. {
  3763. front: {
  3764. height: math.unit(2, "meter"),
  3765. weight: math.unit(60, "kg"),
  3766. name: "Front",
  3767. image: {
  3768. source: "./media/characters/ebony/front.svg",
  3769. bottom: 0.03,
  3770. extra: 1045 / 810 + 0.03
  3771. }
  3772. },
  3773. side: {
  3774. height: math.unit(2, "meter"),
  3775. weight: math.unit(60, "kg"),
  3776. name: "Side",
  3777. image: {
  3778. source: "./media/characters/ebony/side.svg",
  3779. bottom: 0.03,
  3780. extra: 1045 / 810 + 0.03
  3781. }
  3782. },
  3783. back: {
  3784. height: math.unit(2, "meter"),
  3785. weight: math.unit(60, "kg"),
  3786. name: "Back",
  3787. image: {
  3788. source: "./media/characters/ebony/back.svg",
  3789. bottom: 0.01,
  3790. extra: 1045 / 810 + 0.01
  3791. }
  3792. },
  3793. },
  3794. [
  3795. // TODO check why I did this lol
  3796. {
  3797. name: "Standard",
  3798. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3799. default: true
  3800. },
  3801. {
  3802. name: "Macro",
  3803. height: math.unit(200, "feet")
  3804. },
  3805. {
  3806. name: "Gigamacro",
  3807. height: math.unit(13000, "km")
  3808. }
  3809. ]
  3810. ))
  3811. characterMakers.push(() => makeCharacter(
  3812. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3813. {
  3814. front: {
  3815. height: math.unit(6, "feet"),
  3816. weight: math.unit(175, "lb"),
  3817. name: "Front",
  3818. image: {
  3819. source: "./media/characters/mountain/front.svg",
  3820. extra: 972 / 955,
  3821. bottom: 64 / 1036.6
  3822. }
  3823. },
  3824. back: {
  3825. height: math.unit(6, "feet"),
  3826. weight: math.unit(175, "lb"),
  3827. name: "Back",
  3828. image: {
  3829. source: "./media/characters/mountain/back.svg",
  3830. extra: 970 / 950,
  3831. bottom: 28.25 / 999
  3832. }
  3833. },
  3834. },
  3835. [
  3836. {
  3837. name: "Large",
  3838. height: math.unit(20, "meters")
  3839. },
  3840. {
  3841. name: "Macro",
  3842. height: math.unit(300, "meters")
  3843. },
  3844. {
  3845. name: "Gigamacro",
  3846. height: math.unit(10000, "km"),
  3847. default: true
  3848. },
  3849. {
  3850. name: "Examacro",
  3851. height: math.unit(10e9, "lightyears")
  3852. }
  3853. ]
  3854. ))
  3855. characterMakers.push(() => makeCharacter(
  3856. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  3857. {
  3858. front: {
  3859. height: math.unit(8, "feet"),
  3860. weight: math.unit(500, "lb"),
  3861. name: "Front",
  3862. image: {
  3863. source: "./media/characters/rick/front.svg"
  3864. }
  3865. }
  3866. },
  3867. [
  3868. {
  3869. name: "Normal",
  3870. height: math.unit(8, "feet"),
  3871. default: true
  3872. },
  3873. {
  3874. name: "Macro",
  3875. height: math.unit(5, "km")
  3876. }
  3877. ]
  3878. ))
  3879. characterMakers.push(() => makeCharacter(
  3880. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  3881. {
  3882. front: {
  3883. height: math.unit(8, "feet"),
  3884. weight: math.unit(120, "lb"),
  3885. name: "Front",
  3886. image: {
  3887. source: "./media/characters/ona/front.svg"
  3888. }
  3889. },
  3890. frontAlt: {
  3891. height: math.unit(8, "feet"),
  3892. weight: math.unit(120, "lb"),
  3893. name: "Front (Alt)",
  3894. image: {
  3895. source: "./media/characters/ona/front-alt.svg"
  3896. }
  3897. },
  3898. back: {
  3899. height: math.unit(8, "feet"),
  3900. weight: math.unit(120, "lb"),
  3901. name: "Back",
  3902. image: {
  3903. source: "./media/characters/ona/back.svg"
  3904. }
  3905. },
  3906. foot: {
  3907. height: math.unit(1.1, "feet"),
  3908. name: "Foot",
  3909. image: {
  3910. source: "./media/characters/ona/foot.svg"
  3911. }
  3912. }
  3913. },
  3914. [
  3915. {
  3916. name: "Megamacro",
  3917. height: math.unit(70, "km"),
  3918. default: true
  3919. },
  3920. {
  3921. name: "Gigamacro",
  3922. height: math.unit(681818, "miles")
  3923. },
  3924. {
  3925. name: "Examacro",
  3926. height: math.unit(3800000, "lightyears")
  3927. },
  3928. ]
  3929. ))
  3930. characterMakers.push(() => makeCharacter(
  3931. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  3932. {
  3933. front: {
  3934. height: math.unit(12, "feet"),
  3935. weight: math.unit(3000, "lb"),
  3936. name: "Front",
  3937. image: {
  3938. source: "./media/characters/mech/front.svg",
  3939. extra: 2900 / 2770,
  3940. bottom: 110 / 3010
  3941. }
  3942. },
  3943. back: {
  3944. height: math.unit(12, "feet"),
  3945. weight: math.unit(3000, "lb"),
  3946. name: "Back",
  3947. image: {
  3948. source: "./media/characters/mech/back.svg",
  3949. extra: 3011 / 2890,
  3950. bottom: 94 / 3105
  3951. }
  3952. },
  3953. maw: {
  3954. height: math.unit(3.07, "feet"),
  3955. name: "Maw",
  3956. image: {
  3957. source: "./media/characters/mech/maw.svg"
  3958. }
  3959. },
  3960. head: {
  3961. height: math.unit(2.82, "feet"),
  3962. name: "Head",
  3963. image: {
  3964. source: "./media/characters/mech/head.svg"
  3965. }
  3966. },
  3967. dick: {
  3968. height: math.unit(1.43, "feet"),
  3969. name: "Dick",
  3970. image: {
  3971. source: "./media/characters/mech/dick.svg"
  3972. }
  3973. },
  3974. },
  3975. [
  3976. {
  3977. name: "Normal",
  3978. height: math.unit(12, "feet")
  3979. },
  3980. {
  3981. name: "Macro",
  3982. height: math.unit(300, "feet"),
  3983. default: true
  3984. },
  3985. {
  3986. name: "Macro+",
  3987. height: math.unit(1500, "feet")
  3988. },
  3989. ]
  3990. ))
  3991. characterMakers.push(() => makeCharacter(
  3992. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  3993. {
  3994. front: {
  3995. height: math.unit(1.3, "meter"),
  3996. weight: math.unit(30, "kg"),
  3997. name: "Front",
  3998. image: {
  3999. source: "./media/characters/gregory/front.svg",
  4000. }
  4001. }
  4002. },
  4003. [
  4004. {
  4005. name: "Normal",
  4006. height: math.unit(1.3, "meter"),
  4007. default: true
  4008. },
  4009. {
  4010. name: "Macro",
  4011. height: math.unit(20, "meter")
  4012. }
  4013. ]
  4014. ))
  4015. characterMakers.push(() => makeCharacter(
  4016. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  4017. {
  4018. front: {
  4019. height: math.unit(2.8, "meter"),
  4020. weight: math.unit(200, "kg"),
  4021. name: "Front",
  4022. image: {
  4023. source: "./media/characters/elory/front.svg",
  4024. }
  4025. }
  4026. },
  4027. [
  4028. {
  4029. name: "Normal",
  4030. height: math.unit(2.8, "meter"),
  4031. default: true
  4032. },
  4033. {
  4034. name: "Macro",
  4035. height: math.unit(38, "meter")
  4036. }
  4037. ]
  4038. ))
  4039. characterMakers.push(() => makeCharacter(
  4040. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4041. {
  4042. front: {
  4043. height: math.unit(470, "feet"),
  4044. weight: math.unit(924, "tons"),
  4045. name: "Front",
  4046. image: {
  4047. source: "./media/characters/angelpatamon/front.svg",
  4048. }
  4049. }
  4050. },
  4051. [
  4052. {
  4053. name: "Normal",
  4054. height: math.unit(470, "feet"),
  4055. default: true
  4056. },
  4057. {
  4058. name: "Deity Size I",
  4059. height: math.unit(28651.2, "km")
  4060. },
  4061. {
  4062. name: "Deity Size II",
  4063. height: math.unit(171907.2, "km")
  4064. }
  4065. ]
  4066. ))
  4067. characterMakers.push(() => makeCharacter(
  4068. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4069. {
  4070. side: {
  4071. height: math.unit(7.2, "meter"),
  4072. weight: math.unit(8.2, "tons"),
  4073. name: "Side",
  4074. image: {
  4075. source: "./media/characters/cryae/side.svg",
  4076. extra: 3500 / 1500
  4077. }
  4078. }
  4079. },
  4080. [
  4081. {
  4082. name: "Normal",
  4083. height: math.unit(7.2, "meter"),
  4084. default: true
  4085. }
  4086. ]
  4087. ))
  4088. characterMakers.push(() => makeCharacter(
  4089. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4090. {
  4091. front: {
  4092. height: math.unit(6, "feet"),
  4093. weight: math.unit(175, "lb"),
  4094. name: "Front",
  4095. image: {
  4096. source: "./media/characters/xera/front.svg",
  4097. extra: 2377 / 1972,
  4098. bottom: 75.5 / 2452
  4099. }
  4100. },
  4101. side: {
  4102. height: math.unit(6, "feet"),
  4103. weight: math.unit(175, "lb"),
  4104. name: "Side",
  4105. image: {
  4106. source: "./media/characters/xera/side.svg",
  4107. extra: 2345 / 2019,
  4108. bottom: 39.7 / 2384
  4109. }
  4110. },
  4111. back: {
  4112. height: math.unit(6, "feet"),
  4113. weight: math.unit(175, "lb"),
  4114. name: "Back",
  4115. image: {
  4116. source: "./media/characters/xera/back.svg",
  4117. extra: 2095 / 1984,
  4118. bottom: 67 / 2166
  4119. }
  4120. },
  4121. },
  4122. [
  4123. {
  4124. name: "Small",
  4125. height: math.unit(10, "feet")
  4126. },
  4127. {
  4128. name: "Macro",
  4129. height: math.unit(500, "meters"),
  4130. default: true
  4131. },
  4132. {
  4133. name: "Macro+",
  4134. height: math.unit(10, "km")
  4135. },
  4136. {
  4137. name: "Gigamacro",
  4138. height: math.unit(25000, "km")
  4139. },
  4140. {
  4141. name: "Teramacro",
  4142. height: math.unit(3e6, "km")
  4143. }
  4144. ]
  4145. ))
  4146. characterMakers.push(() => makeCharacter(
  4147. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4148. {
  4149. front: {
  4150. height: math.unit(6, "feet"),
  4151. weight: math.unit(175, "lb"),
  4152. name: "Front",
  4153. image: {
  4154. source: "./media/characters/nebula/front.svg",
  4155. extra: 2566 / 2362,
  4156. bottom: 81 / 2644
  4157. }
  4158. }
  4159. },
  4160. [
  4161. {
  4162. name: "Small",
  4163. height: math.unit(4.5, "meters")
  4164. },
  4165. {
  4166. name: "Macro",
  4167. height: math.unit(1500, "meters"),
  4168. default: true
  4169. },
  4170. {
  4171. name: "Megamacro",
  4172. height: math.unit(150, "km")
  4173. },
  4174. {
  4175. name: "Gigamacro",
  4176. height: math.unit(27000, "km")
  4177. }
  4178. ]
  4179. ))
  4180. characterMakers.push(() => makeCharacter(
  4181. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4182. {
  4183. front: {
  4184. height: math.unit(6, "feet"),
  4185. weight: math.unit(225, "lb"),
  4186. name: "Front",
  4187. image: {
  4188. source: "./media/characters/abysgar/front.svg"
  4189. }
  4190. }
  4191. },
  4192. [
  4193. {
  4194. name: "Small",
  4195. height: math.unit(4.5, "meters")
  4196. },
  4197. {
  4198. name: "Macro",
  4199. height: math.unit(1250, "meters"),
  4200. default: true
  4201. },
  4202. {
  4203. name: "Megamacro",
  4204. height: math.unit(125, "km")
  4205. },
  4206. {
  4207. name: "Gigamacro",
  4208. height: math.unit(26000, "km")
  4209. }
  4210. ]
  4211. ))
  4212. characterMakers.push(() => makeCharacter(
  4213. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  4214. {
  4215. front: {
  4216. height: math.unit(6, "feet"),
  4217. weight: math.unit(180, "lb"),
  4218. name: "Front",
  4219. image: {
  4220. source: "./media/characters/yakuz/front.svg"
  4221. }
  4222. }
  4223. },
  4224. [
  4225. {
  4226. name: "Small",
  4227. height: math.unit(5, "meters")
  4228. },
  4229. {
  4230. name: "Macro",
  4231. height: math.unit(1500, "meters"),
  4232. default: true
  4233. },
  4234. {
  4235. name: "Megamacro",
  4236. height: math.unit(200, "km")
  4237. },
  4238. {
  4239. name: "Gigamacro",
  4240. height: math.unit(100000, "km")
  4241. }
  4242. ]
  4243. ))
  4244. characterMakers.push(() => makeCharacter(
  4245. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4246. {
  4247. front: {
  4248. height: math.unit(6, "feet"),
  4249. weight: math.unit(175, "lb"),
  4250. name: "Front",
  4251. image: {
  4252. source: "./media/characters/mirova/front.svg",
  4253. extra: 3334 / 3071,
  4254. bottom: 42 / 3375.6
  4255. }
  4256. }
  4257. },
  4258. [
  4259. {
  4260. name: "Small",
  4261. height: math.unit(5, "meters")
  4262. },
  4263. {
  4264. name: "Macro",
  4265. height: math.unit(900, "meters"),
  4266. default: true
  4267. },
  4268. {
  4269. name: "Megamacro",
  4270. height: math.unit(135, "km")
  4271. },
  4272. {
  4273. name: "Gigamacro",
  4274. height: math.unit(20000, "km")
  4275. }
  4276. ]
  4277. ))
  4278. characterMakers.push(() => makeCharacter(
  4279. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4280. {
  4281. side: {
  4282. height: math.unit(28.35, "feet"),
  4283. weight: math.unit(99.75, "tons"),
  4284. name: "Side",
  4285. image: {
  4286. source: "./media/characters/asana-mech/side.svg",
  4287. extra: 923 / 699,
  4288. bottom: 50 / 975
  4289. }
  4290. },
  4291. chaingun: {
  4292. height: math.unit(7, "feet"),
  4293. weight: math.unit(2400, "lb"),
  4294. name: "Chaingun",
  4295. image: {
  4296. source: "./media/characters/asana-mech/chaingun.svg"
  4297. }
  4298. },
  4299. laser: {
  4300. height: math.unit(7.12, "feet"),
  4301. weight: math.unit(2000, "lb"),
  4302. name: "Laser",
  4303. image: {
  4304. source: "./media/characters/asana-mech/laser.svg"
  4305. }
  4306. },
  4307. },
  4308. [
  4309. {
  4310. name: "Normal",
  4311. height: math.unit(28.35, "feet"),
  4312. default: true
  4313. },
  4314. {
  4315. name: "Macro",
  4316. height: math.unit(2500, "feet")
  4317. },
  4318. {
  4319. name: "Megamacro",
  4320. height: math.unit(25, "miles")
  4321. },
  4322. {
  4323. name: "Examacro",
  4324. height: math.unit(6e8, "lightyears")
  4325. },
  4326. ]
  4327. ))
  4328. characterMakers.push(() => makeCharacter(
  4329. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4330. {
  4331. front: {
  4332. height: math.unit(5, "meters"),
  4333. weight: math.unit(1000, "kg"),
  4334. name: "Front",
  4335. image: {
  4336. source: "./media/characters/asche/front.svg",
  4337. extra: 1258 / 1190,
  4338. bottom: 47 / 1305
  4339. }
  4340. },
  4341. frontUnderwear: {
  4342. height: math.unit(5, "meters"),
  4343. weight: math.unit(1000, "kg"),
  4344. name: "Front (Underwear)",
  4345. image: {
  4346. source: "./media/characters/asche/front-underwear.svg",
  4347. extra: 1258 / 1190,
  4348. bottom: 47 / 1305
  4349. }
  4350. },
  4351. frontDressed: {
  4352. height: math.unit(5, "meters"),
  4353. weight: math.unit(1000, "kg"),
  4354. name: "Front (Dressed)",
  4355. image: {
  4356. source: "./media/characters/asche/front-dressed.svg",
  4357. extra: 1258 / 1190,
  4358. bottom: 47 / 1305
  4359. }
  4360. },
  4361. frontArmor: {
  4362. height: math.unit(5, "meters"),
  4363. weight: math.unit(1000, "kg"),
  4364. name: "Front (Armored)",
  4365. image: {
  4366. source: "./media/characters/asche/front-armored.svg",
  4367. extra: 1374 / 1308,
  4368. bottom: 23 / 1397
  4369. }
  4370. },
  4371. mp724: {
  4372. height: math.unit(0.96, "meters"),
  4373. weight: math.unit(38, "kg"),
  4374. name: "H&K MP724",
  4375. image: {
  4376. source: "./media/characters/asche/h&k-mp724.svg"
  4377. }
  4378. },
  4379. side: {
  4380. height: math.unit(5, "meters"),
  4381. weight: math.unit(1000, "kg"),
  4382. name: "Side",
  4383. image: {
  4384. source: "./media/characters/asche/side.svg",
  4385. extra: 1717 / 1609,
  4386. bottom: 0.005
  4387. }
  4388. },
  4389. back: {
  4390. height: math.unit(5, "meters"),
  4391. weight: math.unit(1000, "kg"),
  4392. name: "Back",
  4393. image: {
  4394. source: "./media/characters/asche/back.svg",
  4395. extra: 1570 / 1501
  4396. }
  4397. },
  4398. },
  4399. [
  4400. {
  4401. name: "DEFCON 5",
  4402. height: math.unit(5, "meters")
  4403. },
  4404. {
  4405. name: "DEFCON 4",
  4406. height: math.unit(500, "meters"),
  4407. default: true
  4408. },
  4409. {
  4410. name: "DEFCON 3",
  4411. height: math.unit(5, "km")
  4412. },
  4413. {
  4414. name: "DEFCON 2",
  4415. height: math.unit(500, "km")
  4416. },
  4417. {
  4418. name: "DEFCON 1",
  4419. height: math.unit(500000, "km")
  4420. },
  4421. {
  4422. name: "DEFCON 0",
  4423. height: math.unit(3, "gigaparsecs")
  4424. },
  4425. ]
  4426. ))
  4427. characterMakers.push(() => makeCharacter(
  4428. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4429. {
  4430. front: {
  4431. height: math.unit(2, "meters"),
  4432. weight: math.unit(76, "kg"),
  4433. name: "Front",
  4434. image: {
  4435. source: "./media/characters/gale/front.svg"
  4436. }
  4437. },
  4438. frontAlt1: {
  4439. height: math.unit(2, "meters"),
  4440. weight: math.unit(76, "kg"),
  4441. name: "Front (Alt 1)",
  4442. image: {
  4443. source: "./media/characters/gale/front-alt-1.svg"
  4444. }
  4445. },
  4446. frontAlt2: {
  4447. height: math.unit(2, "meters"),
  4448. weight: math.unit(76, "kg"),
  4449. name: "Front (Alt 2)",
  4450. image: {
  4451. source: "./media/characters/gale/front-alt-2.svg"
  4452. }
  4453. },
  4454. },
  4455. [
  4456. {
  4457. name: "Normal",
  4458. height: math.unit(7, "feet")
  4459. },
  4460. {
  4461. name: "Macro",
  4462. height: math.unit(150, "feet"),
  4463. default: true
  4464. },
  4465. {
  4466. name: "Macro+",
  4467. height: math.unit(300, "feet")
  4468. },
  4469. ]
  4470. ))
  4471. characterMakers.push(() => makeCharacter(
  4472. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4473. {
  4474. front: {
  4475. height: math.unit(2, "meters"),
  4476. weight: math.unit(76, "kg"),
  4477. name: "Front",
  4478. image: {
  4479. source: "./media/characters/draylen/front.svg"
  4480. }
  4481. }
  4482. },
  4483. [
  4484. {
  4485. name: "Macro",
  4486. height: math.unit(150, "feet"),
  4487. default: true
  4488. }
  4489. ]
  4490. ))
  4491. characterMakers.push(() => makeCharacter(
  4492. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4493. {
  4494. front: {
  4495. height: math.unit(7 + 9 / 12, "feet"),
  4496. weight: math.unit(379, "lbs"),
  4497. name: "Front",
  4498. image: {
  4499. source: "./media/characters/chez/front.svg"
  4500. }
  4501. },
  4502. side: {
  4503. height: math.unit(7 + 9 / 12, "feet"),
  4504. weight: math.unit(379, "lbs"),
  4505. name: "Side",
  4506. image: {
  4507. source: "./media/characters/chez/side.svg"
  4508. }
  4509. }
  4510. },
  4511. [
  4512. {
  4513. name: "Normal",
  4514. height: math.unit(7 + 9 / 12, "feet"),
  4515. default: true
  4516. },
  4517. {
  4518. name: "God King",
  4519. height: math.unit(9750000, "meters")
  4520. }
  4521. ]
  4522. ))
  4523. characterMakers.push(() => makeCharacter(
  4524. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4525. {
  4526. front: {
  4527. height: math.unit(6, "feet"),
  4528. weight: math.unit(275, "lbs"),
  4529. name: "Front",
  4530. image: {
  4531. source: "./media/characters/kaylum/front.svg",
  4532. bottom: 0.01,
  4533. extra: 1166 / 1031
  4534. }
  4535. },
  4536. frontWingless: {
  4537. height: math.unit(6, "feet"),
  4538. weight: math.unit(275, "lbs"),
  4539. name: "Front (Wingless)",
  4540. image: {
  4541. source: "./media/characters/kaylum/front-wingless.svg",
  4542. bottom: 0.01,
  4543. extra: 1117 / 1031
  4544. }
  4545. }
  4546. },
  4547. [
  4548. {
  4549. name: "Normal",
  4550. height: math.unit(3.05, "meters")
  4551. },
  4552. {
  4553. name: "Master",
  4554. height: math.unit(5.5, "meters")
  4555. },
  4556. {
  4557. name: "Rampage",
  4558. height: math.unit(19, "meters")
  4559. },
  4560. {
  4561. name: "Macro Lite",
  4562. height: math.unit(37, "meters")
  4563. },
  4564. {
  4565. name: "Hyper Predator",
  4566. height: math.unit(61, "meters")
  4567. },
  4568. {
  4569. name: "Macro",
  4570. height: math.unit(138, "meters"),
  4571. default: true
  4572. }
  4573. ]
  4574. ))
  4575. characterMakers.push(() => makeCharacter(
  4576. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4577. {
  4578. front: {
  4579. height: math.unit(6, "feet"),
  4580. weight: math.unit(150, "lbs"),
  4581. name: "Front",
  4582. image: {
  4583. source: "./media/characters/geta/front.svg"
  4584. }
  4585. }
  4586. },
  4587. [
  4588. {
  4589. name: "Micro",
  4590. height: math.unit(3, "inches"),
  4591. default: true
  4592. },
  4593. {
  4594. name: "Normal",
  4595. height: math.unit(5 + 5 / 12, "feet")
  4596. }
  4597. ]
  4598. ))
  4599. characterMakers.push(() => makeCharacter(
  4600. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4601. {
  4602. front: {
  4603. height: math.unit(6, "feet"),
  4604. weight: math.unit(300, "lbs"),
  4605. name: "Front",
  4606. image: {
  4607. source: "./media/characters/tyrnn/front.svg"
  4608. }
  4609. }
  4610. },
  4611. [
  4612. {
  4613. name: "Main Height",
  4614. height: math.unit(355, "feet"),
  4615. default: true
  4616. },
  4617. {
  4618. name: "Fave. Height",
  4619. height: math.unit(2400, "feet")
  4620. }
  4621. ]
  4622. ))
  4623. characterMakers.push(() => makeCharacter(
  4624. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4625. {
  4626. front: {
  4627. height: math.unit(6, "feet"),
  4628. weight: math.unit(300, "lbs"),
  4629. name: "Front",
  4630. image: {
  4631. source: "./media/characters/appledectomy/front.svg"
  4632. }
  4633. }
  4634. },
  4635. [
  4636. {
  4637. name: "Macro",
  4638. height: math.unit(2500, "feet")
  4639. },
  4640. {
  4641. name: "Megamacro",
  4642. height: math.unit(50, "miles"),
  4643. default: true
  4644. },
  4645. {
  4646. name: "Gigamacro",
  4647. height: math.unit(5000, "miles")
  4648. },
  4649. {
  4650. name: "Teramacro",
  4651. height: math.unit(250000, "miles")
  4652. },
  4653. ]
  4654. ))
  4655. characterMakers.push(() => makeCharacter(
  4656. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4657. {
  4658. front: {
  4659. height: math.unit(6, "feet"),
  4660. weight: math.unit(200, "lbs"),
  4661. name: "Front",
  4662. image: {
  4663. source: "./media/characters/vulpes/front.svg",
  4664. extra: 573 / 543,
  4665. bottom: 0.033
  4666. }
  4667. },
  4668. side: {
  4669. height: math.unit(6, "feet"),
  4670. weight: math.unit(200, "lbs"),
  4671. name: "Side",
  4672. image: {
  4673. source: "./media/characters/vulpes/side.svg",
  4674. extra: 577 / 549,
  4675. bottom: 11 / 588
  4676. }
  4677. },
  4678. back: {
  4679. height: math.unit(6, "feet"),
  4680. weight: math.unit(200, "lbs"),
  4681. name: "Back",
  4682. image: {
  4683. source: "./media/characters/vulpes/back.svg",
  4684. extra: 573 / 549,
  4685. bottom: 20 / 593
  4686. }
  4687. },
  4688. feet: {
  4689. height: math.unit(1.276, "feet"),
  4690. name: "Feet",
  4691. image: {
  4692. source: "./media/characters/vulpes/feet.svg"
  4693. }
  4694. },
  4695. maw: {
  4696. height: math.unit(1.18, "feet"),
  4697. name: "Maw",
  4698. image: {
  4699. source: "./media/characters/vulpes/maw.svg"
  4700. }
  4701. },
  4702. },
  4703. [
  4704. {
  4705. name: "Micro",
  4706. height: math.unit(2, "inches")
  4707. },
  4708. {
  4709. name: "Normal",
  4710. height: math.unit(6.3, "feet")
  4711. },
  4712. {
  4713. name: "Macro",
  4714. height: math.unit(850, "feet")
  4715. },
  4716. {
  4717. name: "Megamacro",
  4718. height: math.unit(7500, "feet"),
  4719. default: true
  4720. },
  4721. {
  4722. name: "Gigamacro",
  4723. height: math.unit(570000, "miles")
  4724. }
  4725. ]
  4726. ))
  4727. characterMakers.push(() => makeCharacter(
  4728. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4729. {
  4730. front: {
  4731. height: math.unit(6, "feet"),
  4732. weight: math.unit(210, "lbs"),
  4733. name: "Front",
  4734. image: {
  4735. source: "./media/characters/rain-fallen/front.svg"
  4736. }
  4737. },
  4738. side: {
  4739. height: math.unit(6, "feet"),
  4740. weight: math.unit(210, "lbs"),
  4741. name: "Side",
  4742. image: {
  4743. source: "./media/characters/rain-fallen/side.svg"
  4744. }
  4745. },
  4746. back: {
  4747. height: math.unit(6, "feet"),
  4748. weight: math.unit(210, "lbs"),
  4749. name: "Back",
  4750. image: {
  4751. source: "./media/characters/rain-fallen/back.svg"
  4752. }
  4753. },
  4754. feral: {
  4755. height: math.unit(9, "feet"),
  4756. weight: math.unit(700, "lbs"),
  4757. name: "Feral",
  4758. image: {
  4759. source: "./media/characters/rain-fallen/feral.svg"
  4760. }
  4761. },
  4762. },
  4763. [
  4764. {
  4765. name: "Meddling with Mortals",
  4766. height: math.unit(8 + 8/12, "feet")
  4767. },
  4768. {
  4769. name: "Normal",
  4770. height: math.unit(5, "meter")
  4771. },
  4772. {
  4773. name: "Macro",
  4774. height: math.unit(150, "meter"),
  4775. default: true
  4776. },
  4777. {
  4778. name: "Megamacro",
  4779. height: math.unit(278e6, "meter")
  4780. },
  4781. {
  4782. name: "Gigamacro",
  4783. height: math.unit(2e9, "meter")
  4784. },
  4785. {
  4786. name: "Teramacro",
  4787. height: math.unit(8e12, "meter")
  4788. },
  4789. {
  4790. name: "Devourer",
  4791. height: math.unit(14, "zettameters")
  4792. },
  4793. {
  4794. name: "Scarlet King",
  4795. height: math.unit(18, "yottameters")
  4796. },
  4797. {
  4798. name: "Void",
  4799. height: math.unit(1e88, "yottameters")
  4800. }
  4801. ]
  4802. ))
  4803. characterMakers.push(() => makeCharacter(
  4804. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4805. {
  4806. standing: {
  4807. height: math.unit(6, "feet"),
  4808. weight: math.unit(180, "lbs"),
  4809. name: "Standing",
  4810. image: {
  4811. source: "./media/characters/zaakira/standing.svg",
  4812. extra: 1599/1504,
  4813. bottom: 39/1638
  4814. }
  4815. },
  4816. laying: {
  4817. height: math.unit(3, "feet"),
  4818. weight: math.unit(180, "lbs"),
  4819. name: "Laying",
  4820. image: {
  4821. source: "./media/characters/zaakira/laying.svg"
  4822. }
  4823. },
  4824. },
  4825. [
  4826. {
  4827. name: "Normal",
  4828. height: math.unit(12, "feet")
  4829. },
  4830. {
  4831. name: "Macro",
  4832. height: math.unit(279, "feet"),
  4833. default: true
  4834. }
  4835. ]
  4836. ))
  4837. characterMakers.push(() => makeCharacter(
  4838. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4839. {
  4840. femSfw: {
  4841. height: math.unit(8, "feet"),
  4842. weight: math.unit(350, "lb"),
  4843. name: "Fem",
  4844. image: {
  4845. source: "./media/characters/sigvald/fem-sfw.svg",
  4846. extra: 182 / 164,
  4847. bottom: 8.7 / 190.5
  4848. }
  4849. },
  4850. femNsfw: {
  4851. height: math.unit(8, "feet"),
  4852. weight: math.unit(350, "lb"),
  4853. name: "Fem (NSFW)",
  4854. image: {
  4855. source: "./media/characters/sigvald/fem-nsfw.svg",
  4856. extra: 182 / 164,
  4857. bottom: 8.7 / 190.5
  4858. }
  4859. },
  4860. maleNsfw: {
  4861. height: math.unit(8, "feet"),
  4862. weight: math.unit(350, "lb"),
  4863. name: "Male (NSFW)",
  4864. image: {
  4865. source: "./media/characters/sigvald/male-nsfw.svg",
  4866. extra: 182 / 164,
  4867. bottom: 8.7 / 190.5
  4868. }
  4869. },
  4870. hermNsfw: {
  4871. height: math.unit(8, "feet"),
  4872. weight: math.unit(350, "lb"),
  4873. name: "Herm (NSFW)",
  4874. image: {
  4875. source: "./media/characters/sigvald/herm-nsfw.svg",
  4876. extra: 182 / 164,
  4877. bottom: 8.7 / 190.5
  4878. }
  4879. },
  4880. dick: {
  4881. height: math.unit(2.36, "feet"),
  4882. name: "Dick",
  4883. image: {
  4884. source: "./media/characters/sigvald/dick.svg"
  4885. }
  4886. },
  4887. eye: {
  4888. height: math.unit(0.31, "feet"),
  4889. name: "Eye",
  4890. image: {
  4891. source: "./media/characters/sigvald/eye.svg"
  4892. }
  4893. },
  4894. mouth: {
  4895. height: math.unit(0.92, "feet"),
  4896. name: "Mouth",
  4897. image: {
  4898. source: "./media/characters/sigvald/mouth.svg"
  4899. }
  4900. },
  4901. paws: {
  4902. height: math.unit(2.2, "feet"),
  4903. name: "Paws",
  4904. image: {
  4905. source: "./media/characters/sigvald/paws.svg"
  4906. }
  4907. }
  4908. },
  4909. [
  4910. {
  4911. name: "Normal",
  4912. height: math.unit(8, "feet")
  4913. },
  4914. {
  4915. name: "Large",
  4916. height: math.unit(12, "feet")
  4917. },
  4918. {
  4919. name: "Larger",
  4920. height: math.unit(20, "feet")
  4921. },
  4922. {
  4923. name: "Macro",
  4924. height: math.unit(150, "feet")
  4925. },
  4926. {
  4927. name: "Macro+",
  4928. height: math.unit(200, "feet"),
  4929. default: true
  4930. },
  4931. ]
  4932. ))
  4933. characterMakers.push(() => makeCharacter(
  4934. { name: "Scott", species: ["fox"], tags: ["taur"] },
  4935. {
  4936. side: {
  4937. height: math.unit(12, "feet"),
  4938. weight: math.unit(2000, "kg"),
  4939. name: "Side",
  4940. image: {
  4941. source: "./media/characters/scott/side.svg",
  4942. extra: 754 / 724,
  4943. bottom: 0.069
  4944. }
  4945. },
  4946. upright: {
  4947. height: math.unit(12, "feet"),
  4948. weight: math.unit(2000, "kg"),
  4949. name: "Upright",
  4950. image: {
  4951. source: "./media/characters/scott/upright.svg",
  4952. extra: 3881 / 3722,
  4953. bottom: 0.05
  4954. }
  4955. },
  4956. },
  4957. [
  4958. {
  4959. name: "Normal",
  4960. height: math.unit(12, "feet"),
  4961. default: true
  4962. },
  4963. ]
  4964. ))
  4965. characterMakers.push(() => makeCharacter(
  4966. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  4967. {
  4968. side: {
  4969. height: math.unit(8, "meters"),
  4970. weight: math.unit(84755, "lbs"),
  4971. name: "Side",
  4972. image: {
  4973. source: "./media/characters/tobias/side.svg",
  4974. extra: 1474 / 1096,
  4975. bottom: 38.9 / 1513.1235
  4976. }
  4977. },
  4978. },
  4979. [
  4980. {
  4981. name: "Normal",
  4982. height: math.unit(8, "meters"),
  4983. default: true
  4984. },
  4985. ]
  4986. ))
  4987. characterMakers.push(() => makeCharacter(
  4988. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  4989. {
  4990. front: {
  4991. height: math.unit(5.5, "feet"),
  4992. weight: math.unit(400, "lbs"),
  4993. name: "Front",
  4994. image: {
  4995. source: "./media/characters/kieran/front.svg",
  4996. extra: 2694 / 2364,
  4997. bottom: 217 / 2908
  4998. }
  4999. },
  5000. side: {
  5001. height: math.unit(5.5, "feet"),
  5002. weight: math.unit(400, "lbs"),
  5003. name: "Side",
  5004. image: {
  5005. source: "./media/characters/kieran/side.svg",
  5006. extra: 875 / 777,
  5007. bottom: 84.6 / 959
  5008. }
  5009. },
  5010. },
  5011. [
  5012. {
  5013. name: "Normal",
  5014. height: math.unit(5.5, "feet"),
  5015. default: true
  5016. },
  5017. ]
  5018. ))
  5019. characterMakers.push(() => makeCharacter(
  5020. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  5021. {
  5022. side: {
  5023. height: math.unit(2, "meters"),
  5024. weight: math.unit(70, "kg"),
  5025. name: "Side",
  5026. image: {
  5027. source: "./media/characters/sanya/side.svg",
  5028. bottom: 0.02,
  5029. extra: 1.02
  5030. }
  5031. },
  5032. },
  5033. [
  5034. {
  5035. name: "Small",
  5036. height: math.unit(2, "meters")
  5037. },
  5038. {
  5039. name: "Normal",
  5040. height: math.unit(3, "meters")
  5041. },
  5042. {
  5043. name: "Macro",
  5044. height: math.unit(16, "meters"),
  5045. default: true
  5046. },
  5047. ]
  5048. ))
  5049. characterMakers.push(() => makeCharacter(
  5050. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  5051. {
  5052. front: {
  5053. height: math.unit(2, "meters"),
  5054. weight: math.unit(120, "kg"),
  5055. name: "Front",
  5056. image: {
  5057. source: "./media/characters/miranda/front.svg",
  5058. extra: 195 / 185,
  5059. bottom: 10.9 / 206.5
  5060. }
  5061. },
  5062. back: {
  5063. height: math.unit(2, "meters"),
  5064. weight: math.unit(120, "kg"),
  5065. name: "Back",
  5066. image: {
  5067. source: "./media/characters/miranda/back.svg",
  5068. extra: 201 / 193,
  5069. bottom: 2.3 / 203.7
  5070. }
  5071. },
  5072. },
  5073. [
  5074. {
  5075. name: "Normal",
  5076. height: math.unit(10, "feet"),
  5077. default: true
  5078. }
  5079. ]
  5080. ))
  5081. characterMakers.push(() => makeCharacter(
  5082. { name: "James", species: ["deer"], tags: ["anthro"] },
  5083. {
  5084. side: {
  5085. height: math.unit(2, "meters"),
  5086. weight: math.unit(100, "kg"),
  5087. name: "Front",
  5088. image: {
  5089. source: "./media/characters/james/front.svg",
  5090. extra: 10 / 8.5
  5091. }
  5092. },
  5093. },
  5094. [
  5095. {
  5096. name: "Normal",
  5097. height: math.unit(8.5, "feet"),
  5098. default: true
  5099. }
  5100. ]
  5101. ))
  5102. characterMakers.push(() => makeCharacter(
  5103. { name: "Heather", species: ["cow"], tags: ["taur"] },
  5104. {
  5105. side: {
  5106. height: math.unit(9.5, "feet"),
  5107. weight: math.unit(2500, "lbs"),
  5108. name: "Side",
  5109. image: {
  5110. source: "./media/characters/heather/side.svg"
  5111. }
  5112. },
  5113. },
  5114. [
  5115. {
  5116. name: "Normal",
  5117. height: math.unit(9.5, "feet"),
  5118. default: true
  5119. }
  5120. ]
  5121. ))
  5122. characterMakers.push(() => makeCharacter(
  5123. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  5124. {
  5125. side: {
  5126. height: math.unit(6.5, "feet"),
  5127. weight: math.unit(400, "lbs"),
  5128. name: "Side",
  5129. image: {
  5130. source: "./media/characters/lukas/side.svg",
  5131. extra: 7.25 / 6.5
  5132. }
  5133. },
  5134. },
  5135. [
  5136. {
  5137. name: "Normal",
  5138. height: math.unit(6.5, "feet"),
  5139. default: true
  5140. }
  5141. ]
  5142. ))
  5143. characterMakers.push(() => makeCharacter(
  5144. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  5145. {
  5146. side: {
  5147. height: math.unit(5, "feet"),
  5148. weight: math.unit(3000, "lbs"),
  5149. name: "Side",
  5150. image: {
  5151. source: "./media/characters/louise/side.svg"
  5152. }
  5153. },
  5154. },
  5155. [
  5156. {
  5157. name: "Normal",
  5158. height: math.unit(5, "feet"),
  5159. default: true
  5160. }
  5161. ]
  5162. ))
  5163. characterMakers.push(() => makeCharacter(
  5164. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  5165. {
  5166. side: {
  5167. height: math.unit(6, "feet"),
  5168. weight: math.unit(150, "lbs"),
  5169. name: "Side",
  5170. image: {
  5171. source: "./media/characters/ramona/side.svg"
  5172. }
  5173. },
  5174. },
  5175. [
  5176. {
  5177. name: "Normal",
  5178. height: math.unit(5.3, "meters"),
  5179. default: true
  5180. },
  5181. {
  5182. name: "Macro",
  5183. height: math.unit(20, "stories")
  5184. },
  5185. {
  5186. name: "Macro+",
  5187. height: math.unit(50, "stories")
  5188. },
  5189. ]
  5190. ))
  5191. characterMakers.push(() => makeCharacter(
  5192. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  5193. {
  5194. standing: {
  5195. height: math.unit(5.75, "feet"),
  5196. weight: math.unit(160, "lbs"),
  5197. name: "Standing",
  5198. image: {
  5199. source: "./media/characters/deerpuff/standing.svg",
  5200. extra: 682 / 624
  5201. }
  5202. },
  5203. sitting: {
  5204. height: math.unit(5.75 / 1.79, "feet"),
  5205. weight: math.unit(160, "lbs"),
  5206. name: "Sitting",
  5207. image: {
  5208. source: "./media/characters/deerpuff/sitting.svg",
  5209. bottom: 44 / 400,
  5210. extra: 1
  5211. }
  5212. },
  5213. taurLaying: {
  5214. height: math.unit(6, "feet"),
  5215. weight: math.unit(400, "lbs"),
  5216. name: "Taur (Laying)",
  5217. image: {
  5218. source: "./media/characters/deerpuff/taur-laying.svg"
  5219. }
  5220. },
  5221. },
  5222. [
  5223. {
  5224. name: "Puffball",
  5225. height: math.unit(6, "inches")
  5226. },
  5227. {
  5228. name: "Normalpuff",
  5229. height: math.unit(5.75, "feet")
  5230. },
  5231. {
  5232. name: "Macropuff",
  5233. height: math.unit(1500, "feet"),
  5234. default: true
  5235. },
  5236. {
  5237. name: "Megapuff",
  5238. height: math.unit(500, "miles")
  5239. },
  5240. {
  5241. name: "Gigapuff",
  5242. height: math.unit(250000, "miles")
  5243. },
  5244. {
  5245. name: "Omegapuff",
  5246. height: math.unit(1000, "lightyears")
  5247. },
  5248. ]
  5249. ))
  5250. characterMakers.push(() => makeCharacter(
  5251. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5252. {
  5253. stomping: {
  5254. height: math.unit(6, "feet"),
  5255. weight: math.unit(170, "lbs"),
  5256. name: "Stomping",
  5257. image: {
  5258. source: "./media/characters/vivian/stomping.svg"
  5259. }
  5260. },
  5261. sitting: {
  5262. height: math.unit(6 / 1.75, "feet"),
  5263. weight: math.unit(170, "lbs"),
  5264. name: "Sitting",
  5265. image: {
  5266. source: "./media/characters/vivian/sitting.svg",
  5267. bottom: 1 / 6.4,
  5268. extra: 1,
  5269. }
  5270. },
  5271. },
  5272. [
  5273. {
  5274. name: "Normal",
  5275. height: math.unit(7, "feet"),
  5276. default: true
  5277. },
  5278. {
  5279. name: "Macro",
  5280. height: math.unit(10, "stories")
  5281. },
  5282. {
  5283. name: "Macro+",
  5284. height: math.unit(30, "stories")
  5285. },
  5286. {
  5287. name: "Megamacro",
  5288. height: math.unit(10, "miles")
  5289. },
  5290. {
  5291. name: "Megamacro+",
  5292. height: math.unit(2750000, "meters")
  5293. },
  5294. ]
  5295. ))
  5296. characterMakers.push(() => makeCharacter(
  5297. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5298. {
  5299. front: {
  5300. height: math.unit(6, "feet"),
  5301. weight: math.unit(160, "lbs"),
  5302. name: "Front",
  5303. image: {
  5304. source: "./media/characters/prince/front.svg",
  5305. extra: 3400 / 3000
  5306. }
  5307. },
  5308. jumping: {
  5309. height: math.unit(6, "feet"),
  5310. weight: math.unit(160, "lbs"),
  5311. name: "Jumping",
  5312. image: {
  5313. source: "./media/characters/prince/jump.svg",
  5314. extra: 2555 / 2134
  5315. }
  5316. },
  5317. },
  5318. [
  5319. {
  5320. name: "Normal",
  5321. height: math.unit(7.75, "feet"),
  5322. default: true
  5323. },
  5324. {
  5325. name: "Not cute",
  5326. height: math.unit(17, "feet")
  5327. },
  5328. {
  5329. name: "I said NOT",
  5330. height: math.unit(91, "feet")
  5331. },
  5332. {
  5333. name: "Please stop",
  5334. height: math.unit(560, "feet")
  5335. },
  5336. {
  5337. name: "What have you done",
  5338. height: math.unit(2200, "feet")
  5339. },
  5340. {
  5341. name: "Deer God",
  5342. height: math.unit(3.6, "miles")
  5343. },
  5344. ]
  5345. ))
  5346. characterMakers.push(() => makeCharacter(
  5347. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5348. {
  5349. standing: {
  5350. height: math.unit(6, "feet"),
  5351. weight: math.unit(300, "lbs"),
  5352. name: "Standing",
  5353. image: {
  5354. source: "./media/characters/psymon/standing.svg",
  5355. extra: 1888 / 1810,
  5356. bottom: 0.05
  5357. }
  5358. },
  5359. slithering: {
  5360. height: math.unit(6, "feet"),
  5361. weight: math.unit(300, "lbs"),
  5362. name: "Slithering",
  5363. image: {
  5364. source: "./media/characters/psymon/slithering.svg",
  5365. extra: 1330 / 1224
  5366. }
  5367. },
  5368. slitheringAlt: {
  5369. height: math.unit(6, "feet"),
  5370. weight: math.unit(300, "lbs"),
  5371. name: "Slithering (Alt)",
  5372. image: {
  5373. source: "./media/characters/psymon/slithering-alt.svg",
  5374. extra: 1330 / 1224
  5375. }
  5376. },
  5377. },
  5378. [
  5379. {
  5380. name: "Normal",
  5381. height: math.unit(11.25, "feet"),
  5382. default: true
  5383. },
  5384. {
  5385. name: "Large",
  5386. height: math.unit(27, "feet")
  5387. },
  5388. {
  5389. name: "Giant",
  5390. height: math.unit(87, "feet")
  5391. },
  5392. {
  5393. name: "Macro",
  5394. height: math.unit(365, "feet")
  5395. },
  5396. {
  5397. name: "Megamacro",
  5398. height: math.unit(3, "miles")
  5399. },
  5400. {
  5401. name: "World Serpent",
  5402. height: math.unit(8000, "miles")
  5403. },
  5404. ]
  5405. ))
  5406. characterMakers.push(() => makeCharacter(
  5407. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5408. {
  5409. front: {
  5410. height: math.unit(6, "feet"),
  5411. weight: math.unit(180, "lbs"),
  5412. name: "Front",
  5413. image: {
  5414. source: "./media/characters/daimos/front.svg",
  5415. extra: 4160 / 3897,
  5416. bottom: 0.021
  5417. }
  5418. }
  5419. },
  5420. [
  5421. {
  5422. name: "Normal",
  5423. height: math.unit(8, "feet"),
  5424. default: true
  5425. },
  5426. {
  5427. name: "Big Dog",
  5428. height: math.unit(22, "feet")
  5429. },
  5430. {
  5431. name: "Macro",
  5432. height: math.unit(127, "feet")
  5433. },
  5434. {
  5435. name: "Megamacro",
  5436. height: math.unit(3600, "feet")
  5437. },
  5438. ]
  5439. ))
  5440. characterMakers.push(() => makeCharacter(
  5441. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5442. {
  5443. side: {
  5444. height: math.unit(6, "feet"),
  5445. weight: math.unit(180, "lbs"),
  5446. name: "Side",
  5447. image: {
  5448. source: "./media/characters/blake/side.svg",
  5449. extra: 1212 / 1120,
  5450. bottom: 0.05
  5451. }
  5452. },
  5453. crouched: {
  5454. height: math.unit(6 * 0.57, "feet"),
  5455. weight: math.unit(180, "lbs"),
  5456. name: "Crouched",
  5457. image: {
  5458. source: "./media/characters/blake/crouched.svg",
  5459. extra: 840 / 587,
  5460. bottom: 0.04
  5461. }
  5462. },
  5463. bent: {
  5464. height: math.unit(6 * 0.75, "feet"),
  5465. weight: math.unit(180, "lbs"),
  5466. name: "Bent",
  5467. image: {
  5468. source: "./media/characters/blake/bent.svg",
  5469. extra: 592 / 544,
  5470. bottom: 0.035
  5471. }
  5472. },
  5473. },
  5474. [
  5475. {
  5476. name: "Normal",
  5477. height: math.unit(8 + 1 / 6, "feet"),
  5478. default: true
  5479. },
  5480. {
  5481. name: "Big Backside",
  5482. height: math.unit(37, "feet")
  5483. },
  5484. {
  5485. name: "Subway Shredder",
  5486. height: math.unit(72, "feet")
  5487. },
  5488. {
  5489. name: "City Carver",
  5490. height: math.unit(1675, "feet")
  5491. },
  5492. {
  5493. name: "Tectonic Tweaker",
  5494. height: math.unit(2300, "miles")
  5495. },
  5496. ]
  5497. ))
  5498. characterMakers.push(() => makeCharacter(
  5499. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5500. {
  5501. front: {
  5502. height: math.unit(6, "feet"),
  5503. weight: math.unit(180, "lbs"),
  5504. name: "Front",
  5505. image: {
  5506. source: "./media/characters/guisetto/front.svg",
  5507. extra: 856 / 817,
  5508. bottom: 0.06
  5509. }
  5510. },
  5511. airborne: {
  5512. height: math.unit(6, "feet"),
  5513. weight: math.unit(180, "lbs"),
  5514. name: "Airborne",
  5515. image: {
  5516. source: "./media/characters/guisetto/airborne.svg",
  5517. extra: 584 / 525
  5518. }
  5519. },
  5520. },
  5521. [
  5522. {
  5523. name: "Normal",
  5524. height: math.unit(10 + 11 / 12, "feet"),
  5525. default: true
  5526. },
  5527. {
  5528. name: "Large",
  5529. height: math.unit(35, "feet")
  5530. },
  5531. {
  5532. name: "Macro",
  5533. height: math.unit(475, "feet")
  5534. },
  5535. ]
  5536. ))
  5537. characterMakers.push(() => makeCharacter(
  5538. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5539. {
  5540. front: {
  5541. height: math.unit(6, "feet"),
  5542. weight: math.unit(180, "lbs"),
  5543. name: "Front",
  5544. image: {
  5545. source: "./media/characters/luxor/front.svg",
  5546. extra: 2940 / 2152
  5547. }
  5548. },
  5549. back: {
  5550. height: math.unit(6, "feet"),
  5551. weight: math.unit(180, "lbs"),
  5552. name: "Back",
  5553. image: {
  5554. source: "./media/characters/luxor/back.svg",
  5555. extra: 1083 / 960
  5556. }
  5557. },
  5558. },
  5559. [
  5560. {
  5561. name: "Normal",
  5562. height: math.unit(5 + 5 / 6, "feet"),
  5563. default: true
  5564. },
  5565. {
  5566. name: "Lamp",
  5567. height: math.unit(50, "feet")
  5568. },
  5569. {
  5570. name: "Lämp",
  5571. height: math.unit(300, "feet")
  5572. },
  5573. {
  5574. name: "The sun is a lamp",
  5575. height: math.unit(250000, "miles")
  5576. },
  5577. ]
  5578. ))
  5579. characterMakers.push(() => makeCharacter(
  5580. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5581. {
  5582. front: {
  5583. height: math.unit(6, "feet"),
  5584. weight: math.unit(50, "lbs"),
  5585. name: "Front",
  5586. image: {
  5587. source: "./media/characters/huoyan/front.svg"
  5588. }
  5589. },
  5590. side: {
  5591. height: math.unit(6, "feet"),
  5592. weight: math.unit(180, "lbs"),
  5593. name: "Side",
  5594. image: {
  5595. source: "./media/characters/huoyan/side.svg"
  5596. }
  5597. },
  5598. },
  5599. [
  5600. {
  5601. name: "Chef",
  5602. height: math.unit(9, "feet")
  5603. },
  5604. {
  5605. name: "Normal",
  5606. height: math.unit(65, "feet"),
  5607. default: true
  5608. },
  5609. {
  5610. name: "Macro",
  5611. height: math.unit(780, "feet")
  5612. },
  5613. {
  5614. name: "Flaming Mountain",
  5615. height: math.unit(4.8, "miles")
  5616. },
  5617. {
  5618. name: "Celestial",
  5619. height: math.unit(765000, "miles")
  5620. },
  5621. ]
  5622. ))
  5623. characterMakers.push(() => makeCharacter(
  5624. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5625. {
  5626. front: {
  5627. height: math.unit(5 + 3 / 4, "feet"),
  5628. weight: math.unit(120, "lbs"),
  5629. name: "Front",
  5630. image: {
  5631. source: "./media/characters/tails/front.svg"
  5632. }
  5633. }
  5634. },
  5635. [
  5636. {
  5637. name: "Normal",
  5638. height: math.unit(5 + 3 / 4, "feet"),
  5639. default: true
  5640. }
  5641. ]
  5642. ))
  5643. characterMakers.push(() => makeCharacter(
  5644. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5645. {
  5646. front: {
  5647. height: math.unit(4, "feet"),
  5648. weight: math.unit(50, "lbs"),
  5649. name: "Front",
  5650. image: {
  5651. source: "./media/characters/rainy/front.svg"
  5652. }
  5653. }
  5654. },
  5655. [
  5656. {
  5657. name: "Macro",
  5658. height: math.unit(800, "feet"),
  5659. default: true
  5660. }
  5661. ]
  5662. ))
  5663. characterMakers.push(() => makeCharacter(
  5664. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5665. {
  5666. front: {
  5667. height: math.unit(6, "feet"),
  5668. weight: math.unit(150, "lbs"),
  5669. name: "Front",
  5670. image: {
  5671. source: "./media/characters/rainier/front.svg"
  5672. }
  5673. }
  5674. },
  5675. [
  5676. {
  5677. name: "Micro",
  5678. height: math.unit(2, "mm"),
  5679. default: true
  5680. }
  5681. ]
  5682. ))
  5683. characterMakers.push(() => makeCharacter(
  5684. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  5685. {
  5686. front: {
  5687. height: math.unit(8 + 4/12, "feet"),
  5688. name: "Front",
  5689. image: {
  5690. source: "./media/characters/andy-renard/front.svg",
  5691. extra: 1839/1726,
  5692. bottom: 134/1973
  5693. }
  5694. },
  5695. back: {
  5696. height: math.unit(8 + 4/12, "feet"),
  5697. name: "Back",
  5698. image: {
  5699. source: "./media/characters/andy-renard/back.svg",
  5700. extra: 1838/1710,
  5701. bottom: 105/1943
  5702. }
  5703. },
  5704. },
  5705. [
  5706. {
  5707. name: "Tall",
  5708. height: math.unit(8 + 4/12, "feet")
  5709. },
  5710. {
  5711. name: "Mini Macro",
  5712. height: math.unit(15, "feet"),
  5713. default: true
  5714. },
  5715. {
  5716. name: "Macro",
  5717. height: math.unit(100, "feet")
  5718. },
  5719. {
  5720. name: "Mega Macro",
  5721. height: math.unit(1000, "feet")
  5722. },
  5723. {
  5724. name: "Giga Macro",
  5725. height: math.unit(10, "miles")
  5726. },
  5727. {
  5728. name: "God Macro",
  5729. height: math.unit(1, "multiverse")
  5730. },
  5731. ]
  5732. ))
  5733. characterMakers.push(() => makeCharacter(
  5734. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5735. {
  5736. front: {
  5737. height: math.unit(6, "feet"),
  5738. weight: math.unit(210, "lbs"),
  5739. name: "Front",
  5740. image: {
  5741. source: "./media/characters/cimmaron/front-sfw.svg",
  5742. extra: 701 / 676,
  5743. bottom: 0.046
  5744. }
  5745. },
  5746. back: {
  5747. height: math.unit(6, "feet"),
  5748. weight: math.unit(210, "lbs"),
  5749. name: "Back",
  5750. image: {
  5751. source: "./media/characters/cimmaron/back-sfw.svg",
  5752. extra: 701 / 676,
  5753. bottom: 0.046
  5754. }
  5755. },
  5756. frontNsfw: {
  5757. height: math.unit(6, "feet"),
  5758. weight: math.unit(210, "lbs"),
  5759. name: "Front (NSFW)",
  5760. image: {
  5761. source: "./media/characters/cimmaron/front-nsfw.svg",
  5762. extra: 701 / 676,
  5763. bottom: 0.046
  5764. }
  5765. },
  5766. backNsfw: {
  5767. height: math.unit(6, "feet"),
  5768. weight: math.unit(210, "lbs"),
  5769. name: "Back (NSFW)",
  5770. image: {
  5771. source: "./media/characters/cimmaron/back-nsfw.svg",
  5772. extra: 701 / 676,
  5773. bottom: 0.046
  5774. }
  5775. },
  5776. dick: {
  5777. height: math.unit(1.714, "feet"),
  5778. name: "Dick",
  5779. image: {
  5780. source: "./media/characters/cimmaron/dick.svg"
  5781. }
  5782. },
  5783. },
  5784. [
  5785. {
  5786. name: "Normal",
  5787. height: math.unit(6, "feet"),
  5788. default: true
  5789. },
  5790. {
  5791. name: "Macro Mayor",
  5792. height: math.unit(350, "meters")
  5793. },
  5794. ]
  5795. ))
  5796. characterMakers.push(() => makeCharacter(
  5797. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5798. {
  5799. front: {
  5800. height: math.unit(6, "feet"),
  5801. weight: math.unit(200, "lbs"),
  5802. name: "Front",
  5803. image: {
  5804. source: "./media/characters/akari/front.svg",
  5805. extra: 962 / 901,
  5806. bottom: 0.04
  5807. }
  5808. }
  5809. },
  5810. [
  5811. {
  5812. name: "Micro",
  5813. height: math.unit(5, "inches"),
  5814. default: true
  5815. },
  5816. {
  5817. name: "Normal",
  5818. height: math.unit(7, "feet")
  5819. },
  5820. ]
  5821. ))
  5822. characterMakers.push(() => makeCharacter(
  5823. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  5824. {
  5825. front: {
  5826. height: math.unit(6, "feet"),
  5827. weight: math.unit(140, "lbs"),
  5828. name: "Front",
  5829. image: {
  5830. source: "./media/characters/cynosura/front.svg",
  5831. extra: 896 / 847
  5832. }
  5833. },
  5834. back: {
  5835. height: math.unit(6, "feet"),
  5836. weight: math.unit(140, "lbs"),
  5837. name: "Back",
  5838. image: {
  5839. source: "./media/characters/cynosura/back.svg",
  5840. extra: 1365 / 1250
  5841. }
  5842. },
  5843. },
  5844. [
  5845. {
  5846. name: "Micro",
  5847. height: math.unit(4, "inches")
  5848. },
  5849. {
  5850. name: "Normal",
  5851. height: math.unit(5.75, "feet"),
  5852. default: true
  5853. },
  5854. {
  5855. name: "Tall",
  5856. height: math.unit(10, "feet")
  5857. },
  5858. {
  5859. name: "Big",
  5860. height: math.unit(20, "feet")
  5861. },
  5862. {
  5863. name: "Macro",
  5864. height: math.unit(50, "feet")
  5865. },
  5866. ]
  5867. ))
  5868. characterMakers.push(() => makeCharacter(
  5869. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  5870. {
  5871. front: {
  5872. height: math.unit(13 + 2/12, "feet"),
  5873. weight: math.unit(800, "kg"),
  5874. name: "Front",
  5875. image: {
  5876. source: "./media/characters/gin/front.svg",
  5877. extra: 1312/1191,
  5878. bottom: 45/1357
  5879. }
  5880. },
  5881. mouth: {
  5882. height: math.unit(2.39 * 1.8, "feet"),
  5883. name: "Mouth",
  5884. image: {
  5885. source: "./media/characters/gin/mouth.svg"
  5886. }
  5887. },
  5888. hand: {
  5889. height: math.unit(1.57 * 2.19, "feet"),
  5890. name: "Hand",
  5891. image: {
  5892. source: "./media/characters/gin/hand.svg"
  5893. }
  5894. },
  5895. foot: {
  5896. height: math.unit(6 / 4.25 * 2.19, "feet"),
  5897. name: "Foot",
  5898. image: {
  5899. source: "./media/characters/gin/foot.svg"
  5900. }
  5901. },
  5902. sole: {
  5903. height: math.unit(6 / 4.40 * 2.19, "feet"),
  5904. name: "Sole",
  5905. image: {
  5906. source: "./media/characters/gin/sole.svg"
  5907. }
  5908. },
  5909. },
  5910. [
  5911. {
  5912. name: "Very Small",
  5913. height: math.unit(13 + 2 / 12, "feet")
  5914. },
  5915. {
  5916. name: "Micro",
  5917. height: math.unit(600, "miles")
  5918. },
  5919. {
  5920. name: "Regular",
  5921. height: math.unit(20, "earths"),
  5922. default: true
  5923. },
  5924. {
  5925. name: "Macro",
  5926. height: math.unit(2.2, "solarradii")
  5927. },
  5928. {
  5929. name: "Teramacro",
  5930. height: math.unit(1.2, "galaxies")
  5931. },
  5932. {
  5933. name: "Omegamacro",
  5934. height: math.unit(200, "universes")
  5935. },
  5936. ]
  5937. ))
  5938. characterMakers.push(() => makeCharacter(
  5939. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  5940. {
  5941. front: {
  5942. height: math.unit(6 + 1 / 6, "feet"),
  5943. weight: math.unit(178, "lbs"),
  5944. name: "Front",
  5945. image: {
  5946. source: "./media/characters/guy/front.svg"
  5947. }
  5948. }
  5949. },
  5950. [
  5951. {
  5952. name: "Normal",
  5953. height: math.unit(6 + 1 / 6, "feet"),
  5954. default: true
  5955. },
  5956. {
  5957. name: "Large",
  5958. height: math.unit(25 + 7 / 12, "feet")
  5959. },
  5960. {
  5961. name: "Macro",
  5962. height: math.unit(60 + 9 / 12, "feet")
  5963. },
  5964. {
  5965. name: "Macro+",
  5966. height: math.unit(246, "feet")
  5967. },
  5968. {
  5969. name: "Macro++",
  5970. height: math.unit(878, "feet")
  5971. }
  5972. ]
  5973. ))
  5974. characterMakers.push(() => makeCharacter(
  5975. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  5976. {
  5977. front: {
  5978. height: math.unit(9, "feet"),
  5979. weight: math.unit(800, "lbs"),
  5980. name: "Front",
  5981. image: {
  5982. source: "./media/characters/tiberius/front.svg",
  5983. extra: 2295 / 2071
  5984. }
  5985. },
  5986. back: {
  5987. height: math.unit(9, "feet"),
  5988. weight: math.unit(800, "lbs"),
  5989. name: "Back",
  5990. image: {
  5991. source: "./media/characters/tiberius/back.svg",
  5992. extra: 2373 / 2160
  5993. }
  5994. },
  5995. },
  5996. [
  5997. {
  5998. name: "Normal",
  5999. height: math.unit(9, "feet"),
  6000. default: true
  6001. }
  6002. ]
  6003. ))
  6004. characterMakers.push(() => makeCharacter(
  6005. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  6006. {
  6007. front: {
  6008. height: math.unit(6, "feet"),
  6009. weight: math.unit(600, "lbs"),
  6010. name: "Front",
  6011. image: {
  6012. source: "./media/characters/surgo/front.svg",
  6013. extra: 3591 / 2227
  6014. }
  6015. },
  6016. back: {
  6017. height: math.unit(6, "feet"),
  6018. weight: math.unit(600, "lbs"),
  6019. name: "Back",
  6020. image: {
  6021. source: "./media/characters/surgo/back.svg",
  6022. extra: 3557 / 2228
  6023. }
  6024. },
  6025. laying: {
  6026. height: math.unit(6 * 0.85, "feet"),
  6027. weight: math.unit(600, "lbs"),
  6028. name: "Laying",
  6029. image: {
  6030. source: "./media/characters/surgo/laying.svg"
  6031. }
  6032. },
  6033. },
  6034. [
  6035. {
  6036. name: "Normal",
  6037. height: math.unit(6, "feet"),
  6038. default: true
  6039. }
  6040. ]
  6041. ))
  6042. characterMakers.push(() => makeCharacter(
  6043. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  6044. {
  6045. side: {
  6046. height: math.unit(6, "feet"),
  6047. weight: math.unit(150, "lbs"),
  6048. name: "Side",
  6049. image: {
  6050. source: "./media/characters/cibus/side.svg",
  6051. extra: 800 / 400
  6052. }
  6053. },
  6054. },
  6055. [
  6056. {
  6057. name: "Normal",
  6058. height: math.unit(6, "feet"),
  6059. default: true
  6060. }
  6061. ]
  6062. ))
  6063. characterMakers.push(() => makeCharacter(
  6064. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  6065. {
  6066. front: {
  6067. height: math.unit(6, "feet"),
  6068. weight: math.unit(240, "lbs"),
  6069. name: "Front",
  6070. image: {
  6071. source: "./media/characters/nibbles/front.svg"
  6072. }
  6073. },
  6074. side: {
  6075. height: math.unit(6, "feet"),
  6076. weight: math.unit(240, "lbs"),
  6077. name: "Side",
  6078. image: {
  6079. source: "./media/characters/nibbles/side.svg"
  6080. }
  6081. },
  6082. },
  6083. [
  6084. {
  6085. name: "Normal",
  6086. height: math.unit(9, "feet"),
  6087. default: true
  6088. }
  6089. ]
  6090. ))
  6091. characterMakers.push(() => makeCharacter(
  6092. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  6093. {
  6094. side: {
  6095. height: math.unit(5 + 1 / 6, "feet"),
  6096. weight: math.unit(130, "lbs"),
  6097. name: "Side",
  6098. image: {
  6099. source: "./media/characters/rikky/side.svg",
  6100. extra: 851 / 801
  6101. }
  6102. },
  6103. },
  6104. [
  6105. {
  6106. name: "Normal",
  6107. height: math.unit(5 + 1 / 6, "feet")
  6108. },
  6109. {
  6110. name: "Macro",
  6111. height: math.unit(152, "feet"),
  6112. default: true
  6113. },
  6114. {
  6115. name: "Megamacro",
  6116. height: math.unit(7, "miles")
  6117. }
  6118. ]
  6119. ))
  6120. characterMakers.push(() => makeCharacter(
  6121. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  6122. {
  6123. side: {
  6124. height: math.unit(370, "cm"),
  6125. weight: math.unit(350, "lbs"),
  6126. name: "Side",
  6127. image: {
  6128. source: "./media/characters/malfressa/side.svg"
  6129. }
  6130. },
  6131. walking: {
  6132. height: math.unit(370, "cm"),
  6133. weight: math.unit(350, "lbs"),
  6134. name: "Walking",
  6135. image: {
  6136. source: "./media/characters/malfressa/walking.svg"
  6137. }
  6138. },
  6139. feral: {
  6140. height: math.unit(2500, "cm"),
  6141. weight: math.unit(100000, "lbs"),
  6142. name: "Feral",
  6143. image: {
  6144. source: "./media/characters/malfressa/feral.svg",
  6145. extra: 2108 / 837,
  6146. bottom: 0.02
  6147. }
  6148. },
  6149. },
  6150. [
  6151. {
  6152. name: "Normal",
  6153. height: math.unit(370, "cm")
  6154. },
  6155. {
  6156. name: "Macro",
  6157. height: math.unit(300, "meters"),
  6158. default: true
  6159. }
  6160. ]
  6161. ))
  6162. characterMakers.push(() => makeCharacter(
  6163. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  6164. {
  6165. front: {
  6166. height: math.unit(6, "feet"),
  6167. weight: math.unit(60, "kg"),
  6168. name: "Front",
  6169. image: {
  6170. source: "./media/characters/jaro/front.svg"
  6171. }
  6172. },
  6173. back: {
  6174. height: math.unit(6, "feet"),
  6175. weight: math.unit(60, "kg"),
  6176. name: "Back",
  6177. image: {
  6178. source: "./media/characters/jaro/back.svg"
  6179. }
  6180. },
  6181. },
  6182. [
  6183. {
  6184. name: "Micro",
  6185. height: math.unit(7, "inches")
  6186. },
  6187. {
  6188. name: "Normal",
  6189. height: math.unit(5.5, "feet"),
  6190. default: true
  6191. },
  6192. {
  6193. name: "Minimacro",
  6194. height: math.unit(20, "feet")
  6195. },
  6196. {
  6197. name: "Macro",
  6198. height: math.unit(200, "meters")
  6199. }
  6200. ]
  6201. ))
  6202. characterMakers.push(() => makeCharacter(
  6203. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  6204. {
  6205. front: {
  6206. height: math.unit(6, "feet"),
  6207. weight: math.unit(195, "lb"),
  6208. name: "Front",
  6209. image: {
  6210. source: "./media/characters/rogue/front.svg"
  6211. }
  6212. },
  6213. },
  6214. [
  6215. {
  6216. name: "Macro",
  6217. height: math.unit(90, "feet"),
  6218. default: true
  6219. },
  6220. ]
  6221. ))
  6222. characterMakers.push(() => makeCharacter(
  6223. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  6224. {
  6225. front: {
  6226. height: math.unit(5 + 8 / 12, "feet"),
  6227. weight: math.unit(140, "lb"),
  6228. name: "Front",
  6229. image: {
  6230. source: "./media/characters/piper/front.svg",
  6231. extra: 3948/3655,
  6232. bottom: 0/3948
  6233. }
  6234. },
  6235. },
  6236. [
  6237. {
  6238. name: "Micro",
  6239. height: math.unit(2, "inches")
  6240. },
  6241. {
  6242. name: "Normal",
  6243. height: math.unit(5 + 8 / 12, "feet")
  6244. },
  6245. {
  6246. name: "Macro",
  6247. height: math.unit(250, "feet"),
  6248. default: true
  6249. },
  6250. {
  6251. name: "Megamacro",
  6252. height: math.unit(7, "miles")
  6253. },
  6254. ]
  6255. ))
  6256. characterMakers.push(() => makeCharacter(
  6257. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  6258. {
  6259. front: {
  6260. height: math.unit(6, "feet"),
  6261. weight: math.unit(220, "lb"),
  6262. name: "Front",
  6263. image: {
  6264. source: "./media/characters/gemini/front.svg"
  6265. }
  6266. },
  6267. back: {
  6268. height: math.unit(6, "feet"),
  6269. weight: math.unit(220, "lb"),
  6270. name: "Back",
  6271. image: {
  6272. source: "./media/characters/gemini/back.svg"
  6273. }
  6274. },
  6275. kneeling: {
  6276. height: math.unit(6 / 1.5, "feet"),
  6277. weight: math.unit(220, "lb"),
  6278. name: "Kneeling",
  6279. image: {
  6280. source: "./media/characters/gemini/kneeling.svg",
  6281. bottom: 0.02
  6282. }
  6283. },
  6284. },
  6285. [
  6286. {
  6287. name: "Macro",
  6288. height: math.unit(300, "meters"),
  6289. default: true
  6290. },
  6291. {
  6292. name: "Megamacro",
  6293. height: math.unit(6900, "meters")
  6294. },
  6295. ]
  6296. ))
  6297. characterMakers.push(() => makeCharacter(
  6298. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6299. {
  6300. anthro: {
  6301. height: math.unit(2.35, "meters"),
  6302. weight: math.unit(73, "kg"),
  6303. name: "Anthro",
  6304. image: {
  6305. source: "./media/characters/alicia/anthro.svg",
  6306. extra: 2571 / 2385,
  6307. bottom: 75 / 2648
  6308. }
  6309. },
  6310. paw: {
  6311. height: math.unit(1.32, "feet"),
  6312. name: "Paw",
  6313. image: {
  6314. source: "./media/characters/alicia/paw.svg"
  6315. }
  6316. },
  6317. feral: {
  6318. height: math.unit(1.69, "meters"),
  6319. weight: math.unit(73, "kg"),
  6320. name: "Feral",
  6321. image: {
  6322. source: "./media/characters/alicia/feral.svg",
  6323. extra: 2123 / 1715,
  6324. bottom: 222 / 2349
  6325. }
  6326. },
  6327. },
  6328. [
  6329. {
  6330. name: "Normal",
  6331. height: math.unit(2.35, "meters")
  6332. },
  6333. {
  6334. name: "Macro",
  6335. height: math.unit(60, "meters"),
  6336. default: true
  6337. },
  6338. {
  6339. name: "Megamacro",
  6340. height: math.unit(10000, "kilometers")
  6341. },
  6342. ]
  6343. ))
  6344. characterMakers.push(() => makeCharacter(
  6345. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6346. {
  6347. front: {
  6348. height: math.unit(7, "feet"),
  6349. weight: math.unit(250, "lbs"),
  6350. name: "Front",
  6351. image: {
  6352. source: "./media/characters/archy/front.svg"
  6353. }
  6354. }
  6355. },
  6356. [
  6357. {
  6358. name: "Micro",
  6359. height: math.unit(1, "inch")
  6360. },
  6361. {
  6362. name: "Shorty",
  6363. height: math.unit(5, "feet")
  6364. },
  6365. {
  6366. name: "Normal",
  6367. height: math.unit(7, "feet")
  6368. },
  6369. {
  6370. name: "Macro",
  6371. height: math.unit(600, "meters"),
  6372. default: true
  6373. },
  6374. {
  6375. name: "Megamacro",
  6376. height: math.unit(1, "mile")
  6377. },
  6378. ]
  6379. ))
  6380. characterMakers.push(() => makeCharacter(
  6381. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6382. {
  6383. front: {
  6384. height: math.unit(1.65, "meters"),
  6385. weight: math.unit(74, "kg"),
  6386. name: "Front",
  6387. image: {
  6388. source: "./media/characters/berri/front.svg",
  6389. extra: 857 / 837,
  6390. bottom: 18 / 877
  6391. }
  6392. },
  6393. bum: {
  6394. height: math.unit(1.46, "feet"),
  6395. name: "Bum",
  6396. image: {
  6397. source: "./media/characters/berri/bum.svg"
  6398. }
  6399. },
  6400. mouth: {
  6401. height: math.unit(0.44, "feet"),
  6402. name: "Mouth",
  6403. image: {
  6404. source: "./media/characters/berri/mouth.svg"
  6405. }
  6406. },
  6407. paw: {
  6408. height: math.unit(0.826, "feet"),
  6409. name: "Paw",
  6410. image: {
  6411. source: "./media/characters/berri/paw.svg"
  6412. }
  6413. },
  6414. },
  6415. [
  6416. {
  6417. name: "Normal",
  6418. height: math.unit(1.65, "meters")
  6419. },
  6420. {
  6421. name: "Macro",
  6422. height: math.unit(60, "m"),
  6423. default: true
  6424. },
  6425. {
  6426. name: "Megamacro",
  6427. height: math.unit(9.213, "km")
  6428. },
  6429. {
  6430. name: "Planet Eater",
  6431. height: math.unit(489, "megameters")
  6432. },
  6433. {
  6434. name: "Teramacro",
  6435. height: math.unit(2471635000000, "meters")
  6436. },
  6437. {
  6438. name: "Examacro",
  6439. height: math.unit(8.0624e+26, "meters")
  6440. }
  6441. ]
  6442. ))
  6443. characterMakers.push(() => makeCharacter(
  6444. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  6445. {
  6446. front: {
  6447. height: math.unit(1.72, "meters"),
  6448. weight: math.unit(68, "kg"),
  6449. name: "Front",
  6450. image: {
  6451. source: "./media/characters/lexi/front.svg"
  6452. }
  6453. }
  6454. },
  6455. [
  6456. {
  6457. name: "Very Smol",
  6458. height: math.unit(10, "mm")
  6459. },
  6460. {
  6461. name: "Micro",
  6462. height: math.unit(6.8, "cm"),
  6463. default: true
  6464. },
  6465. {
  6466. name: "Normal",
  6467. height: math.unit(1.72, "m")
  6468. }
  6469. ]
  6470. ))
  6471. characterMakers.push(() => makeCharacter(
  6472. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  6473. {
  6474. front: {
  6475. height: math.unit(1.69, "meters"),
  6476. weight: math.unit(68, "kg"),
  6477. name: "Front",
  6478. image: {
  6479. source: "./media/characters/martin/front.svg",
  6480. extra: 596 / 581
  6481. }
  6482. }
  6483. },
  6484. [
  6485. {
  6486. name: "Micro",
  6487. height: math.unit(6.85, "cm"),
  6488. default: true
  6489. },
  6490. {
  6491. name: "Normal",
  6492. height: math.unit(1.69, "m")
  6493. }
  6494. ]
  6495. ))
  6496. characterMakers.push(() => makeCharacter(
  6497. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6498. {
  6499. front: {
  6500. height: math.unit(1.69, "meters"),
  6501. weight: math.unit(68, "kg"),
  6502. name: "Front",
  6503. image: {
  6504. source: "./media/characters/juno/front.svg"
  6505. }
  6506. }
  6507. },
  6508. [
  6509. {
  6510. name: "Micro",
  6511. height: math.unit(7, "cm")
  6512. },
  6513. {
  6514. name: "Normal",
  6515. height: math.unit(1.89, "m")
  6516. },
  6517. {
  6518. name: "Macro",
  6519. height: math.unit(353, "meters"),
  6520. default: true
  6521. }
  6522. ]
  6523. ))
  6524. characterMakers.push(() => makeCharacter(
  6525. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6526. {
  6527. front: {
  6528. height: math.unit(1.93, "meters"),
  6529. weight: math.unit(83, "kg"),
  6530. name: "Front",
  6531. image: {
  6532. source: "./media/characters/samantha/front.svg"
  6533. }
  6534. },
  6535. frontClothed: {
  6536. height: math.unit(1.93, "meters"),
  6537. weight: math.unit(83, "kg"),
  6538. name: "Front (Clothed)",
  6539. image: {
  6540. source: "./media/characters/samantha/front-clothed.svg"
  6541. }
  6542. },
  6543. back: {
  6544. height: math.unit(1.93, "meters"),
  6545. weight: math.unit(83, "kg"),
  6546. name: "Back",
  6547. image: {
  6548. source: "./media/characters/samantha/back.svg"
  6549. }
  6550. },
  6551. },
  6552. [
  6553. {
  6554. name: "Normal",
  6555. height: math.unit(1.93, "m")
  6556. },
  6557. {
  6558. name: "Macro",
  6559. height: math.unit(74, "meters"),
  6560. default: true
  6561. },
  6562. {
  6563. name: "Macro+",
  6564. height: math.unit(223, "meters"),
  6565. },
  6566. {
  6567. name: "Megamacro",
  6568. height: math.unit(8381, "meters"),
  6569. },
  6570. {
  6571. name: "Megamacro+",
  6572. height: math.unit(12000, "kilometers")
  6573. },
  6574. ]
  6575. ))
  6576. characterMakers.push(() => makeCharacter(
  6577. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6578. {
  6579. front: {
  6580. height: math.unit(1.92, "meters"),
  6581. weight: math.unit(80, "kg"),
  6582. name: "Front",
  6583. image: {
  6584. source: "./media/characters/dr-clay/front.svg"
  6585. }
  6586. },
  6587. frontClothed: {
  6588. height: math.unit(1.92, "meters"),
  6589. weight: math.unit(80, "kg"),
  6590. name: "Front (Clothed)",
  6591. image: {
  6592. source: "./media/characters/dr-clay/front-clothed.svg"
  6593. }
  6594. }
  6595. },
  6596. [
  6597. {
  6598. name: "Normal",
  6599. height: math.unit(1.92, "m")
  6600. },
  6601. {
  6602. name: "Macro",
  6603. height: math.unit(214, "meters"),
  6604. default: true
  6605. },
  6606. {
  6607. name: "Macro+",
  6608. height: math.unit(12.237, "meters"),
  6609. },
  6610. {
  6611. name: "Megamacro",
  6612. height: math.unit(557, "megameters"),
  6613. },
  6614. {
  6615. name: "Unimaginable",
  6616. height: math.unit(120e9, "lightyears")
  6617. },
  6618. ]
  6619. ))
  6620. characterMakers.push(() => makeCharacter(
  6621. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6622. {
  6623. front: {
  6624. height: math.unit(2, "meters"),
  6625. weight: math.unit(80, "kg"),
  6626. name: "Front",
  6627. image: {
  6628. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6629. }
  6630. }
  6631. },
  6632. [
  6633. {
  6634. name: "Teramacro",
  6635. height: math.unit(500000, "lightyears"),
  6636. default: true
  6637. },
  6638. ]
  6639. ))
  6640. characterMakers.push(() => makeCharacter(
  6641. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  6642. {
  6643. crux: {
  6644. height: math.unit(2, "meters"),
  6645. weight: math.unit(150, "kg"),
  6646. name: "Crux",
  6647. image: {
  6648. source: "./media/characters/vemus/crux.svg",
  6649. extra: 1074/936,
  6650. bottom: 23/1097
  6651. }
  6652. },
  6653. skunkTanuki: {
  6654. height: math.unit(2, "meters"),
  6655. weight: math.unit(150, "kg"),
  6656. name: "Skunk-Tanuki",
  6657. image: {
  6658. source: "./media/characters/vemus/skunk-tanuki.svg",
  6659. extra: 926/893,
  6660. bottom: 20/946
  6661. }
  6662. },
  6663. },
  6664. [
  6665. {
  6666. name: "Normal",
  6667. height: math.unit(3.75, "meters"),
  6668. default: true
  6669. },
  6670. {
  6671. name: "Big",
  6672. height: math.unit(8, "meters")
  6673. },
  6674. {
  6675. name: "Macro",
  6676. height: math.unit(100, "meters")
  6677. },
  6678. {
  6679. name: "Macro+",
  6680. height: math.unit(1500, "meters")
  6681. },
  6682. {
  6683. name: "Stellar",
  6684. height: math.unit(14e8, "meters")
  6685. },
  6686. ]
  6687. ))
  6688. characterMakers.push(() => makeCharacter(
  6689. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6690. {
  6691. front: {
  6692. height: math.unit(2, "meters"),
  6693. weight: math.unit(70, "kg"),
  6694. name: "Front",
  6695. image: {
  6696. source: "./media/characters/beherit/front.svg",
  6697. extra: 1408 / 1242
  6698. }
  6699. }
  6700. },
  6701. [
  6702. {
  6703. name: "Normal",
  6704. height: math.unit(6, "feet")
  6705. },
  6706. {
  6707. name: "Lorg",
  6708. height: math.unit(25, "feet"),
  6709. default: true
  6710. },
  6711. {
  6712. name: "Lorger",
  6713. height: math.unit(75, "feet")
  6714. },
  6715. {
  6716. name: "Macro",
  6717. height: math.unit(200, "meters")
  6718. },
  6719. ]
  6720. ))
  6721. characterMakers.push(() => makeCharacter(
  6722. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6723. {
  6724. front: {
  6725. height: math.unit(2, "meters"),
  6726. weight: math.unit(150, "kg"),
  6727. name: "Front",
  6728. image: {
  6729. source: "./media/characters/everett/front.svg",
  6730. extra: 2038 / 1737,
  6731. bottom: 0.03
  6732. }
  6733. },
  6734. paw: {
  6735. height: math.unit(2 / 3.6, "meters"),
  6736. name: "Paw",
  6737. image: {
  6738. source: "./media/characters/everett/paw.svg"
  6739. }
  6740. },
  6741. },
  6742. [
  6743. {
  6744. name: "Normal",
  6745. height: math.unit(15, "feet"),
  6746. default: true
  6747. },
  6748. {
  6749. name: "Lorg",
  6750. height: math.unit(70, "feet"),
  6751. default: true
  6752. },
  6753. {
  6754. name: "Lorger",
  6755. height: math.unit(250, "feet")
  6756. },
  6757. {
  6758. name: "Macro",
  6759. height: math.unit(500, "meters")
  6760. },
  6761. ]
  6762. ))
  6763. characterMakers.push(() => makeCharacter(
  6764. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  6765. {
  6766. front: {
  6767. height: math.unit(2, "meters"),
  6768. weight: math.unit(86, "kg"),
  6769. name: "Front",
  6770. image: {
  6771. source: "./media/characters/rose/front.svg",
  6772. extra: 1785/1636,
  6773. bottom: 30/1815
  6774. }
  6775. },
  6776. frontSporty: {
  6777. height: math.unit(2, "meters"),
  6778. weight: math.unit(86, "kg"),
  6779. name: "Front (Sporty)",
  6780. image: {
  6781. source: "./media/characters/rose/front-sporty.svg",
  6782. extra: 350/335,
  6783. bottom: 10/360
  6784. }
  6785. },
  6786. frontAlt: {
  6787. height: math.unit(1.6, "meters"),
  6788. weight: math.unit(86, "kg"),
  6789. name: "Front (Alt)",
  6790. image: {
  6791. source: "./media/characters/rose/front-alt.svg",
  6792. extra: 299/283,
  6793. bottom: 3/302
  6794. }
  6795. },
  6796. plush: {
  6797. height: math.unit(2, "meters"),
  6798. weight: math.unit(86/3, "kg"),
  6799. name: "Plush",
  6800. image: {
  6801. source: "./media/characters/rose/plush.svg",
  6802. extra: 361/337,
  6803. bottom: 11/372
  6804. }
  6805. },
  6806. },
  6807. [
  6808. {
  6809. name: "True Micro",
  6810. height: math.unit(9, "cm")
  6811. },
  6812. {
  6813. name: "Micro",
  6814. height: math.unit(16, "cm")
  6815. },
  6816. {
  6817. name: "Normal",
  6818. height: math.unit(1.85, "meters"),
  6819. default: true
  6820. },
  6821. {
  6822. name: "Mini-Macro",
  6823. height: math.unit(5, "meters")
  6824. },
  6825. {
  6826. name: "Macro",
  6827. height: math.unit(15, "meters")
  6828. },
  6829. {
  6830. name: "True Macro",
  6831. height: math.unit(40, "meters")
  6832. },
  6833. {
  6834. name: "City Scale",
  6835. height: math.unit(1, "km")
  6836. },
  6837. ]
  6838. ))
  6839. characterMakers.push(() => makeCharacter(
  6840. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  6841. {
  6842. front: {
  6843. height: math.unit(2, "meters"),
  6844. weight: math.unit(350, "lbs"),
  6845. name: "Front",
  6846. image: {
  6847. source: "./media/characters/regal/front.svg"
  6848. }
  6849. },
  6850. back: {
  6851. height: math.unit(2, "meters"),
  6852. weight: math.unit(350, "lbs"),
  6853. name: "Back",
  6854. image: {
  6855. source: "./media/characters/regal/back.svg"
  6856. }
  6857. },
  6858. },
  6859. [
  6860. {
  6861. name: "Macro",
  6862. height: math.unit(350, "feet"),
  6863. default: true
  6864. }
  6865. ]
  6866. ))
  6867. characterMakers.push(() => makeCharacter(
  6868. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  6869. {
  6870. front: {
  6871. height: math.unit(4 + 11 / 12, "feet"),
  6872. weight: math.unit(100, "lbs"),
  6873. name: "Front",
  6874. image: {
  6875. source: "./media/characters/opal/front.svg"
  6876. }
  6877. },
  6878. frontAlt: {
  6879. height: math.unit(4 + 11 / 12, "feet"),
  6880. weight: math.unit(100, "lbs"),
  6881. name: "Front (Alt)",
  6882. image: {
  6883. source: "./media/characters/opal/front-alt.svg"
  6884. }
  6885. },
  6886. },
  6887. [
  6888. {
  6889. name: "Small",
  6890. height: math.unit(4 + 11 / 12, "feet")
  6891. },
  6892. {
  6893. name: "Normal",
  6894. height: math.unit(20, "feet"),
  6895. default: true
  6896. },
  6897. {
  6898. name: "Macro",
  6899. height: math.unit(120, "feet")
  6900. },
  6901. {
  6902. name: "Megamacro",
  6903. height: math.unit(80, "miles")
  6904. },
  6905. {
  6906. name: "True Size",
  6907. height: math.unit(100000, "lightyears")
  6908. },
  6909. ]
  6910. ))
  6911. characterMakers.push(() => makeCharacter(
  6912. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  6913. {
  6914. front: {
  6915. height: math.unit(6, "feet"),
  6916. weight: math.unit(200, "lbs"),
  6917. name: "Front",
  6918. image: {
  6919. source: "./media/characters/vector-wuff/front.svg"
  6920. }
  6921. }
  6922. },
  6923. [
  6924. {
  6925. name: "Normal",
  6926. height: math.unit(2.8, "meters")
  6927. },
  6928. {
  6929. name: "Macro",
  6930. height: math.unit(450, "meters"),
  6931. default: true
  6932. },
  6933. {
  6934. name: "Megamacro",
  6935. height: math.unit(15, "kilometers")
  6936. }
  6937. ]
  6938. ))
  6939. characterMakers.push(() => makeCharacter(
  6940. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  6941. {
  6942. front: {
  6943. height: math.unit(6, "feet"),
  6944. weight: math.unit(256, "lbs"),
  6945. name: "Front",
  6946. image: {
  6947. source: "./media/characters/dannik/front.svg"
  6948. }
  6949. }
  6950. },
  6951. [
  6952. {
  6953. name: "Macro",
  6954. height: math.unit(69.57, "meters"),
  6955. default: true
  6956. },
  6957. ]
  6958. ))
  6959. characterMakers.push(() => makeCharacter(
  6960. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  6961. {
  6962. front: {
  6963. height: math.unit(6, "feet"),
  6964. weight: math.unit(120, "lbs"),
  6965. name: "Front",
  6966. image: {
  6967. source: "./media/characters/azura-saharah/front.svg"
  6968. }
  6969. },
  6970. back: {
  6971. height: math.unit(6, "feet"),
  6972. weight: math.unit(120, "lbs"),
  6973. name: "Back",
  6974. image: {
  6975. source: "./media/characters/azura-saharah/back.svg"
  6976. }
  6977. },
  6978. },
  6979. [
  6980. {
  6981. name: "Macro",
  6982. height: math.unit(100, "feet"),
  6983. default: true
  6984. },
  6985. ]
  6986. ))
  6987. characterMakers.push(() => makeCharacter(
  6988. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  6989. {
  6990. side: {
  6991. height: math.unit(5 + 4 / 12, "feet"),
  6992. weight: math.unit(163, "lbs"),
  6993. name: "Side",
  6994. image: {
  6995. source: "./media/characters/kennedy/side.svg"
  6996. }
  6997. }
  6998. },
  6999. [
  7000. {
  7001. name: "Standard Doggo",
  7002. height: math.unit(5 + 4 / 12, "feet")
  7003. },
  7004. {
  7005. name: "Big Doggo",
  7006. height: math.unit(25 + 3 / 12, "feet"),
  7007. default: true
  7008. },
  7009. ]
  7010. ))
  7011. characterMakers.push(() => makeCharacter(
  7012. { name: "Odi Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  7013. {
  7014. front: {
  7015. height: math.unit(6, "feet"),
  7016. weight: math.unit(90, "lbs"),
  7017. name: "Front",
  7018. image: {
  7019. source: "./media/characters/odi-lunar/front.svg"
  7020. }
  7021. }
  7022. },
  7023. [
  7024. {
  7025. name: "Micro",
  7026. height: math.unit(3, "inches"),
  7027. default: true
  7028. },
  7029. {
  7030. name: "Normal",
  7031. height: math.unit(5.5, "feet")
  7032. }
  7033. ]
  7034. ))
  7035. characterMakers.push(() => makeCharacter(
  7036. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  7037. {
  7038. back: {
  7039. height: math.unit(6, "feet"),
  7040. weight: math.unit(220, "lbs"),
  7041. name: "Back",
  7042. image: {
  7043. source: "./media/characters/mandake/back.svg"
  7044. }
  7045. }
  7046. },
  7047. [
  7048. {
  7049. name: "Normal",
  7050. height: math.unit(7, "feet"),
  7051. default: true
  7052. },
  7053. {
  7054. name: "Macro",
  7055. height: math.unit(78, "feet")
  7056. },
  7057. {
  7058. name: "Macro+",
  7059. height: math.unit(300, "meters")
  7060. },
  7061. {
  7062. name: "Macro++",
  7063. height: math.unit(2400, "feet")
  7064. },
  7065. {
  7066. name: "Megamacro",
  7067. height: math.unit(5167, "meters")
  7068. },
  7069. {
  7070. name: "Gigamacro",
  7071. height: math.unit(41769, "miles")
  7072. },
  7073. ]
  7074. ))
  7075. characterMakers.push(() => makeCharacter(
  7076. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  7077. {
  7078. front: {
  7079. height: math.unit(6, "feet"),
  7080. weight: math.unit(120, "lbs"),
  7081. name: "Front",
  7082. image: {
  7083. source: "./media/characters/yozey/front.svg"
  7084. }
  7085. },
  7086. frontAlt: {
  7087. height: math.unit(6, "feet"),
  7088. weight: math.unit(120, "lbs"),
  7089. name: "Front (Alt)",
  7090. image: {
  7091. source: "./media/characters/yozey/front-alt.svg"
  7092. }
  7093. },
  7094. side: {
  7095. height: math.unit(6, "feet"),
  7096. weight: math.unit(120, "lbs"),
  7097. name: "Side",
  7098. image: {
  7099. source: "./media/characters/yozey/side.svg"
  7100. }
  7101. },
  7102. },
  7103. [
  7104. {
  7105. name: "Micro",
  7106. height: math.unit(3, "inches"),
  7107. default: true
  7108. },
  7109. {
  7110. name: "Normal",
  7111. height: math.unit(6, "feet")
  7112. }
  7113. ]
  7114. ))
  7115. characterMakers.push(() => makeCharacter(
  7116. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  7117. {
  7118. front: {
  7119. height: math.unit(6, "feet"),
  7120. weight: math.unit(103, "lbs"),
  7121. name: "Front",
  7122. image: {
  7123. source: "./media/characters/valeska-voss/front.svg"
  7124. }
  7125. }
  7126. },
  7127. [
  7128. {
  7129. name: "Mini-Sized Sub",
  7130. height: math.unit(3.1, "inches")
  7131. },
  7132. {
  7133. name: "Mid-Sized Sub",
  7134. height: math.unit(6.2, "inches")
  7135. },
  7136. {
  7137. name: "Full-Sized Sub",
  7138. height: math.unit(9.3, "inches")
  7139. },
  7140. {
  7141. name: "Normal",
  7142. height: math.unit(5 + 2 / 12, "foot"),
  7143. default: true
  7144. },
  7145. ]
  7146. ))
  7147. characterMakers.push(() => makeCharacter(
  7148. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  7149. {
  7150. front: {
  7151. height: math.unit(6, "feet"),
  7152. weight: math.unit(160, "lbs"),
  7153. name: "Front",
  7154. image: {
  7155. source: "./media/characters/gene-zeta/front.svg",
  7156. extra: 3006 / 2826,
  7157. bottom: 182 / 3188
  7158. }
  7159. }
  7160. },
  7161. [
  7162. {
  7163. name: "Micro",
  7164. height: math.unit(6, "inches")
  7165. },
  7166. {
  7167. name: "Normal",
  7168. height: math.unit(5 + 11 / 12, "foot"),
  7169. default: true
  7170. },
  7171. {
  7172. name: "Macro",
  7173. height: math.unit(140, "feet")
  7174. },
  7175. {
  7176. name: "Supercharged",
  7177. height: math.unit(2500, "feet")
  7178. },
  7179. ]
  7180. ))
  7181. characterMakers.push(() => makeCharacter(
  7182. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  7183. {
  7184. front: {
  7185. height: math.unit(6, "feet"),
  7186. weight: math.unit(350, "lbs"),
  7187. name: "Front",
  7188. image: {
  7189. source: "./media/characters/razinox/front.svg",
  7190. extra: 1686 / 1548,
  7191. bottom: 28.2 / 1868
  7192. }
  7193. },
  7194. back: {
  7195. height: math.unit(6, "feet"),
  7196. weight: math.unit(350, "lbs"),
  7197. name: "Back",
  7198. image: {
  7199. source: "./media/characters/razinox/back.svg",
  7200. extra: 1660 / 1590,
  7201. bottom: 15 / 1665
  7202. }
  7203. },
  7204. },
  7205. [
  7206. {
  7207. name: "Normal",
  7208. height: math.unit(10 + 8 / 12, "foot")
  7209. },
  7210. {
  7211. name: "Minimacro",
  7212. height: math.unit(15, "foot")
  7213. },
  7214. {
  7215. name: "Macro",
  7216. height: math.unit(60, "foot"),
  7217. default: true
  7218. },
  7219. {
  7220. name: "Megamacro",
  7221. height: math.unit(5, "miles")
  7222. },
  7223. {
  7224. name: "Gigamacro",
  7225. height: math.unit(6000, "miles")
  7226. },
  7227. ]
  7228. ))
  7229. characterMakers.push(() => makeCharacter(
  7230. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  7231. {
  7232. front: {
  7233. height: math.unit(6, "feet"),
  7234. weight: math.unit(150, "lbs"),
  7235. name: "Front",
  7236. image: {
  7237. source: "./media/characters/cobalt/front.svg"
  7238. }
  7239. }
  7240. },
  7241. [
  7242. {
  7243. name: "Normal",
  7244. height: math.unit(8 + 1 / 12, "foot")
  7245. },
  7246. {
  7247. name: "Macro",
  7248. height: math.unit(111, "foot"),
  7249. default: true
  7250. },
  7251. {
  7252. name: "Supracosmic",
  7253. height: math.unit(1e42, "feet")
  7254. },
  7255. ]
  7256. ))
  7257. characterMakers.push(() => makeCharacter(
  7258. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  7259. {
  7260. front: {
  7261. height: math.unit(6, "feet"),
  7262. weight: math.unit(140, "lbs"),
  7263. name: "Front",
  7264. image: {
  7265. source: "./media/characters/amanda/front.svg"
  7266. }
  7267. }
  7268. },
  7269. [
  7270. {
  7271. name: "Micro",
  7272. height: math.unit(5, "inches"),
  7273. default: true
  7274. },
  7275. ]
  7276. ))
  7277. characterMakers.push(() => makeCharacter(
  7278. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  7279. {
  7280. front: {
  7281. height: math.unit(2.75, "meters"),
  7282. weight: math.unit(1200, "lb"),
  7283. name: "Front",
  7284. image: {
  7285. source: "./media/characters/teal/front.svg",
  7286. extra: 2463 / 2320,
  7287. bottom: 166 / 2629
  7288. }
  7289. },
  7290. back: {
  7291. height: math.unit(2.75, "meters"),
  7292. weight: math.unit(1200, "lb"),
  7293. name: "Back",
  7294. image: {
  7295. source: "./media/characters/teal/back.svg",
  7296. extra: 2580 / 2489,
  7297. bottom: 151 / 2731
  7298. }
  7299. },
  7300. sitting: {
  7301. height: math.unit(1.9, "meters"),
  7302. weight: math.unit(1200, "lb"),
  7303. name: "Sitting",
  7304. image: {
  7305. source: "./media/characters/teal/sitting.svg",
  7306. extra: 623 / 590,
  7307. bottom: 121 / 744
  7308. }
  7309. },
  7310. standing: {
  7311. height: math.unit(2.75, "meters"),
  7312. weight: math.unit(1200, "lb"),
  7313. name: "Standing",
  7314. image: {
  7315. source: "./media/characters/teal/standing.svg",
  7316. extra: 923 / 893,
  7317. bottom: 60 / 983
  7318. }
  7319. },
  7320. stretching: {
  7321. height: math.unit(3.65, "meters"),
  7322. weight: math.unit(1200, "lb"),
  7323. name: "Stretching",
  7324. image: {
  7325. source: "./media/characters/teal/stretching.svg",
  7326. extra: 1276 / 1244,
  7327. bottom: 0 / 1276
  7328. }
  7329. },
  7330. legged: {
  7331. height: math.unit(1.3, "meters"),
  7332. weight: math.unit(100, "lb"),
  7333. name: "Legged",
  7334. image: {
  7335. source: "./media/characters/teal/legged.svg",
  7336. extra: 462 / 437,
  7337. bottom: 24 / 486
  7338. }
  7339. },
  7340. naga: {
  7341. height: math.unit(5.4, "meters"),
  7342. weight: math.unit(4000, "lb"),
  7343. name: "Naga",
  7344. image: {
  7345. source: "./media/characters/teal/naga.svg",
  7346. extra: 1902 / 1858,
  7347. bottom: 0 / 1902
  7348. }
  7349. },
  7350. hand: {
  7351. height: math.unit(0.52, "meters"),
  7352. name: "Hand",
  7353. image: {
  7354. source: "./media/characters/teal/hand.svg"
  7355. }
  7356. },
  7357. maw: {
  7358. height: math.unit(0.43, "meters"),
  7359. name: "Maw",
  7360. image: {
  7361. source: "./media/characters/teal/maw.svg"
  7362. }
  7363. },
  7364. slit: {
  7365. height: math.unit(0.25, "meters"),
  7366. name: "Slit",
  7367. image: {
  7368. source: "./media/characters/teal/slit.svg"
  7369. }
  7370. },
  7371. },
  7372. [
  7373. {
  7374. name: "Normal",
  7375. height: math.unit(2.75, "meters"),
  7376. default: true
  7377. },
  7378. {
  7379. name: "Macro",
  7380. height: math.unit(300, "feet")
  7381. },
  7382. {
  7383. name: "Macro+",
  7384. height: math.unit(2000, "feet")
  7385. },
  7386. ]
  7387. ))
  7388. characterMakers.push(() => makeCharacter(
  7389. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  7390. {
  7391. frontCat: {
  7392. height: math.unit(6, "feet"),
  7393. weight: math.unit(180, "lbs"),
  7394. name: "Front (Cat)",
  7395. image: {
  7396. source: "./media/characters/ravin-amulet/front-cat.svg"
  7397. }
  7398. },
  7399. frontCatAlt: {
  7400. height: math.unit(6, "feet"),
  7401. weight: math.unit(180, "lbs"),
  7402. name: "Front (Alt, Cat)",
  7403. image: {
  7404. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  7405. }
  7406. },
  7407. frontWerewolf: {
  7408. height: math.unit(6 * 1.2, "feet"),
  7409. weight: math.unit(225, "lbs"),
  7410. name: "Front (Werewolf)",
  7411. image: {
  7412. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  7413. }
  7414. },
  7415. backWerewolf: {
  7416. height: math.unit(6 * 1.2, "feet"),
  7417. weight: math.unit(225, "lbs"),
  7418. name: "Back (Werewolf)",
  7419. image: {
  7420. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  7421. }
  7422. },
  7423. },
  7424. [
  7425. {
  7426. name: "Nano",
  7427. height: math.unit(1, "micrometer")
  7428. },
  7429. {
  7430. name: "Micro",
  7431. height: math.unit(1, "inch")
  7432. },
  7433. {
  7434. name: "Normal",
  7435. height: math.unit(6, "feet"),
  7436. default: true
  7437. },
  7438. {
  7439. name: "Macro",
  7440. height: math.unit(60, "feet")
  7441. }
  7442. ]
  7443. ))
  7444. characterMakers.push(() => makeCharacter(
  7445. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  7446. {
  7447. front: {
  7448. height: math.unit(6, "feet"),
  7449. weight: math.unit(165, "lbs"),
  7450. name: "Front",
  7451. image: {
  7452. source: "./media/characters/fluoresce/front.svg"
  7453. }
  7454. }
  7455. },
  7456. [
  7457. {
  7458. name: "Micro",
  7459. height: math.unit(6, "cm")
  7460. },
  7461. {
  7462. name: "Normal",
  7463. height: math.unit(5 + 7 / 12, "feet"),
  7464. default: true
  7465. },
  7466. {
  7467. name: "Macro",
  7468. height: math.unit(56, "feet")
  7469. },
  7470. {
  7471. name: "Megamacro",
  7472. height: math.unit(1.9, "miles")
  7473. },
  7474. ]
  7475. ))
  7476. characterMakers.push(() => makeCharacter(
  7477. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  7478. {
  7479. front: {
  7480. height: math.unit(9 + 6 / 12, "feet"),
  7481. weight: math.unit(523, "lbs"),
  7482. name: "Side",
  7483. image: {
  7484. source: "./media/characters/aurora/side.svg"
  7485. }
  7486. }
  7487. },
  7488. [
  7489. {
  7490. name: "Normal",
  7491. height: math.unit(9 + 6 / 12, "feet")
  7492. },
  7493. {
  7494. name: "Macro",
  7495. height: math.unit(96, "feet"),
  7496. default: true
  7497. },
  7498. {
  7499. name: "Macro+",
  7500. height: math.unit(243, "feet")
  7501. },
  7502. ]
  7503. ))
  7504. characterMakers.push(() => makeCharacter(
  7505. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  7506. {
  7507. front: {
  7508. height: math.unit(194, "cm"),
  7509. weight: math.unit(90, "kg"),
  7510. name: "Front",
  7511. image: {
  7512. source: "./media/characters/ranek/front.svg"
  7513. }
  7514. },
  7515. side: {
  7516. height: math.unit(194, "cm"),
  7517. weight: math.unit(90, "kg"),
  7518. name: "Side",
  7519. image: {
  7520. source: "./media/characters/ranek/side.svg"
  7521. }
  7522. },
  7523. back: {
  7524. height: math.unit(194, "cm"),
  7525. weight: math.unit(90, "kg"),
  7526. name: "Back",
  7527. image: {
  7528. source: "./media/characters/ranek/back.svg"
  7529. }
  7530. },
  7531. feral: {
  7532. height: math.unit(30, "cm"),
  7533. weight: math.unit(1.6, "lbs"),
  7534. name: "Feral",
  7535. image: {
  7536. source: "./media/characters/ranek/feral.svg"
  7537. }
  7538. },
  7539. },
  7540. [
  7541. {
  7542. name: "Normal",
  7543. height: math.unit(194, "cm"),
  7544. default: true
  7545. },
  7546. {
  7547. name: "Macro",
  7548. height: math.unit(100, "meters")
  7549. },
  7550. ]
  7551. ))
  7552. characterMakers.push(() => makeCharacter(
  7553. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  7554. {
  7555. front: {
  7556. height: math.unit(5 + 6 / 12, "feet"),
  7557. weight: math.unit(153, "lbs"),
  7558. name: "Front",
  7559. image: {
  7560. source: "./media/characters/andrew-cooper/front.svg"
  7561. }
  7562. },
  7563. },
  7564. [
  7565. {
  7566. name: "Nano",
  7567. height: math.unit(1, "mm")
  7568. },
  7569. {
  7570. name: "Micro",
  7571. height: math.unit(2, "inches")
  7572. },
  7573. {
  7574. name: "Normal",
  7575. height: math.unit(5 + 6 / 12, "feet"),
  7576. default: true
  7577. }
  7578. ]
  7579. ))
  7580. characterMakers.push(() => makeCharacter(
  7581. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  7582. {
  7583. front: {
  7584. height: math.unit(6, "feet"),
  7585. weight: math.unit(180, "lbs"),
  7586. name: "Front",
  7587. image: {
  7588. source: "./media/characters/akane-sato/front.svg",
  7589. extra: 1219 / 1140
  7590. }
  7591. },
  7592. back: {
  7593. height: math.unit(6, "feet"),
  7594. weight: math.unit(180, "lbs"),
  7595. name: "Back",
  7596. image: {
  7597. source: "./media/characters/akane-sato/back.svg",
  7598. extra: 1219 / 1170
  7599. }
  7600. },
  7601. },
  7602. [
  7603. {
  7604. name: "Normal",
  7605. height: math.unit(2.5, "meters")
  7606. },
  7607. {
  7608. name: "Macro",
  7609. height: math.unit(250, "meters"),
  7610. default: true
  7611. },
  7612. {
  7613. name: "Megamacro",
  7614. height: math.unit(25, "km")
  7615. },
  7616. ]
  7617. ))
  7618. characterMakers.push(() => makeCharacter(
  7619. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  7620. {
  7621. front: {
  7622. height: math.unit(6, "feet"),
  7623. weight: math.unit(65, "kg"),
  7624. name: "Front",
  7625. image: {
  7626. source: "./media/characters/rook/front.svg",
  7627. extra: 960 / 950
  7628. }
  7629. }
  7630. },
  7631. [
  7632. {
  7633. name: "Normal",
  7634. height: math.unit(8.8, "feet")
  7635. },
  7636. {
  7637. name: "Macro",
  7638. height: math.unit(88, "feet"),
  7639. default: true
  7640. },
  7641. {
  7642. name: "Megamacro",
  7643. height: math.unit(8, "miles")
  7644. },
  7645. ]
  7646. ))
  7647. characterMakers.push(() => makeCharacter(
  7648. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  7649. {
  7650. front: {
  7651. height: math.unit(12 + 2 / 12, "feet"),
  7652. weight: math.unit(808, "lbs"),
  7653. name: "Front",
  7654. image: {
  7655. source: "./media/characters/prodigy/front.svg"
  7656. }
  7657. }
  7658. },
  7659. [
  7660. {
  7661. name: "Normal",
  7662. height: math.unit(12 + 2 / 12, "feet"),
  7663. default: true
  7664. },
  7665. {
  7666. name: "Macro",
  7667. height: math.unit(143, "feet")
  7668. },
  7669. {
  7670. name: "Macro+",
  7671. height: math.unit(400, "feet")
  7672. },
  7673. ]
  7674. ))
  7675. characterMakers.push(() => makeCharacter(
  7676. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  7677. {
  7678. front: {
  7679. height: math.unit(6, "feet"),
  7680. weight: math.unit(225, "lbs"),
  7681. name: "Front",
  7682. image: {
  7683. source: "./media/characters/daniel/front.svg"
  7684. }
  7685. },
  7686. leaning: {
  7687. height: math.unit(6, "feet"),
  7688. weight: math.unit(225, "lbs"),
  7689. name: "Leaning",
  7690. image: {
  7691. source: "./media/characters/daniel/leaning.svg"
  7692. }
  7693. },
  7694. },
  7695. [
  7696. {
  7697. name: "Macro",
  7698. height: math.unit(1000, "feet"),
  7699. default: true
  7700. },
  7701. ]
  7702. ))
  7703. characterMakers.push(() => makeCharacter(
  7704. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  7705. {
  7706. front: {
  7707. height: math.unit(6, "feet"),
  7708. weight: math.unit(88, "lbs"),
  7709. name: "Front",
  7710. image: {
  7711. source: "./media/characters/chiros/front.svg",
  7712. extra: 306 / 226
  7713. }
  7714. },
  7715. side: {
  7716. height: math.unit(6, "feet"),
  7717. weight: math.unit(88, "lbs"),
  7718. name: "Side",
  7719. image: {
  7720. source: "./media/characters/chiros/side.svg",
  7721. extra: 306 / 226
  7722. }
  7723. },
  7724. },
  7725. [
  7726. {
  7727. name: "Normal",
  7728. height: math.unit(6, "cm"),
  7729. default: true
  7730. },
  7731. ]
  7732. ))
  7733. characterMakers.push(() => makeCharacter(
  7734. { name: "Selka", species: ["snake"], tags: ["naga"] },
  7735. {
  7736. front: {
  7737. height: math.unit(6, "feet"),
  7738. weight: math.unit(100, "lbs"),
  7739. name: "Front",
  7740. image: {
  7741. source: "./media/characters/selka/front.svg",
  7742. extra: 947 / 887
  7743. }
  7744. }
  7745. },
  7746. [
  7747. {
  7748. name: "Normal",
  7749. height: math.unit(5, "cm"),
  7750. default: true
  7751. },
  7752. ]
  7753. ))
  7754. characterMakers.push(() => makeCharacter(
  7755. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  7756. {
  7757. front: {
  7758. height: math.unit(8 + 3 / 12, "feet"),
  7759. weight: math.unit(424, "lbs"),
  7760. name: "Front",
  7761. image: {
  7762. source: "./media/characters/verin/front.svg",
  7763. extra: 1845 / 1550
  7764. }
  7765. },
  7766. frontArmored: {
  7767. height: math.unit(8 + 3 / 12, "feet"),
  7768. weight: math.unit(424, "lbs"),
  7769. name: "Front (Armored)",
  7770. image: {
  7771. source: "./media/characters/verin/front-armor.svg",
  7772. extra: 1845 / 1550,
  7773. bottom: 0.01
  7774. }
  7775. },
  7776. back: {
  7777. height: math.unit(8 + 3 / 12, "feet"),
  7778. weight: math.unit(424, "lbs"),
  7779. name: "Back",
  7780. image: {
  7781. source: "./media/characters/verin/back.svg",
  7782. bottom: 0.1,
  7783. extra: 1
  7784. }
  7785. },
  7786. foot: {
  7787. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  7788. name: "Foot",
  7789. image: {
  7790. source: "./media/characters/verin/foot.svg"
  7791. }
  7792. },
  7793. },
  7794. [
  7795. {
  7796. name: "Normal",
  7797. height: math.unit(8 + 3 / 12, "feet")
  7798. },
  7799. {
  7800. name: "Minimacro",
  7801. height: math.unit(21, "feet"),
  7802. default: true
  7803. },
  7804. {
  7805. name: "Macro",
  7806. height: math.unit(626, "feet")
  7807. },
  7808. ]
  7809. ))
  7810. characterMakers.push(() => makeCharacter(
  7811. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  7812. {
  7813. front: {
  7814. height: math.unit(2.718, "meters"),
  7815. weight: math.unit(150, "lbs"),
  7816. name: "Front",
  7817. image: {
  7818. source: "./media/characters/sovrim-terraquian/front.svg"
  7819. }
  7820. },
  7821. back: {
  7822. height: math.unit(2.718, "meters"),
  7823. weight: math.unit(150, "lbs"),
  7824. name: "Back",
  7825. image: {
  7826. source: "./media/characters/sovrim-terraquian/back.svg"
  7827. }
  7828. }
  7829. },
  7830. [
  7831. {
  7832. name: "Micro",
  7833. height: math.unit(2, "inches")
  7834. },
  7835. {
  7836. name: "Small",
  7837. height: math.unit(1, "meter")
  7838. },
  7839. {
  7840. name: "Normal",
  7841. height: math.unit(Math.E, "meters"),
  7842. default: true
  7843. },
  7844. {
  7845. name: "Macro",
  7846. height: math.unit(20, "meters")
  7847. },
  7848. {
  7849. name: "Macro+",
  7850. height: math.unit(400, "meters")
  7851. },
  7852. ]
  7853. ))
  7854. characterMakers.push(() => makeCharacter(
  7855. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  7856. {
  7857. front: {
  7858. height: math.unit(7, "feet"),
  7859. weight: math.unit(489, "lbs"),
  7860. name: "Front",
  7861. image: {
  7862. source: "./media/characters/reece-silvermane/front.svg",
  7863. bottom: 0.02,
  7864. extra: 1
  7865. }
  7866. },
  7867. },
  7868. [
  7869. {
  7870. name: "Macro",
  7871. height: math.unit(1.5, "miles"),
  7872. default: true
  7873. },
  7874. ]
  7875. ))
  7876. characterMakers.push(() => makeCharacter(
  7877. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  7878. {
  7879. front: {
  7880. height: math.unit(6, "feet"),
  7881. weight: math.unit(78, "kg"),
  7882. name: "Front",
  7883. image: {
  7884. source: "./media/characters/kane/front.svg",
  7885. extra: 978 / 899
  7886. }
  7887. },
  7888. },
  7889. [
  7890. {
  7891. name: "Normal",
  7892. height: math.unit(2.1, "m"),
  7893. },
  7894. {
  7895. name: "Macro",
  7896. height: math.unit(1, "km"),
  7897. default: true
  7898. },
  7899. ]
  7900. ))
  7901. characterMakers.push(() => makeCharacter(
  7902. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  7903. {
  7904. front: {
  7905. height: math.unit(6, "feet"),
  7906. weight: math.unit(200, "kg"),
  7907. name: "Front",
  7908. image: {
  7909. source: "./media/characters/tegon/front.svg",
  7910. bottom: 0.01,
  7911. extra: 1
  7912. }
  7913. },
  7914. },
  7915. [
  7916. {
  7917. name: "Micro",
  7918. height: math.unit(1, "inch")
  7919. },
  7920. {
  7921. name: "Normal",
  7922. height: math.unit(6 + 3 / 12, "feet"),
  7923. default: true
  7924. },
  7925. {
  7926. name: "Macro",
  7927. height: math.unit(300, "feet")
  7928. },
  7929. {
  7930. name: "Megamacro",
  7931. height: math.unit(69, "miles")
  7932. },
  7933. ]
  7934. ))
  7935. characterMakers.push(() => makeCharacter(
  7936. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  7937. {
  7938. side: {
  7939. height: math.unit(6, "feet"),
  7940. weight: math.unit(2304, "lbs"),
  7941. name: "Side",
  7942. image: {
  7943. source: "./media/characters/arcturax/side.svg",
  7944. extra: 790 / 376,
  7945. bottom: 0.01
  7946. }
  7947. },
  7948. },
  7949. [
  7950. {
  7951. name: "Micro",
  7952. height: math.unit(2, "inch")
  7953. },
  7954. {
  7955. name: "Normal",
  7956. height: math.unit(6, "feet")
  7957. },
  7958. {
  7959. name: "Macro",
  7960. height: math.unit(39, "feet"),
  7961. default: true
  7962. },
  7963. {
  7964. name: "Megamacro",
  7965. height: math.unit(7, "miles")
  7966. },
  7967. ]
  7968. ))
  7969. characterMakers.push(() => makeCharacter(
  7970. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  7971. {
  7972. front: {
  7973. height: math.unit(6, "feet"),
  7974. weight: math.unit(50, "lbs"),
  7975. name: "Front",
  7976. image: {
  7977. source: "./media/characters/sentri/front.svg",
  7978. extra: 1750 / 1570,
  7979. bottom: 0.025
  7980. }
  7981. },
  7982. frontAlt: {
  7983. height: math.unit(6, "feet"),
  7984. weight: math.unit(50, "lbs"),
  7985. name: "Front (Alt)",
  7986. image: {
  7987. source: "./media/characters/sentri/front-alt.svg",
  7988. extra: 1750 / 1570,
  7989. bottom: 0.025
  7990. }
  7991. },
  7992. },
  7993. [
  7994. {
  7995. name: "Normal",
  7996. height: math.unit(15, "feet"),
  7997. default: true
  7998. },
  7999. {
  8000. name: "Macro",
  8001. height: math.unit(2500, "feet")
  8002. }
  8003. ]
  8004. ))
  8005. characterMakers.push(() => makeCharacter(
  8006. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  8007. {
  8008. front: {
  8009. height: math.unit(5 + 8 / 12, "feet"),
  8010. weight: math.unit(130, "lbs"),
  8011. name: "Front",
  8012. image: {
  8013. source: "./media/characters/corvin/front.svg",
  8014. extra: 1803 / 1629
  8015. }
  8016. },
  8017. frontShirt: {
  8018. height: math.unit(5 + 8 / 12, "feet"),
  8019. weight: math.unit(130, "lbs"),
  8020. name: "Front (Shirt)",
  8021. image: {
  8022. source: "./media/characters/corvin/front-shirt.svg",
  8023. extra: 1803 / 1629
  8024. }
  8025. },
  8026. frontPoncho: {
  8027. height: math.unit(5 + 8 / 12, "feet"),
  8028. weight: math.unit(130, "lbs"),
  8029. name: "Front (Poncho)",
  8030. image: {
  8031. source: "./media/characters/corvin/front-poncho.svg",
  8032. extra: 1803 / 1629
  8033. }
  8034. },
  8035. side: {
  8036. height: math.unit(5 + 8 / 12, "feet"),
  8037. weight: math.unit(130, "lbs"),
  8038. name: "Side",
  8039. image: {
  8040. source: "./media/characters/corvin/side.svg",
  8041. extra: 1012 / 945
  8042. }
  8043. },
  8044. back: {
  8045. height: math.unit(5 + 8 / 12, "feet"),
  8046. weight: math.unit(130, "lbs"),
  8047. name: "Back",
  8048. image: {
  8049. source: "./media/characters/corvin/back.svg",
  8050. extra: 1803 / 1629
  8051. }
  8052. },
  8053. },
  8054. [
  8055. {
  8056. name: "Micro",
  8057. height: math.unit(3, "inches")
  8058. },
  8059. {
  8060. name: "Normal",
  8061. height: math.unit(5 + 8 / 12, "feet")
  8062. },
  8063. {
  8064. name: "Macro",
  8065. height: math.unit(300, "feet"),
  8066. default: true
  8067. },
  8068. {
  8069. name: "Megamacro",
  8070. height: math.unit(500, "miles")
  8071. }
  8072. ]
  8073. ))
  8074. characterMakers.push(() => makeCharacter(
  8075. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  8076. {
  8077. front: {
  8078. height: math.unit(6, "feet"),
  8079. weight: math.unit(135, "lbs"),
  8080. name: "Front",
  8081. image: {
  8082. source: "./media/characters/q/front.svg",
  8083. extra: 854 / 752,
  8084. bottom: 0.005
  8085. }
  8086. },
  8087. back: {
  8088. height: math.unit(6, "feet"),
  8089. weight: math.unit(130, "lbs"),
  8090. name: "Back",
  8091. image: {
  8092. source: "./media/characters/q/back.svg",
  8093. extra: 854 / 752
  8094. }
  8095. },
  8096. },
  8097. [
  8098. {
  8099. name: "Macro",
  8100. height: math.unit(90, "feet"),
  8101. default: true
  8102. },
  8103. {
  8104. name: "Extra Macro",
  8105. height: math.unit(300, "feet"),
  8106. },
  8107. {
  8108. name: "BIG WALF",
  8109. height: math.unit(750, "feet"),
  8110. },
  8111. ]
  8112. ))
  8113. characterMakers.push(() => makeCharacter(
  8114. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  8115. {
  8116. front: {
  8117. height: math.unit(6, "feet"),
  8118. weight: math.unit(150, "lbs"),
  8119. name: "Front",
  8120. image: {
  8121. source: "./media/characters/carley/front.svg",
  8122. extra: 3927 / 3540,
  8123. bottom: 29.2 / 735
  8124. }
  8125. }
  8126. },
  8127. [
  8128. {
  8129. name: "Normal",
  8130. height: math.unit(6 + 3 / 12, "feet")
  8131. },
  8132. {
  8133. name: "Macro",
  8134. height: math.unit(185, "feet"),
  8135. default: true
  8136. },
  8137. {
  8138. name: "Megamacro",
  8139. height: math.unit(8, "miles"),
  8140. },
  8141. ]
  8142. ))
  8143. characterMakers.push(() => makeCharacter(
  8144. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  8145. {
  8146. front: {
  8147. height: math.unit(3, "feet"),
  8148. weight: math.unit(28, "lbs"),
  8149. name: "Front",
  8150. image: {
  8151. source: "./media/characters/citrine/front.svg"
  8152. }
  8153. }
  8154. },
  8155. [
  8156. {
  8157. name: "Normal",
  8158. height: math.unit(3, "feet"),
  8159. default: true
  8160. }
  8161. ]
  8162. ))
  8163. characterMakers.push(() => makeCharacter(
  8164. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  8165. {
  8166. front: {
  8167. height: math.unit(14, "feet"),
  8168. weight: math.unit(1450, "kg"),
  8169. capacity: math.unit(15, "people"),
  8170. name: "Front",
  8171. image: {
  8172. source: "./media/characters/aura-starwind/front.svg",
  8173. extra: 1455 / 1335
  8174. }
  8175. },
  8176. side: {
  8177. height: math.unit(14, "feet"),
  8178. weight: math.unit(1450, "kg"),
  8179. capacity: math.unit(15, "people"),
  8180. name: "Side",
  8181. image: {
  8182. source: "./media/characters/aura-starwind/side.svg",
  8183. extra: 1654 / 1497
  8184. }
  8185. },
  8186. taur: {
  8187. height: math.unit(18, "feet"),
  8188. weight: math.unit(5500, "kg"),
  8189. capacity: math.unit(50, "people"),
  8190. name: "Taur",
  8191. image: {
  8192. source: "./media/characters/aura-starwind/taur.svg",
  8193. extra: 1760 / 1650
  8194. }
  8195. },
  8196. feral: {
  8197. height: math.unit(46, "feet"),
  8198. weight: math.unit(25000, "kg"),
  8199. capacity: math.unit(120, "people"),
  8200. name: "Feral",
  8201. image: {
  8202. source: "./media/characters/aura-starwind/feral.svg"
  8203. }
  8204. },
  8205. },
  8206. [
  8207. {
  8208. name: "Normal",
  8209. height: math.unit(14, "feet"),
  8210. default: true
  8211. },
  8212. {
  8213. name: "Macro",
  8214. height: math.unit(50, "meters")
  8215. },
  8216. {
  8217. name: "Megamacro",
  8218. height: math.unit(5000, "meters")
  8219. },
  8220. {
  8221. name: "Gigamacro",
  8222. height: math.unit(100000, "kilometers")
  8223. },
  8224. ]
  8225. ))
  8226. characterMakers.push(() => makeCharacter(
  8227. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  8228. {
  8229. front: {
  8230. height: math.unit(2 + 7 / 12, "feet"),
  8231. weight: math.unit(32, "lbs"),
  8232. name: "Front",
  8233. image: {
  8234. source: "./media/characters/rivet/front.svg",
  8235. extra: 1716 / 1658,
  8236. bottom: 0.03
  8237. }
  8238. },
  8239. foot: {
  8240. height: math.unit(0.551, "feet"),
  8241. name: "Rivet's Foot",
  8242. image: {
  8243. source: "./media/characters/rivet/foot.svg"
  8244. },
  8245. rename: true
  8246. }
  8247. },
  8248. [
  8249. {
  8250. name: "Micro",
  8251. height: math.unit(1.5, "inches"),
  8252. },
  8253. {
  8254. name: "Normal",
  8255. height: math.unit(2 + 7 / 12, "feet"),
  8256. default: true
  8257. },
  8258. {
  8259. name: "Macro",
  8260. height: math.unit(85, "feet")
  8261. },
  8262. {
  8263. name: "Megamacro",
  8264. height: math.unit(2.2, "km")
  8265. }
  8266. ]
  8267. ))
  8268. characterMakers.push(() => makeCharacter(
  8269. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  8270. {
  8271. front: {
  8272. height: math.unit(5 + 9 / 12, "feet"),
  8273. weight: math.unit(150, "lbs"),
  8274. name: "Front",
  8275. image: {
  8276. source: "./media/characters/coffee/front.svg",
  8277. extra: 3666 / 3032,
  8278. bottom: 0.04
  8279. }
  8280. },
  8281. foot: {
  8282. height: math.unit(1.29, "feet"),
  8283. name: "Foot",
  8284. image: {
  8285. source: "./media/characters/coffee/foot.svg"
  8286. }
  8287. },
  8288. },
  8289. [
  8290. {
  8291. name: "Micro",
  8292. height: math.unit(2, "inches"),
  8293. },
  8294. {
  8295. name: "Normal",
  8296. height: math.unit(5 + 9 / 12, "feet"),
  8297. default: true
  8298. },
  8299. {
  8300. name: "Macro",
  8301. height: math.unit(800, "feet")
  8302. },
  8303. {
  8304. name: "Megamacro",
  8305. height: math.unit(25, "miles")
  8306. }
  8307. ]
  8308. ))
  8309. characterMakers.push(() => makeCharacter(
  8310. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  8311. {
  8312. front: {
  8313. height: math.unit(6, "feet"),
  8314. weight: math.unit(200, "lbs"),
  8315. name: "Front",
  8316. image: {
  8317. source: "./media/characters/chari-gal/front.svg",
  8318. extra: 1568 / 1385,
  8319. bottom: 0.047
  8320. }
  8321. },
  8322. gigantamax: {
  8323. height: math.unit(6 * 16, "feet"),
  8324. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  8325. name: "Gigantamax",
  8326. image: {
  8327. source: "./media/characters/chari-gal/gigantamax.svg",
  8328. extra: 1124 / 888,
  8329. bottom: 0.03
  8330. }
  8331. },
  8332. },
  8333. [
  8334. {
  8335. name: "Normal",
  8336. height: math.unit(5 + 7 / 12, "feet")
  8337. },
  8338. {
  8339. name: "Macro",
  8340. height: math.unit(200, "feet"),
  8341. default: true
  8342. }
  8343. ]
  8344. ))
  8345. characterMakers.push(() => makeCharacter(
  8346. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  8347. {
  8348. front: {
  8349. height: math.unit(6, "feet"),
  8350. weight: math.unit(150, "lbs"),
  8351. name: "Front",
  8352. image: {
  8353. source: "./media/characters/nova/front.svg",
  8354. extra: 5000 / 4722,
  8355. bottom: 0.02
  8356. }
  8357. }
  8358. },
  8359. [
  8360. {
  8361. name: "Micro-",
  8362. height: math.unit(0.8, "inches")
  8363. },
  8364. {
  8365. name: "Micro",
  8366. height: math.unit(2, "inches"),
  8367. default: true
  8368. },
  8369. ]
  8370. ))
  8371. characterMakers.push(() => makeCharacter(
  8372. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  8373. {
  8374. front: {
  8375. height: math.unit(3 + 1 / 12, "feet"),
  8376. weight: math.unit(21.7, "lbs"),
  8377. name: "Front",
  8378. image: {
  8379. source: "./media/characters/argent/front.svg",
  8380. extra: 1471 / 1331,
  8381. bottom: 100.8 / 1575.5
  8382. }
  8383. }
  8384. },
  8385. [
  8386. {
  8387. name: "Micro",
  8388. height: math.unit(2, "inches")
  8389. },
  8390. {
  8391. name: "Normal",
  8392. height: math.unit(3 + 1 / 12, "feet"),
  8393. default: true
  8394. },
  8395. {
  8396. name: "Macro",
  8397. height: math.unit(120, "feet")
  8398. },
  8399. ]
  8400. ))
  8401. characterMakers.push(() => makeCharacter(
  8402. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  8403. {
  8404. lamp: {
  8405. height: math.unit(7 * 1559 / 989, "feet"),
  8406. name: "Magic Lamp",
  8407. image: {
  8408. source: "./media/characters/mira-al-cul/lamp.svg",
  8409. extra: 1617 / 1559
  8410. }
  8411. },
  8412. front: {
  8413. height: math.unit(7, "feet"),
  8414. name: "Front",
  8415. image: {
  8416. source: "./media/characters/mira-al-cul/front.svg",
  8417. extra: 1044 / 990
  8418. }
  8419. },
  8420. },
  8421. [
  8422. {
  8423. name: "Heavily Restricted",
  8424. height: math.unit(7 * 1559 / 989, "feet")
  8425. },
  8426. {
  8427. name: "Freshly Freed",
  8428. height: math.unit(50 * 1559 / 989, "feet")
  8429. },
  8430. {
  8431. name: "World Encompassing",
  8432. height: math.unit(10000 * 1559 / 989, "miles")
  8433. },
  8434. {
  8435. name: "Galactic",
  8436. height: math.unit(1.433 * 1559 / 989, "zettameters")
  8437. },
  8438. {
  8439. name: "Palmed Universe",
  8440. height: math.unit(6000 * 1559 / 989, "yottameters"),
  8441. default: true
  8442. },
  8443. {
  8444. name: "Multiversal Matriarch",
  8445. height: math.unit(8.87e10, "yottameters")
  8446. },
  8447. {
  8448. name: "Void Mother",
  8449. height: math.unit(3.14e110, "yottaparsecs")
  8450. },
  8451. {
  8452. name: "Toying with Transcendence",
  8453. height: math.unit(1e307, "meters")
  8454. },
  8455. ]
  8456. ))
  8457. characterMakers.push(() => makeCharacter(
  8458. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  8459. {
  8460. front: {
  8461. height: math.unit(17 + 1 / 12, "feet"),
  8462. weight: math.unit(476.2 * 5, "lbs"),
  8463. name: "Front",
  8464. image: {
  8465. source: "./media/characters/kuro-shi-uchū/front.svg",
  8466. extra: 2329 / 1835,
  8467. bottom: 0.02
  8468. }
  8469. },
  8470. },
  8471. [
  8472. {
  8473. name: "Micro",
  8474. height: math.unit(2, "inches")
  8475. },
  8476. {
  8477. name: "Normal",
  8478. height: math.unit(12, "meters")
  8479. },
  8480. {
  8481. name: "Planetary",
  8482. height: math.unit(0.00929, "AU"),
  8483. default: true
  8484. },
  8485. {
  8486. name: "Universal",
  8487. height: math.unit(20, "gigaparsecs")
  8488. },
  8489. ]
  8490. ))
  8491. characterMakers.push(() => makeCharacter(
  8492. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  8493. {
  8494. front: {
  8495. height: math.unit(5 + 2 / 12, "feet"),
  8496. weight: math.unit(120, "lbs"),
  8497. name: "Front",
  8498. image: {
  8499. source: "./media/characters/katherine/front.svg",
  8500. extra: 2075 / 1969
  8501. }
  8502. },
  8503. dress: {
  8504. height: math.unit(5 + 2 / 12, "feet"),
  8505. weight: math.unit(120, "lbs"),
  8506. name: "Dress",
  8507. image: {
  8508. source: "./media/characters/katherine/dress.svg",
  8509. extra: 2258 / 2064
  8510. }
  8511. },
  8512. },
  8513. [
  8514. {
  8515. name: "Micro",
  8516. height: math.unit(1, "inches"),
  8517. default: true
  8518. },
  8519. {
  8520. name: "Normal",
  8521. height: math.unit(5 + 2 / 12, "feet")
  8522. },
  8523. {
  8524. name: "Macro",
  8525. height: math.unit(100, "meters")
  8526. },
  8527. {
  8528. name: "Megamacro",
  8529. height: math.unit(80, "miles")
  8530. },
  8531. ]
  8532. ))
  8533. characterMakers.push(() => makeCharacter(
  8534. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  8535. {
  8536. front: {
  8537. height: math.unit(7 + 8 / 12, "feet"),
  8538. weight: math.unit(250, "lbs"),
  8539. name: "Front",
  8540. image: {
  8541. source: "./media/characters/yevis/front.svg",
  8542. extra: 1938 / 1755
  8543. }
  8544. }
  8545. },
  8546. [
  8547. {
  8548. name: "Mortal",
  8549. height: math.unit(7 + 8 / 12, "feet")
  8550. },
  8551. {
  8552. name: "Battle",
  8553. height: math.unit(25 + 11 / 12, "feet")
  8554. },
  8555. {
  8556. name: "Wrath",
  8557. height: math.unit(1654 + 11 / 12, "feet")
  8558. },
  8559. {
  8560. name: "Planet Destroyer",
  8561. height: math.unit(12000, "miles")
  8562. },
  8563. {
  8564. name: "Galaxy Conqueror",
  8565. height: math.unit(1.45, "zettameters"),
  8566. default: true
  8567. },
  8568. {
  8569. name: "Universal War",
  8570. height: math.unit(184, "gigaparsecs")
  8571. },
  8572. {
  8573. name: "Eternity War",
  8574. height: math.unit(1.98e55, "yottaparsecs")
  8575. },
  8576. ]
  8577. ))
  8578. characterMakers.push(() => makeCharacter(
  8579. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  8580. {
  8581. front: {
  8582. height: math.unit(5 + 8 / 12, "feet"),
  8583. weight: math.unit(63, "kg"),
  8584. name: "Front",
  8585. image: {
  8586. source: "./media/characters/xavier/front.svg",
  8587. extra: 944 / 883
  8588. }
  8589. },
  8590. frontStretch: {
  8591. height: math.unit(5 + 8 / 12, "feet"),
  8592. weight: math.unit(63, "kg"),
  8593. name: "Stretching",
  8594. image: {
  8595. source: "./media/characters/xavier/front-stretch.svg",
  8596. extra: 962 / 820
  8597. }
  8598. },
  8599. },
  8600. [
  8601. {
  8602. name: "Normal",
  8603. height: math.unit(5 + 8 / 12, "feet")
  8604. },
  8605. {
  8606. name: "Macro",
  8607. height: math.unit(100, "meters"),
  8608. default: true
  8609. },
  8610. {
  8611. name: "McLargeHuge",
  8612. height: math.unit(10, "miles")
  8613. },
  8614. ]
  8615. ))
  8616. characterMakers.push(() => makeCharacter(
  8617. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  8618. {
  8619. front: {
  8620. height: math.unit(5 + 5 / 12, "feet"),
  8621. weight: math.unit(150, "lb"),
  8622. name: "Front",
  8623. image: {
  8624. source: "./media/characters/joshii/front.svg",
  8625. extra: 765 / 653,
  8626. bottom: 51 / 816
  8627. }
  8628. },
  8629. foot: {
  8630. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  8631. name: "Foot",
  8632. image: {
  8633. source: "./media/characters/joshii/foot.svg"
  8634. }
  8635. },
  8636. },
  8637. [
  8638. {
  8639. name: "Micro",
  8640. height: math.unit(2, "inches"),
  8641. default: true
  8642. },
  8643. {
  8644. name: "Normal",
  8645. height: math.unit(5 + 5 / 12, "feet")
  8646. },
  8647. {
  8648. name: "Macro",
  8649. height: math.unit(785, "feet")
  8650. },
  8651. {
  8652. name: "Megamacro",
  8653. height: math.unit(24.5, "miles")
  8654. },
  8655. ]
  8656. ))
  8657. characterMakers.push(() => makeCharacter(
  8658. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  8659. {
  8660. front: {
  8661. height: math.unit(6, "feet"),
  8662. weight: math.unit(150, "lb"),
  8663. name: "Front",
  8664. image: {
  8665. source: "./media/characters/goddess-elizabeth/front.svg",
  8666. extra: 1800 / 1525,
  8667. bottom: 0.005
  8668. }
  8669. },
  8670. foot: {
  8671. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  8672. name: "Foot",
  8673. image: {
  8674. source: "./media/characters/goddess-elizabeth/foot.svg"
  8675. }
  8676. },
  8677. mouth: {
  8678. height: math.unit(6, "feet"),
  8679. name: "Mouth",
  8680. image: {
  8681. source: "./media/characters/goddess-elizabeth/mouth.svg"
  8682. }
  8683. },
  8684. },
  8685. [
  8686. {
  8687. name: "Micro",
  8688. height: math.unit(12, "feet")
  8689. },
  8690. {
  8691. name: "Normal",
  8692. height: math.unit(80, "miles"),
  8693. default: true
  8694. },
  8695. {
  8696. name: "Macro",
  8697. height: math.unit(15000, "parsecs")
  8698. },
  8699. ]
  8700. ))
  8701. characterMakers.push(() => makeCharacter(
  8702. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  8703. {
  8704. front: {
  8705. height: math.unit(5 + 9 / 12, "feet"),
  8706. weight: math.unit(144, "lb"),
  8707. name: "Front",
  8708. image: {
  8709. source: "./media/characters/kara/front.svg"
  8710. }
  8711. },
  8712. feet: {
  8713. height: math.unit(6 / 6.765, "feet"),
  8714. name: "Kara's Feet",
  8715. rename: true,
  8716. image: {
  8717. source: "./media/characters/kara/feet.svg"
  8718. }
  8719. },
  8720. },
  8721. [
  8722. {
  8723. name: "Normal",
  8724. height: math.unit(5 + 9 / 12, "feet")
  8725. },
  8726. {
  8727. name: "Macro",
  8728. height: math.unit(174, "feet"),
  8729. default: true
  8730. },
  8731. ]
  8732. ))
  8733. characterMakers.push(() => makeCharacter(
  8734. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  8735. {
  8736. front: {
  8737. height: math.unit(18, "feet"),
  8738. weight: math.unit(4050, "lb"),
  8739. name: "Front",
  8740. image: {
  8741. source: "./media/characters/tyrone/front.svg",
  8742. extra: 2405 / 2270,
  8743. bottom: 182 / 2587
  8744. }
  8745. },
  8746. },
  8747. [
  8748. {
  8749. name: "Normal",
  8750. height: math.unit(18, "feet"),
  8751. default: true
  8752. },
  8753. {
  8754. name: "Macro",
  8755. height: math.unit(300, "feet")
  8756. },
  8757. {
  8758. name: "Megamacro",
  8759. height: math.unit(15, "km")
  8760. },
  8761. {
  8762. name: "Gigamacro",
  8763. height: math.unit(500, "km")
  8764. },
  8765. {
  8766. name: "Teramacro",
  8767. height: math.unit(0.5, "gigameters")
  8768. },
  8769. {
  8770. name: "Omnimacro",
  8771. height: math.unit(1e252, "yottauniverse")
  8772. },
  8773. ]
  8774. ))
  8775. characterMakers.push(() => makeCharacter(
  8776. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  8777. {
  8778. front: {
  8779. height: math.unit(7 + 8 / 12, "feet"),
  8780. weight: math.unit(120, "lb"),
  8781. name: "Front",
  8782. image: {
  8783. source: "./media/characters/danny/front.svg",
  8784. extra: 1490 / 1350
  8785. }
  8786. },
  8787. back: {
  8788. height: math.unit(7 + 8 / 12, "feet"),
  8789. weight: math.unit(120, "lb"),
  8790. name: "Back",
  8791. image: {
  8792. source: "./media/characters/danny/back.svg",
  8793. extra: 1490 / 1350
  8794. }
  8795. },
  8796. },
  8797. [
  8798. {
  8799. name: "Normal",
  8800. height: math.unit(7 + 8 / 12, "feet"),
  8801. default: true
  8802. },
  8803. ]
  8804. ))
  8805. characterMakers.push(() => makeCharacter(
  8806. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  8807. {
  8808. front: {
  8809. height: math.unit(3.5, "inches"),
  8810. weight: math.unit(19, "grams"),
  8811. name: "Front",
  8812. image: {
  8813. source: "./media/characters/mallow/front.svg",
  8814. extra: 471 / 431
  8815. }
  8816. },
  8817. back: {
  8818. height: math.unit(3.5, "inches"),
  8819. weight: math.unit(19, "grams"),
  8820. name: "Back",
  8821. image: {
  8822. source: "./media/characters/mallow/back.svg",
  8823. extra: 471 / 431
  8824. }
  8825. },
  8826. },
  8827. [
  8828. {
  8829. name: "Normal",
  8830. height: math.unit(3.5, "inches"),
  8831. default: true
  8832. },
  8833. ]
  8834. ))
  8835. characterMakers.push(() => makeCharacter(
  8836. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  8837. {
  8838. front: {
  8839. height: math.unit(9, "feet"),
  8840. weight: math.unit(230, "kg"),
  8841. name: "Front",
  8842. image: {
  8843. source: "./media/characters/starry-aqua/front.svg"
  8844. }
  8845. },
  8846. back: {
  8847. height: math.unit(9, "feet"),
  8848. weight: math.unit(230, "kg"),
  8849. name: "Back",
  8850. image: {
  8851. source: "./media/characters/starry-aqua/back.svg"
  8852. }
  8853. },
  8854. hand: {
  8855. height: math.unit(9 * 0.1168, "feet"),
  8856. name: "Hand",
  8857. image: {
  8858. source: "./media/characters/starry-aqua/hand.svg"
  8859. }
  8860. },
  8861. foot: {
  8862. height: math.unit(9 * 0.18, "feet"),
  8863. name: "Foot",
  8864. image: {
  8865. source: "./media/characters/starry-aqua/foot.svg"
  8866. }
  8867. }
  8868. },
  8869. [
  8870. {
  8871. name: "Micro",
  8872. height: math.unit(3, "inches")
  8873. },
  8874. {
  8875. name: "Normal",
  8876. height: math.unit(9, "feet")
  8877. },
  8878. {
  8879. name: "Macro",
  8880. height: math.unit(300, "feet"),
  8881. default: true
  8882. },
  8883. {
  8884. name: "Megamacro",
  8885. height: math.unit(3200, "feet")
  8886. }
  8887. ]
  8888. ))
  8889. characterMakers.push(() => makeCharacter(
  8890. { name: "Luka", species: ["husky"], tags: ["anthro"] },
  8891. {
  8892. front: {
  8893. height: math.unit(6, "feet"),
  8894. weight: math.unit(230, "lb"),
  8895. name: "Front",
  8896. image: {
  8897. source: "./media/characters/luka/front.svg",
  8898. extra: 1,
  8899. bottom: 0.025
  8900. }
  8901. },
  8902. },
  8903. [
  8904. {
  8905. name: "Normal",
  8906. height: math.unit(12 + 8 / 12, "feet"),
  8907. default: true
  8908. },
  8909. {
  8910. name: "Minimacro",
  8911. height: math.unit(20, "feet")
  8912. },
  8913. {
  8914. name: "Macro",
  8915. height: math.unit(250, "feet")
  8916. },
  8917. {
  8918. name: "Megamacro",
  8919. height: math.unit(5, "miles")
  8920. },
  8921. {
  8922. name: "Gigamacro",
  8923. height: math.unit(8000, "miles")
  8924. },
  8925. ]
  8926. ))
  8927. characterMakers.push(() => makeCharacter(
  8928. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  8929. {
  8930. front: {
  8931. height: math.unit(6, "feet"),
  8932. weight: math.unit(150, "lb"),
  8933. name: "Front",
  8934. image: {
  8935. source: "./media/characters/natalie-nightring/front.svg",
  8936. extra: 1,
  8937. bottom: 0.06
  8938. }
  8939. },
  8940. },
  8941. [
  8942. {
  8943. name: "Uh Oh",
  8944. height: math.unit(0.1, "mm")
  8945. },
  8946. {
  8947. name: "Small",
  8948. height: math.unit(3, "inches")
  8949. },
  8950. {
  8951. name: "Human Scale",
  8952. height: math.unit(6, "feet")
  8953. },
  8954. {
  8955. name: "Librarian",
  8956. height: math.unit(50, "feet"),
  8957. default: true
  8958. },
  8959. {
  8960. name: "Immense",
  8961. height: math.unit(200, "miles")
  8962. },
  8963. ]
  8964. ))
  8965. characterMakers.push(() => makeCharacter(
  8966. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  8967. {
  8968. front: {
  8969. height: math.unit(6, "feet"),
  8970. weight: math.unit(180, "lbs"),
  8971. name: "Front",
  8972. image: {
  8973. source: "./media/characters/danni-rosie/front.svg",
  8974. extra: 1260 / 1128,
  8975. bottom: 0.022
  8976. }
  8977. },
  8978. },
  8979. [
  8980. {
  8981. name: "Micro",
  8982. height: math.unit(2, "inches"),
  8983. default: true
  8984. },
  8985. ]
  8986. ))
  8987. characterMakers.push(() => makeCharacter(
  8988. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  8989. {
  8990. front: {
  8991. height: math.unit(5 + 9 / 12, "feet"),
  8992. weight: math.unit(220, "lb"),
  8993. name: "Front",
  8994. image: {
  8995. source: "./media/characters/samantha-kruse/front.svg",
  8996. extra: (985 / 935),
  8997. bottom: 0.03
  8998. }
  8999. },
  9000. frontUndressed: {
  9001. height: math.unit(5 + 9 / 12, "feet"),
  9002. weight: math.unit(220, "lb"),
  9003. name: "Front (Undressed)",
  9004. image: {
  9005. source: "./media/characters/samantha-kruse/front-undressed.svg",
  9006. extra: (973 / 923),
  9007. bottom: 0.025
  9008. }
  9009. },
  9010. fat: {
  9011. height: math.unit(5 + 9 / 12, "feet"),
  9012. weight: math.unit(900, "lb"),
  9013. name: "Front (Fat)",
  9014. image: {
  9015. source: "./media/characters/samantha-kruse/fat.svg",
  9016. extra: 2688 / 2561
  9017. }
  9018. },
  9019. },
  9020. [
  9021. {
  9022. name: "Normal",
  9023. height: math.unit(5 + 9 / 12, "feet"),
  9024. default: true
  9025. }
  9026. ]
  9027. ))
  9028. characterMakers.push(() => makeCharacter(
  9029. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  9030. {
  9031. back: {
  9032. height: math.unit(5 + 4 / 12, "feet"),
  9033. weight: math.unit(4963, "lb"),
  9034. name: "Back",
  9035. image: {
  9036. source: "./media/characters/amelia-rosie/back.svg",
  9037. extra: 1113 / 963,
  9038. bottom: 0.01
  9039. }
  9040. },
  9041. },
  9042. [
  9043. {
  9044. name: "Level 0",
  9045. height: math.unit(5 + 4 / 12, "feet")
  9046. },
  9047. {
  9048. name: "Level 1",
  9049. height: math.unit(164597, "feet"),
  9050. default: true
  9051. },
  9052. {
  9053. name: "Level 2",
  9054. height: math.unit(956243, "miles")
  9055. },
  9056. {
  9057. name: "Level 3",
  9058. height: math.unit(29421709423, "miles")
  9059. },
  9060. {
  9061. name: "Level 4",
  9062. height: math.unit(154, "lightyears")
  9063. },
  9064. {
  9065. name: "Level 5",
  9066. height: math.unit(4738272, "lightyears")
  9067. },
  9068. {
  9069. name: "Level 6",
  9070. height: math.unit(145787152896, "lightyears")
  9071. },
  9072. ]
  9073. ))
  9074. characterMakers.push(() => makeCharacter(
  9075. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  9076. {
  9077. front: {
  9078. height: math.unit(5 + 11 / 12, "feet"),
  9079. weight: math.unit(65, "kg"),
  9080. name: "Front",
  9081. image: {
  9082. source: "./media/characters/rook-kitara/front.svg",
  9083. extra: 1347 / 1274,
  9084. bottom: 0.005
  9085. }
  9086. },
  9087. },
  9088. [
  9089. {
  9090. name: "Totally Unfair",
  9091. height: math.unit(1.8, "mm")
  9092. },
  9093. {
  9094. name: "Lap Rookie",
  9095. height: math.unit(1.4, "feet")
  9096. },
  9097. {
  9098. name: "Normal",
  9099. height: math.unit(5 + 11 / 12, "feet"),
  9100. default: true
  9101. },
  9102. {
  9103. name: "How Did This Happen",
  9104. height: math.unit(80, "miles")
  9105. }
  9106. ]
  9107. ))
  9108. characterMakers.push(() => makeCharacter(
  9109. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  9110. {
  9111. front: {
  9112. height: math.unit(7, "feet"),
  9113. weight: math.unit(300, "lb"),
  9114. name: "Front",
  9115. image: {
  9116. source: "./media/characters/pisces/front.svg",
  9117. extra: 2255 / 2115,
  9118. bottom: 0.03
  9119. }
  9120. },
  9121. back: {
  9122. height: math.unit(7, "feet"),
  9123. weight: math.unit(300, "lb"),
  9124. name: "Back",
  9125. image: {
  9126. source: "./media/characters/pisces/back.svg",
  9127. extra: 2146 / 2055,
  9128. bottom: 0.04
  9129. }
  9130. },
  9131. },
  9132. [
  9133. {
  9134. name: "Normal",
  9135. height: math.unit(7, "feet"),
  9136. default: true
  9137. },
  9138. {
  9139. name: "Swimming Pool",
  9140. height: math.unit(12.2, "meters")
  9141. },
  9142. {
  9143. name: "Olympic Swimming Pool",
  9144. height: math.unit(56.3, "meters")
  9145. },
  9146. {
  9147. name: "Lake Superior",
  9148. height: math.unit(93900, "meters")
  9149. },
  9150. {
  9151. name: "Mediterranean Sea",
  9152. height: math.unit(644457, "meters")
  9153. },
  9154. {
  9155. name: "World's Oceans",
  9156. height: math.unit(4567491, "meters")
  9157. },
  9158. ]
  9159. ))
  9160. characterMakers.push(() => makeCharacter(
  9161. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  9162. {
  9163. front: {
  9164. height: math.unit(2.3, "meters"),
  9165. weight: math.unit(120, "kg"),
  9166. name: "Front",
  9167. image: {
  9168. source: "./media/characters/zelas/front.svg"
  9169. }
  9170. },
  9171. side: {
  9172. height: math.unit(2.3, "meters"),
  9173. weight: math.unit(120, "kg"),
  9174. name: "Side",
  9175. image: {
  9176. source: "./media/characters/zelas/side.svg"
  9177. }
  9178. },
  9179. back: {
  9180. height: math.unit(2.3, "meters"),
  9181. weight: math.unit(120, "kg"),
  9182. name: "Back",
  9183. image: {
  9184. source: "./media/characters/zelas/back.svg"
  9185. }
  9186. },
  9187. foot: {
  9188. height: math.unit(1.116, "feet"),
  9189. name: "Foot",
  9190. image: {
  9191. source: "./media/characters/zelas/foot.svg"
  9192. }
  9193. },
  9194. },
  9195. [
  9196. {
  9197. name: "Normal",
  9198. height: math.unit(2.3, "meters")
  9199. },
  9200. {
  9201. name: "Macro",
  9202. height: math.unit(30, "meters"),
  9203. default: true
  9204. },
  9205. ]
  9206. ))
  9207. characterMakers.push(() => makeCharacter(
  9208. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  9209. {
  9210. front: {
  9211. height: math.unit(1, "inch"),
  9212. weight: math.unit(0.21, "grams"),
  9213. name: "Front",
  9214. image: {
  9215. source: "./media/characters/talbot/front.svg",
  9216. extra: 594 / 544
  9217. }
  9218. },
  9219. },
  9220. [
  9221. {
  9222. name: "Micro",
  9223. height: math.unit(1, "inch"),
  9224. default: true
  9225. },
  9226. ]
  9227. ))
  9228. characterMakers.push(() => makeCharacter(
  9229. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  9230. {
  9231. front: {
  9232. height: math.unit(3 + 3 / 12, "feet"),
  9233. weight: math.unit(51.8, "lb"),
  9234. name: "Front",
  9235. image: {
  9236. source: "./media/characters/fliss/front.svg",
  9237. extra: 840 / 640
  9238. }
  9239. },
  9240. },
  9241. [
  9242. {
  9243. name: "Teeny Tiny",
  9244. height: math.unit(1, "mm")
  9245. },
  9246. {
  9247. name: "Small",
  9248. height: math.unit(1, "inch"),
  9249. default: true
  9250. },
  9251. {
  9252. name: "Standard Sylveon",
  9253. height: math.unit(3 + 3 / 12, "feet")
  9254. },
  9255. {
  9256. name: "Large Nuisance",
  9257. height: math.unit(33, "feet")
  9258. },
  9259. {
  9260. name: "City Filler",
  9261. height: math.unit(3000, "feet")
  9262. },
  9263. {
  9264. name: "New Horizon",
  9265. height: math.unit(6000, "miles")
  9266. },
  9267. ]
  9268. ))
  9269. characterMakers.push(() => makeCharacter(
  9270. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  9271. {
  9272. front: {
  9273. height: math.unit(5, "cm"),
  9274. weight: math.unit(1.94, "g"),
  9275. name: "Front",
  9276. image: {
  9277. source: "./media/characters/fleta/front.svg",
  9278. extra: 835 / 803
  9279. }
  9280. },
  9281. back: {
  9282. height: math.unit(5, "cm"),
  9283. weight: math.unit(1.94, "g"),
  9284. name: "Back",
  9285. image: {
  9286. source: "./media/characters/fleta/back.svg",
  9287. extra: 835 / 803
  9288. }
  9289. },
  9290. },
  9291. [
  9292. {
  9293. name: "Micro",
  9294. height: math.unit(5, "cm"),
  9295. default: true
  9296. },
  9297. ]
  9298. ))
  9299. characterMakers.push(() => makeCharacter(
  9300. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  9301. {
  9302. front: {
  9303. height: math.unit(6, "feet"),
  9304. weight: math.unit(225, "lb"),
  9305. name: "Front",
  9306. image: {
  9307. source: "./media/characters/dominic/front.svg",
  9308. extra: 1770 / 1620,
  9309. bottom: 0.025
  9310. }
  9311. },
  9312. back: {
  9313. height: math.unit(6, "feet"),
  9314. weight: math.unit(225, "lb"),
  9315. name: "Back",
  9316. image: {
  9317. source: "./media/characters/dominic/back.svg",
  9318. extra: 1745 / 1620,
  9319. bottom: 0.065
  9320. }
  9321. },
  9322. },
  9323. [
  9324. {
  9325. name: "Nano",
  9326. height: math.unit(0.1, "mm")
  9327. },
  9328. {
  9329. name: "Micro-",
  9330. height: math.unit(1, "mm")
  9331. },
  9332. {
  9333. name: "Micro",
  9334. height: math.unit(4, "inches")
  9335. },
  9336. {
  9337. name: "Normal",
  9338. height: math.unit(6 + 4 / 12, "feet"),
  9339. default: true
  9340. },
  9341. {
  9342. name: "Macro",
  9343. height: math.unit(115, "feet")
  9344. },
  9345. {
  9346. name: "Macro+",
  9347. height: math.unit(955, "feet")
  9348. },
  9349. {
  9350. name: "Megamacro",
  9351. height: math.unit(8990, "feet")
  9352. },
  9353. {
  9354. name: "Gigmacro",
  9355. height: math.unit(9310, "miles")
  9356. },
  9357. {
  9358. name: "Teramacro",
  9359. height: math.unit(1567005010, "miles")
  9360. },
  9361. {
  9362. name: "Examacro",
  9363. height: math.unit(1425, "parsecs")
  9364. },
  9365. ]
  9366. ))
  9367. characterMakers.push(() => makeCharacter(
  9368. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  9369. {
  9370. front: {
  9371. height: math.unit(400, "feet"),
  9372. weight: math.unit(44444444, "lb"),
  9373. name: "Front",
  9374. image: {
  9375. source: "./media/characters/major-colonel/front.svg"
  9376. }
  9377. },
  9378. back: {
  9379. height: math.unit(400, "feet"),
  9380. weight: math.unit(44444444, "lb"),
  9381. name: "Back",
  9382. image: {
  9383. source: "./media/characters/major-colonel/back.svg"
  9384. }
  9385. },
  9386. },
  9387. [
  9388. {
  9389. name: "Macro",
  9390. height: math.unit(400, "feet"),
  9391. default: true
  9392. },
  9393. ]
  9394. ))
  9395. characterMakers.push(() => makeCharacter(
  9396. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  9397. {
  9398. catFront: {
  9399. height: math.unit(6, "feet"),
  9400. weight: math.unit(120, "lb"),
  9401. name: "Front (Cat Side)",
  9402. image: {
  9403. source: "./media/characters/axel-lycan/cat-front.svg",
  9404. extra: 430 / 402,
  9405. bottom: 43 / 472.35
  9406. }
  9407. },
  9408. catBack: {
  9409. height: math.unit(6, "feet"),
  9410. weight: math.unit(120, "lb"),
  9411. name: "Back (Cat Side)",
  9412. image: {
  9413. source: "./media/characters/axel-lycan/cat-back.svg",
  9414. extra: 447 / 419,
  9415. bottom: 23.3 / 469
  9416. }
  9417. },
  9418. wolfFront: {
  9419. height: math.unit(6, "feet"),
  9420. weight: math.unit(120, "lb"),
  9421. name: "Front (Wolf Side)",
  9422. image: {
  9423. source: "./media/characters/axel-lycan/wolf-front.svg",
  9424. extra: 485 / 456,
  9425. bottom: 19 / 504
  9426. }
  9427. },
  9428. wolfBack: {
  9429. height: math.unit(6, "feet"),
  9430. weight: math.unit(120, "lb"),
  9431. name: "Back (Wolf Side)",
  9432. image: {
  9433. source: "./media/characters/axel-lycan/wolf-back.svg",
  9434. extra: 475 / 438,
  9435. bottom: 39.2 / 514
  9436. }
  9437. },
  9438. },
  9439. [
  9440. {
  9441. name: "Macro",
  9442. height: math.unit(1, "km"),
  9443. default: true
  9444. },
  9445. ]
  9446. ))
  9447. characterMakers.push(() => makeCharacter(
  9448. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  9449. {
  9450. front: {
  9451. height: math.unit(5 + 9 / 12, "feet"),
  9452. weight: math.unit(175, "lb"),
  9453. name: "Front",
  9454. image: {
  9455. source: "./media/characters/vanrel-hyena/front.svg",
  9456. extra: 1086 / 1010,
  9457. bottom: 0.04
  9458. }
  9459. },
  9460. },
  9461. [
  9462. {
  9463. name: "Normal",
  9464. height: math.unit(5 + 9 / 12, "feet"),
  9465. default: true
  9466. },
  9467. ]
  9468. ))
  9469. characterMakers.push(() => makeCharacter(
  9470. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  9471. {
  9472. front: {
  9473. height: math.unit(6, "feet"),
  9474. weight: math.unit(103, "lb"),
  9475. name: "Front",
  9476. image: {
  9477. source: "./media/characters/abbott-absol/front.svg",
  9478. extra: 2010 / 1842
  9479. }
  9480. },
  9481. },
  9482. [
  9483. {
  9484. name: "Megamicro",
  9485. height: math.unit(0.1, "mm")
  9486. },
  9487. {
  9488. name: "Micro",
  9489. height: math.unit(1, "inch")
  9490. },
  9491. {
  9492. name: "Normal",
  9493. height: math.unit(6, "feet"),
  9494. default: true
  9495. },
  9496. ]
  9497. ))
  9498. characterMakers.push(() => makeCharacter(
  9499. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  9500. {
  9501. front: {
  9502. height: math.unit(6, "feet"),
  9503. weight: math.unit(264, "lb"),
  9504. name: "Front",
  9505. image: {
  9506. source: "./media/characters/hector/front.svg",
  9507. extra: 2280 / 2130,
  9508. bottom: 0.07
  9509. }
  9510. },
  9511. },
  9512. [
  9513. {
  9514. name: "Normal",
  9515. height: math.unit(12.25, "foot"),
  9516. default: true
  9517. },
  9518. {
  9519. name: "Macro",
  9520. height: math.unit(160, "feet")
  9521. },
  9522. ]
  9523. ))
  9524. characterMakers.push(() => makeCharacter(
  9525. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  9526. {
  9527. front: {
  9528. height: math.unit(6, "feet"),
  9529. weight: math.unit(150, "lb"),
  9530. name: "Front",
  9531. image: {
  9532. source: "./media/characters/sal/front.svg",
  9533. extra: 1846 / 1699,
  9534. bottom: 0.04
  9535. }
  9536. },
  9537. },
  9538. [
  9539. {
  9540. name: "Megamacro",
  9541. height: math.unit(10, "miles"),
  9542. default: true
  9543. },
  9544. ]
  9545. ))
  9546. characterMakers.push(() => makeCharacter(
  9547. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  9548. {
  9549. front: {
  9550. height: math.unit(3, "meters"),
  9551. weight: math.unit(450, "kg"),
  9552. name: "front",
  9553. image: {
  9554. source: "./media/characters/ranger/front.svg",
  9555. extra: 2401 / 2243,
  9556. bottom: 0.05
  9557. }
  9558. },
  9559. },
  9560. [
  9561. {
  9562. name: "Normal",
  9563. height: math.unit(3, "meters"),
  9564. default: true
  9565. },
  9566. ]
  9567. ))
  9568. characterMakers.push(() => makeCharacter(
  9569. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  9570. {
  9571. front: {
  9572. height: math.unit(14, "feet"),
  9573. weight: math.unit(800, "kg"),
  9574. name: "Front",
  9575. image: {
  9576. source: "./media/characters/theresa/front.svg",
  9577. extra: 3575 / 3346,
  9578. bottom: 0.03
  9579. }
  9580. },
  9581. },
  9582. [
  9583. {
  9584. name: "Normal",
  9585. height: math.unit(14, "feet"),
  9586. default: true
  9587. },
  9588. ]
  9589. ))
  9590. characterMakers.push(() => makeCharacter(
  9591. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  9592. {
  9593. front: {
  9594. height: math.unit(6, "feet"),
  9595. weight: math.unit(3, "kg"),
  9596. name: "Front",
  9597. image: {
  9598. source: "./media/characters/ine/front.svg",
  9599. extra: 678 / 539,
  9600. bottom: 0.023
  9601. }
  9602. },
  9603. },
  9604. [
  9605. {
  9606. name: "Normal",
  9607. height: math.unit(2.265, "feet"),
  9608. default: true
  9609. },
  9610. ]
  9611. ))
  9612. characterMakers.push(() => makeCharacter(
  9613. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  9614. {
  9615. front: {
  9616. height: math.unit(5, "feet"),
  9617. weight: math.unit(30, "kg"),
  9618. name: "Front",
  9619. image: {
  9620. source: "./media/characters/vial/front.svg",
  9621. extra: 1365 / 1277,
  9622. bottom: 0.04
  9623. }
  9624. },
  9625. },
  9626. [
  9627. {
  9628. name: "Normal",
  9629. height: math.unit(5, "feet"),
  9630. default: true
  9631. },
  9632. ]
  9633. ))
  9634. characterMakers.push(() => makeCharacter(
  9635. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  9636. {
  9637. side: {
  9638. height: math.unit(3.4, "meters"),
  9639. weight: math.unit(1000, "lb"),
  9640. name: "Side",
  9641. image: {
  9642. source: "./media/characters/rovoska/side.svg",
  9643. extra: 4403 / 1515
  9644. }
  9645. },
  9646. },
  9647. [
  9648. {
  9649. name: "Normal",
  9650. height: math.unit(3.4, "meters"),
  9651. default: true
  9652. },
  9653. ]
  9654. ))
  9655. characterMakers.push(() => makeCharacter(
  9656. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  9657. {
  9658. front: {
  9659. height: math.unit(8, "feet"),
  9660. weight: math.unit(315, "lb"),
  9661. name: "Front",
  9662. image: {
  9663. source: "./media/characters/gunner-rotthbauer/front.svg"
  9664. }
  9665. },
  9666. back: {
  9667. height: math.unit(8, "feet"),
  9668. weight: math.unit(315, "lb"),
  9669. name: "Back",
  9670. image: {
  9671. source: "./media/characters/gunner-rotthbauer/back.svg"
  9672. }
  9673. },
  9674. },
  9675. [
  9676. {
  9677. name: "Micro",
  9678. height: math.unit(3.5, "inches")
  9679. },
  9680. {
  9681. name: "Normal",
  9682. height: math.unit(8, "feet"),
  9683. default: true
  9684. },
  9685. {
  9686. name: "Macro",
  9687. height: math.unit(250, "feet")
  9688. },
  9689. {
  9690. name: "Megamacro",
  9691. height: math.unit(1, "AU")
  9692. },
  9693. ]
  9694. ))
  9695. characterMakers.push(() => makeCharacter(
  9696. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  9697. {
  9698. front: {
  9699. height: math.unit(5 + 5 / 12, "feet"),
  9700. weight: math.unit(140, "lb"),
  9701. name: "Front",
  9702. image: {
  9703. source: "./media/characters/allatia/front.svg",
  9704. extra: 1227 / 1180,
  9705. bottom: 0.027
  9706. }
  9707. },
  9708. },
  9709. [
  9710. {
  9711. name: "Normal",
  9712. height: math.unit(5 + 5 / 12, "feet")
  9713. },
  9714. {
  9715. name: "Macro",
  9716. height: math.unit(250, "feet"),
  9717. default: true
  9718. },
  9719. {
  9720. name: "Megamacro",
  9721. height: math.unit(8, "miles")
  9722. }
  9723. ]
  9724. ))
  9725. characterMakers.push(() => makeCharacter(
  9726. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  9727. {
  9728. front: {
  9729. height: math.unit(6, "feet"),
  9730. weight: math.unit(120, "lb"),
  9731. name: "Front",
  9732. image: {
  9733. source: "./media/characters/tene/front.svg",
  9734. extra: 1728 / 1578,
  9735. bottom: 0.022
  9736. }
  9737. },
  9738. stomping: {
  9739. height: math.unit(2.025, "meters"),
  9740. weight: math.unit(120, "lb"),
  9741. name: "Stomping",
  9742. image: {
  9743. source: "./media/characters/tene/stomping.svg",
  9744. extra: 938 / 873,
  9745. bottom: 0.01
  9746. }
  9747. },
  9748. sitting: {
  9749. height: math.unit(1, "meter"),
  9750. weight: math.unit(120, "lb"),
  9751. name: "Sitting",
  9752. image: {
  9753. source: "./media/characters/tene/sitting.svg",
  9754. extra: 437 / 415,
  9755. bottom: 0.1
  9756. }
  9757. },
  9758. feral: {
  9759. height: math.unit(3.9, "feet"),
  9760. weight: math.unit(250, "lb"),
  9761. name: "Feral",
  9762. image: {
  9763. source: "./media/characters/tene/feral.svg",
  9764. extra: 717 / 458,
  9765. bottom: 0.179
  9766. }
  9767. },
  9768. },
  9769. [
  9770. {
  9771. name: "Normal",
  9772. height: math.unit(6, "feet")
  9773. },
  9774. {
  9775. name: "Macro",
  9776. height: math.unit(300, "feet"),
  9777. default: true
  9778. },
  9779. {
  9780. name: "Megamacro",
  9781. height: math.unit(5, "miles")
  9782. },
  9783. ]
  9784. ))
  9785. characterMakers.push(() => makeCharacter(
  9786. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  9787. {
  9788. side: {
  9789. height: math.unit(6, "feet"),
  9790. name: "Side",
  9791. image: {
  9792. source: "./media/characters/evander/side.svg",
  9793. extra: 877 / 477
  9794. }
  9795. },
  9796. },
  9797. [
  9798. {
  9799. name: "Normal",
  9800. height: math.unit(0.83, "meters"),
  9801. default: true
  9802. },
  9803. ]
  9804. ))
  9805. characterMakers.push(() => makeCharacter(
  9806. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  9807. {
  9808. front: {
  9809. height: math.unit(12, "feet"),
  9810. weight: math.unit(1000, "lb"),
  9811. name: "Front",
  9812. image: {
  9813. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  9814. extra: 1762 / 1611
  9815. }
  9816. },
  9817. back: {
  9818. height: math.unit(12, "feet"),
  9819. weight: math.unit(1000, "lb"),
  9820. name: "Back",
  9821. image: {
  9822. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  9823. extra: 1762 / 1611
  9824. }
  9825. },
  9826. },
  9827. [
  9828. {
  9829. name: "Normal",
  9830. height: math.unit(12, "feet"),
  9831. default: true
  9832. },
  9833. {
  9834. name: "Kaiju",
  9835. height: math.unit(150, "feet")
  9836. },
  9837. ]
  9838. ))
  9839. characterMakers.push(() => makeCharacter(
  9840. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  9841. {
  9842. front: {
  9843. height: math.unit(6, "feet"),
  9844. weight: math.unit(150, "lb"),
  9845. name: "Front",
  9846. image: {
  9847. source: "./media/characters/zero-alurus/front.svg"
  9848. }
  9849. },
  9850. back: {
  9851. height: math.unit(6, "feet"),
  9852. weight: math.unit(150, "lb"),
  9853. name: "Back",
  9854. image: {
  9855. source: "./media/characters/zero-alurus/back.svg"
  9856. }
  9857. },
  9858. },
  9859. [
  9860. {
  9861. name: "Normal",
  9862. height: math.unit(5 + 10 / 12, "feet")
  9863. },
  9864. {
  9865. name: "Macro",
  9866. height: math.unit(60, "feet"),
  9867. default: true
  9868. },
  9869. {
  9870. name: "Macro+",
  9871. height: math.unit(450, "feet")
  9872. },
  9873. ]
  9874. ))
  9875. characterMakers.push(() => makeCharacter(
  9876. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  9877. {
  9878. front: {
  9879. height: math.unit(6, "feet"),
  9880. weight: math.unit(200, "lb"),
  9881. name: "Front",
  9882. image: {
  9883. source: "./media/characters/mega-shi/front.svg",
  9884. extra: 1279 / 1250,
  9885. bottom: 0.02
  9886. }
  9887. },
  9888. back: {
  9889. height: math.unit(6, "feet"),
  9890. weight: math.unit(200, "lb"),
  9891. name: "Back",
  9892. image: {
  9893. source: "./media/characters/mega-shi/back.svg",
  9894. extra: 1279 / 1250,
  9895. bottom: 0.02
  9896. }
  9897. },
  9898. },
  9899. [
  9900. {
  9901. name: "Micro",
  9902. height: math.unit(16 + 6 / 12, "feet")
  9903. },
  9904. {
  9905. name: "Third Dimension",
  9906. height: math.unit(40, "meters")
  9907. },
  9908. {
  9909. name: "Normal",
  9910. height: math.unit(660, "feet"),
  9911. default: true
  9912. },
  9913. {
  9914. name: "Megamacro",
  9915. height: math.unit(10, "miles")
  9916. },
  9917. {
  9918. name: "Planetary Launch",
  9919. height: math.unit(500, "miles")
  9920. },
  9921. {
  9922. name: "Interstellar",
  9923. height: math.unit(1e9, "miles")
  9924. },
  9925. {
  9926. name: "Leaving the Universe",
  9927. height: math.unit(1, "gigaparsec")
  9928. },
  9929. {
  9930. name: "Travelling Universes",
  9931. height: math.unit(30e15, "parsecs")
  9932. },
  9933. ]
  9934. ))
  9935. characterMakers.push(() => makeCharacter(
  9936. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  9937. {
  9938. front: {
  9939. height: math.unit(6, "feet"),
  9940. weight: math.unit(150, "lb"),
  9941. name: "Front",
  9942. image: {
  9943. source: "./media/characters/odyssey/front.svg",
  9944. extra: 1782 / 1582,
  9945. bottom: 0.01
  9946. }
  9947. },
  9948. side: {
  9949. height: math.unit(5.7, "feet"),
  9950. weight: math.unit(140, "lb"),
  9951. name: "Side",
  9952. image: {
  9953. source: "./media/characters/odyssey/side.svg",
  9954. extra: 6462 / 5700
  9955. }
  9956. },
  9957. },
  9958. [
  9959. {
  9960. name: "Normal",
  9961. height: math.unit(5 + 4 / 12, "feet")
  9962. },
  9963. {
  9964. name: "Macro",
  9965. height: math.unit(1, "km")
  9966. },
  9967. {
  9968. name: "Megamacro",
  9969. height: math.unit(3000, "km")
  9970. },
  9971. {
  9972. name: "Gigamacro",
  9973. height: math.unit(1, "AU"),
  9974. default: true
  9975. },
  9976. {
  9977. name: "Omniversal",
  9978. height: math.unit(100e14, "lightyears")
  9979. },
  9980. ]
  9981. ))
  9982. characterMakers.push(() => makeCharacter(
  9983. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  9984. {
  9985. front: {
  9986. height: math.unit(6, "feet"),
  9987. weight: math.unit(300, "lb"),
  9988. name: "Front",
  9989. image: {
  9990. source: "./media/characters/mekuto/front.svg",
  9991. extra: 921 / 832,
  9992. bottom: 0.03
  9993. }
  9994. },
  9995. hand: {
  9996. height: math.unit(6 / 10.24, "feet"),
  9997. name: "Hand",
  9998. image: {
  9999. source: "./media/characters/mekuto/hand.svg"
  10000. }
  10001. },
  10002. foot: {
  10003. height: math.unit(6 / 5.05, "feet"),
  10004. name: "Foot",
  10005. image: {
  10006. source: "./media/characters/mekuto/foot.svg"
  10007. }
  10008. },
  10009. },
  10010. [
  10011. {
  10012. name: "Minimicro",
  10013. height: math.unit(0.2, "inches")
  10014. },
  10015. {
  10016. name: "Micro",
  10017. height: math.unit(1.5, "inches")
  10018. },
  10019. {
  10020. name: "Normal",
  10021. height: math.unit(5 + 11 / 12, "feet"),
  10022. default: true
  10023. },
  10024. {
  10025. name: "Minimacro",
  10026. height: math.unit(17 + 9 / 12, "feet")
  10027. },
  10028. {
  10029. name: "Macro",
  10030. height: math.unit(177.5, "feet")
  10031. },
  10032. {
  10033. name: "Megamacro",
  10034. height: math.unit(152, "miles")
  10035. },
  10036. ]
  10037. ))
  10038. characterMakers.push(() => makeCharacter(
  10039. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  10040. {
  10041. front: {
  10042. height: math.unit(6.5, "inches"),
  10043. weight: math.unit(13, "oz"),
  10044. name: "Front",
  10045. image: {
  10046. source: "./media/characters/dafydd-tomos/front.svg",
  10047. extra: 2990 / 2603,
  10048. bottom: 0.03
  10049. }
  10050. },
  10051. },
  10052. [
  10053. {
  10054. name: "Micro",
  10055. height: math.unit(6.5, "inches"),
  10056. default: true
  10057. },
  10058. ]
  10059. ))
  10060. characterMakers.push(() => makeCharacter(
  10061. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  10062. {
  10063. front: {
  10064. height: math.unit(6, "feet"),
  10065. weight: math.unit(150, "lb"),
  10066. name: "Front",
  10067. image: {
  10068. source: "./media/characters/splinter/front.svg",
  10069. extra: 2990 / 2882,
  10070. bottom: 0.04
  10071. }
  10072. },
  10073. back: {
  10074. height: math.unit(6, "feet"),
  10075. weight: math.unit(150, "lb"),
  10076. name: "Back",
  10077. image: {
  10078. source: "./media/characters/splinter/back.svg",
  10079. extra: 2990 / 2882,
  10080. bottom: 0.04
  10081. }
  10082. },
  10083. },
  10084. [
  10085. {
  10086. name: "Normal",
  10087. height: math.unit(6, "feet")
  10088. },
  10089. {
  10090. name: "Macro",
  10091. height: math.unit(230, "meters"),
  10092. default: true
  10093. },
  10094. ]
  10095. ))
  10096. characterMakers.push(() => makeCharacter(
  10097. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  10098. {
  10099. front: {
  10100. height: math.unit(4 + 10 / 12, "feet"),
  10101. weight: math.unit(480, "lb"),
  10102. name: "Front",
  10103. image: {
  10104. source: "./media/characters/snow-gabumon/front.svg",
  10105. extra: 1140 / 963,
  10106. bottom: 0.058
  10107. }
  10108. },
  10109. back: {
  10110. height: math.unit(4 + 10 / 12, "feet"),
  10111. weight: math.unit(480, "lb"),
  10112. name: "Back",
  10113. image: {
  10114. source: "./media/characters/snow-gabumon/back.svg",
  10115. extra: 1115 / 962,
  10116. bottom: 0.041
  10117. }
  10118. },
  10119. frontUndresed: {
  10120. height: math.unit(4 + 10 / 12, "feet"),
  10121. weight: math.unit(480, "lb"),
  10122. name: "Front (Undressed)",
  10123. image: {
  10124. source: "./media/characters/snow-gabumon/front-undressed.svg",
  10125. extra: 1061 / 960,
  10126. bottom: 0.045
  10127. }
  10128. },
  10129. },
  10130. [
  10131. {
  10132. name: "Micro",
  10133. height: math.unit(1, "inch")
  10134. },
  10135. {
  10136. name: "Normal",
  10137. height: math.unit(4 + 10 / 12, "feet"),
  10138. default: true
  10139. },
  10140. {
  10141. name: "Macro",
  10142. height: math.unit(200, "feet")
  10143. },
  10144. {
  10145. name: "Megamacro",
  10146. height: math.unit(120, "miles")
  10147. },
  10148. {
  10149. name: "Gigamacro",
  10150. height: math.unit(9800, "miles")
  10151. },
  10152. ]
  10153. ))
  10154. characterMakers.push(() => makeCharacter(
  10155. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  10156. {
  10157. front: {
  10158. height: math.unit(1.7, "meters"),
  10159. weight: math.unit(140, "lb"),
  10160. name: "Front",
  10161. image: {
  10162. source: "./media/characters/moody/front.svg",
  10163. extra: 3226 / 3007,
  10164. bottom: 0.087
  10165. }
  10166. },
  10167. },
  10168. [
  10169. {
  10170. name: "Micro",
  10171. height: math.unit(1, "mm")
  10172. },
  10173. {
  10174. name: "Normal",
  10175. height: math.unit(1.7, "meters"),
  10176. default: true
  10177. },
  10178. {
  10179. name: "Macro",
  10180. height: math.unit(80, "meters")
  10181. },
  10182. {
  10183. name: "Macro+",
  10184. height: math.unit(500, "meters")
  10185. },
  10186. ]
  10187. ))
  10188. characterMakers.push(() => makeCharacter(
  10189. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  10190. {
  10191. front: {
  10192. height: math.unit(6, "feet"),
  10193. weight: math.unit(150, "lb"),
  10194. name: "Front",
  10195. image: {
  10196. source: "./media/characters/zyas/front.svg",
  10197. extra: 1180 / 1120,
  10198. bottom: 0.045
  10199. }
  10200. },
  10201. },
  10202. [
  10203. {
  10204. name: "Normal",
  10205. height: math.unit(10, "feet"),
  10206. default: true
  10207. },
  10208. {
  10209. name: "Macro",
  10210. height: math.unit(500, "feet")
  10211. },
  10212. {
  10213. name: "Megamacro",
  10214. height: math.unit(5, "miles")
  10215. },
  10216. {
  10217. name: "Teramacro",
  10218. height: math.unit(150000, "miles")
  10219. },
  10220. ]
  10221. ))
  10222. characterMakers.push(() => makeCharacter(
  10223. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  10224. {
  10225. front: {
  10226. height: math.unit(6, "feet"),
  10227. weight: math.unit(150, "lb"),
  10228. name: "Front",
  10229. image: {
  10230. source: "./media/characters/cuon/front.svg",
  10231. extra: 1390 / 1320,
  10232. bottom: 0.008
  10233. }
  10234. },
  10235. },
  10236. [
  10237. {
  10238. name: "Micro",
  10239. height: math.unit(3, "inches")
  10240. },
  10241. {
  10242. name: "Normal",
  10243. height: math.unit(18 + 9 / 12, "feet"),
  10244. default: true
  10245. },
  10246. {
  10247. name: "Macro",
  10248. height: math.unit(360, "feet")
  10249. },
  10250. {
  10251. name: "Megamacro",
  10252. height: math.unit(360, "miles")
  10253. },
  10254. ]
  10255. ))
  10256. characterMakers.push(() => makeCharacter(
  10257. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  10258. {
  10259. front: {
  10260. height: math.unit(2.4, "meters"),
  10261. weight: math.unit(70, "kg"),
  10262. name: "Front",
  10263. image: {
  10264. source: "./media/characters/nyanuxk/front.svg",
  10265. extra: 1172 / 1084,
  10266. bottom: 0.065
  10267. }
  10268. },
  10269. side: {
  10270. height: math.unit(2.4, "meters"),
  10271. weight: math.unit(70, "kg"),
  10272. name: "Side",
  10273. image: {
  10274. source: "./media/characters/nyanuxk/side.svg",
  10275. extra: 1190 / 1132,
  10276. bottom: 0.007
  10277. }
  10278. },
  10279. back: {
  10280. height: math.unit(2.4, "meters"),
  10281. weight: math.unit(70, "kg"),
  10282. name: "Back",
  10283. image: {
  10284. source: "./media/characters/nyanuxk/back.svg",
  10285. extra: 1200 / 1141,
  10286. bottom: 0.015
  10287. }
  10288. },
  10289. foot: {
  10290. height: math.unit(0.52, "meters"),
  10291. name: "Foot",
  10292. image: {
  10293. source: "./media/characters/nyanuxk/foot.svg"
  10294. }
  10295. },
  10296. },
  10297. [
  10298. {
  10299. name: "Micro",
  10300. height: math.unit(2, "cm")
  10301. },
  10302. {
  10303. name: "Normal",
  10304. height: math.unit(2.4, "meters"),
  10305. default: true
  10306. },
  10307. {
  10308. name: "Smaller Macro",
  10309. height: math.unit(120, "meters")
  10310. },
  10311. {
  10312. name: "Bigger Macro",
  10313. height: math.unit(1.2, "km")
  10314. },
  10315. {
  10316. name: "Megamacro",
  10317. height: math.unit(15, "kilometers")
  10318. },
  10319. {
  10320. name: "Gigamacro",
  10321. height: math.unit(2000, "km")
  10322. },
  10323. {
  10324. name: "Teramacro",
  10325. height: math.unit(500000, "km")
  10326. },
  10327. ]
  10328. ))
  10329. characterMakers.push(() => makeCharacter(
  10330. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  10331. {
  10332. side: {
  10333. height: math.unit(6, "feet"),
  10334. name: "Side",
  10335. image: {
  10336. source: "./media/characters/ailbhe/side.svg",
  10337. extra: 757 / 464,
  10338. bottom: 0.041
  10339. }
  10340. },
  10341. },
  10342. [
  10343. {
  10344. name: "Normal",
  10345. height: math.unit(1.07, "meters"),
  10346. default: true
  10347. },
  10348. ]
  10349. ))
  10350. characterMakers.push(() => makeCharacter(
  10351. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  10352. {
  10353. front: {
  10354. height: math.unit(6, "feet"),
  10355. weight: math.unit(120, "kg"),
  10356. name: "Front",
  10357. image: {
  10358. source: "./media/characters/zevulfius/front.svg",
  10359. extra: 965 / 903
  10360. }
  10361. },
  10362. side: {
  10363. height: math.unit(6, "feet"),
  10364. weight: math.unit(120, "kg"),
  10365. name: "Side",
  10366. image: {
  10367. source: "./media/characters/zevulfius/side.svg",
  10368. extra: 939 / 900
  10369. }
  10370. },
  10371. back: {
  10372. height: math.unit(6, "feet"),
  10373. weight: math.unit(120, "kg"),
  10374. name: "Back",
  10375. image: {
  10376. source: "./media/characters/zevulfius/back.svg",
  10377. extra: 918 / 854,
  10378. bottom: 0.005
  10379. }
  10380. },
  10381. foot: {
  10382. height: math.unit(6 / 3.72, "feet"),
  10383. name: "Foot",
  10384. image: {
  10385. source: "./media/characters/zevulfius/foot.svg"
  10386. }
  10387. },
  10388. },
  10389. [
  10390. {
  10391. name: "Macro",
  10392. height: math.unit(750, "meters")
  10393. },
  10394. {
  10395. name: "Megamacro",
  10396. height: math.unit(20, "km"),
  10397. default: true
  10398. },
  10399. {
  10400. name: "Gigamacro",
  10401. height: math.unit(2000, "km")
  10402. },
  10403. {
  10404. name: "Teramacro",
  10405. height: math.unit(250000, "km")
  10406. },
  10407. ]
  10408. ))
  10409. characterMakers.push(() => makeCharacter(
  10410. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  10411. {
  10412. front: {
  10413. height: math.unit(100, "feet"),
  10414. weight: math.unit(350, "kg"),
  10415. name: "Front",
  10416. image: {
  10417. source: "./media/characters/rikes/front.svg",
  10418. extra: 1565 / 1483,
  10419. bottom: 0.017
  10420. }
  10421. },
  10422. },
  10423. [
  10424. {
  10425. name: "Macro",
  10426. height: math.unit(100, "feet"),
  10427. default: true
  10428. },
  10429. ]
  10430. ))
  10431. characterMakers.push(() => makeCharacter(
  10432. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  10433. {
  10434. anthro: {
  10435. height: math.unit(8, "feet"),
  10436. weight: math.unit(120, "kg"),
  10437. name: "Anthro",
  10438. image: {
  10439. source: "./media/characters/adam-silver-mane/anthro.svg",
  10440. extra: 5743 / 5339,
  10441. bottom: 0.07
  10442. }
  10443. },
  10444. taur: {
  10445. height: math.unit(16, "feet"),
  10446. weight: math.unit(1500, "kg"),
  10447. name: "Taur",
  10448. image: {
  10449. source: "./media/characters/adam-silver-mane/taur.svg",
  10450. extra: 1713 / 1571,
  10451. bottom: 0.01
  10452. }
  10453. },
  10454. },
  10455. [
  10456. {
  10457. name: "Normal",
  10458. height: math.unit(8, "feet")
  10459. },
  10460. {
  10461. name: "Minimacro",
  10462. height: math.unit(80, "feet")
  10463. },
  10464. {
  10465. name: "Macro",
  10466. height: math.unit(800, "feet"),
  10467. default: true
  10468. },
  10469. {
  10470. name: "Megamacro",
  10471. height: math.unit(8000, "feet")
  10472. },
  10473. {
  10474. name: "Gigamacro",
  10475. height: math.unit(800, "miles")
  10476. },
  10477. {
  10478. name: "Teramacro",
  10479. height: math.unit(80000, "miles")
  10480. },
  10481. {
  10482. name: "Celestial",
  10483. height: math.unit(8e6, "miles")
  10484. },
  10485. {
  10486. name: "Star Dragon",
  10487. height: math.unit(800000, "parsecs")
  10488. },
  10489. {
  10490. name: "Godly",
  10491. height: math.unit(800, "teraparsecs")
  10492. },
  10493. ]
  10494. ))
  10495. characterMakers.push(() => makeCharacter(
  10496. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  10497. {
  10498. front: {
  10499. height: math.unit(6, "feet"),
  10500. weight: math.unit(150, "lb"),
  10501. name: "Front",
  10502. image: {
  10503. source: "./media/characters/ky'owin/front.svg",
  10504. extra: 3888 / 3068,
  10505. bottom: 0.015
  10506. }
  10507. },
  10508. },
  10509. [
  10510. {
  10511. name: "Normal",
  10512. height: math.unit(6 + 8 / 12, "feet")
  10513. },
  10514. {
  10515. name: "Large",
  10516. height: math.unit(68, "feet")
  10517. },
  10518. {
  10519. name: "Macro",
  10520. height: math.unit(132, "feet")
  10521. },
  10522. {
  10523. name: "Macro+",
  10524. height: math.unit(340, "feet")
  10525. },
  10526. {
  10527. name: "Macro++",
  10528. height: math.unit(680, "feet"),
  10529. default: true
  10530. },
  10531. {
  10532. name: "Megamacro",
  10533. height: math.unit(1, "mile")
  10534. },
  10535. {
  10536. name: "Megamacro+",
  10537. height: math.unit(10, "miles")
  10538. },
  10539. ]
  10540. ))
  10541. characterMakers.push(() => makeCharacter(
  10542. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  10543. {
  10544. front: {
  10545. height: math.unit(4, "feet"),
  10546. weight: math.unit(50, "lb"),
  10547. name: "Front",
  10548. image: {
  10549. source: "./media/characters/mal/front.svg",
  10550. extra: 785 / 724,
  10551. bottom: 0.07
  10552. }
  10553. },
  10554. },
  10555. [
  10556. {
  10557. name: "Micro",
  10558. height: math.unit(4, "inches")
  10559. },
  10560. {
  10561. name: "Normal",
  10562. height: math.unit(4, "feet"),
  10563. default: true
  10564. },
  10565. {
  10566. name: "Macro",
  10567. height: math.unit(200, "feet")
  10568. },
  10569. ]
  10570. ))
  10571. characterMakers.push(() => makeCharacter(
  10572. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  10573. {
  10574. front: {
  10575. height: math.unit(6, "feet"),
  10576. weight: math.unit(150, "lb"),
  10577. name: "Front",
  10578. image: {
  10579. source: "./media/characters/jordan-deware/front.svg",
  10580. extra: 1191 / 1012
  10581. }
  10582. },
  10583. },
  10584. [
  10585. {
  10586. name: "Nano",
  10587. height: math.unit(0.01, "mm")
  10588. },
  10589. {
  10590. name: "Minimicro",
  10591. height: math.unit(1, "mm")
  10592. },
  10593. {
  10594. name: "Micro",
  10595. height: math.unit(0.5, "inches")
  10596. },
  10597. {
  10598. name: "Normal",
  10599. height: math.unit(4, "feet"),
  10600. default: true
  10601. },
  10602. {
  10603. name: "Minimacro",
  10604. height: math.unit(40, "meters")
  10605. },
  10606. {
  10607. name: "Small Macro",
  10608. height: math.unit(400, "meters")
  10609. },
  10610. {
  10611. name: "Macro",
  10612. height: math.unit(4, "miles")
  10613. },
  10614. {
  10615. name: "Megamacro",
  10616. height: math.unit(40, "miles")
  10617. },
  10618. {
  10619. name: "Megamacro+",
  10620. height: math.unit(400, "miles")
  10621. },
  10622. {
  10623. name: "Gigamacro",
  10624. height: math.unit(400000, "miles")
  10625. },
  10626. ]
  10627. ))
  10628. characterMakers.push(() => makeCharacter(
  10629. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  10630. {
  10631. side: {
  10632. height: math.unit(6, "feet"),
  10633. weight: math.unit(150, "lb"),
  10634. name: "Side",
  10635. image: {
  10636. source: "./media/characters/kimiko/side.svg",
  10637. extra: 600 / 358
  10638. }
  10639. },
  10640. },
  10641. [
  10642. {
  10643. name: "Normal",
  10644. height: math.unit(15, "feet"),
  10645. default: true
  10646. },
  10647. {
  10648. name: "Macro",
  10649. height: math.unit(220, "feet")
  10650. },
  10651. {
  10652. name: "Macro+",
  10653. height: math.unit(1450, "feet")
  10654. },
  10655. {
  10656. name: "Megamacro",
  10657. height: math.unit(11500, "feet")
  10658. },
  10659. {
  10660. name: "Gigamacro",
  10661. height: math.unit(9500, "miles")
  10662. },
  10663. {
  10664. name: "Teramacro",
  10665. height: math.unit(2208005005, "miles")
  10666. },
  10667. {
  10668. name: "Examacro",
  10669. height: math.unit(2750, "parsecs")
  10670. },
  10671. {
  10672. name: "Zettamacro",
  10673. height: math.unit(101500, "parsecs")
  10674. },
  10675. ]
  10676. ))
  10677. characterMakers.push(() => makeCharacter(
  10678. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  10679. {
  10680. front: {
  10681. height: math.unit(6, "feet"),
  10682. weight: math.unit(70, "kg"),
  10683. name: "Front",
  10684. image: {
  10685. source: "./media/characters/andrew-sleepy/front.svg"
  10686. }
  10687. },
  10688. side: {
  10689. height: math.unit(6, "feet"),
  10690. weight: math.unit(70, "kg"),
  10691. name: "Side",
  10692. image: {
  10693. source: "./media/characters/andrew-sleepy/side.svg"
  10694. }
  10695. },
  10696. },
  10697. [
  10698. {
  10699. name: "Micro",
  10700. height: math.unit(1, "mm"),
  10701. default: true
  10702. },
  10703. ]
  10704. ))
  10705. characterMakers.push(() => makeCharacter(
  10706. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  10707. {
  10708. front: {
  10709. height: math.unit(6, "feet"),
  10710. weight: math.unit(150, "lb"),
  10711. name: "Front",
  10712. image: {
  10713. source: "./media/characters/judio/front.svg",
  10714. extra: 1258 / 1110
  10715. }
  10716. },
  10717. },
  10718. [
  10719. {
  10720. name: "Normal",
  10721. height: math.unit(5 + 6 / 12, "feet")
  10722. },
  10723. {
  10724. name: "Macro",
  10725. height: math.unit(1000, "feet"),
  10726. default: true
  10727. },
  10728. {
  10729. name: "Megamacro",
  10730. height: math.unit(10, "miles")
  10731. },
  10732. ]
  10733. ))
  10734. characterMakers.push(() => makeCharacter(
  10735. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  10736. {
  10737. front: {
  10738. height: math.unit(6, "feet"),
  10739. weight: math.unit(68, "kg"),
  10740. name: "Front",
  10741. image: {
  10742. source: "./media/characters/nomaxice/front.svg",
  10743. extra: 1498 / 1073,
  10744. bottom: 0.075
  10745. }
  10746. },
  10747. foot: {
  10748. height: math.unit(1.1, "feet"),
  10749. name: "Foot",
  10750. image: {
  10751. source: "./media/characters/nomaxice/foot.svg"
  10752. }
  10753. },
  10754. },
  10755. [
  10756. {
  10757. name: "Micro",
  10758. height: math.unit(8, "cm")
  10759. },
  10760. {
  10761. name: "Norm",
  10762. height: math.unit(1.82, "m")
  10763. },
  10764. {
  10765. name: "Norm+",
  10766. height: math.unit(8.8, "feet")
  10767. },
  10768. {
  10769. name: "Big",
  10770. height: math.unit(8, "meters"),
  10771. default: true
  10772. },
  10773. {
  10774. name: "Macro",
  10775. height: math.unit(18, "meters")
  10776. },
  10777. {
  10778. name: "Macro+",
  10779. height: math.unit(88, "meters")
  10780. },
  10781. ]
  10782. ))
  10783. characterMakers.push(() => makeCharacter(
  10784. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  10785. {
  10786. front: {
  10787. height: math.unit(12, "feet"),
  10788. weight: math.unit(1.5, "tons"),
  10789. name: "Front",
  10790. image: {
  10791. source: "./media/characters/dydros/front.svg",
  10792. extra: 863 / 800,
  10793. bottom: 0.015
  10794. }
  10795. },
  10796. back: {
  10797. height: math.unit(12, "feet"),
  10798. weight: math.unit(1.5, "tons"),
  10799. name: "Back",
  10800. image: {
  10801. source: "./media/characters/dydros/back.svg",
  10802. extra: 900 / 843,
  10803. bottom: 0.005
  10804. }
  10805. },
  10806. },
  10807. [
  10808. {
  10809. name: "Normal",
  10810. height: math.unit(12, "feet"),
  10811. default: true
  10812. },
  10813. ]
  10814. ))
  10815. characterMakers.push(() => makeCharacter(
  10816. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  10817. {
  10818. front: {
  10819. height: math.unit(6, "feet"),
  10820. weight: math.unit(100, "kg"),
  10821. name: "Front",
  10822. image: {
  10823. source: "./media/characters/riggi/front.svg",
  10824. extra: 5787 / 5303
  10825. }
  10826. },
  10827. hyper: {
  10828. height: math.unit(6 * 5 / 3, "feet"),
  10829. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  10830. name: "Hyper",
  10831. image: {
  10832. source: "./media/characters/riggi/hyper.svg",
  10833. extra: 3595 / 3485
  10834. }
  10835. },
  10836. },
  10837. [
  10838. {
  10839. name: "Small Macro",
  10840. height: math.unit(50, "feet")
  10841. },
  10842. {
  10843. name: "Default",
  10844. height: math.unit(200, "feet"),
  10845. default: true
  10846. },
  10847. {
  10848. name: "Loom",
  10849. height: math.unit(10000, "feet")
  10850. },
  10851. {
  10852. name: "Cruising Altitude",
  10853. height: math.unit(30000, "feet")
  10854. },
  10855. {
  10856. name: "Megamacro",
  10857. height: math.unit(100, "miles")
  10858. },
  10859. {
  10860. name: "Continent Sized",
  10861. height: math.unit(2800, "miles")
  10862. },
  10863. {
  10864. name: "Earth Sized",
  10865. height: math.unit(8000, "miles")
  10866. },
  10867. ]
  10868. ))
  10869. characterMakers.push(() => makeCharacter(
  10870. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  10871. {
  10872. front: {
  10873. height: math.unit(6, "feet"),
  10874. weight: math.unit(250, "lb"),
  10875. name: "Front",
  10876. image: {
  10877. source: "./media/characters/alexi/front.svg",
  10878. extra: 3483 / 3291,
  10879. bottom: 0.04
  10880. }
  10881. },
  10882. back: {
  10883. height: math.unit(6, "feet"),
  10884. weight: math.unit(250, "lb"),
  10885. name: "Back",
  10886. image: {
  10887. source: "./media/characters/alexi/back.svg",
  10888. extra: 3533 / 3356,
  10889. bottom: 0.021
  10890. }
  10891. },
  10892. frontTransforming: {
  10893. height: math.unit(8.58, "feet"),
  10894. weight: math.unit(1300, "lb"),
  10895. name: "Transforming",
  10896. image: {
  10897. source: "./media/characters/alexi/front-transforming.svg",
  10898. extra: 437 / 409,
  10899. bottom: 19 / 458.66
  10900. }
  10901. },
  10902. frontTransformed: {
  10903. height: math.unit(12.5, "feet"),
  10904. weight: math.unit(4000, "lb"),
  10905. name: "Transformed",
  10906. image: {
  10907. source: "./media/characters/alexi/front-transformed.svg",
  10908. extra: 639 / 614,
  10909. bottom: 30.55 / 671
  10910. }
  10911. },
  10912. },
  10913. [
  10914. {
  10915. name: "Normal",
  10916. height: math.unit(14, "feet"),
  10917. default: true
  10918. },
  10919. {
  10920. name: "Minimacro",
  10921. height: math.unit(30, "meters")
  10922. },
  10923. {
  10924. name: "Macro",
  10925. height: math.unit(500, "meters")
  10926. },
  10927. {
  10928. name: "Megamacro",
  10929. height: math.unit(9000, "km")
  10930. },
  10931. {
  10932. name: "Teramacro",
  10933. height: math.unit(384000, "km")
  10934. },
  10935. ]
  10936. ))
  10937. characterMakers.push(() => makeCharacter(
  10938. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  10939. {
  10940. front: {
  10941. height: math.unit(6, "feet"),
  10942. weight: math.unit(150, "lb"),
  10943. name: "Front",
  10944. image: {
  10945. source: "./media/characters/kayroo/front.svg",
  10946. extra: 1153 / 1038,
  10947. bottom: 0.06
  10948. }
  10949. },
  10950. foot: {
  10951. height: math.unit(6, "feet"),
  10952. weight: math.unit(150, "lb"),
  10953. name: "Foot",
  10954. image: {
  10955. source: "./media/characters/kayroo/foot.svg"
  10956. }
  10957. },
  10958. },
  10959. [
  10960. {
  10961. name: "Normal",
  10962. height: math.unit(8, "feet"),
  10963. default: true
  10964. },
  10965. {
  10966. name: "Minimacro",
  10967. height: math.unit(250, "feet")
  10968. },
  10969. {
  10970. name: "Macro",
  10971. height: math.unit(2800, "feet")
  10972. },
  10973. {
  10974. name: "Megamacro",
  10975. height: math.unit(5200, "feet")
  10976. },
  10977. {
  10978. name: "Gigamacro",
  10979. height: math.unit(27000, "feet")
  10980. },
  10981. {
  10982. name: "Omega",
  10983. height: math.unit(45000, "feet")
  10984. },
  10985. ]
  10986. ))
  10987. characterMakers.push(() => makeCharacter(
  10988. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  10989. {
  10990. front: {
  10991. height: math.unit(18, "feet"),
  10992. weight: math.unit(5800, "lb"),
  10993. name: "Front",
  10994. image: {
  10995. source: "./media/characters/rhys/front.svg",
  10996. extra: 3386 / 3090,
  10997. bottom: 0.07
  10998. }
  10999. },
  11000. },
  11001. [
  11002. {
  11003. name: "Normal",
  11004. height: math.unit(18, "feet"),
  11005. default: true
  11006. },
  11007. {
  11008. name: "Working Size",
  11009. height: math.unit(200, "feet")
  11010. },
  11011. {
  11012. name: "Demolition Size",
  11013. height: math.unit(2000, "feet")
  11014. },
  11015. {
  11016. name: "Maximum Licensed Size",
  11017. height: math.unit(5, "miles")
  11018. },
  11019. {
  11020. name: "Maximum Observed Size",
  11021. height: math.unit(10, "yottameters")
  11022. },
  11023. ]
  11024. ))
  11025. characterMakers.push(() => makeCharacter(
  11026. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  11027. {
  11028. front: {
  11029. height: math.unit(6, "feet"),
  11030. weight: math.unit(250, "lb"),
  11031. name: "Front",
  11032. image: {
  11033. source: "./media/characters/toto/front.svg",
  11034. extra: 527 / 479,
  11035. bottom: 0.05
  11036. }
  11037. },
  11038. },
  11039. [
  11040. {
  11041. name: "Micro",
  11042. height: math.unit(3, "feet")
  11043. },
  11044. {
  11045. name: "Normal",
  11046. height: math.unit(10, "feet")
  11047. },
  11048. {
  11049. name: "Macro",
  11050. height: math.unit(150, "feet"),
  11051. default: true
  11052. },
  11053. {
  11054. name: "Megamacro",
  11055. height: math.unit(1200, "feet")
  11056. },
  11057. ]
  11058. ))
  11059. characterMakers.push(() => makeCharacter(
  11060. { name: "King", species: ["lion"], tags: ["anthro"] },
  11061. {
  11062. back: {
  11063. height: math.unit(6, "feet"),
  11064. weight: math.unit(150, "lb"),
  11065. name: "Back",
  11066. image: {
  11067. source: "./media/characters/king/back.svg"
  11068. }
  11069. },
  11070. },
  11071. [
  11072. {
  11073. name: "Micro",
  11074. height: math.unit(2, "inches")
  11075. },
  11076. {
  11077. name: "Normal",
  11078. height: math.unit(8, "feet")
  11079. },
  11080. {
  11081. name: "Macro",
  11082. height: math.unit(200, "feet"),
  11083. default: true
  11084. },
  11085. {
  11086. name: "Megamacro",
  11087. height: math.unit(50, "miles")
  11088. },
  11089. ]
  11090. ))
  11091. characterMakers.push(() => makeCharacter(
  11092. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  11093. {
  11094. anthro: {
  11095. height: math.unit(6 + 5 / 12, "feet"),
  11096. weight: math.unit(280, "lb"),
  11097. name: "Anthro",
  11098. image: {
  11099. source: "./media/characters/cordite/anthro.svg",
  11100. extra: 1986 / 1905,
  11101. bottom: 0.025
  11102. }
  11103. },
  11104. feral: {
  11105. height: math.unit(2, "feet"),
  11106. weight: math.unit(90, "lb"),
  11107. name: "Feral",
  11108. image: {
  11109. source: "./media/characters/cordite/feral.svg",
  11110. extra: 1260 / 755,
  11111. bottom: 0.05
  11112. }
  11113. },
  11114. },
  11115. [
  11116. {
  11117. name: "Normal",
  11118. height: math.unit(6 + 5 / 12, "feet"),
  11119. default: true
  11120. },
  11121. ]
  11122. ))
  11123. characterMakers.push(() => makeCharacter(
  11124. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  11125. {
  11126. front: {
  11127. height: math.unit(6, "feet"),
  11128. weight: math.unit(150, "lb"),
  11129. name: "Front",
  11130. image: {
  11131. source: "./media/characters/pianostrong/front.svg",
  11132. extra: 6577 / 6254,
  11133. bottom: 0.02
  11134. }
  11135. },
  11136. side: {
  11137. height: math.unit(6, "feet"),
  11138. weight: math.unit(150, "lb"),
  11139. name: "Side",
  11140. image: {
  11141. source: "./media/characters/pianostrong/side.svg",
  11142. extra: 6106 / 5730
  11143. }
  11144. },
  11145. back: {
  11146. height: math.unit(6, "feet"),
  11147. weight: math.unit(150, "lb"),
  11148. name: "Back",
  11149. image: {
  11150. source: "./media/characters/pianostrong/back.svg",
  11151. extra: 6085 / 5733,
  11152. bottom: 0.01
  11153. }
  11154. },
  11155. },
  11156. [
  11157. {
  11158. name: "Macro",
  11159. height: math.unit(100, "feet")
  11160. },
  11161. {
  11162. name: "Macro+",
  11163. height: math.unit(300, "feet"),
  11164. default: true
  11165. },
  11166. {
  11167. name: "Macro++",
  11168. height: math.unit(1000, "feet")
  11169. },
  11170. ]
  11171. ))
  11172. characterMakers.push(() => makeCharacter(
  11173. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  11174. {
  11175. front: {
  11176. height: math.unit(6, "feet"),
  11177. weight: math.unit(150, "lb"),
  11178. name: "Front",
  11179. image: {
  11180. source: "./media/characters/kona/front.svg",
  11181. extra: 2960 / 2629,
  11182. bottom: 0.005
  11183. }
  11184. },
  11185. },
  11186. [
  11187. {
  11188. name: "Normal",
  11189. height: math.unit(11 + 8 / 12, "feet")
  11190. },
  11191. {
  11192. name: "Macro",
  11193. height: math.unit(850, "feet"),
  11194. default: true
  11195. },
  11196. {
  11197. name: "Macro+",
  11198. height: math.unit(1.5, "km"),
  11199. default: true
  11200. },
  11201. {
  11202. name: "Megamacro",
  11203. height: math.unit(80, "miles")
  11204. },
  11205. {
  11206. name: "Gigamacro",
  11207. height: math.unit(3500, "miles")
  11208. },
  11209. ]
  11210. ))
  11211. characterMakers.push(() => makeCharacter(
  11212. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  11213. {
  11214. side: {
  11215. height: math.unit(1.9, "meters"),
  11216. weight: math.unit(326, "kg"),
  11217. name: "Side",
  11218. image: {
  11219. source: "./media/characters/levi/side.svg",
  11220. extra: 1704 / 1334,
  11221. bottom: 0.02
  11222. }
  11223. },
  11224. },
  11225. [
  11226. {
  11227. name: "Normal",
  11228. height: math.unit(1.9, "meters"),
  11229. default: true
  11230. },
  11231. {
  11232. name: "Macro",
  11233. height: math.unit(20, "meters")
  11234. },
  11235. {
  11236. name: "Macro+",
  11237. height: math.unit(200, "meters")
  11238. },
  11239. {
  11240. name: "Megamacro",
  11241. height: math.unit(2, "km")
  11242. },
  11243. {
  11244. name: "Megamacro+",
  11245. height: math.unit(20, "km")
  11246. },
  11247. {
  11248. name: "Gigamacro",
  11249. height: math.unit(2500, "km")
  11250. },
  11251. {
  11252. name: "Gigamacro+",
  11253. height: math.unit(120000, "km")
  11254. },
  11255. {
  11256. name: "Teramacro",
  11257. height: math.unit(7.77e6, "km")
  11258. },
  11259. ]
  11260. ))
  11261. characterMakers.push(() => makeCharacter(
  11262. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  11263. {
  11264. front: {
  11265. height: math.unit(6 + 4/12, "feet"),
  11266. weight: math.unit(190, "lb"),
  11267. name: "Front",
  11268. image: {
  11269. source: "./media/characters/bmc/front.svg",
  11270. extra: 1626/1472,
  11271. bottom: 79/1705
  11272. }
  11273. },
  11274. back: {
  11275. height: math.unit(6 + 4/12, "feet"),
  11276. weight: math.unit(190, "lb"),
  11277. name: "Back",
  11278. image: {
  11279. source: "./media/characters/bmc/back.svg",
  11280. extra: 1640/1479,
  11281. bottom: 45/1685
  11282. }
  11283. },
  11284. frontArmor: {
  11285. height: math.unit(6 + 4/12, "feet"),
  11286. weight: math.unit(190, "lb"),
  11287. name: "Front-armor",
  11288. image: {
  11289. source: "./media/characters/bmc/front-armor.svg",
  11290. extra: 1538/1468,
  11291. bottom: 79/1617
  11292. }
  11293. },
  11294. },
  11295. [
  11296. {
  11297. name: "Human-sized",
  11298. height: math.unit(6 + 4 / 12, "feet")
  11299. },
  11300. {
  11301. name: "Interactive Size",
  11302. height: math.unit(25, "feet")
  11303. },
  11304. {
  11305. name: "Small",
  11306. height: math.unit(250, "feet")
  11307. },
  11308. {
  11309. name: "Normal",
  11310. height: math.unit(1250, "feet"),
  11311. default: true
  11312. },
  11313. {
  11314. name: "Good Day",
  11315. height: math.unit(88, "miles")
  11316. },
  11317. {
  11318. name: "Largest Measured Size",
  11319. height: math.unit(105.960, "galaxies")
  11320. },
  11321. ]
  11322. ))
  11323. characterMakers.push(() => makeCharacter(
  11324. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  11325. {
  11326. front: {
  11327. height: math.unit(20, "feet"),
  11328. weight: math.unit(2016, "kg"),
  11329. name: "Front",
  11330. image: {
  11331. source: "./media/characters/sven-the-kaiju/front.svg",
  11332. extra: 1277/1250,
  11333. bottom: 35/1312
  11334. }
  11335. },
  11336. mouth: {
  11337. height: math.unit(1.85, "feet"),
  11338. name: "Mouth",
  11339. image: {
  11340. source: "./media/characters/sven-the-kaiju/mouth.svg"
  11341. }
  11342. },
  11343. },
  11344. [
  11345. {
  11346. name: "Fairy",
  11347. height: math.unit(6, "inches")
  11348. },
  11349. {
  11350. name: "Normal",
  11351. height: math.unit(20, "feet"),
  11352. default: true
  11353. },
  11354. {
  11355. name: "Rampage",
  11356. height: math.unit(200, "feet")
  11357. },
  11358. {
  11359. name: "Archfey Forest Guardian",
  11360. height: math.unit(1, "mile")
  11361. },
  11362. ]
  11363. ))
  11364. characterMakers.push(() => makeCharacter(
  11365. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  11366. {
  11367. front: {
  11368. height: math.unit(4, "meters"),
  11369. weight: math.unit(2, "tons"),
  11370. name: "Front",
  11371. image: {
  11372. source: "./media/characters/marik/front.svg",
  11373. extra: 1057 / 1003,
  11374. bottom: 0.08
  11375. }
  11376. },
  11377. },
  11378. [
  11379. {
  11380. name: "Normal",
  11381. height: math.unit(4, "meters"),
  11382. default: true
  11383. },
  11384. {
  11385. name: "Macro",
  11386. height: math.unit(20, "meters")
  11387. },
  11388. {
  11389. name: "Megamacro",
  11390. height: math.unit(50, "km")
  11391. },
  11392. {
  11393. name: "Gigamacro",
  11394. height: math.unit(100, "km")
  11395. },
  11396. {
  11397. name: "Alpha Macro",
  11398. height: math.unit(7.88e7, "yottameters")
  11399. },
  11400. ]
  11401. ))
  11402. characterMakers.push(() => makeCharacter(
  11403. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  11404. {
  11405. front: {
  11406. height: math.unit(6, "feet"),
  11407. weight: math.unit(110, "lb"),
  11408. name: "Front",
  11409. image: {
  11410. source: "./media/characters/mel/front.svg",
  11411. extra: 736 / 617,
  11412. bottom: 0.017
  11413. }
  11414. },
  11415. },
  11416. [
  11417. {
  11418. name: "Pico",
  11419. height: math.unit(3, "pm")
  11420. },
  11421. {
  11422. name: "Nano",
  11423. height: math.unit(3, "nm")
  11424. },
  11425. {
  11426. name: "Micro",
  11427. height: math.unit(0.3, "mm"),
  11428. default: true
  11429. },
  11430. {
  11431. name: "Micro+",
  11432. height: math.unit(3, "mm")
  11433. },
  11434. {
  11435. name: "Normal",
  11436. height: math.unit(5 + 10.5 / 12, "feet")
  11437. },
  11438. ]
  11439. ))
  11440. characterMakers.push(() => makeCharacter(
  11441. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  11442. {
  11443. kaiju: {
  11444. height: math.unit(1.75, "meters"),
  11445. weight: math.unit(55, "kg"),
  11446. name: "Kaiju",
  11447. image: {
  11448. source: "./media/characters/lykonous/kaiju.svg",
  11449. extra: 1055 / 946,
  11450. bottom: 0.135
  11451. }
  11452. },
  11453. },
  11454. [
  11455. {
  11456. name: "Normal",
  11457. height: math.unit(2.5, "meters"),
  11458. default: true
  11459. },
  11460. {
  11461. name: "Kaiju Dragon",
  11462. height: math.unit(60, "meters")
  11463. },
  11464. {
  11465. name: "Mega Kaiju",
  11466. height: math.unit(120, "km")
  11467. },
  11468. {
  11469. name: "Giga Kaiju",
  11470. height: math.unit(200, "megameters")
  11471. },
  11472. {
  11473. name: "Terra Kaiju",
  11474. height: math.unit(400, "gigameters")
  11475. },
  11476. {
  11477. name: "Kaiju Dragon God",
  11478. height: math.unit(13000, "exaparsecs")
  11479. },
  11480. ]
  11481. ))
  11482. characterMakers.push(() => makeCharacter(
  11483. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  11484. {
  11485. front: {
  11486. height: math.unit(6, "feet"),
  11487. weight: math.unit(150, "lb"),
  11488. name: "Front",
  11489. image: {
  11490. source: "./media/characters/blü/front.svg",
  11491. extra: 1883 / 1564,
  11492. bottom: 0.031
  11493. }
  11494. },
  11495. },
  11496. [
  11497. {
  11498. name: "Normal",
  11499. height: math.unit(13, "feet"),
  11500. default: true
  11501. },
  11502. {
  11503. name: "Big Boi",
  11504. height: math.unit(150, "meters")
  11505. },
  11506. {
  11507. name: "Mini Stomper",
  11508. height: math.unit(300, "meters")
  11509. },
  11510. {
  11511. name: "Macro",
  11512. height: math.unit(1000, "meters")
  11513. },
  11514. {
  11515. name: "Megamacro",
  11516. height: math.unit(11000, "meters")
  11517. },
  11518. {
  11519. name: "Gigamacro",
  11520. height: math.unit(11000, "km")
  11521. },
  11522. {
  11523. name: "Teramacro",
  11524. height: math.unit(420000, "km")
  11525. },
  11526. {
  11527. name: "Examacro",
  11528. height: math.unit(120, "parsecs")
  11529. },
  11530. {
  11531. name: "God Tho",
  11532. height: math.unit(98000000000, "parsecs")
  11533. },
  11534. ]
  11535. ))
  11536. characterMakers.push(() => makeCharacter(
  11537. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  11538. {
  11539. taurFront: {
  11540. height: math.unit(6, "feet"),
  11541. weight: math.unit(200, "lb"),
  11542. name: "Taur (Front)",
  11543. image: {
  11544. source: "./media/characters/scales/taur-front.svg",
  11545. extra: 1,
  11546. bottom: 0.05
  11547. }
  11548. },
  11549. taurBack: {
  11550. height: math.unit(6, "feet"),
  11551. weight: math.unit(200, "lb"),
  11552. name: "Taur (Back)",
  11553. image: {
  11554. source: "./media/characters/scales/taur-back.svg",
  11555. extra: 1,
  11556. bottom: 0.08
  11557. }
  11558. },
  11559. anthro: {
  11560. height: math.unit(6 * 7 / 12, "feet"),
  11561. weight: math.unit(100, "lb"),
  11562. name: "Anthro",
  11563. image: {
  11564. source: "./media/characters/scales/anthro.svg",
  11565. extra: 1,
  11566. bottom: 0.06
  11567. }
  11568. },
  11569. },
  11570. [
  11571. {
  11572. name: "Normal",
  11573. height: math.unit(12, "feet"),
  11574. default: true
  11575. },
  11576. ]
  11577. ))
  11578. characterMakers.push(() => makeCharacter(
  11579. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  11580. {
  11581. front: {
  11582. height: math.unit(6, "feet"),
  11583. weight: math.unit(150, "lb"),
  11584. name: "Front",
  11585. image: {
  11586. source: "./media/characters/koragos/front.svg",
  11587. extra: 841 / 794,
  11588. bottom: 0.035
  11589. }
  11590. },
  11591. back: {
  11592. height: math.unit(6, "feet"),
  11593. weight: math.unit(150, "lb"),
  11594. name: "Back",
  11595. image: {
  11596. source: "./media/characters/koragos/back.svg",
  11597. extra: 841 / 810,
  11598. bottom: 0.022
  11599. }
  11600. },
  11601. },
  11602. [
  11603. {
  11604. name: "Normal",
  11605. height: math.unit(6 + 11 / 12, "feet"),
  11606. default: true
  11607. },
  11608. {
  11609. name: "Macro",
  11610. height: math.unit(490, "feet")
  11611. },
  11612. {
  11613. name: "Megamacro",
  11614. height: math.unit(10, "miles")
  11615. },
  11616. {
  11617. name: "Gigamacro",
  11618. height: math.unit(50, "miles")
  11619. },
  11620. ]
  11621. ))
  11622. characterMakers.push(() => makeCharacter(
  11623. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  11624. {
  11625. front: {
  11626. height: math.unit(6, "feet"),
  11627. weight: math.unit(250, "lb"),
  11628. name: "Front",
  11629. image: {
  11630. source: "./media/characters/xylrem/front.svg",
  11631. extra: 3323 / 3050,
  11632. bottom: 0.065
  11633. }
  11634. },
  11635. },
  11636. [
  11637. {
  11638. name: "Micro",
  11639. height: math.unit(4, "feet")
  11640. },
  11641. {
  11642. name: "Normal",
  11643. height: math.unit(16, "feet"),
  11644. default: true
  11645. },
  11646. {
  11647. name: "Macro",
  11648. height: math.unit(2720, "feet")
  11649. },
  11650. {
  11651. name: "Megamacro",
  11652. height: math.unit(25000, "miles")
  11653. },
  11654. ]
  11655. ))
  11656. characterMakers.push(() => makeCharacter(
  11657. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  11658. {
  11659. front: {
  11660. height: math.unit(8, "feet"),
  11661. weight: math.unit(250, "kg"),
  11662. name: "Front",
  11663. image: {
  11664. source: "./media/characters/ikideru/front.svg",
  11665. extra: 930 / 870,
  11666. bottom: 0.087
  11667. }
  11668. },
  11669. back: {
  11670. height: math.unit(8, "feet"),
  11671. weight: math.unit(250, "kg"),
  11672. name: "Back",
  11673. image: {
  11674. source: "./media/characters/ikideru/back.svg",
  11675. extra: 919 / 852,
  11676. bottom: 0.055
  11677. }
  11678. },
  11679. },
  11680. [
  11681. {
  11682. name: "Rare",
  11683. height: math.unit(8, "feet"),
  11684. default: true
  11685. },
  11686. {
  11687. name: "Playful Loom",
  11688. height: math.unit(80, "feet")
  11689. },
  11690. {
  11691. name: "City Leaner",
  11692. height: math.unit(230, "feet")
  11693. },
  11694. {
  11695. name: "Megamacro",
  11696. height: math.unit(2500, "feet")
  11697. },
  11698. {
  11699. name: "Gigamacro",
  11700. height: math.unit(26400, "feet")
  11701. },
  11702. {
  11703. name: "Tectonic Shifter",
  11704. height: math.unit(1.7, "megameters")
  11705. },
  11706. {
  11707. name: "Planet Carer",
  11708. height: math.unit(21, "megameters")
  11709. },
  11710. {
  11711. name: "God",
  11712. height: math.unit(11157.22, "parsecs")
  11713. },
  11714. ]
  11715. ))
  11716. characterMakers.push(() => makeCharacter(
  11717. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  11718. {
  11719. front: {
  11720. height: math.unit(6, "feet"),
  11721. weight: math.unit(120, "lb"),
  11722. name: "Front",
  11723. image: {
  11724. source: "./media/characters/neo/front.svg"
  11725. }
  11726. },
  11727. },
  11728. [
  11729. {
  11730. name: "Micro",
  11731. height: math.unit(2, "inches"),
  11732. default: true
  11733. },
  11734. {
  11735. name: "Human Size",
  11736. height: math.unit(5 + 8 / 12, "feet")
  11737. },
  11738. ]
  11739. ))
  11740. characterMakers.push(() => makeCharacter(
  11741. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  11742. {
  11743. front: {
  11744. height: math.unit(13 + 10 / 12, "feet"),
  11745. weight: math.unit(5320, "lb"),
  11746. name: "Front",
  11747. image: {
  11748. source: "./media/characters/chauncey-chantz/front.svg",
  11749. extra: 1587 / 1435,
  11750. bottom: 0.02
  11751. }
  11752. },
  11753. },
  11754. [
  11755. {
  11756. name: "Normal",
  11757. height: math.unit(13 + 10 / 12, "feet"),
  11758. default: true
  11759. },
  11760. {
  11761. name: "Macro",
  11762. height: math.unit(45, "feet")
  11763. },
  11764. {
  11765. name: "Megamacro",
  11766. height: math.unit(250, "miles")
  11767. },
  11768. {
  11769. name: "Planetary",
  11770. height: math.unit(10000, "miles")
  11771. },
  11772. {
  11773. name: "Galactic",
  11774. height: math.unit(40000, "parsecs")
  11775. },
  11776. {
  11777. name: "Universal",
  11778. height: math.unit(1, "yottameter")
  11779. },
  11780. ]
  11781. ))
  11782. characterMakers.push(() => makeCharacter(
  11783. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  11784. {
  11785. front: {
  11786. height: math.unit(6, "feet"),
  11787. weight: math.unit(150, "lb"),
  11788. name: "Front",
  11789. image: {
  11790. source: "./media/characters/epifox/front.svg",
  11791. extra: 1,
  11792. bottom: 0.075
  11793. }
  11794. },
  11795. },
  11796. [
  11797. {
  11798. name: "Micro",
  11799. height: math.unit(6, "inches")
  11800. },
  11801. {
  11802. name: "Normal",
  11803. height: math.unit(12, "feet"),
  11804. default: true
  11805. },
  11806. {
  11807. name: "Macro",
  11808. height: math.unit(3810, "feet")
  11809. },
  11810. {
  11811. name: "Megamacro",
  11812. height: math.unit(500, "miles")
  11813. },
  11814. ]
  11815. ))
  11816. characterMakers.push(() => makeCharacter(
  11817. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  11818. {
  11819. front: {
  11820. height: math.unit(1.8796, "m"),
  11821. weight: math.unit(230, "lb"),
  11822. name: "Front",
  11823. image: {
  11824. source: "./media/characters/colin-t/front.svg",
  11825. extra: 1272 / 1193,
  11826. bottom: 0.07
  11827. }
  11828. },
  11829. },
  11830. [
  11831. {
  11832. name: "Micro",
  11833. height: math.unit(0.571, "meters")
  11834. },
  11835. {
  11836. name: "Normal",
  11837. height: math.unit(1.8796, "meters"),
  11838. default: true
  11839. },
  11840. {
  11841. name: "Tall",
  11842. height: math.unit(4, "meters")
  11843. },
  11844. {
  11845. name: "Macro",
  11846. height: math.unit(67.241, "meters")
  11847. },
  11848. {
  11849. name: "Megamacro",
  11850. height: math.unit(371.856, "meters")
  11851. },
  11852. {
  11853. name: "Planetary",
  11854. height: math.unit(12631.5689, "km")
  11855. },
  11856. ]
  11857. ))
  11858. characterMakers.push(() => makeCharacter(
  11859. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  11860. {
  11861. front: {
  11862. height: math.unit(1.85, "meters"),
  11863. weight: math.unit(80, "kg"),
  11864. name: "Front",
  11865. image: {
  11866. source: "./media/characters/matvei/front.svg",
  11867. extra: 614 / 594,
  11868. bottom: 0.01
  11869. }
  11870. },
  11871. },
  11872. [
  11873. {
  11874. name: "Normal",
  11875. height: math.unit(1.85, "meters"),
  11876. default: true
  11877. },
  11878. ]
  11879. ))
  11880. characterMakers.push(() => makeCharacter(
  11881. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  11882. {
  11883. front: {
  11884. height: math.unit(5 + 9 / 12, "feet"),
  11885. weight: math.unit(70, "lb"),
  11886. name: "Front",
  11887. image: {
  11888. source: "./media/characters/quincy/front.svg",
  11889. extra: 3041 / 2751
  11890. }
  11891. },
  11892. back: {
  11893. height: math.unit(5 + 9 / 12, "feet"),
  11894. weight: math.unit(70, "lb"),
  11895. name: "Back",
  11896. image: {
  11897. source: "./media/characters/quincy/back.svg",
  11898. extra: 3041 / 2751
  11899. }
  11900. },
  11901. flying: {
  11902. height: math.unit(5 + 4 / 12, "feet"),
  11903. weight: math.unit(70, "lb"),
  11904. name: "Flying",
  11905. image: {
  11906. source: "./media/characters/quincy/flying.svg",
  11907. extra: 1044 / 930
  11908. }
  11909. },
  11910. },
  11911. [
  11912. {
  11913. name: "Micro",
  11914. height: math.unit(3, "cm")
  11915. },
  11916. {
  11917. name: "Normal",
  11918. height: math.unit(5 + 9 / 12, "feet")
  11919. },
  11920. {
  11921. name: "Macro",
  11922. height: math.unit(200, "meters"),
  11923. default: true
  11924. },
  11925. {
  11926. name: "Megamacro",
  11927. height: math.unit(1000, "meters")
  11928. },
  11929. ]
  11930. ))
  11931. characterMakers.push(() => makeCharacter(
  11932. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  11933. {
  11934. front: {
  11935. height: math.unit(3 + 11/12, "feet"),
  11936. weight: math.unit(50, "lb"),
  11937. name: "Front",
  11938. image: {
  11939. source: "./media/characters/vanrel/front.svg",
  11940. extra: 1104/949,
  11941. bottom: 52/1156
  11942. }
  11943. },
  11944. back: {
  11945. height: math.unit(3 + 11/12, "feet"),
  11946. weight: math.unit(50, "lb"),
  11947. name: "Back",
  11948. image: {
  11949. source: "./media/characters/vanrel/back.svg",
  11950. extra: 1119/976,
  11951. bottom: 37/1156
  11952. }
  11953. },
  11954. tome: {
  11955. height: math.unit(1.35, "feet"),
  11956. weight: math.unit(10, "lb"),
  11957. name: "Vanrel's Tome",
  11958. rename: true,
  11959. image: {
  11960. source: "./media/characters/vanrel/tome.svg"
  11961. }
  11962. },
  11963. beans: {
  11964. height: math.unit(0.89, "feet"),
  11965. name: "Beans",
  11966. image: {
  11967. source: "./media/characters/vanrel/beans.svg"
  11968. }
  11969. },
  11970. },
  11971. [
  11972. {
  11973. name: "Normal",
  11974. height: math.unit(3 + 11/12, "feet"),
  11975. default: true
  11976. },
  11977. ]
  11978. ))
  11979. characterMakers.push(() => makeCharacter(
  11980. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  11981. {
  11982. front: {
  11983. height: math.unit(7 + 5 / 12, "feet"),
  11984. name: "Front",
  11985. image: {
  11986. source: "./media/characters/kuiper-vanrel/front.svg",
  11987. extra: 1219/1169,
  11988. bottom: 69/1288
  11989. }
  11990. },
  11991. back: {
  11992. height: math.unit(7 + 5 / 12, "feet"),
  11993. name: "Back",
  11994. image: {
  11995. source: "./media/characters/kuiper-vanrel/back.svg",
  11996. extra: 1236/1193,
  11997. bottom: 27/1263
  11998. }
  11999. },
  12000. foot: {
  12001. height: math.unit(0.55, "meters"),
  12002. name: "Foot",
  12003. image: {
  12004. source: "./media/characters/kuiper-vanrel/foot.svg",
  12005. }
  12006. },
  12007. battle: {
  12008. height: math.unit(6.824, "feet"),
  12009. name: "Battle",
  12010. image: {
  12011. source: "./media/characters/kuiper-vanrel/battle.svg",
  12012. extra: 1466 / 1327,
  12013. bottom: 29 / 1492.5
  12014. }
  12015. },
  12016. meerkui: {
  12017. height: math.unit(18, "inches"),
  12018. name: "Meerkui",
  12019. image: {
  12020. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  12021. extra: 1354/1289,
  12022. bottom: 69/1423
  12023. }
  12024. },
  12025. },
  12026. [
  12027. {
  12028. name: "Normal",
  12029. height: math.unit(7 + 5 / 12, "feet"),
  12030. default: true
  12031. },
  12032. ]
  12033. ))
  12034. characterMakers.push(() => makeCharacter(
  12035. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  12036. {
  12037. front: {
  12038. height: math.unit(8 + 5 / 12, "feet"),
  12039. name: "Front",
  12040. image: {
  12041. source: "./media/characters/keset-vanrel/front.svg",
  12042. extra: 1231/1148,
  12043. bottom: 82/1313
  12044. }
  12045. },
  12046. back: {
  12047. height: math.unit(8 + 5 / 12, "feet"),
  12048. name: "Back",
  12049. image: {
  12050. source: "./media/characters/keset-vanrel/back.svg",
  12051. extra: 1240/1174,
  12052. bottom: 33/1273
  12053. }
  12054. },
  12055. hand: {
  12056. height: math.unit(0.6, "meters"),
  12057. name: "Hand",
  12058. image: {
  12059. source: "./media/characters/keset-vanrel/hand.svg"
  12060. }
  12061. },
  12062. foot: {
  12063. height: math.unit(0.94978, "meters"),
  12064. name: "Foot",
  12065. image: {
  12066. source: "./media/characters/keset-vanrel/foot.svg"
  12067. }
  12068. },
  12069. battle: {
  12070. height: math.unit(7.408, "feet"),
  12071. name: "Battle",
  12072. image: {
  12073. source: "./media/characters/keset-vanrel/battle.svg",
  12074. extra: 1890 / 1386,
  12075. bottom: 73.28 / 1970
  12076. }
  12077. },
  12078. },
  12079. [
  12080. {
  12081. name: "Normal",
  12082. height: math.unit(8 + 5 / 12, "feet"),
  12083. default: true
  12084. },
  12085. ]
  12086. ))
  12087. characterMakers.push(() => makeCharacter(
  12088. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  12089. {
  12090. front: {
  12091. height: math.unit(6, "feet"),
  12092. weight: math.unit(150, "lb"),
  12093. name: "Front",
  12094. image: {
  12095. source: "./media/characters/neos/front.svg",
  12096. extra: 1696 / 992,
  12097. bottom: 0.14
  12098. }
  12099. },
  12100. },
  12101. [
  12102. {
  12103. name: "Normal",
  12104. height: math.unit(54, "cm"),
  12105. default: true
  12106. },
  12107. {
  12108. name: "Macro",
  12109. height: math.unit(100, "m")
  12110. },
  12111. {
  12112. name: "Megamacro",
  12113. height: math.unit(10, "km")
  12114. },
  12115. {
  12116. name: "Megamacro+",
  12117. height: math.unit(100, "km")
  12118. },
  12119. {
  12120. name: "Gigamacro",
  12121. height: math.unit(100, "Mm")
  12122. },
  12123. {
  12124. name: "Teramacro",
  12125. height: math.unit(100, "Gm")
  12126. },
  12127. {
  12128. name: "Examacro",
  12129. height: math.unit(100, "Em")
  12130. },
  12131. {
  12132. name: "Godly",
  12133. height: math.unit(10000, "Ym")
  12134. },
  12135. {
  12136. name: "Beyond Godly",
  12137. height: math.unit(25, "multiverses")
  12138. },
  12139. ]
  12140. ))
  12141. characterMakers.push(() => makeCharacter(
  12142. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  12143. {
  12144. feminine: {
  12145. height: math.unit(5, "feet"),
  12146. weight: math.unit(100, "lb"),
  12147. name: "Feminine",
  12148. image: {
  12149. source: "./media/characters/sammy-mouse/feminine.svg",
  12150. extra: 2526 / 2425,
  12151. bottom: 0.123
  12152. }
  12153. },
  12154. masculine: {
  12155. height: math.unit(5, "feet"),
  12156. weight: math.unit(100, "lb"),
  12157. name: "Masculine",
  12158. image: {
  12159. source: "./media/characters/sammy-mouse/masculine.svg",
  12160. extra: 2526 / 2425,
  12161. bottom: 0.123
  12162. }
  12163. },
  12164. },
  12165. [
  12166. {
  12167. name: "Micro",
  12168. height: math.unit(5, "inches")
  12169. },
  12170. {
  12171. name: "Normal",
  12172. height: math.unit(5, "feet"),
  12173. default: true
  12174. },
  12175. {
  12176. name: "Macro",
  12177. height: math.unit(60, "feet")
  12178. },
  12179. ]
  12180. ))
  12181. characterMakers.push(() => makeCharacter(
  12182. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  12183. {
  12184. front: {
  12185. height: math.unit(4, "feet"),
  12186. weight: math.unit(50, "lb"),
  12187. name: "Front",
  12188. image: {
  12189. source: "./media/characters/kole/front.svg",
  12190. extra: 1423 / 1303,
  12191. bottom: 0.025
  12192. }
  12193. },
  12194. back: {
  12195. height: math.unit(4, "feet"),
  12196. weight: math.unit(50, "lb"),
  12197. name: "Back",
  12198. image: {
  12199. source: "./media/characters/kole/back.svg",
  12200. extra: 1426 / 1280,
  12201. bottom: 0.02
  12202. }
  12203. },
  12204. },
  12205. [
  12206. {
  12207. name: "Normal",
  12208. height: math.unit(4, "feet"),
  12209. default: true
  12210. },
  12211. ]
  12212. ))
  12213. characterMakers.push(() => makeCharacter(
  12214. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  12215. {
  12216. front: {
  12217. height: math.unit(2.5, "feet"),
  12218. weight: math.unit(32, "lb"),
  12219. name: "Front",
  12220. image: {
  12221. source: "./media/characters/rufran/front.svg",
  12222. extra: 1313/885,
  12223. bottom: 94/1407
  12224. }
  12225. },
  12226. side: {
  12227. height: math.unit(2.5, "feet"),
  12228. weight: math.unit(32, "lb"),
  12229. name: "Side",
  12230. image: {
  12231. source: "./media/characters/rufran/side.svg",
  12232. extra: 1109/852,
  12233. bottom: 118/1227
  12234. }
  12235. },
  12236. back: {
  12237. height: math.unit(2.5, "feet"),
  12238. weight: math.unit(32, "lb"),
  12239. name: "Back",
  12240. image: {
  12241. source: "./media/characters/rufran/back.svg",
  12242. extra: 1280/878,
  12243. bottom: 131/1411
  12244. }
  12245. },
  12246. mouth: {
  12247. height: math.unit(1.13, "feet"),
  12248. name: "Mouth",
  12249. image: {
  12250. source: "./media/characters/rufran/mouth.svg"
  12251. }
  12252. },
  12253. foot: {
  12254. height: math.unit(1.33, "feet"),
  12255. name: "Foot",
  12256. image: {
  12257. source: "./media/characters/rufran/foot.svg"
  12258. }
  12259. },
  12260. koboldFront: {
  12261. height: math.unit(2 + 6 / 12, "feet"),
  12262. weight: math.unit(20, "lb"),
  12263. name: "Front (Kobold)",
  12264. image: {
  12265. source: "./media/characters/rufran/kobold-front.svg",
  12266. extra: 2041 / 1839,
  12267. bottom: 0.055
  12268. }
  12269. },
  12270. koboldBack: {
  12271. height: math.unit(2 + 6 / 12, "feet"),
  12272. weight: math.unit(20, "lb"),
  12273. name: "Back (Kobold)",
  12274. image: {
  12275. source: "./media/characters/rufran/kobold-back.svg",
  12276. extra: 2054 / 1839,
  12277. bottom: 0.01
  12278. }
  12279. },
  12280. koboldHand: {
  12281. height: math.unit(0.2166, "meters"),
  12282. name: "Hand (Kobold)",
  12283. image: {
  12284. source: "./media/characters/rufran/kobold-hand.svg"
  12285. }
  12286. },
  12287. koboldFoot: {
  12288. height: math.unit(0.185, "meters"),
  12289. name: "Foot (Kobold)",
  12290. image: {
  12291. source: "./media/characters/rufran/kobold-foot.svg"
  12292. }
  12293. },
  12294. },
  12295. [
  12296. {
  12297. name: "Micro",
  12298. height: math.unit(1, "inch")
  12299. },
  12300. {
  12301. name: "Normal",
  12302. height: math.unit(2 + 6 / 12, "feet"),
  12303. default: true
  12304. },
  12305. {
  12306. name: "Big",
  12307. height: math.unit(60, "feet")
  12308. },
  12309. {
  12310. name: "Macro",
  12311. height: math.unit(325, "feet")
  12312. },
  12313. ]
  12314. ))
  12315. characterMakers.push(() => makeCharacter(
  12316. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  12317. {
  12318. front: {
  12319. height: math.unit(0.3, "meters"),
  12320. weight: math.unit(3.5, "kg"),
  12321. name: "Front",
  12322. image: {
  12323. source: "./media/characters/chip/front.svg",
  12324. extra: 748 / 674
  12325. }
  12326. },
  12327. },
  12328. [
  12329. {
  12330. name: "Micro",
  12331. height: math.unit(1, "inch"),
  12332. default: true
  12333. },
  12334. ]
  12335. ))
  12336. characterMakers.push(() => makeCharacter(
  12337. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  12338. {
  12339. side: {
  12340. height: math.unit(2.3, "meters"),
  12341. weight: math.unit(3500, "lb"),
  12342. name: "Side",
  12343. image: {
  12344. source: "./media/characters/torvid/side.svg",
  12345. extra: 1972 / 722,
  12346. bottom: 0.035
  12347. }
  12348. },
  12349. },
  12350. [
  12351. {
  12352. name: "Normal",
  12353. height: math.unit(2.3, "meters"),
  12354. default: true
  12355. },
  12356. ]
  12357. ))
  12358. characterMakers.push(() => makeCharacter(
  12359. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  12360. {
  12361. front: {
  12362. height: math.unit(2, "meters"),
  12363. weight: math.unit(150.5, "kg"),
  12364. name: "Front",
  12365. image: {
  12366. source: "./media/characters/susan/front.svg",
  12367. extra: 693 / 635,
  12368. bottom: 0.05
  12369. }
  12370. },
  12371. },
  12372. [
  12373. {
  12374. name: "Megamacro",
  12375. height: math.unit(505, "miles"),
  12376. default: true
  12377. },
  12378. ]
  12379. ))
  12380. characterMakers.push(() => makeCharacter(
  12381. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  12382. {
  12383. front: {
  12384. height: math.unit(6, "feet"),
  12385. weight: math.unit(150, "lb"),
  12386. name: "Front",
  12387. image: {
  12388. source: "./media/characters/raindrops/front.svg",
  12389. extra: 2655 / 2461,
  12390. bottom: 49 / 2705
  12391. }
  12392. },
  12393. back: {
  12394. height: math.unit(6, "feet"),
  12395. weight: math.unit(150, "lb"),
  12396. name: "Back",
  12397. image: {
  12398. source: "./media/characters/raindrops/back.svg",
  12399. extra: 2574 / 2400,
  12400. bottom: 65 / 2634
  12401. }
  12402. },
  12403. },
  12404. [
  12405. {
  12406. name: "Micro",
  12407. height: math.unit(6, "inches")
  12408. },
  12409. {
  12410. name: "Normal",
  12411. height: math.unit(6 + 2 / 12, "feet")
  12412. },
  12413. {
  12414. name: "Macro",
  12415. height: math.unit(131, "feet"),
  12416. default: true
  12417. },
  12418. {
  12419. name: "Megamacro",
  12420. height: math.unit(15, "miles")
  12421. },
  12422. {
  12423. name: "Gigamacro",
  12424. height: math.unit(4000, "miles")
  12425. },
  12426. {
  12427. name: "Teramacro",
  12428. height: math.unit(315000, "miles")
  12429. },
  12430. ]
  12431. ))
  12432. characterMakers.push(() => makeCharacter(
  12433. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  12434. {
  12435. front: {
  12436. height: math.unit(2.794, "meters"),
  12437. weight: math.unit(325, "kg"),
  12438. name: "Front",
  12439. image: {
  12440. source: "./media/characters/tezwa/front.svg",
  12441. extra: 2083 / 1906,
  12442. bottom: 0.031
  12443. }
  12444. },
  12445. foot: {
  12446. height: math.unit(0.687, "meters"),
  12447. name: "Foot",
  12448. image: {
  12449. source: "./media/characters/tezwa/foot.svg"
  12450. }
  12451. },
  12452. },
  12453. [
  12454. {
  12455. name: "Normal",
  12456. height: math.unit(9 + 2 / 12, "feet"),
  12457. default: true
  12458. },
  12459. ]
  12460. ))
  12461. characterMakers.push(() => makeCharacter(
  12462. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  12463. {
  12464. front: {
  12465. height: math.unit(58, "feet"),
  12466. weight: math.unit(89000, "lb"),
  12467. name: "Front",
  12468. image: {
  12469. source: "./media/characters/typhus/front.svg",
  12470. extra: 816 / 800,
  12471. bottom: 0.065
  12472. }
  12473. },
  12474. },
  12475. [
  12476. {
  12477. name: "Macro",
  12478. height: math.unit(58, "feet"),
  12479. default: true
  12480. },
  12481. ]
  12482. ))
  12483. characterMakers.push(() => makeCharacter(
  12484. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  12485. {
  12486. front: {
  12487. height: math.unit(12, "feet"),
  12488. weight: math.unit(6, "tonnes"),
  12489. name: "Front",
  12490. image: {
  12491. source: "./media/characters/lyra-von-wulf/front.svg",
  12492. extra: 1,
  12493. bottom: 0.10
  12494. }
  12495. },
  12496. frontMecha: {
  12497. height: math.unit(12, "feet"),
  12498. weight: math.unit(12, "tonnes"),
  12499. name: "Front (Mecha)",
  12500. image: {
  12501. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  12502. extra: 1,
  12503. bottom: 0.042
  12504. }
  12505. },
  12506. maw: {
  12507. height: math.unit(2.2, "feet"),
  12508. name: "Maw",
  12509. image: {
  12510. source: "./media/characters/lyra-von-wulf/maw.svg"
  12511. }
  12512. },
  12513. },
  12514. [
  12515. {
  12516. name: "Normal",
  12517. height: math.unit(12, "feet"),
  12518. default: true
  12519. },
  12520. {
  12521. name: "Classic",
  12522. height: math.unit(50, "feet")
  12523. },
  12524. {
  12525. name: "Macro",
  12526. height: math.unit(500, "feet")
  12527. },
  12528. {
  12529. name: "Megamacro",
  12530. height: math.unit(1, "mile")
  12531. },
  12532. {
  12533. name: "Gigamacro",
  12534. height: math.unit(400, "miles")
  12535. },
  12536. {
  12537. name: "Teramacro",
  12538. height: math.unit(22000, "miles")
  12539. },
  12540. {
  12541. name: "Solarmacro",
  12542. height: math.unit(8600000, "miles")
  12543. },
  12544. {
  12545. name: "Galactic",
  12546. height: math.unit(1057000, "lightyears")
  12547. },
  12548. ]
  12549. ))
  12550. characterMakers.push(() => makeCharacter(
  12551. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  12552. {
  12553. front: {
  12554. height: math.unit(6 + 10 / 12, "feet"),
  12555. weight: math.unit(150, "lb"),
  12556. name: "Front",
  12557. image: {
  12558. source: "./media/characters/dixon/front.svg",
  12559. extra: 3361 / 3209,
  12560. bottom: 0.01
  12561. }
  12562. },
  12563. },
  12564. [
  12565. {
  12566. name: "Normal",
  12567. height: math.unit(6 + 10 / 12, "feet"),
  12568. default: true
  12569. },
  12570. {
  12571. name: "Big",
  12572. height: math.unit(12, "meters")
  12573. },
  12574. {
  12575. name: "Macro",
  12576. height: math.unit(500, "meters")
  12577. },
  12578. {
  12579. name: "Megamacro",
  12580. height: math.unit(2, "km")
  12581. },
  12582. ]
  12583. ))
  12584. characterMakers.push(() => makeCharacter(
  12585. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  12586. {
  12587. front: {
  12588. height: math.unit(185, "cm"),
  12589. weight: math.unit(68, "kg"),
  12590. name: "Front",
  12591. image: {
  12592. source: "./media/characters/kauko/front.svg",
  12593. extra: 1455 / 1421,
  12594. bottom: 0.03
  12595. }
  12596. },
  12597. back: {
  12598. height: math.unit(185, "cm"),
  12599. weight: math.unit(68, "kg"),
  12600. name: "Back",
  12601. image: {
  12602. source: "./media/characters/kauko/back.svg",
  12603. extra: 1455 / 1421,
  12604. bottom: 0.004
  12605. }
  12606. },
  12607. },
  12608. [
  12609. {
  12610. name: "Normal",
  12611. height: math.unit(185, "cm"),
  12612. default: true
  12613. },
  12614. ]
  12615. ))
  12616. characterMakers.push(() => makeCharacter(
  12617. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  12618. {
  12619. front: {
  12620. height: math.unit(6, "feet"),
  12621. weight: math.unit(150, "kg"),
  12622. name: "Front",
  12623. image: {
  12624. source: "./media/characters/varg/front.svg",
  12625. extra: 1108 / 1018,
  12626. bottom: 0.0375
  12627. }
  12628. },
  12629. },
  12630. [
  12631. {
  12632. name: "Normal",
  12633. height: math.unit(5, "meters")
  12634. },
  12635. {
  12636. name: "Macro",
  12637. height: math.unit(200, "meters")
  12638. },
  12639. {
  12640. name: "Megamacro",
  12641. height: math.unit(20, "kilometers")
  12642. },
  12643. {
  12644. name: "True Size",
  12645. height: math.unit(211, "km"),
  12646. default: true
  12647. },
  12648. {
  12649. name: "Gigamacro",
  12650. height: math.unit(1000, "km")
  12651. },
  12652. {
  12653. name: "Gigamacro+",
  12654. height: math.unit(8000, "km")
  12655. },
  12656. {
  12657. name: "Teramacro",
  12658. height: math.unit(1000000, "km")
  12659. },
  12660. ]
  12661. ))
  12662. characterMakers.push(() => makeCharacter(
  12663. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  12664. {
  12665. front: {
  12666. height: math.unit(7 + 7 / 12, "feet"),
  12667. weight: math.unit(267, "lb"),
  12668. name: "Front",
  12669. image: {
  12670. source: "./media/characters/dayza/front.svg",
  12671. extra: 1262 / 1200,
  12672. bottom: 0.035
  12673. }
  12674. },
  12675. side: {
  12676. height: math.unit(7 + 7 / 12, "feet"),
  12677. weight: math.unit(267, "lb"),
  12678. name: "Side",
  12679. image: {
  12680. source: "./media/characters/dayza/side.svg",
  12681. extra: 1295 / 1245,
  12682. bottom: 0.05
  12683. }
  12684. },
  12685. back: {
  12686. height: math.unit(7 + 7 / 12, "feet"),
  12687. weight: math.unit(267, "lb"),
  12688. name: "Back",
  12689. image: {
  12690. source: "./media/characters/dayza/back.svg",
  12691. extra: 1241 / 1170
  12692. }
  12693. },
  12694. },
  12695. [
  12696. {
  12697. name: "Normal",
  12698. height: math.unit(7 + 7 / 12, "feet"),
  12699. default: true
  12700. },
  12701. {
  12702. name: "Macro",
  12703. height: math.unit(155, "feet")
  12704. },
  12705. ]
  12706. ))
  12707. characterMakers.push(() => makeCharacter(
  12708. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  12709. {
  12710. front: {
  12711. height: math.unit(6 + 5 / 12, "feet"),
  12712. weight: math.unit(160, "lb"),
  12713. name: "Front",
  12714. image: {
  12715. source: "./media/characters/xanthos/front.svg",
  12716. extra: 1,
  12717. bottom: 0.04
  12718. }
  12719. },
  12720. back: {
  12721. height: math.unit(6 + 5 / 12, "feet"),
  12722. weight: math.unit(160, "lb"),
  12723. name: "Back",
  12724. image: {
  12725. source: "./media/characters/xanthos/back.svg",
  12726. extra: 1,
  12727. bottom: 0.03
  12728. }
  12729. },
  12730. hand: {
  12731. height: math.unit(0.928, "feet"),
  12732. name: "Hand",
  12733. image: {
  12734. source: "./media/characters/xanthos/hand.svg"
  12735. }
  12736. },
  12737. foot: {
  12738. height: math.unit(1.286, "feet"),
  12739. name: "Foot",
  12740. image: {
  12741. source: "./media/characters/xanthos/foot.svg"
  12742. }
  12743. },
  12744. },
  12745. [
  12746. {
  12747. name: "Normal",
  12748. height: math.unit(6 + 5 / 12, "feet"),
  12749. default: true
  12750. },
  12751. {
  12752. name: "Normal+",
  12753. height: math.unit(6, "meters")
  12754. },
  12755. {
  12756. name: "Macro",
  12757. height: math.unit(40, "feet")
  12758. },
  12759. {
  12760. name: "Macro+",
  12761. height: math.unit(200, "meters")
  12762. },
  12763. {
  12764. name: "Megamacro",
  12765. height: math.unit(20, "km")
  12766. },
  12767. {
  12768. name: "Megamacro+",
  12769. height: math.unit(100, "km")
  12770. },
  12771. {
  12772. name: "Gigamacro",
  12773. height: math.unit(200, "megameters")
  12774. },
  12775. {
  12776. name: "Gigamacro+",
  12777. height: math.unit(1.5, "gigameters")
  12778. },
  12779. ]
  12780. ))
  12781. characterMakers.push(() => makeCharacter(
  12782. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  12783. {
  12784. front: {
  12785. height: math.unit(6 + 3 / 12, "feet"),
  12786. weight: math.unit(215, "lb"),
  12787. name: "Front",
  12788. image: {
  12789. source: "./media/characters/grynn/front.svg",
  12790. extra: 4627 / 4209,
  12791. bottom: 0.047
  12792. }
  12793. },
  12794. },
  12795. [
  12796. {
  12797. name: "Micro",
  12798. height: math.unit(6, "inches")
  12799. },
  12800. {
  12801. name: "Normal",
  12802. height: math.unit(6 + 3 / 12, "feet"),
  12803. default: true
  12804. },
  12805. {
  12806. name: "Big",
  12807. height: math.unit(104, "feet")
  12808. },
  12809. {
  12810. name: "Macro",
  12811. height: math.unit(944, "feet")
  12812. },
  12813. {
  12814. name: "Macro+",
  12815. height: math.unit(9480, "feet")
  12816. },
  12817. {
  12818. name: "Megamacro",
  12819. height: math.unit(78752, "feet")
  12820. },
  12821. {
  12822. name: "Megamacro+",
  12823. height: math.unit(630128, "feet")
  12824. },
  12825. {
  12826. name: "Megamacro++",
  12827. height: math.unit(3150695, "feet")
  12828. },
  12829. ]
  12830. ))
  12831. characterMakers.push(() => makeCharacter(
  12832. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  12833. {
  12834. front: {
  12835. height: math.unit(7 + 5 / 12, "feet"),
  12836. weight: math.unit(450, "lb"),
  12837. name: "Front",
  12838. image: {
  12839. source: "./media/characters/mocha-aura/front.svg",
  12840. extra: 1907 / 1817,
  12841. bottom: 0.04
  12842. }
  12843. },
  12844. back: {
  12845. height: math.unit(7 + 5 / 12, "feet"),
  12846. weight: math.unit(450, "lb"),
  12847. name: "Back",
  12848. image: {
  12849. source: "./media/characters/mocha-aura/back.svg",
  12850. extra: 1900 / 1825,
  12851. bottom: 0.045
  12852. }
  12853. },
  12854. },
  12855. [
  12856. {
  12857. name: "Nano",
  12858. height: math.unit(1, "nm")
  12859. },
  12860. {
  12861. name: "Megamicro",
  12862. height: math.unit(1, "mm")
  12863. },
  12864. {
  12865. name: "Micro",
  12866. height: math.unit(3, "inches")
  12867. },
  12868. {
  12869. name: "Normal",
  12870. height: math.unit(7 + 5 / 12, "feet"),
  12871. default: true
  12872. },
  12873. {
  12874. name: "Macro",
  12875. height: math.unit(30, "feet")
  12876. },
  12877. {
  12878. name: "Megamacro",
  12879. height: math.unit(3500, "feet")
  12880. },
  12881. {
  12882. name: "Teramacro",
  12883. height: math.unit(500000, "miles")
  12884. },
  12885. {
  12886. name: "Petamacro",
  12887. height: math.unit(50000000000000000, "parsecs")
  12888. },
  12889. ]
  12890. ))
  12891. characterMakers.push(() => makeCharacter(
  12892. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  12893. {
  12894. front: {
  12895. height: math.unit(6, "feet"),
  12896. weight: math.unit(150, "lb"),
  12897. name: "Front",
  12898. image: {
  12899. source: "./media/characters/ilisha-devya/front.svg",
  12900. extra: 1,
  12901. bottom: 0.175
  12902. }
  12903. },
  12904. back: {
  12905. height: math.unit(6, "feet"),
  12906. weight: math.unit(150, "lb"),
  12907. name: "Back",
  12908. image: {
  12909. source: "./media/characters/ilisha-devya/back.svg",
  12910. extra: 1,
  12911. bottom: 0.015
  12912. }
  12913. },
  12914. },
  12915. [
  12916. {
  12917. name: "Macro",
  12918. height: math.unit(500, "feet"),
  12919. default: true
  12920. },
  12921. {
  12922. name: "Megamacro",
  12923. height: math.unit(10, "miles")
  12924. },
  12925. {
  12926. name: "Gigamacro",
  12927. height: math.unit(100000, "miles")
  12928. },
  12929. {
  12930. name: "Examacro",
  12931. height: math.unit(1e9, "lightyears")
  12932. },
  12933. {
  12934. name: "Omniversal",
  12935. height: math.unit(1e33, "lightyears")
  12936. },
  12937. {
  12938. name: "Beyond Infinite",
  12939. height: math.unit(1e100, "lightyears")
  12940. },
  12941. ]
  12942. ))
  12943. characterMakers.push(() => makeCharacter(
  12944. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  12945. {
  12946. Side: {
  12947. height: math.unit(6, "feet"),
  12948. weight: math.unit(150, "lb"),
  12949. name: "Side",
  12950. image: {
  12951. source: "./media/characters/mira/side.svg",
  12952. extra: 900 / 799,
  12953. bottom: 0.02
  12954. }
  12955. },
  12956. },
  12957. [
  12958. {
  12959. name: "Human Size",
  12960. height: math.unit(6, "feet")
  12961. },
  12962. {
  12963. name: "Macro",
  12964. height: math.unit(100, "feet"),
  12965. default: true
  12966. },
  12967. {
  12968. name: "Megamacro",
  12969. height: math.unit(10, "miles")
  12970. },
  12971. {
  12972. name: "Gigamacro",
  12973. height: math.unit(25000, "miles")
  12974. },
  12975. {
  12976. name: "Teramacro",
  12977. height: math.unit(300, "AU")
  12978. },
  12979. {
  12980. name: "Full Size",
  12981. height: math.unit(4.5e10, "lightyears")
  12982. },
  12983. ]
  12984. ))
  12985. characterMakers.push(() => makeCharacter(
  12986. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  12987. {
  12988. front: {
  12989. height: math.unit(6, "feet"),
  12990. weight: math.unit(150, "lb"),
  12991. name: "Front",
  12992. image: {
  12993. source: "./media/characters/holly/front.svg",
  12994. extra: 639 / 606
  12995. }
  12996. },
  12997. back: {
  12998. height: math.unit(6, "feet"),
  12999. weight: math.unit(150, "lb"),
  13000. name: "Back",
  13001. image: {
  13002. source: "./media/characters/holly/back.svg",
  13003. extra: 623 / 598
  13004. }
  13005. },
  13006. frontWorking: {
  13007. height: math.unit(6, "feet"),
  13008. weight: math.unit(150, "lb"),
  13009. name: "Front (Working)",
  13010. image: {
  13011. source: "./media/characters/holly/front-working.svg",
  13012. extra: 607 / 577,
  13013. bottom: 0.048
  13014. }
  13015. },
  13016. },
  13017. [
  13018. {
  13019. name: "Normal",
  13020. height: math.unit(12 + 3 / 12, "feet"),
  13021. default: true
  13022. },
  13023. ]
  13024. ))
  13025. characterMakers.push(() => makeCharacter(
  13026. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  13027. {
  13028. front: {
  13029. height: math.unit(6, "feet"),
  13030. weight: math.unit(150, "lb"),
  13031. name: "Front",
  13032. image: {
  13033. source: "./media/characters/porter/front.svg",
  13034. extra: 1,
  13035. bottom: 0.01
  13036. }
  13037. },
  13038. frontRobes: {
  13039. height: math.unit(6, "feet"),
  13040. weight: math.unit(150, "lb"),
  13041. name: "Front (Robes)",
  13042. image: {
  13043. source: "./media/characters/porter/front-robes.svg",
  13044. extra: 1.01,
  13045. bottom: 0.01
  13046. }
  13047. },
  13048. },
  13049. [
  13050. {
  13051. name: "Normal",
  13052. height: math.unit(11 + 9 / 12, "feet"),
  13053. default: true
  13054. },
  13055. ]
  13056. ))
  13057. characterMakers.push(() => makeCharacter(
  13058. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  13059. {
  13060. legendary: {
  13061. height: math.unit(6, "feet"),
  13062. weight: math.unit(150, "lb"),
  13063. name: "Legendary",
  13064. image: {
  13065. source: "./media/characters/lucy/legendary.svg",
  13066. extra: 1355 / 1100,
  13067. bottom: 0.045
  13068. }
  13069. },
  13070. },
  13071. [
  13072. {
  13073. name: "Legendary",
  13074. height: math.unit(86882 * 2, "miles"),
  13075. default: true
  13076. },
  13077. ]
  13078. ))
  13079. characterMakers.push(() => makeCharacter(
  13080. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  13081. {
  13082. front: {
  13083. height: math.unit(6, "feet"),
  13084. weight: math.unit(150, "lb"),
  13085. name: "Front",
  13086. image: {
  13087. source: "./media/characters/drusilla/front.svg",
  13088. extra: 678 / 635,
  13089. bottom: 0.03
  13090. }
  13091. },
  13092. back: {
  13093. height: math.unit(6, "feet"),
  13094. weight: math.unit(150, "lb"),
  13095. name: "Back",
  13096. image: {
  13097. source: "./media/characters/drusilla/back.svg",
  13098. extra: 678 / 635,
  13099. bottom: 0.005
  13100. }
  13101. },
  13102. },
  13103. [
  13104. {
  13105. name: "Macro",
  13106. height: math.unit(100, "feet")
  13107. },
  13108. {
  13109. name: "Canon Height",
  13110. height: math.unit(2000, "feet"),
  13111. default: true
  13112. },
  13113. ]
  13114. ))
  13115. characterMakers.push(() => makeCharacter(
  13116. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  13117. {
  13118. front: {
  13119. height: math.unit(6, "feet"),
  13120. weight: math.unit(180, "lb"),
  13121. name: "Front",
  13122. image: {
  13123. source: "./media/characters/renard-thatch/front.svg",
  13124. extra: 2411 / 2275,
  13125. bottom: 0.01
  13126. }
  13127. },
  13128. frontPosing: {
  13129. height: math.unit(6, "feet"),
  13130. weight: math.unit(180, "lb"),
  13131. name: "Front (Posing)",
  13132. image: {
  13133. source: "./media/characters/renard-thatch/front-posing.svg",
  13134. extra: 2381 / 2261,
  13135. bottom: 0.01
  13136. }
  13137. },
  13138. back: {
  13139. height: math.unit(6, "feet"),
  13140. weight: math.unit(180, "lb"),
  13141. name: "Back",
  13142. image: {
  13143. source: "./media/characters/renard-thatch/back.svg",
  13144. extra: 2428 / 2288
  13145. }
  13146. },
  13147. },
  13148. [
  13149. {
  13150. name: "Micro",
  13151. height: math.unit(3, "inches")
  13152. },
  13153. {
  13154. name: "Default",
  13155. height: math.unit(6, "feet"),
  13156. default: true
  13157. },
  13158. {
  13159. name: "Macro",
  13160. height: math.unit(75, "feet")
  13161. },
  13162. ]
  13163. ))
  13164. characterMakers.push(() => makeCharacter(
  13165. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  13166. {
  13167. front: {
  13168. height: math.unit(1450, "feet"),
  13169. weight: math.unit(1.21e6, "tons"),
  13170. name: "Front",
  13171. image: {
  13172. source: "./media/characters/sekvra/front.svg",
  13173. extra: 1,
  13174. bottom: 0.03
  13175. }
  13176. },
  13177. frontClothed: {
  13178. height: math.unit(1450, "feet"),
  13179. weight: math.unit(1.21e6, "tons"),
  13180. name: "Front (Clothed)",
  13181. image: {
  13182. source: "./media/characters/sekvra/front-clothed.svg",
  13183. extra: 1,
  13184. bottom: 0.03
  13185. }
  13186. },
  13187. side: {
  13188. height: math.unit(1450, "feet"),
  13189. weight: math.unit(1.21e6, "tons"),
  13190. name: "Side",
  13191. image: {
  13192. source: "./media/characters/sekvra/side.svg",
  13193. extra: 1,
  13194. bottom: 0.025
  13195. }
  13196. },
  13197. back: {
  13198. height: math.unit(1450, "feet"),
  13199. weight: math.unit(1.21e6, "tons"),
  13200. name: "Back",
  13201. image: {
  13202. source: "./media/characters/sekvra/back.svg",
  13203. extra: 1,
  13204. bottom: 0.005
  13205. }
  13206. },
  13207. },
  13208. [
  13209. {
  13210. name: "Macro",
  13211. height: math.unit(1450, "feet"),
  13212. default: true
  13213. },
  13214. {
  13215. name: "Megamacro",
  13216. height: math.unit(15000, "feet")
  13217. },
  13218. ]
  13219. ))
  13220. characterMakers.push(() => makeCharacter(
  13221. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  13222. {
  13223. front: {
  13224. height: math.unit(6, "feet"),
  13225. weight: math.unit(150, "lb"),
  13226. name: "Front",
  13227. image: {
  13228. source: "./media/characters/carmine/front.svg",
  13229. extra: 1,
  13230. bottom: 0.035
  13231. }
  13232. },
  13233. frontArmor: {
  13234. height: math.unit(6, "feet"),
  13235. weight: math.unit(150, "lb"),
  13236. name: "Front (Armor)",
  13237. image: {
  13238. source: "./media/characters/carmine/front-armor.svg",
  13239. extra: 1,
  13240. bottom: 0.035
  13241. }
  13242. },
  13243. },
  13244. [
  13245. {
  13246. name: "Large",
  13247. height: math.unit(1, "mile")
  13248. },
  13249. {
  13250. name: "Huge",
  13251. height: math.unit(40, "miles"),
  13252. default: true
  13253. },
  13254. {
  13255. name: "Colossal",
  13256. height: math.unit(2500, "miles")
  13257. },
  13258. ]
  13259. ))
  13260. characterMakers.push(() => makeCharacter(
  13261. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  13262. {
  13263. front: {
  13264. height: math.unit(6, "feet"),
  13265. weight: math.unit(150, "lb"),
  13266. name: "Front",
  13267. image: {
  13268. source: "./media/characters/elyssia/front.svg",
  13269. extra: 2201 / 2035,
  13270. bottom: 0.05
  13271. }
  13272. },
  13273. frontClothed: {
  13274. height: math.unit(6, "feet"),
  13275. weight: math.unit(150, "lb"),
  13276. name: "Front (Clothed)",
  13277. image: {
  13278. source: "./media/characters/elyssia/front-clothed.svg",
  13279. extra: 2201 / 2035,
  13280. bottom: 0.05
  13281. }
  13282. },
  13283. back: {
  13284. height: math.unit(6, "feet"),
  13285. weight: math.unit(150, "lb"),
  13286. name: "Back",
  13287. image: {
  13288. source: "./media/characters/elyssia/back.svg",
  13289. extra: 2201 / 2035,
  13290. bottom: 0.013
  13291. }
  13292. },
  13293. },
  13294. [
  13295. {
  13296. name: "Smaller",
  13297. height: math.unit(150, "feet")
  13298. },
  13299. {
  13300. name: "Standard",
  13301. height: math.unit(1400, "feet"),
  13302. default: true
  13303. },
  13304. {
  13305. name: "Distracted",
  13306. height: math.unit(15000, "feet")
  13307. },
  13308. ]
  13309. ))
  13310. characterMakers.push(() => makeCharacter(
  13311. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  13312. {
  13313. front: {
  13314. height: math.unit(7 + 4 / 12, "feet"),
  13315. weight: math.unit(500, "lb"),
  13316. name: "Front",
  13317. image: {
  13318. source: "./media/characters/geno-maxwell/front.svg",
  13319. extra: 2207 / 2040,
  13320. bottom: 0.015
  13321. }
  13322. },
  13323. },
  13324. [
  13325. {
  13326. name: "Micro",
  13327. height: math.unit(3, "inches")
  13328. },
  13329. {
  13330. name: "Normal",
  13331. height: math.unit(7 + 4 / 12, "feet"),
  13332. default: true
  13333. },
  13334. {
  13335. name: "Macro",
  13336. height: math.unit(220, "feet")
  13337. },
  13338. {
  13339. name: "Megamacro",
  13340. height: math.unit(11, "miles")
  13341. },
  13342. ]
  13343. ))
  13344. characterMakers.push(() => makeCharacter(
  13345. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  13346. {
  13347. front: {
  13348. height: math.unit(7 + 4 / 12, "feet"),
  13349. weight: math.unit(500, "lb"),
  13350. name: "Front",
  13351. image: {
  13352. source: "./media/characters/regena-maxwell/front.svg",
  13353. extra: 3115 / 2770,
  13354. bottom: 0.02
  13355. }
  13356. },
  13357. },
  13358. [
  13359. {
  13360. name: "Normal",
  13361. height: math.unit(7 + 4 / 12, "feet"),
  13362. default: true
  13363. },
  13364. {
  13365. name: "Macro",
  13366. height: math.unit(220, "feet")
  13367. },
  13368. {
  13369. name: "Megamacro",
  13370. height: math.unit(11, "miles")
  13371. },
  13372. ]
  13373. ))
  13374. characterMakers.push(() => makeCharacter(
  13375. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  13376. {
  13377. front: {
  13378. height: math.unit(6, "feet"),
  13379. weight: math.unit(150, "lb"),
  13380. name: "Front",
  13381. image: {
  13382. source: "./media/characters/x-gliding-dragon-x/front.svg",
  13383. extra: 860 / 690,
  13384. bottom: 0.03
  13385. }
  13386. },
  13387. },
  13388. [
  13389. {
  13390. name: "Normal",
  13391. height: math.unit(1.7, "meters"),
  13392. default: true
  13393. },
  13394. ]
  13395. ))
  13396. characterMakers.push(() => makeCharacter(
  13397. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  13398. {
  13399. front: {
  13400. height: math.unit(6, "feet"),
  13401. weight: math.unit(150, "lb"),
  13402. name: "Front",
  13403. image: {
  13404. source: "./media/characters/quilly/front.svg",
  13405. extra: 890 / 776
  13406. }
  13407. },
  13408. },
  13409. [
  13410. {
  13411. name: "Gigamacro",
  13412. height: math.unit(404090, "miles"),
  13413. default: true
  13414. },
  13415. ]
  13416. ))
  13417. characterMakers.push(() => makeCharacter(
  13418. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  13419. {
  13420. front: {
  13421. height: math.unit(7 + 8 / 12, "feet"),
  13422. weight: math.unit(350, "lb"),
  13423. name: "Front",
  13424. image: {
  13425. source: "./media/characters/tempest/front.svg",
  13426. extra: 1175 / 1086,
  13427. bottom: 0.02
  13428. }
  13429. },
  13430. },
  13431. [
  13432. {
  13433. name: "Normal",
  13434. height: math.unit(7 + 8 / 12, "feet"),
  13435. default: true
  13436. },
  13437. ]
  13438. ))
  13439. characterMakers.push(() => makeCharacter(
  13440. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  13441. {
  13442. side: {
  13443. height: math.unit(4 + 5 / 12, "feet"),
  13444. weight: math.unit(80, "lb"),
  13445. name: "Side",
  13446. image: {
  13447. source: "./media/characters/rodger/side.svg",
  13448. extra: 1235 / 1118
  13449. }
  13450. },
  13451. },
  13452. [
  13453. {
  13454. name: "Micro",
  13455. height: math.unit(1, "inch")
  13456. },
  13457. {
  13458. name: "Normal",
  13459. height: math.unit(4 + 5 / 12, "feet"),
  13460. default: true
  13461. },
  13462. {
  13463. name: "Macro",
  13464. height: math.unit(120, "feet")
  13465. },
  13466. ]
  13467. ))
  13468. characterMakers.push(() => makeCharacter(
  13469. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  13470. {
  13471. front: {
  13472. height: math.unit(6, "feet"),
  13473. weight: math.unit(150, "lb"),
  13474. name: "Front",
  13475. image: {
  13476. source: "./media/characters/danyel/front.svg",
  13477. extra: 1185 / 1123,
  13478. bottom: 0.05
  13479. }
  13480. },
  13481. },
  13482. [
  13483. {
  13484. name: "Shrunken",
  13485. height: math.unit(0.5, "mm")
  13486. },
  13487. {
  13488. name: "Micro",
  13489. height: math.unit(1, "mm"),
  13490. default: true
  13491. },
  13492. {
  13493. name: "Upsized",
  13494. height: math.unit(5 + 5 / 12, "feet")
  13495. },
  13496. ]
  13497. ))
  13498. characterMakers.push(() => makeCharacter(
  13499. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  13500. {
  13501. front: {
  13502. height: math.unit(5 + 6 / 12, "feet"),
  13503. weight: math.unit(200, "lb"),
  13504. name: "Front",
  13505. image: {
  13506. source: "./media/characters/vivian-bijoux/front.svg",
  13507. extra: 1,
  13508. bottom: 0.072
  13509. }
  13510. },
  13511. },
  13512. [
  13513. {
  13514. name: "Normal",
  13515. height: math.unit(5 + 6 / 12, "feet"),
  13516. default: true
  13517. },
  13518. {
  13519. name: "Bad Dream",
  13520. height: math.unit(500, "feet")
  13521. },
  13522. {
  13523. name: "Nightmare",
  13524. height: math.unit(500, "miles")
  13525. },
  13526. ]
  13527. ))
  13528. characterMakers.push(() => makeCharacter(
  13529. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  13530. {
  13531. front: {
  13532. height: math.unit(6 + 1 / 12, "feet"),
  13533. weight: math.unit(260, "lb"),
  13534. name: "Front",
  13535. image: {
  13536. source: "./media/characters/zeta/front.svg",
  13537. extra: 1968 / 1889,
  13538. bottom: 0.06
  13539. }
  13540. },
  13541. back: {
  13542. height: math.unit(6 + 1 / 12, "feet"),
  13543. weight: math.unit(260, "lb"),
  13544. name: "Back",
  13545. image: {
  13546. source: "./media/characters/zeta/back.svg",
  13547. extra: 1944 / 1858,
  13548. bottom: 0.03
  13549. }
  13550. },
  13551. hand: {
  13552. height: math.unit(1.112, "feet"),
  13553. name: "Hand",
  13554. image: {
  13555. source: "./media/characters/zeta/hand.svg"
  13556. }
  13557. },
  13558. foot: {
  13559. height: math.unit(1.48, "feet"),
  13560. name: "Foot",
  13561. image: {
  13562. source: "./media/characters/zeta/foot.svg"
  13563. }
  13564. },
  13565. },
  13566. [
  13567. {
  13568. name: "Micro",
  13569. height: math.unit(6, "inches")
  13570. },
  13571. {
  13572. name: "Normal",
  13573. height: math.unit(6 + 1 / 12, "feet"),
  13574. default: true
  13575. },
  13576. {
  13577. name: "Macro",
  13578. height: math.unit(20, "feet")
  13579. },
  13580. ]
  13581. ))
  13582. characterMakers.push(() => makeCharacter(
  13583. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  13584. {
  13585. front: {
  13586. height: math.unit(6, "feet"),
  13587. weight: math.unit(150, "lb"),
  13588. name: "Front",
  13589. image: {
  13590. source: "./media/characters/jamie-larsen/front.svg",
  13591. extra: 962 / 933,
  13592. bottom: 0.02
  13593. }
  13594. },
  13595. back: {
  13596. height: math.unit(6, "feet"),
  13597. weight: math.unit(150, "lb"),
  13598. name: "Back",
  13599. image: {
  13600. source: "./media/characters/jamie-larsen/back.svg",
  13601. extra: 997 / 946
  13602. }
  13603. },
  13604. },
  13605. [
  13606. {
  13607. name: "Macro",
  13608. height: math.unit(28 + 7 / 12, "feet"),
  13609. default: true
  13610. },
  13611. {
  13612. name: "Macro+",
  13613. height: math.unit(180, "feet")
  13614. },
  13615. {
  13616. name: "Megamacro",
  13617. height: math.unit(10, "miles")
  13618. },
  13619. {
  13620. name: "Gigamacro",
  13621. height: math.unit(200000, "miles")
  13622. },
  13623. ]
  13624. ))
  13625. characterMakers.push(() => makeCharacter(
  13626. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  13627. {
  13628. front: {
  13629. height: math.unit(6, "feet"),
  13630. weight: math.unit(120, "lb"),
  13631. name: "Front",
  13632. image: {
  13633. source: "./media/characters/vance/front.svg",
  13634. extra: 1980 / 1890,
  13635. bottom: 0.09
  13636. }
  13637. },
  13638. back: {
  13639. height: math.unit(6, "feet"),
  13640. weight: math.unit(120, "lb"),
  13641. name: "Back",
  13642. image: {
  13643. source: "./media/characters/vance/back.svg",
  13644. extra: 2081 / 1994,
  13645. bottom: 0.014
  13646. }
  13647. },
  13648. hand: {
  13649. height: math.unit(0.88, "feet"),
  13650. name: "Hand",
  13651. image: {
  13652. source: "./media/characters/vance/hand.svg"
  13653. }
  13654. },
  13655. foot: {
  13656. height: math.unit(0.64, "feet"),
  13657. name: "Foot",
  13658. image: {
  13659. source: "./media/characters/vance/foot.svg"
  13660. }
  13661. },
  13662. },
  13663. [
  13664. {
  13665. name: "Small",
  13666. height: math.unit(90, "feet"),
  13667. default: true
  13668. },
  13669. {
  13670. name: "Macro",
  13671. height: math.unit(100, "meters")
  13672. },
  13673. {
  13674. name: "Megamacro",
  13675. height: math.unit(15, "miles")
  13676. },
  13677. ]
  13678. ))
  13679. characterMakers.push(() => makeCharacter(
  13680. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  13681. {
  13682. front: {
  13683. height: math.unit(6, "feet"),
  13684. weight: math.unit(180, "lb"),
  13685. name: "Front",
  13686. image: {
  13687. source: "./media/characters/xochitl/front.svg",
  13688. extra: 2297 / 2261,
  13689. bottom: 0.065
  13690. }
  13691. },
  13692. back: {
  13693. height: math.unit(6, "feet"),
  13694. weight: math.unit(180, "lb"),
  13695. name: "Back",
  13696. image: {
  13697. source: "./media/characters/xochitl/back.svg",
  13698. extra: 2386 / 2354,
  13699. bottom: 0.01
  13700. }
  13701. },
  13702. foot: {
  13703. height: math.unit(6 / 5 * 1.15, "feet"),
  13704. weight: math.unit(150, "lb"),
  13705. name: "Foot",
  13706. image: {
  13707. source: "./media/characters/xochitl/foot.svg"
  13708. }
  13709. },
  13710. },
  13711. [
  13712. {
  13713. name: "Macro",
  13714. height: math.unit(80, "feet")
  13715. },
  13716. {
  13717. name: "Macro+",
  13718. height: math.unit(400, "feet"),
  13719. default: true
  13720. },
  13721. {
  13722. name: "Gigamacro",
  13723. height: math.unit(80000, "miles")
  13724. },
  13725. {
  13726. name: "Gigamacro+",
  13727. height: math.unit(400000, "miles")
  13728. },
  13729. {
  13730. name: "Teramacro",
  13731. height: math.unit(300, "AU")
  13732. },
  13733. ]
  13734. ))
  13735. characterMakers.push(() => makeCharacter(
  13736. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  13737. {
  13738. front: {
  13739. height: math.unit(6, "feet"),
  13740. weight: math.unit(150, "lb"),
  13741. name: "Front",
  13742. image: {
  13743. source: "./media/characters/vincent/front.svg",
  13744. extra: 1130 / 1080,
  13745. bottom: 0.055
  13746. }
  13747. },
  13748. beak: {
  13749. height: math.unit(6 * 0.1, "feet"),
  13750. name: "Beak",
  13751. image: {
  13752. source: "./media/characters/vincent/beak.svg"
  13753. }
  13754. },
  13755. hand: {
  13756. height: math.unit(6 * 0.85, "feet"),
  13757. weight: math.unit(150, "lb"),
  13758. name: "Hand",
  13759. image: {
  13760. source: "./media/characters/vincent/hand.svg"
  13761. }
  13762. },
  13763. foot: {
  13764. height: math.unit(6 * 0.19, "feet"),
  13765. weight: math.unit(150, "lb"),
  13766. name: "Foot",
  13767. image: {
  13768. source: "./media/characters/vincent/foot.svg"
  13769. }
  13770. },
  13771. },
  13772. [
  13773. {
  13774. name: "Base",
  13775. height: math.unit(6 + 5 / 12, "feet"),
  13776. default: true
  13777. },
  13778. {
  13779. name: "Macro",
  13780. height: math.unit(300, "feet")
  13781. },
  13782. {
  13783. name: "Megamacro",
  13784. height: math.unit(2, "miles")
  13785. },
  13786. {
  13787. name: "Gigamacro",
  13788. height: math.unit(1000, "miles")
  13789. },
  13790. ]
  13791. ))
  13792. characterMakers.push(() => makeCharacter(
  13793. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  13794. {
  13795. front: {
  13796. height: math.unit(2, "meters"),
  13797. weight: math.unit(500, "kg"),
  13798. name: "Front",
  13799. image: {
  13800. source: "./media/characters/coatl/front.svg",
  13801. extra: 3948 / 3500,
  13802. bottom: 0.082
  13803. }
  13804. },
  13805. },
  13806. [
  13807. {
  13808. name: "Normal",
  13809. height: math.unit(4, "meters")
  13810. },
  13811. {
  13812. name: "Macro",
  13813. height: math.unit(100, "meters"),
  13814. default: true
  13815. },
  13816. {
  13817. name: "Macro+",
  13818. height: math.unit(300, "meters")
  13819. },
  13820. {
  13821. name: "Megamacro",
  13822. height: math.unit(3, "gigameters")
  13823. },
  13824. {
  13825. name: "Megamacro+",
  13826. height: math.unit(300, "terameters")
  13827. },
  13828. {
  13829. name: "Megamacro++",
  13830. height: math.unit(3, "lightyears")
  13831. },
  13832. ]
  13833. ))
  13834. characterMakers.push(() => makeCharacter(
  13835. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  13836. {
  13837. front: {
  13838. height: math.unit(6, "feet"),
  13839. weight: math.unit(50, "kg"),
  13840. name: "front",
  13841. image: {
  13842. source: "./media/characters/shiroryu/front.svg",
  13843. extra: 1990 / 1935
  13844. }
  13845. },
  13846. },
  13847. [
  13848. {
  13849. name: "Mortal Mingling",
  13850. height: math.unit(3, "meters")
  13851. },
  13852. {
  13853. name: "Kaiju-ish",
  13854. height: math.unit(250, "meters")
  13855. },
  13856. {
  13857. name: "Somewhat Godly",
  13858. height: math.unit(400, "km"),
  13859. default: true
  13860. },
  13861. {
  13862. name: "Planetary",
  13863. height: math.unit(300, "megameters")
  13864. },
  13865. {
  13866. name: "Galaxy-dwarfing",
  13867. height: math.unit(450, "kiloparsecs")
  13868. },
  13869. {
  13870. name: "Universe Eater",
  13871. height: math.unit(150, "gigaparsecs")
  13872. },
  13873. {
  13874. name: "Almost Immeasurable",
  13875. height: math.unit(1.3e266, "yottaparsecs")
  13876. },
  13877. ]
  13878. ))
  13879. characterMakers.push(() => makeCharacter(
  13880. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  13881. {
  13882. front: {
  13883. height: math.unit(6, "feet"),
  13884. weight: math.unit(150, "lb"),
  13885. name: "Front",
  13886. image: {
  13887. source: "./media/characters/umeko/front.svg",
  13888. extra: 1,
  13889. bottom: 0.019
  13890. }
  13891. },
  13892. frontArmored: {
  13893. height: math.unit(6, "feet"),
  13894. weight: math.unit(150, "lb"),
  13895. name: "Front (Armored)",
  13896. image: {
  13897. source: "./media/characters/umeko/front-armored.svg",
  13898. extra: 1,
  13899. bottom: 0.021
  13900. }
  13901. },
  13902. },
  13903. [
  13904. {
  13905. name: "Macro",
  13906. height: math.unit(220, "feet"),
  13907. default: true
  13908. },
  13909. {
  13910. name: "Guardian Dragon",
  13911. height: math.unit(50, "miles")
  13912. },
  13913. {
  13914. name: "Cosmic",
  13915. height: math.unit(800000, "miles")
  13916. },
  13917. ]
  13918. ))
  13919. characterMakers.push(() => makeCharacter(
  13920. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  13921. {
  13922. front: {
  13923. height: math.unit(6, "feet"),
  13924. weight: math.unit(150, "lb"),
  13925. name: "Front",
  13926. image: {
  13927. source: "./media/characters/cassidy/front.svg",
  13928. extra: 1,
  13929. bottom: 0.043
  13930. }
  13931. },
  13932. },
  13933. [
  13934. {
  13935. name: "Canon Height",
  13936. height: math.unit(120, "feet"),
  13937. default: true
  13938. },
  13939. {
  13940. name: "Macro+",
  13941. height: math.unit(400, "feet")
  13942. },
  13943. {
  13944. name: "Macro++",
  13945. height: math.unit(4000, "feet")
  13946. },
  13947. {
  13948. name: "Megamacro",
  13949. height: math.unit(3, "miles")
  13950. },
  13951. ]
  13952. ))
  13953. characterMakers.push(() => makeCharacter(
  13954. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  13955. {
  13956. front: {
  13957. height: math.unit(6, "feet"),
  13958. weight: math.unit(150, "lb"),
  13959. name: "Front",
  13960. image: {
  13961. source: "./media/characters/isaac/front.svg",
  13962. extra: 896 / 815,
  13963. bottom: 0.11
  13964. }
  13965. },
  13966. },
  13967. [
  13968. {
  13969. name: "Human Size",
  13970. height: math.unit(8, "feet"),
  13971. default: true
  13972. },
  13973. {
  13974. name: "Macro",
  13975. height: math.unit(400, "feet")
  13976. },
  13977. {
  13978. name: "Megamacro",
  13979. height: math.unit(50, "miles")
  13980. },
  13981. {
  13982. name: "Canon Height",
  13983. height: math.unit(200, "AU")
  13984. },
  13985. ]
  13986. ))
  13987. characterMakers.push(() => makeCharacter(
  13988. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  13989. {
  13990. front: {
  13991. height: math.unit(6, "feet"),
  13992. weight: math.unit(72, "kg"),
  13993. name: "Front",
  13994. image: {
  13995. source: "./media/characters/sleekit/front.svg",
  13996. extra: 4693 / 4487,
  13997. bottom: 0.012
  13998. }
  13999. },
  14000. },
  14001. [
  14002. {
  14003. name: "Minimum Height",
  14004. height: math.unit(10, "meters")
  14005. },
  14006. {
  14007. name: "Smaller",
  14008. height: math.unit(25, "meters")
  14009. },
  14010. {
  14011. name: "Larger",
  14012. height: math.unit(38, "meters"),
  14013. default: true
  14014. },
  14015. {
  14016. name: "Maximum height",
  14017. height: math.unit(100, "meters")
  14018. },
  14019. ]
  14020. ))
  14021. characterMakers.push(() => makeCharacter(
  14022. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  14023. {
  14024. front: {
  14025. height: math.unit(6, "feet"),
  14026. weight: math.unit(150, "lb"),
  14027. name: "Front",
  14028. image: {
  14029. source: "./media/characters/nillia/front.svg",
  14030. extra: 2195 / 2037,
  14031. bottom: 0.005
  14032. }
  14033. },
  14034. back: {
  14035. height: math.unit(6, "feet"),
  14036. weight: math.unit(150, "lb"),
  14037. name: "Back",
  14038. image: {
  14039. source: "./media/characters/nillia/back.svg",
  14040. extra: 2195 / 2037,
  14041. bottom: 0.005
  14042. }
  14043. },
  14044. },
  14045. [
  14046. {
  14047. name: "Canon Height",
  14048. height: math.unit(489, "feet"),
  14049. default: true
  14050. }
  14051. ]
  14052. ))
  14053. characterMakers.push(() => makeCharacter(
  14054. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  14055. {
  14056. front: {
  14057. height: math.unit(6, "feet"),
  14058. weight: math.unit(150, "lb"),
  14059. name: "Front",
  14060. image: {
  14061. source: "./media/characters/mesmyriza/front.svg",
  14062. extra: 2067 / 1784,
  14063. bottom: 0.035
  14064. }
  14065. },
  14066. foot: {
  14067. height: math.unit(6 / (250 / 35), "feet"),
  14068. name: "Foot",
  14069. image: {
  14070. source: "./media/characters/mesmyriza/foot.svg"
  14071. }
  14072. },
  14073. },
  14074. [
  14075. {
  14076. name: "Macro",
  14077. height: math.unit(457, "meters"),
  14078. default: true
  14079. },
  14080. {
  14081. name: "Megamacro",
  14082. height: math.unit(8, "megameters")
  14083. },
  14084. ]
  14085. ))
  14086. characterMakers.push(() => makeCharacter(
  14087. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  14088. {
  14089. front: {
  14090. height: math.unit(6, "feet"),
  14091. weight: math.unit(250, "lb"),
  14092. name: "Front",
  14093. image: {
  14094. source: "./media/characters/saudade/front.svg",
  14095. extra: 1172 / 1139,
  14096. bottom: 0.035
  14097. }
  14098. },
  14099. },
  14100. [
  14101. {
  14102. name: "Micro",
  14103. height: math.unit(3, "inches")
  14104. },
  14105. {
  14106. name: "Normal",
  14107. height: math.unit(6, "feet"),
  14108. default: true
  14109. },
  14110. {
  14111. name: "Macro",
  14112. height: math.unit(50, "feet")
  14113. },
  14114. {
  14115. name: "Megamacro",
  14116. height: math.unit(2800, "feet")
  14117. },
  14118. ]
  14119. ))
  14120. characterMakers.push(() => makeCharacter(
  14121. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  14122. {
  14123. front: {
  14124. height: math.unit(5 + 4 / 12, "feet"),
  14125. weight: math.unit(100, "lb"),
  14126. name: "Front",
  14127. image: {
  14128. source: "./media/characters/keireer/front.svg",
  14129. extra: 716 / 666,
  14130. bottom: 0.05
  14131. }
  14132. },
  14133. },
  14134. [
  14135. {
  14136. name: "Normal",
  14137. height: math.unit(5 + 4 / 12, "feet"),
  14138. default: true
  14139. },
  14140. ]
  14141. ))
  14142. characterMakers.push(() => makeCharacter(
  14143. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  14144. {
  14145. front: {
  14146. height: math.unit(6, "feet"),
  14147. weight: math.unit(90, "kg"),
  14148. name: "Front",
  14149. image: {
  14150. source: "./media/characters/mirja/front.svg",
  14151. extra: 1789 / 1683,
  14152. bottom: 0.05
  14153. }
  14154. },
  14155. frontDressed: {
  14156. height: math.unit(6, "feet"),
  14157. weight: math.unit(90, "lb"),
  14158. name: "Front (Dressed)",
  14159. image: {
  14160. source: "./media/characters/mirja/front-dressed.svg",
  14161. extra: 1789 / 1683,
  14162. bottom: 0.05
  14163. }
  14164. },
  14165. back: {
  14166. height: math.unit(6, "feet"),
  14167. weight: math.unit(90, "lb"),
  14168. name: "Back",
  14169. image: {
  14170. source: "./media/characters/mirja/back.svg",
  14171. extra: 953 / 917,
  14172. bottom: 0.017
  14173. }
  14174. },
  14175. },
  14176. [
  14177. {
  14178. name: "\"Incognito\"",
  14179. height: math.unit(3, "meters")
  14180. },
  14181. {
  14182. name: "Strolling Size",
  14183. height: math.unit(15, "km")
  14184. },
  14185. {
  14186. name: "Larger Strolling Size",
  14187. height: math.unit(400, "km")
  14188. },
  14189. {
  14190. name: "Preferred Size",
  14191. height: math.unit(5000, "km")
  14192. },
  14193. {
  14194. name: "True Size",
  14195. height: math.unit(30657809462086840000000000000000, "parsecs"),
  14196. default: true
  14197. },
  14198. ]
  14199. ))
  14200. characterMakers.push(() => makeCharacter(
  14201. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  14202. {
  14203. front: {
  14204. height: math.unit(15, "feet"),
  14205. weight: math.unit(880, "kg"),
  14206. name: "Front",
  14207. image: {
  14208. source: "./media/characters/nightraver/front.svg",
  14209. extra: 2444 / 2160,
  14210. bottom: 0.027
  14211. }
  14212. },
  14213. back: {
  14214. height: math.unit(15, "feet"),
  14215. weight: math.unit(880, "kg"),
  14216. name: "Back",
  14217. image: {
  14218. source: "./media/characters/nightraver/back.svg",
  14219. extra: 2309 / 2180,
  14220. bottom: 0.005
  14221. }
  14222. },
  14223. sole: {
  14224. height: math.unit(2.878, "feet"),
  14225. name: "Sole",
  14226. image: {
  14227. source: "./media/characters/nightraver/sole.svg"
  14228. }
  14229. },
  14230. foot: {
  14231. height: math.unit(2.285, "feet"),
  14232. name: "Foot",
  14233. image: {
  14234. source: "./media/characters/nightraver/foot.svg"
  14235. }
  14236. },
  14237. maw: {
  14238. height: math.unit(2.67, "feet"),
  14239. name: "Maw",
  14240. image: {
  14241. source: "./media/characters/nightraver/maw.svg"
  14242. }
  14243. },
  14244. },
  14245. [
  14246. {
  14247. name: "Micro",
  14248. height: math.unit(1, "cm")
  14249. },
  14250. {
  14251. name: "Normal",
  14252. height: math.unit(15, "feet"),
  14253. default: true
  14254. },
  14255. {
  14256. name: "Macro",
  14257. height: math.unit(300, "feet")
  14258. },
  14259. {
  14260. name: "Megamacro",
  14261. height: math.unit(300, "miles")
  14262. },
  14263. {
  14264. name: "Gigamacro",
  14265. height: math.unit(10000, "miles")
  14266. },
  14267. ]
  14268. ))
  14269. characterMakers.push(() => makeCharacter(
  14270. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  14271. {
  14272. side: {
  14273. height: math.unit(2, "inches"),
  14274. weight: math.unit(5, "grams"),
  14275. name: "Side",
  14276. image: {
  14277. source: "./media/characters/arc/side.svg"
  14278. }
  14279. },
  14280. },
  14281. [
  14282. {
  14283. name: "Micro",
  14284. height: math.unit(2, "inches"),
  14285. default: true
  14286. },
  14287. ]
  14288. ))
  14289. characterMakers.push(() => makeCharacter(
  14290. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  14291. {
  14292. front: {
  14293. height: math.unit(1.1938, "meters"),
  14294. weight: math.unit(54, "kg"),
  14295. name: "Front",
  14296. image: {
  14297. source: "./media/characters/nebula-shahar/front.svg",
  14298. extra: 1642 / 1436,
  14299. bottom: 0.06
  14300. }
  14301. },
  14302. },
  14303. [
  14304. {
  14305. name: "Megamicro",
  14306. height: math.unit(0.3, "mm")
  14307. },
  14308. {
  14309. name: "Micro",
  14310. height: math.unit(3, "cm")
  14311. },
  14312. {
  14313. name: "Normal",
  14314. height: math.unit(138, "cm"),
  14315. default: true
  14316. },
  14317. {
  14318. name: "Macro",
  14319. height: math.unit(30, "m")
  14320. },
  14321. ]
  14322. ))
  14323. characterMakers.push(() => makeCharacter(
  14324. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  14325. {
  14326. front: {
  14327. height: math.unit(5.24, "feet"),
  14328. weight: math.unit(150, "lb"),
  14329. name: "Front",
  14330. image: {
  14331. source: "./media/characters/shayla/front.svg",
  14332. extra: 1512 / 1414,
  14333. bottom: 0.01
  14334. }
  14335. },
  14336. back: {
  14337. height: math.unit(5.24, "feet"),
  14338. weight: math.unit(150, "lb"),
  14339. name: "Back",
  14340. image: {
  14341. source: "./media/characters/shayla/back.svg",
  14342. extra: 1512 / 1414
  14343. }
  14344. },
  14345. hand: {
  14346. height: math.unit(0.7781496062992126, "feet"),
  14347. name: "Hand",
  14348. image: {
  14349. source: "./media/characters/shayla/hand.svg"
  14350. }
  14351. },
  14352. foot: {
  14353. height: math.unit(1.4206036745406823, "feet"),
  14354. name: "Foot",
  14355. image: {
  14356. source: "./media/characters/shayla/foot.svg"
  14357. }
  14358. },
  14359. },
  14360. [
  14361. {
  14362. name: "Micro",
  14363. height: math.unit(0.32, "feet")
  14364. },
  14365. {
  14366. name: "Normal",
  14367. height: math.unit(5.24, "feet"),
  14368. default: true
  14369. },
  14370. {
  14371. name: "Macro",
  14372. height: math.unit(492.12, "feet")
  14373. },
  14374. {
  14375. name: "Megamacro",
  14376. height: math.unit(186.41, "miles")
  14377. },
  14378. ]
  14379. ))
  14380. characterMakers.push(() => makeCharacter(
  14381. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  14382. {
  14383. front: {
  14384. height: math.unit(2.2, "m"),
  14385. weight: math.unit(120, "kg"),
  14386. name: "Front",
  14387. image: {
  14388. source: "./media/characters/pia-jr/front.svg",
  14389. extra: 1000 / 970,
  14390. bottom: 0.035
  14391. }
  14392. },
  14393. hand: {
  14394. height: math.unit(0.759 * 7.21 / 6, "feet"),
  14395. name: "Hand",
  14396. image: {
  14397. source: "./media/characters/pia-jr/hand.svg"
  14398. }
  14399. },
  14400. paw: {
  14401. height: math.unit(1.185 * 7.21 / 6, "feet"),
  14402. name: "Paw",
  14403. image: {
  14404. source: "./media/characters/pia-jr/paw.svg"
  14405. }
  14406. },
  14407. },
  14408. [
  14409. {
  14410. name: "Micro",
  14411. height: math.unit(1.2, "cm")
  14412. },
  14413. {
  14414. name: "Normal",
  14415. height: math.unit(2.2, "m"),
  14416. default: true
  14417. },
  14418. {
  14419. name: "Macro",
  14420. height: math.unit(180, "m")
  14421. },
  14422. {
  14423. name: "Megamacro",
  14424. height: math.unit(420, "km")
  14425. },
  14426. ]
  14427. ))
  14428. characterMakers.push(() => makeCharacter(
  14429. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  14430. {
  14431. front: {
  14432. height: math.unit(2, "m"),
  14433. weight: math.unit(115, "kg"),
  14434. name: "Front",
  14435. image: {
  14436. source: "./media/characters/pia-sr/front.svg",
  14437. extra: 760 / 730,
  14438. bottom: 0.015
  14439. }
  14440. },
  14441. back: {
  14442. height: math.unit(2, "m"),
  14443. weight: math.unit(115, "kg"),
  14444. name: "Back",
  14445. image: {
  14446. source: "./media/characters/pia-sr/back.svg",
  14447. extra: 760 / 730,
  14448. bottom: 0.01
  14449. }
  14450. },
  14451. hand: {
  14452. height: math.unit(0.89 * 6.56 / 6, "feet"),
  14453. name: "Hand",
  14454. image: {
  14455. source: "./media/characters/pia-sr/hand.svg"
  14456. }
  14457. },
  14458. foot: {
  14459. height: math.unit(1.83, "feet"),
  14460. name: "Foot",
  14461. image: {
  14462. source: "./media/characters/pia-sr/foot.svg"
  14463. }
  14464. },
  14465. },
  14466. [
  14467. {
  14468. name: "Micro",
  14469. height: math.unit(88, "mm")
  14470. },
  14471. {
  14472. name: "Normal",
  14473. height: math.unit(2, "m"),
  14474. default: true
  14475. },
  14476. {
  14477. name: "Macro",
  14478. height: math.unit(200, "m")
  14479. },
  14480. {
  14481. name: "Megamacro",
  14482. height: math.unit(420, "km")
  14483. },
  14484. ]
  14485. ))
  14486. characterMakers.push(() => makeCharacter(
  14487. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  14488. {
  14489. front: {
  14490. height: math.unit(8 + 2 / 12, "feet"),
  14491. weight: math.unit(300, "lb"),
  14492. name: "Front",
  14493. image: {
  14494. source: "./media/characters/kibibyte/front.svg",
  14495. extra: 2221 / 2098,
  14496. bottom: 0.04
  14497. }
  14498. },
  14499. },
  14500. [
  14501. {
  14502. name: "Normal",
  14503. height: math.unit(8 + 2 / 12, "feet"),
  14504. default: true
  14505. },
  14506. {
  14507. name: "Socialable Macro",
  14508. height: math.unit(50, "feet")
  14509. },
  14510. {
  14511. name: "Macro",
  14512. height: math.unit(300, "feet")
  14513. },
  14514. {
  14515. name: "Megamacro",
  14516. height: math.unit(500, "miles")
  14517. },
  14518. ]
  14519. ))
  14520. characterMakers.push(() => makeCharacter(
  14521. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  14522. {
  14523. front: {
  14524. height: math.unit(6, "feet"),
  14525. weight: math.unit(150, "lb"),
  14526. name: "Front",
  14527. image: {
  14528. source: "./media/characters/felix/front.svg",
  14529. extra: 762 / 722,
  14530. bottom: 0.02
  14531. }
  14532. },
  14533. frontClothed: {
  14534. height: math.unit(6, "feet"),
  14535. weight: math.unit(150, "lb"),
  14536. name: "Front (Clothed)",
  14537. image: {
  14538. source: "./media/characters/felix/front-clothed.svg",
  14539. extra: 762 / 722,
  14540. bottom: 0.02
  14541. }
  14542. },
  14543. },
  14544. [
  14545. {
  14546. name: "Normal",
  14547. height: math.unit(6 + 8 / 12, "feet"),
  14548. default: true
  14549. },
  14550. {
  14551. name: "Macro",
  14552. height: math.unit(2600, "feet")
  14553. },
  14554. {
  14555. name: "Megamacro",
  14556. height: math.unit(450, "miles")
  14557. },
  14558. ]
  14559. ))
  14560. characterMakers.push(() => makeCharacter(
  14561. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  14562. {
  14563. front: {
  14564. height: math.unit(6 + 1 / 12, "feet"),
  14565. weight: math.unit(250, "lb"),
  14566. name: "Front",
  14567. image: {
  14568. source: "./media/characters/tobo/front.svg",
  14569. extra: 608 / 586,
  14570. bottom: 0.023
  14571. }
  14572. },
  14573. back: {
  14574. height: math.unit(6 + 1 / 12, "feet"),
  14575. weight: math.unit(250, "lb"),
  14576. name: "Back",
  14577. image: {
  14578. source: "./media/characters/tobo/back.svg",
  14579. extra: 608 / 586
  14580. }
  14581. },
  14582. },
  14583. [
  14584. {
  14585. name: "Nano",
  14586. height: math.unit(2, "nm")
  14587. },
  14588. {
  14589. name: "Megamicro",
  14590. height: math.unit(0.1, "mm")
  14591. },
  14592. {
  14593. name: "Micro",
  14594. height: math.unit(1, "inch"),
  14595. default: true
  14596. },
  14597. {
  14598. name: "Human-sized",
  14599. height: math.unit(6 + 1 / 12, "feet")
  14600. },
  14601. {
  14602. name: "Macro",
  14603. height: math.unit(250, "feet")
  14604. },
  14605. {
  14606. name: "Megamacro",
  14607. height: math.unit(75, "miles")
  14608. },
  14609. {
  14610. name: "Texas-sized",
  14611. height: math.unit(750, "miles")
  14612. },
  14613. {
  14614. name: "Teramacro",
  14615. height: math.unit(50000, "miles")
  14616. },
  14617. ]
  14618. ))
  14619. characterMakers.push(() => makeCharacter(
  14620. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  14621. {
  14622. front: {
  14623. height: math.unit(6, "feet"),
  14624. weight: math.unit(269, "lb"),
  14625. name: "Front",
  14626. image: {
  14627. source: "./media/characters/danny-kapowsky/front.svg",
  14628. extra: 766 / 736,
  14629. bottom: 0.044
  14630. }
  14631. },
  14632. back: {
  14633. height: math.unit(6, "feet"),
  14634. weight: math.unit(269, "lb"),
  14635. name: "Back",
  14636. image: {
  14637. source: "./media/characters/danny-kapowsky/back.svg",
  14638. extra: 797 / 760,
  14639. bottom: 0.025
  14640. }
  14641. },
  14642. },
  14643. [
  14644. {
  14645. name: "Macro",
  14646. height: math.unit(150, "feet"),
  14647. default: true
  14648. },
  14649. {
  14650. name: "Macro+",
  14651. height: math.unit(200, "feet")
  14652. },
  14653. {
  14654. name: "Macro++",
  14655. height: math.unit(300, "feet")
  14656. },
  14657. {
  14658. name: "Macro+++",
  14659. height: math.unit(400, "feet")
  14660. },
  14661. ]
  14662. ))
  14663. characterMakers.push(() => makeCharacter(
  14664. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  14665. {
  14666. side: {
  14667. height: math.unit(6, "feet"),
  14668. weight: math.unit(170, "lb"),
  14669. name: "Side",
  14670. image: {
  14671. source: "./media/characters/finn/side.svg",
  14672. extra: 1953 / 1807,
  14673. bottom: 0.057
  14674. }
  14675. },
  14676. },
  14677. [
  14678. {
  14679. name: "Megamacro",
  14680. height: math.unit(14445, "feet"),
  14681. default: true
  14682. },
  14683. ]
  14684. ))
  14685. characterMakers.push(() => makeCharacter(
  14686. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  14687. {
  14688. front: {
  14689. height: math.unit(5 + 6 / 12, "feet"),
  14690. weight: math.unit(125, "lb"),
  14691. name: "Front",
  14692. image: {
  14693. source: "./media/characters/roy/front.svg",
  14694. extra: 1,
  14695. bottom: 0.11
  14696. }
  14697. },
  14698. },
  14699. [
  14700. {
  14701. name: "Micro",
  14702. height: math.unit(3, "inches"),
  14703. default: true
  14704. },
  14705. {
  14706. name: "Normal",
  14707. height: math.unit(5 + 6 / 12, "feet")
  14708. },
  14709. {
  14710. name: "Lesser Macro",
  14711. height: math.unit(60, "feet")
  14712. },
  14713. {
  14714. name: "Greater Macro",
  14715. height: math.unit(120, "feet")
  14716. },
  14717. ]
  14718. ))
  14719. characterMakers.push(() => makeCharacter(
  14720. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  14721. {
  14722. front: {
  14723. height: math.unit(6, "feet"),
  14724. weight: math.unit(100, "lb"),
  14725. name: "Front",
  14726. image: {
  14727. source: "./media/characters/aevsivs/front.svg",
  14728. extra: 1,
  14729. bottom: 0.03
  14730. }
  14731. },
  14732. back: {
  14733. height: math.unit(6, "feet"),
  14734. weight: math.unit(100, "lb"),
  14735. name: "Back",
  14736. image: {
  14737. source: "./media/characters/aevsivs/back.svg"
  14738. }
  14739. },
  14740. },
  14741. [
  14742. {
  14743. name: "Micro",
  14744. height: math.unit(2, "inches"),
  14745. default: true
  14746. },
  14747. {
  14748. name: "Normal",
  14749. height: math.unit(5, "feet")
  14750. },
  14751. ]
  14752. ))
  14753. characterMakers.push(() => makeCharacter(
  14754. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  14755. {
  14756. front: {
  14757. height: math.unit(5 + 7 / 12, "feet"),
  14758. weight: math.unit(159, "lb"),
  14759. name: "Front",
  14760. image: {
  14761. source: "./media/characters/hildegard/front.svg",
  14762. extra: 289 / 269,
  14763. bottom: 7.63 / 297.8
  14764. }
  14765. },
  14766. back: {
  14767. height: math.unit(5 + 7 / 12, "feet"),
  14768. weight: math.unit(159, "lb"),
  14769. name: "Back",
  14770. image: {
  14771. source: "./media/characters/hildegard/back.svg",
  14772. extra: 280 / 260,
  14773. bottom: 2.3 / 282
  14774. }
  14775. },
  14776. },
  14777. [
  14778. {
  14779. name: "Normal",
  14780. height: math.unit(5 + 7 / 12, "feet"),
  14781. default: true
  14782. },
  14783. ]
  14784. ))
  14785. characterMakers.push(() => makeCharacter(
  14786. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  14787. {
  14788. bernard: {
  14789. height: math.unit(2 + 7 / 12, "feet"),
  14790. weight: math.unit(66, "lb"),
  14791. name: "Bernard",
  14792. rename: true,
  14793. image: {
  14794. source: "./media/characters/bernard-wilder/bernard.svg",
  14795. extra: 192 / 128,
  14796. bottom: 0.05
  14797. }
  14798. },
  14799. wilder: {
  14800. height: math.unit(5 + 8 / 12, "feet"),
  14801. weight: math.unit(143, "lb"),
  14802. name: "Wilder",
  14803. rename: true,
  14804. image: {
  14805. source: "./media/characters/bernard-wilder/wilder.svg",
  14806. extra: 361 / 312,
  14807. bottom: 0.02
  14808. }
  14809. },
  14810. },
  14811. [
  14812. {
  14813. name: "Normal",
  14814. height: math.unit(2 + 7 / 12, "feet"),
  14815. default: true
  14816. },
  14817. ]
  14818. ))
  14819. characterMakers.push(() => makeCharacter(
  14820. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  14821. {
  14822. anthro: {
  14823. height: math.unit(6 + 1 / 12, "feet"),
  14824. weight: math.unit(155, "lb"),
  14825. name: "Anthro",
  14826. image: {
  14827. source: "./media/characters/hearth/anthro.svg",
  14828. extra: 260 / 250,
  14829. bottom: 0.02
  14830. }
  14831. },
  14832. feral: {
  14833. height: math.unit(3.78, "feet"),
  14834. weight: math.unit(35, "kg"),
  14835. name: "Feral",
  14836. image: {
  14837. source: "./media/characters/hearth/feral.svg",
  14838. extra: 153 / 135,
  14839. bottom: 0.03
  14840. }
  14841. },
  14842. },
  14843. [
  14844. {
  14845. name: "Normal",
  14846. height: math.unit(6 + 1 / 12, "feet"),
  14847. default: true
  14848. },
  14849. ]
  14850. ))
  14851. characterMakers.push(() => makeCharacter(
  14852. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  14853. {
  14854. front: {
  14855. height: math.unit(6, "feet"),
  14856. weight: math.unit(182, "lb"),
  14857. name: "Front",
  14858. image: {
  14859. source: "./media/characters/ingrid/front.svg",
  14860. extra: 294 / 268,
  14861. bottom: 0.027
  14862. }
  14863. },
  14864. },
  14865. [
  14866. {
  14867. name: "Normal",
  14868. height: math.unit(6, "feet"),
  14869. default: true
  14870. },
  14871. ]
  14872. ))
  14873. characterMakers.push(() => makeCharacter(
  14874. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  14875. {
  14876. eevee: {
  14877. height: math.unit(2 + 10 / 12, "feet"),
  14878. weight: math.unit(86, "lb"),
  14879. name: "Malgam",
  14880. image: {
  14881. source: "./media/characters/malgam/eevee.svg",
  14882. extra: 218 / 180,
  14883. bottom: 0.2
  14884. }
  14885. },
  14886. sylveon: {
  14887. height: math.unit(4, "feet"),
  14888. weight: math.unit(101, "lb"),
  14889. name: "Future Malgam",
  14890. rename: true,
  14891. image: {
  14892. source: "./media/characters/malgam/sylveon.svg",
  14893. extra: 371 / 325,
  14894. bottom: 0.015
  14895. }
  14896. },
  14897. gigantamax: {
  14898. height: math.unit(50, "feet"),
  14899. name: "Gigantamax Malgam",
  14900. rename: true,
  14901. image: {
  14902. source: "./media/characters/malgam/gigantamax.svg"
  14903. }
  14904. },
  14905. },
  14906. [
  14907. {
  14908. name: "Normal",
  14909. height: math.unit(2 + 10 / 12, "feet"),
  14910. default: true
  14911. },
  14912. ]
  14913. ))
  14914. characterMakers.push(() => makeCharacter(
  14915. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  14916. {
  14917. front: {
  14918. height: math.unit(5 + 11 / 12, "feet"),
  14919. weight: math.unit(188, "lb"),
  14920. name: "Front",
  14921. image: {
  14922. source: "./media/characters/fleur/front.svg",
  14923. extra: 309 / 283,
  14924. bottom: 0.007
  14925. }
  14926. },
  14927. },
  14928. [
  14929. {
  14930. name: "Normal",
  14931. height: math.unit(5 + 11 / 12, "feet"),
  14932. default: true
  14933. },
  14934. ]
  14935. ))
  14936. characterMakers.push(() => makeCharacter(
  14937. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  14938. {
  14939. front: {
  14940. height: math.unit(5 + 4 / 12, "feet"),
  14941. weight: math.unit(122, "lb"),
  14942. name: "Front",
  14943. image: {
  14944. source: "./media/characters/jude/front.svg",
  14945. extra: 288 / 273,
  14946. bottom: 0.03
  14947. }
  14948. },
  14949. },
  14950. [
  14951. {
  14952. name: "Normal",
  14953. height: math.unit(5 + 4 / 12, "feet"),
  14954. default: true
  14955. },
  14956. ]
  14957. ))
  14958. characterMakers.push(() => makeCharacter(
  14959. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  14960. {
  14961. front: {
  14962. height: math.unit(5 + 11 / 12, "feet"),
  14963. weight: math.unit(190, "lb"),
  14964. name: "Front",
  14965. image: {
  14966. source: "./media/characters/seara/front.svg",
  14967. extra: 1,
  14968. bottom: 0.05
  14969. }
  14970. },
  14971. },
  14972. [
  14973. {
  14974. name: "Normal",
  14975. height: math.unit(5 + 11 / 12, "feet"),
  14976. default: true
  14977. },
  14978. ]
  14979. ))
  14980. characterMakers.push(() => makeCharacter(
  14981. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  14982. {
  14983. front: {
  14984. height: math.unit(16 + 5 / 12, "feet"),
  14985. weight: math.unit(524, "lb"),
  14986. name: "Front",
  14987. image: {
  14988. source: "./media/characters/caspian/front.svg",
  14989. extra: 1,
  14990. bottom: 0.04
  14991. }
  14992. },
  14993. },
  14994. [
  14995. {
  14996. name: "Normal",
  14997. height: math.unit(16 + 5 / 12, "feet"),
  14998. default: true
  14999. },
  15000. ]
  15001. ))
  15002. characterMakers.push(() => makeCharacter(
  15003. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  15004. {
  15005. front: {
  15006. height: math.unit(5 + 7 / 12, "feet"),
  15007. weight: math.unit(170, "lb"),
  15008. name: "Front",
  15009. image: {
  15010. source: "./media/characters/mika/front.svg",
  15011. extra: 1,
  15012. bottom: 0.016
  15013. }
  15014. },
  15015. },
  15016. [
  15017. {
  15018. name: "Normal",
  15019. height: math.unit(5 + 7 / 12, "feet"),
  15020. default: true
  15021. },
  15022. ]
  15023. ))
  15024. characterMakers.push(() => makeCharacter(
  15025. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  15026. {
  15027. front: {
  15028. height: math.unit(6 + 2 / 12, "feet"),
  15029. weight: math.unit(268, "lb"),
  15030. name: "Front",
  15031. image: {
  15032. source: "./media/characters/sol/front.svg",
  15033. extra: 247 / 231,
  15034. bottom: 0.05
  15035. }
  15036. },
  15037. },
  15038. [
  15039. {
  15040. name: "Normal",
  15041. height: math.unit(6 + 2 / 12, "feet"),
  15042. default: true
  15043. },
  15044. ]
  15045. ))
  15046. characterMakers.push(() => makeCharacter(
  15047. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  15048. {
  15049. buizel: {
  15050. height: math.unit(2 + 5 / 12, "feet"),
  15051. weight: math.unit(87, "lb"),
  15052. name: "Buizel",
  15053. image: {
  15054. source: "./media/characters/umiko/buizel.svg",
  15055. extra: 172 / 157,
  15056. bottom: 0.01
  15057. }
  15058. },
  15059. floatzel: {
  15060. height: math.unit(5 + 9 / 12, "feet"),
  15061. weight: math.unit(250, "lb"),
  15062. name: "Floatzel",
  15063. image: {
  15064. source: "./media/characters/umiko/floatzel.svg",
  15065. extra: 262 / 248
  15066. }
  15067. },
  15068. },
  15069. [
  15070. {
  15071. name: "Normal",
  15072. height: math.unit(2 + 5 / 12, "feet"),
  15073. default: true
  15074. },
  15075. ]
  15076. ))
  15077. characterMakers.push(() => makeCharacter(
  15078. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  15079. {
  15080. front: {
  15081. height: math.unit(6 + 2 / 12, "feet"),
  15082. weight: math.unit(146, "lb"),
  15083. name: "Front",
  15084. image: {
  15085. source: "./media/characters/iliac/front.svg",
  15086. extra: 389 / 365,
  15087. bottom: 0.035
  15088. }
  15089. },
  15090. },
  15091. [
  15092. {
  15093. name: "Normal",
  15094. height: math.unit(6 + 2 / 12, "feet"),
  15095. default: true
  15096. },
  15097. ]
  15098. ))
  15099. characterMakers.push(() => makeCharacter(
  15100. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  15101. {
  15102. front: {
  15103. height: math.unit(6, "feet"),
  15104. weight: math.unit(170, "lb"),
  15105. name: "Front",
  15106. image: {
  15107. source: "./media/characters/topaz/front.svg",
  15108. extra: 317 / 303,
  15109. bottom: 0.055
  15110. }
  15111. },
  15112. },
  15113. [
  15114. {
  15115. name: "Normal",
  15116. height: math.unit(6, "feet"),
  15117. default: true
  15118. },
  15119. ]
  15120. ))
  15121. characterMakers.push(() => makeCharacter(
  15122. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  15123. {
  15124. front: {
  15125. height: math.unit(5 + 11 / 12, "feet"),
  15126. weight: math.unit(144, "lb"),
  15127. name: "Front",
  15128. image: {
  15129. source: "./media/characters/gabriel/front.svg",
  15130. extra: 285 / 262,
  15131. bottom: 0.004
  15132. }
  15133. },
  15134. },
  15135. [
  15136. {
  15137. name: "Normal",
  15138. height: math.unit(5 + 11 / 12, "feet"),
  15139. default: true
  15140. },
  15141. ]
  15142. ))
  15143. characterMakers.push(() => makeCharacter(
  15144. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  15145. {
  15146. side: {
  15147. height: math.unit(6 + 5 / 12, "feet"),
  15148. weight: math.unit(300, "lb"),
  15149. name: "Side",
  15150. image: {
  15151. source: "./media/characters/tempest-suicune/side.svg",
  15152. extra: 195 / 154,
  15153. bottom: 0.04
  15154. }
  15155. },
  15156. },
  15157. [
  15158. {
  15159. name: "Normal",
  15160. height: math.unit(6 + 5 / 12, "feet"),
  15161. default: true
  15162. },
  15163. ]
  15164. ))
  15165. characterMakers.push(() => makeCharacter(
  15166. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  15167. {
  15168. front: {
  15169. height: math.unit(7 + 2 / 12, "feet"),
  15170. weight: math.unit(322, "lb"),
  15171. name: "Front",
  15172. image: {
  15173. source: "./media/characters/vulcan/front.svg",
  15174. extra: 154 / 147,
  15175. bottom: 0.04
  15176. }
  15177. },
  15178. },
  15179. [
  15180. {
  15181. name: "Normal",
  15182. height: math.unit(7 + 2 / 12, "feet"),
  15183. default: true
  15184. },
  15185. ]
  15186. ))
  15187. characterMakers.push(() => makeCharacter(
  15188. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  15189. {
  15190. front: {
  15191. height: math.unit(5 + 10 / 12, "feet"),
  15192. weight: math.unit(264, "lb"),
  15193. name: "Front",
  15194. image: {
  15195. source: "./media/characters/gault/front.svg",
  15196. extra: 161 / 140,
  15197. bottom: 0.028
  15198. }
  15199. },
  15200. },
  15201. [
  15202. {
  15203. name: "Normal",
  15204. height: math.unit(5 + 10 / 12, "feet"),
  15205. default: true
  15206. },
  15207. ]
  15208. ))
  15209. characterMakers.push(() => makeCharacter(
  15210. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  15211. {
  15212. front: {
  15213. height: math.unit(6, "feet"),
  15214. weight: math.unit(150, "lb"),
  15215. name: "Front",
  15216. image: {
  15217. source: "./media/characters/shard/front.svg",
  15218. extra: 273 / 238,
  15219. bottom: 0.02
  15220. }
  15221. },
  15222. },
  15223. [
  15224. {
  15225. name: "Normal",
  15226. height: math.unit(3 + 6 / 12, "feet"),
  15227. default: true
  15228. },
  15229. ]
  15230. ))
  15231. characterMakers.push(() => makeCharacter(
  15232. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  15233. {
  15234. front: {
  15235. height: math.unit(5 + 11 / 12, "feet"),
  15236. weight: math.unit(146, "lb"),
  15237. name: "Front",
  15238. image: {
  15239. source: "./media/characters/ashe/front.svg",
  15240. extra: 400 / 373,
  15241. bottom: 0.01
  15242. }
  15243. },
  15244. },
  15245. [
  15246. {
  15247. name: "Normal",
  15248. height: math.unit(5 + 11 / 12, "feet"),
  15249. default: true
  15250. },
  15251. ]
  15252. ))
  15253. characterMakers.push(() => makeCharacter(
  15254. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  15255. {
  15256. front: {
  15257. height: math.unit(5 + 5 / 12, "feet"),
  15258. weight: math.unit(135, "lb"),
  15259. name: "Front",
  15260. image: {
  15261. source: "./media/characters/beatrix/front.svg",
  15262. extra: 392 / 379,
  15263. bottom: 0.01
  15264. }
  15265. },
  15266. },
  15267. [
  15268. {
  15269. name: "Normal",
  15270. height: math.unit(6, "feet"),
  15271. default: true
  15272. },
  15273. ]
  15274. ))
  15275. characterMakers.push(() => makeCharacter(
  15276. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  15277. {
  15278. front: {
  15279. height: math.unit(6, "feet"),
  15280. weight: math.unit(150, "lb"),
  15281. name: "Front",
  15282. image: {
  15283. source: "./media/characters/ignatius/front.svg",
  15284. extra: 245 / 222,
  15285. bottom: 0.01
  15286. }
  15287. },
  15288. },
  15289. [
  15290. {
  15291. name: "Normal",
  15292. height: math.unit(5 + 5 / 12, "feet"),
  15293. default: true
  15294. },
  15295. ]
  15296. ))
  15297. characterMakers.push(() => makeCharacter(
  15298. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  15299. {
  15300. front: {
  15301. height: math.unit(6 + 2 / 12, "feet"),
  15302. weight: math.unit(138, "lb"),
  15303. name: "Front",
  15304. image: {
  15305. source: "./media/characters/mei-li/front.svg",
  15306. extra: 237 / 229,
  15307. bottom: 0.03
  15308. }
  15309. },
  15310. },
  15311. [
  15312. {
  15313. name: "Normal",
  15314. height: math.unit(6 + 2 / 12, "feet"),
  15315. default: true
  15316. },
  15317. ]
  15318. ))
  15319. characterMakers.push(() => makeCharacter(
  15320. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  15321. {
  15322. front: {
  15323. height: math.unit(2 + 4 / 12, "feet"),
  15324. weight: math.unit(62, "lb"),
  15325. name: "Front",
  15326. image: {
  15327. source: "./media/characters/puru/front.svg",
  15328. extra: 206 / 149,
  15329. bottom: 0.06
  15330. }
  15331. },
  15332. },
  15333. [
  15334. {
  15335. name: "Normal",
  15336. height: math.unit(2 + 4 / 12, "feet"),
  15337. default: true
  15338. },
  15339. ]
  15340. ))
  15341. characterMakers.push(() => makeCharacter(
  15342. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  15343. {
  15344. anthro: {
  15345. height: math.unit(5 + 8/12, "feet"),
  15346. weight: math.unit(200, "lb"),
  15347. energyNeed: math.unit(2000, "kcal"),
  15348. name: "Anthro",
  15349. image: {
  15350. source: "./media/characters/kee/anthro.svg",
  15351. extra: 3251/3184,
  15352. bottom: 250/3501
  15353. }
  15354. },
  15355. taur: {
  15356. height: math.unit(11, "feet"),
  15357. weight: math.unit(500, "lb"),
  15358. energyNeed: math.unit(5000, "kcal"),
  15359. name: "Taur",
  15360. image: {
  15361. source: "./media/characters/kee/taur.svg",
  15362. extra: 1362/1320,
  15363. bottom: 83/1445
  15364. }
  15365. },
  15366. },
  15367. [
  15368. {
  15369. name: "Normal",
  15370. height: math.unit(5 + 8/12, "feet"),
  15371. default: true
  15372. },
  15373. {
  15374. name: "Macro",
  15375. height: math.unit(35, "feet")
  15376. },
  15377. ]
  15378. ))
  15379. characterMakers.push(() => makeCharacter(
  15380. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  15381. {
  15382. anthro: {
  15383. height: math.unit(7, "feet"),
  15384. weight: math.unit(190, "lb"),
  15385. name: "Anthro",
  15386. image: {
  15387. source: "./media/characters/cobalt-dracha/anthro.svg",
  15388. extra: 231 / 225,
  15389. bottom: 0.04
  15390. }
  15391. },
  15392. feral: {
  15393. height: math.unit(9 + 7 / 12, "feet"),
  15394. weight: math.unit(294, "lb"),
  15395. name: "Feral",
  15396. image: {
  15397. source: "./media/characters/cobalt-dracha/feral.svg",
  15398. extra: 692 / 633,
  15399. bottom: 0.05
  15400. }
  15401. },
  15402. },
  15403. [
  15404. {
  15405. name: "Normal",
  15406. height: math.unit(7, "feet"),
  15407. default: true
  15408. },
  15409. ]
  15410. ))
  15411. characterMakers.push(() => makeCharacter(
  15412. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  15413. {
  15414. fallen: {
  15415. height: math.unit(11 + 8 / 12, "feet"),
  15416. weight: math.unit(485, "lb"),
  15417. name: "Java (Fallen)",
  15418. rename: true,
  15419. image: {
  15420. source: "./media/characters/java/fallen.svg",
  15421. extra: 226 / 208,
  15422. bottom: 0.005
  15423. }
  15424. },
  15425. godkin: {
  15426. height: math.unit(10 + 6 / 12, "feet"),
  15427. weight: math.unit(328, "lb"),
  15428. name: "Java (Godkin)",
  15429. rename: true,
  15430. image: {
  15431. source: "./media/characters/java/godkin.svg",
  15432. extra: 270 / 262,
  15433. bottom: 0.02
  15434. }
  15435. },
  15436. },
  15437. [
  15438. {
  15439. name: "Normal",
  15440. height: math.unit(11 + 8 / 12, "feet"),
  15441. default: true
  15442. },
  15443. ]
  15444. ))
  15445. characterMakers.push(() => makeCharacter(
  15446. { name: "Skoll", species: ["wolf"], tags: ["anthro"] },
  15447. {
  15448. front: {
  15449. height: math.unit(7 + 8 / 12, "feet"),
  15450. weight: math.unit(320, "lb"),
  15451. name: "Front",
  15452. image: {
  15453. source: "./media/characters/skoll/front.svg",
  15454. extra: 232 / 220,
  15455. bottom: 0.02
  15456. }
  15457. },
  15458. },
  15459. [
  15460. {
  15461. name: "Normal",
  15462. height: math.unit(7 + 8 / 12, "feet"),
  15463. default: true
  15464. },
  15465. ]
  15466. ))
  15467. characterMakers.push(() => makeCharacter(
  15468. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  15469. {
  15470. front: {
  15471. height: math.unit(5 + 9 / 12, "feet"),
  15472. weight: math.unit(170, "lb"),
  15473. name: "Front",
  15474. image: {
  15475. source: "./media/characters/purna/front.svg",
  15476. extra: 239 / 229,
  15477. bottom: 0.01
  15478. }
  15479. },
  15480. },
  15481. [
  15482. {
  15483. name: "Normal",
  15484. height: math.unit(5 + 9 / 12, "feet"),
  15485. default: true
  15486. },
  15487. ]
  15488. ))
  15489. characterMakers.push(() => makeCharacter(
  15490. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  15491. {
  15492. front: {
  15493. height: math.unit(5 + 9 / 12, "feet"),
  15494. weight: math.unit(142, "lb"),
  15495. name: "Front",
  15496. image: {
  15497. source: "./media/characters/kuva/front.svg",
  15498. extra: 281 / 271,
  15499. bottom: 0.006
  15500. }
  15501. },
  15502. },
  15503. [
  15504. {
  15505. name: "Normal",
  15506. height: math.unit(5 + 9 / 12, "feet"),
  15507. default: true
  15508. },
  15509. ]
  15510. ))
  15511. characterMakers.push(() => makeCharacter(
  15512. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  15513. {
  15514. anthro: {
  15515. height: math.unit(9 + 2 / 12, "feet"),
  15516. weight: math.unit(270, "lb"),
  15517. name: "Anthro",
  15518. image: {
  15519. source: "./media/characters/embra/anthro.svg",
  15520. extra: 200 / 187,
  15521. bottom: 0.02
  15522. }
  15523. },
  15524. feral: {
  15525. height: math.unit(18 + 8 / 12, "feet"),
  15526. weight: math.unit(576, "lb"),
  15527. name: "Feral",
  15528. image: {
  15529. source: "./media/characters/embra/feral.svg",
  15530. extra: 152 / 137,
  15531. bottom: 0.037
  15532. }
  15533. },
  15534. },
  15535. [
  15536. {
  15537. name: "Normal",
  15538. height: math.unit(9 + 2 / 12, "feet"),
  15539. default: true
  15540. },
  15541. ]
  15542. ))
  15543. characterMakers.push(() => makeCharacter(
  15544. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  15545. {
  15546. anthro: {
  15547. height: math.unit(10 + 9 / 12, "feet"),
  15548. weight: math.unit(224, "lb"),
  15549. name: "Anthro",
  15550. image: {
  15551. source: "./media/characters/grottos/anthro.svg",
  15552. extra: 350 / 332,
  15553. bottom: 0.045
  15554. }
  15555. },
  15556. feral: {
  15557. height: math.unit(20 + 7 / 12, "feet"),
  15558. weight: math.unit(629, "lb"),
  15559. name: "Feral",
  15560. image: {
  15561. source: "./media/characters/grottos/feral.svg",
  15562. extra: 207 / 190,
  15563. bottom: 0.05
  15564. }
  15565. },
  15566. },
  15567. [
  15568. {
  15569. name: "Normal",
  15570. height: math.unit(10 + 9 / 12, "feet"),
  15571. default: true
  15572. },
  15573. ]
  15574. ))
  15575. characterMakers.push(() => makeCharacter(
  15576. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  15577. {
  15578. anthro: {
  15579. height: math.unit(9 + 6 / 12, "feet"),
  15580. weight: math.unit(298, "lb"),
  15581. name: "Anthro",
  15582. image: {
  15583. source: "./media/characters/frifna/anthro.svg",
  15584. extra: 282 / 269,
  15585. bottom: 0.015
  15586. }
  15587. },
  15588. feral: {
  15589. height: math.unit(16 + 2 / 12, "feet"),
  15590. weight: math.unit(624, "lb"),
  15591. name: "Feral",
  15592. image: {
  15593. source: "./media/characters/frifna/feral.svg"
  15594. }
  15595. },
  15596. },
  15597. [
  15598. {
  15599. name: "Normal",
  15600. height: math.unit(9 + 6 / 12, "feet"),
  15601. default: true
  15602. },
  15603. ]
  15604. ))
  15605. characterMakers.push(() => makeCharacter(
  15606. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  15607. {
  15608. front: {
  15609. height: math.unit(6 + 2 / 12, "feet"),
  15610. weight: math.unit(168, "lb"),
  15611. name: "Front",
  15612. image: {
  15613. source: "./media/characters/elise/front.svg",
  15614. extra: 276 / 271
  15615. }
  15616. },
  15617. },
  15618. [
  15619. {
  15620. name: "Normal",
  15621. height: math.unit(6 + 2 / 12, "feet"),
  15622. default: true
  15623. },
  15624. ]
  15625. ))
  15626. characterMakers.push(() => makeCharacter(
  15627. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  15628. {
  15629. front: {
  15630. height: math.unit(5 + 10 / 12, "feet"),
  15631. weight: math.unit(210, "lb"),
  15632. name: "Front",
  15633. image: {
  15634. source: "./media/characters/glade/front.svg",
  15635. extra: 258 / 247,
  15636. bottom: 0.008
  15637. }
  15638. },
  15639. },
  15640. [
  15641. {
  15642. name: "Normal",
  15643. height: math.unit(5 + 10 / 12, "feet"),
  15644. default: true
  15645. },
  15646. ]
  15647. ))
  15648. characterMakers.push(() => makeCharacter(
  15649. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  15650. {
  15651. front: {
  15652. height: math.unit(5 + 10 / 12, "feet"),
  15653. weight: math.unit(129, "lb"),
  15654. name: "Front",
  15655. image: {
  15656. source: "./media/characters/rina/front.svg",
  15657. extra: 266 / 255,
  15658. bottom: 0.005
  15659. }
  15660. },
  15661. },
  15662. [
  15663. {
  15664. name: "Normal",
  15665. height: math.unit(5 + 10 / 12, "feet"),
  15666. default: true
  15667. },
  15668. ]
  15669. ))
  15670. characterMakers.push(() => makeCharacter(
  15671. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  15672. {
  15673. front: {
  15674. height: math.unit(6 + 1 / 12, "feet"),
  15675. weight: math.unit(192, "lb"),
  15676. name: "Front",
  15677. image: {
  15678. source: "./media/characters/veronica/front.svg",
  15679. extra: 319 / 309,
  15680. bottom: 0.005
  15681. }
  15682. },
  15683. },
  15684. [
  15685. {
  15686. name: "Normal",
  15687. height: math.unit(6 + 1 / 12, "feet"),
  15688. default: true
  15689. },
  15690. ]
  15691. ))
  15692. characterMakers.push(() => makeCharacter(
  15693. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  15694. {
  15695. front: {
  15696. height: math.unit(9 + 3 / 12, "feet"),
  15697. weight: math.unit(1100, "lb"),
  15698. name: "Front",
  15699. image: {
  15700. source: "./media/characters/braxton/front.svg",
  15701. extra: 1057 / 984,
  15702. bottom: 0.05
  15703. }
  15704. },
  15705. },
  15706. [
  15707. {
  15708. name: "Normal",
  15709. height: math.unit(9 + 3 / 12, "feet")
  15710. },
  15711. {
  15712. name: "Giant",
  15713. height: math.unit(300, "feet"),
  15714. default: true
  15715. },
  15716. {
  15717. name: "Macro",
  15718. height: math.unit(700, "feet")
  15719. },
  15720. {
  15721. name: "Megamacro",
  15722. height: math.unit(6000, "feet")
  15723. },
  15724. ]
  15725. ))
  15726. characterMakers.push(() => makeCharacter(
  15727. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  15728. {
  15729. front: {
  15730. height: math.unit(6 + 7 / 12, "feet"),
  15731. weight: math.unit(150, "lb"),
  15732. name: "Front",
  15733. image: {
  15734. source: "./media/characters/blue-feyonics/front.svg",
  15735. extra: 1403 / 1306,
  15736. bottom: 0.047
  15737. }
  15738. },
  15739. },
  15740. [
  15741. {
  15742. name: "Normal",
  15743. height: math.unit(6 + 7 / 12, "feet"),
  15744. default: true
  15745. },
  15746. ]
  15747. ))
  15748. characterMakers.push(() => makeCharacter(
  15749. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  15750. {
  15751. front: {
  15752. height: math.unit(1.8, "meters"),
  15753. weight: math.unit(60, "kg"),
  15754. name: "Front",
  15755. image: {
  15756. source: "./media/characters/maxwell/front.svg",
  15757. extra: 2060 / 1873
  15758. }
  15759. },
  15760. },
  15761. [
  15762. {
  15763. name: "Micro",
  15764. height: math.unit(1, "mm")
  15765. },
  15766. {
  15767. name: "Normal",
  15768. height: math.unit(1.8, "meter"),
  15769. default: true
  15770. },
  15771. {
  15772. name: "Macro",
  15773. height: math.unit(30, "meters")
  15774. },
  15775. {
  15776. name: "Megamacro",
  15777. height: math.unit(10, "km")
  15778. },
  15779. ]
  15780. ))
  15781. characterMakers.push(() => makeCharacter(
  15782. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  15783. {
  15784. front: {
  15785. height: math.unit(6, "feet"),
  15786. weight: math.unit(150, "lb"),
  15787. name: "Front",
  15788. image: {
  15789. source: "./media/characters/jack/front.svg",
  15790. extra: 1754 / 1640,
  15791. bottom: 0.01
  15792. }
  15793. },
  15794. },
  15795. [
  15796. {
  15797. name: "Normal",
  15798. height: math.unit(80000, "feet"),
  15799. default: true
  15800. },
  15801. {
  15802. name: "Max size",
  15803. height: math.unit(10, "lightyears")
  15804. },
  15805. ]
  15806. ))
  15807. characterMakers.push(() => makeCharacter(
  15808. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  15809. {
  15810. urban: {
  15811. height: math.unit(5, "feet"),
  15812. weight: math.unit(240, "lb"),
  15813. name: "Urban",
  15814. image: {
  15815. source: "./media/characters/cafat/urban.svg",
  15816. extra: 1223/1126,
  15817. bottom: 205/1428
  15818. }
  15819. },
  15820. summer: {
  15821. height: math.unit(5, "feet"),
  15822. weight: math.unit(240, "lb"),
  15823. name: "Summer",
  15824. image: {
  15825. source: "./media/characters/cafat/summer.svg",
  15826. extra: 1223/1126,
  15827. bottom: 205/1428
  15828. }
  15829. },
  15830. winter: {
  15831. height: math.unit(5, "feet"),
  15832. weight: math.unit(240, "lb"),
  15833. name: "Winter",
  15834. image: {
  15835. source: "./media/characters/cafat/winter.svg",
  15836. extra: 1223/1126,
  15837. bottom: 205/1428
  15838. }
  15839. },
  15840. lingerie: {
  15841. height: math.unit(5, "feet"),
  15842. weight: math.unit(240, "lb"),
  15843. name: "Lingerie",
  15844. image: {
  15845. source: "./media/characters/cafat/lingerie.svg",
  15846. extra: 1223/1126,
  15847. bottom: 205/1428
  15848. }
  15849. },
  15850. upright: {
  15851. height: math.unit(6.3, "feet"),
  15852. weight: math.unit(240, "lb"),
  15853. name: "Upright",
  15854. image: {
  15855. source: "./media/characters/cafat/upright.svg",
  15856. bottom: 0.01
  15857. }
  15858. },
  15859. uprightFull: {
  15860. height: math.unit(6.3, "feet"),
  15861. weight: math.unit(240, "lb"),
  15862. name: "Upright (Full)",
  15863. image: {
  15864. source: "./media/characters/cafat/upright-full.svg",
  15865. bottom: 0.01
  15866. }
  15867. },
  15868. },
  15869. [
  15870. {
  15871. name: "Small",
  15872. height: math.unit(5, "feet"),
  15873. default: true
  15874. },
  15875. {
  15876. name: "Large",
  15877. height: math.unit(13, "feet")
  15878. },
  15879. ]
  15880. ))
  15881. characterMakers.push(() => makeCharacter(
  15882. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  15883. {
  15884. front: {
  15885. height: math.unit(6, "feet"),
  15886. weight: math.unit(150, "lb"),
  15887. name: "Front",
  15888. image: {
  15889. source: "./media/characters/verin-raharra/front.svg",
  15890. extra: 5019 / 4835,
  15891. bottom: 0.023
  15892. }
  15893. },
  15894. },
  15895. [
  15896. {
  15897. name: "Normal",
  15898. height: math.unit(7 + 5 / 12, "feet"),
  15899. default: true
  15900. },
  15901. {
  15902. name: "Upsized",
  15903. height: math.unit(20, "feet")
  15904. },
  15905. ]
  15906. ))
  15907. characterMakers.push(() => makeCharacter(
  15908. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  15909. {
  15910. front: {
  15911. height: math.unit(7, "feet"),
  15912. weight: math.unit(230, "lb"),
  15913. name: "Front",
  15914. image: {
  15915. source: "./media/characters/nakata/front.svg",
  15916. extra: 1.005,
  15917. bottom: 0.01
  15918. }
  15919. },
  15920. },
  15921. [
  15922. {
  15923. name: "Normal",
  15924. height: math.unit(7, "feet"),
  15925. default: true
  15926. },
  15927. {
  15928. name: "Big",
  15929. height: math.unit(14, "feet")
  15930. },
  15931. {
  15932. name: "Macro",
  15933. height: math.unit(400, "feet")
  15934. },
  15935. ]
  15936. ))
  15937. characterMakers.push(() => makeCharacter(
  15938. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  15939. {
  15940. front: {
  15941. height: math.unit(4.91, "feet"),
  15942. weight: math.unit(100, "lb"),
  15943. name: "Front",
  15944. image: {
  15945. source: "./media/characters/lily/front.svg",
  15946. extra: 1585 / 1415,
  15947. bottom: 0.02
  15948. }
  15949. },
  15950. },
  15951. [
  15952. {
  15953. name: "Normal",
  15954. height: math.unit(4.91, "feet"),
  15955. default: true
  15956. },
  15957. ]
  15958. ))
  15959. characterMakers.push(() => makeCharacter(
  15960. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  15961. {
  15962. laying: {
  15963. height: math.unit(4 + 4 / 12, "feet"),
  15964. weight: math.unit(600, "lb"),
  15965. name: "Laying",
  15966. image: {
  15967. source: "./media/characters/sheila/laying.svg",
  15968. extra: 1333 / 1265,
  15969. bottom: 0.16
  15970. }
  15971. },
  15972. },
  15973. [
  15974. {
  15975. name: "Normal",
  15976. height: math.unit(4 + 4 / 12, "feet"),
  15977. default: true
  15978. },
  15979. ]
  15980. ))
  15981. characterMakers.push(() => makeCharacter(
  15982. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  15983. {
  15984. front: {
  15985. height: math.unit(6, "feet"),
  15986. weight: math.unit(190, "lb"),
  15987. name: "Front",
  15988. image: {
  15989. source: "./media/characters/sax/front.svg",
  15990. extra: 1187 / 973,
  15991. bottom: 0.042
  15992. }
  15993. },
  15994. },
  15995. [
  15996. {
  15997. name: "Micro",
  15998. height: math.unit(4, "inches"),
  15999. default: true
  16000. },
  16001. ]
  16002. ))
  16003. characterMakers.push(() => makeCharacter(
  16004. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  16005. {
  16006. front: {
  16007. height: math.unit(6, "feet"),
  16008. weight: math.unit(150, "lb"),
  16009. name: "Front",
  16010. image: {
  16011. source: "./media/characters/pandora/front.svg",
  16012. extra: 2720 / 2556,
  16013. bottom: 0.015
  16014. }
  16015. },
  16016. back: {
  16017. height: math.unit(6, "feet"),
  16018. weight: math.unit(150, "lb"),
  16019. name: "Back",
  16020. image: {
  16021. source: "./media/characters/pandora/back.svg",
  16022. extra: 2720 / 2556,
  16023. bottom: 0.01
  16024. }
  16025. },
  16026. beans: {
  16027. height: math.unit(6 / 8, "feet"),
  16028. name: "Beans",
  16029. image: {
  16030. source: "./media/characters/pandora/beans.svg"
  16031. }
  16032. },
  16033. collar: {
  16034. height: math.unit(0.31, "feet"),
  16035. name: "Collar",
  16036. image: {
  16037. source: "./media/characters/pandora/collar.svg"
  16038. }
  16039. },
  16040. skirt: {
  16041. height: math.unit(6, "feet"),
  16042. weight: math.unit(150, "lb"),
  16043. name: "Skirt",
  16044. image: {
  16045. source: "./media/characters/pandora/skirt.svg",
  16046. extra: 1622 / 1525,
  16047. bottom: 0.015
  16048. }
  16049. },
  16050. hoodie: {
  16051. height: math.unit(6, "feet"),
  16052. weight: math.unit(150, "lb"),
  16053. name: "Hoodie",
  16054. image: {
  16055. source: "./media/characters/pandora/hoodie.svg",
  16056. extra: 1622 / 1525,
  16057. bottom: 0.015
  16058. }
  16059. },
  16060. casual: {
  16061. height: math.unit(6, "feet"),
  16062. weight: math.unit(150, "lb"),
  16063. name: "Casual",
  16064. image: {
  16065. source: "./media/characters/pandora/casual.svg",
  16066. extra: 1622 / 1525,
  16067. bottom: 0.015
  16068. }
  16069. },
  16070. },
  16071. [
  16072. {
  16073. name: "Normal",
  16074. height: math.unit(6, "feet")
  16075. },
  16076. {
  16077. name: "Big Steppy",
  16078. height: math.unit(1, "km"),
  16079. default: true
  16080. },
  16081. {
  16082. name: "Galactic Steppy",
  16083. height: math.unit(2, "gigameters")
  16084. },
  16085. ]
  16086. ))
  16087. characterMakers.push(() => makeCharacter(
  16088. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  16089. {
  16090. side: {
  16091. height: math.unit(10, "feet"),
  16092. weight: math.unit(800, "kg"),
  16093. name: "Side",
  16094. image: {
  16095. source: "./media/characters/venio-darcony/side.svg",
  16096. extra: 1373 / 1003,
  16097. bottom: 0.037
  16098. }
  16099. },
  16100. front: {
  16101. height: math.unit(19, "feet"),
  16102. weight: math.unit(800, "kg"),
  16103. name: "Front",
  16104. image: {
  16105. source: "./media/characters/venio-darcony/front.svg"
  16106. }
  16107. },
  16108. back: {
  16109. height: math.unit(19, "feet"),
  16110. weight: math.unit(800, "kg"),
  16111. name: "Back",
  16112. image: {
  16113. source: "./media/characters/venio-darcony/back.svg"
  16114. }
  16115. },
  16116. sideNsfw: {
  16117. height: math.unit(10, "feet"),
  16118. weight: math.unit(800, "kg"),
  16119. name: "Side (NSFW)",
  16120. image: {
  16121. source: "./media/characters/venio-darcony/side-nsfw.svg",
  16122. extra: 1373 / 1003,
  16123. bottom: 0.037
  16124. }
  16125. },
  16126. frontNsfw: {
  16127. height: math.unit(19, "feet"),
  16128. weight: math.unit(800, "kg"),
  16129. name: "Front (NSFW)",
  16130. image: {
  16131. source: "./media/characters/venio-darcony/front-nsfw.svg"
  16132. }
  16133. },
  16134. backNsfw: {
  16135. height: math.unit(19, "feet"),
  16136. weight: math.unit(800, "kg"),
  16137. name: "Back (NSFW)",
  16138. image: {
  16139. source: "./media/characters/venio-darcony/back-nsfw.svg"
  16140. }
  16141. },
  16142. sideArmored: {
  16143. height: math.unit(10, "feet"),
  16144. weight: math.unit(800, "kg"),
  16145. name: "Side (Armored)",
  16146. image: {
  16147. source: "./media/characters/venio-darcony/side-armored.svg",
  16148. extra: 1373 / 1003,
  16149. bottom: 0.037
  16150. }
  16151. },
  16152. frontArmored: {
  16153. height: math.unit(19, "feet"),
  16154. weight: math.unit(900, "kg"),
  16155. name: "Front (Armored)",
  16156. image: {
  16157. source: "./media/characters/venio-darcony/front-armored.svg"
  16158. }
  16159. },
  16160. backArmored: {
  16161. height: math.unit(19, "feet"),
  16162. weight: math.unit(900, "kg"),
  16163. name: "Back (Armored)",
  16164. image: {
  16165. source: "./media/characters/venio-darcony/back-armored.svg"
  16166. }
  16167. },
  16168. sword: {
  16169. height: math.unit(10, "feet"),
  16170. weight: math.unit(50, "lb"),
  16171. name: "Sword",
  16172. image: {
  16173. source: "./media/characters/venio-darcony/sword.svg"
  16174. }
  16175. },
  16176. },
  16177. [
  16178. {
  16179. name: "Normal",
  16180. height: math.unit(10, "feet")
  16181. },
  16182. {
  16183. name: "Macro",
  16184. height: math.unit(130, "feet"),
  16185. default: true
  16186. },
  16187. {
  16188. name: "Macro+",
  16189. height: math.unit(240, "feet")
  16190. },
  16191. ]
  16192. ))
  16193. characterMakers.push(() => makeCharacter(
  16194. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  16195. {
  16196. front: {
  16197. height: math.unit(6, "feet"),
  16198. weight: math.unit(150, "lb"),
  16199. name: "Front",
  16200. image: {
  16201. source: "./media/characters/veski/front.svg",
  16202. extra: 1299 / 1225,
  16203. bottom: 0.04
  16204. }
  16205. },
  16206. back: {
  16207. height: math.unit(6, "feet"),
  16208. weight: math.unit(150, "lb"),
  16209. name: "Back",
  16210. image: {
  16211. source: "./media/characters/veski/back.svg",
  16212. extra: 1299 / 1225,
  16213. bottom: 0.008
  16214. }
  16215. },
  16216. maw: {
  16217. height: math.unit(1.5 * 1.21, "feet"),
  16218. name: "Maw",
  16219. image: {
  16220. source: "./media/characters/veski/maw.svg"
  16221. }
  16222. },
  16223. },
  16224. [
  16225. {
  16226. name: "Macro",
  16227. height: math.unit(2, "km"),
  16228. default: true
  16229. },
  16230. ]
  16231. ))
  16232. characterMakers.push(() => makeCharacter(
  16233. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  16234. {
  16235. front: {
  16236. height: math.unit(5 + 7 / 12, "feet"),
  16237. name: "Front",
  16238. image: {
  16239. source: "./media/characters/isabelle/front.svg",
  16240. extra: 2130 / 1976,
  16241. bottom: 0.05
  16242. }
  16243. },
  16244. },
  16245. [
  16246. {
  16247. name: "Supermicro",
  16248. height: math.unit(10, "micrometers")
  16249. },
  16250. {
  16251. name: "Micro",
  16252. height: math.unit(1, "inch")
  16253. },
  16254. {
  16255. name: "Tiny",
  16256. height: math.unit(5, "inches")
  16257. },
  16258. {
  16259. name: "Standard",
  16260. height: math.unit(5 + 7 / 12, "inches")
  16261. },
  16262. {
  16263. name: "Macro",
  16264. height: math.unit(80, "meters"),
  16265. default: true
  16266. },
  16267. {
  16268. name: "Megamacro",
  16269. height: math.unit(250, "meters")
  16270. },
  16271. {
  16272. name: "Gigamacro",
  16273. height: math.unit(5, "km")
  16274. },
  16275. {
  16276. name: "Cosmic",
  16277. height: math.unit(2.5e6, "miles")
  16278. },
  16279. ]
  16280. ))
  16281. characterMakers.push(() => makeCharacter(
  16282. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  16283. {
  16284. front: {
  16285. height: math.unit(6, "feet"),
  16286. weight: math.unit(150, "lb"),
  16287. name: "Front",
  16288. image: {
  16289. source: "./media/characters/hanzo/front.svg",
  16290. extra: 374 / 344,
  16291. bottom: 0.02
  16292. }
  16293. },
  16294. },
  16295. [
  16296. {
  16297. name: "Normal",
  16298. height: math.unit(8, "feet"),
  16299. default: true
  16300. },
  16301. ]
  16302. ))
  16303. characterMakers.push(() => makeCharacter(
  16304. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  16305. {
  16306. front: {
  16307. height: math.unit(7, "feet"),
  16308. weight: math.unit(130, "lb"),
  16309. name: "Front",
  16310. image: {
  16311. source: "./media/characters/anna/front.svg",
  16312. extra: 169 / 145,
  16313. bottom: 0.06
  16314. }
  16315. },
  16316. full: {
  16317. height: math.unit(4.96, "feet"),
  16318. weight: math.unit(220, "lb"),
  16319. name: "Full",
  16320. image: {
  16321. source: "./media/characters/anna/full.svg",
  16322. extra: 138 / 114,
  16323. bottom: 0.15
  16324. }
  16325. },
  16326. tongue: {
  16327. height: math.unit(2.53, "feet"),
  16328. name: "Tongue",
  16329. image: {
  16330. source: "./media/characters/anna/tongue.svg"
  16331. }
  16332. },
  16333. },
  16334. [
  16335. {
  16336. name: "Normal",
  16337. height: math.unit(7, "feet"),
  16338. default: true
  16339. },
  16340. ]
  16341. ))
  16342. characterMakers.push(() => makeCharacter(
  16343. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  16344. {
  16345. front: {
  16346. height: math.unit(7, "feet"),
  16347. weight: math.unit(150, "lb"),
  16348. name: "Front",
  16349. image: {
  16350. source: "./media/characters/ian-corvid/front.svg",
  16351. extra: 150 / 142,
  16352. bottom: 0.02
  16353. }
  16354. },
  16355. back: {
  16356. height: math.unit(7, "feet"),
  16357. weight: math.unit(150, "lb"),
  16358. name: "Back",
  16359. image: {
  16360. source: "./media/characters/ian-corvid/back.svg",
  16361. extra: 150 / 143,
  16362. bottom: 0.01
  16363. }
  16364. },
  16365. stomping: {
  16366. height: math.unit(7, "feet"),
  16367. weight: math.unit(150, "lb"),
  16368. name: "Stomping",
  16369. image: {
  16370. source: "./media/characters/ian-corvid/stomping.svg",
  16371. extra: 76 / 72
  16372. }
  16373. },
  16374. sitting: {
  16375. height: math.unit(7 / 1.8, "feet"),
  16376. weight: math.unit(150, "lb"),
  16377. name: "Sitting",
  16378. image: {
  16379. source: "./media/characters/ian-corvid/sitting.svg",
  16380. extra: 1400 / 1269,
  16381. bottom: 0.15
  16382. }
  16383. },
  16384. },
  16385. [
  16386. {
  16387. name: "Tiny Microw",
  16388. height: math.unit(1, "inch")
  16389. },
  16390. {
  16391. name: "Microw",
  16392. height: math.unit(6, "inches")
  16393. },
  16394. {
  16395. name: "Crow",
  16396. height: math.unit(7 + 1 / 12, "feet"),
  16397. default: true
  16398. },
  16399. {
  16400. name: "Macrow",
  16401. height: math.unit(176, "feet")
  16402. },
  16403. ]
  16404. ))
  16405. characterMakers.push(() => makeCharacter(
  16406. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  16407. {
  16408. front: {
  16409. height: math.unit(5 + 7 / 12, "feet"),
  16410. weight: math.unit(147, "lb"),
  16411. name: "Front",
  16412. image: {
  16413. source: "./media/characters/natalie-kellon/front.svg",
  16414. extra: 1214 / 1141,
  16415. bottom: 0.02
  16416. }
  16417. },
  16418. },
  16419. [
  16420. {
  16421. name: "Micro",
  16422. height: math.unit(1 / 16, "inch")
  16423. },
  16424. {
  16425. name: "Tiny",
  16426. height: math.unit(4, "inches")
  16427. },
  16428. {
  16429. name: "Normal",
  16430. height: math.unit(5 + 7 / 12, "feet"),
  16431. default: true
  16432. },
  16433. {
  16434. name: "Amazon",
  16435. height: math.unit(12, "feet")
  16436. },
  16437. {
  16438. name: "Giantess",
  16439. height: math.unit(160, "meters")
  16440. },
  16441. {
  16442. name: "Titaness",
  16443. height: math.unit(800, "meters")
  16444. },
  16445. ]
  16446. ))
  16447. characterMakers.push(() => makeCharacter(
  16448. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  16449. {
  16450. front: {
  16451. height: math.unit(6, "feet"),
  16452. weight: math.unit(150, "lb"),
  16453. name: "Front",
  16454. image: {
  16455. source: "./media/characters/alluria/front.svg",
  16456. extra: 806 / 738,
  16457. bottom: 0.01
  16458. }
  16459. },
  16460. side: {
  16461. height: math.unit(6, "feet"),
  16462. weight: math.unit(150, "lb"),
  16463. name: "Side",
  16464. image: {
  16465. source: "./media/characters/alluria/side.svg",
  16466. extra: 800 / 750,
  16467. }
  16468. },
  16469. back: {
  16470. height: math.unit(6, "feet"),
  16471. weight: math.unit(150, "lb"),
  16472. name: "Back",
  16473. image: {
  16474. source: "./media/characters/alluria/back.svg",
  16475. extra: 806 / 738,
  16476. }
  16477. },
  16478. frontMaid: {
  16479. height: math.unit(6, "feet"),
  16480. weight: math.unit(150, "lb"),
  16481. name: "Front (Maid)",
  16482. image: {
  16483. source: "./media/characters/alluria/front-maid.svg",
  16484. extra: 806 / 738,
  16485. bottom: 0.01
  16486. }
  16487. },
  16488. sideMaid: {
  16489. height: math.unit(6, "feet"),
  16490. weight: math.unit(150, "lb"),
  16491. name: "Side (Maid)",
  16492. image: {
  16493. source: "./media/characters/alluria/side-maid.svg",
  16494. extra: 800 / 750,
  16495. bottom: 0.005
  16496. }
  16497. },
  16498. backMaid: {
  16499. height: math.unit(6, "feet"),
  16500. weight: math.unit(150, "lb"),
  16501. name: "Back (Maid)",
  16502. image: {
  16503. source: "./media/characters/alluria/back-maid.svg",
  16504. extra: 806 / 738,
  16505. }
  16506. },
  16507. },
  16508. [
  16509. {
  16510. name: "Micro",
  16511. height: math.unit(6, "inches"),
  16512. default: true
  16513. },
  16514. ]
  16515. ))
  16516. characterMakers.push(() => makeCharacter(
  16517. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  16518. {
  16519. front: {
  16520. height: math.unit(6, "feet"),
  16521. weight: math.unit(150, "lb"),
  16522. name: "Front",
  16523. image: {
  16524. source: "./media/characters/kyle/front.svg",
  16525. extra: 1069 / 962,
  16526. bottom: 77.228 / 1727.45
  16527. }
  16528. },
  16529. },
  16530. [
  16531. {
  16532. name: "Macro",
  16533. height: math.unit(150, "feet"),
  16534. default: true
  16535. },
  16536. ]
  16537. ))
  16538. characterMakers.push(() => makeCharacter(
  16539. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  16540. {
  16541. front: {
  16542. height: math.unit(6, "feet"),
  16543. weight: math.unit(300, "lb"),
  16544. name: "Front",
  16545. image: {
  16546. source: "./media/characters/duncan/front.svg",
  16547. extra: 1650 / 1482,
  16548. bottom: 0.05
  16549. }
  16550. },
  16551. },
  16552. [
  16553. {
  16554. name: "Macro",
  16555. height: math.unit(100, "feet"),
  16556. default: true
  16557. },
  16558. ]
  16559. ))
  16560. characterMakers.push(() => makeCharacter(
  16561. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  16562. {
  16563. front: {
  16564. height: math.unit(5 + 4 / 12, "feet"),
  16565. weight: math.unit(220, "lb"),
  16566. name: "Front",
  16567. image: {
  16568. source: "./media/characters/memory/front.svg",
  16569. extra: 3641 / 3545,
  16570. bottom: 0.03
  16571. }
  16572. },
  16573. back: {
  16574. height: math.unit(5 + 4 / 12, "feet"),
  16575. weight: math.unit(220, "lb"),
  16576. name: "Back",
  16577. image: {
  16578. source: "./media/characters/memory/back.svg",
  16579. extra: 3641 / 3545,
  16580. bottom: 0.025
  16581. }
  16582. },
  16583. frontSkirt: {
  16584. height: math.unit(5 + 4 / 12, "feet"),
  16585. weight: math.unit(220, "lb"),
  16586. name: "Front (Skirt)",
  16587. image: {
  16588. source: "./media/characters/memory/front-skirt.svg",
  16589. extra: 3641 / 3545,
  16590. bottom: 0.03
  16591. }
  16592. },
  16593. frontDress: {
  16594. height: math.unit(5 + 4 / 12, "feet"),
  16595. weight: math.unit(220, "lb"),
  16596. name: "Front (Dress)",
  16597. image: {
  16598. source: "./media/characters/memory/front-dress.svg",
  16599. extra: 3641 / 3545,
  16600. bottom: 0.03
  16601. }
  16602. },
  16603. },
  16604. [
  16605. {
  16606. name: "Micro",
  16607. height: math.unit(6, "inches"),
  16608. default: true
  16609. },
  16610. {
  16611. name: "Normal",
  16612. height: math.unit(5 + 4 / 12, "feet")
  16613. },
  16614. ]
  16615. ))
  16616. characterMakers.push(() => makeCharacter(
  16617. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  16618. {
  16619. front: {
  16620. height: math.unit(4 + 11 / 12, "feet"),
  16621. weight: math.unit(100, "lb"),
  16622. name: "Front",
  16623. image: {
  16624. source: "./media/characters/luno/front.svg",
  16625. extra: 1535 / 1487,
  16626. bottom: 0.03
  16627. }
  16628. },
  16629. },
  16630. [
  16631. {
  16632. name: "Micro",
  16633. height: math.unit(3, "inches")
  16634. },
  16635. {
  16636. name: "Normal",
  16637. height: math.unit(4 + 11 / 12, "feet"),
  16638. default: true
  16639. },
  16640. {
  16641. name: "Macro",
  16642. height: math.unit(300, "feet")
  16643. },
  16644. {
  16645. name: "Megamacro",
  16646. height: math.unit(700, "miles")
  16647. },
  16648. ]
  16649. ))
  16650. characterMakers.push(() => makeCharacter(
  16651. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  16652. {
  16653. front: {
  16654. height: math.unit(6 + 2 / 12, "feet"),
  16655. weight: math.unit(170, "lb"),
  16656. name: "Front",
  16657. image: {
  16658. source: "./media/characters/jamesy/front.svg",
  16659. extra: 440 / 382,
  16660. bottom: 0.005
  16661. }
  16662. },
  16663. },
  16664. [
  16665. {
  16666. name: "Micro",
  16667. height: math.unit(3, "inches")
  16668. },
  16669. {
  16670. name: "Normal",
  16671. height: math.unit(6 + 2 / 12, "feet"),
  16672. default: true
  16673. },
  16674. {
  16675. name: "Macro",
  16676. height: math.unit(300, "feet")
  16677. },
  16678. {
  16679. name: "Megamacro",
  16680. height: math.unit(700, "miles")
  16681. },
  16682. ]
  16683. ))
  16684. characterMakers.push(() => makeCharacter(
  16685. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  16686. {
  16687. front: {
  16688. height: math.unit(6, "feet"),
  16689. weight: math.unit(160, "lb"),
  16690. name: "Front",
  16691. image: {
  16692. source: "./media/characters/mark/front.svg",
  16693. extra: 3300 / 3100,
  16694. bottom: 136.42 / 3440.47
  16695. }
  16696. },
  16697. },
  16698. [
  16699. {
  16700. name: "Macro",
  16701. height: math.unit(120, "meters")
  16702. },
  16703. {
  16704. name: "Bigger Macro",
  16705. height: math.unit(350, "meters")
  16706. },
  16707. {
  16708. name: "Megamacro",
  16709. height: math.unit(8, "km"),
  16710. default: true
  16711. },
  16712. {
  16713. name: "Continental",
  16714. height: math.unit(4550, "km")
  16715. },
  16716. {
  16717. name: "Planetary",
  16718. height: math.unit(65000, "km")
  16719. },
  16720. ]
  16721. ))
  16722. characterMakers.push(() => makeCharacter(
  16723. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  16724. {
  16725. front: {
  16726. height: math.unit(6, "feet"),
  16727. weight: math.unit(400, "lb"),
  16728. name: "Front",
  16729. image: {
  16730. source: "./media/characters/mac/front.svg",
  16731. extra: 1048 / 987.7,
  16732. bottom: 60 / 1107.6,
  16733. }
  16734. },
  16735. },
  16736. [
  16737. {
  16738. name: "Macro",
  16739. height: math.unit(500, "feet"),
  16740. default: true
  16741. },
  16742. ]
  16743. ))
  16744. characterMakers.push(() => makeCharacter(
  16745. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  16746. {
  16747. front: {
  16748. height: math.unit(5 + 2 / 12, "feet"),
  16749. weight: math.unit(190, "lb"),
  16750. name: "Front",
  16751. image: {
  16752. source: "./media/characters/bari/front.svg",
  16753. extra: 3156 / 2880,
  16754. bottom: 0.03
  16755. }
  16756. },
  16757. back: {
  16758. height: math.unit(5 + 2 / 12, "feet"),
  16759. weight: math.unit(190, "lb"),
  16760. name: "Back",
  16761. image: {
  16762. source: "./media/characters/bari/back.svg",
  16763. extra: 3260 / 2834,
  16764. bottom: 0.025
  16765. }
  16766. },
  16767. frontPlush: {
  16768. height: math.unit(5 + 2 / 12, "feet"),
  16769. weight: math.unit(190, "lb"),
  16770. name: "Front (Plush)",
  16771. image: {
  16772. source: "./media/characters/bari/front-plush.svg",
  16773. extra: 1112 / 1061,
  16774. bottom: 0.002
  16775. }
  16776. },
  16777. },
  16778. [
  16779. {
  16780. name: "Micro",
  16781. height: math.unit(3, "inches")
  16782. },
  16783. {
  16784. name: "Normal",
  16785. height: math.unit(5 + 2 / 12, "feet"),
  16786. default: true
  16787. },
  16788. {
  16789. name: "Macro",
  16790. height: math.unit(20, "feet")
  16791. },
  16792. ]
  16793. ))
  16794. characterMakers.push(() => makeCharacter(
  16795. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  16796. {
  16797. front: {
  16798. height: math.unit(6 + 1 / 12, "feet"),
  16799. weight: math.unit(275, "lb"),
  16800. name: "Front",
  16801. image: {
  16802. source: "./media/characters/hunter-misha-raven/front.svg"
  16803. }
  16804. },
  16805. },
  16806. [
  16807. {
  16808. name: "Mortal",
  16809. height: math.unit(6 + 1 / 12, "feet")
  16810. },
  16811. {
  16812. name: "Divine",
  16813. height: math.unit(1.12134e34, "parsecs"),
  16814. default: true
  16815. },
  16816. ]
  16817. ))
  16818. characterMakers.push(() => makeCharacter(
  16819. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  16820. {
  16821. front: {
  16822. height: math.unit(6 + 3 / 12, "feet"),
  16823. weight: math.unit(220, "lb"),
  16824. name: "Front",
  16825. image: {
  16826. source: "./media/characters/max-calore/front.svg",
  16827. extra: 1700 / 1648,
  16828. bottom: 0.01
  16829. }
  16830. },
  16831. back: {
  16832. height: math.unit(6 + 3 / 12, "feet"),
  16833. weight: math.unit(220, "lb"),
  16834. name: "Back",
  16835. image: {
  16836. source: "./media/characters/max-calore/back.svg",
  16837. extra: 1700 / 1648,
  16838. bottom: 0.01
  16839. }
  16840. },
  16841. },
  16842. [
  16843. {
  16844. name: "Normal",
  16845. height: math.unit(6 + 3 / 12, "feet"),
  16846. default: true
  16847. },
  16848. ]
  16849. ))
  16850. characterMakers.push(() => makeCharacter(
  16851. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  16852. {
  16853. side: {
  16854. height: math.unit(2 + 8 / 12, "feet"),
  16855. weight: math.unit(99, "lb"),
  16856. name: "Side",
  16857. image: {
  16858. source: "./media/characters/aspen/side.svg",
  16859. extra: 152 / 138,
  16860. bottom: 0.032
  16861. }
  16862. },
  16863. },
  16864. [
  16865. {
  16866. name: "Normal",
  16867. height: math.unit(2 + 8 / 12, "feet"),
  16868. default: true
  16869. },
  16870. ]
  16871. ))
  16872. characterMakers.push(() => makeCharacter(
  16873. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  16874. {
  16875. side: {
  16876. height: math.unit(3 + 2 / 12, "feet"),
  16877. weight: math.unit(224, "lb"),
  16878. name: "Side",
  16879. image: {
  16880. source: "./media/characters/sheila-feral-wolf/side.svg",
  16881. extra: 179 / 166,
  16882. bottom: 0.03
  16883. }
  16884. },
  16885. },
  16886. [
  16887. {
  16888. name: "Normal",
  16889. height: math.unit(3 + 2 / 12, "feet"),
  16890. default: true
  16891. },
  16892. ]
  16893. ))
  16894. characterMakers.push(() => makeCharacter(
  16895. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  16896. {
  16897. side: {
  16898. height: math.unit(1 + 9 / 12, "feet"),
  16899. weight: math.unit(38, "lb"),
  16900. name: "Side",
  16901. image: {
  16902. source: "./media/characters/michelle/side.svg",
  16903. extra: 147 / 136.7,
  16904. bottom: 0.03
  16905. }
  16906. },
  16907. },
  16908. [
  16909. {
  16910. name: "Normal",
  16911. height: math.unit(1 + 9 / 12, "feet"),
  16912. default: true
  16913. },
  16914. ]
  16915. ))
  16916. characterMakers.push(() => makeCharacter(
  16917. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  16918. {
  16919. front: {
  16920. height: math.unit(1 + 1 / 12, "feet"),
  16921. weight: math.unit(18, "lb"),
  16922. name: "Front",
  16923. image: {
  16924. source: "./media/characters/nino/front.svg"
  16925. }
  16926. },
  16927. },
  16928. [
  16929. {
  16930. name: "Normal",
  16931. height: math.unit(1 + 1 / 12, "feet"),
  16932. default: true
  16933. },
  16934. ]
  16935. ))
  16936. characterMakers.push(() => makeCharacter(
  16937. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  16938. {
  16939. front: {
  16940. height: math.unit(1, "feet"),
  16941. weight: math.unit(16, "lb"),
  16942. name: "Front",
  16943. image: {
  16944. source: "./media/characters/viola/front.svg"
  16945. }
  16946. },
  16947. },
  16948. [
  16949. {
  16950. name: "Normal",
  16951. height: math.unit(1, "feet"),
  16952. default: true
  16953. },
  16954. ]
  16955. ))
  16956. characterMakers.push(() => makeCharacter(
  16957. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  16958. {
  16959. front: {
  16960. height: math.unit(6 + 5 / 12, "feet"),
  16961. weight: math.unit(580, "lb"),
  16962. name: "Front",
  16963. image: {
  16964. source: "./media/characters/atlas/front.svg",
  16965. extra: 298.5 / 290,
  16966. bottom: 0.015
  16967. }
  16968. },
  16969. },
  16970. [
  16971. {
  16972. name: "Normal",
  16973. height: math.unit(6 + 5 / 12, "feet"),
  16974. default: true
  16975. },
  16976. ]
  16977. ))
  16978. characterMakers.push(() => makeCharacter(
  16979. { name: "Davy", species: ["cat"], tags: ["feral"] },
  16980. {
  16981. side: {
  16982. height: math.unit(1 + 10 / 12, "feet"),
  16983. weight: math.unit(25, "lb"),
  16984. name: "Side",
  16985. image: {
  16986. source: "./media/characters/davy/side.svg",
  16987. extra: 200 / 170,
  16988. bottom: 0.01
  16989. }
  16990. },
  16991. },
  16992. [
  16993. {
  16994. name: "Normal",
  16995. height: math.unit(1 + 10 / 12, "feet"),
  16996. default: true
  16997. },
  16998. ]
  16999. ))
  17000. characterMakers.push(() => makeCharacter(
  17001. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  17002. {
  17003. side: {
  17004. height: math.unit(4 + 8 / 12, "feet"),
  17005. weight: math.unit(166, "lb"),
  17006. name: "Side",
  17007. image: {
  17008. source: "./media/characters/fiona/side.svg",
  17009. extra: 232 / 220,
  17010. bottom: 0.03
  17011. }
  17012. },
  17013. },
  17014. [
  17015. {
  17016. name: "Normal",
  17017. height: math.unit(4 + 8 / 12, "feet"),
  17018. default: true
  17019. },
  17020. ]
  17021. ))
  17022. characterMakers.push(() => makeCharacter(
  17023. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  17024. {
  17025. front: {
  17026. height: math.unit(2, "feet"),
  17027. weight: math.unit(62, "lb"),
  17028. name: "Front",
  17029. image: {
  17030. source: "./media/characters/lyla/front.svg",
  17031. bottom: 0.1
  17032. }
  17033. },
  17034. },
  17035. [
  17036. {
  17037. name: "Normal",
  17038. height: math.unit(2, "feet"),
  17039. default: true
  17040. },
  17041. ]
  17042. ))
  17043. characterMakers.push(() => makeCharacter(
  17044. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  17045. {
  17046. side: {
  17047. height: math.unit(1.8, "feet"),
  17048. weight: math.unit(44, "lb"),
  17049. name: "Side",
  17050. image: {
  17051. source: "./media/characters/perseus/side.svg",
  17052. bottom: 0.21
  17053. }
  17054. },
  17055. },
  17056. [
  17057. {
  17058. name: "Normal",
  17059. height: math.unit(1.8, "feet"),
  17060. default: true
  17061. },
  17062. ]
  17063. ))
  17064. characterMakers.push(() => makeCharacter(
  17065. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  17066. {
  17067. side: {
  17068. height: math.unit(4 + 2 / 12, "feet"),
  17069. weight: math.unit(20, "lb"),
  17070. name: "Side",
  17071. image: {
  17072. source: "./media/characters/remus/side.svg"
  17073. }
  17074. },
  17075. },
  17076. [
  17077. {
  17078. name: "Normal",
  17079. height: math.unit(4 + 2 / 12, "feet"),
  17080. default: true
  17081. },
  17082. ]
  17083. ))
  17084. characterMakers.push(() => makeCharacter(
  17085. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  17086. {
  17087. front: {
  17088. height: math.unit(4 + 11 / 12, "feet"),
  17089. weight: math.unit(114, "lb"),
  17090. name: "Front",
  17091. image: {
  17092. source: "./media/characters/raf/front.svg",
  17093. bottom: 20.5 / 1863
  17094. }
  17095. },
  17096. side: {
  17097. height: math.unit(4 + 11 / 12, "feet"),
  17098. weight: math.unit(114, "lb"),
  17099. name: "Side",
  17100. image: {
  17101. source: "./media/characters/raf/side.svg",
  17102. bottom: 22 / 1822
  17103. }
  17104. },
  17105. },
  17106. [
  17107. {
  17108. name: "Micro",
  17109. height: math.unit(2, "inches")
  17110. },
  17111. {
  17112. name: "Normal",
  17113. height: math.unit(4 + 11 / 12, "feet"),
  17114. default: true
  17115. },
  17116. {
  17117. name: "Macro",
  17118. height: math.unit(70, "feet")
  17119. },
  17120. ]
  17121. ))
  17122. characterMakers.push(() => makeCharacter(
  17123. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  17124. {
  17125. front: {
  17126. height: math.unit(1.5, "meters"),
  17127. weight: math.unit(68, "kg"),
  17128. name: "Front",
  17129. image: {
  17130. source: "./media/characters/liam-einarr/front.svg",
  17131. extra: 2822 / 2666
  17132. }
  17133. },
  17134. back: {
  17135. height: math.unit(1.5, "meters"),
  17136. weight: math.unit(68, "kg"),
  17137. name: "Back",
  17138. image: {
  17139. source: "./media/characters/liam-einarr/back.svg",
  17140. extra: 2822 / 2666,
  17141. bottom: 0.015
  17142. }
  17143. },
  17144. },
  17145. [
  17146. {
  17147. name: "Normal",
  17148. height: math.unit(1.5, "meters"),
  17149. default: true
  17150. },
  17151. {
  17152. name: "Macro",
  17153. height: math.unit(150, "meters")
  17154. },
  17155. {
  17156. name: "Megamacro",
  17157. height: math.unit(35, "km")
  17158. },
  17159. ]
  17160. ))
  17161. characterMakers.push(() => makeCharacter(
  17162. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  17163. {
  17164. front: {
  17165. height: math.unit(6, "feet"),
  17166. weight: math.unit(75, "kg"),
  17167. name: "Front",
  17168. image: {
  17169. source: "./media/characters/linda/front.svg",
  17170. extra: 930 / 874,
  17171. bottom: 0.004
  17172. }
  17173. },
  17174. },
  17175. [
  17176. {
  17177. name: "Normal",
  17178. height: math.unit(6, "feet"),
  17179. default: true
  17180. },
  17181. ]
  17182. ))
  17183. characterMakers.push(() => makeCharacter(
  17184. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  17185. {
  17186. front: {
  17187. height: math.unit(6 + 8 / 12, "feet"),
  17188. weight: math.unit(220, "lb"),
  17189. name: "Front",
  17190. image: {
  17191. source: "./media/characters/caylex/front.svg",
  17192. extra: 821 / 772,
  17193. bottom: 0.07
  17194. }
  17195. },
  17196. back: {
  17197. height: math.unit(6 + 8 / 12, "feet"),
  17198. weight: math.unit(220, "lb"),
  17199. name: "Back",
  17200. image: {
  17201. source: "./media/characters/caylex/back.svg",
  17202. extra: 821 / 772,
  17203. bottom: 0.022
  17204. }
  17205. },
  17206. hand: {
  17207. height: math.unit(1.25, "feet"),
  17208. name: "Hand",
  17209. image: {
  17210. source: "./media/characters/caylex/hand.svg"
  17211. }
  17212. },
  17213. foot: {
  17214. height: math.unit(1.6, "feet"),
  17215. name: "Foot",
  17216. image: {
  17217. source: "./media/characters/caylex/foot.svg"
  17218. }
  17219. },
  17220. armored: {
  17221. height: math.unit(6 + 8 / 12, "feet"),
  17222. weight: math.unit(250, "lb"),
  17223. name: "Armored",
  17224. image: {
  17225. source: "./media/characters/caylex/armored.svg",
  17226. extra: 1420 / 1310,
  17227. bottom: 0.045
  17228. }
  17229. },
  17230. },
  17231. [
  17232. {
  17233. name: "Normal",
  17234. height: math.unit(6 + 8 / 12, "feet"),
  17235. default: true
  17236. },
  17237. {
  17238. name: "Normal+",
  17239. height: math.unit(12, "feet")
  17240. },
  17241. ]
  17242. ))
  17243. characterMakers.push(() => makeCharacter(
  17244. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  17245. {
  17246. front: {
  17247. height: math.unit(7 + 6 / 12, "feet"),
  17248. weight: math.unit(288, "lb"),
  17249. name: "Front",
  17250. image: {
  17251. source: "./media/characters/alana/front.svg",
  17252. extra: 679 / 653,
  17253. bottom: 22.5 / 701
  17254. }
  17255. },
  17256. },
  17257. [
  17258. {
  17259. name: "Normal",
  17260. height: math.unit(7 + 6 / 12, "feet")
  17261. },
  17262. {
  17263. name: "Large",
  17264. height: math.unit(50, "feet")
  17265. },
  17266. {
  17267. name: "Macro",
  17268. height: math.unit(100, "feet"),
  17269. default: true
  17270. },
  17271. {
  17272. name: "Macro+",
  17273. height: math.unit(200, "feet")
  17274. },
  17275. ]
  17276. ))
  17277. characterMakers.push(() => makeCharacter(
  17278. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  17279. {
  17280. front: {
  17281. height: math.unit(6 + 1 / 12, "feet"),
  17282. weight: math.unit(210, "lb"),
  17283. name: "Front",
  17284. image: {
  17285. source: "./media/characters/hasani/front.svg",
  17286. extra: 244 / 232,
  17287. bottom: 0.01
  17288. }
  17289. },
  17290. back: {
  17291. height: math.unit(6 + 1 / 12, "feet"),
  17292. weight: math.unit(210, "lb"),
  17293. name: "Back",
  17294. image: {
  17295. source: "./media/characters/hasani/back.svg",
  17296. extra: 244 / 232,
  17297. bottom: 0.01
  17298. }
  17299. },
  17300. },
  17301. [
  17302. {
  17303. name: "Normal",
  17304. height: math.unit(6 + 1 / 12, "feet")
  17305. },
  17306. {
  17307. name: "Macro",
  17308. height: math.unit(175, "feet"),
  17309. default: true
  17310. },
  17311. ]
  17312. ))
  17313. characterMakers.push(() => makeCharacter(
  17314. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  17315. {
  17316. front: {
  17317. height: math.unit(1.82, "meters"),
  17318. weight: math.unit(140, "lb"),
  17319. name: "Front",
  17320. image: {
  17321. source: "./media/characters/nita/front.svg",
  17322. extra: 2473 / 2363,
  17323. bottom: 0.01
  17324. }
  17325. },
  17326. },
  17327. [
  17328. {
  17329. name: "Normal",
  17330. height: math.unit(1.82, "m")
  17331. },
  17332. {
  17333. name: "Macro",
  17334. height: math.unit(300, "m")
  17335. },
  17336. {
  17337. name: "Mistake Canon",
  17338. height: math.unit(0.5, "miles"),
  17339. default: true
  17340. },
  17341. {
  17342. name: "Big Mistake",
  17343. height: math.unit(13, "miles")
  17344. },
  17345. {
  17346. name: "Playing God",
  17347. height: math.unit(2450, "miles")
  17348. },
  17349. ]
  17350. ))
  17351. characterMakers.push(() => makeCharacter(
  17352. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  17353. {
  17354. front: {
  17355. height: math.unit(4, "feet"),
  17356. weight: math.unit(120, "lb"),
  17357. name: "Front",
  17358. image: {
  17359. source: "./media/characters/shiriko/front.svg",
  17360. extra: 970/934,
  17361. bottom: 5/975
  17362. }
  17363. },
  17364. },
  17365. [
  17366. {
  17367. name: "Normal",
  17368. height: math.unit(4, "feet"),
  17369. default: true
  17370. },
  17371. ]
  17372. ))
  17373. characterMakers.push(() => makeCharacter(
  17374. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  17375. {
  17376. front: {
  17377. height: math.unit(6, "feet"),
  17378. name: "front",
  17379. image: {
  17380. source: "./media/characters/deja/front.svg",
  17381. extra: 926 / 840,
  17382. bottom: 0.07
  17383. }
  17384. },
  17385. },
  17386. [
  17387. {
  17388. name: "Planck Length",
  17389. height: math.unit(1.6e-35, "meters")
  17390. },
  17391. {
  17392. name: "Normal",
  17393. height: math.unit(30.48, "meters"),
  17394. default: true
  17395. },
  17396. {
  17397. name: "Universal",
  17398. height: math.unit(8.8e26, "meters")
  17399. },
  17400. ]
  17401. ))
  17402. characterMakers.push(() => makeCharacter(
  17403. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  17404. {
  17405. side: {
  17406. height: math.unit(8, "feet"),
  17407. weight: math.unit(6300, "lb"),
  17408. name: "Side",
  17409. image: {
  17410. source: "./media/characters/anima/side.svg",
  17411. bottom: 0.035
  17412. }
  17413. },
  17414. },
  17415. [
  17416. {
  17417. name: "Normal",
  17418. height: math.unit(8, "feet"),
  17419. default: true
  17420. },
  17421. ]
  17422. ))
  17423. characterMakers.push(() => makeCharacter(
  17424. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  17425. {
  17426. front: {
  17427. height: math.unit(8, "feet"),
  17428. weight: math.unit(350, "lb"),
  17429. name: "Front",
  17430. image: {
  17431. source: "./media/characters/bianca/front.svg",
  17432. extra: 234 / 225,
  17433. bottom: 0.03
  17434. }
  17435. },
  17436. },
  17437. [
  17438. {
  17439. name: "Normal",
  17440. height: math.unit(8, "feet"),
  17441. default: true
  17442. },
  17443. ]
  17444. ))
  17445. characterMakers.push(() => makeCharacter(
  17446. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  17447. {
  17448. front: {
  17449. height: math.unit(6, "feet"),
  17450. weight: math.unit(150, "lb"),
  17451. name: "Front",
  17452. image: {
  17453. source: "./media/characters/adinia/front.svg",
  17454. extra: 1845 / 1672,
  17455. bottom: 0.02
  17456. }
  17457. },
  17458. back: {
  17459. height: math.unit(6, "feet"),
  17460. weight: math.unit(150, "lb"),
  17461. name: "Back",
  17462. image: {
  17463. source: "./media/characters/adinia/back.svg",
  17464. extra: 1845 / 1672,
  17465. bottom: 0.002
  17466. }
  17467. },
  17468. },
  17469. [
  17470. {
  17471. name: "Normal",
  17472. height: math.unit(11 + 5 / 12, "feet"),
  17473. default: true
  17474. },
  17475. ]
  17476. ))
  17477. characterMakers.push(() => makeCharacter(
  17478. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  17479. {
  17480. front: {
  17481. height: math.unit(3, "meters"),
  17482. weight: math.unit(200, "kg"),
  17483. name: "Front",
  17484. image: {
  17485. source: "./media/characters/lykasa/front.svg",
  17486. extra: 1076 / 976,
  17487. bottom: 0.06
  17488. }
  17489. },
  17490. },
  17491. [
  17492. {
  17493. name: "Normal",
  17494. height: math.unit(3, "meters")
  17495. },
  17496. {
  17497. name: "Kaiju",
  17498. height: math.unit(120, "meters"),
  17499. default: true
  17500. },
  17501. {
  17502. name: "Mega Kaiju",
  17503. height: math.unit(240, "km")
  17504. },
  17505. {
  17506. name: "Giga Kaiju",
  17507. height: math.unit(400, "megameters")
  17508. },
  17509. {
  17510. name: "Tera Kaiju",
  17511. height: math.unit(800, "gigameters")
  17512. },
  17513. {
  17514. name: "Kaiju Dragon Goddess",
  17515. height: math.unit(26, "zettaparsecs")
  17516. },
  17517. ]
  17518. ))
  17519. characterMakers.push(() => makeCharacter(
  17520. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  17521. {
  17522. side: {
  17523. height: math.unit(283 / 124 * 6, "feet"),
  17524. weight: math.unit(35000, "lb"),
  17525. name: "Side",
  17526. image: {
  17527. source: "./media/characters/malfaren/side.svg",
  17528. extra: 2500 / 1010,
  17529. bottom: 0.01
  17530. }
  17531. },
  17532. front: {
  17533. height: math.unit(22.36, "feet"),
  17534. weight: math.unit(35000, "lb"),
  17535. name: "Front",
  17536. image: {
  17537. source: "./media/characters/malfaren/front.svg",
  17538. extra: 1631 / 1476,
  17539. bottom: 0.01
  17540. }
  17541. },
  17542. maw: {
  17543. height: math.unit(6.9, "feet"),
  17544. name: "Maw",
  17545. image: {
  17546. source: "./media/characters/malfaren/maw.svg"
  17547. }
  17548. },
  17549. },
  17550. [
  17551. {
  17552. name: "Big",
  17553. height: math.unit(283 / 162 * 6, "feet"),
  17554. },
  17555. {
  17556. name: "Bigger",
  17557. height: math.unit(283 / 124 * 6, "feet")
  17558. },
  17559. {
  17560. name: "Massive",
  17561. height: math.unit(283 / 92 * 6, "feet"),
  17562. default: true
  17563. },
  17564. {
  17565. name: "👀💦",
  17566. height: math.unit(283 / 73 * 6, "feet"),
  17567. },
  17568. ]
  17569. ))
  17570. characterMakers.push(() => makeCharacter(
  17571. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  17572. {
  17573. front: {
  17574. height: math.unit(1.7, "m"),
  17575. weight: math.unit(70, "kg"),
  17576. name: "Front",
  17577. image: {
  17578. source: "./media/characters/kernel/front.svg",
  17579. extra: 222 / 210,
  17580. bottom: 0.007
  17581. }
  17582. },
  17583. },
  17584. [
  17585. {
  17586. name: "Nano",
  17587. height: math.unit(17, "micrometers")
  17588. },
  17589. {
  17590. name: "Micro",
  17591. height: math.unit(1.7, "mm")
  17592. },
  17593. {
  17594. name: "Small",
  17595. height: math.unit(1.7, "cm")
  17596. },
  17597. {
  17598. name: "Normal",
  17599. height: math.unit(1.7, "m"),
  17600. default: true
  17601. },
  17602. ]
  17603. ))
  17604. characterMakers.push(() => makeCharacter(
  17605. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  17606. {
  17607. front: {
  17608. height: math.unit(1.75, "meters"),
  17609. weight: math.unit(65, "kg"),
  17610. name: "Front",
  17611. image: {
  17612. source: "./media/characters/jayne-folest/front.svg",
  17613. extra: 2115 / 2007,
  17614. bottom: 0.02
  17615. }
  17616. },
  17617. back: {
  17618. height: math.unit(1.75, "meters"),
  17619. weight: math.unit(65, "kg"),
  17620. name: "Back",
  17621. image: {
  17622. source: "./media/characters/jayne-folest/back.svg",
  17623. extra: 2115 / 2007,
  17624. bottom: 0.005
  17625. }
  17626. },
  17627. frontClothed: {
  17628. height: math.unit(1.75, "meters"),
  17629. weight: math.unit(65, "kg"),
  17630. name: "Front (Clothed)",
  17631. image: {
  17632. source: "./media/characters/jayne-folest/front-clothed.svg",
  17633. extra: 2115 / 2007,
  17634. bottom: 0.035
  17635. }
  17636. },
  17637. hand: {
  17638. height: math.unit(1 / 1.260, "feet"),
  17639. name: "Hand",
  17640. image: {
  17641. source: "./media/characters/jayne-folest/hand.svg"
  17642. }
  17643. },
  17644. foot: {
  17645. height: math.unit(1 / 0.918, "feet"),
  17646. name: "Foot",
  17647. image: {
  17648. source: "./media/characters/jayne-folest/foot.svg"
  17649. }
  17650. },
  17651. },
  17652. [
  17653. {
  17654. name: "Micro",
  17655. height: math.unit(4, "cm")
  17656. },
  17657. {
  17658. name: "Normal",
  17659. height: math.unit(1.75, "meters")
  17660. },
  17661. {
  17662. name: "Macro",
  17663. height: math.unit(47.5, "meters"),
  17664. default: true
  17665. },
  17666. ]
  17667. ))
  17668. characterMakers.push(() => makeCharacter(
  17669. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  17670. {
  17671. front: {
  17672. height: math.unit(180, "cm"),
  17673. weight: math.unit(70, "kg"),
  17674. name: "Front",
  17675. image: {
  17676. source: "./media/characters/algier/front.svg",
  17677. extra: 596 / 572,
  17678. bottom: 0.04
  17679. }
  17680. },
  17681. back: {
  17682. height: math.unit(180, "cm"),
  17683. weight: math.unit(70, "kg"),
  17684. name: "Back",
  17685. image: {
  17686. source: "./media/characters/algier/back.svg",
  17687. extra: 596 / 572,
  17688. bottom: 0.025
  17689. }
  17690. },
  17691. frontdressed: {
  17692. height: math.unit(180, "cm"),
  17693. weight: math.unit(150, "kg"),
  17694. name: "Front-dressed",
  17695. image: {
  17696. source: "./media/characters/algier/front-dressed.svg",
  17697. extra: 596 / 572,
  17698. bottom: 0.038
  17699. }
  17700. },
  17701. },
  17702. [
  17703. {
  17704. name: "Micro",
  17705. height: math.unit(5, "cm")
  17706. },
  17707. {
  17708. name: "Normal",
  17709. height: math.unit(180, "cm"),
  17710. default: true
  17711. },
  17712. {
  17713. name: "Macro",
  17714. height: math.unit(64, "m")
  17715. },
  17716. ]
  17717. ))
  17718. characterMakers.push(() => makeCharacter(
  17719. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  17720. {
  17721. upright: {
  17722. height: math.unit(7, "feet"),
  17723. weight: math.unit(300, "lb"),
  17724. name: "Upright",
  17725. image: {
  17726. source: "./media/characters/pretzel/upright.svg",
  17727. extra: 534 / 522,
  17728. bottom: 0.065
  17729. }
  17730. },
  17731. sprawling: {
  17732. height: math.unit(3.75, "feet"),
  17733. weight: math.unit(300, "lb"),
  17734. name: "Sprawling",
  17735. image: {
  17736. source: "./media/characters/pretzel/sprawling.svg",
  17737. extra: 314 / 281,
  17738. bottom: 0.1
  17739. }
  17740. },
  17741. tongue: {
  17742. height: math.unit(2, "feet"),
  17743. name: "Tongue",
  17744. image: {
  17745. source: "./media/characters/pretzel/tongue.svg"
  17746. }
  17747. },
  17748. },
  17749. [
  17750. {
  17751. name: "Normal",
  17752. height: math.unit(7, "feet"),
  17753. default: true
  17754. },
  17755. {
  17756. name: "Oversized",
  17757. height: math.unit(15, "feet")
  17758. },
  17759. {
  17760. name: "Huge",
  17761. height: math.unit(30, "feet")
  17762. },
  17763. {
  17764. name: "Macro",
  17765. height: math.unit(250, "feet")
  17766. },
  17767. ]
  17768. ))
  17769. characterMakers.push(() => makeCharacter(
  17770. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  17771. {
  17772. sideFront: {
  17773. height: math.unit(5 + 2 / 12, "feet"),
  17774. weight: math.unit(120, "lb"),
  17775. name: "Front Side",
  17776. image: {
  17777. source: "./media/characters/roxi/side-front.svg",
  17778. extra: 2924 / 2717,
  17779. bottom: 0.08
  17780. }
  17781. },
  17782. sideBack: {
  17783. height: math.unit(5 + 2 / 12, "feet"),
  17784. weight: math.unit(120, "lb"),
  17785. name: "Back Side",
  17786. image: {
  17787. source: "./media/characters/roxi/side-back.svg",
  17788. extra: 2904 / 2693,
  17789. bottom: 0.06
  17790. }
  17791. },
  17792. front: {
  17793. height: math.unit(5 + 2 / 12, "feet"),
  17794. weight: math.unit(120, "lb"),
  17795. name: "Front",
  17796. image: {
  17797. source: "./media/characters/roxi/front.svg",
  17798. extra: 2028 / 1907,
  17799. bottom: 0.01
  17800. }
  17801. },
  17802. frontAlt: {
  17803. height: math.unit(5 + 2 / 12, "feet"),
  17804. weight: math.unit(120, "lb"),
  17805. name: "Front (Alt)",
  17806. image: {
  17807. source: "./media/characters/roxi/front-alt.svg",
  17808. extra: 1828 / 1798,
  17809. bottom: 0.01
  17810. }
  17811. },
  17812. sitting: {
  17813. height: math.unit(2.8, "feet"),
  17814. weight: math.unit(120, "lb"),
  17815. name: "Sitting",
  17816. image: {
  17817. source: "./media/characters/roxi/sitting.svg",
  17818. extra: 2660 / 2462,
  17819. bottom: 0.1
  17820. }
  17821. },
  17822. },
  17823. [
  17824. {
  17825. name: "Normal",
  17826. height: math.unit(5 + 2 / 12, "feet"),
  17827. default: true
  17828. },
  17829. ]
  17830. ))
  17831. characterMakers.push(() => makeCharacter(
  17832. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  17833. {
  17834. side: {
  17835. height: math.unit(55, "feet"),
  17836. weight: math.unit(153, "tons"),
  17837. name: "Side",
  17838. image: {
  17839. source: "./media/characters/shadow/side.svg",
  17840. extra: 701 / 628,
  17841. bottom: 0.02
  17842. }
  17843. },
  17844. flying: {
  17845. height: math.unit(145, "feet"),
  17846. weight: math.unit(153, "tons"),
  17847. name: "Flying",
  17848. image: {
  17849. source: "./media/characters/shadow/flying.svg"
  17850. }
  17851. },
  17852. },
  17853. [
  17854. {
  17855. name: "Normal",
  17856. height: math.unit(55, "feet"),
  17857. default: true
  17858. },
  17859. ]
  17860. ))
  17861. characterMakers.push(() => makeCharacter(
  17862. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  17863. {
  17864. front: {
  17865. height: math.unit(6, "feet"),
  17866. weight: math.unit(200, "lb"),
  17867. name: "Front",
  17868. image: {
  17869. source: "./media/characters/marcie/front.svg",
  17870. extra: 960 / 876,
  17871. bottom: 58 / 1017.87
  17872. }
  17873. },
  17874. },
  17875. [
  17876. {
  17877. name: "Macro",
  17878. height: math.unit(1, "mile"),
  17879. default: true
  17880. },
  17881. ]
  17882. ))
  17883. characterMakers.push(() => makeCharacter(
  17884. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  17885. {
  17886. front: {
  17887. height: math.unit(7, "feet"),
  17888. weight: math.unit(200, "lb"),
  17889. name: "Front",
  17890. image: {
  17891. source: "./media/characters/kachina/front.svg",
  17892. extra: 1290.68 / 1119,
  17893. bottom: 36.5 / 1327.18
  17894. }
  17895. },
  17896. },
  17897. [
  17898. {
  17899. name: "Normal",
  17900. height: math.unit(7, "feet"),
  17901. default: true
  17902. },
  17903. ]
  17904. ))
  17905. characterMakers.push(() => makeCharacter(
  17906. { name: "Kash", species: ["canine"], tags: ["feral"] },
  17907. {
  17908. looking: {
  17909. height: math.unit(2, "meters"),
  17910. weight: math.unit(300, "kg"),
  17911. name: "Looking",
  17912. image: {
  17913. source: "./media/characters/kash/looking.svg",
  17914. extra: 474 / 344,
  17915. bottom: 0.03
  17916. }
  17917. },
  17918. side: {
  17919. height: math.unit(2, "meters"),
  17920. weight: math.unit(300, "kg"),
  17921. name: "Side",
  17922. image: {
  17923. source: "./media/characters/kash/side.svg",
  17924. extra: 302 / 251,
  17925. bottom: 0.03
  17926. }
  17927. },
  17928. front: {
  17929. height: math.unit(2, "meters"),
  17930. weight: math.unit(300, "kg"),
  17931. name: "Front",
  17932. image: {
  17933. source: "./media/characters/kash/front.svg",
  17934. extra: 495 / 360,
  17935. bottom: 0.015
  17936. }
  17937. },
  17938. },
  17939. [
  17940. {
  17941. name: "Normal",
  17942. height: math.unit(2, "meters"),
  17943. default: true
  17944. },
  17945. {
  17946. name: "Big",
  17947. height: math.unit(3, "meters")
  17948. },
  17949. {
  17950. name: "Large",
  17951. height: math.unit(5, "meters")
  17952. },
  17953. ]
  17954. ))
  17955. characterMakers.push(() => makeCharacter(
  17956. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  17957. {
  17958. feeding: {
  17959. height: math.unit(6.7, "feet"),
  17960. weight: math.unit(350, "lb"),
  17961. name: "Feeding",
  17962. image: {
  17963. source: "./media/characters/lalim/feeding.svg",
  17964. }
  17965. },
  17966. },
  17967. [
  17968. {
  17969. name: "Normal",
  17970. height: math.unit(6.7, "feet"),
  17971. default: true
  17972. },
  17973. ]
  17974. ))
  17975. characterMakers.push(() => makeCharacter(
  17976. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  17977. {
  17978. front: {
  17979. height: math.unit(9.5, "feet"),
  17980. weight: math.unit(600, "lb"),
  17981. name: "Front",
  17982. image: {
  17983. source: "./media/characters/de'vout/front.svg",
  17984. extra: 1443 / 1328,
  17985. bottom: 0.025
  17986. }
  17987. },
  17988. back: {
  17989. height: math.unit(9.5, "feet"),
  17990. weight: math.unit(600, "lb"),
  17991. name: "Back",
  17992. image: {
  17993. source: "./media/characters/de'vout/back.svg",
  17994. extra: 1443 / 1328
  17995. }
  17996. },
  17997. frontDressed: {
  17998. height: math.unit(9.5, "feet"),
  17999. weight: math.unit(600, "lb"),
  18000. name: "Front (Dressed",
  18001. image: {
  18002. source: "./media/characters/de'vout/front-dressed.svg",
  18003. extra: 1443 / 1328,
  18004. bottom: 0.025
  18005. }
  18006. },
  18007. backDressed: {
  18008. height: math.unit(9.5, "feet"),
  18009. weight: math.unit(600, "lb"),
  18010. name: "Back (Dressed",
  18011. image: {
  18012. source: "./media/characters/de'vout/back-dressed.svg",
  18013. extra: 1443 / 1328
  18014. }
  18015. },
  18016. },
  18017. [
  18018. {
  18019. name: "Normal",
  18020. height: math.unit(9.5, "feet"),
  18021. default: true
  18022. },
  18023. ]
  18024. ))
  18025. characterMakers.push(() => makeCharacter(
  18026. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  18027. {
  18028. front: {
  18029. height: math.unit(8, "feet"),
  18030. weight: math.unit(225, "lb"),
  18031. name: "Front",
  18032. image: {
  18033. source: "./media/characters/talana/front.svg",
  18034. extra: 1410 / 1300,
  18035. bottom: 0.015
  18036. }
  18037. },
  18038. frontDressed: {
  18039. height: math.unit(8, "feet"),
  18040. weight: math.unit(225, "lb"),
  18041. name: "Front (Dressed",
  18042. image: {
  18043. source: "./media/characters/talana/front-dressed.svg",
  18044. extra: 1410 / 1300,
  18045. bottom: 0.015
  18046. }
  18047. },
  18048. },
  18049. [
  18050. {
  18051. name: "Normal",
  18052. height: math.unit(8, "feet"),
  18053. default: true
  18054. },
  18055. ]
  18056. ))
  18057. characterMakers.push(() => makeCharacter(
  18058. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  18059. {
  18060. side: {
  18061. height: math.unit(7.2, "feet"),
  18062. weight: math.unit(150, "lb"),
  18063. name: "Side",
  18064. image: {
  18065. source: "./media/characters/xeauvok/side.svg",
  18066. extra: 1975 / 1523,
  18067. bottom: 0.07
  18068. }
  18069. },
  18070. },
  18071. [
  18072. {
  18073. name: "Normal",
  18074. height: math.unit(7.2, "feet"),
  18075. default: true
  18076. },
  18077. ]
  18078. ))
  18079. characterMakers.push(() => makeCharacter(
  18080. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  18081. {
  18082. side: {
  18083. height: math.unit(10, "feet"),
  18084. weight: math.unit(900, "kg"),
  18085. name: "Side",
  18086. image: {
  18087. source: "./media/characters/zara/side.svg",
  18088. extra: 504 / 498
  18089. }
  18090. },
  18091. },
  18092. [
  18093. {
  18094. name: "Normal",
  18095. height: math.unit(10, "feet"),
  18096. default: true
  18097. },
  18098. ]
  18099. ))
  18100. characterMakers.push(() => makeCharacter(
  18101. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  18102. {
  18103. side: {
  18104. height: math.unit(6, "feet"),
  18105. weight: math.unit(150, "lb"),
  18106. name: "Side",
  18107. image: {
  18108. source: "./media/characters/richard-dragon/side.svg",
  18109. extra: 845 / 340,
  18110. bottom: 0.017
  18111. }
  18112. },
  18113. maw: {
  18114. height: math.unit(2.97, "feet"),
  18115. name: "Maw",
  18116. image: {
  18117. source: "./media/characters/richard-dragon/maw.svg"
  18118. }
  18119. },
  18120. },
  18121. [
  18122. ]
  18123. ))
  18124. characterMakers.push(() => makeCharacter(
  18125. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  18126. {
  18127. front: {
  18128. height: math.unit(4, "feet"),
  18129. weight: math.unit(100, "lb"),
  18130. name: "Front",
  18131. image: {
  18132. source: "./media/characters/richard-smeargle/front.svg",
  18133. extra: 2952 / 2820,
  18134. bottom: 0.028
  18135. }
  18136. },
  18137. },
  18138. [
  18139. {
  18140. name: "Normal",
  18141. height: math.unit(4, "feet"),
  18142. default: true
  18143. },
  18144. {
  18145. name: "Dynamax",
  18146. height: math.unit(20, "meters")
  18147. },
  18148. ]
  18149. ))
  18150. characterMakers.push(() => makeCharacter(
  18151. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  18152. {
  18153. front: {
  18154. height: math.unit(6, "feet"),
  18155. weight: math.unit(110, "lb"),
  18156. name: "Front",
  18157. image: {
  18158. source: "./media/characters/klay/front.svg",
  18159. extra: 962 / 883,
  18160. bottom: 0.04
  18161. }
  18162. },
  18163. back: {
  18164. height: math.unit(6, "feet"),
  18165. weight: math.unit(110, "lb"),
  18166. name: "Back",
  18167. image: {
  18168. source: "./media/characters/klay/back.svg",
  18169. extra: 962 / 883
  18170. }
  18171. },
  18172. beans: {
  18173. height: math.unit(1.15, "feet"),
  18174. name: "Beans",
  18175. image: {
  18176. source: "./media/characters/klay/beans.svg"
  18177. }
  18178. },
  18179. },
  18180. [
  18181. {
  18182. name: "Micro",
  18183. height: math.unit(6, "inches")
  18184. },
  18185. {
  18186. name: "Mini",
  18187. height: math.unit(3, "feet")
  18188. },
  18189. {
  18190. name: "Normal",
  18191. height: math.unit(6, "feet"),
  18192. default: true
  18193. },
  18194. {
  18195. name: "Big",
  18196. height: math.unit(25, "feet")
  18197. },
  18198. {
  18199. name: "Macro",
  18200. height: math.unit(100, "feet")
  18201. },
  18202. {
  18203. name: "Megamacro",
  18204. height: math.unit(400, "feet")
  18205. },
  18206. ]
  18207. ))
  18208. characterMakers.push(() => makeCharacter(
  18209. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  18210. {
  18211. front: {
  18212. height: math.unit(6, "feet"),
  18213. weight: math.unit(160, "lb"),
  18214. name: "Front",
  18215. image: {
  18216. source: "./media/characters/marcus/front.svg",
  18217. extra: 734 / 676,
  18218. bottom: 0.03
  18219. }
  18220. },
  18221. },
  18222. [
  18223. {
  18224. name: "Little",
  18225. height: math.unit(6, "feet")
  18226. },
  18227. {
  18228. name: "Normal",
  18229. height: math.unit(110, "feet"),
  18230. default: true
  18231. },
  18232. {
  18233. name: "Macro",
  18234. height: math.unit(250, "feet")
  18235. },
  18236. {
  18237. name: "Megamacro",
  18238. height: math.unit(1000, "feet")
  18239. },
  18240. ]
  18241. ))
  18242. characterMakers.push(() => makeCharacter(
  18243. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  18244. {
  18245. front: {
  18246. height: math.unit(7, "feet"),
  18247. weight: math.unit(275, "lb"),
  18248. name: "Front",
  18249. image: {
  18250. source: "./media/characters/claude-delroute/front.svg",
  18251. extra: 230 / 214,
  18252. bottom: 0.007
  18253. }
  18254. },
  18255. side: {
  18256. height: math.unit(7, "feet"),
  18257. weight: math.unit(275, "lb"),
  18258. name: "Side",
  18259. image: {
  18260. source: "./media/characters/claude-delroute/side.svg",
  18261. extra: 222 / 214,
  18262. bottom: 0.01
  18263. }
  18264. },
  18265. back: {
  18266. height: math.unit(7, "feet"),
  18267. weight: math.unit(275, "lb"),
  18268. name: "Back",
  18269. image: {
  18270. source: "./media/characters/claude-delroute/back.svg",
  18271. extra: 230 / 214,
  18272. bottom: 0.015
  18273. }
  18274. },
  18275. maw: {
  18276. height: math.unit(0.6407, "meters"),
  18277. name: "Maw",
  18278. image: {
  18279. source: "./media/characters/claude-delroute/maw.svg"
  18280. }
  18281. },
  18282. },
  18283. [
  18284. {
  18285. name: "Normal",
  18286. height: math.unit(7, "feet"),
  18287. default: true
  18288. },
  18289. {
  18290. name: "Lorge",
  18291. height: math.unit(20, "feet")
  18292. },
  18293. ]
  18294. ))
  18295. characterMakers.push(() => makeCharacter(
  18296. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  18297. {
  18298. front: {
  18299. height: math.unit(8 + 4 / 12, "feet"),
  18300. weight: math.unit(600, "lb"),
  18301. name: "Front",
  18302. image: {
  18303. source: "./media/characters/dragonien/front.svg",
  18304. extra: 100 / 94,
  18305. bottom: 3.3 / 103.3445
  18306. }
  18307. },
  18308. back: {
  18309. height: math.unit(8 + 4 / 12, "feet"),
  18310. weight: math.unit(600, "lb"),
  18311. name: "Back",
  18312. image: {
  18313. source: "./media/characters/dragonien/back.svg",
  18314. extra: 776 / 746,
  18315. bottom: 6.4 / 782.0616
  18316. }
  18317. },
  18318. foot: {
  18319. height: math.unit(1.54, "feet"),
  18320. name: "Foot",
  18321. image: {
  18322. source: "./media/characters/dragonien/foot.svg",
  18323. }
  18324. },
  18325. },
  18326. [
  18327. {
  18328. name: "Normal",
  18329. height: math.unit(8 + 4 / 12, "feet"),
  18330. default: true
  18331. },
  18332. {
  18333. name: "Macro",
  18334. height: math.unit(200, "feet")
  18335. },
  18336. {
  18337. name: "Megamacro",
  18338. height: math.unit(1, "mile")
  18339. },
  18340. {
  18341. name: "Gigamacro",
  18342. height: math.unit(1000, "miles")
  18343. },
  18344. ]
  18345. ))
  18346. characterMakers.push(() => makeCharacter(
  18347. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  18348. {
  18349. front: {
  18350. height: math.unit(5 + 2 / 12, "feet"),
  18351. weight: math.unit(110, "lb"),
  18352. name: "Front",
  18353. image: {
  18354. source: "./media/characters/desta/front.svg",
  18355. extra: 767 / 726,
  18356. bottom: 11.7 / 779
  18357. }
  18358. },
  18359. back: {
  18360. height: math.unit(5 + 2 / 12, "feet"),
  18361. weight: math.unit(110, "lb"),
  18362. name: "Back",
  18363. image: {
  18364. source: "./media/characters/desta/back.svg",
  18365. extra: 777 / 728,
  18366. bottom: 6 / 784
  18367. }
  18368. },
  18369. frontAlt: {
  18370. height: math.unit(5 + 2 / 12, "feet"),
  18371. weight: math.unit(110, "lb"),
  18372. name: "Front",
  18373. image: {
  18374. source: "./media/characters/desta/front-alt.svg",
  18375. extra: 1482 / 1417
  18376. }
  18377. },
  18378. side: {
  18379. height: math.unit(5 + 2 / 12, "feet"),
  18380. weight: math.unit(110, "lb"),
  18381. name: "Side",
  18382. image: {
  18383. source: "./media/characters/desta/side.svg",
  18384. extra: 2579 / 2491,
  18385. bottom: 0.053
  18386. }
  18387. },
  18388. },
  18389. [
  18390. {
  18391. name: "Micro",
  18392. height: math.unit(6, "inches")
  18393. },
  18394. {
  18395. name: "Normal",
  18396. height: math.unit(5 + 2 / 12, "feet"),
  18397. default: true
  18398. },
  18399. {
  18400. name: "Macro",
  18401. height: math.unit(62, "feet")
  18402. },
  18403. {
  18404. name: "Megamacro",
  18405. height: math.unit(1800, "feet")
  18406. },
  18407. ]
  18408. ))
  18409. characterMakers.push(() => makeCharacter(
  18410. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  18411. {
  18412. front: {
  18413. height: math.unit(10, "feet"),
  18414. weight: math.unit(700, "lb"),
  18415. name: "Front",
  18416. image: {
  18417. source: "./media/characters/storm-alystar/front.svg",
  18418. extra: 2112 / 1898,
  18419. bottom: 0.034
  18420. }
  18421. },
  18422. },
  18423. [
  18424. {
  18425. name: "Micro",
  18426. height: math.unit(3.5, "inches")
  18427. },
  18428. {
  18429. name: "Normal",
  18430. height: math.unit(10, "feet"),
  18431. default: true
  18432. },
  18433. {
  18434. name: "Macro",
  18435. height: math.unit(400, "feet")
  18436. },
  18437. {
  18438. name: "Deific",
  18439. height: math.unit(60, "miles")
  18440. },
  18441. ]
  18442. ))
  18443. characterMakers.push(() => makeCharacter(
  18444. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  18445. {
  18446. front: {
  18447. height: math.unit(2.35, "meters"),
  18448. weight: math.unit(119, "kg"),
  18449. name: "Front",
  18450. image: {
  18451. source: "./media/characters/ilia/front.svg",
  18452. extra: 1285 / 1255,
  18453. bottom: 0.06
  18454. }
  18455. },
  18456. },
  18457. [
  18458. {
  18459. name: "Normal",
  18460. height: math.unit(2.35, "meters")
  18461. },
  18462. {
  18463. name: "Macro",
  18464. height: math.unit(140, "meters"),
  18465. default: true
  18466. },
  18467. {
  18468. name: "Megamacro",
  18469. height: math.unit(100, "miles")
  18470. },
  18471. ]
  18472. ))
  18473. characterMakers.push(() => makeCharacter(
  18474. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  18475. {
  18476. front: {
  18477. height: math.unit(6 + 5 / 12, "feet"),
  18478. weight: math.unit(190, "lb"),
  18479. name: "Front",
  18480. image: {
  18481. source: "./media/characters/kingdead/front.svg",
  18482. extra: 1228 / 1177
  18483. }
  18484. },
  18485. },
  18486. [
  18487. {
  18488. name: "Micro",
  18489. height: math.unit(7, "inches")
  18490. },
  18491. {
  18492. name: "Normal",
  18493. height: math.unit(6 + 5 / 12, "feet")
  18494. },
  18495. {
  18496. name: "Macro",
  18497. height: math.unit(150, "feet"),
  18498. default: true
  18499. },
  18500. {
  18501. name: "Megamacro",
  18502. height: math.unit(200, "miles")
  18503. },
  18504. ]
  18505. ))
  18506. characterMakers.push(() => makeCharacter(
  18507. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  18508. {
  18509. front: {
  18510. height: math.unit(8, "feet"),
  18511. weight: math.unit(600, "lb"),
  18512. name: "Front",
  18513. image: {
  18514. source: "./media/characters/kyrehx/front.svg",
  18515. extra: 1195 / 1095,
  18516. bottom: 0.034
  18517. }
  18518. },
  18519. },
  18520. [
  18521. {
  18522. name: "Micro",
  18523. height: math.unit(2, "inches")
  18524. },
  18525. {
  18526. name: "Normal",
  18527. height: math.unit(8, "feet"),
  18528. default: true
  18529. },
  18530. {
  18531. name: "Macro",
  18532. height: math.unit(255, "feet")
  18533. },
  18534. ]
  18535. ))
  18536. characterMakers.push(() => makeCharacter(
  18537. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  18538. {
  18539. front: {
  18540. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18541. weight: math.unit(184, "lb"),
  18542. name: "Front",
  18543. image: {
  18544. source: "./media/characters/xang/front.svg",
  18545. extra: 845 / 755
  18546. }
  18547. },
  18548. },
  18549. [
  18550. {
  18551. name: "Normal",
  18552. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18553. default: true
  18554. },
  18555. {
  18556. name: "Macro",
  18557. height: math.unit(0.935 * 146, "feet")
  18558. },
  18559. {
  18560. name: "Megamacro",
  18561. height: math.unit(0.935 * 3, "miles")
  18562. },
  18563. ]
  18564. ))
  18565. characterMakers.push(() => makeCharacter(
  18566. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  18567. {
  18568. frontDressed: {
  18569. height: math.unit(5 + 7 / 12, "feet"),
  18570. weight: math.unit(140, "lb"),
  18571. name: "Front (Dressed)",
  18572. image: {
  18573. source: "./media/characters/doc-weardno/front-dressed.svg",
  18574. extra: 263 / 234
  18575. }
  18576. },
  18577. backDressed: {
  18578. height: math.unit(5 + 7 / 12, "feet"),
  18579. weight: math.unit(140, "lb"),
  18580. name: "Back (Dressed)",
  18581. image: {
  18582. source: "./media/characters/doc-weardno/back-dressed.svg",
  18583. extra: 266 / 238
  18584. }
  18585. },
  18586. front: {
  18587. height: math.unit(5 + 7 / 12, "feet"),
  18588. weight: math.unit(140, "lb"),
  18589. name: "Front",
  18590. image: {
  18591. source: "./media/characters/doc-weardno/front.svg",
  18592. extra: 254 / 233
  18593. }
  18594. },
  18595. },
  18596. [
  18597. {
  18598. name: "Micro",
  18599. height: math.unit(3, "inches")
  18600. },
  18601. {
  18602. name: "Normal",
  18603. height: math.unit(5 + 7 / 12, "feet"),
  18604. default: true
  18605. },
  18606. {
  18607. name: "Macro",
  18608. height: math.unit(25, "feet")
  18609. },
  18610. {
  18611. name: "Megamacro",
  18612. height: math.unit(2, "miles")
  18613. },
  18614. ]
  18615. ))
  18616. characterMakers.push(() => makeCharacter(
  18617. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  18618. {
  18619. front: {
  18620. height: math.unit(6 + 2 / 12, "feet"),
  18621. weight: math.unit(153, "lb"),
  18622. name: "Front",
  18623. image: {
  18624. source: "./media/characters/seth-whilst/front.svg",
  18625. bottom: 0.07
  18626. }
  18627. },
  18628. },
  18629. [
  18630. {
  18631. name: "Micro",
  18632. height: math.unit(5, "inches")
  18633. },
  18634. {
  18635. name: "Normal",
  18636. height: math.unit(6 + 2 / 12, "feet"),
  18637. default: true
  18638. },
  18639. ]
  18640. ))
  18641. characterMakers.push(() => makeCharacter(
  18642. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  18643. {
  18644. front: {
  18645. height: math.unit(3, "inches"),
  18646. weight: math.unit(8, "grams"),
  18647. name: "Front",
  18648. image: {
  18649. source: "./media/characters/pocket-jabari/front.svg",
  18650. extra: 1024 / 974,
  18651. bottom: 0.039
  18652. }
  18653. },
  18654. },
  18655. [
  18656. {
  18657. name: "Minimicro",
  18658. height: math.unit(8, "mm")
  18659. },
  18660. {
  18661. name: "Micro",
  18662. height: math.unit(3, "inches"),
  18663. default: true
  18664. },
  18665. {
  18666. name: "Normal",
  18667. height: math.unit(3, "feet")
  18668. },
  18669. ]
  18670. ))
  18671. characterMakers.push(() => makeCharacter(
  18672. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  18673. {
  18674. front: {
  18675. height: math.unit(15, "feet"),
  18676. weight: math.unit(3280, "lb"),
  18677. name: "Front",
  18678. image: {
  18679. source: "./media/characters/sapphy/front.svg",
  18680. extra: 671 / 577,
  18681. bottom: 0.085
  18682. }
  18683. },
  18684. back: {
  18685. height: math.unit(15, "feet"),
  18686. weight: math.unit(3280, "lb"),
  18687. name: "Back",
  18688. image: {
  18689. source: "./media/characters/sapphy/back.svg",
  18690. extra: 631 / 607,
  18691. bottom: 0.045
  18692. }
  18693. },
  18694. },
  18695. [
  18696. {
  18697. name: "Normal",
  18698. height: math.unit(15, "feet")
  18699. },
  18700. {
  18701. name: "Casual Macro",
  18702. height: math.unit(120, "feet")
  18703. },
  18704. {
  18705. name: "Macro",
  18706. height: math.unit(2150, "feet"),
  18707. default: true
  18708. },
  18709. {
  18710. name: "Megamacro",
  18711. height: math.unit(8, "miles")
  18712. },
  18713. {
  18714. name: "Galaxy Mom",
  18715. height: math.unit(6, "megalightyears")
  18716. },
  18717. ]
  18718. ))
  18719. characterMakers.push(() => makeCharacter(
  18720. { name: "Kiro", species: ["folf"], tags: ["anthro"] },
  18721. {
  18722. front: {
  18723. height: math.unit(6, "feet"),
  18724. weight: math.unit(170, "lb"),
  18725. name: "Front",
  18726. image: {
  18727. source: "./media/characters/kiro/front.svg",
  18728. extra: 1064 / 1012,
  18729. bottom: 0.052
  18730. }
  18731. },
  18732. },
  18733. [
  18734. {
  18735. name: "Micro",
  18736. height: math.unit(6, "inches")
  18737. },
  18738. {
  18739. name: "Normal",
  18740. height: math.unit(6, "feet"),
  18741. default: true
  18742. },
  18743. {
  18744. name: "Macro",
  18745. height: math.unit(72, "feet")
  18746. },
  18747. ]
  18748. ))
  18749. characterMakers.push(() => makeCharacter(
  18750. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  18751. {
  18752. front: {
  18753. height: math.unit(5 + 9 / 12, "feet"),
  18754. weight: math.unit(175, "lb"),
  18755. name: "Front",
  18756. image: {
  18757. source: "./media/characters/irishfox/front.svg",
  18758. extra: 1912 / 1680,
  18759. bottom: 0.02
  18760. }
  18761. },
  18762. },
  18763. [
  18764. {
  18765. name: "Nano",
  18766. height: math.unit(1, "mm")
  18767. },
  18768. {
  18769. name: "Micro",
  18770. height: math.unit(2, "inches")
  18771. },
  18772. {
  18773. name: "Normal",
  18774. height: math.unit(5 + 9 / 12, "feet"),
  18775. default: true
  18776. },
  18777. {
  18778. name: "Macro",
  18779. height: math.unit(45, "feet")
  18780. },
  18781. ]
  18782. ))
  18783. characterMakers.push(() => makeCharacter(
  18784. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  18785. {
  18786. front: {
  18787. height: math.unit(6 + 1 / 12, "feet"),
  18788. weight: math.unit(75, "lb"),
  18789. name: "Front",
  18790. image: {
  18791. source: "./media/characters/aronai-sieyes/front.svg",
  18792. extra: 1556 / 1480,
  18793. bottom: 0.015
  18794. }
  18795. },
  18796. side: {
  18797. height: math.unit(6 + 1 / 12, "feet"),
  18798. weight: math.unit(75, "lb"),
  18799. name: "Side",
  18800. image: {
  18801. source: "./media/characters/aronai-sieyes/side.svg",
  18802. extra: 1433 / 1390,
  18803. bottom: 0.0393
  18804. }
  18805. },
  18806. back: {
  18807. height: math.unit(6 + 1 / 12, "feet"),
  18808. weight: math.unit(75, "lb"),
  18809. name: "Back",
  18810. image: {
  18811. source: "./media/characters/aronai-sieyes/back.svg",
  18812. extra: 1544 / 1494,
  18813. bottom: 0.02
  18814. }
  18815. },
  18816. frontClothed: {
  18817. height: math.unit(6 + 1 / 12, "feet"),
  18818. weight: math.unit(75, "lb"),
  18819. name: "Front (Clothed)",
  18820. image: {
  18821. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  18822. extra: 1582 / 1527
  18823. }
  18824. },
  18825. feral: {
  18826. height: math.unit(18, "feet"),
  18827. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  18828. name: "Feral",
  18829. image: {
  18830. source: "./media/characters/aronai-sieyes/feral.svg",
  18831. extra: 1530 / 1240,
  18832. bottom: 0.035
  18833. }
  18834. },
  18835. },
  18836. [
  18837. {
  18838. name: "Micro",
  18839. height: math.unit(2, "inches")
  18840. },
  18841. {
  18842. name: "Normal",
  18843. height: math.unit(6 + 1 / 12, "feet"),
  18844. default: true
  18845. }
  18846. ]
  18847. ))
  18848. characterMakers.push(() => makeCharacter(
  18849. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  18850. {
  18851. front: {
  18852. height: math.unit(12, "feet"),
  18853. weight: math.unit(410, "kg"),
  18854. name: "Front",
  18855. image: {
  18856. source: "./media/characters/xuna/front.svg",
  18857. extra: 2184 / 1980
  18858. }
  18859. },
  18860. side: {
  18861. height: math.unit(12, "feet"),
  18862. weight: math.unit(410, "kg"),
  18863. name: "Side",
  18864. image: {
  18865. source: "./media/characters/xuna/side.svg",
  18866. extra: 2184 / 1980
  18867. }
  18868. },
  18869. back: {
  18870. height: math.unit(12, "feet"),
  18871. weight: math.unit(410, "kg"),
  18872. name: "Back",
  18873. image: {
  18874. source: "./media/characters/xuna/back.svg",
  18875. extra: 2184 / 1980
  18876. }
  18877. },
  18878. },
  18879. [
  18880. {
  18881. name: "Nano glow",
  18882. height: math.unit(10, "nm")
  18883. },
  18884. {
  18885. name: "Micro floof",
  18886. height: math.unit(0.3, "m")
  18887. },
  18888. {
  18889. name: "Huggable softy boi",
  18890. height: math.unit(3.6576, "m"),
  18891. default: true
  18892. },
  18893. {
  18894. name: "Admirable floof",
  18895. height: math.unit(80, "meters")
  18896. },
  18897. {
  18898. name: "Gentle macro",
  18899. height: math.unit(300, "meters")
  18900. },
  18901. {
  18902. name: "Very careful floof",
  18903. height: math.unit(3200, "meters")
  18904. },
  18905. {
  18906. name: "The mega floof",
  18907. height: math.unit(36000, "meters")
  18908. },
  18909. {
  18910. name: "Giga-fur-Wicker",
  18911. height: math.unit(4800000, "meters")
  18912. },
  18913. {
  18914. name: "Licky world",
  18915. height: math.unit(20000000, "meters")
  18916. },
  18917. {
  18918. name: "Floofy cyan sun",
  18919. height: math.unit(1500000000, "meters")
  18920. },
  18921. {
  18922. name: "Milky Wicker",
  18923. height: math.unit(1000000000000000000000, "meters")
  18924. },
  18925. {
  18926. name: "The observing Wicker",
  18927. height: math.unit(999999999999999999999999999, "meters")
  18928. },
  18929. ]
  18930. ))
  18931. characterMakers.push(() => makeCharacter(
  18932. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18933. {
  18934. front: {
  18935. height: math.unit(5 + 9 / 12, "feet"),
  18936. weight: math.unit(150, "lb"),
  18937. name: "Front",
  18938. image: {
  18939. source: "./media/characters/arokha-sieyes/front.svg",
  18940. extra: 1425 / 1284,
  18941. bottom: 0.05
  18942. }
  18943. },
  18944. },
  18945. [
  18946. {
  18947. name: "Normal",
  18948. height: math.unit(5 + 9 / 12, "feet")
  18949. },
  18950. {
  18951. name: "Macro",
  18952. height: math.unit(30, "meters"),
  18953. default: true
  18954. },
  18955. ]
  18956. ))
  18957. characterMakers.push(() => makeCharacter(
  18958. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18959. {
  18960. front: {
  18961. height: math.unit(6, "feet"),
  18962. weight: math.unit(180, "lb"),
  18963. name: "Front",
  18964. image: {
  18965. source: "./media/characters/arokh-sieyes/front.svg",
  18966. extra: 1830 / 1769,
  18967. bottom: 0.01
  18968. }
  18969. },
  18970. },
  18971. [
  18972. {
  18973. name: "Normal",
  18974. height: math.unit(6, "feet")
  18975. },
  18976. {
  18977. name: "Macro",
  18978. height: math.unit(30, "meters"),
  18979. default: true
  18980. },
  18981. ]
  18982. ))
  18983. characterMakers.push(() => makeCharacter(
  18984. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  18985. {
  18986. side: {
  18987. height: math.unit(13 + 1 / 12, "feet"),
  18988. weight: math.unit(8.5, "tonnes"),
  18989. name: "Side",
  18990. image: {
  18991. source: "./media/characters/goldeneye/side.svg",
  18992. extra: 1182 / 778,
  18993. bottom: 0.067
  18994. }
  18995. },
  18996. paw: {
  18997. height: math.unit(3.4, "feet"),
  18998. name: "Paw",
  18999. image: {
  19000. source: "./media/characters/goldeneye/paw.svg"
  19001. }
  19002. },
  19003. },
  19004. [
  19005. {
  19006. name: "Normal",
  19007. height: math.unit(13 + 1 / 12, "feet"),
  19008. default: true
  19009. },
  19010. ]
  19011. ))
  19012. characterMakers.push(() => makeCharacter(
  19013. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  19014. {
  19015. front: {
  19016. height: math.unit(6 + 1 / 12, "feet"),
  19017. weight: math.unit(210, "lb"),
  19018. name: "Front",
  19019. image: {
  19020. source: "./media/characters/leonardo-lycheborne/front.svg",
  19021. extra: 390 / 365,
  19022. bottom: 0.032
  19023. }
  19024. },
  19025. side: {
  19026. height: math.unit(6 + 1 / 12, "feet"),
  19027. weight: math.unit(210, "lb"),
  19028. name: "Side",
  19029. image: {
  19030. source: "./media/characters/leonardo-lycheborne/side.svg",
  19031. extra: 390 / 365,
  19032. bottom: 0.005
  19033. }
  19034. },
  19035. back: {
  19036. height: math.unit(6 + 1 / 12, "feet"),
  19037. weight: math.unit(210, "lb"),
  19038. name: "Back",
  19039. image: {
  19040. source: "./media/characters/leonardo-lycheborne/back.svg",
  19041. extra: 392 / 366,
  19042. bottom: 0.01
  19043. }
  19044. },
  19045. hand: {
  19046. height: math.unit(1.08, "feet"),
  19047. name: "Hand",
  19048. image: {
  19049. source: "./media/characters/leonardo-lycheborne/hand.svg"
  19050. }
  19051. },
  19052. foot: {
  19053. height: math.unit(1.32, "feet"),
  19054. name: "Foot",
  19055. image: {
  19056. source: "./media/characters/leonardo-lycheborne/foot.svg"
  19057. }
  19058. },
  19059. were: {
  19060. height: math.unit(20, "feet"),
  19061. weight: math.unit(7800, "lb"),
  19062. name: "Were",
  19063. image: {
  19064. source: "./media/characters/leonardo-lycheborne/were.svg",
  19065. extra: 308 / 294,
  19066. bottom: 0.048
  19067. }
  19068. },
  19069. feral: {
  19070. height: math.unit(7.5, "feet"),
  19071. weight: math.unit(600, "lb"),
  19072. name: "Feral",
  19073. image: {
  19074. source: "./media/characters/leonardo-lycheborne/feral.svg",
  19075. extra: 210 / 186,
  19076. bottom: 0.108
  19077. }
  19078. },
  19079. taur: {
  19080. height: math.unit(11, "feet"),
  19081. weight: math.unit(3300, "lb"),
  19082. name: "Taur",
  19083. image: {
  19084. source: "./media/characters/leonardo-lycheborne/taur.svg",
  19085. extra: 320 / 303,
  19086. bottom: 0.025
  19087. }
  19088. },
  19089. barghest: {
  19090. height: math.unit(11, "feet"),
  19091. weight: math.unit(1300, "lb"),
  19092. name: "Barghest",
  19093. image: {
  19094. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  19095. extra: 323 / 302,
  19096. bottom: 0.027
  19097. }
  19098. },
  19099. dick: {
  19100. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  19101. name: "Dick",
  19102. image: {
  19103. source: "./media/characters/leonardo-lycheborne/dick.svg"
  19104. }
  19105. },
  19106. dickWere: {
  19107. height: math.unit((20) / 3.8, "feet"),
  19108. name: "Dick (Were)",
  19109. image: {
  19110. source: "./media/characters/leonardo-lycheborne/dick.svg"
  19111. }
  19112. },
  19113. },
  19114. [
  19115. {
  19116. name: "Normal",
  19117. height: math.unit(6 + 1 / 12, "feet"),
  19118. default: true
  19119. },
  19120. ]
  19121. ))
  19122. characterMakers.push(() => makeCharacter(
  19123. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  19124. {
  19125. front: {
  19126. height: math.unit(10, "feet"),
  19127. weight: math.unit(350, "lb"),
  19128. name: "Front",
  19129. image: {
  19130. source: "./media/characters/jet/front.svg",
  19131. extra: 2050 / 1980,
  19132. bottom: 0.013
  19133. }
  19134. },
  19135. back: {
  19136. height: math.unit(10, "feet"),
  19137. weight: math.unit(350, "lb"),
  19138. name: "Back",
  19139. image: {
  19140. source: "./media/characters/jet/back.svg",
  19141. extra: 2050 / 1980,
  19142. bottom: 0.013
  19143. }
  19144. },
  19145. },
  19146. [
  19147. {
  19148. name: "Micro",
  19149. height: math.unit(6, "inches")
  19150. },
  19151. {
  19152. name: "Normal",
  19153. height: math.unit(10, "feet"),
  19154. default: true
  19155. },
  19156. {
  19157. name: "Macro",
  19158. height: math.unit(100, "feet")
  19159. },
  19160. ]
  19161. ))
  19162. characterMakers.push(() => makeCharacter(
  19163. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  19164. {
  19165. front: {
  19166. height: math.unit(15, "feet"),
  19167. weight: math.unit(2800, "lb"),
  19168. name: "Front",
  19169. image: {
  19170. source: "./media/characters/tanarath/front.svg",
  19171. extra: 2392 / 2220,
  19172. bottom: 0.03
  19173. }
  19174. },
  19175. back: {
  19176. height: math.unit(15, "feet"),
  19177. weight: math.unit(2800, "lb"),
  19178. name: "Back",
  19179. image: {
  19180. source: "./media/characters/tanarath/back.svg",
  19181. extra: 2392 / 2220,
  19182. bottom: 0.03
  19183. }
  19184. },
  19185. },
  19186. [
  19187. {
  19188. name: "Normal",
  19189. height: math.unit(15, "feet"),
  19190. default: true
  19191. },
  19192. ]
  19193. ))
  19194. characterMakers.push(() => makeCharacter(
  19195. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  19196. {
  19197. front: {
  19198. height: math.unit(7 + 1 / 12, "feet"),
  19199. weight: math.unit(175, "lb"),
  19200. name: "Front",
  19201. image: {
  19202. source: "./media/characters/patty-cattybatty/front.svg",
  19203. extra: 908 / 874,
  19204. bottom: 0.025
  19205. }
  19206. },
  19207. },
  19208. [
  19209. {
  19210. name: "Micro",
  19211. height: math.unit(1, "inch")
  19212. },
  19213. {
  19214. name: "Normal",
  19215. height: math.unit(7 + 1 / 12, "feet")
  19216. },
  19217. {
  19218. name: "Mini Macro",
  19219. height: math.unit(155, "feet")
  19220. },
  19221. {
  19222. name: "Macro",
  19223. height: math.unit(1077, "feet")
  19224. },
  19225. {
  19226. name: "Mega Macro",
  19227. height: math.unit(47650, "feet"),
  19228. default: true
  19229. },
  19230. {
  19231. name: "Giga Macro",
  19232. height: math.unit(440, "miles")
  19233. },
  19234. {
  19235. name: "Tera Macro",
  19236. height: math.unit(8700, "miles")
  19237. },
  19238. {
  19239. name: "Planetary Macro",
  19240. height: math.unit(32700, "miles")
  19241. },
  19242. {
  19243. name: "Solar Macro",
  19244. height: math.unit(550000, "miles")
  19245. },
  19246. {
  19247. name: "Celestial Macro",
  19248. height: math.unit(2.5, "AU")
  19249. },
  19250. ]
  19251. ))
  19252. characterMakers.push(() => makeCharacter(
  19253. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  19254. {
  19255. front: {
  19256. height: math.unit(4 + 5 / 12, "feet"),
  19257. weight: math.unit(90, "lb"),
  19258. name: "Front",
  19259. image: {
  19260. source: "./media/characters/cappu/front.svg",
  19261. extra: 1247 / 1152,
  19262. bottom: 0.012
  19263. }
  19264. },
  19265. },
  19266. [
  19267. {
  19268. name: "Normal",
  19269. height: math.unit(4 + 5 / 12, "feet"),
  19270. default: true
  19271. },
  19272. ]
  19273. ))
  19274. characterMakers.push(() => makeCharacter(
  19275. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  19276. {
  19277. frontDressed: {
  19278. height: math.unit(70, "cm"),
  19279. weight: math.unit(6, "kg"),
  19280. name: "Front (Dressed)",
  19281. image: {
  19282. source: "./media/characters/sebi/front-dressed.svg",
  19283. extra: 713.5 / 686.5,
  19284. bottom: 0.003
  19285. }
  19286. },
  19287. front: {
  19288. height: math.unit(70, "cm"),
  19289. weight: math.unit(5, "kg"),
  19290. name: "Front",
  19291. image: {
  19292. source: "./media/characters/sebi/front.svg",
  19293. extra: 713.5 / 686.5,
  19294. bottom: 0.003
  19295. }
  19296. }
  19297. },
  19298. [
  19299. {
  19300. name: "Normal",
  19301. height: math.unit(70, "cm"),
  19302. default: true
  19303. },
  19304. {
  19305. name: "Macro",
  19306. height: math.unit(8, "meters")
  19307. },
  19308. ]
  19309. ))
  19310. characterMakers.push(() => makeCharacter(
  19311. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  19312. {
  19313. front: {
  19314. height: math.unit(6, "feet"),
  19315. weight: math.unit(150, "lb"),
  19316. name: "Front",
  19317. image: {
  19318. source: "./media/characters/typhek/front.svg",
  19319. extra: 1948 / 1929,
  19320. bottom: 0.025
  19321. }
  19322. },
  19323. side: {
  19324. height: math.unit(6, "feet"),
  19325. weight: math.unit(150, "lb"),
  19326. name: "Side",
  19327. image: {
  19328. source: "./media/characters/typhek/side.svg",
  19329. extra: 2034 / 2010,
  19330. bottom: 0.003
  19331. }
  19332. },
  19333. back: {
  19334. height: math.unit(6, "feet"),
  19335. weight: math.unit(150, "lb"),
  19336. name: "Back",
  19337. image: {
  19338. source: "./media/characters/typhek/back.svg",
  19339. extra: 2005 / 1978,
  19340. bottom: 0.004
  19341. }
  19342. },
  19343. palm: {
  19344. height: math.unit(1.2, "feet"),
  19345. name: "Palm",
  19346. image: {
  19347. source: "./media/characters/typhek/palm.svg"
  19348. }
  19349. },
  19350. fist: {
  19351. height: math.unit(1.1, "feet"),
  19352. name: "Fist",
  19353. image: {
  19354. source: "./media/characters/typhek/fist.svg"
  19355. }
  19356. },
  19357. foot: {
  19358. height: math.unit(1.57, "feet"),
  19359. name: "Foot",
  19360. image: {
  19361. source: "./media/characters/typhek/foot.svg"
  19362. }
  19363. },
  19364. sole: {
  19365. height: math.unit(2.05, "feet"),
  19366. name: "Sole",
  19367. image: {
  19368. source: "./media/characters/typhek/sole.svg"
  19369. }
  19370. },
  19371. },
  19372. [
  19373. {
  19374. name: "Macro",
  19375. height: math.unit(40, "stories"),
  19376. default: true
  19377. },
  19378. {
  19379. name: "Megamacro",
  19380. height: math.unit(1, "mile")
  19381. },
  19382. {
  19383. name: "Gigamacro",
  19384. height: math.unit(4000, "solarradii")
  19385. },
  19386. {
  19387. name: "Universal",
  19388. height: math.unit(1.1, "universes")
  19389. }
  19390. ]
  19391. ))
  19392. characterMakers.push(() => makeCharacter(
  19393. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  19394. {
  19395. side: {
  19396. height: math.unit(5 + 7 / 12, "feet"),
  19397. weight: math.unit(150, "lb"),
  19398. name: "Side",
  19399. image: {
  19400. source: "./media/characters/kassy/side.svg",
  19401. extra: 1280 / 1225,
  19402. bottom: 0.002
  19403. }
  19404. },
  19405. front: {
  19406. height: math.unit(5 + 7 / 12, "feet"),
  19407. weight: math.unit(150, "lb"),
  19408. name: "Front",
  19409. image: {
  19410. source: "./media/characters/kassy/front.svg",
  19411. extra: 1280 / 1225,
  19412. bottom: 0.025
  19413. }
  19414. },
  19415. back: {
  19416. height: math.unit(5 + 7 / 12, "feet"),
  19417. weight: math.unit(150, "lb"),
  19418. name: "Back",
  19419. image: {
  19420. source: "./media/characters/kassy/back.svg",
  19421. extra: 1280 / 1225,
  19422. bottom: 0.002
  19423. }
  19424. },
  19425. foot: {
  19426. height: math.unit(1.266, "feet"),
  19427. name: "Foot",
  19428. image: {
  19429. source: "./media/characters/kassy/foot.svg"
  19430. }
  19431. },
  19432. },
  19433. [
  19434. {
  19435. name: "Normal",
  19436. height: math.unit(5 + 7 / 12, "feet")
  19437. },
  19438. {
  19439. name: "Macro",
  19440. height: math.unit(137, "feet"),
  19441. default: true
  19442. },
  19443. {
  19444. name: "Megamacro",
  19445. height: math.unit(1, "mile")
  19446. },
  19447. ]
  19448. ))
  19449. characterMakers.push(() => makeCharacter(
  19450. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  19451. {
  19452. front: {
  19453. height: math.unit(6 + 1 / 12, "feet"),
  19454. weight: math.unit(200, "lb"),
  19455. name: "Front",
  19456. image: {
  19457. source: "./media/characters/neil/front.svg",
  19458. extra: 1326 / 1250,
  19459. bottom: 0.023
  19460. }
  19461. },
  19462. },
  19463. [
  19464. {
  19465. name: "Normal",
  19466. height: math.unit(6 + 1 / 12, "feet"),
  19467. default: true
  19468. },
  19469. {
  19470. name: "Macro",
  19471. height: math.unit(200, "feet")
  19472. },
  19473. ]
  19474. ))
  19475. characterMakers.push(() => makeCharacter(
  19476. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  19477. {
  19478. front: {
  19479. height: math.unit(5 + 9 / 12, "feet"),
  19480. weight: math.unit(190, "lb"),
  19481. name: "Front",
  19482. image: {
  19483. source: "./media/characters/atticus/front.svg",
  19484. extra: 2934 / 2785,
  19485. bottom: 0.025
  19486. }
  19487. },
  19488. },
  19489. [
  19490. {
  19491. name: "Normal",
  19492. height: math.unit(5 + 9 / 12, "feet"),
  19493. default: true
  19494. },
  19495. {
  19496. name: "Macro",
  19497. height: math.unit(180, "feet")
  19498. },
  19499. ]
  19500. ))
  19501. characterMakers.push(() => makeCharacter(
  19502. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  19503. {
  19504. side: {
  19505. height: math.unit(9, "feet"),
  19506. weight: math.unit(650, "lb"),
  19507. name: "Side",
  19508. image: {
  19509. source: "./media/characters/milo/side.svg",
  19510. extra: 2644 / 2310,
  19511. bottom: 0.032
  19512. }
  19513. },
  19514. },
  19515. [
  19516. {
  19517. name: "Normal",
  19518. height: math.unit(9, "feet"),
  19519. default: true
  19520. },
  19521. {
  19522. name: "Macro",
  19523. height: math.unit(300, "feet")
  19524. },
  19525. ]
  19526. ))
  19527. characterMakers.push(() => makeCharacter(
  19528. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  19529. {
  19530. side: {
  19531. height: math.unit(8, "meters"),
  19532. weight: math.unit(90000, "kg"),
  19533. name: "Side",
  19534. image: {
  19535. source: "./media/characters/ijzer/side.svg",
  19536. extra: 2756 / 1600,
  19537. bottom: 0.01
  19538. }
  19539. },
  19540. },
  19541. [
  19542. {
  19543. name: "Small",
  19544. height: math.unit(3, "meters")
  19545. },
  19546. {
  19547. name: "Normal",
  19548. height: math.unit(8, "meters"),
  19549. default: true
  19550. },
  19551. {
  19552. name: "Normal+",
  19553. height: math.unit(10, "meters")
  19554. },
  19555. {
  19556. name: "Bigger",
  19557. height: math.unit(24, "meters")
  19558. },
  19559. {
  19560. name: "Huge",
  19561. height: math.unit(80, "meters")
  19562. },
  19563. ]
  19564. ))
  19565. characterMakers.push(() => makeCharacter(
  19566. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  19567. {
  19568. front: {
  19569. height: math.unit(6 + 2 / 12, "feet"),
  19570. weight: math.unit(153, "lb"),
  19571. name: "Front",
  19572. image: {
  19573. source: "./media/characters/luca-cervicum/front.svg",
  19574. extra: 370 / 327,
  19575. bottom: 0.015
  19576. }
  19577. },
  19578. back: {
  19579. height: math.unit(6 + 2 / 12, "feet"),
  19580. weight: math.unit(153, "lb"),
  19581. name: "Back",
  19582. image: {
  19583. source: "./media/characters/luca-cervicum/back.svg",
  19584. extra: 367 / 333,
  19585. bottom: 0.005
  19586. }
  19587. },
  19588. frontGear: {
  19589. height: math.unit(6 + 2 / 12, "feet"),
  19590. weight: math.unit(173, "lb"),
  19591. name: "Front (Gear)",
  19592. image: {
  19593. source: "./media/characters/luca-cervicum/front-gear.svg",
  19594. extra: 377 / 333,
  19595. bottom: 0.006
  19596. }
  19597. },
  19598. },
  19599. [
  19600. {
  19601. name: "Normal",
  19602. height: math.unit(6 + 2 / 12, "feet"),
  19603. default: true
  19604. },
  19605. ]
  19606. ))
  19607. characterMakers.push(() => makeCharacter(
  19608. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  19609. {
  19610. front: {
  19611. height: math.unit(6 + 1 / 12, "feet"),
  19612. weight: math.unit(304, "lb"),
  19613. name: "Front",
  19614. image: {
  19615. source: "./media/characters/oliver/front.svg",
  19616. extra: 157 / 143,
  19617. bottom: 0.08
  19618. }
  19619. },
  19620. },
  19621. [
  19622. {
  19623. name: "Normal",
  19624. height: math.unit(6 + 1 / 12, "feet"),
  19625. default: true
  19626. },
  19627. ]
  19628. ))
  19629. characterMakers.push(() => makeCharacter(
  19630. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  19631. {
  19632. front: {
  19633. height: math.unit(5 + 7 / 12, "feet"),
  19634. weight: math.unit(140, "lb"),
  19635. name: "Front",
  19636. image: {
  19637. source: "./media/characters/shane/front.svg",
  19638. extra: 304 / 289,
  19639. bottom: 0.005
  19640. }
  19641. },
  19642. },
  19643. [
  19644. {
  19645. name: "Normal",
  19646. height: math.unit(5 + 7 / 12, "feet"),
  19647. default: true
  19648. },
  19649. ]
  19650. ))
  19651. characterMakers.push(() => makeCharacter(
  19652. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  19653. {
  19654. front: {
  19655. height: math.unit(5 + 9 / 12, "feet"),
  19656. weight: math.unit(178, "lb"),
  19657. name: "Front",
  19658. image: {
  19659. source: "./media/characters/shin/front.svg",
  19660. extra: 159 / 151,
  19661. bottom: 0.015
  19662. }
  19663. },
  19664. },
  19665. [
  19666. {
  19667. name: "Normal",
  19668. height: math.unit(5 + 9 / 12, "feet"),
  19669. default: true
  19670. },
  19671. ]
  19672. ))
  19673. characterMakers.push(() => makeCharacter(
  19674. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  19675. {
  19676. front: {
  19677. height: math.unit(5 + 10 / 12, "feet"),
  19678. weight: math.unit(168, "lb"),
  19679. name: "Front",
  19680. image: {
  19681. source: "./media/characters/xerxes/front.svg",
  19682. extra: 282 / 260,
  19683. bottom: 0.045
  19684. }
  19685. },
  19686. },
  19687. [
  19688. {
  19689. name: "Normal",
  19690. height: math.unit(5 + 10 / 12, "feet"),
  19691. default: true
  19692. },
  19693. ]
  19694. ))
  19695. characterMakers.push(() => makeCharacter(
  19696. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  19697. {
  19698. front: {
  19699. height: math.unit(6 + 7 / 12, "feet"),
  19700. weight: math.unit(208, "lb"),
  19701. name: "Front",
  19702. image: {
  19703. source: "./media/characters/chaska/front.svg",
  19704. extra: 332 / 319,
  19705. bottom: 0.015
  19706. }
  19707. },
  19708. },
  19709. [
  19710. {
  19711. name: "Normal",
  19712. height: math.unit(6 + 7 / 12, "feet"),
  19713. default: true
  19714. },
  19715. ]
  19716. ))
  19717. characterMakers.push(() => makeCharacter(
  19718. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  19719. {
  19720. front: {
  19721. height: math.unit(5 + 8 / 12, "feet"),
  19722. weight: math.unit(208, "lb"),
  19723. name: "Front",
  19724. image: {
  19725. source: "./media/characters/enuk/front.svg",
  19726. extra: 437 / 406,
  19727. bottom: 0.02
  19728. }
  19729. },
  19730. },
  19731. [
  19732. {
  19733. name: "Normal",
  19734. height: math.unit(5 + 8 / 12, "feet"),
  19735. default: true
  19736. },
  19737. ]
  19738. ))
  19739. characterMakers.push(() => makeCharacter(
  19740. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  19741. {
  19742. front: {
  19743. height: math.unit(5 + 10 / 12, "feet"),
  19744. weight: math.unit(252, "lb"),
  19745. name: "Front",
  19746. image: {
  19747. source: "./media/characters/bruun/front.svg",
  19748. extra: 197 / 187,
  19749. bottom: 0.012
  19750. }
  19751. },
  19752. },
  19753. [
  19754. {
  19755. name: "Normal",
  19756. height: math.unit(5 + 10 / 12, "feet"),
  19757. default: true
  19758. },
  19759. ]
  19760. ))
  19761. characterMakers.push(() => makeCharacter(
  19762. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  19763. {
  19764. front: {
  19765. height: math.unit(6 + 10 / 12, "feet"),
  19766. weight: math.unit(255, "lb"),
  19767. name: "Front",
  19768. image: {
  19769. source: "./media/characters/alexeev/front.svg",
  19770. extra: 213 / 200,
  19771. bottom: 0.05
  19772. }
  19773. },
  19774. },
  19775. [
  19776. {
  19777. name: "Normal",
  19778. height: math.unit(6 + 10 / 12, "feet"),
  19779. default: true
  19780. },
  19781. ]
  19782. ))
  19783. characterMakers.push(() => makeCharacter(
  19784. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  19785. {
  19786. front: {
  19787. height: math.unit(2 + 8 / 12, "feet"),
  19788. weight: math.unit(22, "lb"),
  19789. name: "Front",
  19790. image: {
  19791. source: "./media/characters/evelyn/front.svg",
  19792. extra: 208 / 180
  19793. }
  19794. },
  19795. },
  19796. [
  19797. {
  19798. name: "Normal",
  19799. height: math.unit(2 + 8 / 12, "feet"),
  19800. default: true
  19801. },
  19802. ]
  19803. ))
  19804. characterMakers.push(() => makeCharacter(
  19805. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  19806. {
  19807. front: {
  19808. height: math.unit(5 + 9 / 12, "feet"),
  19809. weight: math.unit(139, "lb"),
  19810. name: "Front",
  19811. image: {
  19812. source: "./media/characters/inca/front.svg",
  19813. extra: 294 / 291,
  19814. bottom: 0.03
  19815. }
  19816. },
  19817. },
  19818. [
  19819. {
  19820. name: "Normal",
  19821. height: math.unit(5 + 9 / 12, "feet"),
  19822. default: true
  19823. },
  19824. ]
  19825. ))
  19826. characterMakers.push(() => makeCharacter(
  19827. { name: "Magdalene", species: ["mewtwo-y", "mew"], tags: ["anthro"] },
  19828. {
  19829. front: {
  19830. height: math.unit(5 + 1 / 12, "feet"),
  19831. weight: math.unit(84, "lb"),
  19832. name: "Front",
  19833. image: {
  19834. source: "./media/characters/magdalene/front.svg",
  19835. extra: 293 / 273
  19836. }
  19837. },
  19838. },
  19839. [
  19840. {
  19841. name: "Normal",
  19842. height: math.unit(5 + 1 / 12, "feet"),
  19843. default: true
  19844. },
  19845. ]
  19846. ))
  19847. characterMakers.push(() => makeCharacter(
  19848. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  19849. {
  19850. front: {
  19851. height: math.unit(6 + 3 / 12, "feet"),
  19852. weight: math.unit(185, "lb"),
  19853. name: "Front",
  19854. image: {
  19855. source: "./media/characters/mera/front.svg",
  19856. extra: 291 / 277,
  19857. bottom: 0.03
  19858. }
  19859. },
  19860. },
  19861. [
  19862. {
  19863. name: "Normal",
  19864. height: math.unit(6 + 3 / 12, "feet"),
  19865. default: true
  19866. },
  19867. ]
  19868. ))
  19869. characterMakers.push(() => makeCharacter(
  19870. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  19871. {
  19872. front: {
  19873. height: math.unit(6 + 7 / 12, "feet"),
  19874. weight: math.unit(160, "lb"),
  19875. name: "Front",
  19876. image: {
  19877. source: "./media/characters/ceres/front.svg",
  19878. extra: 1023 / 950,
  19879. bottom: 0.027
  19880. }
  19881. },
  19882. back: {
  19883. height: math.unit(6 + 7 / 12, "feet"),
  19884. weight: math.unit(160, "lb"),
  19885. name: "Back",
  19886. image: {
  19887. source: "./media/characters/ceres/back.svg",
  19888. extra: 1023 / 950
  19889. }
  19890. },
  19891. },
  19892. [
  19893. {
  19894. name: "Normal",
  19895. height: math.unit(6 + 7 / 12, "feet"),
  19896. default: true
  19897. },
  19898. ]
  19899. ))
  19900. characterMakers.push(() => makeCharacter(
  19901. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  19902. {
  19903. front: {
  19904. height: math.unit(5 + 10 / 12, "feet"),
  19905. weight: math.unit(150, "lb"),
  19906. name: "Front",
  19907. image: {
  19908. source: "./media/characters/kris/front.svg",
  19909. extra: 885 / 803,
  19910. bottom: 0.03
  19911. }
  19912. },
  19913. },
  19914. [
  19915. {
  19916. name: "Normal",
  19917. height: math.unit(5 + 10 / 12, "feet"),
  19918. default: true
  19919. },
  19920. ]
  19921. ))
  19922. characterMakers.push(() => makeCharacter(
  19923. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  19924. {
  19925. front: {
  19926. height: math.unit(7, "feet"),
  19927. weight: math.unit(120, "kg"),
  19928. name: "Front",
  19929. image: {
  19930. source: "./media/characters/taluthus/front.svg",
  19931. extra: 903 / 833,
  19932. bottom: 0.015
  19933. }
  19934. },
  19935. },
  19936. [
  19937. {
  19938. name: "Normal",
  19939. height: math.unit(7, "feet"),
  19940. default: true
  19941. },
  19942. {
  19943. name: "Macro",
  19944. height: math.unit(300, "feet")
  19945. },
  19946. ]
  19947. ))
  19948. characterMakers.push(() => makeCharacter(
  19949. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  19950. {
  19951. front: {
  19952. height: math.unit(5 + 9 / 12, "feet"),
  19953. weight: math.unit(145, "lb"),
  19954. name: "Front",
  19955. image: {
  19956. source: "./media/characters/dawn/front.svg",
  19957. extra: 2094 / 2016,
  19958. bottom: 0.025
  19959. }
  19960. },
  19961. back: {
  19962. height: math.unit(5 + 9 / 12, "feet"),
  19963. weight: math.unit(160, "lb"),
  19964. name: "Back",
  19965. image: {
  19966. source: "./media/characters/dawn/back.svg",
  19967. extra: 2112 / 2080,
  19968. bottom: 0.005
  19969. }
  19970. },
  19971. },
  19972. [
  19973. {
  19974. name: "Normal",
  19975. height: math.unit(6 + 7 / 12, "feet"),
  19976. default: true
  19977. },
  19978. ]
  19979. ))
  19980. characterMakers.push(() => makeCharacter(
  19981. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  19982. {
  19983. anthro: {
  19984. height: math.unit(8 + 3 / 12, "feet"),
  19985. weight: math.unit(450, "lb"),
  19986. name: "Anthro",
  19987. image: {
  19988. source: "./media/characters/arador/anthro.svg",
  19989. extra: 1835 / 1718,
  19990. bottom: 0.025
  19991. }
  19992. },
  19993. feral: {
  19994. height: math.unit(4, "feet"),
  19995. weight: math.unit(200, "lb"),
  19996. name: "Feral",
  19997. image: {
  19998. source: "./media/characters/arador/feral.svg",
  19999. extra: 1683 / 1514,
  20000. bottom: 0.07
  20001. }
  20002. },
  20003. },
  20004. [
  20005. {
  20006. name: "Normal",
  20007. height: math.unit(8 + 3 / 12, "feet")
  20008. },
  20009. {
  20010. name: "Macro",
  20011. height: math.unit(82.5, "feet"),
  20012. default: true
  20013. },
  20014. ]
  20015. ))
  20016. characterMakers.push(() => makeCharacter(
  20017. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  20018. {
  20019. front: {
  20020. height: math.unit(5 + 10 / 12, "feet"),
  20021. weight: math.unit(125, "lb"),
  20022. name: "Front",
  20023. image: {
  20024. source: "./media/characters/dharsi/front.svg",
  20025. extra: 716 / 630,
  20026. bottom: 0.035
  20027. }
  20028. },
  20029. },
  20030. [
  20031. {
  20032. name: "Nano",
  20033. height: math.unit(100, "nm")
  20034. },
  20035. {
  20036. name: "Micro",
  20037. height: math.unit(2, "inches")
  20038. },
  20039. {
  20040. name: "Normal",
  20041. height: math.unit(5 + 10 / 12, "feet"),
  20042. default: true
  20043. },
  20044. {
  20045. name: "Macro",
  20046. height: math.unit(1000, "feet")
  20047. },
  20048. {
  20049. name: "Megamacro",
  20050. height: math.unit(10, "miles")
  20051. },
  20052. {
  20053. name: "Gigamacro",
  20054. height: math.unit(3000, "miles")
  20055. },
  20056. {
  20057. name: "Teramacro",
  20058. height: math.unit(500000, "miles")
  20059. },
  20060. {
  20061. name: "Teramacro+",
  20062. height: math.unit(30, "galaxies")
  20063. },
  20064. ]
  20065. ))
  20066. characterMakers.push(() => makeCharacter(
  20067. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  20068. {
  20069. front: {
  20070. height: math.unit(6, "feet"),
  20071. weight: math.unit(150, "lb"),
  20072. name: "Front",
  20073. image: {
  20074. source: "./media/characters/deathy/front.svg",
  20075. extra: 1552 / 1463,
  20076. bottom: 0.025
  20077. }
  20078. },
  20079. side: {
  20080. height: math.unit(6, "feet"),
  20081. weight: math.unit(150, "lb"),
  20082. name: "Side",
  20083. image: {
  20084. source: "./media/characters/deathy/side.svg",
  20085. extra: 1604 / 1455,
  20086. bottom: 0.025
  20087. }
  20088. },
  20089. back: {
  20090. height: math.unit(6, "feet"),
  20091. weight: math.unit(150, "lb"),
  20092. name: "Back",
  20093. image: {
  20094. source: "./media/characters/deathy/back.svg",
  20095. extra: 1580 / 1463,
  20096. bottom: 0.005
  20097. }
  20098. },
  20099. },
  20100. [
  20101. {
  20102. name: "Micro",
  20103. height: math.unit(5, "millimeters")
  20104. },
  20105. {
  20106. name: "Normal",
  20107. height: math.unit(6 + 5 / 12, "feet"),
  20108. default: true
  20109. },
  20110. ]
  20111. ))
  20112. characterMakers.push(() => makeCharacter(
  20113. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  20114. {
  20115. front: {
  20116. height: math.unit(16, "feet"),
  20117. weight: math.unit(4000, "lb"),
  20118. name: "Front",
  20119. image: {
  20120. source: "./media/characters/juniper/front.svg",
  20121. bottom: 0.04
  20122. }
  20123. },
  20124. },
  20125. [
  20126. {
  20127. name: "Normal",
  20128. height: math.unit(16, "feet"),
  20129. default: true
  20130. },
  20131. ]
  20132. ))
  20133. characterMakers.push(() => makeCharacter(
  20134. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  20135. {
  20136. front: {
  20137. height: math.unit(6, "feet"),
  20138. weight: math.unit(150, "lb"),
  20139. name: "Front",
  20140. image: {
  20141. source: "./media/characters/hipster/front.svg",
  20142. extra: 1312 / 1209,
  20143. bottom: 0.025
  20144. }
  20145. },
  20146. back: {
  20147. height: math.unit(6, "feet"),
  20148. weight: math.unit(150, "lb"),
  20149. name: "Back",
  20150. image: {
  20151. source: "./media/characters/hipster/back.svg",
  20152. extra: 1281 / 1196,
  20153. bottom: 0.01
  20154. }
  20155. },
  20156. },
  20157. [
  20158. {
  20159. name: "Micro",
  20160. height: math.unit(1, "mm")
  20161. },
  20162. {
  20163. name: "Normal",
  20164. height: math.unit(4, "inches"),
  20165. default: true
  20166. },
  20167. {
  20168. name: "Macro",
  20169. height: math.unit(500, "feet")
  20170. },
  20171. {
  20172. name: "Megamacro",
  20173. height: math.unit(1000, "miles")
  20174. },
  20175. ]
  20176. ))
  20177. characterMakers.push(() => makeCharacter(
  20178. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  20179. {
  20180. front: {
  20181. height: math.unit(6, "feet"),
  20182. weight: math.unit(150, "lb"),
  20183. name: "Front",
  20184. image: {
  20185. source: "./media/characters/tendirmuldr/front.svg",
  20186. extra: 1878 / 1772,
  20187. bottom: 0.015
  20188. }
  20189. },
  20190. },
  20191. [
  20192. {
  20193. name: "Megamacro",
  20194. height: math.unit(1500, "miles"),
  20195. default: true
  20196. },
  20197. ]
  20198. ))
  20199. characterMakers.push(() => makeCharacter(
  20200. { name: "Mort", species: ["demon"], tags: ["feral"] },
  20201. {
  20202. front: {
  20203. height: math.unit(14, "feet"),
  20204. weight: math.unit(12000, "lb"),
  20205. name: "Front",
  20206. image: {
  20207. source: "./media/characters/mort/front.svg",
  20208. extra: 365 / 318,
  20209. bottom: 0.01
  20210. }
  20211. },
  20212. side: {
  20213. height: math.unit(14, "feet"),
  20214. weight: math.unit(12000, "lb"),
  20215. name: "Side",
  20216. image: {
  20217. source: "./media/characters/mort/side.svg",
  20218. extra: 365 / 318,
  20219. bottom: 0.052
  20220. },
  20221. default: true
  20222. },
  20223. back: {
  20224. height: math.unit(14, "feet"),
  20225. weight: math.unit(12000, "lb"),
  20226. name: "Back",
  20227. image: {
  20228. source: "./media/characters/mort/back.svg",
  20229. extra: 371 / 332,
  20230. bottom: 0.18
  20231. }
  20232. },
  20233. },
  20234. [
  20235. {
  20236. name: "Normal",
  20237. height: math.unit(14, "feet"),
  20238. default: true
  20239. },
  20240. ]
  20241. ))
  20242. characterMakers.push(() => makeCharacter(
  20243. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  20244. {
  20245. front: {
  20246. height: math.unit(8, "feet"),
  20247. weight: math.unit(1, "ton"),
  20248. name: "Front",
  20249. image: {
  20250. source: "./media/characters/lycoa/front.svg",
  20251. extra: 1875 / 1789,
  20252. bottom: 0.022
  20253. }
  20254. },
  20255. back: {
  20256. height: math.unit(8, "feet"),
  20257. weight: math.unit(1, "ton"),
  20258. name: "Back",
  20259. image: {
  20260. source: "./media/characters/lycoa/back.svg",
  20261. extra: 1835 / 1781,
  20262. bottom: 0.03
  20263. }
  20264. },
  20265. head: {
  20266. height: math.unit(2.1, "feet"),
  20267. name: "Head",
  20268. image: {
  20269. source: "./media/characters/lycoa/head.svg"
  20270. }
  20271. },
  20272. tailmaw: {
  20273. height: math.unit(1.9, "feet"),
  20274. name: "Tailmaw",
  20275. image: {
  20276. source: "./media/characters/lycoa/tailmaw.svg"
  20277. }
  20278. },
  20279. tentacles: {
  20280. height: math.unit(2.1, "feet"),
  20281. name: "Tentacles",
  20282. image: {
  20283. source: "./media/characters/lycoa/tentacles.svg"
  20284. }
  20285. },
  20286. dick: {
  20287. height: math.unit(1.73, "feet"),
  20288. name: "Dick",
  20289. image: {
  20290. source: "./media/characters/lycoa/dick.svg"
  20291. }
  20292. },
  20293. },
  20294. [
  20295. {
  20296. name: "Normal",
  20297. height: math.unit(8, "feet"),
  20298. default: true
  20299. },
  20300. {
  20301. name: "Macro",
  20302. height: math.unit(30, "feet")
  20303. },
  20304. ]
  20305. ))
  20306. characterMakers.push(() => makeCharacter(
  20307. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  20308. {
  20309. front: {
  20310. height: math.unit(4 + 2 / 12, "feet"),
  20311. weight: math.unit(70, "lb"),
  20312. name: "Front",
  20313. image: {
  20314. source: "./media/characters/naldara/front.svg",
  20315. extra: 841 / 720,
  20316. bottom: 0.04
  20317. }
  20318. },
  20319. naga: {
  20320. height: math.unit(23, "feet"),
  20321. weight: math.unit(15000, "kg"),
  20322. name: "Naga",
  20323. image: {
  20324. source: "./media/characters/naldara/naga.svg",
  20325. extra: 3290 / 2959,
  20326. bottom: 124 / 3432
  20327. }
  20328. },
  20329. },
  20330. [
  20331. {
  20332. name: "Normal",
  20333. height: math.unit(4 + 2 / 12, "feet"),
  20334. default: true
  20335. },
  20336. ]
  20337. ))
  20338. characterMakers.push(() => makeCharacter(
  20339. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  20340. {
  20341. front: {
  20342. height: math.unit(13 + 7 / 12, "feet"),
  20343. weight: math.unit(1500, "lb"),
  20344. name: "Front",
  20345. image: {
  20346. source: "./media/characters/briar/front.svg",
  20347. extra: 626 / 596,
  20348. bottom: 0.08
  20349. }
  20350. },
  20351. },
  20352. [
  20353. {
  20354. name: "Normal",
  20355. height: math.unit(13 + 7 / 12, "feet"),
  20356. default: true
  20357. },
  20358. ]
  20359. ))
  20360. characterMakers.push(() => makeCharacter(
  20361. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  20362. {
  20363. side: {
  20364. height: math.unit(10, "feet"),
  20365. weight: math.unit(500, "lb"),
  20366. name: "Side",
  20367. image: {
  20368. source: "./media/characters/vanguard/side.svg",
  20369. extra: 502 / 425,
  20370. bottom: 0.087
  20371. }
  20372. },
  20373. },
  20374. [
  20375. {
  20376. name: "Normal",
  20377. height: math.unit(10, "feet"),
  20378. default: true
  20379. },
  20380. ]
  20381. ))
  20382. characterMakers.push(() => makeCharacter(
  20383. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  20384. {
  20385. front: {
  20386. height: math.unit(7.5, "feet"),
  20387. weight: math.unit(2, "lb"),
  20388. name: "Front",
  20389. image: {
  20390. source: "./media/characters/artemis/front.svg",
  20391. extra: 1192 / 1075,
  20392. bottom: 0.07
  20393. }
  20394. },
  20395. frontNsfw: {
  20396. height: math.unit(7.5, "feet"),
  20397. weight: math.unit(2, "lb"),
  20398. name: "Front (NSFW)",
  20399. image: {
  20400. source: "./media/characters/artemis/front-nsfw.svg",
  20401. extra: 1192 / 1075,
  20402. bottom: 0.07
  20403. }
  20404. },
  20405. frontNsfwer: {
  20406. height: math.unit(7.5, "feet"),
  20407. weight: math.unit(2, "lb"),
  20408. name: "Front (NSFW-er)",
  20409. image: {
  20410. source: "./media/characters/artemis/front-nsfwer.svg",
  20411. extra: 1192 / 1075,
  20412. bottom: 0.07
  20413. }
  20414. },
  20415. side: {
  20416. height: math.unit(7.5, "feet"),
  20417. weight: math.unit(2, "lb"),
  20418. name: "Side",
  20419. image: {
  20420. source: "./media/characters/artemis/side.svg",
  20421. extra: 1192 / 1075,
  20422. bottom: 0.07
  20423. }
  20424. },
  20425. sideNsfw: {
  20426. height: math.unit(7.5, "feet"),
  20427. weight: math.unit(2, "lb"),
  20428. name: "Side (NSFW)",
  20429. image: {
  20430. source: "./media/characters/artemis/side-nsfw.svg",
  20431. extra: 1192 / 1075,
  20432. bottom: 0.07
  20433. }
  20434. },
  20435. sideNsfwer: {
  20436. height: math.unit(7.5, "feet"),
  20437. weight: math.unit(2, "lb"),
  20438. name: "Side (NSFW-er)",
  20439. image: {
  20440. source: "./media/characters/artemis/side-nsfwer.svg",
  20441. extra: 1192 / 1075,
  20442. bottom: 0.07
  20443. }
  20444. },
  20445. maw: {
  20446. height: math.unit(1.1, "feet"),
  20447. name: "Maw",
  20448. image: {
  20449. source: "./media/characters/artemis/maw.svg"
  20450. }
  20451. },
  20452. stomach: {
  20453. height: math.unit(0.95, "feet"),
  20454. name: "Stomach",
  20455. image: {
  20456. source: "./media/characters/artemis/stomach.svg"
  20457. }
  20458. },
  20459. dickCanine: {
  20460. height: math.unit(1, "feet"),
  20461. name: "Dick (Canine)",
  20462. image: {
  20463. source: "./media/characters/artemis/dick-canine.svg"
  20464. }
  20465. },
  20466. dickEquine: {
  20467. height: math.unit(0.85, "feet"),
  20468. name: "Dick (Equine)",
  20469. image: {
  20470. source: "./media/characters/artemis/dick-equine.svg"
  20471. }
  20472. },
  20473. dickExotic: {
  20474. height: math.unit(0.85, "feet"),
  20475. name: "Dick (Exotic)",
  20476. image: {
  20477. source: "./media/characters/artemis/dick-exotic.svg"
  20478. }
  20479. },
  20480. },
  20481. [
  20482. {
  20483. name: "Normal",
  20484. height: math.unit(7.5, "feet"),
  20485. default: true
  20486. },
  20487. {
  20488. name: "Enlarged",
  20489. height: math.unit(12, "feet")
  20490. },
  20491. ]
  20492. ))
  20493. characterMakers.push(() => makeCharacter(
  20494. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  20495. {
  20496. front: {
  20497. height: math.unit(5 + 3 / 12, "feet"),
  20498. weight: math.unit(160, "lb"),
  20499. name: "Front",
  20500. image: {
  20501. source: "./media/characters/kira/front.svg",
  20502. extra: 906 / 786,
  20503. bottom: 0.01
  20504. }
  20505. },
  20506. back: {
  20507. height: math.unit(5 + 3 / 12, "feet"),
  20508. weight: math.unit(160, "lb"),
  20509. name: "Back",
  20510. image: {
  20511. source: "./media/characters/kira/back.svg",
  20512. extra: 882 / 757,
  20513. bottom: 0.005
  20514. }
  20515. },
  20516. frontDressed: {
  20517. height: math.unit(5 + 3 / 12, "feet"),
  20518. weight: math.unit(160, "lb"),
  20519. name: "Front (Dressed)",
  20520. image: {
  20521. source: "./media/characters/kira/front-dressed.svg",
  20522. extra: 906 / 786,
  20523. bottom: 0.01
  20524. }
  20525. },
  20526. beans: {
  20527. height: math.unit(0.92, "feet"),
  20528. name: "Beans",
  20529. image: {
  20530. source: "./media/characters/kira/beans.svg"
  20531. }
  20532. },
  20533. },
  20534. [
  20535. {
  20536. name: "Normal",
  20537. height: math.unit(5 + 3 / 12, "feet"),
  20538. default: true
  20539. },
  20540. ]
  20541. ))
  20542. characterMakers.push(() => makeCharacter(
  20543. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  20544. {
  20545. front: {
  20546. height: math.unit(5 + 4 / 12, "feet"),
  20547. weight: math.unit(145, "lb"),
  20548. name: "Front",
  20549. image: {
  20550. source: "./media/characters/scramble/front.svg",
  20551. extra: 763 / 727,
  20552. bottom: 0.05
  20553. }
  20554. },
  20555. back: {
  20556. height: math.unit(5 + 4 / 12, "feet"),
  20557. weight: math.unit(145, "lb"),
  20558. name: "Back",
  20559. image: {
  20560. source: "./media/characters/scramble/back.svg",
  20561. extra: 826 / 737,
  20562. bottom: 0.002
  20563. }
  20564. },
  20565. },
  20566. [
  20567. {
  20568. name: "Normal",
  20569. height: math.unit(5 + 4 / 12, "feet"),
  20570. default: true
  20571. },
  20572. ]
  20573. ))
  20574. characterMakers.push(() => makeCharacter(
  20575. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  20576. {
  20577. side: {
  20578. height: math.unit(6 + 2 / 12, "feet"),
  20579. weight: math.unit(190, "lb"),
  20580. name: "Side",
  20581. image: {
  20582. source: "./media/characters/biscuit/side.svg",
  20583. extra: 858 / 791,
  20584. bottom: 0.044
  20585. }
  20586. },
  20587. },
  20588. [
  20589. {
  20590. name: "Normal",
  20591. height: math.unit(6 + 2 / 12, "feet"),
  20592. default: true
  20593. },
  20594. ]
  20595. ))
  20596. characterMakers.push(() => makeCharacter(
  20597. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  20598. {
  20599. front: {
  20600. height: math.unit(5 + 2 / 12, "feet"),
  20601. weight: math.unit(120, "lb"),
  20602. name: "Front",
  20603. image: {
  20604. source: "./media/characters/poffin/front.svg",
  20605. extra: 786 / 680,
  20606. bottom: 0.005
  20607. }
  20608. },
  20609. },
  20610. [
  20611. {
  20612. name: "Normal",
  20613. height: math.unit(5 + 2 / 12, "feet"),
  20614. default: true
  20615. },
  20616. ]
  20617. ))
  20618. characterMakers.push(() => makeCharacter(
  20619. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  20620. {
  20621. front: {
  20622. height: math.unit(6 + 3 / 12, "feet"),
  20623. weight: math.unit(519, "lb"),
  20624. name: "Front",
  20625. image: {
  20626. source: "./media/characters/dhari/front.svg",
  20627. extra: 1048 / 946,
  20628. bottom: 0.015
  20629. }
  20630. },
  20631. back: {
  20632. height: math.unit(6 + 3 / 12, "feet"),
  20633. weight: math.unit(519, "lb"),
  20634. name: "Back",
  20635. image: {
  20636. source: "./media/characters/dhari/back.svg",
  20637. extra: 1048 / 931,
  20638. bottom: 0.005
  20639. }
  20640. },
  20641. frontDressed: {
  20642. height: math.unit(6 + 3 / 12, "feet"),
  20643. weight: math.unit(519, "lb"),
  20644. name: "Front (Dressed)",
  20645. image: {
  20646. source: "./media/characters/dhari/front-dressed.svg",
  20647. extra: 1713 / 1546,
  20648. bottom: 0.02
  20649. }
  20650. },
  20651. backDressed: {
  20652. height: math.unit(6 + 3 / 12, "feet"),
  20653. weight: math.unit(519, "lb"),
  20654. name: "Back (Dressed)",
  20655. image: {
  20656. source: "./media/characters/dhari/back-dressed.svg",
  20657. extra: 1699 / 1537,
  20658. bottom: 0.01
  20659. }
  20660. },
  20661. maw: {
  20662. height: math.unit(0.95, "feet"),
  20663. name: "Maw",
  20664. image: {
  20665. source: "./media/characters/dhari/maw.svg"
  20666. }
  20667. },
  20668. wereFront: {
  20669. height: math.unit(12 + 8 / 12, "feet"),
  20670. weight: math.unit(4000, "lb"),
  20671. name: "Front (Were)",
  20672. image: {
  20673. source: "./media/characters/dhari/were-front.svg",
  20674. extra: 1065 / 969,
  20675. bottom: 0.015
  20676. }
  20677. },
  20678. wereBack: {
  20679. height: math.unit(12 + 8 / 12, "feet"),
  20680. weight: math.unit(4000, "lb"),
  20681. name: "Back (Were)",
  20682. image: {
  20683. source: "./media/characters/dhari/were-back.svg",
  20684. extra: 1065 / 969,
  20685. bottom: 0.012
  20686. }
  20687. },
  20688. wereMaw: {
  20689. height: math.unit(0.625, "meters"),
  20690. name: "Maw (Were)",
  20691. image: {
  20692. source: "./media/characters/dhari/were-maw.svg"
  20693. }
  20694. },
  20695. },
  20696. [
  20697. {
  20698. name: "Normal",
  20699. height: math.unit(6 + 3 / 12, "feet"),
  20700. default: true
  20701. },
  20702. ]
  20703. ))
  20704. characterMakers.push(() => makeCharacter(
  20705. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  20706. {
  20707. anthro: {
  20708. height: math.unit(5 + 7 / 12, "feet"),
  20709. weight: math.unit(175, "lb"),
  20710. name: "Anthro",
  20711. image: {
  20712. source: "./media/characters/rena-dyne/anthro.svg",
  20713. extra: 1849 / 1785,
  20714. bottom: 0.005
  20715. }
  20716. },
  20717. taur: {
  20718. height: math.unit(15 + 6 / 12, "feet"),
  20719. weight: math.unit(8000, "lb"),
  20720. name: "Taur",
  20721. image: {
  20722. source: "./media/characters/rena-dyne/taur.svg",
  20723. extra: 2315 / 2234,
  20724. bottom: 0.033
  20725. }
  20726. },
  20727. },
  20728. [
  20729. {
  20730. name: "Normal",
  20731. height: math.unit(5 + 7 / 12, "feet"),
  20732. default: true
  20733. },
  20734. ]
  20735. ))
  20736. characterMakers.push(() => makeCharacter(
  20737. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  20738. {
  20739. front: {
  20740. height: math.unit(8, "feet"),
  20741. weight: math.unit(600, "lb"),
  20742. name: "Front",
  20743. image: {
  20744. source: "./media/characters/weremeep/front.svg",
  20745. extra: 967 / 862,
  20746. bottom: 0.01
  20747. }
  20748. },
  20749. },
  20750. [
  20751. {
  20752. name: "Normal",
  20753. height: math.unit(8, "feet"),
  20754. default: true
  20755. },
  20756. {
  20757. name: "Lorg",
  20758. height: math.unit(12, "feet")
  20759. },
  20760. {
  20761. name: "Oh Lawd She Comin'",
  20762. height: math.unit(20, "feet")
  20763. },
  20764. ]
  20765. ))
  20766. characterMakers.push(() => makeCharacter(
  20767. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  20768. {
  20769. front: {
  20770. height: math.unit(4, "feet"),
  20771. weight: math.unit(90, "lb"),
  20772. name: "Front",
  20773. image: {
  20774. source: "./media/characters/reza/front.svg",
  20775. extra: 1183 / 1111,
  20776. bottom: 0.017
  20777. }
  20778. },
  20779. back: {
  20780. height: math.unit(4, "feet"),
  20781. weight: math.unit(90, "lb"),
  20782. name: "Back",
  20783. image: {
  20784. source: "./media/characters/reza/back.svg",
  20785. extra: 1183 / 1111,
  20786. bottom: 0.01
  20787. }
  20788. },
  20789. drake: {
  20790. height: math.unit(30, "feet"),
  20791. weight: math.unit(246960, "lb"),
  20792. name: "Drake",
  20793. image: {
  20794. source: "./media/characters/reza/drake.svg",
  20795. extra: 2350 / 2024,
  20796. bottom: 60.7 / 2403
  20797. }
  20798. },
  20799. },
  20800. [
  20801. {
  20802. name: "Normal",
  20803. height: math.unit(4, "feet"),
  20804. default: true
  20805. },
  20806. ]
  20807. ))
  20808. characterMakers.push(() => makeCharacter(
  20809. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  20810. {
  20811. side: {
  20812. height: math.unit(15, "feet"),
  20813. weight: math.unit(14, "tons"),
  20814. name: "Side",
  20815. image: {
  20816. source: "./media/characters/athea/side.svg",
  20817. extra: 960 / 540,
  20818. bottom: 0.003
  20819. }
  20820. },
  20821. sitting: {
  20822. height: math.unit(6 * 2.85, "feet"),
  20823. weight: math.unit(14, "tons"),
  20824. name: "Sitting",
  20825. image: {
  20826. source: "./media/characters/athea/sitting.svg",
  20827. extra: 621 / 581,
  20828. bottom: 0.075
  20829. }
  20830. },
  20831. maw: {
  20832. height: math.unit(7.59498031496063, "feet"),
  20833. name: "Maw",
  20834. image: {
  20835. source: "./media/characters/athea/maw.svg"
  20836. }
  20837. },
  20838. },
  20839. [
  20840. {
  20841. name: "Lap Cat",
  20842. height: math.unit(2.5, "feet")
  20843. },
  20844. {
  20845. name: "Minimacro",
  20846. height: math.unit(15, "feet"),
  20847. default: true
  20848. },
  20849. {
  20850. name: "Macro",
  20851. height: math.unit(120, "feet")
  20852. },
  20853. {
  20854. name: "Macro+",
  20855. height: math.unit(640, "feet")
  20856. },
  20857. {
  20858. name: "Colossus",
  20859. height: math.unit(2.2, "miles")
  20860. },
  20861. ]
  20862. ))
  20863. characterMakers.push(() => makeCharacter(
  20864. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  20865. {
  20866. front: {
  20867. height: math.unit(8 + 8 / 12, "feet"),
  20868. weight: math.unit(130, "kg"),
  20869. name: "Front",
  20870. image: {
  20871. source: "./media/characters/seroko/front.svg",
  20872. extra: 1385 / 1280,
  20873. bottom: 0.025
  20874. }
  20875. },
  20876. back: {
  20877. height: math.unit(8 + 8 / 12, "feet"),
  20878. weight: math.unit(130, "kg"),
  20879. name: "Back",
  20880. image: {
  20881. source: "./media/characters/seroko/back.svg",
  20882. extra: 1369 / 1238,
  20883. bottom: 0.018
  20884. }
  20885. },
  20886. frontDressed: {
  20887. height: math.unit(8 + 8 / 12, "feet"),
  20888. weight: math.unit(130, "kg"),
  20889. name: "Front (Dressed)",
  20890. image: {
  20891. source: "./media/characters/seroko/front-dressed.svg",
  20892. extra: 1366 / 1275,
  20893. bottom: 0.03
  20894. }
  20895. },
  20896. },
  20897. [
  20898. {
  20899. name: "Normal",
  20900. height: math.unit(8 + 8 / 12, "feet"),
  20901. default: true
  20902. },
  20903. ]
  20904. ))
  20905. characterMakers.push(() => makeCharacter(
  20906. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  20907. {
  20908. front: {
  20909. height: math.unit(5.5, "feet"),
  20910. weight: math.unit(160, "lb"),
  20911. name: "Front",
  20912. image: {
  20913. source: "./media/characters/quatzi/front.svg",
  20914. extra: 2346 / 2242,
  20915. bottom: 0.015
  20916. }
  20917. },
  20918. },
  20919. [
  20920. {
  20921. name: "Normal",
  20922. height: math.unit(5.5, "feet"),
  20923. default: true
  20924. },
  20925. {
  20926. name: "Big",
  20927. height: math.unit(7.7, "feet")
  20928. },
  20929. ]
  20930. ))
  20931. characterMakers.push(() => makeCharacter(
  20932. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  20933. {
  20934. front: {
  20935. height: math.unit(5 + 11 / 12, "feet"),
  20936. weight: math.unit(180, "lb"),
  20937. name: "Front",
  20938. image: {
  20939. source: "./media/characters/sen/front.svg",
  20940. extra: 1321 / 1254,
  20941. bottom: 0.015
  20942. }
  20943. },
  20944. side: {
  20945. height: math.unit(5 + 11 / 12, "feet"),
  20946. weight: math.unit(180, "lb"),
  20947. name: "Side",
  20948. image: {
  20949. source: "./media/characters/sen/side.svg",
  20950. extra: 1321 / 1254,
  20951. bottom: 0.007
  20952. }
  20953. },
  20954. back: {
  20955. height: math.unit(5 + 11 / 12, "feet"),
  20956. weight: math.unit(180, "lb"),
  20957. name: "Back",
  20958. image: {
  20959. source: "./media/characters/sen/back.svg",
  20960. extra: 1321 / 1254
  20961. }
  20962. },
  20963. },
  20964. [
  20965. {
  20966. name: "Normal",
  20967. height: math.unit(5 + 11 / 12, "feet"),
  20968. default: true
  20969. },
  20970. ]
  20971. ))
  20972. characterMakers.push(() => makeCharacter(
  20973. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  20974. {
  20975. front: {
  20976. height: math.unit(166.6, "cm"),
  20977. weight: math.unit(66.6, "kg"),
  20978. name: "Front",
  20979. image: {
  20980. source: "./media/characters/fruity/front.svg",
  20981. extra: 1510 / 1386,
  20982. bottom: 0.04
  20983. }
  20984. },
  20985. back: {
  20986. height: math.unit(166.6, "cm"),
  20987. weight: math.unit(66.6, "lb"),
  20988. name: "Back",
  20989. image: {
  20990. source: "./media/characters/fruity/back.svg",
  20991. extra: 1563 / 1435,
  20992. bottom: 0.005
  20993. }
  20994. },
  20995. },
  20996. [
  20997. {
  20998. name: "Normal",
  20999. height: math.unit(166.6, "cm"),
  21000. default: true
  21001. },
  21002. {
  21003. name: "Demonic",
  21004. height: math.unit(166.6, "feet")
  21005. },
  21006. ]
  21007. ))
  21008. characterMakers.push(() => makeCharacter(
  21009. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  21010. {
  21011. side: {
  21012. height: math.unit(10, "feet"),
  21013. weight: math.unit(500, "lb"),
  21014. name: "Side",
  21015. image: {
  21016. source: "./media/characters/zost/side.svg",
  21017. extra: 966 / 880,
  21018. bottom: 0.075
  21019. }
  21020. },
  21021. mawFront: {
  21022. height: math.unit(1.08, "meters"),
  21023. name: "Maw (Front)",
  21024. image: {
  21025. source: "./media/characters/zost/maw-front.svg"
  21026. }
  21027. },
  21028. mawSide: {
  21029. height: math.unit(2.66, "feet"),
  21030. name: "Maw (Side)",
  21031. image: {
  21032. source: "./media/characters/zost/maw-side.svg"
  21033. }
  21034. },
  21035. },
  21036. [
  21037. {
  21038. name: "Normal",
  21039. height: math.unit(10, "feet"),
  21040. default: true
  21041. },
  21042. ]
  21043. ))
  21044. characterMakers.push(() => makeCharacter(
  21045. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  21046. {
  21047. front: {
  21048. height: math.unit(5 + 4 / 12, "feet"),
  21049. weight: math.unit(120, "lb"),
  21050. name: "Front",
  21051. image: {
  21052. source: "./media/characters/luci/front.svg",
  21053. extra: 1985 / 1884,
  21054. bottom: 0.04
  21055. }
  21056. },
  21057. back: {
  21058. height: math.unit(5 + 4 / 12, "feet"),
  21059. weight: math.unit(120, "lb"),
  21060. name: "Back",
  21061. image: {
  21062. source: "./media/characters/luci/back.svg",
  21063. extra: 1892 / 1791,
  21064. bottom: 0.002
  21065. }
  21066. },
  21067. },
  21068. [
  21069. {
  21070. name: "Normal",
  21071. height: math.unit(5 + 4 / 12, "feet"),
  21072. default: true
  21073. },
  21074. ]
  21075. ))
  21076. characterMakers.push(() => makeCharacter(
  21077. { name: "2th", species: ["monster"], tags: ["anthro"] },
  21078. {
  21079. front: {
  21080. height: math.unit(1500, "feet"),
  21081. weight: math.unit(3.8e6, "tons"),
  21082. name: "Front",
  21083. image: {
  21084. source: "./media/characters/2th/front.svg",
  21085. extra: 3489 / 3350,
  21086. bottom: 0.1
  21087. }
  21088. },
  21089. foot: {
  21090. height: math.unit(461, "feet"),
  21091. name: "Foot",
  21092. image: {
  21093. source: "./media/characters/2th/foot.svg"
  21094. }
  21095. },
  21096. },
  21097. [
  21098. {
  21099. name: "\"Micro\"",
  21100. height: math.unit(15 + 7 / 12, "feet")
  21101. },
  21102. {
  21103. name: "Normal",
  21104. height: math.unit(1500, "feet"),
  21105. default: true
  21106. },
  21107. {
  21108. name: "Macro",
  21109. height: math.unit(5000, "feet")
  21110. },
  21111. {
  21112. name: "Megamacro",
  21113. height: math.unit(15, "miles")
  21114. },
  21115. {
  21116. name: "Gigamacro",
  21117. height: math.unit(4000, "miles")
  21118. },
  21119. {
  21120. name: "Galactic",
  21121. height: math.unit(50, "AU")
  21122. },
  21123. ]
  21124. ))
  21125. characterMakers.push(() => makeCharacter(
  21126. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  21127. {
  21128. front: {
  21129. height: math.unit(5 + 6 / 12, "feet"),
  21130. weight: math.unit(220, "lb"),
  21131. name: "Front",
  21132. image: {
  21133. source: "./media/characters/amethyst/front.svg",
  21134. extra: 2078 / 2040,
  21135. bottom: 0.045
  21136. }
  21137. },
  21138. back: {
  21139. height: math.unit(5 + 6 / 12, "feet"),
  21140. weight: math.unit(220, "lb"),
  21141. name: "Back",
  21142. image: {
  21143. source: "./media/characters/amethyst/back.svg",
  21144. extra: 2021 / 1989,
  21145. bottom: 0.02
  21146. }
  21147. },
  21148. },
  21149. [
  21150. {
  21151. name: "Normal",
  21152. height: math.unit(5 + 6 / 12, "feet"),
  21153. default: true
  21154. },
  21155. ]
  21156. ))
  21157. characterMakers.push(() => makeCharacter(
  21158. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  21159. {
  21160. front: {
  21161. height: math.unit(4 + 11 / 12, "feet"),
  21162. weight: math.unit(120, "lb"),
  21163. name: "Front",
  21164. image: {
  21165. source: "./media/characters/yumi-akiyama/front.svg",
  21166. extra: 1327 / 1235,
  21167. bottom: 0.02
  21168. }
  21169. },
  21170. back: {
  21171. height: math.unit(4 + 11 / 12, "feet"),
  21172. weight: math.unit(120, "lb"),
  21173. name: "Back",
  21174. image: {
  21175. source: "./media/characters/yumi-akiyama/back.svg",
  21176. extra: 1287 / 1245,
  21177. bottom: 0.002
  21178. }
  21179. },
  21180. },
  21181. [
  21182. {
  21183. name: "Galactic",
  21184. height: math.unit(50, "galaxies"),
  21185. default: true
  21186. },
  21187. {
  21188. name: "Universal",
  21189. height: math.unit(100, "universes")
  21190. },
  21191. ]
  21192. ))
  21193. characterMakers.push(() => makeCharacter(
  21194. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  21195. {
  21196. front: {
  21197. height: math.unit(8, "feet"),
  21198. weight: math.unit(500, "lb"),
  21199. name: "Front",
  21200. image: {
  21201. source: "./media/characters/rifter-yrmori/front.svg",
  21202. extra: 1180 / 1125,
  21203. bottom: 0.02
  21204. }
  21205. },
  21206. back: {
  21207. height: math.unit(8, "feet"),
  21208. weight: math.unit(500, "lb"),
  21209. name: "Back",
  21210. image: {
  21211. source: "./media/characters/rifter-yrmori/back.svg",
  21212. extra: 1190 / 1145,
  21213. bottom: 0.001
  21214. }
  21215. },
  21216. wings: {
  21217. height: math.unit(7.75, "feet"),
  21218. weight: math.unit(500, "lb"),
  21219. name: "Wings",
  21220. image: {
  21221. source: "./media/characters/rifter-yrmori/wings.svg",
  21222. extra: 1357 / 1285
  21223. }
  21224. },
  21225. maw: {
  21226. height: math.unit(0.8, "feet"),
  21227. name: "Maw",
  21228. image: {
  21229. source: "./media/characters/rifter-yrmori/maw.svg"
  21230. }
  21231. },
  21232. mawfront: {
  21233. height: math.unit(1.45, "feet"),
  21234. name: "Maw (Front)",
  21235. image: {
  21236. source: "./media/characters/rifter-yrmori/maw-front.svg"
  21237. }
  21238. },
  21239. },
  21240. [
  21241. {
  21242. name: "Normal",
  21243. height: math.unit(8, "feet"),
  21244. default: true
  21245. },
  21246. {
  21247. name: "Macro",
  21248. height: math.unit(42, "meters")
  21249. },
  21250. ]
  21251. ))
  21252. characterMakers.push(() => makeCharacter(
  21253. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  21254. {
  21255. were: {
  21256. height: math.unit(25 + 6 / 12, "feet"),
  21257. weight: math.unit(10000, "lb"),
  21258. name: "Were",
  21259. image: {
  21260. source: "./media/characters/tahajin/were.svg",
  21261. extra: 801 / 770,
  21262. bottom: 0.042
  21263. }
  21264. },
  21265. aquatic: {
  21266. height: math.unit(6 + 4 / 12, "feet"),
  21267. weight: math.unit(160, "lb"),
  21268. name: "Aquatic",
  21269. image: {
  21270. source: "./media/characters/tahajin/aquatic.svg",
  21271. extra: 572 / 542,
  21272. bottom: 0.04
  21273. }
  21274. },
  21275. chow: {
  21276. height: math.unit(8 + 11 / 12, "feet"),
  21277. weight: math.unit(450, "lb"),
  21278. name: "Chow",
  21279. image: {
  21280. source: "./media/characters/tahajin/chow.svg",
  21281. extra: 660 / 640,
  21282. bottom: 0.015
  21283. }
  21284. },
  21285. demiNaga: {
  21286. height: math.unit(6 + 8 / 12, "feet"),
  21287. weight: math.unit(300, "lb"),
  21288. name: "Demi Naga",
  21289. image: {
  21290. source: "./media/characters/tahajin/demi-naga.svg",
  21291. extra: 643 / 615,
  21292. bottom: 0.1
  21293. }
  21294. },
  21295. data: {
  21296. height: math.unit(5, "inches"),
  21297. weight: math.unit(0.1, "lb"),
  21298. name: "Data",
  21299. image: {
  21300. source: "./media/characters/tahajin/data.svg"
  21301. }
  21302. },
  21303. fluu: {
  21304. height: math.unit(5 + 7 / 12, "feet"),
  21305. weight: math.unit(140, "lb"),
  21306. name: "Fluu",
  21307. image: {
  21308. source: "./media/characters/tahajin/fluu.svg",
  21309. extra: 628 / 592,
  21310. bottom: 0.02
  21311. }
  21312. },
  21313. starWarrior: {
  21314. height: math.unit(4 + 5 / 12, "feet"),
  21315. weight: math.unit(50, "lb"),
  21316. name: "Star Warrior",
  21317. image: {
  21318. source: "./media/characters/tahajin/star-warrior.svg"
  21319. }
  21320. },
  21321. },
  21322. [
  21323. {
  21324. name: "Normal",
  21325. height: math.unit(25 + 6 / 12, "feet"),
  21326. default: true
  21327. },
  21328. ]
  21329. ))
  21330. characterMakers.push(() => makeCharacter(
  21331. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  21332. {
  21333. front: {
  21334. height: math.unit(8, "feet"),
  21335. weight: math.unit(350, "lb"),
  21336. name: "Front",
  21337. image: {
  21338. source: "./media/characters/gabira/front.svg",
  21339. extra: 608 / 580,
  21340. bottom: 0.03
  21341. }
  21342. },
  21343. back: {
  21344. height: math.unit(8, "feet"),
  21345. weight: math.unit(350, "lb"),
  21346. name: "Back",
  21347. image: {
  21348. source: "./media/characters/gabira/back.svg",
  21349. extra: 608 / 580,
  21350. bottom: 0.03
  21351. }
  21352. },
  21353. },
  21354. [
  21355. {
  21356. name: "Normal",
  21357. height: math.unit(8, "feet"),
  21358. default: true
  21359. },
  21360. ]
  21361. ))
  21362. characterMakers.push(() => makeCharacter(
  21363. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  21364. {
  21365. front: {
  21366. height: math.unit(5 + 3 / 12, "feet"),
  21367. weight: math.unit(137, "lb"),
  21368. name: "Front",
  21369. image: {
  21370. source: "./media/characters/sasha-katraine/front.svg",
  21371. bottom: 0.045
  21372. }
  21373. },
  21374. },
  21375. [
  21376. {
  21377. name: "Micro",
  21378. height: math.unit(5, "inches")
  21379. },
  21380. {
  21381. name: "Normal",
  21382. height: math.unit(5 + 3 / 12, "feet"),
  21383. default: true
  21384. },
  21385. ]
  21386. ))
  21387. characterMakers.push(() => makeCharacter(
  21388. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  21389. {
  21390. side: {
  21391. height: math.unit(4, "inches"),
  21392. weight: math.unit(200, "grams"),
  21393. name: "Side",
  21394. image: {
  21395. source: "./media/characters/der/side.svg",
  21396. extra: 719 / 400,
  21397. bottom: 30.6 / 749.9187
  21398. }
  21399. },
  21400. },
  21401. [
  21402. {
  21403. name: "Micro",
  21404. height: math.unit(4, "inches"),
  21405. default: true
  21406. },
  21407. ]
  21408. ))
  21409. characterMakers.push(() => makeCharacter(
  21410. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  21411. {
  21412. side: {
  21413. height: math.unit(30, "meters"),
  21414. weight: math.unit(700, "tonnes"),
  21415. name: "Side",
  21416. image: {
  21417. source: "./media/characters/fixerdragon/side.svg",
  21418. extra: (1293.0514 - 116.03) / 1106.86,
  21419. bottom: 116.03 / 1293.0514
  21420. }
  21421. },
  21422. },
  21423. [
  21424. {
  21425. name: "Planck",
  21426. height: math.unit(1.6e-35, "meters")
  21427. },
  21428. {
  21429. name: "Micro",
  21430. height: math.unit(0.4, "meters")
  21431. },
  21432. {
  21433. name: "Normal",
  21434. height: math.unit(30, "meters"),
  21435. default: true
  21436. },
  21437. {
  21438. name: "Megamacro",
  21439. height: math.unit(1.2, "megameters")
  21440. },
  21441. {
  21442. name: "Teramacro",
  21443. height: math.unit(130, "terameters")
  21444. },
  21445. {
  21446. name: "Yottamacro",
  21447. height: math.unit(6200, "yottameters")
  21448. },
  21449. ]
  21450. ));
  21451. characterMakers.push(() => makeCharacter(
  21452. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  21453. {
  21454. front: {
  21455. height: math.unit(8, "feet"),
  21456. weight: math.unit(250, "lb"),
  21457. name: "Front",
  21458. image: {
  21459. source: "./media/characters/kite/front.svg",
  21460. extra: 2796 / 2659,
  21461. bottom: 0.002
  21462. }
  21463. },
  21464. },
  21465. [
  21466. {
  21467. name: "Normal",
  21468. height: math.unit(8, "feet"),
  21469. default: true
  21470. },
  21471. {
  21472. name: "Macro",
  21473. height: math.unit(360, "feet")
  21474. },
  21475. {
  21476. name: "Megamacro",
  21477. height: math.unit(1500, "feet")
  21478. },
  21479. ]
  21480. ))
  21481. characterMakers.push(() => makeCharacter(
  21482. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  21483. {
  21484. front: {
  21485. height: math.unit(5 + 10 / 12, "feet"),
  21486. weight: math.unit(150, "lb"),
  21487. name: "Front",
  21488. image: {
  21489. source: "./media/characters/poojawa-vynar/front.svg",
  21490. extra: (1506.1547 - 55) / 1356.6,
  21491. bottom: 55 / 1506.1547
  21492. }
  21493. },
  21494. frontTailless: {
  21495. height: math.unit(5 + 10 / 12, "feet"),
  21496. weight: math.unit(150, "lb"),
  21497. name: "Front (Tailless)",
  21498. image: {
  21499. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  21500. extra: (1506.1547 - 55) / 1356.6,
  21501. bottom: 55 / 1506.1547
  21502. }
  21503. },
  21504. },
  21505. [
  21506. {
  21507. name: "Normal",
  21508. height: math.unit(5 + 10 / 12, "feet"),
  21509. default: true
  21510. },
  21511. ]
  21512. ))
  21513. characterMakers.push(() => makeCharacter(
  21514. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  21515. {
  21516. front: {
  21517. height: math.unit(293, "meters"),
  21518. weight: math.unit(70400, "tons"),
  21519. name: "Front",
  21520. image: {
  21521. source: "./media/characters/violette/front.svg",
  21522. extra: 1227 / 1180,
  21523. bottom: 0.005
  21524. }
  21525. },
  21526. back: {
  21527. height: math.unit(293, "meters"),
  21528. weight: math.unit(70400, "tons"),
  21529. name: "Back",
  21530. image: {
  21531. source: "./media/characters/violette/back.svg",
  21532. extra: 1227 / 1180,
  21533. bottom: 0.005
  21534. }
  21535. },
  21536. },
  21537. [
  21538. {
  21539. name: "Macro",
  21540. height: math.unit(293, "meters"),
  21541. default: true
  21542. },
  21543. ]
  21544. ))
  21545. characterMakers.push(() => makeCharacter(
  21546. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  21547. {
  21548. front: {
  21549. height: math.unit(1050, "feet"),
  21550. weight: math.unit(200000, "tons"),
  21551. name: "Front",
  21552. image: {
  21553. source: "./media/characters/alessandra/front.svg",
  21554. extra: 960 / 912,
  21555. bottom: 0.06
  21556. }
  21557. },
  21558. },
  21559. [
  21560. {
  21561. name: "Macro",
  21562. height: math.unit(1050, "feet")
  21563. },
  21564. {
  21565. name: "Macro+",
  21566. height: math.unit(900, "meters"),
  21567. default: true
  21568. },
  21569. ]
  21570. ))
  21571. characterMakers.push(() => makeCharacter(
  21572. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  21573. {
  21574. front: {
  21575. height: math.unit(5, "feet"),
  21576. weight: math.unit(187, "lb"),
  21577. name: "Front",
  21578. image: {
  21579. source: "./media/characters/person/front.svg",
  21580. extra: 3087 / 2945,
  21581. bottom: 91 / 3181
  21582. }
  21583. },
  21584. },
  21585. [
  21586. {
  21587. name: "Micro",
  21588. height: math.unit(3, "inches")
  21589. },
  21590. {
  21591. name: "Normal",
  21592. height: math.unit(5, "feet"),
  21593. default: true
  21594. },
  21595. {
  21596. name: "Macro",
  21597. height: math.unit(90, "feet")
  21598. },
  21599. {
  21600. name: "Max Size",
  21601. height: math.unit(280, "feet")
  21602. },
  21603. ]
  21604. ))
  21605. characterMakers.push(() => makeCharacter(
  21606. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  21607. {
  21608. front: {
  21609. height: math.unit(4.5, "meters"),
  21610. weight: math.unit(3200, "lb"),
  21611. name: "Front",
  21612. image: {
  21613. source: "./media/characters/ty/front.svg",
  21614. extra: 1038 / 960,
  21615. bottom: 31.156 / 1068
  21616. }
  21617. },
  21618. back: {
  21619. height: math.unit(4.5, "meters"),
  21620. weight: math.unit(3200, "lb"),
  21621. name: "Back",
  21622. image: {
  21623. source: "./media/characters/ty/back.svg",
  21624. extra: 1044 / 966,
  21625. bottom: 7.48 / 1049
  21626. }
  21627. },
  21628. },
  21629. [
  21630. {
  21631. name: "Normal",
  21632. height: math.unit(4.5, "meters"),
  21633. default: true
  21634. },
  21635. ]
  21636. ))
  21637. characterMakers.push(() => makeCharacter(
  21638. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  21639. {
  21640. front: {
  21641. height: math.unit(5 + 4 / 12, "feet"),
  21642. weight: math.unit(115, "lb"),
  21643. name: "Front",
  21644. image: {
  21645. source: "./media/characters/rocky/front.svg",
  21646. extra: 1012 / 975,
  21647. bottom: 54 / 1066
  21648. }
  21649. },
  21650. },
  21651. [
  21652. {
  21653. name: "Normal",
  21654. height: math.unit(5 + 4 / 12, "feet"),
  21655. default: true
  21656. },
  21657. ]
  21658. ))
  21659. characterMakers.push(() => makeCharacter(
  21660. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  21661. {
  21662. upright: {
  21663. height: math.unit(6, "meters"),
  21664. weight: math.unit(4000, "kg"),
  21665. name: "Upright",
  21666. image: {
  21667. source: "./media/characters/ruin/upright.svg",
  21668. extra: 668 / 661,
  21669. bottom: 42 / 799.8396
  21670. }
  21671. },
  21672. },
  21673. [
  21674. {
  21675. name: "Normal",
  21676. height: math.unit(6, "meters"),
  21677. default: true
  21678. },
  21679. ]
  21680. ))
  21681. characterMakers.push(() => makeCharacter(
  21682. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  21683. {
  21684. front: {
  21685. height: math.unit(5, "feet"),
  21686. weight: math.unit(106, "lb"),
  21687. name: "Front",
  21688. image: {
  21689. source: "./media/characters/robin/front.svg",
  21690. extra: 862 / 799,
  21691. bottom: 42.4 / 914.8856
  21692. }
  21693. },
  21694. },
  21695. [
  21696. {
  21697. name: "Normal",
  21698. height: math.unit(5, "feet"),
  21699. default: true
  21700. },
  21701. ]
  21702. ))
  21703. characterMakers.push(() => makeCharacter(
  21704. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  21705. {
  21706. side: {
  21707. height: math.unit(3, "feet"),
  21708. weight: math.unit(225, "lb"),
  21709. name: "Side",
  21710. image: {
  21711. source: "./media/characters/saian/side.svg",
  21712. extra: 566 / 356,
  21713. bottom: 79.7 / 643
  21714. }
  21715. },
  21716. maw: {
  21717. height: math.unit(2.85, "feet"),
  21718. name: "Maw",
  21719. image: {
  21720. source: "./media/characters/saian/maw.svg"
  21721. }
  21722. },
  21723. },
  21724. [
  21725. {
  21726. name: "Normal",
  21727. height: math.unit(3, "feet"),
  21728. default: true
  21729. },
  21730. ]
  21731. ))
  21732. characterMakers.push(() => makeCharacter(
  21733. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  21734. {
  21735. side: {
  21736. height: math.unit(8, "feet"),
  21737. weight: math.unit(300, "lb"),
  21738. name: "Side",
  21739. image: {
  21740. source: "./media/characters/equus-silvermane/side.svg",
  21741. extra: 2176 / 2050,
  21742. bottom: 65.7 / 2245
  21743. }
  21744. },
  21745. front: {
  21746. height: math.unit(8, "feet"),
  21747. weight: math.unit(300, "lb"),
  21748. name: "Front",
  21749. image: {
  21750. source: "./media/characters/equus-silvermane/front.svg",
  21751. extra: 4633 / 4400,
  21752. bottom: 71.3 / 4706.915
  21753. }
  21754. },
  21755. sideStepping: {
  21756. height: math.unit(8, "feet"),
  21757. weight: math.unit(300, "lb"),
  21758. name: "Side (Stepping)",
  21759. image: {
  21760. source: "./media/characters/equus-silvermane/side-stepping.svg",
  21761. extra: 1968 / 1860,
  21762. bottom: 16.4 / 1989
  21763. }
  21764. },
  21765. },
  21766. [
  21767. {
  21768. name: "Normal",
  21769. height: math.unit(8, "feet")
  21770. },
  21771. {
  21772. name: "Minimacro",
  21773. height: math.unit(75, "feet"),
  21774. default: true
  21775. },
  21776. {
  21777. name: "Macro",
  21778. height: math.unit(150, "feet")
  21779. },
  21780. {
  21781. name: "Macro+",
  21782. height: math.unit(1000, "feet")
  21783. },
  21784. {
  21785. name: "Megamacro",
  21786. height: math.unit(1, "mile")
  21787. },
  21788. ]
  21789. ))
  21790. characterMakers.push(() => makeCharacter(
  21791. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  21792. {
  21793. side: {
  21794. height: math.unit(20, "feet"),
  21795. weight: math.unit(30000, "kg"),
  21796. name: "Side",
  21797. image: {
  21798. source: "./media/characters/windar/side.svg",
  21799. extra: 1491 / 1248,
  21800. bottom: 82.56 / 1568
  21801. }
  21802. },
  21803. },
  21804. [
  21805. {
  21806. name: "Normal",
  21807. height: math.unit(20, "feet"),
  21808. default: true
  21809. },
  21810. ]
  21811. ))
  21812. characterMakers.push(() => makeCharacter(
  21813. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  21814. {
  21815. side: {
  21816. height: math.unit(15.66, "feet"),
  21817. weight: math.unit(150, "lb"),
  21818. name: "Side",
  21819. image: {
  21820. source: "./media/characters/melody/side.svg",
  21821. extra: 1097 / 944,
  21822. bottom: 11.8 / 1109
  21823. }
  21824. },
  21825. sideOutfit: {
  21826. height: math.unit(15.66, "feet"),
  21827. weight: math.unit(150, "lb"),
  21828. name: "Side (Outfit)",
  21829. image: {
  21830. source: "./media/characters/melody/side-outfit.svg",
  21831. extra: 1097 / 944,
  21832. bottom: 11.8 / 1109
  21833. }
  21834. },
  21835. },
  21836. [
  21837. {
  21838. name: "Normal",
  21839. height: math.unit(15.66, "feet"),
  21840. default: true
  21841. },
  21842. ]
  21843. ))
  21844. characterMakers.push(() => makeCharacter(
  21845. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  21846. {
  21847. front: {
  21848. height: math.unit(8, "feet"),
  21849. weight: math.unit(325, "lb"),
  21850. name: "Front",
  21851. image: {
  21852. source: "./media/characters/windera/front.svg",
  21853. extra: 3180 / 2845,
  21854. bottom: 178 / 3365
  21855. }
  21856. },
  21857. },
  21858. [
  21859. {
  21860. name: "Normal",
  21861. height: math.unit(8, "feet"),
  21862. default: true
  21863. },
  21864. ]
  21865. ))
  21866. characterMakers.push(() => makeCharacter(
  21867. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  21868. {
  21869. front: {
  21870. height: math.unit(28.75, "feet"),
  21871. weight: math.unit(2000, "kg"),
  21872. name: "Front",
  21873. image: {
  21874. source: "./media/characters/sonear/front.svg",
  21875. extra: 1041.1 / 964.9,
  21876. bottom: 53.7 / 1096.6
  21877. }
  21878. },
  21879. },
  21880. [
  21881. {
  21882. name: "Normal",
  21883. height: math.unit(28.75, "feet"),
  21884. default: true
  21885. },
  21886. ]
  21887. ))
  21888. characterMakers.push(() => makeCharacter(
  21889. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  21890. {
  21891. side: {
  21892. height: math.unit(25.5, "feet"),
  21893. weight: math.unit(23000, "kg"),
  21894. name: "Side",
  21895. image: {
  21896. source: "./media/characters/kanara/side.svg"
  21897. }
  21898. },
  21899. },
  21900. [
  21901. {
  21902. name: "Normal",
  21903. height: math.unit(25.5, "feet"),
  21904. default: true
  21905. },
  21906. ]
  21907. ))
  21908. characterMakers.push(() => makeCharacter(
  21909. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  21910. {
  21911. side: {
  21912. height: math.unit(10, "feet"),
  21913. weight: math.unit(1000, "kg"),
  21914. name: "Side",
  21915. image: {
  21916. source: "./media/characters/ereus/side.svg",
  21917. extra: 1157 / 959,
  21918. bottom: 153 / 1312.5
  21919. }
  21920. },
  21921. },
  21922. [
  21923. {
  21924. name: "Normal",
  21925. height: math.unit(10, "feet"),
  21926. default: true
  21927. },
  21928. ]
  21929. ))
  21930. characterMakers.push(() => makeCharacter(
  21931. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  21932. {
  21933. side: {
  21934. height: math.unit(4.5, "feet"),
  21935. weight: math.unit(500, "lb"),
  21936. name: "Side",
  21937. image: {
  21938. source: "./media/characters/e-ter/side.svg",
  21939. extra: 1550 / 1248,
  21940. bottom: 146 / 1694
  21941. }
  21942. },
  21943. },
  21944. [
  21945. {
  21946. name: "Normal",
  21947. height: math.unit(4.5, "feet"),
  21948. default: true
  21949. },
  21950. ]
  21951. ))
  21952. characterMakers.push(() => makeCharacter(
  21953. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  21954. {
  21955. side: {
  21956. height: math.unit(9.7, "feet"),
  21957. weight: math.unit(4000, "kg"),
  21958. name: "Side",
  21959. image: {
  21960. source: "./media/characters/yamie/side.svg"
  21961. }
  21962. },
  21963. },
  21964. [
  21965. {
  21966. name: "Normal",
  21967. height: math.unit(9.7, "feet"),
  21968. default: true
  21969. },
  21970. ]
  21971. ))
  21972. characterMakers.push(() => makeCharacter(
  21973. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  21974. {
  21975. front: {
  21976. height: math.unit(50, "feet"),
  21977. weight: math.unit(50000, "kg"),
  21978. name: "Front",
  21979. image: {
  21980. source: "./media/characters/anders/front.svg",
  21981. extra: 570 / 539,
  21982. bottom: 14.7 / 586.7
  21983. }
  21984. },
  21985. },
  21986. [
  21987. {
  21988. name: "Large",
  21989. height: math.unit(50, "feet")
  21990. },
  21991. {
  21992. name: "Macro",
  21993. height: math.unit(2000, "feet"),
  21994. default: true
  21995. },
  21996. {
  21997. name: "Megamacro",
  21998. height: math.unit(12, "miles")
  21999. },
  22000. ]
  22001. ))
  22002. characterMakers.push(() => makeCharacter(
  22003. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  22004. {
  22005. front: {
  22006. height: math.unit(7 + 2 / 12, "feet"),
  22007. weight: math.unit(300, "lb"),
  22008. name: "Front",
  22009. image: {
  22010. source: "./media/characters/reban/front.svg",
  22011. extra: 516 / 487,
  22012. bottom: 42.82 / 558.356
  22013. }
  22014. },
  22015. dick: {
  22016. height: math.unit(7 / 5, "feet"),
  22017. name: "Dick",
  22018. image: {
  22019. source: "./media/characters/reban/dick.svg"
  22020. }
  22021. },
  22022. },
  22023. [
  22024. {
  22025. name: "Natural Height",
  22026. height: math.unit(7 + 2 / 12, "feet")
  22027. },
  22028. {
  22029. name: "Macro",
  22030. height: math.unit(500, "feet"),
  22031. default: true
  22032. },
  22033. {
  22034. name: "Canon Height",
  22035. height: math.unit(50, "AU")
  22036. },
  22037. ]
  22038. ))
  22039. characterMakers.push(() => makeCharacter(
  22040. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  22041. {
  22042. front: {
  22043. height: math.unit(6, "feet"),
  22044. weight: math.unit(150, "lb"),
  22045. name: "Front",
  22046. image: {
  22047. source: "./media/characters/terrance-keayes/front.svg",
  22048. extra: 1.005,
  22049. bottom: 151 / 1615
  22050. }
  22051. },
  22052. side: {
  22053. height: math.unit(6, "feet"),
  22054. weight: math.unit(150, "lb"),
  22055. name: "Side",
  22056. image: {
  22057. source: "./media/characters/terrance-keayes/side.svg",
  22058. extra: 1.005,
  22059. bottom: 129.4 / 1544
  22060. }
  22061. },
  22062. back: {
  22063. height: math.unit(6, "feet"),
  22064. weight: math.unit(150, "lb"),
  22065. name: "Back",
  22066. image: {
  22067. source: "./media/characters/terrance-keayes/back.svg",
  22068. extra: 1.005,
  22069. bottom: 58.4 / 1557.3
  22070. }
  22071. },
  22072. dick: {
  22073. height: math.unit(6 * 0.208, "feet"),
  22074. name: "Dick",
  22075. image: {
  22076. source: "./media/characters/terrance-keayes/dick.svg"
  22077. }
  22078. },
  22079. },
  22080. [
  22081. {
  22082. name: "Canon Height",
  22083. height: math.unit(35, "miles"),
  22084. default: true
  22085. },
  22086. ]
  22087. ))
  22088. characterMakers.push(() => makeCharacter(
  22089. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  22090. {
  22091. front: {
  22092. height: math.unit(6, "feet"),
  22093. weight: math.unit(150, "lb"),
  22094. name: "Front",
  22095. image: {
  22096. source: "./media/characters/ofelia/front.svg",
  22097. extra: 546 / 541,
  22098. bottom: 39 / 583
  22099. }
  22100. },
  22101. back: {
  22102. height: math.unit(6, "feet"),
  22103. weight: math.unit(150, "lb"),
  22104. name: "Back",
  22105. image: {
  22106. source: "./media/characters/ofelia/back.svg",
  22107. extra: 564 / 559.5,
  22108. bottom: 8.69 / 573.02
  22109. }
  22110. },
  22111. maw: {
  22112. height: math.unit(1, "feet"),
  22113. name: "Maw",
  22114. image: {
  22115. source: "./media/characters/ofelia/maw.svg"
  22116. }
  22117. },
  22118. foot: {
  22119. height: math.unit(1.949, "feet"),
  22120. name: "Foot",
  22121. image: {
  22122. source: "./media/characters/ofelia/foot.svg"
  22123. }
  22124. },
  22125. },
  22126. [
  22127. {
  22128. name: "Canon Height",
  22129. height: math.unit(2000, "miles"),
  22130. default: true
  22131. },
  22132. ]
  22133. ))
  22134. characterMakers.push(() => makeCharacter(
  22135. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  22136. {
  22137. front: {
  22138. height: math.unit(6, "feet"),
  22139. weight: math.unit(150, "lb"),
  22140. name: "Front",
  22141. image: {
  22142. source: "./media/characters/samuel/front.svg",
  22143. extra: 265 / 258,
  22144. bottom: 2 / 266.1566
  22145. }
  22146. },
  22147. },
  22148. [
  22149. {
  22150. name: "Macro",
  22151. height: math.unit(100, "feet"),
  22152. default: true
  22153. },
  22154. {
  22155. name: "Full Size",
  22156. height: math.unit(1000, "miles")
  22157. },
  22158. ]
  22159. ))
  22160. characterMakers.push(() => makeCharacter(
  22161. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  22162. {
  22163. front: {
  22164. height: math.unit(6, "feet"),
  22165. weight: math.unit(300, "lb"),
  22166. name: "Front",
  22167. image: {
  22168. source: "./media/characters/beishir-kiel/front.svg",
  22169. extra: 569 / 547,
  22170. bottom: 41.9 / 609
  22171. }
  22172. },
  22173. maw: {
  22174. height: math.unit(6 * 0.202, "feet"),
  22175. name: "Maw",
  22176. image: {
  22177. source: "./media/characters/beishir-kiel/maw.svg"
  22178. }
  22179. },
  22180. },
  22181. [
  22182. {
  22183. name: "Macro",
  22184. height: math.unit(300, "feet"),
  22185. default: true
  22186. },
  22187. ]
  22188. ))
  22189. characterMakers.push(() => makeCharacter(
  22190. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  22191. {
  22192. front: {
  22193. height: math.unit(5 + 7/12, "feet"),
  22194. weight: math.unit(120, "lb"),
  22195. name: "Front",
  22196. image: {
  22197. source: "./media/characters/logan-grey/front.svg",
  22198. extra: 1836/1738,
  22199. bottom: 108/1944
  22200. }
  22201. },
  22202. back: {
  22203. height: math.unit(5 + 7/12, "feet"),
  22204. weight: math.unit(120, "lb"),
  22205. name: "Back",
  22206. image: {
  22207. source: "./media/characters/logan-grey/back.svg",
  22208. extra: 1880/1794,
  22209. bottom: 24/1904
  22210. }
  22211. },
  22212. frontSfw: {
  22213. height: math.unit(5 + 7/12, "feet"),
  22214. weight: math.unit(120, "lb"),
  22215. name: "Front (SFW)",
  22216. image: {
  22217. source: "./media/characters/logan-grey/front-sfw.svg",
  22218. extra: 1836/1738,
  22219. bottom: 108/1944
  22220. }
  22221. },
  22222. backSfw: {
  22223. height: math.unit(5 + 7/12, "feet"),
  22224. weight: math.unit(120, "lb"),
  22225. name: "Back (SFW)",
  22226. image: {
  22227. source: "./media/characters/logan-grey/back-sfw.svg",
  22228. extra: 1880/1794,
  22229. bottom: 24/1904
  22230. }
  22231. },
  22232. hands: {
  22233. height: math.unit(0.84, "feet"),
  22234. name: "Hands",
  22235. image: {
  22236. source: "./media/characters/logan-grey/hands.svg"
  22237. }
  22238. },
  22239. paws: {
  22240. height: math.unit(0.72, "feet"),
  22241. name: "Paws",
  22242. image: {
  22243. source: "./media/characters/logan-grey/paws.svg"
  22244. }
  22245. },
  22246. cock: {
  22247. height: math.unit(1.45, "feet"),
  22248. name: "Cock",
  22249. image: {
  22250. source: "./media/characters/logan-grey/cock.svg"
  22251. }
  22252. },
  22253. cockAlt: {
  22254. height: math.unit(1.437, "feet"),
  22255. name: "Cock (alt)",
  22256. image: {
  22257. source: "./media/characters/logan-grey/cock-alt.svg"
  22258. }
  22259. },
  22260. },
  22261. [
  22262. {
  22263. name: "Normal",
  22264. height: math.unit(5 + 8 / 12, "feet")
  22265. },
  22266. {
  22267. name: "The 500 Foot Femboy",
  22268. height: math.unit(500, "feet"),
  22269. default: true
  22270. },
  22271. {
  22272. name: "Megmacro",
  22273. height: math.unit(20, "miles")
  22274. },
  22275. ]
  22276. ))
  22277. characterMakers.push(() => makeCharacter(
  22278. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  22279. {
  22280. front: {
  22281. height: math.unit(8 + 2 / 12, "feet"),
  22282. weight: math.unit(275, "lb"),
  22283. name: "Front",
  22284. image: {
  22285. source: "./media/characters/draganta/front.svg",
  22286. extra: 1177 / 1135,
  22287. bottom: 33.46 / 1212.1
  22288. }
  22289. },
  22290. },
  22291. [
  22292. {
  22293. name: "Normal",
  22294. height: math.unit(8 + 6 / 12, "feet"),
  22295. default: true
  22296. },
  22297. {
  22298. name: "Macro",
  22299. height: math.unit(150, "feet")
  22300. },
  22301. {
  22302. name: "Megamacro",
  22303. height: math.unit(1000, "miles")
  22304. },
  22305. ]
  22306. ))
  22307. characterMakers.push(() => makeCharacter(
  22308. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  22309. {
  22310. front: {
  22311. height: math.unit(1.72, "m"),
  22312. weight: math.unit(80, "lb"),
  22313. name: "Front",
  22314. image: {
  22315. source: "./media/characters/voski/front.svg",
  22316. extra: 2076.22 / 2022.4,
  22317. bottom: 102.7 / 2177.3866
  22318. }
  22319. },
  22320. frontNsfw: {
  22321. height: math.unit(1.72, "m"),
  22322. weight: math.unit(80, "lb"),
  22323. name: "Front (NSFW)",
  22324. image: {
  22325. source: "./media/characters/voski/front-nsfw.svg",
  22326. extra: 2076.22 / 2022.4,
  22327. bottom: 102.7 / 2177.3866
  22328. }
  22329. },
  22330. back: {
  22331. height: math.unit(1.72, "m"),
  22332. weight: math.unit(80, "lb"),
  22333. name: "Back",
  22334. image: {
  22335. source: "./media/characters/voski/back.svg",
  22336. extra: 2104 / 2051,
  22337. bottom: 10.45 / 2113.63
  22338. }
  22339. },
  22340. },
  22341. [
  22342. {
  22343. name: "Normal",
  22344. height: math.unit(1.72, "m")
  22345. },
  22346. {
  22347. name: "Macro",
  22348. height: math.unit(55, "m"),
  22349. default: true
  22350. },
  22351. {
  22352. name: "Macro+",
  22353. height: math.unit(300, "m")
  22354. },
  22355. {
  22356. name: "Macro++",
  22357. height: math.unit(700, "m")
  22358. },
  22359. {
  22360. name: "Macro+++",
  22361. height: math.unit(4500, "m")
  22362. },
  22363. {
  22364. name: "Macro++++",
  22365. height: math.unit(45, "km")
  22366. },
  22367. {
  22368. name: "Macro+++++",
  22369. height: math.unit(1220, "km")
  22370. },
  22371. ]
  22372. ))
  22373. characterMakers.push(() => makeCharacter(
  22374. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  22375. {
  22376. front: {
  22377. height: math.unit(2.3, "m"),
  22378. weight: math.unit(304, "kg"),
  22379. name: "Front",
  22380. image: {
  22381. source: "./media/characters/icowom-lee/front.svg",
  22382. extra: 985 / 955,
  22383. bottom: 25.4 / 1012
  22384. }
  22385. },
  22386. fronttentacles: {
  22387. height: math.unit(2.3, "m"),
  22388. weight: math.unit(304, "kg"),
  22389. name: "Front-tentacles",
  22390. image: {
  22391. source: "./media/characters/icowom-lee/front-tentacles.svg",
  22392. extra: 985 / 955,
  22393. bottom: 25.4 / 1012
  22394. }
  22395. },
  22396. back: {
  22397. height: math.unit(2.3, "m"),
  22398. weight: math.unit(304, "kg"),
  22399. name: "Back",
  22400. image: {
  22401. source: "./media/characters/icowom-lee/back.svg",
  22402. extra: 975 / 954,
  22403. bottom: 9.5 / 985
  22404. }
  22405. },
  22406. backtentacles: {
  22407. height: math.unit(2.3, "m"),
  22408. weight: math.unit(304, "kg"),
  22409. name: "Back-tentacles",
  22410. image: {
  22411. source: "./media/characters/icowom-lee/back-tentacles.svg",
  22412. extra: 975 / 954,
  22413. bottom: 9.5 / 985
  22414. }
  22415. },
  22416. frontDressed: {
  22417. height: math.unit(2.3, "m"),
  22418. weight: math.unit(304, "kg"),
  22419. name: "Front (Dressed)",
  22420. image: {
  22421. source: "./media/characters/icowom-lee/front-dressed.svg",
  22422. extra: 3076 / 2933,
  22423. bottom: 51.4 / 3125.1889
  22424. }
  22425. },
  22426. rump: {
  22427. height: math.unit(0.776, "meters"),
  22428. name: "Rump",
  22429. image: {
  22430. source: "./media/characters/icowom-lee/rump.svg"
  22431. }
  22432. },
  22433. genitals: {
  22434. height: math.unit(0.78, "meters"),
  22435. name: "Genitals",
  22436. image: {
  22437. source: "./media/characters/icowom-lee/genitals.svg"
  22438. }
  22439. },
  22440. },
  22441. [
  22442. {
  22443. name: "Normal",
  22444. height: math.unit(2.3, "meters"),
  22445. default: true
  22446. },
  22447. {
  22448. name: "Macro",
  22449. height: math.unit(94, "meters"),
  22450. default: true
  22451. },
  22452. ]
  22453. ))
  22454. characterMakers.push(() => makeCharacter(
  22455. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  22456. {
  22457. front: {
  22458. height: math.unit(22, "meters"),
  22459. weight: math.unit(21000, "kg"),
  22460. name: "Front",
  22461. image: {
  22462. source: "./media/characters/shock-diamond/front.svg",
  22463. extra: 2204 / 2053,
  22464. bottom: 65 / 2239.47
  22465. }
  22466. },
  22467. frontNude: {
  22468. height: math.unit(22, "meters"),
  22469. weight: math.unit(21000, "kg"),
  22470. name: "Front (Nude)",
  22471. image: {
  22472. source: "./media/characters/shock-diamond/front-nude.svg",
  22473. extra: 2514 / 2285,
  22474. bottom: 13 / 2527.56
  22475. }
  22476. },
  22477. },
  22478. [
  22479. {
  22480. name: "Normal",
  22481. height: math.unit(3, "meters")
  22482. },
  22483. {
  22484. name: "Macro",
  22485. height: math.unit(22, "meters"),
  22486. default: true
  22487. },
  22488. ]
  22489. ))
  22490. characterMakers.push(() => makeCharacter(
  22491. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  22492. {
  22493. front: {
  22494. height: math.unit(5 + 4 / 12, "feet"),
  22495. weight: math.unit(120, "lb"),
  22496. name: "Front",
  22497. image: {
  22498. source: "./media/characters/rory/front.svg",
  22499. extra: 1318/1241,
  22500. bottom: 42/1360
  22501. }
  22502. },
  22503. back: {
  22504. height: math.unit(5 + 4 / 12, "feet"),
  22505. weight: math.unit(120, "lb"),
  22506. name: "Back",
  22507. image: {
  22508. source: "./media/characters/rory/back.svg",
  22509. extra: 1318/1241,
  22510. bottom: 42/1360
  22511. }
  22512. },
  22513. butt: {
  22514. height: math.unit(1.74, "feet"),
  22515. name: "Butt",
  22516. image: {
  22517. source: "./media/characters/rory/butt.svg"
  22518. }
  22519. },
  22520. dick: {
  22521. height: math.unit(1.02, "feet"),
  22522. name: "Dick",
  22523. image: {
  22524. source: "./media/characters/rory/dick.svg"
  22525. }
  22526. },
  22527. paws: {
  22528. height: math.unit(1, "feet"),
  22529. name: "Paws",
  22530. image: {
  22531. source: "./media/characters/rory/paws.svg"
  22532. }
  22533. },
  22534. frontAlt: {
  22535. height: math.unit(5 + 4 / 12, "feet"),
  22536. weight: math.unit(120, "lb"),
  22537. name: "Front (Alt)",
  22538. image: {
  22539. source: "./media/characters/rory/front-alt.svg",
  22540. extra: 589 / 556,
  22541. bottom: 45.7 / 635.76
  22542. }
  22543. },
  22544. frontAltNude: {
  22545. height: math.unit(5 + 4 / 12, "feet"),
  22546. weight: math.unit(120, "lb"),
  22547. name: "Front (Alt, Nude)",
  22548. image: {
  22549. source: "./media/characters/rory/front-alt-nude.svg",
  22550. extra: 589 / 556,
  22551. bottom: 45.7 / 635.76
  22552. }
  22553. },
  22554. side: {
  22555. height: math.unit(5 + 4 / 12, "feet"),
  22556. weight: math.unit(120, "lb"),
  22557. name: "Side",
  22558. image: {
  22559. source: "./media/characters/rory/side.svg",
  22560. extra: 597 / 564,
  22561. bottom: 55 / 653
  22562. }
  22563. },
  22564. backAlt: {
  22565. height: math.unit(5 + 4 / 12, "feet"),
  22566. weight: math.unit(120, "lb"),
  22567. name: "Back (Alt)",
  22568. image: {
  22569. source: "./media/characters/rory/back-alt.svg",
  22570. extra: 620 / 585,
  22571. bottom: 8.86 / 630.43
  22572. }
  22573. },
  22574. dickAlt: {
  22575. height: math.unit(0.86, "feet"),
  22576. name: "Dick (Alt)",
  22577. image: {
  22578. source: "./media/characters/rory/dick-alt.svg"
  22579. }
  22580. },
  22581. },
  22582. [
  22583. {
  22584. name: "Normal",
  22585. height: math.unit(5 + 4 / 12, "feet"),
  22586. default: true
  22587. },
  22588. {
  22589. name: "Macro",
  22590. height: math.unit(100, "feet")
  22591. },
  22592. {
  22593. name: "Macro+",
  22594. height: math.unit(140, "feet")
  22595. },
  22596. {
  22597. name: "Macro++",
  22598. height: math.unit(300, "feet")
  22599. },
  22600. ]
  22601. ))
  22602. characterMakers.push(() => makeCharacter(
  22603. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  22604. {
  22605. front: {
  22606. height: math.unit(5 + 9 / 12, "feet"),
  22607. weight: math.unit(190, "lb"),
  22608. name: "Front",
  22609. image: {
  22610. source: "./media/characters/sprisk/front.svg",
  22611. extra: 1225 / 1180,
  22612. bottom: 42.7 / 1266.4
  22613. }
  22614. },
  22615. frontNsfw: {
  22616. height: math.unit(5 + 9 / 12, "feet"),
  22617. weight: math.unit(190, "lb"),
  22618. name: "Front (NSFW)",
  22619. image: {
  22620. source: "./media/characters/sprisk/front-nsfw.svg",
  22621. extra: 1225 / 1180,
  22622. bottom: 42.7 / 1266.4
  22623. }
  22624. },
  22625. back: {
  22626. height: math.unit(5 + 9 / 12, "feet"),
  22627. weight: math.unit(190, "lb"),
  22628. name: "Back",
  22629. image: {
  22630. source: "./media/characters/sprisk/back.svg",
  22631. extra: 1247 / 1200,
  22632. bottom: 5.6 / 1253.04
  22633. }
  22634. },
  22635. },
  22636. [
  22637. {
  22638. name: "Tiny",
  22639. height: math.unit(2, "inches")
  22640. },
  22641. {
  22642. name: "Normal",
  22643. height: math.unit(5 + 9 / 12, "feet"),
  22644. default: true
  22645. },
  22646. {
  22647. name: "Mini Macro",
  22648. height: math.unit(18, "feet")
  22649. },
  22650. {
  22651. name: "Macro",
  22652. height: math.unit(100, "feet")
  22653. },
  22654. {
  22655. name: "MACRO",
  22656. height: math.unit(50, "miles")
  22657. },
  22658. {
  22659. name: "M A C R O",
  22660. height: math.unit(300, "miles")
  22661. },
  22662. ]
  22663. ))
  22664. characterMakers.push(() => makeCharacter(
  22665. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  22666. {
  22667. side: {
  22668. height: math.unit(15.6, "meters"),
  22669. weight: math.unit(700000, "kg"),
  22670. name: "Side",
  22671. image: {
  22672. source: "./media/characters/bunsen/side.svg",
  22673. extra: 1644 / 358
  22674. }
  22675. },
  22676. foot: {
  22677. height: math.unit(1.611 * 1644 / 358, "meter"),
  22678. name: "Foot",
  22679. image: {
  22680. source: "./media/characters/bunsen/foot.svg"
  22681. }
  22682. },
  22683. },
  22684. [
  22685. {
  22686. name: "Small",
  22687. height: math.unit(10, "feet")
  22688. },
  22689. {
  22690. name: "Normal",
  22691. height: math.unit(15.6, "meters"),
  22692. default: true
  22693. },
  22694. ]
  22695. ))
  22696. characterMakers.push(() => makeCharacter(
  22697. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  22698. {
  22699. front: {
  22700. height: math.unit(4 + 11 / 12, "feet"),
  22701. weight: math.unit(140, "lb"),
  22702. name: "Front",
  22703. image: {
  22704. source: "./media/characters/sesh/front.svg",
  22705. extra: 3420 / 3231,
  22706. bottom: 72 / 3949.5
  22707. }
  22708. },
  22709. },
  22710. [
  22711. {
  22712. name: "Normal",
  22713. height: math.unit(4 + 11 / 12, "feet")
  22714. },
  22715. {
  22716. name: "Grown",
  22717. height: math.unit(15, "feet"),
  22718. default: true
  22719. },
  22720. {
  22721. name: "Macro",
  22722. height: math.unit(1500, "feet")
  22723. },
  22724. {
  22725. name: "Megamacro",
  22726. height: math.unit(30, "miles")
  22727. },
  22728. {
  22729. name: "Continental",
  22730. height: math.unit(3000, "miles")
  22731. },
  22732. {
  22733. name: "Gravity Mass",
  22734. height: math.unit(300000, "miles")
  22735. },
  22736. {
  22737. name: "Planet Buster",
  22738. height: math.unit(30000000, "miles")
  22739. },
  22740. {
  22741. name: "Big",
  22742. height: math.unit(3000000000, "miles")
  22743. },
  22744. ]
  22745. ))
  22746. characterMakers.push(() => makeCharacter(
  22747. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  22748. {
  22749. front: {
  22750. height: math.unit(9, "feet"),
  22751. weight: math.unit(350, "lb"),
  22752. name: "Front",
  22753. image: {
  22754. source: "./media/characters/pepper/front.svg",
  22755. extra: 1448 / 1312,
  22756. bottom: 9.4 / 1457.88
  22757. }
  22758. },
  22759. back: {
  22760. height: math.unit(9, "feet"),
  22761. weight: math.unit(350, "lb"),
  22762. name: "Back",
  22763. image: {
  22764. source: "./media/characters/pepper/back.svg",
  22765. extra: 1423 / 1300,
  22766. bottom: 4.6 / 1429
  22767. }
  22768. },
  22769. maw: {
  22770. height: math.unit(0.932, "feet"),
  22771. name: "Maw",
  22772. image: {
  22773. source: "./media/characters/pepper/maw.svg"
  22774. }
  22775. },
  22776. },
  22777. [
  22778. {
  22779. name: "Normal",
  22780. height: math.unit(9, "feet"),
  22781. default: true
  22782. },
  22783. ]
  22784. ))
  22785. characterMakers.push(() => makeCharacter(
  22786. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  22787. {
  22788. front: {
  22789. height: math.unit(6, "feet"),
  22790. weight: math.unit(150, "lb"),
  22791. name: "Front",
  22792. image: {
  22793. source: "./media/characters/maelstrom/front.svg",
  22794. extra: 2100 / 1883,
  22795. bottom: 94 / 2196.7
  22796. }
  22797. },
  22798. },
  22799. [
  22800. {
  22801. name: "Less Kaiju",
  22802. height: math.unit(200, "feet")
  22803. },
  22804. {
  22805. name: "Kaiju",
  22806. height: math.unit(400, "feet"),
  22807. default: true
  22808. },
  22809. {
  22810. name: "Kaiju-er",
  22811. height: math.unit(600, "feet")
  22812. },
  22813. ]
  22814. ))
  22815. characterMakers.push(() => makeCharacter(
  22816. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  22817. {
  22818. front: {
  22819. height: math.unit(6 + 5 / 12, "feet"),
  22820. weight: math.unit(180, "lb"),
  22821. name: "Front",
  22822. image: {
  22823. source: "./media/characters/lexir/front.svg",
  22824. extra: 180 / 172,
  22825. bottom: 12 / 192
  22826. }
  22827. },
  22828. back: {
  22829. height: math.unit(6 + 5 / 12, "feet"),
  22830. weight: math.unit(180, "lb"),
  22831. name: "Back",
  22832. image: {
  22833. source: "./media/characters/lexir/back.svg",
  22834. extra: 183.84 / 175.5,
  22835. bottom: 3.1 / 187
  22836. }
  22837. },
  22838. },
  22839. [
  22840. {
  22841. name: "Very Smal",
  22842. height: math.unit(1, "nm")
  22843. },
  22844. {
  22845. name: "Normal",
  22846. height: math.unit(6 + 5 / 12, "feet"),
  22847. default: true
  22848. },
  22849. {
  22850. name: "Macro",
  22851. height: math.unit(1, "mile")
  22852. },
  22853. {
  22854. name: "Megamacro",
  22855. height: math.unit(50, "miles")
  22856. },
  22857. ]
  22858. ))
  22859. characterMakers.push(() => makeCharacter(
  22860. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  22861. {
  22862. front: {
  22863. height: math.unit(1.5, "meters"),
  22864. weight: math.unit(100, "lb"),
  22865. name: "Front",
  22866. image: {
  22867. source: "./media/characters/maksio/front.svg",
  22868. extra: 1549 / 1531,
  22869. bottom: 123.7 / 1674.5429
  22870. }
  22871. },
  22872. back: {
  22873. height: math.unit(1.5, "meters"),
  22874. weight: math.unit(100, "lb"),
  22875. name: "Back",
  22876. image: {
  22877. source: "./media/characters/maksio/back.svg",
  22878. extra: 1541 / 1509,
  22879. bottom: 97 / 1639
  22880. }
  22881. },
  22882. hand: {
  22883. height: math.unit(0.621, "feet"),
  22884. name: "Hand",
  22885. image: {
  22886. source: "./media/characters/maksio/hand.svg"
  22887. }
  22888. },
  22889. foot: {
  22890. height: math.unit(1.611, "feet"),
  22891. name: "Foot",
  22892. image: {
  22893. source: "./media/characters/maksio/foot.svg"
  22894. }
  22895. },
  22896. },
  22897. [
  22898. {
  22899. name: "Shrunken",
  22900. height: math.unit(10, "cm")
  22901. },
  22902. {
  22903. name: "Normal",
  22904. height: math.unit(150, "cm"),
  22905. default: true
  22906. },
  22907. ]
  22908. ))
  22909. characterMakers.push(() => makeCharacter(
  22910. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  22911. {
  22912. front: {
  22913. height: math.unit(100, "feet"),
  22914. name: "Front",
  22915. image: {
  22916. source: "./media/characters/erza-bear/front.svg",
  22917. extra: 2449 / 2390,
  22918. bottom: 46 / 2494
  22919. }
  22920. },
  22921. back: {
  22922. height: math.unit(100, "feet"),
  22923. name: "Back",
  22924. image: {
  22925. source: "./media/characters/erza-bear/back.svg",
  22926. extra: 2489 / 2430,
  22927. bottom: 85.4 / 2480
  22928. }
  22929. },
  22930. tail: {
  22931. height: math.unit(42, "feet"),
  22932. name: "Tail",
  22933. image: {
  22934. source: "./media/characters/erza-bear/tail.svg"
  22935. }
  22936. },
  22937. tongue: {
  22938. height: math.unit(8, "feet"),
  22939. name: "Tongue",
  22940. image: {
  22941. source: "./media/characters/erza-bear/tongue.svg"
  22942. }
  22943. },
  22944. dick: {
  22945. height: math.unit(10.5, "feet"),
  22946. name: "Dick",
  22947. image: {
  22948. source: "./media/characters/erza-bear/dick.svg"
  22949. }
  22950. },
  22951. dickVertical: {
  22952. height: math.unit(16.9, "feet"),
  22953. name: "Dick (Vertical)",
  22954. image: {
  22955. source: "./media/characters/erza-bear/dick-vertical.svg"
  22956. }
  22957. },
  22958. },
  22959. [
  22960. {
  22961. name: "Macro",
  22962. height: math.unit(100, "feet"),
  22963. default: true
  22964. },
  22965. ]
  22966. ))
  22967. characterMakers.push(() => makeCharacter(
  22968. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  22969. {
  22970. front: {
  22971. height: math.unit(172, "cm"),
  22972. weight: math.unit(73, "kg"),
  22973. name: "Front",
  22974. image: {
  22975. source: "./media/characters/violet-flor/front.svg",
  22976. extra: 1530 / 1442,
  22977. bottom: 61.9 / 1588.8
  22978. }
  22979. },
  22980. back: {
  22981. height: math.unit(180, "cm"),
  22982. weight: math.unit(73, "kg"),
  22983. name: "Back",
  22984. image: {
  22985. source: "./media/characters/violet-flor/back.svg",
  22986. extra: 1692 / 1630,
  22987. bottom: 20 / 1712
  22988. }
  22989. },
  22990. },
  22991. [
  22992. {
  22993. name: "Normal",
  22994. height: math.unit(172, "cm"),
  22995. default: true
  22996. },
  22997. ]
  22998. ))
  22999. characterMakers.push(() => makeCharacter(
  23000. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  23001. {
  23002. front: {
  23003. height: math.unit(6, "feet"),
  23004. weight: math.unit(220, "lb"),
  23005. name: "Front",
  23006. image: {
  23007. source: "./media/characters/lynn-rhea/front.svg",
  23008. extra: 310 / 273
  23009. }
  23010. },
  23011. back: {
  23012. height: math.unit(6, "feet"),
  23013. weight: math.unit(220, "lb"),
  23014. name: "Back",
  23015. image: {
  23016. source: "./media/characters/lynn-rhea/back.svg",
  23017. extra: 310 / 273
  23018. }
  23019. },
  23020. dicks: {
  23021. height: math.unit(0.9, "feet"),
  23022. name: "Dicks",
  23023. image: {
  23024. source: "./media/characters/lynn-rhea/dicks.svg"
  23025. }
  23026. },
  23027. slit: {
  23028. height: math.unit(0.4, "feet"),
  23029. name: "Slit",
  23030. image: {
  23031. source: "./media/characters/lynn-rhea/slit.svg"
  23032. }
  23033. },
  23034. },
  23035. [
  23036. {
  23037. name: "Micro",
  23038. height: math.unit(1, "inch")
  23039. },
  23040. {
  23041. name: "Macro",
  23042. height: math.unit(60, "feet"),
  23043. default: true
  23044. },
  23045. {
  23046. name: "Megamacro",
  23047. height: math.unit(2, "miles")
  23048. },
  23049. {
  23050. name: "Gigamacro",
  23051. height: math.unit(3, "earths")
  23052. },
  23053. {
  23054. name: "Galactic",
  23055. height: math.unit(0.8, "galaxies")
  23056. },
  23057. ]
  23058. ))
  23059. characterMakers.push(() => makeCharacter(
  23060. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  23061. {
  23062. front: {
  23063. height: math.unit(1600, "feet"),
  23064. weight: math.unit(85758785169, "kg"),
  23065. name: "Front",
  23066. image: {
  23067. source: "./media/characters/valathos/front.svg",
  23068. extra: 1451 / 1339
  23069. }
  23070. },
  23071. },
  23072. [
  23073. {
  23074. name: "Macro",
  23075. height: math.unit(1600, "feet"),
  23076. default: true
  23077. },
  23078. ]
  23079. ))
  23080. characterMakers.push(() => makeCharacter(
  23081. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  23082. {
  23083. front: {
  23084. height: math.unit(7 + 5 / 12, "feet"),
  23085. weight: math.unit(300, "lb"),
  23086. name: "Front",
  23087. image: {
  23088. source: "./media/characters/azula/front.svg",
  23089. extra: 3208 / 2880,
  23090. bottom: 80.2 / 3277
  23091. }
  23092. },
  23093. back: {
  23094. height: math.unit(7 + 5 / 12, "feet"),
  23095. weight: math.unit(300, "lb"),
  23096. name: "Back",
  23097. image: {
  23098. source: "./media/characters/azula/back.svg",
  23099. extra: 3169 / 2822,
  23100. bottom: 150.6 / 3321
  23101. }
  23102. },
  23103. },
  23104. [
  23105. {
  23106. name: "Normal",
  23107. height: math.unit(7 + 5 / 12, "feet"),
  23108. default: true
  23109. },
  23110. {
  23111. name: "Big",
  23112. height: math.unit(20, "feet")
  23113. },
  23114. ]
  23115. ))
  23116. characterMakers.push(() => makeCharacter(
  23117. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  23118. {
  23119. front: {
  23120. height: math.unit(5 + 1 / 12, "feet"),
  23121. weight: math.unit(110, "lb"),
  23122. name: "Front",
  23123. image: {
  23124. source: "./media/characters/rupert/front.svg",
  23125. extra: 1549 / 1495,
  23126. bottom: 54.2 / 1604.4
  23127. }
  23128. },
  23129. },
  23130. [
  23131. {
  23132. name: "Normal",
  23133. height: math.unit(5 + 1 / 12, "feet"),
  23134. default: true
  23135. },
  23136. ]
  23137. ))
  23138. characterMakers.push(() => makeCharacter(
  23139. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  23140. {
  23141. front: {
  23142. height: math.unit(8 + 4 / 12, "feet"),
  23143. weight: math.unit(350, "lb"),
  23144. name: "Front",
  23145. image: {
  23146. source: "./media/characters/sheera-castellar/front.svg",
  23147. extra: 1957 / 1894,
  23148. bottom: 26.97 / 1975.017
  23149. }
  23150. },
  23151. side: {
  23152. height: math.unit(8 + 4 / 12, "feet"),
  23153. weight: math.unit(350, "lb"),
  23154. name: "Side",
  23155. image: {
  23156. source: "./media/characters/sheera-castellar/side.svg",
  23157. extra: 1957 / 1894
  23158. }
  23159. },
  23160. back: {
  23161. height: math.unit(8 + 4 / 12, "feet"),
  23162. weight: math.unit(350, "lb"),
  23163. name: "Back",
  23164. image: {
  23165. source: "./media/characters/sheera-castellar/back.svg",
  23166. extra: 1957 / 1894
  23167. }
  23168. },
  23169. angled: {
  23170. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  23171. weight: math.unit(350, "lb"),
  23172. name: "Angled",
  23173. image: {
  23174. source: "./media/characters/sheera-castellar/angled.svg",
  23175. extra: 1807 / 1707,
  23176. bottom: 68 / 1875
  23177. }
  23178. },
  23179. genitals: {
  23180. height: math.unit(2.2, "feet"),
  23181. name: "Genitals",
  23182. image: {
  23183. source: "./media/characters/sheera-castellar/genitals.svg"
  23184. }
  23185. },
  23186. taur: {
  23187. height: math.unit(10 + 6/12, "feet"),
  23188. name: "Taur",
  23189. image: {
  23190. source: "./media/characters/sheera-castellar/taur.svg",
  23191. extra: 2017/1909,
  23192. bottom: 185/2202
  23193. }
  23194. },
  23195. },
  23196. [
  23197. {
  23198. name: "Normal",
  23199. height: math.unit(8 + 4 / 12, "feet")
  23200. },
  23201. {
  23202. name: "Macro",
  23203. height: math.unit(150, "feet"),
  23204. default: true
  23205. },
  23206. {
  23207. name: "Macro+",
  23208. height: math.unit(800, "feet")
  23209. },
  23210. ]
  23211. ))
  23212. characterMakers.push(() => makeCharacter(
  23213. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  23214. {
  23215. front: {
  23216. height: math.unit(6, "feet"),
  23217. weight: math.unit(150, "lb"),
  23218. name: "Front",
  23219. image: {
  23220. source: "./media/characters/jaipur/front.svg",
  23221. extra: 3860 / 3731,
  23222. bottom: 287 / 4140
  23223. }
  23224. },
  23225. back: {
  23226. height: math.unit(6, "feet"),
  23227. weight: math.unit(150, "lb"),
  23228. name: "Back",
  23229. image: {
  23230. source: "./media/characters/jaipur/back.svg",
  23231. extra: 4060 / 3930,
  23232. bottom: 151 / 4200
  23233. }
  23234. },
  23235. },
  23236. [
  23237. {
  23238. name: "Normal",
  23239. height: math.unit(1.85, "meters"),
  23240. default: true
  23241. },
  23242. {
  23243. name: "Macro",
  23244. height: math.unit(150, "meters")
  23245. },
  23246. {
  23247. name: "Macro+",
  23248. height: math.unit(0.5, "miles")
  23249. },
  23250. {
  23251. name: "Macro++",
  23252. height: math.unit(2.5, "miles")
  23253. },
  23254. {
  23255. name: "Macro+++",
  23256. height: math.unit(12, "miles")
  23257. },
  23258. {
  23259. name: "Macro++++",
  23260. height: math.unit(120, "miles")
  23261. },
  23262. {
  23263. name: "Macro+++++",
  23264. height: math.unit(1200, "miles")
  23265. },
  23266. ]
  23267. ))
  23268. characterMakers.push(() => makeCharacter(
  23269. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  23270. {
  23271. front: {
  23272. height: math.unit(6, "feet"),
  23273. weight: math.unit(150, "lb"),
  23274. name: "Front",
  23275. image: {
  23276. source: "./media/characters/sheila-wolf/front.svg",
  23277. extra: 1931 / 1808,
  23278. bottom: 29.5 / 1960
  23279. }
  23280. },
  23281. dick: {
  23282. height: math.unit(1.464, "feet"),
  23283. name: "Dick",
  23284. image: {
  23285. source: "./media/characters/sheila-wolf/dick.svg"
  23286. }
  23287. },
  23288. muzzle: {
  23289. height: math.unit(0.513, "feet"),
  23290. name: "Muzzle",
  23291. image: {
  23292. source: "./media/characters/sheila-wolf/muzzle.svg"
  23293. }
  23294. },
  23295. },
  23296. [
  23297. {
  23298. name: "Macro",
  23299. height: math.unit(70, "feet"),
  23300. default: true
  23301. },
  23302. ]
  23303. ))
  23304. characterMakers.push(() => makeCharacter(
  23305. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  23306. {
  23307. front: {
  23308. height: math.unit(32, "meters"),
  23309. weight: math.unit(300000, "kg"),
  23310. name: "Front",
  23311. image: {
  23312. source: "./media/characters/almor/front.svg",
  23313. extra: 1408 / 1322,
  23314. bottom: 94.6 / 1506.5
  23315. }
  23316. },
  23317. },
  23318. [
  23319. {
  23320. name: "Macro",
  23321. height: math.unit(32, "meters"),
  23322. default: true
  23323. },
  23324. ]
  23325. ))
  23326. characterMakers.push(() => makeCharacter(
  23327. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  23328. {
  23329. front: {
  23330. height: math.unit(7, "feet"),
  23331. weight: math.unit(200, "lb"),
  23332. name: "Front",
  23333. image: {
  23334. source: "./media/characters/silver/front.svg",
  23335. extra: 472.1 / 450.5,
  23336. bottom: 26.5 / 499.424
  23337. }
  23338. },
  23339. },
  23340. [
  23341. {
  23342. name: "Normal",
  23343. height: math.unit(7, "feet"),
  23344. default: true
  23345. },
  23346. {
  23347. name: "Macro",
  23348. height: math.unit(800, "feet")
  23349. },
  23350. {
  23351. name: "Megamacro",
  23352. height: math.unit(250, "miles")
  23353. },
  23354. ]
  23355. ))
  23356. characterMakers.push(() => makeCharacter(
  23357. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  23358. {
  23359. front: {
  23360. height: math.unit(6, "feet"),
  23361. weight: math.unit(150, "lb"),
  23362. name: "Front",
  23363. image: {
  23364. source: "./media/characters/pliskin/front.svg",
  23365. extra: 1469 / 1359,
  23366. bottom: 70 / 1540
  23367. }
  23368. },
  23369. },
  23370. [
  23371. {
  23372. name: "Micro",
  23373. height: math.unit(3, "inches")
  23374. },
  23375. {
  23376. name: "Normal",
  23377. height: math.unit(5 + 11 / 12, "feet"),
  23378. default: true
  23379. },
  23380. {
  23381. name: "Macro",
  23382. height: math.unit(120, "feet")
  23383. },
  23384. ]
  23385. ))
  23386. characterMakers.push(() => makeCharacter(
  23387. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  23388. {
  23389. front: {
  23390. height: math.unit(6, "feet"),
  23391. weight: math.unit(150, "lb"),
  23392. name: "Front",
  23393. image: {
  23394. source: "./media/characters/sammy/front.svg",
  23395. extra: 1193 / 1089,
  23396. bottom: 30.5 / 1226
  23397. }
  23398. },
  23399. },
  23400. [
  23401. {
  23402. name: "Macro",
  23403. height: math.unit(1700, "feet"),
  23404. default: true
  23405. },
  23406. {
  23407. name: "Examacro",
  23408. height: math.unit(2.5e9, "lightyears")
  23409. },
  23410. ]
  23411. ))
  23412. characterMakers.push(() => makeCharacter(
  23413. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  23414. {
  23415. front: {
  23416. height: math.unit(21, "meters"),
  23417. weight: math.unit(12, "tonnes"),
  23418. name: "Front",
  23419. image: {
  23420. source: "./media/characters/kuru/front.svg",
  23421. extra: 4301 / 3785,
  23422. bottom: 371.3 / 4691
  23423. }
  23424. },
  23425. },
  23426. [
  23427. {
  23428. name: "Macro",
  23429. height: math.unit(21, "meters"),
  23430. default: true
  23431. },
  23432. ]
  23433. ))
  23434. characterMakers.push(() => makeCharacter(
  23435. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  23436. {
  23437. front: {
  23438. height: math.unit(23, "meters"),
  23439. weight: math.unit(12.2, "tonnes"),
  23440. name: "Front",
  23441. image: {
  23442. source: "./media/characters/rakka/front.svg",
  23443. extra: 4670 / 4169,
  23444. bottom: 301 / 4968.7
  23445. }
  23446. },
  23447. },
  23448. [
  23449. {
  23450. name: "Macro",
  23451. height: math.unit(23, "meters"),
  23452. default: true
  23453. },
  23454. ]
  23455. ))
  23456. characterMakers.push(() => makeCharacter(
  23457. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  23458. {
  23459. front: {
  23460. height: math.unit(6, "feet"),
  23461. weight: math.unit(150, "lb"),
  23462. name: "Front",
  23463. image: {
  23464. source: "./media/characters/rhys-feline/front.svg",
  23465. extra: 2488 / 2308,
  23466. bottom: 35.67 / 2519.19
  23467. }
  23468. },
  23469. },
  23470. [
  23471. {
  23472. name: "Really Small",
  23473. height: math.unit(1, "nm")
  23474. },
  23475. {
  23476. name: "Micro",
  23477. height: math.unit(4, "inches")
  23478. },
  23479. {
  23480. name: "Normal",
  23481. height: math.unit(4 + 10 / 12, "feet"),
  23482. default: true
  23483. },
  23484. {
  23485. name: "Macro",
  23486. height: math.unit(100, "feet")
  23487. },
  23488. {
  23489. name: "Megamacto",
  23490. height: math.unit(50, "miles")
  23491. },
  23492. ]
  23493. ))
  23494. characterMakers.push(() => makeCharacter(
  23495. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  23496. {
  23497. side: {
  23498. height: math.unit(30, "feet"),
  23499. weight: math.unit(35000, "kg"),
  23500. name: "Side",
  23501. image: {
  23502. source: "./media/characters/alydar/side.svg",
  23503. extra: 234 / 222,
  23504. bottom: 6.5 / 241
  23505. }
  23506. },
  23507. front: {
  23508. height: math.unit(30, "feet"),
  23509. weight: math.unit(35000, "kg"),
  23510. name: "Front",
  23511. image: {
  23512. source: "./media/characters/alydar/front.svg",
  23513. extra: 223.37 / 210.2,
  23514. bottom: 22.3 / 246.76
  23515. }
  23516. },
  23517. top: {
  23518. height: math.unit(64.54, "feet"),
  23519. weight: math.unit(35000, "kg"),
  23520. name: "Top",
  23521. image: {
  23522. source: "./media/characters/alydar/top.svg"
  23523. }
  23524. },
  23525. anthro: {
  23526. height: math.unit(30, "feet"),
  23527. weight: math.unit(9000, "kg"),
  23528. name: "Anthro",
  23529. image: {
  23530. source: "./media/characters/alydar/anthro.svg",
  23531. extra: 432 / 421,
  23532. bottom: 7.18 / 440
  23533. }
  23534. },
  23535. maw: {
  23536. height: math.unit(11.693, "feet"),
  23537. name: "Maw",
  23538. image: {
  23539. source: "./media/characters/alydar/maw.svg"
  23540. }
  23541. },
  23542. head: {
  23543. height: math.unit(11.693, "feet"),
  23544. name: "Head",
  23545. image: {
  23546. source: "./media/characters/alydar/head.svg"
  23547. }
  23548. },
  23549. headAlt: {
  23550. height: math.unit(12.861, "feet"),
  23551. name: "Head (Alt)",
  23552. image: {
  23553. source: "./media/characters/alydar/head-alt.svg"
  23554. }
  23555. },
  23556. wing: {
  23557. height: math.unit(20.712, "feet"),
  23558. name: "Wing",
  23559. image: {
  23560. source: "./media/characters/alydar/wing.svg"
  23561. }
  23562. },
  23563. wingFeather: {
  23564. height: math.unit(9.662, "feet"),
  23565. name: "Wing Feather",
  23566. image: {
  23567. source: "./media/characters/alydar/wing-feather.svg"
  23568. }
  23569. },
  23570. countourFeather: {
  23571. height: math.unit(4.154, "feet"),
  23572. name: "Contour Feather",
  23573. image: {
  23574. source: "./media/characters/alydar/contour-feather.svg"
  23575. }
  23576. },
  23577. },
  23578. [
  23579. {
  23580. name: "Diplomatic",
  23581. height: math.unit(13, "feet"),
  23582. default: true
  23583. },
  23584. {
  23585. name: "Small",
  23586. height: math.unit(30, "feet")
  23587. },
  23588. {
  23589. name: "Normal",
  23590. height: math.unit(95, "feet"),
  23591. default: true
  23592. },
  23593. {
  23594. name: "Large",
  23595. height: math.unit(285, "feet")
  23596. },
  23597. {
  23598. name: "Incomprehensible",
  23599. height: math.unit(450, "megameters")
  23600. },
  23601. ]
  23602. ))
  23603. characterMakers.push(() => makeCharacter(
  23604. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  23605. {
  23606. side: {
  23607. height: math.unit(11, "feet"),
  23608. weight: math.unit(1750, "kg"),
  23609. name: "Side",
  23610. image: {
  23611. source: "./media/characters/selicia/side.svg",
  23612. extra: 440 / 396,
  23613. bottom: 24.8 / 465.979
  23614. }
  23615. },
  23616. maw: {
  23617. height: math.unit(4.665, "feet"),
  23618. name: "Maw",
  23619. image: {
  23620. source: "./media/characters/selicia/maw.svg"
  23621. }
  23622. },
  23623. },
  23624. [
  23625. {
  23626. name: "Normal",
  23627. height: math.unit(11, "feet"),
  23628. default: true
  23629. },
  23630. ]
  23631. ))
  23632. characterMakers.push(() => makeCharacter(
  23633. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  23634. {
  23635. side: {
  23636. height: math.unit(2 + 6 / 12, "feet"),
  23637. weight: math.unit(30, "lb"),
  23638. name: "Side",
  23639. image: {
  23640. source: "./media/characters/layla/side.svg",
  23641. extra: 244 / 188,
  23642. bottom: 18.2 / 262.1
  23643. }
  23644. },
  23645. back: {
  23646. height: math.unit(2 + 6 / 12, "feet"),
  23647. weight: math.unit(30, "lb"),
  23648. name: "Back",
  23649. image: {
  23650. source: "./media/characters/layla/back.svg",
  23651. extra: 308 / 241.5,
  23652. bottom: 8.9 / 316.8
  23653. }
  23654. },
  23655. cumming: {
  23656. height: math.unit(2 + 6 / 12, "feet"),
  23657. weight: math.unit(30, "lb"),
  23658. name: "Cumming",
  23659. image: {
  23660. source: "./media/characters/layla/cumming.svg",
  23661. extra: 342 / 279,
  23662. bottom: 595 / 938
  23663. }
  23664. },
  23665. dickFlaccid: {
  23666. height: math.unit(2.595, "feet"),
  23667. name: "Flaccid Genitals",
  23668. image: {
  23669. source: "./media/characters/layla/dick-flaccid.svg"
  23670. }
  23671. },
  23672. dickErect: {
  23673. height: math.unit(2.359, "feet"),
  23674. name: "Erect Genitals",
  23675. image: {
  23676. source: "./media/characters/layla/dick-erect.svg"
  23677. }
  23678. },
  23679. dragon: {
  23680. height: math.unit(40, "feet"),
  23681. name: "Dragon",
  23682. image: {
  23683. source: "./media/characters/layla/dragon.svg",
  23684. extra: 610/535,
  23685. bottom: 367/977
  23686. }
  23687. },
  23688. taur: {
  23689. height: math.unit(30, "feet"),
  23690. name: "Taur",
  23691. image: {
  23692. source: "./media/characters/layla/taur.svg",
  23693. extra: 1268/1199,
  23694. bottom: 112/1380
  23695. }
  23696. },
  23697. },
  23698. [
  23699. {
  23700. name: "Micro",
  23701. height: math.unit(1, "inch")
  23702. },
  23703. {
  23704. name: "Small",
  23705. height: math.unit(1, "foot")
  23706. },
  23707. {
  23708. name: "Normal",
  23709. height: math.unit(2 + 6 / 12, "feet"),
  23710. default: true
  23711. },
  23712. {
  23713. name: "Macro",
  23714. height: math.unit(200, "feet")
  23715. },
  23716. {
  23717. name: "Megamacro",
  23718. height: math.unit(1000, "miles")
  23719. },
  23720. {
  23721. name: "Planetary",
  23722. height: math.unit(8000, "miles")
  23723. },
  23724. {
  23725. name: "True Layla",
  23726. height: math.unit(200000 * 7, "multiverses")
  23727. },
  23728. ]
  23729. ))
  23730. characterMakers.push(() => makeCharacter(
  23731. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  23732. {
  23733. back: {
  23734. height: math.unit(10.5, "feet"),
  23735. weight: math.unit(800, "lb"),
  23736. name: "Back",
  23737. image: {
  23738. source: "./media/characters/knox/back.svg",
  23739. extra: 1486 / 1089,
  23740. bottom: 107 / 1601.4
  23741. }
  23742. },
  23743. side: {
  23744. height: math.unit(10.5, "feet"),
  23745. weight: math.unit(800, "lb"),
  23746. name: "Side",
  23747. image: {
  23748. source: "./media/characters/knox/side.svg",
  23749. extra: 244 / 218,
  23750. bottom: 14 / 260
  23751. }
  23752. },
  23753. },
  23754. [
  23755. {
  23756. name: "Compact",
  23757. height: math.unit(10.5, "feet"),
  23758. default: true
  23759. },
  23760. {
  23761. name: "Dynamax",
  23762. height: math.unit(210, "feet")
  23763. },
  23764. {
  23765. name: "Full Macro",
  23766. height: math.unit(850, "feet")
  23767. },
  23768. ]
  23769. ))
  23770. characterMakers.push(() => makeCharacter(
  23771. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  23772. {
  23773. front: {
  23774. height: math.unit(28, "feet"),
  23775. weight: math.unit(10500, "lb"),
  23776. name: "Front",
  23777. image: {
  23778. source: "./media/characters/kayda/front.svg",
  23779. extra: 1536 / 1428,
  23780. bottom: 68.7 / 1603
  23781. }
  23782. },
  23783. back: {
  23784. height: math.unit(28, "feet"),
  23785. weight: math.unit(10500, "lb"),
  23786. name: "Back",
  23787. image: {
  23788. source: "./media/characters/kayda/back.svg",
  23789. extra: 1557 / 1464,
  23790. bottom: 39.5 / 1597.49
  23791. }
  23792. },
  23793. dick: {
  23794. height: math.unit(3.858, "feet"),
  23795. name: "Dick",
  23796. image: {
  23797. source: "./media/characters/kayda/dick.svg"
  23798. }
  23799. },
  23800. },
  23801. [
  23802. {
  23803. name: "Macro",
  23804. height: math.unit(28, "feet"),
  23805. default: true
  23806. },
  23807. ]
  23808. ))
  23809. characterMakers.push(() => makeCharacter(
  23810. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  23811. {
  23812. front: {
  23813. height: math.unit(10 + 11 / 12, "feet"),
  23814. weight: math.unit(1400, "lb"),
  23815. name: "Front",
  23816. image: {
  23817. source: "./media/characters/brian/front.svg",
  23818. extra: 737 / 692,
  23819. bottom: 55.4 / 785
  23820. }
  23821. },
  23822. },
  23823. [
  23824. {
  23825. name: "Normal",
  23826. height: math.unit(10 + 11 / 12, "feet"),
  23827. default: true
  23828. },
  23829. ]
  23830. ))
  23831. characterMakers.push(() => makeCharacter(
  23832. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  23833. {
  23834. front: {
  23835. height: math.unit(5 + 8 / 12, "feet"),
  23836. weight: math.unit(140, "lb"),
  23837. name: "Front",
  23838. image: {
  23839. source: "./media/characters/khemri/front.svg",
  23840. extra: 4780 / 4059,
  23841. bottom: 80.1 / 4859.25
  23842. }
  23843. },
  23844. },
  23845. [
  23846. {
  23847. name: "Micro",
  23848. height: math.unit(6, "inches")
  23849. },
  23850. {
  23851. name: "Normal",
  23852. height: math.unit(5 + 8 / 12, "feet"),
  23853. default: true
  23854. },
  23855. ]
  23856. ))
  23857. characterMakers.push(() => makeCharacter(
  23858. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  23859. {
  23860. front: {
  23861. height: math.unit(13, "feet"),
  23862. weight: math.unit(1700, "lb"),
  23863. name: "Front",
  23864. image: {
  23865. source: "./media/characters/felix-braveheart/front.svg",
  23866. extra: 1222 / 1157,
  23867. bottom: 53.2 / 1280
  23868. }
  23869. },
  23870. back: {
  23871. height: math.unit(13, "feet"),
  23872. weight: math.unit(1700, "lb"),
  23873. name: "Back",
  23874. image: {
  23875. source: "./media/characters/felix-braveheart/back.svg",
  23876. extra: 1277 / 1203,
  23877. bottom: 50.2 / 1327
  23878. }
  23879. },
  23880. feral: {
  23881. height: math.unit(6, "feet"),
  23882. weight: math.unit(400, "lb"),
  23883. name: "Feral",
  23884. image: {
  23885. source: "./media/characters/felix-braveheart/feral.svg",
  23886. extra: 682 / 625,
  23887. bottom: 6.9 / 688
  23888. }
  23889. },
  23890. },
  23891. [
  23892. {
  23893. name: "Normal",
  23894. height: math.unit(13, "feet"),
  23895. default: true
  23896. },
  23897. ]
  23898. ))
  23899. characterMakers.push(() => makeCharacter(
  23900. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  23901. {
  23902. side: {
  23903. height: math.unit(5 + 11 / 12, "feet"),
  23904. weight: math.unit(1400, "lb"),
  23905. name: "Side",
  23906. image: {
  23907. source: "./media/characters/shadow-blade/side.svg",
  23908. extra: 1726 / 1267,
  23909. bottom: 58.4 / 1785
  23910. }
  23911. },
  23912. },
  23913. [
  23914. {
  23915. name: "Normal",
  23916. height: math.unit(5 + 11 / 12, "feet"),
  23917. default: true
  23918. },
  23919. ]
  23920. ))
  23921. characterMakers.push(() => makeCharacter(
  23922. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  23923. {
  23924. front: {
  23925. height: math.unit(1 + 6 / 12, "feet"),
  23926. weight: math.unit(25, "lb"),
  23927. name: "Front",
  23928. image: {
  23929. source: "./media/characters/karla-halldor/front.svg",
  23930. extra: 1459 / 1383,
  23931. bottom: 12 / 1472
  23932. }
  23933. },
  23934. },
  23935. [
  23936. {
  23937. name: "Normal",
  23938. height: math.unit(1 + 6 / 12, "feet"),
  23939. default: true
  23940. },
  23941. ]
  23942. ))
  23943. characterMakers.push(() => makeCharacter(
  23944. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  23945. {
  23946. front: {
  23947. height: math.unit(6 + 2 / 12, "feet"),
  23948. weight: math.unit(160, "lb"),
  23949. name: "Front",
  23950. image: {
  23951. source: "./media/characters/ariam/front.svg",
  23952. extra: 714 / 617,
  23953. bottom: 23.4 / 737,
  23954. }
  23955. },
  23956. squatting: {
  23957. height: math.unit(4.1, "feet"),
  23958. weight: math.unit(160, "lb"),
  23959. name: "Squatting",
  23960. image: {
  23961. source: "./media/characters/ariam/squatting.svg",
  23962. extra: 2617 / 2112,
  23963. bottom: 61.2 / 2681,
  23964. }
  23965. },
  23966. },
  23967. [
  23968. {
  23969. name: "Normal",
  23970. height: math.unit(6 + 2 / 12, "feet"),
  23971. default: true
  23972. },
  23973. {
  23974. name: "Normal+",
  23975. height: math.unit(4, "meters")
  23976. },
  23977. {
  23978. name: "Macro",
  23979. height: math.unit(50, "meters")
  23980. },
  23981. {
  23982. name: "Macro+",
  23983. height: math.unit(100, "meters")
  23984. },
  23985. {
  23986. name: "Megamacro",
  23987. height: math.unit(20, "km")
  23988. },
  23989. ]
  23990. ))
  23991. characterMakers.push(() => makeCharacter(
  23992. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  23993. {
  23994. front: {
  23995. height: math.unit(1.67, "meters"),
  23996. weight: math.unit(140, "lb"),
  23997. name: "Front",
  23998. image: {
  23999. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  24000. extra: 438 / 410,
  24001. bottom: 0.75 / 439
  24002. }
  24003. },
  24004. },
  24005. [
  24006. {
  24007. name: "Shrunken",
  24008. height: math.unit(7.6, "cm")
  24009. },
  24010. {
  24011. name: "Human Scale",
  24012. height: math.unit(1.67, "meters")
  24013. },
  24014. {
  24015. name: "Wolxi Scale",
  24016. height: math.unit(36.7, "meters"),
  24017. default: true
  24018. },
  24019. ]
  24020. ))
  24021. characterMakers.push(() => makeCharacter(
  24022. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  24023. {
  24024. front: {
  24025. height: math.unit(1.73, "meters"),
  24026. weight: math.unit(240, "lb"),
  24027. name: "Front",
  24028. image: {
  24029. source: "./media/characters/izue-two-mothers/front.svg",
  24030. extra: 469 / 437,
  24031. bottom: 1.24 / 470.6
  24032. }
  24033. },
  24034. },
  24035. [
  24036. {
  24037. name: "Shrunken",
  24038. height: math.unit(7.86, "cm")
  24039. },
  24040. {
  24041. name: "Human Scale",
  24042. height: math.unit(1.73, "meters")
  24043. },
  24044. {
  24045. name: "Wolxi Scale",
  24046. height: math.unit(38, "meters"),
  24047. default: true
  24048. },
  24049. ]
  24050. ))
  24051. characterMakers.push(() => makeCharacter(
  24052. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  24053. {
  24054. front: {
  24055. height: math.unit(1.55, "meters"),
  24056. weight: math.unit(120, "lb"),
  24057. name: "Front",
  24058. image: {
  24059. source: "./media/characters/teeku-love-shack/front.svg",
  24060. extra: 387 / 362,
  24061. bottom: 1.51 / 388
  24062. }
  24063. },
  24064. },
  24065. [
  24066. {
  24067. name: "Shrunken",
  24068. height: math.unit(7, "cm")
  24069. },
  24070. {
  24071. name: "Human Scale",
  24072. height: math.unit(1.55, "meters")
  24073. },
  24074. {
  24075. name: "Wolxi Scale",
  24076. height: math.unit(34.1, "meters"),
  24077. default: true
  24078. },
  24079. ]
  24080. ))
  24081. characterMakers.push(() => makeCharacter(
  24082. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  24083. {
  24084. front: {
  24085. height: math.unit(1.83, "meters"),
  24086. weight: math.unit(135, "lb"),
  24087. name: "Front",
  24088. image: {
  24089. source: "./media/characters/dejma-the-red/front.svg",
  24090. extra: 480 / 458,
  24091. bottom: 1.8 / 482
  24092. }
  24093. },
  24094. },
  24095. [
  24096. {
  24097. name: "Shrunken",
  24098. height: math.unit(8.3, "cm")
  24099. },
  24100. {
  24101. name: "Human Scale",
  24102. height: math.unit(1.83, "meters")
  24103. },
  24104. {
  24105. name: "Wolxi Scale",
  24106. height: math.unit(40, "meters"),
  24107. default: true
  24108. },
  24109. ]
  24110. ))
  24111. characterMakers.push(() => makeCharacter(
  24112. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  24113. {
  24114. front: {
  24115. height: math.unit(1.78, "meters"),
  24116. weight: math.unit(65, "kg"),
  24117. name: "Front",
  24118. image: {
  24119. source: "./media/characters/aki/front.svg",
  24120. extra: 452 / 415
  24121. }
  24122. },
  24123. frontNsfw: {
  24124. height: math.unit(1.78, "meters"),
  24125. weight: math.unit(65, "kg"),
  24126. name: "Front (NSFW)",
  24127. image: {
  24128. source: "./media/characters/aki/front-nsfw.svg",
  24129. extra: 452 / 415
  24130. }
  24131. },
  24132. back: {
  24133. height: math.unit(1.78, "meters"),
  24134. weight: math.unit(65, "kg"),
  24135. name: "Back",
  24136. image: {
  24137. source: "./media/characters/aki/back.svg",
  24138. extra: 452 / 415
  24139. }
  24140. },
  24141. rump: {
  24142. height: math.unit(2.05, "feet"),
  24143. name: "Rump",
  24144. image: {
  24145. source: "./media/characters/aki/rump.svg"
  24146. }
  24147. },
  24148. dick: {
  24149. height: math.unit(0.95, "feet"),
  24150. name: "Dick",
  24151. image: {
  24152. source: "./media/characters/aki/dick.svg"
  24153. }
  24154. },
  24155. },
  24156. [
  24157. {
  24158. name: "Micro",
  24159. height: math.unit(15, "cm")
  24160. },
  24161. {
  24162. name: "Normal",
  24163. height: math.unit(178, "cm"),
  24164. default: true
  24165. },
  24166. {
  24167. name: "Macro",
  24168. height: math.unit(214, "m")
  24169. },
  24170. {
  24171. name: "Macro+",
  24172. height: math.unit(534, "m")
  24173. },
  24174. ]
  24175. ))
  24176. characterMakers.push(() => makeCharacter(
  24177. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  24178. {
  24179. front: {
  24180. height: math.unit(5 + 5 / 12, "feet"),
  24181. weight: math.unit(120, "lb"),
  24182. name: "Front",
  24183. image: {
  24184. source: "./media/characters/ari/front.svg",
  24185. extra: 714.5 / 682,
  24186. bottom: 8 / 722.5
  24187. }
  24188. },
  24189. },
  24190. [
  24191. {
  24192. name: "Normal",
  24193. height: math.unit(5 + 5 / 12, "feet")
  24194. },
  24195. {
  24196. name: "Macro",
  24197. height: math.unit(100, "feet"),
  24198. default: true
  24199. },
  24200. {
  24201. name: "Megamacro",
  24202. height: math.unit(100, "miles")
  24203. },
  24204. {
  24205. name: "Gigamacro",
  24206. height: math.unit(80000, "miles")
  24207. },
  24208. ]
  24209. ))
  24210. characterMakers.push(() => makeCharacter(
  24211. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  24212. {
  24213. side: {
  24214. height: math.unit(9, "feet"),
  24215. weight: math.unit(400, "kg"),
  24216. name: "Side",
  24217. image: {
  24218. source: "./media/characters/bolt/side.svg",
  24219. extra: 1126 / 896,
  24220. bottom: 60 / 1187.3,
  24221. }
  24222. },
  24223. },
  24224. [
  24225. {
  24226. name: "Micro",
  24227. height: math.unit(5, "inches")
  24228. },
  24229. {
  24230. name: "Normal",
  24231. height: math.unit(9, "feet"),
  24232. default: true
  24233. },
  24234. {
  24235. name: "Macro",
  24236. height: math.unit(700, "feet")
  24237. },
  24238. {
  24239. name: "Max Size",
  24240. height: math.unit(1.52e22, "yottameters")
  24241. },
  24242. ]
  24243. ))
  24244. characterMakers.push(() => makeCharacter(
  24245. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  24246. {
  24247. front: {
  24248. height: math.unit(4.53, "meters"),
  24249. weight: math.unit(3, "tons"),
  24250. name: "Front",
  24251. image: {
  24252. source: "./media/characters/draekon-sylviar/front.svg",
  24253. extra: 1228 / 1068,
  24254. bottom: 41 / 1270
  24255. }
  24256. },
  24257. tail: {
  24258. height: math.unit(1.772, "meter"),
  24259. name: "Tail",
  24260. image: {
  24261. source: "./media/characters/draekon-sylviar/tail.svg"
  24262. }
  24263. },
  24264. head: {
  24265. height: math.unit(1.331, "meter"),
  24266. name: "Head",
  24267. image: {
  24268. source: "./media/characters/draekon-sylviar/head.svg"
  24269. }
  24270. },
  24271. hand: {
  24272. height: math.unit(0.564, "meter"),
  24273. name: "Hand",
  24274. image: {
  24275. source: "./media/characters/draekon-sylviar/hand.svg"
  24276. }
  24277. },
  24278. foot: {
  24279. height: math.unit(0.621, "meter"),
  24280. name: "Foot",
  24281. image: {
  24282. source: "./media/characters/draekon-sylviar/foot.svg",
  24283. bottom: 32 / 324
  24284. }
  24285. },
  24286. dick: {
  24287. height: math.unit(61, "cm"),
  24288. name: "Dick",
  24289. image: {
  24290. source: "./media/characters/draekon-sylviar/dick.svg"
  24291. }
  24292. },
  24293. dickseparated: {
  24294. height: math.unit(61, "cm"),
  24295. name: "Dick-separated",
  24296. image: {
  24297. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  24298. }
  24299. },
  24300. },
  24301. [
  24302. {
  24303. name: "Small",
  24304. height: math.unit(4.53 / 2, "meters"),
  24305. default: true
  24306. },
  24307. {
  24308. name: "Normal",
  24309. height: math.unit(4.53, "meters"),
  24310. default: true
  24311. },
  24312. {
  24313. name: "Large",
  24314. height: math.unit(4.53 * 2, "meters"),
  24315. },
  24316. ]
  24317. ))
  24318. characterMakers.push(() => makeCharacter(
  24319. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  24320. {
  24321. front: {
  24322. height: math.unit(6 + 2 / 12, "feet"),
  24323. weight: math.unit(180, "lb"),
  24324. name: "Front",
  24325. image: {
  24326. source: "./media/characters/brawler/front.svg",
  24327. extra: 3301 / 3027,
  24328. bottom: 138 / 3439
  24329. }
  24330. },
  24331. },
  24332. [
  24333. {
  24334. name: "Normal",
  24335. height: math.unit(6 + 2 / 12, "feet"),
  24336. default: true
  24337. },
  24338. ]
  24339. ))
  24340. characterMakers.push(() => makeCharacter(
  24341. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  24342. {
  24343. front: {
  24344. height: math.unit(11, "feet"),
  24345. weight: math.unit(1000, "lb"),
  24346. name: "Front",
  24347. image: {
  24348. source: "./media/characters/alex/front.svg",
  24349. bottom: 44.5 / 620
  24350. }
  24351. },
  24352. },
  24353. [
  24354. {
  24355. name: "Micro",
  24356. height: math.unit(5, "inches")
  24357. },
  24358. {
  24359. name: "Normal",
  24360. height: math.unit(11, "feet"),
  24361. default: true
  24362. },
  24363. {
  24364. name: "Macro",
  24365. height: math.unit(9.5e9, "feet")
  24366. },
  24367. {
  24368. name: "Max Size",
  24369. height: math.unit(1.4e283, "yottameters")
  24370. },
  24371. ]
  24372. ))
  24373. characterMakers.push(() => makeCharacter(
  24374. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  24375. {
  24376. female: {
  24377. height: math.unit(29.9, "m"),
  24378. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  24379. name: "Female",
  24380. image: {
  24381. source: "./media/characters/zenari/female.svg",
  24382. extra: 3281.6 / 3217,
  24383. bottom: 72.2 / 3353
  24384. }
  24385. },
  24386. male: {
  24387. height: math.unit(27.7, "m"),
  24388. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  24389. name: "Male",
  24390. image: {
  24391. source: "./media/characters/zenari/male.svg",
  24392. extra: 3008 / 2991,
  24393. bottom: 54.6 / 3069
  24394. }
  24395. },
  24396. },
  24397. [
  24398. {
  24399. name: "Macro",
  24400. height: math.unit(29.7, "meters"),
  24401. default: true
  24402. },
  24403. ]
  24404. ))
  24405. characterMakers.push(() => makeCharacter(
  24406. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  24407. {
  24408. female: {
  24409. height: math.unit(23.8, "m"),
  24410. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24411. name: "Female",
  24412. image: {
  24413. source: "./media/characters/mactarian/female.svg",
  24414. extra: 2662 / 2569,
  24415. bottom: 73 / 2736
  24416. }
  24417. },
  24418. male: {
  24419. height: math.unit(23.8, "m"),
  24420. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24421. name: "Male",
  24422. image: {
  24423. source: "./media/characters/mactarian/male.svg",
  24424. extra: 2673 / 2600,
  24425. bottom: 76 / 2750
  24426. }
  24427. },
  24428. },
  24429. [
  24430. {
  24431. name: "Macro",
  24432. height: math.unit(23.8, "meters"),
  24433. default: true
  24434. },
  24435. ]
  24436. ))
  24437. characterMakers.push(() => makeCharacter(
  24438. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  24439. {
  24440. female: {
  24441. height: math.unit(19.3, "m"),
  24442. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  24443. name: "Female",
  24444. image: {
  24445. source: "./media/characters/umok/female.svg",
  24446. extra: 2186 / 2078,
  24447. bottom: 87 / 2277
  24448. }
  24449. },
  24450. male: {
  24451. height: math.unit(19.5, "m"),
  24452. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  24453. name: "Male",
  24454. image: {
  24455. source: "./media/characters/umok/male.svg",
  24456. extra: 2233 / 2140,
  24457. bottom: 24.4 / 2258
  24458. }
  24459. },
  24460. },
  24461. [
  24462. {
  24463. name: "Macro",
  24464. height: math.unit(19.3, "meters"),
  24465. default: true
  24466. },
  24467. ]
  24468. ))
  24469. characterMakers.push(() => makeCharacter(
  24470. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  24471. {
  24472. female: {
  24473. height: math.unit(26.15, "m"),
  24474. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  24475. name: "Female",
  24476. image: {
  24477. source: "./media/characters/joraxian/female.svg",
  24478. extra: 2912 / 2824,
  24479. bottom: 36 / 2956
  24480. }
  24481. },
  24482. male: {
  24483. height: math.unit(25.4, "m"),
  24484. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  24485. name: "Male",
  24486. image: {
  24487. source: "./media/characters/joraxian/male.svg",
  24488. extra: 2877 / 2721,
  24489. bottom: 82 / 2967
  24490. }
  24491. },
  24492. },
  24493. [
  24494. {
  24495. name: "Macro",
  24496. height: math.unit(26.15, "meters"),
  24497. default: true
  24498. },
  24499. ]
  24500. ))
  24501. characterMakers.push(() => makeCharacter(
  24502. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  24503. {
  24504. female: {
  24505. height: math.unit(21.6, "m"),
  24506. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  24507. name: "Female",
  24508. image: {
  24509. source: "./media/characters/sthara/female.svg",
  24510. extra: 2516 / 2347,
  24511. bottom: 21.5 / 2537
  24512. }
  24513. },
  24514. male: {
  24515. height: math.unit(24, "m"),
  24516. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  24517. name: "Male",
  24518. image: {
  24519. source: "./media/characters/sthara/male.svg",
  24520. extra: 2732 / 2607,
  24521. bottom: 23 / 2732
  24522. }
  24523. },
  24524. },
  24525. [
  24526. {
  24527. name: "Macro",
  24528. height: math.unit(21.6, "meters"),
  24529. default: true
  24530. },
  24531. ]
  24532. ))
  24533. characterMakers.push(() => makeCharacter(
  24534. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  24535. {
  24536. front: {
  24537. height: math.unit(6 + 4 / 12, "feet"),
  24538. weight: math.unit(175, "lb"),
  24539. name: "Front",
  24540. image: {
  24541. source: "./media/characters/luka-bryzant/front.svg",
  24542. extra: 311 / 289,
  24543. bottom: 4 / 315
  24544. }
  24545. },
  24546. back: {
  24547. height: math.unit(6 + 4 / 12, "feet"),
  24548. weight: math.unit(175, "lb"),
  24549. name: "Back",
  24550. image: {
  24551. source: "./media/characters/luka-bryzant/back.svg",
  24552. extra: 311 / 289,
  24553. bottom: 3.8 / 313.7
  24554. }
  24555. },
  24556. },
  24557. [
  24558. {
  24559. name: "Micro",
  24560. height: math.unit(10, "inches")
  24561. },
  24562. {
  24563. name: "Normal",
  24564. height: math.unit(6 + 4 / 12, "feet"),
  24565. default: true
  24566. },
  24567. {
  24568. name: "Large",
  24569. height: math.unit(12, "feet")
  24570. },
  24571. ]
  24572. ))
  24573. characterMakers.push(() => makeCharacter(
  24574. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  24575. {
  24576. front: {
  24577. height: math.unit(5 + 7 / 12, "feet"),
  24578. weight: math.unit(185, "lb"),
  24579. name: "Front",
  24580. image: {
  24581. source: "./media/characters/aman-aquila/front.svg",
  24582. extra: 1013 / 976,
  24583. bottom: 45.6 / 1057
  24584. }
  24585. },
  24586. side: {
  24587. height: math.unit(5 + 7 / 12, "feet"),
  24588. weight: math.unit(185, "lb"),
  24589. name: "Side",
  24590. image: {
  24591. source: "./media/characters/aman-aquila/side.svg",
  24592. extra: 1054 / 1011,
  24593. bottom: 15 / 1070
  24594. }
  24595. },
  24596. back: {
  24597. height: math.unit(5 + 7 / 12, "feet"),
  24598. weight: math.unit(185, "lb"),
  24599. name: "Back",
  24600. image: {
  24601. source: "./media/characters/aman-aquila/back.svg",
  24602. extra: 1026 / 970,
  24603. bottom: 12 / 1039
  24604. }
  24605. },
  24606. head: {
  24607. height: math.unit(1.211, "feet"),
  24608. name: "Head",
  24609. image: {
  24610. source: "./media/characters/aman-aquila/head.svg",
  24611. }
  24612. },
  24613. },
  24614. [
  24615. {
  24616. name: "Minimicro",
  24617. height: math.unit(0.057, "inches")
  24618. },
  24619. {
  24620. name: "Micro",
  24621. height: math.unit(7, "inches")
  24622. },
  24623. {
  24624. name: "Mini",
  24625. height: math.unit(3 + 7 / 12, "feet")
  24626. },
  24627. {
  24628. name: "Normal",
  24629. height: math.unit(5 + 7 / 12, "feet"),
  24630. default: true
  24631. },
  24632. {
  24633. name: "Macro",
  24634. height: math.unit(157 + 7 / 12, "feet")
  24635. },
  24636. {
  24637. name: "Megamacro",
  24638. height: math.unit(1557 + 7 / 12, "feet")
  24639. },
  24640. {
  24641. name: "Gigamacro",
  24642. height: math.unit(15557 + 7 / 12, "feet")
  24643. },
  24644. ]
  24645. ))
  24646. characterMakers.push(() => makeCharacter(
  24647. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  24648. {
  24649. front: {
  24650. height: math.unit(3 + 2 / 12, "inches"),
  24651. weight: math.unit(0.3, "ounces"),
  24652. name: "Front",
  24653. image: {
  24654. source: "./media/characters/hiphae/front.svg",
  24655. extra: 1931 / 1683,
  24656. bottom: 24 / 1955
  24657. }
  24658. },
  24659. },
  24660. [
  24661. {
  24662. name: "Normal",
  24663. height: math.unit(3 + 1 / 2, "inches"),
  24664. default: true
  24665. },
  24666. ]
  24667. ))
  24668. characterMakers.push(() => makeCharacter(
  24669. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  24670. {
  24671. front: {
  24672. height: math.unit(5 + 10 / 12, "feet"),
  24673. weight: math.unit(165, "lb"),
  24674. name: "Front",
  24675. image: {
  24676. source: "./media/characters/nicky/front.svg",
  24677. extra: 3144 / 2886,
  24678. bottom: 45.6 / 3192
  24679. }
  24680. },
  24681. back: {
  24682. height: math.unit(5 + 10 / 12, "feet"),
  24683. weight: math.unit(165, "lb"),
  24684. name: "Back",
  24685. image: {
  24686. source: "./media/characters/nicky/back.svg",
  24687. extra: 3055 / 2804,
  24688. bottom: 28.4 / 3087
  24689. }
  24690. },
  24691. frontclothed: {
  24692. height: math.unit(5 + 10 / 12, "feet"),
  24693. weight: math.unit(165, "lb"),
  24694. name: "Front-clothed",
  24695. image: {
  24696. source: "./media/characters/nicky/front-clothed.svg",
  24697. extra: 3184.9 / 2926.9,
  24698. bottom: 86.5 / 3239.9
  24699. }
  24700. },
  24701. foot: {
  24702. height: math.unit(1.16, "feet"),
  24703. name: "Foot",
  24704. image: {
  24705. source: "./media/characters/nicky/foot.svg"
  24706. }
  24707. },
  24708. feet: {
  24709. height: math.unit(1.34, "feet"),
  24710. name: "Feet",
  24711. image: {
  24712. source: "./media/characters/nicky/feet.svg"
  24713. }
  24714. },
  24715. maw: {
  24716. height: math.unit(0.9, "feet"),
  24717. name: "Maw",
  24718. image: {
  24719. source: "./media/characters/nicky/maw.svg"
  24720. }
  24721. },
  24722. },
  24723. [
  24724. {
  24725. name: "Normal",
  24726. height: math.unit(5 + 10 / 12, "feet"),
  24727. default: true
  24728. },
  24729. {
  24730. name: "Macro",
  24731. height: math.unit(60, "feet")
  24732. },
  24733. {
  24734. name: "Megamacro",
  24735. height: math.unit(1, "mile")
  24736. },
  24737. ]
  24738. ))
  24739. characterMakers.push(() => makeCharacter(
  24740. { name: "Blair", species: ["seal"], tags: ["taur"] },
  24741. {
  24742. side: {
  24743. height: math.unit(10, "feet"),
  24744. weight: math.unit(600, "lb"),
  24745. name: "Side",
  24746. image: {
  24747. source: "./media/characters/blair/side.svg",
  24748. bottom: 16.6 / 475,
  24749. extra: 458 / 431
  24750. }
  24751. },
  24752. },
  24753. [
  24754. {
  24755. name: "Micro",
  24756. height: math.unit(8, "inches")
  24757. },
  24758. {
  24759. name: "Normal",
  24760. height: math.unit(10, "feet"),
  24761. default: true
  24762. },
  24763. {
  24764. name: "Macro",
  24765. height: math.unit(180, "feet")
  24766. },
  24767. ]
  24768. ))
  24769. characterMakers.push(() => makeCharacter(
  24770. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  24771. {
  24772. front: {
  24773. height: math.unit(5 + 4 / 12, "feet"),
  24774. weight: math.unit(125, "lb"),
  24775. name: "Front",
  24776. image: {
  24777. source: "./media/characters/fisher/front.svg",
  24778. extra: 444 / 390,
  24779. bottom: 2 / 444.8
  24780. }
  24781. },
  24782. },
  24783. [
  24784. {
  24785. name: "Micro",
  24786. height: math.unit(4, "inches")
  24787. },
  24788. {
  24789. name: "Normal",
  24790. height: math.unit(5 + 4 / 12, "feet"),
  24791. default: true
  24792. },
  24793. {
  24794. name: "Macro",
  24795. height: math.unit(100, "feet")
  24796. },
  24797. ]
  24798. ))
  24799. characterMakers.push(() => makeCharacter(
  24800. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  24801. {
  24802. front: {
  24803. height: math.unit(6.71, "feet"),
  24804. weight: math.unit(200, "lb"),
  24805. capacity: math.unit(1000000, "people"),
  24806. name: "Front",
  24807. image: {
  24808. source: "./media/characters/gliss/front.svg",
  24809. extra: 2347 / 2231,
  24810. bottom: 113 / 2462
  24811. }
  24812. },
  24813. hammerspaceSize: {
  24814. height: math.unit(6.71 * 717, "feet"),
  24815. weight: math.unit(200, "lb"),
  24816. capacity: math.unit(1000000, "people"),
  24817. name: "Hammerspace Size",
  24818. image: {
  24819. source: "./media/characters/gliss/front.svg",
  24820. extra: 2347 / 2231,
  24821. bottom: 113 / 2462
  24822. }
  24823. },
  24824. },
  24825. [
  24826. {
  24827. name: "Normal",
  24828. height: math.unit(6.71, "feet"),
  24829. default: true
  24830. },
  24831. ]
  24832. ))
  24833. characterMakers.push(() => makeCharacter(
  24834. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  24835. {
  24836. side: {
  24837. height: math.unit(1.44, "m"),
  24838. weight: math.unit(80, "kg"),
  24839. name: "Side",
  24840. image: {
  24841. source: "./media/characters/dune-anderson/side.svg",
  24842. bottom: 49 / 1426
  24843. }
  24844. },
  24845. },
  24846. [
  24847. {
  24848. name: "Wolf-sized",
  24849. height: math.unit(1.44, "meters")
  24850. },
  24851. {
  24852. name: "Normal",
  24853. height: math.unit(5.05, "meters"),
  24854. default: true
  24855. },
  24856. {
  24857. name: "Big",
  24858. height: math.unit(14.4, "meters")
  24859. },
  24860. {
  24861. name: "Huge",
  24862. height: math.unit(144, "meters")
  24863. },
  24864. ]
  24865. ))
  24866. characterMakers.push(() => makeCharacter(
  24867. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  24868. {
  24869. front: {
  24870. height: math.unit(7, "feet"),
  24871. weight: math.unit(425, "lb"),
  24872. name: "Front",
  24873. image: {
  24874. source: "./media/characters/hind/front.svg",
  24875. extra: 2091 / 1860,
  24876. bottom: 129 / 2220
  24877. }
  24878. },
  24879. back: {
  24880. height: math.unit(7, "feet"),
  24881. weight: math.unit(425, "lb"),
  24882. name: "Back",
  24883. image: {
  24884. source: "./media/characters/hind/back.svg",
  24885. extra: 2091 / 1860,
  24886. bottom: 24.6 / 2309
  24887. }
  24888. },
  24889. tail: {
  24890. height: math.unit(2.8, "feet"),
  24891. name: "Tail",
  24892. image: {
  24893. source: "./media/characters/hind/tail.svg"
  24894. }
  24895. },
  24896. head: {
  24897. height: math.unit(2.55, "feet"),
  24898. name: "Head",
  24899. image: {
  24900. source: "./media/characters/hind/head.svg"
  24901. }
  24902. },
  24903. },
  24904. [
  24905. {
  24906. name: "XS",
  24907. height: math.unit(0.7, "feet")
  24908. },
  24909. {
  24910. name: "Normal",
  24911. height: math.unit(7, "feet"),
  24912. default: true
  24913. },
  24914. {
  24915. name: "XL",
  24916. height: math.unit(70, "feet")
  24917. },
  24918. ]
  24919. ))
  24920. characterMakers.push(() => makeCharacter(
  24921. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  24922. {
  24923. front: {
  24924. height: math.unit(2.1, "meters"),
  24925. weight: math.unit(150, "lb"),
  24926. name: "Front",
  24927. image: {
  24928. source: "./media/characters/tharquench-sizestealer/front.svg",
  24929. extra: 1605/1470,
  24930. bottom: 36/1641
  24931. }
  24932. },
  24933. frontAlt: {
  24934. height: math.unit(2.1, "meters"),
  24935. weight: math.unit(150, "lb"),
  24936. name: "Front (Alt)",
  24937. image: {
  24938. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  24939. extra: 2318 / 2063,
  24940. bottom: 93.4 / 2410
  24941. }
  24942. },
  24943. },
  24944. [
  24945. {
  24946. name: "Nano",
  24947. height: math.unit(1, "mm")
  24948. },
  24949. {
  24950. name: "Micro",
  24951. height: math.unit(1, "cm")
  24952. },
  24953. {
  24954. name: "Normal",
  24955. height: math.unit(2.1, "meters"),
  24956. default: true
  24957. },
  24958. ]
  24959. ))
  24960. characterMakers.push(() => makeCharacter(
  24961. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  24962. {
  24963. front: {
  24964. height: math.unit(7 + 5 / 12, "feet"),
  24965. weight: math.unit(357, "lb"),
  24966. name: "Front",
  24967. image: {
  24968. source: "./media/characters/solex-draconov/front.svg",
  24969. extra: 1993 / 1865,
  24970. bottom: 117 / 2111
  24971. }
  24972. },
  24973. },
  24974. [
  24975. {
  24976. name: "Natural Height",
  24977. height: math.unit(7 + 5 / 12, "feet"),
  24978. default: true
  24979. },
  24980. {
  24981. name: "Macro",
  24982. height: math.unit(350, "feet")
  24983. },
  24984. {
  24985. name: "Macro+",
  24986. height: math.unit(1000, "feet")
  24987. },
  24988. {
  24989. name: "Megamacro",
  24990. height: math.unit(20, "km")
  24991. },
  24992. {
  24993. name: "Megamacro+",
  24994. height: math.unit(1000, "km")
  24995. },
  24996. {
  24997. name: "Gigamacro",
  24998. height: math.unit(2.5, "Gm")
  24999. },
  25000. {
  25001. name: "Teramacro",
  25002. height: math.unit(15, "Tm")
  25003. },
  25004. {
  25005. name: "Galactic",
  25006. height: math.unit(30, "Zm")
  25007. },
  25008. {
  25009. name: "Universal",
  25010. height: math.unit(21000, "Ym")
  25011. },
  25012. {
  25013. name: "Omniversal",
  25014. height: math.unit(9.861e50, "Ym")
  25015. },
  25016. {
  25017. name: "Existential",
  25018. height: math.unit(1e300, "meters")
  25019. },
  25020. ]
  25021. ))
  25022. characterMakers.push(() => makeCharacter(
  25023. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  25024. {
  25025. side: {
  25026. height: math.unit(25, "feet"),
  25027. weight: math.unit(90000, "lb"),
  25028. name: "Side",
  25029. image: {
  25030. source: "./media/characters/mandarax/side.svg",
  25031. extra: 614 / 332,
  25032. bottom: 55 / 630
  25033. }
  25034. },
  25035. head: {
  25036. height: math.unit(11.4, "feet"),
  25037. name: "Head",
  25038. image: {
  25039. source: "./media/characters/mandarax/head.svg"
  25040. }
  25041. },
  25042. belly: {
  25043. height: math.unit(33, "feet"),
  25044. name: "Belly",
  25045. capacity: math.unit(500, "people"),
  25046. image: {
  25047. source: "./media/characters/mandarax/belly.svg"
  25048. }
  25049. },
  25050. dick: {
  25051. height: math.unit(8.46, "feet"),
  25052. name: "Dick",
  25053. image: {
  25054. source: "./media/characters/mandarax/dick.svg"
  25055. }
  25056. },
  25057. top: {
  25058. height: math.unit(28, "meters"),
  25059. name: "Top",
  25060. image: {
  25061. source: "./media/characters/mandarax/top.svg"
  25062. }
  25063. },
  25064. },
  25065. [
  25066. {
  25067. name: "Normal",
  25068. height: math.unit(25, "feet"),
  25069. default: true
  25070. },
  25071. ]
  25072. ))
  25073. characterMakers.push(() => makeCharacter(
  25074. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  25075. {
  25076. front: {
  25077. height: math.unit(5, "feet"),
  25078. weight: math.unit(90, "lb"),
  25079. name: "Front",
  25080. image: {
  25081. source: "./media/characters/pixil/front.svg",
  25082. extra: 2000 / 1618,
  25083. bottom: 12.3 / 2011
  25084. }
  25085. },
  25086. },
  25087. [
  25088. {
  25089. name: "Normal",
  25090. height: math.unit(5, "feet"),
  25091. default: true
  25092. },
  25093. {
  25094. name: "Megamacro",
  25095. height: math.unit(10, "miles"),
  25096. },
  25097. ]
  25098. ))
  25099. characterMakers.push(() => makeCharacter(
  25100. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  25101. {
  25102. front: {
  25103. height: math.unit(7 + 2 / 12, "feet"),
  25104. weight: math.unit(200, "lb"),
  25105. name: "Front",
  25106. image: {
  25107. source: "./media/characters/angel/front.svg",
  25108. extra: 1830 / 1737,
  25109. bottom: 22.6 / 1854,
  25110. }
  25111. },
  25112. },
  25113. [
  25114. {
  25115. name: "Normal",
  25116. height: math.unit(7 + 2 / 12, "feet"),
  25117. default: true
  25118. },
  25119. {
  25120. name: "Macro",
  25121. height: math.unit(1000, "feet")
  25122. },
  25123. {
  25124. name: "Megamacro",
  25125. height: math.unit(2, "miles")
  25126. },
  25127. {
  25128. name: "Gigamacro",
  25129. height: math.unit(20, "earths")
  25130. },
  25131. ]
  25132. ))
  25133. characterMakers.push(() => makeCharacter(
  25134. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  25135. {
  25136. front: {
  25137. height: math.unit(5, "feet"),
  25138. weight: math.unit(180, "lb"),
  25139. name: "Front",
  25140. image: {
  25141. source: "./media/characters/mekana/front.svg",
  25142. extra: 1671 / 1605,
  25143. bottom: 3.5 / 1691
  25144. }
  25145. },
  25146. side: {
  25147. height: math.unit(5, "feet"),
  25148. weight: math.unit(180, "lb"),
  25149. name: "Side",
  25150. image: {
  25151. source: "./media/characters/mekana/side.svg",
  25152. extra: 1671 / 1605,
  25153. bottom: 3.5 / 1691
  25154. }
  25155. },
  25156. back: {
  25157. height: math.unit(5, "feet"),
  25158. weight: math.unit(180, "lb"),
  25159. name: "Back",
  25160. image: {
  25161. source: "./media/characters/mekana/back.svg",
  25162. extra: 1671 / 1605,
  25163. bottom: 3.5 / 1691
  25164. }
  25165. },
  25166. },
  25167. [
  25168. {
  25169. name: "Normal",
  25170. height: math.unit(5, "feet"),
  25171. default: true
  25172. },
  25173. ]
  25174. ))
  25175. characterMakers.push(() => makeCharacter(
  25176. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  25177. {
  25178. front: {
  25179. height: math.unit(4 + 6 / 12, "feet"),
  25180. weight: math.unit(80, "lb"),
  25181. name: "Front",
  25182. image: {
  25183. source: "./media/characters/pixie/front.svg",
  25184. extra: 1924 / 1825,
  25185. bottom: 22.4 / 1946
  25186. }
  25187. },
  25188. },
  25189. [
  25190. {
  25191. name: "Normal",
  25192. height: math.unit(4 + 6 / 12, "feet"),
  25193. default: true
  25194. },
  25195. {
  25196. name: "Macro",
  25197. height: math.unit(40, "feet")
  25198. },
  25199. ]
  25200. ))
  25201. characterMakers.push(() => makeCharacter(
  25202. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  25203. {
  25204. front: {
  25205. height: math.unit(2.1, "meters"),
  25206. weight: math.unit(200, "lb"),
  25207. name: "Front",
  25208. image: {
  25209. source: "./media/characters/the-lascivious/front.svg",
  25210. extra: 1 / 0.893,
  25211. bottom: 3.5 / 573.7
  25212. }
  25213. },
  25214. },
  25215. [
  25216. {
  25217. name: "Human Scale",
  25218. height: math.unit(2.1, "meters")
  25219. },
  25220. {
  25221. name: "Wolxi Scale",
  25222. height: math.unit(46.2, "m"),
  25223. default: true
  25224. },
  25225. {
  25226. name: "Boinker of Buildings",
  25227. height: math.unit(10, "km")
  25228. },
  25229. {
  25230. name: "Shagger of Skyscrapers",
  25231. height: math.unit(40, "km")
  25232. },
  25233. {
  25234. name: "Banger of Boroughs",
  25235. height: math.unit(4000, "km")
  25236. },
  25237. {
  25238. name: "Screwer of States",
  25239. height: math.unit(100000, "km")
  25240. },
  25241. {
  25242. name: "Pounder of Planets",
  25243. height: math.unit(2000000, "km")
  25244. },
  25245. ]
  25246. ))
  25247. characterMakers.push(() => makeCharacter(
  25248. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  25249. {
  25250. front: {
  25251. height: math.unit(6, "feet"),
  25252. weight: math.unit(150, "lb"),
  25253. name: "Front",
  25254. image: {
  25255. source: "./media/characters/aj/front.svg",
  25256. extra: 2039 / 1562,
  25257. bottom: 40 / 2079
  25258. }
  25259. },
  25260. },
  25261. [
  25262. {
  25263. name: "Normal",
  25264. height: math.unit(11 + 6 / 12, "feet"),
  25265. default: true
  25266. },
  25267. {
  25268. name: "Megamacro",
  25269. height: math.unit(60, "megameters")
  25270. },
  25271. ]
  25272. ))
  25273. characterMakers.push(() => makeCharacter(
  25274. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  25275. {
  25276. side: {
  25277. height: math.unit(31 + 8 / 12, "feet"),
  25278. weight: math.unit(75000, "kg"),
  25279. name: "Side",
  25280. image: {
  25281. source: "./media/characters/koros/side.svg",
  25282. extra: 1442 / 1297,
  25283. bottom: 122.7 / 1562
  25284. }
  25285. },
  25286. dicksKingsCrown: {
  25287. height: math.unit(6, "feet"),
  25288. name: "Dicks (King's Crown)",
  25289. image: {
  25290. source: "./media/characters/koros/dicks-kings-crown.svg"
  25291. }
  25292. },
  25293. dicksTailSet: {
  25294. height: math.unit(3, "feet"),
  25295. name: "Dicks (Tail Set)",
  25296. image: {
  25297. source: "./media/characters/koros/dicks-tail-set.svg"
  25298. }
  25299. },
  25300. dickCumming: {
  25301. height: math.unit(7.98, "feet"),
  25302. name: "Dick (Cumming)",
  25303. image: {
  25304. source: "./media/characters/koros/dick-cumming.svg"
  25305. }
  25306. },
  25307. dicksBack: {
  25308. height: math.unit(5.9, "feet"),
  25309. name: "Dicks (Back)",
  25310. image: {
  25311. source: "./media/characters/koros/dicks-back.svg"
  25312. }
  25313. },
  25314. dicksFront: {
  25315. height: math.unit(3.72, "feet"),
  25316. name: "Dicks (Front)",
  25317. image: {
  25318. source: "./media/characters/koros/dicks-front.svg"
  25319. }
  25320. },
  25321. dicksPeeking: {
  25322. height: math.unit(3.0, "feet"),
  25323. name: "Dicks (Peeking)",
  25324. image: {
  25325. source: "./media/characters/koros/dicks-peeking.svg"
  25326. }
  25327. },
  25328. eye: {
  25329. height: math.unit(1.7, "feet"),
  25330. name: "Eye",
  25331. image: {
  25332. source: "./media/characters/koros/eye.svg"
  25333. }
  25334. },
  25335. headFront: {
  25336. height: math.unit(11.69, "feet"),
  25337. name: "Head (Front)",
  25338. image: {
  25339. source: "./media/characters/koros/head-front.svg"
  25340. }
  25341. },
  25342. headSide: {
  25343. height: math.unit(14, "feet"),
  25344. name: "Head (Side)",
  25345. image: {
  25346. source: "./media/characters/koros/head-side.svg"
  25347. }
  25348. },
  25349. leg: {
  25350. height: math.unit(17, "feet"),
  25351. name: "Leg",
  25352. image: {
  25353. source: "./media/characters/koros/leg.svg"
  25354. }
  25355. },
  25356. mawSide: {
  25357. height: math.unit(12.8, "feet"),
  25358. name: "Maw (Side)",
  25359. image: {
  25360. source: "./media/characters/koros/maw-side.svg"
  25361. }
  25362. },
  25363. mawSpitting: {
  25364. height: math.unit(17, "feet"),
  25365. name: "Maw (Spitting)",
  25366. image: {
  25367. source: "./media/characters/koros/maw-spitting.svg"
  25368. }
  25369. },
  25370. slit: {
  25371. height: math.unit(2.8, "feet"),
  25372. name: "Slit",
  25373. image: {
  25374. source: "./media/characters/koros/slit.svg"
  25375. }
  25376. },
  25377. stomach: {
  25378. height: math.unit(6.8, "feet"),
  25379. capacity: math.unit(20, "people"),
  25380. name: "Stomach",
  25381. image: {
  25382. source: "./media/characters/koros/stomach.svg"
  25383. }
  25384. },
  25385. wingspanBottom: {
  25386. height: math.unit(114, "feet"),
  25387. name: "Wingspan (Bottom)",
  25388. image: {
  25389. source: "./media/characters/koros/wingspan-bottom.svg"
  25390. }
  25391. },
  25392. wingspanTop: {
  25393. height: math.unit(104, "feet"),
  25394. name: "Wingspan (Top)",
  25395. image: {
  25396. source: "./media/characters/koros/wingspan-top.svg"
  25397. }
  25398. },
  25399. },
  25400. [
  25401. {
  25402. name: "Normal",
  25403. height: math.unit(31 + 8 / 12, "feet"),
  25404. default: true
  25405. },
  25406. ]
  25407. ))
  25408. characterMakers.push(() => makeCharacter(
  25409. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  25410. {
  25411. front: {
  25412. height: math.unit(18 + 5 / 12, "feet"),
  25413. weight: math.unit(3750, "kg"),
  25414. name: "Front",
  25415. image: {
  25416. source: "./media/characters/vexx/front.svg",
  25417. extra: 426 / 396,
  25418. bottom: 31.5 / 458
  25419. }
  25420. },
  25421. maw: {
  25422. height: math.unit(6, "feet"),
  25423. name: "Maw",
  25424. image: {
  25425. source: "./media/characters/vexx/maw.svg"
  25426. }
  25427. },
  25428. },
  25429. [
  25430. {
  25431. name: "Normal",
  25432. height: math.unit(18 + 5 / 12, "feet"),
  25433. default: true
  25434. },
  25435. ]
  25436. ))
  25437. characterMakers.push(() => makeCharacter(
  25438. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  25439. {
  25440. front: {
  25441. height: math.unit(17 + 6 / 12, "feet"),
  25442. weight: math.unit(150, "lb"),
  25443. name: "Front",
  25444. image: {
  25445. source: "./media/characters/baadra/front.svg",
  25446. extra: 3137 / 2890,
  25447. bottom: 168.4 / 3305
  25448. }
  25449. },
  25450. back: {
  25451. height: math.unit(17 + 6 / 12, "feet"),
  25452. weight: math.unit(150, "lb"),
  25453. name: "Back",
  25454. image: {
  25455. source: "./media/characters/baadra/back.svg",
  25456. extra: 3142 / 2890,
  25457. bottom: 220 / 3371
  25458. }
  25459. },
  25460. head: {
  25461. height: math.unit(5.45, "feet"),
  25462. name: "Head",
  25463. image: {
  25464. source: "./media/characters/baadra/head.svg"
  25465. }
  25466. },
  25467. headAngry: {
  25468. height: math.unit(4.95, "feet"),
  25469. name: "Head (Angry)",
  25470. image: {
  25471. source: "./media/characters/baadra/head-angry.svg"
  25472. }
  25473. },
  25474. headOpen: {
  25475. height: math.unit(6, "feet"),
  25476. name: "Head (Open)",
  25477. image: {
  25478. source: "./media/characters/baadra/head-open.svg"
  25479. }
  25480. },
  25481. },
  25482. [
  25483. {
  25484. name: "Normal",
  25485. height: math.unit(17 + 6 / 12, "feet"),
  25486. default: true
  25487. },
  25488. ]
  25489. ))
  25490. characterMakers.push(() => makeCharacter(
  25491. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  25492. {
  25493. front: {
  25494. height: math.unit(7 + 3 / 12, "feet"),
  25495. weight: math.unit(180, "lb"),
  25496. name: "Front",
  25497. image: {
  25498. source: "./media/characters/juri/front.svg",
  25499. extra: 1401 / 1237,
  25500. bottom: 18.5 / 1418
  25501. }
  25502. },
  25503. side: {
  25504. height: math.unit(7 + 3 / 12, "feet"),
  25505. weight: math.unit(180, "lb"),
  25506. name: "Side",
  25507. image: {
  25508. source: "./media/characters/juri/side.svg",
  25509. extra: 1424 / 1242,
  25510. bottom: 18.5 / 1447
  25511. }
  25512. },
  25513. sitting: {
  25514. height: math.unit(6, "feet"),
  25515. weight: math.unit(180, "lb"),
  25516. name: "Sitting",
  25517. image: {
  25518. source: "./media/characters/juri/sitting.svg",
  25519. extra: 1270 / 1143,
  25520. bottom: 100 / 1343
  25521. }
  25522. },
  25523. back: {
  25524. height: math.unit(7 + 3 / 12, "feet"),
  25525. weight: math.unit(180, "lb"),
  25526. name: "Back",
  25527. image: {
  25528. source: "./media/characters/juri/back.svg",
  25529. extra: 1377 / 1240,
  25530. bottom: 23.7 / 1405
  25531. }
  25532. },
  25533. maw: {
  25534. height: math.unit(2.8, "feet"),
  25535. name: "Maw",
  25536. image: {
  25537. source: "./media/characters/juri/maw.svg"
  25538. }
  25539. },
  25540. stomach: {
  25541. height: math.unit(0.89, "feet"),
  25542. capacity: math.unit(4, "liters"),
  25543. name: "Stomach",
  25544. image: {
  25545. source: "./media/characters/juri/stomach.svg"
  25546. }
  25547. },
  25548. },
  25549. [
  25550. {
  25551. name: "Normal",
  25552. height: math.unit(7 + 3 / 12, "feet"),
  25553. default: true
  25554. },
  25555. ]
  25556. ))
  25557. characterMakers.push(() => makeCharacter(
  25558. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  25559. {
  25560. fox: {
  25561. height: math.unit(5 + 6 / 12, "feet"),
  25562. weight: math.unit(140, "lb"),
  25563. name: "Fox",
  25564. image: {
  25565. source: "./media/characters/maxene-sita/fox.svg",
  25566. extra: 146 / 138,
  25567. bottom: 2.1 / 148.19
  25568. }
  25569. },
  25570. foxLaying: {
  25571. height: math.unit(1.70, "feet"),
  25572. weight: math.unit(140, "lb"),
  25573. name: "Fox (Laying)",
  25574. image: {
  25575. source: "./media/characters/maxene-sita/fox-laying.svg",
  25576. extra: 910 / 572,
  25577. bottom: 71 / 981
  25578. }
  25579. },
  25580. kitsune: {
  25581. height: math.unit(10, "feet"),
  25582. weight: math.unit(800, "lb"),
  25583. name: "Kitsune",
  25584. image: {
  25585. source: "./media/characters/maxene-sita/kitsune.svg",
  25586. extra: 185 / 176,
  25587. bottom: 4.7 / 189.9
  25588. }
  25589. },
  25590. hellhound: {
  25591. height: math.unit(10, "feet"),
  25592. weight: math.unit(700, "lb"),
  25593. name: "Hellhound",
  25594. image: {
  25595. source: "./media/characters/maxene-sita/hellhound.svg",
  25596. extra: 1600 / 1545,
  25597. bottom: 81 / 1681
  25598. }
  25599. },
  25600. },
  25601. [
  25602. {
  25603. name: "Normal",
  25604. height: math.unit(5 + 6 / 12, "feet"),
  25605. default: true
  25606. },
  25607. ]
  25608. ))
  25609. characterMakers.push(() => makeCharacter(
  25610. { name: "Maia", species: ["mew"], tags: ["feral"] },
  25611. {
  25612. front: {
  25613. height: math.unit(3 + 4 / 12, "feet"),
  25614. weight: math.unit(70, "lb"),
  25615. name: "Front",
  25616. image: {
  25617. source: "./media/characters/maia/front.svg",
  25618. extra: 227 / 219.5,
  25619. bottom: 40 / 267
  25620. }
  25621. },
  25622. back: {
  25623. height: math.unit(3 + 4 / 12, "feet"),
  25624. weight: math.unit(70, "lb"),
  25625. name: "Back",
  25626. image: {
  25627. source: "./media/characters/maia/back.svg",
  25628. extra: 237 / 225
  25629. }
  25630. },
  25631. },
  25632. [
  25633. {
  25634. name: "Normal",
  25635. height: math.unit(3 + 4 / 12, "feet"),
  25636. default: true
  25637. },
  25638. ]
  25639. ))
  25640. characterMakers.push(() => makeCharacter(
  25641. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  25642. {
  25643. front: {
  25644. height: math.unit(5 + 10 / 12, "feet"),
  25645. weight: math.unit(197, "lb"),
  25646. name: "Front",
  25647. image: {
  25648. source: "./media/characters/jabaro/front.svg",
  25649. extra: 225 / 216,
  25650. bottom: 5.06 / 230
  25651. }
  25652. },
  25653. back: {
  25654. height: math.unit(5 + 10 / 12, "feet"),
  25655. weight: math.unit(197, "lb"),
  25656. name: "Back",
  25657. image: {
  25658. source: "./media/characters/jabaro/back.svg",
  25659. extra: 225 / 219,
  25660. bottom: 1.9 / 227
  25661. }
  25662. },
  25663. },
  25664. [
  25665. {
  25666. name: "Normal",
  25667. height: math.unit(5 + 10 / 12, "feet"),
  25668. default: true
  25669. },
  25670. ]
  25671. ))
  25672. characterMakers.push(() => makeCharacter(
  25673. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  25674. {
  25675. front: {
  25676. height: math.unit(5 + 8 / 12, "feet"),
  25677. weight: math.unit(139, "lb"),
  25678. name: "Front",
  25679. image: {
  25680. source: "./media/characters/risa/front.svg",
  25681. extra: 270 / 260,
  25682. bottom: 11.2 / 282
  25683. }
  25684. },
  25685. back: {
  25686. height: math.unit(5 + 8 / 12, "feet"),
  25687. weight: math.unit(139, "lb"),
  25688. name: "Back",
  25689. image: {
  25690. source: "./media/characters/risa/back.svg",
  25691. extra: 264 / 255,
  25692. bottom: 4 / 268
  25693. }
  25694. },
  25695. },
  25696. [
  25697. {
  25698. name: "Normal",
  25699. height: math.unit(5 + 8 / 12, "feet"),
  25700. default: true
  25701. },
  25702. ]
  25703. ))
  25704. characterMakers.push(() => makeCharacter(
  25705. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  25706. {
  25707. front: {
  25708. height: math.unit(2 + 11 / 12, "feet"),
  25709. weight: math.unit(30, "lb"),
  25710. name: "Front",
  25711. image: {
  25712. source: "./media/characters/weatley/front.svg",
  25713. bottom: 10.7 / 414,
  25714. extra: 403.5 / 362
  25715. }
  25716. },
  25717. back: {
  25718. height: math.unit(2 + 11 / 12, "feet"),
  25719. weight: math.unit(30, "lb"),
  25720. name: "Back",
  25721. image: {
  25722. source: "./media/characters/weatley/back.svg",
  25723. bottom: 10.7 / 414,
  25724. extra: 403.5 / 362
  25725. }
  25726. },
  25727. },
  25728. [
  25729. {
  25730. name: "Normal",
  25731. height: math.unit(2 + 11 / 12, "feet"),
  25732. default: true
  25733. },
  25734. ]
  25735. ))
  25736. characterMakers.push(() => makeCharacter(
  25737. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  25738. {
  25739. front: {
  25740. height: math.unit(5 + 2 / 12, "feet"),
  25741. weight: math.unit(50, "kg"),
  25742. name: "Front",
  25743. image: {
  25744. source: "./media/characters/mercury-crescent/front.svg",
  25745. extra: 1088 / 1033,
  25746. bottom: 18.9 / 1109
  25747. }
  25748. },
  25749. },
  25750. [
  25751. {
  25752. name: "Normal",
  25753. height: math.unit(5 + 2 / 12, "feet"),
  25754. default: true
  25755. },
  25756. ]
  25757. ))
  25758. characterMakers.push(() => makeCharacter(
  25759. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  25760. {
  25761. front: {
  25762. height: math.unit(2, "feet"),
  25763. weight: math.unit(15, "kg"),
  25764. name: "Front",
  25765. image: {
  25766. source: "./media/characters/diamond-jones/front.svg",
  25767. extra: 727/723,
  25768. bottom: 46/773
  25769. }
  25770. },
  25771. },
  25772. [
  25773. {
  25774. name: "Normal",
  25775. height: math.unit(2, "feet"),
  25776. default: true
  25777. },
  25778. ]
  25779. ))
  25780. characterMakers.push(() => makeCharacter(
  25781. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  25782. {
  25783. front: {
  25784. height: math.unit(3, "feet"),
  25785. weight: math.unit(30, "kg"),
  25786. name: "Front",
  25787. image: {
  25788. source: "./media/characters/sweet-bit/front.svg",
  25789. extra: 675 / 567,
  25790. bottom: 27.7 / 703
  25791. }
  25792. },
  25793. },
  25794. [
  25795. {
  25796. name: "Normal",
  25797. height: math.unit(3, "feet"),
  25798. default: true
  25799. },
  25800. ]
  25801. ))
  25802. characterMakers.push(() => makeCharacter(
  25803. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  25804. {
  25805. side: {
  25806. height: math.unit(9.178, "feet"),
  25807. weight: math.unit(500, "lb"),
  25808. name: "Side",
  25809. image: {
  25810. source: "./media/characters/umbrazen/side.svg",
  25811. extra: 1730 / 1473,
  25812. bottom: 34.6 / 1765
  25813. }
  25814. },
  25815. },
  25816. [
  25817. {
  25818. name: "Normal",
  25819. height: math.unit(9.178, "feet"),
  25820. default: true
  25821. },
  25822. ]
  25823. ))
  25824. characterMakers.push(() => makeCharacter(
  25825. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  25826. {
  25827. front: {
  25828. height: math.unit(10, "feet"),
  25829. weight: math.unit(750, "lb"),
  25830. name: "Front",
  25831. image: {
  25832. source: "./media/characters/arlist/front.svg",
  25833. extra: 961 / 778,
  25834. bottom: 6.2 / 986
  25835. }
  25836. },
  25837. },
  25838. [
  25839. {
  25840. name: "Normal",
  25841. height: math.unit(10, "feet"),
  25842. default: true
  25843. },
  25844. ]
  25845. ))
  25846. characterMakers.push(() => makeCharacter(
  25847. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  25848. {
  25849. front: {
  25850. height: math.unit(5 + 1 / 12, "feet"),
  25851. weight: math.unit(110, "lb"),
  25852. name: "Front",
  25853. image: {
  25854. source: "./media/characters/aradel/front.svg",
  25855. extra: 324 / 303,
  25856. bottom: 3.6 / 329.4
  25857. }
  25858. },
  25859. },
  25860. [
  25861. {
  25862. name: "Normal",
  25863. height: math.unit(5 + 1 / 12, "feet"),
  25864. default: true
  25865. },
  25866. ]
  25867. ))
  25868. characterMakers.push(() => makeCharacter(
  25869. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  25870. {
  25871. front: {
  25872. height: math.unit(3 + 8 / 12, "feet"),
  25873. weight: math.unit(50, "lb"),
  25874. name: "Front",
  25875. image: {
  25876. source: "./media/characters/serryn/front.svg",
  25877. extra: 1792 / 1656,
  25878. bottom: 43.5 / 1840
  25879. }
  25880. },
  25881. },
  25882. [
  25883. {
  25884. name: "Normal",
  25885. height: math.unit(3 + 8 / 12, "feet"),
  25886. default: true
  25887. },
  25888. ]
  25889. ))
  25890. characterMakers.push(() => makeCharacter(
  25891. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  25892. {
  25893. front: {
  25894. height: math.unit(7 + 10 / 12, "feet"),
  25895. weight: math.unit(255, "lb"),
  25896. name: "Front",
  25897. image: {
  25898. source: "./media/characters/xavier-thyme/front.svg",
  25899. extra: 3733 / 3642,
  25900. bottom: 131 / 3869
  25901. }
  25902. },
  25903. frontRaven: {
  25904. height: math.unit(7 + 10 / 12, "feet"),
  25905. weight: math.unit(255, "lb"),
  25906. name: "Front (Raven)",
  25907. image: {
  25908. source: "./media/characters/xavier-thyme/front-raven.svg",
  25909. extra: 4385 / 3642,
  25910. bottom: 131 / 4517
  25911. }
  25912. },
  25913. },
  25914. [
  25915. {
  25916. name: "Normal",
  25917. height: math.unit(7 + 10 / 12, "feet"),
  25918. default: true
  25919. },
  25920. ]
  25921. ))
  25922. characterMakers.push(() => makeCharacter(
  25923. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  25924. {
  25925. front: {
  25926. height: math.unit(1.6, "m"),
  25927. weight: math.unit(50, "kg"),
  25928. name: "Front",
  25929. image: {
  25930. source: "./media/characters/kiki/front.svg",
  25931. extra: 4682 / 3610,
  25932. bottom: 115 / 4777
  25933. }
  25934. },
  25935. },
  25936. [
  25937. {
  25938. name: "Normal",
  25939. height: math.unit(1.6, "meters"),
  25940. default: true
  25941. },
  25942. ]
  25943. ))
  25944. characterMakers.push(() => makeCharacter(
  25945. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  25946. {
  25947. front: {
  25948. height: math.unit(50, "m"),
  25949. weight: math.unit(500, "tonnes"),
  25950. name: "Front",
  25951. image: {
  25952. source: "./media/characters/ryoko/front.svg",
  25953. extra: 4632 / 3926,
  25954. bottom: 193 / 4823
  25955. }
  25956. },
  25957. },
  25958. [
  25959. {
  25960. name: "Normal",
  25961. height: math.unit(50, "meters"),
  25962. default: true
  25963. },
  25964. ]
  25965. ))
  25966. characterMakers.push(() => makeCharacter(
  25967. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  25968. {
  25969. front: {
  25970. height: math.unit(30, "m"),
  25971. weight: math.unit(22, "tonnes"),
  25972. name: "Front",
  25973. image: {
  25974. source: "./media/characters/elio/front.svg",
  25975. extra: 4582 / 3720,
  25976. bottom: 236 / 4828
  25977. }
  25978. },
  25979. },
  25980. [
  25981. {
  25982. name: "Normal",
  25983. height: math.unit(30, "meters"),
  25984. default: true
  25985. },
  25986. ]
  25987. ))
  25988. characterMakers.push(() => makeCharacter(
  25989. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  25990. {
  25991. front: {
  25992. height: math.unit(6 + 3 / 12, "feet"),
  25993. weight: math.unit(120, "lb"),
  25994. name: "Front",
  25995. image: {
  25996. source: "./media/characters/azura/front.svg",
  25997. extra: 1149 / 1135,
  25998. bottom: 45 / 1194
  25999. }
  26000. },
  26001. frontClothed: {
  26002. height: math.unit(6 + 3 / 12, "feet"),
  26003. weight: math.unit(120, "lb"),
  26004. name: "Front (Clothed)",
  26005. image: {
  26006. source: "./media/characters/azura/front-clothed.svg",
  26007. extra: 1149 / 1135,
  26008. bottom: 45 / 1194
  26009. }
  26010. },
  26011. },
  26012. [
  26013. {
  26014. name: "Normal",
  26015. height: math.unit(6 + 3 / 12, "feet"),
  26016. default: true
  26017. },
  26018. {
  26019. name: "Macro",
  26020. height: math.unit(20 + 6 / 12, "feet")
  26021. },
  26022. {
  26023. name: "Megamacro",
  26024. height: math.unit(12, "miles")
  26025. },
  26026. {
  26027. name: "Gigamacro",
  26028. height: math.unit(10000, "miles")
  26029. },
  26030. {
  26031. name: "Teramacro",
  26032. height: math.unit(900000, "miles")
  26033. },
  26034. ]
  26035. ))
  26036. characterMakers.push(() => makeCharacter(
  26037. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  26038. {
  26039. front: {
  26040. height: math.unit(12, "feet"),
  26041. weight: math.unit(1, "ton"),
  26042. capacity: math.unit(660000, "gallons"),
  26043. name: "Front",
  26044. image: {
  26045. source: "./media/characters/zeus/front.svg",
  26046. extra: 5005 / 4717,
  26047. bottom: 363 / 5388
  26048. }
  26049. },
  26050. },
  26051. [
  26052. {
  26053. name: "Normal",
  26054. height: math.unit(12, "feet")
  26055. },
  26056. {
  26057. name: "Preferred Size",
  26058. height: math.unit(0.5, "miles"),
  26059. default: true
  26060. },
  26061. {
  26062. name: "Giga Horse",
  26063. height: math.unit(300, "miles")
  26064. },
  26065. {
  26066. name: "Riding Planets",
  26067. height: math.unit(30, "megameters")
  26068. },
  26069. {
  26070. name: "Cosmic Giant",
  26071. height: math.unit(3, "zettameters")
  26072. },
  26073. {
  26074. name: "Breeding God",
  26075. height: math.unit(9.92e22, "yottameters")
  26076. },
  26077. ]
  26078. ))
  26079. characterMakers.push(() => makeCharacter(
  26080. { name: "Fang", species: ["monster"], tags: ["feral"] },
  26081. {
  26082. side: {
  26083. height: math.unit(9, "feet"),
  26084. weight: math.unit(1500, "kg"),
  26085. name: "Side",
  26086. image: {
  26087. source: "./media/characters/fang/side.svg",
  26088. extra: 924 / 866,
  26089. bottom: 47.5 / 972.3
  26090. }
  26091. },
  26092. },
  26093. [
  26094. {
  26095. name: "Normal",
  26096. height: math.unit(9, "feet"),
  26097. default: true
  26098. },
  26099. {
  26100. name: "Macro",
  26101. height: math.unit(75 + 6 / 12, "feet")
  26102. },
  26103. {
  26104. name: "Teramacro",
  26105. height: math.unit(50000, "miles")
  26106. },
  26107. ]
  26108. ))
  26109. characterMakers.push(() => makeCharacter(
  26110. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  26111. {
  26112. front: {
  26113. height: math.unit(10, "feet"),
  26114. weight: math.unit(2, "tons"),
  26115. name: "Front",
  26116. image: {
  26117. source: "./media/characters/rekhit/front.svg",
  26118. extra: 2796 / 2590,
  26119. bottom: 225 / 3022
  26120. }
  26121. },
  26122. },
  26123. [
  26124. {
  26125. name: "Normal",
  26126. height: math.unit(10, "feet"),
  26127. default: true
  26128. },
  26129. {
  26130. name: "Macro",
  26131. height: math.unit(500, "feet")
  26132. },
  26133. ]
  26134. ))
  26135. characterMakers.push(() => makeCharacter(
  26136. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  26137. {
  26138. front: {
  26139. height: math.unit(7 + 6.451 / 12, "feet"),
  26140. weight: math.unit(310, "lb"),
  26141. name: "Front",
  26142. image: {
  26143. source: "./media/characters/dahlia-verrick/front.svg",
  26144. extra: 1488 / 1365,
  26145. bottom: 6.2 / 1495
  26146. }
  26147. },
  26148. back: {
  26149. height: math.unit(7 + 6.451 / 12, "feet"),
  26150. weight: math.unit(310, "lb"),
  26151. name: "Back",
  26152. image: {
  26153. source: "./media/characters/dahlia-verrick/back.svg",
  26154. extra: 1472 / 1351,
  26155. bottom: 5.28 / 1477
  26156. }
  26157. },
  26158. frontBusiness: {
  26159. height: math.unit(7 + 6.451 / 12, "feet"),
  26160. weight: math.unit(200, "lb"),
  26161. name: "Front (Business)",
  26162. image: {
  26163. source: "./media/characters/dahlia-verrick/front-business.svg",
  26164. extra: 1478 / 1381,
  26165. bottom: 5.5 / 1484
  26166. }
  26167. },
  26168. frontCasual: {
  26169. height: math.unit(7 + 6.451 / 12, "feet"),
  26170. weight: math.unit(200, "lb"),
  26171. name: "Front (Casual)",
  26172. image: {
  26173. source: "./media/characters/dahlia-verrick/front-casual.svg",
  26174. extra: 1478 / 1381,
  26175. bottom: 5.5 / 1484
  26176. }
  26177. },
  26178. },
  26179. [
  26180. {
  26181. name: "Travel-Sized",
  26182. height: math.unit(7.45, "inches")
  26183. },
  26184. {
  26185. name: "Normal",
  26186. height: math.unit(7 + 6.451 / 12, "feet"),
  26187. default: true
  26188. },
  26189. {
  26190. name: "Hitting the Town",
  26191. height: math.unit(37 + 8 / 12, "feet")
  26192. },
  26193. {
  26194. name: "Stomp in the Suburbs",
  26195. height: math.unit(964 + 9.728 / 12, "feet")
  26196. },
  26197. {
  26198. name: "Sit on the City",
  26199. height: math.unit(61747 + 10.592 / 12, "feet")
  26200. },
  26201. {
  26202. name: "Glomp the Globe",
  26203. height: math.unit(252919327 + 4.832 / 12, "feet")
  26204. },
  26205. ]
  26206. ))
  26207. characterMakers.push(() => makeCharacter(
  26208. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  26209. {
  26210. front: {
  26211. height: math.unit(6 + 4 / 12, "feet"),
  26212. weight: math.unit(320, "lb"),
  26213. name: "Front",
  26214. image: {
  26215. source: "./media/characters/balina-mahigan/front.svg",
  26216. extra: 447 / 428,
  26217. bottom: 18 / 466
  26218. }
  26219. },
  26220. back: {
  26221. height: math.unit(6 + 4 / 12, "feet"),
  26222. weight: math.unit(320, "lb"),
  26223. name: "Back",
  26224. image: {
  26225. source: "./media/characters/balina-mahigan/back.svg",
  26226. extra: 445 / 428,
  26227. bottom: 4.07 / 448
  26228. }
  26229. },
  26230. arm: {
  26231. height: math.unit(1.88, "feet"),
  26232. name: "Arm",
  26233. image: {
  26234. source: "./media/characters/balina-mahigan/arm.svg"
  26235. }
  26236. },
  26237. backPort: {
  26238. height: math.unit(0.685, "feet"),
  26239. name: "Back Port",
  26240. image: {
  26241. source: "./media/characters/balina-mahigan/back-port.svg"
  26242. }
  26243. },
  26244. hoofpaw: {
  26245. height: math.unit(1.41, "feet"),
  26246. name: "Hoofpaw",
  26247. image: {
  26248. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  26249. }
  26250. },
  26251. leftHandBack: {
  26252. height: math.unit(0.938, "feet"),
  26253. name: "Left Hand (Back)",
  26254. image: {
  26255. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  26256. }
  26257. },
  26258. leftHandFront: {
  26259. height: math.unit(0.938, "feet"),
  26260. name: "Left Hand (Front)",
  26261. image: {
  26262. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  26263. }
  26264. },
  26265. rightHandBack: {
  26266. height: math.unit(0.95, "feet"),
  26267. name: "Right Hand (Back)",
  26268. image: {
  26269. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  26270. }
  26271. },
  26272. rightHandFront: {
  26273. height: math.unit(0.95, "feet"),
  26274. name: "Right Hand (Front)",
  26275. image: {
  26276. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  26277. }
  26278. },
  26279. },
  26280. [
  26281. {
  26282. name: "Normal",
  26283. height: math.unit(6 + 4 / 12, "feet"),
  26284. default: true
  26285. },
  26286. ]
  26287. ))
  26288. characterMakers.push(() => makeCharacter(
  26289. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  26290. {
  26291. front: {
  26292. height: math.unit(6, "feet"),
  26293. weight: math.unit(320, "lb"),
  26294. name: "Front",
  26295. image: {
  26296. source: "./media/characters/balina-mejeri/front.svg",
  26297. extra: 517 / 488,
  26298. bottom: 44.2 / 561
  26299. }
  26300. },
  26301. },
  26302. [
  26303. {
  26304. name: "Normal",
  26305. height: math.unit(6 + 4 / 12, "feet")
  26306. },
  26307. {
  26308. name: "Business",
  26309. height: math.unit(155, "feet"),
  26310. default: true
  26311. },
  26312. ]
  26313. ))
  26314. characterMakers.push(() => makeCharacter(
  26315. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  26316. {
  26317. kneeling: {
  26318. height: math.unit(6 + 4 / 12, "feet"),
  26319. weight: math.unit(300 * 20, "lb"),
  26320. name: "Kneeling",
  26321. image: {
  26322. source: "./media/characters/balbarian/kneeling.svg",
  26323. extra: 922 / 862,
  26324. bottom: 42.4 / 965
  26325. }
  26326. },
  26327. },
  26328. [
  26329. {
  26330. name: "Normal",
  26331. height: math.unit(6 + 4 / 12, "feet")
  26332. },
  26333. {
  26334. name: "Treasured",
  26335. height: math.unit(18 + 9 / 12, "feet"),
  26336. default: true
  26337. },
  26338. {
  26339. name: "Macro",
  26340. height: math.unit(900, "feet")
  26341. },
  26342. ]
  26343. ))
  26344. characterMakers.push(() => makeCharacter(
  26345. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  26346. {
  26347. front: {
  26348. height: math.unit(6 + 4 / 12, "feet"),
  26349. weight: math.unit(325, "lb"),
  26350. name: "Front",
  26351. image: {
  26352. source: "./media/characters/balina-amarini/front.svg",
  26353. extra: 415 / 403,
  26354. bottom: 19 / 433.4
  26355. }
  26356. },
  26357. back: {
  26358. height: math.unit(6 + 4 / 12, "feet"),
  26359. weight: math.unit(325, "lb"),
  26360. name: "Back",
  26361. image: {
  26362. source: "./media/characters/balina-amarini/back.svg",
  26363. extra: 415 / 403,
  26364. bottom: 13.5 / 432
  26365. }
  26366. },
  26367. overdrive: {
  26368. height: math.unit(6 + 4 / 12, "feet"),
  26369. weight: math.unit(400, "lb"),
  26370. name: "Overdrive",
  26371. image: {
  26372. source: "./media/characters/balina-amarini/overdrive.svg",
  26373. extra: 269 / 259,
  26374. bottom: 12 / 282
  26375. }
  26376. },
  26377. },
  26378. [
  26379. {
  26380. name: "Boom",
  26381. height: math.unit(9 + 10 / 12, "feet"),
  26382. default: true
  26383. },
  26384. {
  26385. name: "Macro",
  26386. height: math.unit(280, "feet")
  26387. },
  26388. ]
  26389. ))
  26390. characterMakers.push(() => makeCharacter(
  26391. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  26392. {
  26393. goddess: {
  26394. height: math.unit(600, "feet"),
  26395. weight: math.unit(2000000, "tons"),
  26396. name: "Goddess",
  26397. image: {
  26398. source: "./media/characters/lady-kubwa/goddess.svg",
  26399. extra: 1240.5 / 1223,
  26400. bottom: 22 / 1263
  26401. }
  26402. },
  26403. goddesser: {
  26404. height: math.unit(900, "feet"),
  26405. weight: math.unit(20000000, "lb"),
  26406. name: "Goddess-er",
  26407. image: {
  26408. source: "./media/characters/lady-kubwa/goddess-er.svg",
  26409. extra: 899 / 888,
  26410. bottom: 12.6 / 912
  26411. }
  26412. },
  26413. },
  26414. [
  26415. {
  26416. name: "Macro",
  26417. height: math.unit(600, "feet"),
  26418. default: true
  26419. },
  26420. {
  26421. name: "Megamacro",
  26422. height: math.unit(250, "miles")
  26423. },
  26424. ]
  26425. ))
  26426. characterMakers.push(() => makeCharacter(
  26427. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  26428. {
  26429. front: {
  26430. height: math.unit(7 + 7 / 12, "feet"),
  26431. weight: math.unit(250, "lb"),
  26432. name: "Front",
  26433. image: {
  26434. source: "./media/characters/tala-grovehorn/front.svg",
  26435. extra: 2636 / 2525,
  26436. bottom: 147 / 2781
  26437. }
  26438. },
  26439. back: {
  26440. height: math.unit(7 + 7 / 12, "feet"),
  26441. weight: math.unit(250, "lb"),
  26442. name: "Back",
  26443. image: {
  26444. source: "./media/characters/tala-grovehorn/back.svg",
  26445. extra: 2635 / 2539,
  26446. bottom: 100 / 2732.8
  26447. }
  26448. },
  26449. mouth: {
  26450. height: math.unit(1.15, "feet"),
  26451. name: "Mouth",
  26452. image: {
  26453. source: "./media/characters/tala-grovehorn/mouth.svg"
  26454. }
  26455. },
  26456. dick: {
  26457. height: math.unit(2.36, "feet"),
  26458. name: "Dick",
  26459. image: {
  26460. source: "./media/characters/tala-grovehorn/dick.svg"
  26461. }
  26462. },
  26463. slit: {
  26464. height: math.unit(0.61, "feet"),
  26465. name: "Slit",
  26466. image: {
  26467. source: "./media/characters/tala-grovehorn/slit.svg"
  26468. }
  26469. },
  26470. },
  26471. [
  26472. ]
  26473. ))
  26474. characterMakers.push(() => makeCharacter(
  26475. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  26476. {
  26477. front: {
  26478. height: math.unit(7 + 7 / 12, "feet"),
  26479. weight: math.unit(225, "lb"),
  26480. name: "Front",
  26481. image: {
  26482. source: "./media/characters/epona/front.svg",
  26483. extra: 2445 / 2290,
  26484. bottom: 251 / 2696
  26485. }
  26486. },
  26487. back: {
  26488. height: math.unit(7 + 7 / 12, "feet"),
  26489. weight: math.unit(225, "lb"),
  26490. name: "Back",
  26491. image: {
  26492. source: "./media/characters/epona/back.svg",
  26493. extra: 2546 / 2408,
  26494. bottom: 44 / 2589
  26495. }
  26496. },
  26497. genitals: {
  26498. height: math.unit(1.5, "feet"),
  26499. name: "Genitals",
  26500. image: {
  26501. source: "./media/characters/epona/genitals.svg"
  26502. }
  26503. },
  26504. },
  26505. [
  26506. {
  26507. name: "Normal",
  26508. height: math.unit(7 + 7 / 12, "feet"),
  26509. default: true
  26510. },
  26511. ]
  26512. ))
  26513. characterMakers.push(() => makeCharacter(
  26514. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  26515. {
  26516. front: {
  26517. height: math.unit(7, "feet"),
  26518. weight: math.unit(518, "lb"),
  26519. name: "Front",
  26520. image: {
  26521. source: "./media/characters/avia-bloodbourn/front.svg",
  26522. extra: 1466 / 1350,
  26523. bottom: 65 / 1527
  26524. }
  26525. },
  26526. },
  26527. [
  26528. ]
  26529. ))
  26530. characterMakers.push(() => makeCharacter(
  26531. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  26532. {
  26533. front: {
  26534. height: math.unit(9.35, "feet"),
  26535. weight: math.unit(600, "lb"),
  26536. name: "Front",
  26537. image: {
  26538. source: "./media/characters/amera/front.svg",
  26539. extra: 891 / 818,
  26540. bottom: 30 / 922.7
  26541. }
  26542. },
  26543. back: {
  26544. height: math.unit(9.35, "feet"),
  26545. weight: math.unit(600, "lb"),
  26546. name: "Back",
  26547. image: {
  26548. source: "./media/characters/amera/back.svg",
  26549. extra: 876 / 824,
  26550. bottom: 6.8 / 884
  26551. }
  26552. },
  26553. dick: {
  26554. height: math.unit(2.14, "feet"),
  26555. name: "Dick",
  26556. image: {
  26557. source: "./media/characters/amera/dick.svg"
  26558. }
  26559. },
  26560. },
  26561. [
  26562. {
  26563. name: "Normal",
  26564. height: math.unit(9.35, "feet"),
  26565. default: true
  26566. },
  26567. ]
  26568. ))
  26569. characterMakers.push(() => makeCharacter(
  26570. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  26571. {
  26572. kneeling: {
  26573. height: math.unit(3 + 4 / 12, "feet"),
  26574. weight: math.unit(90, "lb"),
  26575. name: "Kneeling",
  26576. image: {
  26577. source: "./media/characters/rosewen/kneeling.svg",
  26578. extra: 1835 / 1571,
  26579. bottom: 27.7 / 1862
  26580. }
  26581. },
  26582. },
  26583. [
  26584. {
  26585. name: "Normal",
  26586. height: math.unit(3 + 4 / 12, "feet"),
  26587. default: true
  26588. },
  26589. ]
  26590. ))
  26591. characterMakers.push(() => makeCharacter(
  26592. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  26593. {
  26594. front: {
  26595. height: math.unit(5 + 10 / 12, "feet"),
  26596. weight: math.unit(200, "lb"),
  26597. name: "Front",
  26598. image: {
  26599. source: "./media/characters/sabah/front.svg",
  26600. extra: 849 / 763,
  26601. bottom: 33.9 / 881
  26602. }
  26603. },
  26604. },
  26605. [
  26606. {
  26607. name: "Normal",
  26608. height: math.unit(5 + 10 / 12, "feet"),
  26609. default: true
  26610. },
  26611. ]
  26612. ))
  26613. characterMakers.push(() => makeCharacter(
  26614. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  26615. {
  26616. front: {
  26617. height: math.unit(3 + 5 / 12, "feet"),
  26618. weight: math.unit(40, "kg"),
  26619. name: "Front",
  26620. image: {
  26621. source: "./media/characters/purple-flame/front.svg",
  26622. extra: 1577 / 1412,
  26623. bottom: 97 / 1694
  26624. }
  26625. },
  26626. frontDressed: {
  26627. height: math.unit(3 + 5 / 12, "feet"),
  26628. weight: math.unit(40, "kg"),
  26629. name: "Front (Dressed)",
  26630. image: {
  26631. source: "./media/characters/purple-flame/front-dressed.svg",
  26632. extra: 1577 / 1412,
  26633. bottom: 97 / 1694
  26634. }
  26635. },
  26636. headphones: {
  26637. height: math.unit(0.85, "feet"),
  26638. name: "Headphones",
  26639. image: {
  26640. source: "./media/characters/purple-flame/headphones.svg"
  26641. }
  26642. },
  26643. },
  26644. [
  26645. {
  26646. name: "Really Small",
  26647. height: math.unit(5, "cm")
  26648. },
  26649. {
  26650. name: "Micro",
  26651. height: math.unit(1 + 5 / 12, "feet")
  26652. },
  26653. {
  26654. name: "Normal",
  26655. height: math.unit(3 + 5 / 12, "feet"),
  26656. default: true
  26657. },
  26658. {
  26659. name: "Minimacro",
  26660. height: math.unit(125, "feet")
  26661. },
  26662. {
  26663. name: "Macro",
  26664. height: math.unit(0.5, "miles")
  26665. },
  26666. {
  26667. name: "Megamacro",
  26668. height: math.unit(50, "miles")
  26669. },
  26670. {
  26671. name: "Gigantic",
  26672. height: math.unit(750, "miles")
  26673. },
  26674. {
  26675. name: "Planetary",
  26676. height: math.unit(15000, "miles")
  26677. },
  26678. ]
  26679. ))
  26680. characterMakers.push(() => makeCharacter(
  26681. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  26682. {
  26683. front: {
  26684. height: math.unit(14, "feet"),
  26685. weight: math.unit(959, "lb"),
  26686. name: "Front",
  26687. image: {
  26688. source: "./media/characters/arsenal/front.svg",
  26689. extra: 2357 / 2157,
  26690. bottom: 93 / 2458
  26691. }
  26692. },
  26693. },
  26694. [
  26695. {
  26696. name: "Normal",
  26697. height: math.unit(14, "feet"),
  26698. default: true
  26699. },
  26700. ]
  26701. ))
  26702. characterMakers.push(() => makeCharacter(
  26703. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  26704. {
  26705. front: {
  26706. height: math.unit(6, "feet"),
  26707. weight: math.unit(150, "lb"),
  26708. name: "Front",
  26709. image: {
  26710. source: "./media/characters/adira/front.svg",
  26711. extra: 1078 / 1029,
  26712. bottom: 87 / 1166
  26713. }
  26714. },
  26715. },
  26716. [
  26717. {
  26718. name: "Micro",
  26719. height: math.unit(4, "inches"),
  26720. default: true
  26721. },
  26722. {
  26723. name: "Macro",
  26724. height: math.unit(50, "feet")
  26725. },
  26726. ]
  26727. ))
  26728. characterMakers.push(() => makeCharacter(
  26729. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  26730. {
  26731. front: {
  26732. height: math.unit(16, "feet"),
  26733. weight: math.unit(1000, "lb"),
  26734. name: "Front",
  26735. image: {
  26736. source: "./media/characters/grim/front.svg",
  26737. extra: 622 / 614,
  26738. bottom: 18.1 / 642
  26739. }
  26740. },
  26741. back: {
  26742. height: math.unit(16, "feet"),
  26743. weight: math.unit(1000, "lb"),
  26744. name: "Back",
  26745. image: {
  26746. source: "./media/characters/grim/back.svg",
  26747. extra: 610.6 / 602,
  26748. bottom: 40.8 / 652
  26749. }
  26750. },
  26751. hunched: {
  26752. height: math.unit(9.75, "feet"),
  26753. weight: math.unit(1000, "lb"),
  26754. name: "Hunched",
  26755. image: {
  26756. source: "./media/characters/grim/hunched.svg",
  26757. extra: 304 / 297,
  26758. bottom: 35.4 / 394
  26759. }
  26760. },
  26761. },
  26762. [
  26763. {
  26764. name: "Normal",
  26765. height: math.unit(16, "feet"),
  26766. default: true
  26767. },
  26768. ]
  26769. ))
  26770. characterMakers.push(() => makeCharacter(
  26771. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  26772. {
  26773. front: {
  26774. height: math.unit(2.3, "meters"),
  26775. weight: math.unit(300, "lb"),
  26776. name: "Front",
  26777. image: {
  26778. source: "./media/characters/sinja/front-sfw.svg",
  26779. extra: 1393 / 1294,
  26780. bottom: 70 / 1463
  26781. }
  26782. },
  26783. frontNsfw: {
  26784. height: math.unit(2.3, "meters"),
  26785. weight: math.unit(300, "lb"),
  26786. name: "Front (NSFW)",
  26787. image: {
  26788. source: "./media/characters/sinja/front-nsfw.svg",
  26789. extra: 1393 / 1294,
  26790. bottom: 70 / 1463
  26791. }
  26792. },
  26793. back: {
  26794. height: math.unit(2.3, "meters"),
  26795. weight: math.unit(300, "lb"),
  26796. name: "Back",
  26797. image: {
  26798. source: "./media/characters/sinja/back.svg",
  26799. extra: 1393 / 1294,
  26800. bottom: 70 / 1463
  26801. }
  26802. },
  26803. head: {
  26804. height: math.unit(1.771, "feet"),
  26805. name: "Head",
  26806. image: {
  26807. source: "./media/characters/sinja/head.svg"
  26808. }
  26809. },
  26810. slit: {
  26811. height: math.unit(0.8, "feet"),
  26812. name: "Slit",
  26813. image: {
  26814. source: "./media/characters/sinja/slit.svg"
  26815. }
  26816. },
  26817. },
  26818. [
  26819. {
  26820. name: "Normal",
  26821. height: math.unit(2.3, "meters")
  26822. },
  26823. {
  26824. name: "Macro",
  26825. height: math.unit(91, "meters"),
  26826. default: true
  26827. },
  26828. {
  26829. name: "Megamacro",
  26830. height: math.unit(91440, "meters")
  26831. },
  26832. {
  26833. name: "Gigamacro",
  26834. height: math.unit(60960000, "meters")
  26835. },
  26836. {
  26837. name: "Teramacro",
  26838. height: math.unit(9144000000, "meters")
  26839. },
  26840. ]
  26841. ))
  26842. characterMakers.push(() => makeCharacter(
  26843. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  26844. {
  26845. front: {
  26846. height: math.unit(1.7, "meters"),
  26847. weight: math.unit(130, "lb"),
  26848. name: "Front",
  26849. image: {
  26850. source: "./media/characters/kyu/front.svg",
  26851. extra: 415 / 395,
  26852. bottom: 5 / 420
  26853. }
  26854. },
  26855. head: {
  26856. height: math.unit(1.75, "feet"),
  26857. name: "Head",
  26858. image: {
  26859. source: "./media/characters/kyu/head.svg"
  26860. }
  26861. },
  26862. foot: {
  26863. height: math.unit(0.81, "feet"),
  26864. name: "Foot",
  26865. image: {
  26866. source: "./media/characters/kyu/foot.svg"
  26867. }
  26868. },
  26869. },
  26870. [
  26871. {
  26872. name: "Normal",
  26873. height: math.unit(1.7, "meters")
  26874. },
  26875. {
  26876. name: "Macro",
  26877. height: math.unit(131, "feet"),
  26878. default: true
  26879. },
  26880. {
  26881. name: "Megamacro",
  26882. height: math.unit(91440, "meters")
  26883. },
  26884. {
  26885. name: "Gigamacro",
  26886. height: math.unit(60960000, "meters")
  26887. },
  26888. {
  26889. name: "Teramacro",
  26890. height: math.unit(9144000000, "meters")
  26891. },
  26892. ]
  26893. ))
  26894. characterMakers.push(() => makeCharacter(
  26895. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  26896. {
  26897. front: {
  26898. height: math.unit(7 + 1 / 12, "feet"),
  26899. weight: math.unit(250, "lb"),
  26900. name: "Front",
  26901. image: {
  26902. source: "./media/characters/joey/front.svg",
  26903. extra: 1791 / 1537,
  26904. bottom: 28 / 1816
  26905. }
  26906. },
  26907. },
  26908. [
  26909. {
  26910. name: "Micro",
  26911. height: math.unit(3, "inches")
  26912. },
  26913. {
  26914. name: "Normal",
  26915. height: math.unit(7 + 1 / 12, "feet"),
  26916. default: true
  26917. },
  26918. ]
  26919. ))
  26920. characterMakers.push(() => makeCharacter(
  26921. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  26922. {
  26923. front: {
  26924. height: math.unit(165, "cm"),
  26925. weight: math.unit(140, "lb"),
  26926. name: "Front",
  26927. image: {
  26928. source: "./media/characters/sam-evans/front.svg",
  26929. extra: 3417 / 3230,
  26930. bottom: 41.3 / 3417
  26931. }
  26932. },
  26933. frontSixTails: {
  26934. height: math.unit(165, "cm"),
  26935. weight: math.unit(140, "lb"),
  26936. name: "Front-six-tails",
  26937. image: {
  26938. source: "./media/characters/sam-evans/front-six-tails.svg",
  26939. extra: 3417 / 3230,
  26940. bottom: 41.3 / 3417
  26941. }
  26942. },
  26943. back: {
  26944. height: math.unit(165, "cm"),
  26945. weight: math.unit(140, "lb"),
  26946. name: "Back",
  26947. image: {
  26948. source: "./media/characters/sam-evans/back.svg",
  26949. extra: 3227 / 3032,
  26950. bottom: 6.8 / 3234
  26951. }
  26952. },
  26953. face: {
  26954. height: math.unit(0.68, "feet"),
  26955. name: "Face",
  26956. image: {
  26957. source: "./media/characters/sam-evans/face.svg"
  26958. }
  26959. },
  26960. },
  26961. [
  26962. {
  26963. name: "Normal",
  26964. height: math.unit(165, "cm"),
  26965. default: true
  26966. },
  26967. {
  26968. name: "Macro",
  26969. height: math.unit(100, "meters")
  26970. },
  26971. {
  26972. name: "Macro+",
  26973. height: math.unit(800, "meters")
  26974. },
  26975. {
  26976. name: "Macro++",
  26977. height: math.unit(3, "km")
  26978. },
  26979. {
  26980. name: "Macro+++",
  26981. height: math.unit(30, "km")
  26982. },
  26983. ]
  26984. ))
  26985. characterMakers.push(() => makeCharacter(
  26986. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  26987. {
  26988. front: {
  26989. height: math.unit(10, "feet"),
  26990. weight: math.unit(750, "lb"),
  26991. name: "Front",
  26992. image: {
  26993. source: "./media/characters/juliet-a/front.svg",
  26994. extra: 1766 / 1720,
  26995. bottom: 43 / 1809
  26996. }
  26997. },
  26998. back: {
  26999. height: math.unit(10, "feet"),
  27000. weight: math.unit(750, "lb"),
  27001. name: "Back",
  27002. image: {
  27003. source: "./media/characters/juliet-a/back.svg",
  27004. extra: 1781 / 1734,
  27005. bottom: 35 / 1810,
  27006. }
  27007. },
  27008. },
  27009. [
  27010. {
  27011. name: "Normal",
  27012. height: math.unit(10, "feet"),
  27013. default: true
  27014. },
  27015. {
  27016. name: "Dragon Form",
  27017. height: math.unit(250, "feet")
  27018. },
  27019. {
  27020. name: "Macro",
  27021. height: math.unit(1000, "feet")
  27022. },
  27023. {
  27024. name: "Megamacro",
  27025. height: math.unit(10000, "feet")
  27026. }
  27027. ]
  27028. ))
  27029. characterMakers.push(() => makeCharacter(
  27030. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  27031. {
  27032. regular: {
  27033. height: math.unit(7 + 3 / 12, "feet"),
  27034. weight: math.unit(260, "lb"),
  27035. name: "Regular",
  27036. image: {
  27037. source: "./media/characters/wild/regular.svg",
  27038. extra: 97.45 / 92,
  27039. bottom: 6.8 / 104.3
  27040. }
  27041. },
  27042. biggums: {
  27043. height: math.unit(8 + 6 / 12, "feet"),
  27044. weight: math.unit(425, "lb"),
  27045. name: "Biggums",
  27046. image: {
  27047. source: "./media/characters/wild/biggums.svg",
  27048. extra: 97.45 / 92,
  27049. bottom: 7.5 / 132.34
  27050. }
  27051. },
  27052. mawRegular: {
  27053. height: math.unit(1.24, "feet"),
  27054. name: "Maw (Regular)",
  27055. image: {
  27056. source: "./media/characters/wild/maw.svg"
  27057. }
  27058. },
  27059. mawBiggums: {
  27060. height: math.unit(1.47, "feet"),
  27061. name: "Maw (Biggums)",
  27062. image: {
  27063. source: "./media/characters/wild/maw.svg"
  27064. }
  27065. },
  27066. },
  27067. [
  27068. {
  27069. name: "Normal",
  27070. height: math.unit(7 + 3 / 12, "feet"),
  27071. default: true
  27072. },
  27073. ]
  27074. ))
  27075. characterMakers.push(() => makeCharacter(
  27076. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  27077. {
  27078. front: {
  27079. height: math.unit(2.5, "meters"),
  27080. weight: math.unit(200, "kg"),
  27081. name: "Front",
  27082. image: {
  27083. source: "./media/characters/vidar/front.svg",
  27084. extra: 2994 / 2795,
  27085. bottom: 56 / 3061
  27086. }
  27087. },
  27088. back: {
  27089. height: math.unit(2.5, "meters"),
  27090. weight: math.unit(200, "kg"),
  27091. name: "Back",
  27092. image: {
  27093. source: "./media/characters/vidar/back.svg",
  27094. extra: 3131 / 2928,
  27095. bottom: 13.5 / 3141.5
  27096. }
  27097. },
  27098. feral: {
  27099. height: math.unit(2.5, "meters"),
  27100. weight: math.unit(2000, "kg"),
  27101. name: "Feral",
  27102. image: {
  27103. source: "./media/characters/vidar/feral.svg",
  27104. extra: 2790 / 1765,
  27105. bottom: 6 / 2796
  27106. }
  27107. },
  27108. },
  27109. [
  27110. {
  27111. name: "Normal",
  27112. height: math.unit(2.5, "meters"),
  27113. default: true
  27114. },
  27115. {
  27116. name: "Macro",
  27117. height: math.unit(100, "meters")
  27118. },
  27119. ]
  27120. ))
  27121. characterMakers.push(() => makeCharacter(
  27122. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  27123. {
  27124. front: {
  27125. height: math.unit(5 + 9 / 12, "feet"),
  27126. weight: math.unit(120, "lb"),
  27127. name: "Front",
  27128. image: {
  27129. source: "./media/characters/ash/front.svg",
  27130. extra: 2189 / 1961,
  27131. bottom: 5.2 / 2194
  27132. }
  27133. },
  27134. },
  27135. [
  27136. {
  27137. name: "Normal",
  27138. height: math.unit(5 + 9 / 12, "feet"),
  27139. default: true
  27140. },
  27141. ]
  27142. ))
  27143. characterMakers.push(() => makeCharacter(
  27144. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  27145. {
  27146. front: {
  27147. height: math.unit(9, "feet"),
  27148. weight: math.unit(10000, "lb"),
  27149. name: "Front",
  27150. image: {
  27151. source: "./media/characters/gygabite/front.svg",
  27152. bottom: 31.7 / 537.8,
  27153. extra: 505 / 370
  27154. }
  27155. },
  27156. },
  27157. [
  27158. {
  27159. name: "Normal",
  27160. height: math.unit(9, "feet"),
  27161. default: true
  27162. },
  27163. ]
  27164. ))
  27165. characterMakers.push(() => makeCharacter(
  27166. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  27167. {
  27168. front: {
  27169. height: math.unit(12, "feet"),
  27170. weight: math.unit(35000, "lb"),
  27171. name: "Front",
  27172. image: {
  27173. source: "./media/characters/p0tat0/front.svg",
  27174. extra: 1065 / 921,
  27175. bottom: 55.7 / 1121.25
  27176. }
  27177. },
  27178. },
  27179. [
  27180. {
  27181. name: "Normal",
  27182. height: math.unit(12, "feet"),
  27183. default: true
  27184. },
  27185. ]
  27186. ))
  27187. characterMakers.push(() => makeCharacter(
  27188. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  27189. {
  27190. side: {
  27191. height: math.unit(6.5, "feet"),
  27192. weight: math.unit(800, "lb"),
  27193. name: "Side",
  27194. image: {
  27195. source: "./media/characters/dusk/side.svg",
  27196. extra: 615 / 373,
  27197. bottom: 53 / 664
  27198. }
  27199. },
  27200. sitting: {
  27201. height: math.unit(7, "feet"),
  27202. weight: math.unit(800, "lb"),
  27203. name: "Sitting",
  27204. image: {
  27205. source: "./media/characters/dusk/sitting.svg",
  27206. extra: 753 / 425,
  27207. bottom: 33 / 774
  27208. }
  27209. },
  27210. head: {
  27211. height: math.unit(6.1, "feet"),
  27212. name: "Head",
  27213. image: {
  27214. source: "./media/characters/dusk/head.svg"
  27215. }
  27216. },
  27217. },
  27218. [
  27219. {
  27220. name: "Normal",
  27221. height: math.unit(7, "feet"),
  27222. default: true
  27223. },
  27224. ]
  27225. ))
  27226. characterMakers.push(() => makeCharacter(
  27227. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  27228. {
  27229. front: {
  27230. height: math.unit(15, "feet"),
  27231. weight: math.unit(7000, "lb"),
  27232. name: "Front",
  27233. image: {
  27234. source: "./media/characters/jay-direwolf/front.svg",
  27235. extra: 1810 / 1732,
  27236. bottom: 66 / 1892
  27237. }
  27238. },
  27239. },
  27240. [
  27241. {
  27242. name: "Normal",
  27243. height: math.unit(15, "feet"),
  27244. default: true
  27245. },
  27246. ]
  27247. ))
  27248. characterMakers.push(() => makeCharacter(
  27249. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  27250. {
  27251. front: {
  27252. height: math.unit(4 + 9 / 12, "feet"),
  27253. weight: math.unit(130, "lb"),
  27254. name: "Front",
  27255. image: {
  27256. source: "./media/characters/anchovie/front.svg",
  27257. extra: 382 / 350,
  27258. bottom: 25 / 409
  27259. }
  27260. },
  27261. back: {
  27262. height: math.unit(4 + 9 / 12, "feet"),
  27263. weight: math.unit(130, "lb"),
  27264. name: "Back",
  27265. image: {
  27266. source: "./media/characters/anchovie/back.svg",
  27267. extra: 385 / 352,
  27268. bottom: 16.6 / 402
  27269. }
  27270. },
  27271. frontDressed: {
  27272. height: math.unit(4 + 9 / 12, "feet"),
  27273. weight: math.unit(130, "lb"),
  27274. name: "Front (Dressed)",
  27275. image: {
  27276. source: "./media/characters/anchovie/front-dressed.svg",
  27277. extra: 382 / 350,
  27278. bottom: 25 / 409
  27279. }
  27280. },
  27281. backDressed: {
  27282. height: math.unit(4 + 9 / 12, "feet"),
  27283. weight: math.unit(130, "lb"),
  27284. name: "Back (Dressed)",
  27285. image: {
  27286. source: "./media/characters/anchovie/back-dressed.svg",
  27287. extra: 385 / 352,
  27288. bottom: 16.6 / 402
  27289. }
  27290. },
  27291. },
  27292. [
  27293. {
  27294. name: "Micro",
  27295. height: math.unit(6.4, "inches")
  27296. },
  27297. {
  27298. name: "Normal",
  27299. height: math.unit(4 + 9 / 12, "feet"),
  27300. default: true
  27301. },
  27302. ]
  27303. ))
  27304. characterMakers.push(() => makeCharacter(
  27305. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  27306. {
  27307. front: {
  27308. height: math.unit(2, "meters"),
  27309. weight: math.unit(180, "lb"),
  27310. name: "Front",
  27311. image: {
  27312. source: "./media/characters/acidrenamon/front.svg",
  27313. extra: 987 / 890,
  27314. bottom: 22.8 / 1009
  27315. }
  27316. },
  27317. back: {
  27318. height: math.unit(2, "meters"),
  27319. weight: math.unit(180, "lb"),
  27320. name: "Back",
  27321. image: {
  27322. source: "./media/characters/acidrenamon/back.svg",
  27323. extra: 983 / 891,
  27324. bottom: 8.4 / 992
  27325. }
  27326. },
  27327. head: {
  27328. height: math.unit(1.92, "feet"),
  27329. name: "Head",
  27330. image: {
  27331. source: "./media/characters/acidrenamon/head.svg"
  27332. }
  27333. },
  27334. rump: {
  27335. height: math.unit(1.72, "feet"),
  27336. name: "Rump",
  27337. image: {
  27338. source: "./media/characters/acidrenamon/rump.svg"
  27339. }
  27340. },
  27341. tail: {
  27342. height: math.unit(4.2, "feet"),
  27343. name: "Tail",
  27344. image: {
  27345. source: "./media/characters/acidrenamon/tail.svg"
  27346. }
  27347. },
  27348. },
  27349. [
  27350. {
  27351. name: "Normal",
  27352. height: math.unit(2, "meters"),
  27353. default: true
  27354. },
  27355. {
  27356. name: "Minimacro",
  27357. height: math.unit(7, "meters")
  27358. },
  27359. {
  27360. name: "Macro",
  27361. height: math.unit(200, "meters")
  27362. },
  27363. {
  27364. name: "Gigamacro",
  27365. height: math.unit(0.2, "earths")
  27366. },
  27367. ]
  27368. ))
  27369. characterMakers.push(() => makeCharacter(
  27370. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  27371. {
  27372. front: {
  27373. height: math.unit(6, "feet"),
  27374. weight: math.unit(150, "lb"),
  27375. name: "Front",
  27376. image: {
  27377. source: "./media/characters/kenzie-lee/front.svg",
  27378. extra: 1525 / 1465,
  27379. bottom: 45 / 1570
  27380. }
  27381. },
  27382. side: {
  27383. height: math.unit(6, "feet"),
  27384. weight: math.unit(150, "lb"),
  27385. name: "Side",
  27386. image: {
  27387. source: "./media/characters/kenzie-lee/side.svg",
  27388. extra: 5505 / 5383,
  27389. bottom: 60 / 5573
  27390. }
  27391. },
  27392. paw: {
  27393. height: math.unit(0.57, "feet"),
  27394. name: "Paw",
  27395. image: {
  27396. source: "./media/characters/kenzie-lee/paw.svg"
  27397. }
  27398. },
  27399. },
  27400. [
  27401. {
  27402. name: "Normal",
  27403. height: math.unit(152, "feet"),
  27404. default: true
  27405. },
  27406. {
  27407. name: "Megamacro",
  27408. height: math.unit(7, "miles")
  27409. },
  27410. {
  27411. name: "Gigamacro",
  27412. height: math.unit(8000, "miles")
  27413. },
  27414. ]
  27415. ))
  27416. characterMakers.push(() => makeCharacter(
  27417. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  27418. {
  27419. side: {
  27420. height: math.unit(6, "feet"),
  27421. weight: math.unit(150, "lb"),
  27422. name: "Side",
  27423. image: {
  27424. source: "./media/characters/withers/side.svg",
  27425. extra: 1830 / 1728,
  27426. bottom: 96 / 1927
  27427. }
  27428. },
  27429. front: {
  27430. height: math.unit(6, "feet"),
  27431. weight: math.unit(150, "lb"),
  27432. name: "Front",
  27433. image: {
  27434. source: "./media/characters/withers/front.svg",
  27435. extra: 1514 / 1438,
  27436. bottom: 118 / 1632
  27437. }
  27438. },
  27439. },
  27440. [
  27441. {
  27442. name: "Macro",
  27443. height: math.unit(168, "feet"),
  27444. default: true
  27445. },
  27446. {
  27447. name: "Megamacro",
  27448. height: math.unit(15, "miles")
  27449. }
  27450. ]
  27451. ))
  27452. characterMakers.push(() => makeCharacter(
  27453. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  27454. {
  27455. front: {
  27456. height: math.unit(6 + 7 / 12, "feet"),
  27457. weight: math.unit(250, "lb"),
  27458. name: "Front",
  27459. image: {
  27460. source: "./media/characters/nemoskii/front.svg",
  27461. extra: 2270 / 1734,
  27462. bottom: 86 / 2354
  27463. }
  27464. },
  27465. back: {
  27466. height: math.unit(6 + 7 / 12, "feet"),
  27467. weight: math.unit(250, "lb"),
  27468. name: "Back",
  27469. image: {
  27470. source: "./media/characters/nemoskii/back.svg",
  27471. extra: 1845 / 1788,
  27472. bottom: 10.5 / 1852
  27473. }
  27474. },
  27475. head: {
  27476. height: math.unit(1.31, "feet"),
  27477. name: "Head",
  27478. image: {
  27479. source: "./media/characters/nemoskii/head.svg"
  27480. }
  27481. },
  27482. },
  27483. [
  27484. {
  27485. name: "Micro",
  27486. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  27487. },
  27488. {
  27489. name: "Normal",
  27490. height: math.unit(6 + 7 / 12, "feet"),
  27491. default: true
  27492. },
  27493. {
  27494. name: "Macro",
  27495. height: math.unit((6 + 7 / 12) * 150, "feet")
  27496. },
  27497. {
  27498. name: "Macro+",
  27499. height: math.unit((6 + 7 / 12) * 500, "feet")
  27500. },
  27501. {
  27502. name: "Megamacro",
  27503. height: math.unit((6 + 7 / 12) * 100000, "feet")
  27504. },
  27505. ]
  27506. ))
  27507. characterMakers.push(() => makeCharacter(
  27508. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  27509. {
  27510. front: {
  27511. height: math.unit(1, "mile"),
  27512. weight: math.unit(265261.9, "lb"),
  27513. name: "Front",
  27514. image: {
  27515. source: "./media/characters/shui/front.svg",
  27516. extra: 1633 / 1564,
  27517. bottom: 91.5 / 1726
  27518. }
  27519. },
  27520. },
  27521. [
  27522. {
  27523. name: "Macro",
  27524. height: math.unit(1, "mile"),
  27525. default: true
  27526. },
  27527. ]
  27528. ))
  27529. characterMakers.push(() => makeCharacter(
  27530. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  27531. {
  27532. front: {
  27533. height: math.unit(12 + 6 / 12, "feet"),
  27534. weight: math.unit(1342, "lb"),
  27535. name: "Front",
  27536. image: {
  27537. source: "./media/characters/arokh-takakura/front.svg",
  27538. extra: 1089 / 1043,
  27539. bottom: 77.4 / 1176.7
  27540. }
  27541. },
  27542. back: {
  27543. height: math.unit(12 + 6 / 12, "feet"),
  27544. weight: math.unit(1342, "lb"),
  27545. name: "Back",
  27546. image: {
  27547. source: "./media/characters/arokh-takakura/back.svg",
  27548. extra: 1046 / 1019,
  27549. bottom: 102 / 1150
  27550. }
  27551. },
  27552. },
  27553. [
  27554. {
  27555. name: "Big",
  27556. height: math.unit(12 + 6 / 12, "feet"),
  27557. default: true
  27558. },
  27559. ]
  27560. ))
  27561. characterMakers.push(() => makeCharacter(
  27562. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  27563. {
  27564. front: {
  27565. height: math.unit(5 + 6 / 12, "feet"),
  27566. weight: math.unit(150, "lb"),
  27567. name: "Front",
  27568. image: {
  27569. source: "./media/characters/theo/front.svg",
  27570. extra: 1184 / 1131,
  27571. bottom: 7.4 / 1191
  27572. }
  27573. },
  27574. },
  27575. [
  27576. {
  27577. name: "Micro",
  27578. height: math.unit(5, "inches")
  27579. },
  27580. {
  27581. name: "Normal",
  27582. height: math.unit(5 + 6 / 12, "feet"),
  27583. default: true
  27584. },
  27585. ]
  27586. ))
  27587. characterMakers.push(() => makeCharacter(
  27588. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  27589. {
  27590. front: {
  27591. height: math.unit(5 + 9 / 12, "feet"),
  27592. weight: math.unit(130, "lb"),
  27593. name: "Front",
  27594. image: {
  27595. source: "./media/characters/cecelia-swift/front.svg",
  27596. extra: 502 / 484,
  27597. bottom: 23 / 523
  27598. }
  27599. },
  27600. back: {
  27601. height: math.unit(5 + 9 / 12, "feet"),
  27602. weight: math.unit(130, "lb"),
  27603. name: "Back",
  27604. image: {
  27605. source: "./media/characters/cecelia-swift/back.svg",
  27606. extra: 499 / 485,
  27607. bottom: 12 / 511
  27608. }
  27609. },
  27610. head: {
  27611. height: math.unit(0.90, "feet"),
  27612. name: "Head",
  27613. image: {
  27614. source: "./media/characters/cecelia-swift/head.svg"
  27615. }
  27616. },
  27617. rump: {
  27618. height: math.unit(1.75, "feet"),
  27619. name: "Rump",
  27620. image: {
  27621. source: "./media/characters/cecelia-swift/rump.svg"
  27622. }
  27623. },
  27624. },
  27625. [
  27626. {
  27627. name: "Normal",
  27628. height: math.unit(5 + 9 / 12, "feet"),
  27629. default: true
  27630. },
  27631. {
  27632. name: "Big",
  27633. height: math.unit(50, "feet")
  27634. },
  27635. {
  27636. name: "Macro",
  27637. height: math.unit(100, "feet")
  27638. },
  27639. {
  27640. name: "Macro+",
  27641. height: math.unit(500, "feet")
  27642. },
  27643. {
  27644. name: "Macro++",
  27645. height: math.unit(1000, "feet")
  27646. },
  27647. ]
  27648. ))
  27649. characterMakers.push(() => makeCharacter(
  27650. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  27651. {
  27652. front: {
  27653. height: math.unit(6, "feet"),
  27654. weight: math.unit(150, "lb"),
  27655. name: "Front",
  27656. image: {
  27657. source: "./media/characters/kaunan/front.svg",
  27658. extra: 2890 / 2523,
  27659. bottom: 49 / 2939
  27660. }
  27661. },
  27662. },
  27663. [
  27664. {
  27665. name: "Macro",
  27666. height: math.unit(150, "feet"),
  27667. default: true
  27668. },
  27669. ]
  27670. ))
  27671. characterMakers.push(() => makeCharacter(
  27672. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  27673. {
  27674. front: {
  27675. height: math.unit(175, "cm"),
  27676. weight: math.unit(60, "kg"),
  27677. name: "Front",
  27678. image: {
  27679. source: "./media/characters/fei/front.svg",
  27680. extra: 1873/1723,
  27681. bottom: 53/1926
  27682. }
  27683. },
  27684. },
  27685. [
  27686. {
  27687. name: "Mortal",
  27688. height: math.unit(175, "cm")
  27689. },
  27690. {
  27691. name: "Normal",
  27692. height: math.unit(3500, "m"),
  27693. default: true
  27694. },
  27695. {
  27696. name: "Stroll",
  27697. height: math.unit(17.5, "km")
  27698. },
  27699. {
  27700. name: "Showoff",
  27701. height: math.unit(175, "km")
  27702. },
  27703. ]
  27704. ))
  27705. characterMakers.push(() => makeCharacter(
  27706. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  27707. {
  27708. front: {
  27709. height: math.unit(7, "feet"),
  27710. weight: math.unit(1000, "kg"),
  27711. name: "Front",
  27712. image: {
  27713. source: "./media/characters/edrax/front.svg",
  27714. extra: 2838 / 2550,
  27715. bottom: 130 / 2968
  27716. }
  27717. },
  27718. },
  27719. [
  27720. {
  27721. name: "Small",
  27722. height: math.unit(7, "feet")
  27723. },
  27724. {
  27725. name: "Normal",
  27726. height: math.unit(1500, "meters")
  27727. },
  27728. {
  27729. name: "Mega",
  27730. height: math.unit(12000000, "km"),
  27731. default: true
  27732. },
  27733. {
  27734. name: "Megamacro",
  27735. height: math.unit(10600000, "lightyears")
  27736. },
  27737. {
  27738. name: "Hypermacro",
  27739. height: math.unit(256, "yottameters")
  27740. },
  27741. ]
  27742. ))
  27743. characterMakers.push(() => makeCharacter(
  27744. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  27745. {
  27746. front: {
  27747. height: math.unit(10, "feet"),
  27748. weight: math.unit(750, "lb"),
  27749. name: "Front",
  27750. image: {
  27751. source: "./media/characters/clove/front.svg",
  27752. extra: 2031 / 1860,
  27753. bottom: 47.8 / 2080
  27754. }
  27755. },
  27756. back: {
  27757. height: math.unit(10, "feet"),
  27758. weight: math.unit(750, "lb"),
  27759. name: "Back",
  27760. image: {
  27761. source: "./media/characters/clove/back.svg",
  27762. extra: 2025 / 1859,
  27763. bottom: 46 / 2071
  27764. }
  27765. },
  27766. },
  27767. [
  27768. {
  27769. name: "Normal",
  27770. height: math.unit(10, "feet"),
  27771. default: true
  27772. },
  27773. ]
  27774. ))
  27775. characterMakers.push(() => makeCharacter(
  27776. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27777. {
  27778. front: {
  27779. height: math.unit(4, "feet"),
  27780. weight: math.unit(50, "lb"),
  27781. name: "Front",
  27782. image: {
  27783. source: "./media/characters/alex-rabbit/front.svg",
  27784. extra: 507 / 458,
  27785. bottom: 18.5 / 527
  27786. }
  27787. },
  27788. back: {
  27789. height: math.unit(4, "feet"),
  27790. weight: math.unit(50, "lb"),
  27791. name: "Back",
  27792. image: {
  27793. source: "./media/characters/alex-rabbit/back.svg",
  27794. extra: 502 / 460,
  27795. bottom: 18.9 / 521
  27796. }
  27797. },
  27798. },
  27799. [
  27800. {
  27801. name: "Normal",
  27802. height: math.unit(4, "feet"),
  27803. default: true
  27804. },
  27805. ]
  27806. ))
  27807. characterMakers.push(() => makeCharacter(
  27808. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  27809. {
  27810. front: {
  27811. height: math.unit(1 + 3 / 12, "feet"),
  27812. weight: math.unit(80, "lb"),
  27813. name: "Front",
  27814. image: {
  27815. source: "./media/characters/zander-rose/front.svg",
  27816. extra: 916 / 797,
  27817. bottom: 17 / 933
  27818. }
  27819. },
  27820. back: {
  27821. height: math.unit(1 + 3 / 12, "feet"),
  27822. weight: math.unit(80, "lb"),
  27823. name: "Back",
  27824. image: {
  27825. source: "./media/characters/zander-rose/back.svg",
  27826. extra: 903 / 779,
  27827. bottom: 31 / 934
  27828. }
  27829. },
  27830. },
  27831. [
  27832. {
  27833. name: "Normal",
  27834. height: math.unit(1 + 3 / 12, "feet"),
  27835. default: true
  27836. },
  27837. ]
  27838. ))
  27839. characterMakers.push(() => makeCharacter(
  27840. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  27841. {
  27842. anthro: {
  27843. height: math.unit(6, "feet"),
  27844. weight: math.unit(150, "lb"),
  27845. name: "Anthro",
  27846. image: {
  27847. source: "./media/characters/razz/anthro.svg",
  27848. extra: 1437 / 1343,
  27849. bottom: 48 / 1485
  27850. }
  27851. },
  27852. feral: {
  27853. height: math.unit(6, "feet"),
  27854. weight: math.unit(150, "lb"),
  27855. name: "Feral",
  27856. image: {
  27857. source: "./media/characters/razz/feral.svg",
  27858. extra: 2569 / 1385,
  27859. bottom: 95 / 2664
  27860. }
  27861. },
  27862. },
  27863. [
  27864. {
  27865. name: "Normal",
  27866. height: math.unit(6, "feet"),
  27867. default: true
  27868. },
  27869. ]
  27870. ))
  27871. characterMakers.push(() => makeCharacter(
  27872. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  27873. {
  27874. front: {
  27875. height: math.unit(9 + 4 / 12, "feet"),
  27876. weight: math.unit(500, "lb"),
  27877. name: "Front",
  27878. image: {
  27879. source: "./media/characters/morrigan/front.svg",
  27880. extra: 2707 / 2579,
  27881. bottom: 156 / 2863
  27882. }
  27883. },
  27884. },
  27885. [
  27886. {
  27887. name: "Normal",
  27888. height: math.unit(9 + 4 / 12, "feet"),
  27889. default: true
  27890. },
  27891. ]
  27892. ))
  27893. characterMakers.push(() => makeCharacter(
  27894. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  27895. {
  27896. front: {
  27897. height: math.unit(5, "stories"),
  27898. weight: math.unit(4000, "lb"),
  27899. name: "Front",
  27900. image: {
  27901. source: "./media/characters/jenene/front.svg",
  27902. extra: 1780 / 1710,
  27903. bottom: 57 / 1837
  27904. }
  27905. },
  27906. },
  27907. [
  27908. {
  27909. name: "Normal",
  27910. height: math.unit(5, "stories"),
  27911. default: true
  27912. },
  27913. ]
  27914. ))
  27915. characterMakers.push(() => makeCharacter(
  27916. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  27917. {
  27918. taurSfw: {
  27919. height: math.unit(10, "meters"),
  27920. weight: math.unit(17500, "kg"),
  27921. name: "Taur",
  27922. image: {
  27923. source: "./media/characters/faey/taur-sfw.svg",
  27924. extra: 1200 / 968,
  27925. bottom: 41 / 1241
  27926. }
  27927. },
  27928. chestmaw: {
  27929. height: math.unit(2.01, "meters"),
  27930. name: "Chestmaw",
  27931. image: {
  27932. source: "./media/characters/faey/chestmaw.svg"
  27933. }
  27934. },
  27935. foot: {
  27936. height: math.unit(2.43, "meters"),
  27937. name: "Foot",
  27938. image: {
  27939. source: "./media/characters/faey/foot.svg"
  27940. }
  27941. },
  27942. jaws: {
  27943. height: math.unit(1.66, "meters"),
  27944. name: "Jaws",
  27945. image: {
  27946. source: "./media/characters/faey/jaws.svg"
  27947. }
  27948. },
  27949. tongues: {
  27950. height: math.unit(2.01, "meters"),
  27951. name: "Tongues",
  27952. image: {
  27953. source: "./media/characters/faey/tongues.svg"
  27954. }
  27955. },
  27956. },
  27957. [
  27958. {
  27959. name: "Small",
  27960. height: math.unit(10, "meters"),
  27961. default: true
  27962. },
  27963. {
  27964. name: "Big",
  27965. height: math.unit(500000, "km")
  27966. },
  27967. ]
  27968. ))
  27969. characterMakers.push(() => makeCharacter(
  27970. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  27971. {
  27972. front: {
  27973. height: math.unit(7, "feet"),
  27974. weight: math.unit(275, "lb"),
  27975. name: "Front",
  27976. image: {
  27977. source: "./media/characters/roku/front.svg",
  27978. extra: 903 / 878,
  27979. bottom: 37 / 940
  27980. }
  27981. },
  27982. },
  27983. [
  27984. {
  27985. name: "Normal",
  27986. height: math.unit(7, "feet"),
  27987. default: true
  27988. },
  27989. {
  27990. name: "Macro",
  27991. height: math.unit(500, "feet")
  27992. },
  27993. {
  27994. name: "Megamacro",
  27995. height: math.unit(200, "miles")
  27996. },
  27997. ]
  27998. ))
  27999. characterMakers.push(() => makeCharacter(
  28000. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  28001. {
  28002. front: {
  28003. height: math.unit(6 + 2 / 12, "feet"),
  28004. weight: math.unit(150, "lb"),
  28005. name: "Front",
  28006. image: {
  28007. source: "./media/characters/lira/front.svg",
  28008. extra: 1727 / 1605,
  28009. bottom: 26 / 1753
  28010. }
  28011. },
  28012. back: {
  28013. height: math.unit(6 + 2 / 12, "feet"),
  28014. weight: math.unit(150, "lb"),
  28015. name: "Back",
  28016. image: {
  28017. source: "./media/characters/lira/back.svg",
  28018. extra: 1713/1621,
  28019. bottom: 20/1733
  28020. }
  28021. },
  28022. hand: {
  28023. height: math.unit(0.75, "feet"),
  28024. name: "Hand",
  28025. image: {
  28026. source: "./media/characters/lira/hand.svg"
  28027. }
  28028. },
  28029. maw: {
  28030. height: math.unit(0.65, "feet"),
  28031. name: "Maw",
  28032. image: {
  28033. source: "./media/characters/lira/maw.svg"
  28034. }
  28035. },
  28036. pawDigi: {
  28037. height: math.unit(1.6, "feet"),
  28038. name: "Paw Digi",
  28039. image: {
  28040. source: "./media/characters/lira/paw-digi.svg"
  28041. }
  28042. },
  28043. pawPlanti: {
  28044. height: math.unit(1.4, "feet"),
  28045. name: "Paw Planti",
  28046. image: {
  28047. source: "./media/characters/lira/paw-planti.svg"
  28048. }
  28049. },
  28050. },
  28051. [
  28052. {
  28053. name: "Normal",
  28054. height: math.unit(6 + 2 / 12, "feet"),
  28055. default: true
  28056. },
  28057. {
  28058. name: "Macro",
  28059. height: math.unit(100, "feet")
  28060. },
  28061. {
  28062. name: "Macro²",
  28063. height: math.unit(1600, "feet")
  28064. },
  28065. {
  28066. name: "Planetary",
  28067. height: math.unit(20, "earths")
  28068. },
  28069. ]
  28070. ))
  28071. characterMakers.push(() => makeCharacter(
  28072. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  28073. {
  28074. front: {
  28075. height: math.unit(6, "feet"),
  28076. weight: math.unit(150, "lb"),
  28077. name: "Front",
  28078. image: {
  28079. source: "./media/characters/hadjet/front.svg",
  28080. extra: 1480 / 1346,
  28081. bottom: 26 / 1506
  28082. }
  28083. },
  28084. frontNsfw: {
  28085. height: math.unit(6, "feet"),
  28086. weight: math.unit(150, "lb"),
  28087. name: "Front (NSFW)",
  28088. image: {
  28089. source: "./media/characters/hadjet/front-nsfw.svg",
  28090. extra: 1440 / 1358,
  28091. bottom: 52 / 1492
  28092. }
  28093. },
  28094. },
  28095. [
  28096. {
  28097. name: "Macro",
  28098. height: math.unit(10, "stories"),
  28099. default: true
  28100. },
  28101. {
  28102. name: "Megamacro",
  28103. height: math.unit(1.5, "miles")
  28104. },
  28105. {
  28106. name: "Megamacro+",
  28107. height: math.unit(5, "miles")
  28108. },
  28109. ]
  28110. ))
  28111. characterMakers.push(() => makeCharacter(
  28112. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  28113. {
  28114. side: {
  28115. height: math.unit(106, "feet"),
  28116. weight: math.unit(500, "tonnes"),
  28117. name: "Side",
  28118. image: {
  28119. source: "./media/characters/kodran/side.svg",
  28120. extra: 553 / 480,
  28121. bottom: 33 / 586
  28122. }
  28123. },
  28124. front: {
  28125. height: math.unit(132, "feet"),
  28126. weight: math.unit(500, "tonnes"),
  28127. name: "Front",
  28128. image: {
  28129. source: "./media/characters/kodran/front.svg",
  28130. extra: 667 / 643,
  28131. bottom: 42 / 709
  28132. }
  28133. },
  28134. flying: {
  28135. height: math.unit(350, "feet"),
  28136. weight: math.unit(500, "tonnes"),
  28137. name: "Flying",
  28138. image: {
  28139. source: "./media/characters/kodran/flying.svg"
  28140. }
  28141. },
  28142. foot: {
  28143. height: math.unit(33, "feet"),
  28144. name: "Foot",
  28145. image: {
  28146. source: "./media/characters/kodran/foot.svg"
  28147. }
  28148. },
  28149. footFront: {
  28150. height: math.unit(19, "feet"),
  28151. name: "Foot (Front)",
  28152. image: {
  28153. source: "./media/characters/kodran/foot-front.svg",
  28154. extra: 261 / 261,
  28155. bottom: 91 / 352
  28156. }
  28157. },
  28158. headFront: {
  28159. height: math.unit(53, "feet"),
  28160. name: "Head (Front)",
  28161. image: {
  28162. source: "./media/characters/kodran/head-front.svg"
  28163. }
  28164. },
  28165. headSide: {
  28166. height: math.unit(65, "feet"),
  28167. name: "Head (Side)",
  28168. image: {
  28169. source: "./media/characters/kodran/head-side.svg"
  28170. }
  28171. },
  28172. throat: {
  28173. height: math.unit(79, "feet"),
  28174. name: "Throat",
  28175. image: {
  28176. source: "./media/characters/kodran/throat.svg"
  28177. }
  28178. },
  28179. },
  28180. [
  28181. {
  28182. name: "Large",
  28183. height: math.unit(106, "feet"),
  28184. default: true
  28185. },
  28186. ]
  28187. ))
  28188. characterMakers.push(() => makeCharacter(
  28189. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  28190. {
  28191. side: {
  28192. height: math.unit(11, "feet"),
  28193. weight: math.unit(150, "lb"),
  28194. name: "Side",
  28195. image: {
  28196. source: "./media/characters/pyxaron/side.svg",
  28197. extra: 305 / 195,
  28198. bottom: 17 / 322
  28199. }
  28200. },
  28201. },
  28202. [
  28203. {
  28204. name: "Normal",
  28205. height: math.unit(11, "feet"),
  28206. default: true
  28207. },
  28208. ]
  28209. ))
  28210. characterMakers.push(() => makeCharacter(
  28211. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  28212. {
  28213. front: {
  28214. height: math.unit(6, "feet"),
  28215. weight: math.unit(150, "lb"),
  28216. name: "Front",
  28217. image: {
  28218. source: "./media/characters/meep/front.svg",
  28219. extra: 88 / 80,
  28220. bottom: 6 / 94
  28221. }
  28222. },
  28223. },
  28224. [
  28225. {
  28226. name: "Fun Sized",
  28227. height: math.unit(2, "inches"),
  28228. default: true
  28229. },
  28230. {
  28231. name: "Friend Sized",
  28232. height: math.unit(8, "inches")
  28233. },
  28234. ]
  28235. ))
  28236. characterMakers.push(() => makeCharacter(
  28237. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  28238. {
  28239. front: {
  28240. height: math.unit(15, "feet"),
  28241. weight: math.unit(2500, "lb"),
  28242. name: "Front",
  28243. image: {
  28244. source: "./media/characters/holly-rabbit/front.svg",
  28245. extra: 1433 / 1233,
  28246. bottom: 125 / 1558
  28247. }
  28248. },
  28249. dick: {
  28250. height: math.unit(4.6, "feet"),
  28251. name: "Dick",
  28252. image: {
  28253. source: "./media/characters/holly-rabbit/dick.svg"
  28254. }
  28255. },
  28256. },
  28257. [
  28258. {
  28259. name: "Normal",
  28260. height: math.unit(15, "feet"),
  28261. default: true
  28262. },
  28263. {
  28264. name: "Macro",
  28265. height: math.unit(250, "feet")
  28266. },
  28267. {
  28268. name: "Macro+",
  28269. height: math.unit(2500, "feet")
  28270. },
  28271. ]
  28272. ))
  28273. characterMakers.push(() => makeCharacter(
  28274. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  28275. {
  28276. front: {
  28277. height: math.unit(3.02, "meters"),
  28278. weight: math.unit(500, "kg"),
  28279. name: "Front",
  28280. image: {
  28281. source: "./media/characters/drena/front.svg",
  28282. extra: 282 / 243,
  28283. bottom: 8 / 290
  28284. }
  28285. },
  28286. side: {
  28287. height: math.unit(3.02, "meters"),
  28288. weight: math.unit(500, "kg"),
  28289. name: "Side",
  28290. image: {
  28291. source: "./media/characters/drena/side.svg",
  28292. extra: 280 / 245,
  28293. bottom: 10 / 290
  28294. }
  28295. },
  28296. back: {
  28297. height: math.unit(3.02, "meters"),
  28298. weight: math.unit(500, "kg"),
  28299. name: "Back",
  28300. image: {
  28301. source: "./media/characters/drena/back.svg",
  28302. extra: 278 / 243,
  28303. bottom: 2 / 280
  28304. }
  28305. },
  28306. foot: {
  28307. height: math.unit(0.75, "meters"),
  28308. name: "Foot",
  28309. image: {
  28310. source: "./media/characters/drena/foot.svg"
  28311. }
  28312. },
  28313. maw: {
  28314. height: math.unit(0.82, "meters"),
  28315. name: "Maw",
  28316. image: {
  28317. source: "./media/characters/drena/maw.svg"
  28318. }
  28319. },
  28320. rump: {
  28321. height: math.unit(0.93, "meters"),
  28322. name: "Rump",
  28323. image: {
  28324. source: "./media/characters/drena/rump.svg"
  28325. }
  28326. },
  28327. },
  28328. [
  28329. {
  28330. name: "Normal",
  28331. height: math.unit(3.02, "meters"),
  28332. default: true
  28333. },
  28334. ]
  28335. ))
  28336. characterMakers.push(() => makeCharacter(
  28337. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  28338. {
  28339. front: {
  28340. height: math.unit(6 + 4 / 12, "feet"),
  28341. weight: math.unit(250, "lb"),
  28342. name: "Front",
  28343. image: {
  28344. source: "./media/characters/remmyzilla/front.svg",
  28345. extra: 4033 / 3588,
  28346. bottom: 123 / 4156
  28347. }
  28348. },
  28349. back: {
  28350. height: math.unit(6 + 4 / 12, "feet"),
  28351. weight: math.unit(250, "lb"),
  28352. name: "Back",
  28353. image: {
  28354. source: "./media/characters/remmyzilla/back.svg",
  28355. extra: 2687 / 2555,
  28356. bottom: 48 / 2735
  28357. }
  28358. },
  28359. paw: {
  28360. height: math.unit(1.73, "feet"),
  28361. name: "Paw",
  28362. image: {
  28363. source: "./media/characters/remmyzilla/paw.svg"
  28364. }
  28365. },
  28366. maw: {
  28367. height: math.unit(1.73, "feet"),
  28368. name: "Maw",
  28369. image: {
  28370. source: "./media/characters/remmyzilla/maw.svg"
  28371. }
  28372. },
  28373. },
  28374. [
  28375. {
  28376. name: "Normal",
  28377. height: math.unit(6 + 4 / 12, "feet")
  28378. },
  28379. {
  28380. name: "Minimacro",
  28381. height: math.unit(12 + 8 / 12, "feet")
  28382. },
  28383. {
  28384. name: "Normal",
  28385. height: math.unit(640, "feet"),
  28386. default: true
  28387. },
  28388. {
  28389. name: "Megamacro",
  28390. height: math.unit(6400, "feet")
  28391. },
  28392. {
  28393. name: "Gigamacro",
  28394. height: math.unit(64000, "miles")
  28395. },
  28396. ]
  28397. ))
  28398. characterMakers.push(() => makeCharacter(
  28399. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  28400. {
  28401. front: {
  28402. height: math.unit(2.5, "meters"),
  28403. weight: math.unit(300, "lb"),
  28404. name: "Front",
  28405. image: {
  28406. source: "./media/characters/lawrence/front.svg",
  28407. extra: 357 / 335,
  28408. bottom: 30 / 387
  28409. }
  28410. },
  28411. back: {
  28412. height: math.unit(2.5, "meters"),
  28413. weight: math.unit(300, "lb"),
  28414. name: "Back",
  28415. image: {
  28416. source: "./media/characters/lawrence/back.svg",
  28417. extra: 357 / 338,
  28418. bottom: 16 / 373
  28419. }
  28420. },
  28421. head: {
  28422. height: math.unit(0.9, "meter"),
  28423. name: "Head",
  28424. image: {
  28425. source: "./media/characters/lawrence/head.svg"
  28426. }
  28427. },
  28428. maw: {
  28429. height: math.unit(0.7, "meter"),
  28430. name: "Maw",
  28431. image: {
  28432. source: "./media/characters/lawrence/maw.svg"
  28433. }
  28434. },
  28435. footBottom: {
  28436. height: math.unit(0.5, "meter"),
  28437. name: "Foot (Bottom)",
  28438. image: {
  28439. source: "./media/characters/lawrence/foot-bottom.svg"
  28440. }
  28441. },
  28442. footTop: {
  28443. height: math.unit(0.5, "meter"),
  28444. name: "Foot (Top)",
  28445. image: {
  28446. source: "./media/characters/lawrence/foot-top.svg"
  28447. }
  28448. },
  28449. },
  28450. [
  28451. {
  28452. name: "Normal",
  28453. height: math.unit(2.5, "meters"),
  28454. default: true
  28455. },
  28456. {
  28457. name: "Macro",
  28458. height: math.unit(95, "meters")
  28459. },
  28460. {
  28461. name: "Megamacro",
  28462. height: math.unit(150, "km")
  28463. },
  28464. ]
  28465. ))
  28466. characterMakers.push(() => makeCharacter(
  28467. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  28468. {
  28469. front: {
  28470. height: math.unit(4.2, "meters"),
  28471. name: "Front",
  28472. image: {
  28473. source: "./media/characters/sydney/front.svg",
  28474. extra: 1323 / 1277,
  28475. bottom: 111 / 1434
  28476. }
  28477. },
  28478. },
  28479. [
  28480. {
  28481. name: "Normal",
  28482. height: math.unit(4.2, "meters"),
  28483. default: true
  28484. },
  28485. ]
  28486. ))
  28487. characterMakers.push(() => makeCharacter(
  28488. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  28489. {
  28490. back: {
  28491. height: math.unit(201, "feet"),
  28492. name: "Back",
  28493. image: {
  28494. source: "./media/characters/jessica/back.svg",
  28495. extra: 273 / 259,
  28496. bottom: 7 / 280
  28497. }
  28498. },
  28499. },
  28500. [
  28501. {
  28502. name: "Normal",
  28503. height: math.unit(201, "feet"),
  28504. default: true
  28505. },
  28506. {
  28507. name: "Megamacro",
  28508. height: math.unit(8, "miles")
  28509. },
  28510. ]
  28511. ))
  28512. characterMakers.push(() => makeCharacter(
  28513. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  28514. {
  28515. side: {
  28516. height: math.unit(320, "cm"),
  28517. name: "Side",
  28518. image: {
  28519. source: "./media/characters/victoria/side.svg",
  28520. extra: 778 / 346,
  28521. bottom: 56 / 834
  28522. }
  28523. },
  28524. maw: {
  28525. height: math.unit(5.9, "feet"),
  28526. name: "Maw",
  28527. image: {
  28528. source: "./media/characters/victoria/maw.svg"
  28529. }
  28530. },
  28531. },
  28532. [
  28533. {
  28534. name: "Normal",
  28535. height: math.unit(320, "cm"),
  28536. default: true
  28537. },
  28538. ]
  28539. ))
  28540. characterMakers.push(() => makeCharacter(
  28541. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  28542. {
  28543. front: {
  28544. height: math.unit(5 + 6 / 12, "feet"),
  28545. name: "Front",
  28546. image: {
  28547. source: "./media/characters/cat/front.svg",
  28548. extra: 1449/1295,
  28549. bottom: 34/1483
  28550. }
  28551. },
  28552. back: {
  28553. height: math.unit(5 + 6 / 12, "feet"),
  28554. name: "Back",
  28555. image: {
  28556. source: "./media/characters/cat/back.svg",
  28557. extra: 1466/1301,
  28558. bottom: 19/1485
  28559. }
  28560. },
  28561. taur: {
  28562. height: math.unit(7, "feet"),
  28563. name: "Taur",
  28564. image: {
  28565. source: "./media/characters/cat/taur.svg",
  28566. extra: 1389/1233,
  28567. bottom: 83/1472
  28568. }
  28569. },
  28570. lucarioFront: {
  28571. height: math.unit(4, "feet"),
  28572. name: "Lucario (Front)",
  28573. image: {
  28574. source: "./media/characters/cat/lucario-front.svg",
  28575. extra: 1149/1019,
  28576. bottom: 84/1233
  28577. }
  28578. },
  28579. lucarioBack: {
  28580. height: math.unit(4, "feet"),
  28581. name: "Lucario (Back)",
  28582. image: {
  28583. source: "./media/characters/cat/lucario-back.svg",
  28584. extra: 1190/1059,
  28585. bottom: 33/1223
  28586. }
  28587. },
  28588. megaLucario: {
  28589. height: math.unit(4, "feet"),
  28590. name: "Mega Lucario",
  28591. image: {
  28592. source: "./media/characters/cat/mega-lucario.svg",
  28593. extra: 1515 / 1319,
  28594. bottom: 63 / 1578
  28595. }
  28596. },
  28597. nickit: {
  28598. height: math.unit(2, "feet"),
  28599. name: "Nickit",
  28600. image: {
  28601. source: "./media/characters/cat/nickit.svg",
  28602. extra: 1980 / 1585,
  28603. bottom: 102 / 2082
  28604. }
  28605. },
  28606. lopunnyFront: {
  28607. height: math.unit(5, "feet"),
  28608. name: "Lopunny (Front)",
  28609. image: {
  28610. source: "./media/characters/cat/lopunny-front.svg",
  28611. extra: 1782 / 1469,
  28612. bottom: 38 / 1820
  28613. }
  28614. },
  28615. lopunnyBack: {
  28616. height: math.unit(5, "feet"),
  28617. name: "Lopunny (Back)",
  28618. image: {
  28619. source: "./media/characters/cat/lopunny-back.svg",
  28620. extra: 1660 / 1490,
  28621. bottom: 25 / 1685
  28622. }
  28623. },
  28624. },
  28625. [
  28626. {
  28627. name: "Really small",
  28628. height: math.unit(1, "nm")
  28629. },
  28630. {
  28631. name: "Micro",
  28632. height: math.unit(5, "inches")
  28633. },
  28634. {
  28635. name: "Normal",
  28636. height: math.unit(5 + 6 / 12, "feet"),
  28637. default: true
  28638. },
  28639. {
  28640. name: "Macro",
  28641. height: math.unit(50, "feet")
  28642. },
  28643. {
  28644. name: "Macro+",
  28645. height: math.unit(150, "feet")
  28646. },
  28647. {
  28648. name: "Megamacro",
  28649. height: math.unit(100, "miles")
  28650. },
  28651. ]
  28652. ))
  28653. characterMakers.push(() => makeCharacter(
  28654. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  28655. {
  28656. front: {
  28657. height: math.unit(63.4, "meters"),
  28658. weight: math.unit(3.28349e+6, "kilograms"),
  28659. name: "Front",
  28660. image: {
  28661. source: "./media/characters/kirina-violet/front.svg",
  28662. extra: 2812 / 2725,
  28663. bottom: 0 / 2812
  28664. }
  28665. },
  28666. back: {
  28667. height: math.unit(63.4, "meters"),
  28668. weight: math.unit(3.28349e+6, "kilograms"),
  28669. name: "Back",
  28670. image: {
  28671. source: "./media/characters/kirina-violet/back.svg",
  28672. extra: 2812 / 2725,
  28673. bottom: 0 / 2812
  28674. }
  28675. },
  28676. mouth: {
  28677. height: math.unit(4.35, "meters"),
  28678. name: "Mouth",
  28679. image: {
  28680. source: "./media/characters/kirina-violet/mouth.svg"
  28681. }
  28682. },
  28683. paw: {
  28684. height: math.unit(5.6, "meters"),
  28685. name: "Paw",
  28686. image: {
  28687. source: "./media/characters/kirina-violet/paw.svg"
  28688. }
  28689. },
  28690. tail: {
  28691. height: math.unit(18, "meters"),
  28692. name: "Tail",
  28693. image: {
  28694. source: "./media/characters/kirina-violet/tail.svg"
  28695. }
  28696. },
  28697. },
  28698. [
  28699. {
  28700. name: "Macro",
  28701. height: math.unit(63.4, "meters"),
  28702. default: true
  28703. },
  28704. ]
  28705. ))
  28706. characterMakers.push(() => makeCharacter(
  28707. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  28708. {
  28709. front: {
  28710. height: math.unit(75, "feet"),
  28711. name: "Front",
  28712. image: {
  28713. source: "./media/characters/cat-gigachu/front.svg",
  28714. extra: 1239/1027,
  28715. bottom: 32/1271
  28716. }
  28717. },
  28718. back: {
  28719. height: math.unit(75, "feet"),
  28720. name: "Back",
  28721. image: {
  28722. source: "./media/characters/cat-gigachu/back.svg",
  28723. extra: 1229/1030,
  28724. bottom: 9/1238
  28725. }
  28726. },
  28727. },
  28728. [
  28729. {
  28730. name: "Dynamax",
  28731. height: math.unit(75, "feet"),
  28732. default: true
  28733. },
  28734. ]
  28735. ))
  28736. characterMakers.push(() => makeCharacter(
  28737. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  28738. {
  28739. front: {
  28740. height: math.unit(6, "feet"),
  28741. weight: math.unit(150, "lb"),
  28742. name: "Front",
  28743. image: {
  28744. source: "./media/characters/sfaiyan/front.svg",
  28745. extra: 999 / 978,
  28746. bottom: 5 / 1004
  28747. }
  28748. },
  28749. },
  28750. [
  28751. {
  28752. name: "Normal",
  28753. height: math.unit(1.82, "meters")
  28754. },
  28755. {
  28756. name: "Giant",
  28757. height: math.unit(2.27, "km"),
  28758. default: true
  28759. },
  28760. ]
  28761. ))
  28762. characterMakers.push(() => makeCharacter(
  28763. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  28764. {
  28765. front: {
  28766. height: math.unit(179, "cm"),
  28767. weight: math.unit(100, "kg"),
  28768. name: "Front",
  28769. image: {
  28770. source: "./media/characters/raunehkeli/front.svg",
  28771. extra: 1934 / 1926,
  28772. bottom: 0 / 1934
  28773. }
  28774. },
  28775. },
  28776. [
  28777. {
  28778. name: "Normal",
  28779. height: math.unit(179, "cm")
  28780. },
  28781. {
  28782. name: "Maximum",
  28783. height: math.unit(575, "meters"),
  28784. default: true
  28785. },
  28786. ]
  28787. ))
  28788. characterMakers.push(() => makeCharacter(
  28789. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  28790. {
  28791. front: {
  28792. height: math.unit(6, "feet"),
  28793. weight: math.unit(150, "lb"),
  28794. name: "Front",
  28795. image: {
  28796. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  28797. extra: 2625 / 2518,
  28798. bottom: 60 / 2685
  28799. }
  28800. },
  28801. },
  28802. [
  28803. {
  28804. name: "Normal",
  28805. height: math.unit(6 + 2 / 12, "feet")
  28806. },
  28807. {
  28808. name: "Macro",
  28809. height: math.unit(1180, "feet"),
  28810. default: true
  28811. },
  28812. ]
  28813. ))
  28814. characterMakers.push(() => makeCharacter(
  28815. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  28816. {
  28817. front: {
  28818. height: math.unit(5 + 6 / 12, "feet"),
  28819. weight: math.unit(108, "lb"),
  28820. name: "Front",
  28821. image: {
  28822. source: "./media/characters/lilith-zott/front.svg",
  28823. extra: 2510 / 2238,
  28824. bottom: 100 / 2610
  28825. }
  28826. },
  28827. frontDressed: {
  28828. height: math.unit(5 + 6 / 12, "feet"),
  28829. weight: math.unit(108, "lb"),
  28830. name: "Front (Dressed)",
  28831. image: {
  28832. source: "./media/characters/lilith-zott/front-dressed.svg",
  28833. extra: 2510 / 2238,
  28834. bottom: 100 / 2610
  28835. }
  28836. },
  28837. },
  28838. [
  28839. {
  28840. name: "Normal",
  28841. height: math.unit(5 + 6 / 12, "feet")
  28842. },
  28843. {
  28844. name: "Macro",
  28845. height: math.unit(1030, "feet"),
  28846. default: true
  28847. },
  28848. ]
  28849. ))
  28850. characterMakers.push(() => makeCharacter(
  28851. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  28852. {
  28853. front: {
  28854. height: math.unit(6, "feet"),
  28855. weight: math.unit(150, "lb"),
  28856. name: "Front",
  28857. image: {
  28858. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  28859. extra: 2567 / 2435,
  28860. bottom: 39 / 2606
  28861. }
  28862. },
  28863. frontSuper: {
  28864. height: math.unit(6, "feet"),
  28865. name: "Front (Super)",
  28866. image: {
  28867. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  28868. extra: 2567 / 2435,
  28869. bottom: 39 / 2606
  28870. }
  28871. },
  28872. },
  28873. [
  28874. {
  28875. name: "Normal",
  28876. height: math.unit(5 + 10 / 12, "feet")
  28877. },
  28878. {
  28879. name: "Macro",
  28880. height: math.unit(1100, "feet"),
  28881. default: true
  28882. },
  28883. ]
  28884. ))
  28885. characterMakers.push(() => makeCharacter(
  28886. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  28887. {
  28888. front: {
  28889. height: math.unit(100, "miles"),
  28890. name: "Front",
  28891. image: {
  28892. source: "./media/characters/sona/front.svg",
  28893. extra: 2433 / 2201,
  28894. bottom: 53 / 2486
  28895. }
  28896. },
  28897. foot: {
  28898. height: math.unit(16.1, "miles"),
  28899. name: "Foot",
  28900. image: {
  28901. source: "./media/characters/sona/foot.svg"
  28902. }
  28903. },
  28904. },
  28905. [
  28906. {
  28907. name: "Macro",
  28908. height: math.unit(100, "miles"),
  28909. default: true
  28910. },
  28911. ]
  28912. ))
  28913. characterMakers.push(() => makeCharacter(
  28914. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  28915. {
  28916. front: {
  28917. height: math.unit(6, "feet"),
  28918. weight: math.unit(150, "lb"),
  28919. name: "Front",
  28920. image: {
  28921. source: "./media/characters/bailey/front.svg",
  28922. extra: 1778 / 1724,
  28923. bottom: 30 / 1808
  28924. }
  28925. },
  28926. },
  28927. [
  28928. {
  28929. name: "Micro",
  28930. height: math.unit(4, "inches")
  28931. },
  28932. {
  28933. name: "Normal",
  28934. height: math.unit(5 + 5 / 12, "feet"),
  28935. default: true
  28936. },
  28937. {
  28938. name: "Macro",
  28939. height: math.unit(250, "feet")
  28940. },
  28941. {
  28942. name: "Megamacro",
  28943. height: math.unit(100, "miles")
  28944. },
  28945. ]
  28946. ))
  28947. characterMakers.push(() => makeCharacter(
  28948. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  28949. {
  28950. front: {
  28951. height: math.unit(5 + 2 / 12, "feet"),
  28952. weight: math.unit(120, "lb"),
  28953. name: "Front",
  28954. image: {
  28955. source: "./media/characters/snaps/front.svg",
  28956. extra: 2370 / 2177,
  28957. bottom: 48 / 2418
  28958. }
  28959. },
  28960. back: {
  28961. height: math.unit(5 + 2 / 12, "feet"),
  28962. weight: math.unit(120, "lb"),
  28963. name: "Back",
  28964. image: {
  28965. source: "./media/characters/snaps/back.svg",
  28966. extra: 2408 / 2258,
  28967. bottom: 15 / 2423
  28968. }
  28969. },
  28970. },
  28971. [
  28972. {
  28973. name: "Micro",
  28974. height: math.unit(9, "inches")
  28975. },
  28976. {
  28977. name: "Normal",
  28978. height: math.unit(5 + 2 / 12, "feet"),
  28979. default: true
  28980. },
  28981. {
  28982. name: "Mini Macro",
  28983. height: math.unit(10, "feet")
  28984. },
  28985. ]
  28986. ))
  28987. characterMakers.push(() => makeCharacter(
  28988. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  28989. {
  28990. front: {
  28991. height: math.unit(1.8, "meters"),
  28992. weight: math.unit(85, "kg"),
  28993. name: "Front",
  28994. image: {
  28995. source: "./media/characters/azteck/front.svg",
  28996. extra: 2815 / 2625,
  28997. bottom: 89 / 2904
  28998. }
  28999. },
  29000. back: {
  29001. height: math.unit(1.8, "meters"),
  29002. weight: math.unit(85, "kg"),
  29003. name: "Back",
  29004. image: {
  29005. source: "./media/characters/azteck/back.svg",
  29006. extra: 2856 / 2648,
  29007. bottom: 85 / 2941
  29008. }
  29009. },
  29010. frontDressed: {
  29011. height: math.unit(1.8, "meters"),
  29012. weight: math.unit(85, "kg"),
  29013. name: "Front (Dressed)",
  29014. image: {
  29015. source: "./media/characters/azteck/front-dressed.svg",
  29016. extra: 2147 / 2003,
  29017. bottom: 68 / 2215
  29018. }
  29019. },
  29020. head: {
  29021. height: math.unit(0.47, "meters"),
  29022. weight: math.unit(85, "kg"),
  29023. name: "Head",
  29024. image: {
  29025. source: "./media/characters/azteck/head.svg"
  29026. }
  29027. },
  29028. },
  29029. [
  29030. {
  29031. name: "Bite sized",
  29032. height: math.unit(16, "cm")
  29033. },
  29034. {
  29035. name: "Normal",
  29036. height: math.unit(1.8, "meters"),
  29037. default: true
  29038. },
  29039. ]
  29040. ))
  29041. characterMakers.push(() => makeCharacter(
  29042. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  29043. {
  29044. front: {
  29045. height: math.unit(6, "feet"),
  29046. weight: math.unit(150, "lb"),
  29047. name: "Front",
  29048. image: {
  29049. source: "./media/characters/pidge/front.svg",
  29050. extra: 620 / 588,
  29051. bottom: 9 / 629
  29052. }
  29053. },
  29054. back: {
  29055. height: math.unit(6, "feet"),
  29056. weight: math.unit(150, "lb"),
  29057. name: "Back",
  29058. image: {
  29059. source: "./media/characters/pidge/back.svg",
  29060. extra: 620 / 588,
  29061. bottom: 9 / 629
  29062. }
  29063. },
  29064. },
  29065. [
  29066. {
  29067. name: "Macro",
  29068. height: math.unit(1, "mile"),
  29069. default: true
  29070. },
  29071. ]
  29072. ))
  29073. characterMakers.push(() => makeCharacter(
  29074. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  29075. {
  29076. front: {
  29077. height: math.unit(6, "feet"),
  29078. weight: math.unit(150, "lb"),
  29079. name: "Front",
  29080. image: {
  29081. source: "./media/characters/en/front.svg",
  29082. extra: 1697 / 1563,
  29083. bottom: 103 / 1800
  29084. }
  29085. },
  29086. back: {
  29087. height: math.unit(6, "feet"),
  29088. weight: math.unit(150, "lb"),
  29089. name: "Back",
  29090. image: {
  29091. source: "./media/characters/en/back.svg",
  29092. extra: 1700 / 1570,
  29093. bottom: 51 / 1751
  29094. }
  29095. },
  29096. frontDressed: {
  29097. height: math.unit(6, "feet"),
  29098. weight: math.unit(150, "lb"),
  29099. name: "Front (Dressed)",
  29100. image: {
  29101. source: "./media/characters/en/front-dressed.svg",
  29102. extra: 1697 / 1563,
  29103. bottom: 103 / 1800
  29104. }
  29105. },
  29106. backDressed: {
  29107. height: math.unit(6, "feet"),
  29108. weight: math.unit(150, "lb"),
  29109. name: "Back (Dressed)",
  29110. image: {
  29111. source: "./media/characters/en/back-dressed.svg",
  29112. extra: 1700 / 1570,
  29113. bottom: 51 / 1751
  29114. }
  29115. },
  29116. },
  29117. [
  29118. {
  29119. name: "Macro",
  29120. height: math.unit(210, "feet"),
  29121. default: true
  29122. },
  29123. ]
  29124. ))
  29125. characterMakers.push(() => makeCharacter(
  29126. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  29127. {
  29128. front: {
  29129. height: math.unit(6, "feet"),
  29130. weight: math.unit(150, "lb"),
  29131. name: "Front",
  29132. image: {
  29133. source: "./media/characters/haze-orris/front.svg",
  29134. extra: 3975 / 3525,
  29135. bottom: 137 / 4112
  29136. }
  29137. },
  29138. },
  29139. [
  29140. {
  29141. name: "Micro",
  29142. height: math.unit(150, "mm"),
  29143. default: true
  29144. },
  29145. ]
  29146. ))
  29147. characterMakers.push(() => makeCharacter(
  29148. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  29149. {
  29150. front: {
  29151. height: math.unit(6, "feet"),
  29152. weight: math.unit(150, "lb"),
  29153. name: "Front",
  29154. image: {
  29155. source: "./media/characters/casselene-yaro/front.svg",
  29156. extra: 4721 / 4541,
  29157. bottom: 82 / 4803
  29158. }
  29159. },
  29160. back: {
  29161. height: math.unit(6, "feet"),
  29162. weight: math.unit(150, "lb"),
  29163. name: "Back",
  29164. image: {
  29165. source: "./media/characters/casselene-yaro/back.svg",
  29166. extra: 4569 / 4377,
  29167. bottom: 69 / 4638
  29168. }
  29169. },
  29170. frontDressed: {
  29171. height: math.unit(6, "feet"),
  29172. weight: math.unit(150, "lb"),
  29173. name: "Front-dressed",
  29174. image: {
  29175. source: "./media/characters/casselene-yaro/front-dressed.svg",
  29176. extra: 4721 / 4541,
  29177. bottom: 82 / 4803
  29178. }
  29179. },
  29180. },
  29181. [
  29182. {
  29183. name: "Macro",
  29184. height: math.unit(190, "feet"),
  29185. default: true
  29186. },
  29187. ]
  29188. ))
  29189. characterMakers.push(() => makeCharacter(
  29190. { name: "Myra Rue Delore", species: ["monster"], tags: ["anthro"] },
  29191. {
  29192. front: {
  29193. height: math.unit(6, "feet"),
  29194. weight: math.unit(150, "lb"),
  29195. name: "Front",
  29196. image: {
  29197. source: "./media/characters/myra-rue-delore/front.svg",
  29198. extra: 1340 / 1308,
  29199. bottom: 67 / 1407
  29200. }
  29201. },
  29202. back: {
  29203. height: math.unit(6, "feet"),
  29204. weight: math.unit(150, "lb"),
  29205. name: "Back",
  29206. image: {
  29207. source: "./media/characters/myra-rue-delore/back.svg",
  29208. extra: 1341 / 1310,
  29209. bottom: 40 / 1381
  29210. }
  29211. },
  29212. frontDressed: {
  29213. height: math.unit(6, "feet"),
  29214. weight: math.unit(150, "lb"),
  29215. name: "Front (Dressed)",
  29216. image: {
  29217. source: "./media/characters/myra-rue-delore/front-dressed.svg",
  29218. extra: 1340 / 1308,
  29219. bottom: 67 / 1407
  29220. }
  29221. },
  29222. },
  29223. [
  29224. {
  29225. name: "Macro",
  29226. height: math.unit(150, "feet"),
  29227. default: true
  29228. },
  29229. ]
  29230. ))
  29231. characterMakers.push(() => makeCharacter(
  29232. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  29233. {
  29234. front: {
  29235. height: math.unit(10, "feet"),
  29236. weight: math.unit(15015, "lb"),
  29237. name: "Front",
  29238. image: {
  29239. source: "./media/characters/fem!plat/front.svg",
  29240. extra: 2799 / 2604,
  29241. bottom: 149 / 2948
  29242. }
  29243. },
  29244. },
  29245. [
  29246. {
  29247. name: "Normal",
  29248. height: math.unit(10, "feet"),
  29249. default: true
  29250. },
  29251. {
  29252. name: "Macro",
  29253. height: math.unit(100, "feet")
  29254. },
  29255. {
  29256. name: "Megamacro",
  29257. height: math.unit(1000, "feet")
  29258. },
  29259. ]
  29260. ))
  29261. characterMakers.push(() => makeCharacter(
  29262. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  29263. {
  29264. front: {
  29265. height: math.unit(15 + 5 / 12, "feet"),
  29266. weight: math.unit(4600, "lb"),
  29267. name: "Front",
  29268. image: {
  29269. source: "./media/characters/neapolitan-ananassa/front.svg",
  29270. extra: 2903 / 2736,
  29271. bottom: 0 / 2903
  29272. }
  29273. },
  29274. side: {
  29275. height: math.unit(15 + 5 / 12, "feet"),
  29276. weight: math.unit(4600, "lb"),
  29277. name: "Side",
  29278. image: {
  29279. source: "./media/characters/neapolitan-ananassa/side.svg",
  29280. extra: 2925 / 2719,
  29281. bottom: 0 / 2925
  29282. }
  29283. },
  29284. back: {
  29285. height: math.unit(15 + 5 / 12, "feet"),
  29286. weight: math.unit(4600, "lb"),
  29287. name: "Back",
  29288. image: {
  29289. source: "./media/characters/neapolitan-ananassa/back.svg",
  29290. extra: 2903 / 2736,
  29291. bottom: 0 / 2903
  29292. }
  29293. },
  29294. },
  29295. [
  29296. {
  29297. name: "Normal",
  29298. height: math.unit(15 + 5 / 12, "feet"),
  29299. default: true
  29300. },
  29301. {
  29302. name: "Post-Millenium",
  29303. height: math.unit(35 + 5 / 12, "feet")
  29304. },
  29305. {
  29306. name: "Post-Era",
  29307. height: math.unit(450 + 5 / 12, "feet")
  29308. },
  29309. ]
  29310. ))
  29311. characterMakers.push(() => makeCharacter(
  29312. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  29313. {
  29314. front: {
  29315. height: math.unit(300, "meters"),
  29316. weight: math.unit(125000, "tonnes"),
  29317. name: "Front",
  29318. image: {
  29319. source: "./media/characters/pazuzu/front.svg",
  29320. extra: 877 / 794,
  29321. bottom: 47 / 924
  29322. }
  29323. },
  29324. },
  29325. [
  29326. {
  29327. name: "Macro",
  29328. height: math.unit(300, "meters"),
  29329. default: true
  29330. },
  29331. ]
  29332. ))
  29333. characterMakers.push(() => makeCharacter(
  29334. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  29335. {
  29336. side: {
  29337. height: math.unit(10 + 7 / 12, "feet"),
  29338. weight: math.unit(2.5, "tons"),
  29339. name: "Side",
  29340. image: {
  29341. source: "./media/characters/aasha/side.svg",
  29342. extra: 1345 / 1245,
  29343. bottom: 111 / 1456
  29344. }
  29345. },
  29346. back: {
  29347. height: math.unit(10 + 7 / 12, "feet"),
  29348. weight: math.unit(2.5, "tons"),
  29349. name: "Back",
  29350. image: {
  29351. source: "./media/characters/aasha/back.svg",
  29352. extra: 1133 / 1057,
  29353. bottom: 257 / 1390
  29354. }
  29355. },
  29356. },
  29357. [
  29358. {
  29359. name: "Normal",
  29360. height: math.unit(10 + 7 / 12, "feet"),
  29361. default: true
  29362. },
  29363. ]
  29364. ))
  29365. characterMakers.push(() => makeCharacter(
  29366. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  29367. {
  29368. front: {
  29369. height: math.unit(6 + 3 / 12, "feet"),
  29370. name: "Front",
  29371. image: {
  29372. source: "./media/characters/nevan/front.svg",
  29373. extra: 704 / 704,
  29374. bottom: 28 / 732
  29375. }
  29376. },
  29377. back: {
  29378. height: math.unit(6 + 3 / 12, "feet"),
  29379. name: "Back",
  29380. image: {
  29381. source: "./media/characters/nevan/back.svg",
  29382. extra: 714 / 714,
  29383. bottom: 21 / 735
  29384. }
  29385. },
  29386. frontFlaccid: {
  29387. height: math.unit(6 + 3 / 12, "feet"),
  29388. name: "Front (Flaccid)",
  29389. image: {
  29390. source: "./media/characters/nevan/front-flaccid.svg",
  29391. extra: 704 / 704,
  29392. bottom: 28 / 732
  29393. }
  29394. },
  29395. frontErect: {
  29396. height: math.unit(6 + 3 / 12, "feet"),
  29397. name: "Front (Erect)",
  29398. image: {
  29399. source: "./media/characters/nevan/front-erect.svg",
  29400. extra: 704 / 704,
  29401. bottom: 28 / 732
  29402. }
  29403. },
  29404. backFlaccid: {
  29405. height: math.unit(6 + 3 / 12, "feet"),
  29406. name: "Back (Flaccid)",
  29407. image: {
  29408. source: "./media/characters/nevan/back-flaccid.svg",
  29409. extra: 714 / 714,
  29410. bottom: 21 / 735
  29411. }
  29412. },
  29413. },
  29414. [
  29415. {
  29416. name: "Normal",
  29417. height: math.unit(6 + 3 / 12, "feet"),
  29418. default: true
  29419. },
  29420. ]
  29421. ))
  29422. characterMakers.push(() => makeCharacter(
  29423. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  29424. {
  29425. front: {
  29426. height: math.unit(4, "feet"),
  29427. name: "Front",
  29428. image: {
  29429. source: "./media/characters/arhan/front.svg",
  29430. extra: 3368 / 3133,
  29431. bottom: 0 / 3368
  29432. }
  29433. },
  29434. side: {
  29435. height: math.unit(4, "feet"),
  29436. name: "Side",
  29437. image: {
  29438. source: "./media/characters/arhan/side.svg",
  29439. extra: 3347 / 3105,
  29440. bottom: 0 / 3347
  29441. }
  29442. },
  29443. tongue: {
  29444. height: math.unit(1.42, "feet"),
  29445. name: "Tongue",
  29446. image: {
  29447. source: "./media/characters/arhan/tongue.svg"
  29448. }
  29449. },
  29450. head: {
  29451. height: math.unit(0.85, "feet"),
  29452. name: "Head",
  29453. image: {
  29454. source: "./media/characters/arhan/head.svg"
  29455. }
  29456. },
  29457. },
  29458. [
  29459. {
  29460. name: "Normal",
  29461. height: math.unit(4, "feet"),
  29462. default: true
  29463. },
  29464. ]
  29465. ))
  29466. characterMakers.push(() => makeCharacter(
  29467. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  29468. {
  29469. front: {
  29470. height: math.unit(5 + 7.5 / 12, "feet"),
  29471. weight: math.unit(120, "lb"),
  29472. name: "Front",
  29473. image: {
  29474. source: "./media/characters/digi-duncan/front.svg",
  29475. extra: 330 / 326,
  29476. bottom: 16 / 346
  29477. }
  29478. },
  29479. side: {
  29480. height: math.unit(5 + 7.5 / 12, "feet"),
  29481. weight: math.unit(120, "lb"),
  29482. name: "Side",
  29483. image: {
  29484. source: "./media/characters/digi-duncan/side.svg",
  29485. extra: 341 / 337,
  29486. bottom: 1 / 342
  29487. }
  29488. },
  29489. back: {
  29490. height: math.unit(5 + 7.5 / 12, "feet"),
  29491. weight: math.unit(120, "lb"),
  29492. name: "Back",
  29493. image: {
  29494. source: "./media/characters/digi-duncan/back.svg",
  29495. extra: 330 / 326,
  29496. bottom: 12 / 342
  29497. }
  29498. },
  29499. },
  29500. [
  29501. {
  29502. name: "Speck",
  29503. height: math.unit(0.25, "mm")
  29504. },
  29505. {
  29506. name: "Micro",
  29507. height: math.unit(5, "mm")
  29508. },
  29509. {
  29510. name: "Tiny",
  29511. height: math.unit(0.5, "inches"),
  29512. default: true
  29513. },
  29514. {
  29515. name: "Human",
  29516. height: math.unit(5 + 7.5 / 12, "feet")
  29517. },
  29518. {
  29519. name: "Minigiant",
  29520. height: math.unit(8 + 5.25, "feet")
  29521. },
  29522. {
  29523. name: "Giant",
  29524. height: math.unit(2000, "feet")
  29525. },
  29526. {
  29527. name: "Mega",
  29528. height: math.unit(371.1, "miles")
  29529. },
  29530. ]
  29531. ))
  29532. characterMakers.push(() => makeCharacter(
  29533. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  29534. {
  29535. front: {
  29536. height: math.unit(2, "meters"),
  29537. weight: math.unit(350, "kg"),
  29538. name: "Front",
  29539. image: {
  29540. source: "./media/characters/jagaz-soulbreaker/front.svg",
  29541. extra: 898 / 838,
  29542. bottom: 9 / 907
  29543. }
  29544. },
  29545. },
  29546. [
  29547. {
  29548. name: "Micro",
  29549. height: math.unit(8, "meters")
  29550. },
  29551. {
  29552. name: "Normal",
  29553. height: math.unit(50, "meters"),
  29554. default: true
  29555. },
  29556. {
  29557. name: "Macro",
  29558. height: math.unit(500, "meters")
  29559. },
  29560. ]
  29561. ))
  29562. characterMakers.push(() => makeCharacter(
  29563. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  29564. {
  29565. front: {
  29566. height: math.unit(6 + 6 / 12, "feet"),
  29567. name: "Front",
  29568. image: {
  29569. source: "./media/characters/khardesh/front.svg",
  29570. extra: 888 / 797,
  29571. bottom: 25 / 913
  29572. }
  29573. },
  29574. },
  29575. [
  29576. {
  29577. name: "Normal",
  29578. height: math.unit(6 + 6 / 12, "feet"),
  29579. default: true
  29580. },
  29581. {
  29582. name: "Normal+",
  29583. height: math.unit(4, "meters")
  29584. },
  29585. {
  29586. name: "Macro",
  29587. height: math.unit(50, "meters")
  29588. },
  29589. {
  29590. name: "Macro+",
  29591. height: math.unit(100, "meters")
  29592. },
  29593. {
  29594. name: "Megamacro",
  29595. height: math.unit(20, "km")
  29596. },
  29597. ]
  29598. ))
  29599. characterMakers.push(() => makeCharacter(
  29600. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  29601. {
  29602. front: {
  29603. height: math.unit(6, "feet"),
  29604. weight: math.unit(150, "lb"),
  29605. name: "Front",
  29606. image: {
  29607. source: "./media/characters/kosho/front.svg",
  29608. extra: 1847 / 1847,
  29609. bottom: 86 / 1933
  29610. }
  29611. },
  29612. },
  29613. [
  29614. {
  29615. name: "Second-stage micro",
  29616. height: math.unit(0.5, "inches")
  29617. },
  29618. {
  29619. name: "First-stage micro",
  29620. height: math.unit(6, "inches")
  29621. },
  29622. {
  29623. name: "Normal",
  29624. height: math.unit(6, "feet"),
  29625. default: true
  29626. },
  29627. {
  29628. name: "First-stage macro",
  29629. height: math.unit(72, "feet")
  29630. },
  29631. {
  29632. name: "Second-stage macro",
  29633. height: math.unit(864, "feet")
  29634. },
  29635. ]
  29636. ))
  29637. characterMakers.push(() => makeCharacter(
  29638. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  29639. {
  29640. normal: {
  29641. height: math.unit(4 + 6 / 12, "feet"),
  29642. name: "Normal",
  29643. image: {
  29644. source: "./media/characters/hydra/normal.svg",
  29645. extra: 2833 / 2634,
  29646. bottom: 68 / 2901
  29647. }
  29648. },
  29649. smol: {
  29650. height: math.unit(0.705, "inches"),
  29651. name: "Smol",
  29652. image: {
  29653. source: "./media/characters/hydra/smol.svg",
  29654. extra: 2715 / 2540,
  29655. bottom: 0 / 2715
  29656. }
  29657. },
  29658. },
  29659. [
  29660. {
  29661. name: "Normal",
  29662. height: math.unit(4 + 6 / 12, "feet"),
  29663. default: true
  29664. }
  29665. ]
  29666. ))
  29667. characterMakers.push(() => makeCharacter(
  29668. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  29669. {
  29670. front: {
  29671. height: math.unit(0.6, "cm"),
  29672. name: "Front",
  29673. image: {
  29674. source: "./media/characters/daz/front.svg",
  29675. extra: 1682 / 1164,
  29676. bottom: 42 / 1724
  29677. }
  29678. },
  29679. },
  29680. [
  29681. {
  29682. name: "Normal",
  29683. height: math.unit(0.6, "cm"),
  29684. default: true
  29685. },
  29686. ]
  29687. ))
  29688. characterMakers.push(() => makeCharacter(
  29689. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  29690. {
  29691. front: {
  29692. height: math.unit(6, "feet"),
  29693. weight: math.unit(235, "lb"),
  29694. name: "Front",
  29695. image: {
  29696. source: "./media/characters/theo-pangolin/front.svg",
  29697. extra: 1996 / 1969,
  29698. bottom: 115 / 2111
  29699. }
  29700. },
  29701. back: {
  29702. height: math.unit(6, "feet"),
  29703. weight: math.unit(235, "lb"),
  29704. name: "Back",
  29705. image: {
  29706. source: "./media/characters/theo-pangolin/back.svg",
  29707. extra: 1979 / 1979,
  29708. bottom: 40 / 2019
  29709. }
  29710. },
  29711. feral: {
  29712. height: math.unit(2, "feet"),
  29713. weight: math.unit(30, "lb"),
  29714. name: "Feral",
  29715. image: {
  29716. source: "./media/characters/theo-pangolin/feral.svg",
  29717. extra: 803 / 791,
  29718. bottom: 181 / 984
  29719. }
  29720. },
  29721. footFive: {
  29722. height: math.unit(1.43, "feet"),
  29723. name: "Foot (Five Toes)",
  29724. image: {
  29725. source: "./media/characters/theo-pangolin/foot-five.svg"
  29726. }
  29727. },
  29728. footFour: {
  29729. height: math.unit(1.43, "feet"),
  29730. name: "Foot (Four Toes)",
  29731. image: {
  29732. source: "./media/characters/theo-pangolin/foot-four.svg"
  29733. }
  29734. },
  29735. handFour: {
  29736. height: math.unit(0.81, "feet"),
  29737. name: "Hand (Four Fingers)",
  29738. image: {
  29739. source: "./media/characters/theo-pangolin/hand-four.svg"
  29740. }
  29741. },
  29742. handThree: {
  29743. height: math.unit(0.81, "feet"),
  29744. name: "Hand (Three Fingers)",
  29745. image: {
  29746. source: "./media/characters/theo-pangolin/hand-three.svg"
  29747. }
  29748. },
  29749. headFront: {
  29750. height: math.unit(1.37, "feet"),
  29751. name: "Head (Front)",
  29752. image: {
  29753. source: "./media/characters/theo-pangolin/head-front.svg"
  29754. }
  29755. },
  29756. headSide: {
  29757. height: math.unit(1.43, "feet"),
  29758. name: "Head (Side)",
  29759. image: {
  29760. source: "./media/characters/theo-pangolin/head-side.svg"
  29761. }
  29762. },
  29763. tongue: {
  29764. height: math.unit(2.29, "feet"),
  29765. name: "Tongue",
  29766. image: {
  29767. source: "./media/characters/theo-pangolin/tongue.svg"
  29768. }
  29769. },
  29770. },
  29771. [
  29772. {
  29773. name: "Normal",
  29774. height: math.unit(6, "feet")
  29775. },
  29776. {
  29777. name: "Macro",
  29778. height: math.unit(400, "feet"),
  29779. default: true
  29780. },
  29781. ]
  29782. ))
  29783. characterMakers.push(() => makeCharacter(
  29784. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  29785. {
  29786. front: {
  29787. height: math.unit(6, "inches"),
  29788. weight: math.unit(0.036, "kg"),
  29789. name: "Front",
  29790. image: {
  29791. source: "./media/characters/renée/front.svg",
  29792. extra: 900 / 886,
  29793. bottom: 8 / 908
  29794. }
  29795. },
  29796. },
  29797. [
  29798. {
  29799. name: "Nano",
  29800. height: math.unit(1, "nm")
  29801. },
  29802. {
  29803. name: "Micro",
  29804. height: math.unit(1, "mm")
  29805. },
  29806. {
  29807. name: "Normal",
  29808. height: math.unit(6, "inches")
  29809. },
  29810. {
  29811. name: "Macro",
  29812. height: math.unit(2000, "feet"),
  29813. default: true
  29814. },
  29815. {
  29816. name: "Megamacro",
  29817. height: math.unit(2, "km")
  29818. },
  29819. {
  29820. name: "Gigamacro",
  29821. height: math.unit(2000, "km")
  29822. },
  29823. {
  29824. name: "Teramacro",
  29825. height: math.unit(250000, "km")
  29826. },
  29827. ]
  29828. ))
  29829. characterMakers.push(() => makeCharacter(
  29830. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  29831. {
  29832. front: {
  29833. height: math.unit(4, "meters"),
  29834. weight: math.unit(150, "kg"),
  29835. name: "Front",
  29836. image: {
  29837. source: "./media/characters/caledvwlch/front.svg",
  29838. extra: 1760 / 1551,
  29839. bottom: 28 / 1788
  29840. }
  29841. },
  29842. side: {
  29843. height: math.unit(4, "meters"),
  29844. weight: math.unit(150, "kg"),
  29845. name: "Side",
  29846. image: {
  29847. source: "./media/characters/caledvwlch/side.svg",
  29848. extra: 1605 / 1536,
  29849. bottom: 31 / 1636
  29850. }
  29851. },
  29852. back: {
  29853. height: math.unit(4, "meters"),
  29854. weight: math.unit(150, "kg"),
  29855. name: "Back",
  29856. image: {
  29857. source: "./media/characters/caledvwlch/back.svg",
  29858. extra: 1635 / 1565,
  29859. bottom: 27 / 1662
  29860. }
  29861. },
  29862. },
  29863. [
  29864. {
  29865. name: "\"Incognito\"",
  29866. height: math.unit(4, "meters")
  29867. },
  29868. {
  29869. name: "Small rampage",
  29870. height: math.unit(600, "meters")
  29871. },
  29872. {
  29873. name: "Mega",
  29874. height: math.unit(30, "km")
  29875. },
  29876. {
  29877. name: "Home-size",
  29878. height: math.unit(50, "km"),
  29879. default: true
  29880. },
  29881. {
  29882. name: "Giga",
  29883. height: math.unit(300, "km")
  29884. },
  29885. {
  29886. name: "Lounging",
  29887. height: math.unit(11000, "km")
  29888. },
  29889. {
  29890. name: "Planet snacking",
  29891. height: math.unit(2000000, "km")
  29892. },
  29893. ]
  29894. ))
  29895. characterMakers.push(() => makeCharacter(
  29896. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  29897. {
  29898. front: {
  29899. height: math.unit(6, "feet"),
  29900. weight: math.unit(215, "lb"),
  29901. name: "Front",
  29902. image: {
  29903. source: "./media/characters/sapphire-svell/front.svg",
  29904. extra: 495 / 455,
  29905. bottom: 20 / 515
  29906. }
  29907. },
  29908. back: {
  29909. height: math.unit(6, "feet"),
  29910. weight: math.unit(216, "lb"),
  29911. name: "Back",
  29912. image: {
  29913. source: "./media/characters/sapphire-svell/back.svg",
  29914. extra: 497 / 477,
  29915. bottom: 7 / 504
  29916. }
  29917. },
  29918. maw: {
  29919. height: math.unit(1.57, "feet"),
  29920. name: "Maw",
  29921. image: {
  29922. source: "./media/characters/sapphire-svell/maw.svg"
  29923. }
  29924. },
  29925. foot: {
  29926. height: math.unit(1.07, "feet"),
  29927. name: "Foot",
  29928. image: {
  29929. source: "./media/characters/sapphire-svell/foot.svg"
  29930. }
  29931. },
  29932. toering: {
  29933. height: math.unit(1.7, "inch"),
  29934. name: "Toering",
  29935. image: {
  29936. source: "./media/characters/sapphire-svell/toering.svg"
  29937. }
  29938. },
  29939. },
  29940. [
  29941. {
  29942. name: "Normal",
  29943. height: math.unit(300, "feet"),
  29944. default: true
  29945. },
  29946. {
  29947. name: "Augmented",
  29948. height: math.unit(1250, "feet")
  29949. },
  29950. {
  29951. name: "Unleashed",
  29952. height: math.unit(3000, "feet")
  29953. },
  29954. ]
  29955. ))
  29956. characterMakers.push(() => makeCharacter(
  29957. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  29958. {
  29959. side: {
  29960. height: math.unit(2 + 3 / 12, "feet"),
  29961. weight: math.unit(110, "lb"),
  29962. name: "Side",
  29963. image: {
  29964. source: "./media/characters/glitch-flux/side.svg",
  29965. extra: 997 / 805,
  29966. bottom: 20 / 1017
  29967. }
  29968. },
  29969. },
  29970. [
  29971. {
  29972. name: "Normal",
  29973. height: math.unit(2 + 3 / 12, "feet"),
  29974. default: true
  29975. },
  29976. ]
  29977. ))
  29978. characterMakers.push(() => makeCharacter(
  29979. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  29980. {
  29981. front: {
  29982. height: math.unit(4, "meters"),
  29983. name: "Front",
  29984. image: {
  29985. source: "./media/characters/mid/front.svg",
  29986. extra: 507 / 476,
  29987. bottom: 17 / 524
  29988. }
  29989. },
  29990. back: {
  29991. height: math.unit(4, "meters"),
  29992. name: "Back",
  29993. image: {
  29994. source: "./media/characters/mid/back.svg",
  29995. extra: 519 / 487,
  29996. bottom: 7 / 526
  29997. }
  29998. },
  29999. stuck: {
  30000. height: math.unit(2.2, "meters"),
  30001. name: "Stuck",
  30002. image: {
  30003. source: "./media/characters/mid/stuck.svg",
  30004. extra: 1951 / 1869,
  30005. bottom: 88 / 2039
  30006. }
  30007. }
  30008. },
  30009. [
  30010. {
  30011. name: "Normal",
  30012. height: math.unit(4, "meters"),
  30013. default: true
  30014. },
  30015. {
  30016. name: "Big",
  30017. height: math.unit(10, "meters")
  30018. },
  30019. {
  30020. name: "Macro",
  30021. height: math.unit(800, "meters")
  30022. },
  30023. {
  30024. name: "Megamacro",
  30025. height: math.unit(100, "km")
  30026. },
  30027. {
  30028. name: "Overgrown",
  30029. height: math.unit(1, "parsec")
  30030. },
  30031. ]
  30032. ))
  30033. characterMakers.push(() => makeCharacter(
  30034. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  30035. {
  30036. front: {
  30037. height: math.unit(2.5, "meters"),
  30038. weight: math.unit(225, "kg"),
  30039. name: "Front",
  30040. image: {
  30041. source: "./media/characters/iris/front.svg",
  30042. extra: 3348 / 3251,
  30043. bottom: 205 / 3553
  30044. }
  30045. },
  30046. maw: {
  30047. height: math.unit(0.56, "meter"),
  30048. name: "Maw",
  30049. image: {
  30050. source: "./media/characters/iris/maw.svg"
  30051. }
  30052. },
  30053. },
  30054. [
  30055. {
  30056. name: "Mewter cat",
  30057. height: math.unit(1.2, "meters")
  30058. },
  30059. {
  30060. name: "Minimacro",
  30061. height: math.unit(2.5, "meters"),
  30062. default: true
  30063. },
  30064. {
  30065. name: "Macro",
  30066. height: math.unit(180, "meters")
  30067. },
  30068. {
  30069. name: "Megamacro",
  30070. height: math.unit(2746, "meters")
  30071. },
  30072. ]
  30073. ))
  30074. characterMakers.push(() => makeCharacter(
  30075. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  30076. {
  30077. front: {
  30078. height: math.unit(6, "feet"),
  30079. weight: math.unit(135, "lb"),
  30080. name: "Front",
  30081. image: {
  30082. source: "./media/characters/axel/front.svg",
  30083. extra: 908 / 908,
  30084. bottom: 58 / 966
  30085. }
  30086. },
  30087. side: {
  30088. height: math.unit(6, "feet"),
  30089. weight: math.unit(135, "lb"),
  30090. name: "Side",
  30091. image: {
  30092. source: "./media/characters/axel/side.svg",
  30093. extra: 958 / 958,
  30094. bottom: 11 / 969
  30095. }
  30096. },
  30097. back: {
  30098. height: math.unit(6, "feet"),
  30099. weight: math.unit(135, "lb"),
  30100. name: "Back",
  30101. image: {
  30102. source: "./media/characters/axel/back.svg",
  30103. extra: 887 / 887,
  30104. bottom: 34 / 921
  30105. }
  30106. },
  30107. head: {
  30108. height: math.unit(1.07, "feet"),
  30109. name: "Head",
  30110. image: {
  30111. source: "./media/characters/axel/head.svg"
  30112. }
  30113. },
  30114. beak: {
  30115. height: math.unit(1.4, "feet"),
  30116. name: "Beak",
  30117. image: {
  30118. source: "./media/characters/axel/beak.svg"
  30119. }
  30120. },
  30121. beakSide: {
  30122. height: math.unit(1.4, "feet"),
  30123. name: "Beak Side",
  30124. image: {
  30125. source: "./media/characters/axel/beak-side.svg"
  30126. }
  30127. },
  30128. sheath: {
  30129. height: math.unit(0.5, "feet"),
  30130. name: "Sheath",
  30131. image: {
  30132. source: "./media/characters/axel/sheath.svg"
  30133. }
  30134. },
  30135. dick: {
  30136. height: math.unit(0.98, "feet"),
  30137. name: "Dick",
  30138. image: {
  30139. source: "./media/characters/axel/dick.svg"
  30140. }
  30141. },
  30142. },
  30143. [
  30144. {
  30145. name: "Macro",
  30146. height: math.unit(68, "meters"),
  30147. default: true
  30148. },
  30149. ]
  30150. ))
  30151. characterMakers.push(() => makeCharacter(
  30152. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  30153. {
  30154. front: {
  30155. height: math.unit(3.5, "meters"),
  30156. weight: math.unit(1200, "kg"),
  30157. name: "Front",
  30158. image: {
  30159. source: "./media/characters/joanna/front.svg",
  30160. extra: 1596 / 1488,
  30161. bottom: 29 / 1625
  30162. }
  30163. },
  30164. back: {
  30165. height: math.unit(3.5, "meters"),
  30166. weight: math.unit(1200, "kg"),
  30167. name: "Back",
  30168. image: {
  30169. source: "./media/characters/joanna/back.svg",
  30170. extra: 1594 / 1495,
  30171. bottom: 26 / 1620
  30172. }
  30173. },
  30174. frontShorts: {
  30175. height: math.unit(3.5, "meters"),
  30176. weight: math.unit(1200, "kg"),
  30177. name: "Front (Shorts)",
  30178. image: {
  30179. source: "./media/characters/joanna/front-shorts.svg",
  30180. extra: 1596 / 1488,
  30181. bottom: 29 / 1625
  30182. }
  30183. },
  30184. frontBiker: {
  30185. height: math.unit(3.5, "meters"),
  30186. weight: math.unit(1200, "kg"),
  30187. name: "Front (Biker)",
  30188. image: {
  30189. source: "./media/characters/joanna/front-biker.svg",
  30190. extra: 1596 / 1488,
  30191. bottom: 29 / 1625
  30192. }
  30193. },
  30194. backBiker: {
  30195. height: math.unit(3.5, "meters"),
  30196. weight: math.unit(1200, "kg"),
  30197. name: "Back (Biker)",
  30198. image: {
  30199. source: "./media/characters/joanna/back-biker.svg",
  30200. extra: 1594 / 1495,
  30201. bottom: 88 / 1682
  30202. }
  30203. },
  30204. bikeLeft: {
  30205. height: math.unit(2.4, "meters"),
  30206. weight: math.unit(1600, "kg"),
  30207. name: "Bike (Left)",
  30208. image: {
  30209. source: "./media/characters/joanna/bike-left.svg",
  30210. extra: 720 / 720,
  30211. bottom: 8 / 728
  30212. }
  30213. },
  30214. bikeRight: {
  30215. height: math.unit(2.4, "meters"),
  30216. weight: math.unit(1600, "kg"),
  30217. name: "Bike (Right)",
  30218. image: {
  30219. source: "./media/characters/joanna/bike-right.svg",
  30220. extra: 720 / 720,
  30221. bottom: 8 / 728
  30222. }
  30223. },
  30224. },
  30225. [
  30226. {
  30227. name: "Incognito",
  30228. height: math.unit(3.5, "meters")
  30229. },
  30230. {
  30231. name: "Casual Big",
  30232. height: math.unit(200, "meters")
  30233. },
  30234. {
  30235. name: "Macro",
  30236. height: math.unit(600, "meters")
  30237. },
  30238. {
  30239. name: "Original",
  30240. height: math.unit(20, "km"),
  30241. default: true
  30242. },
  30243. {
  30244. name: "Giga",
  30245. height: math.unit(400, "km")
  30246. },
  30247. {
  30248. name: "Lounging",
  30249. height: math.unit(1500, "km")
  30250. },
  30251. {
  30252. name: "Planetary",
  30253. height: math.unit(200000, "km")
  30254. },
  30255. ]
  30256. ))
  30257. characterMakers.push(() => makeCharacter(
  30258. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  30259. {
  30260. front: {
  30261. height: math.unit(6, "feet"),
  30262. weight: math.unit(150, "lb"),
  30263. name: "Front",
  30264. image: {
  30265. source: "./media/characters/hugo-sigil/front.svg",
  30266. extra: 522 / 500,
  30267. bottom: 2 / 524
  30268. }
  30269. },
  30270. back: {
  30271. height: math.unit(6, "feet"),
  30272. weight: math.unit(150, "lb"),
  30273. name: "Back",
  30274. image: {
  30275. source: "./media/characters/hugo-sigil/back.svg",
  30276. extra: 519 / 495,
  30277. bottom: 5 / 524
  30278. }
  30279. },
  30280. maw: {
  30281. height: math.unit(1.4, "feet"),
  30282. weight: math.unit(150, "lb"),
  30283. name: "Maw",
  30284. image: {
  30285. source: "./media/characters/hugo-sigil/maw.svg"
  30286. }
  30287. },
  30288. feet: {
  30289. height: math.unit(1.56, "feet"),
  30290. weight: math.unit(150, "lb"),
  30291. name: "Feet",
  30292. image: {
  30293. source: "./media/characters/hugo-sigil/feet.svg",
  30294. extra: 177 / 177,
  30295. bottom: 12 / 189
  30296. }
  30297. },
  30298. },
  30299. [
  30300. {
  30301. name: "Normal",
  30302. height: math.unit(6, "feet")
  30303. },
  30304. {
  30305. name: "Macro",
  30306. height: math.unit(200, "feet"),
  30307. default: true
  30308. },
  30309. ]
  30310. ))
  30311. characterMakers.push(() => makeCharacter(
  30312. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  30313. {
  30314. front: {
  30315. height: math.unit(6, "feet"),
  30316. weight: math.unit(150, "lb"),
  30317. name: "Front",
  30318. image: {
  30319. source: "./media/characters/peri/front.svg",
  30320. extra: 2354 / 2233,
  30321. bottom: 49 / 2403
  30322. }
  30323. },
  30324. },
  30325. [
  30326. {
  30327. name: "Really Small",
  30328. height: math.unit(1, "nm")
  30329. },
  30330. {
  30331. name: "Micro",
  30332. height: math.unit(4, "inches")
  30333. },
  30334. {
  30335. name: "Normal",
  30336. height: math.unit(7, "inches"),
  30337. default: true
  30338. },
  30339. {
  30340. name: "Macro",
  30341. height: math.unit(400, "feet")
  30342. },
  30343. {
  30344. name: "Megamacro",
  30345. height: math.unit(100, "miles")
  30346. },
  30347. ]
  30348. ))
  30349. characterMakers.push(() => makeCharacter(
  30350. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  30351. {
  30352. frontSlim: {
  30353. height: math.unit(7, "feet"),
  30354. name: "Front (Slim)",
  30355. image: {
  30356. source: "./media/characters/issilora/front-slim.svg",
  30357. extra: 529 / 449,
  30358. bottom: 53 / 582
  30359. }
  30360. },
  30361. sideSlim: {
  30362. height: math.unit(7, "feet"),
  30363. name: "Side (Slim)",
  30364. image: {
  30365. source: "./media/characters/issilora/side-slim.svg",
  30366. extra: 570 / 480,
  30367. bottom: 30 / 600
  30368. }
  30369. },
  30370. backSlim: {
  30371. height: math.unit(7, "feet"),
  30372. name: "Back (Slim)",
  30373. image: {
  30374. source: "./media/characters/issilora/back-slim.svg",
  30375. extra: 537 / 455,
  30376. bottom: 46 / 583
  30377. }
  30378. },
  30379. frontBuff: {
  30380. height: math.unit(7, "feet"),
  30381. name: "Front (Buff)",
  30382. image: {
  30383. source: "./media/characters/issilora/front-buff.svg",
  30384. extra: 2310 / 2035,
  30385. bottom: 335 / 2645
  30386. }
  30387. },
  30388. head: {
  30389. height: math.unit(1.94, "feet"),
  30390. name: "Head",
  30391. image: {
  30392. source: "./media/characters/issilora/head.svg"
  30393. }
  30394. },
  30395. },
  30396. [
  30397. {
  30398. name: "Minimum",
  30399. height: math.unit(7, "feet")
  30400. },
  30401. {
  30402. name: "Comfortable",
  30403. height: math.unit(17, "feet")
  30404. },
  30405. {
  30406. name: "Fun Size",
  30407. height: math.unit(47, "feet")
  30408. },
  30409. {
  30410. name: "Natural Macro",
  30411. height: math.unit(137, "feet"),
  30412. default: true
  30413. },
  30414. {
  30415. name: "Maximum Kaiju",
  30416. height: math.unit(397, "feet")
  30417. },
  30418. ]
  30419. ))
  30420. characterMakers.push(() => makeCharacter(
  30421. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  30422. {
  30423. front: {
  30424. height: math.unit(50 + 9/12, "feet"),
  30425. weight: math.unit(32.8, "tons"),
  30426. name: "Front",
  30427. image: {
  30428. source: "./media/characters/irb'iiritaahn/front.svg",
  30429. extra: 1878/1826,
  30430. bottom: 326/2204
  30431. }
  30432. },
  30433. back: {
  30434. height: math.unit(50 + 9/12, "feet"),
  30435. weight: math.unit(32.8, "tons"),
  30436. name: "Back",
  30437. image: {
  30438. source: "./media/characters/irb'iiritaahn/back.svg",
  30439. extra: 2052/2018,
  30440. bottom: 152/2204
  30441. }
  30442. },
  30443. head: {
  30444. height: math.unit(12.86, "feet"),
  30445. name: "Head",
  30446. image: {
  30447. source: "./media/characters/irb'iiritaahn/head.svg"
  30448. }
  30449. },
  30450. maw: {
  30451. height: math.unit(9.66, "feet"),
  30452. name: "Maw",
  30453. image: {
  30454. source: "./media/characters/irb'iiritaahn/maw.svg"
  30455. }
  30456. },
  30457. frontDick: {
  30458. height: math.unit(8.78461, "feet"),
  30459. name: "Front Dick",
  30460. image: {
  30461. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  30462. }
  30463. },
  30464. rearDick: {
  30465. height: math.unit(8.78461, "feet"),
  30466. name: "Rear Dick",
  30467. image: {
  30468. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  30469. }
  30470. },
  30471. rearDickUnfolded: {
  30472. height: math.unit(8.78, "feet"),
  30473. name: "Rear Dick (Unfolded)",
  30474. image: {
  30475. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  30476. }
  30477. },
  30478. wings: {
  30479. height: math.unit(43, "feet"),
  30480. name: "Wings",
  30481. image: {
  30482. source: "./media/characters/irb'iiritaahn/wings.svg"
  30483. }
  30484. },
  30485. },
  30486. [
  30487. {
  30488. name: "Macro",
  30489. height: math.unit(50 + 9/12, "feet"),
  30490. default: true
  30491. },
  30492. ]
  30493. ))
  30494. characterMakers.push(() => makeCharacter(
  30495. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  30496. {
  30497. front: {
  30498. height: math.unit(205, "cm"),
  30499. weight: math.unit(102, "kg"),
  30500. name: "Front",
  30501. image: {
  30502. source: "./media/characters/irbisgreif/front.svg",
  30503. extra: 785/706,
  30504. bottom: 13/798
  30505. }
  30506. },
  30507. back: {
  30508. height: math.unit(205, "cm"),
  30509. weight: math.unit(102, "kg"),
  30510. name: "Back",
  30511. image: {
  30512. source: "./media/characters/irbisgreif/back.svg",
  30513. extra: 713/701,
  30514. bottom: 26/739
  30515. }
  30516. },
  30517. frontDressed: {
  30518. height: math.unit(216, "cm"),
  30519. weight: math.unit(102, "kg"),
  30520. name: "Front-dressed",
  30521. image: {
  30522. source: "./media/characters/irbisgreif/front-dressed.svg",
  30523. extra: 902/776,
  30524. bottom: 14/916
  30525. }
  30526. },
  30527. sideDressed: {
  30528. height: math.unit(195, "cm"),
  30529. weight: math.unit(102, "kg"),
  30530. name: "Side-dressed",
  30531. image: {
  30532. source: "./media/characters/irbisgreif/side-dressed.svg",
  30533. extra: 788/688,
  30534. bottom: 21/809
  30535. }
  30536. },
  30537. backDressed: {
  30538. height: math.unit(216, "cm"),
  30539. weight: math.unit(102, "kg"),
  30540. name: "Back-dressed",
  30541. image: {
  30542. source: "./media/characters/irbisgreif/back-dressed.svg",
  30543. extra: 901/783,
  30544. bottom: 10/911
  30545. }
  30546. },
  30547. dick: {
  30548. height: math.unit(0.49, "feet"),
  30549. name: "Dick",
  30550. image: {
  30551. source: "./media/characters/irbisgreif/dick.svg"
  30552. }
  30553. },
  30554. wingTop: {
  30555. height: math.unit(1.93 , "feet"),
  30556. name: "Wing-top",
  30557. image: {
  30558. source: "./media/characters/irbisgreif/wing-top.svg"
  30559. }
  30560. },
  30561. wingBottom: {
  30562. height: math.unit(1.93 , "feet"),
  30563. name: "Wing-bottom",
  30564. image: {
  30565. source: "./media/characters/irbisgreif/wing-bottom.svg"
  30566. }
  30567. },
  30568. },
  30569. [
  30570. {
  30571. name: "Normal",
  30572. height: math.unit(216, "cm"),
  30573. default: true
  30574. },
  30575. ]
  30576. ))
  30577. characterMakers.push(() => makeCharacter(
  30578. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  30579. {
  30580. front: {
  30581. height: math.unit(6, "feet"),
  30582. weight: math.unit(150, "lb"),
  30583. name: "Front",
  30584. image: {
  30585. source: "./media/characters/pride/front.svg",
  30586. extra: 1299/1230,
  30587. bottom: 18/1317
  30588. }
  30589. },
  30590. },
  30591. [
  30592. {
  30593. name: "Normal",
  30594. height: math.unit(7, "feet")
  30595. },
  30596. {
  30597. name: "Mini-macro",
  30598. height: math.unit(11, "feet")
  30599. },
  30600. {
  30601. name: "Macro",
  30602. height: math.unit(15, "meters"),
  30603. default: true
  30604. },
  30605. {
  30606. name: "Macro+",
  30607. height: math.unit(40, "meters")
  30608. },
  30609. ]
  30610. ))
  30611. characterMakers.push(() => makeCharacter(
  30612. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  30613. {
  30614. front: {
  30615. height: math.unit(4 + 2 / 12, "feet"),
  30616. weight: math.unit(95, "lb"),
  30617. name: "Front",
  30618. image: {
  30619. source: "./media/characters/vaelophis-nyx/front.svg",
  30620. extra: 2532/2330,
  30621. bottom: 0/2532
  30622. }
  30623. },
  30624. back: {
  30625. height: math.unit(4 + 2 / 12, "feet"),
  30626. weight: math.unit(95, "lb"),
  30627. name: "Back",
  30628. image: {
  30629. source: "./media/characters/vaelophis-nyx/back.svg",
  30630. extra: 2484/2361,
  30631. bottom: 0/2484
  30632. }
  30633. },
  30634. feralSide: {
  30635. height: math.unit(2 + 1/12, "feet"),
  30636. weight: math.unit(20, "lb"),
  30637. name: "Feral (Side)",
  30638. image: {
  30639. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  30640. extra: 1721/1581,
  30641. bottom: 70/1791
  30642. }
  30643. },
  30644. feralLazing: {
  30645. height: math.unit(1.08, "feet"),
  30646. weight: math.unit(20, "lb"),
  30647. name: "Feral (Lazing)",
  30648. image: {
  30649. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  30650. extra: 822/822,
  30651. bottom: 248/1070
  30652. }
  30653. },
  30654. ear: {
  30655. height: math.unit(0.416, "feet"),
  30656. name: "Ear",
  30657. image: {
  30658. source: "./media/characters/vaelophis-nyx/ear.svg"
  30659. }
  30660. },
  30661. eye: {
  30662. height: math.unit(0.0748, "feet"),
  30663. name: "Eye",
  30664. image: {
  30665. source: "./media/characters/vaelophis-nyx/eye.svg"
  30666. }
  30667. },
  30668. mouth: {
  30669. height: math.unit(0.378, "feet"),
  30670. name: "Mouth",
  30671. image: {
  30672. source: "./media/characters/vaelophis-nyx/mouth.svg"
  30673. }
  30674. },
  30675. spade: {
  30676. height: math.unit(0.55, "feet"),
  30677. name: "Spade",
  30678. image: {
  30679. source: "./media/characters/vaelophis-nyx/spade.svg"
  30680. }
  30681. },
  30682. },
  30683. [
  30684. {
  30685. name: "Normal",
  30686. height: math.unit(4 + 2/12, "feet"),
  30687. default: true
  30688. },
  30689. ]
  30690. ))
  30691. characterMakers.push(() => makeCharacter(
  30692. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  30693. {
  30694. front: {
  30695. height: math.unit(7, "feet"),
  30696. weight: math.unit(231, "lb"),
  30697. name: "Front",
  30698. image: {
  30699. source: "./media/characters/flux/front.svg",
  30700. extra: 919/871,
  30701. bottom: 0/919
  30702. }
  30703. },
  30704. back: {
  30705. height: math.unit(7, "feet"),
  30706. weight: math.unit(231, "lb"),
  30707. name: "Back",
  30708. image: {
  30709. source: "./media/characters/flux/back.svg",
  30710. extra: 1040/992,
  30711. bottom: 0/1040
  30712. }
  30713. },
  30714. frontDressed: {
  30715. height: math.unit(7, "feet"),
  30716. weight: math.unit(231, "lb"),
  30717. name: "Front (Dressed)",
  30718. image: {
  30719. source: "./media/characters/flux/front-dressed.svg",
  30720. extra: 919/871,
  30721. bottom: 0/919
  30722. }
  30723. },
  30724. feralSide: {
  30725. height: math.unit(5, "feet"),
  30726. weight: math.unit(150, "lb"),
  30727. name: "Feral (Side)",
  30728. image: {
  30729. source: "./media/characters/flux/feral-side.svg",
  30730. extra: 598/528,
  30731. bottom: 28/626
  30732. }
  30733. },
  30734. head: {
  30735. height: math.unit(1.585, "feet"),
  30736. name: "Head",
  30737. image: {
  30738. source: "./media/characters/flux/head.svg"
  30739. }
  30740. },
  30741. headSide: {
  30742. height: math.unit(1.74, "feet"),
  30743. name: "Head (Side)",
  30744. image: {
  30745. source: "./media/characters/flux/head-side.svg"
  30746. }
  30747. },
  30748. headSideFire: {
  30749. height: math.unit(1.76, "feet"),
  30750. name: "Head (Side, Fire)",
  30751. image: {
  30752. source: "./media/characters/flux/head-side-fire.svg"
  30753. }
  30754. },
  30755. },
  30756. [
  30757. {
  30758. name: "Normal",
  30759. height: math.unit(7, "feet"),
  30760. default: true
  30761. },
  30762. ]
  30763. ))
  30764. characterMakers.push(() => makeCharacter(
  30765. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  30766. {
  30767. front: {
  30768. height: math.unit(9, "feet"),
  30769. weight: math.unit(1012, "lb"),
  30770. name: "Front",
  30771. image: {
  30772. source: "./media/characters/ulfra-lupae/front.svg",
  30773. extra: 1083/1011,
  30774. bottom: 67/1150
  30775. }
  30776. },
  30777. },
  30778. [
  30779. {
  30780. name: "Micro",
  30781. height: math.unit(6, "inches")
  30782. },
  30783. {
  30784. name: "Socializing",
  30785. height: math.unit(6 + 5/12, "feet")
  30786. },
  30787. {
  30788. name: "Normal",
  30789. height: math.unit(9, "feet"),
  30790. default: true
  30791. },
  30792. {
  30793. name: "Macro",
  30794. height: math.unit(150, "feet")
  30795. },
  30796. ]
  30797. ))
  30798. characterMakers.push(() => makeCharacter(
  30799. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  30800. {
  30801. front: {
  30802. height: math.unit(5 + 2/12, "feet"),
  30803. weight: math.unit(120, "lb"),
  30804. name: "Front",
  30805. image: {
  30806. source: "./media/characters/timber/front.svg",
  30807. extra: 2814/2705,
  30808. bottom: 181/2995
  30809. }
  30810. },
  30811. },
  30812. [
  30813. {
  30814. name: "Normal",
  30815. height: math.unit(5 + 2/12, "feet"),
  30816. default: true
  30817. },
  30818. ]
  30819. ))
  30820. characterMakers.push(() => makeCharacter(
  30821. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  30822. {
  30823. front: {
  30824. height: math.unit(5 + 7/12, "feet"),
  30825. weight: math.unit(220, "lb"),
  30826. name: "Front",
  30827. image: {
  30828. source: "./media/characters/nicki/front.svg",
  30829. extra: 453/419,
  30830. bottom: 7/460
  30831. }
  30832. },
  30833. frontAlt: {
  30834. height: math.unit(5 + 7/12, "feet"),
  30835. weight: math.unit(220, "lb"),
  30836. name: "Front-alt",
  30837. image: {
  30838. source: "./media/characters/nicki/front-alt.svg",
  30839. extra: 435/411,
  30840. bottom: 12/447
  30841. }
  30842. },
  30843. back: {
  30844. height: math.unit(5 + 7/12, "feet"),
  30845. weight: math.unit(220, "lb"),
  30846. name: "Back",
  30847. image: {
  30848. source: "./media/characters/nicki/back.svg",
  30849. extra: 440/413,
  30850. bottom: 19/459
  30851. }
  30852. },
  30853. taur: {
  30854. height: math.unit(7 + 6/12, "feet"),
  30855. weight: math.unit(700, "lb"),
  30856. name: "Taur",
  30857. image: {
  30858. source: "./media/characters/nicki/taur.svg",
  30859. extra: 975/773,
  30860. bottom: 0/975
  30861. }
  30862. },
  30863. frontNsfw: {
  30864. height: math.unit(5 + 7/12, "feet"),
  30865. weight: math.unit(220, "lb"),
  30866. name: "Front (NSFW)",
  30867. image: {
  30868. source: "./media/characters/nicki/front-nsfw.svg",
  30869. extra: 453/419,
  30870. bottom: 7/460
  30871. }
  30872. },
  30873. frontNsfwAlt: {
  30874. height: math.unit(5 + 7/12, "feet"),
  30875. weight: math.unit(220, "lb"),
  30876. name: "Front (Alt, NSFW)",
  30877. image: {
  30878. source: "./media/characters/nicki/front-alt-nsfw.svg",
  30879. extra: 435/411,
  30880. bottom: 12/447
  30881. }
  30882. },
  30883. backNsfw: {
  30884. height: math.unit(5 + 7/12, "feet"),
  30885. weight: math.unit(220, "lb"),
  30886. name: "Back (NSFW)",
  30887. image: {
  30888. source: "./media/characters/nicki/back-nsfw.svg",
  30889. extra: 440/413,
  30890. bottom: 19/459
  30891. }
  30892. },
  30893. head: {
  30894. height: math.unit(2.1, "feet"),
  30895. name: "Head",
  30896. image: {
  30897. source: "./media/characters/nicki/head.svg"
  30898. }
  30899. },
  30900. paw: {
  30901. height: math.unit(1.88, "feet"),
  30902. name: "Paw",
  30903. image: {
  30904. source: "./media/characters/nicki/paw.svg"
  30905. }
  30906. },
  30907. },
  30908. [
  30909. {
  30910. name: "Normal",
  30911. height: math.unit(5 + 7/12, "feet"),
  30912. default: true
  30913. },
  30914. ]
  30915. ))
  30916. characterMakers.push(() => makeCharacter(
  30917. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  30918. {
  30919. front: {
  30920. height: math.unit(7 + 10/12, "feet"),
  30921. weight: math.unit(3.5, "tons"),
  30922. name: "Front",
  30923. image: {
  30924. source: "./media/characters/lee/front.svg",
  30925. extra: 1773/1615,
  30926. bottom: 86/1859
  30927. }
  30928. },
  30929. hand: {
  30930. height: math.unit(1.78, "feet"),
  30931. name: "Hand",
  30932. image: {
  30933. source: "./media/characters/lee/hand.svg"
  30934. }
  30935. },
  30936. maw: {
  30937. height: math.unit(1.18, "feet"),
  30938. name: "Maw",
  30939. image: {
  30940. source: "./media/characters/lee/maw.svg"
  30941. }
  30942. },
  30943. },
  30944. [
  30945. {
  30946. name: "Normal",
  30947. height: math.unit(7 + 10/12, "feet"),
  30948. default: true
  30949. },
  30950. ]
  30951. ))
  30952. characterMakers.push(() => makeCharacter(
  30953. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  30954. {
  30955. front: {
  30956. height: math.unit(9, "feet"),
  30957. name: "Front",
  30958. image: {
  30959. source: "./media/characters/guti/front.svg",
  30960. extra: 4551/4355,
  30961. bottom: 123/4674
  30962. }
  30963. },
  30964. tongue: {
  30965. height: math.unit(1, "feet"),
  30966. name: "Tongue",
  30967. image: {
  30968. source: "./media/characters/guti/tongue.svg"
  30969. }
  30970. },
  30971. paw: {
  30972. height: math.unit(1.18, "feet"),
  30973. name: "Paw",
  30974. image: {
  30975. source: "./media/characters/guti/paw.svg"
  30976. }
  30977. },
  30978. },
  30979. [
  30980. {
  30981. name: "Normal",
  30982. height: math.unit(9, "feet"),
  30983. default: true
  30984. },
  30985. ]
  30986. ))
  30987. characterMakers.push(() => makeCharacter(
  30988. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  30989. {
  30990. side: {
  30991. height: math.unit(5, "meters"),
  30992. name: "Side",
  30993. image: {
  30994. source: "./media/characters/vesper/side.svg",
  30995. extra: 1605/1518,
  30996. bottom: 0/1605
  30997. }
  30998. },
  30999. },
  31000. [
  31001. {
  31002. name: "Small",
  31003. height: math.unit(5, "meters")
  31004. },
  31005. {
  31006. name: "Sage",
  31007. height: math.unit(100, "meters"),
  31008. default: true
  31009. },
  31010. {
  31011. name: "Fun Size",
  31012. height: math.unit(600, "meters")
  31013. },
  31014. {
  31015. name: "Goddess",
  31016. height: math.unit(20000, "km")
  31017. },
  31018. {
  31019. name: "Maximum",
  31020. height: math.unit(5, "galaxies")
  31021. },
  31022. ]
  31023. ))
  31024. characterMakers.push(() => makeCharacter(
  31025. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  31026. {
  31027. front: {
  31028. height: math.unit(6 + 3/12, "feet"),
  31029. weight: math.unit(190, "lb"),
  31030. name: "Front",
  31031. image: {
  31032. source: "./media/characters/gawain/front.svg",
  31033. extra: 2222/2139,
  31034. bottom: 90/2312
  31035. }
  31036. },
  31037. back: {
  31038. height: math.unit(6 + 3/12, "feet"),
  31039. weight: math.unit(190, "lb"),
  31040. name: "Back",
  31041. image: {
  31042. source: "./media/characters/gawain/back.svg",
  31043. extra: 2199/2111,
  31044. bottom: 73/2272
  31045. }
  31046. },
  31047. },
  31048. [
  31049. {
  31050. name: "Normal",
  31051. height: math.unit(6 + 3/12, "feet"),
  31052. default: true
  31053. },
  31054. ]
  31055. ))
  31056. characterMakers.push(() => makeCharacter(
  31057. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  31058. {
  31059. side: {
  31060. height: math.unit(3.5, "meters"),
  31061. weight: math.unit(16000, "lb"),
  31062. name: "Side",
  31063. image: {
  31064. source: "./media/characters/dascalti/side.svg",
  31065. extra: 392/273,
  31066. bottom: 47/439
  31067. }
  31068. },
  31069. breath: {
  31070. height: math.unit(7.4, "feet"),
  31071. name: "Breath",
  31072. image: {
  31073. source: "./media/characters/dascalti/breath.svg"
  31074. }
  31075. },
  31076. fed: {
  31077. height: math.unit(3.6, "meters"),
  31078. weight: math.unit(16000, "lb"),
  31079. name: "Fed",
  31080. image: {
  31081. source: "./media/characters/dascalti/fed.svg",
  31082. extra: 1419/820,
  31083. bottom: 95/1514
  31084. }
  31085. },
  31086. },
  31087. [
  31088. {
  31089. name: "Normal",
  31090. height: math.unit(3.5, "meters"),
  31091. default: true
  31092. },
  31093. ]
  31094. ))
  31095. characterMakers.push(() => makeCharacter(
  31096. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  31097. {
  31098. front: {
  31099. height: math.unit(3 + 5/12, "feet"),
  31100. name: "Front",
  31101. image: {
  31102. source: "./media/characters/mauve/front.svg",
  31103. extra: 1126/1033,
  31104. bottom: 65/1191
  31105. }
  31106. },
  31107. side: {
  31108. height: math.unit(3 + 5/12, "feet"),
  31109. name: "Side",
  31110. image: {
  31111. source: "./media/characters/mauve/side.svg",
  31112. extra: 1089/1001,
  31113. bottom: 29/1118
  31114. }
  31115. },
  31116. back: {
  31117. height: math.unit(3 + 5/12, "feet"),
  31118. name: "Back",
  31119. image: {
  31120. source: "./media/characters/mauve/back.svg",
  31121. extra: 1173/1053,
  31122. bottom: 109/1282
  31123. }
  31124. },
  31125. },
  31126. [
  31127. {
  31128. name: "Normal",
  31129. height: math.unit(3 + 5/12, "feet"),
  31130. default: true
  31131. },
  31132. ]
  31133. ))
  31134. characterMakers.push(() => makeCharacter(
  31135. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  31136. {
  31137. front: {
  31138. height: math.unit(6 + 3/12, "feet"),
  31139. weight: math.unit(430, "lb"),
  31140. name: "Front",
  31141. image: {
  31142. source: "./media/characters/carlos/front.svg",
  31143. extra: 1964/1913,
  31144. bottom: 70/2034
  31145. }
  31146. },
  31147. },
  31148. [
  31149. {
  31150. name: "Normal",
  31151. height: math.unit(6 + 3/12, "feet"),
  31152. default: true
  31153. },
  31154. ]
  31155. ))
  31156. characterMakers.push(() => makeCharacter(
  31157. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  31158. {
  31159. back: {
  31160. height: math.unit(5 + 10/12, "feet"),
  31161. weight: math.unit(200, "lb"),
  31162. name: "Back",
  31163. image: {
  31164. source: "./media/characters/jax/back.svg",
  31165. extra: 764/739,
  31166. bottom: 25/789
  31167. }
  31168. },
  31169. },
  31170. [
  31171. {
  31172. name: "Normal",
  31173. height: math.unit(5 + 10/12, "feet"),
  31174. default: true
  31175. },
  31176. ]
  31177. ))
  31178. characterMakers.push(() => makeCharacter(
  31179. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  31180. {
  31181. front: {
  31182. height: math.unit(8, "feet"),
  31183. weight: math.unit(250, "lb"),
  31184. name: "Front",
  31185. image: {
  31186. source: "./media/characters/eikthynir/front.svg",
  31187. extra: 1332/1166,
  31188. bottom: 82/1414
  31189. }
  31190. },
  31191. back: {
  31192. height: math.unit(8, "feet"),
  31193. weight: math.unit(250, "lb"),
  31194. name: "Back",
  31195. image: {
  31196. source: "./media/characters/eikthynir/back.svg",
  31197. extra: 1342/1190,
  31198. bottom: 19/1361
  31199. }
  31200. },
  31201. dick: {
  31202. height: math.unit(2.35, "feet"),
  31203. name: "Dick",
  31204. image: {
  31205. source: "./media/characters/eikthynir/dick.svg"
  31206. }
  31207. },
  31208. },
  31209. [
  31210. {
  31211. name: "Normal",
  31212. height: math.unit(8, "feet"),
  31213. default: true
  31214. },
  31215. ]
  31216. ))
  31217. characterMakers.push(() => makeCharacter(
  31218. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  31219. {
  31220. front: {
  31221. height: math.unit(99, "meters"),
  31222. weight: math.unit(13000, "tons"),
  31223. name: "Front",
  31224. image: {
  31225. source: "./media/characters/zlmos/front.svg",
  31226. extra: 2202/1992,
  31227. bottom: 315/2517
  31228. }
  31229. },
  31230. },
  31231. [
  31232. {
  31233. name: "Macro",
  31234. height: math.unit(99, "meters"),
  31235. default: true
  31236. },
  31237. ]
  31238. ))
  31239. characterMakers.push(() => makeCharacter(
  31240. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  31241. {
  31242. front: {
  31243. height: math.unit(6 + 5/12, "feet"),
  31244. name: "Front",
  31245. image: {
  31246. source: "./media/characters/purri/front.svg",
  31247. extra: 1698/1610,
  31248. bottom: 32/1730
  31249. }
  31250. },
  31251. frontAlt: {
  31252. height: math.unit(6 + 5/12, "feet"),
  31253. name: "Front (Alt)",
  31254. image: {
  31255. source: "./media/characters/purri/front-alt.svg",
  31256. extra: 450/420,
  31257. bottom: 26/476
  31258. }
  31259. },
  31260. boots: {
  31261. height: math.unit(5.5, "feet"),
  31262. name: "Boots",
  31263. image: {
  31264. source: "./media/characters/purri/boots.svg",
  31265. extra: 905/853,
  31266. bottom: 18/923
  31267. }
  31268. },
  31269. lying: {
  31270. height: math.unit(2, "feet"),
  31271. name: "Lying",
  31272. image: {
  31273. source: "./media/characters/purri/lying.svg",
  31274. extra: 940/843,
  31275. bottom: 146/1086
  31276. }
  31277. },
  31278. devious: {
  31279. height: math.unit(1.77, "feet"),
  31280. name: "Devious",
  31281. image: {
  31282. source: "./media/characters/purri/devious.svg",
  31283. extra: 1440/1155,
  31284. bottom: 147/1587
  31285. }
  31286. },
  31287. bean: {
  31288. height: math.unit(1.94, "feet"),
  31289. name: "Bean",
  31290. image: {
  31291. source: "./media/characters/purri/bean.svg"
  31292. }
  31293. },
  31294. },
  31295. [
  31296. {
  31297. name: "Micro",
  31298. height: math.unit(1, "mm")
  31299. },
  31300. {
  31301. name: "Normal",
  31302. height: math.unit(6 + 5/12, "feet"),
  31303. default: true
  31304. },
  31305. {
  31306. name: "Macro :3c",
  31307. height: math.unit(2, "miles")
  31308. },
  31309. ]
  31310. ))
  31311. characterMakers.push(() => makeCharacter(
  31312. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  31313. {
  31314. front: {
  31315. height: math.unit(6 + 2/12, "feet"),
  31316. weight: math.unit(250, "lb"),
  31317. name: "Front",
  31318. image: {
  31319. source: "./media/characters/moonlight/front.svg",
  31320. extra: 1044/908,
  31321. bottom: 56/1100
  31322. }
  31323. },
  31324. feral: {
  31325. height: math.unit(3 + 1/12, "feet"),
  31326. weight: math.unit(50, "kg"),
  31327. name: "Feral",
  31328. image: {
  31329. source: "./media/characters/moonlight/feral.svg",
  31330. extra: 3705/2791,
  31331. bottom: 145/3850
  31332. }
  31333. },
  31334. paw: {
  31335. height: math.unit(1, "feet"),
  31336. name: "Paw",
  31337. image: {
  31338. source: "./media/characters/moonlight/paw.svg"
  31339. }
  31340. },
  31341. paws: {
  31342. height: math.unit(0.98, "feet"),
  31343. name: "Paws",
  31344. image: {
  31345. source: "./media/characters/moonlight/paws.svg",
  31346. extra: 939/939,
  31347. bottom: 50/989
  31348. }
  31349. },
  31350. mouth: {
  31351. height: math.unit(0.48, "feet"),
  31352. name: "Mouth",
  31353. image: {
  31354. source: "./media/characters/moonlight/mouth.svg"
  31355. }
  31356. },
  31357. dick: {
  31358. height: math.unit(1.46, "feet"),
  31359. name: "Dick",
  31360. image: {
  31361. source: "./media/characters/moonlight/dick.svg"
  31362. }
  31363. },
  31364. },
  31365. [
  31366. {
  31367. name: "Normal",
  31368. height: math.unit(6 + 2/12, "feet"),
  31369. default: true
  31370. },
  31371. {
  31372. name: "Macro",
  31373. height: math.unit(300, "feet")
  31374. },
  31375. {
  31376. name: "Macro+",
  31377. height: math.unit(1, "mile")
  31378. },
  31379. {
  31380. name: "Mt. Moon",
  31381. height: math.unit(5, "miles")
  31382. },
  31383. {
  31384. name: "Megamacro",
  31385. height: math.unit(15, "miles")
  31386. },
  31387. ]
  31388. ))
  31389. characterMakers.push(() => makeCharacter(
  31390. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  31391. {
  31392. back: {
  31393. height: math.unit(6, "feet"),
  31394. weight: math.unit(150, "lb"),
  31395. name: "Back",
  31396. image: {
  31397. source: "./media/characters/sylen/back.svg",
  31398. extra: 1335/1273,
  31399. bottom: 107/1442
  31400. }
  31401. },
  31402. },
  31403. [
  31404. {
  31405. name: "Normal",
  31406. height: math.unit(5 + 5/12, "feet")
  31407. },
  31408. {
  31409. name: "Megamacro",
  31410. height: math.unit(3, "miles"),
  31411. default: true
  31412. },
  31413. ]
  31414. ))
  31415. characterMakers.push(() => makeCharacter(
  31416. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  31417. {
  31418. front: {
  31419. height: math.unit(6, "feet"),
  31420. weight: math.unit(190, "lb"),
  31421. name: "Front",
  31422. image: {
  31423. source: "./media/characters/huttser/front.svg",
  31424. extra: 1152/1058,
  31425. bottom: 23/1175
  31426. }
  31427. },
  31428. side: {
  31429. height: math.unit(6, "feet"),
  31430. weight: math.unit(190, "lb"),
  31431. name: "Side",
  31432. image: {
  31433. source: "./media/characters/huttser/side.svg",
  31434. extra: 1174/1065,
  31435. bottom: 18/1192
  31436. }
  31437. },
  31438. back: {
  31439. height: math.unit(6, "feet"),
  31440. weight: math.unit(190, "lb"),
  31441. name: "Back",
  31442. image: {
  31443. source: "./media/characters/huttser/back.svg",
  31444. extra: 1158/1056,
  31445. bottom: 12/1170
  31446. }
  31447. },
  31448. },
  31449. [
  31450. ]
  31451. ))
  31452. characterMakers.push(() => makeCharacter(
  31453. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  31454. {
  31455. side: {
  31456. height: math.unit(12 + 9/12, "feet"),
  31457. weight: math.unit(15000, "lb"),
  31458. name: "Side",
  31459. image: {
  31460. source: "./media/characters/faan/side.svg",
  31461. extra: 2747/2697,
  31462. bottom: 0/2747
  31463. }
  31464. },
  31465. front: {
  31466. height: math.unit(12 + 9/12, "feet"),
  31467. weight: math.unit(15000, "lb"),
  31468. name: "Front",
  31469. image: {
  31470. source: "./media/characters/faan/front.svg",
  31471. extra: 607/571,
  31472. bottom: 24/631
  31473. }
  31474. },
  31475. head: {
  31476. height: math.unit(2.85, "feet"),
  31477. name: "Head",
  31478. image: {
  31479. source: "./media/characters/faan/head.svg"
  31480. }
  31481. },
  31482. headAlt: {
  31483. height: math.unit(3.13, "feet"),
  31484. name: "Head-alt",
  31485. image: {
  31486. source: "./media/characters/faan/head-alt.svg"
  31487. }
  31488. },
  31489. },
  31490. [
  31491. {
  31492. name: "Normal",
  31493. height: math.unit(12 + 9/12, "feet"),
  31494. default: true
  31495. },
  31496. ]
  31497. ))
  31498. characterMakers.push(() => makeCharacter(
  31499. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  31500. {
  31501. front: {
  31502. height: math.unit(6, "feet"),
  31503. weight: math.unit(300, "lb"),
  31504. name: "Front",
  31505. image: {
  31506. source: "./media/characters/tanio/front.svg",
  31507. extra: 711/673,
  31508. bottom: 25/736
  31509. }
  31510. },
  31511. },
  31512. [
  31513. {
  31514. name: "Normal",
  31515. height: math.unit(6, "feet"),
  31516. default: true
  31517. },
  31518. ]
  31519. ))
  31520. characterMakers.push(() => makeCharacter(
  31521. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  31522. {
  31523. front: {
  31524. height: math.unit(3, "inches"),
  31525. name: "Front",
  31526. image: {
  31527. source: "./media/characters/noboru/front.svg",
  31528. extra: 1039/932,
  31529. bottom: 18/1057
  31530. }
  31531. },
  31532. },
  31533. [
  31534. {
  31535. name: "Micro",
  31536. height: math.unit(3, "inches"),
  31537. default: true
  31538. },
  31539. ]
  31540. ))
  31541. characterMakers.push(() => makeCharacter(
  31542. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  31543. {
  31544. front: {
  31545. height: math.unit(1.85, "meters"),
  31546. weight: math.unit(80, "kg"),
  31547. name: "Front",
  31548. image: {
  31549. source: "./media/characters/daniel-barrett/front.svg",
  31550. extra: 355/337,
  31551. bottom: 9/364
  31552. }
  31553. },
  31554. },
  31555. [
  31556. {
  31557. name: "Pico",
  31558. height: math.unit(0.0433, "mm")
  31559. },
  31560. {
  31561. name: "Nano",
  31562. height: math.unit(1.5, "mm")
  31563. },
  31564. {
  31565. name: "Micro",
  31566. height: math.unit(5.3, "cm"),
  31567. default: true
  31568. },
  31569. {
  31570. name: "Normal",
  31571. height: math.unit(1.85, "meters")
  31572. },
  31573. {
  31574. name: "Macro",
  31575. height: math.unit(64.7, "meters")
  31576. },
  31577. {
  31578. name: "Megamacro",
  31579. height: math.unit(2.26, "km")
  31580. },
  31581. {
  31582. name: "Gigamacro",
  31583. height: math.unit(79, "km")
  31584. },
  31585. {
  31586. name: "Teramacro",
  31587. height: math.unit(2765, "km")
  31588. },
  31589. {
  31590. name: "Petamacro",
  31591. height: math.unit(96678, "km")
  31592. },
  31593. ]
  31594. ))
  31595. characterMakers.push(() => makeCharacter(
  31596. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  31597. {
  31598. front: {
  31599. height: math.unit(30, "meters"),
  31600. weight: math.unit(400, "tons"),
  31601. name: "Front",
  31602. image: {
  31603. source: "./media/characters/zeel/front.svg",
  31604. extra: 2599/2599,
  31605. bottom: 226/2825
  31606. }
  31607. },
  31608. },
  31609. [
  31610. {
  31611. name: "Macro",
  31612. height: math.unit(30, "meters"),
  31613. default: true
  31614. },
  31615. ]
  31616. ))
  31617. characterMakers.push(() => makeCharacter(
  31618. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  31619. {
  31620. front: {
  31621. height: math.unit(6 + 7/12, "feet"),
  31622. weight: math.unit(210, "lb"),
  31623. name: "Front",
  31624. image: {
  31625. source: "./media/characters/tarn/front.svg",
  31626. extra: 3517/3220,
  31627. bottom: 91/3608
  31628. }
  31629. },
  31630. back: {
  31631. height: math.unit(6 + 7/12, "feet"),
  31632. weight: math.unit(210, "lb"),
  31633. name: "Back",
  31634. image: {
  31635. source: "./media/characters/tarn/back.svg",
  31636. extra: 3566/3241,
  31637. bottom: 34/3600
  31638. }
  31639. },
  31640. dick: {
  31641. height: math.unit(1.65, "feet"),
  31642. name: "Dick",
  31643. image: {
  31644. source: "./media/characters/tarn/dick.svg"
  31645. }
  31646. },
  31647. paw: {
  31648. height: math.unit(1.80, "feet"),
  31649. name: "Paw",
  31650. image: {
  31651. source: "./media/characters/tarn/paw.svg"
  31652. }
  31653. },
  31654. tongue: {
  31655. height: math.unit(0.97, "feet"),
  31656. name: "Tongue",
  31657. image: {
  31658. source: "./media/characters/tarn/tongue.svg"
  31659. }
  31660. },
  31661. },
  31662. [
  31663. {
  31664. name: "Micro",
  31665. height: math.unit(4, "inches")
  31666. },
  31667. {
  31668. name: "Normal",
  31669. height: math.unit(6 + 7/12, "feet"),
  31670. default: true
  31671. },
  31672. {
  31673. name: "Macro",
  31674. height: math.unit(300, "feet")
  31675. },
  31676. ]
  31677. ))
  31678. characterMakers.push(() => makeCharacter(
  31679. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  31680. {
  31681. front: {
  31682. height: math.unit(5 + 7/12, "feet"),
  31683. weight: math.unit(80, "kg"),
  31684. name: "Front",
  31685. image: {
  31686. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  31687. extra: 3023/2865,
  31688. bottom: 33/3056
  31689. }
  31690. },
  31691. back: {
  31692. height: math.unit(5 + 7/12, "feet"),
  31693. weight: math.unit(80, "kg"),
  31694. name: "Back",
  31695. image: {
  31696. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  31697. extra: 3020/2886,
  31698. bottom: 30/3050
  31699. }
  31700. },
  31701. dick: {
  31702. height: math.unit(0.98, "feet"),
  31703. name: "Dick",
  31704. image: {
  31705. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  31706. }
  31707. },
  31708. anatomy: {
  31709. height: math.unit(2.86, "feet"),
  31710. name: "Anatomy",
  31711. image: {
  31712. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  31713. }
  31714. },
  31715. },
  31716. [
  31717. {
  31718. name: "Really Small",
  31719. height: math.unit(2, "inches")
  31720. },
  31721. {
  31722. name: "Micro",
  31723. height: math.unit(5.583, "inches")
  31724. },
  31725. {
  31726. name: "Normal",
  31727. height: math.unit(5 + 7/12, "feet"),
  31728. default: true
  31729. },
  31730. {
  31731. name: "Macro",
  31732. height: math.unit(67, "feet")
  31733. },
  31734. {
  31735. name: "Megamacro",
  31736. height: math.unit(134, "feet")
  31737. },
  31738. ]
  31739. ))
  31740. characterMakers.push(() => makeCharacter(
  31741. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  31742. {
  31743. front: {
  31744. height: math.unit(9, "feet"),
  31745. weight: math.unit(120, "lb"),
  31746. name: "Front",
  31747. image: {
  31748. source: "./media/characters/sally/front.svg",
  31749. extra: 1506/1349,
  31750. bottom: 66/1572
  31751. }
  31752. },
  31753. },
  31754. [
  31755. {
  31756. name: "Normal",
  31757. height: math.unit(9, "feet"),
  31758. default: true
  31759. },
  31760. ]
  31761. ))
  31762. characterMakers.push(() => makeCharacter(
  31763. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  31764. {
  31765. front: {
  31766. height: math.unit(8, "feet"),
  31767. weight: math.unit(900, "lb"),
  31768. name: "Front",
  31769. image: {
  31770. source: "./media/characters/owen/front.svg",
  31771. extra: 1761/1657,
  31772. bottom: 74/1835
  31773. }
  31774. },
  31775. side: {
  31776. height: math.unit(8, "feet"),
  31777. weight: math.unit(900, "lb"),
  31778. name: "Side",
  31779. image: {
  31780. source: "./media/characters/owen/side.svg",
  31781. extra: 1797/1734,
  31782. bottom: 30/1827
  31783. }
  31784. },
  31785. back: {
  31786. height: math.unit(8, "feet"),
  31787. weight: math.unit(900, "lb"),
  31788. name: "Back",
  31789. image: {
  31790. source: "./media/characters/owen/back.svg",
  31791. extra: 1796/1706,
  31792. bottom: 59/1855
  31793. }
  31794. },
  31795. maw: {
  31796. height: math.unit(1.76, "feet"),
  31797. name: "Maw",
  31798. image: {
  31799. source: "./media/characters/owen/maw.svg"
  31800. }
  31801. },
  31802. },
  31803. [
  31804. {
  31805. name: "Normal",
  31806. height: math.unit(8, "feet"),
  31807. default: true
  31808. },
  31809. ]
  31810. ))
  31811. characterMakers.push(() => makeCharacter(
  31812. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  31813. {
  31814. front: {
  31815. height: math.unit(4, "feet"),
  31816. weight: math.unit(400, "lb"),
  31817. name: "Front",
  31818. image: {
  31819. source: "./media/characters/ryth/front.svg",
  31820. extra: 1920/1748,
  31821. bottom: 42/1962
  31822. }
  31823. },
  31824. back: {
  31825. height: math.unit(4, "feet"),
  31826. weight: math.unit(400, "lb"),
  31827. name: "Back",
  31828. image: {
  31829. source: "./media/characters/ryth/back.svg",
  31830. extra: 1897/1690,
  31831. bottom: 89/1986
  31832. }
  31833. },
  31834. mouth: {
  31835. height: math.unit(1.39, "feet"),
  31836. name: "Mouth",
  31837. image: {
  31838. source: "./media/characters/ryth/mouth.svg"
  31839. }
  31840. },
  31841. tailmaw: {
  31842. height: math.unit(1.23, "feet"),
  31843. name: "Tailmaw",
  31844. image: {
  31845. source: "./media/characters/ryth/tailmaw.svg"
  31846. }
  31847. },
  31848. goia: {
  31849. height: math.unit(12, "feet"),
  31850. weight: math.unit(10800, "lb"),
  31851. name: "Goia",
  31852. image: {
  31853. source: "./media/characters/ryth/goia.svg",
  31854. extra: 3450/3198,
  31855. bottom: 61/3511
  31856. }
  31857. },
  31858. },
  31859. [
  31860. {
  31861. name: "Normal",
  31862. height: math.unit(4, "feet"),
  31863. default: true
  31864. },
  31865. ]
  31866. ))
  31867. characterMakers.push(() => makeCharacter(
  31868. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  31869. {
  31870. front: {
  31871. height: math.unit(7, "feet"),
  31872. weight: math.unit(180, "lb"),
  31873. name: "Front",
  31874. image: {
  31875. source: "./media/characters/necrolance/front.svg",
  31876. extra: 1062/947,
  31877. bottom: 41/1103
  31878. }
  31879. },
  31880. back: {
  31881. height: math.unit(7, "feet"),
  31882. weight: math.unit(180, "lb"),
  31883. name: "Back",
  31884. image: {
  31885. source: "./media/characters/necrolance/back.svg",
  31886. extra: 1045/984,
  31887. bottom: 14/1059
  31888. }
  31889. },
  31890. wing: {
  31891. height: math.unit(2.67, "feet"),
  31892. name: "Wing",
  31893. image: {
  31894. source: "./media/characters/necrolance/wing.svg"
  31895. }
  31896. },
  31897. },
  31898. [
  31899. {
  31900. name: "Normal",
  31901. height: math.unit(7, "feet"),
  31902. default: true
  31903. },
  31904. ]
  31905. ))
  31906. characterMakers.push(() => makeCharacter(
  31907. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  31908. {
  31909. front: {
  31910. height: math.unit(76, "meters"),
  31911. weight: math.unit(30000, "tons"),
  31912. name: "Front",
  31913. image: {
  31914. source: "./media/characters/tyler/front.svg",
  31915. extra: 1640/1640,
  31916. bottom: 114/1754
  31917. }
  31918. },
  31919. },
  31920. [
  31921. {
  31922. name: "Macro",
  31923. height: math.unit(76, "meters"),
  31924. default: true
  31925. },
  31926. ]
  31927. ))
  31928. characterMakers.push(() => makeCharacter(
  31929. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  31930. {
  31931. front: {
  31932. height: math.unit(4 + 11/12, "feet"),
  31933. weight: math.unit(132, "lb"),
  31934. name: "Front",
  31935. image: {
  31936. source: "./media/characters/icey/front.svg",
  31937. extra: 2750/2550,
  31938. bottom: 33/2783
  31939. }
  31940. },
  31941. back: {
  31942. height: math.unit(4 + 11/12, "feet"),
  31943. weight: math.unit(132, "lb"),
  31944. name: "Back",
  31945. image: {
  31946. source: "./media/characters/icey/back.svg",
  31947. extra: 2624/2481,
  31948. bottom: 35/2659
  31949. }
  31950. },
  31951. },
  31952. [
  31953. {
  31954. name: "Normal",
  31955. height: math.unit(4 + 11/12, "feet"),
  31956. default: true
  31957. },
  31958. ]
  31959. ))
  31960. characterMakers.push(() => makeCharacter(
  31961. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  31962. {
  31963. front: {
  31964. height: math.unit(100, "feet"),
  31965. weight: math.unit(0, "lb"),
  31966. name: "Front",
  31967. image: {
  31968. source: "./media/characters/smile/front.svg",
  31969. extra: 2983/2912,
  31970. bottom: 162/3145
  31971. }
  31972. },
  31973. back: {
  31974. height: math.unit(100, "feet"),
  31975. weight: math.unit(0, "lb"),
  31976. name: "Back",
  31977. image: {
  31978. source: "./media/characters/smile/back.svg",
  31979. extra: 3143/3031,
  31980. bottom: 91/3234
  31981. }
  31982. },
  31983. head: {
  31984. height: math.unit(26.3, "feet"),
  31985. weight: math.unit(0, "lb"),
  31986. name: "Head",
  31987. image: {
  31988. source: "./media/characters/smile/head.svg"
  31989. }
  31990. },
  31991. collar: {
  31992. height: math.unit(5.3, "feet"),
  31993. weight: math.unit(0, "lb"),
  31994. name: "Collar",
  31995. image: {
  31996. source: "./media/characters/smile/collar.svg"
  31997. }
  31998. },
  31999. },
  32000. [
  32001. {
  32002. name: "Macro",
  32003. height: math.unit(100, "feet"),
  32004. default: true
  32005. },
  32006. ]
  32007. ))
  32008. characterMakers.push(() => makeCharacter(
  32009. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  32010. {
  32011. dragon: {
  32012. height: math.unit(26, "feet"),
  32013. weight: math.unit(36, "tons"),
  32014. name: "Dragon",
  32015. image: {
  32016. source: "./media/characters/arimphae/dragon.svg",
  32017. extra: 1574/983,
  32018. bottom: 357/1931
  32019. }
  32020. },
  32021. drake: {
  32022. height: math.unit(9, "feet"),
  32023. weight: math.unit(1.5, "tons"),
  32024. name: "Drake",
  32025. image: {
  32026. source: "./media/characters/arimphae/drake.svg",
  32027. extra: 1120/925,
  32028. bottom: 435/1555
  32029. }
  32030. },
  32031. },
  32032. [
  32033. {
  32034. name: "Small",
  32035. height: math.unit(26*5/9, "feet")
  32036. },
  32037. {
  32038. name: "Normal",
  32039. height: math.unit(26, "feet"),
  32040. default: true
  32041. },
  32042. ]
  32043. ))
  32044. characterMakers.push(() => makeCharacter(
  32045. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  32046. {
  32047. front: {
  32048. height: math.unit(8 + 9/12, "feet"),
  32049. name: "Front",
  32050. image: {
  32051. source: "./media/characters/xander/front.svg",
  32052. extra: 848/673,
  32053. bottom: 62/910
  32054. }
  32055. },
  32056. },
  32057. [
  32058. {
  32059. name: "Normal",
  32060. height: math.unit(8 + 9/12, "feet"),
  32061. default: true
  32062. },
  32063. {
  32064. name: "Gaze Grabber",
  32065. height: math.unit(13 + 8/12, "feet")
  32066. },
  32067. {
  32068. name: "Jaw Dropper",
  32069. height: math.unit(27, "feet")
  32070. },
  32071. {
  32072. name: "Show Stopper",
  32073. height: math.unit(136, "feet")
  32074. },
  32075. {
  32076. name: "Superstar",
  32077. height: math.unit(1.9e6, "miles")
  32078. },
  32079. ]
  32080. ))
  32081. characterMakers.push(() => makeCharacter(
  32082. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  32083. {
  32084. side: {
  32085. height: math.unit(2100, "feet"),
  32086. name: "Side",
  32087. image: {
  32088. source: "./media/characters/osiris/side.svg",
  32089. extra: 1105/939,
  32090. bottom: 167/1272
  32091. }
  32092. },
  32093. },
  32094. [
  32095. {
  32096. name: "Macro",
  32097. height: math.unit(2100, "feet"),
  32098. default: true
  32099. },
  32100. ]
  32101. ))
  32102. characterMakers.push(() => makeCharacter(
  32103. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  32104. {
  32105. front: {
  32106. height: math.unit(6 + 8/12, "feet"),
  32107. weight: math.unit(225, "lb"),
  32108. name: "Front",
  32109. image: {
  32110. source: "./media/characters/rhys-londe/front.svg",
  32111. extra: 2258/2141,
  32112. bottom: 188/2446
  32113. }
  32114. },
  32115. back: {
  32116. height: math.unit(6 + 8/12, "feet"),
  32117. weight: math.unit(225, "lb"),
  32118. name: "Back",
  32119. image: {
  32120. source: "./media/characters/rhys-londe/back.svg",
  32121. extra: 2237/2137,
  32122. bottom: 63/2300
  32123. }
  32124. },
  32125. frontNsfw: {
  32126. height: math.unit(6 + 8/12, "feet"),
  32127. weight: math.unit(225, "lb"),
  32128. name: "Front (NSFW)",
  32129. image: {
  32130. source: "./media/characters/rhys-londe/front-nsfw.svg",
  32131. extra: 2258/2141,
  32132. bottom: 188/2446
  32133. }
  32134. },
  32135. backNsfw: {
  32136. height: math.unit(6 + 8/12, "feet"),
  32137. weight: math.unit(225, "lb"),
  32138. name: "Back (NSFW)",
  32139. image: {
  32140. source: "./media/characters/rhys-londe/back-nsfw.svg",
  32141. extra: 2237/2137,
  32142. bottom: 63/2300
  32143. }
  32144. },
  32145. dick: {
  32146. height: math.unit(30, "inches"),
  32147. name: "Dick",
  32148. image: {
  32149. source: "./media/characters/rhys-londe/dick.svg"
  32150. }
  32151. },
  32152. maw: {
  32153. height: math.unit(1.6, "feet"),
  32154. name: "Maw",
  32155. image: {
  32156. source: "./media/characters/rhys-londe/maw.svg"
  32157. }
  32158. },
  32159. },
  32160. [
  32161. {
  32162. name: "Normal",
  32163. height: math.unit(6 + 8/12, "feet"),
  32164. default: true
  32165. },
  32166. ]
  32167. ))
  32168. characterMakers.push(() => makeCharacter(
  32169. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  32170. {
  32171. front: {
  32172. height: math.unit(3 + 10/12, "feet"),
  32173. weight: math.unit(90, "lb"),
  32174. name: "Front",
  32175. image: {
  32176. source: "./media/characters/taivas-ensim/front.svg",
  32177. extra: 1327/1216,
  32178. bottom: 96/1423
  32179. }
  32180. },
  32181. back: {
  32182. height: math.unit(3 + 10/12, "feet"),
  32183. weight: math.unit(90, "lb"),
  32184. name: "Back",
  32185. image: {
  32186. source: "./media/characters/taivas-ensim/back.svg",
  32187. extra: 1355/1247,
  32188. bottom: 11/1366
  32189. }
  32190. },
  32191. frontNsfw: {
  32192. height: math.unit(3 + 10/12, "feet"),
  32193. weight: math.unit(90, "lb"),
  32194. name: "Front (NSFW)",
  32195. image: {
  32196. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  32197. extra: 1327/1216,
  32198. bottom: 96/1423
  32199. }
  32200. },
  32201. backNsfw: {
  32202. height: math.unit(3 + 10/12, "feet"),
  32203. weight: math.unit(90, "lb"),
  32204. name: "Back (NSFW)",
  32205. image: {
  32206. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  32207. extra: 1355/1247,
  32208. bottom: 11/1366
  32209. }
  32210. },
  32211. },
  32212. [
  32213. {
  32214. name: "Normal",
  32215. height: math.unit(3 + 10/12, "feet"),
  32216. default: true
  32217. },
  32218. ]
  32219. ))
  32220. characterMakers.push(() => makeCharacter(
  32221. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  32222. {
  32223. front: {
  32224. height: math.unit(9 + 6/12, "feet"),
  32225. weight: math.unit(940, "lb"),
  32226. name: "Front",
  32227. image: {
  32228. source: "./media/characters/byliss/front.svg",
  32229. extra: 1327/1290,
  32230. bottom: 82/1409
  32231. }
  32232. },
  32233. back: {
  32234. height: math.unit(9 + 6/12, "feet"),
  32235. weight: math.unit(940, "lb"),
  32236. name: "Back",
  32237. image: {
  32238. source: "./media/characters/byliss/back.svg",
  32239. extra: 1376/1349,
  32240. bottom: 9/1385
  32241. }
  32242. },
  32243. frontNsfw: {
  32244. height: math.unit(9 + 6/12, "feet"),
  32245. weight: math.unit(940, "lb"),
  32246. name: "Front (NSFW)",
  32247. image: {
  32248. source: "./media/characters/byliss/front-nsfw.svg",
  32249. extra: 1327/1290,
  32250. bottom: 82/1409
  32251. }
  32252. },
  32253. backNsfw: {
  32254. height: math.unit(9 + 6/12, "feet"),
  32255. weight: math.unit(940, "lb"),
  32256. name: "Back (NSFW)",
  32257. image: {
  32258. source: "./media/characters/byliss/back-nsfw.svg",
  32259. extra: 1376/1349,
  32260. bottom: 9/1385
  32261. }
  32262. },
  32263. },
  32264. [
  32265. {
  32266. name: "Normal",
  32267. height: math.unit(9 + 6/12, "feet"),
  32268. default: true
  32269. },
  32270. ]
  32271. ))
  32272. characterMakers.push(() => makeCharacter(
  32273. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  32274. {
  32275. front: {
  32276. height: math.unit(5 + 2/12, "feet"),
  32277. weight: math.unit(200, "lb"),
  32278. name: "Front",
  32279. image: {
  32280. source: "./media/characters/noraly/front.svg",
  32281. extra: 4985/4773,
  32282. bottom: 150/5135
  32283. }
  32284. },
  32285. full: {
  32286. height: math.unit(5 + 2/12, "feet"),
  32287. weight: math.unit(164, "lb"),
  32288. name: "Full",
  32289. image: {
  32290. source: "./media/characters/noraly/full.svg",
  32291. extra: 1114/1059,
  32292. bottom: 35/1149
  32293. }
  32294. },
  32295. fuller: {
  32296. height: math.unit(5 + 2/12, "feet"),
  32297. weight: math.unit(230, "lb"),
  32298. name: "Fuller",
  32299. image: {
  32300. source: "./media/characters/noraly/fuller.svg",
  32301. extra: 1114/1059,
  32302. bottom: 35/1149
  32303. }
  32304. },
  32305. fullest: {
  32306. height: math.unit(5 + 2/12, "feet"),
  32307. weight: math.unit(300, "lb"),
  32308. name: "Fullest",
  32309. image: {
  32310. source: "./media/characters/noraly/fullest.svg",
  32311. extra: 1114/1059,
  32312. bottom: 35/1149
  32313. }
  32314. },
  32315. },
  32316. [
  32317. {
  32318. name: "Normal",
  32319. height: math.unit(5 + 2/12, "feet"),
  32320. default: true
  32321. },
  32322. ]
  32323. ))
  32324. characterMakers.push(() => makeCharacter(
  32325. { name: "Pera", species: ["snake"], tags: ["naga"] },
  32326. {
  32327. front: {
  32328. height: math.unit(5 + 2/12, "feet"),
  32329. weight: math.unit(210, "lb"),
  32330. name: "Front",
  32331. image: {
  32332. source: "./media/characters/pera/front.svg",
  32333. extra: 1560/1531,
  32334. bottom: 165/1725
  32335. }
  32336. },
  32337. back: {
  32338. height: math.unit(5 + 2/12, "feet"),
  32339. weight: math.unit(210, "lb"),
  32340. name: "Back",
  32341. image: {
  32342. source: "./media/characters/pera/back.svg",
  32343. extra: 1523/1493,
  32344. bottom: 152/1675
  32345. }
  32346. },
  32347. dick: {
  32348. height: math.unit(2.4, "feet"),
  32349. name: "Dick",
  32350. image: {
  32351. source: "./media/characters/pera/dick.svg"
  32352. }
  32353. },
  32354. },
  32355. [
  32356. {
  32357. name: "Normal",
  32358. height: math.unit(5 + 2/12, "feet"),
  32359. default: true
  32360. },
  32361. ]
  32362. ))
  32363. characterMakers.push(() => makeCharacter(
  32364. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  32365. {
  32366. front: {
  32367. height: math.unit(12, "feet"),
  32368. weight: math.unit(3200, "lb"),
  32369. name: "Front",
  32370. image: {
  32371. source: "./media/characters/julian/front.svg",
  32372. extra: 2962/2701,
  32373. bottom: 184/3146
  32374. }
  32375. },
  32376. maw: {
  32377. height: math.unit(5.35, "feet"),
  32378. name: "Maw",
  32379. image: {
  32380. source: "./media/characters/julian/maw.svg"
  32381. }
  32382. },
  32383. paw: {
  32384. height: math.unit(3.07, "feet"),
  32385. name: "Paw",
  32386. image: {
  32387. source: "./media/characters/julian/paw.svg"
  32388. }
  32389. },
  32390. },
  32391. [
  32392. {
  32393. name: "Default",
  32394. height: math.unit(12, "feet"),
  32395. default: true
  32396. },
  32397. {
  32398. name: "Big",
  32399. height: math.unit(50, "feet")
  32400. },
  32401. {
  32402. name: "Really Big",
  32403. height: math.unit(1, "mile")
  32404. },
  32405. {
  32406. name: "Extremely Big",
  32407. height: math.unit(100, "miles")
  32408. },
  32409. {
  32410. name: "Planet Hugger",
  32411. height: math.unit(200, "megameters")
  32412. },
  32413. {
  32414. name: "Unreasonably Big",
  32415. height: math.unit(1e300, "meters")
  32416. },
  32417. ]
  32418. ))
  32419. characterMakers.push(() => makeCharacter(
  32420. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  32421. {
  32422. solgooleo: {
  32423. height: math.unit(4, "meters"),
  32424. weight: math.unit(6000*1.5, "kg"),
  32425. volume: math.unit(6000, "liters"),
  32426. name: "Solgooleo",
  32427. image: {
  32428. source: "./media/characters/pi/solgooleo.svg",
  32429. extra: 388/331,
  32430. bottom: 29/417
  32431. }
  32432. },
  32433. },
  32434. [
  32435. {
  32436. name: "Normal",
  32437. height: math.unit(4, "meters"),
  32438. default: true
  32439. },
  32440. ]
  32441. ))
  32442. characterMakers.push(() => makeCharacter(
  32443. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  32444. {
  32445. front: {
  32446. height: math.unit(8 + 2/12, "feet"),
  32447. weight: math.unit(4, "tons"),
  32448. name: "Front",
  32449. image: {
  32450. source: "./media/characters/shaun/front.svg",
  32451. extra: 1550/1505,
  32452. bottom: 353/1903
  32453. }
  32454. },
  32455. },
  32456. [
  32457. {
  32458. name: "Lorg",
  32459. height: math.unit(8 + 2/12, "feet"),
  32460. default: true
  32461. },
  32462. ]
  32463. ))
  32464. characterMakers.push(() => makeCharacter(
  32465. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  32466. {
  32467. front: {
  32468. height: math.unit(7, "feet"),
  32469. name: "Front",
  32470. image: {
  32471. source: "./media/characters/sini/front.svg",
  32472. extra: 726/678,
  32473. bottom: 35/761
  32474. }
  32475. },
  32476. back: {
  32477. height: math.unit(7, "feet"),
  32478. name: "Back",
  32479. image: {
  32480. source: "./media/characters/sini/back.svg",
  32481. extra: 743/701,
  32482. bottom: 12/755
  32483. }
  32484. },
  32485. mawAnthro: {
  32486. height: math.unit(2.14, "feet"),
  32487. name: "Maw (Anthro)",
  32488. image: {
  32489. source: "./media/characters/sini/maw-anthro.svg"
  32490. }
  32491. },
  32492. dick: {
  32493. height: math.unit(1.45, "feet"),
  32494. name: "Dick (Anthro)",
  32495. image: {
  32496. source: "./media/characters/sini/dick-anthro.svg"
  32497. }
  32498. },
  32499. feral: {
  32500. height: math.unit(16, "feet"),
  32501. name: "Feral",
  32502. image: {
  32503. source: "./media/characters/sini/feral.svg",
  32504. extra: 814/605,
  32505. bottom: 11/825
  32506. }
  32507. },
  32508. mawFeral: {
  32509. height: math.unit(5.66, "feet"),
  32510. name: "Maw-feral",
  32511. image: {
  32512. source: "./media/characters/sini/maw-feral.svg"
  32513. }
  32514. },
  32515. footFeral: {
  32516. height: math.unit(5.17, "feet"),
  32517. name: "Foot-feral",
  32518. image: {
  32519. source: "./media/characters/sini/foot-feral.svg"
  32520. }
  32521. },
  32522. },
  32523. [
  32524. {
  32525. name: "Normal",
  32526. height: math.unit(7, "feet"),
  32527. default: true
  32528. },
  32529. ]
  32530. ))
  32531. characterMakers.push(() => makeCharacter(
  32532. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  32533. {
  32534. side: {
  32535. height: math.unit(13, "meters"),
  32536. weight: math.unit(9072, "kg"),
  32537. name: "Side",
  32538. image: {
  32539. source: "./media/characters/raylldo/side.svg",
  32540. extra: 403/344,
  32541. bottom: 42/445
  32542. }
  32543. },
  32544. leaping: {
  32545. height: math.unit(12.3, "meters"),
  32546. weight: math.unit(9072, "kg"),
  32547. name: "Leaping",
  32548. image: {
  32549. source: "./media/characters/raylldo/leaping.svg",
  32550. extra: 470/249,
  32551. bottom: 13/483
  32552. }
  32553. },
  32554. flying: {
  32555. height: math.unit(18, "meters"),
  32556. weight: math.unit(9072, "kg"),
  32557. name: "Flying",
  32558. image: {
  32559. source: "./media/characters/raylldo/flying.svg"
  32560. }
  32561. },
  32562. head: {
  32563. height: math.unit(5.85, "meters"),
  32564. name: "Head",
  32565. image: {
  32566. source: "./media/characters/raylldo/head.svg"
  32567. }
  32568. },
  32569. maw: {
  32570. height: math.unit(5.32, "meters"),
  32571. name: "Maw",
  32572. image: {
  32573. source: "./media/characters/raylldo/maw.svg"
  32574. }
  32575. },
  32576. eye: {
  32577. height: math.unit(0.54, "meters"),
  32578. name: "Eye",
  32579. image: {
  32580. source: "./media/characters/raylldo/eye.svg"
  32581. }
  32582. },
  32583. },
  32584. [
  32585. {
  32586. name: "Normal",
  32587. height: math.unit(13, "meters"),
  32588. default: true
  32589. },
  32590. ]
  32591. ))
  32592. characterMakers.push(() => makeCharacter(
  32593. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  32594. {
  32595. anthroFront: {
  32596. height: math.unit(9, "feet"),
  32597. weight: math.unit(600, "lb"),
  32598. name: "Anthro (Front)",
  32599. image: {
  32600. source: "./media/characters/glint/anthro-front.svg",
  32601. extra: 1097/1018,
  32602. bottom: 28/1125
  32603. }
  32604. },
  32605. anthroBack: {
  32606. height: math.unit(9, "feet"),
  32607. weight: math.unit(600, "lb"),
  32608. name: "Anthro (Back)",
  32609. image: {
  32610. source: "./media/characters/glint/anthro-back.svg",
  32611. extra: 1154/997,
  32612. bottom: 36/1190
  32613. }
  32614. },
  32615. feral: {
  32616. height: math.unit(11, "feet"),
  32617. weight: math.unit(50000, "lb"),
  32618. name: "Feral",
  32619. image: {
  32620. source: "./media/characters/glint/feral.svg",
  32621. extra: 3035/1585,
  32622. bottom: 1169/4204
  32623. }
  32624. },
  32625. dickAnthro: {
  32626. height: math.unit(0.7, "meters"),
  32627. name: "Dick (Anthro)",
  32628. image: {
  32629. source: "./media/characters/glint/dick-anthro.svg"
  32630. }
  32631. },
  32632. dickFeral: {
  32633. height: math.unit(2.65, "meters"),
  32634. name: "Dick (Feral)",
  32635. image: {
  32636. source: "./media/characters/glint/dick-feral.svg"
  32637. }
  32638. },
  32639. slitHidden: {
  32640. height: math.unit(5.85, "meters"),
  32641. name: "Slit (Hidden)",
  32642. image: {
  32643. source: "./media/characters/glint/slit-hidden.svg"
  32644. }
  32645. },
  32646. slitErect: {
  32647. height: math.unit(5.85, "meters"),
  32648. name: "Slit (Erect)",
  32649. image: {
  32650. source: "./media/characters/glint/slit-erect.svg"
  32651. }
  32652. },
  32653. mawAnthro: {
  32654. height: math.unit(0.63, "meters"),
  32655. name: "Maw (Anthro)",
  32656. image: {
  32657. source: "./media/characters/glint/maw.svg"
  32658. }
  32659. },
  32660. mawFeral: {
  32661. height: math.unit(2.89, "meters"),
  32662. name: "Maw (Feral)",
  32663. image: {
  32664. source: "./media/characters/glint/maw.svg"
  32665. }
  32666. },
  32667. },
  32668. [
  32669. {
  32670. name: "Normal",
  32671. height: math.unit(9, "feet"),
  32672. default: true
  32673. },
  32674. ]
  32675. ))
  32676. characterMakers.push(() => makeCharacter(
  32677. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  32678. {
  32679. side: {
  32680. height: math.unit(15, "feet"),
  32681. weight: math.unit(5000, "kg"),
  32682. name: "Side",
  32683. image: {
  32684. source: "./media/characters/kairne/side.svg",
  32685. extra: 979/811,
  32686. bottom: 13/992
  32687. }
  32688. },
  32689. front: {
  32690. height: math.unit(15, "feet"),
  32691. weight: math.unit(5000, "kg"),
  32692. name: "Front",
  32693. image: {
  32694. source: "./media/characters/kairne/front.svg",
  32695. extra: 908/814,
  32696. bottom: 26/934
  32697. }
  32698. },
  32699. sideNsfw: {
  32700. height: math.unit(15, "feet"),
  32701. weight: math.unit(5000, "kg"),
  32702. name: "Side (NSFW)",
  32703. image: {
  32704. source: "./media/characters/kairne/side-nsfw.svg",
  32705. extra: 979/811,
  32706. bottom: 13/992
  32707. }
  32708. },
  32709. frontNsfw: {
  32710. height: math.unit(15, "feet"),
  32711. weight: math.unit(5000, "kg"),
  32712. name: "Front (NSFW)",
  32713. image: {
  32714. source: "./media/characters/kairne/front-nsfw.svg",
  32715. extra: 908/814,
  32716. bottom: 26/934
  32717. }
  32718. },
  32719. dickCaged: {
  32720. height: math.unit(0.65, "meters"),
  32721. name: "Dick-caged",
  32722. image: {
  32723. source: "./media/characters/kairne/dick-caged.svg"
  32724. }
  32725. },
  32726. dick: {
  32727. height: math.unit(0.79, "meters"),
  32728. name: "Dick",
  32729. image: {
  32730. source: "./media/characters/kairne/dick.svg"
  32731. }
  32732. },
  32733. genitals: {
  32734. height: math.unit(1.29, "meters"),
  32735. name: "Genitals",
  32736. image: {
  32737. source: "./media/characters/kairne/genitals.svg"
  32738. }
  32739. },
  32740. maw: {
  32741. height: math.unit(1.73, "meters"),
  32742. name: "Maw",
  32743. image: {
  32744. source: "./media/characters/kairne/maw.svg"
  32745. }
  32746. },
  32747. },
  32748. [
  32749. {
  32750. name: "Normal",
  32751. height: math.unit(15, "feet"),
  32752. default: true
  32753. },
  32754. ]
  32755. ))
  32756. characterMakers.push(() => makeCharacter(
  32757. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  32758. {
  32759. front: {
  32760. height: math.unit(5 + 8/12, "feet"),
  32761. weight: math.unit(139, "lb"),
  32762. name: "Front",
  32763. image: {
  32764. source: "./media/characters/biscuit-jackal/front.svg",
  32765. extra: 2106/1961,
  32766. bottom: 58/2164
  32767. }
  32768. },
  32769. back: {
  32770. height: math.unit(5 + 8/12, "feet"),
  32771. weight: math.unit(139, "lb"),
  32772. name: "Back",
  32773. image: {
  32774. source: "./media/characters/biscuit-jackal/back.svg",
  32775. extra: 2132/1976,
  32776. bottom: 57/2189
  32777. }
  32778. },
  32779. werejackal: {
  32780. height: math.unit(6 + 3/12, "feet"),
  32781. weight: math.unit(188, "lb"),
  32782. name: "Werejackal",
  32783. image: {
  32784. source: "./media/characters/biscuit-jackal/werejackal.svg",
  32785. extra: 2373/2178,
  32786. bottom: 53/2426
  32787. }
  32788. },
  32789. },
  32790. [
  32791. {
  32792. name: "Normal",
  32793. height: math.unit(5 + 8/12, "feet"),
  32794. default: true
  32795. },
  32796. ]
  32797. ))
  32798. characterMakers.push(() => makeCharacter(
  32799. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  32800. {
  32801. front: {
  32802. height: math.unit(140, "cm"),
  32803. weight: math.unit(45, "kg"),
  32804. name: "Front",
  32805. image: {
  32806. source: "./media/characters/tayra-white/front.svg",
  32807. extra: 2229/2192,
  32808. bottom: 75/2304
  32809. }
  32810. },
  32811. },
  32812. [
  32813. {
  32814. name: "Normal",
  32815. height: math.unit(140, "cm"),
  32816. default: true
  32817. },
  32818. ]
  32819. ))
  32820. characterMakers.push(() => makeCharacter(
  32821. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  32822. {
  32823. front: {
  32824. height: math.unit(4 + 5/12, "feet"),
  32825. name: "Front",
  32826. image: {
  32827. source: "./media/characters/scoop/front.svg",
  32828. extra: 1257/1136,
  32829. bottom: 69/1326
  32830. }
  32831. },
  32832. back: {
  32833. height: math.unit(4 + 5/12, "feet"),
  32834. name: "Back",
  32835. image: {
  32836. source: "./media/characters/scoop/back.svg",
  32837. extra: 1321/1152,
  32838. bottom: 32/1353
  32839. }
  32840. },
  32841. maw: {
  32842. height: math.unit(0.68, "feet"),
  32843. name: "Maw",
  32844. image: {
  32845. source: "./media/characters/scoop/maw.svg"
  32846. }
  32847. },
  32848. },
  32849. [
  32850. {
  32851. name: "Really Small",
  32852. height: math.unit(1, "mm")
  32853. },
  32854. {
  32855. name: "Micro",
  32856. height: math.unit(1, "inch")
  32857. },
  32858. {
  32859. name: "Normal",
  32860. height: math.unit(4 + 5/12, "feet"),
  32861. default: true
  32862. },
  32863. {
  32864. name: "Macro",
  32865. height: math.unit(200, "feet")
  32866. },
  32867. {
  32868. name: "Megamacro",
  32869. height: math.unit(3240, "feet")
  32870. },
  32871. {
  32872. name: "Teramacro",
  32873. height: math.unit(2500, "miles")
  32874. },
  32875. ]
  32876. ))
  32877. characterMakers.push(() => makeCharacter(
  32878. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  32879. {
  32880. front: {
  32881. height: math.unit(15 + 7/12, "feet"),
  32882. name: "Front",
  32883. image: {
  32884. source: "./media/characters/saphinara/front.svg",
  32885. extra: 604/546,
  32886. bottom: 19/623
  32887. }
  32888. },
  32889. side: {
  32890. height: math.unit(15 + 7/12, "feet"),
  32891. name: "Side",
  32892. image: {
  32893. source: "./media/characters/saphinara/side.svg",
  32894. extra: 605/547,
  32895. bottom: 6/611
  32896. }
  32897. },
  32898. back: {
  32899. height: math.unit(15 + 7/12, "feet"),
  32900. name: "Back",
  32901. image: {
  32902. source: "./media/characters/saphinara/back.svg",
  32903. extra: 591/531,
  32904. bottom: 13/604
  32905. }
  32906. },
  32907. frontTail: {
  32908. height: math.unit(15 + 7/12, "feet"),
  32909. name: "Front (Full Tail)",
  32910. image: {
  32911. source: "./media/characters/saphinara/front-tail.svg",
  32912. extra: 748/547,
  32913. bottom: 66/814
  32914. }
  32915. },
  32916. },
  32917. [
  32918. {
  32919. name: "Normal",
  32920. height: math.unit(15 + 7/12, "feet"),
  32921. default: true
  32922. },
  32923. {
  32924. name: "Angry",
  32925. height: math.unit(30 + 6/12, "feet")
  32926. },
  32927. {
  32928. name: "Enraged",
  32929. height: math.unit(102 + 1/12, "feet")
  32930. },
  32931. ]
  32932. ))
  32933. characterMakers.push(() => makeCharacter(
  32934. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  32935. {
  32936. front: {
  32937. height: math.unit(6 + 8/12, "feet"),
  32938. weight: math.unit(300, "lb"),
  32939. name: "Front",
  32940. image: {
  32941. source: "./media/characters/jrain/front.svg",
  32942. extra: 3039/2865,
  32943. bottom: 399/3438
  32944. }
  32945. },
  32946. back: {
  32947. height: math.unit(6 + 8/12, "feet"),
  32948. weight: math.unit(300, "lb"),
  32949. name: "Back",
  32950. image: {
  32951. source: "./media/characters/jrain/back.svg",
  32952. extra: 3089/2938,
  32953. bottom: 172/3261
  32954. }
  32955. },
  32956. head: {
  32957. height: math.unit(2.14, "feet"),
  32958. name: "Head",
  32959. image: {
  32960. source: "./media/characters/jrain/head.svg"
  32961. }
  32962. },
  32963. maw: {
  32964. height: math.unit(1.77, "feet"),
  32965. name: "Maw",
  32966. image: {
  32967. source: "./media/characters/jrain/maw.svg"
  32968. }
  32969. },
  32970. leftHand: {
  32971. height: math.unit(1.1, "feet"),
  32972. name: "Left Hand",
  32973. image: {
  32974. source: "./media/characters/jrain/left-hand.svg"
  32975. }
  32976. },
  32977. rightHand: {
  32978. height: math.unit(1.1, "feet"),
  32979. name: "Right Hand",
  32980. image: {
  32981. source: "./media/characters/jrain/right-hand.svg"
  32982. }
  32983. },
  32984. eye: {
  32985. height: math.unit(0.35, "feet"),
  32986. name: "Eye",
  32987. image: {
  32988. source: "./media/characters/jrain/eye.svg"
  32989. }
  32990. },
  32991. },
  32992. [
  32993. {
  32994. name: "Normal",
  32995. height: math.unit(6 + 8/12, "feet"),
  32996. default: true
  32997. },
  32998. {
  32999. name: "Casually Large",
  33000. height: math.unit(25, "feet")
  33001. },
  33002. {
  33003. name: "Giant",
  33004. height: math.unit(100, "feet")
  33005. },
  33006. {
  33007. name: "Kaiju",
  33008. height: math.unit(300, "feet")
  33009. },
  33010. ]
  33011. ))
  33012. characterMakers.push(() => makeCharacter(
  33013. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  33014. {
  33015. dragon: {
  33016. height: math.unit(5, "meters"),
  33017. name: "Dragon",
  33018. image: {
  33019. source: "./media/characters/sabrina/dragon.svg",
  33020. extra: 3670 / 2365,
  33021. bottom: 333 / 4003
  33022. }
  33023. },
  33024. gryphon: {
  33025. height: math.unit(3, "meters"),
  33026. name: "Gryphon",
  33027. image: {
  33028. source: "./media/characters/sabrina/gryphon.svg",
  33029. extra: 1576 / 945,
  33030. bottom: 71 / 1647
  33031. }
  33032. },
  33033. snake: {
  33034. height: math.unit(12, "meters"),
  33035. name: "Snake",
  33036. image: {
  33037. source: "./media/characters/sabrina/snake.svg",
  33038. extra: 1758 / 1320,
  33039. bottom: 186 / 1944
  33040. }
  33041. },
  33042. collar: {
  33043. height: math.unit(1.86, "meters"),
  33044. name: "Collar",
  33045. image: {
  33046. source: "./media/characters/sabrina/collar.svg"
  33047. }
  33048. },
  33049. eye: {
  33050. height: math.unit(0.53, "meters"),
  33051. name: "Eye",
  33052. image: {
  33053. source: "./media/characters/sabrina/eye.svg"
  33054. }
  33055. },
  33056. foot: {
  33057. height: math.unit(1.86, "meters"),
  33058. name: "Foot",
  33059. image: {
  33060. source: "./media/characters/sabrina/foot.svg"
  33061. }
  33062. },
  33063. hand: {
  33064. height: math.unit(1.32, "meters"),
  33065. name: "Hand",
  33066. image: {
  33067. source: "./media/characters/sabrina/hand.svg"
  33068. }
  33069. },
  33070. head: {
  33071. height: math.unit(2.44, "meters"),
  33072. name: "Head",
  33073. image: {
  33074. source: "./media/characters/sabrina/head.svg"
  33075. }
  33076. },
  33077. headAngry: {
  33078. height: math.unit(2.44, "meters"),
  33079. name: "Head (Angry))",
  33080. image: {
  33081. source: "./media/characters/sabrina/head-angry.svg"
  33082. }
  33083. },
  33084. maw: {
  33085. height: math.unit(1.65, "meters"),
  33086. name: "Maw",
  33087. image: {
  33088. source: "./media/characters/sabrina/maw.svg"
  33089. }
  33090. },
  33091. spikes: {
  33092. height: math.unit(1.69, "meters"),
  33093. name: "Spikes",
  33094. image: {
  33095. source: "./media/characters/sabrina/spikes.svg"
  33096. }
  33097. },
  33098. stomach: {
  33099. height: math.unit(1.15, "meters"),
  33100. name: "Stomach",
  33101. image: {
  33102. source: "./media/characters/sabrina/stomach.svg"
  33103. }
  33104. },
  33105. tongue: {
  33106. height: math.unit(1.27, "meters"),
  33107. name: "Tongue",
  33108. image: {
  33109. source: "./media/characters/sabrina/tongue.svg"
  33110. }
  33111. },
  33112. wingDorsal: {
  33113. height: math.unit(4.85, "meters"),
  33114. name: "Wing (Dorsal)",
  33115. image: {
  33116. source: "./media/characters/sabrina/wing-dorsal.svg"
  33117. }
  33118. },
  33119. wingVentral: {
  33120. height: math.unit(4.85, "meters"),
  33121. name: "Wing (Ventral)",
  33122. image: {
  33123. source: "./media/characters/sabrina/wing-ventral.svg"
  33124. }
  33125. },
  33126. },
  33127. [
  33128. {
  33129. name: "Normal",
  33130. height: math.unit(5, "meters"),
  33131. default: true
  33132. },
  33133. ]
  33134. ))
  33135. characterMakers.push(() => makeCharacter(
  33136. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  33137. {
  33138. frontMaid: {
  33139. height: math.unit(5 + 5/12, "feet"),
  33140. weight: math.unit(130, "lb"),
  33141. name: "Front (Maid)",
  33142. image: {
  33143. source: "./media/characters/midnight-tales/front-maid.svg",
  33144. extra: 489/454,
  33145. bottom: 61/550
  33146. }
  33147. },
  33148. frontFormal: {
  33149. height: math.unit(5 + 5/12, "feet"),
  33150. weight: math.unit(130, "lb"),
  33151. name: "Front (Formal)",
  33152. image: {
  33153. source: "./media/characters/midnight-tales/front-formal.svg",
  33154. extra: 489/454,
  33155. bottom: 61/550
  33156. }
  33157. },
  33158. back: {
  33159. height: math.unit(5 + 5/12, "feet"),
  33160. weight: math.unit(130, "lb"),
  33161. name: "Back",
  33162. image: {
  33163. source: "./media/characters/midnight-tales/back.svg",
  33164. extra: 498/456,
  33165. bottom: 33/531
  33166. }
  33167. },
  33168. frontBeast: {
  33169. height: math.unit(40, "feet"),
  33170. weight: math.unit(64000, "lb"),
  33171. name: "Front (Beast)",
  33172. image: {
  33173. source: "./media/characters/midnight-tales/front-beast.svg",
  33174. extra: 927/860,
  33175. bottom: 53/980
  33176. }
  33177. },
  33178. backBeast: {
  33179. height: math.unit(40, "feet"),
  33180. weight: math.unit(64000, "lb"),
  33181. name: "Back (Beast)",
  33182. image: {
  33183. source: "./media/characters/midnight-tales/back-beast.svg",
  33184. extra: 929/855,
  33185. bottom: 16/945
  33186. }
  33187. },
  33188. footBeast: {
  33189. height: math.unit(6.7, "feet"),
  33190. name: "Foot (Beast)",
  33191. image: {
  33192. source: "./media/characters/midnight-tales/foot-beast.svg"
  33193. }
  33194. },
  33195. headBeast: {
  33196. height: math.unit(8, "feet"),
  33197. name: "Head (Beast)",
  33198. image: {
  33199. source: "./media/characters/midnight-tales/head-beast.svg"
  33200. }
  33201. },
  33202. },
  33203. [
  33204. {
  33205. name: "Normal",
  33206. height: math.unit(5 + 5 / 12, "feet"),
  33207. default: true
  33208. },
  33209. {
  33210. name: "Macro",
  33211. height: math.unit(25, "feet")
  33212. },
  33213. ]
  33214. ))
  33215. characterMakers.push(() => makeCharacter(
  33216. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  33217. {
  33218. front: {
  33219. height: math.unit(5 + 10/12, "feet"),
  33220. name: "Front",
  33221. image: {
  33222. source: "./media/characters/argon/front.svg",
  33223. extra: 2009/1935,
  33224. bottom: 118/2127
  33225. }
  33226. },
  33227. back: {
  33228. height: math.unit(5 + 10/12, "feet"),
  33229. name: "Back",
  33230. image: {
  33231. source: "./media/characters/argon/back.svg",
  33232. extra: 2047/1992,
  33233. bottom: 20/2067
  33234. }
  33235. },
  33236. frontDressed: {
  33237. height: math.unit(5 + 10/12, "feet"),
  33238. name: "Front (Dressed)",
  33239. image: {
  33240. source: "./media/characters/argon/front-dressed.svg",
  33241. extra: 2009/1935,
  33242. bottom: 118/2127
  33243. }
  33244. },
  33245. },
  33246. [
  33247. {
  33248. name: "Normal",
  33249. height: math.unit(5 + 10/12, "feet"),
  33250. default: true
  33251. },
  33252. ]
  33253. ))
  33254. characterMakers.push(() => makeCharacter(
  33255. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  33256. {
  33257. front: {
  33258. height: math.unit(8 + 6/12, "feet"),
  33259. weight: math.unit(1150, "lb"),
  33260. name: "Front",
  33261. image: {
  33262. source: "./media/characters/kichi/front.svg",
  33263. extra: 1267/1164,
  33264. bottom: 61/1328
  33265. }
  33266. },
  33267. back: {
  33268. height: math.unit(8 + 6/12, "feet"),
  33269. weight: math.unit(1150, "lb"),
  33270. name: "Back",
  33271. image: {
  33272. source: "./media/characters/kichi/back.svg",
  33273. extra: 1273/1166,
  33274. bottom: 33/1306
  33275. }
  33276. },
  33277. },
  33278. [
  33279. {
  33280. name: "Normal",
  33281. height: math.unit(8 + 6/12, "feet"),
  33282. default: true
  33283. },
  33284. ]
  33285. ))
  33286. characterMakers.push(() => makeCharacter(
  33287. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  33288. {
  33289. front: {
  33290. height: math.unit(6, "feet"),
  33291. weight: math.unit(210, "lb"),
  33292. name: "Front",
  33293. image: {
  33294. source: "./media/characters/manetel-greyscale/front.svg",
  33295. extra: 350/312,
  33296. bottom: 8/358
  33297. }
  33298. },
  33299. },
  33300. [
  33301. {
  33302. name: "Micro",
  33303. height: math.unit(2, "inches")
  33304. },
  33305. {
  33306. name: "Normal",
  33307. height: math.unit(6, "feet"),
  33308. default: true
  33309. },
  33310. {
  33311. name: "Minimacro",
  33312. height: math.unit(17, "feet")
  33313. },
  33314. {
  33315. name: "Macro",
  33316. height: math.unit(117, "feet")
  33317. },
  33318. ]
  33319. ))
  33320. characterMakers.push(() => makeCharacter(
  33321. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  33322. {
  33323. side: {
  33324. height: math.unit(5 + 1/12, "feet"),
  33325. weight: math.unit(418, "lb"),
  33326. name: "Side",
  33327. image: {
  33328. source: "./media/characters/softpurr/side.svg",
  33329. extra: 1993/1945,
  33330. bottom: 134/2127
  33331. }
  33332. },
  33333. front: {
  33334. height: math.unit(5 + 1/12, "feet"),
  33335. weight: math.unit(418, "lb"),
  33336. name: "Front",
  33337. image: {
  33338. source: "./media/characters/softpurr/front.svg",
  33339. extra: 1950/1856,
  33340. bottom: 174/2124
  33341. }
  33342. },
  33343. paw: {
  33344. height: math.unit(1, "feet"),
  33345. name: "Paw",
  33346. image: {
  33347. source: "./media/characters/softpurr/paw.svg"
  33348. }
  33349. },
  33350. },
  33351. [
  33352. {
  33353. name: "Normal",
  33354. height: math.unit(5 + 1/12, "feet"),
  33355. default: true
  33356. },
  33357. ]
  33358. ))
  33359. characterMakers.push(() => makeCharacter(
  33360. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  33361. {
  33362. front: {
  33363. height: math.unit(260, "meters"),
  33364. name: "Front",
  33365. image: {
  33366. source: "./media/characters/anahita/front.svg",
  33367. extra: 665/635,
  33368. bottom: 89/754
  33369. }
  33370. },
  33371. },
  33372. [
  33373. {
  33374. name: "Macro",
  33375. height: math.unit(260, "meters"),
  33376. default: true
  33377. },
  33378. ]
  33379. ))
  33380. characterMakers.push(() => makeCharacter(
  33381. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  33382. {
  33383. front: {
  33384. height: math.unit(4 + 10/12, "feet"),
  33385. weight: math.unit(160, "lb"),
  33386. name: "Front",
  33387. image: {
  33388. source: "./media/characters/chip-mouse/front.svg",
  33389. extra: 3528/3408,
  33390. bottom: 0/3528
  33391. }
  33392. },
  33393. frontNsfw: {
  33394. height: math.unit(4 + 10/12, "feet"),
  33395. weight: math.unit(160, "lb"),
  33396. name: "Front (NSFW)",
  33397. image: {
  33398. source: "./media/characters/chip-mouse/front-nsfw.svg",
  33399. extra: 3528/3408,
  33400. bottom: 0/3528
  33401. }
  33402. },
  33403. },
  33404. [
  33405. {
  33406. name: "Normal",
  33407. height: math.unit(4 + 10/12, "feet"),
  33408. default: true
  33409. },
  33410. ]
  33411. ))
  33412. characterMakers.push(() => makeCharacter(
  33413. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  33414. {
  33415. side: {
  33416. height: math.unit(10, "feet"),
  33417. weight: math.unit(14000, "lb"),
  33418. name: "Side",
  33419. image: {
  33420. source: "./media/characters/kremm/side.svg",
  33421. extra: 1390/1053,
  33422. bottom: 90/1480
  33423. }
  33424. },
  33425. gut: {
  33426. height: math.unit(5.8, "feet"),
  33427. name: "Gut",
  33428. image: {
  33429. source: "./media/characters/kremm/gut.svg"
  33430. }
  33431. },
  33432. ass: {
  33433. height: math.unit(6.1, "feet"),
  33434. name: "Ass",
  33435. image: {
  33436. source: "./media/characters/kremm/ass.svg"
  33437. }
  33438. },
  33439. jaws: {
  33440. height: math.unit(2.2, "feet"),
  33441. name: "Jaws",
  33442. image: {
  33443. source: "./media/characters/kremm/jaws.svg"
  33444. }
  33445. },
  33446. dick: {
  33447. height: math.unit(4.26, "feet"),
  33448. name: "Dick",
  33449. image: {
  33450. source: "./media/characters/kremm/dick.svg"
  33451. }
  33452. },
  33453. },
  33454. [
  33455. {
  33456. name: "Normal",
  33457. height: math.unit(10, "feet"),
  33458. default: true
  33459. },
  33460. ]
  33461. ))
  33462. characterMakers.push(() => makeCharacter(
  33463. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  33464. {
  33465. front: {
  33466. height: math.unit(30, "stories"),
  33467. name: "Front",
  33468. image: {
  33469. source: "./media/characters/kai/front.svg",
  33470. extra: 1892/1718,
  33471. bottom: 162/2054
  33472. }
  33473. },
  33474. },
  33475. [
  33476. {
  33477. name: "Macro",
  33478. height: math.unit(30, "stories"),
  33479. default: true
  33480. },
  33481. ]
  33482. ))
  33483. characterMakers.push(() => makeCharacter(
  33484. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  33485. {
  33486. front: {
  33487. height: math.unit(6 + 4/12, "feet"),
  33488. weight: math.unit(145, "lb"),
  33489. name: "Front",
  33490. image: {
  33491. source: "./media/characters/sykes/front.svg",
  33492. extra: 1321 / 1187,
  33493. bottom: 66 / 1387
  33494. }
  33495. },
  33496. back: {
  33497. height: math.unit(6 + 4/12, "feet"),
  33498. weight: math.unit(145, "lb"),
  33499. name: "Back",
  33500. image: {
  33501. source: "./media/characters/sykes/back.svg",
  33502. extra: 1326/1181,
  33503. bottom: 31/1357
  33504. }
  33505. },
  33506. handBack: {
  33507. height: math.unit(0.9, "feet"),
  33508. name: "Hand (Back)",
  33509. image: {
  33510. source: "./media/characters/sykes/hand-back.svg"
  33511. }
  33512. },
  33513. handFront: {
  33514. height: math.unit(0.839, "feet"),
  33515. name: "Hand (Front)",
  33516. image: {
  33517. source: "./media/characters/sykes/hand-front.svg"
  33518. }
  33519. },
  33520. leftFoot: {
  33521. height: math.unit(1.2, "feet"),
  33522. name: "Foot (Left)",
  33523. image: {
  33524. source: "./media/characters/sykes/foot-left.svg"
  33525. }
  33526. },
  33527. rightFoot: {
  33528. height: math.unit(1.2, "feet"),
  33529. name: "Foot (Right)",
  33530. image: {
  33531. source: "./media/characters/sykes/foot-right.svg"
  33532. }
  33533. },
  33534. maw: {
  33535. height: math.unit(1.93, "feet"),
  33536. name: "Maw",
  33537. image: {
  33538. source: "./media/characters/sykes/maw.svg"
  33539. }
  33540. },
  33541. teeth: {
  33542. height: math.unit(0.51, "feet"),
  33543. name: "Teeth",
  33544. image: {
  33545. source: "./media/characters/sykes/teeth.svg"
  33546. }
  33547. },
  33548. tongue: {
  33549. height: math.unit(2.13, "feet"),
  33550. name: "Tongue",
  33551. image: {
  33552. source: "./media/characters/sykes/tongue.svg"
  33553. }
  33554. },
  33555. uvula: {
  33556. height: math.unit(0.16, "feet"),
  33557. name: "Uvula",
  33558. image: {
  33559. source: "./media/characters/sykes/uvula.svg"
  33560. }
  33561. },
  33562. collar: {
  33563. height: math.unit(0.287, "feet"),
  33564. name: "Collar",
  33565. image: {
  33566. source: "./media/characters/sykes/collar.svg"
  33567. }
  33568. },
  33569. },
  33570. [
  33571. {
  33572. name: "Shrunken",
  33573. height: math.unit(5, "inches")
  33574. },
  33575. {
  33576. name: "Normal",
  33577. height: math.unit(6 + 4 / 12, "feet"),
  33578. default: true
  33579. },
  33580. {
  33581. name: "Big",
  33582. height: math.unit(15, "feet")
  33583. },
  33584. ]
  33585. ))
  33586. characterMakers.push(() => makeCharacter(
  33587. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  33588. {
  33589. front: {
  33590. height: math.unit(5 + 8/12, "feet"),
  33591. weight: math.unit(190, "lb"),
  33592. name: "Front",
  33593. image: {
  33594. source: "./media/characters/oven-otter/front.svg",
  33595. extra: 1809/1740,
  33596. bottom: 181/1990
  33597. }
  33598. },
  33599. back: {
  33600. height: math.unit(5 + 8/12, "feet"),
  33601. weight: math.unit(190, "lb"),
  33602. name: "Back",
  33603. image: {
  33604. source: "./media/characters/oven-otter/back.svg",
  33605. extra: 1709/1635,
  33606. bottom: 118/1827
  33607. }
  33608. },
  33609. hand: {
  33610. height: math.unit(1.07, "feet"),
  33611. name: "Hand",
  33612. image: {
  33613. source: "./media/characters/oven-otter/hand.svg"
  33614. }
  33615. },
  33616. beans: {
  33617. height: math.unit(1.74, "feet"),
  33618. name: "Beans",
  33619. image: {
  33620. source: "./media/characters/oven-otter/beans.svg"
  33621. }
  33622. },
  33623. },
  33624. [
  33625. {
  33626. name: "Micro",
  33627. height: math.unit(0.5, "inches")
  33628. },
  33629. {
  33630. name: "Normal",
  33631. height: math.unit(5 + 8/12, "feet"),
  33632. default: true
  33633. },
  33634. {
  33635. name: "Macro",
  33636. height: math.unit(250, "feet")
  33637. },
  33638. {
  33639. name: "Really High",
  33640. height: math.unit(420, "feet")
  33641. },
  33642. ]
  33643. ))
  33644. characterMakers.push(() => makeCharacter(
  33645. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  33646. {
  33647. front: {
  33648. height: math.unit(5, "meters"),
  33649. weight: math.unit(292000000000000, "kg"),
  33650. name: "Front",
  33651. image: {
  33652. source: "./media/characters/devourer/front.svg",
  33653. extra: 1800/1733,
  33654. bottom: 211/2011
  33655. }
  33656. },
  33657. maw: {
  33658. height: math.unit(1.1, "meter"),
  33659. name: "Maw",
  33660. image: {
  33661. source: "./media/characters/devourer/maw.svg"
  33662. }
  33663. },
  33664. },
  33665. [
  33666. {
  33667. name: "Small",
  33668. height: math.unit(3, "meters")
  33669. },
  33670. {
  33671. name: "Large",
  33672. height: math.unit(5, "meters"),
  33673. default: true
  33674. },
  33675. ]
  33676. ))
  33677. characterMakers.push(() => makeCharacter(
  33678. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  33679. {
  33680. front: {
  33681. height: math.unit(6, "feet"),
  33682. weight: math.unit(400, "lb"),
  33683. name: "Front",
  33684. image: {
  33685. source: "./media/characters/ellarby/front.svg",
  33686. extra: 1909/1763,
  33687. bottom: 80/1989
  33688. }
  33689. },
  33690. back: {
  33691. height: math.unit(6, "feet"),
  33692. weight: math.unit(400, "lb"),
  33693. name: "Back",
  33694. image: {
  33695. source: "./media/characters/ellarby/back.svg",
  33696. extra: 1914/1784,
  33697. bottom: 172/2086
  33698. }
  33699. },
  33700. },
  33701. [
  33702. {
  33703. name: "Mischief",
  33704. height: math.unit(18, "inches")
  33705. },
  33706. {
  33707. name: "Trouble",
  33708. height: math.unit(12, "feet")
  33709. },
  33710. {
  33711. name: "Havoc",
  33712. height: math.unit(200, "feet"),
  33713. default: true
  33714. },
  33715. {
  33716. name: "Pandemonium",
  33717. height: math.unit(1, "mile")
  33718. },
  33719. {
  33720. name: "Catastrophe",
  33721. height: math.unit(100, "miles")
  33722. },
  33723. ]
  33724. ))
  33725. characterMakers.push(() => makeCharacter(
  33726. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  33727. {
  33728. front: {
  33729. height: math.unit(4.7, "meters"),
  33730. weight: math.unit(6500, "kg"),
  33731. name: "Front",
  33732. image: {
  33733. source: "./media/characters/vex/front.svg",
  33734. extra: 1288/1140,
  33735. bottom: 100/1388
  33736. }
  33737. },
  33738. },
  33739. [
  33740. {
  33741. name: "Normal",
  33742. height: math.unit(4.7, "meters"),
  33743. default: true
  33744. },
  33745. ]
  33746. ))
  33747. characterMakers.push(() => makeCharacter(
  33748. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  33749. {
  33750. normal: {
  33751. height: math.unit(6, "feet"),
  33752. weight: math.unit(350, "lb"),
  33753. name: "Normal",
  33754. image: {
  33755. source: "./media/characters/teshy/normal.svg",
  33756. extra: 1795/1735,
  33757. bottom: 16/1811
  33758. }
  33759. },
  33760. monsterFront: {
  33761. height: math.unit(12, "feet"),
  33762. weight: math.unit(4700, "lb"),
  33763. name: "Monster (Front)",
  33764. image: {
  33765. source: "./media/characters/teshy/monster-front.svg",
  33766. extra: 2042/2034,
  33767. bottom: 128/2170
  33768. }
  33769. },
  33770. monsterSide: {
  33771. height: math.unit(12, "feet"),
  33772. weight: math.unit(4700, "lb"),
  33773. name: "Monster (Side)",
  33774. image: {
  33775. source: "./media/characters/teshy/monster-side.svg",
  33776. extra: 2067/2056,
  33777. bottom: 70/2137
  33778. }
  33779. },
  33780. monsterBack: {
  33781. height: math.unit(12, "feet"),
  33782. weight: math.unit(4700, "lb"),
  33783. name: "Monster (Back)",
  33784. image: {
  33785. source: "./media/characters/teshy/monster-back.svg",
  33786. extra: 1921/1914,
  33787. bottom: 171/2092
  33788. }
  33789. },
  33790. },
  33791. [
  33792. {
  33793. name: "Normal",
  33794. height: math.unit(6, "feet"),
  33795. default: true
  33796. },
  33797. ]
  33798. ))
  33799. characterMakers.push(() => makeCharacter(
  33800. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  33801. {
  33802. front: {
  33803. height: math.unit(6, "feet"),
  33804. name: "Front",
  33805. image: {
  33806. source: "./media/characters/ramey/front.svg",
  33807. extra: 790/787,
  33808. bottom: 27/817
  33809. }
  33810. },
  33811. },
  33812. [
  33813. {
  33814. name: "Normal",
  33815. height: math.unit(6, "feet"),
  33816. default: true
  33817. },
  33818. ]
  33819. ))
  33820. characterMakers.push(() => makeCharacter(
  33821. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  33822. {
  33823. front: {
  33824. height: math.unit(5 + 5/12, "feet"),
  33825. weight: math.unit(120, "lb"),
  33826. name: "Front",
  33827. image: {
  33828. source: "./media/characters/phirae/front.svg",
  33829. extra: 2491/2436,
  33830. bottom: 38/2529
  33831. }
  33832. },
  33833. },
  33834. [
  33835. {
  33836. name: "Normal",
  33837. height: math.unit(5 + 5/12, "feet"),
  33838. default: true
  33839. },
  33840. ]
  33841. ))
  33842. characterMakers.push(() => makeCharacter(
  33843. { name: "Stagglas", species: ["dragon"], tags: ["anthro"] },
  33844. {
  33845. front: {
  33846. height: math.unit(6, "feet"),
  33847. weight: math.unit(150, "lb"),
  33848. name: "Front",
  33849. image: {
  33850. source: "./media/characters/stagglas/front.svg",
  33851. extra: 962/882,
  33852. bottom: 53/1015
  33853. }
  33854. },
  33855. },
  33856. [
  33857. {
  33858. name: "Normal",
  33859. height: math.unit(5 + 3/12, "feet"),
  33860. default: true
  33861. },
  33862. ]
  33863. ))
  33864. characterMakers.push(() => makeCharacter(
  33865. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  33866. {
  33867. front: {
  33868. height: math.unit(5 + 4/12, "feet"),
  33869. weight: math.unit(145, "lb"),
  33870. name: "Front",
  33871. image: {
  33872. source: "./media/characters/starra/front.svg",
  33873. extra: 1790/1691,
  33874. bottom: 91/1881
  33875. }
  33876. },
  33877. },
  33878. [
  33879. {
  33880. name: "Normal",
  33881. height: math.unit(5 + 4/12, "feet"),
  33882. default: true
  33883. },
  33884. ]
  33885. ))
  33886. characterMakers.push(() => makeCharacter(
  33887. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  33888. {
  33889. front: {
  33890. height: math.unit(2.2, "meters"),
  33891. name: "Front",
  33892. image: {
  33893. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  33894. extra: 1194/1005,
  33895. bottom: 25/1219
  33896. }
  33897. },
  33898. },
  33899. [
  33900. {
  33901. name: "Normal",
  33902. height: math.unit(2.2, "meters"),
  33903. default: true
  33904. },
  33905. ]
  33906. ))
  33907. characterMakers.push(() => makeCharacter(
  33908. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  33909. {
  33910. side: {
  33911. height: math.unit(8 + 2/12, "feet"),
  33912. weight: math.unit(1240, "lb"),
  33913. name: "Side",
  33914. image: {
  33915. source: "./media/characters/mika-valentine/side.svg",
  33916. extra: 2670/2501,
  33917. bottom: 250/2920
  33918. }
  33919. },
  33920. },
  33921. [
  33922. {
  33923. name: "Normal",
  33924. height: math.unit(8 + 2/12, "feet"),
  33925. default: true
  33926. },
  33927. ]
  33928. ))
  33929. characterMakers.push(() => makeCharacter(
  33930. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  33931. {
  33932. front: {
  33933. height: math.unit(7 + 2/12, "feet"),
  33934. name: "Front",
  33935. image: {
  33936. source: "./media/characters/xoltol/front.svg",
  33937. extra: 2212/2124,
  33938. bottom: 84/2296
  33939. }
  33940. },
  33941. side: {
  33942. height: math.unit(7 + 2/12, "feet"),
  33943. name: "Side",
  33944. image: {
  33945. source: "./media/characters/xoltol/side.svg",
  33946. extra: 2273/2197,
  33947. bottom: 26/2299
  33948. }
  33949. },
  33950. hand: {
  33951. height: math.unit(2.5, "feet"),
  33952. name: "Hand",
  33953. image: {
  33954. source: "./media/characters/xoltol/hand.svg"
  33955. }
  33956. },
  33957. },
  33958. [
  33959. {
  33960. name: "Small-ish",
  33961. height: math.unit(5 + 11/12, "feet")
  33962. },
  33963. {
  33964. name: "Normal",
  33965. height: math.unit(7 + 2/12, "feet")
  33966. },
  33967. {
  33968. name: "\"Macro\"",
  33969. height: math.unit(14 + 9/12, "feet"),
  33970. default: true
  33971. },
  33972. {
  33973. name: "Alternate Height",
  33974. height: math.unit(20, "feet")
  33975. },
  33976. {
  33977. name: "Actually Macro",
  33978. height: math.unit(100, "feet")
  33979. },
  33980. ]
  33981. ))
  33982. characterMakers.push(() => makeCharacter(
  33983. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  33984. {
  33985. front: {
  33986. height: math.unit(5 + 2/12, "feet"),
  33987. name: "Front",
  33988. image: {
  33989. source: "./media/characters/kotetsu-redwood/front.svg",
  33990. extra: 1053/942,
  33991. bottom: 60/1113
  33992. }
  33993. },
  33994. },
  33995. [
  33996. {
  33997. name: "Normal",
  33998. height: math.unit(5 + 2/12, "feet"),
  33999. default: true
  34000. },
  34001. ]
  34002. ))
  34003. characterMakers.push(() => makeCharacter(
  34004. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  34005. {
  34006. front: {
  34007. height: math.unit(2.4, "meters"),
  34008. weight: math.unit(125, "kg"),
  34009. name: "Front",
  34010. image: {
  34011. source: "./media/characters/lilith/front.svg",
  34012. extra: 1590/1513,
  34013. bottom: 203/1793
  34014. }
  34015. },
  34016. },
  34017. [
  34018. {
  34019. name: "Humanoid",
  34020. height: math.unit(2.4, "meters")
  34021. },
  34022. {
  34023. name: "Normal",
  34024. height: math.unit(6, "meters"),
  34025. default: true
  34026. },
  34027. {
  34028. name: "Largest",
  34029. height: math.unit(55, "meters")
  34030. },
  34031. ]
  34032. ))
  34033. characterMakers.push(() => makeCharacter(
  34034. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  34035. {
  34036. front: {
  34037. height: math.unit(8 + 4/12, "feet"),
  34038. weight: math.unit(535, "lb"),
  34039. name: "Front",
  34040. image: {
  34041. source: "./media/characters/beh'kah-bolger/front.svg",
  34042. extra: 1660/1603,
  34043. bottom: 37/1697
  34044. }
  34045. },
  34046. },
  34047. [
  34048. {
  34049. name: "Normal",
  34050. height: math.unit(8 + 4/12, "feet"),
  34051. default: true
  34052. },
  34053. {
  34054. name: "Kaiju",
  34055. height: math.unit(250, "feet")
  34056. },
  34057. {
  34058. name: "Still Growing",
  34059. height: math.unit(10, "miles")
  34060. },
  34061. {
  34062. name: "Continental",
  34063. height: math.unit(5000, "miles")
  34064. },
  34065. {
  34066. name: "Final Form",
  34067. height: math.unit(2500000, "miles")
  34068. },
  34069. ]
  34070. ))
  34071. characterMakers.push(() => makeCharacter(
  34072. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  34073. {
  34074. front: {
  34075. height: math.unit(7 + 2/12, "feet"),
  34076. weight: math.unit(230, "kg"),
  34077. name: "Front",
  34078. image: {
  34079. source: "./media/characters/tatyana-milewska/front.svg",
  34080. extra: 1199/1150,
  34081. bottom: 86/1285
  34082. }
  34083. },
  34084. },
  34085. [
  34086. {
  34087. name: "Normal",
  34088. height: math.unit(7 + 2/12, "feet"),
  34089. default: true
  34090. },
  34091. {
  34092. name: "Big",
  34093. height: math.unit(12, "feet")
  34094. },
  34095. {
  34096. name: "Minimacro",
  34097. height: math.unit(20, "feet")
  34098. },
  34099. {
  34100. name: "Macro",
  34101. height: math.unit(120, "feet")
  34102. },
  34103. ]
  34104. ))
  34105. characterMakers.push(() => makeCharacter(
  34106. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  34107. {
  34108. front: {
  34109. height: math.unit(7 + 8/12, "feet"),
  34110. weight: math.unit(152, "kg"),
  34111. name: "Front",
  34112. image: {
  34113. source: "./media/characters/helen-arri/front.svg",
  34114. extra: 440/423,
  34115. bottom: 14/454
  34116. }
  34117. },
  34118. back: {
  34119. height: math.unit(7 + 8/12, "feet"),
  34120. weight: math.unit(152, "kg"),
  34121. name: "Back",
  34122. image: {
  34123. source: "./media/characters/helen-arri/back.svg",
  34124. extra: 443/426,
  34125. bottom: 8/451
  34126. }
  34127. },
  34128. },
  34129. [
  34130. {
  34131. name: "Normal",
  34132. height: math.unit(7 + 8/12, "feet"),
  34133. default: true
  34134. },
  34135. {
  34136. name: "Big",
  34137. height: math.unit(14, "feet")
  34138. },
  34139. {
  34140. name: "Minimacro",
  34141. height: math.unit(24, "feet")
  34142. },
  34143. {
  34144. name: "Macro",
  34145. height: math.unit(140, "feet")
  34146. },
  34147. ]
  34148. ))
  34149. characterMakers.push(() => makeCharacter(
  34150. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  34151. {
  34152. front: {
  34153. height: math.unit(6, "meters"),
  34154. name: "Front",
  34155. image: {
  34156. source: "./media/characters/ehanu-rehu/front.svg",
  34157. extra: 1800/1800,
  34158. bottom: 59/1859
  34159. }
  34160. },
  34161. },
  34162. [
  34163. {
  34164. name: "Normal",
  34165. height: math.unit(6, "meters"),
  34166. default: true
  34167. },
  34168. ]
  34169. ))
  34170. characterMakers.push(() => makeCharacter(
  34171. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  34172. {
  34173. front: {
  34174. height: math.unit(7 + 3/12, "feet"),
  34175. name: "Front",
  34176. image: {
  34177. source: "./media/characters/renholder/front.svg",
  34178. extra: 3096/2960,
  34179. bottom: 250/3346
  34180. }
  34181. },
  34182. },
  34183. [
  34184. {
  34185. name: "Normal Bat",
  34186. height: math.unit(7 + 3/12, "feet"),
  34187. default: true
  34188. },
  34189. {
  34190. name: "Slightly Tall Bat",
  34191. height: math.unit(100, "feet")
  34192. },
  34193. {
  34194. name: "Big Bat",
  34195. height: math.unit(1000, "feet")
  34196. },
  34197. {
  34198. name: "City-Sized Bat",
  34199. height: math.unit(200000, "feet")
  34200. },
  34201. {
  34202. name: "Bigger Bat",
  34203. height: math.unit(10000, "miles")
  34204. },
  34205. {
  34206. name: "Solar Sized Bat",
  34207. height: math.unit(100, "AU")
  34208. },
  34209. {
  34210. name: "Galactic Bat",
  34211. height: math.unit(200000, "lightyears")
  34212. },
  34213. {
  34214. name: "Universally Known Bat",
  34215. height: math.unit(1, "universe")
  34216. },
  34217. ]
  34218. ))
  34219. characterMakers.push(() => makeCharacter(
  34220. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  34221. {
  34222. front: {
  34223. height: math.unit(6 + 11/12, "feet"),
  34224. weight: math.unit(250, "lb"),
  34225. name: "Front",
  34226. image: {
  34227. source: "./media/characters/cookiecat/front.svg",
  34228. extra: 893/827,
  34229. bottom: 14/907
  34230. }
  34231. },
  34232. },
  34233. [
  34234. {
  34235. name: "Micro",
  34236. height: math.unit(3, "inches")
  34237. },
  34238. {
  34239. name: "Normal",
  34240. height: math.unit(6 + 11/12, "feet"),
  34241. default: true
  34242. },
  34243. {
  34244. name: "Macro",
  34245. height: math.unit(100, "feet")
  34246. },
  34247. {
  34248. name: "Macro+",
  34249. height: math.unit(404, "feet")
  34250. },
  34251. {
  34252. name: "Megamacro",
  34253. height: math.unit(165, "miles")
  34254. },
  34255. {
  34256. name: "Planetary",
  34257. height: math.unit(4600, "miles")
  34258. },
  34259. ]
  34260. ))
  34261. characterMakers.push(() => makeCharacter(
  34262. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  34263. {
  34264. front: {
  34265. height: math.unit(10 + 3/12, "feet"),
  34266. weight: math.unit(1500, "lb"),
  34267. name: "Front",
  34268. image: {
  34269. source: "./media/characters/tux-kusanagi/front.svg",
  34270. extra: 944/840,
  34271. bottom: 39/983
  34272. }
  34273. },
  34274. back: {
  34275. height: math.unit(10 + 3/12, "feet"),
  34276. weight: math.unit(1500, "lb"),
  34277. name: "Back",
  34278. image: {
  34279. source: "./media/characters/tux-kusanagi/back.svg",
  34280. extra: 941/842,
  34281. bottom: 28/969
  34282. }
  34283. },
  34284. rump: {
  34285. height: math.unit(5.25, "feet"),
  34286. name: "Rump",
  34287. image: {
  34288. source: "./media/characters/tux-kusanagi/rump.svg"
  34289. }
  34290. },
  34291. beak: {
  34292. height: math.unit(1.54, "feet"),
  34293. name: "Beak",
  34294. image: {
  34295. source: "./media/characters/tux-kusanagi/beak.svg"
  34296. }
  34297. },
  34298. },
  34299. [
  34300. {
  34301. name: "Normal",
  34302. height: math.unit(10 + 3/12, "feet"),
  34303. default: true
  34304. },
  34305. ]
  34306. ))
  34307. characterMakers.push(() => makeCharacter(
  34308. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  34309. {
  34310. front: {
  34311. height: math.unit(58, "feet"),
  34312. weight: math.unit(200, "tons"),
  34313. name: "Front",
  34314. image: {
  34315. source: "./media/characters/uzarmazari/front.svg",
  34316. extra: 1575/1455,
  34317. bottom: 152/1727
  34318. }
  34319. },
  34320. back: {
  34321. height: math.unit(58, "feet"),
  34322. weight: math.unit(200, "tons"),
  34323. name: "Back",
  34324. image: {
  34325. source: "./media/characters/uzarmazari/back.svg",
  34326. extra: 1585/1510,
  34327. bottom: 157/1742
  34328. }
  34329. },
  34330. head: {
  34331. height: math.unit(26, "feet"),
  34332. name: "Head",
  34333. image: {
  34334. source: "./media/characters/uzarmazari/head.svg"
  34335. }
  34336. },
  34337. },
  34338. [
  34339. {
  34340. name: "Normal",
  34341. height: math.unit(58, "feet"),
  34342. default: true
  34343. },
  34344. ]
  34345. ))
  34346. characterMakers.push(() => makeCharacter(
  34347. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  34348. {
  34349. side: {
  34350. height: math.unit(15, "feet"),
  34351. name: "Side",
  34352. image: {
  34353. source: "./media/characters/akitu/side.svg",
  34354. extra: 1421/1321,
  34355. bottom: 157/1578
  34356. }
  34357. },
  34358. front: {
  34359. height: math.unit(15, "feet"),
  34360. name: "Front",
  34361. image: {
  34362. source: "./media/characters/akitu/front.svg",
  34363. extra: 1435/1326,
  34364. bottom: 232/1667
  34365. }
  34366. },
  34367. },
  34368. [
  34369. {
  34370. name: "Normal",
  34371. height: math.unit(15, "feet"),
  34372. default: true
  34373. },
  34374. ]
  34375. ))
  34376. characterMakers.push(() => makeCharacter(
  34377. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  34378. {
  34379. front: {
  34380. height: math.unit(10 + 8/12, "feet"),
  34381. name: "Front",
  34382. image: {
  34383. source: "./media/characters/azalie-croixland/front.svg",
  34384. extra: 1972/1856,
  34385. bottom: 31/2003
  34386. }
  34387. },
  34388. },
  34389. [
  34390. {
  34391. name: "Original Height",
  34392. height: math.unit(5 + 4/12, "feet")
  34393. },
  34394. {
  34395. name: "Normal Height",
  34396. height: math.unit(10 + 8/12, "feet"),
  34397. default: true
  34398. },
  34399. ]
  34400. ))
  34401. characterMakers.push(() => makeCharacter(
  34402. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  34403. {
  34404. side: {
  34405. height: math.unit(7 + 1/12, "feet"),
  34406. weight: math.unit(245, "lb"),
  34407. name: "Side",
  34408. image: {
  34409. source: "./media/characters/kavus-kazian/side.svg",
  34410. extra: 349/342,
  34411. bottom: 15/364
  34412. }
  34413. },
  34414. },
  34415. [
  34416. {
  34417. name: "Normal",
  34418. height: math.unit(7 + 1/12, "feet"),
  34419. default: true
  34420. },
  34421. ]
  34422. ))
  34423. characterMakers.push(() => makeCharacter(
  34424. { name: "Moonlight Rose", species: ["eevee"], tags: ["anthro"] },
  34425. {
  34426. normal: {
  34427. height: math.unit(5 + 11/12, "feet"),
  34428. name: "Normal",
  34429. image: {
  34430. source: "./media/characters/moonlight-rose/normal.svg",
  34431. extra: 1979/1835,
  34432. bottom: 14/1993
  34433. }
  34434. },
  34435. demon: {
  34436. height: math.unit(5, "km"),
  34437. name: "Demon",
  34438. image: {
  34439. source: "./media/characters/moonlight-rose/demon.svg",
  34440. extra: 986/916,
  34441. bottom: 28/1014
  34442. }
  34443. },
  34444. },
  34445. [
  34446. {
  34447. name: "\"Natural\" height",
  34448. height: math.unit(5 + 11/12, "feet")
  34449. },
  34450. {
  34451. name: "Comfortable Size",
  34452. height: math.unit(40, "meters")
  34453. },
  34454. {
  34455. name: "Common Size",
  34456. height: math.unit(50, "km"),
  34457. default: true
  34458. },
  34459. {
  34460. name: "Demonic",
  34461. height: math.unit(1.24415e+21, "meters")
  34462. },
  34463. ]
  34464. ))
  34465. characterMakers.push(() => makeCharacter(
  34466. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  34467. {
  34468. front: {
  34469. height: math.unit(16, "feet"),
  34470. weight: math.unit(610, "kg"),
  34471. name: "Front",
  34472. image: {
  34473. source: "./media/characters/huckle/front.svg",
  34474. extra: 1731/1625,
  34475. bottom: 33/1764
  34476. }
  34477. },
  34478. back: {
  34479. height: math.unit(16, "feet"),
  34480. weight: math.unit(610, "kg"),
  34481. name: "Back",
  34482. image: {
  34483. source: "./media/characters/huckle/back.svg",
  34484. extra: 1738/1651,
  34485. bottom: 37/1775
  34486. }
  34487. },
  34488. laughing: {
  34489. height: math.unit(3.75, "feet"),
  34490. name: "Laughing",
  34491. image: {
  34492. source: "./media/characters/huckle/laughing.svg"
  34493. }
  34494. },
  34495. angry: {
  34496. height: math.unit(4.15, "feet"),
  34497. name: "Angry",
  34498. image: {
  34499. source: "./media/characters/huckle/angry.svg"
  34500. }
  34501. },
  34502. },
  34503. [
  34504. {
  34505. name: "Normal",
  34506. height: math.unit(16, "feet"),
  34507. default: true
  34508. },
  34509. {
  34510. name: "Mini Macro",
  34511. height: math.unit(463, "feet")
  34512. },
  34513. {
  34514. name: "Macro",
  34515. height: math.unit(1680, "meters")
  34516. },
  34517. {
  34518. name: "Mega Macro",
  34519. height: math.unit(175, "km")
  34520. },
  34521. {
  34522. name: "Terra Macro",
  34523. height: math.unit(32, "gigameters")
  34524. },
  34525. {
  34526. name: "Multiverse+",
  34527. height: math.unit(2.56e23, "yottameters")
  34528. },
  34529. ]
  34530. ))
  34531. characterMakers.push(() => makeCharacter(
  34532. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  34533. {
  34534. front: {
  34535. height: math.unit(6 + 9/12, "feet"),
  34536. weight: math.unit(280, "lb"),
  34537. name: "Front",
  34538. image: {
  34539. source: "./media/characters/candy/front.svg",
  34540. extra: 234/217,
  34541. bottom: 11/245
  34542. }
  34543. },
  34544. },
  34545. [
  34546. {
  34547. name: "Really Small",
  34548. height: math.unit(0.1, "nm")
  34549. },
  34550. {
  34551. name: "Micro",
  34552. height: math.unit(2, "inches")
  34553. },
  34554. {
  34555. name: "Normal",
  34556. height: math.unit(6 + 9/12, "feet"),
  34557. default: true
  34558. },
  34559. {
  34560. name: "Small Macro",
  34561. height: math.unit(69, "feet")
  34562. },
  34563. {
  34564. name: "Macro",
  34565. height: math.unit(160, "feet")
  34566. },
  34567. {
  34568. name: "Megamacro",
  34569. height: math.unit(22000, "miles")
  34570. },
  34571. {
  34572. name: "Gigamacro",
  34573. height: math.unit(50000, "miles")
  34574. },
  34575. ]
  34576. ))
  34577. characterMakers.push(() => makeCharacter(
  34578. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  34579. {
  34580. front: {
  34581. height: math.unit(4, "feet"),
  34582. weight: math.unit(90, "lb"),
  34583. name: "Front",
  34584. image: {
  34585. source: "./media/characters/joey-mcdonald/front.svg",
  34586. extra: 1059/852,
  34587. bottom: 33/1092
  34588. }
  34589. },
  34590. back: {
  34591. height: math.unit(4, "feet"),
  34592. weight: math.unit(90, "lb"),
  34593. name: "Back",
  34594. image: {
  34595. source: "./media/characters/joey-mcdonald/back.svg",
  34596. extra: 1077/879,
  34597. bottom: 5/1082
  34598. }
  34599. },
  34600. frontKobold: {
  34601. height: math.unit(4, "feet"),
  34602. weight: math.unit(100, "lb"),
  34603. name: "Front-kobold",
  34604. image: {
  34605. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  34606. extra: 1480/1367,
  34607. bottom: 0/1480
  34608. }
  34609. },
  34610. backKobold: {
  34611. height: math.unit(4, "feet"),
  34612. weight: math.unit(100, "lb"),
  34613. name: "Back-kobold",
  34614. image: {
  34615. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  34616. extra: 1449/1361,
  34617. bottom: 0/1449
  34618. }
  34619. },
  34620. },
  34621. [
  34622. {
  34623. name: "Normal",
  34624. height: math.unit(4, "feet"),
  34625. default: true
  34626. },
  34627. ]
  34628. ))
  34629. characterMakers.push(() => makeCharacter(
  34630. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  34631. {
  34632. front: {
  34633. height: math.unit(12 + 6/12, "feet"),
  34634. name: "Front",
  34635. image: {
  34636. source: "./media/characters/kass-lockheed/front.svg",
  34637. extra: 354/343,
  34638. bottom: 9/363
  34639. }
  34640. },
  34641. back: {
  34642. height: math.unit(12 + 6/12, "feet"),
  34643. name: "Back",
  34644. image: {
  34645. source: "./media/characters/kass-lockheed/back.svg",
  34646. extra: 364/352,
  34647. bottom: 3/367
  34648. }
  34649. },
  34650. dick: {
  34651. height: math.unit(3.12, "feet"),
  34652. name: "Dick",
  34653. image: {
  34654. source: "./media/characters/kass-lockheed/dick.svg"
  34655. }
  34656. },
  34657. head: {
  34658. height: math.unit(2.6, "feet"),
  34659. name: "Head",
  34660. image: {
  34661. source: "./media/characters/kass-lockheed/head.svg"
  34662. }
  34663. },
  34664. bleh: {
  34665. height: math.unit(2.85, "feet"),
  34666. name: "Bleh",
  34667. image: {
  34668. source: "./media/characters/kass-lockheed/bleh.svg"
  34669. }
  34670. },
  34671. smug: {
  34672. height: math.unit(2.85, "feet"),
  34673. name: "Smug",
  34674. image: {
  34675. source: "./media/characters/kass-lockheed/smug.svg"
  34676. }
  34677. },
  34678. },
  34679. [
  34680. {
  34681. name: "Normal",
  34682. height: math.unit(12 + 6/12, "feet"),
  34683. default: true
  34684. },
  34685. ]
  34686. ))
  34687. characterMakers.push(() => makeCharacter(
  34688. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  34689. {
  34690. front: {
  34691. height: math.unit(6 + 2/12, "feet"),
  34692. name: "Front",
  34693. image: {
  34694. source: "./media/characters/taylor/front.svg",
  34695. extra: 639/495,
  34696. bottom: 12/651
  34697. }
  34698. },
  34699. },
  34700. [
  34701. {
  34702. name: "Normal",
  34703. height: math.unit(6 + 2/12, "feet"),
  34704. default: true
  34705. },
  34706. {
  34707. name: "Big",
  34708. height: math.unit(15, "feet")
  34709. },
  34710. {
  34711. name: "Lorg",
  34712. height: math.unit(80, "feet")
  34713. },
  34714. {
  34715. name: "Too Lorg",
  34716. height: math.unit(120, "feet")
  34717. },
  34718. ]
  34719. ))
  34720. characterMakers.push(() => makeCharacter(
  34721. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  34722. {
  34723. front: {
  34724. height: math.unit(15, "feet"),
  34725. name: "Front",
  34726. image: {
  34727. source: "./media/characters/kaizer/front.svg",
  34728. extra: 1612/1436,
  34729. bottom: 43/1655
  34730. }
  34731. },
  34732. },
  34733. [
  34734. {
  34735. name: "Normal",
  34736. height: math.unit(15, "feet"),
  34737. default: true
  34738. },
  34739. ]
  34740. ))
  34741. characterMakers.push(() => makeCharacter(
  34742. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  34743. {
  34744. front: {
  34745. height: math.unit(2, "feet"),
  34746. weight: math.unit(30, "lb"),
  34747. name: "Front",
  34748. image: {
  34749. source: "./media/characters/sandy/front.svg",
  34750. extra: 1439/1307,
  34751. bottom: 194/1633
  34752. }
  34753. },
  34754. },
  34755. [
  34756. {
  34757. name: "Normal",
  34758. height: math.unit(2, "feet"),
  34759. default: true
  34760. },
  34761. ]
  34762. ))
  34763. characterMakers.push(() => makeCharacter(
  34764. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  34765. {
  34766. front: {
  34767. height: math.unit(3, "feet"),
  34768. name: "Front",
  34769. image: {
  34770. source: "./media/characters/mellvi/front.svg",
  34771. extra: 1831/1630,
  34772. bottom: 58/1889
  34773. }
  34774. },
  34775. },
  34776. [
  34777. {
  34778. name: "Normal",
  34779. height: math.unit(3, "feet"),
  34780. default: true
  34781. },
  34782. ]
  34783. ))
  34784. characterMakers.push(() => makeCharacter(
  34785. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  34786. {
  34787. front: {
  34788. height: math.unit(5 + 11/12, "feet"),
  34789. weight: math.unit(200, "lb"),
  34790. name: "Front",
  34791. image: {
  34792. source: "./media/characters/shirou/front.svg",
  34793. extra: 2491/2383,
  34794. bottom: 189/2680
  34795. }
  34796. },
  34797. back: {
  34798. height: math.unit(5 + 11/12, "feet"),
  34799. weight: math.unit(200, "lb"),
  34800. name: "Back",
  34801. image: {
  34802. source: "./media/characters/shirou/back.svg",
  34803. extra: 2554/2450,
  34804. bottom: 76/2630
  34805. }
  34806. },
  34807. },
  34808. [
  34809. {
  34810. name: "Normal",
  34811. height: math.unit(5 + 11/12, "feet"),
  34812. default: true
  34813. },
  34814. ]
  34815. ))
  34816. characterMakers.push(() => makeCharacter(
  34817. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  34818. {
  34819. front: {
  34820. height: math.unit(6 + 3/12, "feet"),
  34821. weight: math.unit(177, "lb"),
  34822. name: "Front",
  34823. image: {
  34824. source: "./media/characters/noryu/front.svg",
  34825. extra: 973/885,
  34826. bottom: 10/983
  34827. }
  34828. },
  34829. },
  34830. [
  34831. {
  34832. name: "Normal",
  34833. height: math.unit(6 + 3/12, "feet"),
  34834. default: true
  34835. },
  34836. ]
  34837. ))
  34838. characterMakers.push(() => makeCharacter(
  34839. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  34840. {
  34841. front: {
  34842. height: math.unit(5 + 6/12, "feet"),
  34843. weight: math.unit(170, "lb"),
  34844. name: "Front",
  34845. image: {
  34846. source: "./media/characters/mevolas-rubenido/front.svg",
  34847. extra: 2109/1901,
  34848. bottom: 96/2205
  34849. }
  34850. },
  34851. },
  34852. [
  34853. {
  34854. name: "Normal",
  34855. height: math.unit(5 + 6/12, "feet"),
  34856. default: true
  34857. },
  34858. ]
  34859. ))
  34860. characterMakers.push(() => makeCharacter(
  34861. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  34862. {
  34863. front: {
  34864. height: math.unit(100, "feet"),
  34865. name: "Front",
  34866. image: {
  34867. source: "./media/characters/dee/front.svg",
  34868. extra: 2153/2036,
  34869. bottom: 59/2212
  34870. }
  34871. },
  34872. back: {
  34873. height: math.unit(100, "feet"),
  34874. name: "Back",
  34875. image: {
  34876. source: "./media/characters/dee/back.svg",
  34877. extra: 2183/2058,
  34878. bottom: 75/2258
  34879. }
  34880. },
  34881. foot: {
  34882. height: math.unit(19.43, "feet"),
  34883. name: "Foot",
  34884. image: {
  34885. source: "./media/characters/dee/foot.svg"
  34886. }
  34887. },
  34888. hoof: {
  34889. height: math.unit(20.6, "feet"),
  34890. name: "Hoof",
  34891. image: {
  34892. source: "./media/characters/dee/hoof.svg"
  34893. }
  34894. },
  34895. },
  34896. [
  34897. {
  34898. name: "Macro",
  34899. height: math.unit(100, "feet"),
  34900. default: true
  34901. },
  34902. ]
  34903. ))
  34904. characterMakers.push(() => makeCharacter(
  34905. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  34906. {
  34907. front: {
  34908. height: math.unit(5 + 6/12, "feet"),
  34909. name: "Front",
  34910. image: {
  34911. source: "./media/characters/teh/front.svg",
  34912. extra: 1002/847,
  34913. bottom: 62/1064
  34914. }
  34915. },
  34916. },
  34917. [
  34918. {
  34919. name: "Normal",
  34920. height: math.unit(5 + 6/12, "feet"),
  34921. default: true
  34922. },
  34923. ]
  34924. ))
  34925. characterMakers.push(() => makeCharacter(
  34926. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  34927. {
  34928. side: {
  34929. height: math.unit(6 + 1/12, "feet"),
  34930. weight: math.unit(204, "lb"),
  34931. name: "Side",
  34932. image: {
  34933. source: "./media/characters/quicksilver-ayukoti/side.svg",
  34934. extra: 974/775,
  34935. bottom: 169/1143
  34936. }
  34937. },
  34938. sitting: {
  34939. height: math.unit(6 + 2/12, "feet"),
  34940. weight: math.unit(204, "lb"),
  34941. name: "Sitting",
  34942. image: {
  34943. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  34944. extra: 1175/964,
  34945. bottom: 378/1553
  34946. }
  34947. },
  34948. },
  34949. [
  34950. {
  34951. name: "Normal",
  34952. height: math.unit(6 + 1/12, "feet"),
  34953. default: true
  34954. },
  34955. ]
  34956. ))
  34957. characterMakers.push(() => makeCharacter(
  34958. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  34959. {
  34960. front: {
  34961. height: math.unit(6, "inches"),
  34962. name: "Front",
  34963. image: {
  34964. source: "./media/characters/tululi/front.svg",
  34965. extra: 1997/1876,
  34966. bottom: 20/2017
  34967. }
  34968. },
  34969. },
  34970. [
  34971. {
  34972. name: "Normal",
  34973. height: math.unit(6, "inches"),
  34974. default: true
  34975. },
  34976. ]
  34977. ))
  34978. characterMakers.push(() => makeCharacter(
  34979. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  34980. {
  34981. front: {
  34982. height: math.unit(4 + 1/12, "feet"),
  34983. name: "Front",
  34984. image: {
  34985. source: "./media/characters/star/front.svg",
  34986. extra: 1493/1189,
  34987. bottom: 48/1541
  34988. }
  34989. },
  34990. },
  34991. [
  34992. {
  34993. name: "Normal",
  34994. height: math.unit(4 + 1/12, "feet"),
  34995. default: true
  34996. },
  34997. ]
  34998. ))
  34999. characterMakers.push(() => makeCharacter(
  35000. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  35001. {
  35002. front: {
  35003. height: math.unit(6 + 3/12, "feet"),
  35004. name: "Front",
  35005. image: {
  35006. source: "./media/characters/comet/front.svg",
  35007. extra: 1681/1462,
  35008. bottom: 26/1707
  35009. }
  35010. },
  35011. },
  35012. [
  35013. {
  35014. name: "Normal",
  35015. height: math.unit(6 + 3/12, "feet"),
  35016. default: true
  35017. },
  35018. ]
  35019. ))
  35020. characterMakers.push(() => makeCharacter(
  35021. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  35022. {
  35023. front: {
  35024. height: math.unit(950, "feet"),
  35025. name: "Front",
  35026. image: {
  35027. source: "./media/characters/vortex/front.svg",
  35028. extra: 1497/1434,
  35029. bottom: 56/1553
  35030. }
  35031. },
  35032. maw: {
  35033. height: math.unit(285, "feet"),
  35034. name: "Maw",
  35035. image: {
  35036. source: "./media/characters/vortex/maw.svg"
  35037. }
  35038. },
  35039. },
  35040. [
  35041. {
  35042. name: "Macro",
  35043. height: math.unit(950, "feet"),
  35044. default: true
  35045. },
  35046. ]
  35047. ))
  35048. characterMakers.push(() => makeCharacter(
  35049. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  35050. {
  35051. front: {
  35052. height: math.unit(600, "feet"),
  35053. weight: math.unit(0.02, "grams"),
  35054. name: "Front",
  35055. image: {
  35056. source: "./media/characters/doodle/front.svg",
  35057. extra: 1578/1413,
  35058. bottom: 37/1615
  35059. }
  35060. },
  35061. },
  35062. [
  35063. {
  35064. name: "Macro",
  35065. height: math.unit(600, "feet"),
  35066. default: true
  35067. },
  35068. ]
  35069. ))
  35070. characterMakers.push(() => makeCharacter(
  35071. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  35072. {
  35073. front: {
  35074. height: math.unit(6 + 6/12, "feet"),
  35075. name: "Front",
  35076. image: {
  35077. source: "./media/characters/jai/front.svg",
  35078. extra: 1645/1534,
  35079. bottom: 115/1760
  35080. }
  35081. },
  35082. },
  35083. [
  35084. {
  35085. name: "Normal",
  35086. height: math.unit(6 + 6/12, "feet"),
  35087. default: true
  35088. },
  35089. ]
  35090. ))
  35091. characterMakers.push(() => makeCharacter(
  35092. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  35093. {
  35094. front: {
  35095. height: math.unit(6 + 8/12, "feet"),
  35096. name: "Front",
  35097. image: {
  35098. source: "./media/characters/pixel/front.svg",
  35099. extra: 1900/1735,
  35100. bottom: 63/1963
  35101. }
  35102. },
  35103. },
  35104. [
  35105. {
  35106. name: "Normal",
  35107. height: math.unit(6 + 8/12, "feet"),
  35108. default: true
  35109. },
  35110. ]
  35111. ))
  35112. characterMakers.push(() => makeCharacter(
  35113. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  35114. {
  35115. front: {
  35116. height: math.unit(4 + 11/12, "feet"),
  35117. weight: math.unit(111, "lb"),
  35118. name: "Front",
  35119. image: {
  35120. source: "./media/characters/rhett/front.svg",
  35121. extra: 1682/1586,
  35122. bottom: 92/1774
  35123. }
  35124. },
  35125. },
  35126. [
  35127. {
  35128. name: "Mini",
  35129. height: math.unit(1 + 1/12, "feet")
  35130. },
  35131. {
  35132. name: "Normal",
  35133. height: math.unit(4 + 11/12, "feet"),
  35134. default: true
  35135. },
  35136. ]
  35137. ))
  35138. characterMakers.push(() => makeCharacter(
  35139. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  35140. {
  35141. front: {
  35142. height: math.unit(3 + 3/12, "feet"),
  35143. name: "Front",
  35144. image: {
  35145. source: "./media/characters/penny/front.svg",
  35146. extra: 1406/1311,
  35147. bottom: 26/1432
  35148. }
  35149. },
  35150. },
  35151. [
  35152. {
  35153. name: "Normal",
  35154. height: math.unit(3 + 3/12, "feet"),
  35155. default: true
  35156. },
  35157. ]
  35158. ))
  35159. characterMakers.push(() => makeCharacter(
  35160. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  35161. {
  35162. front: {
  35163. height: math.unit(4 + 11/12, "feet"),
  35164. name: "Front",
  35165. image: {
  35166. source: "./media/characters/monty/front.svg",
  35167. extra: 1479/1209,
  35168. bottom: 0/1479
  35169. }
  35170. },
  35171. },
  35172. [
  35173. {
  35174. name: "Normal",
  35175. height: math.unit(4 + 11/12, "feet"),
  35176. default: true
  35177. },
  35178. ]
  35179. ))
  35180. characterMakers.push(() => makeCharacter(
  35181. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  35182. {
  35183. front: {
  35184. height: math.unit(8 + 4/12, "feet"),
  35185. name: "Front",
  35186. image: {
  35187. source: "./media/characters/sterling/front.svg",
  35188. extra: 1420/1236,
  35189. bottom: 27/1447
  35190. }
  35191. },
  35192. },
  35193. [
  35194. {
  35195. name: "Normal",
  35196. height: math.unit(8 + 4/12, "feet"),
  35197. default: true
  35198. },
  35199. ]
  35200. ))
  35201. characterMakers.push(() => makeCharacter(
  35202. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  35203. {
  35204. front: {
  35205. height: math.unit(15, "feet"),
  35206. name: "Front",
  35207. image: {
  35208. source: "./media/characters/marble/front.svg",
  35209. extra: 973/937,
  35210. bottom: 32/1005
  35211. }
  35212. },
  35213. },
  35214. [
  35215. {
  35216. name: "Normal",
  35217. height: math.unit(15, "feet"),
  35218. default: true
  35219. },
  35220. ]
  35221. ))
  35222. characterMakers.push(() => makeCharacter(
  35223. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  35224. {
  35225. front: {
  35226. height: math.unit(3, "inches"),
  35227. name: "Front",
  35228. image: {
  35229. source: "./media/characters/powder/front.svg",
  35230. extra: 1504/1334,
  35231. bottom: 518/2022
  35232. }
  35233. },
  35234. },
  35235. [
  35236. {
  35237. name: "Normal",
  35238. height: math.unit(3, "inches"),
  35239. default: true
  35240. },
  35241. ]
  35242. ))
  35243. characterMakers.push(() => makeCharacter(
  35244. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  35245. {
  35246. front: {
  35247. height: math.unit(4 + 5/12, "feet"),
  35248. name: "Front",
  35249. image: {
  35250. source: "./media/characters/joey-raccoon/front.svg",
  35251. extra: 1273/1197,
  35252. bottom: 0/1273
  35253. }
  35254. },
  35255. },
  35256. [
  35257. {
  35258. name: "Normal",
  35259. height: math.unit(4 + 5/12, "feet"),
  35260. default: true
  35261. },
  35262. ]
  35263. ))
  35264. characterMakers.push(() => makeCharacter(
  35265. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  35266. {
  35267. front: {
  35268. height: math.unit(8 + 4/12, "feet"),
  35269. name: "Front",
  35270. image: {
  35271. source: "./media/characters/vick/front.svg",
  35272. extra: 2187/2118,
  35273. bottom: 47/2234
  35274. }
  35275. },
  35276. },
  35277. [
  35278. {
  35279. name: "Normal",
  35280. height: math.unit(8 + 4/12, "feet"),
  35281. default: true
  35282. },
  35283. ]
  35284. ))
  35285. characterMakers.push(() => makeCharacter(
  35286. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  35287. {
  35288. front: {
  35289. height: math.unit(5 + 5/12, "feet"),
  35290. name: "Front",
  35291. image: {
  35292. source: "./media/characters/mitsy/front.svg",
  35293. extra: 1842/1695,
  35294. bottom: 0/1842
  35295. }
  35296. },
  35297. },
  35298. [
  35299. {
  35300. name: "Normal",
  35301. height: math.unit(5 + 5/12, "feet"),
  35302. default: true
  35303. },
  35304. ]
  35305. ))
  35306. characterMakers.push(() => makeCharacter(
  35307. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  35308. {
  35309. front: {
  35310. height: math.unit(6 + 3/12, "feet"),
  35311. name: "Front",
  35312. image: {
  35313. source: "./media/characters/silvy/front.svg",
  35314. extra: 1995/1836,
  35315. bottom: 225/2220
  35316. }
  35317. },
  35318. },
  35319. [
  35320. {
  35321. name: "Normal",
  35322. height: math.unit(6 + 3/12, "feet"),
  35323. default: true
  35324. },
  35325. ]
  35326. ))
  35327. characterMakers.push(() => makeCharacter(
  35328. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  35329. {
  35330. front: {
  35331. height: math.unit(3 + 8/12, "feet"),
  35332. name: "Front",
  35333. image: {
  35334. source: "./media/characters/rodney/front.svg",
  35335. extra: 1956/1747,
  35336. bottom: 31/1987
  35337. }
  35338. },
  35339. frontDressed: {
  35340. height: math.unit(2.9, "feet"),
  35341. name: "Front (Dressed)",
  35342. image: {
  35343. source: "./media/characters/rodney/front-dressed.svg",
  35344. extra: 1382/1241,
  35345. bottom: 385/1767
  35346. }
  35347. },
  35348. },
  35349. [
  35350. {
  35351. name: "Normal",
  35352. height: math.unit(3 + 8/12, "feet"),
  35353. default: true
  35354. },
  35355. ]
  35356. ))
  35357. characterMakers.push(() => makeCharacter(
  35358. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  35359. {
  35360. front: {
  35361. height: math.unit(5 + 9/12, "feet"),
  35362. weight: math.unit(194, "lbs"),
  35363. name: "Front",
  35364. image: {
  35365. source: "./media/characters/zakail-sudekai/front.svg",
  35366. extra: 2696/2533,
  35367. bottom: 248/2944
  35368. }
  35369. },
  35370. maw: {
  35371. height: math.unit(1.35, "feet"),
  35372. name: "Maw",
  35373. image: {
  35374. source: "./media/characters/zakail-sudekai/maw.svg"
  35375. }
  35376. },
  35377. },
  35378. [
  35379. {
  35380. name: "Normal",
  35381. height: math.unit(5 + 9/12, "feet"),
  35382. default: true
  35383. },
  35384. ]
  35385. ))
  35386. characterMakers.push(() => makeCharacter(
  35387. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  35388. {
  35389. front: {
  35390. height: math.unit(8 + 4/12, "feet"),
  35391. weight: math.unit(1200, "lb"),
  35392. name: "Front",
  35393. image: {
  35394. source: "./media/characters/eleanor/front.svg",
  35395. extra: 1226/1192,
  35396. bottom: 52/1278
  35397. }
  35398. },
  35399. back: {
  35400. height: math.unit(8 + 4/12, "feet"),
  35401. weight: math.unit(1200, "lb"),
  35402. name: "Back",
  35403. image: {
  35404. source: "./media/characters/eleanor/back.svg",
  35405. extra: 1242/1184,
  35406. bottom: 60/1302
  35407. }
  35408. },
  35409. head: {
  35410. height: math.unit(2.62, "feet"),
  35411. name: "Head",
  35412. image: {
  35413. source: "./media/characters/eleanor/head.svg"
  35414. }
  35415. },
  35416. },
  35417. [
  35418. {
  35419. name: "Normal",
  35420. height: math.unit(8 + 4/12, "feet"),
  35421. default: true
  35422. },
  35423. ]
  35424. ))
  35425. characterMakers.push(() => makeCharacter(
  35426. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  35427. {
  35428. front: {
  35429. height: math.unit(8 + 4/12, "feet"),
  35430. weight: math.unit(750, "lb"),
  35431. name: "Front",
  35432. image: {
  35433. source: "./media/characters/tanya/front.svg",
  35434. extra: 1749/1615,
  35435. bottom: 33/1782
  35436. }
  35437. },
  35438. },
  35439. [
  35440. {
  35441. name: "Normal",
  35442. height: math.unit(8 + 4/12, "feet"),
  35443. default: true
  35444. },
  35445. ]
  35446. ))
  35447. characterMakers.push(() => makeCharacter(
  35448. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  35449. {
  35450. front: {
  35451. height: math.unit(5, "feet"),
  35452. weight: math.unit(225, "lb"),
  35453. name: "Front",
  35454. image: {
  35455. source: "./media/characters/cindy/front.svg",
  35456. extra: 1320/1250,
  35457. bottom: 42/1362
  35458. }
  35459. },
  35460. frontDressed: {
  35461. height: math.unit(5, "feet"),
  35462. weight: math.unit(225, "lb"),
  35463. name: "Front (Dressed)",
  35464. image: {
  35465. source: "./media/characters/cindy/front-dressed.svg",
  35466. extra: 1320/1250,
  35467. bottom: 42/1362
  35468. }
  35469. },
  35470. back: {
  35471. height: math.unit(5, "feet"),
  35472. weight: math.unit(225, "lb"),
  35473. name: "Back",
  35474. image: {
  35475. source: "./media/characters/cindy/back.svg",
  35476. extra: 1384/1346,
  35477. bottom: 14/1398
  35478. }
  35479. },
  35480. },
  35481. [
  35482. {
  35483. name: "Normal",
  35484. height: math.unit(5, "feet"),
  35485. default: true
  35486. },
  35487. ]
  35488. ))
  35489. characterMakers.push(() => makeCharacter(
  35490. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  35491. {
  35492. front: {
  35493. height: math.unit(6 + 9/12, "feet"),
  35494. weight: math.unit(440, "lb"),
  35495. name: "Front",
  35496. image: {
  35497. source: "./media/characters/wilbur-owen/front.svg",
  35498. extra: 1575/1448,
  35499. bottom: 72/1647
  35500. }
  35501. },
  35502. back: {
  35503. height: math.unit(6 + 9/12, "feet"),
  35504. weight: math.unit(440, "lb"),
  35505. name: "Back",
  35506. image: {
  35507. source: "./media/characters/wilbur-owen/back.svg",
  35508. extra: 1578/1445,
  35509. bottom: 36/1614
  35510. }
  35511. },
  35512. },
  35513. [
  35514. {
  35515. name: "Normal",
  35516. height: math.unit(6 + 9/12, "feet"),
  35517. default: true
  35518. },
  35519. ]
  35520. ))
  35521. characterMakers.push(() => makeCharacter(
  35522. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  35523. {
  35524. front: {
  35525. height: math.unit(6 + 5/12, "feet"),
  35526. weight: math.unit(650, "lb"),
  35527. name: "Front",
  35528. image: {
  35529. source: "./media/characters/keegan/front.svg",
  35530. extra: 2387/2198,
  35531. bottom: 33/2420
  35532. }
  35533. },
  35534. side: {
  35535. height: math.unit(6 + 5/12, "feet"),
  35536. weight: math.unit(650, "lb"),
  35537. name: "Side",
  35538. image: {
  35539. source: "./media/characters/keegan/side.svg",
  35540. extra: 2390/2202,
  35541. bottom: 47/2437
  35542. }
  35543. },
  35544. back: {
  35545. height: math.unit(6 + 5/12, "feet"),
  35546. weight: math.unit(650, "lb"),
  35547. name: "Back",
  35548. image: {
  35549. source: "./media/characters/keegan/back.svg",
  35550. extra: 2418/2268,
  35551. bottom: 15/2433
  35552. }
  35553. },
  35554. frontSfw: {
  35555. height: math.unit(6 + 5/12, "feet"),
  35556. weight: math.unit(650, "lb"),
  35557. name: "Front (SFW)",
  35558. image: {
  35559. source: "./media/characters/keegan/front-sfw.svg",
  35560. extra: 2387/2198,
  35561. bottom: 33/2420
  35562. }
  35563. },
  35564. beans: {
  35565. height: math.unit(1.85, "feet"),
  35566. name: "Beans",
  35567. image: {
  35568. source: "./media/characters/keegan/beans.svg"
  35569. }
  35570. },
  35571. },
  35572. [
  35573. {
  35574. name: "Normal",
  35575. height: math.unit(6 + 5/12, "feet"),
  35576. default: true
  35577. },
  35578. ]
  35579. ))
  35580. characterMakers.push(() => makeCharacter(
  35581. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  35582. {
  35583. front: {
  35584. height: math.unit(9, "feet"),
  35585. name: "Front",
  35586. image: {
  35587. source: "./media/characters/colton/front.svg",
  35588. extra: 1589/1326,
  35589. bottom: 139/1728
  35590. }
  35591. },
  35592. },
  35593. [
  35594. {
  35595. name: "Normal",
  35596. height: math.unit(9, "feet"),
  35597. default: true
  35598. },
  35599. ]
  35600. ))
  35601. characterMakers.push(() => makeCharacter(
  35602. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  35603. {
  35604. front: {
  35605. height: math.unit(2 + 9/12, "feet"),
  35606. name: "Front",
  35607. image: {
  35608. source: "./media/characters/bora/front.svg",
  35609. extra: 1265/1250,
  35610. bottom: 24/1289
  35611. }
  35612. },
  35613. },
  35614. [
  35615. {
  35616. name: "Normal",
  35617. height: math.unit(2 + 9/12, "feet"),
  35618. default: true
  35619. },
  35620. ]
  35621. ))
  35622. characterMakers.push(() => makeCharacter(
  35623. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  35624. {
  35625. front: {
  35626. height: math.unit(8, "feet"),
  35627. name: "Front",
  35628. image: {
  35629. source: "./media/characters/myu-myu/front.svg",
  35630. extra: 1949/1857,
  35631. bottom: 90/2039
  35632. }
  35633. },
  35634. },
  35635. [
  35636. {
  35637. name: "Normal",
  35638. height: math.unit(8, "feet"),
  35639. default: true
  35640. },
  35641. {
  35642. name: "Big",
  35643. height: math.unit(15, "feet")
  35644. },
  35645. {
  35646. name: "BIG",
  35647. height: math.unit(25, "feet")
  35648. },
  35649. ]
  35650. ))
  35651. characterMakers.push(() => makeCharacter(
  35652. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  35653. {
  35654. side: {
  35655. height: math.unit(7 + 5/12, "feet"),
  35656. weight: math.unit(2800, "lb"),
  35657. name: "Side",
  35658. image: {
  35659. source: "./media/characters/haloren/side.svg",
  35660. extra: 1793/409,
  35661. bottom: 59/1852
  35662. }
  35663. },
  35664. frontPaw: {
  35665. height: math.unit(2.36, "feet"),
  35666. name: "Front paw",
  35667. image: {
  35668. source: "./media/characters/haloren/front-paw.svg"
  35669. }
  35670. },
  35671. hindPaw: {
  35672. height: math.unit(3.18, "feet"),
  35673. name: "Hind paw",
  35674. image: {
  35675. source: "./media/characters/haloren/hind-paw.svg"
  35676. }
  35677. },
  35678. maw: {
  35679. height: math.unit(5.05, "feet"),
  35680. name: "Maw",
  35681. image: {
  35682. source: "./media/characters/haloren/maw.svg"
  35683. }
  35684. },
  35685. dick: {
  35686. height: math.unit(2.90, "feet"),
  35687. name: "Dick",
  35688. image: {
  35689. source: "./media/characters/haloren/dick.svg"
  35690. }
  35691. },
  35692. },
  35693. [
  35694. {
  35695. name: "Normal",
  35696. height: math.unit(7 + 5/12, "feet"),
  35697. default: true
  35698. },
  35699. {
  35700. name: "Enhanced",
  35701. height: math.unit(14 + 3/12, "feet")
  35702. },
  35703. ]
  35704. ))
  35705. characterMakers.push(() => makeCharacter(
  35706. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  35707. {
  35708. front: {
  35709. height: math.unit(171, "cm"),
  35710. name: "Front",
  35711. image: {
  35712. source: "./media/characters/kimmy/front.svg",
  35713. extra: 1491/1435,
  35714. bottom: 53/1544
  35715. }
  35716. },
  35717. },
  35718. [
  35719. {
  35720. name: "Small",
  35721. height: math.unit(9, "cm")
  35722. },
  35723. {
  35724. name: "Normal",
  35725. height: math.unit(171, "cm"),
  35726. default: true
  35727. },
  35728. ]
  35729. ))
  35730. characterMakers.push(() => makeCharacter(
  35731. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  35732. {
  35733. front: {
  35734. height: math.unit(8, "feet"),
  35735. weight: math.unit(300, "lb"),
  35736. name: "Front",
  35737. image: {
  35738. source: "./media/characters/galeboomer/front.svg",
  35739. extra: 4651/4415,
  35740. bottom: 162/4813
  35741. }
  35742. },
  35743. back: {
  35744. height: math.unit(8, "feet"),
  35745. weight: math.unit(300, "lb"),
  35746. name: "Back",
  35747. image: {
  35748. source: "./media/characters/galeboomer/back.svg",
  35749. extra: 4544/4314,
  35750. bottom: 16/4560
  35751. }
  35752. },
  35753. frontAlt: {
  35754. height: math.unit(8, "feet"),
  35755. weight: math.unit(300, "lb"),
  35756. name: "Front (Alt)",
  35757. image: {
  35758. source: "./media/characters/galeboomer/front-alt.svg",
  35759. extra: 4458/4228,
  35760. bottom: 68/4526
  35761. }
  35762. },
  35763. maw: {
  35764. height: math.unit(1.2, "feet"),
  35765. name: "Maw",
  35766. image: {
  35767. source: "./media/characters/galeboomer/maw.svg"
  35768. }
  35769. },
  35770. },
  35771. [
  35772. {
  35773. name: "Normal",
  35774. height: math.unit(8, "feet"),
  35775. default: true
  35776. },
  35777. ]
  35778. ))
  35779. characterMakers.push(() => makeCharacter(
  35780. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  35781. {
  35782. front: {
  35783. height: math.unit(5 + 9/12, "feet"),
  35784. weight: math.unit(120, "lb"),
  35785. name: "Front",
  35786. image: {
  35787. source: "./media/characters/chyr/front.svg",
  35788. extra: 1323/1254,
  35789. bottom: 63/1386
  35790. }
  35791. },
  35792. back: {
  35793. height: math.unit(5 + 9/12, "feet"),
  35794. weight: math.unit(120, "lb"),
  35795. name: "Back",
  35796. image: {
  35797. source: "./media/characters/chyr/back.svg",
  35798. extra: 1323/1252,
  35799. bottom: 48/1371
  35800. }
  35801. },
  35802. },
  35803. [
  35804. {
  35805. name: "Normal",
  35806. height: math.unit(5 + 9/12, "feet"),
  35807. default: true
  35808. },
  35809. ]
  35810. ))
  35811. characterMakers.push(() => makeCharacter(
  35812. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  35813. {
  35814. front: {
  35815. height: math.unit(7, "feet"),
  35816. weight: math.unit(310, "lb"),
  35817. name: "Front",
  35818. image: {
  35819. source: "./media/characters/solarus/front.svg",
  35820. extra: 2415/2021,
  35821. bottom: 103/2518
  35822. }
  35823. },
  35824. back: {
  35825. height: math.unit(7, "feet"),
  35826. weight: math.unit(310, "lb"),
  35827. name: "Back",
  35828. image: {
  35829. source: "./media/characters/solarus/back.svg",
  35830. extra: 2463/2089,
  35831. bottom: 79/2542
  35832. }
  35833. },
  35834. },
  35835. [
  35836. {
  35837. name: "Normal",
  35838. height: math.unit(7, "feet"),
  35839. default: true
  35840. },
  35841. ]
  35842. ))
  35843. characterMakers.push(() => makeCharacter(
  35844. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  35845. {
  35846. front: {
  35847. height: math.unit(16, "feet"),
  35848. name: "Front",
  35849. image: {
  35850. source: "./media/characters/mutsuju-koizaemon/front.svg",
  35851. extra: 1844/1780,
  35852. bottom: 58/1902
  35853. }
  35854. },
  35855. winterCoat: {
  35856. height: math.unit(16, "feet"),
  35857. name: "Winter Coat",
  35858. image: {
  35859. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  35860. extra: 1807/1775,
  35861. bottom: 69/1876
  35862. }
  35863. },
  35864. },
  35865. [
  35866. {
  35867. name: "Normal",
  35868. height: math.unit(16, "feet"),
  35869. default: true
  35870. },
  35871. {
  35872. name: "Chicago Size",
  35873. height: math.unit(560, "feet")
  35874. },
  35875. ]
  35876. ))
  35877. characterMakers.push(() => makeCharacter(
  35878. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  35879. {
  35880. front: {
  35881. height: math.unit(11 + 6/12, "feet"),
  35882. weight: math.unit(1366, "lb"),
  35883. name: "Front",
  35884. image: {
  35885. source: "./media/characters/lexor/front.svg",
  35886. extra: 1560/1481,
  35887. bottom: 211/1771
  35888. }
  35889. },
  35890. back: {
  35891. height: math.unit(11 + 6/12, "feet"),
  35892. weight: math.unit(1366, "lb"),
  35893. name: "Back",
  35894. image: {
  35895. source: "./media/characters/lexor/back.svg",
  35896. extra: 1614/1533,
  35897. bottom: 76/1690
  35898. }
  35899. },
  35900. maw: {
  35901. height: math.unit(3, "feet"),
  35902. name: "Maw",
  35903. image: {
  35904. source: "./media/characters/lexor/maw.svg"
  35905. }
  35906. },
  35907. dick: {
  35908. height: math.unit(2.59, "feet"),
  35909. name: "Dick",
  35910. image: {
  35911. source: "./media/characters/lexor/dick.svg"
  35912. }
  35913. },
  35914. },
  35915. [
  35916. {
  35917. name: "Normal",
  35918. height: math.unit(11 + 6/12, "feet"),
  35919. default: true
  35920. },
  35921. ]
  35922. ))
  35923. characterMakers.push(() => makeCharacter(
  35924. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  35925. {
  35926. front: {
  35927. height: math.unit(5 + 8/12, "feet"),
  35928. name: "Front",
  35929. image: {
  35930. source: "./media/characters/magnum/front.svg",
  35931. extra: 942/855,
  35932. bottom: 26/968
  35933. }
  35934. },
  35935. },
  35936. [
  35937. {
  35938. name: "Normal",
  35939. height: math.unit(5 + 8/12, "feet"),
  35940. default: true
  35941. },
  35942. ]
  35943. ))
  35944. characterMakers.push(() => makeCharacter(
  35945. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  35946. {
  35947. front: {
  35948. height: math.unit(18 + 4/12, "feet"),
  35949. weight: math.unit(1500, "kg"),
  35950. name: "Front",
  35951. image: {
  35952. source: "./media/characters/solas-sharpsman/front.svg",
  35953. extra: 1698/1589,
  35954. bottom: 0/1698
  35955. }
  35956. },
  35957. },
  35958. [
  35959. {
  35960. name: "Normal",
  35961. height: math.unit(18 + 4/12, "feet"),
  35962. default: true
  35963. },
  35964. ]
  35965. ))
  35966. characterMakers.push(() => makeCharacter(
  35967. { name: "October", species: ["tiger"], tags: ["anthro"] },
  35968. {
  35969. front: {
  35970. height: math.unit(5 + 5/12, "feet"),
  35971. weight: math.unit(180, "lb"),
  35972. name: "Front",
  35973. image: {
  35974. source: "./media/characters/october/front.svg",
  35975. extra: 1800/1650,
  35976. bottom: 0/1800
  35977. }
  35978. },
  35979. frontNsfw: {
  35980. height: math.unit(5 + 5/12, "feet"),
  35981. weight: math.unit(180, "lb"),
  35982. name: "Front (NSFW)",
  35983. image: {
  35984. source: "./media/characters/october/front-nsfw.svg",
  35985. extra: 1392/1307,
  35986. bottom: 42/1434
  35987. }
  35988. },
  35989. },
  35990. [
  35991. {
  35992. name: "Normal",
  35993. height: math.unit(5 + 5/12, "feet"),
  35994. default: true
  35995. },
  35996. ]
  35997. ))
  35998. characterMakers.push(() => makeCharacter(
  35999. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  36000. {
  36001. front: {
  36002. height: math.unit(8 + 6/12, "feet"),
  36003. name: "Front",
  36004. image: {
  36005. source: "./media/characters/essynkardi/front.svg",
  36006. extra: 1914/1846,
  36007. bottom: 22/1936
  36008. }
  36009. },
  36010. },
  36011. [
  36012. {
  36013. name: "Normal",
  36014. height: math.unit(8 + 6/12, "feet"),
  36015. default: true
  36016. },
  36017. ]
  36018. ))
  36019. characterMakers.push(() => makeCharacter(
  36020. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  36021. {
  36022. front: {
  36023. height: math.unit(6 + 6/12, "feet"),
  36024. weight: math.unit(7, "lb"),
  36025. name: "Front",
  36026. image: {
  36027. source: "./media/characters/icky/front.svg",
  36028. extra: 813/782,
  36029. bottom: 66/879
  36030. }
  36031. },
  36032. back: {
  36033. height: math.unit(6 + 6/12, "feet"),
  36034. weight: math.unit(7, "lb"),
  36035. name: "Back",
  36036. image: {
  36037. source: "./media/characters/icky/back.svg",
  36038. extra: 754/735,
  36039. bottom: 56/810
  36040. }
  36041. },
  36042. },
  36043. [
  36044. {
  36045. name: "Normal",
  36046. height: math.unit(6 + 6/12, "feet"),
  36047. default: true
  36048. },
  36049. ]
  36050. ))
  36051. characterMakers.push(() => makeCharacter(
  36052. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  36053. {
  36054. front: {
  36055. height: math.unit(15, "feet"),
  36056. name: "Front",
  36057. image: {
  36058. source: "./media/characters/rojas/front.svg",
  36059. extra: 1462/1408,
  36060. bottom: 95/1557
  36061. }
  36062. },
  36063. back: {
  36064. height: math.unit(15, "feet"),
  36065. name: "Back",
  36066. image: {
  36067. source: "./media/characters/rojas/back.svg",
  36068. extra: 1023/954,
  36069. bottom: 28/1051
  36070. }
  36071. },
  36072. },
  36073. [
  36074. {
  36075. name: "Normal",
  36076. height: math.unit(15, "feet"),
  36077. default: true
  36078. },
  36079. ]
  36080. ))
  36081. characterMakers.push(() => makeCharacter(
  36082. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  36083. {
  36084. frontHuman: {
  36085. height: math.unit(5 + 7/12, "feet"),
  36086. name: "Front (Human)",
  36087. image: {
  36088. source: "./media/characters/alek-dryagan/front-human.svg",
  36089. extra: 1687/1667,
  36090. bottom: 69/1756
  36091. }
  36092. },
  36093. backHuman: {
  36094. height: math.unit(5 + 7/12, "feet"),
  36095. name: "Back (Human)",
  36096. image: {
  36097. source: "./media/characters/alek-dryagan/back-human.svg",
  36098. extra: 1670/1649,
  36099. bottom: 65/1735
  36100. }
  36101. },
  36102. frontDemi: {
  36103. height: math.unit(65, "feet"),
  36104. name: "Front (Demi)",
  36105. image: {
  36106. source: "./media/characters/alek-dryagan/front-demi.svg",
  36107. extra: 1669/1642,
  36108. bottom: 49/1718
  36109. }
  36110. },
  36111. backDemi: {
  36112. height: math.unit(65, "feet"),
  36113. name: "Back (Demi)",
  36114. image: {
  36115. source: "./media/characters/alek-dryagan/back-demi.svg",
  36116. extra: 1658/1637,
  36117. bottom: 40/1698
  36118. }
  36119. },
  36120. mawHuman: {
  36121. height: math.unit(0.3, "feet"),
  36122. name: "Maw (Human)",
  36123. image: {
  36124. source: "./media/characters/alek-dryagan/maw-human.svg"
  36125. }
  36126. },
  36127. mawDemi: {
  36128. height: math.unit(3.8, "feet"),
  36129. name: "Maw (Demi)",
  36130. image: {
  36131. source: "./media/characters/alek-dryagan/maw-demi.svg"
  36132. }
  36133. },
  36134. },
  36135. [
  36136. {
  36137. name: "Normal",
  36138. height: math.unit(5 + 7/12, "feet"),
  36139. default: true
  36140. },
  36141. ]
  36142. ))
  36143. characterMakers.push(() => makeCharacter(
  36144. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  36145. {
  36146. frontHuman: {
  36147. height: math.unit(5 + 2/12, "feet"),
  36148. name: "Front (Human)",
  36149. image: {
  36150. source: "./media/characters/gen/front-human.svg",
  36151. extra: 1627/1538,
  36152. bottom: 71/1698
  36153. }
  36154. },
  36155. backHuman: {
  36156. height: math.unit(5 + 2/12, "feet"),
  36157. name: "Back (Human)",
  36158. image: {
  36159. source: "./media/characters/gen/back-human.svg",
  36160. extra: 1638/1548,
  36161. bottom: 69/1707
  36162. }
  36163. },
  36164. frontDemi: {
  36165. height: math.unit(5 + 2/12, "feet"),
  36166. name: "Front (Demi)",
  36167. image: {
  36168. source: "./media/characters/gen/front-demi.svg",
  36169. extra: 1627/1538,
  36170. bottom: 71/1698
  36171. }
  36172. },
  36173. backDemi: {
  36174. height: math.unit(5 + 2/12, "feet"),
  36175. name: "Back (Demi)",
  36176. image: {
  36177. source: "./media/characters/gen/back-demi.svg",
  36178. extra: 1638/1548,
  36179. bottom: 69/1707
  36180. }
  36181. },
  36182. },
  36183. [
  36184. {
  36185. name: "Normal",
  36186. height: math.unit(5 + 2/12, "feet"),
  36187. default: true
  36188. },
  36189. ]
  36190. ))
  36191. characterMakers.push(() => makeCharacter(
  36192. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  36193. {
  36194. frontImp: {
  36195. height: math.unit(1 + 11/12, "feet"),
  36196. name: "Front (Imp)",
  36197. image: {
  36198. source: "./media/characters/max-kobold/front-imp.svg",
  36199. extra: 1238/1134,
  36200. bottom: 81/1319
  36201. }
  36202. },
  36203. backImp: {
  36204. height: math.unit(1 + 11/12, "feet"),
  36205. name: "Back (Imp)",
  36206. image: {
  36207. source: "./media/characters/max-kobold/back-imp.svg",
  36208. extra: 1334/1175,
  36209. bottom: 34/1368
  36210. }
  36211. },
  36212. frontDemi: {
  36213. height: math.unit(5 + 9/12, "feet"),
  36214. name: "Front (Demi)",
  36215. image: {
  36216. source: "./media/characters/max-kobold/front-demi.svg",
  36217. extra: 1715/1685,
  36218. bottom: 54/1769
  36219. }
  36220. },
  36221. backDemi: {
  36222. height: math.unit(5 + 9/12, "feet"),
  36223. name: "Back (Demi)",
  36224. image: {
  36225. source: "./media/characters/max-kobold/back-demi.svg",
  36226. extra: 1752/1729,
  36227. bottom: 41/1793
  36228. }
  36229. },
  36230. handImp: {
  36231. height: math.unit(0.45, "feet"),
  36232. name: "Hand (Imp)",
  36233. image: {
  36234. source: "./media/characters/max-kobold/hand.svg"
  36235. }
  36236. },
  36237. pawImp: {
  36238. height: math.unit(0.46, "feet"),
  36239. name: "Paw (Imp)",
  36240. image: {
  36241. source: "./media/characters/max-kobold/paw.svg"
  36242. }
  36243. },
  36244. handDemi: {
  36245. height: math.unit(0.80, "feet"),
  36246. name: "Hand (Demi)",
  36247. image: {
  36248. source: "./media/characters/max-kobold/hand.svg"
  36249. }
  36250. },
  36251. pawDemi: {
  36252. height: math.unit(1.1, "feet"),
  36253. name: "Paw (Demi)",
  36254. image: {
  36255. source: "./media/characters/max-kobold/paw.svg"
  36256. }
  36257. },
  36258. headImp: {
  36259. height: math.unit(1.33, "feet"),
  36260. name: "Head (Imp)",
  36261. image: {
  36262. source: "./media/characters/max-kobold/head-imp.svg"
  36263. }
  36264. },
  36265. mawImp: {
  36266. height: math.unit(0.75, "feet"),
  36267. name: "Maw (Imp)",
  36268. image: {
  36269. source: "./media/characters/max-kobold/maw-imp.svg"
  36270. }
  36271. },
  36272. mawDemi: {
  36273. height: math.unit(0.42, "feet"),
  36274. name: "Maw (Demi)",
  36275. image: {
  36276. source: "./media/characters/max-kobold/maw-demi.svg"
  36277. }
  36278. },
  36279. },
  36280. [
  36281. {
  36282. name: "Normal",
  36283. height: math.unit(1 + 11/12, "feet"),
  36284. default: true
  36285. },
  36286. ]
  36287. ))
  36288. characterMakers.push(() => makeCharacter(
  36289. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  36290. {
  36291. front: {
  36292. height: math.unit(7 + 5/12, "feet"),
  36293. name: "Front",
  36294. image: {
  36295. source: "./media/characters/carbon/front.svg",
  36296. extra: 1754/1689,
  36297. bottom: 65/1819
  36298. }
  36299. },
  36300. back: {
  36301. height: math.unit(7 + 5/12, "feet"),
  36302. name: "Back",
  36303. image: {
  36304. source: "./media/characters/carbon/back.svg",
  36305. extra: 1762/1695,
  36306. bottom: 24/1786
  36307. }
  36308. },
  36309. frontGigantamax: {
  36310. height: math.unit(150, "feet"),
  36311. name: "Front (Gigantamax)",
  36312. image: {
  36313. source: "./media/characters/carbon/front-gigantamax.svg",
  36314. extra: 1826/1669,
  36315. bottom: 59/1885
  36316. }
  36317. },
  36318. backGigantamax: {
  36319. height: math.unit(150, "feet"),
  36320. name: "Back (Gigantamax)",
  36321. image: {
  36322. source: "./media/characters/carbon/back-gigantamax.svg",
  36323. extra: 1796/1653,
  36324. bottom: 53/1849
  36325. }
  36326. },
  36327. maw: {
  36328. height: math.unit(0.48, "feet"),
  36329. name: "Maw",
  36330. image: {
  36331. source: "./media/characters/carbon/maw.svg"
  36332. }
  36333. },
  36334. mawGigantamax: {
  36335. height: math.unit(7.5, "feet"),
  36336. name: "Maw (Gigantamax)",
  36337. image: {
  36338. source: "./media/characters/carbon/maw-gigantamax.svg"
  36339. }
  36340. },
  36341. },
  36342. [
  36343. {
  36344. name: "Normal",
  36345. height: math.unit(7 + 5/12, "feet"),
  36346. default: true
  36347. },
  36348. ]
  36349. ))
  36350. characterMakers.push(() => makeCharacter(
  36351. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  36352. {
  36353. front: {
  36354. height: math.unit(6, "feet"),
  36355. name: "Front",
  36356. image: {
  36357. source: "./media/characters/maverick/front.svg",
  36358. extra: 1672/1661,
  36359. bottom: 85/1757
  36360. }
  36361. },
  36362. back: {
  36363. height: math.unit(6, "feet"),
  36364. name: "Back",
  36365. image: {
  36366. source: "./media/characters/maverick/back.svg",
  36367. extra: 1642/1631,
  36368. bottom: 38/1680
  36369. }
  36370. },
  36371. },
  36372. [
  36373. {
  36374. name: "Normal",
  36375. height: math.unit(6, "feet"),
  36376. default: true
  36377. },
  36378. ]
  36379. ))
  36380. characterMakers.push(() => makeCharacter(
  36381. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  36382. {
  36383. front: {
  36384. height: math.unit(15, "feet"),
  36385. weight: math.unit(615, "lb"),
  36386. name: "Front",
  36387. image: {
  36388. source: "./media/characters/grockle/front.svg",
  36389. extra: 1535/1427,
  36390. bottom: 56/1591
  36391. }
  36392. },
  36393. },
  36394. [
  36395. {
  36396. name: "Normal",
  36397. height: math.unit(15, "feet"),
  36398. default: true
  36399. },
  36400. {
  36401. name: "Large",
  36402. height: math.unit(150, "feet")
  36403. },
  36404. {
  36405. name: "Macro",
  36406. height: math.unit(1876, "feet")
  36407. },
  36408. {
  36409. name: "Mega Macro",
  36410. height: math.unit(121940, "feet")
  36411. },
  36412. {
  36413. name: "Giga Macro",
  36414. height: math.unit(750, "km")
  36415. },
  36416. {
  36417. name: "Tera Macro",
  36418. height: math.unit(750000, "km")
  36419. },
  36420. {
  36421. name: "Galactic",
  36422. height: math.unit(1.4e5, "km")
  36423. },
  36424. {
  36425. name: "Godlike",
  36426. height: math.unit(9.8e280, "galaxies")
  36427. },
  36428. ]
  36429. ))
  36430. characterMakers.push(() => makeCharacter(
  36431. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  36432. {
  36433. front: {
  36434. height: math.unit(11, "meters"),
  36435. weight: math.unit(20, "tonnes"),
  36436. name: "Front",
  36437. image: {
  36438. source: "./media/characters/alistair/front.svg",
  36439. extra: 1265/1009,
  36440. bottom: 93/1358
  36441. }
  36442. },
  36443. },
  36444. [
  36445. {
  36446. name: "Normal",
  36447. height: math.unit(11, "meters"),
  36448. default: true
  36449. },
  36450. ]
  36451. ))
  36452. characterMakers.push(() => makeCharacter(
  36453. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  36454. {
  36455. front: {
  36456. height: math.unit(5 + 8/12, "feet"),
  36457. name: "Front",
  36458. image: {
  36459. source: "./media/characters/haruka/front.svg",
  36460. extra: 2012/1952,
  36461. bottom: 0/2012
  36462. }
  36463. },
  36464. },
  36465. [
  36466. {
  36467. name: "Normal",
  36468. height: math.unit(5 + 8/12, "feet"),
  36469. default: true
  36470. },
  36471. ]
  36472. ))
  36473. characterMakers.push(() => makeCharacter(
  36474. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  36475. {
  36476. back: {
  36477. height: math.unit(9, "feet"),
  36478. name: "Back",
  36479. image: {
  36480. source: "./media/characters/vivian-sylveon/back.svg",
  36481. extra: 1853/1714,
  36482. bottom: 0/1853
  36483. }
  36484. },
  36485. },
  36486. [
  36487. {
  36488. name: "Normal",
  36489. height: math.unit(9, "feet"),
  36490. default: true
  36491. },
  36492. {
  36493. name: "Macro",
  36494. height: math.unit(500, "feet")
  36495. },
  36496. {
  36497. name: "Megamacro",
  36498. height: math.unit(600, "miles")
  36499. },
  36500. {
  36501. name: "Gigamacro",
  36502. height: math.unit(30000, "miles")
  36503. },
  36504. ]
  36505. ))
  36506. characterMakers.push(() => makeCharacter(
  36507. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  36508. {
  36509. anthro: {
  36510. height: math.unit(5 + 10/12, "feet"),
  36511. weight: math.unit(100, "lb"),
  36512. name: "Anthro",
  36513. image: {
  36514. source: "./media/characters/daiki/anthro.svg",
  36515. extra: 1115/1027,
  36516. bottom: 69/1184
  36517. }
  36518. },
  36519. feral: {
  36520. height: math.unit(200, "feet"),
  36521. name: "Feral",
  36522. image: {
  36523. source: "./media/characters/daiki/feral.svg",
  36524. extra: 1256/313,
  36525. bottom: 39/1295
  36526. }
  36527. },
  36528. feralHead: {
  36529. height: math.unit(171, "feet"),
  36530. name: "Feral Head",
  36531. image: {
  36532. source: "./media/characters/daiki/feral-head.svg"
  36533. }
  36534. },
  36535. manaDragon: {
  36536. height: math.unit(170, "meters"),
  36537. name: "Mana-dragon",
  36538. image: {
  36539. source: "./media/characters/daiki/mana-dragon.svg",
  36540. extra: 763/420,
  36541. bottom: 97/860
  36542. }
  36543. },
  36544. },
  36545. [
  36546. {
  36547. name: "Normal",
  36548. height: math.unit(5 + 10/12, "feet"),
  36549. default: true
  36550. },
  36551. ]
  36552. ))
  36553. characterMakers.push(() => makeCharacter(
  36554. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  36555. {
  36556. fullyEquippedFront: {
  36557. height: math.unit(3 + 1/12, "feet"),
  36558. weight: math.unit(24, "lb"),
  36559. name: "Fully Equipped (Front)",
  36560. image: {
  36561. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  36562. extra: 687/605,
  36563. bottom: 18/705
  36564. }
  36565. },
  36566. fullyEquippedBack: {
  36567. height: math.unit(3 + 1/12, "feet"),
  36568. weight: math.unit(24, "lb"),
  36569. name: "Fully Equipped (Back)",
  36570. image: {
  36571. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  36572. extra: 689/590,
  36573. bottom: 18/707
  36574. }
  36575. },
  36576. dailyWear: {
  36577. height: math.unit(3 + 1/12, "feet"),
  36578. weight: math.unit(24, "lb"),
  36579. name: "Daily Wear",
  36580. image: {
  36581. source: "./media/characters/tea-spot/daily-wear.svg",
  36582. extra: 701/620,
  36583. bottom: 21/722
  36584. }
  36585. },
  36586. maidWork: {
  36587. height: math.unit(3 + 1/12, "feet"),
  36588. weight: math.unit(24, "lb"),
  36589. name: "Maid Work",
  36590. image: {
  36591. source: "./media/characters/tea-spot/maid-work.svg",
  36592. extra: 693/609,
  36593. bottom: 15/708
  36594. }
  36595. },
  36596. },
  36597. [
  36598. {
  36599. name: "Normal",
  36600. height: math.unit(3 + 1/12, "feet"),
  36601. default: true
  36602. },
  36603. ]
  36604. ))
  36605. characterMakers.push(() => makeCharacter(
  36606. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  36607. {
  36608. front: {
  36609. height: math.unit(175, "cm"),
  36610. weight: math.unit(75, "kg"),
  36611. name: "Front",
  36612. image: {
  36613. source: "./media/characters/chee/front.svg",
  36614. extra: 1796/1740,
  36615. bottom: 40/1836
  36616. }
  36617. },
  36618. },
  36619. [
  36620. {
  36621. name: "Micro-Micro",
  36622. height: math.unit(1, "nm")
  36623. },
  36624. {
  36625. name: "Micro-erst",
  36626. height: math.unit(1, "micrometer")
  36627. },
  36628. {
  36629. name: "Micro-er",
  36630. height: math.unit(1, "cm")
  36631. },
  36632. {
  36633. name: "Normal",
  36634. height: math.unit(175, "cm"),
  36635. default: true
  36636. },
  36637. {
  36638. name: "Macro",
  36639. height: math.unit(100, "m")
  36640. },
  36641. {
  36642. name: "Macro-er",
  36643. height: math.unit(1, "km")
  36644. },
  36645. {
  36646. name: "Macro-erst",
  36647. height: math.unit(10, "km")
  36648. },
  36649. {
  36650. name: "Macro-Macro",
  36651. height: math.unit(100, "km")
  36652. },
  36653. ]
  36654. ))
  36655. characterMakers.push(() => makeCharacter(
  36656. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  36657. {
  36658. front: {
  36659. height: math.unit(11 + 9/12, "feet"),
  36660. weight: math.unit(935, "lb"),
  36661. name: "Front",
  36662. image: {
  36663. source: "./media/characters/kingsley/front.svg",
  36664. extra: 1803/1674,
  36665. bottom: 127/1930
  36666. }
  36667. },
  36668. frontNude: {
  36669. height: math.unit(11 + 9/12, "feet"),
  36670. weight: math.unit(935, "lb"),
  36671. name: "Front (Nude)",
  36672. image: {
  36673. source: "./media/characters/kingsley/front-nude.svg",
  36674. extra: 1803/1674,
  36675. bottom: 127/1930
  36676. }
  36677. },
  36678. },
  36679. [
  36680. {
  36681. name: "Normal",
  36682. height: math.unit(11 + 9/12, "feet"),
  36683. default: true
  36684. },
  36685. ]
  36686. ))
  36687. characterMakers.push(() => makeCharacter(
  36688. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  36689. {
  36690. side: {
  36691. height: math.unit(9, "feet"),
  36692. name: "Side",
  36693. image: {
  36694. source: "./media/characters/rymel/side.svg",
  36695. extra: 792/469,
  36696. bottom: 121/913
  36697. }
  36698. },
  36699. maw: {
  36700. height: math.unit(2.4, "meters"),
  36701. name: "Maw",
  36702. image: {
  36703. source: "./media/characters/rymel/maw.svg"
  36704. }
  36705. },
  36706. },
  36707. [
  36708. {
  36709. name: "House Drake",
  36710. height: math.unit(2, "feet")
  36711. },
  36712. {
  36713. name: "Reduced",
  36714. height: math.unit(4.5, "feet")
  36715. },
  36716. {
  36717. name: "Normal",
  36718. height: math.unit(9, "feet"),
  36719. default: true
  36720. },
  36721. ]
  36722. ))
  36723. characterMakers.push(() => makeCharacter(
  36724. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  36725. {
  36726. front: {
  36727. height: math.unit(1.74, "meters"),
  36728. weight: math.unit(55, "kg"),
  36729. name: "Front",
  36730. image: {
  36731. source: "./media/characters/rubus/front.svg",
  36732. extra: 1894/1742,
  36733. bottom: 44/1938
  36734. }
  36735. },
  36736. },
  36737. [
  36738. {
  36739. name: "Normal",
  36740. height: math.unit(1.74, "meters"),
  36741. default: true
  36742. },
  36743. ]
  36744. ))
  36745. characterMakers.push(() => makeCharacter(
  36746. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  36747. {
  36748. front: {
  36749. height: math.unit(5 + 2/12, "feet"),
  36750. weight: math.unit(112, "lb"),
  36751. name: "Front",
  36752. image: {
  36753. source: "./media/characters/cassie-kingston/front.svg",
  36754. extra: 1438/1390,
  36755. bottom: 47/1485
  36756. }
  36757. },
  36758. },
  36759. [
  36760. {
  36761. name: "Normal",
  36762. height: math.unit(5 + 2/12, "feet"),
  36763. default: true
  36764. },
  36765. {
  36766. name: "Macro",
  36767. height: math.unit(128, "feet")
  36768. },
  36769. {
  36770. name: "Megamacro",
  36771. height: math.unit(2.56, "miles")
  36772. },
  36773. ]
  36774. ))
  36775. characterMakers.push(() => makeCharacter(
  36776. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  36777. {
  36778. front: {
  36779. height: math.unit(7, "feet"),
  36780. name: "Front",
  36781. image: {
  36782. source: "./media/characters/fox/front.svg",
  36783. extra: 1798/1703,
  36784. bottom: 55/1853
  36785. }
  36786. },
  36787. back: {
  36788. height: math.unit(7, "feet"),
  36789. name: "Back",
  36790. image: {
  36791. source: "./media/characters/fox/back.svg",
  36792. extra: 1748/1649,
  36793. bottom: 32/1780
  36794. }
  36795. },
  36796. head: {
  36797. height: math.unit(1.95, "feet"),
  36798. name: "Head",
  36799. image: {
  36800. source: "./media/characters/fox/head.svg"
  36801. }
  36802. },
  36803. dick: {
  36804. height: math.unit(1.33, "feet"),
  36805. name: "Dick",
  36806. image: {
  36807. source: "./media/characters/fox/dick.svg"
  36808. }
  36809. },
  36810. foot: {
  36811. height: math.unit(1, "feet"),
  36812. name: "Foot",
  36813. image: {
  36814. source: "./media/characters/fox/foot.svg"
  36815. }
  36816. },
  36817. paw: {
  36818. height: math.unit(0.92, "feet"),
  36819. name: "Paw",
  36820. image: {
  36821. source: "./media/characters/fox/paw.svg"
  36822. }
  36823. },
  36824. },
  36825. [
  36826. {
  36827. name: "Small",
  36828. height: math.unit(3, "inches")
  36829. },
  36830. {
  36831. name: "\"Realistic\"",
  36832. height: math.unit(7, "feet")
  36833. },
  36834. {
  36835. name: "Normal",
  36836. height: math.unit(150, "feet"),
  36837. default: true
  36838. },
  36839. {
  36840. name: "BIG",
  36841. height: math.unit(1200, "feet")
  36842. },
  36843. {
  36844. name: "👀",
  36845. height: math.unit(5, "miles")
  36846. },
  36847. {
  36848. name: "👀👀👀",
  36849. height: math.unit(64, "miles")
  36850. },
  36851. ]
  36852. ))
  36853. characterMakers.push(() => makeCharacter(
  36854. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  36855. {
  36856. front: {
  36857. height: math.unit(625, "feet"),
  36858. name: "Front",
  36859. image: {
  36860. source: "./media/characters/asonja-rossa/front.svg",
  36861. extra: 1833/1686,
  36862. bottom: 24/1857
  36863. }
  36864. },
  36865. back: {
  36866. height: math.unit(625, "feet"),
  36867. name: "Back",
  36868. image: {
  36869. source: "./media/characters/asonja-rossa/back.svg",
  36870. extra: 1852/1753,
  36871. bottom: 26/1878
  36872. }
  36873. },
  36874. },
  36875. [
  36876. {
  36877. name: "Macro",
  36878. height: math.unit(625, "feet"),
  36879. default: true
  36880. },
  36881. ]
  36882. ))
  36883. characterMakers.push(() => makeCharacter(
  36884. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  36885. {
  36886. side: {
  36887. height: math.unit(8, "feet"),
  36888. name: "Side",
  36889. image: {
  36890. source: "./media/characters/rezukii/side.svg",
  36891. extra: 979/542,
  36892. bottom: 87/1066
  36893. }
  36894. },
  36895. sitting: {
  36896. height: math.unit(14.6, "feet"),
  36897. name: "Sitting",
  36898. image: {
  36899. source: "./media/characters/rezukii/sitting.svg",
  36900. extra: 1023/813,
  36901. bottom: 45/1068
  36902. }
  36903. },
  36904. },
  36905. [
  36906. {
  36907. name: "Tiny",
  36908. height: math.unit(2, "feet")
  36909. },
  36910. {
  36911. name: "Smol",
  36912. height: math.unit(4, "feet")
  36913. },
  36914. {
  36915. name: "Normal",
  36916. height: math.unit(8, "feet"),
  36917. default: true
  36918. },
  36919. {
  36920. name: "Big",
  36921. height: math.unit(12, "feet")
  36922. },
  36923. {
  36924. name: "Macro",
  36925. height: math.unit(30, "feet")
  36926. },
  36927. ]
  36928. ))
  36929. characterMakers.push(() => makeCharacter(
  36930. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  36931. {
  36932. front: {
  36933. height: math.unit(14, "feet"),
  36934. weight: math.unit(9.5, "tonnes"),
  36935. name: "Front",
  36936. image: {
  36937. source: "./media/characters/dawnheart/front.svg",
  36938. extra: 2792/2675,
  36939. bottom: 64/2856
  36940. }
  36941. },
  36942. },
  36943. [
  36944. {
  36945. name: "Normal",
  36946. height: math.unit(14, "feet"),
  36947. default: true
  36948. },
  36949. ]
  36950. ))
  36951. characterMakers.push(() => makeCharacter(
  36952. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  36953. {
  36954. front: {
  36955. height: math.unit(1.7, "m"),
  36956. name: "Front",
  36957. image: {
  36958. source: "./media/characters/gladi/front.svg",
  36959. extra: 1460/1362,
  36960. bottom: 19/1479
  36961. }
  36962. },
  36963. back: {
  36964. height: math.unit(1.7, "m"),
  36965. name: "Back",
  36966. image: {
  36967. source: "./media/characters/gladi/back.svg",
  36968. extra: 1459/1357,
  36969. bottom: 12/1471
  36970. }
  36971. },
  36972. feral: {
  36973. height: math.unit(2.05, "m"),
  36974. name: "Feral",
  36975. image: {
  36976. source: "./media/characters/gladi/feral.svg",
  36977. extra: 821/557,
  36978. bottom: 91/912
  36979. }
  36980. },
  36981. },
  36982. [
  36983. {
  36984. name: "Shortest",
  36985. height: math.unit(70, "cm")
  36986. },
  36987. {
  36988. name: "Normal",
  36989. height: math.unit(1.7, "m")
  36990. },
  36991. {
  36992. name: "Macro",
  36993. height: math.unit(10, "m"),
  36994. default: true
  36995. },
  36996. {
  36997. name: "Tallest",
  36998. height: math.unit(200, "m")
  36999. },
  37000. ]
  37001. ))
  37002. characterMakers.push(() => makeCharacter(
  37003. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  37004. {
  37005. front: {
  37006. height: math.unit(5 + 7/12, "feet"),
  37007. weight: math.unit(2, "tons"),
  37008. name: "Front",
  37009. image: {
  37010. source: "./media/characters/erdno/front.svg",
  37011. extra: 1234/1129,
  37012. bottom: 35/1269
  37013. }
  37014. },
  37015. angled: {
  37016. height: math.unit(5 + 7/12, "feet"),
  37017. weight: math.unit(2, "tons"),
  37018. name: "Angled",
  37019. image: {
  37020. source: "./media/characters/erdno/angled.svg",
  37021. extra: 1185/1139,
  37022. bottom: 36/1221
  37023. }
  37024. },
  37025. side: {
  37026. height: math.unit(5 + 7/12, "feet"),
  37027. weight: math.unit(2, "tons"),
  37028. name: "Side",
  37029. image: {
  37030. source: "./media/characters/erdno/side.svg",
  37031. extra: 1191/1144,
  37032. bottom: 40/1231
  37033. }
  37034. },
  37035. back: {
  37036. height: math.unit(5 + 7/12, "feet"),
  37037. weight: math.unit(2, "tons"),
  37038. name: "Back",
  37039. image: {
  37040. source: "./media/characters/erdno/back.svg",
  37041. extra: 1202/1146,
  37042. bottom: 17/1219
  37043. }
  37044. },
  37045. frontNsfw: {
  37046. height: math.unit(5 + 7/12, "feet"),
  37047. weight: math.unit(2, "tons"),
  37048. name: "Front (NSFW)",
  37049. image: {
  37050. source: "./media/characters/erdno/front-nsfw.svg",
  37051. extra: 1234/1129,
  37052. bottom: 35/1269
  37053. }
  37054. },
  37055. angledNsfw: {
  37056. height: math.unit(5 + 7/12, "feet"),
  37057. weight: math.unit(2, "tons"),
  37058. name: "Angled (NSFW)",
  37059. image: {
  37060. source: "./media/characters/erdno/angled-nsfw.svg",
  37061. extra: 1185/1139,
  37062. bottom: 36/1221
  37063. }
  37064. },
  37065. sideNsfw: {
  37066. height: math.unit(5 + 7/12, "feet"),
  37067. weight: math.unit(2, "tons"),
  37068. name: "Side (NSFW)",
  37069. image: {
  37070. source: "./media/characters/erdno/side-nsfw.svg",
  37071. extra: 1191/1144,
  37072. bottom: 40/1231
  37073. }
  37074. },
  37075. backNsfw: {
  37076. height: math.unit(5 + 7/12, "feet"),
  37077. weight: math.unit(2, "tons"),
  37078. name: "Back (NSFW)",
  37079. image: {
  37080. source: "./media/characters/erdno/back-nsfw.svg",
  37081. extra: 1202/1146,
  37082. bottom: 17/1219
  37083. }
  37084. },
  37085. frontHyper: {
  37086. height: math.unit(5 + 7/12, "feet"),
  37087. weight: math.unit(2, "tons"),
  37088. name: "Front (Hyper)",
  37089. image: {
  37090. source: "./media/characters/erdno/front-hyper.svg",
  37091. extra: 1298/1136,
  37092. bottom: 35/1333
  37093. }
  37094. },
  37095. },
  37096. [
  37097. {
  37098. name: "Normal",
  37099. height: math.unit(5 + 7/12, "feet"),
  37100. default: true
  37101. },
  37102. {
  37103. name: "Big",
  37104. height: math.unit(5.7, "meters")
  37105. },
  37106. {
  37107. name: "Macro",
  37108. height: math.unit(5.7, "kilometers")
  37109. },
  37110. {
  37111. name: "Megamacro",
  37112. height: math.unit(5.7, "earths")
  37113. },
  37114. ]
  37115. ))
  37116. characterMakers.push(() => makeCharacter(
  37117. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  37118. {
  37119. front: {
  37120. height: math.unit(5 + 10/12, "feet"),
  37121. weight: math.unit(150, "lb"),
  37122. name: "Front",
  37123. image: {
  37124. source: "./media/characters/jamie/front.svg",
  37125. extra: 1908/1768,
  37126. bottom: 19/1927
  37127. }
  37128. },
  37129. },
  37130. [
  37131. {
  37132. name: "Minimum",
  37133. height: math.unit(2, "cm")
  37134. },
  37135. {
  37136. name: "Micro",
  37137. height: math.unit(3, "inches")
  37138. },
  37139. {
  37140. name: "Normal",
  37141. height: math.unit(5 + 10/12, "feet"),
  37142. default: true
  37143. },
  37144. {
  37145. name: "Macro",
  37146. height: math.unit(150, "feet")
  37147. },
  37148. {
  37149. name: "Megamacro",
  37150. height: math.unit(10000, "m")
  37151. },
  37152. ]
  37153. ))
  37154. characterMakers.push(() => makeCharacter(
  37155. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  37156. {
  37157. front: {
  37158. height: math.unit(2, "meters"),
  37159. weight: math.unit(100, "kg"),
  37160. name: "Front",
  37161. image: {
  37162. source: "./media/characters/shiron/front.svg",
  37163. extra: 2103/1985,
  37164. bottom: 98/2201
  37165. }
  37166. },
  37167. back: {
  37168. height: math.unit(2, "meters"),
  37169. weight: math.unit(100, "kg"),
  37170. name: "Back",
  37171. image: {
  37172. source: "./media/characters/shiron/back.svg",
  37173. extra: 2110/2015,
  37174. bottom: 89/2199
  37175. }
  37176. },
  37177. hand: {
  37178. height: math.unit(0.96, "feet"),
  37179. name: "Hand",
  37180. image: {
  37181. source: "./media/characters/shiron/hand.svg"
  37182. }
  37183. },
  37184. foot: {
  37185. height: math.unit(1.464, "feet"),
  37186. name: "Foot",
  37187. image: {
  37188. source: "./media/characters/shiron/foot.svg"
  37189. }
  37190. },
  37191. },
  37192. [
  37193. {
  37194. name: "Normal",
  37195. height: math.unit(2, "meters")
  37196. },
  37197. {
  37198. name: "Macro",
  37199. height: math.unit(500, "meters"),
  37200. default: true
  37201. },
  37202. {
  37203. name: "Megamacro",
  37204. height: math.unit(20, "km")
  37205. },
  37206. ]
  37207. ))
  37208. characterMakers.push(() => makeCharacter(
  37209. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  37210. {
  37211. front: {
  37212. height: math.unit(6, "feet"),
  37213. name: "Front",
  37214. image: {
  37215. source: "./media/characters/sam/front.svg",
  37216. extra: 849/826,
  37217. bottom: 19/868
  37218. }
  37219. },
  37220. },
  37221. [
  37222. {
  37223. name: "Normal",
  37224. height: math.unit(6, "feet"),
  37225. default: true
  37226. },
  37227. ]
  37228. ))
  37229. characterMakers.push(() => makeCharacter(
  37230. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  37231. {
  37232. front: {
  37233. height: math.unit(8 + 4/12, "feet"),
  37234. weight: math.unit(122, "kg"),
  37235. name: "Front",
  37236. image: {
  37237. source: "./media/characters/namori-kurogawa/front.svg",
  37238. extra: 1894/1576,
  37239. bottom: 34/1928
  37240. }
  37241. },
  37242. },
  37243. [
  37244. {
  37245. name: "Normal",
  37246. height: math.unit(8 + 4/12, "feet"),
  37247. default: true
  37248. },
  37249. ]
  37250. ))
  37251. characterMakers.push(() => makeCharacter(
  37252. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  37253. {
  37254. front: {
  37255. height: math.unit(9, "feet"),
  37256. weight: math.unit(621, "lb"),
  37257. name: "Front",
  37258. image: {
  37259. source: "./media/characters/unmru/front.svg",
  37260. extra: 1853/1747,
  37261. bottom: 73/1926
  37262. }
  37263. },
  37264. side: {
  37265. height: math.unit(9, "feet"),
  37266. weight: math.unit(621, "lb"),
  37267. name: "Side",
  37268. image: {
  37269. source: "./media/characters/unmru/side.svg",
  37270. extra: 1781/1671,
  37271. bottom: 127/1908
  37272. }
  37273. },
  37274. back: {
  37275. height: math.unit(9, "feet"),
  37276. weight: math.unit(621, "lb"),
  37277. name: "Back",
  37278. image: {
  37279. source: "./media/characters/unmru/back.svg",
  37280. extra: 1894/1765,
  37281. bottom: 75/1969
  37282. }
  37283. },
  37284. dick: {
  37285. height: math.unit(3, "feet"),
  37286. weight: math.unit(35, "lb"),
  37287. name: "Dick",
  37288. image: {
  37289. source: "./media/characters/unmru/dick.svg"
  37290. }
  37291. },
  37292. },
  37293. [
  37294. {
  37295. name: "Normal",
  37296. height: math.unit(9, "feet")
  37297. },
  37298. {
  37299. name: "Natural",
  37300. height: math.unit(27, "feet"),
  37301. default: true
  37302. },
  37303. {
  37304. name: "Giant",
  37305. height: math.unit(90, "feet")
  37306. },
  37307. {
  37308. name: "Kaiju",
  37309. height: math.unit(270, "feet")
  37310. },
  37311. {
  37312. name: "Macro",
  37313. height: math.unit(900, "feet")
  37314. },
  37315. {
  37316. name: "Macro+",
  37317. height: math.unit(2700, "feet")
  37318. },
  37319. {
  37320. name: "Megamacro",
  37321. height: math.unit(9000, "feet")
  37322. },
  37323. {
  37324. name: "City-Crushing",
  37325. height: math.unit(27000, "feet")
  37326. },
  37327. {
  37328. name: "Mountain-Mashing",
  37329. height: math.unit(90000, "feet")
  37330. },
  37331. {
  37332. name: "Earth-Eclipsing",
  37333. height: math.unit(2.7e8, "feet")
  37334. },
  37335. {
  37336. name: "Sol-Swallowing",
  37337. height: math.unit(9e10, "feet")
  37338. },
  37339. {
  37340. name: "Majoris-Munching",
  37341. height: math.unit(2.7e13, "feet")
  37342. },
  37343. ]
  37344. ))
  37345. characterMakers.push(() => makeCharacter(
  37346. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  37347. {
  37348. front: {
  37349. height: math.unit(1, "inch"),
  37350. name: "Front",
  37351. image: {
  37352. source: "./media/characters/squeaks-mouse/front.svg",
  37353. extra: 352/308,
  37354. bottom: 25/377
  37355. }
  37356. },
  37357. },
  37358. [
  37359. {
  37360. name: "Micro",
  37361. height: math.unit(1, "inch"),
  37362. default: true
  37363. },
  37364. ]
  37365. ))
  37366. characterMakers.push(() => makeCharacter(
  37367. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  37368. {
  37369. side: {
  37370. height: math.unit(35, "feet"),
  37371. name: "Side",
  37372. image: {
  37373. source: "./media/characters/sayko/side.svg",
  37374. extra: 1697/1021,
  37375. bottom: 82/1779
  37376. }
  37377. },
  37378. head: {
  37379. height: math.unit(16, "feet"),
  37380. name: "Head",
  37381. image: {
  37382. source: "./media/characters/sayko/head.svg"
  37383. }
  37384. },
  37385. forepaw: {
  37386. height: math.unit(7.85, "feet"),
  37387. name: "Forepaw",
  37388. image: {
  37389. source: "./media/characters/sayko/forepaw.svg"
  37390. }
  37391. },
  37392. hindpaw: {
  37393. height: math.unit(8.8, "feet"),
  37394. name: "Hindpaw",
  37395. image: {
  37396. source: "./media/characters/sayko/hindpaw.svg"
  37397. }
  37398. },
  37399. },
  37400. [
  37401. {
  37402. name: "Normal",
  37403. height: math.unit(35, "feet"),
  37404. default: true
  37405. },
  37406. {
  37407. name: "Colossus",
  37408. height: math.unit(100, "meters")
  37409. },
  37410. {
  37411. name: "\"Small\" Deity",
  37412. height: math.unit(1, "km")
  37413. },
  37414. {
  37415. name: "\"Large\" Deity",
  37416. height: math.unit(15, "km")
  37417. },
  37418. ]
  37419. ))
  37420. characterMakers.push(() => makeCharacter(
  37421. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  37422. {
  37423. front: {
  37424. height: math.unit(6, "feet"),
  37425. weight: math.unit(250, "lb"),
  37426. name: "Front",
  37427. image: {
  37428. source: "./media/characters/mukiro/front.svg",
  37429. extra: 1368/1310,
  37430. bottom: 34/1402
  37431. }
  37432. },
  37433. },
  37434. [
  37435. {
  37436. name: "Normal",
  37437. height: math.unit(6, "feet"),
  37438. default: true
  37439. },
  37440. ]
  37441. ))
  37442. characterMakers.push(() => makeCharacter(
  37443. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  37444. {
  37445. front: {
  37446. height: math.unit(12 + 4/12, "feet"),
  37447. name: "Front",
  37448. image: {
  37449. source: "./media/characters/zeph-the-tiger-god/front.svg",
  37450. extra: 1346/1311,
  37451. bottom: 65/1411
  37452. }
  37453. },
  37454. },
  37455. [
  37456. {
  37457. name: "Base",
  37458. height: math.unit(12 + 4/12, "feet"),
  37459. default: true
  37460. },
  37461. {
  37462. name: "Macro",
  37463. height: math.unit(150, "feet")
  37464. },
  37465. {
  37466. name: "Mega",
  37467. height: math.unit(2, "miles")
  37468. },
  37469. {
  37470. name: "Demi God",
  37471. height: math.unit(4, "AU")
  37472. },
  37473. {
  37474. name: "God Size",
  37475. height: math.unit(1, "universe")
  37476. },
  37477. ]
  37478. ))
  37479. characterMakers.push(() => makeCharacter(
  37480. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  37481. {
  37482. front: {
  37483. height: math.unit(3 + 3/12, "feet"),
  37484. weight: math.unit(88, "lb"),
  37485. name: "Front",
  37486. image: {
  37487. source: "./media/characters/trey/front.svg",
  37488. extra: 1815/1509,
  37489. bottom: 60/1875
  37490. }
  37491. },
  37492. },
  37493. [
  37494. {
  37495. name: "Normal",
  37496. height: math.unit(3 + 3/12, "feet"),
  37497. default: true
  37498. },
  37499. ]
  37500. ))
  37501. characterMakers.push(() => makeCharacter(
  37502. { name: "Adelonda", species: ["dragon"], tags: ["anthro"] },
  37503. {
  37504. front: {
  37505. height: math.unit(4, "meters"),
  37506. name: "Front",
  37507. image: {
  37508. source: "./media/characters/adelonda/front.svg",
  37509. extra: 1077/982,
  37510. bottom: 39/1116
  37511. }
  37512. },
  37513. back: {
  37514. height: math.unit(4, "meters"),
  37515. name: "Back",
  37516. image: {
  37517. source: "./media/characters/adelonda/back.svg",
  37518. extra: 1105/1003,
  37519. bottom: 25/1130
  37520. }
  37521. },
  37522. },
  37523. [
  37524. {
  37525. name: "Normal",
  37526. height: math.unit(4, "meters"),
  37527. default: true
  37528. },
  37529. ]
  37530. ))
  37531. characterMakers.push(() => makeCharacter(
  37532. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  37533. {
  37534. front: {
  37535. height: math.unit(8 + 4/12, "feet"),
  37536. weight: math.unit(670, "lb"),
  37537. name: "Front",
  37538. image: {
  37539. source: "./media/characters/acadiel/front.svg",
  37540. extra: 1901/1595,
  37541. bottom: 142/2043
  37542. }
  37543. },
  37544. },
  37545. [
  37546. {
  37547. name: "Normal",
  37548. height: math.unit(8 + 4/12, "feet"),
  37549. default: true
  37550. },
  37551. {
  37552. name: "Macro",
  37553. height: math.unit(200, "feet")
  37554. },
  37555. ]
  37556. ))
  37557. characterMakers.push(() => makeCharacter(
  37558. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  37559. {
  37560. front: {
  37561. height: math.unit(6 + 2/12, "feet"),
  37562. weight: math.unit(185, "lb"),
  37563. name: "Front",
  37564. image: {
  37565. source: "./media/characters/kayne-ein/front.svg",
  37566. extra: 1780/1560,
  37567. bottom: 81/1861
  37568. }
  37569. },
  37570. },
  37571. [
  37572. {
  37573. name: "Normal",
  37574. height: math.unit(6 + 2/12, "feet"),
  37575. default: true
  37576. },
  37577. {
  37578. name: "Transformation Stage",
  37579. height: math.unit(15, "feet")
  37580. },
  37581. {
  37582. name: "Macro",
  37583. height: math.unit(150, "feet")
  37584. },
  37585. {
  37586. name: "Earth's Shadow",
  37587. height: math.unit(6200, "miles")
  37588. },
  37589. {
  37590. name: "Universal Demon",
  37591. height: math.unit(28e9, "parsecs")
  37592. },
  37593. {
  37594. name: "Multiverse God",
  37595. height: math.unit(3, "multiverses")
  37596. },
  37597. ]
  37598. ))
  37599. characterMakers.push(() => makeCharacter(
  37600. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  37601. {
  37602. front: {
  37603. height: math.unit(5 + 5/12, "feet"),
  37604. name: "Front",
  37605. image: {
  37606. source: "./media/characters/fawn/front.svg",
  37607. extra: 1873/1731,
  37608. bottom: 95/1968
  37609. }
  37610. },
  37611. back: {
  37612. height: math.unit(5 + 5/12, "feet"),
  37613. name: "Back",
  37614. image: {
  37615. source: "./media/characters/fawn/back.svg",
  37616. extra: 1813/1700,
  37617. bottom: 14/1827
  37618. }
  37619. },
  37620. hoof: {
  37621. height: math.unit(1.45, "feet"),
  37622. name: "Hoof",
  37623. image: {
  37624. source: "./media/characters/fawn/hoof.svg"
  37625. }
  37626. },
  37627. },
  37628. [
  37629. {
  37630. name: "Normal",
  37631. height: math.unit(5 + 5/12, "feet"),
  37632. default: true
  37633. },
  37634. ]
  37635. ))
  37636. characterMakers.push(() => makeCharacter(
  37637. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  37638. {
  37639. front: {
  37640. height: math.unit(2 + 5/12, "feet"),
  37641. name: "Front",
  37642. image: {
  37643. source: "./media/characters/orion/front.svg",
  37644. extra: 1366/1304,
  37645. bottom: 43/1409
  37646. }
  37647. },
  37648. paw: {
  37649. height: math.unit(0.52, "feet"),
  37650. name: "Paw",
  37651. image: {
  37652. source: "./media/characters/orion/paw.svg"
  37653. }
  37654. },
  37655. },
  37656. [
  37657. {
  37658. name: "Normal",
  37659. height: math.unit(2 + 5/12, "feet"),
  37660. default: true
  37661. },
  37662. ]
  37663. ))
  37664. characterMakers.push(() => makeCharacter(
  37665. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  37666. {
  37667. front: {
  37668. height: math.unit(5 + 10/12, "feet"),
  37669. name: "Front",
  37670. image: {
  37671. source: "./media/characters/vera/front.svg",
  37672. extra: 1680/1575,
  37673. bottom: 49/1729
  37674. }
  37675. },
  37676. back: {
  37677. height: math.unit(5 + 10/12, "feet"),
  37678. name: "Back",
  37679. image: {
  37680. source: "./media/characters/vera/back.svg",
  37681. extra: 1700/1588,
  37682. bottom: 18/1718
  37683. }
  37684. },
  37685. arcanine: {
  37686. height: math.unit(6 + 8/12, "feet"),
  37687. name: "Arcanine",
  37688. image: {
  37689. source: "./media/characters/vera/arcanine.svg",
  37690. extra: 1590/1511,
  37691. bottom: 71/1661
  37692. }
  37693. },
  37694. maw: {
  37695. height: math.unit(0.82, "feet"),
  37696. name: "Maw",
  37697. image: {
  37698. source: "./media/characters/vera/maw.svg"
  37699. }
  37700. },
  37701. mawArcanine: {
  37702. height: math.unit(0.97, "feet"),
  37703. name: "Maw (Arcanine)",
  37704. image: {
  37705. source: "./media/characters/vera/maw-arcanine.svg"
  37706. }
  37707. },
  37708. paw: {
  37709. height: math.unit(0.75, "feet"),
  37710. name: "Paw",
  37711. image: {
  37712. source: "./media/characters/vera/paw.svg"
  37713. }
  37714. },
  37715. pawprint: {
  37716. height: math.unit(0.52, "feet"),
  37717. name: "Pawprint",
  37718. image: {
  37719. source: "./media/characters/vera/pawprint.svg"
  37720. }
  37721. },
  37722. },
  37723. [
  37724. {
  37725. name: "Normal",
  37726. height: math.unit(5 + 10/12, "feet"),
  37727. default: true
  37728. },
  37729. {
  37730. name: "Macro",
  37731. height: math.unit(75, "feet")
  37732. },
  37733. ]
  37734. ))
  37735. characterMakers.push(() => makeCharacter(
  37736. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  37737. {
  37738. front: {
  37739. height: math.unit(4, "feet"),
  37740. weight: math.unit(40, "lb"),
  37741. name: "Front",
  37742. image: {
  37743. source: "./media/characters/orvan-rabbit/front.svg",
  37744. extra: 1896/1642,
  37745. bottom: 29/1925
  37746. }
  37747. },
  37748. },
  37749. [
  37750. {
  37751. name: "Normal",
  37752. height: math.unit(4, "feet"),
  37753. default: true
  37754. },
  37755. ]
  37756. ))
  37757. characterMakers.push(() => makeCharacter(
  37758. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  37759. {
  37760. front: {
  37761. height: math.unit(6, "feet"),
  37762. weight: math.unit(168, "lb"),
  37763. name: "Front",
  37764. image: {
  37765. source: "./media/characters/lisa/front.svg",
  37766. extra: 2065/1867,
  37767. bottom: 46/2111
  37768. }
  37769. },
  37770. back: {
  37771. height: math.unit(6, "feet"),
  37772. weight: math.unit(168, "lb"),
  37773. name: "Back",
  37774. image: {
  37775. source: "./media/characters/lisa/back.svg",
  37776. extra: 1982/1838,
  37777. bottom: 29/2011
  37778. }
  37779. },
  37780. maw: {
  37781. height: math.unit(0.81, "feet"),
  37782. name: "Maw",
  37783. image: {
  37784. source: "./media/characters/lisa/maw.svg"
  37785. }
  37786. },
  37787. paw: {
  37788. height: math.unit(0.9, "feet"),
  37789. name: "Paw",
  37790. image: {
  37791. source: "./media/characters/lisa/paw.svg"
  37792. }
  37793. },
  37794. caribousune: {
  37795. height: math.unit(7 + 2/12, "feet"),
  37796. weight: math.unit(268, "lb"),
  37797. name: "Caribousune",
  37798. image: {
  37799. source: "./media/characters/lisa/caribousune.svg",
  37800. extra: 1843/1633,
  37801. bottom: 29/1872
  37802. }
  37803. },
  37804. frontCaribousune: {
  37805. height: math.unit(7 + 2/12, "feet"),
  37806. weight: math.unit(268, "lb"),
  37807. name: "Front (Caribousune)",
  37808. image: {
  37809. source: "./media/characters/lisa/front-caribousune.svg",
  37810. extra: 1818/1638,
  37811. bottom: 52/1870
  37812. }
  37813. },
  37814. sideCaribousune: {
  37815. height: math.unit(7 + 2/12, "feet"),
  37816. weight: math.unit(268, "lb"),
  37817. name: "Side (Caribousune)",
  37818. image: {
  37819. source: "./media/characters/lisa/side-caribousune.svg",
  37820. extra: 1851/1635,
  37821. bottom: 16/1867
  37822. }
  37823. },
  37824. backCaribousune: {
  37825. height: math.unit(7 + 2/12, "feet"),
  37826. weight: math.unit(268, "lb"),
  37827. name: "Back (Caribousune)",
  37828. image: {
  37829. source: "./media/characters/lisa/back-caribousune.svg",
  37830. extra: 1801/1604,
  37831. bottom: 44/1845
  37832. }
  37833. },
  37834. caribou: {
  37835. height: math.unit(7 + 2/12, "feet"),
  37836. weight: math.unit(268, "lb"),
  37837. name: "Caribou",
  37838. image: {
  37839. source: "./media/characters/lisa/caribou.svg",
  37840. extra: 1843/1633,
  37841. bottom: 29/1872
  37842. }
  37843. },
  37844. frontCaribou: {
  37845. height: math.unit(7 + 2/12, "feet"),
  37846. weight: math.unit(268, "lb"),
  37847. name: "Front (Caribou)",
  37848. image: {
  37849. source: "./media/characters/lisa/front-caribou.svg",
  37850. extra: 1818/1638,
  37851. bottom: 52/1870
  37852. }
  37853. },
  37854. sideCaribou: {
  37855. height: math.unit(7 + 2/12, "feet"),
  37856. weight: math.unit(268, "lb"),
  37857. name: "Side (Caribou)",
  37858. image: {
  37859. source: "./media/characters/lisa/side-caribou.svg",
  37860. extra: 1851/1635,
  37861. bottom: 16/1867
  37862. }
  37863. },
  37864. backCaribou: {
  37865. height: math.unit(7 + 2/12, "feet"),
  37866. weight: math.unit(268, "lb"),
  37867. name: "Back (Caribou)",
  37868. image: {
  37869. source: "./media/characters/lisa/back-caribou.svg",
  37870. extra: 1801/1604,
  37871. bottom: 44/1845
  37872. }
  37873. },
  37874. mawCaribou: {
  37875. height: math.unit(1.45, "feet"),
  37876. name: "Maw (Caribou)",
  37877. image: {
  37878. source: "./media/characters/lisa/maw-caribou.svg"
  37879. }
  37880. },
  37881. mawCaribousune: {
  37882. height: math.unit(1.45, "feet"),
  37883. name: "Maw (Caribousune)",
  37884. image: {
  37885. source: "./media/characters/lisa/maw-caribousune.svg"
  37886. }
  37887. },
  37888. pawCaribousune: {
  37889. height: math.unit(1.61, "feet"),
  37890. name: "Paw (Caribou)",
  37891. image: {
  37892. source: "./media/characters/lisa/paw-caribousune.svg"
  37893. }
  37894. },
  37895. },
  37896. [
  37897. {
  37898. name: "Normal",
  37899. height: math.unit(6, "feet")
  37900. },
  37901. {
  37902. name: "God Size",
  37903. height: math.unit(72, "feet"),
  37904. default: true
  37905. },
  37906. {
  37907. name: "Towering",
  37908. height: math.unit(288, "feet")
  37909. },
  37910. {
  37911. name: "City Size",
  37912. height: math.unit(48384, "feet")
  37913. },
  37914. {
  37915. name: "Continental",
  37916. height: math.unit(4200, "miles")
  37917. },
  37918. {
  37919. name: "Planet Eater",
  37920. height: math.unit(42, "earths")
  37921. },
  37922. {
  37923. name: "Star Swallower",
  37924. height: math.unit(42, "solarradii")
  37925. },
  37926. {
  37927. name: "System Swallower",
  37928. height: math.unit(84000, "AU")
  37929. },
  37930. {
  37931. name: "Galaxy Gobbler",
  37932. height: math.unit(42, "galaxies")
  37933. },
  37934. {
  37935. name: "Universe Devourer",
  37936. height: math.unit(42, "universes")
  37937. },
  37938. {
  37939. name: "Multiverse Muncher",
  37940. height: math.unit(42, "multiverses")
  37941. },
  37942. ]
  37943. ))
  37944. characterMakers.push(() => makeCharacter(
  37945. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  37946. {
  37947. front: {
  37948. height: math.unit(36, "feet"),
  37949. name: "Front",
  37950. image: {
  37951. source: "./media/characters/shadow-rat/front.svg",
  37952. extra: 1845/1758,
  37953. bottom: 83/1928
  37954. }
  37955. },
  37956. },
  37957. [
  37958. {
  37959. name: "Macro",
  37960. height: math.unit(36, "feet"),
  37961. default: true
  37962. },
  37963. ]
  37964. ))
  37965. characterMakers.push(() => makeCharacter(
  37966. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  37967. {
  37968. side: {
  37969. height: math.unit(8, "feet"),
  37970. weight: math.unit(2630, "lb"),
  37971. name: "Side",
  37972. image: {
  37973. source: "./media/characters/torallia/side.svg",
  37974. extra: 2164/2021,
  37975. bottom: 371/2535
  37976. }
  37977. },
  37978. },
  37979. [
  37980. {
  37981. name: "Mortal Interaction",
  37982. height: math.unit(8, "feet")
  37983. },
  37984. {
  37985. name: "Natural",
  37986. height: math.unit(24, "feet"),
  37987. default: true
  37988. },
  37989. {
  37990. name: "Giant",
  37991. height: math.unit(80, "feet")
  37992. },
  37993. {
  37994. name: "Kaiju",
  37995. height: math.unit(240, "feet")
  37996. },
  37997. {
  37998. name: "Macro",
  37999. height: math.unit(800, "feet")
  38000. },
  38001. {
  38002. name: "Macro+",
  38003. height: math.unit(2400, "feet")
  38004. },
  38005. {
  38006. name: "Macro++",
  38007. height: math.unit(8000, "feet")
  38008. },
  38009. {
  38010. name: "City-Crushing",
  38011. height: math.unit(24000, "feet")
  38012. },
  38013. {
  38014. name: "Mountain-Mashing",
  38015. height: math.unit(80000, "feet")
  38016. },
  38017. {
  38018. name: "District Demolisher",
  38019. height: math.unit(240000, "feet")
  38020. },
  38021. {
  38022. name: "Tri-County Terror",
  38023. height: math.unit(800000, "feet")
  38024. },
  38025. {
  38026. name: "State Smasher",
  38027. height: math.unit(2.4e6, "feet")
  38028. },
  38029. {
  38030. name: "Nation Nemesis",
  38031. height: math.unit(8e6, "feet")
  38032. },
  38033. {
  38034. name: "Continent Cracker",
  38035. height: math.unit(2.4e7, "feet")
  38036. },
  38037. {
  38038. name: "Planet-Pillaging",
  38039. height: math.unit(8e7, "feet")
  38040. },
  38041. {
  38042. name: "Earth-Eclipsing",
  38043. height: math.unit(2.4e8, "feet")
  38044. },
  38045. {
  38046. name: "Jovian-Jostling",
  38047. height: math.unit(8e8, "feet")
  38048. },
  38049. {
  38050. name: "Gas Giant Gulper",
  38051. height: math.unit(2.4e9, "feet")
  38052. },
  38053. {
  38054. name: "Astral Annihilator",
  38055. height: math.unit(8e9, "feet")
  38056. },
  38057. {
  38058. name: "Celestial Conqueror",
  38059. height: math.unit(2.4e10, "feet")
  38060. },
  38061. {
  38062. name: "Sol-Swallowing",
  38063. height: math.unit(8e10, "feet")
  38064. },
  38065. {
  38066. name: "Hunter of the Heavens",
  38067. height: math.unit(2.4e13, "feet")
  38068. },
  38069. ]
  38070. ))
  38071. characterMakers.push(() => makeCharacter(
  38072. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  38073. {
  38074. front: {
  38075. height: math.unit(6 + 8/12, "feet"),
  38076. name: "Front",
  38077. image: {
  38078. source: "./media/characters/rebecca-pawlson/front.svg",
  38079. extra: 1737/1596,
  38080. bottom: 107/1844
  38081. }
  38082. },
  38083. back: {
  38084. height: math.unit(6 + 8/12, "feet"),
  38085. name: "Back",
  38086. image: {
  38087. source: "./media/characters/rebecca-pawlson/back.svg",
  38088. extra: 1702/1523,
  38089. bottom: 86/1788
  38090. }
  38091. },
  38092. },
  38093. [
  38094. {
  38095. name: "Normal",
  38096. height: math.unit(6 + 8/12, "feet")
  38097. },
  38098. {
  38099. name: "Mini Macro",
  38100. height: math.unit(10, "feet"),
  38101. default: true
  38102. },
  38103. {
  38104. name: "Macro",
  38105. height: math.unit(100, "feet")
  38106. },
  38107. {
  38108. name: "Mega Macro",
  38109. height: math.unit(2500, "feet")
  38110. },
  38111. {
  38112. name: "Giga Macro",
  38113. height: math.unit(50, "miles")
  38114. },
  38115. ]
  38116. ))
  38117. characterMakers.push(() => makeCharacter(
  38118. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  38119. {
  38120. front: {
  38121. height: math.unit(7 + 6/12, "feet"),
  38122. weight: math.unit(600, "lb"),
  38123. name: "Front",
  38124. image: {
  38125. source: "./media/characters/moxie-nova/front.svg",
  38126. extra: 1734/1652,
  38127. bottom: 41/1775
  38128. }
  38129. },
  38130. },
  38131. [
  38132. {
  38133. name: "Normal",
  38134. height: math.unit(7 + 6/12, "feet"),
  38135. default: true
  38136. },
  38137. ]
  38138. ))
  38139. characterMakers.push(() => makeCharacter(
  38140. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  38141. {
  38142. goat: {
  38143. height: math.unit(4, "feet"),
  38144. weight: math.unit(180, "lb"),
  38145. name: "Goat",
  38146. image: {
  38147. source: "./media/characters/tiffany/goat.svg",
  38148. extra: 1845/1595,
  38149. bottom: 106/1951
  38150. }
  38151. },
  38152. front: {
  38153. height: math.unit(5, "feet"),
  38154. weight: math.unit(150, "lb"),
  38155. name: "Foxcoon",
  38156. image: {
  38157. source: "./media/characters/tiffany/foxcoon.svg",
  38158. extra: 1941/1845,
  38159. bottom: 58/1999
  38160. }
  38161. },
  38162. },
  38163. [
  38164. {
  38165. name: "Normal",
  38166. height: math.unit(5, "feet"),
  38167. default: true
  38168. },
  38169. ]
  38170. ))
  38171. characterMakers.push(() => makeCharacter(
  38172. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  38173. {
  38174. front: {
  38175. height: math.unit(8, "feet"),
  38176. weight: math.unit(300, "lb"),
  38177. name: "Front",
  38178. image: {
  38179. source: "./media/characters/raxinath/front.svg",
  38180. extra: 1407/1309,
  38181. bottom: 39/1446
  38182. }
  38183. },
  38184. back: {
  38185. height: math.unit(8, "feet"),
  38186. weight: math.unit(300, "lb"),
  38187. name: "Back",
  38188. image: {
  38189. source: "./media/characters/raxinath/back.svg",
  38190. extra: 1405/1315,
  38191. bottom: 9/1414
  38192. }
  38193. },
  38194. },
  38195. [
  38196. {
  38197. name: "Speck",
  38198. height: math.unit(0.5, "nm")
  38199. },
  38200. {
  38201. name: "Micro",
  38202. height: math.unit(3, "inches")
  38203. },
  38204. {
  38205. name: "Kobold",
  38206. height: math.unit(3, "feet")
  38207. },
  38208. {
  38209. name: "Normal",
  38210. height: math.unit(8, "feet"),
  38211. default: true
  38212. },
  38213. {
  38214. name: "Giant",
  38215. height: math.unit(50, "feet")
  38216. },
  38217. {
  38218. name: "Macro",
  38219. height: math.unit(1000, "feet")
  38220. },
  38221. {
  38222. name: "Megamacro",
  38223. height: math.unit(1, "mile")
  38224. },
  38225. ]
  38226. ))
  38227. characterMakers.push(() => makeCharacter(
  38228. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  38229. {
  38230. front: {
  38231. height: math.unit(10, "feet"),
  38232. weight: math.unit(1442, "lb"),
  38233. name: "Front",
  38234. image: {
  38235. source: "./media/characters/mal-dragon/front.svg",
  38236. extra: 1515/1444,
  38237. bottom: 113/1628
  38238. }
  38239. },
  38240. back: {
  38241. height: math.unit(10, "feet"),
  38242. weight: math.unit(1442, "lb"),
  38243. name: "Back",
  38244. image: {
  38245. source: "./media/characters/mal-dragon/back.svg",
  38246. extra: 1527/1434,
  38247. bottom: 25/1552
  38248. }
  38249. },
  38250. },
  38251. [
  38252. {
  38253. name: "Mortal Interaction",
  38254. height: math.unit(10, "feet"),
  38255. default: true
  38256. },
  38257. {
  38258. name: "Large",
  38259. height: math.unit(30, "feet")
  38260. },
  38261. {
  38262. name: "Kaiju",
  38263. height: math.unit(300, "feet")
  38264. },
  38265. {
  38266. name: "Megamacro",
  38267. height: math.unit(10000, "feet")
  38268. },
  38269. {
  38270. name: "Continent Cracker",
  38271. height: math.unit(30000000, "feet")
  38272. },
  38273. {
  38274. name: "Sol-Swallowing",
  38275. height: math.unit(1e11, "feet")
  38276. },
  38277. {
  38278. name: "Light Universal",
  38279. height: math.unit(5, "universes")
  38280. },
  38281. {
  38282. name: "Universe Atoms",
  38283. height: math.unit(1.829e9, "universes")
  38284. },
  38285. {
  38286. name: "Light Multiversal",
  38287. height: math.unit(5, "multiverses")
  38288. },
  38289. {
  38290. name: "Multiverse Atoms",
  38291. height: math.unit(1.829e9, "multiverses")
  38292. },
  38293. {
  38294. name: "Fabric of Time",
  38295. height: math.unit(1e262, "multiverses")
  38296. },
  38297. ]
  38298. ))
  38299. characterMakers.push(() => makeCharacter(
  38300. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  38301. {
  38302. front: {
  38303. height: math.unit(9, "feet"),
  38304. weight: math.unit(1050, "lb"),
  38305. name: "Front",
  38306. image: {
  38307. source: "./media/characters/tabitha/front.svg",
  38308. extra: 2083/1994,
  38309. bottom: 68/2151
  38310. }
  38311. },
  38312. },
  38313. [
  38314. {
  38315. name: "Baseline",
  38316. height: math.unit(9, "feet"),
  38317. default: true
  38318. },
  38319. {
  38320. name: "Giant",
  38321. height: math.unit(90, "feet")
  38322. },
  38323. {
  38324. name: "Macro",
  38325. height: math.unit(900, "feet")
  38326. },
  38327. {
  38328. name: "Megamacro",
  38329. height: math.unit(9000, "feet")
  38330. },
  38331. {
  38332. name: "City-Crushing",
  38333. height: math.unit(27000, "feet")
  38334. },
  38335. {
  38336. name: "Mountain-Mashing",
  38337. height: math.unit(90000, "feet")
  38338. },
  38339. {
  38340. name: "Nation Nemesis",
  38341. height: math.unit(9e6, "feet")
  38342. },
  38343. {
  38344. name: "Continent Cracker",
  38345. height: math.unit(27e6, "feet")
  38346. },
  38347. {
  38348. name: "Earth-Eclipsing",
  38349. height: math.unit(2.7e8, "feet")
  38350. },
  38351. {
  38352. name: "Gas Giant Gulper",
  38353. height: math.unit(2.7e9, "feet")
  38354. },
  38355. {
  38356. name: "Sol-Swallowing",
  38357. height: math.unit(9e10, "feet")
  38358. },
  38359. {
  38360. name: "Galaxy Gulper",
  38361. height: math.unit(9, "galaxies")
  38362. },
  38363. {
  38364. name: "Cosmos Churner",
  38365. height: math.unit(9, "universes")
  38366. },
  38367. ]
  38368. ))
  38369. characterMakers.push(() => makeCharacter(
  38370. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  38371. {
  38372. front: {
  38373. height: math.unit(160, "cm"),
  38374. weight: math.unit(55, "kg"),
  38375. name: "Front",
  38376. image: {
  38377. source: "./media/characters/tow/front.svg",
  38378. extra: 1751/1722,
  38379. bottom: 74/1825
  38380. }
  38381. },
  38382. },
  38383. [
  38384. {
  38385. name: "Norm",
  38386. height: math.unit(160, "cm")
  38387. },
  38388. {
  38389. name: "Casual",
  38390. height: math.unit(3200, "m"),
  38391. default: true
  38392. },
  38393. {
  38394. name: "Show-Off",
  38395. height: math.unit(160, "km")
  38396. },
  38397. ]
  38398. ))
  38399. characterMakers.push(() => makeCharacter(
  38400. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  38401. {
  38402. front: {
  38403. height: math.unit(7 + 11/12, "feet"),
  38404. weight: math.unit(342.8, "lb"),
  38405. name: "Front",
  38406. image: {
  38407. source: "./media/characters/vivian-orca-dragon/front.svg",
  38408. extra: 1890/1865,
  38409. bottom: 28/1918
  38410. }
  38411. },
  38412. },
  38413. [
  38414. {
  38415. name: "Micro",
  38416. height: math.unit(5, "inches")
  38417. },
  38418. {
  38419. name: "Normal",
  38420. height: math.unit(7 + 11/12, "feet"),
  38421. default: true
  38422. },
  38423. {
  38424. name: "Macro",
  38425. height: math.unit(395 + 7/12, "feet")
  38426. },
  38427. ]
  38428. ))
  38429. characterMakers.push(() => makeCharacter(
  38430. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  38431. {
  38432. side: {
  38433. height: math.unit(10, "feet"),
  38434. weight: math.unit(1442, "lb"),
  38435. name: "Side",
  38436. image: {
  38437. source: "./media/characters/lotherakon/side.svg",
  38438. extra: 1604/1497,
  38439. bottom: 89/1693
  38440. }
  38441. },
  38442. },
  38443. [
  38444. {
  38445. name: "Mortal Interaction",
  38446. height: math.unit(10, "feet")
  38447. },
  38448. {
  38449. name: "Large",
  38450. height: math.unit(30, "feet"),
  38451. default: true
  38452. },
  38453. {
  38454. name: "Giant",
  38455. height: math.unit(100, "feet")
  38456. },
  38457. {
  38458. name: "Kaiju",
  38459. height: math.unit(300, "feet")
  38460. },
  38461. {
  38462. name: "Macro",
  38463. height: math.unit(1000, "feet")
  38464. },
  38465. {
  38466. name: "Macro+",
  38467. height: math.unit(3000, "feet")
  38468. },
  38469. {
  38470. name: "Megamacro",
  38471. height: math.unit(10000, "feet")
  38472. },
  38473. {
  38474. name: "City-Crushing",
  38475. height: math.unit(30000, "feet")
  38476. },
  38477. {
  38478. name: "Continent Cracker",
  38479. height: math.unit(30e6, "feet")
  38480. },
  38481. {
  38482. name: "Earth Eclipsing",
  38483. height: math.unit(3e8, "feet")
  38484. },
  38485. {
  38486. name: "Gas Giant Gulper",
  38487. height: math.unit(3e9, "feet")
  38488. },
  38489. {
  38490. name: "Sol-Swallowing",
  38491. height: math.unit(1e11, "feet")
  38492. },
  38493. {
  38494. name: "System Swallower",
  38495. height: math.unit(3e14, "feet")
  38496. },
  38497. {
  38498. name: "Galaxy Gulper",
  38499. height: math.unit(10, "galaxies")
  38500. },
  38501. {
  38502. name: "Light Universal",
  38503. height: math.unit(5, "universes")
  38504. },
  38505. {
  38506. name: "Universe Palm",
  38507. height: math.unit(20, "universes")
  38508. },
  38509. {
  38510. name: "Light Multiversal",
  38511. height: math.unit(5, "multiverses")
  38512. },
  38513. {
  38514. name: "Multiverse Palm",
  38515. height: math.unit(20, "multiverses")
  38516. },
  38517. {
  38518. name: "Inferno Incarnate",
  38519. height: math.unit(1e7, "multiverses")
  38520. },
  38521. ]
  38522. ))
  38523. characterMakers.push(() => makeCharacter(
  38524. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  38525. {
  38526. front: {
  38527. height: math.unit(8, "feet"),
  38528. weight: math.unit(1200, "lb"),
  38529. name: "Front",
  38530. image: {
  38531. source: "./media/characters/malithee/front.svg",
  38532. extra: 1675/1640,
  38533. bottom: 162/1837
  38534. }
  38535. },
  38536. },
  38537. [
  38538. {
  38539. name: "Mortal Interaction",
  38540. height: math.unit(8, "feet"),
  38541. default: true
  38542. },
  38543. {
  38544. name: "Large",
  38545. height: math.unit(24, "feet")
  38546. },
  38547. {
  38548. name: "Kaiju",
  38549. height: math.unit(240, "feet")
  38550. },
  38551. {
  38552. name: "Megamacro",
  38553. height: math.unit(8000, "feet")
  38554. },
  38555. {
  38556. name: "Continent Cracker",
  38557. height: math.unit(24e6, "feet")
  38558. },
  38559. {
  38560. name: "Earth-Eclipsing",
  38561. height: math.unit(2.4e8, "feet")
  38562. },
  38563. {
  38564. name: "Sol-Swallowing",
  38565. height: math.unit(8e10, "feet")
  38566. },
  38567. {
  38568. name: "Galaxy Gulper",
  38569. height: math.unit(8, "galaxies")
  38570. },
  38571. {
  38572. name: "Light Universal",
  38573. height: math.unit(4, "universes")
  38574. },
  38575. {
  38576. name: "Universe Atoms",
  38577. height: math.unit(1.829e9, "universes")
  38578. },
  38579. {
  38580. name: "Light Multiversal",
  38581. height: math.unit(4, "multiverses")
  38582. },
  38583. {
  38584. name: "Multiverse Atoms",
  38585. height: math.unit(1.829e9, "multiverses")
  38586. },
  38587. {
  38588. name: "Nigh-Omnipresence",
  38589. height: math.unit(8e261, "multiverses")
  38590. },
  38591. ]
  38592. ))
  38593. characterMakers.push(() => makeCharacter(
  38594. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  38595. {
  38596. front: {
  38597. height: math.unit(10, "feet"),
  38598. weight: math.unit(1500, "lb"),
  38599. name: "Front",
  38600. image: {
  38601. source: "./media/characters/miles-thestia/front.svg",
  38602. extra: 1812/1727,
  38603. bottom: 86/1898
  38604. }
  38605. },
  38606. back: {
  38607. height: math.unit(10, "feet"),
  38608. weight: math.unit(1500, "lb"),
  38609. name: "Back",
  38610. image: {
  38611. source: "./media/characters/miles-thestia/back.svg",
  38612. extra: 1799/1690,
  38613. bottom: 47/1846
  38614. }
  38615. },
  38616. frontNsfw: {
  38617. height: math.unit(10, "feet"),
  38618. weight: math.unit(1500, "lb"),
  38619. name: "Front (NSFW)",
  38620. image: {
  38621. source: "./media/characters/miles-thestia/front-nsfw.svg",
  38622. extra: 1812/1727,
  38623. bottom: 86/1898
  38624. }
  38625. },
  38626. },
  38627. [
  38628. {
  38629. name: "Mini-Macro",
  38630. height: math.unit(10, "feet"),
  38631. default: true
  38632. },
  38633. ]
  38634. ))
  38635. characterMakers.push(() => makeCharacter(
  38636. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  38637. {
  38638. front: {
  38639. height: math.unit(25, "feet"),
  38640. name: "Front",
  38641. image: {
  38642. source: "./media/characters/titan-s-wulf/front.svg",
  38643. extra: 1560/1484,
  38644. bottom: 76/1636
  38645. }
  38646. },
  38647. },
  38648. [
  38649. {
  38650. name: "Smallest",
  38651. height: math.unit(25, "feet"),
  38652. default: true
  38653. },
  38654. {
  38655. name: "Normal",
  38656. height: math.unit(200, "feet")
  38657. },
  38658. {
  38659. name: "Macro",
  38660. height: math.unit(200000, "feet")
  38661. },
  38662. {
  38663. name: "Multiversal Original",
  38664. height: math.unit(10000, "multiverses")
  38665. },
  38666. ]
  38667. ))
  38668. characterMakers.push(() => makeCharacter(
  38669. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  38670. {
  38671. front: {
  38672. height: math.unit(8, "feet"),
  38673. weight: math.unit(553, "lb"),
  38674. name: "Front",
  38675. image: {
  38676. source: "./media/characters/tawendeh/front.svg",
  38677. extra: 2365/2268,
  38678. bottom: 83/2448
  38679. }
  38680. },
  38681. frontClothed: {
  38682. height: math.unit(8, "feet"),
  38683. weight: math.unit(553, "lb"),
  38684. name: "Front (Clothed)",
  38685. image: {
  38686. source: "./media/characters/tawendeh/front-clothed.svg",
  38687. extra: 2365/2268,
  38688. bottom: 83/2448
  38689. }
  38690. },
  38691. back: {
  38692. height: math.unit(8, "feet"),
  38693. weight: math.unit(553, "lb"),
  38694. name: "Back",
  38695. image: {
  38696. source: "./media/characters/tawendeh/back.svg",
  38697. extra: 2397/2294,
  38698. bottom: 42/2439
  38699. }
  38700. },
  38701. },
  38702. [
  38703. {
  38704. name: "Mortal Interaction",
  38705. height: math.unit(8, "feet"),
  38706. default: true
  38707. },
  38708. {
  38709. name: "Giant",
  38710. height: math.unit(80, "feet")
  38711. },
  38712. {
  38713. name: "Macro",
  38714. height: math.unit(800, "feet")
  38715. },
  38716. {
  38717. name: "Megamacro",
  38718. height: math.unit(8000, "feet")
  38719. },
  38720. {
  38721. name: "City-Crushing",
  38722. height: math.unit(24000, "feet")
  38723. },
  38724. {
  38725. name: "Mountain-Mashing",
  38726. height: math.unit(80000, "feet")
  38727. },
  38728. {
  38729. name: "Nation Nemesis",
  38730. height: math.unit(8e6, "feet")
  38731. },
  38732. {
  38733. name: "Continent Cracker",
  38734. height: math.unit(24e6, "feet")
  38735. },
  38736. {
  38737. name: "Earth-Eclipsing",
  38738. height: math.unit(2.4e8, "feet")
  38739. },
  38740. {
  38741. name: "Gas Giant Gulper",
  38742. height: math.unit(2.4e9, "feet")
  38743. },
  38744. {
  38745. name: "Sol-Swallowing",
  38746. height: math.unit(8e10, "feet")
  38747. },
  38748. {
  38749. name: "Galaxy Gulper",
  38750. height: math.unit(8, "galaxies")
  38751. },
  38752. {
  38753. name: "Cosmos Churner",
  38754. height: math.unit(8, "universes")
  38755. },
  38756. {
  38757. name: "Omnipotent Otter",
  38758. height: math.unit(80, "universes")
  38759. },
  38760. ]
  38761. ))
  38762. characterMakers.push(() => makeCharacter(
  38763. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  38764. {
  38765. front: {
  38766. height: math.unit(2.6, "meters"),
  38767. weight: math.unit(900, "kg"),
  38768. name: "Front",
  38769. image: {
  38770. source: "./media/characters/neesha/front.svg",
  38771. extra: 1803/1653,
  38772. bottom: 128/1931
  38773. }
  38774. },
  38775. },
  38776. [
  38777. {
  38778. name: "Normal",
  38779. height: math.unit(2.6, "meters"),
  38780. default: true
  38781. },
  38782. {
  38783. name: "Macro",
  38784. height: math.unit(50, "meters")
  38785. },
  38786. ]
  38787. ))
  38788. characterMakers.push(() => makeCharacter(
  38789. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  38790. {
  38791. front: {
  38792. height: math.unit(5, "feet"),
  38793. weight: math.unit(185, "lb"),
  38794. name: "Front",
  38795. image: {
  38796. source: "./media/characters/kyera/front.svg",
  38797. extra: 1875/1790,
  38798. bottom: 96/1971
  38799. }
  38800. },
  38801. },
  38802. [
  38803. {
  38804. name: "Normal",
  38805. height: math.unit(5, "feet"),
  38806. default: true
  38807. },
  38808. ]
  38809. ))
  38810. characterMakers.push(() => makeCharacter(
  38811. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  38812. {
  38813. front: {
  38814. height: math.unit(7 + 6/12, "feet"),
  38815. weight: math.unit(540, "lb"),
  38816. name: "Front",
  38817. image: {
  38818. source: "./media/characters/yuko/front.svg",
  38819. extra: 1282/1222,
  38820. bottom: 101/1383
  38821. }
  38822. },
  38823. frontClothed: {
  38824. height: math.unit(7 + 6/12, "feet"),
  38825. weight: math.unit(540, "lb"),
  38826. name: "Front (Clothed)",
  38827. image: {
  38828. source: "./media/characters/yuko/front-clothed.svg",
  38829. extra: 1282/1222,
  38830. bottom: 101/1383
  38831. }
  38832. },
  38833. },
  38834. [
  38835. {
  38836. name: "Normal",
  38837. height: math.unit(7 + 6/12, "feet"),
  38838. default: true
  38839. },
  38840. {
  38841. name: "Macro",
  38842. height: math.unit(26 + 9/12, "feet")
  38843. },
  38844. {
  38845. name: "Megamacro",
  38846. height: math.unit(300, "feet")
  38847. },
  38848. {
  38849. name: "Gigamacro",
  38850. height: math.unit(5000, "feet")
  38851. },
  38852. {
  38853. name: "Planetary",
  38854. height: math.unit(10000, "miles")
  38855. },
  38856. ]
  38857. ))
  38858. characterMakers.push(() => makeCharacter(
  38859. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  38860. {
  38861. front: {
  38862. height: math.unit(8 + 2/12, "feet"),
  38863. weight: math.unit(600, "lb"),
  38864. name: "Front",
  38865. image: {
  38866. source: "./media/characters/deam-nitrel/front.svg",
  38867. extra: 1308/1234,
  38868. bottom: 125/1433
  38869. }
  38870. },
  38871. },
  38872. [
  38873. {
  38874. name: "Normal",
  38875. height: math.unit(8 + 2/12, "feet"),
  38876. default: true
  38877. },
  38878. ]
  38879. ))
  38880. characterMakers.push(() => makeCharacter(
  38881. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  38882. {
  38883. front: {
  38884. height: math.unit(6.1, "feet"),
  38885. weight: math.unit(180, "lb"),
  38886. name: "Front",
  38887. image: {
  38888. source: "./media/characters/skyress/front.svg",
  38889. extra: 1045/915,
  38890. bottom: 28/1073
  38891. }
  38892. },
  38893. maw: {
  38894. height: math.unit(1, "feet"),
  38895. name: "Maw",
  38896. image: {
  38897. source: "./media/characters/skyress/maw.svg"
  38898. }
  38899. },
  38900. },
  38901. [
  38902. {
  38903. name: "Normal",
  38904. height: math.unit(6.1, "feet"),
  38905. default: true
  38906. },
  38907. {
  38908. name: "Macro",
  38909. height: math.unit(200, "feet")
  38910. },
  38911. ]
  38912. ))
  38913. characterMakers.push(() => makeCharacter(
  38914. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  38915. {
  38916. front: {
  38917. height: math.unit(4 + 2/12, "feet"),
  38918. weight: math.unit(40, "kg"),
  38919. name: "Front",
  38920. image: {
  38921. source: "./media/characters/amethyst-jones/front.svg",
  38922. extra: 1220/1150,
  38923. bottom: 101/1321
  38924. }
  38925. },
  38926. },
  38927. [
  38928. {
  38929. name: "Normal",
  38930. height: math.unit(4 + 2/12, "feet"),
  38931. default: true
  38932. },
  38933. ]
  38934. ))
  38935. characterMakers.push(() => makeCharacter(
  38936. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  38937. {
  38938. front: {
  38939. height: math.unit(1.7, "m"),
  38940. weight: math.unit(135, "lb"),
  38941. name: "Front",
  38942. image: {
  38943. source: "./media/characters/jade/front.svg",
  38944. extra: 1818/1767,
  38945. bottom: 32/1850
  38946. }
  38947. },
  38948. back: {
  38949. height: math.unit(1.7, "m"),
  38950. weight: math.unit(135, "lb"),
  38951. name: "Back",
  38952. image: {
  38953. source: "./media/characters/jade/back.svg",
  38954. extra: 1869/1809,
  38955. bottom: 35/1904
  38956. }
  38957. },
  38958. hand: {
  38959. height: math.unit(0.24, "m"),
  38960. name: "Hand",
  38961. image: {
  38962. source: "./media/characters/jade/hand.svg"
  38963. }
  38964. },
  38965. foot: {
  38966. height: math.unit(0.263, "m"),
  38967. name: "Foot",
  38968. image: {
  38969. source: "./media/characters/jade/foot.svg"
  38970. }
  38971. },
  38972. dick: {
  38973. height: math.unit(0.47, "m"),
  38974. name: "Dick",
  38975. image: {
  38976. source: "./media/characters/jade/dick.svg"
  38977. }
  38978. },
  38979. },
  38980. [
  38981. {
  38982. name: "Micro",
  38983. height: math.unit(22, "cm")
  38984. },
  38985. {
  38986. name: "Normal",
  38987. height: math.unit(1.7, "m"),
  38988. default: true
  38989. },
  38990. {
  38991. name: "Macro",
  38992. height: math.unit(152, "m")
  38993. },
  38994. ]
  38995. ))
  38996. characterMakers.push(() => makeCharacter(
  38997. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  38998. {
  38999. front: {
  39000. height: math.unit(100, "miles"),
  39001. weight: math.unit(20000, "tons"),
  39002. name: "Front",
  39003. image: {
  39004. source: "./media/characters/cookie/front.svg",
  39005. extra: 1125/1070,
  39006. bottom: 30/1155
  39007. }
  39008. },
  39009. },
  39010. [
  39011. {
  39012. name: "Big",
  39013. height: math.unit(50, "feet")
  39014. },
  39015. {
  39016. name: "Macro",
  39017. height: math.unit(100, "miles"),
  39018. default: true
  39019. },
  39020. {
  39021. name: "Megamacro",
  39022. height: math.unit(90000, "miles")
  39023. },
  39024. ]
  39025. ))
  39026. characterMakers.push(() => makeCharacter(
  39027. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  39028. {
  39029. front: {
  39030. height: math.unit(6, "feet"),
  39031. weight: math.unit(145, "lb"),
  39032. name: "Front",
  39033. image: {
  39034. source: "./media/characters/farzian/front.svg",
  39035. extra: 1902/1693,
  39036. bottom: 108/2010
  39037. }
  39038. },
  39039. },
  39040. [
  39041. {
  39042. name: "Macro",
  39043. height: math.unit(500, "feet"),
  39044. default: true
  39045. },
  39046. ]
  39047. ))
  39048. characterMakers.push(() => makeCharacter(
  39049. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  39050. {
  39051. front: {
  39052. height: math.unit(3 + 6/12, "feet"),
  39053. weight: math.unit(50, "lb"),
  39054. name: "Front",
  39055. image: {
  39056. source: "./media/characters/kimberly-tilson/front.svg",
  39057. extra: 1400/1322,
  39058. bottom: 36/1436
  39059. }
  39060. },
  39061. back: {
  39062. height: math.unit(3 + 6/12, "feet"),
  39063. weight: math.unit(50, "lb"),
  39064. name: "Back",
  39065. image: {
  39066. source: "./media/characters/kimberly-tilson/back.svg",
  39067. extra: 1370/1307,
  39068. bottom: 20/1390
  39069. }
  39070. },
  39071. },
  39072. [
  39073. {
  39074. name: "Normal",
  39075. height: math.unit(3 + 6/12, "feet"),
  39076. default: true
  39077. },
  39078. ]
  39079. ))
  39080. characterMakers.push(() => makeCharacter(
  39081. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  39082. {
  39083. front: {
  39084. height: math.unit(1148, "feet"),
  39085. weight: math.unit(34057, "lb"),
  39086. name: "Front",
  39087. image: {
  39088. source: "./media/characters/harthos/front.svg",
  39089. extra: 1391/1339,
  39090. bottom: 13/1404
  39091. }
  39092. },
  39093. },
  39094. [
  39095. {
  39096. name: "Macro",
  39097. height: math.unit(1148, "feet"),
  39098. default: true
  39099. },
  39100. ]
  39101. ))
  39102. characterMakers.push(() => makeCharacter(
  39103. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  39104. {
  39105. front: {
  39106. height: math.unit(15, "feet"),
  39107. name: "Front",
  39108. image: {
  39109. source: "./media/characters/hypatia/front.svg",
  39110. extra: 1653/1591,
  39111. bottom: 79/1732
  39112. }
  39113. },
  39114. },
  39115. [
  39116. {
  39117. name: "Normal",
  39118. height: math.unit(15, "feet")
  39119. },
  39120. {
  39121. name: "Small",
  39122. height: math.unit(300, "feet")
  39123. },
  39124. {
  39125. name: "Macro",
  39126. height: math.unit(2500, "feet"),
  39127. default: true
  39128. },
  39129. {
  39130. name: "Mega Macro",
  39131. height: math.unit(1500, "miles")
  39132. },
  39133. {
  39134. name: "Giga Macro",
  39135. height: math.unit(1.5e6, "miles")
  39136. },
  39137. ]
  39138. ))
  39139. characterMakers.push(() => makeCharacter(
  39140. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  39141. {
  39142. front: {
  39143. height: math.unit(6, "feet"),
  39144. weight: math.unit(200, "lb"),
  39145. name: "Front",
  39146. image: {
  39147. source: "./media/characters/wulver/front.svg",
  39148. extra: 1724/1632,
  39149. bottom: 130/1854
  39150. }
  39151. },
  39152. frontNsfw: {
  39153. height: math.unit(6, "feet"),
  39154. weight: math.unit(200, "lb"),
  39155. name: "Front (NSFW)",
  39156. image: {
  39157. source: "./media/characters/wulver/front-nsfw.svg",
  39158. extra: 1724/1632,
  39159. bottom: 130/1854
  39160. }
  39161. },
  39162. },
  39163. [
  39164. {
  39165. name: "Human-Sized",
  39166. height: math.unit(6, "feet")
  39167. },
  39168. {
  39169. name: "Normal",
  39170. height: math.unit(4, "meters"),
  39171. default: true
  39172. },
  39173. {
  39174. name: "Large",
  39175. height: math.unit(6, "m")
  39176. },
  39177. ]
  39178. ))
  39179. characterMakers.push(() => makeCharacter(
  39180. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  39181. {
  39182. front: {
  39183. height: math.unit(7, "feet"),
  39184. name: "Front",
  39185. image: {
  39186. source: "./media/characters/maru/front.svg",
  39187. extra: 1595/1570,
  39188. bottom: 0/1595
  39189. }
  39190. },
  39191. },
  39192. [
  39193. {
  39194. name: "Normal",
  39195. height: math.unit(7, "feet"),
  39196. default: true
  39197. },
  39198. {
  39199. name: "Macro",
  39200. height: math.unit(700, "feet")
  39201. },
  39202. {
  39203. name: "Mega Macro",
  39204. height: math.unit(25, "miles")
  39205. },
  39206. ]
  39207. ))
  39208. characterMakers.push(() => makeCharacter(
  39209. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  39210. {
  39211. front: {
  39212. height: math.unit(6, "feet"),
  39213. weight: math.unit(170, "lb"),
  39214. name: "Front",
  39215. image: {
  39216. source: "./media/characters/xenon/front.svg",
  39217. extra: 1376/1305,
  39218. bottom: 56/1432
  39219. }
  39220. },
  39221. back: {
  39222. height: math.unit(6, "feet"),
  39223. weight: math.unit(170, "lb"),
  39224. name: "Back",
  39225. image: {
  39226. source: "./media/characters/xenon/back.svg",
  39227. extra: 1328/1259,
  39228. bottom: 95/1423
  39229. }
  39230. },
  39231. maw: {
  39232. height: math.unit(0.52, "feet"),
  39233. name: "Maw",
  39234. image: {
  39235. source: "./media/characters/xenon/maw.svg"
  39236. }
  39237. },
  39238. hand: {
  39239. height: math.unit(0.82, "feet"),
  39240. name: "Hand",
  39241. image: {
  39242. source: "./media/characters/xenon/hand.svg"
  39243. }
  39244. },
  39245. foot: {
  39246. height: math.unit(1.13, "feet"),
  39247. name: "Foot",
  39248. image: {
  39249. source: "./media/characters/xenon/foot.svg"
  39250. }
  39251. },
  39252. },
  39253. [
  39254. {
  39255. name: "Micro",
  39256. height: math.unit(0.8, "inches")
  39257. },
  39258. {
  39259. name: "Normal",
  39260. height: math.unit(6, "feet")
  39261. },
  39262. {
  39263. name: "Macro",
  39264. height: math.unit(50, "feet"),
  39265. default: true
  39266. },
  39267. {
  39268. name: "Macro+",
  39269. height: math.unit(250, "feet")
  39270. },
  39271. {
  39272. name: "Megamacro",
  39273. height: math.unit(1500, "feet")
  39274. },
  39275. ]
  39276. ))
  39277. characterMakers.push(() => makeCharacter(
  39278. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  39279. {
  39280. front: {
  39281. height: math.unit(7 + 5/12, "feet"),
  39282. name: "Front",
  39283. image: {
  39284. source: "./media/characters/zane/front.svg",
  39285. extra: 1260/1203,
  39286. bottom: 94/1354
  39287. }
  39288. },
  39289. back: {
  39290. height: math.unit(5.05, "feet"),
  39291. name: "Back",
  39292. image: {
  39293. source: "./media/characters/zane/back.svg",
  39294. extra: 893/829,
  39295. bottom: 30/923
  39296. }
  39297. },
  39298. werewolf: {
  39299. height: math.unit(11, "feet"),
  39300. name: "Werewolf",
  39301. image: {
  39302. source: "./media/characters/zane/werewolf.svg",
  39303. extra: 1383/1323,
  39304. bottom: 89/1472
  39305. }
  39306. },
  39307. foot: {
  39308. height: math.unit(1.46, "feet"),
  39309. name: "Foot",
  39310. image: {
  39311. source: "./media/characters/zane/foot.svg"
  39312. }
  39313. },
  39314. footFront: {
  39315. height: math.unit(0.784, "feet"),
  39316. name: "Foot (Front)",
  39317. image: {
  39318. source: "./media/characters/zane/foot-front.svg"
  39319. }
  39320. },
  39321. dick: {
  39322. height: math.unit(1.95, "feet"),
  39323. name: "Dick",
  39324. image: {
  39325. source: "./media/characters/zane/dick.svg"
  39326. }
  39327. },
  39328. dickWerewolf: {
  39329. height: math.unit(3.77, "feet"),
  39330. name: "Dick (Werewolf)",
  39331. image: {
  39332. source: "./media/characters/zane/dick.svg"
  39333. }
  39334. },
  39335. },
  39336. [
  39337. {
  39338. name: "Normal",
  39339. height: math.unit(7 + 5/12, "feet"),
  39340. default: true
  39341. },
  39342. ]
  39343. ))
  39344. characterMakers.push(() => makeCharacter(
  39345. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  39346. {
  39347. front: {
  39348. height: math.unit(6 + 2/12, "feet"),
  39349. weight: math.unit(284, "lb"),
  39350. name: "Front",
  39351. image: {
  39352. source: "./media/characters/benni-desparque/front.svg",
  39353. extra: 1353/1126,
  39354. bottom: 69/1422
  39355. }
  39356. },
  39357. },
  39358. [
  39359. {
  39360. name: "Civilian",
  39361. height: math.unit(6 + 2/12, "feet")
  39362. },
  39363. {
  39364. name: "Normal",
  39365. height: math.unit(98, "feet"),
  39366. default: true
  39367. },
  39368. {
  39369. name: "Kaiju Fighter",
  39370. height: math.unit(268, "feet")
  39371. },
  39372. ]
  39373. ))
  39374. characterMakers.push(() => makeCharacter(
  39375. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  39376. {
  39377. front: {
  39378. height: math.unit(5, "feet"),
  39379. weight: math.unit(105, "lb"),
  39380. name: "Front",
  39381. image: {
  39382. source: "./media/characters/maxine/front.svg",
  39383. extra: 1386/1250,
  39384. bottom: 71/1457
  39385. }
  39386. },
  39387. },
  39388. [
  39389. {
  39390. name: "Normal",
  39391. height: math.unit(5, "feet"),
  39392. default: true
  39393. },
  39394. ]
  39395. ))
  39396. characterMakers.push(() => makeCharacter(
  39397. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  39398. {
  39399. front: {
  39400. height: math.unit(11 + 7/12, "feet"),
  39401. weight: math.unit(9576, "lb"),
  39402. name: "Front",
  39403. image: {
  39404. source: "./media/characters/scaly/front.svg",
  39405. extra: 888/867,
  39406. bottom: 36/924
  39407. }
  39408. },
  39409. },
  39410. [
  39411. {
  39412. name: "Normal",
  39413. height: math.unit(11 + 7/12, "feet"),
  39414. default: true
  39415. },
  39416. ]
  39417. ))
  39418. characterMakers.push(() => makeCharacter(
  39419. { name: "Saelria", species: ["mouse", "human"], tags: ["anthro"] },
  39420. {
  39421. front: {
  39422. height: math.unit(9, "inches"),
  39423. name: "Front",
  39424. image: {
  39425. source: "./media/characters/saelria/front.svg",
  39426. extra: 662/621,
  39427. bottom: 12/674
  39428. }
  39429. },
  39430. },
  39431. [
  39432. {
  39433. name: "Tiny",
  39434. height: math.unit(9, "inches"),
  39435. default: true
  39436. },
  39437. ]
  39438. ))
  39439. characterMakers.push(() => makeCharacter(
  39440. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  39441. {
  39442. front: {
  39443. height: math.unit(80, "meters"),
  39444. weight: math.unit(7000, "tonnes"),
  39445. name: "Front",
  39446. image: {
  39447. source: "./media/characters/tef/front.svg",
  39448. extra: 2036/1991,
  39449. bottom: 54/2090
  39450. }
  39451. },
  39452. back: {
  39453. height: math.unit(80, "meters"),
  39454. weight: math.unit(7000, "tonnes"),
  39455. name: "Back",
  39456. image: {
  39457. source: "./media/characters/tef/back.svg",
  39458. extra: 2036/1991,
  39459. bottom: 54/2090
  39460. }
  39461. },
  39462. },
  39463. [
  39464. {
  39465. name: "Macro",
  39466. height: math.unit(80, "meters"),
  39467. default: true
  39468. },
  39469. ]
  39470. ))
  39471. characterMakers.push(() => makeCharacter(
  39472. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  39473. {
  39474. front: {
  39475. height: math.unit(13, "feet"),
  39476. weight: math.unit(6, "tons"),
  39477. name: "Front",
  39478. image: {
  39479. source: "./media/characters/rover/front.svg",
  39480. extra: 1233/1156,
  39481. bottom: 50/1283
  39482. }
  39483. },
  39484. back: {
  39485. height: math.unit(13, "feet"),
  39486. weight: math.unit(6, "tons"),
  39487. name: "Back",
  39488. image: {
  39489. source: "./media/characters/rover/back.svg",
  39490. extra: 1327/1258,
  39491. bottom: 39/1366
  39492. }
  39493. },
  39494. },
  39495. [
  39496. {
  39497. name: "Normal",
  39498. height: math.unit(13, "feet"),
  39499. default: true
  39500. },
  39501. {
  39502. name: "Macro",
  39503. height: math.unit(1300, "feet")
  39504. },
  39505. {
  39506. name: "Megamacro",
  39507. height: math.unit(1300, "miles")
  39508. },
  39509. {
  39510. name: "Gigamacro",
  39511. height: math.unit(1300000, "miles")
  39512. },
  39513. ]
  39514. ))
  39515. characterMakers.push(() => makeCharacter(
  39516. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  39517. {
  39518. front: {
  39519. height: math.unit(6, "feet"),
  39520. weight: math.unit(150, "lb"),
  39521. name: "Front",
  39522. image: {
  39523. source: "./media/characters/ariz/front.svg",
  39524. extra: 1401/1346,
  39525. bottom: 5/1406
  39526. }
  39527. },
  39528. },
  39529. [
  39530. {
  39531. name: "Normal",
  39532. height: math.unit(10, "feet"),
  39533. default: true
  39534. },
  39535. ]
  39536. ))
  39537. characterMakers.push(() => makeCharacter(
  39538. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  39539. {
  39540. front: {
  39541. height: math.unit(6, "feet"),
  39542. weight: math.unit(140, "lb"),
  39543. name: "Front",
  39544. image: {
  39545. source: "./media/characters/sigrun/front.svg",
  39546. extra: 1418/1359,
  39547. bottom: 27/1445
  39548. }
  39549. },
  39550. },
  39551. [
  39552. {
  39553. name: "Macro",
  39554. height: math.unit(35, "feet"),
  39555. default: true
  39556. },
  39557. ]
  39558. ))
  39559. characterMakers.push(() => makeCharacter(
  39560. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  39561. {
  39562. front: {
  39563. height: math.unit(6, "feet"),
  39564. weight: math.unit(150, "lb"),
  39565. name: "Front",
  39566. image: {
  39567. source: "./media/characters/numin/front.svg",
  39568. extra: 1433/1388,
  39569. bottom: 12/1445
  39570. }
  39571. },
  39572. },
  39573. [
  39574. {
  39575. name: "Macro",
  39576. height: math.unit(21.5, "km"),
  39577. default: true
  39578. },
  39579. ]
  39580. ))
  39581. characterMakers.push(() => makeCharacter(
  39582. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  39583. {
  39584. front: {
  39585. height: math.unit(6, "feet"),
  39586. weight: math.unit(463, "lb"),
  39587. name: "Front",
  39588. image: {
  39589. source: "./media/characters/melwa/front.svg",
  39590. extra: 1307/1248,
  39591. bottom: 93/1400
  39592. }
  39593. },
  39594. },
  39595. [
  39596. {
  39597. name: "Macro",
  39598. height: math.unit(50, "meters"),
  39599. default: true
  39600. },
  39601. ]
  39602. ))
  39603. characterMakers.push(() => makeCharacter(
  39604. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  39605. {
  39606. front: {
  39607. height: math.unit(325, "feet"),
  39608. name: "Front",
  39609. image: {
  39610. source: "./media/characters/zorkaiju/front.svg",
  39611. extra: 1955/1814,
  39612. bottom: 40/1995
  39613. }
  39614. },
  39615. frontExtended: {
  39616. height: math.unit(325, "feet"),
  39617. name: "Front (Extended)",
  39618. image: {
  39619. source: "./media/characters/zorkaiju/front-extended.svg",
  39620. extra: 1955/1814,
  39621. bottom: 40/1995
  39622. }
  39623. },
  39624. side: {
  39625. height: math.unit(325, "feet"),
  39626. name: "Side",
  39627. image: {
  39628. source: "./media/characters/zorkaiju/side.svg",
  39629. extra: 1495/1396,
  39630. bottom: 17/1512
  39631. }
  39632. },
  39633. sideExtended: {
  39634. height: math.unit(325, "feet"),
  39635. name: "Side (Extended)",
  39636. image: {
  39637. source: "./media/characters/zorkaiju/side-extended.svg",
  39638. extra: 1495/1396,
  39639. bottom: 17/1512
  39640. }
  39641. },
  39642. back: {
  39643. height: math.unit(325, "feet"),
  39644. name: "Back",
  39645. image: {
  39646. source: "./media/characters/zorkaiju/back.svg",
  39647. extra: 1959/1821,
  39648. bottom: 31/1990
  39649. }
  39650. },
  39651. backExtended: {
  39652. height: math.unit(325, "feet"),
  39653. name: "Back (Extended)",
  39654. image: {
  39655. source: "./media/characters/zorkaiju/back-extended.svg",
  39656. extra: 1959/1821,
  39657. bottom: 31/1990
  39658. }
  39659. },
  39660. hand: {
  39661. height: math.unit(58.4, "feet"),
  39662. name: "Hand",
  39663. image: {
  39664. source: "./media/characters/zorkaiju/hand.svg"
  39665. }
  39666. },
  39667. handExtended: {
  39668. height: math.unit(61.4, "feet"),
  39669. name: "Hand (Extended)",
  39670. image: {
  39671. source: "./media/characters/zorkaiju/hand-extended.svg"
  39672. }
  39673. },
  39674. foot: {
  39675. height: math.unit(95, "feet"),
  39676. name: "Foot",
  39677. image: {
  39678. source: "./media/characters/zorkaiju/foot.svg"
  39679. }
  39680. },
  39681. leftArm: {
  39682. height: math.unit(59, "feet"),
  39683. name: "Left Arm",
  39684. image: {
  39685. source: "./media/characters/zorkaiju/left-arm.svg"
  39686. }
  39687. },
  39688. rightArm: {
  39689. height: math.unit(59, "feet"),
  39690. name: "Right Arm",
  39691. image: {
  39692. source: "./media/characters/zorkaiju/right-arm.svg"
  39693. }
  39694. },
  39695. tail: {
  39696. height: math.unit(104, "feet"),
  39697. name: "Tail",
  39698. image: {
  39699. source: "./media/characters/zorkaiju/tail.svg"
  39700. }
  39701. },
  39702. tailExtended: {
  39703. height: math.unit(104, "feet"),
  39704. name: "Tail (Extended)",
  39705. image: {
  39706. source: "./media/characters/zorkaiju/tail-extended.svg"
  39707. }
  39708. },
  39709. tailBottom: {
  39710. height: math.unit(104, "feet"),
  39711. name: "Tail Bottom",
  39712. image: {
  39713. source: "./media/characters/zorkaiju/tail-bottom.svg"
  39714. }
  39715. },
  39716. crystal: {
  39717. height: math.unit(27.54, "feet"),
  39718. name: "Crystal",
  39719. image: {
  39720. source: "./media/characters/zorkaiju/crystal.svg"
  39721. }
  39722. },
  39723. },
  39724. [
  39725. {
  39726. name: "Kaiju",
  39727. height: math.unit(325, "feet"),
  39728. default: true
  39729. },
  39730. ]
  39731. ))
  39732. characterMakers.push(() => makeCharacter(
  39733. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  39734. {
  39735. front: {
  39736. height: math.unit(6 + 1/12, "feet"),
  39737. weight: math.unit(115, "lb"),
  39738. name: "Front",
  39739. image: {
  39740. source: "./media/characters/bailey-belfry/front.svg",
  39741. extra: 1240/1121,
  39742. bottom: 101/1341
  39743. }
  39744. },
  39745. },
  39746. [
  39747. {
  39748. name: "Normal",
  39749. height: math.unit(6 + 1/12, "feet"),
  39750. default: true
  39751. },
  39752. ]
  39753. ))
  39754. characterMakers.push(() => makeCharacter(
  39755. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  39756. {
  39757. side: {
  39758. height: math.unit(4, "meters"),
  39759. weight: math.unit(250, "kg"),
  39760. name: "Side",
  39761. image: {
  39762. source: "./media/characters/blacky/side.svg",
  39763. extra: 1027/919,
  39764. bottom: 43/1070
  39765. }
  39766. },
  39767. maw: {
  39768. height: math.unit(1, "meters"),
  39769. name: "Maw",
  39770. image: {
  39771. source: "./media/characters/blacky/maw.svg"
  39772. }
  39773. },
  39774. paw: {
  39775. height: math.unit(1, "meters"),
  39776. name: "Paw",
  39777. image: {
  39778. source: "./media/characters/blacky/paw.svg"
  39779. }
  39780. },
  39781. },
  39782. [
  39783. {
  39784. name: "Normal",
  39785. height: math.unit(4, "meters"),
  39786. default: true
  39787. },
  39788. ]
  39789. ))
  39790. characterMakers.push(() => makeCharacter(
  39791. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  39792. {
  39793. front: {
  39794. height: math.unit(170, "cm"),
  39795. weight: math.unit(66, "kg"),
  39796. name: "Front",
  39797. image: {
  39798. source: "./media/characters/thux-ei/front.svg",
  39799. extra: 1109/1011,
  39800. bottom: 8/1117
  39801. }
  39802. },
  39803. },
  39804. [
  39805. {
  39806. name: "Normal",
  39807. height: math.unit(170, "cm"),
  39808. default: true
  39809. },
  39810. ]
  39811. ))
  39812. characterMakers.push(() => makeCharacter(
  39813. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  39814. {
  39815. front: {
  39816. height: math.unit(5, "feet"),
  39817. weight: math.unit(120, "lb"),
  39818. name: "Front",
  39819. image: {
  39820. source: "./media/characters/roxanne-voltaire/front.svg",
  39821. extra: 1901/1779,
  39822. bottom: 53/1954
  39823. }
  39824. },
  39825. },
  39826. [
  39827. {
  39828. name: "Normal",
  39829. height: math.unit(5, "feet"),
  39830. default: true
  39831. },
  39832. {
  39833. name: "Giant",
  39834. height: math.unit(50, "feet")
  39835. },
  39836. {
  39837. name: "Titan",
  39838. height: math.unit(500, "feet")
  39839. },
  39840. {
  39841. name: "Macro",
  39842. height: math.unit(5000, "feet")
  39843. },
  39844. {
  39845. name: "Megamacro",
  39846. height: math.unit(50000, "feet")
  39847. },
  39848. {
  39849. name: "Gigamacro",
  39850. height: math.unit(500000, "feet")
  39851. },
  39852. {
  39853. name: "Teramacro",
  39854. height: math.unit(5e6, "feet")
  39855. },
  39856. ]
  39857. ))
  39858. characterMakers.push(() => makeCharacter(
  39859. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  39860. {
  39861. front: {
  39862. height: math.unit(6 + 2/12, "feet"),
  39863. name: "Front",
  39864. image: {
  39865. source: "./media/characters/squeaks/front.svg",
  39866. extra: 1823/1768,
  39867. bottom: 138/1961
  39868. }
  39869. },
  39870. },
  39871. [
  39872. {
  39873. name: "Micro",
  39874. height: math.unit(0.5, "inches")
  39875. },
  39876. {
  39877. name: "Normal",
  39878. height: math.unit(6 + 2/12, "feet"),
  39879. default: true
  39880. },
  39881. {
  39882. name: "Macro",
  39883. height: math.unit(600, "feet")
  39884. },
  39885. ]
  39886. ))
  39887. characterMakers.push(() => makeCharacter(
  39888. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  39889. {
  39890. front: {
  39891. height: math.unit(1.72, "meters"),
  39892. name: "Front",
  39893. image: {
  39894. source: "./media/characters/archinger/front.svg",
  39895. extra: 1861/1675,
  39896. bottom: 125/1986
  39897. }
  39898. },
  39899. back: {
  39900. height: math.unit(1.72, "meters"),
  39901. name: "Back",
  39902. image: {
  39903. source: "./media/characters/archinger/back.svg",
  39904. extra: 1844/1701,
  39905. bottom: 104/1948
  39906. }
  39907. },
  39908. cock: {
  39909. height: math.unit(0.59, "feet"),
  39910. name: "Cock",
  39911. image: {
  39912. source: "./media/characters/archinger/cock.svg"
  39913. }
  39914. },
  39915. },
  39916. [
  39917. {
  39918. name: "Normal",
  39919. height: math.unit(1.72, "meters"),
  39920. default: true
  39921. },
  39922. {
  39923. name: "Macro",
  39924. height: math.unit(84, "meters")
  39925. },
  39926. {
  39927. name: "Macro+",
  39928. height: math.unit(112, "meters")
  39929. },
  39930. {
  39931. name: "Macro++",
  39932. height: math.unit(960, "meters")
  39933. },
  39934. {
  39935. name: "Macro+++",
  39936. height: math.unit(4, "km")
  39937. },
  39938. {
  39939. name: "Macro++++",
  39940. height: math.unit(48, "km")
  39941. },
  39942. {
  39943. name: "Macro+++++",
  39944. height: math.unit(4500, "km")
  39945. },
  39946. ]
  39947. ))
  39948. characterMakers.push(() => makeCharacter(
  39949. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  39950. {
  39951. front: {
  39952. height: math.unit(5 + 5/12, "feet"),
  39953. name: "Front",
  39954. image: {
  39955. source: "./media/characters/alsnapz/front.svg",
  39956. extra: 1157/1065,
  39957. bottom: 42/1199
  39958. }
  39959. },
  39960. },
  39961. [
  39962. {
  39963. name: "Normal",
  39964. height: math.unit(5 + 5/12, "feet"),
  39965. default: true
  39966. },
  39967. ]
  39968. ))
  39969. characterMakers.push(() => makeCharacter(
  39970. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  39971. {
  39972. side: {
  39973. height: math.unit(3.2, "earths"),
  39974. name: "Side",
  39975. image: {
  39976. source: "./media/characters/mag/side.svg",
  39977. extra: 1331/1008,
  39978. bottom: 52/1383
  39979. }
  39980. },
  39981. wing: {
  39982. height: math.unit(1.94, "earths"),
  39983. name: "Wing",
  39984. image: {
  39985. source: "./media/characters/mag/wing.svg"
  39986. }
  39987. },
  39988. dick: {
  39989. height: math.unit(1.8, "earths"),
  39990. name: "Dick",
  39991. image: {
  39992. source: "./media/characters/mag/dick.svg"
  39993. }
  39994. },
  39995. ass: {
  39996. height: math.unit(1.33, "earths"),
  39997. name: "Ass",
  39998. image: {
  39999. source: "./media/characters/mag/ass.svg"
  40000. }
  40001. },
  40002. head: {
  40003. height: math.unit(1.1, "earths"),
  40004. name: "Head",
  40005. image: {
  40006. source: "./media/characters/mag/head.svg"
  40007. }
  40008. },
  40009. maw: {
  40010. height: math.unit(1.62, "earths"),
  40011. name: "Maw",
  40012. image: {
  40013. source: "./media/characters/mag/maw.svg"
  40014. }
  40015. },
  40016. },
  40017. [
  40018. {
  40019. name: "Small",
  40020. height: math.unit(162, "feet")
  40021. },
  40022. {
  40023. name: "Normal",
  40024. height: math.unit(3.2, "earths"),
  40025. default: true
  40026. },
  40027. ]
  40028. ))
  40029. characterMakers.push(() => makeCharacter(
  40030. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  40031. {
  40032. front: {
  40033. height: math.unit(512, "feet"),
  40034. weight: math.unit(63509, "tonnes"),
  40035. name: "Front",
  40036. image: {
  40037. source: "./media/characters/vorrel-harroc/front.svg",
  40038. extra: 1075/1063,
  40039. bottom: 62/1137
  40040. }
  40041. },
  40042. },
  40043. [
  40044. {
  40045. name: "Normal",
  40046. height: math.unit(10, "feet")
  40047. },
  40048. {
  40049. name: "Macro",
  40050. height: math.unit(512, "feet"),
  40051. default: true
  40052. },
  40053. {
  40054. name: "Megamacro",
  40055. height: math.unit(256, "miles")
  40056. },
  40057. {
  40058. name: "Gigamacro",
  40059. height: math.unit(4096, "miles")
  40060. },
  40061. ]
  40062. ))
  40063. characterMakers.push(() => makeCharacter(
  40064. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  40065. {
  40066. side: {
  40067. height: math.unit(50, "feet"),
  40068. name: "Side",
  40069. image: {
  40070. source: "./media/characters/froimar/side.svg",
  40071. extra: 855/638,
  40072. bottom: 99/954
  40073. }
  40074. },
  40075. },
  40076. [
  40077. {
  40078. name: "Macro",
  40079. height: math.unit(50, "feet"),
  40080. default: true
  40081. },
  40082. ]
  40083. ))
  40084. characterMakers.push(() => makeCharacter(
  40085. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  40086. {
  40087. front: {
  40088. height: math.unit(210, "miles"),
  40089. name: "Front",
  40090. image: {
  40091. source: "./media/characters/timothy/front.svg",
  40092. extra: 1007/943,
  40093. bottom: 62/1069
  40094. }
  40095. },
  40096. frontSkirt: {
  40097. height: math.unit(210, "miles"),
  40098. name: "Front (Skirt)",
  40099. image: {
  40100. source: "./media/characters/timothy/front-skirt.svg",
  40101. extra: 1007/943,
  40102. bottom: 62/1069
  40103. }
  40104. },
  40105. frontCoat: {
  40106. height: math.unit(210, "miles"),
  40107. name: "Front (Coat)",
  40108. image: {
  40109. source: "./media/characters/timothy/front-coat.svg",
  40110. extra: 1007/943,
  40111. bottom: 62/1069
  40112. }
  40113. },
  40114. },
  40115. [
  40116. {
  40117. name: "Macro",
  40118. height: math.unit(210, "miles"),
  40119. default: true
  40120. },
  40121. {
  40122. name: "Megamacro",
  40123. height: math.unit(210000, "miles")
  40124. },
  40125. ]
  40126. ))
  40127. characterMakers.push(() => makeCharacter(
  40128. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  40129. {
  40130. front: {
  40131. height: math.unit(188, "feet"),
  40132. name: "Front",
  40133. image: {
  40134. source: "./media/characters/pyotr/front.svg",
  40135. extra: 1912/1826,
  40136. bottom: 18/1930
  40137. }
  40138. },
  40139. },
  40140. [
  40141. {
  40142. name: "Macro",
  40143. height: math.unit(188, "feet"),
  40144. default: true
  40145. },
  40146. {
  40147. name: "Megamacro",
  40148. height: math.unit(8, "miles")
  40149. },
  40150. ]
  40151. ))
  40152. characterMakers.push(() => makeCharacter(
  40153. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  40154. {
  40155. side: {
  40156. height: math.unit(10, "feet"),
  40157. weight: math.unit(4500, "lb"),
  40158. name: "Side",
  40159. image: {
  40160. source: "./media/characters/ackart/side.svg",
  40161. extra: 1776/1668,
  40162. bottom: 116/1892
  40163. }
  40164. },
  40165. },
  40166. [
  40167. {
  40168. name: "Normal",
  40169. height: math.unit(10, "feet"),
  40170. default: true
  40171. },
  40172. ]
  40173. ))
  40174. characterMakers.push(() => makeCharacter(
  40175. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  40176. {
  40177. side: {
  40178. height: math.unit(21, "feet"),
  40179. name: "Side",
  40180. image: {
  40181. source: "./media/characters/nolow/side.svg",
  40182. extra: 1484/1434,
  40183. bottom: 85/1569
  40184. }
  40185. },
  40186. sideErect: {
  40187. height: math.unit(21, "feet"),
  40188. name: "Side-erect",
  40189. image: {
  40190. source: "./media/characters/nolow/side-erect.svg",
  40191. extra: 1484/1434,
  40192. bottom: 85/1569
  40193. }
  40194. },
  40195. },
  40196. [
  40197. {
  40198. name: "Regular",
  40199. height: math.unit(12, "feet")
  40200. },
  40201. {
  40202. name: "Big Chee",
  40203. height: math.unit(21, "feet"),
  40204. default: true
  40205. },
  40206. ]
  40207. ))
  40208. characterMakers.push(() => makeCharacter(
  40209. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  40210. {
  40211. front: {
  40212. height: math.unit(7, "feet"),
  40213. weight: math.unit(250, "lb"),
  40214. name: "Front",
  40215. image: {
  40216. source: "./media/characters/nines/front.svg",
  40217. extra: 1741/1607,
  40218. bottom: 41/1782
  40219. }
  40220. },
  40221. side: {
  40222. height: math.unit(7, "feet"),
  40223. weight: math.unit(250, "lb"),
  40224. name: "Side",
  40225. image: {
  40226. source: "./media/characters/nines/side.svg",
  40227. extra: 1854/1735,
  40228. bottom: 93/1947
  40229. }
  40230. },
  40231. back: {
  40232. height: math.unit(7, "feet"),
  40233. weight: math.unit(250, "lb"),
  40234. name: "Back",
  40235. image: {
  40236. source: "./media/characters/nines/back.svg",
  40237. extra: 1748/1615,
  40238. bottom: 20/1768
  40239. }
  40240. },
  40241. },
  40242. [
  40243. {
  40244. name: "Megamacro",
  40245. height: math.unit(99, "km"),
  40246. default: true
  40247. },
  40248. ]
  40249. ))
  40250. characterMakers.push(() => makeCharacter(
  40251. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  40252. {
  40253. front: {
  40254. height: math.unit(5 + 10/12, "feet"),
  40255. weight: math.unit(210, "lb"),
  40256. name: "Front",
  40257. image: {
  40258. source: "./media/characters/zenith/front.svg",
  40259. extra: 1531/1452,
  40260. bottom: 198/1729
  40261. }
  40262. },
  40263. back: {
  40264. height: math.unit(5 + 10/12, "feet"),
  40265. weight: math.unit(210, "lb"),
  40266. name: "Back",
  40267. image: {
  40268. source: "./media/characters/zenith/back.svg",
  40269. extra: 1571/1487,
  40270. bottom: 75/1646
  40271. }
  40272. },
  40273. },
  40274. [
  40275. {
  40276. name: "Normal",
  40277. height: math.unit(5 + 10/12, "feet"),
  40278. default: true
  40279. }
  40280. ]
  40281. ))
  40282. characterMakers.push(() => makeCharacter(
  40283. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  40284. {
  40285. front: {
  40286. height: math.unit(4, "feet"),
  40287. weight: math.unit(60, "lb"),
  40288. name: "Front",
  40289. image: {
  40290. source: "./media/characters/jasper/front.svg",
  40291. extra: 1450/1379,
  40292. bottom: 19/1469
  40293. }
  40294. },
  40295. },
  40296. [
  40297. {
  40298. name: "Normal",
  40299. height: math.unit(4, "feet"),
  40300. default: true
  40301. },
  40302. ]
  40303. ))
  40304. characterMakers.push(() => makeCharacter(
  40305. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  40306. {
  40307. front: {
  40308. height: math.unit(6 + 5/12, "feet"),
  40309. weight: math.unit(290, "lb"),
  40310. name: "Front",
  40311. image: {
  40312. source: "./media/characters/tiberius-thyben/front.svg",
  40313. extra: 757/739,
  40314. bottom: 39/796
  40315. }
  40316. },
  40317. },
  40318. [
  40319. {
  40320. name: "Micro",
  40321. height: math.unit(1.5, "inches")
  40322. },
  40323. {
  40324. name: "Normal",
  40325. height: math.unit(6 + 5/12, "feet"),
  40326. default: true
  40327. },
  40328. {
  40329. name: "Macro",
  40330. height: math.unit(300, "feet")
  40331. },
  40332. ]
  40333. ))
  40334. characterMakers.push(() => makeCharacter(
  40335. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  40336. {
  40337. front: {
  40338. height: math.unit(5 + 6/12, "feet"),
  40339. weight: math.unit(60, "kg"),
  40340. name: "Front",
  40341. image: {
  40342. source: "./media/characters/sabre/front.svg",
  40343. extra: 738/671,
  40344. bottom: 27/765
  40345. }
  40346. },
  40347. },
  40348. [
  40349. {
  40350. name: "Teeny",
  40351. height: math.unit(2, "inches")
  40352. },
  40353. {
  40354. name: "Smol",
  40355. height: math.unit(8, "inches")
  40356. },
  40357. {
  40358. name: "Normal",
  40359. height: math.unit(5 + 6/12, "feet"),
  40360. default: true
  40361. },
  40362. {
  40363. name: "Mini-Macro",
  40364. height: math.unit(15, "feet")
  40365. },
  40366. {
  40367. name: "Macro",
  40368. height: math.unit(50, "feet")
  40369. },
  40370. ]
  40371. ))
  40372. characterMakers.push(() => makeCharacter(
  40373. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  40374. {
  40375. front: {
  40376. height: math.unit(6 + 4/12, "feet"),
  40377. weight: math.unit(170, "lb"),
  40378. name: "Front",
  40379. image: {
  40380. source: "./media/characters/charlie/front.svg",
  40381. extra: 1348/1228,
  40382. bottom: 15/1363
  40383. }
  40384. },
  40385. },
  40386. [
  40387. {
  40388. name: "Macro",
  40389. height: math.unit(1700, "meters"),
  40390. default: true
  40391. },
  40392. {
  40393. name: "MegaMacro",
  40394. height: math.unit(20400, "meters")
  40395. },
  40396. ]
  40397. ))
  40398. characterMakers.push(() => makeCharacter(
  40399. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  40400. {
  40401. front: {
  40402. height: math.unit(6 + 3/12, "feet"),
  40403. weight: math.unit(185, "lb"),
  40404. name: "Front",
  40405. image: {
  40406. source: "./media/characters/susan-grant/front.svg",
  40407. extra: 1351/1327,
  40408. bottom: 26/1377
  40409. }
  40410. },
  40411. },
  40412. [
  40413. {
  40414. name: "Normal",
  40415. height: math.unit(6 + 3/12, "feet"),
  40416. default: true
  40417. },
  40418. {
  40419. name: "Macro",
  40420. height: math.unit(225, "feet")
  40421. },
  40422. {
  40423. name: "Macro+",
  40424. height: math.unit(900, "feet")
  40425. },
  40426. {
  40427. name: "MegaMacro",
  40428. height: math.unit(14400, "feet")
  40429. },
  40430. ]
  40431. ))
  40432. characterMakers.push(() => makeCharacter(
  40433. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  40434. {
  40435. front: {
  40436. height: math.unit(5 + 4/12, "feet"),
  40437. weight: math.unit(110, "lb"),
  40438. name: "Front",
  40439. image: {
  40440. source: "./media/characters/axel-isanov/front.svg",
  40441. extra: 1096/1065,
  40442. bottom: 13/1109
  40443. }
  40444. },
  40445. },
  40446. [
  40447. {
  40448. name: "Normal",
  40449. height: math.unit(5 + 4/12, "feet"),
  40450. default: true
  40451. },
  40452. ]
  40453. ))
  40454. characterMakers.push(() => makeCharacter(
  40455. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  40456. {
  40457. front: {
  40458. height: math.unit(9, "feet"),
  40459. weight: math.unit(467, "lb"),
  40460. name: "Front",
  40461. image: {
  40462. source: "./media/characters/necahual/front.svg",
  40463. extra: 920/873,
  40464. bottom: 26/946
  40465. }
  40466. },
  40467. back: {
  40468. height: math.unit(9, "feet"),
  40469. weight: math.unit(467, "lb"),
  40470. name: "Back",
  40471. image: {
  40472. source: "./media/characters/necahual/back.svg",
  40473. extra: 930/884,
  40474. bottom: 16/946
  40475. }
  40476. },
  40477. frontUnderwear: {
  40478. height: math.unit(9, "feet"),
  40479. weight: math.unit(467, "lb"),
  40480. name: "Front (Underwear)",
  40481. image: {
  40482. source: "./media/characters/necahual/front-underwear.svg",
  40483. extra: 920/873,
  40484. bottom: 26/946
  40485. }
  40486. },
  40487. frontDressed: {
  40488. height: math.unit(9, "feet"),
  40489. weight: math.unit(467, "lb"),
  40490. name: "Front (Dressed)",
  40491. image: {
  40492. source: "./media/characters/necahual/front-dressed.svg",
  40493. extra: 920/873,
  40494. bottom: 26/946
  40495. }
  40496. },
  40497. },
  40498. [
  40499. {
  40500. name: "Comprsesed",
  40501. height: math.unit(9, "feet")
  40502. },
  40503. {
  40504. name: "Natural",
  40505. height: math.unit(15, "feet"),
  40506. default: true
  40507. },
  40508. {
  40509. name: "Boosted",
  40510. height: math.unit(50, "feet")
  40511. },
  40512. {
  40513. name: "Boosted+",
  40514. height: math.unit(150, "feet")
  40515. },
  40516. {
  40517. name: "Max",
  40518. height: math.unit(500, "feet")
  40519. },
  40520. ]
  40521. ))
  40522. characterMakers.push(() => makeCharacter(
  40523. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  40524. {
  40525. front: {
  40526. height: math.unit(22 + 1/12, "feet"),
  40527. weight: math.unit(3200, "lb"),
  40528. name: "Front",
  40529. image: {
  40530. source: "./media/characters/theo-acacia/front.svg",
  40531. extra: 1796/1741,
  40532. bottom: 83/1879
  40533. }
  40534. },
  40535. frontUnderwear: {
  40536. height: math.unit(22 + 1/12, "feet"),
  40537. weight: math.unit(3200, "lb"),
  40538. name: "Front (Underwear)",
  40539. image: {
  40540. source: "./media/characters/theo-acacia/front-underwear.svg",
  40541. extra: 1796/1741,
  40542. bottom: 83/1879
  40543. }
  40544. },
  40545. frontNude: {
  40546. height: math.unit(22 + 1/12, "feet"),
  40547. weight: math.unit(3200, "lb"),
  40548. name: "Front (Nude)",
  40549. image: {
  40550. source: "./media/characters/theo-acacia/front-nude.svg",
  40551. extra: 1796/1741,
  40552. bottom: 83/1879
  40553. }
  40554. },
  40555. },
  40556. [
  40557. {
  40558. name: "Normal",
  40559. height: math.unit(22 + 1/12, "feet"),
  40560. default: true
  40561. },
  40562. ]
  40563. ))
  40564. characterMakers.push(() => makeCharacter(
  40565. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  40566. {
  40567. front: {
  40568. height: math.unit(20, "feet"),
  40569. name: "Front",
  40570. image: {
  40571. source: "./media/characters/astra/front.svg",
  40572. extra: 1850/1714,
  40573. bottom: 106/1956
  40574. }
  40575. },
  40576. frontUndressed: {
  40577. height: math.unit(20, "feet"),
  40578. name: "Front (Undressed)",
  40579. image: {
  40580. source: "./media/characters/astra/front-undressed.svg",
  40581. extra: 1926/1749,
  40582. bottom: 0/1926
  40583. }
  40584. },
  40585. hand: {
  40586. height: math.unit(1.53, "feet"),
  40587. name: "Hand",
  40588. image: {
  40589. source: "./media/characters/astra/hand.svg"
  40590. }
  40591. },
  40592. paw: {
  40593. height: math.unit(1.53, "feet"),
  40594. name: "Paw",
  40595. image: {
  40596. source: "./media/characters/astra/paw.svg"
  40597. }
  40598. },
  40599. },
  40600. [
  40601. {
  40602. name: "Smallest",
  40603. height: math.unit(20, "feet")
  40604. },
  40605. {
  40606. name: "Normal",
  40607. height: math.unit(1e9, "miles"),
  40608. default: true
  40609. },
  40610. {
  40611. name: "Larger",
  40612. height: math.unit(5, "multiverses")
  40613. },
  40614. {
  40615. name: "Largest",
  40616. height: math.unit(1e9, "multiverses")
  40617. },
  40618. ]
  40619. ))
  40620. characterMakers.push(() => makeCharacter(
  40621. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  40622. {
  40623. front: {
  40624. height: math.unit(8, "feet"),
  40625. name: "Front",
  40626. image: {
  40627. source: "./media/characters/breanna/front.svg",
  40628. extra: 1912/1632,
  40629. bottom: 33/1945
  40630. }
  40631. },
  40632. },
  40633. [
  40634. {
  40635. name: "Smallest",
  40636. height: math.unit(8, "feet")
  40637. },
  40638. {
  40639. name: "Normal",
  40640. height: math.unit(1, "mile"),
  40641. default: true
  40642. },
  40643. {
  40644. name: "Maximum",
  40645. height: math.unit(1500000000000, "lightyears")
  40646. },
  40647. ]
  40648. ))
  40649. characterMakers.push(() => makeCharacter(
  40650. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  40651. {
  40652. front: {
  40653. height: math.unit(5 + 11/12, "feet"),
  40654. weight: math.unit(155, "lb"),
  40655. name: "Front",
  40656. image: {
  40657. source: "./media/characters/cai/front.svg",
  40658. extra: 1823/1702,
  40659. bottom: 32/1855
  40660. }
  40661. },
  40662. back: {
  40663. height: math.unit(5 + 11/12, "feet"),
  40664. weight: math.unit(155, "lb"),
  40665. name: "Back",
  40666. image: {
  40667. source: "./media/characters/cai/back.svg",
  40668. extra: 1809/1708,
  40669. bottom: 31/1840
  40670. }
  40671. },
  40672. },
  40673. [
  40674. {
  40675. name: "Normal",
  40676. height: math.unit(5 + 11/12, "feet"),
  40677. default: true
  40678. },
  40679. {
  40680. name: "Big",
  40681. height: math.unit(15, "feet")
  40682. },
  40683. {
  40684. name: "Macro",
  40685. height: math.unit(200, "feet")
  40686. },
  40687. ]
  40688. ))
  40689. characterMakers.push(() => makeCharacter(
  40690. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  40691. {
  40692. front: {
  40693. height: math.unit(5 + 6/12, "feet"),
  40694. weight: math.unit(160, "lb"),
  40695. name: "Front",
  40696. image: {
  40697. source: "./media/characters/zanna-virtuedòttir/front.svg",
  40698. extra: 1227/1174,
  40699. bottom: 37/1264
  40700. }
  40701. },
  40702. },
  40703. [
  40704. {
  40705. name: "Macro",
  40706. height: math.unit(444, "meters"),
  40707. default: true
  40708. },
  40709. ]
  40710. ))
  40711. characterMakers.push(() => makeCharacter(
  40712. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  40713. {
  40714. front: {
  40715. height: math.unit(18 + 7/12, "feet"),
  40716. name: "Front",
  40717. image: {
  40718. source: "./media/characters/rex/front.svg",
  40719. extra: 1941/1807,
  40720. bottom: 66/2007
  40721. }
  40722. },
  40723. back: {
  40724. height: math.unit(18 + 7/12, "feet"),
  40725. name: "Back",
  40726. image: {
  40727. source: "./media/characters/rex/back.svg",
  40728. extra: 1937/1822,
  40729. bottom: 42/1979
  40730. }
  40731. },
  40732. boot: {
  40733. height: math.unit(3.45, "feet"),
  40734. name: "Boot",
  40735. image: {
  40736. source: "./media/characters/rex/boot.svg"
  40737. }
  40738. },
  40739. paw: {
  40740. height: math.unit(4.17, "feet"),
  40741. name: "Paw",
  40742. image: {
  40743. source: "./media/characters/rex/paw.svg"
  40744. }
  40745. },
  40746. head: {
  40747. height: math.unit(6.728, "feet"),
  40748. name: "Head",
  40749. image: {
  40750. source: "./media/characters/rex/head.svg"
  40751. }
  40752. },
  40753. },
  40754. [
  40755. {
  40756. name: "Nano",
  40757. height: math.unit(18 + 7/12, "feet")
  40758. },
  40759. {
  40760. name: "Micro",
  40761. height: math.unit(1.5, "megameters")
  40762. },
  40763. {
  40764. name: "Normal",
  40765. height: math.unit(440, "megameters"),
  40766. default: true
  40767. },
  40768. {
  40769. name: "Macro",
  40770. height: math.unit(2.5, "gigameters")
  40771. },
  40772. {
  40773. name: "Gigamacro",
  40774. height: math.unit(2, "galaxies")
  40775. },
  40776. ]
  40777. ))
  40778. characterMakers.push(() => makeCharacter(
  40779. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  40780. {
  40781. side: {
  40782. height: math.unit(32, "feet"),
  40783. weight: math.unit(250000, "lb"),
  40784. name: "Side",
  40785. image: {
  40786. source: "./media/characters/silverwing/side.svg",
  40787. extra: 1100/1019,
  40788. bottom: 204/1304
  40789. }
  40790. },
  40791. },
  40792. [
  40793. {
  40794. name: "Normal",
  40795. height: math.unit(32, "feet"),
  40796. default: true
  40797. },
  40798. ]
  40799. ))
  40800. characterMakers.push(() => makeCharacter(
  40801. { name: "Tristan Hawthorne", species: ["labrador"], tags: ["anthro"] },
  40802. {
  40803. front: {
  40804. height: math.unit(6 + 6/12, "feet"),
  40805. weight: math.unit(350, "lb"),
  40806. name: "Front",
  40807. image: {
  40808. source: "./media/characters/tristan-hawthorne/front.svg",
  40809. extra: 1159/1124,
  40810. bottom: 37/1196
  40811. }
  40812. },
  40813. },
  40814. [
  40815. {
  40816. name: "Normal",
  40817. height: math.unit(6 + 6/12, "feet"),
  40818. default: true
  40819. },
  40820. ]
  40821. ))
  40822. characterMakers.push(() => makeCharacter(
  40823. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  40824. {
  40825. front: {
  40826. height: math.unit(5 + 11/12, "feet"),
  40827. weight: math.unit(190, "lb"),
  40828. name: "Front",
  40829. image: {
  40830. source: "./media/characters/mizu/front.svg",
  40831. extra: 1988/1788,
  40832. bottom: 14/2002
  40833. }
  40834. },
  40835. },
  40836. [
  40837. {
  40838. name: "Normal",
  40839. height: math.unit(5 + 11/12, "feet"),
  40840. default: true
  40841. },
  40842. ]
  40843. ))
  40844. characterMakers.push(() => makeCharacter(
  40845. { name: "Moonlight Rose (Terra)", species: ["leafeon"], tags: ["anthro"] },
  40846. {
  40847. front: {
  40848. height: math.unit(6, "feet"),
  40849. name: "Front",
  40850. image: {
  40851. source: "./media/characters/moonlight-rose-terra/front.svg",
  40852. extra: 1434/1252,
  40853. bottom: 48/1482
  40854. }
  40855. },
  40856. },
  40857. [
  40858. {
  40859. name: "TRAPPIST-1D",
  40860. height: math.unit(4992*2, "km")
  40861. },
  40862. {
  40863. name: "Earth",
  40864. height: math.unit(6367*2, "km"),
  40865. default: true
  40866. },
  40867. {
  40868. name: "Kepler-22b",
  40869. height: math.unit(15282*2, "km")
  40870. },
  40871. ]
  40872. ))
  40873. characterMakers.push(() => makeCharacter(
  40874. { name: "Moonlight Rose (Neptune)", species: ["vaporeon"], tags: ["anthro"] },
  40875. {
  40876. front: {
  40877. height: math.unit(6, "feet"),
  40878. name: "Front",
  40879. image: {
  40880. source: "./media/characters/moonlight-rose-neptune/front.svg",
  40881. extra: 1851/1712,
  40882. bottom: 0/1851
  40883. }
  40884. },
  40885. },
  40886. [
  40887. {
  40888. name: "Enceladus",
  40889. height: math.unit(513*2, "km")
  40890. },
  40891. {
  40892. name: "Europe",
  40893. height: math.unit(1560*2, "km")
  40894. },
  40895. {
  40896. name: "Neptune",
  40897. height: math.unit(24622*2, "km"),
  40898. default: true
  40899. },
  40900. {
  40901. name: "CoRoT-9b",
  40902. height: math.unit(75067*2, "km")
  40903. },
  40904. ]
  40905. ))
  40906. characterMakers.push(() => makeCharacter(
  40907. { name: "Moonlight Rose (Jupiter)", species: ["jolteon"], tags: ["anthro"] },
  40908. {
  40909. front: {
  40910. height: math.unit(6, "feet"),
  40911. name: "Front",
  40912. image: {
  40913. source: "./media/characters/moonlight-rose-jupiter/front.svg",
  40914. extra: 1367/1286,
  40915. bottom: 55/1422
  40916. }
  40917. },
  40918. },
  40919. [
  40920. {
  40921. name: "Saturn",
  40922. height: math.unit(58232*2, "km")
  40923. },
  40924. {
  40925. name: "Jupiter",
  40926. height: math.unit(69911*2, "km"),
  40927. default: true
  40928. },
  40929. {
  40930. name: "HD 100546 b",
  40931. height: math.unit(482938, "km")
  40932. },
  40933. ]
  40934. ))
  40935. characterMakers.push(() => makeCharacter(
  40936. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  40937. {
  40938. front: {
  40939. height: math.unit(1.7, "feet"),
  40940. weight: math.unit(50, "lb"),
  40941. name: "Front",
  40942. image: {
  40943. source: "./media/characters/dechroma/front.svg",
  40944. extra: 1095/859,
  40945. bottom: 64/1159
  40946. }
  40947. },
  40948. },
  40949. [
  40950. {
  40951. name: "Normal",
  40952. height: math.unit(1.7, "feet"),
  40953. default: true
  40954. },
  40955. ]
  40956. ))
  40957. characterMakers.push(() => makeCharacter(
  40958. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  40959. {
  40960. side: {
  40961. height: math.unit(30, "feet"),
  40962. name: "Side",
  40963. image: {
  40964. source: "./media/characters/veluren-thanazel/side.svg",
  40965. extra: 1611/633,
  40966. bottom: 118/1729
  40967. }
  40968. },
  40969. front: {
  40970. height: math.unit(30, "feet"),
  40971. name: "Front",
  40972. image: {
  40973. source: "./media/characters/veluren-thanazel/front.svg",
  40974. extra: 1486/636,
  40975. bottom: 238/1724
  40976. }
  40977. },
  40978. head: {
  40979. height: math.unit(21.4, "feet"),
  40980. name: "Head",
  40981. image: {
  40982. source: "./media/characters/veluren-thanazel/head.svg"
  40983. }
  40984. },
  40985. genitals: {
  40986. height: math.unit(19.4, "feet"),
  40987. name: "Genitals",
  40988. image: {
  40989. source: "./media/characters/veluren-thanazel/genitals.svg"
  40990. }
  40991. },
  40992. },
  40993. [
  40994. {
  40995. name: "Social",
  40996. height: math.unit(6, "feet")
  40997. },
  40998. {
  40999. name: "Play",
  41000. height: math.unit(12, "feet")
  41001. },
  41002. {
  41003. name: "True",
  41004. height: math.unit(30, "feet"),
  41005. default: true
  41006. },
  41007. ]
  41008. ))
  41009. characterMakers.push(() => makeCharacter(
  41010. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  41011. {
  41012. front: {
  41013. height: math.unit(7 + 6/12, "feet"),
  41014. weight: math.unit(500, "kg"),
  41015. name: "Front",
  41016. image: {
  41017. source: "./media/characters/arcturas/front.svg",
  41018. extra: 1700/1500,
  41019. bottom: 145/1845
  41020. }
  41021. },
  41022. },
  41023. [
  41024. {
  41025. name: "Normal",
  41026. height: math.unit(7 + 6/12, "feet"),
  41027. default: true
  41028. },
  41029. ]
  41030. ))
  41031. characterMakers.push(() => makeCharacter(
  41032. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  41033. {
  41034. side: {
  41035. height: math.unit(6, "feet"),
  41036. weight: math.unit(2, "tons"),
  41037. name: "Side",
  41038. image: {
  41039. source: "./media/characters/vitaen/side.svg",
  41040. extra: 1157/617,
  41041. bottom: 122/1279
  41042. }
  41043. },
  41044. },
  41045. [
  41046. {
  41047. name: "Normal",
  41048. height: math.unit(6, "feet"),
  41049. default: true
  41050. },
  41051. ]
  41052. ))
  41053. characterMakers.push(() => makeCharacter(
  41054. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  41055. {
  41056. front: {
  41057. height: math.unit(19, "feet"),
  41058. name: "Front",
  41059. image: {
  41060. source: "./media/characters/fia-dreamweaver/front.svg",
  41061. extra: 1630/1504,
  41062. bottom: 25/1655
  41063. }
  41064. },
  41065. },
  41066. [
  41067. {
  41068. name: "Normal",
  41069. height: math.unit(19, "feet"),
  41070. default: true
  41071. },
  41072. ]
  41073. ))
  41074. characterMakers.push(() => makeCharacter(
  41075. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  41076. {
  41077. front: {
  41078. height: math.unit(5 + 4/12, "feet"),
  41079. name: "Front",
  41080. image: {
  41081. source: "./media/characters/artan/front.svg",
  41082. extra: 1618/1535,
  41083. bottom: 46/1664
  41084. }
  41085. },
  41086. back: {
  41087. height: math.unit(5 + 4/12, "feet"),
  41088. name: "Back",
  41089. image: {
  41090. source: "./media/characters/artan/back.svg",
  41091. extra: 1618/1543,
  41092. bottom: 31/1649
  41093. }
  41094. },
  41095. },
  41096. [
  41097. {
  41098. name: "Normal",
  41099. height: math.unit(5 + 4/12, "feet"),
  41100. default: true
  41101. },
  41102. ]
  41103. ))
  41104. characterMakers.push(() => makeCharacter(
  41105. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  41106. {
  41107. side: {
  41108. height: math.unit(182, "cm"),
  41109. weight: math.unit(1000, "lb"),
  41110. name: "Side",
  41111. image: {
  41112. source: "./media/characters/silver-dragon/side.svg",
  41113. extra: 710/287,
  41114. bottom: 88/798
  41115. }
  41116. },
  41117. },
  41118. [
  41119. {
  41120. name: "Normal",
  41121. height: math.unit(182, "cm"),
  41122. default: true
  41123. },
  41124. ]
  41125. ))
  41126. characterMakers.push(() => makeCharacter(
  41127. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  41128. {
  41129. side: {
  41130. height: math.unit(6 + 6/12, "feet"),
  41131. weight: math.unit(1.5, "tons"),
  41132. name: "Side",
  41133. image: {
  41134. source: "./media/characters/zephyr/side.svg",
  41135. extra: 1433/586,
  41136. bottom: 109/1542
  41137. }
  41138. },
  41139. },
  41140. [
  41141. {
  41142. name: "Normal",
  41143. height: math.unit(6 + 6/12, "feet"),
  41144. default: true
  41145. },
  41146. ]
  41147. ))
  41148. characterMakers.push(() => makeCharacter(
  41149. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  41150. {
  41151. side: {
  41152. height: math.unit(1, "feet"),
  41153. name: "Side",
  41154. image: {
  41155. source: "./media/characters/vixye/side.svg",
  41156. extra: 632/541,
  41157. bottom: 0/632
  41158. }
  41159. },
  41160. },
  41161. [
  41162. {
  41163. name: "Normal",
  41164. height: math.unit(1, "feet"),
  41165. default: true
  41166. },
  41167. {
  41168. name: "True",
  41169. height: math.unit(1e15, "multiverses")
  41170. },
  41171. ]
  41172. ))
  41173. characterMakers.push(() => makeCharacter(
  41174. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  41175. {
  41176. front: {
  41177. height: math.unit(8 + 2/12, "feet"),
  41178. weight: math.unit(650, "lb"),
  41179. name: "Front",
  41180. image: {
  41181. source: "./media/characters/darla-mac-lochlainn/front.svg",
  41182. extra: 1174/1137,
  41183. bottom: 82/1256
  41184. }
  41185. },
  41186. back: {
  41187. height: math.unit(8 + 2/12, "feet"),
  41188. weight: math.unit(650, "lb"),
  41189. name: "Back",
  41190. image: {
  41191. source: "./media/characters/darla-mac-lochlainn/back.svg",
  41192. extra: 1204/1157,
  41193. bottom: 46/1250
  41194. }
  41195. },
  41196. },
  41197. [
  41198. {
  41199. name: "Wildform",
  41200. height: math.unit(8 + 2/12, "feet"),
  41201. default: true
  41202. },
  41203. ]
  41204. ))
  41205. characterMakers.push(() => makeCharacter(
  41206. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  41207. {
  41208. front: {
  41209. height: math.unit(18, "feet"),
  41210. name: "Front",
  41211. image: {
  41212. source: "./media/characters/cyphin/front.svg",
  41213. extra: 970/886,
  41214. bottom: 42/1012
  41215. }
  41216. },
  41217. back: {
  41218. height: math.unit(18, "feet"),
  41219. name: "Back",
  41220. image: {
  41221. source: "./media/characters/cyphin/back.svg",
  41222. extra: 1009/894,
  41223. bottom: 24/1033
  41224. }
  41225. },
  41226. head: {
  41227. height: math.unit(5.05, "feet"),
  41228. name: "Head",
  41229. image: {
  41230. source: "./media/characters/cyphin/head.svg"
  41231. }
  41232. },
  41233. tailbud: {
  41234. height: math.unit(5, "feet"),
  41235. name: "Tailbud",
  41236. image: {
  41237. source: "./media/characters/cyphin/tailbud.svg"
  41238. }
  41239. },
  41240. },
  41241. [
  41242. ]
  41243. ))
  41244. characterMakers.push(() => makeCharacter(
  41245. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  41246. {
  41247. side: {
  41248. height: math.unit(10, "feet"),
  41249. weight: math.unit(6, "tons"),
  41250. name: "Side",
  41251. image: {
  41252. source: "./media/characters/raijin/side.svg",
  41253. extra: 1529/613,
  41254. bottom: 337/1866
  41255. }
  41256. },
  41257. },
  41258. [
  41259. {
  41260. name: "Normal",
  41261. height: math.unit(10, "feet"),
  41262. default: true
  41263. },
  41264. ]
  41265. ))
  41266. characterMakers.push(() => makeCharacter(
  41267. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  41268. {
  41269. side: {
  41270. height: math.unit(9, "feet"),
  41271. name: "Side",
  41272. image: {
  41273. source: "./media/characters/nilghais/side.svg",
  41274. extra: 1047/744,
  41275. bottom: 91/1138
  41276. }
  41277. },
  41278. head: {
  41279. height: math.unit(3.14, "feet"),
  41280. name: "Head",
  41281. image: {
  41282. source: "./media/characters/nilghais/head.svg"
  41283. }
  41284. },
  41285. mouth: {
  41286. height: math.unit(4.6, "feet"),
  41287. name: "Mouth",
  41288. image: {
  41289. source: "./media/characters/nilghais/mouth.svg"
  41290. }
  41291. },
  41292. wings: {
  41293. height: math.unit(24, "feet"),
  41294. name: "Wings",
  41295. image: {
  41296. source: "./media/characters/nilghais/wings.svg"
  41297. }
  41298. },
  41299. ass: {
  41300. height: math.unit(6.12, "feet"),
  41301. name: "Ass",
  41302. image: {
  41303. source: "./media/characters/nilghais/ass.svg"
  41304. }
  41305. },
  41306. },
  41307. [
  41308. {
  41309. name: "Normal",
  41310. height: math.unit(9, "feet"),
  41311. default: true
  41312. },
  41313. ]
  41314. ))
  41315. characterMakers.push(() => makeCharacter(
  41316. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  41317. {
  41318. regular: {
  41319. height: math.unit(16 + 2/12, "feet"),
  41320. weight: math.unit(2300, "lb"),
  41321. name: "Regular",
  41322. image: {
  41323. source: "./media/characters/zolgar/regular.svg",
  41324. extra: 1246/1004,
  41325. bottom: 124/1370
  41326. }
  41327. },
  41328. boxers: {
  41329. height: math.unit(16 + 2/12, "feet"),
  41330. weight: math.unit(2300, "lb"),
  41331. name: "Boxers",
  41332. image: {
  41333. source: "./media/characters/zolgar/boxers.svg",
  41334. extra: 1246/1004,
  41335. bottom: 124/1370
  41336. }
  41337. },
  41338. armored: {
  41339. height: math.unit(16 + 2/12, "feet"),
  41340. weight: math.unit(2300, "lb"),
  41341. name: "Armored",
  41342. image: {
  41343. source: "./media/characters/zolgar/armored.svg",
  41344. extra: 1246/1004,
  41345. bottom: 124/1370
  41346. }
  41347. },
  41348. goth: {
  41349. height: math.unit(16 + 2/12, "feet"),
  41350. weight: math.unit(2300, "lb"),
  41351. name: "Goth",
  41352. image: {
  41353. source: "./media/characters/zolgar/goth.svg",
  41354. extra: 1246/1004,
  41355. bottom: 124/1370
  41356. }
  41357. },
  41358. },
  41359. [
  41360. {
  41361. name: "Shrunken Down",
  41362. height: math.unit(9 + 2/12, "feet")
  41363. },
  41364. {
  41365. name: "Normal",
  41366. height: math.unit(16 + 2/12, "feet"),
  41367. default: true
  41368. },
  41369. ]
  41370. ))
  41371. characterMakers.push(() => makeCharacter(
  41372. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  41373. {
  41374. front: {
  41375. height: math.unit(6, "feet"),
  41376. weight: math.unit(168, "lb"),
  41377. name: "Front",
  41378. image: {
  41379. source: "./media/characters/luca/front.svg",
  41380. extra: 841/667,
  41381. bottom: 102/943
  41382. }
  41383. },
  41384. },
  41385. [
  41386. {
  41387. name: "Normal",
  41388. height: math.unit(6, "feet"),
  41389. default: true
  41390. },
  41391. ]
  41392. ))
  41393. characterMakers.push(() => makeCharacter(
  41394. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  41395. {
  41396. side: {
  41397. height: math.unit(7 + 3/12, "feet"),
  41398. weight: math.unit(312, "lb"),
  41399. name: "Side",
  41400. image: {
  41401. source: "./media/characters/zezo/side.svg",
  41402. extra: 1192/1067,
  41403. bottom: 63/1255
  41404. }
  41405. },
  41406. },
  41407. [
  41408. {
  41409. name: "Normal",
  41410. height: math.unit(7 + 3/12, "feet"),
  41411. default: true
  41412. },
  41413. ]
  41414. ))
  41415. characterMakers.push(() => makeCharacter(
  41416. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  41417. {
  41418. front: {
  41419. height: math.unit(5 + 5/12, "feet"),
  41420. weight: math.unit(170, "lb"),
  41421. name: "Front",
  41422. image: {
  41423. source: "./media/characters/mayso/front.svg",
  41424. extra: 1215/1108,
  41425. bottom: 16/1231
  41426. }
  41427. },
  41428. },
  41429. [
  41430. {
  41431. name: "Normal",
  41432. height: math.unit(5 + 5/12, "feet"),
  41433. default: true
  41434. },
  41435. ]
  41436. ))
  41437. characterMakers.push(() => makeCharacter(
  41438. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  41439. {
  41440. front: {
  41441. height: math.unit(4 + 3/12, "feet"),
  41442. weight: math.unit(80, "lb"),
  41443. name: "Front",
  41444. image: {
  41445. source: "./media/characters/hess/front.svg",
  41446. extra: 1200/1123,
  41447. bottom: 16/1216
  41448. }
  41449. },
  41450. },
  41451. [
  41452. {
  41453. name: "Normal",
  41454. height: math.unit(4 + 3/12, "feet"),
  41455. default: true
  41456. },
  41457. ]
  41458. ))
  41459. characterMakers.push(() => makeCharacter(
  41460. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  41461. {
  41462. front: {
  41463. height: math.unit(1.9, "meters"),
  41464. name: "Front",
  41465. image: {
  41466. source: "./media/characters/ashgar/front.svg",
  41467. extra: 1177/1146,
  41468. bottom: 99/1276
  41469. }
  41470. },
  41471. back: {
  41472. height: math.unit(1.9, "meters"),
  41473. name: "Back",
  41474. image: {
  41475. source: "./media/characters/ashgar/back.svg",
  41476. extra: 1201/1183,
  41477. bottom: 53/1254
  41478. }
  41479. },
  41480. feral: {
  41481. height: math.unit(1.4, "meters"),
  41482. name: "Feral",
  41483. image: {
  41484. source: "./media/characters/ashgar/feral.svg",
  41485. extra: 370/345,
  41486. bottom: 45/415
  41487. }
  41488. },
  41489. },
  41490. [
  41491. {
  41492. name: "Normal",
  41493. height: math.unit(1.9, "meters"),
  41494. default: true
  41495. },
  41496. ]
  41497. ))
  41498. characterMakers.push(() => makeCharacter(
  41499. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  41500. {
  41501. regular: {
  41502. height: math.unit(6, "feet"),
  41503. weight: math.unit(220, "lb"),
  41504. name: "Regular",
  41505. image: {
  41506. source: "./media/characters/phillip/regular.svg",
  41507. extra: 1373/1277,
  41508. bottom: 75/1448
  41509. }
  41510. },
  41511. dressed: {
  41512. height: math.unit(6, "feet"),
  41513. weight: math.unit(220, "lb"),
  41514. name: "Dressed",
  41515. image: {
  41516. source: "./media/characters/phillip/dressed.svg",
  41517. extra: 1373/1277,
  41518. bottom: 75/1448
  41519. }
  41520. },
  41521. paw: {
  41522. height: math.unit(1.44, "feet"),
  41523. name: "Paw",
  41524. image: {
  41525. source: "./media/characters/phillip/paw.svg"
  41526. }
  41527. },
  41528. },
  41529. [
  41530. {
  41531. name: "Normal",
  41532. height: math.unit(6, "feet"),
  41533. default: true
  41534. },
  41535. ]
  41536. ))
  41537. characterMakers.push(() => makeCharacter(
  41538. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  41539. {
  41540. side: {
  41541. height: math.unit(42, "feet"),
  41542. name: "Side",
  41543. image: {
  41544. source: "./media/characters/uvula/side.svg",
  41545. extra: 683/586,
  41546. bottom: 60/743
  41547. }
  41548. },
  41549. front: {
  41550. height: math.unit(42, "feet"),
  41551. name: "Front",
  41552. image: {
  41553. source: "./media/characters/uvula/front.svg",
  41554. extra: 705/613,
  41555. bottom: 54/759
  41556. }
  41557. },
  41558. maw: {
  41559. height: math.unit(23.5, "feet"),
  41560. name: "Maw",
  41561. image: {
  41562. source: "./media/characters/uvula/maw.svg"
  41563. }
  41564. },
  41565. },
  41566. [
  41567. {
  41568. name: "Original Size",
  41569. height: math.unit(14, "inches")
  41570. },
  41571. {
  41572. name: "Human Size",
  41573. height: math.unit(6, "feet")
  41574. },
  41575. {
  41576. name: "Big",
  41577. height: math.unit(42, "feet"),
  41578. default: true
  41579. },
  41580. {
  41581. name: "Bigger",
  41582. height: math.unit(100, "feet")
  41583. },
  41584. ]
  41585. ))
  41586. characterMakers.push(() => makeCharacter(
  41587. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  41588. {
  41589. front: {
  41590. height: math.unit(5 + 11/12, "feet"),
  41591. name: "Front",
  41592. image: {
  41593. source: "./media/characters/lannah/front.svg",
  41594. extra: 1208/1113,
  41595. bottom: 97/1305
  41596. }
  41597. },
  41598. },
  41599. [
  41600. {
  41601. name: "Normal",
  41602. height: math.unit(5 + 11/12, "feet"),
  41603. default: true
  41604. },
  41605. ]
  41606. ))
  41607. characterMakers.push(() => makeCharacter(
  41608. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  41609. {
  41610. front: {
  41611. height: math.unit(6 + 3/12, "feet"),
  41612. weight: math.unit(3.5, "tons"),
  41613. name: "Front",
  41614. image: {
  41615. source: "./media/characters/emberflame/front.svg",
  41616. extra: 1198/672,
  41617. bottom: 82/1280
  41618. }
  41619. },
  41620. side: {
  41621. height: math.unit(6 + 3/12, "feet"),
  41622. weight: math.unit(3.5, "tons"),
  41623. name: "Side",
  41624. image: {
  41625. source: "./media/characters/emberflame/side.svg",
  41626. extra: 938/527,
  41627. bottom: 56/994
  41628. }
  41629. },
  41630. },
  41631. [
  41632. {
  41633. name: "Normal",
  41634. height: math.unit(6 + 3/12, "feet"),
  41635. default: true
  41636. },
  41637. ]
  41638. ))
  41639. characterMakers.push(() => makeCharacter(
  41640. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  41641. {
  41642. side: {
  41643. height: math.unit(17.5, "feet"),
  41644. weight: math.unit(35, "tons"),
  41645. name: "Side",
  41646. image: {
  41647. source: "./media/characters/sophie-ambrose/side.svg",
  41648. extra: 1573/1242,
  41649. bottom: 71/1644
  41650. }
  41651. },
  41652. maw: {
  41653. height: math.unit(7.4, "feet"),
  41654. name: "Maw",
  41655. image: {
  41656. source: "./media/characters/sophie-ambrose/maw.svg"
  41657. }
  41658. },
  41659. },
  41660. [
  41661. {
  41662. name: "Normal",
  41663. height: math.unit(17.5, "feet"),
  41664. default: true
  41665. },
  41666. ]
  41667. ))
  41668. characterMakers.push(() => makeCharacter(
  41669. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  41670. {
  41671. front: {
  41672. height: math.unit(280, "feet"),
  41673. weight: math.unit(550, "tons"),
  41674. name: "Front",
  41675. image: {
  41676. source: "./media/characters/king-mugi/front.svg",
  41677. extra: 1102/947,
  41678. bottom: 104/1206
  41679. }
  41680. },
  41681. },
  41682. [
  41683. {
  41684. name: "King Mugi",
  41685. height: math.unit(280, "feet"),
  41686. default: true
  41687. },
  41688. ]
  41689. ))
  41690. characterMakers.push(() => makeCharacter(
  41691. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  41692. {
  41693. front: {
  41694. height: math.unit(64, "meters"),
  41695. name: "Front",
  41696. image: {
  41697. source: "./media/characters/nova-fox/front.svg",
  41698. extra: 1310/1246,
  41699. bottom: 65/1375
  41700. }
  41701. },
  41702. },
  41703. [
  41704. {
  41705. name: "Macro",
  41706. height: math.unit(64, "meters"),
  41707. default: true
  41708. },
  41709. ]
  41710. ))
  41711. characterMakers.push(() => makeCharacter(
  41712. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  41713. {
  41714. front: {
  41715. height: math.unit(6 + 3/12, "feet"),
  41716. weight: math.unit(170, "lb"),
  41717. name: "Front",
  41718. image: {
  41719. source: "./media/characters/sam-bat/front.svg",
  41720. extra: 1601/1411,
  41721. bottom: 125/1726
  41722. }
  41723. },
  41724. back: {
  41725. height: math.unit(6 + 3/12, "feet"),
  41726. weight: math.unit(170, "lb"),
  41727. name: "Back",
  41728. image: {
  41729. source: "./media/characters/sam-bat/back.svg",
  41730. extra: 1577/1405,
  41731. bottom: 58/1635
  41732. }
  41733. },
  41734. },
  41735. [
  41736. {
  41737. name: "Normal",
  41738. height: math.unit(6 + 3/12, "feet"),
  41739. default: true
  41740. },
  41741. ]
  41742. ))
  41743. characterMakers.push(() => makeCharacter(
  41744. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  41745. {
  41746. front: {
  41747. height: math.unit(59, "feet"),
  41748. weight: math.unit(40000, "lb"),
  41749. name: "Front",
  41750. image: {
  41751. source: "./media/characters/inari/front.svg",
  41752. extra: 1884/1350,
  41753. bottom: 95/1979
  41754. }
  41755. },
  41756. },
  41757. [
  41758. {
  41759. name: "Gigantamax",
  41760. height: math.unit(59, "feet"),
  41761. default: true
  41762. },
  41763. ]
  41764. ))
  41765. characterMakers.push(() => makeCharacter(
  41766. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  41767. {
  41768. front: {
  41769. height: math.unit(5 + 8/12, "feet"),
  41770. name: "Front",
  41771. image: {
  41772. source: "./media/characters/elizabeth/front.svg",
  41773. extra: 1395/1298,
  41774. bottom: 54/1449
  41775. }
  41776. },
  41777. mouth: {
  41778. height: math.unit(1.97, "feet"),
  41779. name: "Mouth",
  41780. image: {
  41781. source: "./media/characters/elizabeth/mouth.svg"
  41782. }
  41783. },
  41784. foot: {
  41785. height: math.unit(1.17, "feet"),
  41786. name: "Foot",
  41787. image: {
  41788. source: "./media/characters/elizabeth/foot.svg"
  41789. }
  41790. },
  41791. },
  41792. [
  41793. {
  41794. name: "Normal",
  41795. height: math.unit(5 + 8/12, "feet"),
  41796. default: true
  41797. },
  41798. {
  41799. name: "Minimacro",
  41800. height: math.unit(18, "feet")
  41801. },
  41802. {
  41803. name: "Macro",
  41804. height: math.unit(180, "feet")
  41805. },
  41806. ]
  41807. ))
  41808. characterMakers.push(() => makeCharacter(
  41809. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  41810. {
  41811. front: {
  41812. height: math.unit(5 + 2/12, "feet"),
  41813. name: "Front",
  41814. image: {
  41815. source: "./media/characters/october-gossamer/front.svg",
  41816. extra: 505/454,
  41817. bottom: 7/512
  41818. }
  41819. },
  41820. back: {
  41821. height: math.unit(5 + 2/12, "feet"),
  41822. name: "Back",
  41823. image: {
  41824. source: "./media/characters/october-gossamer/back.svg",
  41825. extra: 501/454,
  41826. bottom: 11/512
  41827. }
  41828. },
  41829. },
  41830. [
  41831. {
  41832. name: "Normal",
  41833. height: math.unit(5 + 2/12, "feet"),
  41834. default: true
  41835. },
  41836. ]
  41837. ))
  41838. characterMakers.push(() => makeCharacter(
  41839. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  41840. {
  41841. front: {
  41842. height: math.unit(5, "feet"),
  41843. name: "Front",
  41844. image: {
  41845. source: "./media/characters/epiglottis/front.svg",
  41846. extra: 923/849,
  41847. bottom: 17/940
  41848. }
  41849. },
  41850. },
  41851. [
  41852. {
  41853. name: "Original Size",
  41854. height: math.unit(10, "inches")
  41855. },
  41856. {
  41857. name: "Human Size",
  41858. height: math.unit(5, "feet"),
  41859. default: true
  41860. },
  41861. {
  41862. name: "Big",
  41863. height: math.unit(25, "feet")
  41864. },
  41865. {
  41866. name: "Bigger",
  41867. height: math.unit(50, "feet")
  41868. },
  41869. {
  41870. name: "oh lawd",
  41871. height: math.unit(75, "feet")
  41872. },
  41873. ]
  41874. ))
  41875. characterMakers.push(() => makeCharacter(
  41876. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  41877. {
  41878. front: {
  41879. height: math.unit(2 + 4/12, "feet"),
  41880. weight: math.unit(60, "lb"),
  41881. name: "Front",
  41882. image: {
  41883. source: "./media/characters/lerm/front.svg",
  41884. extra: 796/790,
  41885. bottom: 79/875
  41886. }
  41887. },
  41888. },
  41889. [
  41890. {
  41891. name: "Normal",
  41892. height: math.unit(2 + 4/12, "feet"),
  41893. default: true
  41894. },
  41895. ]
  41896. ))
  41897. characterMakers.push(() => makeCharacter(
  41898. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  41899. {
  41900. front: {
  41901. height: math.unit(5.5, "feet"),
  41902. weight: math.unit(130, "lb"),
  41903. name: "Front",
  41904. image: {
  41905. source: "./media/characters/xena-nebadon/front.svg",
  41906. extra: 1828/1730,
  41907. bottom: 79/1907
  41908. }
  41909. },
  41910. },
  41911. [
  41912. {
  41913. name: "Tiny Puppy",
  41914. height: math.unit(3, "inches")
  41915. },
  41916. {
  41917. name: "Normal",
  41918. height: math.unit(5.5, "feet"),
  41919. default: true
  41920. },
  41921. {
  41922. name: "Lotta Lady",
  41923. height: math.unit(12, "feet")
  41924. },
  41925. {
  41926. name: "Pretty Big",
  41927. height: math.unit(100, "feet")
  41928. },
  41929. {
  41930. name: "Big",
  41931. height: math.unit(500, "feet")
  41932. },
  41933. {
  41934. name: "Skyscraper Toys",
  41935. height: math.unit(2500, "feet")
  41936. },
  41937. {
  41938. name: "Plane Catcher",
  41939. height: math.unit(8, "miles")
  41940. },
  41941. {
  41942. name: "Planet Toys",
  41943. height: math.unit(15, "earths")
  41944. },
  41945. {
  41946. name: "Stardust",
  41947. height: math.unit(0.25, "galaxies")
  41948. },
  41949. {
  41950. name: "Snacks",
  41951. height: math.unit(70, "universes")
  41952. },
  41953. ]
  41954. ))
  41955. characterMakers.push(() => makeCharacter(
  41956. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  41957. {
  41958. front: {
  41959. height: math.unit(1.6, "meters"),
  41960. weight: math.unit(60, "kg"),
  41961. name: "Front",
  41962. image: {
  41963. source: "./media/characters/bounty/front.svg",
  41964. extra: 1426/1308,
  41965. bottom: 15/1441
  41966. }
  41967. },
  41968. },
  41969. [
  41970. {
  41971. name: "Normal",
  41972. height: math.unit(1.6, "meters"),
  41973. default: true
  41974. },
  41975. {
  41976. name: "Macro",
  41977. height: math.unit(300, "meters")
  41978. },
  41979. ]
  41980. ))
  41981. characterMakers.push(() => makeCharacter(
  41982. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  41983. {
  41984. front: {
  41985. height: math.unit(2 + 8/12, "feet"),
  41986. weight: math.unit(15, "lb"),
  41987. name: "Front",
  41988. image: {
  41989. source: "./media/characters/mochi/front.svg",
  41990. extra: 1022/852,
  41991. bottom: 435/1457
  41992. }
  41993. },
  41994. back: {
  41995. height: math.unit(2 + 8/12, "feet"),
  41996. weight: math.unit(15, "lb"),
  41997. name: "Back",
  41998. image: {
  41999. source: "./media/characters/mochi/back.svg",
  42000. extra: 1335/1119,
  42001. bottom: 39/1374
  42002. }
  42003. },
  42004. bird: {
  42005. height: math.unit(2 + 8/12, "feet"),
  42006. weight: math.unit(15, "lb"),
  42007. name: "Bird",
  42008. image: {
  42009. source: "./media/characters/mochi/bird.svg",
  42010. extra: 1251/1113,
  42011. bottom: 178/1429
  42012. }
  42013. },
  42014. kaiju: {
  42015. height: math.unit(154, "feet"),
  42016. weight: math.unit(1e7, "lb"),
  42017. name: "Kaiju",
  42018. image: {
  42019. source: "./media/characters/mochi/kaiju.svg",
  42020. extra: 460/324,
  42021. bottom: 40/500
  42022. }
  42023. },
  42024. head: {
  42025. height: math.unit(1.21, "feet"),
  42026. name: "Head",
  42027. image: {
  42028. source: "./media/characters/mochi/head.svg"
  42029. }
  42030. },
  42031. alternateTail: {
  42032. height: math.unit(2 + 8/12, "feet"),
  42033. weight: math.unit(45, "lb"),
  42034. name: "Alternate Tail",
  42035. image: {
  42036. source: "./media/characters/mochi/alternate-tail.svg",
  42037. extra: 139/76,
  42038. bottom: 45/184
  42039. }
  42040. },
  42041. },
  42042. [
  42043. {
  42044. name: "Micro",
  42045. height: math.unit(2, "inches")
  42046. },
  42047. {
  42048. name: "Normal",
  42049. height: math.unit(2 + 8/12, "feet"),
  42050. default: true
  42051. },
  42052. {
  42053. name: "Macro",
  42054. height: math.unit(106, "feet")
  42055. },
  42056. ]
  42057. ))
  42058. characterMakers.push(() => makeCharacter(
  42059. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  42060. {
  42061. front: {
  42062. height: math.unit(5.67, "feet"),
  42063. weight: math.unit(135, "lb"),
  42064. name: "Front",
  42065. image: {
  42066. source: "./media/characters/sarel/front.svg",
  42067. extra: 865/788,
  42068. bottom: 97/962
  42069. }
  42070. },
  42071. back: {
  42072. height: math.unit(5.67, "feet"),
  42073. weight: math.unit(135, "lb"),
  42074. name: "Back",
  42075. image: {
  42076. source: "./media/characters/sarel/back.svg",
  42077. extra: 857/777,
  42078. bottom: 32/889
  42079. }
  42080. },
  42081. chozoan: {
  42082. height: math.unit(5.67, "feet"),
  42083. weight: math.unit(135, "lb"),
  42084. name: "Chozoan",
  42085. image: {
  42086. source: "./media/characters/sarel/chozoan.svg",
  42087. extra: 865/788,
  42088. bottom: 97/962
  42089. }
  42090. },
  42091. current: {
  42092. height: math.unit(5.67, "feet"),
  42093. weight: math.unit(135, "lb"),
  42094. name: "Current",
  42095. image: {
  42096. source: "./media/characters/sarel/current.svg",
  42097. extra: 865/788,
  42098. bottom: 97/962
  42099. }
  42100. },
  42101. head: {
  42102. height: math.unit(1.77, "feet"),
  42103. name: "Head",
  42104. image: {
  42105. source: "./media/characters/sarel/head.svg"
  42106. }
  42107. },
  42108. claws: {
  42109. height: math.unit(1.8, "feet"),
  42110. name: "Claws",
  42111. image: {
  42112. source: "./media/characters/sarel/claws.svg"
  42113. }
  42114. },
  42115. clawsAlt: {
  42116. height: math.unit(1.8, "feet"),
  42117. name: "Claws-alt",
  42118. image: {
  42119. source: "./media/characters/sarel/claws-alt.svg"
  42120. }
  42121. },
  42122. },
  42123. [
  42124. {
  42125. name: "Normal",
  42126. height: math.unit(5.67, "feet"),
  42127. default: true
  42128. },
  42129. ]
  42130. ))
  42131. characterMakers.push(() => makeCharacter(
  42132. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  42133. {
  42134. front: {
  42135. height: math.unit(5500, "feet"),
  42136. name: "Front",
  42137. image: {
  42138. source: "./media/characters/alyonia/front.svg",
  42139. extra: 1200/1135,
  42140. bottom: 29/1229
  42141. }
  42142. },
  42143. back: {
  42144. height: math.unit(5500, "feet"),
  42145. name: "Back",
  42146. image: {
  42147. source: "./media/characters/alyonia/back.svg",
  42148. extra: 1205/1138,
  42149. bottom: 10/1215
  42150. }
  42151. },
  42152. },
  42153. [
  42154. {
  42155. name: "Small",
  42156. height: math.unit(10, "feet")
  42157. },
  42158. {
  42159. name: "Macro",
  42160. height: math.unit(500, "feet")
  42161. },
  42162. {
  42163. name: "Mega Macro",
  42164. height: math.unit(5500, "feet"),
  42165. default: true
  42166. },
  42167. {
  42168. name: "Mega Macro+",
  42169. height: math.unit(500000, "feet")
  42170. },
  42171. {
  42172. name: "Giga Macro",
  42173. height: math.unit(3000, "miles")
  42174. },
  42175. {
  42176. name: "Tera Macro",
  42177. height: math.unit(2.8e6, "miles")
  42178. },
  42179. {
  42180. name: "Galactic",
  42181. height: math.unit(120000, "lightyears")
  42182. },
  42183. ]
  42184. ))
  42185. characterMakers.push(() => makeCharacter(
  42186. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  42187. {
  42188. werewolf: {
  42189. height: math.unit(8, "feet"),
  42190. weight: math.unit(425, "lb"),
  42191. name: "Werewolf",
  42192. image: {
  42193. source: "./media/characters/autumn/werewolf.svg",
  42194. extra: 2154/2031,
  42195. bottom: 160/2314
  42196. }
  42197. },
  42198. human: {
  42199. height: math.unit(5 + 8/12, "feet"),
  42200. weight: math.unit(150, "lb"),
  42201. name: "Human",
  42202. image: {
  42203. source: "./media/characters/autumn/human.svg",
  42204. extra: 1200/1149,
  42205. bottom: 30/1230
  42206. }
  42207. },
  42208. },
  42209. [
  42210. {
  42211. name: "Normal",
  42212. height: math.unit(8, "feet"),
  42213. default: true
  42214. },
  42215. ]
  42216. ))
  42217. characterMakers.push(() => makeCharacter(
  42218. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  42219. {
  42220. front: {
  42221. height: math.unit(8 + 5/12, "feet"),
  42222. weight: math.unit(825, "lb"),
  42223. name: "Front",
  42224. image: {
  42225. source: "./media/characters/cobalt-charizard/front.svg",
  42226. extra: 1268/1155,
  42227. bottom: 122/1390
  42228. }
  42229. },
  42230. side: {
  42231. height: math.unit(8 + 5/12, "feet"),
  42232. weight: math.unit(825, "lb"),
  42233. name: "Side",
  42234. image: {
  42235. source: "./media/characters/cobalt-charizard/side.svg",
  42236. extra: 1348/1257,
  42237. bottom: 58/1406
  42238. }
  42239. },
  42240. gMax: {
  42241. height: math.unit(134 + 11/12, "feet"),
  42242. name: "G-Max",
  42243. image: {
  42244. source: "./media/characters/cobalt-charizard/g-max.svg",
  42245. extra: 1835/1541,
  42246. bottom: 151/1986
  42247. }
  42248. },
  42249. },
  42250. [
  42251. {
  42252. name: "Normal",
  42253. height: math.unit(8 + 5/12, "feet"),
  42254. default: true
  42255. },
  42256. ]
  42257. ))
  42258. characterMakers.push(() => makeCharacter(
  42259. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  42260. {
  42261. front: {
  42262. height: math.unit(6 + 3/12, "feet"),
  42263. weight: math.unit(210, "lb"),
  42264. name: "Front",
  42265. image: {
  42266. source: "./media/characters/stella/front.svg",
  42267. extra: 3549/3335,
  42268. bottom: 51/3600
  42269. }
  42270. },
  42271. },
  42272. [
  42273. {
  42274. name: "Normal",
  42275. height: math.unit(6 + 3/12, "feet"),
  42276. default: true
  42277. },
  42278. ]
  42279. ))
  42280. characterMakers.push(() => makeCharacter(
  42281. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  42282. {
  42283. front: {
  42284. height: math.unit(5, "feet"),
  42285. weight: math.unit(90, "lb"),
  42286. name: "Front",
  42287. image: {
  42288. source: "./media/characters/riley-bishop/front.svg",
  42289. extra: 1450/1428,
  42290. bottom: 152/1602
  42291. }
  42292. },
  42293. },
  42294. [
  42295. {
  42296. name: "Normal",
  42297. height: math.unit(5, "feet"),
  42298. default: true
  42299. },
  42300. ]
  42301. ))
  42302. characterMakers.push(() => makeCharacter(
  42303. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  42304. {
  42305. side: {
  42306. height: math.unit(8 + 2/12, "feet"),
  42307. weight: math.unit(500, "kg"),
  42308. name: "Side",
  42309. image: {
  42310. source: "./media/characters/theo-arcanine/side.svg",
  42311. extra: 1342/1074,
  42312. bottom: 111/1453
  42313. }
  42314. },
  42315. },
  42316. [
  42317. {
  42318. name: "Normal",
  42319. height: math.unit(8 + 2/12, "feet"),
  42320. default: true
  42321. },
  42322. ]
  42323. ))
  42324. characterMakers.push(() => makeCharacter(
  42325. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  42326. {
  42327. front: {
  42328. height: math.unit(4, "feet"),
  42329. name: "Front",
  42330. image: {
  42331. source: "./media/characters/kali/front.svg",
  42332. extra: 1921/1357,
  42333. bottom: 70/1991
  42334. }
  42335. },
  42336. },
  42337. [
  42338. {
  42339. name: "Normal",
  42340. height: math.unit(4, "feet"),
  42341. default: true
  42342. },
  42343. {
  42344. name: "Macro",
  42345. height: math.unit(32, "meters")
  42346. },
  42347. {
  42348. name: "Macro+",
  42349. height: math.unit(150, "meters")
  42350. },
  42351. {
  42352. name: "Megamacro",
  42353. height: math.unit(7500, "meters")
  42354. },
  42355. {
  42356. name: "Megamacro+",
  42357. height: math.unit(80, "kilometers")
  42358. },
  42359. ]
  42360. ))
  42361. characterMakers.push(() => makeCharacter(
  42362. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  42363. {
  42364. side: {
  42365. height: math.unit(5 + 11/12, "feet"),
  42366. weight: math.unit(236, "lb"),
  42367. name: "Side",
  42368. image: {
  42369. source: "./media/characters/gapp/side.svg",
  42370. extra: 775/340,
  42371. bottom: 58/833
  42372. }
  42373. },
  42374. mouth: {
  42375. height: math.unit(2.98, "feet"),
  42376. name: "Mouth",
  42377. image: {
  42378. source: "./media/characters/gapp/mouth.svg"
  42379. }
  42380. },
  42381. },
  42382. [
  42383. {
  42384. name: "Normal",
  42385. height: math.unit(5 + 1/12, "feet"),
  42386. default: true
  42387. },
  42388. ]
  42389. ))
  42390. characterMakers.push(() => makeCharacter(
  42391. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  42392. {
  42393. front: {
  42394. height: math.unit(6, "feet"),
  42395. name: "Front",
  42396. image: {
  42397. source: "./media/characters/persephone/front.svg",
  42398. extra: 1895/1717,
  42399. bottom: 96/1991
  42400. }
  42401. },
  42402. back: {
  42403. height: math.unit(6, "feet"),
  42404. name: "Back",
  42405. image: {
  42406. source: "./media/characters/persephone/back.svg",
  42407. extra: 1868/1679,
  42408. bottom: 26/1894
  42409. }
  42410. },
  42411. casual: {
  42412. height: math.unit(6, "feet"),
  42413. name: "Casual",
  42414. image: {
  42415. source: "./media/characters/persephone/casual.svg",
  42416. extra: 1713/1541,
  42417. bottom: 76/1789
  42418. }
  42419. },
  42420. },
  42421. [
  42422. {
  42423. name: "Human Size",
  42424. height: math.unit(6, "feet"),
  42425. default: true
  42426. },
  42427. {
  42428. name: "Galaxy Brain",
  42429. height: math.unit(1, "zettameter")
  42430. },
  42431. ]
  42432. ))
  42433. characterMakers.push(() => makeCharacter(
  42434. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  42435. {
  42436. front: {
  42437. height: math.unit(1.85, "meters"),
  42438. name: "Front",
  42439. image: {
  42440. source: "./media/characters/riley-foxthing/front.svg",
  42441. extra: 1495/1354,
  42442. bottom: 122/1617
  42443. }
  42444. },
  42445. frontAlt: {
  42446. height: math.unit(1.85, "meters"),
  42447. name: "Front (Alt)",
  42448. image: {
  42449. source: "./media/characters/riley-foxthing/front-alt.svg",
  42450. extra: 1572/1389,
  42451. bottom: 116/1688
  42452. }
  42453. },
  42454. },
  42455. [
  42456. {
  42457. name: "Normal Sized",
  42458. height: math.unit(1.85, "meters"),
  42459. default: true
  42460. },
  42461. {
  42462. name: "Quite Sizable",
  42463. height: math.unit(5, "meters")
  42464. },
  42465. {
  42466. name: "Rather Large",
  42467. height: math.unit(20, "meters")
  42468. },
  42469. {
  42470. name: "Macro",
  42471. height: math.unit(450, "meters")
  42472. },
  42473. {
  42474. name: "Giga",
  42475. height: math.unit(5, "km")
  42476. },
  42477. ]
  42478. ))
  42479. characterMakers.push(() => makeCharacter(
  42480. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  42481. {
  42482. front: {
  42483. height: math.unit(6, "feet"),
  42484. weight: math.unit(200, "lb"),
  42485. name: "Front",
  42486. image: {
  42487. source: "./media/characters/blizzard/front.svg",
  42488. extra: 1136/990,
  42489. bottom: 136/1272
  42490. }
  42491. },
  42492. back: {
  42493. height: math.unit(6, "feet"),
  42494. weight: math.unit(200, "lb"),
  42495. name: "Back",
  42496. image: {
  42497. source: "./media/characters/blizzard/back.svg",
  42498. extra: 1175/1034,
  42499. bottom: 97/1272
  42500. }
  42501. },
  42502. sitting: {
  42503. height: math.unit(3.725, "feet"),
  42504. weight: math.unit(200, "lb"),
  42505. name: "Sitting",
  42506. image: {
  42507. source: "./media/characters/blizzard/sitting.svg",
  42508. extra: 581/485,
  42509. bottom: 90/671
  42510. }
  42511. },
  42512. frontWizard: {
  42513. height: math.unit(7.9, "feet"),
  42514. weight: math.unit(200, "lb"),
  42515. name: "Front (Wizard)",
  42516. image: {
  42517. source: "./media/characters/blizzard/front-wizard.svg"
  42518. }
  42519. },
  42520. backWizard: {
  42521. height: math.unit(7.9, "feet"),
  42522. weight: math.unit(200, "lb"),
  42523. name: "Back (Wizard)",
  42524. image: {
  42525. source: "./media/characters/blizzard/back-wizard.svg"
  42526. }
  42527. },
  42528. frontNsfw: {
  42529. height: math.unit(6, "feet"),
  42530. weight: math.unit(200, "lb"),
  42531. name: "Front (NSFW)",
  42532. image: {
  42533. source: "./media/characters/blizzard/front-nsfw.svg",
  42534. extra: 1136/990,
  42535. bottom: 136/1272
  42536. }
  42537. },
  42538. backNsfw: {
  42539. height: math.unit(6, "feet"),
  42540. weight: math.unit(200, "lb"),
  42541. name: "Back (NSFW)",
  42542. image: {
  42543. source: "./media/characters/blizzard/back-nsfw.svg",
  42544. extra: 1175/1034,
  42545. bottom: 97/1272
  42546. }
  42547. },
  42548. sittingNsfw: {
  42549. height: math.unit(3.725, "feet"),
  42550. weight: math.unit(200, "lb"),
  42551. name: "Sitting (NSFW)",
  42552. image: {
  42553. source: "./media/characters/blizzard/sitting-nsfw.svg",
  42554. extra: 581/485,
  42555. bottom: 90/671
  42556. }
  42557. },
  42558. wizardFrontNsfw: {
  42559. height: math.unit(7.9, "feet"),
  42560. weight: math.unit(200, "lb"),
  42561. name: "Wizard (Front, NSFW)",
  42562. image: {
  42563. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  42564. }
  42565. },
  42566. },
  42567. [
  42568. {
  42569. name: "Normal",
  42570. height: math.unit(6, "feet"),
  42571. default: true
  42572. },
  42573. ]
  42574. ))
  42575. characterMakers.push(() => makeCharacter(
  42576. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  42577. {
  42578. front: {
  42579. height: math.unit(5 + 2/12, "feet"),
  42580. name: "Front",
  42581. image: {
  42582. source: "./media/characters/lumi/front.svg",
  42583. extra: 1328/1268,
  42584. bottom: 103/1431
  42585. }
  42586. },
  42587. back: {
  42588. height: math.unit(5 + 2/12, "feet"),
  42589. name: "Back",
  42590. image: {
  42591. source: "./media/characters/lumi/back.svg",
  42592. extra: 1381/1327,
  42593. bottom: 43/1424
  42594. }
  42595. },
  42596. },
  42597. [
  42598. {
  42599. name: "Normal",
  42600. height: math.unit(5 + 2/12, "feet"),
  42601. default: true
  42602. },
  42603. ]
  42604. ))
  42605. characterMakers.push(() => makeCharacter(
  42606. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  42607. {
  42608. front: {
  42609. height: math.unit(5 + 9/12, "feet"),
  42610. name: "Front",
  42611. image: {
  42612. source: "./media/characters/aliya-cotton/front.svg",
  42613. extra: 577/564,
  42614. bottom: 29/606
  42615. }
  42616. },
  42617. },
  42618. [
  42619. {
  42620. name: "Normal",
  42621. height: math.unit(5 + 9/12, "feet"),
  42622. default: true
  42623. },
  42624. ]
  42625. ))
  42626. characterMakers.push(() => makeCharacter(
  42627. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  42628. {
  42629. front: {
  42630. height: math.unit(2.7, "meters"),
  42631. weight: math.unit(25000, "lb"),
  42632. name: "Front",
  42633. image: {
  42634. source: "./media/characters/noah-luxray/front.svg",
  42635. extra: 1644/825,
  42636. bottom: 339/1983
  42637. }
  42638. },
  42639. side: {
  42640. height: math.unit(2.97, "meters"),
  42641. weight: math.unit(25000, "lb"),
  42642. name: "Side",
  42643. image: {
  42644. source: "./media/characters/noah-luxray/side.svg",
  42645. extra: 1319/650,
  42646. bottom: 163/1482
  42647. }
  42648. },
  42649. dick: {
  42650. height: math.unit(7.4, "feet"),
  42651. weight: math.unit(2500, "lb"),
  42652. name: "Dick",
  42653. image: {
  42654. source: "./media/characters/noah-luxray/dick.svg"
  42655. }
  42656. },
  42657. dickAlt: {
  42658. height: math.unit(10.83, "feet"),
  42659. weight: math.unit(2500, "lb"),
  42660. name: "Dick-alt",
  42661. image: {
  42662. source: "./media/characters/noah-luxray/dick-alt.svg"
  42663. }
  42664. },
  42665. },
  42666. [
  42667. {
  42668. name: "BIG",
  42669. height: math.unit(2.7, "meters"),
  42670. default: true
  42671. },
  42672. ]
  42673. ))
  42674. characterMakers.push(() => makeCharacter(
  42675. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  42676. {
  42677. standing: {
  42678. height: math.unit(183, "cm"),
  42679. weight: math.unit(68, "kg"),
  42680. name: "Standing",
  42681. image: {
  42682. source: "./media/characters/arion/standing.svg",
  42683. extra: 1869/1807,
  42684. bottom: 93/1962
  42685. }
  42686. },
  42687. reclining: {
  42688. height: math.unit(70.5, "cm"),
  42689. weight: math.unit(68, "lb"),
  42690. name: "Reclining",
  42691. image: {
  42692. source: "./media/characters/arion/reclining.svg",
  42693. extra: 937/870,
  42694. bottom: 63/1000
  42695. }
  42696. },
  42697. },
  42698. [
  42699. {
  42700. name: "Colossus Size, Low",
  42701. height: math.unit(33, "meters"),
  42702. default: true
  42703. },
  42704. {
  42705. name: "Colossus Size, Mid",
  42706. height: math.unit(52, "meters")
  42707. },
  42708. {
  42709. name: "Colossus Size, High",
  42710. height: math.unit(60, "meters")
  42711. },
  42712. {
  42713. name: "Titan Size, Low",
  42714. height: math.unit(91, "meters"),
  42715. },
  42716. {
  42717. name: "Titan Size, Mid",
  42718. height: math.unit(122, "meters")
  42719. },
  42720. {
  42721. name: "Titan Size, High",
  42722. height: math.unit(162, "meters")
  42723. },
  42724. ]
  42725. ))
  42726. characterMakers.push(() => makeCharacter(
  42727. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  42728. {
  42729. front: {
  42730. height: math.unit(53, "meters"),
  42731. name: "Front",
  42732. image: {
  42733. source: "./media/characters/stellar-marbey/front.svg",
  42734. extra: 1913/1805,
  42735. bottom: 92/2005
  42736. }
  42737. },
  42738. back: {
  42739. height: math.unit(53, "meters"),
  42740. name: "Back",
  42741. image: {
  42742. source: "./media/characters/stellar-marbey/back.svg",
  42743. extra: 1960/1851,
  42744. bottom: 28/1988
  42745. }
  42746. },
  42747. mouth: {
  42748. height: math.unit(3.5, "meters"),
  42749. name: "Mouth",
  42750. image: {
  42751. source: "./media/characters/stellar-marbey/mouth.svg"
  42752. }
  42753. },
  42754. },
  42755. [
  42756. {
  42757. name: "Macro",
  42758. height: math.unit(53, "meters"),
  42759. default: true
  42760. },
  42761. ]
  42762. ))
  42763. characterMakers.push(() => makeCharacter(
  42764. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  42765. {
  42766. front: {
  42767. height: math.unit(8 + 1/12, "feet"),
  42768. weight: math.unit(233, "lb"),
  42769. name: "Front",
  42770. image: {
  42771. source: "./media/characters/matsu/front.svg",
  42772. extra: 832/772,
  42773. bottom: 40/872
  42774. }
  42775. },
  42776. back: {
  42777. height: math.unit(8 + 1/12, "feet"),
  42778. weight: math.unit(233, "lb"),
  42779. name: "Back",
  42780. image: {
  42781. source: "./media/characters/matsu/back.svg",
  42782. extra: 839/780,
  42783. bottom: 47/886
  42784. }
  42785. },
  42786. },
  42787. [
  42788. {
  42789. name: "Normal",
  42790. height: math.unit(8 + 1/12, "feet"),
  42791. default: true
  42792. },
  42793. ]
  42794. ))
  42795. characterMakers.push(() => makeCharacter(
  42796. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  42797. {
  42798. front: {
  42799. height: math.unit(4, "feet"),
  42800. weight: math.unit(148, "lb"),
  42801. name: "Front",
  42802. image: {
  42803. source: "./media/characters/thiz/front.svg",
  42804. extra: 1913/1748,
  42805. bottom: 62/1975
  42806. }
  42807. },
  42808. },
  42809. [
  42810. {
  42811. name: "Normal",
  42812. height: math.unit(4, "feet"),
  42813. default: true
  42814. },
  42815. ]
  42816. ))
  42817. characterMakers.push(() => makeCharacter(
  42818. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  42819. {
  42820. front: {
  42821. height: math.unit(7 + 6/12, "feet"),
  42822. weight: math.unit(267, "lb"),
  42823. name: "Front",
  42824. image: {
  42825. source: "./media/characters/marcel/front.svg",
  42826. extra: 1221/1096,
  42827. bottom: 76/1297
  42828. }
  42829. },
  42830. },
  42831. [
  42832. {
  42833. name: "Normal",
  42834. height: math.unit(7 + 6/12, "feet"),
  42835. default: true
  42836. },
  42837. ]
  42838. ))
  42839. //characters
  42840. function makeCharacters() {
  42841. const results = [];
  42842. characterMakers.forEach(character => {
  42843. results.push(character());
  42844. });
  42845. return results;
  42846. }