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

46157 lines
1.1 MiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. name: value.name,
  16. info: value.info,
  17. rename: value.rename,
  18. default: value.default
  19. }
  20. if (value.weight) {
  21. views[key].attributes.weight = {
  22. name: "Mass",
  23. power: 3,
  24. type: "mass",
  25. base: value.weight
  26. };
  27. }
  28. if (value.volume) {
  29. views[key].attributes.volume = {
  30. name: "Volume",
  31. power: 3,
  32. type: "volume",
  33. base: value.volume
  34. };
  35. }
  36. if (value.capacity) {
  37. views[key].attributes.capacity = {
  38. name: "Capacity",
  39. power: 3,
  40. type: "volume",
  41. base: value.capacity
  42. }
  43. }
  44. if (value.energyNeed) {
  45. views[key].attributes.capacity = {
  46. name: "Food Intake",
  47. power: 3,
  48. type: "energy",
  49. base: value.energyNeed
  50. }
  51. }
  52. });
  53. return createEntityMaker(info, views, defaultSizes);
  54. }
  55. const speciesData = {
  56. animal: {
  57. name: "Animal"
  58. },
  59. dog: {
  60. name: "Dog",
  61. parents: [
  62. "canine"
  63. ]
  64. },
  65. canine: {
  66. name: "Canine",
  67. parents: [
  68. "mammal"
  69. ]
  70. },
  71. crux: {
  72. name: "Crux",
  73. parents: [
  74. "mammal"
  75. ]
  76. },
  77. mammal: {
  78. name: "Mammal",
  79. parents: [
  80. "animal"
  81. ]
  82. },
  83. "rough-collie": {
  84. name: "Rough Collie",
  85. parents: [
  86. "dog"
  87. ]
  88. },
  89. dragon: {
  90. name: "Dragon",
  91. parents: [
  92. "reptile"
  93. ]
  94. },
  95. reptile: {
  96. name: "Reptile",
  97. parents: [
  98. "animal"
  99. ]
  100. },
  101. woodpecker: {
  102. name: "Woodpecker",
  103. parents: [
  104. "avian"
  105. ]
  106. },
  107. avian: {
  108. name: "Avian",
  109. parents: [
  110. "animal"
  111. ]
  112. },
  113. kitsune: {
  114. name: "Kitsune",
  115. parents: [
  116. "fox"
  117. ]
  118. },
  119. fox: {
  120. name: "Fox",
  121. parents: [
  122. "mammal"
  123. ]
  124. },
  125. pokemon: {
  126. name: "Pokemon"
  127. },
  128. tiger: {
  129. name: "Tiger",
  130. parents: [
  131. "cat"
  132. ]
  133. },
  134. cat: {
  135. name: "Cat",
  136. parents: [
  137. "feliform"
  138. ]
  139. },
  140. "blue-jay": {
  141. name: "Blue Jay",
  142. parents: [
  143. "avian"
  144. ]
  145. },
  146. wolf: {
  147. name: "Wolf",
  148. parents: [
  149. "mammal"
  150. ]
  151. },
  152. coyote: {
  153. name: "Coyote",
  154. parents: [
  155. "mammal"
  156. ]
  157. },
  158. raccoon: {
  159. name: "Raccoon",
  160. parents: [
  161. "mammal"
  162. ]
  163. },
  164. weasel: {
  165. name: "Weasel",
  166. parents: [
  167. "mustelid"
  168. ]
  169. },
  170. "red-panda": {
  171. name: "Red Panda",
  172. parents: [
  173. "mammal"
  174. ]
  175. },
  176. dolphin: {
  177. name: "Dolphin",
  178. parents: [
  179. "mammal"
  180. ]
  181. },
  182. "african-wild-dog": {
  183. name: "African Wild Dog",
  184. parents: [
  185. "canine"
  186. ]
  187. },
  188. "hyena": {
  189. name: "Hyena",
  190. parents: [
  191. "feliform"
  192. ]
  193. },
  194. "carbuncle": {
  195. name: "Carbuncle",
  196. parents: [
  197. "animal"
  198. ]
  199. },
  200. bat: {
  201. name: "Bat",
  202. parents: [
  203. "mammal"
  204. ]
  205. },
  206. "leaf-nosed-bat": {
  207. name: "Leaf-Nosed Bat",
  208. parents: [
  209. "bat"
  210. ]
  211. },
  212. "fish": {
  213. name: "Fish",
  214. parents: [
  215. "animal"
  216. ]
  217. },
  218. "ram": {
  219. name: "Ram",
  220. parents: [
  221. "mammal"
  222. ]
  223. },
  224. "demon": {
  225. name: "Demon",
  226. parents: [
  227. "supernatural"
  228. ]
  229. },
  230. "cougar": {
  231. name: "Cougar",
  232. parents: [
  233. "cat"
  234. ]
  235. },
  236. "goat": {
  237. name: "Goat",
  238. parents: [
  239. "mammal"
  240. ]
  241. },
  242. "lion": {
  243. name: "Lion",
  244. parents: [
  245. "cat"
  246. ]
  247. },
  248. "harpy-eager": {
  249. name: "Harpy Eagle",
  250. parents: [
  251. "avian"
  252. ]
  253. },
  254. "deer": {
  255. name: "Deer",
  256. parents: [
  257. "mammal"
  258. ]
  259. },
  260. "phoenix": {
  261. name: "Phoenix",
  262. parents: [
  263. "avian"
  264. ]
  265. },
  266. "aeromorph": {
  267. name: "Aeromorph",
  268. parents: [
  269. "machine"
  270. ]
  271. },
  272. "machine": {
  273. name: "Machine",
  274. },
  275. "android": {
  276. name: "Android",
  277. parents: [
  278. "machine"
  279. ]
  280. },
  281. "jackal": {
  282. name: "Jackal",
  283. parents: [
  284. "canine"
  285. ]
  286. },
  287. "corvid": {
  288. name: "Corvid",
  289. parents: [
  290. "avian"
  291. ]
  292. },
  293. "pharaoh-hound": {
  294. name: "Pharaoh Hound",
  295. parents: [
  296. "dog"
  297. ]
  298. },
  299. "skunk": {
  300. name: "Skunk",
  301. parents: [
  302. "mammal"
  303. ]
  304. },
  305. "shark": {
  306. name: "Shark",
  307. parents: [
  308. "fish"
  309. ]
  310. },
  311. "black-panther": {
  312. name: "Black Panther",
  313. parents: [
  314. "cat"
  315. ]
  316. },
  317. "umbra": {
  318. name: "Umbra",
  319. parents: [
  320. "animal"
  321. ]
  322. },
  323. "raven": {
  324. name: "Raven",
  325. parents: [
  326. "corvid"
  327. ]
  328. },
  329. "snow-leopard": {
  330. name: "Snow Leopard",
  331. parents: [
  332. "cat"
  333. ]
  334. },
  335. "barbary-lion": {
  336. name: "Barbary Lion",
  337. parents: [
  338. "lion"
  339. ]
  340. },
  341. "dra'gal": {
  342. name: "Dra'Gal",
  343. parents: [
  344. "mammal"
  345. ]
  346. },
  347. "german-shepherd": {
  348. name: "German Shepherd",
  349. parents: [
  350. "dog"
  351. ]
  352. },
  353. "bayleef": {
  354. name: "Bayleef",
  355. parents: [
  356. "pokemon"
  357. ]
  358. },
  359. "mouse": {
  360. name: "Mouse",
  361. parents: [
  362. "rodent"
  363. ]
  364. },
  365. "rat": {
  366. name: "Rat",
  367. parents: [
  368. "mammal"
  369. ]
  370. },
  371. "hoshiko-beast": {
  372. name: "Hoshiko Beast",
  373. parents: ["animal"]
  374. },
  375. "snow-jugani": {
  376. name: "Snow Jugani",
  377. parents: ["cat"]
  378. },
  379. "patamon": {
  380. name: "Patamon",
  381. parents: ["digimon"]
  382. },
  383. "digimon": {
  384. name: "Digimon",
  385. },
  386. "jugani": {
  387. name: "Jugani",
  388. parents: ["cat"]
  389. },
  390. "luxray": {
  391. name: "Luxray",
  392. parents: ["pokemon"]
  393. },
  394. "mech": {
  395. name: "Mech",
  396. parents: ["machine"]
  397. },
  398. "zoid": {
  399. name: "Zoid",
  400. parents: ["mech"]
  401. },
  402. "monster": {
  403. name: "Monster",
  404. parents: ["animal"]
  405. },
  406. "foo-dog": {
  407. name: "Foo Dog",
  408. parents: ["mammal"]
  409. },
  410. "elephant": {
  411. name: "Elephant",
  412. parents: ["mammal"]
  413. },
  414. "eagle": {
  415. name: "Eagle",
  416. parents: ["avian"]
  417. },
  418. "cow": {
  419. name: "Cow",
  420. parents: ["mammal"]
  421. },
  422. "crocodile": {
  423. name: "Crocodile",
  424. parents: ["reptile"]
  425. },
  426. "borzoi": {
  427. name: "Borzoi",
  428. parents: ["dog"]
  429. },
  430. "snake": {
  431. name: "Snake",
  432. parents: ["reptile"]
  433. },
  434. "horned-bush-viper": {
  435. name: "Horned Bush Viper",
  436. parents: ["snake"]
  437. },
  438. "cobra": {
  439. name: "Cobra",
  440. parents: ["snake"]
  441. },
  442. "harpy-eagle": {
  443. name: "Harpy Eagle",
  444. parents: ["eagle"]
  445. },
  446. "raptor": {
  447. name: "Raptor",
  448. parents: ["dinosaur"]
  449. },
  450. "dinosaur": {
  451. name: "Dinosaur",
  452. parents: ["reptile"]
  453. },
  454. "veilhound": {
  455. name: "Veilhound",
  456. parents: ["hellhound"]
  457. },
  458. "hellhound": {
  459. name: "Hellhound",
  460. parents: ["canine", "demon"]
  461. },
  462. "insect": {
  463. name: "Insect",
  464. parents: ["animal"]
  465. },
  466. "beetle": {
  467. name: "Beetle",
  468. parents: ["insect"]
  469. },
  470. "moth": {
  471. name: "Moth",
  472. parents: ["insect"]
  473. },
  474. "eastern-dragon": {
  475. name: "Eastern Dragon",
  476. parents: ["dragon"]
  477. },
  478. "jaguar": {
  479. name: "Jaguar",
  480. parents: ["cat"]
  481. },
  482. "horse": {
  483. name: "Horse",
  484. parents: ["mammal"]
  485. },
  486. "sergal": {
  487. name: "Sergal",
  488. parents: ["mammal"]
  489. },
  490. "gryphon": {
  491. name: "Gryphon",
  492. parents: ["lion", "eagle"]
  493. },
  494. "robot": {
  495. name: "Robot",
  496. parents: ["machine"]
  497. },
  498. "medihound": {
  499. name: "Medihound",
  500. parents: ["robot", "dog"]
  501. },
  502. "sylveon": {
  503. name: "Sylveon",
  504. parents: ["pokemon"]
  505. },
  506. "catgirl": {
  507. name: "Catgirl",
  508. parents: ["mammal"]
  509. },
  510. "cowgirl": {
  511. name: "Cowgirl",
  512. parents: ["mammal"]
  513. },
  514. "pony": {
  515. name: "Pony",
  516. parents: ["horse"]
  517. },
  518. "rabbit": {
  519. name: "Rabbit",
  520. parents: ["mammal"]
  521. },
  522. "fennec-fox": {
  523. name: "Fennec Fox",
  524. parents: ["fox"]
  525. },
  526. "azodian": {
  527. name: "Azodian",
  528. parents: ["mouse"]
  529. },
  530. "shiba-inu": {
  531. name: "Shiba Inu",
  532. parents: ["dog"]
  533. },
  534. "changeling": {
  535. name: "Changeling",
  536. parents: ["insect"]
  537. },
  538. "cheetah": {
  539. name: "Cheetah",
  540. parents: ["cat"]
  541. },
  542. "golden-jackal": {
  543. name: "Golden Jackal",
  544. parents: ["jackal"]
  545. },
  546. "manectric": {
  547. name: "Manectric",
  548. parents: ["pokemon"]
  549. },
  550. "rat": {
  551. name: "Rat",
  552. parents: ["rodent"]
  553. },
  554. "rodent": {
  555. name: "Rodent",
  556. parents: ["mammal"]
  557. },
  558. "octocoon": {
  559. name: "Octocoon",
  560. parents: ["raccoon", "octopus"]
  561. },
  562. "octopus": {
  563. name: "Octopus",
  564. parents: ["fish"]
  565. },
  566. "werewolf": {
  567. name: "Werewolf",
  568. parents: ["wolf", "werebeast"]
  569. },
  570. "werebeast": {
  571. name: "Werebeast",
  572. parents: ["monster"]
  573. },
  574. "meerkat": {
  575. name: "Meerkat",
  576. parents: ["mammal"]
  577. },
  578. "human": {
  579. name: "Human",
  580. parents: ["mammal"]
  581. },
  582. "geth": {
  583. name: "Geth",
  584. parents: ["android"]
  585. },
  586. "husky": {
  587. name: "Husky",
  588. parents: ["dog"]
  589. },
  590. "long-eared-bat": {
  591. name: "Long Eared Bat",
  592. parents: ["bat"]
  593. },
  594. "lizard": {
  595. name: "Lizard",
  596. parents: ["reptile"]
  597. },
  598. "salamander": {
  599. name: "Salamander",
  600. parents: ["lizard"]
  601. },
  602. "chameleon": {
  603. name: "Chameleon",
  604. parents: ["lizard"]
  605. },
  606. "gecko": {
  607. name: "Gecko",
  608. parents: ["lizard"]
  609. },
  610. "kobold": {
  611. name: "Kobold",
  612. parents: ["reptile"]
  613. },
  614. "charizard": {
  615. name: "Charizard",
  616. parents: ["pokemon"]
  617. },
  618. "lugia": {
  619. name: "Lugia",
  620. parents: ["pokemon"]
  621. },
  622. "cerberus": {
  623. name: "Cerberus",
  624. parents: ["dog"]
  625. },
  626. "tyrantrum": {
  627. name: "Tyrantrum",
  628. parents: ["pokemon"]
  629. },
  630. "lemur": {
  631. name: "Lemur",
  632. parents: ["mammal"]
  633. },
  634. "kelpie": {
  635. name: "Kelpie",
  636. parents: ["horse", "monster"]
  637. },
  638. "labrador": {
  639. name: "Labrador",
  640. parents: ["dog"]
  641. },
  642. "sylveon": {
  643. name: "Sylveon",
  644. parents: ["eeveelution"]
  645. },
  646. "eeveelution": {
  647. name: "Eeveelution",
  648. parents: ["pokemon"]
  649. },
  650. "polar-bear": {
  651. name: "Polar Bear",
  652. parents: ["bear"]
  653. },
  654. "bear": {
  655. name: "Bear",
  656. parents: ["mammal"]
  657. },
  658. "absol": {
  659. name: "Absol",
  660. parents: ["pokemon"]
  661. },
  662. "wolver": {
  663. name: "Wolver",
  664. parents: ["mammal"]
  665. },
  666. "rottweiler": {
  667. name: "Rottweiler",
  668. parents: ["dog"]
  669. },
  670. "zebra": {
  671. name: "Zebra",
  672. parents: ["horse"]
  673. },
  674. "yoshi": {
  675. name: "Yoshi",
  676. parents: ["lizard"]
  677. },
  678. "lynx": {
  679. name: "Lynx",
  680. parents: ["cat"]
  681. },
  682. "unknown": {
  683. name: "Unknown",
  684. parents: []
  685. },
  686. "thylacine": {
  687. name: "Thylacine",
  688. parents: ["mammal"]
  689. },
  690. "gabumon": {
  691. name: "Gabumon",
  692. parents: ["digimon"]
  693. },
  694. "border-collie": {
  695. name: "Border Collie",
  696. parents: ["dog"]
  697. },
  698. "imp": {
  699. name: "Imp",
  700. parents: ["demon"]
  701. },
  702. "kangaroo": {
  703. name: "Kangaroo",
  704. parents: ["marsupial"]
  705. },
  706. "renamon": {
  707. name: "Renamon",
  708. parents: ["digimon"]
  709. },
  710. "candy-orca-dragon": {
  711. name: "Candy Orca Dragon",
  712. parents: ["fish", "dragon", "candy"]
  713. },
  714. "sabertooth-tiger": {
  715. name: "Sabertooth Tiger",
  716. parents: ["cat"]
  717. },
  718. "espurr": {
  719. name: "Espurr",
  720. parents: ["pokemon"]
  721. },
  722. "otter": {
  723. name: "Otter",
  724. parents: ["mustelid"]
  725. },
  726. "elemental": {
  727. name: "Elemental",
  728. parents: ["mammal"]
  729. },
  730. "mew": {
  731. name: "Mew",
  732. parents: ["pokemon"]
  733. },
  734. "goodra": {
  735. name: "Goodra",
  736. parents: ["pokemon"]
  737. },
  738. "fairy": {
  739. name: "Fairy",
  740. parents: ["magical"]
  741. },
  742. "typhlosion": {
  743. name: "Typhlosion",
  744. parents: ["pokemon"]
  745. },
  746. "magical": {
  747. name: "Magical",
  748. parents: []
  749. },
  750. "xenomorph": {
  751. name: "Xenomorph",
  752. parents: ["monster", "alien"]
  753. },
  754. "charr": {
  755. name: "Charr",
  756. parents: ["cat"]
  757. },
  758. "siberian-husky": {
  759. name: "Siberian Husky",
  760. parents: ["husky"]
  761. },
  762. "alligator": {
  763. name: "Alligator",
  764. parents: ["reptile"]
  765. },
  766. "bernese-mountain-dog": {
  767. name: "Bernese Mountain Dog",
  768. parents: ["dog"]
  769. },
  770. "reshiram": {
  771. name: "Reshiram",
  772. parents: ["pokemon"]
  773. },
  774. "grizzly-bear": {
  775. name: "Grizzly Bear",
  776. parents: ["bear"]
  777. },
  778. "water-monitor": {
  779. name: "Water Monitor",
  780. parents: ["lizard"]
  781. },
  782. "banchofossa": {
  783. name: "Banchofossa",
  784. parents: ["mammal"]
  785. },
  786. "kirin": {
  787. name: "Kirin",
  788. parents: ["monster"]
  789. },
  790. "quilava": {
  791. name: "Quilava",
  792. parents: ["pokemon"]
  793. },
  794. "seviper": {
  795. name: "Seviper",
  796. parents: ["pokemon"]
  797. },
  798. "flying-fox": {
  799. name: "Flying Fox",
  800. parents: ["bat"]
  801. },
  802. "keynain": {
  803. name: "Keynain",
  804. parents: ["avian"]
  805. },
  806. "lucario": {
  807. name: "Lucario",
  808. parents: ["pokemon"]
  809. },
  810. "siamese-cat": {
  811. name: "Siamese Cat",
  812. parents: ["cat"]
  813. },
  814. "spider": {
  815. name: "Spider",
  816. parents: ["insect"]
  817. },
  818. "samurott": {
  819. name: "Samurott",
  820. parents: ["pokemon"]
  821. },
  822. "megalodon": {
  823. name: "Megalodon",
  824. parents: ["shark"]
  825. },
  826. "unicorn": {
  827. name: "Unicorn",
  828. parents: ["horse"]
  829. },
  830. "greninja": {
  831. name: "Greninja",
  832. parents: ["pokemon"]
  833. },
  834. "water-dragon": {
  835. name: "Water Dragon",
  836. parents: ["dragon"]
  837. },
  838. "cross-fox": {
  839. name: "Cross Fox",
  840. parents: ["fox"]
  841. },
  842. "synth": {
  843. name: "Synth",
  844. parents: ["machine"]
  845. },
  846. "construct": {
  847. name: "Construct",
  848. parents: []
  849. },
  850. "mexican-wolf": {
  851. name: "Mexican Wolf",
  852. parents: ["wolf"]
  853. },
  854. "leopard": {
  855. name: "Leopard",
  856. parents: ["cat"]
  857. },
  858. "pig": {
  859. name: "Pig",
  860. parents: ["mammal"]
  861. },
  862. "ampharos": {
  863. name: "Ampharos",
  864. parents: ["pokemon"]
  865. },
  866. "orca": {
  867. name: "Orca",
  868. parents: ["fish"]
  869. },
  870. "lycanroc": {
  871. name: "Lycanroc",
  872. parents: ["pokemon"]
  873. },
  874. "surkanu": {
  875. name: "Surkanu",
  876. parents: ["monster"]
  877. },
  878. "seal": {
  879. name: "Seal",
  880. parents: ["mammal"]
  881. },
  882. "keldeo": {
  883. name: "Keldeo",
  884. parents: ["pokemon"]
  885. },
  886. "great-dane": {
  887. name: "Great Dane",
  888. parents: ["dog"]
  889. },
  890. "black-backed-jackal": {
  891. name: "Black Backed Jackal",
  892. parents: ["jackal"]
  893. },
  894. "sheep": {
  895. name: "Sheep",
  896. parents: ["mammal"]
  897. },
  898. "leopard-seal": {
  899. name: "Leopard Seal",
  900. parents: ["seal"]
  901. },
  902. "zoroark": {
  903. name: "Zoroark",
  904. parents: ["pokemon"]
  905. },
  906. "maned-wolf": {
  907. name: "Maned Wolf",
  908. parents: ["canine"]
  909. },
  910. "dracha": {
  911. name: "Dracha",
  912. parents: ["dragon"]
  913. },
  914. "wolxi": {
  915. name: "Wolxi",
  916. parents: ["mammal", "alien"]
  917. },
  918. "dratini": {
  919. name: "Dratini",
  920. parents: ["pokemon", "dragon"]
  921. },
  922. "skaven": {
  923. name: "Skaven",
  924. parents: ["rat"]
  925. },
  926. "mongoose": {
  927. name: "Mongoose",
  928. parents: ["mammal"]
  929. },
  930. "lopunny": {
  931. name: "Lopunny",
  932. parents: ["pokemon", "rabbit"]
  933. },
  934. "feraligatr": {
  935. name: "Feraligatr",
  936. parents: ["pokemon", "alligator"]
  937. },
  938. "houndoom": {
  939. name: "Houndoom",
  940. parents: ["pokemon", "dog"]
  941. },
  942. "protogen": {
  943. name: "Protogen",
  944. parents: ["machine"]
  945. },
  946. "saint-bernard": {
  947. name: "Saint Bernard",
  948. parents: ["dog"]
  949. },
  950. "crow": {
  951. name: "Crow",
  952. parents: ["corvid"]
  953. },
  954. "delphox": {
  955. name: "Delphox",
  956. parents: ["pokemon", "fox"]
  957. },
  958. "moose": {
  959. name: "Moose",
  960. parents: ["mammal"]
  961. },
  962. "joraxian": {
  963. name: "Joraxian",
  964. parents: ["monster", "canine", "demon"]
  965. },
  966. "nimbat": {
  967. name: "Nimbat",
  968. parents: ["mammal"]
  969. },
  970. "aardwolf": {
  971. name: "Aardwolf",
  972. parents: ["canine"]
  973. },
  974. "fluudrani": {
  975. name: "Fluudrani",
  976. parents: ["animal"]
  977. },
  978. "arcanine": {
  979. name: "Arcanine",
  980. parents: ["pokemon", "dog"]
  981. },
  982. "inteleon": {
  983. name: "Inteleon",
  984. parents: ["pokemon", "fish"]
  985. },
  986. "ninetales": {
  987. name: "Ninetales",
  988. parents: ["pokemon", "kitsune"]
  989. },
  990. "tigrex": {
  991. name: "Tigrex",
  992. parents: ["tiger"]
  993. },
  994. "zorua": {
  995. name: "Zorua",
  996. parents: ["pokemon", "fox"]
  997. },
  998. "vulpix": {
  999. name: "Vulpix",
  1000. parents: ["pokemon", "fox"]
  1001. },
  1002. "barghest": {
  1003. name: "Barghest",
  1004. parents: ["monster"]
  1005. },
  1006. "gray-wolf": {
  1007. name: "Gray Wolf",
  1008. parents: ["wolf"]
  1009. },
  1010. "ruppells-fox": {
  1011. name: "Rüppell's Fox",
  1012. parents: ["fox"]
  1013. },
  1014. "bull-terrier": {
  1015. name: "Bull Terrier",
  1016. parents: ["dog"]
  1017. },
  1018. "european-honey-buzzard": {
  1019. name: "European Honey Buzzard",
  1020. parents: ["avian"]
  1021. },
  1022. "t-rex": {
  1023. name: "Tyrannosaurus Rex",
  1024. parents: ["dinosaur"]
  1025. },
  1026. "mactarian": {
  1027. name: "Mactarian",
  1028. parents: ["shark", "monster"]
  1029. },
  1030. "mewtwo-y": {
  1031. name: "Mewtwo Y",
  1032. parents: ["mewtwo"]
  1033. },
  1034. "mewtwo": {
  1035. name: "Mewtwo",
  1036. parents: ["pokemon"]
  1037. },
  1038. "mew": {
  1039. name: "Mew",
  1040. parents: ["pokemon"]
  1041. },
  1042. "eevee": {
  1043. name: "Eevee",
  1044. parents: ["eeveelution"]
  1045. },
  1046. "mienshao": {
  1047. name: "Mienshao",
  1048. parents: ["pokemon"]
  1049. },
  1050. "sugar-glider": {
  1051. name: "Sugar Glider",
  1052. parents: ["opossum"]
  1053. },
  1054. "spectral-bat": {
  1055. name: "Spectral Bat",
  1056. parents: ["bat"]
  1057. },
  1058. "scolipede": {
  1059. name: "Scolipede",
  1060. parents: ["pokemon", "insect"]
  1061. },
  1062. "jackalope": {
  1063. name: "Jackalope",
  1064. parents: ["rabbit", "antelope"]
  1065. },
  1066. "caracal": {
  1067. name: "Caracal",
  1068. parents: ["cat"]
  1069. },
  1070. "stoat": {
  1071. name: "Stoat",
  1072. parents: ["mammal"]
  1073. },
  1074. "african-golden-cat": {
  1075. name: "African Golden Cat",
  1076. parents: ["cat"]
  1077. },
  1078. "gigantosaurus": {
  1079. name: "Gigantosaurus",
  1080. parents: ["dinosaur"]
  1081. },
  1082. "zorgoia": {
  1083. name: "Zorgoia",
  1084. parents: ["mammal"]
  1085. },
  1086. "monitor-lizard": {
  1087. name: "Monitor Lizard",
  1088. parents: ["lizard"]
  1089. },
  1090. "ziralkia": {
  1091. name: "Ziralkia",
  1092. parents: ["mammal"]
  1093. },
  1094. "kiiasi": {
  1095. name: "Kiiasi",
  1096. parents: ["animal"]
  1097. },
  1098. "synx": {
  1099. name: "Synx",
  1100. parents: ["monster"]
  1101. },
  1102. "panther": {
  1103. name: "Panther",
  1104. parents: ["cat"]
  1105. },
  1106. "azumarill": {
  1107. name: "Azumarill",
  1108. parents: ["pokemon"]
  1109. },
  1110. "river-snaptail": {
  1111. name: "River Snaptail",
  1112. parents: ["otter", "crocodile"]
  1113. },
  1114. "great-blue-heron": {
  1115. name: "Great Blue Heron",
  1116. parents: ["avian"]
  1117. },
  1118. "smeargle": {
  1119. name: "Smeargle",
  1120. parents: ["pokemon"]
  1121. },
  1122. "vendeilen": {
  1123. name: "Vendeilen",
  1124. parents: ["monster"]
  1125. },
  1126. "ventura": {
  1127. name: "Ventura",
  1128. parents: ["canine"]
  1129. },
  1130. "clouded-leopard": {
  1131. name: "Clouded Leopard",
  1132. parents: ["leopard"]
  1133. },
  1134. "argonian": {
  1135. name: "Argonian",
  1136. parents: ["lizard"]
  1137. },
  1138. "salazzle": {
  1139. name: "Salazzle",
  1140. parents: ["pokemon", "lizard"]
  1141. },
  1142. "je-stoff-drachen": {
  1143. name: "Je-Stoff Drachen",
  1144. parents: ["dragon"]
  1145. },
  1146. "finnish-spitz-dog": {
  1147. name: "Finnish Spitz Dog",
  1148. parents: ["dog"]
  1149. },
  1150. "gray-fox": {
  1151. name: "Gray Fox",
  1152. parents: ["fox"]
  1153. },
  1154. "opossum": {
  1155. name: "Opossum",
  1156. parents: ["mammal"]
  1157. },
  1158. "antelope": {
  1159. name: "Antelope",
  1160. parents: ["mammal"]
  1161. },
  1162. "weavile": {
  1163. name: "Weavile",
  1164. parents: ["pokemon"]
  1165. },
  1166. "pikachu": {
  1167. name: "Pikachu",
  1168. parents: ["pokemon", "mouse"]
  1169. },
  1170. "grovyle": {
  1171. name: "Grovyle",
  1172. parents: ["pokemon", "plant"]
  1173. },
  1174. "sthara": {
  1175. name: "Sthara",
  1176. parents: ["snow-leopard", "reptile"]
  1177. },
  1178. "star-warrior": {
  1179. name: "Star Warrior",
  1180. parents: ["magical"]
  1181. },
  1182. "dragonoid": {
  1183. name: "Dragonoid",
  1184. parents: ["dragon"]
  1185. },
  1186. "suicune": {
  1187. name: "Suicune",
  1188. parents: ["pokemon"]
  1189. },
  1190. "vole": {
  1191. name: "Vole",
  1192. parents: ["mammal"]
  1193. },
  1194. "blaziken": {
  1195. name: "Blaziken",
  1196. parents: ["pokemon", "avian"]
  1197. },
  1198. "buizel": {
  1199. name: "Buizel",
  1200. parents: ["pokemon", "fish"]
  1201. },
  1202. "floatzel": {
  1203. name: "Floatzel",
  1204. parents: ["pokemon", "fish"]
  1205. },
  1206. "umok": {
  1207. name: "Umok",
  1208. parents: ["avian"]
  1209. },
  1210. "sea-monster": {
  1211. name: "Sea Monster",
  1212. parents: ["monster", "fish"]
  1213. },
  1214. "egyptian-vulture": {
  1215. name: "Egyptian Vulture",
  1216. parents: ["avian"]
  1217. },
  1218. "doberman": {
  1219. name: "Doberman",
  1220. parents: ["dog"]
  1221. },
  1222. "zangoose": {
  1223. name: "Zangoose",
  1224. parents: ["pokemon", "mongoose"]
  1225. },
  1226. "mongoose": {
  1227. name: "Mongoose",
  1228. parents: ["mammal"]
  1229. },
  1230. "wickerbeast": {
  1231. name: "Wickerbeast",
  1232. parents: ["monster"]
  1233. },
  1234. "zenari": {
  1235. name: "Zenari",
  1236. parents: ["lizard"]
  1237. },
  1238. "plant": {
  1239. name: "Plant",
  1240. parents: []
  1241. },
  1242. "raskatox": {
  1243. name: "Raskatox",
  1244. parents: ["raccoon", "skunk", "cat", "fox"]
  1245. },
  1246. "mikromare": {
  1247. name: "mikromare",
  1248. parents: ["alien"]
  1249. },
  1250. "alien": {
  1251. name: "Alien",
  1252. parents: ["animal"]
  1253. },
  1254. "deity": {
  1255. name: "Deity",
  1256. parents: []
  1257. },
  1258. "skarlan": {
  1259. name: "Skarlan",
  1260. parents: ["slug", "dragon"]
  1261. },
  1262. "slug": {
  1263. name: "Slug",
  1264. parents: ["mollusk"]
  1265. },
  1266. "mollusk": {
  1267. name: "Mollusk",
  1268. parents: ["animal"]
  1269. },
  1270. "chimera": {
  1271. name: "Chimera",
  1272. parents: ["monster"]
  1273. },
  1274. "gestalt": {
  1275. name: "Gestalt",
  1276. parents: ["construct"]
  1277. },
  1278. "mimic": {
  1279. name: "Mimic",
  1280. parents: ["monster"]
  1281. },
  1282. "calico-rat": {
  1283. name: "Calico Rat",
  1284. parents: ["rat"]
  1285. },
  1286. "panda": {
  1287. name: "Panda",
  1288. parents: ["mammal"]
  1289. },
  1290. "oni": {
  1291. name: "Oni",
  1292. parents: ["monster"]
  1293. },
  1294. "pegasus": {
  1295. name: "Pegasus",
  1296. parents: ["horse"]
  1297. },
  1298. "vulpera": {
  1299. name: "Vulpera",
  1300. parents: ["fennec-fox"]
  1301. },
  1302. "ceratosaurus": {
  1303. name: "Ceratosaurus",
  1304. parents: ["dinosaur"]
  1305. },
  1306. "nykur": {
  1307. name: "Nykur",
  1308. parents: ["horse", "monster"]
  1309. },
  1310. "giraffe": {
  1311. name: "Giraffe",
  1312. parents: ["mammal"]
  1313. },
  1314. "tauren": {
  1315. name: "Tauren",
  1316. parents: ["cow"]
  1317. },
  1318. "draconi": {
  1319. name: "Draconi",
  1320. parents: ["alien", "cat", "cyborg"]
  1321. },
  1322. "dire-wolf": {
  1323. name: "Dire Wolf",
  1324. parents: ["wolf"]
  1325. },
  1326. "ferromorph": {
  1327. name: "Ferromorph",
  1328. parents: ["construct"]
  1329. },
  1330. "meowth": {
  1331. name: "Meowth",
  1332. parents: ["cat", "pokemon"]
  1333. },
  1334. "pavodragon": {
  1335. name: "Pavodragon",
  1336. parents: ["dragon"]
  1337. },
  1338. "aaltranae": {
  1339. name: "Aaltranae",
  1340. parents: ["dragon"]
  1341. },
  1342. "cyborg": {
  1343. name: "Cyborg",
  1344. parents: ["machine"]
  1345. },
  1346. "draptor": {
  1347. name: "Draptor",
  1348. parents: ["dragon"]
  1349. },
  1350. "candy": {
  1351. name: "Candy",
  1352. parents: []
  1353. },
  1354. "drenath": {
  1355. name: "Drenath",
  1356. parents: ["dragon", "snake", "rabbit"]
  1357. },
  1358. "coyju": {
  1359. name: "Coyju",
  1360. parents: ["coyote", "kaiju"]
  1361. },
  1362. "kaiju": {
  1363. name: "Kaiju",
  1364. parents: ["monster"]
  1365. },
  1366. "nickit": {
  1367. name: "Nickit",
  1368. parents: ["pokemon", "cat"]
  1369. },
  1370. "lopunny": {
  1371. name: "Lopunny",
  1372. parents: ["pokemon", "rabbit"]
  1373. },
  1374. "korean-jindo-dog": {
  1375. name: "Korean Jindo Dog",
  1376. parents: ["dog"]
  1377. },
  1378. "naga": {
  1379. name: "Naga",
  1380. parents: ["snake", "monster"]
  1381. },
  1382. "undead": {
  1383. name: "Undead",
  1384. parents: ["monster"]
  1385. },
  1386. "whale": {
  1387. name: "Whale",
  1388. parents: ["fish"]
  1389. },
  1390. "gelato-bee": {
  1391. name: "Gelato Bee",
  1392. parents: ["bee"]
  1393. },
  1394. "bee": {
  1395. name: "Bee",
  1396. parents: ["insect"]
  1397. },
  1398. "gardevoir": {
  1399. name: "Gardevoir",
  1400. parents: ["pokemon"]
  1401. },
  1402. "ant": {
  1403. name: "Ant",
  1404. parents: ["insect"]
  1405. },
  1406. "frog": {
  1407. name: "Frog",
  1408. parents: ["amphibian"]
  1409. },
  1410. "amphibian": {
  1411. name: "Amphibian",
  1412. parents: ["animal"]
  1413. },
  1414. "pangolin": {
  1415. name: "Pangolin",
  1416. parents: ["mammal"]
  1417. },
  1418. "uragi'viidorn": {
  1419. name: "Uragi'viidorn",
  1420. parents: ["avian", "bear"]
  1421. },
  1422. "gryphdelphais": {
  1423. name: "Gryphdelphais",
  1424. parents: ["dolphin", "gryphon"]
  1425. },
  1426. "plush": {
  1427. name: "Plush",
  1428. parents: ["construct"]
  1429. },
  1430. "draiger": {
  1431. name: "Draiger",
  1432. parents: ["dragon","tiger"]
  1433. },
  1434. "foxsky": {
  1435. name: "Foxsky",
  1436. parents: ["fox", "husky"]
  1437. },
  1438. "umbreon": {
  1439. name: "Umbreon",
  1440. parents: ["eeveelution"]
  1441. },
  1442. "slime-dragon": {
  1443. name: "Slime Dragon",
  1444. parents: ["dragon", "goo"]
  1445. },
  1446. "enderman": {
  1447. name: "Enderman",
  1448. parents: ["monster"]
  1449. },
  1450. "gremlin": {
  1451. name: "Gremlin",
  1452. parents: ["monster"]
  1453. },
  1454. "dragonsune": {
  1455. name: "Dragonsune",
  1456. parents: ["dragon", "kitsune"]
  1457. },
  1458. "ghost": {
  1459. name: "Ghost",
  1460. parents: ["supernatural"]
  1461. },
  1462. "false-vampire-bat": {
  1463. name: "False Vampire Bat",
  1464. parents: ["bat"]
  1465. },
  1466. "succubus": {
  1467. name: "Succubus",
  1468. parents: ["demon"]
  1469. },
  1470. "mia": {
  1471. name: "Mia",
  1472. parents: ["canine"]
  1473. },
  1474. "rainbow": {
  1475. name: "Rainbow",
  1476. parents: ["monster"]
  1477. },
  1478. "solgaleo": {
  1479. name: "Solgaleo",
  1480. parents: ["pokemon"]
  1481. },
  1482. "lucent-nargacuga": {
  1483. name: "Lucent Nargacuga",
  1484. parents: ["monster-hunter"]
  1485. },
  1486. "monster-hunter": {
  1487. name: "Monster Hunter",
  1488. parents: ["monster"]
  1489. },
  1490. "leviathan": {
  1491. "name": "Leviathan",
  1492. "url": "sea-monster"
  1493. },
  1494. "bull": {
  1495. name: "Bull",
  1496. parents: ["mammal"]
  1497. },
  1498. "tanuki": {
  1499. name: "Tanuki",
  1500. parents: ["monster"]
  1501. },
  1502. "chakat": {
  1503. name: "Chakat",
  1504. parents: ["cat"]
  1505. },
  1506. "hydra": {
  1507. name: "Hydra",
  1508. parents: ["monster"]
  1509. },
  1510. "zigzagoon": {
  1511. name: "Zigzagoon",
  1512. parents: ["raccoon", "pokemon"]
  1513. },
  1514. "vulture": {
  1515. name: "Vulture",
  1516. parents: ["avian"]
  1517. },
  1518. "eastern-dragon": {
  1519. name: "Eastern Dragon",
  1520. parents: ["dragon"]
  1521. },
  1522. "gryffon": {
  1523. name: "Gryffon",
  1524. parents: ["phoenix", "red-panda"]
  1525. },
  1526. "amtsvane": {
  1527. name: "Amtsvane",
  1528. parents: ["reptile"]
  1529. },
  1530. "kigavi": {
  1531. name: "Kigavi",
  1532. parents: ["avian"]
  1533. },
  1534. "turian": {
  1535. name: "Turian",
  1536. parents: ["avian"]
  1537. },
  1538. "zeraora": {
  1539. name: "Zeraora",
  1540. parents: ["pokemon"]
  1541. },
  1542. "sandshrew": {
  1543. name: "Sandshrew",
  1544. parents: ["pokemon", "pangolin"]
  1545. },
  1546. "valais-blacknose-sheep": {
  1547. name: "Valais Blacknose Sheep",
  1548. parents: ["sheep"]
  1549. },
  1550. "novaleit": {
  1551. name: "Novaleit",
  1552. parents: ["mammal"]
  1553. },
  1554. "dunnoh": {
  1555. name: "Dunnoh",
  1556. parents: ["mammal"]
  1557. },
  1558. "lunaral-dragon": {
  1559. name: "Lunaral Dragon",
  1560. parents: ["dragon"]
  1561. },
  1562. "arctic-wolf": {
  1563. name: "Arctic Wolf",
  1564. parents: ["wolf"]
  1565. },
  1566. "donkey": {
  1567. name: "Donkey",
  1568. parents: ["horse"]
  1569. },
  1570. "chinchilla": {
  1571. name: "Chinchilla",
  1572. parents: ["rodent"]
  1573. },
  1574. "felkin": {
  1575. name: "Felkin",
  1576. parents: ["dragon"]
  1577. },
  1578. "tykeriel": {
  1579. name: "Tykeriel",
  1580. parents: ["avian"]
  1581. },
  1582. "folf": {
  1583. name: "Folf",
  1584. parents: ["fox", "wolf"]
  1585. },
  1586. "pooltoy": {
  1587. name: "Pooltoy",
  1588. parents: ["construct"]
  1589. },
  1590. "demi": {
  1591. name: "Demi",
  1592. parents: ["human"]
  1593. },
  1594. "stegosaurus": {
  1595. name: "Stegosaurus",
  1596. parents: ["dinosaur"]
  1597. },
  1598. "computer-virus": {
  1599. name: "Computer Virus",
  1600. parents: ["program"]
  1601. },
  1602. "program": {
  1603. name: "Program",
  1604. parents: ["construct"]
  1605. },
  1606. "space-springhare": {
  1607. name: "Space Springhare",
  1608. parents: ["rabbit"]
  1609. },
  1610. "river-drake": {
  1611. name: "River Drake",
  1612. parents: ["dragon"]
  1613. },
  1614. "djinn": {
  1615. "name": "Djinn",
  1616. "url": "supernatural"
  1617. },
  1618. "supernatural": {
  1619. name: "Supernatural",
  1620. parents: ["monster"]
  1621. },
  1622. "grasshopper-mouse": {
  1623. name: "Grasshopper Mouse",
  1624. parents: ["mouse"]
  1625. },
  1626. "somali-cat": {
  1627. name: "Somali Cat",
  1628. parents: ["cat"]
  1629. },
  1630. "minccino": {
  1631. name: "Minccino",
  1632. parents: ["pokemon", "chinchilla"]
  1633. },
  1634. "pine-marten": {
  1635. name: "Pine Marten",
  1636. parents: ["marten"]
  1637. },
  1638. "marten": {
  1639. name: "Marten",
  1640. parents: ["mustelid"]
  1641. },
  1642. "mustelid": {
  1643. name: "Mustelid",
  1644. parents: ["mammal"]
  1645. },
  1646. "caribou": {
  1647. name: "Caribou",
  1648. parents: ["deer"]
  1649. },
  1650. "gnoll": {
  1651. name: "Gnoll",
  1652. parents: ["hyena", "monster"]
  1653. },
  1654. "peacekeeper": {
  1655. name: "Peacekeeper",
  1656. parents: ["human"]
  1657. },
  1658. "river-otter": {
  1659. name: "River Otter",
  1660. parents: ["otter"]
  1661. },
  1662. "dhole": {
  1663. name: "Dhole",
  1664. parents: ["canine"]
  1665. },
  1666. "springbok": {
  1667. name: "Springbok",
  1668. parents: ["antelope"]
  1669. },
  1670. "marsupial": {
  1671. name: "Marsupial",
  1672. parents: ["mammal"]
  1673. },
  1674. "townsend-big-eared-bat": {
  1675. name: "Townsend Big-eared Bat",
  1676. parents: ["bat"]
  1677. },
  1678. "squirrel": {
  1679. name: "Squirrel",
  1680. parents: ["rodent"]
  1681. },
  1682. "magpie": {
  1683. name: "Magpie",
  1684. parents: ["corvid"]
  1685. },
  1686. "civet": {
  1687. name: "Civet",
  1688. parents: ["feliform"]
  1689. },
  1690. "feliform": {
  1691. name: "Feliform",
  1692. parents: ["mammal"]
  1693. },
  1694. "tiefling": {
  1695. name: "Tiefling",
  1696. parents: ["devil"]
  1697. },
  1698. "devil": {
  1699. name: "Devil",
  1700. parents: ["supernatural"]
  1701. },
  1702. "sika-deer": {
  1703. name: "Sika Deer",
  1704. parents: ["deer"]
  1705. },
  1706. "vaporeon": {
  1707. name: "Vaporeon",
  1708. parents: ["eeveelution"]
  1709. },
  1710. "leafeon": {
  1711. name: "Leafeon",
  1712. parents: ["eeveelution"]
  1713. },
  1714. "jolteon": {
  1715. name: "Jolteon",
  1716. parents: ["eeveelution"]
  1717. },
  1718. "spireborn": {
  1719. name: "Spireborn",
  1720. parents: ["zorgoia"]
  1721. },
  1722. "vampire": {
  1723. name: "Vampire",
  1724. parents: ["monster"]
  1725. },
  1726. "extraplanar": {
  1727. name: "Extraplanar",
  1728. parents: []
  1729. },
  1730. "goo": {
  1731. name: "Goo",
  1732. parents: []
  1733. },
  1734. "skink": {
  1735. name: "Skink",
  1736. parents: ["lizard"]
  1737. },
  1738. "bat-eared-fox": {
  1739. name: "Bat-eared Fox",
  1740. parents: ["fox"]
  1741. },
  1742. "belted-kingfisher": {
  1743. name: "Belted Kingfisher",
  1744. parents: ["avian"]
  1745. },
  1746. "omnifalcon": {
  1747. name: "Omnifalcon",
  1748. parents: ["gryphon", "falcon", "harpy-eagle"]
  1749. },
  1750. "falcon": {
  1751. name: "Falcon",
  1752. parents: ["avian"]
  1753. },
  1754. "avali": {
  1755. name: "Avali",
  1756. parents: ["avian", "alien"]
  1757. },
  1758. "arctic-fox": {
  1759. name: "Arctic Fox",
  1760. parents: ["fox"]
  1761. },
  1762. "snow-tiger": {
  1763. name: "Snow Tiger",
  1764. parents: ["tiger"]
  1765. },
  1766. "marble-fox": {
  1767. name: "Marble Fox",
  1768. parents: ["fox"]
  1769. },
  1770. "king-wickerbeast": {
  1771. name: "King Wickerbeast",
  1772. parents: ["wickerbeast"]
  1773. },
  1774. "wickerbeast": {
  1775. name: "Wickerbeast",
  1776. parents: ["mammal"]
  1777. },
  1778. "european-polecat": {
  1779. name: "European Polecat",
  1780. parents: ["mustelid"]
  1781. },
  1782. "teshari": {
  1783. name: "Teshari",
  1784. parents: ["avian", "raptor"]
  1785. },
  1786. "alicorn": {
  1787. name: "Alicorn",
  1788. parents: ["horse"]
  1789. },
  1790. "atlas-moth": {
  1791. name: "Atlas Moth",
  1792. parents: ["moth"]
  1793. },
  1794. "owlbear": {
  1795. name: "Owlbear",
  1796. parents: ["owl", "bear", "monster"]
  1797. },
  1798. "owl": {
  1799. name: "Owl",
  1800. parents: ["avian"]
  1801. },
  1802. "silvertongue": {
  1803. name: "Silvertongue",
  1804. parents: ["reptile"]
  1805. },
  1806. "ahuizotl": {
  1807. name: "Ahuizotl",
  1808. parents: ["monster"]
  1809. },
  1810. }
  1811. //species
  1812. function getSpeciesInfo(speciesList) {
  1813. let result = new Set();
  1814. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1815. result.add(entry)
  1816. });
  1817. return Array.from(result);
  1818. };
  1819. function getSpeciesInfoHelper(species) {
  1820. if (!speciesData[species]) {
  1821. console.warn(species + " doesn't exist");
  1822. return [];
  1823. }
  1824. if (speciesData[species].parents) {
  1825. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1826. } else {
  1827. return [species];
  1828. }
  1829. }
  1830. characterMakers.push(() => makeCharacter(
  1831. {
  1832. name: "Fen",
  1833. species: ["crux"],
  1834. description: {
  1835. title: "Bio",
  1836. text: "Very furry. Sheds on everything."
  1837. },
  1838. tags: [
  1839. "anthro",
  1840. "goo"
  1841. ]
  1842. },
  1843. {
  1844. front: {
  1845. height: math.unit(12, "feet"),
  1846. weight: math.unit(1600, "lb"),
  1847. name: "Front",
  1848. image: {
  1849. source: "./media/characters/fen/front.svg",
  1850. extra: 1804/1562,
  1851. bottom: 205/2009
  1852. }
  1853. },
  1854. diving: {
  1855. height: math.unit(4.9, "meters"),
  1856. weight: math.unit(1600, "lb"),
  1857. name: "Diving",
  1858. image: {
  1859. source: "./media/characters/fen/diving.svg"
  1860. }
  1861. },
  1862. maw: {
  1863. height: math.unit(5.03, "feet"),
  1864. name: "Maw",
  1865. image: {
  1866. source: "./media/characters/fen/maw.svg"
  1867. }
  1868. },
  1869. back: {
  1870. height: math.unit(12, "feet"),
  1871. weight: math.unit(1600, "lb"),
  1872. name: "Back",
  1873. image: {
  1874. source: "./media/characters/fen/back.svg",
  1875. },
  1876. info: {
  1877. description: {
  1878. mode: "append",
  1879. text: "\n\nHe is not currently looking at you."
  1880. }
  1881. }
  1882. },
  1883. full: {
  1884. height: math.unit(1.6, "meter"),
  1885. weight: math.unit(2200, "lb"),
  1886. name: "Full",
  1887. image: {
  1888. source: "./media/characters/fen/full.svg",
  1889. extra: 1133/859,
  1890. bottom: 145/1278
  1891. },
  1892. info: {
  1893. description: {
  1894. mode: "append",
  1895. text: "\n\nMunch."
  1896. }
  1897. }
  1898. },
  1899. goo: {
  1900. height: math.unit(4.53, "feet"),
  1901. weight: math.unit(1600, "lb"),
  1902. capacity: math.unit(6, "people"),
  1903. name: "Goo",
  1904. image: {
  1905. source: "./media/characters/fen/goo.svg",
  1906. bottom: 116 / 613
  1907. }
  1908. },
  1909. lounging: {
  1910. height: math.unit(10.52, "feet"),
  1911. weight: math.unit(1600, "lb"),
  1912. name: "Lounging",
  1913. image: {
  1914. source: "./media/characters/fen/lounging.svg"
  1915. }
  1916. },
  1917. },
  1918. [
  1919. {
  1920. name: "Small",
  1921. height: math.unit(2.2428, "meter")
  1922. },
  1923. {
  1924. name: "Normal",
  1925. height: math.unit(12, "feet"),
  1926. default: true,
  1927. },
  1928. {
  1929. name: "Big",
  1930. height: math.unit(20, "feet")
  1931. },
  1932. {
  1933. name: "Minimacro",
  1934. height: math.unit(40, "feet"),
  1935. info: {
  1936. description: {
  1937. mode: "append",
  1938. text: "\n\nTOO DAMN BIG"
  1939. }
  1940. }
  1941. },
  1942. {
  1943. name: "Macro",
  1944. height: math.unit(100, "feet"),
  1945. info: {
  1946. description: {
  1947. mode: "append",
  1948. text: "\n\nTOO DAMN BIG"
  1949. }
  1950. }
  1951. },
  1952. {
  1953. name: "Megamacro",
  1954. height: math.unit(2, "miles")
  1955. },
  1956. {
  1957. name: "Gigamacro",
  1958. height: math.unit(10, "earths")
  1959. },
  1960. ]
  1961. ))
  1962. characterMakers.push(() => makeCharacter(
  1963. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  1964. {
  1965. front: {
  1966. height: math.unit(183, "cm"),
  1967. weight: math.unit(80, "kg"),
  1968. name: "Front",
  1969. image: {
  1970. source: "./media/characters/sofia-fluttertail/front.svg",
  1971. bottom: 0.01,
  1972. extra: 2154 / 2081
  1973. }
  1974. },
  1975. frontAlt: {
  1976. height: math.unit(183, "cm"),
  1977. weight: math.unit(80, "kg"),
  1978. name: "Front (alt)",
  1979. image: {
  1980. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  1981. }
  1982. },
  1983. back: {
  1984. height: math.unit(183, "cm"),
  1985. weight: math.unit(80, "kg"),
  1986. name: "Back",
  1987. image: {
  1988. source: "./media/characters/sofia-fluttertail/back.svg"
  1989. }
  1990. },
  1991. kneeling: {
  1992. height: math.unit(125, "cm"),
  1993. weight: math.unit(80, "kg"),
  1994. name: "Kneeling",
  1995. image: {
  1996. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  1997. extra: 1033 / 977,
  1998. bottom: 23.7 / 1057
  1999. }
  2000. },
  2001. maw: {
  2002. height: math.unit(183 / 5, "cm"),
  2003. name: "Maw",
  2004. image: {
  2005. source: "./media/characters/sofia-fluttertail/maw.svg"
  2006. }
  2007. },
  2008. mawcloseup: {
  2009. height: math.unit(183 / 5 * 0.41, "cm"),
  2010. name: "Maw (Closeup)",
  2011. image: {
  2012. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2013. }
  2014. },
  2015. paws: {
  2016. height: math.unit(1.17, "feet"),
  2017. name: "Paws",
  2018. image: {
  2019. source: "./media/characters/sofia-fluttertail/paws.svg",
  2020. extra: 851 / 851,
  2021. bottom: 17 / 868
  2022. }
  2023. },
  2024. },
  2025. [
  2026. {
  2027. name: "Normal",
  2028. height: math.unit(1.83, "meter")
  2029. },
  2030. {
  2031. name: "Size Thief",
  2032. height: math.unit(18, "feet")
  2033. },
  2034. {
  2035. name: "50 Foot Collie",
  2036. height: math.unit(50, "feet")
  2037. },
  2038. {
  2039. name: "Macro",
  2040. height: math.unit(96, "feet"),
  2041. default: true
  2042. },
  2043. {
  2044. name: "Megamerger",
  2045. height: math.unit(650, "feet")
  2046. },
  2047. ]
  2048. ))
  2049. characterMakers.push(() => makeCharacter(
  2050. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2051. {
  2052. front: {
  2053. height: math.unit(7, "feet"),
  2054. weight: math.unit(100, "kg"),
  2055. name: "Front",
  2056. image: {
  2057. source: "./media/characters/march/front.svg",
  2058. extra: 1992/1851,
  2059. bottom: 39/2031
  2060. }
  2061. },
  2062. foot: {
  2063. height: math.unit(0.9, "feet"),
  2064. name: "Foot",
  2065. image: {
  2066. source: "./media/characters/march/foot.svg"
  2067. }
  2068. },
  2069. },
  2070. [
  2071. {
  2072. name: "Normal",
  2073. height: math.unit(7.9, "feet")
  2074. },
  2075. {
  2076. name: "Macro",
  2077. height: math.unit(220, "meters")
  2078. },
  2079. {
  2080. name: "Megamacro",
  2081. height: math.unit(2.98, "km"),
  2082. default: true
  2083. },
  2084. {
  2085. name: "Gigamacro",
  2086. height: math.unit(15963, "km")
  2087. },
  2088. {
  2089. name: "Teramacro",
  2090. height: math.unit(2980000000, "km")
  2091. },
  2092. {
  2093. name: "Examacro",
  2094. height: math.unit(250, "parsecs")
  2095. },
  2096. ]
  2097. ))
  2098. characterMakers.push(() => makeCharacter(
  2099. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2100. {
  2101. front: {
  2102. height: math.unit(6, "feet"),
  2103. weight: math.unit(60, "kg"),
  2104. name: "Front",
  2105. image: {
  2106. source: "./media/characters/noir/front.svg",
  2107. extra: 1,
  2108. bottom: 0.032
  2109. }
  2110. },
  2111. },
  2112. [
  2113. {
  2114. name: "Normal",
  2115. height: math.unit(6.6, "feet")
  2116. },
  2117. {
  2118. name: "Macro",
  2119. height: math.unit(500, "feet")
  2120. },
  2121. {
  2122. name: "Megamacro",
  2123. height: math.unit(2.5, "km"),
  2124. default: true
  2125. },
  2126. {
  2127. name: "Gigamacro",
  2128. height: math.unit(22500, "km")
  2129. },
  2130. {
  2131. name: "Teramacro",
  2132. height: math.unit(2500000000, "km")
  2133. },
  2134. {
  2135. name: "Examacro",
  2136. height: math.unit(200, "parsecs")
  2137. },
  2138. ]
  2139. ))
  2140. characterMakers.push(() => makeCharacter(
  2141. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  2142. {
  2143. front: {
  2144. height: math.unit(7, "feet"),
  2145. weight: math.unit(100, "kg"),
  2146. name: "Front",
  2147. image: {
  2148. source: "./media/characters/okuri/front.svg",
  2149. extra: 1,
  2150. bottom: 0.037
  2151. }
  2152. },
  2153. back: {
  2154. height: math.unit(7, "feet"),
  2155. weight: math.unit(100, "kg"),
  2156. name: "Back",
  2157. image: {
  2158. source: "./media/characters/okuri/back.svg",
  2159. extra: 1,
  2160. bottom: 0.007
  2161. }
  2162. },
  2163. },
  2164. [
  2165. {
  2166. name: "Megamacro",
  2167. height: math.unit(100, "miles"),
  2168. default: true
  2169. },
  2170. ]
  2171. ))
  2172. characterMakers.push(() => makeCharacter(
  2173. { name: "Manny", species: ["manectric"], 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/manny/front.svg",
  2181. extra: 1,
  2182. bottom: 0.06
  2183. }
  2184. },
  2185. back: {
  2186. height: math.unit(7, "feet"),
  2187. weight: math.unit(100, "kg"),
  2188. name: "Back",
  2189. image: {
  2190. source: "./media/characters/manny/back.svg",
  2191. extra: 1,
  2192. bottom: 0.014
  2193. }
  2194. },
  2195. },
  2196. [
  2197. {
  2198. name: "Normal",
  2199. height: math.unit(7, "feet"),
  2200. },
  2201. {
  2202. name: "Macro",
  2203. height: math.unit(78, "feet"),
  2204. default: true
  2205. },
  2206. {
  2207. name: "Macro+",
  2208. height: math.unit(300, "meters")
  2209. },
  2210. {
  2211. name: "Macro++",
  2212. height: math.unit(2400, "meters")
  2213. },
  2214. {
  2215. name: "Megamacro",
  2216. height: math.unit(5167, "meters")
  2217. },
  2218. {
  2219. name: "Gigamacro",
  2220. height: math.unit(41769, "miles")
  2221. },
  2222. ]
  2223. ))
  2224. characterMakers.push(() => makeCharacter(
  2225. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2226. {
  2227. front: {
  2228. height: math.unit(7, "feet"),
  2229. weight: math.unit(100, "kg"),
  2230. name: "Front",
  2231. image: {
  2232. source: "./media/characters/adake/front-1.svg"
  2233. }
  2234. },
  2235. frontAlt: {
  2236. height: math.unit(7, "feet"),
  2237. weight: math.unit(100, "kg"),
  2238. name: "Front (Alt)",
  2239. image: {
  2240. source: "./media/characters/adake/front-2.svg",
  2241. extra: 1,
  2242. bottom: 0.01
  2243. }
  2244. },
  2245. back: {
  2246. height: math.unit(7, "feet"),
  2247. weight: math.unit(100, "kg"),
  2248. name: "Back",
  2249. image: {
  2250. source: "./media/characters/adake/back.svg",
  2251. }
  2252. },
  2253. kneel: {
  2254. height: math.unit(5.385, "feet"),
  2255. weight: math.unit(100, "kg"),
  2256. name: "Kneeling",
  2257. image: {
  2258. source: "./media/characters/adake/kneel.svg",
  2259. bottom: 0.052
  2260. }
  2261. },
  2262. },
  2263. [
  2264. {
  2265. name: "Normal",
  2266. height: math.unit(7, "feet"),
  2267. },
  2268. {
  2269. name: "Macro",
  2270. height: math.unit(78, "feet"),
  2271. default: true
  2272. },
  2273. {
  2274. name: "Macro+",
  2275. height: math.unit(300, "meters")
  2276. },
  2277. {
  2278. name: "Macro++",
  2279. height: math.unit(2400, "meters")
  2280. },
  2281. {
  2282. name: "Megamacro",
  2283. height: math.unit(5167, "meters")
  2284. },
  2285. {
  2286. name: "Gigamacro",
  2287. height: math.unit(41769, "miles")
  2288. },
  2289. ]
  2290. ))
  2291. characterMakers.push(() => makeCharacter(
  2292. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2293. {
  2294. front: {
  2295. height: math.unit(1.65, "meters"),
  2296. weight: math.unit(50, "kg"),
  2297. name: "Front",
  2298. image: {
  2299. source: "./media/characters/elijah/front.svg",
  2300. extra: 858 / 830,
  2301. bottom: 95.5 / 953.8559
  2302. }
  2303. },
  2304. back: {
  2305. height: math.unit(1.65, "meters"),
  2306. weight: math.unit(50, "kg"),
  2307. name: "Back",
  2308. image: {
  2309. source: "./media/characters/elijah/back.svg",
  2310. extra: 895 / 850,
  2311. bottom: 5.3 / 897.956
  2312. }
  2313. },
  2314. frontNsfw: {
  2315. height: math.unit(1.65, "meters"),
  2316. weight: math.unit(50, "kg"),
  2317. name: "Front (NSFW)",
  2318. image: {
  2319. source: "./media/characters/elijah/front-nsfw.svg",
  2320. extra: 858 / 830,
  2321. bottom: 95.5 / 953.8559
  2322. }
  2323. },
  2324. backNsfw: {
  2325. height: math.unit(1.65, "meters"),
  2326. weight: math.unit(50, "kg"),
  2327. name: "Back (NSFW)",
  2328. image: {
  2329. source: "./media/characters/elijah/back-nsfw.svg",
  2330. extra: 895 / 850,
  2331. bottom: 5.3 / 897.956
  2332. }
  2333. },
  2334. dick: {
  2335. height: math.unit(1, "feet"),
  2336. name: "Dick",
  2337. image: {
  2338. source: "./media/characters/elijah/dick.svg"
  2339. }
  2340. },
  2341. beakOpen: {
  2342. height: math.unit(1.25, "feet"),
  2343. name: "Beak (Open)",
  2344. image: {
  2345. source: "./media/characters/elijah/beak-open.svg"
  2346. }
  2347. },
  2348. beakShut: {
  2349. height: math.unit(1.25, "feet"),
  2350. name: "Beak (Shut)",
  2351. image: {
  2352. source: "./media/characters/elijah/beak-shut.svg"
  2353. }
  2354. },
  2355. footFlexing: {
  2356. height: math.unit(1.61, "feet"),
  2357. name: "Foot (Flexing)",
  2358. image: {
  2359. source: "./media/characters/elijah/foot-flexing.svg"
  2360. }
  2361. },
  2362. footStepping: {
  2363. height: math.unit(1.44, "feet"),
  2364. name: "Foot (Stepping)",
  2365. image: {
  2366. source: "./media/characters/elijah/foot-stepping.svg"
  2367. }
  2368. },
  2369. plantigradeLeg: {
  2370. height: math.unit(2.34, "feet"),
  2371. name: "Plantigrade Leg",
  2372. image: {
  2373. source: "./media/characters/elijah/plantigrade-leg.svg"
  2374. }
  2375. },
  2376. plantigradeFootLeft: {
  2377. height: math.unit(0.9, "feet"),
  2378. name: "Plantigrade Foot (Left)",
  2379. image: {
  2380. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2381. }
  2382. },
  2383. plantigradeFootRight: {
  2384. height: math.unit(0.9, "feet"),
  2385. name: "Plantigrade Foot (Right)",
  2386. image: {
  2387. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2388. }
  2389. },
  2390. },
  2391. [
  2392. {
  2393. name: "Normal",
  2394. height: math.unit(1.65, "meters")
  2395. },
  2396. {
  2397. name: "Macro",
  2398. height: math.unit(55, "meters"),
  2399. default: true
  2400. },
  2401. {
  2402. name: "Macro+",
  2403. height: math.unit(105, "meters")
  2404. },
  2405. ]
  2406. ))
  2407. characterMakers.push(() => makeCharacter(
  2408. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2409. {
  2410. front: {
  2411. height: math.unit(7 + 2/12, "feet"),
  2412. weight: math.unit(320, "kg"),
  2413. name: "Front",
  2414. image: {
  2415. source: "./media/characters/rai/front.svg",
  2416. extra: 1802/1696,
  2417. bottom: 68/1870
  2418. }
  2419. },
  2420. frontDressed: {
  2421. height: math.unit(7 + 2/12, "feet"),
  2422. weight: math.unit(320, "kg"),
  2423. name: "Front (Dressed)",
  2424. image: {
  2425. source: "./media/characters/rai/front-dressed.svg",
  2426. extra: 1802/1696,
  2427. bottom: 68/1870
  2428. }
  2429. },
  2430. side: {
  2431. height: math.unit(7 + 2/12, "feet"),
  2432. weight: math.unit(320, "kg"),
  2433. name: "Side",
  2434. image: {
  2435. source: "./media/characters/rai/side.svg",
  2436. extra: 1789/1710,
  2437. bottom: 115/1904
  2438. }
  2439. },
  2440. back: {
  2441. height: math.unit(7 + 2/12, "feet"),
  2442. weight: math.unit(320, "kg"),
  2443. name: "Back",
  2444. image: {
  2445. source: "./media/characters/rai/back.svg",
  2446. extra: 1770/1707,
  2447. bottom: 28/1798
  2448. }
  2449. },
  2450. feral: {
  2451. height: math.unit(9.5, "feet"),
  2452. weight: math.unit(640, "kg"),
  2453. name: "Feral",
  2454. image: {
  2455. source: "./media/characters/rai/feral.svg",
  2456. extra: 945/553,
  2457. bottom: 176/1121
  2458. }
  2459. },
  2460. dragon: {
  2461. height: math.unit(23, "feet"),
  2462. weight: math.unit(50000, "lb"),
  2463. name: "Dragon",
  2464. image: {
  2465. source: "./media/characters/rai/dragon.svg",
  2466. extra: 2498 / 2030,
  2467. bottom: 85.2 / 2584
  2468. }
  2469. },
  2470. maw: {
  2471. height: math.unit(1.69, "feet"),
  2472. name: "Maw",
  2473. image: {
  2474. source: "./media/characters/rai/maw.svg"
  2475. }
  2476. },
  2477. },
  2478. [
  2479. {
  2480. name: "Normal",
  2481. height: math.unit(7 + 2/12, "feet")
  2482. },
  2483. {
  2484. name: "Big",
  2485. height: math.unit(11, "feet")
  2486. },
  2487. {
  2488. name: "Macro",
  2489. height: math.unit(302, "feet"),
  2490. default: true
  2491. },
  2492. ]
  2493. ))
  2494. characterMakers.push(() => makeCharacter(
  2495. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2496. {
  2497. frontDressed: {
  2498. height: math.unit(216, "feet"),
  2499. weight: math.unit(7000000, "lb"),
  2500. name: "Front (Dressed)",
  2501. image: {
  2502. source: "./media/characters/jazzy/front-dressed.svg",
  2503. extra: 2738 / 2651,
  2504. bottom: 41.8 / 2786
  2505. }
  2506. },
  2507. backDressed: {
  2508. height: math.unit(216, "feet"),
  2509. weight: math.unit(7000000, "lb"),
  2510. name: "Back (Dressed)",
  2511. image: {
  2512. source: "./media/characters/jazzy/back-dressed.svg",
  2513. extra: 2775 / 2673,
  2514. bottom: 36.8 / 2817
  2515. }
  2516. },
  2517. front: {
  2518. height: math.unit(216, "feet"),
  2519. weight: math.unit(7000000, "lb"),
  2520. name: "Front",
  2521. image: {
  2522. source: "./media/characters/jazzy/front.svg",
  2523. extra: 2738 / 2651,
  2524. bottom: 41.8 / 2786
  2525. }
  2526. },
  2527. back: {
  2528. height: math.unit(216, "feet"),
  2529. weight: math.unit(7000000, "lb"),
  2530. name: "Back",
  2531. image: {
  2532. source: "./media/characters/jazzy/back.svg",
  2533. extra: 2775 / 2673,
  2534. bottom: 36.8 / 2817
  2535. }
  2536. },
  2537. maw: {
  2538. height: math.unit(20, "feet"),
  2539. name: "Maw",
  2540. image: {
  2541. source: "./media/characters/jazzy/maw.svg"
  2542. }
  2543. },
  2544. paws: {
  2545. height: math.unit(27.5, "feet"),
  2546. name: "Paws",
  2547. image: {
  2548. source: "./media/characters/jazzy/paws.svg"
  2549. }
  2550. },
  2551. eye: {
  2552. height: math.unit(4.4, "feet"),
  2553. name: "Eye",
  2554. image: {
  2555. source: "./media/characters/jazzy/eye.svg"
  2556. }
  2557. },
  2558. droneOffense: {
  2559. height: math.unit(9.5, "inches"),
  2560. name: "Drone (Offense)",
  2561. image: {
  2562. source: "./media/characters/jazzy/drone-offense.svg"
  2563. }
  2564. },
  2565. droneRecon: {
  2566. height: math.unit(9.5, "inches"),
  2567. name: "Drone (Recon)",
  2568. image: {
  2569. source: "./media/characters/jazzy/drone-recon.svg"
  2570. }
  2571. },
  2572. droneDefense: {
  2573. height: math.unit(9.5, "inches"),
  2574. name: "Drone (Defense)",
  2575. image: {
  2576. source: "./media/characters/jazzy/drone-defense.svg"
  2577. }
  2578. },
  2579. },
  2580. [
  2581. {
  2582. name: "Macro",
  2583. height: math.unit(216, "feet"),
  2584. default: true
  2585. },
  2586. ]
  2587. ))
  2588. characterMakers.push(() => makeCharacter(
  2589. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2590. {
  2591. front: {
  2592. height: math.unit(9 + 6/12, "feet"),
  2593. weight: math.unit(700, "lb"),
  2594. name: "Front",
  2595. image: {
  2596. source: "./media/characters/flamm/front.svg",
  2597. extra: 1751/1632,
  2598. bottom: 46/1797
  2599. }
  2600. },
  2601. buff: {
  2602. height: math.unit(9 + 6/12, "feet"),
  2603. weight: math.unit(950, "lb"),
  2604. name: "Buff",
  2605. image: {
  2606. source: "./media/characters/flamm/buff.svg",
  2607. extra: 3018/2874,
  2608. bottom: 221/3239
  2609. }
  2610. },
  2611. },
  2612. [
  2613. {
  2614. name: "Normal",
  2615. height: math.unit(9.5, "feet")
  2616. },
  2617. {
  2618. name: "Macro",
  2619. height: math.unit(200, "feet"),
  2620. default: true
  2621. },
  2622. ]
  2623. ))
  2624. characterMakers.push(() => makeCharacter(
  2625. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2626. {
  2627. front: {
  2628. height: math.unit(5 + 3/12, "feet"),
  2629. weight: math.unit(60, "kg"),
  2630. name: "Front",
  2631. image: {
  2632. source: "./media/characters/zephiro/front.svg",
  2633. extra: 2309 / 2162,
  2634. bottom: 0.069
  2635. }
  2636. },
  2637. side: {
  2638. height: math.unit(5 + 3/12, "feet"),
  2639. weight: math.unit(60, "kg"),
  2640. name: "Side",
  2641. image: {
  2642. source: "./media/characters/zephiro/side.svg",
  2643. extra: 2403 / 2279,
  2644. bottom: 0.015
  2645. }
  2646. },
  2647. back: {
  2648. height: math.unit(5 + 3/12, "feet"),
  2649. weight: math.unit(60, "kg"),
  2650. name: "Back",
  2651. image: {
  2652. source: "./media/characters/zephiro/back.svg",
  2653. extra: 2373 / 2244,
  2654. bottom: 0.013
  2655. }
  2656. },
  2657. hand: {
  2658. height: math.unit(0.68, "feet"),
  2659. name: "Hand",
  2660. image: {
  2661. source: "./media/characters/zephiro/hand.svg"
  2662. }
  2663. },
  2664. paw: {
  2665. height: math.unit(1, "feet"),
  2666. name: "Paw",
  2667. image: {
  2668. source: "./media/characters/zephiro/paw.svg"
  2669. }
  2670. },
  2671. beans: {
  2672. height: math.unit(0.93, "feet"),
  2673. name: "Beans",
  2674. image: {
  2675. source: "./media/characters/zephiro/beans.svg"
  2676. }
  2677. },
  2678. },
  2679. [
  2680. {
  2681. name: "Micro",
  2682. height: math.unit(3, "inches")
  2683. },
  2684. {
  2685. name: "Normal",
  2686. height: math.unit(5 + 3 / 12, "feet"),
  2687. default: true
  2688. },
  2689. {
  2690. name: "Macro",
  2691. height: math.unit(118, "feet")
  2692. },
  2693. ]
  2694. ))
  2695. characterMakers.push(() => makeCharacter(
  2696. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2697. {
  2698. front: {
  2699. height: math.unit(5, "feet"),
  2700. weight: math.unit(90, "kg"),
  2701. name: "Front",
  2702. image: {
  2703. source: "./media/characters/fory/front.svg",
  2704. extra: 2862 / 2674,
  2705. bottom: 180 / 3043.8
  2706. }
  2707. },
  2708. back: {
  2709. height: math.unit(5, "feet"),
  2710. weight: math.unit(90, "kg"),
  2711. name: "Back",
  2712. image: {
  2713. source: "./media/characters/fory/back.svg",
  2714. extra: 2962 / 2791,
  2715. bottom: 106 / 3071.8
  2716. }
  2717. },
  2718. foot: {
  2719. height: math.unit(2.14, "feet"),
  2720. name: "Foot",
  2721. image: {
  2722. source: "./media/characters/fory/foot.svg"
  2723. }
  2724. },
  2725. },
  2726. [
  2727. {
  2728. name: "Normal",
  2729. height: math.unit(5, "feet")
  2730. },
  2731. {
  2732. name: "Macro",
  2733. height: math.unit(50, "feet"),
  2734. default: true
  2735. },
  2736. {
  2737. name: "Megamacro",
  2738. height: math.unit(10, "miles")
  2739. },
  2740. {
  2741. name: "Gigamacro",
  2742. height: math.unit(5, "earths")
  2743. },
  2744. ]
  2745. ))
  2746. characterMakers.push(() => makeCharacter(
  2747. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2748. {
  2749. front: {
  2750. height: math.unit(7, "feet"),
  2751. weight: math.unit(90, "kg"),
  2752. name: "Front",
  2753. image: {
  2754. source: "./media/characters/kurrikage/front.svg",
  2755. extra: 1845/1733,
  2756. bottom: 119/1964
  2757. }
  2758. },
  2759. back: {
  2760. height: math.unit(7, "feet"),
  2761. weight: math.unit(90, "kg"),
  2762. name: "Back",
  2763. image: {
  2764. source: "./media/characters/kurrikage/back.svg",
  2765. extra: 1790/1677,
  2766. bottom: 61/1851
  2767. }
  2768. },
  2769. dressed: {
  2770. height: math.unit(7, "feet"),
  2771. weight: math.unit(90, "kg"),
  2772. name: "Dressed",
  2773. image: {
  2774. source: "./media/characters/kurrikage/dressed.svg",
  2775. extra: 1845/1733,
  2776. bottom: 119/1964
  2777. }
  2778. },
  2779. foot: {
  2780. height: math.unit(1.5, "feet"),
  2781. name: "Foot",
  2782. image: {
  2783. source: "./media/characters/kurrikage/foot.svg"
  2784. }
  2785. },
  2786. staff: {
  2787. height: math.unit(6.7, "feet"),
  2788. name: "Staff",
  2789. image: {
  2790. source: "./media/characters/kurrikage/staff.svg"
  2791. }
  2792. },
  2793. peek: {
  2794. height: math.unit(1.05, "feet"),
  2795. name: "Peeking",
  2796. image: {
  2797. source: "./media/characters/kurrikage/peek.svg",
  2798. bottom: 0.08
  2799. }
  2800. },
  2801. },
  2802. [
  2803. {
  2804. name: "Normal",
  2805. height: math.unit(12, "feet"),
  2806. default: true
  2807. },
  2808. {
  2809. name: "Big",
  2810. height: math.unit(20, "feet")
  2811. },
  2812. {
  2813. name: "Macro",
  2814. height: math.unit(500, "feet")
  2815. },
  2816. {
  2817. name: "Megamacro",
  2818. height: math.unit(20, "miles")
  2819. },
  2820. ]
  2821. ))
  2822. characterMakers.push(() => makeCharacter(
  2823. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2824. {
  2825. front: {
  2826. height: math.unit(6, "feet"),
  2827. weight: math.unit(75, "kg"),
  2828. name: "Front",
  2829. image: {
  2830. source: "./media/characters/shingo/front.svg",
  2831. extra: 1900/1825,
  2832. bottom: 82/1982
  2833. }
  2834. },
  2835. side: {
  2836. height: math.unit(6, "feet"),
  2837. weight: math.unit(75, "kg"),
  2838. name: "Side",
  2839. image: {
  2840. source: "./media/characters/shingo/side.svg",
  2841. extra: 1930/1865,
  2842. bottom: 16/1946
  2843. }
  2844. },
  2845. back: {
  2846. height: math.unit(6, "feet"),
  2847. weight: math.unit(75, "kg"),
  2848. name: "Back",
  2849. image: {
  2850. source: "./media/characters/shingo/back.svg",
  2851. extra: 1922/1852,
  2852. bottom: 16/1938
  2853. }
  2854. },
  2855. frontDressed: {
  2856. height: math.unit(6, "feet"),
  2857. weight: math.unit(150, "lb"),
  2858. name: "Front-dressed",
  2859. image: {
  2860. source: "./media/characters/shingo/front-dressed.svg",
  2861. extra: 1900/1825,
  2862. bottom: 82/1982
  2863. }
  2864. },
  2865. paw: {
  2866. height: math.unit(1.29, "feet"),
  2867. name: "Paw",
  2868. image: {
  2869. source: "./media/characters/shingo/paw.svg"
  2870. }
  2871. },
  2872. hand: {
  2873. height: math.unit(1.07, "feet"),
  2874. name: "Hand",
  2875. image: {
  2876. source: "./media/characters/shingo/hand.svg"
  2877. }
  2878. },
  2879. frontAlt: {
  2880. height: math.unit(6, "feet"),
  2881. weight: math.unit(75, "kg"),
  2882. name: "Front (Alt)",
  2883. image: {
  2884. source: "./media/characters/shingo/front-alt.svg",
  2885. extra: 3511 / 3338,
  2886. bottom: 0.005
  2887. }
  2888. },
  2889. frontAlt2: {
  2890. height: math.unit(6, "feet"),
  2891. weight: math.unit(75, "kg"),
  2892. name: "Front (Alt 2)",
  2893. image: {
  2894. source: "./media/characters/shingo/front-alt-2.svg",
  2895. extra: 706/681,
  2896. bottom: 11/717
  2897. }
  2898. },
  2899. pawAlt: {
  2900. height: math.unit(1, "feet"),
  2901. name: "Paw (Alt)",
  2902. image: {
  2903. source: "./media/characters/shingo/paw-alt.svg"
  2904. }
  2905. },
  2906. },
  2907. [
  2908. {
  2909. name: "Micro",
  2910. height: math.unit(4, "inches")
  2911. },
  2912. {
  2913. name: "Normal",
  2914. height: math.unit(6, "feet"),
  2915. default: true
  2916. },
  2917. {
  2918. name: "Macro",
  2919. height: math.unit(108, "feet")
  2920. },
  2921. {
  2922. name: "Macro+",
  2923. height: math.unit(1500, "feet")
  2924. },
  2925. ]
  2926. ))
  2927. characterMakers.push(() => makeCharacter(
  2928. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2929. {
  2930. side: {
  2931. height: math.unit(6, "feet"),
  2932. weight: math.unit(75, "kg"),
  2933. name: "Side",
  2934. image: {
  2935. source: "./media/characters/aigey/side.svg"
  2936. }
  2937. },
  2938. },
  2939. [
  2940. {
  2941. name: "Macro",
  2942. height: math.unit(200, "feet"),
  2943. default: true
  2944. },
  2945. {
  2946. name: "Megamacro",
  2947. height: math.unit(100, "miles")
  2948. },
  2949. ]
  2950. )
  2951. )
  2952. characterMakers.push(() => makeCharacter(
  2953. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  2954. {
  2955. front: {
  2956. height: math.unit(5 + 5 / 12, "feet"),
  2957. weight: math.unit(75, "kg"),
  2958. name: "Front",
  2959. image: {
  2960. source: "./media/characters/natasha/front.svg",
  2961. extra: 859 / 824,
  2962. bottom: 23 / 879.6
  2963. }
  2964. },
  2965. frontNsfw: {
  2966. height: math.unit(5 + 5 / 12, "feet"),
  2967. weight: math.unit(75, "kg"),
  2968. name: "Front (NSFW)",
  2969. image: {
  2970. source: "./media/characters/natasha/front-nsfw.svg",
  2971. extra: 859 / 824,
  2972. bottom: 23 / 879.6
  2973. }
  2974. },
  2975. frontErect: {
  2976. height: math.unit(5 + 5 / 12, "feet"),
  2977. weight: math.unit(75, "kg"),
  2978. name: "Front (Erect)",
  2979. image: {
  2980. source: "./media/characters/natasha/front-erect.svg",
  2981. extra: 859 / 824,
  2982. bottom: 23 / 879.6
  2983. }
  2984. },
  2985. back: {
  2986. height: math.unit(5 + 5 / 12, "feet"),
  2987. weight: math.unit(75, "kg"),
  2988. name: "Back",
  2989. image: {
  2990. source: "./media/characters/natasha/back.svg",
  2991. extra: 887.9 / 852.6,
  2992. bottom: 9.7 / 896.4
  2993. }
  2994. },
  2995. backAlt: {
  2996. height: math.unit(5 + 5 / 12, "feet"),
  2997. weight: math.unit(75, "kg"),
  2998. name: "Back (Alt)",
  2999. image: {
  3000. source: "./media/characters/natasha/back-alt.svg",
  3001. extra: 1236.7 / 1192,
  3002. bottom: 22.3 / 1258.2
  3003. }
  3004. },
  3005. dick: {
  3006. height: math.unit(1.772, "feet"),
  3007. name: "Dick",
  3008. image: {
  3009. source: "./media/characters/natasha/dick.svg"
  3010. }
  3011. },
  3012. paw: {
  3013. height: math.unit(0.250, "meters"),
  3014. name: "Paw",
  3015. image: {
  3016. source: "./media/characters/natasha/paw.svg"
  3017. }
  3018. },
  3019. },
  3020. [
  3021. {
  3022. name: "Normal",
  3023. height: math.unit(5 + 5 / 12, "feet")
  3024. },
  3025. {
  3026. name: "Large",
  3027. height: math.unit(12, "feet")
  3028. },
  3029. {
  3030. name: "Macro",
  3031. height: math.unit(100, "feet"),
  3032. default: true
  3033. },
  3034. {
  3035. name: "Macro+",
  3036. height: math.unit(260, "feet")
  3037. },
  3038. {
  3039. name: "Macro++",
  3040. height: math.unit(1, "mile")
  3041. },
  3042. ]
  3043. ))
  3044. characterMakers.push(() => makeCharacter(
  3045. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3046. {
  3047. front: {
  3048. height: math.unit(6, "feet"),
  3049. weight: math.unit(75, "kg"),
  3050. name: "Front",
  3051. image: {
  3052. source: "./media/characters/malik/front.svg"
  3053. }
  3054. },
  3055. side: {
  3056. height: math.unit(6, "feet"),
  3057. weight: math.unit(75, "kg"),
  3058. name: "Side",
  3059. image: {
  3060. source: "./media/characters/malik/side.svg",
  3061. extra: 1.1539
  3062. }
  3063. },
  3064. back: {
  3065. height: math.unit(6, "feet"),
  3066. weight: math.unit(75, "kg"),
  3067. name: "Back",
  3068. image: {
  3069. source: "./media/characters/malik/back.svg"
  3070. }
  3071. },
  3072. },
  3073. [
  3074. {
  3075. name: "Macro",
  3076. height: math.unit(156, "feet"),
  3077. default: true
  3078. },
  3079. {
  3080. name: "Macro+",
  3081. height: math.unit(1188, "feet")
  3082. },
  3083. ]
  3084. ))
  3085. characterMakers.push(() => makeCharacter(
  3086. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3087. {
  3088. front: {
  3089. height: math.unit(6, "feet"),
  3090. weight: math.unit(75, "kg"),
  3091. name: "Front",
  3092. image: {
  3093. source: "./media/characters/sefer/front.svg",
  3094. extra: 848 / 659,
  3095. bottom: 28.3 / 876.442
  3096. }
  3097. },
  3098. back: {
  3099. height: math.unit(6, "feet"),
  3100. weight: math.unit(75, "kg"),
  3101. name: "Back",
  3102. image: {
  3103. source: "./media/characters/sefer/back.svg",
  3104. extra: 864 / 695,
  3105. bottom: 10 / 871
  3106. }
  3107. },
  3108. frontDressed: {
  3109. height: math.unit(6, "feet"),
  3110. weight: math.unit(75, "kg"),
  3111. name: "Front (Dressed)",
  3112. image: {
  3113. source: "./media/characters/sefer/front-dressed.svg",
  3114. extra: 839 / 653,
  3115. bottom: 37.6 / 878
  3116. }
  3117. },
  3118. },
  3119. [
  3120. {
  3121. name: "Normal",
  3122. height: math.unit(6, "feet"),
  3123. default: true
  3124. },
  3125. ]
  3126. ))
  3127. characterMakers.push(() => makeCharacter(
  3128. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3129. {
  3130. body: {
  3131. height: math.unit(2.2428, "meter"),
  3132. weight: math.unit(124.738, "kg"),
  3133. name: "Body",
  3134. image: {
  3135. extra: 1225 / 1050,
  3136. source: "./media/characters/north/front.svg"
  3137. }
  3138. }
  3139. },
  3140. [
  3141. {
  3142. name: "Micro",
  3143. height: math.unit(4, "inches")
  3144. },
  3145. {
  3146. name: "Macro",
  3147. height: math.unit(63, "meters")
  3148. },
  3149. {
  3150. name: "Megamacro",
  3151. height: math.unit(101, "miles"),
  3152. default: true
  3153. }
  3154. ]
  3155. ))
  3156. characterMakers.push(() => makeCharacter(
  3157. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3158. {
  3159. angled: {
  3160. height: math.unit(4, "meter"),
  3161. weight: math.unit(150, "kg"),
  3162. name: "Angled",
  3163. image: {
  3164. source: "./media/characters/talan/angled-sfw.svg",
  3165. bottom: 29 / 3734
  3166. }
  3167. },
  3168. angledNsfw: {
  3169. height: math.unit(4, "meter"),
  3170. weight: math.unit(150, "kg"),
  3171. name: "Angled (NSFW)",
  3172. image: {
  3173. source: "./media/characters/talan/angled-nsfw.svg",
  3174. bottom: 29 / 3734
  3175. }
  3176. },
  3177. frontNsfw: {
  3178. height: math.unit(4, "meter"),
  3179. weight: math.unit(150, "kg"),
  3180. name: "Front (NSFW)",
  3181. image: {
  3182. source: "./media/characters/talan/front-nsfw.svg",
  3183. bottom: 29 / 3734
  3184. }
  3185. },
  3186. sideNsfw: {
  3187. height: math.unit(4, "meter"),
  3188. weight: math.unit(150, "kg"),
  3189. name: "Side (NSFW)",
  3190. image: {
  3191. source: "./media/characters/talan/side-nsfw.svg",
  3192. bottom: 29 / 3734
  3193. }
  3194. },
  3195. back: {
  3196. height: math.unit(4, "meter"),
  3197. weight: math.unit(150, "kg"),
  3198. name: "Back",
  3199. image: {
  3200. source: "./media/characters/talan/back.svg"
  3201. }
  3202. },
  3203. dickBottom: {
  3204. height: math.unit(0.621, "meter"),
  3205. name: "Dick (Bottom)",
  3206. image: {
  3207. source: "./media/characters/talan/dick-bottom.svg"
  3208. }
  3209. },
  3210. dickTop: {
  3211. height: math.unit(0.621, "meter"),
  3212. name: "Dick (Top)",
  3213. image: {
  3214. source: "./media/characters/talan/dick-top.svg"
  3215. }
  3216. },
  3217. dickSide: {
  3218. height: math.unit(0.305, "meter"),
  3219. name: "Dick (Side)",
  3220. image: {
  3221. source: "./media/characters/talan/dick-side.svg"
  3222. }
  3223. },
  3224. dickFront: {
  3225. height: math.unit(0.305, "meter"),
  3226. name: "Dick (Front)",
  3227. image: {
  3228. source: "./media/characters/talan/dick-front.svg"
  3229. }
  3230. },
  3231. },
  3232. [
  3233. {
  3234. name: "Normal",
  3235. height: math.unit(4, "meters")
  3236. },
  3237. {
  3238. name: "Macro",
  3239. height: math.unit(100, "meters")
  3240. },
  3241. {
  3242. name: "Megamacro",
  3243. height: math.unit(2, "miles"),
  3244. default: true
  3245. },
  3246. {
  3247. name: "Gigamacro",
  3248. height: math.unit(5000, "miles")
  3249. },
  3250. {
  3251. name: "Teramacro",
  3252. height: math.unit(100, "parsecs")
  3253. }
  3254. ]
  3255. ))
  3256. characterMakers.push(() => makeCharacter(
  3257. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3258. {
  3259. front: {
  3260. height: math.unit(2, "meter"),
  3261. weight: math.unit(90, "kg"),
  3262. name: "Front",
  3263. image: {
  3264. source: "./media/characters/gael'rathus/front.svg"
  3265. }
  3266. },
  3267. frontAlt: {
  3268. height: math.unit(2, "meter"),
  3269. weight: math.unit(90, "kg"),
  3270. name: "Front (alt)",
  3271. image: {
  3272. source: "./media/characters/gael'rathus/front-alt.svg"
  3273. }
  3274. },
  3275. frontAlt2: {
  3276. height: math.unit(2, "meter"),
  3277. weight: math.unit(90, "kg"),
  3278. name: "Front (alt 2)",
  3279. image: {
  3280. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3281. }
  3282. }
  3283. },
  3284. [
  3285. {
  3286. name: "Normal",
  3287. height: math.unit(9, "feet"),
  3288. default: true
  3289. },
  3290. {
  3291. name: "Large",
  3292. height: math.unit(25, "feet")
  3293. },
  3294. {
  3295. name: "Macro",
  3296. height: math.unit(0.25, "miles")
  3297. },
  3298. {
  3299. name: "Megamacro",
  3300. height: math.unit(10, "miles")
  3301. }
  3302. ]
  3303. ))
  3304. characterMakers.push(() => makeCharacter(
  3305. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3306. {
  3307. side: {
  3308. height: math.unit(2, "meter"),
  3309. weight: math.unit(140, "kg"),
  3310. name: "Side",
  3311. image: {
  3312. source: "./media/characters/sosha/side.svg",
  3313. bottom: 0.042
  3314. }
  3315. },
  3316. },
  3317. [
  3318. {
  3319. name: "Normal",
  3320. height: math.unit(12, "feet"),
  3321. default: true
  3322. }
  3323. ]
  3324. ))
  3325. characterMakers.push(() => makeCharacter(
  3326. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3327. {
  3328. side: {
  3329. height: math.unit(5 + 5 / 12, "feet"),
  3330. weight: math.unit(170, "kg"),
  3331. name: "Side",
  3332. image: {
  3333. source: "./media/characters/runnola/side.svg",
  3334. extra: 741 / 448,
  3335. bottom: 0.05
  3336. }
  3337. },
  3338. },
  3339. [
  3340. {
  3341. name: "Small",
  3342. height: math.unit(3, "feet")
  3343. },
  3344. {
  3345. name: "Normal",
  3346. height: math.unit(5 + 5 / 12, "feet"),
  3347. default: true
  3348. },
  3349. {
  3350. name: "Big",
  3351. height: math.unit(10, "feet")
  3352. },
  3353. ]
  3354. ))
  3355. characterMakers.push(() => makeCharacter(
  3356. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3357. {
  3358. front: {
  3359. height: math.unit(2, "meter"),
  3360. weight: math.unit(50, "kg"),
  3361. name: "Front",
  3362. image: {
  3363. source: "./media/characters/kurribird/front.svg",
  3364. bottom: 0.015
  3365. }
  3366. },
  3367. frontAlt: {
  3368. height: math.unit(1.5, "meter"),
  3369. weight: math.unit(50, "kg"),
  3370. name: "Front (Alt)",
  3371. image: {
  3372. source: "./media/characters/kurribird/front-alt.svg",
  3373. extra: 1.45
  3374. }
  3375. },
  3376. },
  3377. [
  3378. {
  3379. name: "Normal",
  3380. height: math.unit(7, "feet")
  3381. },
  3382. {
  3383. name: "Big",
  3384. height: math.unit(12, "feet"),
  3385. default: true
  3386. },
  3387. {
  3388. name: "Macro",
  3389. height: math.unit(1500, "feet")
  3390. },
  3391. {
  3392. name: "Megamacro",
  3393. height: math.unit(2, "miles")
  3394. }
  3395. ]
  3396. ))
  3397. characterMakers.push(() => makeCharacter(
  3398. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3399. {
  3400. front: {
  3401. height: math.unit(2, "meter"),
  3402. weight: math.unit(80, "kg"),
  3403. name: "Front",
  3404. image: {
  3405. source: "./media/characters/elbial/front.svg",
  3406. extra: 1643 / 1556,
  3407. bottom: 60.2 / 1696
  3408. }
  3409. },
  3410. side: {
  3411. height: math.unit(2, "meter"),
  3412. weight: math.unit(80, "kg"),
  3413. name: "Side",
  3414. image: {
  3415. source: "./media/characters/elbial/side.svg",
  3416. extra: 1630 / 1565,
  3417. bottom: 71.5 / 1697
  3418. }
  3419. },
  3420. back: {
  3421. height: math.unit(2, "meter"),
  3422. weight: math.unit(80, "kg"),
  3423. name: "Back",
  3424. image: {
  3425. source: "./media/characters/elbial/back.svg",
  3426. extra: 1668 / 1595,
  3427. bottom: 5.6 / 1672
  3428. }
  3429. },
  3430. frontDressed: {
  3431. height: math.unit(2, "meter"),
  3432. weight: math.unit(80, "kg"),
  3433. name: "Front (Dressed)",
  3434. image: {
  3435. source: "./media/characters/elbial/front-dressed.svg",
  3436. extra: 1653 / 1584,
  3437. bottom: 57 / 1708
  3438. }
  3439. },
  3440. genitals: {
  3441. height: math.unit(2 / 3.367, "meter"),
  3442. name: "Genitals",
  3443. image: {
  3444. source: "./media/characters/elbial/genitals.svg"
  3445. }
  3446. },
  3447. },
  3448. [
  3449. {
  3450. name: "Large",
  3451. height: math.unit(100, "feet")
  3452. },
  3453. {
  3454. name: "Macro",
  3455. height: math.unit(500, "feet"),
  3456. default: true
  3457. },
  3458. {
  3459. name: "Megamacro",
  3460. height: math.unit(10, "miles")
  3461. },
  3462. {
  3463. name: "Gigamacro",
  3464. height: math.unit(25000, "miles")
  3465. },
  3466. {
  3467. name: "Full-Size",
  3468. height: math.unit(8000000, "gigaparsecs")
  3469. }
  3470. ]
  3471. ))
  3472. characterMakers.push(() => makeCharacter(
  3473. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3474. {
  3475. front: {
  3476. height: math.unit(2, "meter"),
  3477. weight: math.unit(60, "kg"),
  3478. name: "Front",
  3479. image: {
  3480. source: "./media/characters/noah/front.svg"
  3481. }
  3482. },
  3483. talons: {
  3484. height: math.unit(0.315, "meter"),
  3485. name: "Talons",
  3486. image: {
  3487. source: "./media/characters/noah/talons.svg"
  3488. }
  3489. }
  3490. },
  3491. [
  3492. {
  3493. name: "Large",
  3494. height: math.unit(50, "feet")
  3495. },
  3496. {
  3497. name: "Macro",
  3498. height: math.unit(750, "feet"),
  3499. default: true
  3500. },
  3501. {
  3502. name: "Megamacro",
  3503. height: math.unit(50, "miles")
  3504. },
  3505. {
  3506. name: "Gigamacro",
  3507. height: math.unit(100000, "miles")
  3508. },
  3509. {
  3510. name: "Full-Size",
  3511. height: math.unit(3000000000, "miles")
  3512. }
  3513. ]
  3514. ))
  3515. characterMakers.push(() => makeCharacter(
  3516. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3517. {
  3518. front: {
  3519. height: math.unit(2, "meter"),
  3520. weight: math.unit(80, "kg"),
  3521. name: "Front",
  3522. image: {
  3523. source: "./media/characters/natalya/front.svg"
  3524. }
  3525. },
  3526. back: {
  3527. height: math.unit(2, "meter"),
  3528. weight: math.unit(80, "kg"),
  3529. name: "Back",
  3530. image: {
  3531. source: "./media/characters/natalya/back.svg"
  3532. }
  3533. }
  3534. },
  3535. [
  3536. {
  3537. name: "Normal",
  3538. height: math.unit(150, "feet"),
  3539. default: true
  3540. },
  3541. {
  3542. name: "Megamacro",
  3543. height: math.unit(5, "miles")
  3544. },
  3545. {
  3546. name: "Full-Size",
  3547. height: math.unit(600, "kiloparsecs")
  3548. }
  3549. ]
  3550. ))
  3551. characterMakers.push(() => makeCharacter(
  3552. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3553. {
  3554. front: {
  3555. height: math.unit(2, "meter"),
  3556. weight: math.unit(50, "kg"),
  3557. name: "Front",
  3558. image: {
  3559. source: "./media/characters/erestrebah/front.svg",
  3560. extra: 1262/1162,
  3561. bottom: 96/1358
  3562. }
  3563. },
  3564. back: {
  3565. height: math.unit(2, "meter"),
  3566. weight: math.unit(50, "kg"),
  3567. name: "Back",
  3568. image: {
  3569. source: "./media/characters/erestrebah/back.svg",
  3570. extra: 1257/1139,
  3571. bottom: 13/1270
  3572. }
  3573. },
  3574. wing: {
  3575. height: math.unit(2, "meter"),
  3576. weight: math.unit(50, "kg"),
  3577. name: "Wing",
  3578. image: {
  3579. source: "./media/characters/erestrebah/wing.svg",
  3580. extra: 1262/1162,
  3581. bottom: 96/1358
  3582. }
  3583. },
  3584. mouth: {
  3585. height: math.unit(0.39, "feet"),
  3586. name: "Mouth",
  3587. image: {
  3588. source: "./media/characters/erestrebah/mouth.svg"
  3589. }
  3590. }
  3591. },
  3592. [
  3593. {
  3594. name: "Normal",
  3595. height: math.unit(10, "feet")
  3596. },
  3597. {
  3598. name: "Large",
  3599. height: math.unit(50, "feet"),
  3600. default: true
  3601. },
  3602. {
  3603. name: "Macro",
  3604. height: math.unit(300, "feet")
  3605. },
  3606. {
  3607. name: "Macro+",
  3608. height: math.unit(750, "feet")
  3609. },
  3610. {
  3611. name: "Megamacro",
  3612. height: math.unit(3, "miles")
  3613. }
  3614. ]
  3615. ))
  3616. characterMakers.push(() => makeCharacter(
  3617. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3618. {
  3619. front: {
  3620. height: math.unit(2, "meter"),
  3621. weight: math.unit(80, "kg"),
  3622. name: "Front",
  3623. image: {
  3624. source: "./media/characters/jennifer/front.svg",
  3625. bottom: 0.11,
  3626. extra: 1.16
  3627. }
  3628. },
  3629. frontAlt: {
  3630. height: math.unit(2, "meter"),
  3631. weight: math.unit(80, "kg"),
  3632. name: "Front (Alt)",
  3633. image: {
  3634. source: "./media/characters/jennifer/front-alt.svg"
  3635. }
  3636. }
  3637. },
  3638. [
  3639. {
  3640. name: "Canon Height",
  3641. height: math.unit(120, "feet"),
  3642. default: true
  3643. },
  3644. {
  3645. name: "Macro+",
  3646. height: math.unit(300, "feet")
  3647. },
  3648. {
  3649. name: "Megamacro",
  3650. height: math.unit(20000, "feet")
  3651. }
  3652. ]
  3653. ))
  3654. characterMakers.push(() => makeCharacter(
  3655. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3656. {
  3657. front: {
  3658. height: math.unit(2, "meter"),
  3659. weight: math.unit(50, "kg"),
  3660. name: "Front",
  3661. image: {
  3662. source: "./media/characters/kalista/front.svg",
  3663. extra: 1314/1145,
  3664. bottom: 101/1415
  3665. }
  3666. },
  3667. back: {
  3668. height: math.unit(2, "meter"),
  3669. weight: math.unit(50, "kg"),
  3670. name: "Back",
  3671. image: {
  3672. source: "./media/characters/kalista/back.svg",
  3673. extra: 1366 / 1156,
  3674. bottom: 33.9 / 1362.78
  3675. }
  3676. }
  3677. },
  3678. [
  3679. {
  3680. name: "Uncomfortably Small",
  3681. height: math.unit(10, "feet")
  3682. },
  3683. {
  3684. name: "Small",
  3685. height: math.unit(30, "feet")
  3686. },
  3687. {
  3688. name: "Macro",
  3689. height: math.unit(100, "feet"),
  3690. default: true
  3691. },
  3692. {
  3693. name: "Macro+",
  3694. height: math.unit(2000, "feet")
  3695. },
  3696. {
  3697. name: "True Form",
  3698. height: math.unit(8924, "miles")
  3699. }
  3700. ]
  3701. ))
  3702. characterMakers.push(() => makeCharacter(
  3703. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3704. {
  3705. front: {
  3706. height: math.unit(2, "meter"),
  3707. weight: math.unit(120, "kg"),
  3708. name: "Front",
  3709. image: {
  3710. source: "./media/characters/ggv/front.svg"
  3711. }
  3712. },
  3713. side: {
  3714. height: math.unit(2, "meter"),
  3715. weight: math.unit(120, "kg"),
  3716. name: "Side",
  3717. image: {
  3718. source: "./media/characters/ggv/side.svg"
  3719. }
  3720. }
  3721. },
  3722. [
  3723. {
  3724. name: "Extremely Puny",
  3725. height: math.unit(9 + 5 / 12, "feet")
  3726. },
  3727. {
  3728. name: "Horribly Small",
  3729. height: math.unit(47.7, "miles"),
  3730. default: true
  3731. },
  3732. {
  3733. name: "Reasonably Sized",
  3734. height: math.unit(25000, "parsecs")
  3735. },
  3736. {
  3737. name: "Slightly Uncompressed",
  3738. height: math.unit(7.77e31, "parsecs")
  3739. },
  3740. {
  3741. name: "Omniversal",
  3742. height: math.unit(1e300, "meters")
  3743. },
  3744. ]
  3745. ))
  3746. characterMakers.push(() => makeCharacter(
  3747. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3748. {
  3749. front: {
  3750. height: math.unit(2, "meter"),
  3751. weight: math.unit(75, "lb"),
  3752. name: "Front",
  3753. image: {
  3754. source: "./media/characters/napalm/front.svg"
  3755. }
  3756. },
  3757. back: {
  3758. height: math.unit(2, "meter"),
  3759. weight: math.unit(75, "lb"),
  3760. name: "Back",
  3761. image: {
  3762. source: "./media/characters/napalm/back.svg"
  3763. }
  3764. }
  3765. },
  3766. [
  3767. {
  3768. name: "Standard",
  3769. height: math.unit(55, "feet"),
  3770. default: true
  3771. }
  3772. ]
  3773. ))
  3774. characterMakers.push(() => makeCharacter(
  3775. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3776. {
  3777. front: {
  3778. height: math.unit(7 + 5 / 6, "feet"),
  3779. weight: math.unit(325, "lb"),
  3780. name: "Front",
  3781. image: {
  3782. source: "./media/characters/asana/front.svg",
  3783. extra: 1133 / 1060,
  3784. bottom: 15.2 / 1148.6
  3785. }
  3786. },
  3787. back: {
  3788. height: math.unit(7 + 5 / 6, "feet"),
  3789. weight: math.unit(325, "lb"),
  3790. name: "Back",
  3791. image: {
  3792. source: "./media/characters/asana/back.svg",
  3793. extra: 1114 / 1043,
  3794. bottom: 5 / 1120
  3795. }
  3796. },
  3797. dressedDark: {
  3798. height: math.unit(7 + 5 / 6, "feet"),
  3799. weight: math.unit(325, "lb"),
  3800. name: "Dressed (Dark)",
  3801. image: {
  3802. source: "./media/characters/asana/dressed-dark.svg",
  3803. extra: 1133 / 1060,
  3804. bottom: 15.2 / 1148.6
  3805. }
  3806. },
  3807. dressedLight: {
  3808. height: math.unit(7 + 5 / 6, "feet"),
  3809. weight: math.unit(325, "lb"),
  3810. name: "Dressed (Light)",
  3811. image: {
  3812. source: "./media/characters/asana/dressed-light.svg",
  3813. extra: 1133 / 1060,
  3814. bottom: 15.2 / 1148.6
  3815. }
  3816. },
  3817. },
  3818. [
  3819. {
  3820. name: "Standard",
  3821. height: math.unit(7 + 5 / 6, "feet"),
  3822. default: true
  3823. },
  3824. {
  3825. name: "Large",
  3826. height: math.unit(10, "meters")
  3827. },
  3828. {
  3829. name: "Macro",
  3830. height: math.unit(2500, "meters")
  3831. },
  3832. {
  3833. name: "Megamacro",
  3834. height: math.unit(5e6, "meters")
  3835. },
  3836. {
  3837. name: "Examacro",
  3838. height: math.unit(5e12, "lightyears")
  3839. },
  3840. {
  3841. name: "Max Size",
  3842. height: math.unit(1e31, "lightyears")
  3843. }
  3844. ]
  3845. ))
  3846. characterMakers.push(() => makeCharacter(
  3847. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3848. {
  3849. front: {
  3850. height: math.unit(2, "meter"),
  3851. weight: math.unit(60, "kg"),
  3852. name: "Front",
  3853. image: {
  3854. source: "./media/characters/ebony/front.svg",
  3855. bottom: 0.03,
  3856. extra: 1045 / 810 + 0.03
  3857. }
  3858. },
  3859. side: {
  3860. height: math.unit(2, "meter"),
  3861. weight: math.unit(60, "kg"),
  3862. name: "Side",
  3863. image: {
  3864. source: "./media/characters/ebony/side.svg",
  3865. bottom: 0.03,
  3866. extra: 1045 / 810 + 0.03
  3867. }
  3868. },
  3869. back: {
  3870. height: math.unit(2, "meter"),
  3871. weight: math.unit(60, "kg"),
  3872. name: "Back",
  3873. image: {
  3874. source: "./media/characters/ebony/back.svg",
  3875. bottom: 0.01,
  3876. extra: 1045 / 810 + 0.01
  3877. }
  3878. },
  3879. },
  3880. [
  3881. // TODO check why I did this lol
  3882. {
  3883. name: "Standard",
  3884. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3885. default: true
  3886. },
  3887. {
  3888. name: "Macro",
  3889. height: math.unit(200, "feet")
  3890. },
  3891. {
  3892. name: "Gigamacro",
  3893. height: math.unit(13000, "km")
  3894. }
  3895. ]
  3896. ))
  3897. characterMakers.push(() => makeCharacter(
  3898. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3899. {
  3900. front: {
  3901. height: math.unit(6, "feet"),
  3902. weight: math.unit(175, "lb"),
  3903. name: "Front",
  3904. image: {
  3905. source: "./media/characters/mountain/front.svg",
  3906. extra: 972 / 955,
  3907. bottom: 64 / 1036.6
  3908. }
  3909. },
  3910. back: {
  3911. height: math.unit(6, "feet"),
  3912. weight: math.unit(175, "lb"),
  3913. name: "Back",
  3914. image: {
  3915. source: "./media/characters/mountain/back.svg",
  3916. extra: 970 / 950,
  3917. bottom: 28.25 / 999
  3918. }
  3919. },
  3920. },
  3921. [
  3922. {
  3923. name: "Large",
  3924. height: math.unit(20, "meters")
  3925. },
  3926. {
  3927. name: "Macro",
  3928. height: math.unit(300, "meters")
  3929. },
  3930. {
  3931. name: "Gigamacro",
  3932. height: math.unit(10000, "km"),
  3933. default: true
  3934. },
  3935. {
  3936. name: "Examacro",
  3937. height: math.unit(10e9, "lightyears")
  3938. }
  3939. ]
  3940. ))
  3941. characterMakers.push(() => makeCharacter(
  3942. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  3943. {
  3944. front: {
  3945. height: math.unit(8, "feet"),
  3946. weight: math.unit(500, "lb"),
  3947. name: "Front",
  3948. image: {
  3949. source: "./media/characters/rick/front.svg"
  3950. }
  3951. }
  3952. },
  3953. [
  3954. {
  3955. name: "Normal",
  3956. height: math.unit(8, "feet"),
  3957. default: true
  3958. },
  3959. {
  3960. name: "Macro",
  3961. height: math.unit(5, "km")
  3962. }
  3963. ]
  3964. ))
  3965. characterMakers.push(() => makeCharacter(
  3966. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  3967. {
  3968. front: {
  3969. height: math.unit(8, "feet"),
  3970. weight: math.unit(120, "lb"),
  3971. name: "Front",
  3972. image: {
  3973. source: "./media/characters/ona/front.svg"
  3974. }
  3975. },
  3976. frontAlt: {
  3977. height: math.unit(8, "feet"),
  3978. weight: math.unit(120, "lb"),
  3979. name: "Front (Alt)",
  3980. image: {
  3981. source: "./media/characters/ona/front-alt.svg"
  3982. }
  3983. },
  3984. back: {
  3985. height: math.unit(8, "feet"),
  3986. weight: math.unit(120, "lb"),
  3987. name: "Back",
  3988. image: {
  3989. source: "./media/characters/ona/back.svg"
  3990. }
  3991. },
  3992. foot: {
  3993. height: math.unit(1.1, "feet"),
  3994. name: "Foot",
  3995. image: {
  3996. source: "./media/characters/ona/foot.svg"
  3997. }
  3998. }
  3999. },
  4000. [
  4001. {
  4002. name: "Megamacro",
  4003. height: math.unit(70, "km"),
  4004. default: true
  4005. },
  4006. {
  4007. name: "Gigamacro",
  4008. height: math.unit(681818, "miles")
  4009. },
  4010. {
  4011. name: "Examacro",
  4012. height: math.unit(3800000, "lightyears")
  4013. },
  4014. ]
  4015. ))
  4016. characterMakers.push(() => makeCharacter(
  4017. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  4018. {
  4019. front: {
  4020. height: math.unit(12, "feet"),
  4021. weight: math.unit(3000, "lb"),
  4022. name: "Front",
  4023. image: {
  4024. source: "./media/characters/mech/front.svg",
  4025. extra: 2900 / 2770,
  4026. bottom: 110 / 3010
  4027. }
  4028. },
  4029. back: {
  4030. height: math.unit(12, "feet"),
  4031. weight: math.unit(3000, "lb"),
  4032. name: "Back",
  4033. image: {
  4034. source: "./media/characters/mech/back.svg",
  4035. extra: 3011 / 2890,
  4036. bottom: 94 / 3105
  4037. }
  4038. },
  4039. maw: {
  4040. height: math.unit(3.07, "feet"),
  4041. name: "Maw",
  4042. image: {
  4043. source: "./media/characters/mech/maw.svg"
  4044. }
  4045. },
  4046. head: {
  4047. height: math.unit(2.82, "feet"),
  4048. name: "Head",
  4049. image: {
  4050. source: "./media/characters/mech/head.svg"
  4051. }
  4052. },
  4053. dick: {
  4054. height: math.unit(1.43, "feet"),
  4055. name: "Dick",
  4056. image: {
  4057. source: "./media/characters/mech/dick.svg"
  4058. }
  4059. },
  4060. },
  4061. [
  4062. {
  4063. name: "Normal",
  4064. height: math.unit(12, "feet")
  4065. },
  4066. {
  4067. name: "Macro",
  4068. height: math.unit(300, "feet"),
  4069. default: true
  4070. },
  4071. {
  4072. name: "Macro+",
  4073. height: math.unit(1500, "feet")
  4074. },
  4075. ]
  4076. ))
  4077. characterMakers.push(() => makeCharacter(
  4078. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  4079. {
  4080. front: {
  4081. height: math.unit(1.3, "meter"),
  4082. weight: math.unit(30, "kg"),
  4083. name: "Front",
  4084. image: {
  4085. source: "./media/characters/gregory/front.svg",
  4086. }
  4087. }
  4088. },
  4089. [
  4090. {
  4091. name: "Normal",
  4092. height: math.unit(1.3, "meter"),
  4093. default: true
  4094. },
  4095. {
  4096. name: "Macro",
  4097. height: math.unit(20, "meter")
  4098. }
  4099. ]
  4100. ))
  4101. characterMakers.push(() => makeCharacter(
  4102. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  4103. {
  4104. front: {
  4105. height: math.unit(2.8, "meter"),
  4106. weight: math.unit(200, "kg"),
  4107. name: "Front",
  4108. image: {
  4109. source: "./media/characters/elory/front.svg",
  4110. }
  4111. }
  4112. },
  4113. [
  4114. {
  4115. name: "Normal",
  4116. height: math.unit(2.8, "meter"),
  4117. default: true
  4118. },
  4119. {
  4120. name: "Macro",
  4121. height: math.unit(38, "meter")
  4122. }
  4123. ]
  4124. ))
  4125. characterMakers.push(() => makeCharacter(
  4126. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4127. {
  4128. front: {
  4129. height: math.unit(470, "feet"),
  4130. weight: math.unit(924, "tons"),
  4131. name: "Front",
  4132. image: {
  4133. source: "./media/characters/angelpatamon/front.svg",
  4134. }
  4135. }
  4136. },
  4137. [
  4138. {
  4139. name: "Normal",
  4140. height: math.unit(470, "feet"),
  4141. default: true
  4142. },
  4143. {
  4144. name: "Deity Size I",
  4145. height: math.unit(28651.2, "km")
  4146. },
  4147. {
  4148. name: "Deity Size II",
  4149. height: math.unit(171907.2, "km")
  4150. }
  4151. ]
  4152. ))
  4153. characterMakers.push(() => makeCharacter(
  4154. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4155. {
  4156. side: {
  4157. height: math.unit(7.2, "meter"),
  4158. weight: math.unit(8.2, "tons"),
  4159. name: "Side",
  4160. image: {
  4161. source: "./media/characters/cryae/side.svg",
  4162. extra: 3500 / 1500
  4163. }
  4164. }
  4165. },
  4166. [
  4167. {
  4168. name: "Normal",
  4169. height: math.unit(7.2, "meter"),
  4170. default: true
  4171. }
  4172. ]
  4173. ))
  4174. characterMakers.push(() => makeCharacter(
  4175. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4176. {
  4177. front: {
  4178. height: math.unit(6, "feet"),
  4179. weight: math.unit(175, "lb"),
  4180. name: "Front",
  4181. image: {
  4182. source: "./media/characters/xera/front.svg",
  4183. extra: 2377 / 1972,
  4184. bottom: 75.5 / 2452
  4185. }
  4186. },
  4187. side: {
  4188. height: math.unit(6, "feet"),
  4189. weight: math.unit(175, "lb"),
  4190. name: "Side",
  4191. image: {
  4192. source: "./media/characters/xera/side.svg",
  4193. extra: 2345 / 2019,
  4194. bottom: 39.7 / 2384
  4195. }
  4196. },
  4197. back: {
  4198. height: math.unit(6, "feet"),
  4199. weight: math.unit(175, "lb"),
  4200. name: "Back",
  4201. image: {
  4202. source: "./media/characters/xera/back.svg",
  4203. extra: 2095 / 1984,
  4204. bottom: 67 / 2166
  4205. }
  4206. },
  4207. },
  4208. [
  4209. {
  4210. name: "Small",
  4211. height: math.unit(10, "feet")
  4212. },
  4213. {
  4214. name: "Macro",
  4215. height: math.unit(500, "meters"),
  4216. default: true
  4217. },
  4218. {
  4219. name: "Macro+",
  4220. height: math.unit(10, "km")
  4221. },
  4222. {
  4223. name: "Gigamacro",
  4224. height: math.unit(25000, "km")
  4225. },
  4226. {
  4227. name: "Teramacro",
  4228. height: math.unit(3e6, "km")
  4229. }
  4230. ]
  4231. ))
  4232. characterMakers.push(() => makeCharacter(
  4233. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4234. {
  4235. front: {
  4236. height: math.unit(6, "feet"),
  4237. weight: math.unit(175, "lb"),
  4238. name: "Front",
  4239. image: {
  4240. source: "./media/characters/nebula/front.svg",
  4241. extra: 2566 / 2362,
  4242. bottom: 81 / 2644
  4243. }
  4244. }
  4245. },
  4246. [
  4247. {
  4248. name: "Small",
  4249. height: math.unit(4.5, "meters")
  4250. },
  4251. {
  4252. name: "Macro",
  4253. height: math.unit(1500, "meters"),
  4254. default: true
  4255. },
  4256. {
  4257. name: "Megamacro",
  4258. height: math.unit(150, "km")
  4259. },
  4260. {
  4261. name: "Gigamacro",
  4262. height: math.unit(27000, "km")
  4263. }
  4264. ]
  4265. ))
  4266. characterMakers.push(() => makeCharacter(
  4267. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4268. {
  4269. front: {
  4270. height: math.unit(6, "feet"),
  4271. weight: math.unit(225, "lb"),
  4272. name: "Front",
  4273. image: {
  4274. source: "./media/characters/abysgar/front.svg"
  4275. }
  4276. }
  4277. },
  4278. [
  4279. {
  4280. name: "Small",
  4281. height: math.unit(4.5, "meters")
  4282. },
  4283. {
  4284. name: "Macro",
  4285. height: math.unit(1250, "meters"),
  4286. default: true
  4287. },
  4288. {
  4289. name: "Megamacro",
  4290. height: math.unit(125, "km")
  4291. },
  4292. {
  4293. name: "Gigamacro",
  4294. height: math.unit(26000, "km")
  4295. }
  4296. ]
  4297. ))
  4298. characterMakers.push(() => makeCharacter(
  4299. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  4300. {
  4301. front: {
  4302. height: math.unit(6, "feet"),
  4303. weight: math.unit(180, "lb"),
  4304. name: "Front",
  4305. image: {
  4306. source: "./media/characters/yakuz/front.svg"
  4307. }
  4308. }
  4309. },
  4310. [
  4311. {
  4312. name: "Small",
  4313. height: math.unit(5, "meters")
  4314. },
  4315. {
  4316. name: "Macro",
  4317. height: math.unit(1500, "meters"),
  4318. default: true
  4319. },
  4320. {
  4321. name: "Megamacro",
  4322. height: math.unit(200, "km")
  4323. },
  4324. {
  4325. name: "Gigamacro",
  4326. height: math.unit(100000, "km")
  4327. }
  4328. ]
  4329. ))
  4330. characterMakers.push(() => makeCharacter(
  4331. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4332. {
  4333. front: {
  4334. height: math.unit(6, "feet"),
  4335. weight: math.unit(175, "lb"),
  4336. name: "Front",
  4337. image: {
  4338. source: "./media/characters/mirova/front.svg",
  4339. extra: 3334 / 3071,
  4340. bottom: 42 / 3375.6
  4341. }
  4342. }
  4343. },
  4344. [
  4345. {
  4346. name: "Small",
  4347. height: math.unit(5, "meters")
  4348. },
  4349. {
  4350. name: "Macro",
  4351. height: math.unit(900, "meters"),
  4352. default: true
  4353. },
  4354. {
  4355. name: "Megamacro",
  4356. height: math.unit(135, "km")
  4357. },
  4358. {
  4359. name: "Gigamacro",
  4360. height: math.unit(20000, "km")
  4361. }
  4362. ]
  4363. ))
  4364. characterMakers.push(() => makeCharacter(
  4365. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4366. {
  4367. side: {
  4368. height: math.unit(28.35, "feet"),
  4369. weight: math.unit(99.75, "tons"),
  4370. name: "Side",
  4371. image: {
  4372. source: "./media/characters/asana-mech/side.svg",
  4373. extra: 923 / 699,
  4374. bottom: 50 / 975
  4375. }
  4376. },
  4377. chaingun: {
  4378. height: math.unit(7, "feet"),
  4379. weight: math.unit(2400, "lb"),
  4380. name: "Chaingun",
  4381. image: {
  4382. source: "./media/characters/asana-mech/chaingun.svg"
  4383. }
  4384. },
  4385. laser: {
  4386. height: math.unit(7.12, "feet"),
  4387. weight: math.unit(2000, "lb"),
  4388. name: "Laser",
  4389. image: {
  4390. source: "./media/characters/asana-mech/laser.svg"
  4391. }
  4392. },
  4393. },
  4394. [
  4395. {
  4396. name: "Normal",
  4397. height: math.unit(28.35, "feet"),
  4398. default: true
  4399. },
  4400. {
  4401. name: "Macro",
  4402. height: math.unit(2500, "feet")
  4403. },
  4404. {
  4405. name: "Megamacro",
  4406. height: math.unit(25, "miles")
  4407. },
  4408. {
  4409. name: "Examacro",
  4410. height: math.unit(6e8, "lightyears")
  4411. },
  4412. ]
  4413. ))
  4414. characterMakers.push(() => makeCharacter(
  4415. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4416. {
  4417. front: {
  4418. height: math.unit(5, "meters"),
  4419. weight: math.unit(1000, "kg"),
  4420. name: "Front",
  4421. image: {
  4422. source: "./media/characters/asche/front.svg",
  4423. extra: 1258 / 1190,
  4424. bottom: 47 / 1305
  4425. }
  4426. },
  4427. frontUnderwear: {
  4428. height: math.unit(5, "meters"),
  4429. weight: math.unit(1000, "kg"),
  4430. name: "Front (Underwear)",
  4431. image: {
  4432. source: "./media/characters/asche/front-underwear.svg",
  4433. extra: 1258 / 1190,
  4434. bottom: 47 / 1305
  4435. }
  4436. },
  4437. frontDressed: {
  4438. height: math.unit(5, "meters"),
  4439. weight: math.unit(1000, "kg"),
  4440. name: "Front (Dressed)",
  4441. image: {
  4442. source: "./media/characters/asche/front-dressed.svg",
  4443. extra: 1258 / 1190,
  4444. bottom: 47 / 1305
  4445. }
  4446. },
  4447. frontArmor: {
  4448. height: math.unit(5, "meters"),
  4449. weight: math.unit(1000, "kg"),
  4450. name: "Front (Armored)",
  4451. image: {
  4452. source: "./media/characters/asche/front-armored.svg",
  4453. extra: 1374 / 1308,
  4454. bottom: 23 / 1397
  4455. }
  4456. },
  4457. mp724: {
  4458. height: math.unit(0.96, "meters"),
  4459. weight: math.unit(38, "kg"),
  4460. name: "H&K MP724",
  4461. image: {
  4462. source: "./media/characters/asche/h&k-mp724.svg"
  4463. }
  4464. },
  4465. side: {
  4466. height: math.unit(5, "meters"),
  4467. weight: math.unit(1000, "kg"),
  4468. name: "Side",
  4469. image: {
  4470. source: "./media/characters/asche/side.svg",
  4471. extra: 1717 / 1609,
  4472. bottom: 0.005
  4473. }
  4474. },
  4475. back: {
  4476. height: math.unit(5, "meters"),
  4477. weight: math.unit(1000, "kg"),
  4478. name: "Back",
  4479. image: {
  4480. source: "./media/characters/asche/back.svg",
  4481. extra: 1570 / 1501
  4482. }
  4483. },
  4484. },
  4485. [
  4486. {
  4487. name: "DEFCON 5",
  4488. height: math.unit(5, "meters")
  4489. },
  4490. {
  4491. name: "DEFCON 4",
  4492. height: math.unit(500, "meters"),
  4493. default: true
  4494. },
  4495. {
  4496. name: "DEFCON 3",
  4497. height: math.unit(5, "km")
  4498. },
  4499. {
  4500. name: "DEFCON 2",
  4501. height: math.unit(500, "km")
  4502. },
  4503. {
  4504. name: "DEFCON 1",
  4505. height: math.unit(500000, "km")
  4506. },
  4507. {
  4508. name: "DEFCON 0",
  4509. height: math.unit(3, "gigaparsecs")
  4510. },
  4511. ]
  4512. ))
  4513. characterMakers.push(() => makeCharacter(
  4514. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4515. {
  4516. front: {
  4517. height: math.unit(2, "meters"),
  4518. weight: math.unit(76, "kg"),
  4519. name: "Front",
  4520. image: {
  4521. source: "./media/characters/gale/front.svg"
  4522. }
  4523. },
  4524. frontAlt1: {
  4525. height: math.unit(2, "meters"),
  4526. weight: math.unit(76, "kg"),
  4527. name: "Front (Alt 1)",
  4528. image: {
  4529. source: "./media/characters/gale/front-alt-1.svg"
  4530. }
  4531. },
  4532. frontAlt2: {
  4533. height: math.unit(2, "meters"),
  4534. weight: math.unit(76, "kg"),
  4535. name: "Front (Alt 2)",
  4536. image: {
  4537. source: "./media/characters/gale/front-alt-2.svg"
  4538. }
  4539. },
  4540. },
  4541. [
  4542. {
  4543. name: "Normal",
  4544. height: math.unit(7, "feet")
  4545. },
  4546. {
  4547. name: "Macro",
  4548. height: math.unit(150, "feet"),
  4549. default: true
  4550. },
  4551. {
  4552. name: "Macro+",
  4553. height: math.unit(300, "feet")
  4554. },
  4555. ]
  4556. ))
  4557. characterMakers.push(() => makeCharacter(
  4558. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4559. {
  4560. front: {
  4561. height: math.unit(5 + 10/12, "feet"),
  4562. weight: math.unit(67, "kg"),
  4563. name: "Front",
  4564. image: {
  4565. source: "./media/characters/draylen/front.svg",
  4566. extra: 832/777,
  4567. bottom: 85/917
  4568. }
  4569. }
  4570. },
  4571. [
  4572. {
  4573. name: "Normal",
  4574. height: math.unit(5 + 10/12, "feet")
  4575. },
  4576. {
  4577. name: "Macro",
  4578. height: math.unit(150, "feet"),
  4579. default: true
  4580. }
  4581. ]
  4582. ))
  4583. characterMakers.push(() => makeCharacter(
  4584. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4585. {
  4586. front: {
  4587. height: math.unit(7 + 9 / 12, "feet"),
  4588. weight: math.unit(379, "lbs"),
  4589. name: "Front",
  4590. image: {
  4591. source: "./media/characters/chez/front.svg"
  4592. }
  4593. },
  4594. side: {
  4595. height: math.unit(7 + 9 / 12, "feet"),
  4596. weight: math.unit(379, "lbs"),
  4597. name: "Side",
  4598. image: {
  4599. source: "./media/characters/chez/side.svg"
  4600. }
  4601. }
  4602. },
  4603. [
  4604. {
  4605. name: "Normal",
  4606. height: math.unit(7 + 9 / 12, "feet"),
  4607. default: true
  4608. },
  4609. {
  4610. name: "God King",
  4611. height: math.unit(9750000, "meters")
  4612. }
  4613. ]
  4614. ))
  4615. characterMakers.push(() => makeCharacter(
  4616. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4617. {
  4618. front: {
  4619. height: math.unit(6, "feet"),
  4620. weight: math.unit(275, "lbs"),
  4621. name: "Front",
  4622. image: {
  4623. source: "./media/characters/kaylum/front.svg",
  4624. bottom: 0.01,
  4625. extra: 1166 / 1031
  4626. }
  4627. },
  4628. frontWingless: {
  4629. height: math.unit(6, "feet"),
  4630. weight: math.unit(275, "lbs"),
  4631. name: "Front (Wingless)",
  4632. image: {
  4633. source: "./media/characters/kaylum/front-wingless.svg",
  4634. bottom: 0.01,
  4635. extra: 1117 / 1031
  4636. }
  4637. }
  4638. },
  4639. [
  4640. {
  4641. name: "Normal",
  4642. height: math.unit(3.05, "meters")
  4643. },
  4644. {
  4645. name: "Master",
  4646. height: math.unit(5.5, "meters")
  4647. },
  4648. {
  4649. name: "Rampage",
  4650. height: math.unit(19, "meters")
  4651. },
  4652. {
  4653. name: "Macro Lite",
  4654. height: math.unit(37, "meters")
  4655. },
  4656. {
  4657. name: "Hyper Predator",
  4658. height: math.unit(61, "meters")
  4659. },
  4660. {
  4661. name: "Macro",
  4662. height: math.unit(138, "meters"),
  4663. default: true
  4664. }
  4665. ]
  4666. ))
  4667. characterMakers.push(() => makeCharacter(
  4668. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4669. {
  4670. front: {
  4671. height: math.unit(6, "feet"),
  4672. weight: math.unit(150, "lbs"),
  4673. name: "Front",
  4674. image: {
  4675. source: "./media/characters/geta/front.svg"
  4676. }
  4677. }
  4678. },
  4679. [
  4680. {
  4681. name: "Micro",
  4682. height: math.unit(3, "inches"),
  4683. default: true
  4684. },
  4685. {
  4686. name: "Normal",
  4687. height: math.unit(5 + 5 / 12, "feet")
  4688. }
  4689. ]
  4690. ))
  4691. characterMakers.push(() => makeCharacter(
  4692. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4693. {
  4694. front: {
  4695. height: math.unit(6, "feet"),
  4696. weight: math.unit(300, "lbs"),
  4697. name: "Front",
  4698. image: {
  4699. source: "./media/characters/tyrnn/front.svg"
  4700. }
  4701. }
  4702. },
  4703. [
  4704. {
  4705. name: "Main Height",
  4706. height: math.unit(355, "feet"),
  4707. default: true
  4708. },
  4709. {
  4710. name: "Fave. Height",
  4711. height: math.unit(2400, "feet")
  4712. }
  4713. ]
  4714. ))
  4715. characterMakers.push(() => makeCharacter(
  4716. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4717. {
  4718. front: {
  4719. height: math.unit(6, "feet"),
  4720. weight: math.unit(300, "lbs"),
  4721. name: "Front",
  4722. image: {
  4723. source: "./media/characters/appledectomy/front.svg"
  4724. }
  4725. }
  4726. },
  4727. [
  4728. {
  4729. name: "Macro",
  4730. height: math.unit(2500, "feet")
  4731. },
  4732. {
  4733. name: "Megamacro",
  4734. height: math.unit(50, "miles"),
  4735. default: true
  4736. },
  4737. {
  4738. name: "Gigamacro",
  4739. height: math.unit(5000, "miles")
  4740. },
  4741. {
  4742. name: "Teramacro",
  4743. height: math.unit(250000, "miles")
  4744. },
  4745. ]
  4746. ))
  4747. characterMakers.push(() => makeCharacter(
  4748. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4749. {
  4750. front: {
  4751. height: math.unit(6, "feet"),
  4752. weight: math.unit(200, "lbs"),
  4753. name: "Front",
  4754. image: {
  4755. source: "./media/characters/vulpes/front.svg",
  4756. extra: 573 / 543,
  4757. bottom: 0.033
  4758. }
  4759. },
  4760. side: {
  4761. height: math.unit(6, "feet"),
  4762. weight: math.unit(200, "lbs"),
  4763. name: "Side",
  4764. image: {
  4765. source: "./media/characters/vulpes/side.svg",
  4766. extra: 577 / 549,
  4767. bottom: 11 / 588
  4768. }
  4769. },
  4770. back: {
  4771. height: math.unit(6, "feet"),
  4772. weight: math.unit(200, "lbs"),
  4773. name: "Back",
  4774. image: {
  4775. source: "./media/characters/vulpes/back.svg",
  4776. extra: 573 / 549,
  4777. bottom: 20 / 593
  4778. }
  4779. },
  4780. feet: {
  4781. height: math.unit(1.276, "feet"),
  4782. name: "Feet",
  4783. image: {
  4784. source: "./media/characters/vulpes/feet.svg"
  4785. }
  4786. },
  4787. maw: {
  4788. height: math.unit(1.18, "feet"),
  4789. name: "Maw",
  4790. image: {
  4791. source: "./media/characters/vulpes/maw.svg"
  4792. }
  4793. },
  4794. },
  4795. [
  4796. {
  4797. name: "Micro",
  4798. height: math.unit(2, "inches")
  4799. },
  4800. {
  4801. name: "Normal",
  4802. height: math.unit(6.3, "feet")
  4803. },
  4804. {
  4805. name: "Macro",
  4806. height: math.unit(850, "feet")
  4807. },
  4808. {
  4809. name: "Megamacro",
  4810. height: math.unit(7500, "feet"),
  4811. default: true
  4812. },
  4813. {
  4814. name: "Gigamacro",
  4815. height: math.unit(570000, "miles")
  4816. }
  4817. ]
  4818. ))
  4819. characterMakers.push(() => makeCharacter(
  4820. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4821. {
  4822. front: {
  4823. height: math.unit(6, "feet"),
  4824. weight: math.unit(210, "lbs"),
  4825. name: "Front",
  4826. image: {
  4827. source: "./media/characters/rain-fallen/front.svg"
  4828. }
  4829. },
  4830. side: {
  4831. height: math.unit(6, "feet"),
  4832. weight: math.unit(210, "lbs"),
  4833. name: "Side",
  4834. image: {
  4835. source: "./media/characters/rain-fallen/side.svg"
  4836. }
  4837. },
  4838. back: {
  4839. height: math.unit(6, "feet"),
  4840. weight: math.unit(210, "lbs"),
  4841. name: "Back",
  4842. image: {
  4843. source: "./media/characters/rain-fallen/back.svg"
  4844. }
  4845. },
  4846. feral: {
  4847. height: math.unit(9, "feet"),
  4848. weight: math.unit(700, "lbs"),
  4849. name: "Feral",
  4850. image: {
  4851. source: "./media/characters/rain-fallen/feral.svg"
  4852. }
  4853. },
  4854. },
  4855. [
  4856. {
  4857. name: "Meddling with Mortals",
  4858. height: math.unit(8 + 8/12, "feet")
  4859. },
  4860. {
  4861. name: "Normal",
  4862. height: math.unit(5, "meter")
  4863. },
  4864. {
  4865. name: "Macro",
  4866. height: math.unit(150, "meter"),
  4867. default: true
  4868. },
  4869. {
  4870. name: "Megamacro",
  4871. height: math.unit(278e6, "meter")
  4872. },
  4873. {
  4874. name: "Gigamacro",
  4875. height: math.unit(2e9, "meter")
  4876. },
  4877. {
  4878. name: "Teramacro",
  4879. height: math.unit(8e12, "meter")
  4880. },
  4881. {
  4882. name: "Devourer",
  4883. height: math.unit(14, "zettameters")
  4884. },
  4885. {
  4886. name: "Scarlet King",
  4887. height: math.unit(18, "yottameters")
  4888. },
  4889. {
  4890. name: "Void",
  4891. height: math.unit(1e88, "yottameters")
  4892. }
  4893. ]
  4894. ))
  4895. characterMakers.push(() => makeCharacter(
  4896. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4897. {
  4898. standing: {
  4899. height: math.unit(6, "feet"),
  4900. weight: math.unit(180, "lbs"),
  4901. name: "Standing",
  4902. image: {
  4903. source: "./media/characters/zaakira/standing.svg",
  4904. extra: 1599/1504,
  4905. bottom: 39/1638
  4906. }
  4907. },
  4908. laying: {
  4909. height: math.unit(3, "feet"),
  4910. weight: math.unit(180, "lbs"),
  4911. name: "Laying",
  4912. image: {
  4913. source: "./media/characters/zaakira/laying.svg"
  4914. }
  4915. },
  4916. },
  4917. [
  4918. {
  4919. name: "Normal",
  4920. height: math.unit(12, "feet")
  4921. },
  4922. {
  4923. name: "Macro",
  4924. height: math.unit(279, "feet"),
  4925. default: true
  4926. }
  4927. ]
  4928. ))
  4929. characterMakers.push(() => makeCharacter(
  4930. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4931. {
  4932. femSfw: {
  4933. height: math.unit(8, "feet"),
  4934. weight: math.unit(350, "lb"),
  4935. name: "Fem",
  4936. image: {
  4937. source: "./media/characters/sigvald/fem-sfw.svg",
  4938. extra: 182 / 164,
  4939. bottom: 8.7 / 190.5
  4940. }
  4941. },
  4942. femNsfw: {
  4943. height: math.unit(8, "feet"),
  4944. weight: math.unit(350, "lb"),
  4945. name: "Fem (NSFW)",
  4946. image: {
  4947. source: "./media/characters/sigvald/fem-nsfw.svg",
  4948. extra: 182 / 164,
  4949. bottom: 8.7 / 190.5
  4950. }
  4951. },
  4952. maleNsfw: {
  4953. height: math.unit(8, "feet"),
  4954. weight: math.unit(350, "lb"),
  4955. name: "Male (NSFW)",
  4956. image: {
  4957. source: "./media/characters/sigvald/male-nsfw.svg",
  4958. extra: 182 / 164,
  4959. bottom: 8.7 / 190.5
  4960. }
  4961. },
  4962. hermNsfw: {
  4963. height: math.unit(8, "feet"),
  4964. weight: math.unit(350, "lb"),
  4965. name: "Herm (NSFW)",
  4966. image: {
  4967. source: "./media/characters/sigvald/herm-nsfw.svg",
  4968. extra: 182 / 164,
  4969. bottom: 8.7 / 190.5
  4970. }
  4971. },
  4972. dick: {
  4973. height: math.unit(2.36, "feet"),
  4974. name: "Dick",
  4975. image: {
  4976. source: "./media/characters/sigvald/dick.svg"
  4977. }
  4978. },
  4979. eye: {
  4980. height: math.unit(0.31, "feet"),
  4981. name: "Eye",
  4982. image: {
  4983. source: "./media/characters/sigvald/eye.svg"
  4984. }
  4985. },
  4986. mouth: {
  4987. height: math.unit(0.92, "feet"),
  4988. name: "Mouth",
  4989. image: {
  4990. source: "./media/characters/sigvald/mouth.svg"
  4991. }
  4992. },
  4993. paws: {
  4994. height: math.unit(2.2, "feet"),
  4995. name: "Paws",
  4996. image: {
  4997. source: "./media/characters/sigvald/paws.svg"
  4998. }
  4999. }
  5000. },
  5001. [
  5002. {
  5003. name: "Normal",
  5004. height: math.unit(8, "feet")
  5005. },
  5006. {
  5007. name: "Large",
  5008. height: math.unit(12, "feet")
  5009. },
  5010. {
  5011. name: "Larger",
  5012. height: math.unit(20, "feet")
  5013. },
  5014. {
  5015. name: "Macro",
  5016. height: math.unit(150, "feet")
  5017. },
  5018. {
  5019. name: "Macro+",
  5020. height: math.unit(200, "feet"),
  5021. default: true
  5022. },
  5023. ]
  5024. ))
  5025. characterMakers.push(() => makeCharacter(
  5026. { name: "Scott", species: ["fox"], tags: ["taur"] },
  5027. {
  5028. side: {
  5029. height: math.unit(12, "feet"),
  5030. weight: math.unit(2000, "kg"),
  5031. name: "Side",
  5032. image: {
  5033. source: "./media/characters/scott/side.svg",
  5034. extra: 754 / 724,
  5035. bottom: 0.069
  5036. }
  5037. },
  5038. upright: {
  5039. height: math.unit(12, "feet"),
  5040. weight: math.unit(2000, "kg"),
  5041. name: "Upright",
  5042. image: {
  5043. source: "./media/characters/scott/upright.svg",
  5044. extra: 3881 / 3722,
  5045. bottom: 0.05
  5046. }
  5047. },
  5048. },
  5049. [
  5050. {
  5051. name: "Normal",
  5052. height: math.unit(12, "feet"),
  5053. default: true
  5054. },
  5055. ]
  5056. ))
  5057. characterMakers.push(() => makeCharacter(
  5058. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  5059. {
  5060. side: {
  5061. height: math.unit(8, "meters"),
  5062. weight: math.unit(84755, "lbs"),
  5063. name: "Side",
  5064. image: {
  5065. source: "./media/characters/tobias/side.svg",
  5066. extra: 1474 / 1096,
  5067. bottom: 38.9 / 1513.1235
  5068. }
  5069. },
  5070. },
  5071. [
  5072. {
  5073. name: "Normal",
  5074. height: math.unit(8, "meters"),
  5075. default: true
  5076. },
  5077. ]
  5078. ))
  5079. characterMakers.push(() => makeCharacter(
  5080. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  5081. {
  5082. front: {
  5083. height: math.unit(5.5, "feet"),
  5084. weight: math.unit(400, "lbs"),
  5085. name: "Front",
  5086. image: {
  5087. source: "./media/characters/kieran/front.svg",
  5088. extra: 2694 / 2364,
  5089. bottom: 217 / 2908
  5090. }
  5091. },
  5092. side: {
  5093. height: math.unit(5.5, "feet"),
  5094. weight: math.unit(400, "lbs"),
  5095. name: "Side",
  5096. image: {
  5097. source: "./media/characters/kieran/side.svg",
  5098. extra: 875 / 777,
  5099. bottom: 84.6 / 959
  5100. }
  5101. },
  5102. },
  5103. [
  5104. {
  5105. name: "Normal",
  5106. height: math.unit(5.5, "feet"),
  5107. default: true
  5108. },
  5109. ]
  5110. ))
  5111. characterMakers.push(() => makeCharacter(
  5112. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  5113. {
  5114. side: {
  5115. height: math.unit(2, "meters"),
  5116. weight: math.unit(70, "kg"),
  5117. name: "Side",
  5118. image: {
  5119. source: "./media/characters/sanya/side.svg",
  5120. bottom: 0.02,
  5121. extra: 1.02
  5122. }
  5123. },
  5124. },
  5125. [
  5126. {
  5127. name: "Small",
  5128. height: math.unit(2, "meters")
  5129. },
  5130. {
  5131. name: "Normal",
  5132. height: math.unit(3, "meters")
  5133. },
  5134. {
  5135. name: "Macro",
  5136. height: math.unit(16, "meters"),
  5137. default: true
  5138. },
  5139. ]
  5140. ))
  5141. characterMakers.push(() => makeCharacter(
  5142. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  5143. {
  5144. front: {
  5145. height: math.unit(2, "meters"),
  5146. weight: math.unit(120, "kg"),
  5147. name: "Front",
  5148. image: {
  5149. source: "./media/characters/miranda/front.svg",
  5150. extra: 195 / 185,
  5151. bottom: 10.9 / 206.5
  5152. }
  5153. },
  5154. back: {
  5155. height: math.unit(2, "meters"),
  5156. weight: math.unit(120, "kg"),
  5157. name: "Back",
  5158. image: {
  5159. source: "./media/characters/miranda/back.svg",
  5160. extra: 201 / 193,
  5161. bottom: 2.3 / 203.7
  5162. }
  5163. },
  5164. },
  5165. [
  5166. {
  5167. name: "Normal",
  5168. height: math.unit(10, "feet"),
  5169. default: true
  5170. }
  5171. ]
  5172. ))
  5173. characterMakers.push(() => makeCharacter(
  5174. { name: "James", species: ["deer"], tags: ["anthro"] },
  5175. {
  5176. side: {
  5177. height: math.unit(2, "meters"),
  5178. weight: math.unit(100, "kg"),
  5179. name: "Front",
  5180. image: {
  5181. source: "./media/characters/james/front.svg",
  5182. extra: 10 / 8.5
  5183. }
  5184. },
  5185. },
  5186. [
  5187. {
  5188. name: "Normal",
  5189. height: math.unit(8.5, "feet"),
  5190. default: true
  5191. }
  5192. ]
  5193. ))
  5194. characterMakers.push(() => makeCharacter(
  5195. { name: "Heather", species: ["cow"], tags: ["taur"] },
  5196. {
  5197. side: {
  5198. height: math.unit(9.5, "feet"),
  5199. weight: math.unit(2500, "lbs"),
  5200. name: "Side",
  5201. image: {
  5202. source: "./media/characters/heather/side.svg"
  5203. }
  5204. },
  5205. },
  5206. [
  5207. {
  5208. name: "Normal",
  5209. height: math.unit(9.5, "feet"),
  5210. default: true
  5211. }
  5212. ]
  5213. ))
  5214. characterMakers.push(() => makeCharacter(
  5215. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  5216. {
  5217. side: {
  5218. height: math.unit(6.5, "feet"),
  5219. weight: math.unit(400, "lbs"),
  5220. name: "Side",
  5221. image: {
  5222. source: "./media/characters/lukas/side.svg",
  5223. extra: 7.25 / 6.5
  5224. }
  5225. },
  5226. },
  5227. [
  5228. {
  5229. name: "Normal",
  5230. height: math.unit(6.5, "feet"),
  5231. default: true
  5232. }
  5233. ]
  5234. ))
  5235. characterMakers.push(() => makeCharacter(
  5236. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  5237. {
  5238. side: {
  5239. height: math.unit(5, "feet"),
  5240. weight: math.unit(3000, "lbs"),
  5241. name: "Side",
  5242. image: {
  5243. source: "./media/characters/louise/side.svg"
  5244. }
  5245. },
  5246. },
  5247. [
  5248. {
  5249. name: "Normal",
  5250. height: math.unit(5, "feet"),
  5251. default: true
  5252. }
  5253. ]
  5254. ))
  5255. characterMakers.push(() => makeCharacter(
  5256. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  5257. {
  5258. side: {
  5259. height: math.unit(6, "feet"),
  5260. weight: math.unit(150, "lbs"),
  5261. name: "Side",
  5262. image: {
  5263. source: "./media/characters/ramona/side.svg",
  5264. extra: 871/854,
  5265. bottom: 41/912
  5266. }
  5267. },
  5268. },
  5269. [
  5270. {
  5271. name: "Normal",
  5272. height: math.unit(5.3, "meters"),
  5273. default: true
  5274. },
  5275. {
  5276. name: "Macro",
  5277. height: math.unit(20, "stories")
  5278. },
  5279. {
  5280. name: "Macro+",
  5281. height: math.unit(50, "stories")
  5282. },
  5283. ]
  5284. ))
  5285. characterMakers.push(() => makeCharacter(
  5286. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  5287. {
  5288. standing: {
  5289. height: math.unit(5.75, "feet"),
  5290. weight: math.unit(160, "lbs"),
  5291. name: "Standing",
  5292. image: {
  5293. source: "./media/characters/deerpuff/standing.svg",
  5294. extra: 682 / 624
  5295. }
  5296. },
  5297. sitting: {
  5298. height: math.unit(5.75 / 1.79, "feet"),
  5299. weight: math.unit(160, "lbs"),
  5300. name: "Sitting",
  5301. image: {
  5302. source: "./media/characters/deerpuff/sitting.svg",
  5303. bottom: 44 / 400,
  5304. extra: 1
  5305. }
  5306. },
  5307. taurLaying: {
  5308. height: math.unit(6, "feet"),
  5309. weight: math.unit(400, "lbs"),
  5310. name: "Taur (Laying)",
  5311. image: {
  5312. source: "./media/characters/deerpuff/taur-laying.svg"
  5313. }
  5314. },
  5315. },
  5316. [
  5317. {
  5318. name: "Puffball",
  5319. height: math.unit(6, "inches")
  5320. },
  5321. {
  5322. name: "Normalpuff",
  5323. height: math.unit(5.75, "feet")
  5324. },
  5325. {
  5326. name: "Macropuff",
  5327. height: math.unit(1500, "feet"),
  5328. default: true
  5329. },
  5330. {
  5331. name: "Megapuff",
  5332. height: math.unit(500, "miles")
  5333. },
  5334. {
  5335. name: "Gigapuff",
  5336. height: math.unit(250000, "miles")
  5337. },
  5338. {
  5339. name: "Omegapuff",
  5340. height: math.unit(1000, "lightyears")
  5341. },
  5342. ]
  5343. ))
  5344. characterMakers.push(() => makeCharacter(
  5345. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5346. {
  5347. stomping: {
  5348. height: math.unit(6, "feet"),
  5349. weight: math.unit(170, "lbs"),
  5350. name: "Stomping",
  5351. image: {
  5352. source: "./media/characters/vivian/stomping.svg"
  5353. }
  5354. },
  5355. sitting: {
  5356. height: math.unit(6 / 1.75, "feet"),
  5357. weight: math.unit(170, "lbs"),
  5358. name: "Sitting",
  5359. image: {
  5360. source: "./media/characters/vivian/sitting.svg",
  5361. bottom: 1 / 6.4,
  5362. extra: 1,
  5363. }
  5364. },
  5365. },
  5366. [
  5367. {
  5368. name: "Normal",
  5369. height: math.unit(7, "feet"),
  5370. default: true
  5371. },
  5372. {
  5373. name: "Macro",
  5374. height: math.unit(10, "stories")
  5375. },
  5376. {
  5377. name: "Macro+",
  5378. height: math.unit(30, "stories")
  5379. },
  5380. {
  5381. name: "Megamacro",
  5382. height: math.unit(10, "miles")
  5383. },
  5384. {
  5385. name: "Megamacro+",
  5386. height: math.unit(2750000, "meters")
  5387. },
  5388. ]
  5389. ))
  5390. characterMakers.push(() => makeCharacter(
  5391. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5392. {
  5393. front: {
  5394. height: math.unit(6, "feet"),
  5395. weight: math.unit(160, "lbs"),
  5396. name: "Front",
  5397. image: {
  5398. source: "./media/characters/prince/front.svg",
  5399. extra: 3400 / 3000
  5400. }
  5401. },
  5402. jumping: {
  5403. height: math.unit(6, "feet"),
  5404. weight: math.unit(160, "lbs"),
  5405. name: "Jumping",
  5406. image: {
  5407. source: "./media/characters/prince/jump.svg",
  5408. extra: 2555 / 2134
  5409. }
  5410. },
  5411. },
  5412. [
  5413. {
  5414. name: "Normal",
  5415. height: math.unit(7.75, "feet"),
  5416. default: true
  5417. },
  5418. {
  5419. name: "Not cute",
  5420. height: math.unit(17, "feet")
  5421. },
  5422. {
  5423. name: "I said NOT",
  5424. height: math.unit(91, "feet")
  5425. },
  5426. {
  5427. name: "Please stop",
  5428. height: math.unit(560, "feet")
  5429. },
  5430. {
  5431. name: "What have you done",
  5432. height: math.unit(2200, "feet")
  5433. },
  5434. {
  5435. name: "Deer God",
  5436. height: math.unit(3.6, "miles")
  5437. },
  5438. ]
  5439. ))
  5440. characterMakers.push(() => makeCharacter(
  5441. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5442. {
  5443. standing: {
  5444. height: math.unit(6, "feet"),
  5445. weight: math.unit(300, "lbs"),
  5446. name: "Standing",
  5447. image: {
  5448. source: "./media/characters/psymon/standing.svg",
  5449. extra: 1888 / 1810,
  5450. bottom: 0.05
  5451. }
  5452. },
  5453. slithering: {
  5454. height: math.unit(6, "feet"),
  5455. weight: math.unit(300, "lbs"),
  5456. name: "Slithering",
  5457. image: {
  5458. source: "./media/characters/psymon/slithering.svg",
  5459. extra: 1330 / 1224
  5460. }
  5461. },
  5462. slitheringAlt: {
  5463. height: math.unit(6, "feet"),
  5464. weight: math.unit(300, "lbs"),
  5465. name: "Slithering (Alt)",
  5466. image: {
  5467. source: "./media/characters/psymon/slithering-alt.svg",
  5468. extra: 1330 / 1224
  5469. }
  5470. },
  5471. },
  5472. [
  5473. {
  5474. name: "Normal",
  5475. height: math.unit(11.25, "feet"),
  5476. default: true
  5477. },
  5478. {
  5479. name: "Large",
  5480. height: math.unit(27, "feet")
  5481. },
  5482. {
  5483. name: "Giant",
  5484. height: math.unit(87, "feet")
  5485. },
  5486. {
  5487. name: "Macro",
  5488. height: math.unit(365, "feet")
  5489. },
  5490. {
  5491. name: "Megamacro",
  5492. height: math.unit(3, "miles")
  5493. },
  5494. {
  5495. name: "World Serpent",
  5496. height: math.unit(8000, "miles")
  5497. },
  5498. ]
  5499. ))
  5500. characterMakers.push(() => makeCharacter(
  5501. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5502. {
  5503. front: {
  5504. height: math.unit(6, "feet"),
  5505. weight: math.unit(180, "lbs"),
  5506. name: "Front",
  5507. image: {
  5508. source: "./media/characters/daimos/front.svg",
  5509. extra: 4160 / 3897,
  5510. bottom: 0.021
  5511. }
  5512. }
  5513. },
  5514. [
  5515. {
  5516. name: "Normal",
  5517. height: math.unit(8, "feet"),
  5518. default: true
  5519. },
  5520. {
  5521. name: "Big Dog",
  5522. height: math.unit(22, "feet")
  5523. },
  5524. {
  5525. name: "Macro",
  5526. height: math.unit(127, "feet")
  5527. },
  5528. {
  5529. name: "Megamacro",
  5530. height: math.unit(3600, "feet")
  5531. },
  5532. ]
  5533. ))
  5534. characterMakers.push(() => makeCharacter(
  5535. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5536. {
  5537. side: {
  5538. height: math.unit(6, "feet"),
  5539. weight: math.unit(180, "lbs"),
  5540. name: "Side",
  5541. image: {
  5542. source: "./media/characters/blake/side.svg",
  5543. extra: 1212 / 1120,
  5544. bottom: 0.05
  5545. }
  5546. },
  5547. crouched: {
  5548. height: math.unit(6 * 0.57, "feet"),
  5549. weight: math.unit(180, "lbs"),
  5550. name: "Crouched",
  5551. image: {
  5552. source: "./media/characters/blake/crouched.svg",
  5553. extra: 840 / 587,
  5554. bottom: 0.04
  5555. }
  5556. },
  5557. bent: {
  5558. height: math.unit(6 * 0.75, "feet"),
  5559. weight: math.unit(180, "lbs"),
  5560. name: "Bent",
  5561. image: {
  5562. source: "./media/characters/blake/bent.svg",
  5563. extra: 592 / 544,
  5564. bottom: 0.035
  5565. }
  5566. },
  5567. },
  5568. [
  5569. {
  5570. name: "Normal",
  5571. height: math.unit(8 + 1 / 6, "feet"),
  5572. default: true
  5573. },
  5574. {
  5575. name: "Big Backside",
  5576. height: math.unit(37, "feet")
  5577. },
  5578. {
  5579. name: "Subway Shredder",
  5580. height: math.unit(72, "feet")
  5581. },
  5582. {
  5583. name: "City Carver",
  5584. height: math.unit(1675, "feet")
  5585. },
  5586. {
  5587. name: "Tectonic Tweaker",
  5588. height: math.unit(2300, "miles")
  5589. },
  5590. ]
  5591. ))
  5592. characterMakers.push(() => makeCharacter(
  5593. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5594. {
  5595. front: {
  5596. height: math.unit(6, "feet"),
  5597. weight: math.unit(180, "lbs"),
  5598. name: "Front",
  5599. image: {
  5600. source: "./media/characters/guisetto/front.svg",
  5601. extra: 856 / 817,
  5602. bottom: 0.06
  5603. }
  5604. },
  5605. airborne: {
  5606. height: math.unit(6, "feet"),
  5607. weight: math.unit(180, "lbs"),
  5608. name: "Airborne",
  5609. image: {
  5610. source: "./media/characters/guisetto/airborne.svg",
  5611. extra: 584 / 525
  5612. }
  5613. },
  5614. },
  5615. [
  5616. {
  5617. name: "Normal",
  5618. height: math.unit(10 + 11 / 12, "feet"),
  5619. default: true
  5620. },
  5621. {
  5622. name: "Large",
  5623. height: math.unit(35, "feet")
  5624. },
  5625. {
  5626. name: "Macro",
  5627. height: math.unit(475, "feet")
  5628. },
  5629. ]
  5630. ))
  5631. characterMakers.push(() => makeCharacter(
  5632. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5633. {
  5634. front: {
  5635. height: math.unit(6, "feet"),
  5636. weight: math.unit(180, "lbs"),
  5637. name: "Front",
  5638. image: {
  5639. source: "./media/characters/luxor/front.svg",
  5640. extra: 2940 / 2152
  5641. }
  5642. },
  5643. back: {
  5644. height: math.unit(6, "feet"),
  5645. weight: math.unit(180, "lbs"),
  5646. name: "Back",
  5647. image: {
  5648. source: "./media/characters/luxor/back.svg",
  5649. extra: 1083 / 960
  5650. }
  5651. },
  5652. },
  5653. [
  5654. {
  5655. name: "Normal",
  5656. height: math.unit(5 + 5 / 6, "feet"),
  5657. default: true
  5658. },
  5659. {
  5660. name: "Lamp",
  5661. height: math.unit(50, "feet")
  5662. },
  5663. {
  5664. name: "Lämp",
  5665. height: math.unit(300, "feet")
  5666. },
  5667. {
  5668. name: "The sun is a lamp",
  5669. height: math.unit(250000, "miles")
  5670. },
  5671. ]
  5672. ))
  5673. characterMakers.push(() => makeCharacter(
  5674. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5675. {
  5676. front: {
  5677. height: math.unit(6, "feet"),
  5678. weight: math.unit(50, "lbs"),
  5679. name: "Front",
  5680. image: {
  5681. source: "./media/characters/huoyan/front.svg"
  5682. }
  5683. },
  5684. side: {
  5685. height: math.unit(6, "feet"),
  5686. weight: math.unit(180, "lbs"),
  5687. name: "Side",
  5688. image: {
  5689. source: "./media/characters/huoyan/side.svg"
  5690. }
  5691. },
  5692. },
  5693. [
  5694. {
  5695. name: "Chef",
  5696. height: math.unit(9, "feet")
  5697. },
  5698. {
  5699. name: "Normal",
  5700. height: math.unit(65, "feet"),
  5701. default: true
  5702. },
  5703. {
  5704. name: "Macro",
  5705. height: math.unit(780, "feet")
  5706. },
  5707. {
  5708. name: "Flaming Mountain",
  5709. height: math.unit(4.8, "miles")
  5710. },
  5711. {
  5712. name: "Celestial",
  5713. height: math.unit(765000, "miles")
  5714. },
  5715. ]
  5716. ))
  5717. characterMakers.push(() => makeCharacter(
  5718. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5719. {
  5720. front: {
  5721. height: math.unit(5 + 3 / 4, "feet"),
  5722. weight: math.unit(120, "lbs"),
  5723. name: "Front",
  5724. image: {
  5725. source: "./media/characters/tails/front.svg"
  5726. }
  5727. }
  5728. },
  5729. [
  5730. {
  5731. name: "Normal",
  5732. height: math.unit(5 + 3 / 4, "feet"),
  5733. default: true
  5734. }
  5735. ]
  5736. ))
  5737. characterMakers.push(() => makeCharacter(
  5738. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5739. {
  5740. front: {
  5741. height: math.unit(4, "feet"),
  5742. weight: math.unit(50, "lbs"),
  5743. name: "Front",
  5744. image: {
  5745. source: "./media/characters/rainy/front.svg"
  5746. }
  5747. }
  5748. },
  5749. [
  5750. {
  5751. name: "Macro",
  5752. height: math.unit(800, "feet"),
  5753. default: true
  5754. }
  5755. ]
  5756. ))
  5757. characterMakers.push(() => makeCharacter(
  5758. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5759. {
  5760. front: {
  5761. height: math.unit(6, "feet"),
  5762. weight: math.unit(150, "lbs"),
  5763. name: "Front",
  5764. image: {
  5765. source: "./media/characters/rainier/front.svg"
  5766. }
  5767. }
  5768. },
  5769. [
  5770. {
  5771. name: "Micro",
  5772. height: math.unit(2, "mm"),
  5773. default: true
  5774. }
  5775. ]
  5776. ))
  5777. characterMakers.push(() => makeCharacter(
  5778. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  5779. {
  5780. front: {
  5781. height: math.unit(8 + 4/12, "feet"),
  5782. name: "Front",
  5783. image: {
  5784. source: "./media/characters/andy-renard/front.svg",
  5785. extra: 1839/1726,
  5786. bottom: 134/1973
  5787. }
  5788. },
  5789. back: {
  5790. height: math.unit(8 + 4/12, "feet"),
  5791. name: "Back",
  5792. image: {
  5793. source: "./media/characters/andy-renard/back.svg",
  5794. extra: 1838/1710,
  5795. bottom: 105/1943
  5796. }
  5797. },
  5798. },
  5799. [
  5800. {
  5801. name: "Tall",
  5802. height: math.unit(8 + 4/12, "feet")
  5803. },
  5804. {
  5805. name: "Mini Macro",
  5806. height: math.unit(15, "feet"),
  5807. default: true
  5808. },
  5809. {
  5810. name: "Macro",
  5811. height: math.unit(100, "feet")
  5812. },
  5813. {
  5814. name: "Mega Macro",
  5815. height: math.unit(1000, "feet")
  5816. },
  5817. {
  5818. name: "Giga Macro",
  5819. height: math.unit(10, "miles")
  5820. },
  5821. {
  5822. name: "God Macro",
  5823. height: math.unit(1, "multiverse")
  5824. },
  5825. ]
  5826. ))
  5827. characterMakers.push(() => makeCharacter(
  5828. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5829. {
  5830. front: {
  5831. height: math.unit(6, "feet"),
  5832. weight: math.unit(210, "lbs"),
  5833. name: "Front",
  5834. image: {
  5835. source: "./media/characters/cimmaron/front-sfw.svg",
  5836. extra: 701 / 676,
  5837. bottom: 0.046
  5838. }
  5839. },
  5840. back: {
  5841. height: math.unit(6, "feet"),
  5842. weight: math.unit(210, "lbs"),
  5843. name: "Back",
  5844. image: {
  5845. source: "./media/characters/cimmaron/back-sfw.svg",
  5846. extra: 701 / 676,
  5847. bottom: 0.046
  5848. }
  5849. },
  5850. frontNsfw: {
  5851. height: math.unit(6, "feet"),
  5852. weight: math.unit(210, "lbs"),
  5853. name: "Front (NSFW)",
  5854. image: {
  5855. source: "./media/characters/cimmaron/front-nsfw.svg",
  5856. extra: 701 / 676,
  5857. bottom: 0.046
  5858. }
  5859. },
  5860. backNsfw: {
  5861. height: math.unit(6, "feet"),
  5862. weight: math.unit(210, "lbs"),
  5863. name: "Back (NSFW)",
  5864. image: {
  5865. source: "./media/characters/cimmaron/back-nsfw.svg",
  5866. extra: 701 / 676,
  5867. bottom: 0.046
  5868. }
  5869. },
  5870. dick: {
  5871. height: math.unit(1.714, "feet"),
  5872. name: "Dick",
  5873. image: {
  5874. source: "./media/characters/cimmaron/dick.svg"
  5875. }
  5876. },
  5877. },
  5878. [
  5879. {
  5880. name: "Normal",
  5881. height: math.unit(6, "feet"),
  5882. default: true
  5883. },
  5884. {
  5885. name: "Macro Mayor",
  5886. height: math.unit(350, "meters")
  5887. },
  5888. ]
  5889. ))
  5890. characterMakers.push(() => makeCharacter(
  5891. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5892. {
  5893. front: {
  5894. height: math.unit(6, "feet"),
  5895. weight: math.unit(200, "lbs"),
  5896. name: "Front",
  5897. image: {
  5898. source: "./media/characters/akari/front.svg",
  5899. extra: 962 / 901,
  5900. bottom: 0.04
  5901. }
  5902. }
  5903. },
  5904. [
  5905. {
  5906. name: "Micro",
  5907. height: math.unit(5, "inches"),
  5908. default: true
  5909. },
  5910. {
  5911. name: "Normal",
  5912. height: math.unit(7, "feet")
  5913. },
  5914. ]
  5915. ))
  5916. characterMakers.push(() => makeCharacter(
  5917. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  5918. {
  5919. front: {
  5920. height: math.unit(6, "feet"),
  5921. weight: math.unit(140, "lbs"),
  5922. name: "Front",
  5923. image: {
  5924. source: "./media/characters/cynosura/front.svg",
  5925. extra: 896 / 847
  5926. }
  5927. },
  5928. back: {
  5929. height: math.unit(6, "feet"),
  5930. weight: math.unit(140, "lbs"),
  5931. name: "Back",
  5932. image: {
  5933. source: "./media/characters/cynosura/back.svg",
  5934. extra: 1365 / 1250
  5935. }
  5936. },
  5937. },
  5938. [
  5939. {
  5940. name: "Micro",
  5941. height: math.unit(4, "inches")
  5942. },
  5943. {
  5944. name: "Normal",
  5945. height: math.unit(5.75, "feet"),
  5946. default: true
  5947. },
  5948. {
  5949. name: "Tall",
  5950. height: math.unit(10, "feet")
  5951. },
  5952. {
  5953. name: "Big",
  5954. height: math.unit(20, "feet")
  5955. },
  5956. {
  5957. name: "Macro",
  5958. height: math.unit(50, "feet")
  5959. },
  5960. ]
  5961. ))
  5962. characterMakers.push(() => makeCharacter(
  5963. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  5964. {
  5965. front: {
  5966. height: math.unit(13 + 2/12, "feet"),
  5967. weight: math.unit(800, "kg"),
  5968. name: "Front",
  5969. image: {
  5970. source: "./media/characters/gin/front.svg",
  5971. extra: 1312/1191,
  5972. bottom: 45/1357
  5973. }
  5974. },
  5975. mouth: {
  5976. height: math.unit(2.39 * 1.8, "feet"),
  5977. name: "Mouth",
  5978. image: {
  5979. source: "./media/characters/gin/mouth.svg"
  5980. }
  5981. },
  5982. hand: {
  5983. height: math.unit(1.57 * 2.19, "feet"),
  5984. name: "Hand",
  5985. image: {
  5986. source: "./media/characters/gin/hand.svg"
  5987. }
  5988. },
  5989. foot: {
  5990. height: math.unit(6 / 4.25 * 2.19, "feet"),
  5991. name: "Foot",
  5992. image: {
  5993. source: "./media/characters/gin/foot.svg"
  5994. }
  5995. },
  5996. sole: {
  5997. height: math.unit(6 / 4.40 * 2.19, "feet"),
  5998. name: "Sole",
  5999. image: {
  6000. source: "./media/characters/gin/sole.svg"
  6001. }
  6002. },
  6003. },
  6004. [
  6005. {
  6006. name: "Very Small",
  6007. height: math.unit(13 + 2 / 12, "feet")
  6008. },
  6009. {
  6010. name: "Micro",
  6011. height: math.unit(600, "miles")
  6012. },
  6013. {
  6014. name: "Regular",
  6015. height: math.unit(20, "earths"),
  6016. default: true
  6017. },
  6018. {
  6019. name: "Macro",
  6020. height: math.unit(2.2, "solarradii")
  6021. },
  6022. {
  6023. name: "Teramacro",
  6024. height: math.unit(1.2, "galaxies")
  6025. },
  6026. {
  6027. name: "Omegamacro",
  6028. height: math.unit(200, "universes")
  6029. },
  6030. ]
  6031. ))
  6032. characterMakers.push(() => makeCharacter(
  6033. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  6034. {
  6035. front: {
  6036. height: math.unit(6 + 1 / 6, "feet"),
  6037. weight: math.unit(178, "lbs"),
  6038. name: "Front",
  6039. image: {
  6040. source: "./media/characters/guy/front.svg"
  6041. }
  6042. }
  6043. },
  6044. [
  6045. {
  6046. name: "Normal",
  6047. height: math.unit(6 + 1 / 6, "feet"),
  6048. default: true
  6049. },
  6050. {
  6051. name: "Large",
  6052. height: math.unit(25 + 7 / 12, "feet")
  6053. },
  6054. {
  6055. name: "Macro",
  6056. height: math.unit(60 + 9 / 12, "feet")
  6057. },
  6058. {
  6059. name: "Macro+",
  6060. height: math.unit(246, "feet")
  6061. },
  6062. {
  6063. name: "Macro++",
  6064. height: math.unit(878, "feet")
  6065. }
  6066. ]
  6067. ))
  6068. characterMakers.push(() => makeCharacter(
  6069. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  6070. {
  6071. front: {
  6072. height: math.unit(9, "feet"),
  6073. weight: math.unit(800, "lbs"),
  6074. name: "Front",
  6075. image: {
  6076. source: "./media/characters/tiberius/front.svg",
  6077. extra: 2295 / 2071
  6078. }
  6079. },
  6080. back: {
  6081. height: math.unit(9, "feet"),
  6082. weight: math.unit(800, "lbs"),
  6083. name: "Back",
  6084. image: {
  6085. source: "./media/characters/tiberius/back.svg",
  6086. extra: 2373 / 2160
  6087. }
  6088. },
  6089. },
  6090. [
  6091. {
  6092. name: "Normal",
  6093. height: math.unit(9, "feet"),
  6094. default: true
  6095. }
  6096. ]
  6097. ))
  6098. characterMakers.push(() => makeCharacter(
  6099. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  6100. {
  6101. front: {
  6102. height: math.unit(6, "feet"),
  6103. weight: math.unit(600, "lbs"),
  6104. name: "Front",
  6105. image: {
  6106. source: "./media/characters/surgo/front.svg",
  6107. extra: 3591 / 2227
  6108. }
  6109. },
  6110. back: {
  6111. height: math.unit(6, "feet"),
  6112. weight: math.unit(600, "lbs"),
  6113. name: "Back",
  6114. image: {
  6115. source: "./media/characters/surgo/back.svg",
  6116. extra: 3557 / 2228
  6117. }
  6118. },
  6119. laying: {
  6120. height: math.unit(6 * 0.85, "feet"),
  6121. weight: math.unit(600, "lbs"),
  6122. name: "Laying",
  6123. image: {
  6124. source: "./media/characters/surgo/laying.svg"
  6125. }
  6126. },
  6127. },
  6128. [
  6129. {
  6130. name: "Normal",
  6131. height: math.unit(6, "feet"),
  6132. default: true
  6133. }
  6134. ]
  6135. ))
  6136. characterMakers.push(() => makeCharacter(
  6137. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  6138. {
  6139. side: {
  6140. height: math.unit(6, "feet"),
  6141. weight: math.unit(150, "lbs"),
  6142. name: "Side",
  6143. image: {
  6144. source: "./media/characters/cibus/side.svg",
  6145. extra: 800 / 400
  6146. }
  6147. },
  6148. },
  6149. [
  6150. {
  6151. name: "Normal",
  6152. height: math.unit(6, "feet"),
  6153. default: true
  6154. }
  6155. ]
  6156. ))
  6157. characterMakers.push(() => makeCharacter(
  6158. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  6159. {
  6160. front: {
  6161. height: math.unit(6, "feet"),
  6162. weight: math.unit(240, "lbs"),
  6163. name: "Front",
  6164. image: {
  6165. source: "./media/characters/nibbles/front.svg"
  6166. }
  6167. },
  6168. side: {
  6169. height: math.unit(6, "feet"),
  6170. weight: math.unit(240, "lbs"),
  6171. name: "Side",
  6172. image: {
  6173. source: "./media/characters/nibbles/side.svg"
  6174. }
  6175. },
  6176. },
  6177. [
  6178. {
  6179. name: "Normal",
  6180. height: math.unit(9, "feet"),
  6181. default: true
  6182. }
  6183. ]
  6184. ))
  6185. characterMakers.push(() => makeCharacter(
  6186. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  6187. {
  6188. side: {
  6189. height: math.unit(5 + 1 / 6, "feet"),
  6190. weight: math.unit(130, "lbs"),
  6191. name: "Side",
  6192. image: {
  6193. source: "./media/characters/rikky/side.svg",
  6194. extra: 851 / 801
  6195. }
  6196. },
  6197. },
  6198. [
  6199. {
  6200. name: "Normal",
  6201. height: math.unit(5 + 1 / 6, "feet")
  6202. },
  6203. {
  6204. name: "Macro",
  6205. height: math.unit(152, "feet"),
  6206. default: true
  6207. },
  6208. {
  6209. name: "Megamacro",
  6210. height: math.unit(7, "miles")
  6211. }
  6212. ]
  6213. ))
  6214. characterMakers.push(() => makeCharacter(
  6215. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  6216. {
  6217. side: {
  6218. height: math.unit(370, "cm"),
  6219. weight: math.unit(350, "lbs"),
  6220. name: "Side",
  6221. image: {
  6222. source: "./media/characters/malfressa/side.svg"
  6223. }
  6224. },
  6225. walking: {
  6226. height: math.unit(370, "cm"),
  6227. weight: math.unit(350, "lbs"),
  6228. name: "Walking",
  6229. image: {
  6230. source: "./media/characters/malfressa/walking.svg"
  6231. }
  6232. },
  6233. feral: {
  6234. height: math.unit(2500, "cm"),
  6235. weight: math.unit(100000, "lbs"),
  6236. name: "Feral",
  6237. image: {
  6238. source: "./media/characters/malfressa/feral.svg",
  6239. extra: 2108 / 837,
  6240. bottom: 0.02
  6241. }
  6242. },
  6243. },
  6244. [
  6245. {
  6246. name: "Normal",
  6247. height: math.unit(370, "cm")
  6248. },
  6249. {
  6250. name: "Macro",
  6251. height: math.unit(300, "meters"),
  6252. default: true
  6253. }
  6254. ]
  6255. ))
  6256. characterMakers.push(() => makeCharacter(
  6257. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  6258. {
  6259. front: {
  6260. height: math.unit(6, "feet"),
  6261. weight: math.unit(60, "kg"),
  6262. name: "Front",
  6263. image: {
  6264. source: "./media/characters/jaro/front.svg"
  6265. }
  6266. },
  6267. back: {
  6268. height: math.unit(6, "feet"),
  6269. weight: math.unit(60, "kg"),
  6270. name: "Back",
  6271. image: {
  6272. source: "./media/characters/jaro/back.svg"
  6273. }
  6274. },
  6275. },
  6276. [
  6277. {
  6278. name: "Micro",
  6279. height: math.unit(7, "inches")
  6280. },
  6281. {
  6282. name: "Normal",
  6283. height: math.unit(5.5, "feet"),
  6284. default: true
  6285. },
  6286. {
  6287. name: "Minimacro",
  6288. height: math.unit(20, "feet")
  6289. },
  6290. {
  6291. name: "Macro",
  6292. height: math.unit(200, "meters")
  6293. }
  6294. ]
  6295. ))
  6296. characterMakers.push(() => makeCharacter(
  6297. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  6298. {
  6299. front: {
  6300. height: math.unit(6, "feet"),
  6301. weight: math.unit(195, "lb"),
  6302. name: "Front",
  6303. image: {
  6304. source: "./media/characters/rogue/front.svg"
  6305. }
  6306. },
  6307. },
  6308. [
  6309. {
  6310. name: "Macro",
  6311. height: math.unit(90, "feet"),
  6312. default: true
  6313. },
  6314. ]
  6315. ))
  6316. characterMakers.push(() => makeCharacter(
  6317. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  6318. {
  6319. front: {
  6320. height: math.unit(5 + 8 / 12, "feet"),
  6321. weight: math.unit(140, "lb"),
  6322. name: "Front",
  6323. image: {
  6324. source: "./media/characters/piper/front.svg",
  6325. extra: 3948/3655,
  6326. bottom: 0/3948
  6327. }
  6328. },
  6329. },
  6330. [
  6331. {
  6332. name: "Micro",
  6333. height: math.unit(2, "inches")
  6334. },
  6335. {
  6336. name: "Normal",
  6337. height: math.unit(5 + 8 / 12, "feet")
  6338. },
  6339. {
  6340. name: "Macro",
  6341. height: math.unit(250, "feet"),
  6342. default: true
  6343. },
  6344. {
  6345. name: "Megamacro",
  6346. height: math.unit(7, "miles")
  6347. },
  6348. ]
  6349. ))
  6350. characterMakers.push(() => makeCharacter(
  6351. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  6352. {
  6353. front: {
  6354. height: math.unit(6, "feet"),
  6355. weight: math.unit(220, "lb"),
  6356. name: "Front",
  6357. image: {
  6358. source: "./media/characters/gemini/front.svg"
  6359. }
  6360. },
  6361. back: {
  6362. height: math.unit(6, "feet"),
  6363. weight: math.unit(220, "lb"),
  6364. name: "Back",
  6365. image: {
  6366. source: "./media/characters/gemini/back.svg"
  6367. }
  6368. },
  6369. kneeling: {
  6370. height: math.unit(6 / 1.5, "feet"),
  6371. weight: math.unit(220, "lb"),
  6372. name: "Kneeling",
  6373. image: {
  6374. source: "./media/characters/gemini/kneeling.svg",
  6375. bottom: 0.02
  6376. }
  6377. },
  6378. },
  6379. [
  6380. {
  6381. name: "Macro",
  6382. height: math.unit(300, "meters"),
  6383. default: true
  6384. },
  6385. {
  6386. name: "Megamacro",
  6387. height: math.unit(6900, "meters")
  6388. },
  6389. ]
  6390. ))
  6391. characterMakers.push(() => makeCharacter(
  6392. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6393. {
  6394. anthro: {
  6395. height: math.unit(2.35, "meters"),
  6396. weight: math.unit(73, "kg"),
  6397. name: "Anthro",
  6398. image: {
  6399. source: "./media/characters/alicia/anthro.svg",
  6400. extra: 2571 / 2385,
  6401. bottom: 75 / 2648
  6402. }
  6403. },
  6404. paw: {
  6405. height: math.unit(1.32, "feet"),
  6406. name: "Paw",
  6407. image: {
  6408. source: "./media/characters/alicia/paw.svg"
  6409. }
  6410. },
  6411. feral: {
  6412. height: math.unit(1.69, "meters"),
  6413. weight: math.unit(73, "kg"),
  6414. name: "Feral",
  6415. image: {
  6416. source: "./media/characters/alicia/feral.svg",
  6417. extra: 2123 / 1715,
  6418. bottom: 222 / 2349
  6419. }
  6420. },
  6421. },
  6422. [
  6423. {
  6424. name: "Normal",
  6425. height: math.unit(2.35, "meters")
  6426. },
  6427. {
  6428. name: "Macro",
  6429. height: math.unit(60, "meters"),
  6430. default: true
  6431. },
  6432. {
  6433. name: "Megamacro",
  6434. height: math.unit(10000, "kilometers")
  6435. },
  6436. ]
  6437. ))
  6438. characterMakers.push(() => makeCharacter(
  6439. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6440. {
  6441. front: {
  6442. height: math.unit(7, "feet"),
  6443. weight: math.unit(250, "lbs"),
  6444. name: "Front",
  6445. image: {
  6446. source: "./media/characters/archy/front.svg"
  6447. }
  6448. }
  6449. },
  6450. [
  6451. {
  6452. name: "Micro",
  6453. height: math.unit(1, "inch")
  6454. },
  6455. {
  6456. name: "Shorty",
  6457. height: math.unit(5, "feet")
  6458. },
  6459. {
  6460. name: "Normal",
  6461. height: math.unit(7, "feet")
  6462. },
  6463. {
  6464. name: "Macro",
  6465. height: math.unit(600, "meters"),
  6466. default: true
  6467. },
  6468. {
  6469. name: "Megamacro",
  6470. height: math.unit(1, "mile")
  6471. },
  6472. ]
  6473. ))
  6474. characterMakers.push(() => makeCharacter(
  6475. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6476. {
  6477. front: {
  6478. height: math.unit(1.65, "meters"),
  6479. weight: math.unit(74, "kg"),
  6480. name: "Front",
  6481. image: {
  6482. source: "./media/characters/berri/front.svg",
  6483. extra: 857 / 837,
  6484. bottom: 18 / 877
  6485. }
  6486. },
  6487. bum: {
  6488. height: math.unit(1.46, "feet"),
  6489. name: "Bum",
  6490. image: {
  6491. source: "./media/characters/berri/bum.svg"
  6492. }
  6493. },
  6494. mouth: {
  6495. height: math.unit(0.44, "feet"),
  6496. name: "Mouth",
  6497. image: {
  6498. source: "./media/characters/berri/mouth.svg"
  6499. }
  6500. },
  6501. paw: {
  6502. height: math.unit(0.826, "feet"),
  6503. name: "Paw",
  6504. image: {
  6505. source: "./media/characters/berri/paw.svg"
  6506. }
  6507. },
  6508. },
  6509. [
  6510. {
  6511. name: "Normal",
  6512. height: math.unit(1.65, "meters")
  6513. },
  6514. {
  6515. name: "Macro",
  6516. height: math.unit(60, "m"),
  6517. default: true
  6518. },
  6519. {
  6520. name: "Megamacro",
  6521. height: math.unit(9.213, "km")
  6522. },
  6523. {
  6524. name: "Planet Eater",
  6525. height: math.unit(489, "megameters")
  6526. },
  6527. {
  6528. name: "Teramacro",
  6529. height: math.unit(2471635000000, "meters")
  6530. },
  6531. {
  6532. name: "Examacro",
  6533. height: math.unit(8.0624e+26, "meters")
  6534. }
  6535. ]
  6536. ))
  6537. characterMakers.push(() => makeCharacter(
  6538. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  6539. {
  6540. front: {
  6541. height: math.unit(1.72, "meters"),
  6542. weight: math.unit(68, "kg"),
  6543. name: "Front",
  6544. image: {
  6545. source: "./media/characters/lexi/front.svg"
  6546. }
  6547. }
  6548. },
  6549. [
  6550. {
  6551. name: "Very Smol",
  6552. height: math.unit(10, "mm")
  6553. },
  6554. {
  6555. name: "Micro",
  6556. height: math.unit(6.8, "cm"),
  6557. default: true
  6558. },
  6559. {
  6560. name: "Normal",
  6561. height: math.unit(1.72, "m")
  6562. }
  6563. ]
  6564. ))
  6565. characterMakers.push(() => makeCharacter(
  6566. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  6567. {
  6568. front: {
  6569. height: math.unit(1.69, "meters"),
  6570. weight: math.unit(68, "kg"),
  6571. name: "Front",
  6572. image: {
  6573. source: "./media/characters/martin/front.svg",
  6574. extra: 596 / 581
  6575. }
  6576. }
  6577. },
  6578. [
  6579. {
  6580. name: "Micro",
  6581. height: math.unit(6.85, "cm"),
  6582. default: true
  6583. },
  6584. {
  6585. name: "Normal",
  6586. height: math.unit(1.69, "m")
  6587. }
  6588. ]
  6589. ))
  6590. characterMakers.push(() => makeCharacter(
  6591. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6592. {
  6593. front: {
  6594. height: math.unit(1.69, "meters"),
  6595. weight: math.unit(68, "kg"),
  6596. name: "Front",
  6597. image: {
  6598. source: "./media/characters/juno/front.svg"
  6599. }
  6600. }
  6601. },
  6602. [
  6603. {
  6604. name: "Micro",
  6605. height: math.unit(7, "cm")
  6606. },
  6607. {
  6608. name: "Normal",
  6609. height: math.unit(1.89, "m")
  6610. },
  6611. {
  6612. name: "Macro",
  6613. height: math.unit(353, "meters"),
  6614. default: true
  6615. }
  6616. ]
  6617. ))
  6618. characterMakers.push(() => makeCharacter(
  6619. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6620. {
  6621. front: {
  6622. height: math.unit(1.93, "meters"),
  6623. weight: math.unit(83, "kg"),
  6624. name: "Front",
  6625. image: {
  6626. source: "./media/characters/samantha/front.svg"
  6627. }
  6628. },
  6629. frontClothed: {
  6630. height: math.unit(1.93, "meters"),
  6631. weight: math.unit(83, "kg"),
  6632. name: "Front (Clothed)",
  6633. image: {
  6634. source: "./media/characters/samantha/front-clothed.svg"
  6635. }
  6636. },
  6637. back: {
  6638. height: math.unit(1.93, "meters"),
  6639. weight: math.unit(83, "kg"),
  6640. name: "Back",
  6641. image: {
  6642. source: "./media/characters/samantha/back.svg"
  6643. }
  6644. },
  6645. },
  6646. [
  6647. {
  6648. name: "Normal",
  6649. height: math.unit(1.93, "m")
  6650. },
  6651. {
  6652. name: "Macro",
  6653. height: math.unit(74, "meters"),
  6654. default: true
  6655. },
  6656. {
  6657. name: "Macro+",
  6658. height: math.unit(223, "meters"),
  6659. },
  6660. {
  6661. name: "Megamacro",
  6662. height: math.unit(8381, "meters"),
  6663. },
  6664. {
  6665. name: "Megamacro+",
  6666. height: math.unit(12000, "kilometers")
  6667. },
  6668. ]
  6669. ))
  6670. characterMakers.push(() => makeCharacter(
  6671. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6672. {
  6673. front: {
  6674. height: math.unit(1.92, "meters"),
  6675. weight: math.unit(80, "kg"),
  6676. name: "Front",
  6677. image: {
  6678. source: "./media/characters/dr-clay/front.svg"
  6679. }
  6680. },
  6681. frontClothed: {
  6682. height: math.unit(1.92, "meters"),
  6683. weight: math.unit(80, "kg"),
  6684. name: "Front (Clothed)",
  6685. image: {
  6686. source: "./media/characters/dr-clay/front-clothed.svg"
  6687. }
  6688. }
  6689. },
  6690. [
  6691. {
  6692. name: "Normal",
  6693. height: math.unit(1.92, "m")
  6694. },
  6695. {
  6696. name: "Macro",
  6697. height: math.unit(214, "meters"),
  6698. default: true
  6699. },
  6700. {
  6701. name: "Macro+",
  6702. height: math.unit(12.237, "meters"),
  6703. },
  6704. {
  6705. name: "Megamacro",
  6706. height: math.unit(557, "megameters"),
  6707. },
  6708. {
  6709. name: "Unimaginable",
  6710. height: math.unit(120e9, "lightyears")
  6711. },
  6712. ]
  6713. ))
  6714. characterMakers.push(() => makeCharacter(
  6715. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6716. {
  6717. front: {
  6718. height: math.unit(2, "meters"),
  6719. weight: math.unit(80, "kg"),
  6720. name: "Front",
  6721. image: {
  6722. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6723. }
  6724. }
  6725. },
  6726. [
  6727. {
  6728. name: "Teramacro",
  6729. height: math.unit(500000, "lightyears"),
  6730. default: true
  6731. },
  6732. ]
  6733. ))
  6734. characterMakers.push(() => makeCharacter(
  6735. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  6736. {
  6737. crux: {
  6738. height: math.unit(2, "meters"),
  6739. weight: math.unit(150, "kg"),
  6740. name: "Crux",
  6741. image: {
  6742. source: "./media/characters/vemus/crux.svg",
  6743. extra: 1074/936,
  6744. bottom: 23/1097
  6745. }
  6746. },
  6747. skunkTanuki: {
  6748. height: math.unit(2, "meters"),
  6749. weight: math.unit(150, "kg"),
  6750. name: "Skunk-Tanuki",
  6751. image: {
  6752. source: "./media/characters/vemus/skunk-tanuki.svg",
  6753. extra: 926/893,
  6754. bottom: 20/946
  6755. }
  6756. },
  6757. },
  6758. [
  6759. {
  6760. name: "Normal",
  6761. height: math.unit(3.75, "meters"),
  6762. default: true
  6763. },
  6764. {
  6765. name: "Big",
  6766. height: math.unit(8, "meters")
  6767. },
  6768. {
  6769. name: "Macro",
  6770. height: math.unit(100, "meters")
  6771. },
  6772. {
  6773. name: "Macro+",
  6774. height: math.unit(1500, "meters")
  6775. },
  6776. {
  6777. name: "Stellar",
  6778. height: math.unit(14e8, "meters")
  6779. },
  6780. ]
  6781. ))
  6782. characterMakers.push(() => makeCharacter(
  6783. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6784. {
  6785. front: {
  6786. height: math.unit(2, "meters"),
  6787. weight: math.unit(70, "kg"),
  6788. name: "Front",
  6789. image: {
  6790. source: "./media/characters/beherit/front.svg",
  6791. extra: 1408 / 1242
  6792. }
  6793. }
  6794. },
  6795. [
  6796. {
  6797. name: "Normal",
  6798. height: math.unit(6, "feet")
  6799. },
  6800. {
  6801. name: "Lorg",
  6802. height: math.unit(25, "feet"),
  6803. default: true
  6804. },
  6805. {
  6806. name: "Lorger",
  6807. height: math.unit(75, "feet")
  6808. },
  6809. {
  6810. name: "Macro",
  6811. height: math.unit(200, "meters")
  6812. },
  6813. ]
  6814. ))
  6815. characterMakers.push(() => makeCharacter(
  6816. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6817. {
  6818. front: {
  6819. height: math.unit(2, "meters"),
  6820. weight: math.unit(150, "kg"),
  6821. name: "Front",
  6822. image: {
  6823. source: "./media/characters/everett/front.svg",
  6824. extra: 2038 / 1737,
  6825. bottom: 0.03
  6826. }
  6827. },
  6828. paw: {
  6829. height: math.unit(2 / 3.6, "meters"),
  6830. name: "Paw",
  6831. image: {
  6832. source: "./media/characters/everett/paw.svg"
  6833. }
  6834. },
  6835. },
  6836. [
  6837. {
  6838. name: "Normal",
  6839. height: math.unit(15, "feet"),
  6840. default: true
  6841. },
  6842. {
  6843. name: "Lorg",
  6844. height: math.unit(70, "feet"),
  6845. default: true
  6846. },
  6847. {
  6848. name: "Lorger",
  6849. height: math.unit(250, "feet")
  6850. },
  6851. {
  6852. name: "Macro",
  6853. height: math.unit(500, "meters")
  6854. },
  6855. ]
  6856. ))
  6857. characterMakers.push(() => makeCharacter(
  6858. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  6859. {
  6860. front: {
  6861. height: math.unit(2, "meters"),
  6862. weight: math.unit(86, "kg"),
  6863. name: "Front",
  6864. image: {
  6865. source: "./media/characters/rose/front.svg",
  6866. extra: 1785/1636,
  6867. bottom: 30/1815
  6868. }
  6869. },
  6870. frontSporty: {
  6871. height: math.unit(2, "meters"),
  6872. weight: math.unit(86, "kg"),
  6873. name: "Front (Sporty)",
  6874. image: {
  6875. source: "./media/characters/rose/front-sporty.svg",
  6876. extra: 350/335,
  6877. bottom: 10/360
  6878. }
  6879. },
  6880. frontAlt: {
  6881. height: math.unit(1.6, "meters"),
  6882. weight: math.unit(86, "kg"),
  6883. name: "Front (Alt)",
  6884. image: {
  6885. source: "./media/characters/rose/front-alt.svg",
  6886. extra: 299/283,
  6887. bottom: 3/302
  6888. }
  6889. },
  6890. plush: {
  6891. height: math.unit(2, "meters"),
  6892. weight: math.unit(86/3, "kg"),
  6893. name: "Plush",
  6894. image: {
  6895. source: "./media/characters/rose/plush.svg",
  6896. extra: 361/337,
  6897. bottom: 11/372
  6898. }
  6899. },
  6900. },
  6901. [
  6902. {
  6903. name: "True Micro",
  6904. height: math.unit(9, "cm")
  6905. },
  6906. {
  6907. name: "Micro",
  6908. height: math.unit(16, "cm")
  6909. },
  6910. {
  6911. name: "Normal",
  6912. height: math.unit(1.85, "meters"),
  6913. default: true
  6914. },
  6915. {
  6916. name: "Mini-Macro",
  6917. height: math.unit(5, "meters")
  6918. },
  6919. {
  6920. name: "Macro",
  6921. height: math.unit(15, "meters")
  6922. },
  6923. {
  6924. name: "True Macro",
  6925. height: math.unit(40, "meters")
  6926. },
  6927. {
  6928. name: "City Scale",
  6929. height: math.unit(1, "km")
  6930. },
  6931. ]
  6932. ))
  6933. characterMakers.push(() => makeCharacter(
  6934. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  6935. {
  6936. front: {
  6937. height: math.unit(2, "meters"),
  6938. weight: math.unit(350, "lbs"),
  6939. name: "Front",
  6940. image: {
  6941. source: "./media/characters/regal/front.svg"
  6942. }
  6943. },
  6944. back: {
  6945. height: math.unit(2, "meters"),
  6946. weight: math.unit(350, "lbs"),
  6947. name: "Back",
  6948. image: {
  6949. source: "./media/characters/regal/back.svg"
  6950. }
  6951. },
  6952. },
  6953. [
  6954. {
  6955. name: "Macro",
  6956. height: math.unit(350, "feet"),
  6957. default: true
  6958. }
  6959. ]
  6960. ))
  6961. characterMakers.push(() => makeCharacter(
  6962. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  6963. {
  6964. front: {
  6965. height: math.unit(4 + 11 / 12, "feet"),
  6966. weight: math.unit(100, "lbs"),
  6967. name: "Front",
  6968. image: {
  6969. source: "./media/characters/opal/front.svg"
  6970. }
  6971. },
  6972. frontAlt: {
  6973. height: math.unit(4 + 11 / 12, "feet"),
  6974. weight: math.unit(100, "lbs"),
  6975. name: "Front (Alt)",
  6976. image: {
  6977. source: "./media/characters/opal/front-alt.svg"
  6978. }
  6979. },
  6980. },
  6981. [
  6982. {
  6983. name: "Small",
  6984. height: math.unit(4 + 11 / 12, "feet")
  6985. },
  6986. {
  6987. name: "Normal",
  6988. height: math.unit(20, "feet"),
  6989. default: true
  6990. },
  6991. {
  6992. name: "Macro",
  6993. height: math.unit(120, "feet")
  6994. },
  6995. {
  6996. name: "Megamacro",
  6997. height: math.unit(80, "miles")
  6998. },
  6999. {
  7000. name: "True Size",
  7001. height: math.unit(100000, "lightyears")
  7002. },
  7003. ]
  7004. ))
  7005. characterMakers.push(() => makeCharacter(
  7006. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  7007. {
  7008. front: {
  7009. height: math.unit(6, "feet"),
  7010. weight: math.unit(200, "lbs"),
  7011. name: "Front",
  7012. image: {
  7013. source: "./media/characters/vector-wuff/front.svg"
  7014. }
  7015. }
  7016. },
  7017. [
  7018. {
  7019. name: "Normal",
  7020. height: math.unit(2.8, "meters")
  7021. },
  7022. {
  7023. name: "Macro",
  7024. height: math.unit(450, "meters"),
  7025. default: true
  7026. },
  7027. {
  7028. name: "Megamacro",
  7029. height: math.unit(15, "kilometers")
  7030. }
  7031. ]
  7032. ))
  7033. characterMakers.push(() => makeCharacter(
  7034. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  7035. {
  7036. front: {
  7037. height: math.unit(6, "feet"),
  7038. weight: math.unit(256, "lbs"),
  7039. name: "Front",
  7040. image: {
  7041. source: "./media/characters/dannik/front.svg"
  7042. }
  7043. }
  7044. },
  7045. [
  7046. {
  7047. name: "Macro",
  7048. height: math.unit(69.57, "meters"),
  7049. default: true
  7050. },
  7051. ]
  7052. ))
  7053. characterMakers.push(() => makeCharacter(
  7054. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  7055. {
  7056. front: {
  7057. height: math.unit(6, "feet"),
  7058. weight: math.unit(120, "lbs"),
  7059. name: "Front",
  7060. image: {
  7061. source: "./media/characters/azura-saharah/front.svg"
  7062. }
  7063. },
  7064. back: {
  7065. height: math.unit(6, "feet"),
  7066. weight: math.unit(120, "lbs"),
  7067. name: "Back",
  7068. image: {
  7069. source: "./media/characters/azura-saharah/back.svg"
  7070. }
  7071. },
  7072. },
  7073. [
  7074. {
  7075. name: "Macro",
  7076. height: math.unit(100, "feet"),
  7077. default: true
  7078. },
  7079. ]
  7080. ))
  7081. characterMakers.push(() => makeCharacter(
  7082. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  7083. {
  7084. side: {
  7085. height: math.unit(5 + 4 / 12, "feet"),
  7086. weight: math.unit(163, "lbs"),
  7087. name: "Side",
  7088. image: {
  7089. source: "./media/characters/kennedy/side.svg"
  7090. }
  7091. }
  7092. },
  7093. [
  7094. {
  7095. name: "Standard Doggo",
  7096. height: math.unit(5 + 4 / 12, "feet")
  7097. },
  7098. {
  7099. name: "Big Doggo",
  7100. height: math.unit(25 + 3 / 12, "feet"),
  7101. default: true
  7102. },
  7103. ]
  7104. ))
  7105. characterMakers.push(() => makeCharacter(
  7106. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  7107. {
  7108. front: {
  7109. height: math.unit(5 + 5/12, "feet"),
  7110. weight: math.unit(100, "lbs"),
  7111. name: "Front",
  7112. image: {
  7113. source: "./media/characters/odios-de-lunar/front.svg",
  7114. extra: 1468/1323,
  7115. bottom: 22/1490
  7116. }
  7117. }
  7118. },
  7119. [
  7120. {
  7121. name: "Micro",
  7122. height: math.unit(3, "inches")
  7123. },
  7124. {
  7125. name: "Normal",
  7126. height: math.unit(5.5, "feet"),
  7127. default: true
  7128. },
  7129. {
  7130. name: "Macro",
  7131. height: math.unit(100, "feet")
  7132. },
  7133. ]
  7134. ))
  7135. characterMakers.push(() => makeCharacter(
  7136. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  7137. {
  7138. back: {
  7139. height: math.unit(6, "feet"),
  7140. weight: math.unit(220, "lbs"),
  7141. name: "Back",
  7142. image: {
  7143. source: "./media/characters/mandake/back.svg"
  7144. }
  7145. }
  7146. },
  7147. [
  7148. {
  7149. name: "Normal",
  7150. height: math.unit(7, "feet"),
  7151. default: true
  7152. },
  7153. {
  7154. name: "Macro",
  7155. height: math.unit(78, "feet")
  7156. },
  7157. {
  7158. name: "Macro+",
  7159. height: math.unit(300, "meters")
  7160. },
  7161. {
  7162. name: "Macro++",
  7163. height: math.unit(2400, "feet")
  7164. },
  7165. {
  7166. name: "Megamacro",
  7167. height: math.unit(5167, "meters")
  7168. },
  7169. {
  7170. name: "Gigamacro",
  7171. height: math.unit(41769, "miles")
  7172. },
  7173. ]
  7174. ))
  7175. characterMakers.push(() => makeCharacter(
  7176. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  7177. {
  7178. front: {
  7179. height: math.unit(6, "feet"),
  7180. weight: math.unit(120, "lbs"),
  7181. name: "Front",
  7182. image: {
  7183. source: "./media/characters/yozey/front.svg"
  7184. }
  7185. },
  7186. frontAlt: {
  7187. height: math.unit(6, "feet"),
  7188. weight: math.unit(120, "lbs"),
  7189. name: "Front (Alt)",
  7190. image: {
  7191. source: "./media/characters/yozey/front-alt.svg"
  7192. }
  7193. },
  7194. side: {
  7195. height: math.unit(6, "feet"),
  7196. weight: math.unit(120, "lbs"),
  7197. name: "Side",
  7198. image: {
  7199. source: "./media/characters/yozey/side.svg"
  7200. }
  7201. },
  7202. },
  7203. [
  7204. {
  7205. name: "Micro",
  7206. height: math.unit(3, "inches"),
  7207. default: true
  7208. },
  7209. {
  7210. name: "Normal",
  7211. height: math.unit(6, "feet")
  7212. }
  7213. ]
  7214. ))
  7215. characterMakers.push(() => makeCharacter(
  7216. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  7217. {
  7218. front: {
  7219. height: math.unit(6, "feet"),
  7220. weight: math.unit(103, "lbs"),
  7221. name: "Front",
  7222. image: {
  7223. source: "./media/characters/valeska-voss/front.svg"
  7224. }
  7225. }
  7226. },
  7227. [
  7228. {
  7229. name: "Mini-Sized Sub",
  7230. height: math.unit(3.1, "inches")
  7231. },
  7232. {
  7233. name: "Mid-Sized Sub",
  7234. height: math.unit(6.2, "inches")
  7235. },
  7236. {
  7237. name: "Full-Sized Sub",
  7238. height: math.unit(9.3, "inches")
  7239. },
  7240. {
  7241. name: "Normal",
  7242. height: math.unit(5 + 2 / 12, "foot"),
  7243. default: true
  7244. },
  7245. ]
  7246. ))
  7247. characterMakers.push(() => makeCharacter(
  7248. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  7249. {
  7250. front: {
  7251. height: math.unit(6, "feet"),
  7252. weight: math.unit(160, "lbs"),
  7253. name: "Front",
  7254. image: {
  7255. source: "./media/characters/gene-zeta/front.svg",
  7256. extra: 3006 / 2826,
  7257. bottom: 182 / 3188
  7258. }
  7259. }
  7260. },
  7261. [
  7262. {
  7263. name: "Micro",
  7264. height: math.unit(6, "inches")
  7265. },
  7266. {
  7267. name: "Normal",
  7268. height: math.unit(5 + 11 / 12, "foot"),
  7269. default: true
  7270. },
  7271. {
  7272. name: "Macro",
  7273. height: math.unit(140, "feet")
  7274. },
  7275. {
  7276. name: "Supercharged",
  7277. height: math.unit(2500, "feet")
  7278. },
  7279. ]
  7280. ))
  7281. characterMakers.push(() => makeCharacter(
  7282. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  7283. {
  7284. front: {
  7285. height: math.unit(6, "feet"),
  7286. weight: math.unit(350, "lbs"),
  7287. name: "Front",
  7288. image: {
  7289. source: "./media/characters/razinox/front.svg",
  7290. extra: 1686 / 1548,
  7291. bottom: 28.2 / 1868
  7292. }
  7293. },
  7294. back: {
  7295. height: math.unit(6, "feet"),
  7296. weight: math.unit(350, "lbs"),
  7297. name: "Back",
  7298. image: {
  7299. source: "./media/characters/razinox/back.svg",
  7300. extra: 1660 / 1590,
  7301. bottom: 15 / 1665
  7302. }
  7303. },
  7304. },
  7305. [
  7306. {
  7307. name: "Normal",
  7308. height: math.unit(10 + 8 / 12, "foot")
  7309. },
  7310. {
  7311. name: "Minimacro",
  7312. height: math.unit(15, "foot")
  7313. },
  7314. {
  7315. name: "Macro",
  7316. height: math.unit(60, "foot"),
  7317. default: true
  7318. },
  7319. {
  7320. name: "Megamacro",
  7321. height: math.unit(5, "miles")
  7322. },
  7323. {
  7324. name: "Gigamacro",
  7325. height: math.unit(6000, "miles")
  7326. },
  7327. ]
  7328. ))
  7329. characterMakers.push(() => makeCharacter(
  7330. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  7331. {
  7332. front: {
  7333. height: math.unit(6, "feet"),
  7334. weight: math.unit(150, "lbs"),
  7335. name: "Front",
  7336. image: {
  7337. source: "./media/characters/cobalt/front.svg"
  7338. }
  7339. }
  7340. },
  7341. [
  7342. {
  7343. name: "Normal",
  7344. height: math.unit(8 + 1 / 12, "foot")
  7345. },
  7346. {
  7347. name: "Macro",
  7348. height: math.unit(111, "foot"),
  7349. default: true
  7350. },
  7351. {
  7352. name: "Supracosmic",
  7353. height: math.unit(1e42, "feet")
  7354. },
  7355. ]
  7356. ))
  7357. characterMakers.push(() => makeCharacter(
  7358. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  7359. {
  7360. front: {
  7361. height: math.unit(6, "feet"),
  7362. weight: math.unit(140, "lbs"),
  7363. name: "Front",
  7364. image: {
  7365. source: "./media/characters/amanda/front.svg"
  7366. }
  7367. }
  7368. },
  7369. [
  7370. {
  7371. name: "Micro",
  7372. height: math.unit(5, "inches"),
  7373. default: true
  7374. },
  7375. ]
  7376. ))
  7377. characterMakers.push(() => makeCharacter(
  7378. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  7379. {
  7380. front: {
  7381. height: math.unit(2.75, "meters"),
  7382. weight: math.unit(1200, "lb"),
  7383. name: "Front",
  7384. image: {
  7385. source: "./media/characters/teal/front.svg",
  7386. extra: 2463 / 2320,
  7387. bottom: 166 / 2629
  7388. }
  7389. },
  7390. back: {
  7391. height: math.unit(2.75, "meters"),
  7392. weight: math.unit(1200, "lb"),
  7393. name: "Back",
  7394. image: {
  7395. source: "./media/characters/teal/back.svg",
  7396. extra: 2580 / 2489,
  7397. bottom: 151 / 2731
  7398. }
  7399. },
  7400. sitting: {
  7401. height: math.unit(1.9, "meters"),
  7402. weight: math.unit(1200, "lb"),
  7403. name: "Sitting",
  7404. image: {
  7405. source: "./media/characters/teal/sitting.svg",
  7406. extra: 623 / 590,
  7407. bottom: 121 / 744
  7408. }
  7409. },
  7410. standing: {
  7411. height: math.unit(2.75, "meters"),
  7412. weight: math.unit(1200, "lb"),
  7413. name: "Standing",
  7414. image: {
  7415. source: "./media/characters/teal/standing.svg",
  7416. extra: 923 / 893,
  7417. bottom: 60 / 983
  7418. }
  7419. },
  7420. stretching: {
  7421. height: math.unit(3.65, "meters"),
  7422. weight: math.unit(1200, "lb"),
  7423. name: "Stretching",
  7424. image: {
  7425. source: "./media/characters/teal/stretching.svg",
  7426. extra: 1276 / 1244,
  7427. bottom: 0 / 1276
  7428. }
  7429. },
  7430. legged: {
  7431. height: math.unit(1.3, "meters"),
  7432. weight: math.unit(100, "lb"),
  7433. name: "Legged",
  7434. image: {
  7435. source: "./media/characters/teal/legged.svg",
  7436. extra: 462 / 437,
  7437. bottom: 24 / 486
  7438. }
  7439. },
  7440. naga: {
  7441. height: math.unit(5.4, "meters"),
  7442. weight: math.unit(4000, "lb"),
  7443. name: "Naga",
  7444. image: {
  7445. source: "./media/characters/teal/naga.svg",
  7446. extra: 1902 / 1858,
  7447. bottom: 0 / 1902
  7448. }
  7449. },
  7450. hand: {
  7451. height: math.unit(0.52, "meters"),
  7452. name: "Hand",
  7453. image: {
  7454. source: "./media/characters/teal/hand.svg"
  7455. }
  7456. },
  7457. maw: {
  7458. height: math.unit(0.43, "meters"),
  7459. name: "Maw",
  7460. image: {
  7461. source: "./media/characters/teal/maw.svg"
  7462. }
  7463. },
  7464. slit: {
  7465. height: math.unit(0.25, "meters"),
  7466. name: "Slit",
  7467. image: {
  7468. source: "./media/characters/teal/slit.svg"
  7469. }
  7470. },
  7471. },
  7472. [
  7473. {
  7474. name: "Normal",
  7475. height: math.unit(2.75, "meters"),
  7476. default: true
  7477. },
  7478. {
  7479. name: "Macro",
  7480. height: math.unit(300, "feet")
  7481. },
  7482. {
  7483. name: "Macro+",
  7484. height: math.unit(2000, "feet")
  7485. },
  7486. ]
  7487. ))
  7488. characterMakers.push(() => makeCharacter(
  7489. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  7490. {
  7491. frontCat: {
  7492. height: math.unit(6, "feet"),
  7493. weight: math.unit(180, "lbs"),
  7494. name: "Front (Cat)",
  7495. image: {
  7496. source: "./media/characters/ravin-amulet/front-cat.svg"
  7497. }
  7498. },
  7499. frontCatAlt: {
  7500. height: math.unit(6, "feet"),
  7501. weight: math.unit(180, "lbs"),
  7502. name: "Front (Alt, Cat)",
  7503. image: {
  7504. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  7505. }
  7506. },
  7507. frontWerewolf: {
  7508. height: math.unit(6 * 1.2, "feet"),
  7509. weight: math.unit(225, "lbs"),
  7510. name: "Front (Werewolf)",
  7511. image: {
  7512. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  7513. }
  7514. },
  7515. backWerewolf: {
  7516. height: math.unit(6 * 1.2, "feet"),
  7517. weight: math.unit(225, "lbs"),
  7518. name: "Back (Werewolf)",
  7519. image: {
  7520. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  7521. }
  7522. },
  7523. },
  7524. [
  7525. {
  7526. name: "Nano",
  7527. height: math.unit(1, "micrometer")
  7528. },
  7529. {
  7530. name: "Micro",
  7531. height: math.unit(1, "inch")
  7532. },
  7533. {
  7534. name: "Normal",
  7535. height: math.unit(6, "feet"),
  7536. default: true
  7537. },
  7538. {
  7539. name: "Macro",
  7540. height: math.unit(60, "feet")
  7541. }
  7542. ]
  7543. ))
  7544. characterMakers.push(() => makeCharacter(
  7545. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  7546. {
  7547. front: {
  7548. height: math.unit(6, "feet"),
  7549. weight: math.unit(165, "lbs"),
  7550. name: "Front",
  7551. image: {
  7552. source: "./media/characters/fluoresce/front.svg"
  7553. }
  7554. }
  7555. },
  7556. [
  7557. {
  7558. name: "Micro",
  7559. height: math.unit(6, "cm")
  7560. },
  7561. {
  7562. name: "Normal",
  7563. height: math.unit(5 + 7 / 12, "feet"),
  7564. default: true
  7565. },
  7566. {
  7567. name: "Macro",
  7568. height: math.unit(56, "feet")
  7569. },
  7570. {
  7571. name: "Megamacro",
  7572. height: math.unit(1.9, "miles")
  7573. },
  7574. ]
  7575. ))
  7576. characterMakers.push(() => makeCharacter(
  7577. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  7578. {
  7579. front: {
  7580. height: math.unit(9 + 6 / 12, "feet"),
  7581. weight: math.unit(523, "lbs"),
  7582. name: "Side",
  7583. image: {
  7584. source: "./media/characters/aurora/side.svg"
  7585. }
  7586. }
  7587. },
  7588. [
  7589. {
  7590. name: "Normal",
  7591. height: math.unit(9 + 6 / 12, "feet")
  7592. },
  7593. {
  7594. name: "Macro",
  7595. height: math.unit(96, "feet"),
  7596. default: true
  7597. },
  7598. {
  7599. name: "Macro+",
  7600. height: math.unit(243, "feet")
  7601. },
  7602. ]
  7603. ))
  7604. characterMakers.push(() => makeCharacter(
  7605. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  7606. {
  7607. front: {
  7608. height: math.unit(194, "cm"),
  7609. weight: math.unit(90, "kg"),
  7610. name: "Front",
  7611. image: {
  7612. source: "./media/characters/ranek/front.svg"
  7613. }
  7614. },
  7615. side: {
  7616. height: math.unit(194, "cm"),
  7617. weight: math.unit(90, "kg"),
  7618. name: "Side",
  7619. image: {
  7620. source: "./media/characters/ranek/side.svg"
  7621. }
  7622. },
  7623. back: {
  7624. height: math.unit(194, "cm"),
  7625. weight: math.unit(90, "kg"),
  7626. name: "Back",
  7627. image: {
  7628. source: "./media/characters/ranek/back.svg"
  7629. }
  7630. },
  7631. feral: {
  7632. height: math.unit(30, "cm"),
  7633. weight: math.unit(1.6, "lbs"),
  7634. name: "Feral",
  7635. image: {
  7636. source: "./media/characters/ranek/feral.svg"
  7637. }
  7638. },
  7639. },
  7640. [
  7641. {
  7642. name: "Normal",
  7643. height: math.unit(194, "cm"),
  7644. default: true
  7645. },
  7646. {
  7647. name: "Macro",
  7648. height: math.unit(100, "meters")
  7649. },
  7650. ]
  7651. ))
  7652. characterMakers.push(() => makeCharacter(
  7653. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  7654. {
  7655. front: {
  7656. height: math.unit(5 + 6 / 12, "feet"),
  7657. weight: math.unit(153, "lbs"),
  7658. name: "Front",
  7659. image: {
  7660. source: "./media/characters/andrew-cooper/front.svg"
  7661. }
  7662. },
  7663. },
  7664. [
  7665. {
  7666. name: "Nano",
  7667. height: math.unit(1, "mm")
  7668. },
  7669. {
  7670. name: "Micro",
  7671. height: math.unit(2, "inches")
  7672. },
  7673. {
  7674. name: "Normal",
  7675. height: math.unit(5 + 6 / 12, "feet"),
  7676. default: true
  7677. }
  7678. ]
  7679. ))
  7680. characterMakers.push(() => makeCharacter(
  7681. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  7682. {
  7683. front: {
  7684. height: math.unit(6, "feet"),
  7685. weight: math.unit(180, "lbs"),
  7686. name: "Front",
  7687. image: {
  7688. source: "./media/characters/akane-sato/front.svg",
  7689. extra: 1219 / 1140
  7690. }
  7691. },
  7692. back: {
  7693. height: math.unit(6, "feet"),
  7694. weight: math.unit(180, "lbs"),
  7695. name: "Back",
  7696. image: {
  7697. source: "./media/characters/akane-sato/back.svg",
  7698. extra: 1219 / 1170
  7699. }
  7700. },
  7701. },
  7702. [
  7703. {
  7704. name: "Normal",
  7705. height: math.unit(2.5, "meters")
  7706. },
  7707. {
  7708. name: "Macro",
  7709. height: math.unit(250, "meters"),
  7710. default: true
  7711. },
  7712. {
  7713. name: "Megamacro",
  7714. height: math.unit(25, "km")
  7715. },
  7716. ]
  7717. ))
  7718. characterMakers.push(() => makeCharacter(
  7719. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  7720. {
  7721. front: {
  7722. height: math.unit(6, "feet"),
  7723. weight: math.unit(65, "kg"),
  7724. name: "Front",
  7725. image: {
  7726. source: "./media/characters/rook/front.svg",
  7727. extra: 960 / 950
  7728. }
  7729. }
  7730. },
  7731. [
  7732. {
  7733. name: "Normal",
  7734. height: math.unit(8.8, "feet")
  7735. },
  7736. {
  7737. name: "Macro",
  7738. height: math.unit(88, "feet"),
  7739. default: true
  7740. },
  7741. {
  7742. name: "Megamacro",
  7743. height: math.unit(8, "miles")
  7744. },
  7745. ]
  7746. ))
  7747. characterMakers.push(() => makeCharacter(
  7748. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  7749. {
  7750. front: {
  7751. height: math.unit(12 + 2 / 12, "feet"),
  7752. weight: math.unit(808, "lbs"),
  7753. name: "Front",
  7754. image: {
  7755. source: "./media/characters/prodigy/front.svg"
  7756. }
  7757. }
  7758. },
  7759. [
  7760. {
  7761. name: "Normal",
  7762. height: math.unit(12 + 2 / 12, "feet"),
  7763. default: true
  7764. },
  7765. {
  7766. name: "Macro",
  7767. height: math.unit(143, "feet")
  7768. },
  7769. {
  7770. name: "Macro+",
  7771. height: math.unit(400, "feet")
  7772. },
  7773. ]
  7774. ))
  7775. characterMakers.push(() => makeCharacter(
  7776. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  7777. {
  7778. front: {
  7779. height: math.unit(6, "feet"),
  7780. weight: math.unit(225, "lbs"),
  7781. name: "Front",
  7782. image: {
  7783. source: "./media/characters/daniel/front.svg"
  7784. }
  7785. },
  7786. leaning: {
  7787. height: math.unit(6, "feet"),
  7788. weight: math.unit(225, "lbs"),
  7789. name: "Leaning",
  7790. image: {
  7791. source: "./media/characters/daniel/leaning.svg"
  7792. }
  7793. },
  7794. },
  7795. [
  7796. {
  7797. name: "Macro",
  7798. height: math.unit(1000, "feet"),
  7799. default: true
  7800. },
  7801. ]
  7802. ))
  7803. characterMakers.push(() => makeCharacter(
  7804. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  7805. {
  7806. front: {
  7807. height: math.unit(6, "feet"),
  7808. weight: math.unit(88, "lbs"),
  7809. name: "Front",
  7810. image: {
  7811. source: "./media/characters/chiros/front.svg",
  7812. extra: 306 / 226
  7813. }
  7814. },
  7815. side: {
  7816. height: math.unit(6, "feet"),
  7817. weight: math.unit(88, "lbs"),
  7818. name: "Side",
  7819. image: {
  7820. source: "./media/characters/chiros/side.svg",
  7821. extra: 306 / 226
  7822. }
  7823. },
  7824. },
  7825. [
  7826. {
  7827. name: "Normal",
  7828. height: math.unit(6, "cm"),
  7829. default: true
  7830. },
  7831. ]
  7832. ))
  7833. characterMakers.push(() => makeCharacter(
  7834. { name: "Selka", species: ["snake"], tags: ["naga"] },
  7835. {
  7836. front: {
  7837. height: math.unit(6, "feet"),
  7838. weight: math.unit(100, "lbs"),
  7839. name: "Front",
  7840. image: {
  7841. source: "./media/characters/selka/front.svg",
  7842. extra: 947 / 887
  7843. }
  7844. }
  7845. },
  7846. [
  7847. {
  7848. name: "Normal",
  7849. height: math.unit(5, "cm"),
  7850. default: true
  7851. },
  7852. ]
  7853. ))
  7854. characterMakers.push(() => makeCharacter(
  7855. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  7856. {
  7857. front: {
  7858. height: math.unit(8 + 3 / 12, "feet"),
  7859. weight: math.unit(424, "lbs"),
  7860. name: "Front",
  7861. image: {
  7862. source: "./media/characters/verin/front.svg",
  7863. extra: 1845 / 1550
  7864. }
  7865. },
  7866. frontArmored: {
  7867. height: math.unit(8 + 3 / 12, "feet"),
  7868. weight: math.unit(424, "lbs"),
  7869. name: "Front (Armored)",
  7870. image: {
  7871. source: "./media/characters/verin/front-armor.svg",
  7872. extra: 1845 / 1550,
  7873. bottom: 0.01
  7874. }
  7875. },
  7876. back: {
  7877. height: math.unit(8 + 3 / 12, "feet"),
  7878. weight: math.unit(424, "lbs"),
  7879. name: "Back",
  7880. image: {
  7881. source: "./media/characters/verin/back.svg",
  7882. bottom: 0.1,
  7883. extra: 1
  7884. }
  7885. },
  7886. foot: {
  7887. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  7888. name: "Foot",
  7889. image: {
  7890. source: "./media/characters/verin/foot.svg"
  7891. }
  7892. },
  7893. },
  7894. [
  7895. {
  7896. name: "Normal",
  7897. height: math.unit(8 + 3 / 12, "feet")
  7898. },
  7899. {
  7900. name: "Minimacro",
  7901. height: math.unit(21, "feet"),
  7902. default: true
  7903. },
  7904. {
  7905. name: "Macro",
  7906. height: math.unit(626, "feet")
  7907. },
  7908. ]
  7909. ))
  7910. characterMakers.push(() => makeCharacter(
  7911. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  7912. {
  7913. front: {
  7914. height: math.unit(2.718, "meters"),
  7915. weight: math.unit(150, "lbs"),
  7916. name: "Front",
  7917. image: {
  7918. source: "./media/characters/sovrim-terraquian/front.svg"
  7919. }
  7920. },
  7921. back: {
  7922. height: math.unit(2.718, "meters"),
  7923. weight: math.unit(150, "lbs"),
  7924. name: "Back",
  7925. image: {
  7926. source: "./media/characters/sovrim-terraquian/back.svg"
  7927. }
  7928. }
  7929. },
  7930. [
  7931. {
  7932. name: "Micro",
  7933. height: math.unit(2, "inches")
  7934. },
  7935. {
  7936. name: "Small",
  7937. height: math.unit(1, "meter")
  7938. },
  7939. {
  7940. name: "Normal",
  7941. height: math.unit(Math.E, "meters"),
  7942. default: true
  7943. },
  7944. {
  7945. name: "Macro",
  7946. height: math.unit(20, "meters")
  7947. },
  7948. {
  7949. name: "Macro+",
  7950. height: math.unit(400, "meters")
  7951. },
  7952. ]
  7953. ))
  7954. characterMakers.push(() => makeCharacter(
  7955. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  7956. {
  7957. front: {
  7958. height: math.unit(7, "feet"),
  7959. weight: math.unit(489, "lbs"),
  7960. name: "Front",
  7961. image: {
  7962. source: "./media/characters/reece-silvermane/front.svg",
  7963. bottom: 0.02,
  7964. extra: 1
  7965. }
  7966. },
  7967. },
  7968. [
  7969. {
  7970. name: "Macro",
  7971. height: math.unit(1.5, "miles"),
  7972. default: true
  7973. },
  7974. ]
  7975. ))
  7976. characterMakers.push(() => makeCharacter(
  7977. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  7978. {
  7979. front: {
  7980. height: math.unit(6, "feet"),
  7981. weight: math.unit(78, "kg"),
  7982. name: "Front",
  7983. image: {
  7984. source: "./media/characters/kane/front.svg",
  7985. extra: 978 / 899
  7986. }
  7987. },
  7988. },
  7989. [
  7990. {
  7991. name: "Normal",
  7992. height: math.unit(2.1, "m"),
  7993. },
  7994. {
  7995. name: "Macro",
  7996. height: math.unit(1, "km"),
  7997. default: true
  7998. },
  7999. ]
  8000. ))
  8001. characterMakers.push(() => makeCharacter(
  8002. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  8003. {
  8004. front: {
  8005. height: math.unit(6, "feet"),
  8006. weight: math.unit(200, "kg"),
  8007. name: "Front",
  8008. image: {
  8009. source: "./media/characters/tegon/front.svg",
  8010. bottom: 0.01,
  8011. extra: 1
  8012. }
  8013. },
  8014. },
  8015. [
  8016. {
  8017. name: "Micro",
  8018. height: math.unit(1, "inch")
  8019. },
  8020. {
  8021. name: "Normal",
  8022. height: math.unit(6 + 3 / 12, "feet"),
  8023. default: true
  8024. },
  8025. {
  8026. name: "Macro",
  8027. height: math.unit(300, "feet")
  8028. },
  8029. {
  8030. name: "Megamacro",
  8031. height: math.unit(69, "miles")
  8032. },
  8033. ]
  8034. ))
  8035. characterMakers.push(() => makeCharacter(
  8036. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  8037. {
  8038. side: {
  8039. height: math.unit(6, "feet"),
  8040. weight: math.unit(2304, "lbs"),
  8041. name: "Side",
  8042. image: {
  8043. source: "./media/characters/arcturax/side.svg",
  8044. extra: 790 / 376,
  8045. bottom: 0.01
  8046. }
  8047. },
  8048. },
  8049. [
  8050. {
  8051. name: "Micro",
  8052. height: math.unit(2, "inch")
  8053. },
  8054. {
  8055. name: "Normal",
  8056. height: math.unit(6, "feet")
  8057. },
  8058. {
  8059. name: "Macro",
  8060. height: math.unit(39, "feet"),
  8061. default: true
  8062. },
  8063. {
  8064. name: "Megamacro",
  8065. height: math.unit(7, "miles")
  8066. },
  8067. ]
  8068. ))
  8069. characterMakers.push(() => makeCharacter(
  8070. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  8071. {
  8072. front: {
  8073. height: math.unit(6, "feet"),
  8074. weight: math.unit(50, "lbs"),
  8075. name: "Front",
  8076. image: {
  8077. source: "./media/characters/sentri/front.svg",
  8078. extra: 1750 / 1570,
  8079. bottom: 0.025
  8080. }
  8081. },
  8082. frontAlt: {
  8083. height: math.unit(6, "feet"),
  8084. weight: math.unit(50, "lbs"),
  8085. name: "Front (Alt)",
  8086. image: {
  8087. source: "./media/characters/sentri/front-alt.svg",
  8088. extra: 1750 / 1570,
  8089. bottom: 0.025
  8090. }
  8091. },
  8092. },
  8093. [
  8094. {
  8095. name: "Normal",
  8096. height: math.unit(15, "feet"),
  8097. default: true
  8098. },
  8099. {
  8100. name: "Macro",
  8101. height: math.unit(2500, "feet")
  8102. }
  8103. ]
  8104. ))
  8105. characterMakers.push(() => makeCharacter(
  8106. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  8107. {
  8108. front: {
  8109. height: math.unit(5 + 8 / 12, "feet"),
  8110. weight: math.unit(130, "lbs"),
  8111. name: "Front",
  8112. image: {
  8113. source: "./media/characters/corvin/front.svg",
  8114. extra: 1803 / 1629
  8115. }
  8116. },
  8117. frontShirt: {
  8118. height: math.unit(5 + 8 / 12, "feet"),
  8119. weight: math.unit(130, "lbs"),
  8120. name: "Front (Shirt)",
  8121. image: {
  8122. source: "./media/characters/corvin/front-shirt.svg",
  8123. extra: 1803 / 1629
  8124. }
  8125. },
  8126. frontPoncho: {
  8127. height: math.unit(5 + 8 / 12, "feet"),
  8128. weight: math.unit(130, "lbs"),
  8129. name: "Front (Poncho)",
  8130. image: {
  8131. source: "./media/characters/corvin/front-poncho.svg",
  8132. extra: 1803 / 1629
  8133. }
  8134. },
  8135. side: {
  8136. height: math.unit(5 + 8 / 12, "feet"),
  8137. weight: math.unit(130, "lbs"),
  8138. name: "Side",
  8139. image: {
  8140. source: "./media/characters/corvin/side.svg",
  8141. extra: 1012 / 945
  8142. }
  8143. },
  8144. back: {
  8145. height: math.unit(5 + 8 / 12, "feet"),
  8146. weight: math.unit(130, "lbs"),
  8147. name: "Back",
  8148. image: {
  8149. source: "./media/characters/corvin/back.svg",
  8150. extra: 1803 / 1629
  8151. }
  8152. },
  8153. },
  8154. [
  8155. {
  8156. name: "Micro",
  8157. height: math.unit(3, "inches")
  8158. },
  8159. {
  8160. name: "Normal",
  8161. height: math.unit(5 + 8 / 12, "feet")
  8162. },
  8163. {
  8164. name: "Macro",
  8165. height: math.unit(300, "feet"),
  8166. default: true
  8167. },
  8168. {
  8169. name: "Megamacro",
  8170. height: math.unit(500, "miles")
  8171. }
  8172. ]
  8173. ))
  8174. characterMakers.push(() => makeCharacter(
  8175. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  8176. {
  8177. front: {
  8178. height: math.unit(6, "feet"),
  8179. weight: math.unit(135, "lbs"),
  8180. name: "Front",
  8181. image: {
  8182. source: "./media/characters/q/front.svg",
  8183. extra: 854 / 752,
  8184. bottom: 0.005
  8185. }
  8186. },
  8187. back: {
  8188. height: math.unit(6, "feet"),
  8189. weight: math.unit(130, "lbs"),
  8190. name: "Back",
  8191. image: {
  8192. source: "./media/characters/q/back.svg",
  8193. extra: 854 / 752
  8194. }
  8195. },
  8196. },
  8197. [
  8198. {
  8199. name: "Macro",
  8200. height: math.unit(90, "feet"),
  8201. default: true
  8202. },
  8203. {
  8204. name: "Extra Macro",
  8205. height: math.unit(300, "feet"),
  8206. },
  8207. {
  8208. name: "BIG WALF",
  8209. height: math.unit(750, "feet"),
  8210. },
  8211. ]
  8212. ))
  8213. characterMakers.push(() => makeCharacter(
  8214. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  8215. {
  8216. front: {
  8217. height: math.unit(6, "feet"),
  8218. weight: math.unit(150, "lbs"),
  8219. name: "Front",
  8220. image: {
  8221. source: "./media/characters/carley/front.svg",
  8222. extra: 3927 / 3540,
  8223. bottom: 29.2 / 735
  8224. }
  8225. }
  8226. },
  8227. [
  8228. {
  8229. name: "Normal",
  8230. height: math.unit(6 + 3 / 12, "feet")
  8231. },
  8232. {
  8233. name: "Macro",
  8234. height: math.unit(185, "feet"),
  8235. default: true
  8236. },
  8237. {
  8238. name: "Megamacro",
  8239. height: math.unit(8, "miles"),
  8240. },
  8241. ]
  8242. ))
  8243. characterMakers.push(() => makeCharacter(
  8244. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  8245. {
  8246. front: {
  8247. height: math.unit(3, "feet"),
  8248. weight: math.unit(28, "lbs"),
  8249. name: "Front",
  8250. image: {
  8251. source: "./media/characters/citrine/front.svg"
  8252. }
  8253. }
  8254. },
  8255. [
  8256. {
  8257. name: "Normal",
  8258. height: math.unit(3, "feet"),
  8259. default: true
  8260. }
  8261. ]
  8262. ))
  8263. characterMakers.push(() => makeCharacter(
  8264. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  8265. {
  8266. front: {
  8267. height: math.unit(14, "feet"),
  8268. weight: math.unit(1450, "kg"),
  8269. capacity: math.unit(15, "people"),
  8270. name: "Front",
  8271. image: {
  8272. source: "./media/characters/aura-starwind/front.svg",
  8273. extra: 1440/1327,
  8274. bottom: 11/1451
  8275. }
  8276. },
  8277. side: {
  8278. height: math.unit(14, "feet"),
  8279. weight: math.unit(1450, "kg"),
  8280. capacity: math.unit(15, "people"),
  8281. name: "Side",
  8282. image: {
  8283. source: "./media/characters/aura-starwind/side.svg",
  8284. extra: 1654 / 1497
  8285. }
  8286. },
  8287. taur: {
  8288. height: math.unit(18, "feet"),
  8289. weight: math.unit(5500, "kg"),
  8290. capacity: math.unit(50, "people"),
  8291. name: "Taur",
  8292. image: {
  8293. source: "./media/characters/aura-starwind/taur.svg",
  8294. extra: 1760 / 1650
  8295. }
  8296. },
  8297. feral: {
  8298. height: math.unit(46, "feet"),
  8299. weight: math.unit(25000, "kg"),
  8300. capacity: math.unit(120, "people"),
  8301. name: "Feral",
  8302. image: {
  8303. source: "./media/characters/aura-starwind/feral.svg"
  8304. }
  8305. },
  8306. },
  8307. [
  8308. {
  8309. name: "Normal",
  8310. height: math.unit(14, "feet"),
  8311. default: true
  8312. },
  8313. {
  8314. name: "Macro",
  8315. height: math.unit(50, "meters")
  8316. },
  8317. {
  8318. name: "Megamacro",
  8319. height: math.unit(5000, "meters")
  8320. },
  8321. {
  8322. name: "Gigamacro",
  8323. height: math.unit(100000, "kilometers")
  8324. },
  8325. ]
  8326. ))
  8327. characterMakers.push(() => makeCharacter(
  8328. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  8329. {
  8330. front: {
  8331. height: math.unit(2 + 7 / 12, "feet"),
  8332. weight: math.unit(32, "lbs"),
  8333. name: "Front",
  8334. image: {
  8335. source: "./media/characters/rivet/front.svg",
  8336. extra: 1716 / 1658,
  8337. bottom: 0.03
  8338. }
  8339. },
  8340. foot: {
  8341. height: math.unit(0.551, "feet"),
  8342. name: "Rivet's Foot",
  8343. image: {
  8344. source: "./media/characters/rivet/foot.svg"
  8345. },
  8346. rename: true
  8347. }
  8348. },
  8349. [
  8350. {
  8351. name: "Micro",
  8352. height: math.unit(1.5, "inches"),
  8353. },
  8354. {
  8355. name: "Normal",
  8356. height: math.unit(2 + 7 / 12, "feet"),
  8357. default: true
  8358. },
  8359. {
  8360. name: "Macro",
  8361. height: math.unit(85, "feet")
  8362. },
  8363. {
  8364. name: "Megamacro",
  8365. height: math.unit(2.2, "km")
  8366. }
  8367. ]
  8368. ))
  8369. characterMakers.push(() => makeCharacter(
  8370. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  8371. {
  8372. front: {
  8373. height: math.unit(5 + 9 / 12, "feet"),
  8374. weight: math.unit(150, "lbs"),
  8375. name: "Front",
  8376. image: {
  8377. source: "./media/characters/coffee/front.svg",
  8378. extra: 3666 / 3032,
  8379. bottom: 0.04
  8380. }
  8381. },
  8382. foot: {
  8383. height: math.unit(1.29, "feet"),
  8384. name: "Foot",
  8385. image: {
  8386. source: "./media/characters/coffee/foot.svg"
  8387. }
  8388. },
  8389. },
  8390. [
  8391. {
  8392. name: "Micro",
  8393. height: math.unit(2, "inches"),
  8394. },
  8395. {
  8396. name: "Normal",
  8397. height: math.unit(5 + 9 / 12, "feet"),
  8398. default: true
  8399. },
  8400. {
  8401. name: "Macro",
  8402. height: math.unit(800, "feet")
  8403. },
  8404. {
  8405. name: "Megamacro",
  8406. height: math.unit(25, "miles")
  8407. }
  8408. ]
  8409. ))
  8410. characterMakers.push(() => makeCharacter(
  8411. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  8412. {
  8413. front: {
  8414. height: math.unit(6, "feet"),
  8415. weight: math.unit(200, "lbs"),
  8416. name: "Front",
  8417. image: {
  8418. source: "./media/characters/chari-gal/front.svg",
  8419. extra: 1568 / 1385,
  8420. bottom: 0.047
  8421. }
  8422. },
  8423. gigantamax: {
  8424. height: math.unit(6 * 16, "feet"),
  8425. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  8426. name: "Gigantamax",
  8427. image: {
  8428. source: "./media/characters/chari-gal/gigantamax.svg",
  8429. extra: 1124 / 888,
  8430. bottom: 0.03
  8431. }
  8432. },
  8433. },
  8434. [
  8435. {
  8436. name: "Normal",
  8437. height: math.unit(5 + 7 / 12, "feet")
  8438. },
  8439. {
  8440. name: "Macro",
  8441. height: math.unit(200, "feet"),
  8442. default: true
  8443. }
  8444. ]
  8445. ))
  8446. characterMakers.push(() => makeCharacter(
  8447. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  8448. {
  8449. front: {
  8450. height: math.unit(6, "feet"),
  8451. weight: math.unit(150, "lbs"),
  8452. name: "Front",
  8453. image: {
  8454. source: "./media/characters/nova/front.svg",
  8455. extra: 5000 / 4722,
  8456. bottom: 0.02
  8457. }
  8458. }
  8459. },
  8460. [
  8461. {
  8462. name: "Micro-",
  8463. height: math.unit(0.8, "inches")
  8464. },
  8465. {
  8466. name: "Micro",
  8467. height: math.unit(2, "inches"),
  8468. default: true
  8469. },
  8470. ]
  8471. ))
  8472. characterMakers.push(() => makeCharacter(
  8473. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  8474. {
  8475. front: {
  8476. height: math.unit(3 + 1 / 12, "feet"),
  8477. weight: math.unit(21.7, "lbs"),
  8478. name: "Front",
  8479. image: {
  8480. source: "./media/characters/argent/front.svg",
  8481. extra: 1471 / 1331,
  8482. bottom: 100.8 / 1575.5
  8483. }
  8484. }
  8485. },
  8486. [
  8487. {
  8488. name: "Micro",
  8489. height: math.unit(2, "inches")
  8490. },
  8491. {
  8492. name: "Normal",
  8493. height: math.unit(3 + 1 / 12, "feet"),
  8494. default: true
  8495. },
  8496. {
  8497. name: "Macro",
  8498. height: math.unit(120, "feet")
  8499. },
  8500. ]
  8501. ))
  8502. characterMakers.push(() => makeCharacter(
  8503. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  8504. {
  8505. lamp: {
  8506. height: math.unit(7 * 1559 / 989, "feet"),
  8507. name: "Magic Lamp",
  8508. image: {
  8509. source: "./media/characters/mira-al-cul/lamp.svg",
  8510. extra: 1617 / 1559
  8511. }
  8512. },
  8513. front: {
  8514. height: math.unit(7, "feet"),
  8515. name: "Front",
  8516. image: {
  8517. source: "./media/characters/mira-al-cul/front.svg",
  8518. extra: 1044 / 990
  8519. }
  8520. },
  8521. },
  8522. [
  8523. {
  8524. name: "Heavily Restricted",
  8525. height: math.unit(7 * 1559 / 989, "feet")
  8526. },
  8527. {
  8528. name: "Freshly Freed",
  8529. height: math.unit(50 * 1559 / 989, "feet")
  8530. },
  8531. {
  8532. name: "World Encompassing",
  8533. height: math.unit(10000 * 1559 / 989, "miles")
  8534. },
  8535. {
  8536. name: "Galactic",
  8537. height: math.unit(1.433 * 1559 / 989, "zettameters")
  8538. },
  8539. {
  8540. name: "Palmed Universe",
  8541. height: math.unit(6000 * 1559 / 989, "yottameters"),
  8542. default: true
  8543. },
  8544. {
  8545. name: "Multiversal Matriarch",
  8546. height: math.unit(8.87e10, "yottameters")
  8547. },
  8548. {
  8549. name: "Void Mother",
  8550. height: math.unit(3.14e110, "yottaparsecs")
  8551. },
  8552. {
  8553. name: "Toying with Transcendence",
  8554. height: math.unit(1e307, "meters")
  8555. },
  8556. ]
  8557. ))
  8558. characterMakers.push(() => makeCharacter(
  8559. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  8560. {
  8561. front: {
  8562. height: math.unit(17 + 1 / 12, "feet"),
  8563. weight: math.unit(476.2 * 5, "lbs"),
  8564. name: "Front",
  8565. image: {
  8566. source: "./media/characters/kuro-shi-uchū/front.svg",
  8567. extra: 2329 / 1835,
  8568. bottom: 0.02
  8569. }
  8570. },
  8571. },
  8572. [
  8573. {
  8574. name: "Micro",
  8575. height: math.unit(2, "inches")
  8576. },
  8577. {
  8578. name: "Normal",
  8579. height: math.unit(12, "meters")
  8580. },
  8581. {
  8582. name: "Planetary",
  8583. height: math.unit(0.00929, "AU"),
  8584. default: true
  8585. },
  8586. {
  8587. name: "Universal",
  8588. height: math.unit(20, "gigaparsecs")
  8589. },
  8590. ]
  8591. ))
  8592. characterMakers.push(() => makeCharacter(
  8593. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  8594. {
  8595. front: {
  8596. height: math.unit(5 + 2 / 12, "feet"),
  8597. weight: math.unit(120, "lbs"),
  8598. name: "Front",
  8599. image: {
  8600. source: "./media/characters/katherine/front.svg",
  8601. extra: 2075 / 1969
  8602. }
  8603. },
  8604. dress: {
  8605. height: math.unit(5 + 2 / 12, "feet"),
  8606. weight: math.unit(120, "lbs"),
  8607. name: "Dress",
  8608. image: {
  8609. source: "./media/characters/katherine/dress.svg",
  8610. extra: 2258 / 2064
  8611. }
  8612. },
  8613. },
  8614. [
  8615. {
  8616. name: "Micro",
  8617. height: math.unit(1, "inches"),
  8618. default: true
  8619. },
  8620. {
  8621. name: "Normal",
  8622. height: math.unit(5 + 2 / 12, "feet")
  8623. },
  8624. {
  8625. name: "Macro",
  8626. height: math.unit(100, "meters")
  8627. },
  8628. {
  8629. name: "Megamacro",
  8630. height: math.unit(80, "miles")
  8631. },
  8632. ]
  8633. ))
  8634. characterMakers.push(() => makeCharacter(
  8635. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  8636. {
  8637. front: {
  8638. height: math.unit(7 + 8 / 12, "feet"),
  8639. weight: math.unit(250, "lbs"),
  8640. name: "Front",
  8641. image: {
  8642. source: "./media/characters/yevis/front.svg",
  8643. extra: 1938 / 1755
  8644. }
  8645. }
  8646. },
  8647. [
  8648. {
  8649. name: "Mortal",
  8650. height: math.unit(7 + 8 / 12, "feet")
  8651. },
  8652. {
  8653. name: "Battle",
  8654. height: math.unit(25 + 11 / 12, "feet")
  8655. },
  8656. {
  8657. name: "Wrath",
  8658. height: math.unit(1654 + 11 / 12, "feet")
  8659. },
  8660. {
  8661. name: "Planet Destroyer",
  8662. height: math.unit(12000, "miles")
  8663. },
  8664. {
  8665. name: "Galaxy Conqueror",
  8666. height: math.unit(1.45, "zettameters"),
  8667. default: true
  8668. },
  8669. {
  8670. name: "Universal War",
  8671. height: math.unit(184, "gigaparsecs")
  8672. },
  8673. {
  8674. name: "Eternity War",
  8675. height: math.unit(1.98e55, "yottaparsecs")
  8676. },
  8677. ]
  8678. ))
  8679. characterMakers.push(() => makeCharacter(
  8680. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  8681. {
  8682. front: {
  8683. height: math.unit(5 + 8 / 12, "feet"),
  8684. weight: math.unit(63, "kg"),
  8685. name: "Front",
  8686. image: {
  8687. source: "./media/characters/xavier/front.svg",
  8688. extra: 944 / 883
  8689. }
  8690. },
  8691. frontStretch: {
  8692. height: math.unit(5 + 8 / 12, "feet"),
  8693. weight: math.unit(63, "kg"),
  8694. name: "Stretching",
  8695. image: {
  8696. source: "./media/characters/xavier/front-stretch.svg",
  8697. extra: 962 / 820
  8698. }
  8699. },
  8700. },
  8701. [
  8702. {
  8703. name: "Normal",
  8704. height: math.unit(5 + 8 / 12, "feet")
  8705. },
  8706. {
  8707. name: "Macro",
  8708. height: math.unit(100, "meters"),
  8709. default: true
  8710. },
  8711. {
  8712. name: "McLargeHuge",
  8713. height: math.unit(10, "miles")
  8714. },
  8715. ]
  8716. ))
  8717. characterMakers.push(() => makeCharacter(
  8718. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  8719. {
  8720. front: {
  8721. height: math.unit(5 + 5 / 12, "feet"),
  8722. weight: math.unit(150, "lb"),
  8723. name: "Front",
  8724. image: {
  8725. source: "./media/characters/joshii/front.svg",
  8726. extra: 765 / 653,
  8727. bottom: 51 / 816
  8728. }
  8729. },
  8730. foot: {
  8731. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  8732. name: "Foot",
  8733. image: {
  8734. source: "./media/characters/joshii/foot.svg"
  8735. }
  8736. },
  8737. },
  8738. [
  8739. {
  8740. name: "Micro",
  8741. height: math.unit(2, "inches"),
  8742. default: true
  8743. },
  8744. {
  8745. name: "Normal",
  8746. height: math.unit(5 + 5 / 12, "feet")
  8747. },
  8748. {
  8749. name: "Macro",
  8750. height: math.unit(785, "feet")
  8751. },
  8752. {
  8753. name: "Megamacro",
  8754. height: math.unit(24.5, "miles")
  8755. },
  8756. ]
  8757. ))
  8758. characterMakers.push(() => makeCharacter(
  8759. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  8760. {
  8761. front: {
  8762. height: math.unit(6, "feet"),
  8763. weight: math.unit(150, "lb"),
  8764. name: "Front",
  8765. image: {
  8766. source: "./media/characters/goddess-elizabeth/front.svg",
  8767. extra: 1800 / 1525,
  8768. bottom: 0.005
  8769. }
  8770. },
  8771. foot: {
  8772. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  8773. name: "Foot",
  8774. image: {
  8775. source: "./media/characters/goddess-elizabeth/foot.svg"
  8776. }
  8777. },
  8778. mouth: {
  8779. height: math.unit(6, "feet"),
  8780. name: "Mouth",
  8781. image: {
  8782. source: "./media/characters/goddess-elizabeth/mouth.svg"
  8783. }
  8784. },
  8785. },
  8786. [
  8787. {
  8788. name: "Micro",
  8789. height: math.unit(12, "feet")
  8790. },
  8791. {
  8792. name: "Normal",
  8793. height: math.unit(80, "miles"),
  8794. default: true
  8795. },
  8796. {
  8797. name: "Macro",
  8798. height: math.unit(15000, "parsecs")
  8799. },
  8800. ]
  8801. ))
  8802. characterMakers.push(() => makeCharacter(
  8803. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  8804. {
  8805. front: {
  8806. height: math.unit(5 + 9 / 12, "feet"),
  8807. weight: math.unit(144, "lb"),
  8808. name: "Front",
  8809. image: {
  8810. source: "./media/characters/kara/front.svg"
  8811. }
  8812. },
  8813. feet: {
  8814. height: math.unit(6 / 6.765, "feet"),
  8815. name: "Kara's Feet",
  8816. rename: true,
  8817. image: {
  8818. source: "./media/characters/kara/feet.svg"
  8819. }
  8820. },
  8821. },
  8822. [
  8823. {
  8824. name: "Normal",
  8825. height: math.unit(5 + 9 / 12, "feet")
  8826. },
  8827. {
  8828. name: "Macro",
  8829. height: math.unit(174, "feet"),
  8830. default: true
  8831. },
  8832. ]
  8833. ))
  8834. characterMakers.push(() => makeCharacter(
  8835. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  8836. {
  8837. front: {
  8838. height: math.unit(18, "feet"),
  8839. weight: math.unit(4050, "lb"),
  8840. name: "Front",
  8841. image: {
  8842. source: "./media/characters/tyrone/front.svg",
  8843. extra: 2405 / 2270,
  8844. bottom: 182 / 2587
  8845. }
  8846. },
  8847. },
  8848. [
  8849. {
  8850. name: "Normal",
  8851. height: math.unit(18, "feet"),
  8852. default: true
  8853. },
  8854. {
  8855. name: "Macro",
  8856. height: math.unit(300, "feet")
  8857. },
  8858. {
  8859. name: "Megamacro",
  8860. height: math.unit(15, "km")
  8861. },
  8862. {
  8863. name: "Gigamacro",
  8864. height: math.unit(500, "km")
  8865. },
  8866. {
  8867. name: "Teramacro",
  8868. height: math.unit(0.5, "gigameters")
  8869. },
  8870. {
  8871. name: "Omnimacro",
  8872. height: math.unit(1e252, "yottauniverse")
  8873. },
  8874. ]
  8875. ))
  8876. characterMakers.push(() => makeCharacter(
  8877. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  8878. {
  8879. front: {
  8880. height: math.unit(7 + 8 / 12, "feet"),
  8881. weight: math.unit(120, "lb"),
  8882. name: "Front",
  8883. image: {
  8884. source: "./media/characters/danny/front.svg",
  8885. extra: 1490 / 1350
  8886. }
  8887. },
  8888. back: {
  8889. height: math.unit(7 + 8 / 12, "feet"),
  8890. weight: math.unit(120, "lb"),
  8891. name: "Back",
  8892. image: {
  8893. source: "./media/characters/danny/back.svg",
  8894. extra: 1490 / 1350
  8895. }
  8896. },
  8897. },
  8898. [
  8899. {
  8900. name: "Normal",
  8901. height: math.unit(7 + 8 / 12, "feet"),
  8902. default: true
  8903. },
  8904. ]
  8905. ))
  8906. characterMakers.push(() => makeCharacter(
  8907. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  8908. {
  8909. front: {
  8910. height: math.unit(3.5, "inches"),
  8911. weight: math.unit(19, "grams"),
  8912. name: "Front",
  8913. image: {
  8914. source: "./media/characters/mallow/front.svg",
  8915. extra: 471 / 431
  8916. }
  8917. },
  8918. back: {
  8919. height: math.unit(3.5, "inches"),
  8920. weight: math.unit(19, "grams"),
  8921. name: "Back",
  8922. image: {
  8923. source: "./media/characters/mallow/back.svg",
  8924. extra: 471 / 431
  8925. }
  8926. },
  8927. },
  8928. [
  8929. {
  8930. name: "Normal",
  8931. height: math.unit(3.5, "inches"),
  8932. default: true
  8933. },
  8934. ]
  8935. ))
  8936. characterMakers.push(() => makeCharacter(
  8937. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  8938. {
  8939. front: {
  8940. height: math.unit(9, "feet"),
  8941. weight: math.unit(230, "kg"),
  8942. name: "Front",
  8943. image: {
  8944. source: "./media/characters/starry-aqua/front.svg"
  8945. }
  8946. },
  8947. back: {
  8948. height: math.unit(9, "feet"),
  8949. weight: math.unit(230, "kg"),
  8950. name: "Back",
  8951. image: {
  8952. source: "./media/characters/starry-aqua/back.svg"
  8953. }
  8954. },
  8955. hand: {
  8956. height: math.unit(9 * 0.1168, "feet"),
  8957. name: "Hand",
  8958. image: {
  8959. source: "./media/characters/starry-aqua/hand.svg"
  8960. }
  8961. },
  8962. foot: {
  8963. height: math.unit(9 * 0.18, "feet"),
  8964. name: "Foot",
  8965. image: {
  8966. source: "./media/characters/starry-aqua/foot.svg"
  8967. }
  8968. }
  8969. },
  8970. [
  8971. {
  8972. name: "Micro",
  8973. height: math.unit(3, "inches")
  8974. },
  8975. {
  8976. name: "Normal",
  8977. height: math.unit(9, "feet")
  8978. },
  8979. {
  8980. name: "Macro",
  8981. height: math.unit(300, "feet"),
  8982. default: true
  8983. },
  8984. {
  8985. name: "Megamacro",
  8986. height: math.unit(3200, "feet")
  8987. }
  8988. ]
  8989. ))
  8990. characterMakers.push(() => makeCharacter(
  8991. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  8992. {
  8993. front: {
  8994. height: math.unit(15, "feet"),
  8995. weight: math.unit(5026, "lb"),
  8996. name: "Front",
  8997. image: {
  8998. source: "./media/characters/luka-towers/front.svg",
  8999. extra: 1269/1133,
  9000. bottom: 51/1320
  9001. }
  9002. },
  9003. },
  9004. [
  9005. {
  9006. name: "Normal",
  9007. height: math.unit(15, "feet"),
  9008. default: true
  9009. },
  9010. {
  9011. name: "Minimacro",
  9012. height: math.unit(25, "feet")
  9013. },
  9014. {
  9015. name: "Macro",
  9016. height: math.unit(320, "feet")
  9017. },
  9018. {
  9019. name: "Megamacro",
  9020. height: math.unit(35000, "feet")
  9021. },
  9022. {
  9023. name: "Gigamacro",
  9024. height: math.unit(4000, "miles")
  9025. },
  9026. {
  9027. name: "Teramacro",
  9028. height: math.unit(15000, "miles")
  9029. },
  9030. ]
  9031. ))
  9032. characterMakers.push(() => makeCharacter(
  9033. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  9034. {
  9035. front: {
  9036. height: math.unit(6, "feet"),
  9037. weight: math.unit(150, "lb"),
  9038. name: "Front",
  9039. image: {
  9040. source: "./media/characters/natalie-nightring/front.svg",
  9041. extra: 1,
  9042. bottom: 0.06
  9043. }
  9044. },
  9045. },
  9046. [
  9047. {
  9048. name: "Uh Oh",
  9049. height: math.unit(0.1, "mm")
  9050. },
  9051. {
  9052. name: "Small",
  9053. height: math.unit(3, "inches")
  9054. },
  9055. {
  9056. name: "Human Scale",
  9057. height: math.unit(6, "feet")
  9058. },
  9059. {
  9060. name: "Librarian",
  9061. height: math.unit(50, "feet"),
  9062. default: true
  9063. },
  9064. {
  9065. name: "Immense",
  9066. height: math.unit(200, "miles")
  9067. },
  9068. ]
  9069. ))
  9070. characterMakers.push(() => makeCharacter(
  9071. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  9072. {
  9073. front: {
  9074. height: math.unit(6, "feet"),
  9075. weight: math.unit(180, "lbs"),
  9076. name: "Front",
  9077. image: {
  9078. source: "./media/characters/danni-rosie/front.svg",
  9079. extra: 1260 / 1128,
  9080. bottom: 0.022
  9081. }
  9082. },
  9083. },
  9084. [
  9085. {
  9086. name: "Micro",
  9087. height: math.unit(2, "inches"),
  9088. default: true
  9089. },
  9090. ]
  9091. ))
  9092. characterMakers.push(() => makeCharacter(
  9093. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  9094. {
  9095. front: {
  9096. height: math.unit(5 + 9 / 12, "feet"),
  9097. weight: math.unit(220, "lb"),
  9098. name: "Front",
  9099. image: {
  9100. source: "./media/characters/samantha-kruse/front.svg",
  9101. extra: (985 / 935),
  9102. bottom: 0.03
  9103. }
  9104. },
  9105. frontUndressed: {
  9106. height: math.unit(5 + 9 / 12, "feet"),
  9107. weight: math.unit(220, "lb"),
  9108. name: "Front (Undressed)",
  9109. image: {
  9110. source: "./media/characters/samantha-kruse/front-undressed.svg",
  9111. extra: (973 / 923),
  9112. bottom: 0.025
  9113. }
  9114. },
  9115. fat: {
  9116. height: math.unit(5 + 9 / 12, "feet"),
  9117. weight: math.unit(900, "lb"),
  9118. name: "Front (Fat)",
  9119. image: {
  9120. source: "./media/characters/samantha-kruse/fat.svg",
  9121. extra: 2688 / 2561
  9122. }
  9123. },
  9124. },
  9125. [
  9126. {
  9127. name: "Normal",
  9128. height: math.unit(5 + 9 / 12, "feet"),
  9129. default: true
  9130. }
  9131. ]
  9132. ))
  9133. characterMakers.push(() => makeCharacter(
  9134. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  9135. {
  9136. back: {
  9137. height: math.unit(5 + 4 / 12, "feet"),
  9138. weight: math.unit(4963, "lb"),
  9139. name: "Back",
  9140. image: {
  9141. source: "./media/characters/amelia-rosie/back.svg",
  9142. extra: 1113 / 963,
  9143. bottom: 0.01
  9144. }
  9145. },
  9146. },
  9147. [
  9148. {
  9149. name: "Level 0",
  9150. height: math.unit(5 + 4 / 12, "feet")
  9151. },
  9152. {
  9153. name: "Level 1",
  9154. height: math.unit(164597, "feet"),
  9155. default: true
  9156. },
  9157. {
  9158. name: "Level 2",
  9159. height: math.unit(956243, "miles")
  9160. },
  9161. {
  9162. name: "Level 3",
  9163. height: math.unit(29421709423, "miles")
  9164. },
  9165. {
  9166. name: "Level 4",
  9167. height: math.unit(154, "lightyears")
  9168. },
  9169. {
  9170. name: "Level 5",
  9171. height: math.unit(4738272, "lightyears")
  9172. },
  9173. {
  9174. name: "Level 6",
  9175. height: math.unit(145787152896, "lightyears")
  9176. },
  9177. ]
  9178. ))
  9179. characterMakers.push(() => makeCharacter(
  9180. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  9181. {
  9182. front: {
  9183. height: math.unit(5 + 11 / 12, "feet"),
  9184. weight: math.unit(65, "kg"),
  9185. name: "Front",
  9186. image: {
  9187. source: "./media/characters/rook-kitara/front.svg",
  9188. extra: 1347 / 1274,
  9189. bottom: 0.005
  9190. }
  9191. },
  9192. },
  9193. [
  9194. {
  9195. name: "Totally Unfair",
  9196. height: math.unit(1.8, "mm")
  9197. },
  9198. {
  9199. name: "Lap Rookie",
  9200. height: math.unit(1.4, "feet")
  9201. },
  9202. {
  9203. name: "Normal",
  9204. height: math.unit(5 + 11 / 12, "feet"),
  9205. default: true
  9206. },
  9207. {
  9208. name: "How Did This Happen",
  9209. height: math.unit(80, "miles")
  9210. }
  9211. ]
  9212. ))
  9213. characterMakers.push(() => makeCharacter(
  9214. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  9215. {
  9216. front: {
  9217. height: math.unit(7, "feet"),
  9218. weight: math.unit(300, "lb"),
  9219. name: "Front",
  9220. image: {
  9221. source: "./media/characters/pisces/front.svg",
  9222. extra: 2255 / 2115,
  9223. bottom: 0.03
  9224. }
  9225. },
  9226. back: {
  9227. height: math.unit(7, "feet"),
  9228. weight: math.unit(300, "lb"),
  9229. name: "Back",
  9230. image: {
  9231. source: "./media/characters/pisces/back.svg",
  9232. extra: 2146 / 2055,
  9233. bottom: 0.04
  9234. }
  9235. },
  9236. },
  9237. [
  9238. {
  9239. name: "Normal",
  9240. height: math.unit(7, "feet"),
  9241. default: true
  9242. },
  9243. {
  9244. name: "Swimming Pool",
  9245. height: math.unit(12.2, "meters")
  9246. },
  9247. {
  9248. name: "Olympic Swimming Pool",
  9249. height: math.unit(56.3, "meters")
  9250. },
  9251. {
  9252. name: "Lake Superior",
  9253. height: math.unit(93900, "meters")
  9254. },
  9255. {
  9256. name: "Mediterranean Sea",
  9257. height: math.unit(644457, "meters")
  9258. },
  9259. {
  9260. name: "World's Oceans",
  9261. height: math.unit(4567491, "meters")
  9262. },
  9263. ]
  9264. ))
  9265. characterMakers.push(() => makeCharacter(
  9266. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  9267. {
  9268. front: {
  9269. height: math.unit(2.3, "meters"),
  9270. weight: math.unit(120, "kg"),
  9271. name: "Front",
  9272. image: {
  9273. source: "./media/characters/zelas/front.svg"
  9274. }
  9275. },
  9276. side: {
  9277. height: math.unit(2.3, "meters"),
  9278. weight: math.unit(120, "kg"),
  9279. name: "Side",
  9280. image: {
  9281. source: "./media/characters/zelas/side.svg"
  9282. }
  9283. },
  9284. back: {
  9285. height: math.unit(2.3, "meters"),
  9286. weight: math.unit(120, "kg"),
  9287. name: "Back",
  9288. image: {
  9289. source: "./media/characters/zelas/back.svg"
  9290. }
  9291. },
  9292. foot: {
  9293. height: math.unit(1.116, "feet"),
  9294. name: "Foot",
  9295. image: {
  9296. source: "./media/characters/zelas/foot.svg"
  9297. }
  9298. },
  9299. },
  9300. [
  9301. {
  9302. name: "Normal",
  9303. height: math.unit(2.3, "meters")
  9304. },
  9305. {
  9306. name: "Macro",
  9307. height: math.unit(30, "meters"),
  9308. default: true
  9309. },
  9310. ]
  9311. ))
  9312. characterMakers.push(() => makeCharacter(
  9313. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  9314. {
  9315. front: {
  9316. height: math.unit(1, "inch"),
  9317. weight: math.unit(0.21, "grams"),
  9318. name: "Front",
  9319. image: {
  9320. source: "./media/characters/talbot/front.svg",
  9321. extra: 594 / 544
  9322. }
  9323. },
  9324. },
  9325. [
  9326. {
  9327. name: "Micro",
  9328. height: math.unit(1, "inch"),
  9329. default: true
  9330. },
  9331. ]
  9332. ))
  9333. characterMakers.push(() => makeCharacter(
  9334. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  9335. {
  9336. front: {
  9337. height: math.unit(3 + 3 / 12, "feet"),
  9338. weight: math.unit(51.8, "lb"),
  9339. name: "Front",
  9340. image: {
  9341. source: "./media/characters/fliss/front.svg",
  9342. extra: 840 / 640
  9343. }
  9344. },
  9345. },
  9346. [
  9347. {
  9348. name: "Teeny Tiny",
  9349. height: math.unit(1, "mm")
  9350. },
  9351. {
  9352. name: "Small",
  9353. height: math.unit(1, "inch"),
  9354. default: true
  9355. },
  9356. {
  9357. name: "Standard Sylveon",
  9358. height: math.unit(3 + 3 / 12, "feet")
  9359. },
  9360. {
  9361. name: "Large Nuisance",
  9362. height: math.unit(33, "feet")
  9363. },
  9364. {
  9365. name: "City Filler",
  9366. height: math.unit(3000, "feet")
  9367. },
  9368. {
  9369. name: "New Horizon",
  9370. height: math.unit(6000, "miles")
  9371. },
  9372. ]
  9373. ))
  9374. characterMakers.push(() => makeCharacter(
  9375. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  9376. {
  9377. front: {
  9378. height: math.unit(5, "cm"),
  9379. weight: math.unit(1.94, "g"),
  9380. name: "Front",
  9381. image: {
  9382. source: "./media/characters/fleta/front.svg",
  9383. extra: 835 / 803
  9384. }
  9385. },
  9386. back: {
  9387. height: math.unit(5, "cm"),
  9388. weight: math.unit(1.94, "g"),
  9389. name: "Back",
  9390. image: {
  9391. source: "./media/characters/fleta/back.svg",
  9392. extra: 835 / 803
  9393. }
  9394. },
  9395. },
  9396. [
  9397. {
  9398. name: "Micro",
  9399. height: math.unit(5, "cm"),
  9400. default: true
  9401. },
  9402. ]
  9403. ))
  9404. characterMakers.push(() => makeCharacter(
  9405. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  9406. {
  9407. front: {
  9408. height: math.unit(6, "feet"),
  9409. weight: math.unit(225, "lb"),
  9410. name: "Front",
  9411. image: {
  9412. source: "./media/characters/dominic/front.svg",
  9413. extra: 1770 / 1620,
  9414. bottom: 0.025
  9415. }
  9416. },
  9417. back: {
  9418. height: math.unit(6, "feet"),
  9419. weight: math.unit(225, "lb"),
  9420. name: "Back",
  9421. image: {
  9422. source: "./media/characters/dominic/back.svg",
  9423. extra: 1745 / 1620,
  9424. bottom: 0.065
  9425. }
  9426. },
  9427. },
  9428. [
  9429. {
  9430. name: "Nano",
  9431. height: math.unit(0.1, "mm")
  9432. },
  9433. {
  9434. name: "Micro-",
  9435. height: math.unit(1, "mm")
  9436. },
  9437. {
  9438. name: "Micro",
  9439. height: math.unit(4, "inches")
  9440. },
  9441. {
  9442. name: "Normal",
  9443. height: math.unit(6 + 4 / 12, "feet"),
  9444. default: true
  9445. },
  9446. {
  9447. name: "Macro",
  9448. height: math.unit(115, "feet")
  9449. },
  9450. {
  9451. name: "Macro+",
  9452. height: math.unit(955, "feet")
  9453. },
  9454. {
  9455. name: "Megamacro",
  9456. height: math.unit(8990, "feet")
  9457. },
  9458. {
  9459. name: "Gigmacro",
  9460. height: math.unit(9310, "miles")
  9461. },
  9462. {
  9463. name: "Teramacro",
  9464. height: math.unit(1567005010, "miles")
  9465. },
  9466. {
  9467. name: "Examacro",
  9468. height: math.unit(1425, "parsecs")
  9469. },
  9470. ]
  9471. ))
  9472. characterMakers.push(() => makeCharacter(
  9473. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  9474. {
  9475. front: {
  9476. height: math.unit(400, "feet"),
  9477. weight: math.unit(44444444, "lb"),
  9478. name: "Front",
  9479. image: {
  9480. source: "./media/characters/major-colonel/front.svg"
  9481. }
  9482. },
  9483. back: {
  9484. height: math.unit(400, "feet"),
  9485. weight: math.unit(44444444, "lb"),
  9486. name: "Back",
  9487. image: {
  9488. source: "./media/characters/major-colonel/back.svg"
  9489. }
  9490. },
  9491. },
  9492. [
  9493. {
  9494. name: "Macro",
  9495. height: math.unit(400, "feet"),
  9496. default: true
  9497. },
  9498. ]
  9499. ))
  9500. characterMakers.push(() => makeCharacter(
  9501. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  9502. {
  9503. catFront: {
  9504. height: math.unit(6, "feet"),
  9505. weight: math.unit(120, "lb"),
  9506. name: "Front (Cat Side)",
  9507. image: {
  9508. source: "./media/characters/axel-lycan/cat-front.svg",
  9509. extra: 430 / 402,
  9510. bottom: 43 / 472.35
  9511. }
  9512. },
  9513. catBack: {
  9514. height: math.unit(6, "feet"),
  9515. weight: math.unit(120, "lb"),
  9516. name: "Back (Cat Side)",
  9517. image: {
  9518. source: "./media/characters/axel-lycan/cat-back.svg",
  9519. extra: 447 / 419,
  9520. bottom: 23.3 / 469
  9521. }
  9522. },
  9523. wolfFront: {
  9524. height: math.unit(6, "feet"),
  9525. weight: math.unit(120, "lb"),
  9526. name: "Front (Wolf Side)",
  9527. image: {
  9528. source: "./media/characters/axel-lycan/wolf-front.svg",
  9529. extra: 485 / 456,
  9530. bottom: 19 / 504
  9531. }
  9532. },
  9533. wolfBack: {
  9534. height: math.unit(6, "feet"),
  9535. weight: math.unit(120, "lb"),
  9536. name: "Back (Wolf Side)",
  9537. image: {
  9538. source: "./media/characters/axel-lycan/wolf-back.svg",
  9539. extra: 475 / 438,
  9540. bottom: 39.2 / 514
  9541. }
  9542. },
  9543. },
  9544. [
  9545. {
  9546. name: "Macro",
  9547. height: math.unit(1, "km"),
  9548. default: true
  9549. },
  9550. ]
  9551. ))
  9552. characterMakers.push(() => makeCharacter(
  9553. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  9554. {
  9555. front: {
  9556. height: math.unit(5 + 9 / 12, "feet"),
  9557. weight: math.unit(175, "lb"),
  9558. name: "Front",
  9559. image: {
  9560. source: "./media/characters/vanrel-hyena/front.svg",
  9561. extra: 1086 / 1010,
  9562. bottom: 0.04
  9563. }
  9564. },
  9565. },
  9566. [
  9567. {
  9568. name: "Normal",
  9569. height: math.unit(5 + 9 / 12, "feet"),
  9570. default: true
  9571. },
  9572. ]
  9573. ))
  9574. characterMakers.push(() => makeCharacter(
  9575. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  9576. {
  9577. front: {
  9578. height: math.unit(6, "feet"),
  9579. weight: math.unit(103, "lb"),
  9580. name: "Front",
  9581. image: {
  9582. source: "./media/characters/abbott-absol/front.svg",
  9583. extra: 2010 / 1842
  9584. }
  9585. },
  9586. },
  9587. [
  9588. {
  9589. name: "Megamicro",
  9590. height: math.unit(0.1, "mm")
  9591. },
  9592. {
  9593. name: "Micro",
  9594. height: math.unit(1, "inch")
  9595. },
  9596. {
  9597. name: "Normal",
  9598. height: math.unit(6, "feet"),
  9599. default: true
  9600. },
  9601. ]
  9602. ))
  9603. characterMakers.push(() => makeCharacter(
  9604. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  9605. {
  9606. front: {
  9607. height: math.unit(6, "feet"),
  9608. weight: math.unit(264, "lb"),
  9609. name: "Front",
  9610. image: {
  9611. source: "./media/characters/hector/front.svg",
  9612. extra: 2280 / 2130,
  9613. bottom: 0.07
  9614. }
  9615. },
  9616. },
  9617. [
  9618. {
  9619. name: "Normal",
  9620. height: math.unit(12.25, "foot"),
  9621. default: true
  9622. },
  9623. {
  9624. name: "Macro",
  9625. height: math.unit(160, "feet")
  9626. },
  9627. ]
  9628. ))
  9629. characterMakers.push(() => makeCharacter(
  9630. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  9631. {
  9632. front: {
  9633. height: math.unit(6, "feet"),
  9634. weight: math.unit(150, "lb"),
  9635. name: "Front",
  9636. image: {
  9637. source: "./media/characters/sal/front.svg",
  9638. extra: 1846 / 1699,
  9639. bottom: 0.04
  9640. }
  9641. },
  9642. },
  9643. [
  9644. {
  9645. name: "Megamacro",
  9646. height: math.unit(10, "miles"),
  9647. default: true
  9648. },
  9649. ]
  9650. ))
  9651. characterMakers.push(() => makeCharacter(
  9652. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  9653. {
  9654. front: {
  9655. height: math.unit(3, "meters"),
  9656. weight: math.unit(450, "kg"),
  9657. name: "front",
  9658. image: {
  9659. source: "./media/characters/ranger/front.svg",
  9660. extra: 2401 / 2243,
  9661. bottom: 0.05
  9662. }
  9663. },
  9664. },
  9665. [
  9666. {
  9667. name: "Normal",
  9668. height: math.unit(3, "meters"),
  9669. default: true
  9670. },
  9671. ]
  9672. ))
  9673. characterMakers.push(() => makeCharacter(
  9674. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  9675. {
  9676. front: {
  9677. height: math.unit(14, "feet"),
  9678. weight: math.unit(800, "kg"),
  9679. name: "Front",
  9680. image: {
  9681. source: "./media/characters/theresa/front.svg",
  9682. extra: 3575 / 3346,
  9683. bottom: 0.03
  9684. }
  9685. },
  9686. },
  9687. [
  9688. {
  9689. name: "Normal",
  9690. height: math.unit(14, "feet"),
  9691. default: true
  9692. },
  9693. ]
  9694. ))
  9695. characterMakers.push(() => makeCharacter(
  9696. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  9697. {
  9698. front: {
  9699. height: math.unit(6, "feet"),
  9700. weight: math.unit(3, "kg"),
  9701. name: "Front",
  9702. image: {
  9703. source: "./media/characters/ine/front.svg",
  9704. extra: 678 / 539,
  9705. bottom: 0.023
  9706. }
  9707. },
  9708. },
  9709. [
  9710. {
  9711. name: "Normal",
  9712. height: math.unit(2.265, "feet"),
  9713. default: true
  9714. },
  9715. ]
  9716. ))
  9717. characterMakers.push(() => makeCharacter(
  9718. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  9719. {
  9720. front: {
  9721. height: math.unit(5, "feet"),
  9722. weight: math.unit(30, "kg"),
  9723. name: "Front",
  9724. image: {
  9725. source: "./media/characters/vial/front.svg",
  9726. extra: 1365 / 1277,
  9727. bottom: 0.04
  9728. }
  9729. },
  9730. },
  9731. [
  9732. {
  9733. name: "Normal",
  9734. height: math.unit(5, "feet"),
  9735. default: true
  9736. },
  9737. ]
  9738. ))
  9739. characterMakers.push(() => makeCharacter(
  9740. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  9741. {
  9742. side: {
  9743. height: math.unit(3.4, "meters"),
  9744. weight: math.unit(1000, "lb"),
  9745. name: "Side",
  9746. image: {
  9747. source: "./media/characters/rovoska/side.svg",
  9748. extra: 4403 / 1515
  9749. }
  9750. },
  9751. },
  9752. [
  9753. {
  9754. name: "Normal",
  9755. height: math.unit(3.4, "meters"),
  9756. default: true
  9757. },
  9758. ]
  9759. ))
  9760. characterMakers.push(() => makeCharacter(
  9761. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  9762. {
  9763. front: {
  9764. height: math.unit(8, "feet"),
  9765. weight: math.unit(315, "lb"),
  9766. name: "Front",
  9767. image: {
  9768. source: "./media/characters/gunner-rotthbauer/front.svg"
  9769. }
  9770. },
  9771. back: {
  9772. height: math.unit(8, "feet"),
  9773. weight: math.unit(315, "lb"),
  9774. name: "Back",
  9775. image: {
  9776. source: "./media/characters/gunner-rotthbauer/back.svg"
  9777. }
  9778. },
  9779. },
  9780. [
  9781. {
  9782. name: "Micro",
  9783. height: math.unit(3.5, "inches")
  9784. },
  9785. {
  9786. name: "Normal",
  9787. height: math.unit(8, "feet"),
  9788. default: true
  9789. },
  9790. {
  9791. name: "Macro",
  9792. height: math.unit(250, "feet")
  9793. },
  9794. {
  9795. name: "Megamacro",
  9796. height: math.unit(1, "AU")
  9797. },
  9798. ]
  9799. ))
  9800. characterMakers.push(() => makeCharacter(
  9801. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  9802. {
  9803. front: {
  9804. height: math.unit(5 + 5 / 12, "feet"),
  9805. weight: math.unit(140, "lb"),
  9806. name: "Front",
  9807. image: {
  9808. source: "./media/characters/allatia/front.svg",
  9809. extra: 1227 / 1180,
  9810. bottom: 0.027
  9811. }
  9812. },
  9813. },
  9814. [
  9815. {
  9816. name: "Normal",
  9817. height: math.unit(5 + 5 / 12, "feet")
  9818. },
  9819. {
  9820. name: "Macro",
  9821. height: math.unit(250, "feet"),
  9822. default: true
  9823. },
  9824. {
  9825. name: "Megamacro",
  9826. height: math.unit(8, "miles")
  9827. }
  9828. ]
  9829. ))
  9830. characterMakers.push(() => makeCharacter(
  9831. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  9832. {
  9833. front: {
  9834. height: math.unit(6, "feet"),
  9835. weight: math.unit(120, "lb"),
  9836. name: "Front",
  9837. image: {
  9838. source: "./media/characters/tene/front.svg",
  9839. extra: 1728 / 1578,
  9840. bottom: 0.022
  9841. }
  9842. },
  9843. stomping: {
  9844. height: math.unit(2.025, "meters"),
  9845. weight: math.unit(120, "lb"),
  9846. name: "Stomping",
  9847. image: {
  9848. source: "./media/characters/tene/stomping.svg",
  9849. extra: 938 / 873,
  9850. bottom: 0.01
  9851. }
  9852. },
  9853. sitting: {
  9854. height: math.unit(1, "meter"),
  9855. weight: math.unit(120, "lb"),
  9856. name: "Sitting",
  9857. image: {
  9858. source: "./media/characters/tene/sitting.svg",
  9859. extra: 437 / 415,
  9860. bottom: 0.1
  9861. }
  9862. },
  9863. feral: {
  9864. height: math.unit(3.9, "feet"),
  9865. weight: math.unit(250, "lb"),
  9866. name: "Feral",
  9867. image: {
  9868. source: "./media/characters/tene/feral.svg",
  9869. extra: 717 / 458,
  9870. bottom: 0.179
  9871. }
  9872. },
  9873. },
  9874. [
  9875. {
  9876. name: "Normal",
  9877. height: math.unit(6, "feet")
  9878. },
  9879. {
  9880. name: "Macro",
  9881. height: math.unit(300, "feet"),
  9882. default: true
  9883. },
  9884. {
  9885. name: "Megamacro",
  9886. height: math.unit(5, "miles")
  9887. },
  9888. ]
  9889. ))
  9890. characterMakers.push(() => makeCharacter(
  9891. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  9892. {
  9893. side: {
  9894. height: math.unit(6, "feet"),
  9895. name: "Side",
  9896. image: {
  9897. source: "./media/characters/evander/side.svg",
  9898. extra: 877 / 477
  9899. }
  9900. },
  9901. },
  9902. [
  9903. {
  9904. name: "Normal",
  9905. height: math.unit(0.83, "meters"),
  9906. default: true
  9907. },
  9908. ]
  9909. ))
  9910. characterMakers.push(() => makeCharacter(
  9911. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  9912. {
  9913. front: {
  9914. height: math.unit(12, "feet"),
  9915. weight: math.unit(1000, "lb"),
  9916. name: "Front",
  9917. image: {
  9918. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  9919. extra: 1762 / 1611
  9920. }
  9921. },
  9922. back: {
  9923. height: math.unit(12, "feet"),
  9924. weight: math.unit(1000, "lb"),
  9925. name: "Back",
  9926. image: {
  9927. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  9928. extra: 1762 / 1611
  9929. }
  9930. },
  9931. },
  9932. [
  9933. {
  9934. name: "Normal",
  9935. height: math.unit(12, "feet"),
  9936. default: true
  9937. },
  9938. {
  9939. name: "Kaiju",
  9940. height: math.unit(150, "feet")
  9941. },
  9942. ]
  9943. ))
  9944. characterMakers.push(() => makeCharacter(
  9945. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  9946. {
  9947. front: {
  9948. height: math.unit(6, "feet"),
  9949. weight: math.unit(150, "lb"),
  9950. name: "Front",
  9951. image: {
  9952. source: "./media/characters/zero-alurus/front.svg"
  9953. }
  9954. },
  9955. back: {
  9956. height: math.unit(6, "feet"),
  9957. weight: math.unit(150, "lb"),
  9958. name: "Back",
  9959. image: {
  9960. source: "./media/characters/zero-alurus/back.svg"
  9961. }
  9962. },
  9963. },
  9964. [
  9965. {
  9966. name: "Normal",
  9967. height: math.unit(5 + 10 / 12, "feet")
  9968. },
  9969. {
  9970. name: "Macro",
  9971. height: math.unit(60, "feet"),
  9972. default: true
  9973. },
  9974. {
  9975. name: "Macro+",
  9976. height: math.unit(450, "feet")
  9977. },
  9978. ]
  9979. ))
  9980. characterMakers.push(() => makeCharacter(
  9981. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  9982. {
  9983. front: {
  9984. height: math.unit(6, "feet"),
  9985. weight: math.unit(200, "lb"),
  9986. name: "Front",
  9987. image: {
  9988. source: "./media/characters/mega-shi/front.svg",
  9989. extra: 1279 / 1250,
  9990. bottom: 0.02
  9991. }
  9992. },
  9993. back: {
  9994. height: math.unit(6, "feet"),
  9995. weight: math.unit(200, "lb"),
  9996. name: "Back",
  9997. image: {
  9998. source: "./media/characters/mega-shi/back.svg",
  9999. extra: 1279 / 1250,
  10000. bottom: 0.02
  10001. }
  10002. },
  10003. },
  10004. [
  10005. {
  10006. name: "Micro",
  10007. height: math.unit(16 + 6 / 12, "feet")
  10008. },
  10009. {
  10010. name: "Third Dimension",
  10011. height: math.unit(40, "meters")
  10012. },
  10013. {
  10014. name: "Normal",
  10015. height: math.unit(660, "feet"),
  10016. default: true
  10017. },
  10018. {
  10019. name: "Megamacro",
  10020. height: math.unit(10, "miles")
  10021. },
  10022. {
  10023. name: "Planetary Launch",
  10024. height: math.unit(500, "miles")
  10025. },
  10026. {
  10027. name: "Interstellar",
  10028. height: math.unit(1e9, "miles")
  10029. },
  10030. {
  10031. name: "Leaving the Universe",
  10032. height: math.unit(1, "gigaparsec")
  10033. },
  10034. {
  10035. name: "Travelling Universes",
  10036. height: math.unit(30e15, "parsecs")
  10037. },
  10038. ]
  10039. ))
  10040. characterMakers.push(() => makeCharacter(
  10041. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  10042. {
  10043. front: {
  10044. height: math.unit(6, "feet"),
  10045. weight: math.unit(150, "lb"),
  10046. name: "Front",
  10047. image: {
  10048. source: "./media/characters/odyssey/front.svg",
  10049. extra: 1782 / 1582,
  10050. bottom: 0.01
  10051. }
  10052. },
  10053. side: {
  10054. height: math.unit(5.7, "feet"),
  10055. weight: math.unit(140, "lb"),
  10056. name: "Side",
  10057. image: {
  10058. source: "./media/characters/odyssey/side.svg",
  10059. extra: 6462 / 5700
  10060. }
  10061. },
  10062. },
  10063. [
  10064. {
  10065. name: "Normal",
  10066. height: math.unit(5 + 4 / 12, "feet")
  10067. },
  10068. {
  10069. name: "Macro",
  10070. height: math.unit(1, "km")
  10071. },
  10072. {
  10073. name: "Megamacro",
  10074. height: math.unit(3000, "km")
  10075. },
  10076. {
  10077. name: "Gigamacro",
  10078. height: math.unit(1, "AU"),
  10079. default: true
  10080. },
  10081. {
  10082. name: "Omniversal",
  10083. height: math.unit(100e14, "lightyears")
  10084. },
  10085. ]
  10086. ))
  10087. characterMakers.push(() => makeCharacter(
  10088. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  10089. {
  10090. front: {
  10091. height: math.unit(6, "feet"),
  10092. weight: math.unit(300, "lb"),
  10093. name: "Front",
  10094. image: {
  10095. source: "./media/characters/mekuto/front.svg",
  10096. extra: 921 / 832,
  10097. bottom: 0.03
  10098. }
  10099. },
  10100. hand: {
  10101. height: math.unit(6 / 10.24, "feet"),
  10102. name: "Hand",
  10103. image: {
  10104. source: "./media/characters/mekuto/hand.svg"
  10105. }
  10106. },
  10107. foot: {
  10108. height: math.unit(6 / 5.05, "feet"),
  10109. name: "Foot",
  10110. image: {
  10111. source: "./media/characters/mekuto/foot.svg"
  10112. }
  10113. },
  10114. },
  10115. [
  10116. {
  10117. name: "Minimicro",
  10118. height: math.unit(0.2, "inches")
  10119. },
  10120. {
  10121. name: "Micro",
  10122. height: math.unit(1.5, "inches")
  10123. },
  10124. {
  10125. name: "Normal",
  10126. height: math.unit(5 + 11 / 12, "feet"),
  10127. default: true
  10128. },
  10129. {
  10130. name: "Minimacro",
  10131. height: math.unit(17 + 9 / 12, "feet")
  10132. },
  10133. {
  10134. name: "Macro",
  10135. height: math.unit(177.5, "feet")
  10136. },
  10137. {
  10138. name: "Megamacro",
  10139. height: math.unit(152, "miles")
  10140. },
  10141. ]
  10142. ))
  10143. characterMakers.push(() => makeCharacter(
  10144. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  10145. {
  10146. front: {
  10147. height: math.unit(6.5, "inches"),
  10148. weight: math.unit(13, "oz"),
  10149. name: "Front",
  10150. image: {
  10151. source: "./media/characters/dafydd-tomos/front.svg",
  10152. extra: 2990 / 2603,
  10153. bottom: 0.03
  10154. }
  10155. },
  10156. },
  10157. [
  10158. {
  10159. name: "Micro",
  10160. height: math.unit(6.5, "inches"),
  10161. default: true
  10162. },
  10163. ]
  10164. ))
  10165. characterMakers.push(() => makeCharacter(
  10166. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  10167. {
  10168. front: {
  10169. height: math.unit(6, "feet"),
  10170. weight: math.unit(150, "lb"),
  10171. name: "Front",
  10172. image: {
  10173. source: "./media/characters/splinter/front.svg",
  10174. extra: 2990 / 2882,
  10175. bottom: 0.04
  10176. }
  10177. },
  10178. back: {
  10179. height: math.unit(6, "feet"),
  10180. weight: math.unit(150, "lb"),
  10181. name: "Back",
  10182. image: {
  10183. source: "./media/characters/splinter/back.svg",
  10184. extra: 2990 / 2882,
  10185. bottom: 0.04
  10186. }
  10187. },
  10188. },
  10189. [
  10190. {
  10191. name: "Normal",
  10192. height: math.unit(6, "feet")
  10193. },
  10194. {
  10195. name: "Macro",
  10196. height: math.unit(230, "meters"),
  10197. default: true
  10198. },
  10199. ]
  10200. ))
  10201. characterMakers.push(() => makeCharacter(
  10202. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  10203. {
  10204. front: {
  10205. height: math.unit(4 + 10 / 12, "feet"),
  10206. weight: math.unit(480, "lb"),
  10207. name: "Front",
  10208. image: {
  10209. source: "./media/characters/snow-gabumon/front.svg",
  10210. extra: 1140 / 963,
  10211. bottom: 0.058
  10212. }
  10213. },
  10214. back: {
  10215. height: math.unit(4 + 10 / 12, "feet"),
  10216. weight: math.unit(480, "lb"),
  10217. name: "Back",
  10218. image: {
  10219. source: "./media/characters/snow-gabumon/back.svg",
  10220. extra: 1115 / 962,
  10221. bottom: 0.041
  10222. }
  10223. },
  10224. frontUndresed: {
  10225. height: math.unit(4 + 10 / 12, "feet"),
  10226. weight: math.unit(480, "lb"),
  10227. name: "Front (Undressed)",
  10228. image: {
  10229. source: "./media/characters/snow-gabumon/front-undressed.svg",
  10230. extra: 1061 / 960,
  10231. bottom: 0.045
  10232. }
  10233. },
  10234. },
  10235. [
  10236. {
  10237. name: "Micro",
  10238. height: math.unit(1, "inch")
  10239. },
  10240. {
  10241. name: "Normal",
  10242. height: math.unit(4 + 10 / 12, "feet"),
  10243. default: true
  10244. },
  10245. {
  10246. name: "Macro",
  10247. height: math.unit(200, "feet")
  10248. },
  10249. {
  10250. name: "Megamacro",
  10251. height: math.unit(120, "miles")
  10252. },
  10253. {
  10254. name: "Gigamacro",
  10255. height: math.unit(9800, "miles")
  10256. },
  10257. ]
  10258. ))
  10259. characterMakers.push(() => makeCharacter(
  10260. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  10261. {
  10262. front: {
  10263. height: math.unit(1.7, "meters"),
  10264. weight: math.unit(140, "lb"),
  10265. name: "Front",
  10266. image: {
  10267. source: "./media/characters/moody/front.svg",
  10268. extra: 3226 / 3007,
  10269. bottom: 0.087
  10270. }
  10271. },
  10272. },
  10273. [
  10274. {
  10275. name: "Micro",
  10276. height: math.unit(1, "mm")
  10277. },
  10278. {
  10279. name: "Normal",
  10280. height: math.unit(1.7, "meters"),
  10281. default: true
  10282. },
  10283. {
  10284. name: "Macro",
  10285. height: math.unit(80, "meters")
  10286. },
  10287. {
  10288. name: "Macro+",
  10289. height: math.unit(500, "meters")
  10290. },
  10291. ]
  10292. ))
  10293. characterMakers.push(() => makeCharacter(
  10294. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  10295. {
  10296. front: {
  10297. height: math.unit(6, "feet"),
  10298. weight: math.unit(150, "lb"),
  10299. name: "Front",
  10300. image: {
  10301. source: "./media/characters/zyas/front.svg",
  10302. extra: 1180 / 1120,
  10303. bottom: 0.045
  10304. }
  10305. },
  10306. },
  10307. [
  10308. {
  10309. name: "Normal",
  10310. height: math.unit(10, "feet"),
  10311. default: true
  10312. },
  10313. {
  10314. name: "Macro",
  10315. height: math.unit(500, "feet")
  10316. },
  10317. {
  10318. name: "Megamacro",
  10319. height: math.unit(5, "miles")
  10320. },
  10321. {
  10322. name: "Teramacro",
  10323. height: math.unit(150000, "miles")
  10324. },
  10325. ]
  10326. ))
  10327. characterMakers.push(() => makeCharacter(
  10328. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  10329. {
  10330. front: {
  10331. height: math.unit(6, "feet"),
  10332. weight: math.unit(150, "lb"),
  10333. name: "Front",
  10334. image: {
  10335. source: "./media/characters/cuon/front.svg",
  10336. extra: 1390 / 1320,
  10337. bottom: 0.008
  10338. }
  10339. },
  10340. },
  10341. [
  10342. {
  10343. name: "Micro",
  10344. height: math.unit(3, "inches")
  10345. },
  10346. {
  10347. name: "Normal",
  10348. height: math.unit(18 + 9 / 12, "feet"),
  10349. default: true
  10350. },
  10351. {
  10352. name: "Macro",
  10353. height: math.unit(360, "feet")
  10354. },
  10355. {
  10356. name: "Megamacro",
  10357. height: math.unit(360, "miles")
  10358. },
  10359. ]
  10360. ))
  10361. characterMakers.push(() => makeCharacter(
  10362. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  10363. {
  10364. front: {
  10365. height: math.unit(2.4, "meters"),
  10366. weight: math.unit(70, "kg"),
  10367. name: "Front",
  10368. image: {
  10369. source: "./media/characters/nyanuxk/front.svg",
  10370. extra: 1172 / 1084,
  10371. bottom: 0.065
  10372. }
  10373. },
  10374. side: {
  10375. height: math.unit(2.4, "meters"),
  10376. weight: math.unit(70, "kg"),
  10377. name: "Side",
  10378. image: {
  10379. source: "./media/characters/nyanuxk/side.svg",
  10380. extra: 1190 / 1132,
  10381. bottom: 0.007
  10382. }
  10383. },
  10384. back: {
  10385. height: math.unit(2.4, "meters"),
  10386. weight: math.unit(70, "kg"),
  10387. name: "Back",
  10388. image: {
  10389. source: "./media/characters/nyanuxk/back.svg",
  10390. extra: 1200 / 1141,
  10391. bottom: 0.015
  10392. }
  10393. },
  10394. foot: {
  10395. height: math.unit(0.52, "meters"),
  10396. name: "Foot",
  10397. image: {
  10398. source: "./media/characters/nyanuxk/foot.svg"
  10399. }
  10400. },
  10401. },
  10402. [
  10403. {
  10404. name: "Micro",
  10405. height: math.unit(2, "cm")
  10406. },
  10407. {
  10408. name: "Normal",
  10409. height: math.unit(2.4, "meters"),
  10410. default: true
  10411. },
  10412. {
  10413. name: "Smaller Macro",
  10414. height: math.unit(120, "meters")
  10415. },
  10416. {
  10417. name: "Bigger Macro",
  10418. height: math.unit(1.2, "km")
  10419. },
  10420. {
  10421. name: "Megamacro",
  10422. height: math.unit(15, "kilometers")
  10423. },
  10424. {
  10425. name: "Gigamacro",
  10426. height: math.unit(2000, "km")
  10427. },
  10428. {
  10429. name: "Teramacro",
  10430. height: math.unit(500000, "km")
  10431. },
  10432. ]
  10433. ))
  10434. characterMakers.push(() => makeCharacter(
  10435. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  10436. {
  10437. side: {
  10438. height: math.unit(6, "feet"),
  10439. name: "Side",
  10440. image: {
  10441. source: "./media/characters/ailbhe/side.svg",
  10442. extra: 757 / 464,
  10443. bottom: 0.041
  10444. }
  10445. },
  10446. },
  10447. [
  10448. {
  10449. name: "Normal",
  10450. height: math.unit(1.07, "meters"),
  10451. default: true
  10452. },
  10453. ]
  10454. ))
  10455. characterMakers.push(() => makeCharacter(
  10456. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  10457. {
  10458. front: {
  10459. height: math.unit(6, "feet"),
  10460. weight: math.unit(120, "kg"),
  10461. name: "Front",
  10462. image: {
  10463. source: "./media/characters/zevulfius/front.svg",
  10464. extra: 965 / 903
  10465. }
  10466. },
  10467. side: {
  10468. height: math.unit(6, "feet"),
  10469. weight: math.unit(120, "kg"),
  10470. name: "Side",
  10471. image: {
  10472. source: "./media/characters/zevulfius/side.svg",
  10473. extra: 939 / 900
  10474. }
  10475. },
  10476. back: {
  10477. height: math.unit(6, "feet"),
  10478. weight: math.unit(120, "kg"),
  10479. name: "Back",
  10480. image: {
  10481. source: "./media/characters/zevulfius/back.svg",
  10482. extra: 918 / 854,
  10483. bottom: 0.005
  10484. }
  10485. },
  10486. foot: {
  10487. height: math.unit(6 / 3.72, "feet"),
  10488. name: "Foot",
  10489. image: {
  10490. source: "./media/characters/zevulfius/foot.svg"
  10491. }
  10492. },
  10493. },
  10494. [
  10495. {
  10496. name: "Macro",
  10497. height: math.unit(750, "meters")
  10498. },
  10499. {
  10500. name: "Megamacro",
  10501. height: math.unit(20, "km"),
  10502. default: true
  10503. },
  10504. {
  10505. name: "Gigamacro",
  10506. height: math.unit(2000, "km")
  10507. },
  10508. {
  10509. name: "Teramacro",
  10510. height: math.unit(250000, "km")
  10511. },
  10512. ]
  10513. ))
  10514. characterMakers.push(() => makeCharacter(
  10515. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  10516. {
  10517. front: {
  10518. height: math.unit(100, "feet"),
  10519. weight: math.unit(350, "kg"),
  10520. name: "Front",
  10521. image: {
  10522. source: "./media/characters/rikes/front.svg",
  10523. extra: 1565 / 1483,
  10524. bottom: 0.017
  10525. }
  10526. },
  10527. },
  10528. [
  10529. {
  10530. name: "Macro",
  10531. height: math.unit(100, "feet"),
  10532. default: true
  10533. },
  10534. ]
  10535. ))
  10536. characterMakers.push(() => makeCharacter(
  10537. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  10538. {
  10539. front: {
  10540. height: math.unit(8, "feet"),
  10541. weight: math.unit(356, "lb"),
  10542. name: "Front",
  10543. image: {
  10544. source: "./media/characters/adam-silver-mane/front.svg",
  10545. extra: 1036/937,
  10546. bottom: 63/1099
  10547. }
  10548. },
  10549. side: {
  10550. height: math.unit(8, "feet"),
  10551. weight: math.unit(356, "lb"),
  10552. name: "Side",
  10553. image: {
  10554. source: "./media/characters/adam-silver-mane/side.svg",
  10555. extra: 997/901,
  10556. bottom: 59/1056
  10557. }
  10558. },
  10559. frontNsfw: {
  10560. height: math.unit(8, "feet"),
  10561. weight: math.unit(356, "lb"),
  10562. name: "Front (NSFW)",
  10563. image: {
  10564. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  10565. extra: 1036/937,
  10566. bottom: 63/1099
  10567. }
  10568. },
  10569. sideNsfw: {
  10570. height: math.unit(8, "feet"),
  10571. weight: math.unit(356, "lb"),
  10572. name: "Side (NSFW)",
  10573. image: {
  10574. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  10575. extra: 997/901,
  10576. bottom: 59/1056
  10577. }
  10578. },
  10579. dick: {
  10580. height: math.unit(2.1, "feet"),
  10581. name: "Dick",
  10582. image: {
  10583. source: "./media/characters/adam-silver-mane/dick.svg"
  10584. }
  10585. },
  10586. taur: {
  10587. height: math.unit(16, "feet"),
  10588. weight: math.unit(1500, "kg"),
  10589. name: "Taur",
  10590. image: {
  10591. source: "./media/characters/adam-silver-mane/taur.svg",
  10592. extra: 1713 / 1571,
  10593. bottom: 0.01
  10594. }
  10595. },
  10596. },
  10597. [
  10598. {
  10599. name: "Normal",
  10600. height: math.unit(8, "feet")
  10601. },
  10602. {
  10603. name: "Minimacro",
  10604. height: math.unit(80, "feet")
  10605. },
  10606. {
  10607. name: "MDA",
  10608. height: math.unit(80, "meters")
  10609. },
  10610. {
  10611. name: "Macro",
  10612. height: math.unit(800, "feet"),
  10613. default: true
  10614. },
  10615. {
  10616. name: "Megamacro",
  10617. height: math.unit(8000, "feet")
  10618. },
  10619. {
  10620. name: "Gigamacro",
  10621. height: math.unit(800, "miles")
  10622. },
  10623. {
  10624. name: "Teramacro",
  10625. height: math.unit(80000, "miles")
  10626. },
  10627. {
  10628. name: "Celestial",
  10629. height: math.unit(8e6, "miles")
  10630. },
  10631. {
  10632. name: "Star Dragon",
  10633. height: math.unit(800000, "parsecs")
  10634. },
  10635. {
  10636. name: "Godly",
  10637. height: math.unit(800, "teraparsecs")
  10638. },
  10639. ]
  10640. ))
  10641. characterMakers.push(() => makeCharacter(
  10642. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  10643. {
  10644. front: {
  10645. height: math.unit(6, "feet"),
  10646. weight: math.unit(150, "lb"),
  10647. name: "Front",
  10648. image: {
  10649. source: "./media/characters/ky'owin/front.svg",
  10650. extra: 3888 / 3068,
  10651. bottom: 0.015
  10652. }
  10653. },
  10654. },
  10655. [
  10656. {
  10657. name: "Normal",
  10658. height: math.unit(6 + 8 / 12, "feet")
  10659. },
  10660. {
  10661. name: "Large",
  10662. height: math.unit(68, "feet")
  10663. },
  10664. {
  10665. name: "Macro",
  10666. height: math.unit(132, "feet")
  10667. },
  10668. {
  10669. name: "Macro+",
  10670. height: math.unit(340, "feet")
  10671. },
  10672. {
  10673. name: "Macro++",
  10674. height: math.unit(680, "feet"),
  10675. default: true
  10676. },
  10677. {
  10678. name: "Megamacro",
  10679. height: math.unit(1, "mile")
  10680. },
  10681. {
  10682. name: "Megamacro+",
  10683. height: math.unit(10, "miles")
  10684. },
  10685. ]
  10686. ))
  10687. characterMakers.push(() => makeCharacter(
  10688. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  10689. {
  10690. front: {
  10691. height: math.unit(4, "feet"),
  10692. weight: math.unit(50, "lb"),
  10693. name: "Front",
  10694. image: {
  10695. source: "./media/characters/mal/front.svg",
  10696. extra: 785 / 724,
  10697. bottom: 0.07
  10698. }
  10699. },
  10700. },
  10701. [
  10702. {
  10703. name: "Micro",
  10704. height: math.unit(4, "inches")
  10705. },
  10706. {
  10707. name: "Normal",
  10708. height: math.unit(4, "feet"),
  10709. default: true
  10710. },
  10711. {
  10712. name: "Macro",
  10713. height: math.unit(200, "feet")
  10714. },
  10715. ]
  10716. ))
  10717. characterMakers.push(() => makeCharacter(
  10718. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  10719. {
  10720. front: {
  10721. height: math.unit(6, "feet"),
  10722. weight: math.unit(150, "lb"),
  10723. name: "Front",
  10724. image: {
  10725. source: "./media/characters/jordan-deware/front.svg",
  10726. extra: 1191 / 1012
  10727. }
  10728. },
  10729. },
  10730. [
  10731. {
  10732. name: "Nano",
  10733. height: math.unit(0.01, "mm")
  10734. },
  10735. {
  10736. name: "Minimicro",
  10737. height: math.unit(1, "mm")
  10738. },
  10739. {
  10740. name: "Micro",
  10741. height: math.unit(0.5, "inches")
  10742. },
  10743. {
  10744. name: "Normal",
  10745. height: math.unit(4, "feet"),
  10746. default: true
  10747. },
  10748. {
  10749. name: "Minimacro",
  10750. height: math.unit(40, "meters")
  10751. },
  10752. {
  10753. name: "Small Macro",
  10754. height: math.unit(400, "meters")
  10755. },
  10756. {
  10757. name: "Macro",
  10758. height: math.unit(4, "miles")
  10759. },
  10760. {
  10761. name: "Megamacro",
  10762. height: math.unit(40, "miles")
  10763. },
  10764. {
  10765. name: "Megamacro+",
  10766. height: math.unit(400, "miles")
  10767. },
  10768. {
  10769. name: "Gigamacro",
  10770. height: math.unit(400000, "miles")
  10771. },
  10772. ]
  10773. ))
  10774. characterMakers.push(() => makeCharacter(
  10775. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  10776. {
  10777. side: {
  10778. height: math.unit(6, "feet"),
  10779. weight: math.unit(150, "lb"),
  10780. name: "Side",
  10781. image: {
  10782. source: "./media/characters/kimiko/side.svg",
  10783. extra: 600 / 358
  10784. }
  10785. },
  10786. },
  10787. [
  10788. {
  10789. name: "Normal",
  10790. height: math.unit(15, "feet"),
  10791. default: true
  10792. },
  10793. {
  10794. name: "Macro",
  10795. height: math.unit(220, "feet")
  10796. },
  10797. {
  10798. name: "Macro+",
  10799. height: math.unit(1450, "feet")
  10800. },
  10801. {
  10802. name: "Megamacro",
  10803. height: math.unit(11500, "feet")
  10804. },
  10805. {
  10806. name: "Gigamacro",
  10807. height: math.unit(9500, "miles")
  10808. },
  10809. {
  10810. name: "Teramacro",
  10811. height: math.unit(2208005005, "miles")
  10812. },
  10813. {
  10814. name: "Examacro",
  10815. height: math.unit(2750, "parsecs")
  10816. },
  10817. {
  10818. name: "Zettamacro",
  10819. height: math.unit(101500, "parsecs")
  10820. },
  10821. ]
  10822. ))
  10823. characterMakers.push(() => makeCharacter(
  10824. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  10825. {
  10826. front: {
  10827. height: math.unit(6, "feet"),
  10828. weight: math.unit(70, "kg"),
  10829. name: "Front",
  10830. image: {
  10831. source: "./media/characters/andrew-sleepy/front.svg"
  10832. }
  10833. },
  10834. side: {
  10835. height: math.unit(6, "feet"),
  10836. weight: math.unit(70, "kg"),
  10837. name: "Side",
  10838. image: {
  10839. source: "./media/characters/andrew-sleepy/side.svg"
  10840. }
  10841. },
  10842. },
  10843. [
  10844. {
  10845. name: "Micro",
  10846. height: math.unit(1, "mm"),
  10847. default: true
  10848. },
  10849. ]
  10850. ))
  10851. characterMakers.push(() => makeCharacter(
  10852. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  10853. {
  10854. front: {
  10855. height: math.unit(6, "feet"),
  10856. weight: math.unit(150, "lb"),
  10857. name: "Front",
  10858. image: {
  10859. source: "./media/characters/judio/front.svg",
  10860. extra: 1258 / 1110
  10861. }
  10862. },
  10863. },
  10864. [
  10865. {
  10866. name: "Normal",
  10867. height: math.unit(5 + 6 / 12, "feet")
  10868. },
  10869. {
  10870. name: "Macro",
  10871. height: math.unit(1000, "feet"),
  10872. default: true
  10873. },
  10874. {
  10875. name: "Megamacro",
  10876. height: math.unit(10, "miles")
  10877. },
  10878. ]
  10879. ))
  10880. characterMakers.push(() => makeCharacter(
  10881. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  10882. {
  10883. front: {
  10884. height: math.unit(6, "feet"),
  10885. weight: math.unit(68, "kg"),
  10886. name: "Front",
  10887. image: {
  10888. source: "./media/characters/nomaxice/front.svg",
  10889. extra: 1498 / 1073,
  10890. bottom: 0.075
  10891. }
  10892. },
  10893. foot: {
  10894. height: math.unit(1.1, "feet"),
  10895. name: "Foot",
  10896. image: {
  10897. source: "./media/characters/nomaxice/foot.svg"
  10898. }
  10899. },
  10900. },
  10901. [
  10902. {
  10903. name: "Micro",
  10904. height: math.unit(8, "cm")
  10905. },
  10906. {
  10907. name: "Norm",
  10908. height: math.unit(1.82, "m")
  10909. },
  10910. {
  10911. name: "Norm+",
  10912. height: math.unit(8.8, "feet")
  10913. },
  10914. {
  10915. name: "Big",
  10916. height: math.unit(8, "meters"),
  10917. default: true
  10918. },
  10919. {
  10920. name: "Macro",
  10921. height: math.unit(18, "meters")
  10922. },
  10923. {
  10924. name: "Macro+",
  10925. height: math.unit(88, "meters")
  10926. },
  10927. ]
  10928. ))
  10929. characterMakers.push(() => makeCharacter(
  10930. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  10931. {
  10932. front: {
  10933. height: math.unit(12, "feet"),
  10934. weight: math.unit(1.5, "tons"),
  10935. name: "Front",
  10936. image: {
  10937. source: "./media/characters/dydros/front.svg",
  10938. extra: 863 / 800,
  10939. bottom: 0.015
  10940. }
  10941. },
  10942. back: {
  10943. height: math.unit(12, "feet"),
  10944. weight: math.unit(1.5, "tons"),
  10945. name: "Back",
  10946. image: {
  10947. source: "./media/characters/dydros/back.svg",
  10948. extra: 900 / 843,
  10949. bottom: 0.005
  10950. }
  10951. },
  10952. },
  10953. [
  10954. {
  10955. name: "Normal",
  10956. height: math.unit(12, "feet"),
  10957. default: true
  10958. },
  10959. ]
  10960. ))
  10961. characterMakers.push(() => makeCharacter(
  10962. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  10963. {
  10964. front: {
  10965. height: math.unit(6, "feet"),
  10966. weight: math.unit(100, "kg"),
  10967. name: "Front",
  10968. image: {
  10969. source: "./media/characters/riggi/front.svg",
  10970. extra: 5787 / 5303
  10971. }
  10972. },
  10973. hyper: {
  10974. height: math.unit(6 * 5 / 3, "feet"),
  10975. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  10976. name: "Hyper",
  10977. image: {
  10978. source: "./media/characters/riggi/hyper.svg",
  10979. extra: 3595 / 3485
  10980. }
  10981. },
  10982. },
  10983. [
  10984. {
  10985. name: "Small Macro",
  10986. height: math.unit(50, "feet")
  10987. },
  10988. {
  10989. name: "Default",
  10990. height: math.unit(200, "feet"),
  10991. default: true
  10992. },
  10993. {
  10994. name: "Loom",
  10995. height: math.unit(10000, "feet")
  10996. },
  10997. {
  10998. name: "Cruising Altitude",
  10999. height: math.unit(30000, "feet")
  11000. },
  11001. {
  11002. name: "Megamacro",
  11003. height: math.unit(100, "miles")
  11004. },
  11005. {
  11006. name: "Continent Sized",
  11007. height: math.unit(2800, "miles")
  11008. },
  11009. {
  11010. name: "Earth Sized",
  11011. height: math.unit(8000, "miles")
  11012. },
  11013. ]
  11014. ))
  11015. characterMakers.push(() => makeCharacter(
  11016. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  11017. {
  11018. front: {
  11019. height: math.unit(6, "feet"),
  11020. weight: math.unit(250, "lb"),
  11021. name: "Front",
  11022. image: {
  11023. source: "./media/characters/alexi/front.svg",
  11024. extra: 3483 / 3291,
  11025. bottom: 0.04
  11026. }
  11027. },
  11028. back: {
  11029. height: math.unit(6, "feet"),
  11030. weight: math.unit(250, "lb"),
  11031. name: "Back",
  11032. image: {
  11033. source: "./media/characters/alexi/back.svg",
  11034. extra: 3533 / 3356,
  11035. bottom: 0.021
  11036. }
  11037. },
  11038. frontTransforming: {
  11039. height: math.unit(8.58, "feet"),
  11040. weight: math.unit(1300, "lb"),
  11041. name: "Transforming",
  11042. image: {
  11043. source: "./media/characters/alexi/front-transforming.svg",
  11044. extra: 437 / 409,
  11045. bottom: 19 / 458.66
  11046. }
  11047. },
  11048. frontTransformed: {
  11049. height: math.unit(12.5, "feet"),
  11050. weight: math.unit(4000, "lb"),
  11051. name: "Transformed",
  11052. image: {
  11053. source: "./media/characters/alexi/front-transformed.svg",
  11054. extra: 639 / 614,
  11055. bottom: 30.55 / 671
  11056. }
  11057. },
  11058. },
  11059. [
  11060. {
  11061. name: "Normal",
  11062. height: math.unit(14, "feet"),
  11063. default: true
  11064. },
  11065. {
  11066. name: "Minimacro",
  11067. height: math.unit(30, "meters")
  11068. },
  11069. {
  11070. name: "Macro",
  11071. height: math.unit(500, "meters")
  11072. },
  11073. {
  11074. name: "Megamacro",
  11075. height: math.unit(9000, "km")
  11076. },
  11077. {
  11078. name: "Teramacro",
  11079. height: math.unit(384000, "km")
  11080. },
  11081. ]
  11082. ))
  11083. characterMakers.push(() => makeCharacter(
  11084. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  11085. {
  11086. front: {
  11087. height: math.unit(6, "feet"),
  11088. weight: math.unit(150, "lb"),
  11089. name: "Front",
  11090. image: {
  11091. source: "./media/characters/kayroo/front.svg",
  11092. extra: 1153 / 1038,
  11093. bottom: 0.06
  11094. }
  11095. },
  11096. foot: {
  11097. height: math.unit(6, "feet"),
  11098. weight: math.unit(150, "lb"),
  11099. name: "Foot",
  11100. image: {
  11101. source: "./media/characters/kayroo/foot.svg"
  11102. }
  11103. },
  11104. },
  11105. [
  11106. {
  11107. name: "Normal",
  11108. height: math.unit(8, "feet"),
  11109. default: true
  11110. },
  11111. {
  11112. name: "Minimacro",
  11113. height: math.unit(250, "feet")
  11114. },
  11115. {
  11116. name: "Macro",
  11117. height: math.unit(2800, "feet")
  11118. },
  11119. {
  11120. name: "Megamacro",
  11121. height: math.unit(5200, "feet")
  11122. },
  11123. {
  11124. name: "Gigamacro",
  11125. height: math.unit(27000, "feet")
  11126. },
  11127. {
  11128. name: "Omega",
  11129. height: math.unit(45000, "feet")
  11130. },
  11131. ]
  11132. ))
  11133. characterMakers.push(() => makeCharacter(
  11134. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  11135. {
  11136. front: {
  11137. height: math.unit(18, "feet"),
  11138. weight: math.unit(5800, "lb"),
  11139. name: "Front",
  11140. image: {
  11141. source: "./media/characters/rhys/front.svg",
  11142. extra: 3386 / 3090,
  11143. bottom: 0.07
  11144. }
  11145. },
  11146. },
  11147. [
  11148. {
  11149. name: "Normal",
  11150. height: math.unit(18, "feet"),
  11151. default: true
  11152. },
  11153. {
  11154. name: "Working Size",
  11155. height: math.unit(200, "feet")
  11156. },
  11157. {
  11158. name: "Demolition Size",
  11159. height: math.unit(2000, "feet")
  11160. },
  11161. {
  11162. name: "Maximum Licensed Size",
  11163. height: math.unit(5, "miles")
  11164. },
  11165. {
  11166. name: "Maximum Observed Size",
  11167. height: math.unit(10, "yottameters")
  11168. },
  11169. ]
  11170. ))
  11171. characterMakers.push(() => makeCharacter(
  11172. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  11173. {
  11174. front: {
  11175. height: math.unit(6, "feet"),
  11176. weight: math.unit(250, "lb"),
  11177. name: "Front",
  11178. image: {
  11179. source: "./media/characters/toto/front.svg",
  11180. extra: 527 / 479,
  11181. bottom: 0.05
  11182. }
  11183. },
  11184. },
  11185. [
  11186. {
  11187. name: "Micro",
  11188. height: math.unit(3, "feet")
  11189. },
  11190. {
  11191. name: "Normal",
  11192. height: math.unit(10, "feet")
  11193. },
  11194. {
  11195. name: "Macro",
  11196. height: math.unit(150, "feet"),
  11197. default: true
  11198. },
  11199. {
  11200. name: "Megamacro",
  11201. height: math.unit(1200, "feet")
  11202. },
  11203. ]
  11204. ))
  11205. characterMakers.push(() => makeCharacter(
  11206. { name: "King", species: ["lion"], tags: ["anthro"] },
  11207. {
  11208. back: {
  11209. height: math.unit(6, "feet"),
  11210. weight: math.unit(150, "lb"),
  11211. name: "Back",
  11212. image: {
  11213. source: "./media/characters/king/back.svg"
  11214. }
  11215. },
  11216. },
  11217. [
  11218. {
  11219. name: "Micro",
  11220. height: math.unit(2, "inches")
  11221. },
  11222. {
  11223. name: "Normal",
  11224. height: math.unit(8, "feet")
  11225. },
  11226. {
  11227. name: "Macro",
  11228. height: math.unit(200, "feet"),
  11229. default: true
  11230. },
  11231. {
  11232. name: "Megamacro",
  11233. height: math.unit(50, "miles")
  11234. },
  11235. ]
  11236. ))
  11237. characterMakers.push(() => makeCharacter(
  11238. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  11239. {
  11240. front: {
  11241. height: math.unit(11, "feet"),
  11242. weight: math.unit(1400, "lb"),
  11243. name: "Front",
  11244. image: {
  11245. source: "./media/characters/cordite/front.svg",
  11246. extra: 1919/1827,
  11247. bottom: 40/1959
  11248. }
  11249. },
  11250. side: {
  11251. height: math.unit(11, "feet"),
  11252. weight: math.unit(1400, "lb"),
  11253. name: "Side",
  11254. image: {
  11255. source: "./media/characters/cordite/side.svg",
  11256. extra: 1908/1793,
  11257. bottom: 38/1946
  11258. }
  11259. },
  11260. back: {
  11261. height: math.unit(11, "feet"),
  11262. weight: math.unit(1400, "lb"),
  11263. name: "Back",
  11264. image: {
  11265. source: "./media/characters/cordite/back.svg",
  11266. extra: 1938/1837,
  11267. bottom: 10/1948
  11268. }
  11269. },
  11270. feral: {
  11271. height: math.unit(2, "feet"),
  11272. weight: math.unit(90, "lb"),
  11273. name: "Feral",
  11274. image: {
  11275. source: "./media/characters/cordite/feral.svg",
  11276. extra: 1260 / 755,
  11277. bottom: 0.05
  11278. }
  11279. },
  11280. },
  11281. [
  11282. {
  11283. name: "Normal",
  11284. height: math.unit(11, "feet"),
  11285. default: true
  11286. },
  11287. ]
  11288. ))
  11289. characterMakers.push(() => makeCharacter(
  11290. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  11291. {
  11292. front: {
  11293. height: math.unit(6, "feet"),
  11294. weight: math.unit(150, "lb"),
  11295. name: "Front",
  11296. image: {
  11297. source: "./media/characters/pianostrong/front.svg",
  11298. extra: 6577 / 6254,
  11299. bottom: 0.02
  11300. }
  11301. },
  11302. side: {
  11303. height: math.unit(6, "feet"),
  11304. weight: math.unit(150, "lb"),
  11305. name: "Side",
  11306. image: {
  11307. source: "./media/characters/pianostrong/side.svg",
  11308. extra: 6106 / 5730
  11309. }
  11310. },
  11311. back: {
  11312. height: math.unit(6, "feet"),
  11313. weight: math.unit(150, "lb"),
  11314. name: "Back",
  11315. image: {
  11316. source: "./media/characters/pianostrong/back.svg",
  11317. extra: 6085 / 5733,
  11318. bottom: 0.01
  11319. }
  11320. },
  11321. },
  11322. [
  11323. {
  11324. name: "Macro",
  11325. height: math.unit(100, "feet")
  11326. },
  11327. {
  11328. name: "Macro+",
  11329. height: math.unit(300, "feet"),
  11330. default: true
  11331. },
  11332. {
  11333. name: "Macro++",
  11334. height: math.unit(1000, "feet")
  11335. },
  11336. ]
  11337. ))
  11338. characterMakers.push(() => makeCharacter(
  11339. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  11340. {
  11341. front: {
  11342. height: math.unit(6, "feet"),
  11343. weight: math.unit(150, "lb"),
  11344. name: "Front",
  11345. image: {
  11346. source: "./media/characters/kona/front.svg",
  11347. extra: 2960 / 2629,
  11348. bottom: 0.005
  11349. }
  11350. },
  11351. },
  11352. [
  11353. {
  11354. name: "Normal",
  11355. height: math.unit(11 + 8 / 12, "feet")
  11356. },
  11357. {
  11358. name: "Macro",
  11359. height: math.unit(850, "feet"),
  11360. default: true
  11361. },
  11362. {
  11363. name: "Macro+",
  11364. height: math.unit(1.5, "km"),
  11365. default: true
  11366. },
  11367. {
  11368. name: "Megamacro",
  11369. height: math.unit(80, "miles")
  11370. },
  11371. {
  11372. name: "Gigamacro",
  11373. height: math.unit(3500, "miles")
  11374. },
  11375. ]
  11376. ))
  11377. characterMakers.push(() => makeCharacter(
  11378. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  11379. {
  11380. side: {
  11381. height: math.unit(1.9, "meters"),
  11382. weight: math.unit(326, "kg"),
  11383. name: "Side",
  11384. image: {
  11385. source: "./media/characters/levi/side.svg",
  11386. extra: 1704 / 1334,
  11387. bottom: 0.02
  11388. }
  11389. },
  11390. },
  11391. [
  11392. {
  11393. name: "Normal",
  11394. height: math.unit(1.9, "meters"),
  11395. default: true
  11396. },
  11397. {
  11398. name: "Macro",
  11399. height: math.unit(20, "meters")
  11400. },
  11401. {
  11402. name: "Macro+",
  11403. height: math.unit(200, "meters")
  11404. },
  11405. {
  11406. name: "Megamacro",
  11407. height: math.unit(2, "km")
  11408. },
  11409. {
  11410. name: "Megamacro+",
  11411. height: math.unit(20, "km")
  11412. },
  11413. {
  11414. name: "Gigamacro",
  11415. height: math.unit(2500, "km")
  11416. },
  11417. {
  11418. name: "Gigamacro+",
  11419. height: math.unit(120000, "km")
  11420. },
  11421. {
  11422. name: "Teramacro",
  11423. height: math.unit(7.77e6, "km")
  11424. },
  11425. ]
  11426. ))
  11427. characterMakers.push(() => makeCharacter(
  11428. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  11429. {
  11430. front: {
  11431. height: math.unit(6 + 4/12, "feet"),
  11432. weight: math.unit(190, "lb"),
  11433. name: "Front",
  11434. image: {
  11435. source: "./media/characters/bmc/front.svg",
  11436. extra: 1626/1472,
  11437. bottom: 79/1705
  11438. }
  11439. },
  11440. back: {
  11441. height: math.unit(6 + 4/12, "feet"),
  11442. weight: math.unit(190, "lb"),
  11443. name: "Back",
  11444. image: {
  11445. source: "./media/characters/bmc/back.svg",
  11446. extra: 1640/1479,
  11447. bottom: 45/1685
  11448. }
  11449. },
  11450. frontArmor: {
  11451. height: math.unit(6 + 4/12, "feet"),
  11452. weight: math.unit(190, "lb"),
  11453. name: "Front-armor",
  11454. image: {
  11455. source: "./media/characters/bmc/front-armor.svg",
  11456. extra: 1538/1468,
  11457. bottom: 79/1617
  11458. }
  11459. },
  11460. },
  11461. [
  11462. {
  11463. name: "Human-sized",
  11464. height: math.unit(6 + 4 / 12, "feet")
  11465. },
  11466. {
  11467. name: "Interactive Size",
  11468. height: math.unit(25, "feet")
  11469. },
  11470. {
  11471. name: "Small",
  11472. height: math.unit(250, "feet")
  11473. },
  11474. {
  11475. name: "Normal",
  11476. height: math.unit(1250, "feet"),
  11477. default: true
  11478. },
  11479. {
  11480. name: "Good Day",
  11481. height: math.unit(88, "miles")
  11482. },
  11483. {
  11484. name: "Largest Measured Size",
  11485. height: math.unit(105.960, "galaxies")
  11486. },
  11487. ]
  11488. ))
  11489. characterMakers.push(() => makeCharacter(
  11490. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  11491. {
  11492. front: {
  11493. height: math.unit(20, "feet"),
  11494. weight: math.unit(2016, "kg"),
  11495. name: "Front",
  11496. image: {
  11497. source: "./media/characters/sven-the-kaiju/front.svg",
  11498. extra: 1277/1250,
  11499. bottom: 35/1312
  11500. }
  11501. },
  11502. mouth: {
  11503. height: math.unit(1.85, "feet"),
  11504. name: "Mouth",
  11505. image: {
  11506. source: "./media/characters/sven-the-kaiju/mouth.svg"
  11507. }
  11508. },
  11509. },
  11510. [
  11511. {
  11512. name: "Fairy",
  11513. height: math.unit(6, "inches")
  11514. },
  11515. {
  11516. name: "Normal",
  11517. height: math.unit(20, "feet"),
  11518. default: true
  11519. },
  11520. {
  11521. name: "Rampage",
  11522. height: math.unit(200, "feet")
  11523. },
  11524. {
  11525. name: "Archfey Forest Guardian",
  11526. height: math.unit(1, "mile")
  11527. },
  11528. ]
  11529. ))
  11530. characterMakers.push(() => makeCharacter(
  11531. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  11532. {
  11533. front: {
  11534. height: math.unit(4, "meters"),
  11535. weight: math.unit(2, "tons"),
  11536. name: "Front",
  11537. image: {
  11538. source: "./media/characters/marik/front.svg",
  11539. extra: 1057 / 1003,
  11540. bottom: 0.08
  11541. }
  11542. },
  11543. },
  11544. [
  11545. {
  11546. name: "Normal",
  11547. height: math.unit(4, "meters"),
  11548. default: true
  11549. },
  11550. {
  11551. name: "Macro",
  11552. height: math.unit(20, "meters")
  11553. },
  11554. {
  11555. name: "Megamacro",
  11556. height: math.unit(50, "km")
  11557. },
  11558. {
  11559. name: "Gigamacro",
  11560. height: math.unit(100, "km")
  11561. },
  11562. {
  11563. name: "Alpha Macro",
  11564. height: math.unit(7.88e7, "yottameters")
  11565. },
  11566. ]
  11567. ))
  11568. characterMakers.push(() => makeCharacter(
  11569. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  11570. {
  11571. front: {
  11572. height: math.unit(6, "feet"),
  11573. weight: math.unit(110, "lb"),
  11574. name: "Front",
  11575. image: {
  11576. source: "./media/characters/mel/front.svg",
  11577. extra: 736 / 617,
  11578. bottom: 0.017
  11579. }
  11580. },
  11581. },
  11582. [
  11583. {
  11584. name: "Pico",
  11585. height: math.unit(3, "pm")
  11586. },
  11587. {
  11588. name: "Nano",
  11589. height: math.unit(3, "nm")
  11590. },
  11591. {
  11592. name: "Micro",
  11593. height: math.unit(0.3, "mm"),
  11594. default: true
  11595. },
  11596. {
  11597. name: "Micro+",
  11598. height: math.unit(3, "mm")
  11599. },
  11600. {
  11601. name: "Normal",
  11602. height: math.unit(5 + 10.5 / 12, "feet")
  11603. },
  11604. ]
  11605. ))
  11606. characterMakers.push(() => makeCharacter(
  11607. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  11608. {
  11609. kaiju: {
  11610. height: math.unit(1.75, "meters"),
  11611. weight: math.unit(55, "kg"),
  11612. name: "Kaiju",
  11613. image: {
  11614. source: "./media/characters/lykonous/kaiju.svg",
  11615. extra: 1055 / 946,
  11616. bottom: 0.135
  11617. }
  11618. },
  11619. },
  11620. [
  11621. {
  11622. name: "Normal",
  11623. height: math.unit(2.5, "meters"),
  11624. default: true
  11625. },
  11626. {
  11627. name: "Kaiju Dragon",
  11628. height: math.unit(60, "meters")
  11629. },
  11630. {
  11631. name: "Mega Kaiju",
  11632. height: math.unit(120, "km")
  11633. },
  11634. {
  11635. name: "Giga Kaiju",
  11636. height: math.unit(200, "megameters")
  11637. },
  11638. {
  11639. name: "Terra Kaiju",
  11640. height: math.unit(400, "gigameters")
  11641. },
  11642. {
  11643. name: "Kaiju Dragon God",
  11644. height: math.unit(13000, "exaparsecs")
  11645. },
  11646. ]
  11647. ))
  11648. characterMakers.push(() => makeCharacter(
  11649. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  11650. {
  11651. front: {
  11652. height: math.unit(6, "feet"),
  11653. weight: math.unit(150, "lb"),
  11654. name: "Front",
  11655. image: {
  11656. source: "./media/characters/blü/front.svg",
  11657. extra: 1883 / 1564,
  11658. bottom: 0.031
  11659. }
  11660. },
  11661. },
  11662. [
  11663. {
  11664. name: "Normal",
  11665. height: math.unit(13, "feet"),
  11666. default: true
  11667. },
  11668. {
  11669. name: "Big Boi",
  11670. height: math.unit(150, "meters")
  11671. },
  11672. {
  11673. name: "Mini Stomper",
  11674. height: math.unit(300, "meters")
  11675. },
  11676. {
  11677. name: "Macro",
  11678. height: math.unit(1000, "meters")
  11679. },
  11680. {
  11681. name: "Megamacro",
  11682. height: math.unit(11000, "meters")
  11683. },
  11684. {
  11685. name: "Gigamacro",
  11686. height: math.unit(11000, "km")
  11687. },
  11688. {
  11689. name: "Teramacro",
  11690. height: math.unit(420000, "km")
  11691. },
  11692. {
  11693. name: "Examacro",
  11694. height: math.unit(120, "parsecs")
  11695. },
  11696. {
  11697. name: "God Tho",
  11698. height: math.unit(98000000000, "parsecs")
  11699. },
  11700. ]
  11701. ))
  11702. characterMakers.push(() => makeCharacter(
  11703. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  11704. {
  11705. taurFront: {
  11706. height: math.unit(6, "feet"),
  11707. weight: math.unit(200, "lb"),
  11708. name: "Taur (Front)",
  11709. image: {
  11710. source: "./media/characters/scales/taur-front.svg",
  11711. extra: 1,
  11712. bottom: 0.05
  11713. }
  11714. },
  11715. taurBack: {
  11716. height: math.unit(6, "feet"),
  11717. weight: math.unit(200, "lb"),
  11718. name: "Taur (Back)",
  11719. image: {
  11720. source: "./media/characters/scales/taur-back.svg",
  11721. extra: 1,
  11722. bottom: 0.08
  11723. }
  11724. },
  11725. anthro: {
  11726. height: math.unit(6 * 7 / 12, "feet"),
  11727. weight: math.unit(100, "lb"),
  11728. name: "Anthro",
  11729. image: {
  11730. source: "./media/characters/scales/anthro.svg",
  11731. extra: 1,
  11732. bottom: 0.06
  11733. }
  11734. },
  11735. },
  11736. [
  11737. {
  11738. name: "Normal",
  11739. height: math.unit(12, "feet"),
  11740. default: true
  11741. },
  11742. ]
  11743. ))
  11744. characterMakers.push(() => makeCharacter(
  11745. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  11746. {
  11747. front: {
  11748. height: math.unit(6, "feet"),
  11749. weight: math.unit(150, "lb"),
  11750. name: "Front",
  11751. image: {
  11752. source: "./media/characters/koragos/front.svg",
  11753. extra: 841 / 794,
  11754. bottom: 0.035
  11755. }
  11756. },
  11757. back: {
  11758. height: math.unit(6, "feet"),
  11759. weight: math.unit(150, "lb"),
  11760. name: "Back",
  11761. image: {
  11762. source: "./media/characters/koragos/back.svg",
  11763. extra: 841 / 810,
  11764. bottom: 0.022
  11765. }
  11766. },
  11767. },
  11768. [
  11769. {
  11770. name: "Normal",
  11771. height: math.unit(6 + 11 / 12, "feet"),
  11772. default: true
  11773. },
  11774. {
  11775. name: "Macro",
  11776. height: math.unit(490, "feet")
  11777. },
  11778. {
  11779. name: "Megamacro",
  11780. height: math.unit(10, "miles")
  11781. },
  11782. {
  11783. name: "Gigamacro",
  11784. height: math.unit(50, "miles")
  11785. },
  11786. ]
  11787. ))
  11788. characterMakers.push(() => makeCharacter(
  11789. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  11790. {
  11791. front: {
  11792. height: math.unit(6, "feet"),
  11793. weight: math.unit(250, "lb"),
  11794. name: "Front",
  11795. image: {
  11796. source: "./media/characters/xylrem/front.svg",
  11797. extra: 3323 / 3050,
  11798. bottom: 0.065
  11799. }
  11800. },
  11801. },
  11802. [
  11803. {
  11804. name: "Micro",
  11805. height: math.unit(4, "feet")
  11806. },
  11807. {
  11808. name: "Normal",
  11809. height: math.unit(16, "feet"),
  11810. default: true
  11811. },
  11812. {
  11813. name: "Macro",
  11814. height: math.unit(2720, "feet")
  11815. },
  11816. {
  11817. name: "Megamacro",
  11818. height: math.unit(25000, "miles")
  11819. },
  11820. ]
  11821. ))
  11822. characterMakers.push(() => makeCharacter(
  11823. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  11824. {
  11825. front: {
  11826. height: math.unit(8, "feet"),
  11827. weight: math.unit(250, "kg"),
  11828. name: "Front",
  11829. image: {
  11830. source: "./media/characters/ikideru/front.svg",
  11831. extra: 930 / 870,
  11832. bottom: 0.087
  11833. }
  11834. },
  11835. back: {
  11836. height: math.unit(8, "feet"),
  11837. weight: math.unit(250, "kg"),
  11838. name: "Back",
  11839. image: {
  11840. source: "./media/characters/ikideru/back.svg",
  11841. extra: 919 / 852,
  11842. bottom: 0.055
  11843. }
  11844. },
  11845. },
  11846. [
  11847. {
  11848. name: "Rare",
  11849. height: math.unit(8, "feet"),
  11850. default: true
  11851. },
  11852. {
  11853. name: "Playful Loom",
  11854. height: math.unit(80, "feet")
  11855. },
  11856. {
  11857. name: "City Leaner",
  11858. height: math.unit(230, "feet")
  11859. },
  11860. {
  11861. name: "Megamacro",
  11862. height: math.unit(2500, "feet")
  11863. },
  11864. {
  11865. name: "Gigamacro",
  11866. height: math.unit(26400, "feet")
  11867. },
  11868. {
  11869. name: "Tectonic Shifter",
  11870. height: math.unit(1.7, "megameters")
  11871. },
  11872. {
  11873. name: "Planet Carer",
  11874. height: math.unit(21, "megameters")
  11875. },
  11876. {
  11877. name: "God",
  11878. height: math.unit(11157.22, "parsecs")
  11879. },
  11880. ]
  11881. ))
  11882. characterMakers.push(() => makeCharacter(
  11883. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  11884. {
  11885. front: {
  11886. height: math.unit(6, "feet"),
  11887. weight: math.unit(120, "lb"),
  11888. name: "Front",
  11889. image: {
  11890. source: "./media/characters/neo/front.svg"
  11891. }
  11892. },
  11893. },
  11894. [
  11895. {
  11896. name: "Micro",
  11897. height: math.unit(2, "inches"),
  11898. default: true
  11899. },
  11900. {
  11901. name: "Human Size",
  11902. height: math.unit(5 + 8 / 12, "feet")
  11903. },
  11904. ]
  11905. ))
  11906. characterMakers.push(() => makeCharacter(
  11907. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  11908. {
  11909. front: {
  11910. height: math.unit(13 + 10 / 12, "feet"),
  11911. weight: math.unit(5320, "lb"),
  11912. name: "Front",
  11913. image: {
  11914. source: "./media/characters/chauncey-chantz/front.svg",
  11915. extra: 1587 / 1435,
  11916. bottom: 0.02
  11917. }
  11918. },
  11919. },
  11920. [
  11921. {
  11922. name: "Normal",
  11923. height: math.unit(13 + 10 / 12, "feet"),
  11924. default: true
  11925. },
  11926. {
  11927. name: "Macro",
  11928. height: math.unit(45, "feet")
  11929. },
  11930. {
  11931. name: "Megamacro",
  11932. height: math.unit(250, "miles")
  11933. },
  11934. {
  11935. name: "Planetary",
  11936. height: math.unit(10000, "miles")
  11937. },
  11938. {
  11939. name: "Galactic",
  11940. height: math.unit(40000, "parsecs")
  11941. },
  11942. {
  11943. name: "Universal",
  11944. height: math.unit(1, "yottameter")
  11945. },
  11946. ]
  11947. ))
  11948. characterMakers.push(() => makeCharacter(
  11949. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  11950. {
  11951. front: {
  11952. height: math.unit(6, "feet"),
  11953. weight: math.unit(150, "lb"),
  11954. name: "Front",
  11955. image: {
  11956. source: "./media/characters/epifox/front.svg",
  11957. extra: 1,
  11958. bottom: 0.075
  11959. }
  11960. },
  11961. },
  11962. [
  11963. {
  11964. name: "Micro",
  11965. height: math.unit(6, "inches")
  11966. },
  11967. {
  11968. name: "Normal",
  11969. height: math.unit(12, "feet"),
  11970. default: true
  11971. },
  11972. {
  11973. name: "Macro",
  11974. height: math.unit(3810, "feet")
  11975. },
  11976. {
  11977. name: "Megamacro",
  11978. height: math.unit(500, "miles")
  11979. },
  11980. ]
  11981. ))
  11982. characterMakers.push(() => makeCharacter(
  11983. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  11984. {
  11985. front: {
  11986. height: math.unit(1.8796, "m"),
  11987. weight: math.unit(230, "lb"),
  11988. name: "Front",
  11989. image: {
  11990. source: "./media/characters/colin-t/front.svg",
  11991. extra: 1272 / 1193,
  11992. bottom: 0.07
  11993. }
  11994. },
  11995. },
  11996. [
  11997. {
  11998. name: "Micro",
  11999. height: math.unit(0.571, "meters")
  12000. },
  12001. {
  12002. name: "Normal",
  12003. height: math.unit(1.8796, "meters"),
  12004. default: true
  12005. },
  12006. {
  12007. name: "Tall",
  12008. height: math.unit(4, "meters")
  12009. },
  12010. {
  12011. name: "Macro",
  12012. height: math.unit(67.241, "meters")
  12013. },
  12014. {
  12015. name: "Megamacro",
  12016. height: math.unit(371.856, "meters")
  12017. },
  12018. {
  12019. name: "Planetary",
  12020. height: math.unit(12631.5689, "km")
  12021. },
  12022. ]
  12023. ))
  12024. characterMakers.push(() => makeCharacter(
  12025. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  12026. {
  12027. front: {
  12028. height: math.unit(1.85, "meters"),
  12029. weight: math.unit(80, "kg"),
  12030. name: "Front",
  12031. image: {
  12032. source: "./media/characters/matvei/front.svg",
  12033. extra: 614 / 594,
  12034. bottom: 0.01
  12035. }
  12036. },
  12037. },
  12038. [
  12039. {
  12040. name: "Normal",
  12041. height: math.unit(1.85, "meters"),
  12042. default: true
  12043. },
  12044. ]
  12045. ))
  12046. characterMakers.push(() => makeCharacter(
  12047. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  12048. {
  12049. front: {
  12050. height: math.unit(5 + 9 / 12, "feet"),
  12051. weight: math.unit(70, "lb"),
  12052. name: "Front",
  12053. image: {
  12054. source: "./media/characters/quincy/front.svg",
  12055. extra: 3041 / 2751
  12056. }
  12057. },
  12058. back: {
  12059. height: math.unit(5 + 9 / 12, "feet"),
  12060. weight: math.unit(70, "lb"),
  12061. name: "Back",
  12062. image: {
  12063. source: "./media/characters/quincy/back.svg",
  12064. extra: 3041 / 2751
  12065. }
  12066. },
  12067. flying: {
  12068. height: math.unit(5 + 4 / 12, "feet"),
  12069. weight: math.unit(70, "lb"),
  12070. name: "Flying",
  12071. image: {
  12072. source: "./media/characters/quincy/flying.svg",
  12073. extra: 1044 / 930
  12074. }
  12075. },
  12076. },
  12077. [
  12078. {
  12079. name: "Micro",
  12080. height: math.unit(3, "cm")
  12081. },
  12082. {
  12083. name: "Normal",
  12084. height: math.unit(5 + 9 / 12, "feet")
  12085. },
  12086. {
  12087. name: "Macro",
  12088. height: math.unit(200, "meters"),
  12089. default: true
  12090. },
  12091. {
  12092. name: "Megamacro",
  12093. height: math.unit(1000, "meters")
  12094. },
  12095. ]
  12096. ))
  12097. characterMakers.push(() => makeCharacter(
  12098. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  12099. {
  12100. front: {
  12101. height: math.unit(3 + 11/12, "feet"),
  12102. weight: math.unit(50, "lb"),
  12103. name: "Front",
  12104. image: {
  12105. source: "./media/characters/vanrel/front.svg",
  12106. extra: 1104/949,
  12107. bottom: 52/1156
  12108. }
  12109. },
  12110. back: {
  12111. height: math.unit(3 + 11/12, "feet"),
  12112. weight: math.unit(50, "lb"),
  12113. name: "Back",
  12114. image: {
  12115. source: "./media/characters/vanrel/back.svg",
  12116. extra: 1119/976,
  12117. bottom: 37/1156
  12118. }
  12119. },
  12120. tome: {
  12121. height: math.unit(1.35, "feet"),
  12122. weight: math.unit(10, "lb"),
  12123. name: "Vanrel's Tome",
  12124. rename: true,
  12125. image: {
  12126. source: "./media/characters/vanrel/tome.svg"
  12127. }
  12128. },
  12129. beans: {
  12130. height: math.unit(0.89, "feet"),
  12131. name: "Beans",
  12132. image: {
  12133. source: "./media/characters/vanrel/beans.svg"
  12134. }
  12135. },
  12136. },
  12137. [
  12138. {
  12139. name: "Normal",
  12140. height: math.unit(3 + 11/12, "feet"),
  12141. default: true
  12142. },
  12143. ]
  12144. ))
  12145. characterMakers.push(() => makeCharacter(
  12146. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  12147. {
  12148. front: {
  12149. height: math.unit(7 + 5 / 12, "feet"),
  12150. name: "Front",
  12151. image: {
  12152. source: "./media/characters/kuiper-vanrel/front.svg",
  12153. extra: 1219/1169,
  12154. bottom: 69/1288
  12155. }
  12156. },
  12157. back: {
  12158. height: math.unit(7 + 5 / 12, "feet"),
  12159. name: "Back",
  12160. image: {
  12161. source: "./media/characters/kuiper-vanrel/back.svg",
  12162. extra: 1236/1193,
  12163. bottom: 27/1263
  12164. }
  12165. },
  12166. foot: {
  12167. height: math.unit(0.55, "meters"),
  12168. name: "Foot",
  12169. image: {
  12170. source: "./media/characters/kuiper-vanrel/foot.svg",
  12171. }
  12172. },
  12173. battle: {
  12174. height: math.unit(6.824, "feet"),
  12175. name: "Battle",
  12176. image: {
  12177. source: "./media/characters/kuiper-vanrel/battle.svg",
  12178. extra: 1466 / 1327,
  12179. bottom: 29 / 1492.5
  12180. }
  12181. },
  12182. meerkui: {
  12183. height: math.unit(18, "inches"),
  12184. name: "Meerkui",
  12185. image: {
  12186. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  12187. extra: 1354/1289,
  12188. bottom: 69/1423
  12189. }
  12190. },
  12191. },
  12192. [
  12193. {
  12194. name: "Normal",
  12195. height: math.unit(7 + 5 / 12, "feet"),
  12196. default: true
  12197. },
  12198. ]
  12199. ))
  12200. characterMakers.push(() => makeCharacter(
  12201. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  12202. {
  12203. front: {
  12204. height: math.unit(8 + 5 / 12, "feet"),
  12205. name: "Front",
  12206. image: {
  12207. source: "./media/characters/keset-vanrel/front.svg",
  12208. extra: 1231/1148,
  12209. bottom: 82/1313
  12210. }
  12211. },
  12212. back: {
  12213. height: math.unit(8 + 5 / 12, "feet"),
  12214. name: "Back",
  12215. image: {
  12216. source: "./media/characters/keset-vanrel/back.svg",
  12217. extra: 1240/1174,
  12218. bottom: 33/1273
  12219. }
  12220. },
  12221. hand: {
  12222. height: math.unit(0.6, "meters"),
  12223. name: "Hand",
  12224. image: {
  12225. source: "./media/characters/keset-vanrel/hand.svg"
  12226. }
  12227. },
  12228. foot: {
  12229. height: math.unit(0.94978, "meters"),
  12230. name: "Foot",
  12231. image: {
  12232. source: "./media/characters/keset-vanrel/foot.svg"
  12233. }
  12234. },
  12235. battle: {
  12236. height: math.unit(7.408, "feet"),
  12237. name: "Battle",
  12238. image: {
  12239. source: "./media/characters/keset-vanrel/battle.svg",
  12240. extra: 1890 / 1386,
  12241. bottom: 73.28 / 1970
  12242. }
  12243. },
  12244. },
  12245. [
  12246. {
  12247. name: "Normal",
  12248. height: math.unit(8 + 5 / 12, "feet"),
  12249. default: true
  12250. },
  12251. ]
  12252. ))
  12253. characterMakers.push(() => makeCharacter(
  12254. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  12255. {
  12256. front: {
  12257. height: math.unit(6, "feet"),
  12258. weight: math.unit(150, "lb"),
  12259. name: "Front",
  12260. image: {
  12261. source: "./media/characters/neos/front.svg",
  12262. extra: 1696 / 992,
  12263. bottom: 0.14
  12264. }
  12265. },
  12266. },
  12267. [
  12268. {
  12269. name: "Normal",
  12270. height: math.unit(54, "cm"),
  12271. default: true
  12272. },
  12273. {
  12274. name: "Macro",
  12275. height: math.unit(100, "m")
  12276. },
  12277. {
  12278. name: "Megamacro",
  12279. height: math.unit(10, "km")
  12280. },
  12281. {
  12282. name: "Megamacro+",
  12283. height: math.unit(100, "km")
  12284. },
  12285. {
  12286. name: "Gigamacro",
  12287. height: math.unit(100, "Mm")
  12288. },
  12289. {
  12290. name: "Teramacro",
  12291. height: math.unit(100, "Gm")
  12292. },
  12293. {
  12294. name: "Examacro",
  12295. height: math.unit(100, "Em")
  12296. },
  12297. {
  12298. name: "Godly",
  12299. height: math.unit(10000, "Ym")
  12300. },
  12301. {
  12302. name: "Beyond Godly",
  12303. height: math.unit(25, "multiverses")
  12304. },
  12305. ]
  12306. ))
  12307. characterMakers.push(() => makeCharacter(
  12308. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  12309. {
  12310. feminine: {
  12311. height: math.unit(5, "feet"),
  12312. weight: math.unit(100, "lb"),
  12313. name: "Feminine",
  12314. image: {
  12315. source: "./media/characters/sammy-mouse/feminine.svg",
  12316. extra: 2526 / 2425,
  12317. bottom: 0.123
  12318. }
  12319. },
  12320. masculine: {
  12321. height: math.unit(5, "feet"),
  12322. weight: math.unit(100, "lb"),
  12323. name: "Masculine",
  12324. image: {
  12325. source: "./media/characters/sammy-mouse/masculine.svg",
  12326. extra: 2526 / 2425,
  12327. bottom: 0.123
  12328. }
  12329. },
  12330. },
  12331. [
  12332. {
  12333. name: "Micro",
  12334. height: math.unit(5, "inches")
  12335. },
  12336. {
  12337. name: "Normal",
  12338. height: math.unit(5, "feet"),
  12339. default: true
  12340. },
  12341. {
  12342. name: "Macro",
  12343. height: math.unit(60, "feet")
  12344. },
  12345. ]
  12346. ))
  12347. characterMakers.push(() => makeCharacter(
  12348. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  12349. {
  12350. front: {
  12351. height: math.unit(4, "feet"),
  12352. weight: math.unit(50, "lb"),
  12353. name: "Front",
  12354. image: {
  12355. source: "./media/characters/kole/front.svg",
  12356. extra: 1423 / 1303,
  12357. bottom: 0.025
  12358. }
  12359. },
  12360. back: {
  12361. height: math.unit(4, "feet"),
  12362. weight: math.unit(50, "lb"),
  12363. name: "Back",
  12364. image: {
  12365. source: "./media/characters/kole/back.svg",
  12366. extra: 1426 / 1280,
  12367. bottom: 0.02
  12368. }
  12369. },
  12370. },
  12371. [
  12372. {
  12373. name: "Normal",
  12374. height: math.unit(4, "feet"),
  12375. default: true
  12376. },
  12377. ]
  12378. ))
  12379. characterMakers.push(() => makeCharacter(
  12380. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  12381. {
  12382. front: {
  12383. height: math.unit(2.5, "feet"),
  12384. weight: math.unit(32, "lb"),
  12385. name: "Front",
  12386. image: {
  12387. source: "./media/characters/rufran/front.svg",
  12388. extra: 1313/885,
  12389. bottom: 94/1407
  12390. }
  12391. },
  12392. side: {
  12393. height: math.unit(2.5, "feet"),
  12394. weight: math.unit(32, "lb"),
  12395. name: "Side",
  12396. image: {
  12397. source: "./media/characters/rufran/side.svg",
  12398. extra: 1109/852,
  12399. bottom: 118/1227
  12400. }
  12401. },
  12402. back: {
  12403. height: math.unit(2.5, "feet"),
  12404. weight: math.unit(32, "lb"),
  12405. name: "Back",
  12406. image: {
  12407. source: "./media/characters/rufran/back.svg",
  12408. extra: 1280/878,
  12409. bottom: 131/1411
  12410. }
  12411. },
  12412. mouth: {
  12413. height: math.unit(1.13, "feet"),
  12414. name: "Mouth",
  12415. image: {
  12416. source: "./media/characters/rufran/mouth.svg"
  12417. }
  12418. },
  12419. foot: {
  12420. height: math.unit(1.33, "feet"),
  12421. name: "Foot",
  12422. image: {
  12423. source: "./media/characters/rufran/foot.svg"
  12424. }
  12425. },
  12426. koboldFront: {
  12427. height: math.unit(2 + 6 / 12, "feet"),
  12428. weight: math.unit(20, "lb"),
  12429. name: "Front (Kobold)",
  12430. image: {
  12431. source: "./media/characters/rufran/kobold-front.svg",
  12432. extra: 2041 / 1839,
  12433. bottom: 0.055
  12434. }
  12435. },
  12436. koboldBack: {
  12437. height: math.unit(2 + 6 / 12, "feet"),
  12438. weight: math.unit(20, "lb"),
  12439. name: "Back (Kobold)",
  12440. image: {
  12441. source: "./media/characters/rufran/kobold-back.svg",
  12442. extra: 2054 / 1839,
  12443. bottom: 0.01
  12444. }
  12445. },
  12446. koboldHand: {
  12447. height: math.unit(0.2166, "meters"),
  12448. name: "Hand (Kobold)",
  12449. image: {
  12450. source: "./media/characters/rufran/kobold-hand.svg"
  12451. }
  12452. },
  12453. koboldFoot: {
  12454. height: math.unit(0.185, "meters"),
  12455. name: "Foot (Kobold)",
  12456. image: {
  12457. source: "./media/characters/rufran/kobold-foot.svg"
  12458. }
  12459. },
  12460. },
  12461. [
  12462. {
  12463. name: "Micro",
  12464. height: math.unit(1, "inch")
  12465. },
  12466. {
  12467. name: "Normal",
  12468. height: math.unit(2 + 6 / 12, "feet"),
  12469. default: true
  12470. },
  12471. {
  12472. name: "Big",
  12473. height: math.unit(60, "feet")
  12474. },
  12475. {
  12476. name: "Macro",
  12477. height: math.unit(325, "feet")
  12478. },
  12479. ]
  12480. ))
  12481. characterMakers.push(() => makeCharacter(
  12482. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  12483. {
  12484. front: {
  12485. height: math.unit(0.3, "meters"),
  12486. weight: math.unit(3.5, "kg"),
  12487. name: "Front",
  12488. image: {
  12489. source: "./media/characters/chip/front.svg",
  12490. extra: 748 / 674
  12491. }
  12492. },
  12493. },
  12494. [
  12495. {
  12496. name: "Micro",
  12497. height: math.unit(1, "inch"),
  12498. default: true
  12499. },
  12500. ]
  12501. ))
  12502. characterMakers.push(() => makeCharacter(
  12503. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  12504. {
  12505. side: {
  12506. height: math.unit(2.3, "meters"),
  12507. weight: math.unit(3500, "lb"),
  12508. name: "Side",
  12509. image: {
  12510. source: "./media/characters/torvid/side.svg",
  12511. extra: 1972 / 722,
  12512. bottom: 0.035
  12513. }
  12514. },
  12515. },
  12516. [
  12517. {
  12518. name: "Normal",
  12519. height: math.unit(2.3, "meters"),
  12520. default: true
  12521. },
  12522. ]
  12523. ))
  12524. characterMakers.push(() => makeCharacter(
  12525. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  12526. {
  12527. front: {
  12528. height: math.unit(2, "meters"),
  12529. weight: math.unit(150.5, "kg"),
  12530. name: "Front",
  12531. image: {
  12532. source: "./media/characters/susan/front.svg",
  12533. extra: 693 / 635,
  12534. bottom: 0.05
  12535. }
  12536. },
  12537. },
  12538. [
  12539. {
  12540. name: "Megamacro",
  12541. height: math.unit(505, "miles"),
  12542. default: true
  12543. },
  12544. ]
  12545. ))
  12546. characterMakers.push(() => makeCharacter(
  12547. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  12548. {
  12549. front: {
  12550. height: math.unit(6, "feet"),
  12551. weight: math.unit(150, "lb"),
  12552. name: "Front",
  12553. image: {
  12554. source: "./media/characters/raindrops/front.svg",
  12555. extra: 2655 / 2461,
  12556. bottom: 49 / 2705
  12557. }
  12558. },
  12559. back: {
  12560. height: math.unit(6, "feet"),
  12561. weight: math.unit(150, "lb"),
  12562. name: "Back",
  12563. image: {
  12564. source: "./media/characters/raindrops/back.svg",
  12565. extra: 2574 / 2400,
  12566. bottom: 65 / 2634
  12567. }
  12568. },
  12569. },
  12570. [
  12571. {
  12572. name: "Micro",
  12573. height: math.unit(6, "inches")
  12574. },
  12575. {
  12576. name: "Normal",
  12577. height: math.unit(6 + 2 / 12, "feet")
  12578. },
  12579. {
  12580. name: "Macro",
  12581. height: math.unit(131, "feet"),
  12582. default: true
  12583. },
  12584. {
  12585. name: "Megamacro",
  12586. height: math.unit(15, "miles")
  12587. },
  12588. {
  12589. name: "Gigamacro",
  12590. height: math.unit(4000, "miles")
  12591. },
  12592. {
  12593. name: "Teramacro",
  12594. height: math.unit(315000, "miles")
  12595. },
  12596. ]
  12597. ))
  12598. characterMakers.push(() => makeCharacter(
  12599. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  12600. {
  12601. front: {
  12602. height: math.unit(2.794, "meters"),
  12603. weight: math.unit(325, "kg"),
  12604. name: "Front",
  12605. image: {
  12606. source: "./media/characters/tezwa/front.svg",
  12607. extra: 2083 / 1906,
  12608. bottom: 0.031
  12609. }
  12610. },
  12611. foot: {
  12612. height: math.unit(0.687, "meters"),
  12613. name: "Foot",
  12614. image: {
  12615. source: "./media/characters/tezwa/foot.svg"
  12616. }
  12617. },
  12618. },
  12619. [
  12620. {
  12621. name: "Normal",
  12622. height: math.unit(9 + 2 / 12, "feet"),
  12623. default: true
  12624. },
  12625. ]
  12626. ))
  12627. characterMakers.push(() => makeCharacter(
  12628. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  12629. {
  12630. front: {
  12631. height: math.unit(58, "feet"),
  12632. weight: math.unit(89000, "lb"),
  12633. name: "Front",
  12634. image: {
  12635. source: "./media/characters/typhus/front.svg",
  12636. extra: 816 / 800,
  12637. bottom: 0.065
  12638. }
  12639. },
  12640. },
  12641. [
  12642. {
  12643. name: "Macro",
  12644. height: math.unit(58, "feet"),
  12645. default: true
  12646. },
  12647. ]
  12648. ))
  12649. characterMakers.push(() => makeCharacter(
  12650. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  12651. {
  12652. front: {
  12653. height: math.unit(12, "feet"),
  12654. weight: math.unit(6, "tonnes"),
  12655. name: "Front",
  12656. image: {
  12657. source: "./media/characters/lyra-von-wulf/front.svg",
  12658. extra: 1,
  12659. bottom: 0.10
  12660. }
  12661. },
  12662. frontMecha: {
  12663. height: math.unit(12, "feet"),
  12664. weight: math.unit(12, "tonnes"),
  12665. name: "Front (Mecha)",
  12666. image: {
  12667. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  12668. extra: 1,
  12669. bottom: 0.042
  12670. }
  12671. },
  12672. maw: {
  12673. height: math.unit(2.2, "feet"),
  12674. name: "Maw",
  12675. image: {
  12676. source: "./media/characters/lyra-von-wulf/maw.svg"
  12677. }
  12678. },
  12679. },
  12680. [
  12681. {
  12682. name: "Normal",
  12683. height: math.unit(12, "feet"),
  12684. default: true
  12685. },
  12686. {
  12687. name: "Classic",
  12688. height: math.unit(50, "feet")
  12689. },
  12690. {
  12691. name: "Macro",
  12692. height: math.unit(500, "feet")
  12693. },
  12694. {
  12695. name: "Megamacro",
  12696. height: math.unit(1, "mile")
  12697. },
  12698. {
  12699. name: "Gigamacro",
  12700. height: math.unit(400, "miles")
  12701. },
  12702. {
  12703. name: "Teramacro",
  12704. height: math.unit(22000, "miles")
  12705. },
  12706. {
  12707. name: "Solarmacro",
  12708. height: math.unit(8600000, "miles")
  12709. },
  12710. {
  12711. name: "Galactic",
  12712. height: math.unit(1057000, "lightyears")
  12713. },
  12714. ]
  12715. ))
  12716. characterMakers.push(() => makeCharacter(
  12717. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  12718. {
  12719. front: {
  12720. height: math.unit(6 + 10 / 12, "feet"),
  12721. weight: math.unit(150, "lb"),
  12722. name: "Front",
  12723. image: {
  12724. source: "./media/characters/dixon/front.svg",
  12725. extra: 3361 / 3209,
  12726. bottom: 0.01
  12727. }
  12728. },
  12729. },
  12730. [
  12731. {
  12732. name: "Normal",
  12733. height: math.unit(6 + 10 / 12, "feet"),
  12734. default: true
  12735. },
  12736. {
  12737. name: "Big",
  12738. height: math.unit(12, "meters")
  12739. },
  12740. {
  12741. name: "Macro",
  12742. height: math.unit(500, "meters")
  12743. },
  12744. {
  12745. name: "Megamacro",
  12746. height: math.unit(2, "km")
  12747. },
  12748. ]
  12749. ))
  12750. characterMakers.push(() => makeCharacter(
  12751. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  12752. {
  12753. front: {
  12754. height: math.unit(185, "cm"),
  12755. weight: math.unit(68, "kg"),
  12756. name: "Front",
  12757. image: {
  12758. source: "./media/characters/kauko/front.svg",
  12759. extra: 1455 / 1421,
  12760. bottom: 0.03
  12761. }
  12762. },
  12763. back: {
  12764. height: math.unit(185, "cm"),
  12765. weight: math.unit(68, "kg"),
  12766. name: "Back",
  12767. image: {
  12768. source: "./media/characters/kauko/back.svg",
  12769. extra: 1455 / 1421,
  12770. bottom: 0.004
  12771. }
  12772. },
  12773. },
  12774. [
  12775. {
  12776. name: "Normal",
  12777. height: math.unit(185, "cm"),
  12778. default: true
  12779. },
  12780. ]
  12781. ))
  12782. characterMakers.push(() => makeCharacter(
  12783. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  12784. {
  12785. front: {
  12786. height: math.unit(6, "feet"),
  12787. weight: math.unit(150, "kg"),
  12788. name: "Front",
  12789. image: {
  12790. source: "./media/characters/varg/front.svg",
  12791. extra: 1108 / 1018,
  12792. bottom: 0.0375
  12793. }
  12794. },
  12795. },
  12796. [
  12797. {
  12798. name: "Normal",
  12799. height: math.unit(5, "meters")
  12800. },
  12801. {
  12802. name: "Macro",
  12803. height: math.unit(200, "meters")
  12804. },
  12805. {
  12806. name: "Megamacro",
  12807. height: math.unit(20, "kilometers")
  12808. },
  12809. {
  12810. name: "True Size",
  12811. height: math.unit(211, "km"),
  12812. default: true
  12813. },
  12814. {
  12815. name: "Gigamacro",
  12816. height: math.unit(1000, "km")
  12817. },
  12818. {
  12819. name: "Gigamacro+",
  12820. height: math.unit(8000, "km")
  12821. },
  12822. {
  12823. name: "Teramacro",
  12824. height: math.unit(1000000, "km")
  12825. },
  12826. ]
  12827. ))
  12828. characterMakers.push(() => makeCharacter(
  12829. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  12830. {
  12831. front: {
  12832. height: math.unit(7 + 7 / 12, "feet"),
  12833. weight: math.unit(267, "lb"),
  12834. name: "Front",
  12835. image: {
  12836. source: "./media/characters/dayza/front.svg",
  12837. extra: 1262 / 1200,
  12838. bottom: 0.035
  12839. }
  12840. },
  12841. side: {
  12842. height: math.unit(7 + 7 / 12, "feet"),
  12843. weight: math.unit(267, "lb"),
  12844. name: "Side",
  12845. image: {
  12846. source: "./media/characters/dayza/side.svg",
  12847. extra: 1295 / 1245,
  12848. bottom: 0.05
  12849. }
  12850. },
  12851. back: {
  12852. height: math.unit(7 + 7 / 12, "feet"),
  12853. weight: math.unit(267, "lb"),
  12854. name: "Back",
  12855. image: {
  12856. source: "./media/characters/dayza/back.svg",
  12857. extra: 1241 / 1170
  12858. }
  12859. },
  12860. },
  12861. [
  12862. {
  12863. name: "Normal",
  12864. height: math.unit(7 + 7 / 12, "feet"),
  12865. default: true
  12866. },
  12867. {
  12868. name: "Macro",
  12869. height: math.unit(155, "feet")
  12870. },
  12871. ]
  12872. ))
  12873. characterMakers.push(() => makeCharacter(
  12874. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  12875. {
  12876. front: {
  12877. height: math.unit(6 + 5 / 12, "feet"),
  12878. weight: math.unit(160, "lb"),
  12879. name: "Front",
  12880. image: {
  12881. source: "./media/characters/xanthos/front.svg",
  12882. extra: 1,
  12883. bottom: 0.04
  12884. }
  12885. },
  12886. back: {
  12887. height: math.unit(6 + 5 / 12, "feet"),
  12888. weight: math.unit(160, "lb"),
  12889. name: "Back",
  12890. image: {
  12891. source: "./media/characters/xanthos/back.svg",
  12892. extra: 1,
  12893. bottom: 0.03
  12894. }
  12895. },
  12896. hand: {
  12897. height: math.unit(0.928, "feet"),
  12898. name: "Hand",
  12899. image: {
  12900. source: "./media/characters/xanthos/hand.svg"
  12901. }
  12902. },
  12903. foot: {
  12904. height: math.unit(1.286, "feet"),
  12905. name: "Foot",
  12906. image: {
  12907. source: "./media/characters/xanthos/foot.svg"
  12908. }
  12909. },
  12910. },
  12911. [
  12912. {
  12913. name: "Normal",
  12914. height: math.unit(6 + 5 / 12, "feet"),
  12915. default: true
  12916. },
  12917. {
  12918. name: "Normal+",
  12919. height: math.unit(6, "meters")
  12920. },
  12921. {
  12922. name: "Macro",
  12923. height: math.unit(40, "feet")
  12924. },
  12925. {
  12926. name: "Macro+",
  12927. height: math.unit(200, "meters")
  12928. },
  12929. {
  12930. name: "Megamacro",
  12931. height: math.unit(20, "km")
  12932. },
  12933. {
  12934. name: "Megamacro+",
  12935. height: math.unit(100, "km")
  12936. },
  12937. {
  12938. name: "Gigamacro",
  12939. height: math.unit(200, "megameters")
  12940. },
  12941. {
  12942. name: "Gigamacro+",
  12943. height: math.unit(1.5, "gigameters")
  12944. },
  12945. ]
  12946. ))
  12947. characterMakers.push(() => makeCharacter(
  12948. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  12949. {
  12950. front: {
  12951. height: math.unit(6 + 3 / 12, "feet"),
  12952. weight: math.unit(215, "lb"),
  12953. name: "Front",
  12954. image: {
  12955. source: "./media/characters/grynn/front.svg",
  12956. extra: 4627 / 4209,
  12957. bottom: 0.047
  12958. }
  12959. },
  12960. },
  12961. [
  12962. {
  12963. name: "Micro",
  12964. height: math.unit(6, "inches")
  12965. },
  12966. {
  12967. name: "Normal",
  12968. height: math.unit(6 + 3 / 12, "feet"),
  12969. default: true
  12970. },
  12971. {
  12972. name: "Big",
  12973. height: math.unit(104, "feet")
  12974. },
  12975. {
  12976. name: "Macro",
  12977. height: math.unit(944, "feet")
  12978. },
  12979. {
  12980. name: "Macro+",
  12981. height: math.unit(9480, "feet")
  12982. },
  12983. {
  12984. name: "Megamacro",
  12985. height: math.unit(78752, "feet")
  12986. },
  12987. {
  12988. name: "Megamacro+",
  12989. height: math.unit(630128, "feet")
  12990. },
  12991. {
  12992. name: "Megamacro++",
  12993. height: math.unit(3150695, "feet")
  12994. },
  12995. ]
  12996. ))
  12997. characterMakers.push(() => makeCharacter(
  12998. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  12999. {
  13000. front: {
  13001. height: math.unit(7 + 5 / 12, "feet"),
  13002. weight: math.unit(450, "lb"),
  13003. name: "Front",
  13004. image: {
  13005. source: "./media/characters/mocha-aura/front.svg",
  13006. extra: 1907 / 1817,
  13007. bottom: 0.04
  13008. }
  13009. },
  13010. back: {
  13011. height: math.unit(7 + 5 / 12, "feet"),
  13012. weight: math.unit(450, "lb"),
  13013. name: "Back",
  13014. image: {
  13015. source: "./media/characters/mocha-aura/back.svg",
  13016. extra: 1900 / 1825,
  13017. bottom: 0.045
  13018. }
  13019. },
  13020. },
  13021. [
  13022. {
  13023. name: "Nano",
  13024. height: math.unit(1, "nm")
  13025. },
  13026. {
  13027. name: "Megamicro",
  13028. height: math.unit(1, "mm")
  13029. },
  13030. {
  13031. name: "Micro",
  13032. height: math.unit(3, "inches")
  13033. },
  13034. {
  13035. name: "Normal",
  13036. height: math.unit(7 + 5 / 12, "feet"),
  13037. default: true
  13038. },
  13039. {
  13040. name: "Macro",
  13041. height: math.unit(30, "feet")
  13042. },
  13043. {
  13044. name: "Megamacro",
  13045. height: math.unit(3500, "feet")
  13046. },
  13047. {
  13048. name: "Teramacro",
  13049. height: math.unit(500000, "miles")
  13050. },
  13051. {
  13052. name: "Petamacro",
  13053. height: math.unit(50000000000000000, "parsecs")
  13054. },
  13055. ]
  13056. ))
  13057. characterMakers.push(() => makeCharacter(
  13058. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  13059. {
  13060. front: {
  13061. height: math.unit(6, "feet"),
  13062. weight: math.unit(150, "lb"),
  13063. name: "Front",
  13064. image: {
  13065. source: "./media/characters/ilisha-devya/front.svg",
  13066. extra: 1,
  13067. bottom: 0.175
  13068. }
  13069. },
  13070. back: {
  13071. height: math.unit(6, "feet"),
  13072. weight: math.unit(150, "lb"),
  13073. name: "Back",
  13074. image: {
  13075. source: "./media/characters/ilisha-devya/back.svg",
  13076. extra: 1,
  13077. bottom: 0.015
  13078. }
  13079. },
  13080. },
  13081. [
  13082. {
  13083. name: "Macro",
  13084. height: math.unit(500, "feet"),
  13085. default: true
  13086. },
  13087. {
  13088. name: "Megamacro",
  13089. height: math.unit(10, "miles")
  13090. },
  13091. {
  13092. name: "Gigamacro",
  13093. height: math.unit(100000, "miles")
  13094. },
  13095. {
  13096. name: "Examacro",
  13097. height: math.unit(1e9, "lightyears")
  13098. },
  13099. {
  13100. name: "Omniversal",
  13101. height: math.unit(1e33, "lightyears")
  13102. },
  13103. {
  13104. name: "Beyond Infinite",
  13105. height: math.unit(1e100, "lightyears")
  13106. },
  13107. ]
  13108. ))
  13109. characterMakers.push(() => makeCharacter(
  13110. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  13111. {
  13112. Side: {
  13113. height: math.unit(6, "feet"),
  13114. weight: math.unit(150, "lb"),
  13115. name: "Side",
  13116. image: {
  13117. source: "./media/characters/mira/side.svg",
  13118. extra: 900 / 799,
  13119. bottom: 0.02
  13120. }
  13121. },
  13122. },
  13123. [
  13124. {
  13125. name: "Human Size",
  13126. height: math.unit(6, "feet")
  13127. },
  13128. {
  13129. name: "Macro",
  13130. height: math.unit(100, "feet"),
  13131. default: true
  13132. },
  13133. {
  13134. name: "Megamacro",
  13135. height: math.unit(10, "miles")
  13136. },
  13137. {
  13138. name: "Gigamacro",
  13139. height: math.unit(25000, "miles")
  13140. },
  13141. {
  13142. name: "Teramacro",
  13143. height: math.unit(300, "AU")
  13144. },
  13145. {
  13146. name: "Full Size",
  13147. height: math.unit(4.5e10, "lightyears")
  13148. },
  13149. ]
  13150. ))
  13151. characterMakers.push(() => makeCharacter(
  13152. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  13153. {
  13154. front: {
  13155. height: math.unit(6, "feet"),
  13156. weight: math.unit(150, "lb"),
  13157. name: "Front",
  13158. image: {
  13159. source: "./media/characters/holly/front.svg",
  13160. extra: 639 / 606
  13161. }
  13162. },
  13163. back: {
  13164. height: math.unit(6, "feet"),
  13165. weight: math.unit(150, "lb"),
  13166. name: "Back",
  13167. image: {
  13168. source: "./media/characters/holly/back.svg",
  13169. extra: 623 / 598
  13170. }
  13171. },
  13172. frontWorking: {
  13173. height: math.unit(6, "feet"),
  13174. weight: math.unit(150, "lb"),
  13175. name: "Front (Working)",
  13176. image: {
  13177. source: "./media/characters/holly/front-working.svg",
  13178. extra: 607 / 577,
  13179. bottom: 0.048
  13180. }
  13181. },
  13182. },
  13183. [
  13184. {
  13185. name: "Normal",
  13186. height: math.unit(12 + 3 / 12, "feet"),
  13187. default: true
  13188. },
  13189. ]
  13190. ))
  13191. characterMakers.push(() => makeCharacter(
  13192. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  13193. {
  13194. front: {
  13195. height: math.unit(6, "feet"),
  13196. weight: math.unit(150, "lb"),
  13197. name: "Front",
  13198. image: {
  13199. source: "./media/characters/porter/front.svg",
  13200. extra: 1,
  13201. bottom: 0.01
  13202. }
  13203. },
  13204. frontRobes: {
  13205. height: math.unit(6, "feet"),
  13206. weight: math.unit(150, "lb"),
  13207. name: "Front (Robes)",
  13208. image: {
  13209. source: "./media/characters/porter/front-robes.svg",
  13210. extra: 1.01,
  13211. bottom: 0.01
  13212. }
  13213. },
  13214. },
  13215. [
  13216. {
  13217. name: "Normal",
  13218. height: math.unit(11 + 9 / 12, "feet"),
  13219. default: true
  13220. },
  13221. ]
  13222. ))
  13223. characterMakers.push(() => makeCharacter(
  13224. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  13225. {
  13226. legendary: {
  13227. height: math.unit(6, "feet"),
  13228. weight: math.unit(150, "lb"),
  13229. name: "Legendary",
  13230. image: {
  13231. source: "./media/characters/lucy/legendary.svg",
  13232. extra: 1355 / 1100,
  13233. bottom: 0.045
  13234. }
  13235. },
  13236. },
  13237. [
  13238. {
  13239. name: "Legendary",
  13240. height: math.unit(86882 * 2, "miles"),
  13241. default: true
  13242. },
  13243. ]
  13244. ))
  13245. characterMakers.push(() => makeCharacter(
  13246. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  13247. {
  13248. front: {
  13249. height: math.unit(6, "feet"),
  13250. weight: math.unit(150, "lb"),
  13251. name: "Front",
  13252. image: {
  13253. source: "./media/characters/drusilla/front.svg",
  13254. extra: 678 / 635,
  13255. bottom: 0.03
  13256. }
  13257. },
  13258. back: {
  13259. height: math.unit(6, "feet"),
  13260. weight: math.unit(150, "lb"),
  13261. name: "Back",
  13262. image: {
  13263. source: "./media/characters/drusilla/back.svg",
  13264. extra: 678 / 635,
  13265. bottom: 0.005
  13266. }
  13267. },
  13268. },
  13269. [
  13270. {
  13271. name: "Macro",
  13272. height: math.unit(100, "feet")
  13273. },
  13274. {
  13275. name: "Canon Height",
  13276. height: math.unit(2000, "feet"),
  13277. default: true
  13278. },
  13279. ]
  13280. ))
  13281. characterMakers.push(() => makeCharacter(
  13282. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  13283. {
  13284. front: {
  13285. height: math.unit(6, "feet"),
  13286. weight: math.unit(180, "lb"),
  13287. name: "Front",
  13288. image: {
  13289. source: "./media/characters/renard-thatch/front.svg",
  13290. extra: 2411 / 2275,
  13291. bottom: 0.01
  13292. }
  13293. },
  13294. frontPosing: {
  13295. height: math.unit(6, "feet"),
  13296. weight: math.unit(180, "lb"),
  13297. name: "Front (Posing)",
  13298. image: {
  13299. source: "./media/characters/renard-thatch/front-posing.svg",
  13300. extra: 2381 / 2261,
  13301. bottom: 0.01
  13302. }
  13303. },
  13304. back: {
  13305. height: math.unit(6, "feet"),
  13306. weight: math.unit(180, "lb"),
  13307. name: "Back",
  13308. image: {
  13309. source: "./media/characters/renard-thatch/back.svg",
  13310. extra: 2428 / 2288
  13311. }
  13312. },
  13313. },
  13314. [
  13315. {
  13316. name: "Micro",
  13317. height: math.unit(3, "inches")
  13318. },
  13319. {
  13320. name: "Default",
  13321. height: math.unit(6, "feet"),
  13322. default: true
  13323. },
  13324. {
  13325. name: "Macro",
  13326. height: math.unit(75, "feet")
  13327. },
  13328. ]
  13329. ))
  13330. characterMakers.push(() => makeCharacter(
  13331. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  13332. {
  13333. front: {
  13334. height: math.unit(1450, "feet"),
  13335. weight: math.unit(1.21e6, "tons"),
  13336. name: "Front",
  13337. image: {
  13338. source: "./media/characters/sekvra/front.svg",
  13339. extra: 1,
  13340. bottom: 0.03
  13341. }
  13342. },
  13343. frontClothed: {
  13344. height: math.unit(1450, "feet"),
  13345. weight: math.unit(1.21e6, "tons"),
  13346. name: "Front (Clothed)",
  13347. image: {
  13348. source: "./media/characters/sekvra/front-clothed.svg",
  13349. extra: 1,
  13350. bottom: 0.03
  13351. }
  13352. },
  13353. side: {
  13354. height: math.unit(1450, "feet"),
  13355. weight: math.unit(1.21e6, "tons"),
  13356. name: "Side",
  13357. image: {
  13358. source: "./media/characters/sekvra/side.svg",
  13359. extra: 1,
  13360. bottom: 0.025
  13361. }
  13362. },
  13363. back: {
  13364. height: math.unit(1450, "feet"),
  13365. weight: math.unit(1.21e6, "tons"),
  13366. name: "Back",
  13367. image: {
  13368. source: "./media/characters/sekvra/back.svg",
  13369. extra: 1,
  13370. bottom: 0.005
  13371. }
  13372. },
  13373. },
  13374. [
  13375. {
  13376. name: "Macro",
  13377. height: math.unit(1450, "feet"),
  13378. default: true
  13379. },
  13380. {
  13381. name: "Megamacro",
  13382. height: math.unit(15000, "feet")
  13383. },
  13384. ]
  13385. ))
  13386. characterMakers.push(() => makeCharacter(
  13387. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  13388. {
  13389. front: {
  13390. height: math.unit(6, "feet"),
  13391. weight: math.unit(150, "lb"),
  13392. name: "Front",
  13393. image: {
  13394. source: "./media/characters/carmine/front.svg",
  13395. extra: 1,
  13396. bottom: 0.035
  13397. }
  13398. },
  13399. frontArmor: {
  13400. height: math.unit(6, "feet"),
  13401. weight: math.unit(150, "lb"),
  13402. name: "Front (Armor)",
  13403. image: {
  13404. source: "./media/characters/carmine/front-armor.svg",
  13405. extra: 1,
  13406. bottom: 0.035
  13407. }
  13408. },
  13409. },
  13410. [
  13411. {
  13412. name: "Large",
  13413. height: math.unit(1, "mile")
  13414. },
  13415. {
  13416. name: "Huge",
  13417. height: math.unit(40, "miles"),
  13418. default: true
  13419. },
  13420. {
  13421. name: "Colossal",
  13422. height: math.unit(2500, "miles")
  13423. },
  13424. ]
  13425. ))
  13426. characterMakers.push(() => makeCharacter(
  13427. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  13428. {
  13429. front: {
  13430. height: math.unit(6, "feet"),
  13431. weight: math.unit(150, "lb"),
  13432. name: "Front",
  13433. image: {
  13434. source: "./media/characters/elyssia/front.svg",
  13435. extra: 2201 / 2035,
  13436. bottom: 0.05
  13437. }
  13438. },
  13439. frontClothed: {
  13440. height: math.unit(6, "feet"),
  13441. weight: math.unit(150, "lb"),
  13442. name: "Front (Clothed)",
  13443. image: {
  13444. source: "./media/characters/elyssia/front-clothed.svg",
  13445. extra: 2201 / 2035,
  13446. bottom: 0.05
  13447. }
  13448. },
  13449. back: {
  13450. height: math.unit(6, "feet"),
  13451. weight: math.unit(150, "lb"),
  13452. name: "Back",
  13453. image: {
  13454. source: "./media/characters/elyssia/back.svg",
  13455. extra: 2201 / 2035,
  13456. bottom: 0.013
  13457. }
  13458. },
  13459. },
  13460. [
  13461. {
  13462. name: "Smaller",
  13463. height: math.unit(150, "feet")
  13464. },
  13465. {
  13466. name: "Standard",
  13467. height: math.unit(1400, "feet"),
  13468. default: true
  13469. },
  13470. {
  13471. name: "Distracted",
  13472. height: math.unit(15000, "feet")
  13473. },
  13474. ]
  13475. ))
  13476. characterMakers.push(() => makeCharacter(
  13477. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  13478. {
  13479. front: {
  13480. height: math.unit(7 + 4/12, "feet"),
  13481. weight: math.unit(690, "lb"),
  13482. name: "Front",
  13483. image: {
  13484. source: "./media/characters/geno-maxwell/front.svg",
  13485. extra: 984/856,
  13486. bottom: 87/1071
  13487. }
  13488. },
  13489. back: {
  13490. height: math.unit(7 + 4/12, "feet"),
  13491. weight: math.unit(690, "lb"),
  13492. name: "Back",
  13493. image: {
  13494. source: "./media/characters/geno-maxwell/back.svg",
  13495. extra: 981/854,
  13496. bottom: 57/1038
  13497. }
  13498. },
  13499. frontCostume: {
  13500. height: math.unit(7 + 4/12, "feet"),
  13501. weight: math.unit(690, "lb"),
  13502. name: "Front (Costume)",
  13503. image: {
  13504. source: "./media/characters/geno-maxwell/front-costume.svg",
  13505. extra: 984/856,
  13506. bottom: 87/1071
  13507. }
  13508. },
  13509. backcostume: {
  13510. height: math.unit(7 + 4/12, "feet"),
  13511. weight: math.unit(690, "lb"),
  13512. name: "Back (Costume)",
  13513. image: {
  13514. source: "./media/characters/geno-maxwell/back-costume.svg",
  13515. extra: 981/854,
  13516. bottom: 57/1038
  13517. }
  13518. },
  13519. },
  13520. [
  13521. {
  13522. name: "Micro",
  13523. height: math.unit(3, "inches")
  13524. },
  13525. {
  13526. name: "Normal",
  13527. height: math.unit(7 + 4 / 12, "feet"),
  13528. default: true
  13529. },
  13530. {
  13531. name: "Macro",
  13532. height: math.unit(220, "feet")
  13533. },
  13534. {
  13535. name: "Megamacro",
  13536. height: math.unit(11, "miles")
  13537. },
  13538. ]
  13539. ))
  13540. characterMakers.push(() => makeCharacter(
  13541. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  13542. {
  13543. front: {
  13544. height: math.unit(7 + 4/12, "feet"),
  13545. weight: math.unit(750, "lb"),
  13546. name: "Front",
  13547. image: {
  13548. source: "./media/characters/regena-maxwell/front.svg",
  13549. extra: 984/856,
  13550. bottom: 87/1071
  13551. }
  13552. },
  13553. back: {
  13554. height: math.unit(7 + 4/12, "feet"),
  13555. weight: math.unit(750, "lb"),
  13556. name: "Back",
  13557. image: {
  13558. source: "./media/characters/regena-maxwell/back.svg",
  13559. extra: 981/854,
  13560. bottom: 57/1038
  13561. }
  13562. },
  13563. frontCostume: {
  13564. height: math.unit(7 + 4/12, "feet"),
  13565. weight: math.unit(750, "lb"),
  13566. name: "Front (Costume)",
  13567. image: {
  13568. source: "./media/characters/regena-maxwell/front-costume.svg",
  13569. extra: 984/856,
  13570. bottom: 87/1071
  13571. }
  13572. },
  13573. backcostume: {
  13574. height: math.unit(7 + 4/12, "feet"),
  13575. weight: math.unit(750, "lb"),
  13576. name: "Back (Costume)",
  13577. image: {
  13578. source: "./media/characters/regena-maxwell/back-costume.svg",
  13579. extra: 981/854,
  13580. bottom: 57/1038
  13581. }
  13582. },
  13583. },
  13584. [
  13585. {
  13586. name: "Normal",
  13587. height: math.unit(7 + 4 / 12, "feet"),
  13588. default: true
  13589. },
  13590. {
  13591. name: "Macro",
  13592. height: math.unit(220, "feet")
  13593. },
  13594. {
  13595. name: "Megamacro",
  13596. height: math.unit(11, "miles")
  13597. },
  13598. ]
  13599. ))
  13600. characterMakers.push(() => makeCharacter(
  13601. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  13602. {
  13603. front: {
  13604. height: math.unit(6, "feet"),
  13605. weight: math.unit(150, "lb"),
  13606. name: "Front",
  13607. image: {
  13608. source: "./media/characters/x-gliding-dragon-x/front.svg",
  13609. extra: 860 / 690,
  13610. bottom: 0.03
  13611. }
  13612. },
  13613. },
  13614. [
  13615. {
  13616. name: "Normal",
  13617. height: math.unit(1.7, "meters"),
  13618. default: true
  13619. },
  13620. ]
  13621. ))
  13622. characterMakers.push(() => makeCharacter(
  13623. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  13624. {
  13625. front: {
  13626. height: math.unit(6, "feet"),
  13627. weight: math.unit(150, "lb"),
  13628. name: "Front",
  13629. image: {
  13630. source: "./media/characters/quilly/front.svg",
  13631. extra: 890 / 776
  13632. }
  13633. },
  13634. },
  13635. [
  13636. {
  13637. name: "Gigamacro",
  13638. height: math.unit(404090, "miles"),
  13639. default: true
  13640. },
  13641. ]
  13642. ))
  13643. characterMakers.push(() => makeCharacter(
  13644. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  13645. {
  13646. front: {
  13647. height: math.unit(7 + 8 / 12, "feet"),
  13648. weight: math.unit(350, "lb"),
  13649. name: "Front",
  13650. image: {
  13651. source: "./media/characters/tempest/front.svg",
  13652. extra: 1175 / 1086,
  13653. bottom: 0.02
  13654. }
  13655. },
  13656. },
  13657. [
  13658. {
  13659. name: "Normal",
  13660. height: math.unit(7 + 8 / 12, "feet"),
  13661. default: true
  13662. },
  13663. ]
  13664. ))
  13665. characterMakers.push(() => makeCharacter(
  13666. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  13667. {
  13668. side: {
  13669. height: math.unit(4 + 5 / 12, "feet"),
  13670. weight: math.unit(80, "lb"),
  13671. name: "Side",
  13672. image: {
  13673. source: "./media/characters/rodger/side.svg",
  13674. extra: 1235 / 1118
  13675. }
  13676. },
  13677. },
  13678. [
  13679. {
  13680. name: "Micro",
  13681. height: math.unit(1, "inch")
  13682. },
  13683. {
  13684. name: "Normal",
  13685. height: math.unit(4 + 5 / 12, "feet"),
  13686. default: true
  13687. },
  13688. {
  13689. name: "Macro",
  13690. height: math.unit(120, "feet")
  13691. },
  13692. ]
  13693. ))
  13694. characterMakers.push(() => makeCharacter(
  13695. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  13696. {
  13697. front: {
  13698. height: math.unit(6, "feet"),
  13699. weight: math.unit(150, "lb"),
  13700. name: "Front",
  13701. image: {
  13702. source: "./media/characters/danyel/front.svg",
  13703. extra: 1185 / 1123,
  13704. bottom: 0.05
  13705. }
  13706. },
  13707. },
  13708. [
  13709. {
  13710. name: "Shrunken",
  13711. height: math.unit(0.5, "mm")
  13712. },
  13713. {
  13714. name: "Micro",
  13715. height: math.unit(1, "mm"),
  13716. default: true
  13717. },
  13718. {
  13719. name: "Upsized",
  13720. height: math.unit(5 + 5 / 12, "feet")
  13721. },
  13722. ]
  13723. ))
  13724. characterMakers.push(() => makeCharacter(
  13725. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  13726. {
  13727. front: {
  13728. height: math.unit(5 + 6 / 12, "feet"),
  13729. weight: math.unit(200, "lb"),
  13730. name: "Front",
  13731. image: {
  13732. source: "./media/characters/vivian-bijoux/front.svg",
  13733. extra: 1217/1209,
  13734. bottom: 76/1293
  13735. }
  13736. },
  13737. back: {
  13738. height: math.unit(5 + 6 / 12, "feet"),
  13739. weight: math.unit(200, "lb"),
  13740. name: "Back",
  13741. image: {
  13742. source: "./media/characters/vivian-bijoux/back.svg",
  13743. extra: 1214/1208,
  13744. bottom: 51/1265
  13745. }
  13746. },
  13747. dressed: {
  13748. height: math.unit(5 + 6 / 12, "feet"),
  13749. weight: math.unit(200, "lb"),
  13750. name: "Dressed",
  13751. image: {
  13752. source: "./media/characters/vivian-bijoux/dressed.svg",
  13753. extra: 1217/1209,
  13754. bottom: 76/1293
  13755. }
  13756. },
  13757. },
  13758. [
  13759. {
  13760. name: "Normal",
  13761. height: math.unit(5 + 6 / 12, "feet"),
  13762. default: true
  13763. },
  13764. {
  13765. name: "Bad Dream",
  13766. height: math.unit(500, "feet")
  13767. },
  13768. {
  13769. name: "Nightmare",
  13770. height: math.unit(500, "miles")
  13771. },
  13772. ]
  13773. ))
  13774. characterMakers.push(() => makeCharacter(
  13775. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  13776. {
  13777. front: {
  13778. height: math.unit(6 + 1 / 12, "feet"),
  13779. weight: math.unit(260, "lb"),
  13780. name: "Front",
  13781. image: {
  13782. source: "./media/characters/zeta/front.svg",
  13783. extra: 1968 / 1889,
  13784. bottom: 0.06
  13785. }
  13786. },
  13787. back: {
  13788. height: math.unit(6 + 1 / 12, "feet"),
  13789. weight: math.unit(260, "lb"),
  13790. name: "Back",
  13791. image: {
  13792. source: "./media/characters/zeta/back.svg",
  13793. extra: 1944 / 1858,
  13794. bottom: 0.03
  13795. }
  13796. },
  13797. hand: {
  13798. height: math.unit(1.112, "feet"),
  13799. name: "Hand",
  13800. image: {
  13801. source: "./media/characters/zeta/hand.svg"
  13802. }
  13803. },
  13804. foot: {
  13805. height: math.unit(1.48, "feet"),
  13806. name: "Foot",
  13807. image: {
  13808. source: "./media/characters/zeta/foot.svg"
  13809. }
  13810. },
  13811. },
  13812. [
  13813. {
  13814. name: "Micro",
  13815. height: math.unit(6, "inches")
  13816. },
  13817. {
  13818. name: "Normal",
  13819. height: math.unit(6 + 1 / 12, "feet"),
  13820. default: true
  13821. },
  13822. {
  13823. name: "Macro",
  13824. height: math.unit(20, "feet")
  13825. },
  13826. ]
  13827. ))
  13828. characterMakers.push(() => makeCharacter(
  13829. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  13830. {
  13831. front: {
  13832. height: math.unit(6, "feet"),
  13833. weight: math.unit(150, "lb"),
  13834. name: "Front",
  13835. image: {
  13836. source: "./media/characters/jamie-larsen/front.svg",
  13837. extra: 962 / 933,
  13838. bottom: 0.02
  13839. }
  13840. },
  13841. back: {
  13842. height: math.unit(6, "feet"),
  13843. weight: math.unit(150, "lb"),
  13844. name: "Back",
  13845. image: {
  13846. source: "./media/characters/jamie-larsen/back.svg",
  13847. extra: 997 / 946
  13848. }
  13849. },
  13850. },
  13851. [
  13852. {
  13853. name: "Macro",
  13854. height: math.unit(28 + 7 / 12, "feet"),
  13855. default: true
  13856. },
  13857. {
  13858. name: "Macro+",
  13859. height: math.unit(180, "feet")
  13860. },
  13861. {
  13862. name: "Megamacro",
  13863. height: math.unit(10, "miles")
  13864. },
  13865. {
  13866. name: "Gigamacro",
  13867. height: math.unit(200000, "miles")
  13868. },
  13869. ]
  13870. ))
  13871. characterMakers.push(() => makeCharacter(
  13872. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  13873. {
  13874. front: {
  13875. height: math.unit(6, "feet"),
  13876. weight: math.unit(120, "lb"),
  13877. name: "Front",
  13878. image: {
  13879. source: "./media/characters/vance/front.svg",
  13880. extra: 1980 / 1890,
  13881. bottom: 0.09
  13882. }
  13883. },
  13884. back: {
  13885. height: math.unit(6, "feet"),
  13886. weight: math.unit(120, "lb"),
  13887. name: "Back",
  13888. image: {
  13889. source: "./media/characters/vance/back.svg",
  13890. extra: 2081 / 1994,
  13891. bottom: 0.014
  13892. }
  13893. },
  13894. hand: {
  13895. height: math.unit(0.88, "feet"),
  13896. name: "Hand",
  13897. image: {
  13898. source: "./media/characters/vance/hand.svg"
  13899. }
  13900. },
  13901. foot: {
  13902. height: math.unit(0.64, "feet"),
  13903. name: "Foot",
  13904. image: {
  13905. source: "./media/characters/vance/foot.svg"
  13906. }
  13907. },
  13908. },
  13909. [
  13910. {
  13911. name: "Small",
  13912. height: math.unit(90, "feet"),
  13913. default: true
  13914. },
  13915. {
  13916. name: "Macro",
  13917. height: math.unit(100, "meters")
  13918. },
  13919. {
  13920. name: "Megamacro",
  13921. height: math.unit(15, "miles")
  13922. },
  13923. ]
  13924. ))
  13925. characterMakers.push(() => makeCharacter(
  13926. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  13927. {
  13928. front: {
  13929. height: math.unit(6, "feet"),
  13930. weight: math.unit(180, "lb"),
  13931. name: "Front",
  13932. image: {
  13933. source: "./media/characters/xochitl/front.svg",
  13934. extra: 2297 / 2261,
  13935. bottom: 0.065
  13936. }
  13937. },
  13938. back: {
  13939. height: math.unit(6, "feet"),
  13940. weight: math.unit(180, "lb"),
  13941. name: "Back",
  13942. image: {
  13943. source: "./media/characters/xochitl/back.svg",
  13944. extra: 2386 / 2354,
  13945. bottom: 0.01
  13946. }
  13947. },
  13948. foot: {
  13949. height: math.unit(6 / 5 * 1.15, "feet"),
  13950. weight: math.unit(150, "lb"),
  13951. name: "Foot",
  13952. image: {
  13953. source: "./media/characters/xochitl/foot.svg"
  13954. }
  13955. },
  13956. },
  13957. [
  13958. {
  13959. name: "Macro",
  13960. height: math.unit(80, "feet")
  13961. },
  13962. {
  13963. name: "Macro+",
  13964. height: math.unit(400, "feet"),
  13965. default: true
  13966. },
  13967. {
  13968. name: "Gigamacro",
  13969. height: math.unit(80000, "miles")
  13970. },
  13971. {
  13972. name: "Gigamacro+",
  13973. height: math.unit(400000, "miles")
  13974. },
  13975. {
  13976. name: "Teramacro",
  13977. height: math.unit(300, "AU")
  13978. },
  13979. ]
  13980. ))
  13981. characterMakers.push(() => makeCharacter(
  13982. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  13983. {
  13984. front: {
  13985. height: math.unit(6, "feet"),
  13986. weight: math.unit(150, "lb"),
  13987. name: "Front",
  13988. image: {
  13989. source: "./media/characters/vincent/front.svg",
  13990. extra: 1130 / 1080,
  13991. bottom: 0.055
  13992. }
  13993. },
  13994. beak: {
  13995. height: math.unit(6 * 0.1, "feet"),
  13996. name: "Beak",
  13997. image: {
  13998. source: "./media/characters/vincent/beak.svg"
  13999. }
  14000. },
  14001. hand: {
  14002. height: math.unit(6 * 0.85, "feet"),
  14003. weight: math.unit(150, "lb"),
  14004. name: "Hand",
  14005. image: {
  14006. source: "./media/characters/vincent/hand.svg"
  14007. }
  14008. },
  14009. foot: {
  14010. height: math.unit(6 * 0.19, "feet"),
  14011. weight: math.unit(150, "lb"),
  14012. name: "Foot",
  14013. image: {
  14014. source: "./media/characters/vincent/foot.svg"
  14015. }
  14016. },
  14017. },
  14018. [
  14019. {
  14020. name: "Base",
  14021. height: math.unit(6 + 5 / 12, "feet"),
  14022. default: true
  14023. },
  14024. {
  14025. name: "Macro",
  14026. height: math.unit(300, "feet")
  14027. },
  14028. {
  14029. name: "Megamacro",
  14030. height: math.unit(2, "miles")
  14031. },
  14032. {
  14033. name: "Gigamacro",
  14034. height: math.unit(1000, "miles")
  14035. },
  14036. ]
  14037. ))
  14038. characterMakers.push(() => makeCharacter(
  14039. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  14040. {
  14041. front: {
  14042. height: math.unit(2, "meters"),
  14043. weight: math.unit(500, "kg"),
  14044. name: "Front",
  14045. image: {
  14046. source: "./media/characters/coatl/front.svg",
  14047. extra: 3948 / 3500,
  14048. bottom: 0.082
  14049. }
  14050. },
  14051. },
  14052. [
  14053. {
  14054. name: "Normal",
  14055. height: math.unit(4, "meters")
  14056. },
  14057. {
  14058. name: "Macro",
  14059. height: math.unit(100, "meters"),
  14060. default: true
  14061. },
  14062. {
  14063. name: "Macro+",
  14064. height: math.unit(300, "meters")
  14065. },
  14066. {
  14067. name: "Megamacro",
  14068. height: math.unit(3, "gigameters")
  14069. },
  14070. {
  14071. name: "Megamacro+",
  14072. height: math.unit(300, "terameters")
  14073. },
  14074. {
  14075. name: "Megamacro++",
  14076. height: math.unit(3, "lightyears")
  14077. },
  14078. ]
  14079. ))
  14080. characterMakers.push(() => makeCharacter(
  14081. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  14082. {
  14083. front: {
  14084. height: math.unit(6, "feet"),
  14085. weight: math.unit(50, "kg"),
  14086. name: "front",
  14087. image: {
  14088. source: "./media/characters/shiroryu/front.svg",
  14089. extra: 1990 / 1935
  14090. }
  14091. },
  14092. },
  14093. [
  14094. {
  14095. name: "Mortal Mingling",
  14096. height: math.unit(3, "meters")
  14097. },
  14098. {
  14099. name: "Kaiju-ish",
  14100. height: math.unit(250, "meters")
  14101. },
  14102. {
  14103. name: "Somewhat Godly",
  14104. height: math.unit(400, "km"),
  14105. default: true
  14106. },
  14107. {
  14108. name: "Planetary",
  14109. height: math.unit(300, "megameters")
  14110. },
  14111. {
  14112. name: "Galaxy-dwarfing",
  14113. height: math.unit(450, "kiloparsecs")
  14114. },
  14115. {
  14116. name: "Universe Eater",
  14117. height: math.unit(150, "gigaparsecs")
  14118. },
  14119. {
  14120. name: "Almost Immeasurable",
  14121. height: math.unit(1.3e266, "yottaparsecs")
  14122. },
  14123. ]
  14124. ))
  14125. characterMakers.push(() => makeCharacter(
  14126. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  14127. {
  14128. front: {
  14129. height: math.unit(6, "feet"),
  14130. weight: math.unit(150, "lb"),
  14131. name: "Front",
  14132. image: {
  14133. source: "./media/characters/umeko/front.svg",
  14134. extra: 1,
  14135. bottom: 0.019
  14136. }
  14137. },
  14138. frontArmored: {
  14139. height: math.unit(6, "feet"),
  14140. weight: math.unit(150, "lb"),
  14141. name: "Front (Armored)",
  14142. image: {
  14143. source: "./media/characters/umeko/front-armored.svg",
  14144. extra: 1,
  14145. bottom: 0.021
  14146. }
  14147. },
  14148. },
  14149. [
  14150. {
  14151. name: "Macro",
  14152. height: math.unit(220, "feet"),
  14153. default: true
  14154. },
  14155. {
  14156. name: "Guardian Dragon",
  14157. height: math.unit(50, "miles")
  14158. },
  14159. {
  14160. name: "Cosmic",
  14161. height: math.unit(800000, "miles")
  14162. },
  14163. ]
  14164. ))
  14165. characterMakers.push(() => makeCharacter(
  14166. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  14167. {
  14168. front: {
  14169. height: math.unit(6, "feet"),
  14170. weight: math.unit(150, "lb"),
  14171. name: "Front",
  14172. image: {
  14173. source: "./media/characters/cassidy/front.svg",
  14174. extra: 1,
  14175. bottom: 0.043
  14176. }
  14177. },
  14178. },
  14179. [
  14180. {
  14181. name: "Canon Height",
  14182. height: math.unit(120, "feet"),
  14183. default: true
  14184. },
  14185. {
  14186. name: "Macro+",
  14187. height: math.unit(400, "feet")
  14188. },
  14189. {
  14190. name: "Macro++",
  14191. height: math.unit(4000, "feet")
  14192. },
  14193. {
  14194. name: "Megamacro",
  14195. height: math.unit(3, "miles")
  14196. },
  14197. ]
  14198. ))
  14199. characterMakers.push(() => makeCharacter(
  14200. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  14201. {
  14202. front: {
  14203. height: math.unit(6, "feet"),
  14204. weight: math.unit(150, "lb"),
  14205. name: "Front",
  14206. image: {
  14207. source: "./media/characters/isaac/front.svg",
  14208. extra: 896 / 815,
  14209. bottom: 0.11
  14210. }
  14211. },
  14212. },
  14213. [
  14214. {
  14215. name: "Human Size",
  14216. height: math.unit(8, "feet"),
  14217. default: true
  14218. },
  14219. {
  14220. name: "Macro",
  14221. height: math.unit(400, "feet")
  14222. },
  14223. {
  14224. name: "Megamacro",
  14225. height: math.unit(50, "miles")
  14226. },
  14227. {
  14228. name: "Canon Height",
  14229. height: math.unit(200, "AU")
  14230. },
  14231. ]
  14232. ))
  14233. characterMakers.push(() => makeCharacter(
  14234. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  14235. {
  14236. front: {
  14237. height: math.unit(6, "feet"),
  14238. weight: math.unit(72, "kg"),
  14239. name: "Front",
  14240. image: {
  14241. source: "./media/characters/sleekit/front.svg",
  14242. extra: 4693 / 4487,
  14243. bottom: 0.012
  14244. }
  14245. },
  14246. },
  14247. [
  14248. {
  14249. name: "Minimum Height",
  14250. height: math.unit(10, "meters")
  14251. },
  14252. {
  14253. name: "Smaller",
  14254. height: math.unit(25, "meters")
  14255. },
  14256. {
  14257. name: "Larger",
  14258. height: math.unit(38, "meters"),
  14259. default: true
  14260. },
  14261. {
  14262. name: "Maximum height",
  14263. height: math.unit(100, "meters")
  14264. },
  14265. ]
  14266. ))
  14267. characterMakers.push(() => makeCharacter(
  14268. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  14269. {
  14270. front: {
  14271. height: math.unit(6, "feet"),
  14272. weight: math.unit(150, "lb"),
  14273. name: "Front",
  14274. image: {
  14275. source: "./media/characters/nillia/front.svg",
  14276. extra: 2195 / 2037,
  14277. bottom: 0.005
  14278. }
  14279. },
  14280. back: {
  14281. height: math.unit(6, "feet"),
  14282. weight: math.unit(150, "lb"),
  14283. name: "Back",
  14284. image: {
  14285. source: "./media/characters/nillia/back.svg",
  14286. extra: 2195 / 2037,
  14287. bottom: 0.005
  14288. }
  14289. },
  14290. },
  14291. [
  14292. {
  14293. name: "Canon Height",
  14294. height: math.unit(489, "feet"),
  14295. default: true
  14296. }
  14297. ]
  14298. ))
  14299. characterMakers.push(() => makeCharacter(
  14300. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  14301. {
  14302. front: {
  14303. height: math.unit(6, "feet"),
  14304. weight: math.unit(150, "lb"),
  14305. name: "Front",
  14306. image: {
  14307. source: "./media/characters/mesmyriza/front.svg",
  14308. extra: 2067 / 1784,
  14309. bottom: 0.035
  14310. }
  14311. },
  14312. foot: {
  14313. height: math.unit(6 / (250 / 35), "feet"),
  14314. name: "Foot",
  14315. image: {
  14316. source: "./media/characters/mesmyriza/foot.svg"
  14317. }
  14318. },
  14319. },
  14320. [
  14321. {
  14322. name: "Macro",
  14323. height: math.unit(457, "meters"),
  14324. default: true
  14325. },
  14326. {
  14327. name: "Megamacro",
  14328. height: math.unit(8, "megameters")
  14329. },
  14330. ]
  14331. ))
  14332. characterMakers.push(() => makeCharacter(
  14333. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  14334. {
  14335. front: {
  14336. height: math.unit(6, "feet"),
  14337. weight: math.unit(250, "lb"),
  14338. name: "Front",
  14339. image: {
  14340. source: "./media/characters/saudade/front.svg",
  14341. extra: 1172 / 1139,
  14342. bottom: 0.035
  14343. }
  14344. },
  14345. },
  14346. [
  14347. {
  14348. name: "Micro",
  14349. height: math.unit(3, "inches")
  14350. },
  14351. {
  14352. name: "Normal",
  14353. height: math.unit(6, "feet"),
  14354. default: true
  14355. },
  14356. {
  14357. name: "Macro",
  14358. height: math.unit(50, "feet")
  14359. },
  14360. {
  14361. name: "Megamacro",
  14362. height: math.unit(2800, "feet")
  14363. },
  14364. ]
  14365. ))
  14366. characterMakers.push(() => makeCharacter(
  14367. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  14368. {
  14369. front: {
  14370. height: math.unit(5 + 4 / 12, "feet"),
  14371. weight: math.unit(100, "lb"),
  14372. name: "Front",
  14373. image: {
  14374. source: "./media/characters/keireer/front.svg",
  14375. extra: 716 / 666,
  14376. bottom: 0.05
  14377. }
  14378. },
  14379. },
  14380. [
  14381. {
  14382. name: "Normal",
  14383. height: math.unit(5 + 4 / 12, "feet"),
  14384. default: true
  14385. },
  14386. ]
  14387. ))
  14388. characterMakers.push(() => makeCharacter(
  14389. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  14390. {
  14391. front: {
  14392. height: math.unit(6, "feet"),
  14393. weight: math.unit(90, "kg"),
  14394. name: "Front",
  14395. image: {
  14396. source: "./media/characters/mirja/front.svg",
  14397. extra: 1789 / 1683,
  14398. bottom: 0.05
  14399. }
  14400. },
  14401. frontDressed: {
  14402. height: math.unit(6, "feet"),
  14403. weight: math.unit(90, "lb"),
  14404. name: "Front (Dressed)",
  14405. image: {
  14406. source: "./media/characters/mirja/front-dressed.svg",
  14407. extra: 1789 / 1683,
  14408. bottom: 0.05
  14409. }
  14410. },
  14411. back: {
  14412. height: math.unit(6, "feet"),
  14413. weight: math.unit(90, "lb"),
  14414. name: "Back",
  14415. image: {
  14416. source: "./media/characters/mirja/back.svg",
  14417. extra: 953 / 917,
  14418. bottom: 0.017
  14419. }
  14420. },
  14421. },
  14422. [
  14423. {
  14424. name: "\"Incognito\"",
  14425. height: math.unit(3, "meters")
  14426. },
  14427. {
  14428. name: "Strolling Size",
  14429. height: math.unit(15, "km")
  14430. },
  14431. {
  14432. name: "Larger Strolling Size",
  14433. height: math.unit(400, "km")
  14434. },
  14435. {
  14436. name: "Preferred Size",
  14437. height: math.unit(5000, "km")
  14438. },
  14439. {
  14440. name: "True Size",
  14441. height: math.unit(30657809462086840000000000000000, "parsecs"),
  14442. default: true
  14443. },
  14444. ]
  14445. ))
  14446. characterMakers.push(() => makeCharacter(
  14447. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  14448. {
  14449. front: {
  14450. height: math.unit(15, "feet"),
  14451. weight: math.unit(880, "kg"),
  14452. name: "Front",
  14453. image: {
  14454. source: "./media/characters/nightraver/front.svg",
  14455. extra: 2444 / 2160,
  14456. bottom: 0.027
  14457. }
  14458. },
  14459. back: {
  14460. height: math.unit(15, "feet"),
  14461. weight: math.unit(880, "kg"),
  14462. name: "Back",
  14463. image: {
  14464. source: "./media/characters/nightraver/back.svg",
  14465. extra: 2309 / 2180,
  14466. bottom: 0.005
  14467. }
  14468. },
  14469. sole: {
  14470. height: math.unit(2.878, "feet"),
  14471. name: "Sole",
  14472. image: {
  14473. source: "./media/characters/nightraver/sole.svg"
  14474. }
  14475. },
  14476. foot: {
  14477. height: math.unit(2.285, "feet"),
  14478. name: "Foot",
  14479. image: {
  14480. source: "./media/characters/nightraver/foot.svg"
  14481. }
  14482. },
  14483. maw: {
  14484. height: math.unit(2.67, "feet"),
  14485. name: "Maw",
  14486. image: {
  14487. source: "./media/characters/nightraver/maw.svg"
  14488. }
  14489. },
  14490. },
  14491. [
  14492. {
  14493. name: "Micro",
  14494. height: math.unit(1, "cm")
  14495. },
  14496. {
  14497. name: "Normal",
  14498. height: math.unit(15, "feet"),
  14499. default: true
  14500. },
  14501. {
  14502. name: "Macro",
  14503. height: math.unit(300, "feet")
  14504. },
  14505. {
  14506. name: "Megamacro",
  14507. height: math.unit(300, "miles")
  14508. },
  14509. {
  14510. name: "Gigamacro",
  14511. height: math.unit(10000, "miles")
  14512. },
  14513. ]
  14514. ))
  14515. characterMakers.push(() => makeCharacter(
  14516. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  14517. {
  14518. side: {
  14519. height: math.unit(2, "inches"),
  14520. weight: math.unit(5, "grams"),
  14521. name: "Side",
  14522. image: {
  14523. source: "./media/characters/arc/side.svg"
  14524. }
  14525. },
  14526. },
  14527. [
  14528. {
  14529. name: "Micro",
  14530. height: math.unit(2, "inches"),
  14531. default: true
  14532. },
  14533. ]
  14534. ))
  14535. characterMakers.push(() => makeCharacter(
  14536. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  14537. {
  14538. front: {
  14539. height: math.unit(1.1938, "meters"),
  14540. weight: math.unit(54, "kg"),
  14541. name: "Front",
  14542. image: {
  14543. source: "./media/characters/nebula-shahar/front.svg",
  14544. extra: 1642 / 1436,
  14545. bottom: 0.06
  14546. }
  14547. },
  14548. },
  14549. [
  14550. {
  14551. name: "Megamicro",
  14552. height: math.unit(0.3, "mm")
  14553. },
  14554. {
  14555. name: "Micro",
  14556. height: math.unit(3, "cm")
  14557. },
  14558. {
  14559. name: "Normal",
  14560. height: math.unit(138, "cm"),
  14561. default: true
  14562. },
  14563. {
  14564. name: "Macro",
  14565. height: math.unit(30, "m")
  14566. },
  14567. ]
  14568. ))
  14569. characterMakers.push(() => makeCharacter(
  14570. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  14571. {
  14572. front: {
  14573. height: math.unit(5.24, "feet"),
  14574. weight: math.unit(150, "lb"),
  14575. name: "Front",
  14576. image: {
  14577. source: "./media/characters/shayla/front.svg",
  14578. extra: 1512 / 1414,
  14579. bottom: 0.01
  14580. }
  14581. },
  14582. back: {
  14583. height: math.unit(5.24, "feet"),
  14584. weight: math.unit(150, "lb"),
  14585. name: "Back",
  14586. image: {
  14587. source: "./media/characters/shayla/back.svg",
  14588. extra: 1512 / 1414
  14589. }
  14590. },
  14591. hand: {
  14592. height: math.unit(0.7781496062992126, "feet"),
  14593. name: "Hand",
  14594. image: {
  14595. source: "./media/characters/shayla/hand.svg"
  14596. }
  14597. },
  14598. foot: {
  14599. height: math.unit(1.4206036745406823, "feet"),
  14600. name: "Foot",
  14601. image: {
  14602. source: "./media/characters/shayla/foot.svg"
  14603. }
  14604. },
  14605. },
  14606. [
  14607. {
  14608. name: "Micro",
  14609. height: math.unit(0.32, "feet")
  14610. },
  14611. {
  14612. name: "Normal",
  14613. height: math.unit(5.24, "feet"),
  14614. default: true
  14615. },
  14616. {
  14617. name: "Macro",
  14618. height: math.unit(492.12, "feet")
  14619. },
  14620. {
  14621. name: "Megamacro",
  14622. height: math.unit(186.41, "miles")
  14623. },
  14624. ]
  14625. ))
  14626. characterMakers.push(() => makeCharacter(
  14627. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  14628. {
  14629. front: {
  14630. height: math.unit(2.2, "m"),
  14631. weight: math.unit(120, "kg"),
  14632. name: "Front",
  14633. image: {
  14634. source: "./media/characters/pia-jr/front.svg",
  14635. extra: 1000 / 970,
  14636. bottom: 0.035
  14637. }
  14638. },
  14639. hand: {
  14640. height: math.unit(0.759 * 7.21 / 6, "feet"),
  14641. name: "Hand",
  14642. image: {
  14643. source: "./media/characters/pia-jr/hand.svg"
  14644. }
  14645. },
  14646. paw: {
  14647. height: math.unit(1.185 * 7.21 / 6, "feet"),
  14648. name: "Paw",
  14649. image: {
  14650. source: "./media/characters/pia-jr/paw.svg"
  14651. }
  14652. },
  14653. },
  14654. [
  14655. {
  14656. name: "Micro",
  14657. height: math.unit(1.2, "cm")
  14658. },
  14659. {
  14660. name: "Normal",
  14661. height: math.unit(2.2, "m"),
  14662. default: true
  14663. },
  14664. {
  14665. name: "Macro",
  14666. height: math.unit(180, "m")
  14667. },
  14668. {
  14669. name: "Megamacro",
  14670. height: math.unit(420, "km")
  14671. },
  14672. ]
  14673. ))
  14674. characterMakers.push(() => makeCharacter(
  14675. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  14676. {
  14677. front: {
  14678. height: math.unit(2, "m"),
  14679. weight: math.unit(115, "kg"),
  14680. name: "Front",
  14681. image: {
  14682. source: "./media/characters/pia-sr/front.svg",
  14683. extra: 760 / 730,
  14684. bottom: 0.015
  14685. }
  14686. },
  14687. back: {
  14688. height: math.unit(2, "m"),
  14689. weight: math.unit(115, "kg"),
  14690. name: "Back",
  14691. image: {
  14692. source: "./media/characters/pia-sr/back.svg",
  14693. extra: 760 / 730,
  14694. bottom: 0.01
  14695. }
  14696. },
  14697. hand: {
  14698. height: math.unit(0.89 * 6.56 / 6, "feet"),
  14699. name: "Hand",
  14700. image: {
  14701. source: "./media/characters/pia-sr/hand.svg"
  14702. }
  14703. },
  14704. foot: {
  14705. height: math.unit(1.83, "feet"),
  14706. name: "Foot",
  14707. image: {
  14708. source: "./media/characters/pia-sr/foot.svg"
  14709. }
  14710. },
  14711. },
  14712. [
  14713. {
  14714. name: "Micro",
  14715. height: math.unit(88, "mm")
  14716. },
  14717. {
  14718. name: "Normal",
  14719. height: math.unit(2, "m"),
  14720. default: true
  14721. },
  14722. {
  14723. name: "Macro",
  14724. height: math.unit(200, "m")
  14725. },
  14726. {
  14727. name: "Megamacro",
  14728. height: math.unit(420, "km")
  14729. },
  14730. ]
  14731. ))
  14732. characterMakers.push(() => makeCharacter(
  14733. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  14734. {
  14735. front: {
  14736. height: math.unit(8 + 2 / 12, "feet"),
  14737. weight: math.unit(300, "lb"),
  14738. name: "Front",
  14739. image: {
  14740. source: "./media/characters/kibibyte/front.svg",
  14741. extra: 2221 / 2098,
  14742. bottom: 0.04
  14743. }
  14744. },
  14745. },
  14746. [
  14747. {
  14748. name: "Normal",
  14749. height: math.unit(8 + 2 / 12, "feet"),
  14750. default: true
  14751. },
  14752. {
  14753. name: "Socialable Macro",
  14754. height: math.unit(50, "feet")
  14755. },
  14756. {
  14757. name: "Macro",
  14758. height: math.unit(300, "feet")
  14759. },
  14760. {
  14761. name: "Megamacro",
  14762. height: math.unit(500, "miles")
  14763. },
  14764. ]
  14765. ))
  14766. characterMakers.push(() => makeCharacter(
  14767. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  14768. {
  14769. front: {
  14770. height: math.unit(6, "feet"),
  14771. weight: math.unit(150, "lb"),
  14772. name: "Front",
  14773. image: {
  14774. source: "./media/characters/felix/front.svg",
  14775. extra: 762 / 722,
  14776. bottom: 0.02
  14777. }
  14778. },
  14779. frontClothed: {
  14780. height: math.unit(6, "feet"),
  14781. weight: math.unit(150, "lb"),
  14782. name: "Front (Clothed)",
  14783. image: {
  14784. source: "./media/characters/felix/front-clothed.svg",
  14785. extra: 762 / 722,
  14786. bottom: 0.02
  14787. }
  14788. },
  14789. },
  14790. [
  14791. {
  14792. name: "Normal",
  14793. height: math.unit(6 + 8 / 12, "feet"),
  14794. default: true
  14795. },
  14796. {
  14797. name: "Macro",
  14798. height: math.unit(2600, "feet")
  14799. },
  14800. {
  14801. name: "Megamacro",
  14802. height: math.unit(450, "miles")
  14803. },
  14804. ]
  14805. ))
  14806. characterMakers.push(() => makeCharacter(
  14807. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  14808. {
  14809. front: {
  14810. height: math.unit(6 + 1 / 12, "feet"),
  14811. weight: math.unit(250, "lb"),
  14812. name: "Front",
  14813. image: {
  14814. source: "./media/characters/tobo/front.svg",
  14815. extra: 608 / 586,
  14816. bottom: 0.023
  14817. }
  14818. },
  14819. back: {
  14820. height: math.unit(6 + 1 / 12, "feet"),
  14821. weight: math.unit(250, "lb"),
  14822. name: "Back",
  14823. image: {
  14824. source: "./media/characters/tobo/back.svg",
  14825. extra: 608 / 586
  14826. }
  14827. },
  14828. },
  14829. [
  14830. {
  14831. name: "Nano",
  14832. height: math.unit(2, "nm")
  14833. },
  14834. {
  14835. name: "Megamicro",
  14836. height: math.unit(0.1, "mm")
  14837. },
  14838. {
  14839. name: "Micro",
  14840. height: math.unit(1, "inch"),
  14841. default: true
  14842. },
  14843. {
  14844. name: "Human-sized",
  14845. height: math.unit(6 + 1 / 12, "feet")
  14846. },
  14847. {
  14848. name: "Macro",
  14849. height: math.unit(250, "feet")
  14850. },
  14851. {
  14852. name: "Megamacro",
  14853. height: math.unit(75, "miles")
  14854. },
  14855. {
  14856. name: "Texas-sized",
  14857. height: math.unit(750, "miles")
  14858. },
  14859. {
  14860. name: "Teramacro",
  14861. height: math.unit(50000, "miles")
  14862. },
  14863. ]
  14864. ))
  14865. characterMakers.push(() => makeCharacter(
  14866. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  14867. {
  14868. front: {
  14869. height: math.unit(6, "feet"),
  14870. weight: math.unit(269, "lb"),
  14871. name: "Front",
  14872. image: {
  14873. source: "./media/characters/danny-kapowsky/front.svg",
  14874. extra: 766 / 736,
  14875. bottom: 0.044
  14876. }
  14877. },
  14878. back: {
  14879. height: math.unit(6, "feet"),
  14880. weight: math.unit(269, "lb"),
  14881. name: "Back",
  14882. image: {
  14883. source: "./media/characters/danny-kapowsky/back.svg",
  14884. extra: 797 / 760,
  14885. bottom: 0.025
  14886. }
  14887. },
  14888. },
  14889. [
  14890. {
  14891. name: "Macro",
  14892. height: math.unit(150, "feet"),
  14893. default: true
  14894. },
  14895. {
  14896. name: "Macro+",
  14897. height: math.unit(200, "feet")
  14898. },
  14899. {
  14900. name: "Macro++",
  14901. height: math.unit(300, "feet")
  14902. },
  14903. {
  14904. name: "Macro+++",
  14905. height: math.unit(400, "feet")
  14906. },
  14907. ]
  14908. ))
  14909. characterMakers.push(() => makeCharacter(
  14910. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  14911. {
  14912. side: {
  14913. height: math.unit(6, "feet"),
  14914. weight: math.unit(170, "lb"),
  14915. name: "Side",
  14916. image: {
  14917. source: "./media/characters/finn/side.svg",
  14918. extra: 1953 / 1807,
  14919. bottom: 0.057
  14920. }
  14921. },
  14922. },
  14923. [
  14924. {
  14925. name: "Megamacro",
  14926. height: math.unit(14445, "feet"),
  14927. default: true
  14928. },
  14929. ]
  14930. ))
  14931. characterMakers.push(() => makeCharacter(
  14932. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  14933. {
  14934. front: {
  14935. height: math.unit(5 + 6 / 12, "feet"),
  14936. weight: math.unit(125, "lb"),
  14937. name: "Front",
  14938. image: {
  14939. source: "./media/characters/roy/front.svg",
  14940. extra: 1,
  14941. bottom: 0.11
  14942. }
  14943. },
  14944. },
  14945. [
  14946. {
  14947. name: "Micro",
  14948. height: math.unit(3, "inches"),
  14949. default: true
  14950. },
  14951. {
  14952. name: "Normal",
  14953. height: math.unit(5 + 6 / 12, "feet")
  14954. },
  14955. {
  14956. name: "Lesser Macro",
  14957. height: math.unit(60, "feet")
  14958. },
  14959. {
  14960. name: "Greater Macro",
  14961. height: math.unit(120, "feet")
  14962. },
  14963. ]
  14964. ))
  14965. characterMakers.push(() => makeCharacter(
  14966. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  14967. {
  14968. front: {
  14969. height: math.unit(6, "feet"),
  14970. weight: math.unit(100, "lb"),
  14971. name: "Front",
  14972. image: {
  14973. source: "./media/characters/aevsivs/front.svg",
  14974. extra: 1,
  14975. bottom: 0.03
  14976. }
  14977. },
  14978. back: {
  14979. height: math.unit(6, "feet"),
  14980. weight: math.unit(100, "lb"),
  14981. name: "Back",
  14982. image: {
  14983. source: "./media/characters/aevsivs/back.svg"
  14984. }
  14985. },
  14986. },
  14987. [
  14988. {
  14989. name: "Micro",
  14990. height: math.unit(2, "inches"),
  14991. default: true
  14992. },
  14993. {
  14994. name: "Normal",
  14995. height: math.unit(5, "feet")
  14996. },
  14997. ]
  14998. ))
  14999. characterMakers.push(() => makeCharacter(
  15000. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  15001. {
  15002. front: {
  15003. height: math.unit(5 + 7 / 12, "feet"),
  15004. weight: math.unit(159, "lb"),
  15005. name: "Front",
  15006. image: {
  15007. source: "./media/characters/hildegard/front.svg",
  15008. extra: 289 / 269,
  15009. bottom: 7.63 / 297.8
  15010. }
  15011. },
  15012. back: {
  15013. height: math.unit(5 + 7 / 12, "feet"),
  15014. weight: math.unit(159, "lb"),
  15015. name: "Back",
  15016. image: {
  15017. source: "./media/characters/hildegard/back.svg",
  15018. extra: 280 / 260,
  15019. bottom: 2.3 / 282
  15020. }
  15021. },
  15022. },
  15023. [
  15024. {
  15025. name: "Normal",
  15026. height: math.unit(5 + 7 / 12, "feet"),
  15027. default: true
  15028. },
  15029. ]
  15030. ))
  15031. characterMakers.push(() => makeCharacter(
  15032. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  15033. {
  15034. bernard: {
  15035. height: math.unit(2 + 7 / 12, "feet"),
  15036. weight: math.unit(66, "lb"),
  15037. name: "Bernard",
  15038. rename: true,
  15039. image: {
  15040. source: "./media/characters/bernard-wilder/bernard.svg",
  15041. extra: 192 / 128,
  15042. bottom: 0.05
  15043. }
  15044. },
  15045. wilder: {
  15046. height: math.unit(5 + 8 / 12, "feet"),
  15047. weight: math.unit(143, "lb"),
  15048. name: "Wilder",
  15049. rename: true,
  15050. image: {
  15051. source: "./media/characters/bernard-wilder/wilder.svg",
  15052. extra: 361 / 312,
  15053. bottom: 0.02
  15054. }
  15055. },
  15056. },
  15057. [
  15058. {
  15059. name: "Normal",
  15060. height: math.unit(2 + 7 / 12, "feet"),
  15061. default: true
  15062. },
  15063. ]
  15064. ))
  15065. characterMakers.push(() => makeCharacter(
  15066. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  15067. {
  15068. anthro: {
  15069. height: math.unit(6 + 1 / 12, "feet"),
  15070. weight: math.unit(155, "lb"),
  15071. name: "Anthro",
  15072. image: {
  15073. source: "./media/characters/hearth/anthro.svg",
  15074. extra: 1178/1136,
  15075. bottom: 28/1206
  15076. }
  15077. },
  15078. feral: {
  15079. height: math.unit(3.78, "feet"),
  15080. weight: math.unit(35, "kg"),
  15081. name: "Feral",
  15082. image: {
  15083. source: "./media/characters/hearth/feral.svg",
  15084. extra: 153 / 135,
  15085. bottom: 0.03
  15086. }
  15087. },
  15088. },
  15089. [
  15090. {
  15091. name: "Normal",
  15092. height: math.unit(6 + 1 / 12, "feet"),
  15093. default: true
  15094. },
  15095. ]
  15096. ))
  15097. characterMakers.push(() => makeCharacter(
  15098. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  15099. {
  15100. front: {
  15101. height: math.unit(6, "feet"),
  15102. weight: math.unit(182, "lb"),
  15103. name: "Front",
  15104. image: {
  15105. source: "./media/characters/ingrid/front.svg",
  15106. extra: 294 / 268,
  15107. bottom: 0.027
  15108. }
  15109. },
  15110. },
  15111. [
  15112. {
  15113. name: "Normal",
  15114. height: math.unit(6, "feet"),
  15115. default: true
  15116. },
  15117. ]
  15118. ))
  15119. characterMakers.push(() => makeCharacter(
  15120. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  15121. {
  15122. eevee: {
  15123. height: math.unit(2 + 10 / 12, "feet"),
  15124. weight: math.unit(86, "lb"),
  15125. name: "Malgam",
  15126. image: {
  15127. source: "./media/characters/malgam/eevee.svg",
  15128. extra: 952/784,
  15129. bottom: 38/990
  15130. }
  15131. },
  15132. sylveon: {
  15133. height: math.unit(4, "feet"),
  15134. weight: math.unit(101, "lb"),
  15135. name: "Future Malgam",
  15136. rename: true,
  15137. image: {
  15138. source: "./media/characters/malgam/sylveon.svg",
  15139. extra: 371 / 325,
  15140. bottom: 0.015
  15141. }
  15142. },
  15143. gigantamax: {
  15144. height: math.unit(50, "feet"),
  15145. name: "Gigantamax Malgam",
  15146. rename: true,
  15147. image: {
  15148. source: "./media/characters/malgam/gigantamax.svg"
  15149. }
  15150. },
  15151. },
  15152. [
  15153. {
  15154. name: "Normal",
  15155. height: math.unit(2 + 10 / 12, "feet"),
  15156. default: true
  15157. },
  15158. ]
  15159. ))
  15160. characterMakers.push(() => makeCharacter(
  15161. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  15162. {
  15163. front: {
  15164. height: math.unit(5 + 11 / 12, "feet"),
  15165. weight: math.unit(188, "lb"),
  15166. name: "Front",
  15167. image: {
  15168. source: "./media/characters/fleur/front.svg",
  15169. extra: 309 / 283,
  15170. bottom: 0.007
  15171. }
  15172. },
  15173. },
  15174. [
  15175. {
  15176. name: "Normal",
  15177. height: math.unit(5 + 11 / 12, "feet"),
  15178. default: true
  15179. },
  15180. ]
  15181. ))
  15182. characterMakers.push(() => makeCharacter(
  15183. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  15184. {
  15185. front: {
  15186. height: math.unit(5 + 4 / 12, "feet"),
  15187. weight: math.unit(122, "lb"),
  15188. name: "Front",
  15189. image: {
  15190. source: "./media/characters/jude/front.svg",
  15191. extra: 288 / 273,
  15192. bottom: 0.03
  15193. }
  15194. },
  15195. },
  15196. [
  15197. {
  15198. name: "Normal",
  15199. height: math.unit(5 + 4 / 12, "feet"),
  15200. default: true
  15201. },
  15202. ]
  15203. ))
  15204. characterMakers.push(() => makeCharacter(
  15205. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  15206. {
  15207. front: {
  15208. height: math.unit(5 + 11 / 12, "feet"),
  15209. weight: math.unit(190, "lb"),
  15210. name: "Front",
  15211. image: {
  15212. source: "./media/characters/seara/front.svg",
  15213. extra: 1,
  15214. bottom: 0.05
  15215. }
  15216. },
  15217. },
  15218. [
  15219. {
  15220. name: "Normal",
  15221. height: math.unit(5 + 11 / 12, "feet"),
  15222. default: true
  15223. },
  15224. ]
  15225. ))
  15226. characterMakers.push(() => makeCharacter(
  15227. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  15228. {
  15229. front: {
  15230. height: math.unit(16 + 5 / 12, "feet"),
  15231. weight: math.unit(524, "lb"),
  15232. name: "Front",
  15233. image: {
  15234. source: "./media/characters/caspian/front.svg",
  15235. extra: 1,
  15236. bottom: 0.04
  15237. }
  15238. },
  15239. },
  15240. [
  15241. {
  15242. name: "Normal",
  15243. height: math.unit(16 + 5 / 12, "feet"),
  15244. default: true
  15245. },
  15246. ]
  15247. ))
  15248. characterMakers.push(() => makeCharacter(
  15249. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  15250. {
  15251. front: {
  15252. height: math.unit(5 + 7 / 12, "feet"),
  15253. weight: math.unit(170, "lb"),
  15254. name: "Front",
  15255. image: {
  15256. source: "./media/characters/mika/front.svg",
  15257. extra: 1,
  15258. bottom: 0.016
  15259. }
  15260. },
  15261. },
  15262. [
  15263. {
  15264. name: "Normal",
  15265. height: math.unit(5 + 7 / 12, "feet"),
  15266. default: true
  15267. },
  15268. ]
  15269. ))
  15270. characterMakers.push(() => makeCharacter(
  15271. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  15272. {
  15273. front: {
  15274. height: math.unit(6 + 2 / 12, "feet"),
  15275. weight: math.unit(268, "lb"),
  15276. name: "Front",
  15277. image: {
  15278. source: "./media/characters/sol/front.svg",
  15279. extra: 247 / 231,
  15280. bottom: 0.05
  15281. }
  15282. },
  15283. },
  15284. [
  15285. {
  15286. name: "Normal",
  15287. height: math.unit(6 + 2 / 12, "feet"),
  15288. default: true
  15289. },
  15290. ]
  15291. ))
  15292. characterMakers.push(() => makeCharacter(
  15293. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  15294. {
  15295. buizel: {
  15296. height: math.unit(2 + 5 / 12, "feet"),
  15297. weight: math.unit(87, "lb"),
  15298. name: "Buizel",
  15299. image: {
  15300. source: "./media/characters/umiko/buizel.svg",
  15301. extra: 172 / 157,
  15302. bottom: 0.01
  15303. }
  15304. },
  15305. floatzel: {
  15306. height: math.unit(5 + 9 / 12, "feet"),
  15307. weight: math.unit(250, "lb"),
  15308. name: "Floatzel",
  15309. image: {
  15310. source: "./media/characters/umiko/floatzel.svg",
  15311. extra: 262 / 248
  15312. }
  15313. },
  15314. },
  15315. [
  15316. {
  15317. name: "Normal",
  15318. height: math.unit(2 + 5 / 12, "feet"),
  15319. default: true
  15320. },
  15321. ]
  15322. ))
  15323. characterMakers.push(() => makeCharacter(
  15324. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  15325. {
  15326. front: {
  15327. height: math.unit(6 + 2 / 12, "feet"),
  15328. weight: math.unit(146, "lb"),
  15329. name: "Front",
  15330. image: {
  15331. source: "./media/characters/iliac/front.svg",
  15332. extra: 389 / 365,
  15333. bottom: 0.035
  15334. }
  15335. },
  15336. },
  15337. [
  15338. {
  15339. name: "Normal",
  15340. height: math.unit(6 + 2 / 12, "feet"),
  15341. default: true
  15342. },
  15343. ]
  15344. ))
  15345. characterMakers.push(() => makeCharacter(
  15346. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  15347. {
  15348. front: {
  15349. height: math.unit(6, "feet"),
  15350. weight: math.unit(170, "lb"),
  15351. name: "Front",
  15352. image: {
  15353. source: "./media/characters/topaz/front.svg",
  15354. extra: 317 / 303,
  15355. bottom: 0.055
  15356. }
  15357. },
  15358. },
  15359. [
  15360. {
  15361. name: "Normal",
  15362. height: math.unit(6, "feet"),
  15363. default: true
  15364. },
  15365. ]
  15366. ))
  15367. characterMakers.push(() => makeCharacter(
  15368. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  15369. {
  15370. front: {
  15371. height: math.unit(5 + 11 / 12, "feet"),
  15372. weight: math.unit(144, "lb"),
  15373. name: "Front",
  15374. image: {
  15375. source: "./media/characters/gabriel/front.svg",
  15376. extra: 285 / 262,
  15377. bottom: 0.004
  15378. }
  15379. },
  15380. },
  15381. [
  15382. {
  15383. name: "Normal",
  15384. height: math.unit(5 + 11 / 12, "feet"),
  15385. default: true
  15386. },
  15387. ]
  15388. ))
  15389. characterMakers.push(() => makeCharacter(
  15390. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  15391. {
  15392. side: {
  15393. height: math.unit(6 + 5 / 12, "feet"),
  15394. weight: math.unit(300, "lb"),
  15395. name: "Side",
  15396. image: {
  15397. source: "./media/characters/tempest-suicune/side.svg",
  15398. extra: 195 / 154,
  15399. bottom: 0.04
  15400. }
  15401. },
  15402. },
  15403. [
  15404. {
  15405. name: "Normal",
  15406. height: math.unit(6 + 5 / 12, "feet"),
  15407. default: true
  15408. },
  15409. ]
  15410. ))
  15411. characterMakers.push(() => makeCharacter(
  15412. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  15413. {
  15414. front: {
  15415. height: math.unit(7 + 2 / 12, "feet"),
  15416. weight: math.unit(322, "lb"),
  15417. name: "Front",
  15418. image: {
  15419. source: "./media/characters/vulcan/front.svg",
  15420. extra: 154 / 147,
  15421. bottom: 0.04
  15422. }
  15423. },
  15424. },
  15425. [
  15426. {
  15427. name: "Normal",
  15428. height: math.unit(7 + 2 / 12, "feet"),
  15429. default: true
  15430. },
  15431. ]
  15432. ))
  15433. characterMakers.push(() => makeCharacter(
  15434. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  15435. {
  15436. front: {
  15437. height: math.unit(5 + 10 / 12, "feet"),
  15438. weight: math.unit(264, "lb"),
  15439. name: "Front",
  15440. image: {
  15441. source: "./media/characters/gault/front.svg",
  15442. extra: 161 / 140,
  15443. bottom: 0.028
  15444. }
  15445. },
  15446. },
  15447. [
  15448. {
  15449. name: "Normal",
  15450. height: math.unit(5 + 10 / 12, "feet"),
  15451. default: true
  15452. },
  15453. ]
  15454. ))
  15455. characterMakers.push(() => makeCharacter(
  15456. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  15457. {
  15458. front: {
  15459. height: math.unit(6, "feet"),
  15460. weight: math.unit(150, "lb"),
  15461. name: "Front",
  15462. image: {
  15463. source: "./media/characters/shard/front.svg",
  15464. extra: 273 / 238,
  15465. bottom: 0.02
  15466. }
  15467. },
  15468. },
  15469. [
  15470. {
  15471. name: "Normal",
  15472. height: math.unit(3 + 6 / 12, "feet"),
  15473. default: true
  15474. },
  15475. ]
  15476. ))
  15477. characterMakers.push(() => makeCharacter(
  15478. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  15479. {
  15480. front: {
  15481. height: math.unit(5 + 11 / 12, "feet"),
  15482. weight: math.unit(146, "lb"),
  15483. name: "Front",
  15484. image: {
  15485. source: "./media/characters/ashe/front.svg",
  15486. extra: 400 / 373,
  15487. bottom: 0.01
  15488. }
  15489. },
  15490. },
  15491. [
  15492. {
  15493. name: "Normal",
  15494. height: math.unit(5 + 11 / 12, "feet"),
  15495. default: true
  15496. },
  15497. ]
  15498. ))
  15499. characterMakers.push(() => makeCharacter(
  15500. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  15501. {
  15502. front: {
  15503. height: math.unit(5 + 5 / 12, "feet"),
  15504. weight: math.unit(135, "lb"),
  15505. name: "Front",
  15506. image: {
  15507. source: "./media/characters/beatrix/front.svg",
  15508. extra: 392 / 379,
  15509. bottom: 0.01
  15510. }
  15511. },
  15512. },
  15513. [
  15514. {
  15515. name: "Normal",
  15516. height: math.unit(6, "feet"),
  15517. default: true
  15518. },
  15519. ]
  15520. ))
  15521. characterMakers.push(() => makeCharacter(
  15522. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  15523. {
  15524. front: {
  15525. height: math.unit(6 + 2/12, "feet"),
  15526. weight: math.unit(135, "lb"),
  15527. name: "Front",
  15528. image: {
  15529. source: "./media/characters/ignatius/front.svg",
  15530. extra: 1380/1259,
  15531. bottom: 27/1407
  15532. }
  15533. },
  15534. },
  15535. [
  15536. {
  15537. name: "Normal",
  15538. height: math.unit(6 + 2/12, "feet"),
  15539. default: true
  15540. },
  15541. ]
  15542. ))
  15543. characterMakers.push(() => makeCharacter(
  15544. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  15545. {
  15546. front: {
  15547. height: math.unit(6 + 2 / 12, "feet"),
  15548. weight: math.unit(138, "lb"),
  15549. name: "Front",
  15550. image: {
  15551. source: "./media/characters/mei-li/front.svg",
  15552. extra: 237 / 229,
  15553. bottom: 0.03
  15554. }
  15555. },
  15556. },
  15557. [
  15558. {
  15559. name: "Normal",
  15560. height: math.unit(6 + 2 / 12, "feet"),
  15561. default: true
  15562. },
  15563. ]
  15564. ))
  15565. characterMakers.push(() => makeCharacter(
  15566. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  15567. {
  15568. front: {
  15569. height: math.unit(2 + 4 / 12, "feet"),
  15570. weight: math.unit(62, "lb"),
  15571. name: "Front",
  15572. image: {
  15573. source: "./media/characters/puru/front.svg",
  15574. extra: 206 / 149,
  15575. bottom: 0.06
  15576. }
  15577. },
  15578. },
  15579. [
  15580. {
  15581. name: "Normal",
  15582. height: math.unit(2 + 4 / 12, "feet"),
  15583. default: true
  15584. },
  15585. ]
  15586. ))
  15587. characterMakers.push(() => makeCharacter(
  15588. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  15589. {
  15590. anthro: {
  15591. height: math.unit(5 + 8/12, "feet"),
  15592. weight: math.unit(200, "lb"),
  15593. energyNeed: math.unit(2000, "kcal"),
  15594. name: "Anthro",
  15595. image: {
  15596. source: "./media/characters/kee/anthro.svg",
  15597. extra: 3251/3184,
  15598. bottom: 250/3501
  15599. }
  15600. },
  15601. taur: {
  15602. height: math.unit(11, "feet"),
  15603. weight: math.unit(500, "lb"),
  15604. energyNeed: math.unit(5000, "kcal"),
  15605. name: "Taur",
  15606. image: {
  15607. source: "./media/characters/kee/taur.svg",
  15608. extra: 1362/1320,
  15609. bottom: 83/1445
  15610. }
  15611. },
  15612. },
  15613. [
  15614. {
  15615. name: "Normal",
  15616. height: math.unit(5 + 8/12, "feet"),
  15617. default: true
  15618. },
  15619. {
  15620. name: "Macro",
  15621. height: math.unit(35, "feet")
  15622. },
  15623. ]
  15624. ))
  15625. characterMakers.push(() => makeCharacter(
  15626. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  15627. {
  15628. anthro: {
  15629. height: math.unit(7, "feet"),
  15630. weight: math.unit(190, "lb"),
  15631. name: "Anthro",
  15632. image: {
  15633. source: "./media/characters/cobalt-dracha/anthro.svg",
  15634. extra: 231 / 225,
  15635. bottom: 0.04
  15636. }
  15637. },
  15638. feral: {
  15639. height: math.unit(9 + 7 / 12, "feet"),
  15640. weight: math.unit(294, "lb"),
  15641. name: "Feral",
  15642. image: {
  15643. source: "./media/characters/cobalt-dracha/feral.svg",
  15644. extra: 692 / 633,
  15645. bottom: 0.05
  15646. }
  15647. },
  15648. },
  15649. [
  15650. {
  15651. name: "Normal",
  15652. height: math.unit(7, "feet"),
  15653. default: true
  15654. },
  15655. ]
  15656. ))
  15657. characterMakers.push(() => makeCharacter(
  15658. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  15659. {
  15660. fallen: {
  15661. height: math.unit(11 + 8 / 12, "feet"),
  15662. weight: math.unit(485, "lb"),
  15663. name: "Java (Fallen)",
  15664. rename: true,
  15665. image: {
  15666. source: "./media/characters/java/fallen.svg",
  15667. extra: 226 / 208,
  15668. bottom: 0.005
  15669. }
  15670. },
  15671. godkin: {
  15672. height: math.unit(10 + 6 / 12, "feet"),
  15673. weight: math.unit(328, "lb"),
  15674. name: "Java (Godkin)",
  15675. rename: true,
  15676. image: {
  15677. source: "./media/characters/java/godkin.svg",
  15678. extra: 1104/1068,
  15679. bottom: 36/1140
  15680. }
  15681. },
  15682. },
  15683. [
  15684. {
  15685. name: "Normal",
  15686. height: math.unit(11 + 8 / 12, "feet"),
  15687. default: true
  15688. },
  15689. ]
  15690. ))
  15691. characterMakers.push(() => makeCharacter(
  15692. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  15693. {
  15694. front: {
  15695. height: math.unit(5 + 9 / 12, "feet"),
  15696. weight: math.unit(170, "lb"),
  15697. name: "Front",
  15698. image: {
  15699. source: "./media/characters/purna/front.svg",
  15700. extra: 239 / 229,
  15701. bottom: 0.01
  15702. }
  15703. },
  15704. },
  15705. [
  15706. {
  15707. name: "Normal",
  15708. height: math.unit(5 + 9 / 12, "feet"),
  15709. default: true
  15710. },
  15711. ]
  15712. ))
  15713. characterMakers.push(() => makeCharacter(
  15714. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  15715. {
  15716. front: {
  15717. height: math.unit(5 + 9 / 12, "feet"),
  15718. weight: math.unit(142, "lb"),
  15719. name: "Front",
  15720. image: {
  15721. source: "./media/characters/kuva/front.svg",
  15722. extra: 281 / 271,
  15723. bottom: 0.006
  15724. }
  15725. },
  15726. },
  15727. [
  15728. {
  15729. name: "Normal",
  15730. height: math.unit(5 + 9 / 12, "feet"),
  15731. default: true
  15732. },
  15733. ]
  15734. ))
  15735. characterMakers.push(() => makeCharacter(
  15736. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  15737. {
  15738. anthro: {
  15739. height: math.unit(9 + 2 / 12, "feet"),
  15740. weight: math.unit(270, "lb"),
  15741. name: "Anthro",
  15742. image: {
  15743. source: "./media/characters/embra/anthro.svg",
  15744. extra: 200 / 187,
  15745. bottom: 0.02
  15746. }
  15747. },
  15748. feral: {
  15749. height: math.unit(18 + 8 / 12, "feet"),
  15750. weight: math.unit(576, "lb"),
  15751. name: "Feral",
  15752. image: {
  15753. source: "./media/characters/embra/feral.svg",
  15754. extra: 152 / 137,
  15755. bottom: 0.037
  15756. }
  15757. },
  15758. },
  15759. [
  15760. {
  15761. name: "Normal",
  15762. height: math.unit(9 + 2 / 12, "feet"),
  15763. default: true
  15764. },
  15765. ]
  15766. ))
  15767. characterMakers.push(() => makeCharacter(
  15768. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  15769. {
  15770. anthro: {
  15771. height: math.unit(10 + 9 / 12, "feet"),
  15772. weight: math.unit(224, "lb"),
  15773. name: "Anthro",
  15774. image: {
  15775. source: "./media/characters/grottos/anthro.svg",
  15776. extra: 350 / 332,
  15777. bottom: 0.045
  15778. }
  15779. },
  15780. feral: {
  15781. height: math.unit(20 + 7 / 12, "feet"),
  15782. weight: math.unit(629, "lb"),
  15783. name: "Feral",
  15784. image: {
  15785. source: "./media/characters/grottos/feral.svg",
  15786. extra: 207 / 190,
  15787. bottom: 0.05
  15788. }
  15789. },
  15790. },
  15791. [
  15792. {
  15793. name: "Normal",
  15794. height: math.unit(10 + 9 / 12, "feet"),
  15795. default: true
  15796. },
  15797. ]
  15798. ))
  15799. characterMakers.push(() => makeCharacter(
  15800. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  15801. {
  15802. anthro: {
  15803. height: math.unit(9 + 6 / 12, "feet"),
  15804. weight: math.unit(298, "lb"),
  15805. name: "Anthro",
  15806. image: {
  15807. source: "./media/characters/frifna/anthro.svg",
  15808. extra: 282 / 269,
  15809. bottom: 0.015
  15810. }
  15811. },
  15812. feral: {
  15813. height: math.unit(16 + 2 / 12, "feet"),
  15814. weight: math.unit(624, "lb"),
  15815. name: "Feral",
  15816. image: {
  15817. source: "./media/characters/frifna/feral.svg"
  15818. }
  15819. },
  15820. },
  15821. [
  15822. {
  15823. name: "Normal",
  15824. height: math.unit(9 + 6 / 12, "feet"),
  15825. default: true
  15826. },
  15827. ]
  15828. ))
  15829. characterMakers.push(() => makeCharacter(
  15830. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  15831. {
  15832. front: {
  15833. height: math.unit(6 + 2 / 12, "feet"),
  15834. weight: math.unit(168, "lb"),
  15835. name: "Front",
  15836. image: {
  15837. source: "./media/characters/elise/front.svg",
  15838. extra: 276 / 271
  15839. }
  15840. },
  15841. },
  15842. [
  15843. {
  15844. name: "Normal",
  15845. height: math.unit(6 + 2 / 12, "feet"),
  15846. default: true
  15847. },
  15848. ]
  15849. ))
  15850. characterMakers.push(() => makeCharacter(
  15851. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  15852. {
  15853. front: {
  15854. height: math.unit(5 + 10 / 12, "feet"),
  15855. weight: math.unit(210, "lb"),
  15856. name: "Front",
  15857. image: {
  15858. source: "./media/characters/glade/front.svg",
  15859. extra: 258 / 247,
  15860. bottom: 0.008
  15861. }
  15862. },
  15863. },
  15864. [
  15865. {
  15866. name: "Normal",
  15867. height: math.unit(5 + 10 / 12, "feet"),
  15868. default: true
  15869. },
  15870. ]
  15871. ))
  15872. characterMakers.push(() => makeCharacter(
  15873. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  15874. {
  15875. front: {
  15876. height: math.unit(5 + 10 / 12, "feet"),
  15877. weight: math.unit(129, "lb"),
  15878. name: "Front",
  15879. image: {
  15880. source: "./media/characters/rina/front.svg",
  15881. extra: 266 / 255,
  15882. bottom: 0.005
  15883. }
  15884. },
  15885. },
  15886. [
  15887. {
  15888. name: "Normal",
  15889. height: math.unit(5 + 10 / 12, "feet"),
  15890. default: true
  15891. },
  15892. ]
  15893. ))
  15894. characterMakers.push(() => makeCharacter(
  15895. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  15896. {
  15897. front: {
  15898. height: math.unit(6 + 1 / 12, "feet"),
  15899. weight: math.unit(192, "lb"),
  15900. name: "Front",
  15901. image: {
  15902. source: "./media/characters/veronica/front.svg",
  15903. extra: 319 / 309,
  15904. bottom: 0.005
  15905. }
  15906. },
  15907. },
  15908. [
  15909. {
  15910. name: "Normal",
  15911. height: math.unit(6 + 1 / 12, "feet"),
  15912. default: true
  15913. },
  15914. ]
  15915. ))
  15916. characterMakers.push(() => makeCharacter(
  15917. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  15918. {
  15919. front: {
  15920. height: math.unit(9 + 3 / 12, "feet"),
  15921. weight: math.unit(1100, "lb"),
  15922. name: "Front",
  15923. image: {
  15924. source: "./media/characters/braxton/front.svg",
  15925. extra: 1057 / 984,
  15926. bottom: 0.05
  15927. }
  15928. },
  15929. },
  15930. [
  15931. {
  15932. name: "Normal",
  15933. height: math.unit(9 + 3 / 12, "feet")
  15934. },
  15935. {
  15936. name: "Giant",
  15937. height: math.unit(300, "feet"),
  15938. default: true
  15939. },
  15940. {
  15941. name: "Macro",
  15942. height: math.unit(700, "feet")
  15943. },
  15944. {
  15945. name: "Megamacro",
  15946. height: math.unit(6000, "feet")
  15947. },
  15948. ]
  15949. ))
  15950. characterMakers.push(() => makeCharacter(
  15951. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  15952. {
  15953. front: {
  15954. height: math.unit(6 + 7 / 12, "feet"),
  15955. weight: math.unit(150, "lb"),
  15956. name: "Front",
  15957. image: {
  15958. source: "./media/characters/blue-feyonics/front.svg",
  15959. extra: 1403 / 1306,
  15960. bottom: 0.047
  15961. }
  15962. },
  15963. },
  15964. [
  15965. {
  15966. name: "Normal",
  15967. height: math.unit(6 + 7 / 12, "feet"),
  15968. default: true
  15969. },
  15970. ]
  15971. ))
  15972. characterMakers.push(() => makeCharacter(
  15973. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  15974. {
  15975. front: {
  15976. height: math.unit(1.8, "meters"),
  15977. weight: math.unit(60, "kg"),
  15978. name: "Front",
  15979. image: {
  15980. source: "./media/characters/maxwell/front.svg",
  15981. extra: 2060 / 1873
  15982. }
  15983. },
  15984. },
  15985. [
  15986. {
  15987. name: "Micro",
  15988. height: math.unit(1, "mm")
  15989. },
  15990. {
  15991. name: "Normal",
  15992. height: math.unit(1.8, "meter"),
  15993. default: true
  15994. },
  15995. {
  15996. name: "Macro",
  15997. height: math.unit(30, "meters")
  15998. },
  15999. {
  16000. name: "Megamacro",
  16001. height: math.unit(10, "km")
  16002. },
  16003. ]
  16004. ))
  16005. characterMakers.push(() => makeCharacter(
  16006. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  16007. {
  16008. front: {
  16009. height: math.unit(6, "feet"),
  16010. weight: math.unit(150, "lb"),
  16011. name: "Front",
  16012. image: {
  16013. source: "./media/characters/jack/front.svg",
  16014. extra: 1754 / 1640,
  16015. bottom: 0.01
  16016. }
  16017. },
  16018. },
  16019. [
  16020. {
  16021. name: "Normal",
  16022. height: math.unit(80000, "feet"),
  16023. default: true
  16024. },
  16025. {
  16026. name: "Max size",
  16027. height: math.unit(10, "lightyears")
  16028. },
  16029. ]
  16030. ))
  16031. characterMakers.push(() => makeCharacter(
  16032. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  16033. {
  16034. urban: {
  16035. height: math.unit(5, "feet"),
  16036. weight: math.unit(240, "lb"),
  16037. name: "Urban",
  16038. image: {
  16039. source: "./media/characters/cafat/urban.svg",
  16040. extra: 1223/1126,
  16041. bottom: 205/1428
  16042. }
  16043. },
  16044. summer: {
  16045. height: math.unit(5, "feet"),
  16046. weight: math.unit(240, "lb"),
  16047. name: "Summer",
  16048. image: {
  16049. source: "./media/characters/cafat/summer.svg",
  16050. extra: 1223/1126,
  16051. bottom: 205/1428
  16052. }
  16053. },
  16054. winter: {
  16055. height: math.unit(5, "feet"),
  16056. weight: math.unit(240, "lb"),
  16057. name: "Winter",
  16058. image: {
  16059. source: "./media/characters/cafat/winter.svg",
  16060. extra: 1223/1126,
  16061. bottom: 205/1428
  16062. }
  16063. },
  16064. lingerie: {
  16065. height: math.unit(5, "feet"),
  16066. weight: math.unit(240, "lb"),
  16067. name: "Lingerie",
  16068. image: {
  16069. source: "./media/characters/cafat/lingerie.svg",
  16070. extra: 1223/1126,
  16071. bottom: 205/1428
  16072. }
  16073. },
  16074. upright: {
  16075. height: math.unit(6.3, "feet"),
  16076. weight: math.unit(240, "lb"),
  16077. name: "Upright",
  16078. image: {
  16079. source: "./media/characters/cafat/upright.svg",
  16080. bottom: 0.01
  16081. }
  16082. },
  16083. uprightFull: {
  16084. height: math.unit(6.3, "feet"),
  16085. weight: math.unit(240, "lb"),
  16086. name: "Upright (Full)",
  16087. image: {
  16088. source: "./media/characters/cafat/upright-full.svg",
  16089. bottom: 0.01
  16090. }
  16091. },
  16092. },
  16093. [
  16094. {
  16095. name: "Small",
  16096. height: math.unit(5, "feet"),
  16097. default: true
  16098. },
  16099. {
  16100. name: "Large",
  16101. height: math.unit(13, "feet")
  16102. },
  16103. ]
  16104. ))
  16105. characterMakers.push(() => makeCharacter(
  16106. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  16107. {
  16108. front: {
  16109. height: math.unit(6, "feet"),
  16110. weight: math.unit(150, "lb"),
  16111. name: "Front",
  16112. image: {
  16113. source: "./media/characters/verin-raharra/front.svg",
  16114. extra: 5019 / 4835,
  16115. bottom: 0.023
  16116. }
  16117. },
  16118. },
  16119. [
  16120. {
  16121. name: "Normal",
  16122. height: math.unit(7 + 5 / 12, "feet"),
  16123. default: true
  16124. },
  16125. {
  16126. name: "Upsized",
  16127. height: math.unit(20, "feet")
  16128. },
  16129. ]
  16130. ))
  16131. characterMakers.push(() => makeCharacter(
  16132. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  16133. {
  16134. front: {
  16135. height: math.unit(7, "feet"),
  16136. weight: math.unit(230, "lb"),
  16137. name: "Front",
  16138. image: {
  16139. source: "./media/characters/nakata/front.svg",
  16140. extra: 1.005,
  16141. bottom: 0.01
  16142. }
  16143. },
  16144. },
  16145. [
  16146. {
  16147. name: "Normal",
  16148. height: math.unit(7, "feet"),
  16149. default: true
  16150. },
  16151. {
  16152. name: "Big",
  16153. height: math.unit(14, "feet")
  16154. },
  16155. {
  16156. name: "Macro",
  16157. height: math.unit(400, "feet")
  16158. },
  16159. ]
  16160. ))
  16161. characterMakers.push(() => makeCharacter(
  16162. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  16163. {
  16164. front: {
  16165. height: math.unit(4.91, "feet"),
  16166. weight: math.unit(100, "lb"),
  16167. name: "Front",
  16168. image: {
  16169. source: "./media/characters/lily/front.svg",
  16170. extra: 1585 / 1415,
  16171. bottom: 0.02
  16172. }
  16173. },
  16174. },
  16175. [
  16176. {
  16177. name: "Normal",
  16178. height: math.unit(4.91, "feet"),
  16179. default: true
  16180. },
  16181. ]
  16182. ))
  16183. characterMakers.push(() => makeCharacter(
  16184. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  16185. {
  16186. laying: {
  16187. height: math.unit(4 + 4 / 12, "feet"),
  16188. weight: math.unit(600, "lb"),
  16189. name: "Laying",
  16190. image: {
  16191. source: "./media/characters/sheila/laying.svg",
  16192. extra: 1333 / 1265,
  16193. bottom: 0.16
  16194. }
  16195. },
  16196. },
  16197. [
  16198. {
  16199. name: "Normal",
  16200. height: math.unit(4 + 4 / 12, "feet"),
  16201. default: true
  16202. },
  16203. ]
  16204. ))
  16205. characterMakers.push(() => makeCharacter(
  16206. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  16207. {
  16208. front: {
  16209. height: math.unit(6, "feet"),
  16210. weight: math.unit(190, "lb"),
  16211. name: "Front",
  16212. image: {
  16213. source: "./media/characters/sax/front.svg",
  16214. extra: 1187 / 973,
  16215. bottom: 0.042
  16216. }
  16217. },
  16218. },
  16219. [
  16220. {
  16221. name: "Micro",
  16222. height: math.unit(4, "inches"),
  16223. default: true
  16224. },
  16225. ]
  16226. ))
  16227. characterMakers.push(() => makeCharacter(
  16228. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  16229. {
  16230. front: {
  16231. height: math.unit(6, "feet"),
  16232. weight: math.unit(150, "lb"),
  16233. name: "Front",
  16234. image: {
  16235. source: "./media/characters/pandora/front.svg",
  16236. extra: 2720 / 2556,
  16237. bottom: 0.015
  16238. }
  16239. },
  16240. back: {
  16241. height: math.unit(6, "feet"),
  16242. weight: math.unit(150, "lb"),
  16243. name: "Back",
  16244. image: {
  16245. source: "./media/characters/pandora/back.svg",
  16246. extra: 2720 / 2556,
  16247. bottom: 0.01
  16248. }
  16249. },
  16250. beans: {
  16251. height: math.unit(6 / 8, "feet"),
  16252. name: "Beans",
  16253. image: {
  16254. source: "./media/characters/pandora/beans.svg"
  16255. }
  16256. },
  16257. collar: {
  16258. height: math.unit(0.31, "feet"),
  16259. name: "Collar",
  16260. image: {
  16261. source: "./media/characters/pandora/collar.svg"
  16262. }
  16263. },
  16264. skirt: {
  16265. height: math.unit(6, "feet"),
  16266. weight: math.unit(150, "lb"),
  16267. name: "Skirt",
  16268. image: {
  16269. source: "./media/characters/pandora/skirt.svg",
  16270. extra: 1622 / 1525,
  16271. bottom: 0.015
  16272. }
  16273. },
  16274. hoodie: {
  16275. height: math.unit(6, "feet"),
  16276. weight: math.unit(150, "lb"),
  16277. name: "Hoodie",
  16278. image: {
  16279. source: "./media/characters/pandora/hoodie.svg",
  16280. extra: 1622 / 1525,
  16281. bottom: 0.015
  16282. }
  16283. },
  16284. casual: {
  16285. height: math.unit(6, "feet"),
  16286. weight: math.unit(150, "lb"),
  16287. name: "Casual",
  16288. image: {
  16289. source: "./media/characters/pandora/casual.svg",
  16290. extra: 1622 / 1525,
  16291. bottom: 0.015
  16292. }
  16293. },
  16294. },
  16295. [
  16296. {
  16297. name: "Normal",
  16298. height: math.unit(6, "feet")
  16299. },
  16300. {
  16301. name: "Big Steppy",
  16302. height: math.unit(1, "km"),
  16303. default: true
  16304. },
  16305. {
  16306. name: "Galactic Steppy",
  16307. height: math.unit(2, "gigameters")
  16308. },
  16309. ]
  16310. ))
  16311. characterMakers.push(() => makeCharacter(
  16312. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  16313. {
  16314. side: {
  16315. height: math.unit(10, "feet"),
  16316. weight: math.unit(800, "kg"),
  16317. name: "Side",
  16318. image: {
  16319. source: "./media/characters/venio-darcony/side.svg",
  16320. extra: 1373 / 1003,
  16321. bottom: 0.037
  16322. }
  16323. },
  16324. front: {
  16325. height: math.unit(19, "feet"),
  16326. weight: math.unit(800, "kg"),
  16327. name: "Front",
  16328. image: {
  16329. source: "./media/characters/venio-darcony/front.svg"
  16330. }
  16331. },
  16332. back: {
  16333. height: math.unit(19, "feet"),
  16334. weight: math.unit(800, "kg"),
  16335. name: "Back",
  16336. image: {
  16337. source: "./media/characters/venio-darcony/back.svg"
  16338. }
  16339. },
  16340. sideNsfw: {
  16341. height: math.unit(10, "feet"),
  16342. weight: math.unit(800, "kg"),
  16343. name: "Side (NSFW)",
  16344. image: {
  16345. source: "./media/characters/venio-darcony/side-nsfw.svg",
  16346. extra: 1373 / 1003,
  16347. bottom: 0.037
  16348. }
  16349. },
  16350. frontNsfw: {
  16351. height: math.unit(19, "feet"),
  16352. weight: math.unit(800, "kg"),
  16353. name: "Front (NSFW)",
  16354. image: {
  16355. source: "./media/characters/venio-darcony/front-nsfw.svg"
  16356. }
  16357. },
  16358. backNsfw: {
  16359. height: math.unit(19, "feet"),
  16360. weight: math.unit(800, "kg"),
  16361. name: "Back (NSFW)",
  16362. image: {
  16363. source: "./media/characters/venio-darcony/back-nsfw.svg"
  16364. }
  16365. },
  16366. sideArmored: {
  16367. height: math.unit(10, "feet"),
  16368. weight: math.unit(800, "kg"),
  16369. name: "Side (Armored)",
  16370. image: {
  16371. source: "./media/characters/venio-darcony/side-armored.svg",
  16372. extra: 1373 / 1003,
  16373. bottom: 0.037
  16374. }
  16375. },
  16376. frontArmored: {
  16377. height: math.unit(19, "feet"),
  16378. weight: math.unit(900, "kg"),
  16379. name: "Front (Armored)",
  16380. image: {
  16381. source: "./media/characters/venio-darcony/front-armored.svg"
  16382. }
  16383. },
  16384. backArmored: {
  16385. height: math.unit(19, "feet"),
  16386. weight: math.unit(900, "kg"),
  16387. name: "Back (Armored)",
  16388. image: {
  16389. source: "./media/characters/venio-darcony/back-armored.svg"
  16390. }
  16391. },
  16392. sword: {
  16393. height: math.unit(10, "feet"),
  16394. weight: math.unit(50, "lb"),
  16395. name: "Sword",
  16396. image: {
  16397. source: "./media/characters/venio-darcony/sword.svg"
  16398. }
  16399. },
  16400. },
  16401. [
  16402. {
  16403. name: "Normal",
  16404. height: math.unit(10, "feet")
  16405. },
  16406. {
  16407. name: "Macro",
  16408. height: math.unit(130, "feet"),
  16409. default: true
  16410. },
  16411. {
  16412. name: "Macro+",
  16413. height: math.unit(240, "feet")
  16414. },
  16415. ]
  16416. ))
  16417. characterMakers.push(() => makeCharacter(
  16418. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  16419. {
  16420. front: {
  16421. height: math.unit(6, "feet"),
  16422. weight: math.unit(150, "lb"),
  16423. name: "Front",
  16424. image: {
  16425. source: "./media/characters/veski/front.svg",
  16426. extra: 1299 / 1225,
  16427. bottom: 0.04
  16428. }
  16429. },
  16430. back: {
  16431. height: math.unit(6, "feet"),
  16432. weight: math.unit(150, "lb"),
  16433. name: "Back",
  16434. image: {
  16435. source: "./media/characters/veski/back.svg",
  16436. extra: 1299 / 1225,
  16437. bottom: 0.008
  16438. }
  16439. },
  16440. maw: {
  16441. height: math.unit(1.5 * 1.21, "feet"),
  16442. name: "Maw",
  16443. image: {
  16444. source: "./media/characters/veski/maw.svg"
  16445. }
  16446. },
  16447. },
  16448. [
  16449. {
  16450. name: "Macro",
  16451. height: math.unit(2, "km"),
  16452. default: true
  16453. },
  16454. ]
  16455. ))
  16456. characterMakers.push(() => makeCharacter(
  16457. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  16458. {
  16459. front: {
  16460. height: math.unit(5 + 7 / 12, "feet"),
  16461. name: "Front",
  16462. image: {
  16463. source: "./media/characters/isabelle/front.svg",
  16464. extra: 2130 / 1976,
  16465. bottom: 0.05
  16466. }
  16467. },
  16468. },
  16469. [
  16470. {
  16471. name: "Supermicro",
  16472. height: math.unit(10, "micrometers")
  16473. },
  16474. {
  16475. name: "Micro",
  16476. height: math.unit(1, "inch")
  16477. },
  16478. {
  16479. name: "Tiny",
  16480. height: math.unit(5, "inches")
  16481. },
  16482. {
  16483. name: "Standard",
  16484. height: math.unit(5 + 7 / 12, "inches")
  16485. },
  16486. {
  16487. name: "Macro",
  16488. height: math.unit(80, "meters"),
  16489. default: true
  16490. },
  16491. {
  16492. name: "Megamacro",
  16493. height: math.unit(250, "meters")
  16494. },
  16495. {
  16496. name: "Gigamacro",
  16497. height: math.unit(5, "km")
  16498. },
  16499. {
  16500. name: "Cosmic",
  16501. height: math.unit(2.5e6, "miles")
  16502. },
  16503. ]
  16504. ))
  16505. characterMakers.push(() => makeCharacter(
  16506. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  16507. {
  16508. front: {
  16509. height: math.unit(6, "feet"),
  16510. weight: math.unit(150, "lb"),
  16511. name: "Front",
  16512. image: {
  16513. source: "./media/characters/hanzo/front.svg",
  16514. extra: 374 / 344,
  16515. bottom: 0.02
  16516. }
  16517. },
  16518. },
  16519. [
  16520. {
  16521. name: "Normal",
  16522. height: math.unit(8, "feet"),
  16523. default: true
  16524. },
  16525. ]
  16526. ))
  16527. characterMakers.push(() => makeCharacter(
  16528. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  16529. {
  16530. front: {
  16531. height: math.unit(7, "feet"),
  16532. weight: math.unit(130, "lb"),
  16533. name: "Front",
  16534. image: {
  16535. source: "./media/characters/anna/front.svg",
  16536. extra: 169 / 145,
  16537. bottom: 0.06
  16538. }
  16539. },
  16540. full: {
  16541. height: math.unit(4.96, "feet"),
  16542. weight: math.unit(220, "lb"),
  16543. name: "Full",
  16544. image: {
  16545. source: "./media/characters/anna/full.svg",
  16546. extra: 138 / 114,
  16547. bottom: 0.15
  16548. }
  16549. },
  16550. tongue: {
  16551. height: math.unit(2.53, "feet"),
  16552. name: "Tongue",
  16553. image: {
  16554. source: "./media/characters/anna/tongue.svg"
  16555. }
  16556. },
  16557. },
  16558. [
  16559. {
  16560. name: "Normal",
  16561. height: math.unit(7, "feet"),
  16562. default: true
  16563. },
  16564. ]
  16565. ))
  16566. characterMakers.push(() => makeCharacter(
  16567. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  16568. {
  16569. front: {
  16570. height: math.unit(7, "feet"),
  16571. weight: math.unit(150, "lb"),
  16572. name: "Front",
  16573. image: {
  16574. source: "./media/characters/ian-corvid/front.svg",
  16575. extra: 150 / 142,
  16576. bottom: 0.02
  16577. }
  16578. },
  16579. back: {
  16580. height: math.unit(7, "feet"),
  16581. weight: math.unit(150, "lb"),
  16582. name: "Back",
  16583. image: {
  16584. source: "./media/characters/ian-corvid/back.svg",
  16585. extra: 150 / 143,
  16586. bottom: 0.01
  16587. }
  16588. },
  16589. stomping: {
  16590. height: math.unit(7, "feet"),
  16591. weight: math.unit(150, "lb"),
  16592. name: "Stomping",
  16593. image: {
  16594. source: "./media/characters/ian-corvid/stomping.svg",
  16595. extra: 76 / 72
  16596. }
  16597. },
  16598. sitting: {
  16599. height: math.unit(7 / 1.8, "feet"),
  16600. weight: math.unit(150, "lb"),
  16601. name: "Sitting",
  16602. image: {
  16603. source: "./media/characters/ian-corvid/sitting.svg",
  16604. extra: 1400 / 1269,
  16605. bottom: 0.15
  16606. }
  16607. },
  16608. },
  16609. [
  16610. {
  16611. name: "Tiny Microw",
  16612. height: math.unit(1, "inch")
  16613. },
  16614. {
  16615. name: "Microw",
  16616. height: math.unit(6, "inches")
  16617. },
  16618. {
  16619. name: "Crow",
  16620. height: math.unit(7 + 1 / 12, "feet"),
  16621. default: true
  16622. },
  16623. {
  16624. name: "Macrow",
  16625. height: math.unit(176, "feet")
  16626. },
  16627. ]
  16628. ))
  16629. characterMakers.push(() => makeCharacter(
  16630. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  16631. {
  16632. front: {
  16633. height: math.unit(5 + 7 / 12, "feet"),
  16634. weight: math.unit(147, "lb"),
  16635. name: "Front",
  16636. image: {
  16637. source: "./media/characters/natalie-kellon/front.svg",
  16638. extra: 1214 / 1141,
  16639. bottom: 0.02
  16640. }
  16641. },
  16642. },
  16643. [
  16644. {
  16645. name: "Micro",
  16646. height: math.unit(1 / 16, "inch")
  16647. },
  16648. {
  16649. name: "Tiny",
  16650. height: math.unit(4, "inches")
  16651. },
  16652. {
  16653. name: "Normal",
  16654. height: math.unit(5 + 7 / 12, "feet"),
  16655. default: true
  16656. },
  16657. {
  16658. name: "Amazon",
  16659. height: math.unit(12, "feet")
  16660. },
  16661. {
  16662. name: "Giantess",
  16663. height: math.unit(160, "meters")
  16664. },
  16665. {
  16666. name: "Titaness",
  16667. height: math.unit(800, "meters")
  16668. },
  16669. ]
  16670. ))
  16671. characterMakers.push(() => makeCharacter(
  16672. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  16673. {
  16674. front: {
  16675. height: math.unit(6, "feet"),
  16676. weight: math.unit(150, "lb"),
  16677. name: "Front",
  16678. image: {
  16679. source: "./media/characters/alluria/front.svg",
  16680. extra: 806 / 738,
  16681. bottom: 0.01
  16682. }
  16683. },
  16684. side: {
  16685. height: math.unit(6, "feet"),
  16686. weight: math.unit(150, "lb"),
  16687. name: "Side",
  16688. image: {
  16689. source: "./media/characters/alluria/side.svg",
  16690. extra: 800 / 750,
  16691. }
  16692. },
  16693. back: {
  16694. height: math.unit(6, "feet"),
  16695. weight: math.unit(150, "lb"),
  16696. name: "Back",
  16697. image: {
  16698. source: "./media/characters/alluria/back.svg",
  16699. extra: 806 / 738,
  16700. }
  16701. },
  16702. frontMaid: {
  16703. height: math.unit(6, "feet"),
  16704. weight: math.unit(150, "lb"),
  16705. name: "Front (Maid)",
  16706. image: {
  16707. source: "./media/characters/alluria/front-maid.svg",
  16708. extra: 806 / 738,
  16709. bottom: 0.01
  16710. }
  16711. },
  16712. sideMaid: {
  16713. height: math.unit(6, "feet"),
  16714. weight: math.unit(150, "lb"),
  16715. name: "Side (Maid)",
  16716. image: {
  16717. source: "./media/characters/alluria/side-maid.svg",
  16718. extra: 800 / 750,
  16719. bottom: 0.005
  16720. }
  16721. },
  16722. backMaid: {
  16723. height: math.unit(6, "feet"),
  16724. weight: math.unit(150, "lb"),
  16725. name: "Back (Maid)",
  16726. image: {
  16727. source: "./media/characters/alluria/back-maid.svg",
  16728. extra: 806 / 738,
  16729. }
  16730. },
  16731. },
  16732. [
  16733. {
  16734. name: "Micro",
  16735. height: math.unit(6, "inches"),
  16736. default: true
  16737. },
  16738. ]
  16739. ))
  16740. characterMakers.push(() => makeCharacter(
  16741. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  16742. {
  16743. front: {
  16744. height: math.unit(6, "feet"),
  16745. weight: math.unit(150, "lb"),
  16746. name: "Front",
  16747. image: {
  16748. source: "./media/characters/kyle/front.svg",
  16749. extra: 1069 / 962,
  16750. bottom: 77.228 / 1727.45
  16751. }
  16752. },
  16753. },
  16754. [
  16755. {
  16756. name: "Macro",
  16757. height: math.unit(150, "feet"),
  16758. default: true
  16759. },
  16760. ]
  16761. ))
  16762. characterMakers.push(() => makeCharacter(
  16763. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  16764. {
  16765. front: {
  16766. height: math.unit(6, "feet"),
  16767. weight: math.unit(300, "lb"),
  16768. name: "Front",
  16769. image: {
  16770. source: "./media/characters/duncan/front.svg",
  16771. extra: 1650 / 1482,
  16772. bottom: 0.05
  16773. }
  16774. },
  16775. },
  16776. [
  16777. {
  16778. name: "Macro",
  16779. height: math.unit(100, "feet"),
  16780. default: true
  16781. },
  16782. ]
  16783. ))
  16784. characterMakers.push(() => makeCharacter(
  16785. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  16786. {
  16787. front: {
  16788. height: math.unit(5 + 4 / 12, "feet"),
  16789. weight: math.unit(220, "lb"),
  16790. name: "Front",
  16791. image: {
  16792. source: "./media/characters/memory/front.svg",
  16793. extra: 3641 / 3545,
  16794. bottom: 0.03
  16795. }
  16796. },
  16797. back: {
  16798. height: math.unit(5 + 4 / 12, "feet"),
  16799. weight: math.unit(220, "lb"),
  16800. name: "Back",
  16801. image: {
  16802. source: "./media/characters/memory/back.svg",
  16803. extra: 3641 / 3545,
  16804. bottom: 0.025
  16805. }
  16806. },
  16807. frontSkirt: {
  16808. height: math.unit(5 + 4 / 12, "feet"),
  16809. weight: math.unit(220, "lb"),
  16810. name: "Front (Skirt)",
  16811. image: {
  16812. source: "./media/characters/memory/front-skirt.svg",
  16813. extra: 3641 / 3545,
  16814. bottom: 0.03
  16815. }
  16816. },
  16817. frontDress: {
  16818. height: math.unit(5 + 4 / 12, "feet"),
  16819. weight: math.unit(220, "lb"),
  16820. name: "Front (Dress)",
  16821. image: {
  16822. source: "./media/characters/memory/front-dress.svg",
  16823. extra: 3641 / 3545,
  16824. bottom: 0.03
  16825. }
  16826. },
  16827. },
  16828. [
  16829. {
  16830. name: "Micro",
  16831. height: math.unit(6, "inches"),
  16832. default: true
  16833. },
  16834. {
  16835. name: "Normal",
  16836. height: math.unit(5 + 4 / 12, "feet")
  16837. },
  16838. ]
  16839. ))
  16840. characterMakers.push(() => makeCharacter(
  16841. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  16842. {
  16843. front: {
  16844. height: math.unit(4 + 11 / 12, "feet"),
  16845. weight: math.unit(100, "lb"),
  16846. name: "Front",
  16847. image: {
  16848. source: "./media/characters/luno/front.svg",
  16849. extra: 1535 / 1487,
  16850. bottom: 0.03
  16851. }
  16852. },
  16853. },
  16854. [
  16855. {
  16856. name: "Micro",
  16857. height: math.unit(3, "inches")
  16858. },
  16859. {
  16860. name: "Normal",
  16861. height: math.unit(4 + 11 / 12, "feet"),
  16862. default: true
  16863. },
  16864. {
  16865. name: "Macro",
  16866. height: math.unit(300, "feet")
  16867. },
  16868. {
  16869. name: "Megamacro",
  16870. height: math.unit(700, "miles")
  16871. },
  16872. ]
  16873. ))
  16874. characterMakers.push(() => makeCharacter(
  16875. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  16876. {
  16877. front: {
  16878. height: math.unit(6 + 2 / 12, "feet"),
  16879. weight: math.unit(170, "lb"),
  16880. name: "Front",
  16881. image: {
  16882. source: "./media/characters/jamesy/front.svg",
  16883. extra: 440 / 382,
  16884. bottom: 0.005
  16885. }
  16886. },
  16887. },
  16888. [
  16889. {
  16890. name: "Micro",
  16891. height: math.unit(3, "inches")
  16892. },
  16893. {
  16894. name: "Normal",
  16895. height: math.unit(6 + 2 / 12, "feet"),
  16896. default: true
  16897. },
  16898. {
  16899. name: "Macro",
  16900. height: math.unit(300, "feet")
  16901. },
  16902. {
  16903. name: "Megamacro",
  16904. height: math.unit(700, "miles")
  16905. },
  16906. ]
  16907. ))
  16908. characterMakers.push(() => makeCharacter(
  16909. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  16910. {
  16911. front: {
  16912. height: math.unit(6, "feet"),
  16913. weight: math.unit(160, "lb"),
  16914. name: "Front",
  16915. image: {
  16916. source: "./media/characters/mark/front.svg",
  16917. extra: 3300 / 3100,
  16918. bottom: 136.42 / 3440.47
  16919. }
  16920. },
  16921. },
  16922. [
  16923. {
  16924. name: "Macro",
  16925. height: math.unit(120, "meters")
  16926. },
  16927. {
  16928. name: "Bigger Macro",
  16929. height: math.unit(350, "meters")
  16930. },
  16931. {
  16932. name: "Megamacro",
  16933. height: math.unit(8, "km"),
  16934. default: true
  16935. },
  16936. {
  16937. name: "Continental",
  16938. height: math.unit(4550, "km")
  16939. },
  16940. {
  16941. name: "Planetary",
  16942. height: math.unit(65000, "km")
  16943. },
  16944. ]
  16945. ))
  16946. characterMakers.push(() => makeCharacter(
  16947. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  16948. {
  16949. front: {
  16950. height: math.unit(6, "feet"),
  16951. weight: math.unit(400, "lb"),
  16952. name: "Front",
  16953. image: {
  16954. source: "./media/characters/mac/front.svg",
  16955. extra: 1048 / 987.7,
  16956. bottom: 60 / 1107.6,
  16957. }
  16958. },
  16959. },
  16960. [
  16961. {
  16962. name: "Macro",
  16963. height: math.unit(500, "feet"),
  16964. default: true
  16965. },
  16966. ]
  16967. ))
  16968. characterMakers.push(() => makeCharacter(
  16969. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  16970. {
  16971. front: {
  16972. height: math.unit(5 + 2 / 12, "feet"),
  16973. weight: math.unit(190, "lb"),
  16974. name: "Front",
  16975. image: {
  16976. source: "./media/characters/bari/front.svg",
  16977. extra: 3156 / 2880,
  16978. bottom: 0.03
  16979. }
  16980. },
  16981. back: {
  16982. height: math.unit(5 + 2 / 12, "feet"),
  16983. weight: math.unit(190, "lb"),
  16984. name: "Back",
  16985. image: {
  16986. source: "./media/characters/bari/back.svg",
  16987. extra: 3260 / 2834,
  16988. bottom: 0.025
  16989. }
  16990. },
  16991. frontPlush: {
  16992. height: math.unit(5 + 2 / 12, "feet"),
  16993. weight: math.unit(190, "lb"),
  16994. name: "Front (Plush)",
  16995. image: {
  16996. source: "./media/characters/bari/front-plush.svg",
  16997. extra: 1112 / 1061,
  16998. bottom: 0.002
  16999. }
  17000. },
  17001. },
  17002. [
  17003. {
  17004. name: "Micro",
  17005. height: math.unit(3, "inches")
  17006. },
  17007. {
  17008. name: "Normal",
  17009. height: math.unit(5 + 2 / 12, "feet"),
  17010. default: true
  17011. },
  17012. {
  17013. name: "Macro",
  17014. height: math.unit(20, "feet")
  17015. },
  17016. ]
  17017. ))
  17018. characterMakers.push(() => makeCharacter(
  17019. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  17020. {
  17021. front: {
  17022. height: math.unit(6 + 1 / 12, "feet"),
  17023. weight: math.unit(275, "lb"),
  17024. name: "Front",
  17025. image: {
  17026. source: "./media/characters/hunter-misha-raven/front.svg"
  17027. }
  17028. },
  17029. },
  17030. [
  17031. {
  17032. name: "Mortal",
  17033. height: math.unit(6 + 1 / 12, "feet")
  17034. },
  17035. {
  17036. name: "Divine",
  17037. height: math.unit(1.12134e34, "parsecs"),
  17038. default: true
  17039. },
  17040. ]
  17041. ))
  17042. characterMakers.push(() => makeCharacter(
  17043. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  17044. {
  17045. front: {
  17046. height: math.unit(6 + 3 / 12, "feet"),
  17047. weight: math.unit(220, "lb"),
  17048. name: "Front",
  17049. image: {
  17050. source: "./media/characters/max-calore/front.svg",
  17051. extra: 1700 / 1648,
  17052. bottom: 0.01
  17053. }
  17054. },
  17055. back: {
  17056. height: math.unit(6 + 3 / 12, "feet"),
  17057. weight: math.unit(220, "lb"),
  17058. name: "Back",
  17059. image: {
  17060. source: "./media/characters/max-calore/back.svg",
  17061. extra: 1700 / 1648,
  17062. bottom: 0.01
  17063. }
  17064. },
  17065. },
  17066. [
  17067. {
  17068. name: "Normal",
  17069. height: math.unit(6 + 3 / 12, "feet"),
  17070. default: true
  17071. },
  17072. ]
  17073. ))
  17074. characterMakers.push(() => makeCharacter(
  17075. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  17076. {
  17077. side: {
  17078. height: math.unit(2 + 8 / 12, "feet"),
  17079. weight: math.unit(99, "lb"),
  17080. name: "Side",
  17081. image: {
  17082. source: "./media/characters/aspen/side.svg",
  17083. extra: 152 / 138,
  17084. bottom: 0.032
  17085. }
  17086. },
  17087. },
  17088. [
  17089. {
  17090. name: "Normal",
  17091. height: math.unit(2 + 8 / 12, "feet"),
  17092. default: true
  17093. },
  17094. ]
  17095. ))
  17096. characterMakers.push(() => makeCharacter(
  17097. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  17098. {
  17099. side: {
  17100. height: math.unit(3 + 2 / 12, "feet"),
  17101. weight: math.unit(224, "lb"),
  17102. name: "Side",
  17103. image: {
  17104. source: "./media/characters/sheila-feral-wolf/side.svg",
  17105. extra: 179 / 166,
  17106. bottom: 0.03
  17107. }
  17108. },
  17109. },
  17110. [
  17111. {
  17112. name: "Normal",
  17113. height: math.unit(3 + 2 / 12, "feet"),
  17114. default: true
  17115. },
  17116. ]
  17117. ))
  17118. characterMakers.push(() => makeCharacter(
  17119. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  17120. {
  17121. side: {
  17122. height: math.unit(1 + 9 / 12, "feet"),
  17123. weight: math.unit(38, "lb"),
  17124. name: "Side",
  17125. image: {
  17126. source: "./media/characters/michelle/side.svg",
  17127. extra: 147 / 136.7,
  17128. bottom: 0.03
  17129. }
  17130. },
  17131. },
  17132. [
  17133. {
  17134. name: "Normal",
  17135. height: math.unit(1 + 9 / 12, "feet"),
  17136. default: true
  17137. },
  17138. ]
  17139. ))
  17140. characterMakers.push(() => makeCharacter(
  17141. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  17142. {
  17143. front: {
  17144. height: math.unit(1 + 1 / 12, "feet"),
  17145. weight: math.unit(18, "lb"),
  17146. name: "Front",
  17147. image: {
  17148. source: "./media/characters/nino/front.svg"
  17149. }
  17150. },
  17151. },
  17152. [
  17153. {
  17154. name: "Normal",
  17155. height: math.unit(1 + 1 / 12, "feet"),
  17156. default: true
  17157. },
  17158. ]
  17159. ))
  17160. characterMakers.push(() => makeCharacter(
  17161. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  17162. {
  17163. front: {
  17164. height: math.unit(1, "feet"),
  17165. weight: math.unit(16, "lb"),
  17166. name: "Front",
  17167. image: {
  17168. source: "./media/characters/viola/front.svg"
  17169. }
  17170. },
  17171. },
  17172. [
  17173. {
  17174. name: "Normal",
  17175. height: math.unit(1, "feet"),
  17176. default: true
  17177. },
  17178. ]
  17179. ))
  17180. characterMakers.push(() => makeCharacter(
  17181. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  17182. {
  17183. front: {
  17184. height: math.unit(6 + 5 / 12, "feet"),
  17185. weight: math.unit(580, "lb"),
  17186. name: "Front",
  17187. image: {
  17188. source: "./media/characters/atlas/front.svg",
  17189. extra: 298.5 / 290,
  17190. bottom: 0.015
  17191. }
  17192. },
  17193. },
  17194. [
  17195. {
  17196. name: "Normal",
  17197. height: math.unit(6 + 5 / 12, "feet"),
  17198. default: true
  17199. },
  17200. ]
  17201. ))
  17202. characterMakers.push(() => makeCharacter(
  17203. { name: "Davy", species: ["cat"], tags: ["feral"] },
  17204. {
  17205. side: {
  17206. height: math.unit(1 + 10 / 12, "feet"),
  17207. weight: math.unit(25, "lb"),
  17208. name: "Side",
  17209. image: {
  17210. source: "./media/characters/davy/side.svg",
  17211. extra: 200 / 170,
  17212. bottom: 0.01
  17213. }
  17214. },
  17215. },
  17216. [
  17217. {
  17218. name: "Normal",
  17219. height: math.unit(1 + 10 / 12, "feet"),
  17220. default: true
  17221. },
  17222. ]
  17223. ))
  17224. characterMakers.push(() => makeCharacter(
  17225. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  17226. {
  17227. side: {
  17228. height: math.unit(4 + 8 / 12, "feet"),
  17229. weight: math.unit(166, "lb"),
  17230. name: "Side",
  17231. image: {
  17232. source: "./media/characters/fiona/side.svg",
  17233. extra: 232 / 220,
  17234. bottom: 0.03
  17235. }
  17236. },
  17237. },
  17238. [
  17239. {
  17240. name: "Normal",
  17241. height: math.unit(4 + 8 / 12, "feet"),
  17242. default: true
  17243. },
  17244. ]
  17245. ))
  17246. characterMakers.push(() => makeCharacter(
  17247. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  17248. {
  17249. front: {
  17250. height: math.unit(3, "feet"),
  17251. weight: math.unit(100, "lb"),
  17252. name: "Front",
  17253. image: {
  17254. source: "./media/characters/lyla/front.svg",
  17255. bottom: 0.1
  17256. }
  17257. },
  17258. },
  17259. [
  17260. {
  17261. name: "Normal",
  17262. height: math.unit(3, "feet"),
  17263. default: true
  17264. },
  17265. ]
  17266. ))
  17267. characterMakers.push(() => makeCharacter(
  17268. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  17269. {
  17270. side: {
  17271. height: math.unit(1.8, "feet"),
  17272. weight: math.unit(44, "lb"),
  17273. name: "Side",
  17274. image: {
  17275. source: "./media/characters/perseus/side.svg",
  17276. bottom: 0.21
  17277. }
  17278. },
  17279. },
  17280. [
  17281. {
  17282. name: "Normal",
  17283. height: math.unit(1.8, "feet"),
  17284. default: true
  17285. },
  17286. ]
  17287. ))
  17288. characterMakers.push(() => makeCharacter(
  17289. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  17290. {
  17291. side: {
  17292. height: math.unit(4 + 2 / 12, "feet"),
  17293. weight: math.unit(20, "lb"),
  17294. name: "Side",
  17295. image: {
  17296. source: "./media/characters/remus/side.svg"
  17297. }
  17298. },
  17299. },
  17300. [
  17301. {
  17302. name: "Normal",
  17303. height: math.unit(4 + 2 / 12, "feet"),
  17304. default: true
  17305. },
  17306. ]
  17307. ))
  17308. characterMakers.push(() => makeCharacter(
  17309. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  17310. {
  17311. front: {
  17312. height: math.unit(4 + 11 / 12, "feet"),
  17313. weight: math.unit(114, "lb"),
  17314. name: "Front",
  17315. image: {
  17316. source: "./media/characters/raf/front.svg",
  17317. extra: 1504/1339,
  17318. bottom: 26/1530
  17319. }
  17320. },
  17321. side: {
  17322. height: math.unit(4 + 11 / 12, "feet"),
  17323. weight: math.unit(114, "lb"),
  17324. name: "Side",
  17325. image: {
  17326. source: "./media/characters/raf/side.svg",
  17327. extra: 1466/1316,
  17328. bottom: 29/1495
  17329. }
  17330. },
  17331. },
  17332. [
  17333. {
  17334. name: "Micro",
  17335. height: math.unit(2, "inches")
  17336. },
  17337. {
  17338. name: "Normal",
  17339. height: math.unit(4 + 11 / 12, "feet"),
  17340. default: true
  17341. },
  17342. {
  17343. name: "Macro",
  17344. height: math.unit(70, "feet")
  17345. },
  17346. ]
  17347. ))
  17348. characterMakers.push(() => makeCharacter(
  17349. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  17350. {
  17351. front: {
  17352. height: math.unit(1.5, "meters"),
  17353. weight: math.unit(68, "kg"),
  17354. name: "Front",
  17355. image: {
  17356. source: "./media/characters/liam-einarr/front.svg",
  17357. extra: 2822 / 2666
  17358. }
  17359. },
  17360. back: {
  17361. height: math.unit(1.5, "meters"),
  17362. weight: math.unit(68, "kg"),
  17363. name: "Back",
  17364. image: {
  17365. source: "./media/characters/liam-einarr/back.svg",
  17366. extra: 2822 / 2666,
  17367. bottom: 0.015
  17368. }
  17369. },
  17370. },
  17371. [
  17372. {
  17373. name: "Normal",
  17374. height: math.unit(1.5, "meters"),
  17375. default: true
  17376. },
  17377. {
  17378. name: "Macro",
  17379. height: math.unit(150, "meters")
  17380. },
  17381. {
  17382. name: "Megamacro",
  17383. height: math.unit(35, "km")
  17384. },
  17385. ]
  17386. ))
  17387. characterMakers.push(() => makeCharacter(
  17388. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  17389. {
  17390. front: {
  17391. height: math.unit(6, "feet"),
  17392. weight: math.unit(75, "kg"),
  17393. name: "Front",
  17394. image: {
  17395. source: "./media/characters/linda/front.svg",
  17396. extra: 930 / 874,
  17397. bottom: 0.004
  17398. }
  17399. },
  17400. },
  17401. [
  17402. {
  17403. name: "Normal",
  17404. height: math.unit(6, "feet"),
  17405. default: true
  17406. },
  17407. ]
  17408. ))
  17409. characterMakers.push(() => makeCharacter(
  17410. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  17411. {
  17412. front: {
  17413. height: math.unit(6 + 8 / 12, "feet"),
  17414. weight: math.unit(220, "lb"),
  17415. name: "Front",
  17416. image: {
  17417. source: "./media/characters/caylex/front.svg",
  17418. extra: 821 / 772,
  17419. bottom: 0.07
  17420. }
  17421. },
  17422. back: {
  17423. height: math.unit(6 + 8 / 12, "feet"),
  17424. weight: math.unit(220, "lb"),
  17425. name: "Back",
  17426. image: {
  17427. source: "./media/characters/caylex/back.svg",
  17428. extra: 821 / 772,
  17429. bottom: 0.022
  17430. }
  17431. },
  17432. hand: {
  17433. height: math.unit(1.25, "feet"),
  17434. name: "Hand",
  17435. image: {
  17436. source: "./media/characters/caylex/hand.svg"
  17437. }
  17438. },
  17439. foot: {
  17440. height: math.unit(1.6, "feet"),
  17441. name: "Foot",
  17442. image: {
  17443. source: "./media/characters/caylex/foot.svg"
  17444. }
  17445. },
  17446. armored: {
  17447. height: math.unit(6 + 8 / 12, "feet"),
  17448. weight: math.unit(250, "lb"),
  17449. name: "Armored",
  17450. image: {
  17451. source: "./media/characters/caylex/armored.svg",
  17452. extra: 1420 / 1310,
  17453. bottom: 0.045
  17454. }
  17455. },
  17456. },
  17457. [
  17458. {
  17459. name: "Normal",
  17460. height: math.unit(6 + 8 / 12, "feet"),
  17461. default: true
  17462. },
  17463. {
  17464. name: "Normal+",
  17465. height: math.unit(12, "feet")
  17466. },
  17467. ]
  17468. ))
  17469. characterMakers.push(() => makeCharacter(
  17470. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  17471. {
  17472. front: {
  17473. height: math.unit(7 + 6 / 12, "feet"),
  17474. weight: math.unit(288, "lb"),
  17475. name: "Front",
  17476. image: {
  17477. source: "./media/characters/alana/front.svg",
  17478. extra: 679 / 653,
  17479. bottom: 22.5 / 701
  17480. }
  17481. },
  17482. },
  17483. [
  17484. {
  17485. name: "Normal",
  17486. height: math.unit(7 + 6 / 12, "feet")
  17487. },
  17488. {
  17489. name: "Large",
  17490. height: math.unit(50, "feet")
  17491. },
  17492. {
  17493. name: "Macro",
  17494. height: math.unit(100, "feet"),
  17495. default: true
  17496. },
  17497. {
  17498. name: "Macro+",
  17499. height: math.unit(200, "feet")
  17500. },
  17501. ]
  17502. ))
  17503. characterMakers.push(() => makeCharacter(
  17504. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  17505. {
  17506. front: {
  17507. height: math.unit(6 + 1 / 12, "feet"),
  17508. weight: math.unit(210, "lb"),
  17509. name: "Front",
  17510. image: {
  17511. source: "./media/characters/hasani/front.svg",
  17512. extra: 244 / 232,
  17513. bottom: 0.01
  17514. }
  17515. },
  17516. back: {
  17517. height: math.unit(6 + 1 / 12, "feet"),
  17518. weight: math.unit(210, "lb"),
  17519. name: "Back",
  17520. image: {
  17521. source: "./media/characters/hasani/back.svg",
  17522. extra: 244 / 232,
  17523. bottom: 0.01
  17524. }
  17525. },
  17526. },
  17527. [
  17528. {
  17529. name: "Normal",
  17530. height: math.unit(6 + 1 / 12, "feet")
  17531. },
  17532. {
  17533. name: "Macro",
  17534. height: math.unit(175, "feet"),
  17535. default: true
  17536. },
  17537. ]
  17538. ))
  17539. characterMakers.push(() => makeCharacter(
  17540. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  17541. {
  17542. front: {
  17543. height: math.unit(1.82, "meters"),
  17544. weight: math.unit(140, "lb"),
  17545. name: "Front",
  17546. image: {
  17547. source: "./media/characters/nita/front.svg",
  17548. extra: 2473 / 2363,
  17549. bottom: 0.01
  17550. }
  17551. },
  17552. },
  17553. [
  17554. {
  17555. name: "Normal",
  17556. height: math.unit(1.82, "m")
  17557. },
  17558. {
  17559. name: "Macro",
  17560. height: math.unit(300, "m")
  17561. },
  17562. {
  17563. name: "Mistake Canon",
  17564. height: math.unit(0.5, "miles"),
  17565. default: true
  17566. },
  17567. {
  17568. name: "Big Mistake",
  17569. height: math.unit(13, "miles")
  17570. },
  17571. {
  17572. name: "Playing God",
  17573. height: math.unit(2450, "miles")
  17574. },
  17575. ]
  17576. ))
  17577. characterMakers.push(() => makeCharacter(
  17578. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  17579. {
  17580. front: {
  17581. height: math.unit(4, "feet"),
  17582. weight: math.unit(120, "lb"),
  17583. name: "Front",
  17584. image: {
  17585. source: "./media/characters/shiriko/front.svg",
  17586. extra: 970/934,
  17587. bottom: 5/975
  17588. }
  17589. },
  17590. },
  17591. [
  17592. {
  17593. name: "Normal",
  17594. height: math.unit(4, "feet"),
  17595. default: true
  17596. },
  17597. ]
  17598. ))
  17599. characterMakers.push(() => makeCharacter(
  17600. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  17601. {
  17602. front: {
  17603. height: math.unit(6, "feet"),
  17604. name: "front",
  17605. image: {
  17606. source: "./media/characters/deja/front.svg",
  17607. extra: 926 / 840,
  17608. bottom: 0.07
  17609. }
  17610. },
  17611. },
  17612. [
  17613. {
  17614. name: "Planck Length",
  17615. height: math.unit(1.6e-35, "meters")
  17616. },
  17617. {
  17618. name: "Normal",
  17619. height: math.unit(30.48, "meters"),
  17620. default: true
  17621. },
  17622. {
  17623. name: "Universal",
  17624. height: math.unit(8.8e26, "meters")
  17625. },
  17626. ]
  17627. ))
  17628. characterMakers.push(() => makeCharacter(
  17629. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  17630. {
  17631. side: {
  17632. height: math.unit(8, "feet"),
  17633. weight: math.unit(6300, "lb"),
  17634. name: "Side",
  17635. image: {
  17636. source: "./media/characters/anima/side.svg",
  17637. bottom: 0.035
  17638. }
  17639. },
  17640. },
  17641. [
  17642. {
  17643. name: "Normal",
  17644. height: math.unit(8, "feet"),
  17645. default: true
  17646. },
  17647. ]
  17648. ))
  17649. characterMakers.push(() => makeCharacter(
  17650. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  17651. {
  17652. front: {
  17653. height: math.unit(8, "feet"),
  17654. weight: math.unit(350, "lb"),
  17655. name: "Front",
  17656. image: {
  17657. source: "./media/characters/bianca/front.svg",
  17658. extra: 234 / 225,
  17659. bottom: 0.03
  17660. }
  17661. },
  17662. },
  17663. [
  17664. {
  17665. name: "Normal",
  17666. height: math.unit(8, "feet"),
  17667. default: true
  17668. },
  17669. ]
  17670. ))
  17671. characterMakers.push(() => makeCharacter(
  17672. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  17673. {
  17674. front: {
  17675. height: math.unit(6, "feet"),
  17676. weight: math.unit(150, "lb"),
  17677. name: "Front",
  17678. image: {
  17679. source: "./media/characters/adinia/front.svg",
  17680. extra: 1845 / 1672,
  17681. bottom: 0.02
  17682. }
  17683. },
  17684. back: {
  17685. height: math.unit(6, "feet"),
  17686. weight: math.unit(150, "lb"),
  17687. name: "Back",
  17688. image: {
  17689. source: "./media/characters/adinia/back.svg",
  17690. extra: 1845 / 1672,
  17691. bottom: 0.002
  17692. }
  17693. },
  17694. },
  17695. [
  17696. {
  17697. name: "Normal",
  17698. height: math.unit(11 + 5 / 12, "feet"),
  17699. default: true
  17700. },
  17701. ]
  17702. ))
  17703. characterMakers.push(() => makeCharacter(
  17704. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  17705. {
  17706. front: {
  17707. height: math.unit(3, "meters"),
  17708. weight: math.unit(200, "kg"),
  17709. name: "Front",
  17710. image: {
  17711. source: "./media/characters/lykasa/front.svg",
  17712. extra: 1076 / 976,
  17713. bottom: 0.06
  17714. }
  17715. },
  17716. },
  17717. [
  17718. {
  17719. name: "Normal",
  17720. height: math.unit(3, "meters")
  17721. },
  17722. {
  17723. name: "Kaiju",
  17724. height: math.unit(120, "meters"),
  17725. default: true
  17726. },
  17727. {
  17728. name: "Mega Kaiju",
  17729. height: math.unit(240, "km")
  17730. },
  17731. {
  17732. name: "Giga Kaiju",
  17733. height: math.unit(400, "megameters")
  17734. },
  17735. {
  17736. name: "Tera Kaiju",
  17737. height: math.unit(800, "gigameters")
  17738. },
  17739. {
  17740. name: "Kaiju Dragon Goddess",
  17741. height: math.unit(26, "zettaparsecs")
  17742. },
  17743. ]
  17744. ))
  17745. characterMakers.push(() => makeCharacter(
  17746. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  17747. {
  17748. side: {
  17749. height: math.unit(283 / 124 * 6, "feet"),
  17750. weight: math.unit(35000, "lb"),
  17751. name: "Side",
  17752. image: {
  17753. source: "./media/characters/malfaren/side.svg",
  17754. extra: 2500 / 1010,
  17755. bottom: 0.01
  17756. }
  17757. },
  17758. front: {
  17759. height: math.unit(22.36, "feet"),
  17760. weight: math.unit(35000, "lb"),
  17761. name: "Front",
  17762. image: {
  17763. source: "./media/characters/malfaren/front.svg",
  17764. extra: 1631 / 1476,
  17765. bottom: 0.01
  17766. }
  17767. },
  17768. maw: {
  17769. height: math.unit(6.9, "feet"),
  17770. name: "Maw",
  17771. image: {
  17772. source: "./media/characters/malfaren/maw.svg"
  17773. }
  17774. },
  17775. },
  17776. [
  17777. {
  17778. name: "Big",
  17779. height: math.unit(283 / 162 * 6, "feet"),
  17780. },
  17781. {
  17782. name: "Bigger",
  17783. height: math.unit(283 / 124 * 6, "feet")
  17784. },
  17785. {
  17786. name: "Massive",
  17787. height: math.unit(283 / 92 * 6, "feet"),
  17788. default: true
  17789. },
  17790. {
  17791. name: "👀💦",
  17792. height: math.unit(283 / 73 * 6, "feet"),
  17793. },
  17794. ]
  17795. ))
  17796. characterMakers.push(() => makeCharacter(
  17797. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  17798. {
  17799. front: {
  17800. height: math.unit(1.7, "m"),
  17801. weight: math.unit(70, "kg"),
  17802. name: "Front",
  17803. image: {
  17804. source: "./media/characters/kernel/front.svg",
  17805. extra: 222 / 210,
  17806. bottom: 0.007
  17807. }
  17808. },
  17809. },
  17810. [
  17811. {
  17812. name: "Nano",
  17813. height: math.unit(17, "micrometers")
  17814. },
  17815. {
  17816. name: "Micro",
  17817. height: math.unit(1.7, "mm")
  17818. },
  17819. {
  17820. name: "Small",
  17821. height: math.unit(1.7, "cm")
  17822. },
  17823. {
  17824. name: "Normal",
  17825. height: math.unit(1.7, "m"),
  17826. default: true
  17827. },
  17828. ]
  17829. ))
  17830. characterMakers.push(() => makeCharacter(
  17831. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  17832. {
  17833. front: {
  17834. height: math.unit(1.75, "meters"),
  17835. weight: math.unit(65, "kg"),
  17836. name: "Front",
  17837. image: {
  17838. source: "./media/characters/jayne-folest/front.svg",
  17839. extra: 2115 / 2007,
  17840. bottom: 0.02
  17841. }
  17842. },
  17843. back: {
  17844. height: math.unit(1.75, "meters"),
  17845. weight: math.unit(65, "kg"),
  17846. name: "Back",
  17847. image: {
  17848. source: "./media/characters/jayne-folest/back.svg",
  17849. extra: 2115 / 2007,
  17850. bottom: 0.005
  17851. }
  17852. },
  17853. frontClothed: {
  17854. height: math.unit(1.75, "meters"),
  17855. weight: math.unit(65, "kg"),
  17856. name: "Front (Clothed)",
  17857. image: {
  17858. source: "./media/characters/jayne-folest/front-clothed.svg",
  17859. extra: 2115 / 2007,
  17860. bottom: 0.035
  17861. }
  17862. },
  17863. hand: {
  17864. height: math.unit(1 / 1.260, "feet"),
  17865. name: "Hand",
  17866. image: {
  17867. source: "./media/characters/jayne-folest/hand.svg"
  17868. }
  17869. },
  17870. foot: {
  17871. height: math.unit(1 / 0.918, "feet"),
  17872. name: "Foot",
  17873. image: {
  17874. source: "./media/characters/jayne-folest/foot.svg"
  17875. }
  17876. },
  17877. },
  17878. [
  17879. {
  17880. name: "Micro",
  17881. height: math.unit(4, "cm")
  17882. },
  17883. {
  17884. name: "Normal",
  17885. height: math.unit(1.75, "meters")
  17886. },
  17887. {
  17888. name: "Macro",
  17889. height: math.unit(47.5, "meters"),
  17890. default: true
  17891. },
  17892. ]
  17893. ))
  17894. characterMakers.push(() => makeCharacter(
  17895. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  17896. {
  17897. front: {
  17898. height: math.unit(180, "cm"),
  17899. weight: math.unit(70, "kg"),
  17900. name: "Front",
  17901. image: {
  17902. source: "./media/characters/algier/front.svg",
  17903. extra: 596 / 572,
  17904. bottom: 0.04
  17905. }
  17906. },
  17907. back: {
  17908. height: math.unit(180, "cm"),
  17909. weight: math.unit(70, "kg"),
  17910. name: "Back",
  17911. image: {
  17912. source: "./media/characters/algier/back.svg",
  17913. extra: 596 / 572,
  17914. bottom: 0.025
  17915. }
  17916. },
  17917. frontdressed: {
  17918. height: math.unit(180, "cm"),
  17919. weight: math.unit(150, "kg"),
  17920. name: "Front-dressed",
  17921. image: {
  17922. source: "./media/characters/algier/front-dressed.svg",
  17923. extra: 596 / 572,
  17924. bottom: 0.038
  17925. }
  17926. },
  17927. },
  17928. [
  17929. {
  17930. name: "Micro",
  17931. height: math.unit(5, "cm")
  17932. },
  17933. {
  17934. name: "Normal",
  17935. height: math.unit(180, "cm"),
  17936. default: true
  17937. },
  17938. {
  17939. name: "Macro",
  17940. height: math.unit(64, "m")
  17941. },
  17942. ]
  17943. ))
  17944. characterMakers.push(() => makeCharacter(
  17945. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  17946. {
  17947. upright: {
  17948. height: math.unit(7, "feet"),
  17949. weight: math.unit(300, "lb"),
  17950. name: "Upright",
  17951. image: {
  17952. source: "./media/characters/pretzel/upright.svg",
  17953. extra: 534 / 522,
  17954. bottom: 0.065
  17955. }
  17956. },
  17957. sprawling: {
  17958. height: math.unit(3.75, "feet"),
  17959. weight: math.unit(300, "lb"),
  17960. name: "Sprawling",
  17961. image: {
  17962. source: "./media/characters/pretzel/sprawling.svg",
  17963. extra: 314 / 281,
  17964. bottom: 0.1
  17965. }
  17966. },
  17967. tongue: {
  17968. height: math.unit(2, "feet"),
  17969. name: "Tongue",
  17970. image: {
  17971. source: "./media/characters/pretzel/tongue.svg"
  17972. }
  17973. },
  17974. },
  17975. [
  17976. {
  17977. name: "Normal",
  17978. height: math.unit(7, "feet"),
  17979. default: true
  17980. },
  17981. {
  17982. name: "Oversized",
  17983. height: math.unit(15, "feet")
  17984. },
  17985. {
  17986. name: "Huge",
  17987. height: math.unit(30, "feet")
  17988. },
  17989. {
  17990. name: "Macro",
  17991. height: math.unit(250, "feet")
  17992. },
  17993. ]
  17994. ))
  17995. characterMakers.push(() => makeCharacter(
  17996. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  17997. {
  17998. sideFront: {
  17999. height: math.unit(5 + 2 / 12, "feet"),
  18000. weight: math.unit(120, "lb"),
  18001. name: "Front Side",
  18002. image: {
  18003. source: "./media/characters/roxi/side-front.svg",
  18004. extra: 2924 / 2717,
  18005. bottom: 0.08
  18006. }
  18007. },
  18008. sideBack: {
  18009. height: math.unit(5 + 2 / 12, "feet"),
  18010. weight: math.unit(120, "lb"),
  18011. name: "Back Side",
  18012. image: {
  18013. source: "./media/characters/roxi/side-back.svg",
  18014. extra: 2904 / 2693,
  18015. bottom: 0.06
  18016. }
  18017. },
  18018. front: {
  18019. height: math.unit(5 + 2 / 12, "feet"),
  18020. weight: math.unit(120, "lb"),
  18021. name: "Front",
  18022. image: {
  18023. source: "./media/characters/roxi/front.svg",
  18024. extra: 2028 / 1907,
  18025. bottom: 0.01
  18026. }
  18027. },
  18028. frontAlt: {
  18029. height: math.unit(5 + 2 / 12, "feet"),
  18030. weight: math.unit(120, "lb"),
  18031. name: "Front (Alt)",
  18032. image: {
  18033. source: "./media/characters/roxi/front-alt.svg",
  18034. extra: 1828 / 1798,
  18035. bottom: 0.01
  18036. }
  18037. },
  18038. sitting: {
  18039. height: math.unit(2.8, "feet"),
  18040. weight: math.unit(120, "lb"),
  18041. name: "Sitting",
  18042. image: {
  18043. source: "./media/characters/roxi/sitting.svg",
  18044. extra: 2660 / 2462,
  18045. bottom: 0.1
  18046. }
  18047. },
  18048. },
  18049. [
  18050. {
  18051. name: "Normal",
  18052. height: math.unit(5 + 2 / 12, "feet"),
  18053. default: true
  18054. },
  18055. ]
  18056. ))
  18057. characterMakers.push(() => makeCharacter(
  18058. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  18059. {
  18060. side: {
  18061. height: math.unit(55, "feet"),
  18062. weight: math.unit(153, "tons"),
  18063. name: "Side",
  18064. image: {
  18065. source: "./media/characters/shadow/side.svg",
  18066. extra: 701 / 628,
  18067. bottom: 0.02
  18068. }
  18069. },
  18070. flying: {
  18071. height: math.unit(145, "feet"),
  18072. weight: math.unit(153, "tons"),
  18073. name: "Flying",
  18074. image: {
  18075. source: "./media/characters/shadow/flying.svg"
  18076. }
  18077. },
  18078. },
  18079. [
  18080. {
  18081. name: "Normal",
  18082. height: math.unit(55, "feet"),
  18083. default: true
  18084. },
  18085. ]
  18086. ))
  18087. characterMakers.push(() => makeCharacter(
  18088. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  18089. {
  18090. front: {
  18091. height: math.unit(6, "feet"),
  18092. weight: math.unit(200, "lb"),
  18093. name: "Front",
  18094. image: {
  18095. source: "./media/characters/marcie/front.svg",
  18096. extra: 960 / 876,
  18097. bottom: 58 / 1017.87
  18098. }
  18099. },
  18100. },
  18101. [
  18102. {
  18103. name: "Macro",
  18104. height: math.unit(1, "mile"),
  18105. default: true
  18106. },
  18107. ]
  18108. ))
  18109. characterMakers.push(() => makeCharacter(
  18110. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  18111. {
  18112. front: {
  18113. height: math.unit(7, "feet"),
  18114. weight: math.unit(200, "lb"),
  18115. name: "Front",
  18116. image: {
  18117. source: "./media/characters/kachina/front.svg",
  18118. extra: 1290.68 / 1119,
  18119. bottom: 36.5 / 1327.18
  18120. }
  18121. },
  18122. },
  18123. [
  18124. {
  18125. name: "Normal",
  18126. height: math.unit(7, "feet"),
  18127. default: true
  18128. },
  18129. ]
  18130. ))
  18131. characterMakers.push(() => makeCharacter(
  18132. { name: "Kash", species: ["canine"], tags: ["feral"] },
  18133. {
  18134. looking: {
  18135. height: math.unit(2, "meters"),
  18136. weight: math.unit(300, "kg"),
  18137. name: "Looking",
  18138. image: {
  18139. source: "./media/characters/kash/looking.svg",
  18140. extra: 474 / 344,
  18141. bottom: 0.03
  18142. }
  18143. },
  18144. side: {
  18145. height: math.unit(2, "meters"),
  18146. weight: math.unit(300, "kg"),
  18147. name: "Side",
  18148. image: {
  18149. source: "./media/characters/kash/side.svg",
  18150. extra: 302 / 251,
  18151. bottom: 0.03
  18152. }
  18153. },
  18154. front: {
  18155. height: math.unit(2, "meters"),
  18156. weight: math.unit(300, "kg"),
  18157. name: "Front",
  18158. image: {
  18159. source: "./media/characters/kash/front.svg",
  18160. extra: 495 / 360,
  18161. bottom: 0.015
  18162. }
  18163. },
  18164. },
  18165. [
  18166. {
  18167. name: "Normal",
  18168. height: math.unit(2, "meters"),
  18169. default: true
  18170. },
  18171. {
  18172. name: "Big",
  18173. height: math.unit(3, "meters")
  18174. },
  18175. {
  18176. name: "Large",
  18177. height: math.unit(5, "meters")
  18178. },
  18179. ]
  18180. ))
  18181. characterMakers.push(() => makeCharacter(
  18182. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  18183. {
  18184. feeding: {
  18185. height: math.unit(6.7, "feet"),
  18186. weight: math.unit(350, "lb"),
  18187. name: "Feeding",
  18188. image: {
  18189. source: "./media/characters/lalim/feeding.svg",
  18190. }
  18191. },
  18192. },
  18193. [
  18194. {
  18195. name: "Normal",
  18196. height: math.unit(6.7, "feet"),
  18197. default: true
  18198. },
  18199. ]
  18200. ))
  18201. characterMakers.push(() => makeCharacter(
  18202. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  18203. {
  18204. front: {
  18205. height: math.unit(9.5, "feet"),
  18206. weight: math.unit(600, "lb"),
  18207. name: "Front",
  18208. image: {
  18209. source: "./media/characters/de'vout/front.svg",
  18210. extra: 1443 / 1328,
  18211. bottom: 0.025
  18212. }
  18213. },
  18214. back: {
  18215. height: math.unit(9.5, "feet"),
  18216. weight: math.unit(600, "lb"),
  18217. name: "Back",
  18218. image: {
  18219. source: "./media/characters/de'vout/back.svg",
  18220. extra: 1443 / 1328
  18221. }
  18222. },
  18223. frontDressed: {
  18224. height: math.unit(9.5, "feet"),
  18225. weight: math.unit(600, "lb"),
  18226. name: "Front (Dressed",
  18227. image: {
  18228. source: "./media/characters/de'vout/front-dressed.svg",
  18229. extra: 1443 / 1328,
  18230. bottom: 0.025
  18231. }
  18232. },
  18233. backDressed: {
  18234. height: math.unit(9.5, "feet"),
  18235. weight: math.unit(600, "lb"),
  18236. name: "Back (Dressed",
  18237. image: {
  18238. source: "./media/characters/de'vout/back-dressed.svg",
  18239. extra: 1443 / 1328
  18240. }
  18241. },
  18242. },
  18243. [
  18244. {
  18245. name: "Normal",
  18246. height: math.unit(9.5, "feet"),
  18247. default: true
  18248. },
  18249. ]
  18250. ))
  18251. characterMakers.push(() => makeCharacter(
  18252. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  18253. {
  18254. front: {
  18255. height: math.unit(8, "feet"),
  18256. weight: math.unit(225, "lb"),
  18257. name: "Front",
  18258. image: {
  18259. source: "./media/characters/talana/front.svg",
  18260. extra: 1410 / 1300,
  18261. bottom: 0.015
  18262. }
  18263. },
  18264. frontDressed: {
  18265. height: math.unit(8, "feet"),
  18266. weight: math.unit(225, "lb"),
  18267. name: "Front (Dressed",
  18268. image: {
  18269. source: "./media/characters/talana/front-dressed.svg",
  18270. extra: 1410 / 1300,
  18271. bottom: 0.015
  18272. }
  18273. },
  18274. },
  18275. [
  18276. {
  18277. name: "Normal",
  18278. height: math.unit(8, "feet"),
  18279. default: true
  18280. },
  18281. ]
  18282. ))
  18283. characterMakers.push(() => makeCharacter(
  18284. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  18285. {
  18286. side: {
  18287. height: math.unit(7.2, "feet"),
  18288. weight: math.unit(150, "lb"),
  18289. name: "Side",
  18290. image: {
  18291. source: "./media/characters/xeauvok/side.svg",
  18292. extra: 1975 / 1523,
  18293. bottom: 0.07
  18294. }
  18295. },
  18296. },
  18297. [
  18298. {
  18299. name: "Normal",
  18300. height: math.unit(7.2, "feet"),
  18301. default: true
  18302. },
  18303. ]
  18304. ))
  18305. characterMakers.push(() => makeCharacter(
  18306. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  18307. {
  18308. side: {
  18309. height: math.unit(10, "feet"),
  18310. weight: math.unit(900, "kg"),
  18311. name: "Side",
  18312. image: {
  18313. source: "./media/characters/zara/side.svg",
  18314. extra: 504 / 498
  18315. }
  18316. },
  18317. },
  18318. [
  18319. {
  18320. name: "Normal",
  18321. height: math.unit(10, "feet"),
  18322. default: true
  18323. },
  18324. ]
  18325. ))
  18326. characterMakers.push(() => makeCharacter(
  18327. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  18328. {
  18329. side: {
  18330. height: math.unit(6, "feet"),
  18331. weight: math.unit(150, "lb"),
  18332. name: "Side",
  18333. image: {
  18334. source: "./media/characters/richard-dragon/side.svg",
  18335. extra: 845 / 340,
  18336. bottom: 0.017
  18337. }
  18338. },
  18339. maw: {
  18340. height: math.unit(2.97, "feet"),
  18341. name: "Maw",
  18342. image: {
  18343. source: "./media/characters/richard-dragon/maw.svg"
  18344. }
  18345. },
  18346. },
  18347. [
  18348. ]
  18349. ))
  18350. characterMakers.push(() => makeCharacter(
  18351. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  18352. {
  18353. front: {
  18354. height: math.unit(4, "feet"),
  18355. weight: math.unit(100, "lb"),
  18356. name: "Front",
  18357. image: {
  18358. source: "./media/characters/richard-smeargle/front.svg",
  18359. extra: 2952 / 2820,
  18360. bottom: 0.028
  18361. }
  18362. },
  18363. },
  18364. [
  18365. {
  18366. name: "Normal",
  18367. height: math.unit(4, "feet"),
  18368. default: true
  18369. },
  18370. {
  18371. name: "Dynamax",
  18372. height: math.unit(20, "meters")
  18373. },
  18374. ]
  18375. ))
  18376. characterMakers.push(() => makeCharacter(
  18377. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  18378. {
  18379. front: {
  18380. height: math.unit(6, "feet"),
  18381. weight: math.unit(110, "lb"),
  18382. name: "Front",
  18383. image: {
  18384. source: "./media/characters/klay/front.svg",
  18385. extra: 962 / 883,
  18386. bottom: 0.04
  18387. }
  18388. },
  18389. back: {
  18390. height: math.unit(6, "feet"),
  18391. weight: math.unit(110, "lb"),
  18392. name: "Back",
  18393. image: {
  18394. source: "./media/characters/klay/back.svg",
  18395. extra: 962 / 883
  18396. }
  18397. },
  18398. beans: {
  18399. height: math.unit(1.15, "feet"),
  18400. name: "Beans",
  18401. image: {
  18402. source: "./media/characters/klay/beans.svg"
  18403. }
  18404. },
  18405. },
  18406. [
  18407. {
  18408. name: "Micro",
  18409. height: math.unit(6, "inches")
  18410. },
  18411. {
  18412. name: "Mini",
  18413. height: math.unit(3, "feet")
  18414. },
  18415. {
  18416. name: "Normal",
  18417. height: math.unit(6, "feet"),
  18418. default: true
  18419. },
  18420. {
  18421. name: "Big",
  18422. height: math.unit(25, "feet")
  18423. },
  18424. {
  18425. name: "Macro",
  18426. height: math.unit(100, "feet")
  18427. },
  18428. {
  18429. name: "Megamacro",
  18430. height: math.unit(400, "feet")
  18431. },
  18432. ]
  18433. ))
  18434. characterMakers.push(() => makeCharacter(
  18435. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  18436. {
  18437. front: {
  18438. height: math.unit(6, "feet"),
  18439. weight: math.unit(160, "lb"),
  18440. name: "Front",
  18441. image: {
  18442. source: "./media/characters/marcus/front.svg",
  18443. extra: 734 / 676,
  18444. bottom: 0.03
  18445. }
  18446. },
  18447. },
  18448. [
  18449. {
  18450. name: "Little",
  18451. height: math.unit(6, "feet")
  18452. },
  18453. {
  18454. name: "Normal",
  18455. height: math.unit(110, "feet"),
  18456. default: true
  18457. },
  18458. {
  18459. name: "Macro",
  18460. height: math.unit(250, "feet")
  18461. },
  18462. {
  18463. name: "Megamacro",
  18464. height: math.unit(1000, "feet")
  18465. },
  18466. ]
  18467. ))
  18468. characterMakers.push(() => makeCharacter(
  18469. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  18470. {
  18471. front: {
  18472. height: math.unit(7, "feet"),
  18473. weight: math.unit(275, "lb"),
  18474. name: "Front",
  18475. image: {
  18476. source: "./media/characters/claude-delroute/front.svg",
  18477. extra: 902/827,
  18478. bottom: 26/928
  18479. }
  18480. },
  18481. side: {
  18482. height: math.unit(7, "feet"),
  18483. weight: math.unit(275, "lb"),
  18484. name: "Side",
  18485. image: {
  18486. source: "./media/characters/claude-delroute/side.svg",
  18487. extra: 908/853,
  18488. bottom: 16/924
  18489. }
  18490. },
  18491. back: {
  18492. height: math.unit(7, "feet"),
  18493. weight: math.unit(275, "lb"),
  18494. name: "Back",
  18495. image: {
  18496. source: "./media/characters/claude-delroute/back.svg",
  18497. extra: 911/829,
  18498. bottom: 18/929
  18499. }
  18500. },
  18501. maw: {
  18502. height: math.unit(0.6407, "meters"),
  18503. name: "Maw",
  18504. image: {
  18505. source: "./media/characters/claude-delroute/maw.svg"
  18506. }
  18507. },
  18508. },
  18509. [
  18510. {
  18511. name: "Normal",
  18512. height: math.unit(7, "feet"),
  18513. default: true
  18514. },
  18515. {
  18516. name: "Lorge",
  18517. height: math.unit(20, "feet")
  18518. },
  18519. ]
  18520. ))
  18521. characterMakers.push(() => makeCharacter(
  18522. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  18523. {
  18524. front: {
  18525. height: math.unit(8 + 4 / 12, "feet"),
  18526. weight: math.unit(600, "lb"),
  18527. name: "Front",
  18528. image: {
  18529. source: "./media/characters/dragonien/front.svg",
  18530. extra: 100 / 94,
  18531. bottom: 3.3 / 103.3445
  18532. }
  18533. },
  18534. back: {
  18535. height: math.unit(8 + 4 / 12, "feet"),
  18536. weight: math.unit(600, "lb"),
  18537. name: "Back",
  18538. image: {
  18539. source: "./media/characters/dragonien/back.svg",
  18540. extra: 776 / 746,
  18541. bottom: 6.4 / 782.0616
  18542. }
  18543. },
  18544. foot: {
  18545. height: math.unit(1.54, "feet"),
  18546. name: "Foot",
  18547. image: {
  18548. source: "./media/characters/dragonien/foot.svg",
  18549. }
  18550. },
  18551. },
  18552. [
  18553. {
  18554. name: "Normal",
  18555. height: math.unit(8 + 4 / 12, "feet"),
  18556. default: true
  18557. },
  18558. {
  18559. name: "Macro",
  18560. height: math.unit(200, "feet")
  18561. },
  18562. {
  18563. name: "Megamacro",
  18564. height: math.unit(1, "mile")
  18565. },
  18566. {
  18567. name: "Gigamacro",
  18568. height: math.unit(1000, "miles")
  18569. },
  18570. ]
  18571. ))
  18572. characterMakers.push(() => makeCharacter(
  18573. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  18574. {
  18575. front: {
  18576. height: math.unit(5 + 2 / 12, "feet"),
  18577. weight: math.unit(110, "lb"),
  18578. name: "Front",
  18579. image: {
  18580. source: "./media/characters/desta/front.svg",
  18581. extra: 767 / 726,
  18582. bottom: 11.7 / 779
  18583. }
  18584. },
  18585. back: {
  18586. height: math.unit(5 + 2 / 12, "feet"),
  18587. weight: math.unit(110, "lb"),
  18588. name: "Back",
  18589. image: {
  18590. source: "./media/characters/desta/back.svg",
  18591. extra: 777 / 728,
  18592. bottom: 6 / 784
  18593. }
  18594. },
  18595. frontAlt: {
  18596. height: math.unit(5 + 2 / 12, "feet"),
  18597. weight: math.unit(110, "lb"),
  18598. name: "Front",
  18599. image: {
  18600. source: "./media/characters/desta/front-alt.svg",
  18601. extra: 1482 / 1417
  18602. }
  18603. },
  18604. side: {
  18605. height: math.unit(5 + 2 / 12, "feet"),
  18606. weight: math.unit(110, "lb"),
  18607. name: "Side",
  18608. image: {
  18609. source: "./media/characters/desta/side.svg",
  18610. extra: 2579 / 2491,
  18611. bottom: 0.053
  18612. }
  18613. },
  18614. },
  18615. [
  18616. {
  18617. name: "Micro",
  18618. height: math.unit(6, "inches")
  18619. },
  18620. {
  18621. name: "Normal",
  18622. height: math.unit(5 + 2 / 12, "feet"),
  18623. default: true
  18624. },
  18625. {
  18626. name: "Macro",
  18627. height: math.unit(62, "feet")
  18628. },
  18629. {
  18630. name: "Megamacro",
  18631. height: math.unit(1800, "feet")
  18632. },
  18633. ]
  18634. ))
  18635. characterMakers.push(() => makeCharacter(
  18636. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  18637. {
  18638. front: {
  18639. height: math.unit(10, "feet"),
  18640. weight: math.unit(700, "lb"),
  18641. name: "Front",
  18642. image: {
  18643. source: "./media/characters/storm-alystar/front.svg",
  18644. extra: 2112 / 1898,
  18645. bottom: 0.034
  18646. }
  18647. },
  18648. },
  18649. [
  18650. {
  18651. name: "Micro",
  18652. height: math.unit(3.5, "inches")
  18653. },
  18654. {
  18655. name: "Normal",
  18656. height: math.unit(10, "feet"),
  18657. default: true
  18658. },
  18659. {
  18660. name: "Macro",
  18661. height: math.unit(400, "feet")
  18662. },
  18663. {
  18664. name: "Deific",
  18665. height: math.unit(60, "miles")
  18666. },
  18667. ]
  18668. ))
  18669. characterMakers.push(() => makeCharacter(
  18670. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  18671. {
  18672. front: {
  18673. height: math.unit(2.35, "meters"),
  18674. weight: math.unit(119, "kg"),
  18675. name: "Front",
  18676. image: {
  18677. source: "./media/characters/ilia/front.svg",
  18678. extra: 1285 / 1255,
  18679. bottom: 0.06
  18680. }
  18681. },
  18682. },
  18683. [
  18684. {
  18685. name: "Normal",
  18686. height: math.unit(2.35, "meters")
  18687. },
  18688. {
  18689. name: "Macro",
  18690. height: math.unit(140, "meters"),
  18691. default: true
  18692. },
  18693. {
  18694. name: "Megamacro",
  18695. height: math.unit(100, "miles")
  18696. },
  18697. ]
  18698. ))
  18699. characterMakers.push(() => makeCharacter(
  18700. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  18701. {
  18702. front: {
  18703. height: math.unit(6 + 5 / 12, "feet"),
  18704. weight: math.unit(190, "lb"),
  18705. name: "Front",
  18706. image: {
  18707. source: "./media/characters/kingdead/front.svg",
  18708. extra: 1228 / 1177
  18709. }
  18710. },
  18711. },
  18712. [
  18713. {
  18714. name: "Micro",
  18715. height: math.unit(7, "inches")
  18716. },
  18717. {
  18718. name: "Normal",
  18719. height: math.unit(6 + 5 / 12, "feet")
  18720. },
  18721. {
  18722. name: "Macro",
  18723. height: math.unit(150, "feet"),
  18724. default: true
  18725. },
  18726. {
  18727. name: "Megamacro",
  18728. height: math.unit(200, "miles")
  18729. },
  18730. ]
  18731. ))
  18732. characterMakers.push(() => makeCharacter(
  18733. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  18734. {
  18735. front: {
  18736. height: math.unit(8, "feet"),
  18737. weight: math.unit(600, "lb"),
  18738. name: "Front",
  18739. image: {
  18740. source: "./media/characters/kyrehx/front.svg",
  18741. extra: 1195 / 1095,
  18742. bottom: 0.034
  18743. }
  18744. },
  18745. },
  18746. [
  18747. {
  18748. name: "Micro",
  18749. height: math.unit(2, "inches")
  18750. },
  18751. {
  18752. name: "Normal",
  18753. height: math.unit(8, "feet"),
  18754. default: true
  18755. },
  18756. {
  18757. name: "Macro",
  18758. height: math.unit(255, "feet")
  18759. },
  18760. ]
  18761. ))
  18762. characterMakers.push(() => makeCharacter(
  18763. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  18764. {
  18765. front: {
  18766. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18767. weight: math.unit(184, "lb"),
  18768. name: "Front",
  18769. image: {
  18770. source: "./media/characters/xang/front.svg",
  18771. extra: 845 / 755
  18772. }
  18773. },
  18774. },
  18775. [
  18776. {
  18777. name: "Normal",
  18778. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18779. default: true
  18780. },
  18781. {
  18782. name: "Macro",
  18783. height: math.unit(0.935 * 146, "feet")
  18784. },
  18785. {
  18786. name: "Megamacro",
  18787. height: math.unit(0.935 * 3, "miles")
  18788. },
  18789. ]
  18790. ))
  18791. characterMakers.push(() => makeCharacter(
  18792. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  18793. {
  18794. frontDressed: {
  18795. height: math.unit(5 + 7 / 12, "feet"),
  18796. weight: math.unit(140, "lb"),
  18797. name: "Front (Dressed)",
  18798. image: {
  18799. source: "./media/characters/doc-weardno/front-dressed.svg",
  18800. extra: 263 / 234
  18801. }
  18802. },
  18803. backDressed: {
  18804. height: math.unit(5 + 7 / 12, "feet"),
  18805. weight: math.unit(140, "lb"),
  18806. name: "Back (Dressed)",
  18807. image: {
  18808. source: "./media/characters/doc-weardno/back-dressed.svg",
  18809. extra: 266 / 238
  18810. }
  18811. },
  18812. front: {
  18813. height: math.unit(5 + 7 / 12, "feet"),
  18814. weight: math.unit(140, "lb"),
  18815. name: "Front",
  18816. image: {
  18817. source: "./media/characters/doc-weardno/front.svg",
  18818. extra: 254 / 233
  18819. }
  18820. },
  18821. },
  18822. [
  18823. {
  18824. name: "Micro",
  18825. height: math.unit(3, "inches")
  18826. },
  18827. {
  18828. name: "Normal",
  18829. height: math.unit(5 + 7 / 12, "feet"),
  18830. default: true
  18831. },
  18832. {
  18833. name: "Macro",
  18834. height: math.unit(25, "feet")
  18835. },
  18836. {
  18837. name: "Megamacro",
  18838. height: math.unit(2, "miles")
  18839. },
  18840. ]
  18841. ))
  18842. characterMakers.push(() => makeCharacter(
  18843. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  18844. {
  18845. front: {
  18846. height: math.unit(6 + 2 / 12, "feet"),
  18847. weight: math.unit(153, "lb"),
  18848. name: "Front",
  18849. image: {
  18850. source: "./media/characters/seth-whilst/front.svg",
  18851. bottom: 0.07
  18852. }
  18853. },
  18854. },
  18855. [
  18856. {
  18857. name: "Micro",
  18858. height: math.unit(5, "inches")
  18859. },
  18860. {
  18861. name: "Normal",
  18862. height: math.unit(6 + 2 / 12, "feet"),
  18863. default: true
  18864. },
  18865. ]
  18866. ))
  18867. characterMakers.push(() => makeCharacter(
  18868. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  18869. {
  18870. front: {
  18871. height: math.unit(3, "inches"),
  18872. weight: math.unit(8, "grams"),
  18873. name: "Front",
  18874. image: {
  18875. source: "./media/characters/pocket-jabari/front.svg",
  18876. extra: 1024 / 974,
  18877. bottom: 0.039
  18878. }
  18879. },
  18880. },
  18881. [
  18882. {
  18883. name: "Minimicro",
  18884. height: math.unit(8, "mm")
  18885. },
  18886. {
  18887. name: "Micro",
  18888. height: math.unit(3, "inches"),
  18889. default: true
  18890. },
  18891. {
  18892. name: "Normal",
  18893. height: math.unit(3, "feet")
  18894. },
  18895. ]
  18896. ))
  18897. characterMakers.push(() => makeCharacter(
  18898. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  18899. {
  18900. front: {
  18901. height: math.unit(15, "feet"),
  18902. weight: math.unit(3280, "lb"),
  18903. name: "Front",
  18904. image: {
  18905. source: "./media/characters/sapphy/front.svg",
  18906. extra: 671 / 577,
  18907. bottom: 0.085
  18908. }
  18909. },
  18910. back: {
  18911. height: math.unit(15, "feet"),
  18912. weight: math.unit(3280, "lb"),
  18913. name: "Back",
  18914. image: {
  18915. source: "./media/characters/sapphy/back.svg",
  18916. extra: 631 / 607,
  18917. bottom: 0.045
  18918. }
  18919. },
  18920. },
  18921. [
  18922. {
  18923. name: "Normal",
  18924. height: math.unit(15, "feet")
  18925. },
  18926. {
  18927. name: "Casual Macro",
  18928. height: math.unit(120, "feet")
  18929. },
  18930. {
  18931. name: "Macro",
  18932. height: math.unit(2150, "feet"),
  18933. default: true
  18934. },
  18935. {
  18936. name: "Megamacro",
  18937. height: math.unit(8, "miles")
  18938. },
  18939. {
  18940. name: "Galaxy Mom",
  18941. height: math.unit(6, "megalightyears")
  18942. },
  18943. ]
  18944. ))
  18945. characterMakers.push(() => makeCharacter(
  18946. { name: "Kiro", species: ["folf"], tags: ["anthro"] },
  18947. {
  18948. front: {
  18949. height: math.unit(6, "feet"),
  18950. weight: math.unit(170, "lb"),
  18951. name: "Front",
  18952. image: {
  18953. source: "./media/characters/kiro/front.svg",
  18954. extra: 1064 / 1012,
  18955. bottom: 0.052
  18956. }
  18957. },
  18958. },
  18959. [
  18960. {
  18961. name: "Micro",
  18962. height: math.unit(6, "inches")
  18963. },
  18964. {
  18965. name: "Normal",
  18966. height: math.unit(6, "feet"),
  18967. default: true
  18968. },
  18969. {
  18970. name: "Macro",
  18971. height: math.unit(72, "feet")
  18972. },
  18973. ]
  18974. ))
  18975. characterMakers.push(() => makeCharacter(
  18976. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  18977. {
  18978. front: {
  18979. height: math.unit(5 + 9 / 12, "feet"),
  18980. weight: math.unit(175, "lb"),
  18981. name: "Front",
  18982. image: {
  18983. source: "./media/characters/irishfox/front.svg",
  18984. extra: 1912 / 1680,
  18985. bottom: 0.02
  18986. }
  18987. },
  18988. },
  18989. [
  18990. {
  18991. name: "Nano",
  18992. height: math.unit(1, "mm")
  18993. },
  18994. {
  18995. name: "Micro",
  18996. height: math.unit(2, "inches")
  18997. },
  18998. {
  18999. name: "Normal",
  19000. height: math.unit(5 + 9 / 12, "feet"),
  19001. default: true
  19002. },
  19003. {
  19004. name: "Macro",
  19005. height: math.unit(45, "feet")
  19006. },
  19007. ]
  19008. ))
  19009. characterMakers.push(() => makeCharacter(
  19010. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  19011. {
  19012. front: {
  19013. height: math.unit(6 + 1 / 12, "feet"),
  19014. weight: math.unit(75, "lb"),
  19015. name: "Front",
  19016. image: {
  19017. source: "./media/characters/aronai-sieyes/front.svg",
  19018. extra: 1532/1450,
  19019. bottom: 42/1574
  19020. }
  19021. },
  19022. side: {
  19023. height: math.unit(6 + 1 / 12, "feet"),
  19024. weight: math.unit(75, "lb"),
  19025. name: "Side",
  19026. image: {
  19027. source: "./media/characters/aronai-sieyes/side.svg",
  19028. extra: 1422/1365,
  19029. bottom: 148/1570
  19030. }
  19031. },
  19032. back: {
  19033. height: math.unit(6 + 1 / 12, "feet"),
  19034. weight: math.unit(75, "lb"),
  19035. name: "Back",
  19036. image: {
  19037. source: "./media/characters/aronai-sieyes/back.svg",
  19038. extra: 1526/1464,
  19039. bottom: 51/1577
  19040. }
  19041. },
  19042. dressed: {
  19043. height: math.unit(6 + 1 / 12, "feet"),
  19044. weight: math.unit(75, "lb"),
  19045. name: "Dressed",
  19046. image: {
  19047. source: "./media/characters/aronai-sieyes/dressed.svg",
  19048. extra: 1559/1483,
  19049. bottom: 39/1598
  19050. }
  19051. },
  19052. slit: {
  19053. height: math.unit(1.3, "feet"),
  19054. name: "Slit",
  19055. image: {
  19056. source: "./media/characters/aronai-sieyes/slit.svg"
  19057. }
  19058. },
  19059. slitSpread: {
  19060. height: math.unit(0.9, "feet"),
  19061. name: "Slit (Spread)",
  19062. image: {
  19063. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  19064. }
  19065. },
  19066. rump: {
  19067. height: math.unit(1.3, "feet"),
  19068. name: "Rump",
  19069. image: {
  19070. source: "./media/characters/aronai-sieyes/rump.svg"
  19071. }
  19072. },
  19073. maw: {
  19074. height: math.unit(1.25, "feet"),
  19075. name: "Maw",
  19076. image: {
  19077. source: "./media/characters/aronai-sieyes/maw.svg"
  19078. }
  19079. },
  19080. feral: {
  19081. height: math.unit(18, "feet"),
  19082. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  19083. name: "Feral",
  19084. image: {
  19085. source: "./media/characters/aronai-sieyes/feral.svg",
  19086. extra: 1530 / 1240,
  19087. bottom: 0.035
  19088. }
  19089. },
  19090. },
  19091. [
  19092. {
  19093. name: "Micro",
  19094. height: math.unit(2, "inches")
  19095. },
  19096. {
  19097. name: "Normal",
  19098. height: math.unit(6 + 1 / 12, "feet"),
  19099. default: true
  19100. }
  19101. ]
  19102. ))
  19103. characterMakers.push(() => makeCharacter(
  19104. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  19105. {
  19106. front: {
  19107. height: math.unit(12, "feet"),
  19108. weight: math.unit(410, "kg"),
  19109. name: "Front",
  19110. image: {
  19111. source: "./media/characters/xuna/front.svg",
  19112. extra: 2184 / 1980
  19113. }
  19114. },
  19115. side: {
  19116. height: math.unit(12, "feet"),
  19117. weight: math.unit(410, "kg"),
  19118. name: "Side",
  19119. image: {
  19120. source: "./media/characters/xuna/side.svg",
  19121. extra: 2184 / 1980
  19122. }
  19123. },
  19124. back: {
  19125. height: math.unit(12, "feet"),
  19126. weight: math.unit(410, "kg"),
  19127. name: "Back",
  19128. image: {
  19129. source: "./media/characters/xuna/back.svg",
  19130. extra: 2184 / 1980
  19131. }
  19132. },
  19133. },
  19134. [
  19135. {
  19136. name: "Nano glow",
  19137. height: math.unit(10, "nm")
  19138. },
  19139. {
  19140. name: "Micro floof",
  19141. height: math.unit(0.3, "m")
  19142. },
  19143. {
  19144. name: "Huggable softy boi",
  19145. height: math.unit(3.6576, "m"),
  19146. default: true
  19147. },
  19148. {
  19149. name: "Admirable floof",
  19150. height: math.unit(80, "meters")
  19151. },
  19152. {
  19153. name: "Gentle macro",
  19154. height: math.unit(300, "meters")
  19155. },
  19156. {
  19157. name: "Very careful floof",
  19158. height: math.unit(3200, "meters")
  19159. },
  19160. {
  19161. name: "The mega floof",
  19162. height: math.unit(36000, "meters")
  19163. },
  19164. {
  19165. name: "Giga-fur-Wicker",
  19166. height: math.unit(4800000, "meters")
  19167. },
  19168. {
  19169. name: "Licky world",
  19170. height: math.unit(20000000, "meters")
  19171. },
  19172. {
  19173. name: "Floofy cyan sun",
  19174. height: math.unit(1500000000, "meters")
  19175. },
  19176. {
  19177. name: "Milky Wicker",
  19178. height: math.unit(1000000000000000000000, "meters")
  19179. },
  19180. {
  19181. name: "The observing Wicker",
  19182. height: math.unit(999999999999999999999999999, "meters")
  19183. },
  19184. ]
  19185. ))
  19186. characterMakers.push(() => makeCharacter(
  19187. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19188. {
  19189. front: {
  19190. height: math.unit(5 + 9 / 12, "feet"),
  19191. weight: math.unit(150, "lb"),
  19192. name: "Front",
  19193. image: {
  19194. source: "./media/characters/arokha-sieyes/front.svg",
  19195. extra: 1425 / 1284,
  19196. bottom: 0.05
  19197. }
  19198. },
  19199. },
  19200. [
  19201. {
  19202. name: "Normal",
  19203. height: math.unit(5 + 9 / 12, "feet")
  19204. },
  19205. {
  19206. name: "Macro",
  19207. height: math.unit(30, "meters"),
  19208. default: true
  19209. },
  19210. ]
  19211. ))
  19212. characterMakers.push(() => makeCharacter(
  19213. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19214. {
  19215. front: {
  19216. height: math.unit(6, "feet"),
  19217. weight: math.unit(180, "lb"),
  19218. name: "Front",
  19219. image: {
  19220. source: "./media/characters/arokh-sieyes/front.svg",
  19221. extra: 1830 / 1769,
  19222. bottom: 0.01
  19223. }
  19224. },
  19225. },
  19226. [
  19227. {
  19228. name: "Normal",
  19229. height: math.unit(6, "feet")
  19230. },
  19231. {
  19232. name: "Macro",
  19233. height: math.unit(30, "meters"),
  19234. default: true
  19235. },
  19236. ]
  19237. ))
  19238. characterMakers.push(() => makeCharacter(
  19239. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  19240. {
  19241. side: {
  19242. height: math.unit(13 + 1 / 12, "feet"),
  19243. weight: math.unit(8.5, "tonnes"),
  19244. name: "Side",
  19245. image: {
  19246. source: "./media/characters/goldeneye/side.svg",
  19247. extra: 1182 / 778,
  19248. bottom: 0.067
  19249. }
  19250. },
  19251. paw: {
  19252. height: math.unit(3.4, "feet"),
  19253. name: "Paw",
  19254. image: {
  19255. source: "./media/characters/goldeneye/paw.svg"
  19256. }
  19257. },
  19258. },
  19259. [
  19260. {
  19261. name: "Normal",
  19262. height: math.unit(13 + 1 / 12, "feet"),
  19263. default: true
  19264. },
  19265. ]
  19266. ))
  19267. characterMakers.push(() => makeCharacter(
  19268. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  19269. {
  19270. front: {
  19271. height: math.unit(6 + 1 / 12, "feet"),
  19272. weight: math.unit(210, "lb"),
  19273. name: "Front",
  19274. image: {
  19275. source: "./media/characters/leonardo-lycheborne/front.svg",
  19276. extra: 776/723,
  19277. bottom: 34/810
  19278. }
  19279. },
  19280. side: {
  19281. height: math.unit(6 + 1 / 12, "feet"),
  19282. weight: math.unit(210, "lb"),
  19283. name: "Side",
  19284. image: {
  19285. source: "./media/characters/leonardo-lycheborne/side.svg",
  19286. extra: 780/728,
  19287. bottom: 12/792
  19288. }
  19289. },
  19290. back: {
  19291. height: math.unit(6 + 1 / 12, "feet"),
  19292. weight: math.unit(210, "lb"),
  19293. name: "Back",
  19294. image: {
  19295. source: "./media/characters/leonardo-lycheborne/back.svg",
  19296. extra: 775/721,
  19297. bottom: 17/792
  19298. }
  19299. },
  19300. hand: {
  19301. height: math.unit(1.08, "feet"),
  19302. name: "Hand",
  19303. image: {
  19304. source: "./media/characters/leonardo-lycheborne/hand.svg"
  19305. }
  19306. },
  19307. foot: {
  19308. height: math.unit(1.32, "feet"),
  19309. name: "Foot",
  19310. image: {
  19311. source: "./media/characters/leonardo-lycheborne/foot.svg"
  19312. }
  19313. },
  19314. maw: {
  19315. height: math.unit(1, "feet"),
  19316. name: "Maw",
  19317. image: {
  19318. source: "./media/characters/leonardo-lycheborne/maw.svg"
  19319. }
  19320. },
  19321. were: {
  19322. height: math.unit(20, "feet"),
  19323. weight: math.unit(7800, "lb"),
  19324. name: "Were",
  19325. image: {
  19326. source: "./media/characters/leonardo-lycheborne/were.svg",
  19327. extra: 1224/1165,
  19328. bottom: 72/1296
  19329. }
  19330. },
  19331. feral: {
  19332. height: math.unit(7.5, "feet"),
  19333. weight: math.unit(600, "lb"),
  19334. name: "Feral",
  19335. image: {
  19336. source: "./media/characters/leonardo-lycheborne/feral.svg",
  19337. extra: 797/702,
  19338. bottom: 139/936
  19339. }
  19340. },
  19341. taur: {
  19342. height: math.unit(11, "feet"),
  19343. weight: math.unit(3300, "lb"),
  19344. name: "Taur",
  19345. image: {
  19346. source: "./media/characters/leonardo-lycheborne/taur.svg",
  19347. extra: 1271/1197,
  19348. bottom: 47/1318
  19349. }
  19350. },
  19351. barghest: {
  19352. height: math.unit(11, "feet"),
  19353. weight: math.unit(1300, "lb"),
  19354. name: "Barghest",
  19355. image: {
  19356. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  19357. extra: 1291/1204,
  19358. bottom: 37/1328
  19359. }
  19360. },
  19361. dick: {
  19362. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  19363. name: "Dick",
  19364. image: {
  19365. source: "./media/characters/leonardo-lycheborne/dick.svg"
  19366. }
  19367. },
  19368. dickWere: {
  19369. height: math.unit((20) / 3.8, "feet"),
  19370. name: "Dick (Were)",
  19371. image: {
  19372. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  19373. }
  19374. },
  19375. },
  19376. [
  19377. {
  19378. name: "Normal",
  19379. height: math.unit(6 + 1 / 12, "feet"),
  19380. default: true
  19381. },
  19382. ]
  19383. ))
  19384. characterMakers.push(() => makeCharacter(
  19385. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  19386. {
  19387. front: {
  19388. height: math.unit(10, "feet"),
  19389. weight: math.unit(350, "lb"),
  19390. name: "Front",
  19391. image: {
  19392. source: "./media/characters/jet/front.svg",
  19393. extra: 2050 / 1980,
  19394. bottom: 0.013
  19395. }
  19396. },
  19397. back: {
  19398. height: math.unit(10, "feet"),
  19399. weight: math.unit(350, "lb"),
  19400. name: "Back",
  19401. image: {
  19402. source: "./media/characters/jet/back.svg",
  19403. extra: 2050 / 1980,
  19404. bottom: 0.013
  19405. }
  19406. },
  19407. },
  19408. [
  19409. {
  19410. name: "Micro",
  19411. height: math.unit(6, "inches")
  19412. },
  19413. {
  19414. name: "Normal",
  19415. height: math.unit(10, "feet"),
  19416. default: true
  19417. },
  19418. {
  19419. name: "Macro",
  19420. height: math.unit(100, "feet")
  19421. },
  19422. ]
  19423. ))
  19424. characterMakers.push(() => makeCharacter(
  19425. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  19426. {
  19427. front: {
  19428. height: math.unit(15, "feet"),
  19429. weight: math.unit(2800, "lb"),
  19430. name: "Front",
  19431. image: {
  19432. source: "./media/characters/tanarath/front.svg",
  19433. extra: 2392 / 2220,
  19434. bottom: 0.03
  19435. }
  19436. },
  19437. back: {
  19438. height: math.unit(15, "feet"),
  19439. weight: math.unit(2800, "lb"),
  19440. name: "Back",
  19441. image: {
  19442. source: "./media/characters/tanarath/back.svg",
  19443. extra: 2392 / 2220,
  19444. bottom: 0.03
  19445. }
  19446. },
  19447. },
  19448. [
  19449. {
  19450. name: "Normal",
  19451. height: math.unit(15, "feet"),
  19452. default: true
  19453. },
  19454. ]
  19455. ))
  19456. characterMakers.push(() => makeCharacter(
  19457. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  19458. {
  19459. front: {
  19460. height: math.unit(7 + 1 / 12, "feet"),
  19461. weight: math.unit(175, "lb"),
  19462. name: "Front",
  19463. image: {
  19464. source: "./media/characters/patty-cattybatty/front.svg",
  19465. extra: 908 / 874,
  19466. bottom: 0.025
  19467. }
  19468. },
  19469. },
  19470. [
  19471. {
  19472. name: "Micro",
  19473. height: math.unit(1, "inch")
  19474. },
  19475. {
  19476. name: "Normal",
  19477. height: math.unit(7 + 1 / 12, "feet")
  19478. },
  19479. {
  19480. name: "Mini Macro",
  19481. height: math.unit(155, "feet")
  19482. },
  19483. {
  19484. name: "Macro",
  19485. height: math.unit(1077, "feet")
  19486. },
  19487. {
  19488. name: "Mega Macro",
  19489. height: math.unit(47650, "feet"),
  19490. default: true
  19491. },
  19492. {
  19493. name: "Giga Macro",
  19494. height: math.unit(440, "miles")
  19495. },
  19496. {
  19497. name: "Tera Macro",
  19498. height: math.unit(8700, "miles")
  19499. },
  19500. {
  19501. name: "Planetary Macro",
  19502. height: math.unit(32700, "miles")
  19503. },
  19504. {
  19505. name: "Solar Macro",
  19506. height: math.unit(550000, "miles")
  19507. },
  19508. {
  19509. name: "Celestial Macro",
  19510. height: math.unit(2.5, "AU")
  19511. },
  19512. ]
  19513. ))
  19514. characterMakers.push(() => makeCharacter(
  19515. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  19516. {
  19517. front: {
  19518. height: math.unit(4 + 5 / 12, "feet"),
  19519. weight: math.unit(90, "lb"),
  19520. name: "Front",
  19521. image: {
  19522. source: "./media/characters/cappu/front.svg",
  19523. extra: 1247 / 1152,
  19524. bottom: 0.012
  19525. }
  19526. },
  19527. },
  19528. [
  19529. {
  19530. name: "Normal",
  19531. height: math.unit(4 + 5 / 12, "feet"),
  19532. default: true
  19533. },
  19534. ]
  19535. ))
  19536. characterMakers.push(() => makeCharacter(
  19537. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  19538. {
  19539. frontDressed: {
  19540. height: math.unit(70, "cm"),
  19541. weight: math.unit(6, "kg"),
  19542. name: "Front (Dressed)",
  19543. image: {
  19544. source: "./media/characters/sebi/front-dressed.svg",
  19545. extra: 713.5 / 686.5,
  19546. bottom: 0.003
  19547. }
  19548. },
  19549. front: {
  19550. height: math.unit(70, "cm"),
  19551. weight: math.unit(5, "kg"),
  19552. name: "Front",
  19553. image: {
  19554. source: "./media/characters/sebi/front.svg",
  19555. extra: 713.5 / 686.5,
  19556. bottom: 0.003
  19557. }
  19558. }
  19559. },
  19560. [
  19561. {
  19562. name: "Normal",
  19563. height: math.unit(70, "cm"),
  19564. default: true
  19565. },
  19566. {
  19567. name: "Macro",
  19568. height: math.unit(8, "meters")
  19569. },
  19570. ]
  19571. ))
  19572. characterMakers.push(() => makeCharacter(
  19573. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  19574. {
  19575. front: {
  19576. height: math.unit(6, "feet"),
  19577. weight: math.unit(150, "lb"),
  19578. name: "Front",
  19579. image: {
  19580. source: "./media/characters/typhek/front.svg",
  19581. extra: 1948 / 1929,
  19582. bottom: 0.025
  19583. }
  19584. },
  19585. side: {
  19586. height: math.unit(6, "feet"),
  19587. weight: math.unit(150, "lb"),
  19588. name: "Side",
  19589. image: {
  19590. source: "./media/characters/typhek/side.svg",
  19591. extra: 2034 / 2010,
  19592. bottom: 0.003
  19593. }
  19594. },
  19595. back: {
  19596. height: math.unit(6, "feet"),
  19597. weight: math.unit(150, "lb"),
  19598. name: "Back",
  19599. image: {
  19600. source: "./media/characters/typhek/back.svg",
  19601. extra: 2005 / 1978,
  19602. bottom: 0.004
  19603. }
  19604. },
  19605. palm: {
  19606. height: math.unit(1.2, "feet"),
  19607. name: "Palm",
  19608. image: {
  19609. source: "./media/characters/typhek/palm.svg"
  19610. }
  19611. },
  19612. fist: {
  19613. height: math.unit(1.1, "feet"),
  19614. name: "Fist",
  19615. image: {
  19616. source: "./media/characters/typhek/fist.svg"
  19617. }
  19618. },
  19619. foot: {
  19620. height: math.unit(1.57, "feet"),
  19621. name: "Foot",
  19622. image: {
  19623. source: "./media/characters/typhek/foot.svg"
  19624. }
  19625. },
  19626. sole: {
  19627. height: math.unit(2.05, "feet"),
  19628. name: "Sole",
  19629. image: {
  19630. source: "./media/characters/typhek/sole.svg"
  19631. }
  19632. },
  19633. },
  19634. [
  19635. {
  19636. name: "Macro",
  19637. height: math.unit(40, "stories"),
  19638. default: true
  19639. },
  19640. {
  19641. name: "Megamacro",
  19642. height: math.unit(1, "mile")
  19643. },
  19644. {
  19645. name: "Gigamacro",
  19646. height: math.unit(4000, "solarradii")
  19647. },
  19648. {
  19649. name: "Universal",
  19650. height: math.unit(1.1, "universes")
  19651. }
  19652. ]
  19653. ))
  19654. characterMakers.push(() => makeCharacter(
  19655. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  19656. {
  19657. side: {
  19658. height: math.unit(5 + 7 / 12, "feet"),
  19659. weight: math.unit(150, "lb"),
  19660. name: "Side",
  19661. image: {
  19662. source: "./media/characters/kassy/side.svg",
  19663. extra: 1280 / 1225,
  19664. bottom: 0.002
  19665. }
  19666. },
  19667. front: {
  19668. height: math.unit(5 + 7 / 12, "feet"),
  19669. weight: math.unit(150, "lb"),
  19670. name: "Front",
  19671. image: {
  19672. source: "./media/characters/kassy/front.svg",
  19673. extra: 1280 / 1225,
  19674. bottom: 0.025
  19675. }
  19676. },
  19677. back: {
  19678. height: math.unit(5 + 7 / 12, "feet"),
  19679. weight: math.unit(150, "lb"),
  19680. name: "Back",
  19681. image: {
  19682. source: "./media/characters/kassy/back.svg",
  19683. extra: 1280 / 1225,
  19684. bottom: 0.002
  19685. }
  19686. },
  19687. foot: {
  19688. height: math.unit(1.266, "feet"),
  19689. name: "Foot",
  19690. image: {
  19691. source: "./media/characters/kassy/foot.svg"
  19692. }
  19693. },
  19694. },
  19695. [
  19696. {
  19697. name: "Normal",
  19698. height: math.unit(5 + 7 / 12, "feet")
  19699. },
  19700. {
  19701. name: "Macro",
  19702. height: math.unit(137, "feet"),
  19703. default: true
  19704. },
  19705. {
  19706. name: "Megamacro",
  19707. height: math.unit(1, "mile")
  19708. },
  19709. ]
  19710. ))
  19711. characterMakers.push(() => makeCharacter(
  19712. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  19713. {
  19714. front: {
  19715. height: math.unit(6 + 1 / 12, "feet"),
  19716. weight: math.unit(200, "lb"),
  19717. name: "Front",
  19718. image: {
  19719. source: "./media/characters/neil/front.svg",
  19720. extra: 1326 / 1250,
  19721. bottom: 0.023
  19722. }
  19723. },
  19724. },
  19725. [
  19726. {
  19727. name: "Normal",
  19728. height: math.unit(6 + 1 / 12, "feet"),
  19729. default: true
  19730. },
  19731. {
  19732. name: "Macro",
  19733. height: math.unit(200, "feet")
  19734. },
  19735. ]
  19736. ))
  19737. characterMakers.push(() => makeCharacter(
  19738. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  19739. {
  19740. front: {
  19741. height: math.unit(5 + 9 / 12, "feet"),
  19742. weight: math.unit(190, "lb"),
  19743. name: "Front",
  19744. image: {
  19745. source: "./media/characters/atticus/front.svg",
  19746. extra: 2934 / 2785,
  19747. bottom: 0.025
  19748. }
  19749. },
  19750. },
  19751. [
  19752. {
  19753. name: "Normal",
  19754. height: math.unit(5 + 9 / 12, "feet"),
  19755. default: true
  19756. },
  19757. {
  19758. name: "Macro",
  19759. height: math.unit(180, "feet")
  19760. },
  19761. ]
  19762. ))
  19763. characterMakers.push(() => makeCharacter(
  19764. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  19765. {
  19766. side: {
  19767. height: math.unit(9, "feet"),
  19768. weight: math.unit(650, "lb"),
  19769. name: "Side",
  19770. image: {
  19771. source: "./media/characters/milo/side.svg",
  19772. extra: 2644 / 2310,
  19773. bottom: 0.032
  19774. }
  19775. },
  19776. },
  19777. [
  19778. {
  19779. name: "Normal",
  19780. height: math.unit(9, "feet"),
  19781. default: true
  19782. },
  19783. {
  19784. name: "Macro",
  19785. height: math.unit(300, "feet")
  19786. },
  19787. ]
  19788. ))
  19789. characterMakers.push(() => makeCharacter(
  19790. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  19791. {
  19792. side: {
  19793. height: math.unit(8, "meters"),
  19794. weight: math.unit(90000, "kg"),
  19795. name: "Side",
  19796. image: {
  19797. source: "./media/characters/ijzer/side.svg",
  19798. extra: 2756 / 1600,
  19799. bottom: 0.01
  19800. }
  19801. },
  19802. },
  19803. [
  19804. {
  19805. name: "Small",
  19806. height: math.unit(3, "meters")
  19807. },
  19808. {
  19809. name: "Normal",
  19810. height: math.unit(8, "meters"),
  19811. default: true
  19812. },
  19813. {
  19814. name: "Normal+",
  19815. height: math.unit(10, "meters")
  19816. },
  19817. {
  19818. name: "Bigger",
  19819. height: math.unit(24, "meters")
  19820. },
  19821. {
  19822. name: "Huge",
  19823. height: math.unit(80, "meters")
  19824. },
  19825. ]
  19826. ))
  19827. characterMakers.push(() => makeCharacter(
  19828. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  19829. {
  19830. front: {
  19831. height: math.unit(6 + 2 / 12, "feet"),
  19832. weight: math.unit(153, "lb"),
  19833. name: "Front",
  19834. image: {
  19835. source: "./media/characters/luca-cervicum/front.svg",
  19836. extra: 370 / 327,
  19837. bottom: 0.015
  19838. }
  19839. },
  19840. back: {
  19841. height: math.unit(6 + 2 / 12, "feet"),
  19842. weight: math.unit(153, "lb"),
  19843. name: "Back",
  19844. image: {
  19845. source: "./media/characters/luca-cervicum/back.svg",
  19846. extra: 367 / 333,
  19847. bottom: 0.005
  19848. }
  19849. },
  19850. frontGear: {
  19851. height: math.unit(6 + 2 / 12, "feet"),
  19852. weight: math.unit(173, "lb"),
  19853. name: "Front (Gear)",
  19854. image: {
  19855. source: "./media/characters/luca-cervicum/front-gear.svg",
  19856. extra: 377 / 333,
  19857. bottom: 0.006
  19858. }
  19859. },
  19860. },
  19861. [
  19862. {
  19863. name: "Normal",
  19864. height: math.unit(6 + 2 / 12, "feet"),
  19865. default: true
  19866. },
  19867. ]
  19868. ))
  19869. characterMakers.push(() => makeCharacter(
  19870. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  19871. {
  19872. front: {
  19873. height: math.unit(6 + 1 / 12, "feet"),
  19874. weight: math.unit(304, "lb"),
  19875. name: "Front",
  19876. image: {
  19877. source: "./media/characters/oliver/front.svg",
  19878. extra: 157 / 143,
  19879. bottom: 0.08
  19880. }
  19881. },
  19882. },
  19883. [
  19884. {
  19885. name: "Normal",
  19886. height: math.unit(6 + 1 / 12, "feet"),
  19887. default: true
  19888. },
  19889. ]
  19890. ))
  19891. characterMakers.push(() => makeCharacter(
  19892. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  19893. {
  19894. front: {
  19895. height: math.unit(5 + 7 / 12, "feet"),
  19896. weight: math.unit(140, "lb"),
  19897. name: "Front",
  19898. image: {
  19899. source: "./media/characters/shane/front.svg",
  19900. extra: 304 / 289,
  19901. bottom: 0.005
  19902. }
  19903. },
  19904. },
  19905. [
  19906. {
  19907. name: "Normal",
  19908. height: math.unit(5 + 7 / 12, "feet"),
  19909. default: true
  19910. },
  19911. ]
  19912. ))
  19913. characterMakers.push(() => makeCharacter(
  19914. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  19915. {
  19916. front: {
  19917. height: math.unit(5 + 9 / 12, "feet"),
  19918. weight: math.unit(178, "lb"),
  19919. name: "Front",
  19920. image: {
  19921. source: "./media/characters/shin/front.svg",
  19922. extra: 159 / 151,
  19923. bottom: 0.015
  19924. }
  19925. },
  19926. },
  19927. [
  19928. {
  19929. name: "Normal",
  19930. height: math.unit(5 + 9 / 12, "feet"),
  19931. default: true
  19932. },
  19933. ]
  19934. ))
  19935. characterMakers.push(() => makeCharacter(
  19936. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  19937. {
  19938. front: {
  19939. height: math.unit(5 + 10 / 12, "feet"),
  19940. weight: math.unit(168, "lb"),
  19941. name: "Front",
  19942. image: {
  19943. source: "./media/characters/xerxes/front.svg",
  19944. extra: 282 / 260,
  19945. bottom: 0.045
  19946. }
  19947. },
  19948. },
  19949. [
  19950. {
  19951. name: "Normal",
  19952. height: math.unit(5 + 10 / 12, "feet"),
  19953. default: true
  19954. },
  19955. ]
  19956. ))
  19957. characterMakers.push(() => makeCharacter(
  19958. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  19959. {
  19960. front: {
  19961. height: math.unit(6 + 7 / 12, "feet"),
  19962. weight: math.unit(208, "lb"),
  19963. name: "Front",
  19964. image: {
  19965. source: "./media/characters/chaska/front.svg",
  19966. extra: 332 / 319,
  19967. bottom: 0.015
  19968. }
  19969. },
  19970. },
  19971. [
  19972. {
  19973. name: "Normal",
  19974. height: math.unit(6 + 7 / 12, "feet"),
  19975. default: true
  19976. },
  19977. ]
  19978. ))
  19979. characterMakers.push(() => makeCharacter(
  19980. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  19981. {
  19982. front: {
  19983. height: math.unit(5 + 8 / 12, "feet"),
  19984. weight: math.unit(208, "lb"),
  19985. name: "Front",
  19986. image: {
  19987. source: "./media/characters/enuk/front.svg",
  19988. extra: 437 / 406,
  19989. bottom: 0.02
  19990. }
  19991. },
  19992. },
  19993. [
  19994. {
  19995. name: "Normal",
  19996. height: math.unit(5 + 8 / 12, "feet"),
  19997. default: true
  19998. },
  19999. ]
  20000. ))
  20001. characterMakers.push(() => makeCharacter(
  20002. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  20003. {
  20004. front: {
  20005. height: math.unit(5 + 10 / 12, "feet"),
  20006. weight: math.unit(252, "lb"),
  20007. name: "Front",
  20008. image: {
  20009. source: "./media/characters/bruun/front.svg",
  20010. extra: 197 / 187,
  20011. bottom: 0.012
  20012. }
  20013. },
  20014. },
  20015. [
  20016. {
  20017. name: "Normal",
  20018. height: math.unit(5 + 10 / 12, "feet"),
  20019. default: true
  20020. },
  20021. ]
  20022. ))
  20023. characterMakers.push(() => makeCharacter(
  20024. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  20025. {
  20026. front: {
  20027. height: math.unit(6 + 10 / 12, "feet"),
  20028. weight: math.unit(255, "lb"),
  20029. name: "Front",
  20030. image: {
  20031. source: "./media/characters/alexeev/front.svg",
  20032. extra: 213 / 200,
  20033. bottom: 0.05
  20034. }
  20035. },
  20036. },
  20037. [
  20038. {
  20039. name: "Normal",
  20040. height: math.unit(6 + 10 / 12, "feet"),
  20041. default: true
  20042. },
  20043. ]
  20044. ))
  20045. characterMakers.push(() => makeCharacter(
  20046. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  20047. {
  20048. front: {
  20049. height: math.unit(2 + 8 / 12, "feet"),
  20050. weight: math.unit(22, "lb"),
  20051. name: "Front",
  20052. image: {
  20053. source: "./media/characters/evelyn/front.svg",
  20054. extra: 208 / 180
  20055. }
  20056. },
  20057. },
  20058. [
  20059. {
  20060. name: "Normal",
  20061. height: math.unit(2 + 8 / 12, "feet"),
  20062. default: true
  20063. },
  20064. ]
  20065. ))
  20066. characterMakers.push(() => makeCharacter(
  20067. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  20068. {
  20069. front: {
  20070. height: math.unit(5 + 9 / 12, "feet"),
  20071. weight: math.unit(139, "lb"),
  20072. name: "Front",
  20073. image: {
  20074. source: "./media/characters/inca/front.svg",
  20075. extra: 294 / 291,
  20076. bottom: 0.03
  20077. }
  20078. },
  20079. },
  20080. [
  20081. {
  20082. name: "Normal",
  20083. height: math.unit(5 + 9 / 12, "feet"),
  20084. default: true
  20085. },
  20086. ]
  20087. ))
  20088. characterMakers.push(() => makeCharacter(
  20089. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  20090. {
  20091. front: {
  20092. height: math.unit(6 + 3 / 12, "feet"),
  20093. weight: math.unit(185, "lb"),
  20094. name: "Front",
  20095. image: {
  20096. source: "./media/characters/mera/front.svg",
  20097. extra: 291 / 277,
  20098. bottom: 0.03
  20099. }
  20100. },
  20101. },
  20102. [
  20103. {
  20104. name: "Normal",
  20105. height: math.unit(6 + 3 / 12, "feet"),
  20106. default: true
  20107. },
  20108. ]
  20109. ))
  20110. characterMakers.push(() => makeCharacter(
  20111. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  20112. {
  20113. front: {
  20114. height: math.unit(6 + 7 / 12, "feet"),
  20115. weight: math.unit(160, "lb"),
  20116. name: "Front",
  20117. image: {
  20118. source: "./media/characters/ceres/front.svg",
  20119. extra: 1023 / 950,
  20120. bottom: 0.027
  20121. }
  20122. },
  20123. back: {
  20124. height: math.unit(6 + 7 / 12, "feet"),
  20125. weight: math.unit(160, "lb"),
  20126. name: "Back",
  20127. image: {
  20128. source: "./media/characters/ceres/back.svg",
  20129. extra: 1023 / 950
  20130. }
  20131. },
  20132. },
  20133. [
  20134. {
  20135. name: "Normal",
  20136. height: math.unit(6 + 7 / 12, "feet"),
  20137. default: true
  20138. },
  20139. ]
  20140. ))
  20141. characterMakers.push(() => makeCharacter(
  20142. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  20143. {
  20144. front: {
  20145. height: math.unit(5 + 10 / 12, "feet"),
  20146. weight: math.unit(150, "lb"),
  20147. name: "Front",
  20148. image: {
  20149. source: "./media/characters/kris/front.svg",
  20150. extra: 885 / 803,
  20151. bottom: 0.03
  20152. }
  20153. },
  20154. },
  20155. [
  20156. {
  20157. name: "Normal",
  20158. height: math.unit(5 + 10 / 12, "feet"),
  20159. default: true
  20160. },
  20161. ]
  20162. ))
  20163. characterMakers.push(() => makeCharacter(
  20164. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  20165. {
  20166. front: {
  20167. height: math.unit(7, "feet"),
  20168. weight: math.unit(120, "kg"),
  20169. name: "Front",
  20170. image: {
  20171. source: "./media/characters/taluthus/front.svg",
  20172. extra: 903 / 833,
  20173. bottom: 0.015
  20174. }
  20175. },
  20176. },
  20177. [
  20178. {
  20179. name: "Normal",
  20180. height: math.unit(7, "feet"),
  20181. default: true
  20182. },
  20183. {
  20184. name: "Macro",
  20185. height: math.unit(300, "feet")
  20186. },
  20187. ]
  20188. ))
  20189. characterMakers.push(() => makeCharacter(
  20190. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  20191. {
  20192. front: {
  20193. height: math.unit(5 + 9 / 12, "feet"),
  20194. weight: math.unit(145, "lb"),
  20195. name: "Front",
  20196. image: {
  20197. source: "./media/characters/dawn/front.svg",
  20198. extra: 2094 / 2016,
  20199. bottom: 0.025
  20200. }
  20201. },
  20202. back: {
  20203. height: math.unit(5 + 9 / 12, "feet"),
  20204. weight: math.unit(160, "lb"),
  20205. name: "Back",
  20206. image: {
  20207. source: "./media/characters/dawn/back.svg",
  20208. extra: 2112 / 2080,
  20209. bottom: 0.005
  20210. }
  20211. },
  20212. },
  20213. [
  20214. {
  20215. name: "Normal",
  20216. height: math.unit(6 + 7 / 12, "feet"),
  20217. default: true
  20218. },
  20219. ]
  20220. ))
  20221. characterMakers.push(() => makeCharacter(
  20222. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  20223. {
  20224. anthro: {
  20225. height: math.unit(8 + 3 / 12, "feet"),
  20226. weight: math.unit(450, "lb"),
  20227. name: "Anthro",
  20228. image: {
  20229. source: "./media/characters/arador/anthro.svg",
  20230. extra: 1835 / 1718,
  20231. bottom: 0.025
  20232. }
  20233. },
  20234. feral: {
  20235. height: math.unit(4, "feet"),
  20236. weight: math.unit(200, "lb"),
  20237. name: "Feral",
  20238. image: {
  20239. source: "./media/characters/arador/feral.svg",
  20240. extra: 1683 / 1514,
  20241. bottom: 0.07
  20242. }
  20243. },
  20244. },
  20245. [
  20246. {
  20247. name: "Normal",
  20248. height: math.unit(8 + 3 / 12, "feet")
  20249. },
  20250. {
  20251. name: "Macro",
  20252. height: math.unit(82.5, "feet"),
  20253. default: true
  20254. },
  20255. ]
  20256. ))
  20257. characterMakers.push(() => makeCharacter(
  20258. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  20259. {
  20260. front: {
  20261. height: math.unit(5 + 10 / 12, "feet"),
  20262. weight: math.unit(125, "lb"),
  20263. name: "Front",
  20264. image: {
  20265. source: "./media/characters/dharsi/front.svg",
  20266. extra: 716 / 630,
  20267. bottom: 0.035
  20268. }
  20269. },
  20270. },
  20271. [
  20272. {
  20273. name: "Nano",
  20274. height: math.unit(100, "nm")
  20275. },
  20276. {
  20277. name: "Micro",
  20278. height: math.unit(2, "inches")
  20279. },
  20280. {
  20281. name: "Normal",
  20282. height: math.unit(5 + 10 / 12, "feet"),
  20283. default: true
  20284. },
  20285. {
  20286. name: "Macro",
  20287. height: math.unit(1000, "feet")
  20288. },
  20289. {
  20290. name: "Megamacro",
  20291. height: math.unit(10, "miles")
  20292. },
  20293. {
  20294. name: "Gigamacro",
  20295. height: math.unit(3000, "miles")
  20296. },
  20297. {
  20298. name: "Teramacro",
  20299. height: math.unit(500000, "miles")
  20300. },
  20301. {
  20302. name: "Teramacro+",
  20303. height: math.unit(30, "galaxies")
  20304. },
  20305. ]
  20306. ))
  20307. characterMakers.push(() => makeCharacter(
  20308. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  20309. {
  20310. front: {
  20311. height: math.unit(6, "feet"),
  20312. weight: math.unit(150, "lb"),
  20313. name: "Front",
  20314. image: {
  20315. source: "./media/characters/deathy/front.svg",
  20316. extra: 1552 / 1463,
  20317. bottom: 0.025
  20318. }
  20319. },
  20320. side: {
  20321. height: math.unit(6, "feet"),
  20322. weight: math.unit(150, "lb"),
  20323. name: "Side",
  20324. image: {
  20325. source: "./media/characters/deathy/side.svg",
  20326. extra: 1604 / 1455,
  20327. bottom: 0.025
  20328. }
  20329. },
  20330. back: {
  20331. height: math.unit(6, "feet"),
  20332. weight: math.unit(150, "lb"),
  20333. name: "Back",
  20334. image: {
  20335. source: "./media/characters/deathy/back.svg",
  20336. extra: 1580 / 1463,
  20337. bottom: 0.005
  20338. }
  20339. },
  20340. },
  20341. [
  20342. {
  20343. name: "Micro",
  20344. height: math.unit(5, "millimeters")
  20345. },
  20346. {
  20347. name: "Normal",
  20348. height: math.unit(6 + 5 / 12, "feet"),
  20349. default: true
  20350. },
  20351. ]
  20352. ))
  20353. characterMakers.push(() => makeCharacter(
  20354. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  20355. {
  20356. front: {
  20357. height: math.unit(16, "feet"),
  20358. weight: math.unit(4000, "lb"),
  20359. name: "Front",
  20360. image: {
  20361. source: "./media/characters/juniper/front.svg",
  20362. bottom: 0.04
  20363. }
  20364. },
  20365. },
  20366. [
  20367. {
  20368. name: "Normal",
  20369. height: math.unit(16, "feet"),
  20370. default: true
  20371. },
  20372. ]
  20373. ))
  20374. characterMakers.push(() => makeCharacter(
  20375. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  20376. {
  20377. front: {
  20378. height: math.unit(6, "feet"),
  20379. weight: math.unit(150, "lb"),
  20380. name: "Front",
  20381. image: {
  20382. source: "./media/characters/hipster/front.svg",
  20383. extra: 1312 / 1209,
  20384. bottom: 0.025
  20385. }
  20386. },
  20387. back: {
  20388. height: math.unit(6, "feet"),
  20389. weight: math.unit(150, "lb"),
  20390. name: "Back",
  20391. image: {
  20392. source: "./media/characters/hipster/back.svg",
  20393. extra: 1281 / 1196,
  20394. bottom: 0.01
  20395. }
  20396. },
  20397. },
  20398. [
  20399. {
  20400. name: "Micro",
  20401. height: math.unit(1, "mm")
  20402. },
  20403. {
  20404. name: "Normal",
  20405. height: math.unit(4, "inches"),
  20406. default: true
  20407. },
  20408. {
  20409. name: "Macro",
  20410. height: math.unit(500, "feet")
  20411. },
  20412. {
  20413. name: "Megamacro",
  20414. height: math.unit(1000, "miles")
  20415. },
  20416. ]
  20417. ))
  20418. characterMakers.push(() => makeCharacter(
  20419. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  20420. {
  20421. front: {
  20422. height: math.unit(6, "feet"),
  20423. weight: math.unit(150, "lb"),
  20424. name: "Front",
  20425. image: {
  20426. source: "./media/characters/tendirmuldr/front.svg",
  20427. extra: 1878 / 1772,
  20428. bottom: 0.015
  20429. }
  20430. },
  20431. },
  20432. [
  20433. {
  20434. name: "Megamacro",
  20435. height: math.unit(1500, "miles"),
  20436. default: true
  20437. },
  20438. ]
  20439. ))
  20440. characterMakers.push(() => makeCharacter(
  20441. { name: "Mort", species: ["demon"], tags: ["feral"] },
  20442. {
  20443. front: {
  20444. height: math.unit(14, "feet"),
  20445. weight: math.unit(12000, "lb"),
  20446. name: "Front",
  20447. image: {
  20448. source: "./media/characters/mort/front.svg",
  20449. extra: 365 / 318,
  20450. bottom: 0.01
  20451. }
  20452. },
  20453. side: {
  20454. height: math.unit(14, "feet"),
  20455. weight: math.unit(12000, "lb"),
  20456. name: "Side",
  20457. image: {
  20458. source: "./media/characters/mort/side.svg",
  20459. extra: 365 / 318,
  20460. bottom: 0.052
  20461. },
  20462. default: true
  20463. },
  20464. back: {
  20465. height: math.unit(14, "feet"),
  20466. weight: math.unit(12000, "lb"),
  20467. name: "Back",
  20468. image: {
  20469. source: "./media/characters/mort/back.svg",
  20470. extra: 371 / 332,
  20471. bottom: 0.18
  20472. }
  20473. },
  20474. },
  20475. [
  20476. {
  20477. name: "Normal",
  20478. height: math.unit(14, "feet"),
  20479. default: true
  20480. },
  20481. ]
  20482. ))
  20483. characterMakers.push(() => makeCharacter(
  20484. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  20485. {
  20486. front: {
  20487. height: math.unit(8, "feet"),
  20488. weight: math.unit(1, "ton"),
  20489. name: "Front",
  20490. image: {
  20491. source: "./media/characters/lycoa/front.svg",
  20492. extra: 1875 / 1789,
  20493. bottom: 0.022
  20494. }
  20495. },
  20496. back: {
  20497. height: math.unit(8, "feet"),
  20498. weight: math.unit(1, "ton"),
  20499. name: "Back",
  20500. image: {
  20501. source: "./media/characters/lycoa/back.svg",
  20502. extra: 1835 / 1781,
  20503. bottom: 0.03
  20504. }
  20505. },
  20506. head: {
  20507. height: math.unit(2.1, "feet"),
  20508. name: "Head",
  20509. image: {
  20510. source: "./media/characters/lycoa/head.svg"
  20511. }
  20512. },
  20513. tailmaw: {
  20514. height: math.unit(1.9, "feet"),
  20515. name: "Tailmaw",
  20516. image: {
  20517. source: "./media/characters/lycoa/tailmaw.svg"
  20518. }
  20519. },
  20520. tentacles: {
  20521. height: math.unit(2.1, "feet"),
  20522. name: "Tentacles",
  20523. image: {
  20524. source: "./media/characters/lycoa/tentacles.svg"
  20525. }
  20526. },
  20527. dick: {
  20528. height: math.unit(1.73, "feet"),
  20529. name: "Dick",
  20530. image: {
  20531. source: "./media/characters/lycoa/dick.svg"
  20532. }
  20533. },
  20534. },
  20535. [
  20536. {
  20537. name: "Normal",
  20538. height: math.unit(8, "feet"),
  20539. default: true
  20540. },
  20541. {
  20542. name: "Macro",
  20543. height: math.unit(30, "feet")
  20544. },
  20545. ]
  20546. ))
  20547. characterMakers.push(() => makeCharacter(
  20548. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  20549. {
  20550. front: {
  20551. height: math.unit(4 + 2 / 12, "feet"),
  20552. weight: math.unit(70, "lb"),
  20553. name: "Front",
  20554. image: {
  20555. source: "./media/characters/naldara/front.svg",
  20556. extra: 841 / 720,
  20557. bottom: 0.04
  20558. }
  20559. },
  20560. naga: {
  20561. height: math.unit(23, "feet"),
  20562. weight: math.unit(15000, "kg"),
  20563. name: "Naga",
  20564. image: {
  20565. source: "./media/characters/naldara/naga.svg",
  20566. extra: 3290 / 2959,
  20567. bottom: 124 / 3432
  20568. }
  20569. },
  20570. },
  20571. [
  20572. {
  20573. name: "Normal",
  20574. height: math.unit(4 + 2 / 12, "feet"),
  20575. default: true
  20576. },
  20577. ]
  20578. ))
  20579. characterMakers.push(() => makeCharacter(
  20580. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  20581. {
  20582. front: {
  20583. height: math.unit(13 + 7 / 12, "feet"),
  20584. weight: math.unit(1500, "lb"),
  20585. name: "Front",
  20586. image: {
  20587. source: "./media/characters/briar/front.svg",
  20588. extra: 626 / 596,
  20589. bottom: 0.08
  20590. }
  20591. },
  20592. },
  20593. [
  20594. {
  20595. name: "Normal",
  20596. height: math.unit(13 + 7 / 12, "feet"),
  20597. default: true
  20598. },
  20599. ]
  20600. ))
  20601. characterMakers.push(() => makeCharacter(
  20602. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  20603. {
  20604. side: {
  20605. height: math.unit(10, "feet"),
  20606. weight: math.unit(500, "lb"),
  20607. name: "Side",
  20608. image: {
  20609. source: "./media/characters/vanguard/side.svg",
  20610. extra: 502 / 425,
  20611. bottom: 0.087
  20612. }
  20613. },
  20614. },
  20615. [
  20616. {
  20617. name: "Normal",
  20618. height: math.unit(10, "feet"),
  20619. default: true
  20620. },
  20621. ]
  20622. ))
  20623. characterMakers.push(() => makeCharacter(
  20624. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  20625. {
  20626. front: {
  20627. height: math.unit(7.5, "feet"),
  20628. weight: math.unit(2, "lb"),
  20629. name: "Front",
  20630. image: {
  20631. source: "./media/characters/artemis/front.svg",
  20632. extra: 1192 / 1075,
  20633. bottom: 0.07
  20634. }
  20635. },
  20636. frontNsfw: {
  20637. height: math.unit(7.5, "feet"),
  20638. weight: math.unit(2, "lb"),
  20639. name: "Front (NSFW)",
  20640. image: {
  20641. source: "./media/characters/artemis/front-nsfw.svg",
  20642. extra: 1192 / 1075,
  20643. bottom: 0.07
  20644. }
  20645. },
  20646. frontNsfwer: {
  20647. height: math.unit(7.5, "feet"),
  20648. weight: math.unit(2, "lb"),
  20649. name: "Front (NSFW-er)",
  20650. image: {
  20651. source: "./media/characters/artemis/front-nsfwer.svg",
  20652. extra: 1192 / 1075,
  20653. bottom: 0.07
  20654. }
  20655. },
  20656. side: {
  20657. height: math.unit(7.5, "feet"),
  20658. weight: math.unit(2, "lb"),
  20659. name: "Side",
  20660. image: {
  20661. source: "./media/characters/artemis/side.svg",
  20662. extra: 1192 / 1075,
  20663. bottom: 0.07
  20664. }
  20665. },
  20666. sideNsfw: {
  20667. height: math.unit(7.5, "feet"),
  20668. weight: math.unit(2, "lb"),
  20669. name: "Side (NSFW)",
  20670. image: {
  20671. source: "./media/characters/artemis/side-nsfw.svg",
  20672. extra: 1192 / 1075,
  20673. bottom: 0.07
  20674. }
  20675. },
  20676. sideNsfwer: {
  20677. height: math.unit(7.5, "feet"),
  20678. weight: math.unit(2, "lb"),
  20679. name: "Side (NSFW-er)",
  20680. image: {
  20681. source: "./media/characters/artemis/side-nsfwer.svg",
  20682. extra: 1192 / 1075,
  20683. bottom: 0.07
  20684. }
  20685. },
  20686. maw: {
  20687. height: math.unit(1.1, "feet"),
  20688. name: "Maw",
  20689. image: {
  20690. source: "./media/characters/artemis/maw.svg"
  20691. }
  20692. },
  20693. stomach: {
  20694. height: math.unit(0.95, "feet"),
  20695. name: "Stomach",
  20696. image: {
  20697. source: "./media/characters/artemis/stomach.svg"
  20698. }
  20699. },
  20700. dickCanine: {
  20701. height: math.unit(1, "feet"),
  20702. name: "Dick (Canine)",
  20703. image: {
  20704. source: "./media/characters/artemis/dick-canine.svg"
  20705. }
  20706. },
  20707. dickEquine: {
  20708. height: math.unit(0.85, "feet"),
  20709. name: "Dick (Equine)",
  20710. image: {
  20711. source: "./media/characters/artemis/dick-equine.svg"
  20712. }
  20713. },
  20714. dickExotic: {
  20715. height: math.unit(0.85, "feet"),
  20716. name: "Dick (Exotic)",
  20717. image: {
  20718. source: "./media/characters/artemis/dick-exotic.svg"
  20719. }
  20720. },
  20721. },
  20722. [
  20723. {
  20724. name: "Normal",
  20725. height: math.unit(7.5, "feet"),
  20726. default: true
  20727. },
  20728. {
  20729. name: "Enlarged",
  20730. height: math.unit(12, "feet")
  20731. },
  20732. ]
  20733. ))
  20734. characterMakers.push(() => makeCharacter(
  20735. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  20736. {
  20737. front: {
  20738. height: math.unit(5 + 3 / 12, "feet"),
  20739. weight: math.unit(160, "lb"),
  20740. name: "Front",
  20741. image: {
  20742. source: "./media/characters/kira/front.svg",
  20743. extra: 906 / 786,
  20744. bottom: 0.01
  20745. }
  20746. },
  20747. back: {
  20748. height: math.unit(5 + 3 / 12, "feet"),
  20749. weight: math.unit(160, "lb"),
  20750. name: "Back",
  20751. image: {
  20752. source: "./media/characters/kira/back.svg",
  20753. extra: 882 / 757,
  20754. bottom: 0.005
  20755. }
  20756. },
  20757. frontDressed: {
  20758. height: math.unit(5 + 3 / 12, "feet"),
  20759. weight: math.unit(160, "lb"),
  20760. name: "Front (Dressed)",
  20761. image: {
  20762. source: "./media/characters/kira/front-dressed.svg",
  20763. extra: 906 / 786,
  20764. bottom: 0.01
  20765. }
  20766. },
  20767. beans: {
  20768. height: math.unit(0.92, "feet"),
  20769. name: "Beans",
  20770. image: {
  20771. source: "./media/characters/kira/beans.svg"
  20772. }
  20773. },
  20774. },
  20775. [
  20776. {
  20777. name: "Normal",
  20778. height: math.unit(5 + 3 / 12, "feet"),
  20779. default: true
  20780. },
  20781. ]
  20782. ))
  20783. characterMakers.push(() => makeCharacter(
  20784. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  20785. {
  20786. front: {
  20787. height: math.unit(5 + 4 / 12, "feet"),
  20788. weight: math.unit(145, "lb"),
  20789. name: "Front",
  20790. image: {
  20791. source: "./media/characters/scramble/front.svg",
  20792. extra: 763 / 727,
  20793. bottom: 0.05
  20794. }
  20795. },
  20796. back: {
  20797. height: math.unit(5 + 4 / 12, "feet"),
  20798. weight: math.unit(145, "lb"),
  20799. name: "Back",
  20800. image: {
  20801. source: "./media/characters/scramble/back.svg",
  20802. extra: 826 / 737,
  20803. bottom: 0.002
  20804. }
  20805. },
  20806. },
  20807. [
  20808. {
  20809. name: "Normal",
  20810. height: math.unit(5 + 4 / 12, "feet"),
  20811. default: true
  20812. },
  20813. ]
  20814. ))
  20815. characterMakers.push(() => makeCharacter(
  20816. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  20817. {
  20818. side: {
  20819. height: math.unit(6 + 2 / 12, "feet"),
  20820. weight: math.unit(190, "lb"),
  20821. name: "Side",
  20822. image: {
  20823. source: "./media/characters/biscuit/side.svg",
  20824. extra: 858 / 791,
  20825. bottom: 0.044
  20826. }
  20827. },
  20828. },
  20829. [
  20830. {
  20831. name: "Normal",
  20832. height: math.unit(6 + 2 / 12, "feet"),
  20833. default: true
  20834. },
  20835. ]
  20836. ))
  20837. characterMakers.push(() => makeCharacter(
  20838. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  20839. {
  20840. front: {
  20841. height: math.unit(5 + 2 / 12, "feet"),
  20842. weight: math.unit(120, "lb"),
  20843. name: "Front",
  20844. image: {
  20845. source: "./media/characters/poffin/front.svg",
  20846. extra: 786 / 680,
  20847. bottom: 0.005
  20848. }
  20849. },
  20850. },
  20851. [
  20852. {
  20853. name: "Normal",
  20854. height: math.unit(5 + 2 / 12, "feet"),
  20855. default: true
  20856. },
  20857. ]
  20858. ))
  20859. characterMakers.push(() => makeCharacter(
  20860. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  20861. {
  20862. front: {
  20863. height: math.unit(6 + 3 / 12, "feet"),
  20864. weight: math.unit(519, "lb"),
  20865. name: "Front",
  20866. image: {
  20867. source: "./media/characters/dhari/front.svg",
  20868. extra: 1048 / 946,
  20869. bottom: 0.015
  20870. }
  20871. },
  20872. back: {
  20873. height: math.unit(6 + 3 / 12, "feet"),
  20874. weight: math.unit(519, "lb"),
  20875. name: "Back",
  20876. image: {
  20877. source: "./media/characters/dhari/back.svg",
  20878. extra: 1048 / 931,
  20879. bottom: 0.005
  20880. }
  20881. },
  20882. frontDressed: {
  20883. height: math.unit(6 + 3 / 12, "feet"),
  20884. weight: math.unit(519, "lb"),
  20885. name: "Front (Dressed)",
  20886. image: {
  20887. source: "./media/characters/dhari/front-dressed.svg",
  20888. extra: 1713 / 1546,
  20889. bottom: 0.02
  20890. }
  20891. },
  20892. backDressed: {
  20893. height: math.unit(6 + 3 / 12, "feet"),
  20894. weight: math.unit(519, "lb"),
  20895. name: "Back (Dressed)",
  20896. image: {
  20897. source: "./media/characters/dhari/back-dressed.svg",
  20898. extra: 1699 / 1537,
  20899. bottom: 0.01
  20900. }
  20901. },
  20902. maw: {
  20903. height: math.unit(0.95, "feet"),
  20904. name: "Maw",
  20905. image: {
  20906. source: "./media/characters/dhari/maw.svg"
  20907. }
  20908. },
  20909. wereFront: {
  20910. height: math.unit(12 + 8 / 12, "feet"),
  20911. weight: math.unit(4000, "lb"),
  20912. name: "Front (Were)",
  20913. image: {
  20914. source: "./media/characters/dhari/were-front.svg",
  20915. extra: 1065 / 969,
  20916. bottom: 0.015
  20917. }
  20918. },
  20919. wereBack: {
  20920. height: math.unit(12 + 8 / 12, "feet"),
  20921. weight: math.unit(4000, "lb"),
  20922. name: "Back (Were)",
  20923. image: {
  20924. source: "./media/characters/dhari/were-back.svg",
  20925. extra: 1065 / 969,
  20926. bottom: 0.012
  20927. }
  20928. },
  20929. wereMaw: {
  20930. height: math.unit(0.625, "meters"),
  20931. name: "Maw (Were)",
  20932. image: {
  20933. source: "./media/characters/dhari/were-maw.svg"
  20934. }
  20935. },
  20936. },
  20937. [
  20938. {
  20939. name: "Normal",
  20940. height: math.unit(6 + 3 / 12, "feet"),
  20941. default: true
  20942. },
  20943. ]
  20944. ))
  20945. characterMakers.push(() => makeCharacter(
  20946. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  20947. {
  20948. anthro: {
  20949. height: math.unit(5 + 7 / 12, "feet"),
  20950. weight: math.unit(175, "lb"),
  20951. name: "Anthro",
  20952. image: {
  20953. source: "./media/characters/rena-dyne/anthro.svg",
  20954. extra: 1849 / 1785,
  20955. bottom: 0.005
  20956. }
  20957. },
  20958. taur: {
  20959. height: math.unit(15 + 6 / 12, "feet"),
  20960. weight: math.unit(8000, "lb"),
  20961. name: "Taur",
  20962. image: {
  20963. source: "./media/characters/rena-dyne/taur.svg",
  20964. extra: 2315 / 2234,
  20965. bottom: 0.033
  20966. }
  20967. },
  20968. },
  20969. [
  20970. {
  20971. name: "Normal",
  20972. height: math.unit(5 + 7 / 12, "feet"),
  20973. default: true
  20974. },
  20975. ]
  20976. ))
  20977. characterMakers.push(() => makeCharacter(
  20978. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  20979. {
  20980. front: {
  20981. height: math.unit(8, "feet"),
  20982. weight: math.unit(600, "lb"),
  20983. name: "Front",
  20984. image: {
  20985. source: "./media/characters/weremeep/front.svg",
  20986. extra: 967 / 862,
  20987. bottom: 0.01
  20988. }
  20989. },
  20990. },
  20991. [
  20992. {
  20993. name: "Normal",
  20994. height: math.unit(8, "feet"),
  20995. default: true
  20996. },
  20997. {
  20998. name: "Lorg",
  20999. height: math.unit(12, "feet")
  21000. },
  21001. {
  21002. name: "Oh Lawd She Comin'",
  21003. height: math.unit(20, "feet")
  21004. },
  21005. ]
  21006. ))
  21007. characterMakers.push(() => makeCharacter(
  21008. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  21009. {
  21010. front: {
  21011. height: math.unit(4, "feet"),
  21012. weight: math.unit(90, "lb"),
  21013. name: "Front",
  21014. image: {
  21015. source: "./media/characters/reza/front.svg",
  21016. extra: 1183 / 1111,
  21017. bottom: 0.017
  21018. }
  21019. },
  21020. back: {
  21021. height: math.unit(4, "feet"),
  21022. weight: math.unit(90, "lb"),
  21023. name: "Back",
  21024. image: {
  21025. source: "./media/characters/reza/back.svg",
  21026. extra: 1183 / 1111,
  21027. bottom: 0.01
  21028. }
  21029. },
  21030. drake: {
  21031. height: math.unit(30, "feet"),
  21032. weight: math.unit(246960, "lb"),
  21033. name: "Drake",
  21034. image: {
  21035. source: "./media/characters/reza/drake.svg",
  21036. extra: 2350 / 2024,
  21037. bottom: 60.7 / 2403
  21038. }
  21039. },
  21040. },
  21041. [
  21042. {
  21043. name: "Normal",
  21044. height: math.unit(4, "feet"),
  21045. default: true
  21046. },
  21047. ]
  21048. ))
  21049. characterMakers.push(() => makeCharacter(
  21050. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  21051. {
  21052. side: {
  21053. height: math.unit(15, "feet"),
  21054. weight: math.unit(14, "tons"),
  21055. name: "Side",
  21056. image: {
  21057. source: "./media/characters/athea/side.svg",
  21058. extra: 960 / 540,
  21059. bottom: 0.003
  21060. }
  21061. },
  21062. sitting: {
  21063. height: math.unit(6 * 2.85, "feet"),
  21064. weight: math.unit(14, "tons"),
  21065. name: "Sitting",
  21066. image: {
  21067. source: "./media/characters/athea/sitting.svg",
  21068. extra: 621 / 581,
  21069. bottom: 0.075
  21070. }
  21071. },
  21072. maw: {
  21073. height: math.unit(7.59498031496063, "feet"),
  21074. name: "Maw",
  21075. image: {
  21076. source: "./media/characters/athea/maw.svg"
  21077. }
  21078. },
  21079. },
  21080. [
  21081. {
  21082. name: "Lap Cat",
  21083. height: math.unit(2.5, "feet")
  21084. },
  21085. {
  21086. name: "Minimacro",
  21087. height: math.unit(15, "feet"),
  21088. default: true
  21089. },
  21090. {
  21091. name: "Macro",
  21092. height: math.unit(120, "feet")
  21093. },
  21094. {
  21095. name: "Macro+",
  21096. height: math.unit(640, "feet")
  21097. },
  21098. {
  21099. name: "Colossus",
  21100. height: math.unit(2.2, "miles")
  21101. },
  21102. ]
  21103. ))
  21104. characterMakers.push(() => makeCharacter(
  21105. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  21106. {
  21107. front: {
  21108. height: math.unit(8 + 8 / 12, "feet"),
  21109. weight: math.unit(130, "kg"),
  21110. name: "Front",
  21111. image: {
  21112. source: "./media/characters/seroko/front.svg",
  21113. extra: 1385 / 1280,
  21114. bottom: 0.025
  21115. }
  21116. },
  21117. back: {
  21118. height: math.unit(8 + 8 / 12, "feet"),
  21119. weight: math.unit(130, "kg"),
  21120. name: "Back",
  21121. image: {
  21122. source: "./media/characters/seroko/back.svg",
  21123. extra: 1369 / 1238,
  21124. bottom: 0.018
  21125. }
  21126. },
  21127. frontDressed: {
  21128. height: math.unit(8 + 8 / 12, "feet"),
  21129. weight: math.unit(130, "kg"),
  21130. name: "Front (Dressed)",
  21131. image: {
  21132. source: "./media/characters/seroko/front-dressed.svg",
  21133. extra: 1366 / 1275,
  21134. bottom: 0.03
  21135. }
  21136. },
  21137. },
  21138. [
  21139. {
  21140. name: "Normal",
  21141. height: math.unit(8 + 8 / 12, "feet"),
  21142. default: true
  21143. },
  21144. ]
  21145. ))
  21146. characterMakers.push(() => makeCharacter(
  21147. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  21148. {
  21149. front: {
  21150. height: math.unit(5.5, "feet"),
  21151. weight: math.unit(160, "lb"),
  21152. name: "Front",
  21153. image: {
  21154. source: "./media/characters/quatzi/front.svg",
  21155. extra: 2346 / 2242,
  21156. bottom: 0.015
  21157. }
  21158. },
  21159. },
  21160. [
  21161. {
  21162. name: "Normal",
  21163. height: math.unit(5.5, "feet"),
  21164. default: true
  21165. },
  21166. {
  21167. name: "Big",
  21168. height: math.unit(7.7, "feet")
  21169. },
  21170. ]
  21171. ))
  21172. characterMakers.push(() => makeCharacter(
  21173. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  21174. {
  21175. front: {
  21176. height: math.unit(5 + 11 / 12, "feet"),
  21177. weight: math.unit(180, "lb"),
  21178. name: "Front",
  21179. image: {
  21180. source: "./media/characters/sen/front.svg",
  21181. extra: 1321 / 1254,
  21182. bottom: 0.015
  21183. }
  21184. },
  21185. side: {
  21186. height: math.unit(5 + 11 / 12, "feet"),
  21187. weight: math.unit(180, "lb"),
  21188. name: "Side",
  21189. image: {
  21190. source: "./media/characters/sen/side.svg",
  21191. extra: 1321 / 1254,
  21192. bottom: 0.007
  21193. }
  21194. },
  21195. back: {
  21196. height: math.unit(5 + 11 / 12, "feet"),
  21197. weight: math.unit(180, "lb"),
  21198. name: "Back",
  21199. image: {
  21200. source: "./media/characters/sen/back.svg",
  21201. extra: 1321 / 1254
  21202. }
  21203. },
  21204. },
  21205. [
  21206. {
  21207. name: "Normal",
  21208. height: math.unit(5 + 11 / 12, "feet"),
  21209. default: true
  21210. },
  21211. ]
  21212. ))
  21213. characterMakers.push(() => makeCharacter(
  21214. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  21215. {
  21216. front: {
  21217. height: math.unit(166.6, "cm"),
  21218. weight: math.unit(66.6, "kg"),
  21219. name: "Front",
  21220. image: {
  21221. source: "./media/characters/fruity/front.svg",
  21222. extra: 1510 / 1386,
  21223. bottom: 0.04
  21224. }
  21225. },
  21226. back: {
  21227. height: math.unit(166.6, "cm"),
  21228. weight: math.unit(66.6, "lb"),
  21229. name: "Back",
  21230. image: {
  21231. source: "./media/characters/fruity/back.svg",
  21232. extra: 1563 / 1435,
  21233. bottom: 0.005
  21234. }
  21235. },
  21236. },
  21237. [
  21238. {
  21239. name: "Normal",
  21240. height: math.unit(166.6, "cm"),
  21241. default: true
  21242. },
  21243. {
  21244. name: "Demonic",
  21245. height: math.unit(166.6, "feet")
  21246. },
  21247. ]
  21248. ))
  21249. characterMakers.push(() => makeCharacter(
  21250. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  21251. {
  21252. side: {
  21253. height: math.unit(10, "feet"),
  21254. weight: math.unit(500, "lb"),
  21255. name: "Side",
  21256. image: {
  21257. source: "./media/characters/zost/side.svg",
  21258. extra: 966 / 880,
  21259. bottom: 0.075
  21260. }
  21261. },
  21262. mawFront: {
  21263. height: math.unit(1.08, "meters"),
  21264. name: "Maw (Front)",
  21265. image: {
  21266. source: "./media/characters/zost/maw-front.svg"
  21267. }
  21268. },
  21269. mawSide: {
  21270. height: math.unit(2.66, "feet"),
  21271. name: "Maw (Side)",
  21272. image: {
  21273. source: "./media/characters/zost/maw-side.svg"
  21274. }
  21275. },
  21276. },
  21277. [
  21278. {
  21279. name: "Normal",
  21280. height: math.unit(10, "feet"),
  21281. default: true
  21282. },
  21283. ]
  21284. ))
  21285. characterMakers.push(() => makeCharacter(
  21286. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  21287. {
  21288. front: {
  21289. height: math.unit(5 + 4 / 12, "feet"),
  21290. weight: math.unit(120, "lb"),
  21291. name: "Front",
  21292. image: {
  21293. source: "./media/characters/luci/front.svg",
  21294. extra: 1985 / 1884,
  21295. bottom: 0.04
  21296. }
  21297. },
  21298. back: {
  21299. height: math.unit(5 + 4 / 12, "feet"),
  21300. weight: math.unit(120, "lb"),
  21301. name: "Back",
  21302. image: {
  21303. source: "./media/characters/luci/back.svg",
  21304. extra: 1892 / 1791,
  21305. bottom: 0.002
  21306. }
  21307. },
  21308. },
  21309. [
  21310. {
  21311. name: "Normal",
  21312. height: math.unit(5 + 4 / 12, "feet"),
  21313. default: true
  21314. },
  21315. ]
  21316. ))
  21317. characterMakers.push(() => makeCharacter(
  21318. { name: "2th", species: ["monster"], tags: ["anthro"] },
  21319. {
  21320. front: {
  21321. height: math.unit(1500, "feet"),
  21322. weight: math.unit(3.8e6, "tons"),
  21323. name: "Front",
  21324. image: {
  21325. source: "./media/characters/2th/front.svg",
  21326. extra: 3489 / 3350,
  21327. bottom: 0.1
  21328. }
  21329. },
  21330. foot: {
  21331. height: math.unit(461, "feet"),
  21332. name: "Foot",
  21333. image: {
  21334. source: "./media/characters/2th/foot.svg"
  21335. }
  21336. },
  21337. },
  21338. [
  21339. {
  21340. name: "\"Micro\"",
  21341. height: math.unit(15 + 7 / 12, "feet")
  21342. },
  21343. {
  21344. name: "Normal",
  21345. height: math.unit(1500, "feet"),
  21346. default: true
  21347. },
  21348. {
  21349. name: "Macro",
  21350. height: math.unit(5000, "feet")
  21351. },
  21352. {
  21353. name: "Megamacro",
  21354. height: math.unit(15, "miles")
  21355. },
  21356. {
  21357. name: "Gigamacro",
  21358. height: math.unit(4000, "miles")
  21359. },
  21360. {
  21361. name: "Galactic",
  21362. height: math.unit(50, "AU")
  21363. },
  21364. ]
  21365. ))
  21366. characterMakers.push(() => makeCharacter(
  21367. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  21368. {
  21369. front: {
  21370. height: math.unit(5 + 6 / 12, "feet"),
  21371. weight: math.unit(220, "lb"),
  21372. name: "Front",
  21373. image: {
  21374. source: "./media/characters/amethyst/front.svg",
  21375. extra: 2078 / 2040,
  21376. bottom: 0.045
  21377. }
  21378. },
  21379. back: {
  21380. height: math.unit(5 + 6 / 12, "feet"),
  21381. weight: math.unit(220, "lb"),
  21382. name: "Back",
  21383. image: {
  21384. source: "./media/characters/amethyst/back.svg",
  21385. extra: 2021 / 1989,
  21386. bottom: 0.02
  21387. }
  21388. },
  21389. },
  21390. [
  21391. {
  21392. name: "Normal",
  21393. height: math.unit(5 + 6 / 12, "feet"),
  21394. default: true
  21395. },
  21396. ]
  21397. ))
  21398. characterMakers.push(() => makeCharacter(
  21399. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  21400. {
  21401. front: {
  21402. height: math.unit(4 + 11 / 12, "feet"),
  21403. weight: math.unit(120, "lb"),
  21404. name: "Front",
  21405. image: {
  21406. source: "./media/characters/yumi-akiyama/front.svg",
  21407. extra: 1327 / 1235,
  21408. bottom: 0.02
  21409. }
  21410. },
  21411. back: {
  21412. height: math.unit(4 + 11 / 12, "feet"),
  21413. weight: math.unit(120, "lb"),
  21414. name: "Back",
  21415. image: {
  21416. source: "./media/characters/yumi-akiyama/back.svg",
  21417. extra: 1287 / 1245,
  21418. bottom: 0.002
  21419. }
  21420. },
  21421. },
  21422. [
  21423. {
  21424. name: "Galactic",
  21425. height: math.unit(50, "galaxies"),
  21426. default: true
  21427. },
  21428. {
  21429. name: "Universal",
  21430. height: math.unit(100, "universes")
  21431. },
  21432. ]
  21433. ))
  21434. characterMakers.push(() => makeCharacter(
  21435. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  21436. {
  21437. front: {
  21438. height: math.unit(8, "feet"),
  21439. weight: math.unit(500, "lb"),
  21440. name: "Front",
  21441. image: {
  21442. source: "./media/characters/rifter-yrmori/front.svg",
  21443. extra: 1180 / 1125,
  21444. bottom: 0.02
  21445. }
  21446. },
  21447. back: {
  21448. height: math.unit(8, "feet"),
  21449. weight: math.unit(500, "lb"),
  21450. name: "Back",
  21451. image: {
  21452. source: "./media/characters/rifter-yrmori/back.svg",
  21453. extra: 1190 / 1145,
  21454. bottom: 0.001
  21455. }
  21456. },
  21457. wings: {
  21458. height: math.unit(7.75, "feet"),
  21459. weight: math.unit(500, "lb"),
  21460. name: "Wings",
  21461. image: {
  21462. source: "./media/characters/rifter-yrmori/wings.svg",
  21463. extra: 1357 / 1285
  21464. }
  21465. },
  21466. maw: {
  21467. height: math.unit(0.8, "feet"),
  21468. name: "Maw",
  21469. image: {
  21470. source: "./media/characters/rifter-yrmori/maw.svg"
  21471. }
  21472. },
  21473. mawfront: {
  21474. height: math.unit(1.45, "feet"),
  21475. name: "Maw (Front)",
  21476. image: {
  21477. source: "./media/characters/rifter-yrmori/maw-front.svg"
  21478. }
  21479. },
  21480. },
  21481. [
  21482. {
  21483. name: "Normal",
  21484. height: math.unit(8, "feet"),
  21485. default: true
  21486. },
  21487. {
  21488. name: "Macro",
  21489. height: math.unit(42, "meters")
  21490. },
  21491. ]
  21492. ))
  21493. characterMakers.push(() => makeCharacter(
  21494. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  21495. {
  21496. were: {
  21497. height: math.unit(25 + 6 / 12, "feet"),
  21498. weight: math.unit(10000, "lb"),
  21499. name: "Were",
  21500. image: {
  21501. source: "./media/characters/tahajin/were.svg",
  21502. extra: 801 / 770,
  21503. bottom: 0.042
  21504. }
  21505. },
  21506. aquatic: {
  21507. height: math.unit(6 + 4 / 12, "feet"),
  21508. weight: math.unit(160, "lb"),
  21509. name: "Aquatic",
  21510. image: {
  21511. source: "./media/characters/tahajin/aquatic.svg",
  21512. extra: 572 / 542,
  21513. bottom: 0.04
  21514. }
  21515. },
  21516. chow: {
  21517. height: math.unit(8 + 11 / 12, "feet"),
  21518. weight: math.unit(450, "lb"),
  21519. name: "Chow",
  21520. image: {
  21521. source: "./media/characters/tahajin/chow.svg",
  21522. extra: 660 / 640,
  21523. bottom: 0.015
  21524. }
  21525. },
  21526. demiNaga: {
  21527. height: math.unit(6 + 8 / 12, "feet"),
  21528. weight: math.unit(300, "lb"),
  21529. name: "Demi Naga",
  21530. image: {
  21531. source: "./media/characters/tahajin/demi-naga.svg",
  21532. extra: 643 / 615,
  21533. bottom: 0.1
  21534. }
  21535. },
  21536. data: {
  21537. height: math.unit(5, "inches"),
  21538. weight: math.unit(0.1, "lb"),
  21539. name: "Data",
  21540. image: {
  21541. source: "./media/characters/tahajin/data.svg"
  21542. }
  21543. },
  21544. fluu: {
  21545. height: math.unit(5 + 7 / 12, "feet"),
  21546. weight: math.unit(140, "lb"),
  21547. name: "Fluu",
  21548. image: {
  21549. source: "./media/characters/tahajin/fluu.svg",
  21550. extra: 628 / 592,
  21551. bottom: 0.02
  21552. }
  21553. },
  21554. starWarrior: {
  21555. height: math.unit(4 + 5 / 12, "feet"),
  21556. weight: math.unit(50, "lb"),
  21557. name: "Star Warrior",
  21558. image: {
  21559. source: "./media/characters/tahajin/star-warrior.svg"
  21560. }
  21561. },
  21562. },
  21563. [
  21564. {
  21565. name: "Normal",
  21566. height: math.unit(25 + 6 / 12, "feet"),
  21567. default: true
  21568. },
  21569. ]
  21570. ))
  21571. characterMakers.push(() => makeCharacter(
  21572. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  21573. {
  21574. front: {
  21575. height: math.unit(8, "feet"),
  21576. weight: math.unit(350, "lb"),
  21577. name: "Front",
  21578. image: {
  21579. source: "./media/characters/gabira/front.svg",
  21580. extra: 608 / 580,
  21581. bottom: 0.03
  21582. }
  21583. },
  21584. back: {
  21585. height: math.unit(8, "feet"),
  21586. weight: math.unit(350, "lb"),
  21587. name: "Back",
  21588. image: {
  21589. source: "./media/characters/gabira/back.svg",
  21590. extra: 608 / 580,
  21591. bottom: 0.03
  21592. }
  21593. },
  21594. },
  21595. [
  21596. {
  21597. name: "Normal",
  21598. height: math.unit(8, "feet"),
  21599. default: true
  21600. },
  21601. ]
  21602. ))
  21603. characterMakers.push(() => makeCharacter(
  21604. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  21605. {
  21606. front: {
  21607. height: math.unit(5 + 3 / 12, "feet"),
  21608. weight: math.unit(137, "lb"),
  21609. name: "Front",
  21610. image: {
  21611. source: "./media/characters/sasha-katraine/front.svg",
  21612. bottom: 0.045
  21613. }
  21614. },
  21615. },
  21616. [
  21617. {
  21618. name: "Micro",
  21619. height: math.unit(5, "inches")
  21620. },
  21621. {
  21622. name: "Normal",
  21623. height: math.unit(5 + 3 / 12, "feet"),
  21624. default: true
  21625. },
  21626. ]
  21627. ))
  21628. characterMakers.push(() => makeCharacter(
  21629. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  21630. {
  21631. side: {
  21632. height: math.unit(4, "inches"),
  21633. weight: math.unit(200, "grams"),
  21634. name: "Side",
  21635. image: {
  21636. source: "./media/characters/der/side.svg",
  21637. extra: 719 / 400,
  21638. bottom: 30.6 / 749.9187
  21639. }
  21640. },
  21641. },
  21642. [
  21643. {
  21644. name: "Micro",
  21645. height: math.unit(4, "inches"),
  21646. default: true
  21647. },
  21648. ]
  21649. ))
  21650. characterMakers.push(() => makeCharacter(
  21651. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  21652. {
  21653. side: {
  21654. height: math.unit(30, "meters"),
  21655. weight: math.unit(700, "tonnes"),
  21656. name: "Side",
  21657. image: {
  21658. source: "./media/characters/fixerdragon/side.svg",
  21659. extra: (1293.0514 - 116.03) / 1106.86,
  21660. bottom: 116.03 / 1293.0514
  21661. }
  21662. },
  21663. },
  21664. [
  21665. {
  21666. name: "Planck",
  21667. height: math.unit(1.6e-35, "meters")
  21668. },
  21669. {
  21670. name: "Micro",
  21671. height: math.unit(0.4, "meters")
  21672. },
  21673. {
  21674. name: "Normal",
  21675. height: math.unit(30, "meters"),
  21676. default: true
  21677. },
  21678. {
  21679. name: "Megamacro",
  21680. height: math.unit(1.2, "megameters")
  21681. },
  21682. {
  21683. name: "Teramacro",
  21684. height: math.unit(130, "terameters")
  21685. },
  21686. {
  21687. name: "Yottamacro",
  21688. height: math.unit(6200, "yottameters")
  21689. },
  21690. ]
  21691. ));
  21692. characterMakers.push(() => makeCharacter(
  21693. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  21694. {
  21695. front: {
  21696. height: math.unit(8, "feet"),
  21697. weight: math.unit(250, "lb"),
  21698. name: "Front",
  21699. image: {
  21700. source: "./media/characters/kite/front.svg",
  21701. extra: 2796 / 2659,
  21702. bottom: 0.002
  21703. }
  21704. },
  21705. },
  21706. [
  21707. {
  21708. name: "Normal",
  21709. height: math.unit(8, "feet"),
  21710. default: true
  21711. },
  21712. {
  21713. name: "Macro",
  21714. height: math.unit(360, "feet")
  21715. },
  21716. {
  21717. name: "Megamacro",
  21718. height: math.unit(1500, "feet")
  21719. },
  21720. ]
  21721. ))
  21722. characterMakers.push(() => makeCharacter(
  21723. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  21724. {
  21725. front: {
  21726. height: math.unit(5 + 11/12, "feet"),
  21727. weight: math.unit(170, "lb"),
  21728. name: "Front",
  21729. image: {
  21730. source: "./media/characters/poojawa-vynar/front.svg",
  21731. extra: 1735/1585,
  21732. bottom: 96/1831
  21733. }
  21734. },
  21735. back: {
  21736. height: math.unit(5 + 11/12, "feet"),
  21737. weight: math.unit(170, "lb"),
  21738. name: "Back",
  21739. image: {
  21740. source: "./media/characters/poojawa-vynar/back.svg",
  21741. extra: 1749/1607,
  21742. bottom: 28/1777
  21743. }
  21744. },
  21745. male: {
  21746. height: math.unit(5 + 11/12, "feet"),
  21747. weight: math.unit(170, "lb"),
  21748. name: "Male",
  21749. image: {
  21750. source: "./media/characters/poojawa-vynar/male.svg",
  21751. extra: 1855/1713,
  21752. bottom: 63/1918
  21753. }
  21754. },
  21755. taur: {
  21756. height: math.unit(5 + 11/12, "feet"),
  21757. weight: math.unit(170, "lb"),
  21758. name: "Taur",
  21759. image: {
  21760. source: "./media/characters/poojawa-vynar/taur.svg",
  21761. extra: 1151/1059,
  21762. bottom: 356/1507
  21763. }
  21764. },
  21765. frontDressed: {
  21766. height: math.unit(5 + 11/12, "feet"),
  21767. weight: math.unit(170, "lb"),
  21768. name: "Front (Dressed)",
  21769. image: {
  21770. source: "./media/characters/poojawa-vynar/front-dressed.svg",
  21771. extra: 1735/1585,
  21772. bottom: 96/1831
  21773. }
  21774. },
  21775. backDressed: {
  21776. height: math.unit(5 + 11/12, "feet"),
  21777. weight: math.unit(170, "lb"),
  21778. name: "Back (Dressed)",
  21779. image: {
  21780. source: "./media/characters/poojawa-vynar/back-dressed.svg",
  21781. extra: 1749/1607,
  21782. bottom: 28/1777
  21783. }
  21784. },
  21785. maleDressed: {
  21786. height: math.unit(5 + 11/12, "feet"),
  21787. weight: math.unit(170, "lb"),
  21788. name: "Male (Dressed)",
  21789. image: {
  21790. source: "./media/characters/poojawa-vynar/male-dressed.svg",
  21791. extra: 1855/1713,
  21792. bottom: 63/1918
  21793. }
  21794. },
  21795. taurDressed: {
  21796. height: math.unit(5 + 11/12, "feet"),
  21797. weight: math.unit(170, "lb"),
  21798. name: "Taur (Dressed)",
  21799. image: {
  21800. source: "./media/characters/poojawa-vynar/taur-dressed.svg",
  21801. extra: 1151/1059,
  21802. bottom: 356/1507
  21803. }
  21804. },
  21805. maw: {
  21806. height: math.unit(1.46, "feet"),
  21807. name: "Maw",
  21808. image: {
  21809. source: "./media/characters/poojawa-vynar/maw.svg"
  21810. }
  21811. },
  21812. head: {
  21813. height: math.unit(2.34, "feet"),
  21814. name: "Head",
  21815. image: {
  21816. source: "./media/characters/poojawa-vynar/head.svg"
  21817. }
  21818. },
  21819. paw: {
  21820. height: math.unit(1.61, "feet"),
  21821. name: "Paw",
  21822. image: {
  21823. source: "./media/characters/poojawa-vynar/paw.svg"
  21824. }
  21825. },
  21826. pawToering: {
  21827. height: math.unit(1.72, "feet"),
  21828. name: "Paw (Toering)",
  21829. image: {
  21830. source: "./media/characters/poojawa-vynar/paw-toering.svg"
  21831. }
  21832. },
  21833. toering: {
  21834. height: math.unit(2.9, "inches"),
  21835. name: "Toering",
  21836. image: {
  21837. source: "./media/characters/poojawa-vynar/toering.svg"
  21838. }
  21839. },
  21840. shaft: {
  21841. height: math.unit(0.625, "feet"),
  21842. name: "Shaft",
  21843. image: {
  21844. source: "./media/characters/poojawa-vynar/shaft.svg"
  21845. }
  21846. },
  21847. spade: {
  21848. height: math.unit(0.42, "feet"),
  21849. name: "Spade",
  21850. image: {
  21851. source: "./media/characters/poojawa-vynar/spade.svg"
  21852. }
  21853. },
  21854. },
  21855. [
  21856. {
  21857. name: "Shortstack",
  21858. height: math.unit(4, "feet")
  21859. },
  21860. {
  21861. name: "Normal",
  21862. height: math.unit(5 + 11 / 12, "feet"),
  21863. default: true
  21864. },
  21865. {
  21866. name: "Tauric",
  21867. height: math.unit(4, "meters")
  21868. },
  21869. ]
  21870. ))
  21871. characterMakers.push(() => makeCharacter(
  21872. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  21873. {
  21874. front: {
  21875. height: math.unit(293, "meters"),
  21876. weight: math.unit(70400, "tons"),
  21877. name: "Front",
  21878. image: {
  21879. source: "./media/characters/violette/front.svg",
  21880. extra: 1227 / 1180,
  21881. bottom: 0.005
  21882. }
  21883. },
  21884. back: {
  21885. height: math.unit(293, "meters"),
  21886. weight: math.unit(70400, "tons"),
  21887. name: "Back",
  21888. image: {
  21889. source: "./media/characters/violette/back.svg",
  21890. extra: 1227 / 1180,
  21891. bottom: 0.005
  21892. }
  21893. },
  21894. },
  21895. [
  21896. {
  21897. name: "Macro",
  21898. height: math.unit(293, "meters"),
  21899. default: true
  21900. },
  21901. ]
  21902. ))
  21903. characterMakers.push(() => makeCharacter(
  21904. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  21905. {
  21906. front: {
  21907. height: math.unit(1050, "feet"),
  21908. weight: math.unit(200000, "tons"),
  21909. name: "Front",
  21910. image: {
  21911. source: "./media/characters/alessandra/front.svg",
  21912. extra: 960 / 912,
  21913. bottom: 0.06
  21914. }
  21915. },
  21916. },
  21917. [
  21918. {
  21919. name: "Macro",
  21920. height: math.unit(1050, "feet")
  21921. },
  21922. {
  21923. name: "Macro+",
  21924. height: math.unit(900, "meters"),
  21925. default: true
  21926. },
  21927. ]
  21928. ))
  21929. characterMakers.push(() => makeCharacter(
  21930. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  21931. {
  21932. front: {
  21933. height: math.unit(5, "feet"),
  21934. weight: math.unit(187, "lb"),
  21935. name: "Front",
  21936. image: {
  21937. source: "./media/characters/person/front.svg",
  21938. extra: 3087 / 2945,
  21939. bottom: 91 / 3181
  21940. }
  21941. },
  21942. },
  21943. [
  21944. {
  21945. name: "Micro",
  21946. height: math.unit(3, "inches")
  21947. },
  21948. {
  21949. name: "Normal",
  21950. height: math.unit(5, "feet"),
  21951. default: true
  21952. },
  21953. {
  21954. name: "Macro",
  21955. height: math.unit(90, "feet")
  21956. },
  21957. {
  21958. name: "Max Size",
  21959. height: math.unit(280, "feet")
  21960. },
  21961. ]
  21962. ))
  21963. characterMakers.push(() => makeCharacter(
  21964. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  21965. {
  21966. front: {
  21967. height: math.unit(4.5, "meters"),
  21968. weight: math.unit(3200, "lb"),
  21969. name: "Front",
  21970. image: {
  21971. source: "./media/characters/ty/front.svg",
  21972. extra: 1038 / 960,
  21973. bottom: 31.156 / 1068
  21974. }
  21975. },
  21976. back: {
  21977. height: math.unit(4.5, "meters"),
  21978. weight: math.unit(3200, "lb"),
  21979. name: "Back",
  21980. image: {
  21981. source: "./media/characters/ty/back.svg",
  21982. extra: 1044 / 966,
  21983. bottom: 7.48 / 1049
  21984. }
  21985. },
  21986. },
  21987. [
  21988. {
  21989. name: "Normal",
  21990. height: math.unit(4.5, "meters"),
  21991. default: true
  21992. },
  21993. ]
  21994. ))
  21995. characterMakers.push(() => makeCharacter(
  21996. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  21997. {
  21998. front: {
  21999. height: math.unit(5 + 4 / 12, "feet"),
  22000. weight: math.unit(115, "lb"),
  22001. name: "Front",
  22002. image: {
  22003. source: "./media/characters/rocky/front.svg",
  22004. extra: 1012 / 975,
  22005. bottom: 54 / 1066
  22006. }
  22007. },
  22008. },
  22009. [
  22010. {
  22011. name: "Normal",
  22012. height: math.unit(5 + 4 / 12, "feet"),
  22013. default: true
  22014. },
  22015. ]
  22016. ))
  22017. characterMakers.push(() => makeCharacter(
  22018. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  22019. {
  22020. upright: {
  22021. height: math.unit(6, "meters"),
  22022. weight: math.unit(4000, "kg"),
  22023. name: "Upright",
  22024. image: {
  22025. source: "./media/characters/ruin/upright.svg",
  22026. extra: 668 / 661,
  22027. bottom: 42 / 799.8396
  22028. }
  22029. },
  22030. },
  22031. [
  22032. {
  22033. name: "Normal",
  22034. height: math.unit(6, "meters"),
  22035. default: true
  22036. },
  22037. ]
  22038. ))
  22039. characterMakers.push(() => makeCharacter(
  22040. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  22041. {
  22042. front: {
  22043. height: math.unit(5, "feet"),
  22044. weight: math.unit(106, "lb"),
  22045. name: "Front",
  22046. image: {
  22047. source: "./media/characters/robin/front.svg",
  22048. extra: 862 / 799,
  22049. bottom: 42.4 / 914.8856
  22050. }
  22051. },
  22052. },
  22053. [
  22054. {
  22055. name: "Normal",
  22056. height: math.unit(5, "feet"),
  22057. default: true
  22058. },
  22059. ]
  22060. ))
  22061. characterMakers.push(() => makeCharacter(
  22062. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  22063. {
  22064. side: {
  22065. height: math.unit(3, "feet"),
  22066. weight: math.unit(225, "lb"),
  22067. name: "Side",
  22068. image: {
  22069. source: "./media/characters/saian/side.svg",
  22070. extra: 566 / 356,
  22071. bottom: 79.7 / 643
  22072. }
  22073. },
  22074. maw: {
  22075. height: math.unit(2.85, "feet"),
  22076. name: "Maw",
  22077. image: {
  22078. source: "./media/characters/saian/maw.svg"
  22079. }
  22080. },
  22081. },
  22082. [
  22083. {
  22084. name: "Normal",
  22085. height: math.unit(3, "feet"),
  22086. default: true
  22087. },
  22088. ]
  22089. ))
  22090. characterMakers.push(() => makeCharacter(
  22091. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  22092. {
  22093. side: {
  22094. height: math.unit(8, "feet"),
  22095. weight: math.unit(300, "lb"),
  22096. name: "Side",
  22097. image: {
  22098. source: "./media/characters/equus-silvermane/side.svg",
  22099. extra: 2176 / 2050,
  22100. bottom: 65.7 / 2245
  22101. }
  22102. },
  22103. front: {
  22104. height: math.unit(8, "feet"),
  22105. weight: math.unit(300, "lb"),
  22106. name: "Front",
  22107. image: {
  22108. source: "./media/characters/equus-silvermane/front.svg",
  22109. extra: 4633 / 4400,
  22110. bottom: 71.3 / 4706.915
  22111. }
  22112. },
  22113. sideStepping: {
  22114. height: math.unit(8, "feet"),
  22115. weight: math.unit(300, "lb"),
  22116. name: "Side (Stepping)",
  22117. image: {
  22118. source: "./media/characters/equus-silvermane/side-stepping.svg",
  22119. extra: 1968 / 1860,
  22120. bottom: 16.4 / 1989
  22121. }
  22122. },
  22123. },
  22124. [
  22125. {
  22126. name: "Normal",
  22127. height: math.unit(8, "feet")
  22128. },
  22129. {
  22130. name: "Minimacro",
  22131. height: math.unit(75, "feet"),
  22132. default: true
  22133. },
  22134. {
  22135. name: "Macro",
  22136. height: math.unit(150, "feet")
  22137. },
  22138. {
  22139. name: "Macro+",
  22140. height: math.unit(1000, "feet")
  22141. },
  22142. {
  22143. name: "Megamacro",
  22144. height: math.unit(1, "mile")
  22145. },
  22146. ]
  22147. ))
  22148. characterMakers.push(() => makeCharacter(
  22149. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  22150. {
  22151. side: {
  22152. height: math.unit(20, "feet"),
  22153. weight: math.unit(30000, "kg"),
  22154. name: "Side",
  22155. image: {
  22156. source: "./media/characters/windar/side.svg",
  22157. extra: 1491 / 1248,
  22158. bottom: 82.56 / 1568
  22159. }
  22160. },
  22161. },
  22162. [
  22163. {
  22164. name: "Normal",
  22165. height: math.unit(20, "feet"),
  22166. default: true
  22167. },
  22168. ]
  22169. ))
  22170. characterMakers.push(() => makeCharacter(
  22171. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  22172. {
  22173. side: {
  22174. height: math.unit(15.66, "feet"),
  22175. weight: math.unit(150, "lb"),
  22176. name: "Side",
  22177. image: {
  22178. source: "./media/characters/melody/side.svg",
  22179. extra: 1097 / 944,
  22180. bottom: 11.8 / 1109
  22181. }
  22182. },
  22183. sideOutfit: {
  22184. height: math.unit(15.66, "feet"),
  22185. weight: math.unit(150, "lb"),
  22186. name: "Side (Outfit)",
  22187. image: {
  22188. source: "./media/characters/melody/side-outfit.svg",
  22189. extra: 1097 / 944,
  22190. bottom: 11.8 / 1109
  22191. }
  22192. },
  22193. },
  22194. [
  22195. {
  22196. name: "Normal",
  22197. height: math.unit(15.66, "feet"),
  22198. default: true
  22199. },
  22200. ]
  22201. ))
  22202. characterMakers.push(() => makeCharacter(
  22203. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  22204. {
  22205. front: {
  22206. height: math.unit(8, "feet"),
  22207. weight: math.unit(325, "lb"),
  22208. name: "Front",
  22209. image: {
  22210. source: "./media/characters/windera/front.svg",
  22211. extra: 3180 / 2845,
  22212. bottom: 178 / 3365
  22213. }
  22214. },
  22215. },
  22216. [
  22217. {
  22218. name: "Normal",
  22219. height: math.unit(8, "feet"),
  22220. default: true
  22221. },
  22222. ]
  22223. ))
  22224. characterMakers.push(() => makeCharacter(
  22225. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  22226. {
  22227. front: {
  22228. height: math.unit(28.75, "feet"),
  22229. weight: math.unit(2000, "kg"),
  22230. name: "Front",
  22231. image: {
  22232. source: "./media/characters/sonear/front.svg",
  22233. extra: 1041.1 / 964.9,
  22234. bottom: 53.7 / 1096.6
  22235. }
  22236. },
  22237. },
  22238. [
  22239. {
  22240. name: "Normal",
  22241. height: math.unit(28.75, "feet"),
  22242. default: true
  22243. },
  22244. ]
  22245. ))
  22246. characterMakers.push(() => makeCharacter(
  22247. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  22248. {
  22249. side: {
  22250. height: math.unit(25.5, "feet"),
  22251. weight: math.unit(23000, "kg"),
  22252. name: "Side",
  22253. image: {
  22254. source: "./media/characters/kanara/side.svg"
  22255. }
  22256. },
  22257. },
  22258. [
  22259. {
  22260. name: "Normal",
  22261. height: math.unit(25.5, "feet"),
  22262. default: true
  22263. },
  22264. ]
  22265. ))
  22266. characterMakers.push(() => makeCharacter(
  22267. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  22268. {
  22269. side: {
  22270. height: math.unit(10, "feet"),
  22271. weight: math.unit(1000, "kg"),
  22272. name: "Side",
  22273. image: {
  22274. source: "./media/characters/ereus/side.svg",
  22275. extra: 1157 / 959,
  22276. bottom: 153 / 1312.5
  22277. }
  22278. },
  22279. },
  22280. [
  22281. {
  22282. name: "Normal",
  22283. height: math.unit(10, "feet"),
  22284. default: true
  22285. },
  22286. ]
  22287. ))
  22288. characterMakers.push(() => makeCharacter(
  22289. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  22290. {
  22291. side: {
  22292. height: math.unit(4.5, "feet"),
  22293. weight: math.unit(500, "lb"),
  22294. name: "Side",
  22295. image: {
  22296. source: "./media/characters/e-ter/side.svg",
  22297. extra: 1550 / 1248,
  22298. bottom: 146 / 1694
  22299. }
  22300. },
  22301. },
  22302. [
  22303. {
  22304. name: "Normal",
  22305. height: math.unit(4.5, "feet"),
  22306. default: true
  22307. },
  22308. ]
  22309. ))
  22310. characterMakers.push(() => makeCharacter(
  22311. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  22312. {
  22313. side: {
  22314. height: math.unit(9.7, "feet"),
  22315. weight: math.unit(4000, "kg"),
  22316. name: "Side",
  22317. image: {
  22318. source: "./media/characters/yamie/side.svg"
  22319. }
  22320. },
  22321. },
  22322. [
  22323. {
  22324. name: "Normal",
  22325. height: math.unit(9.7, "feet"),
  22326. default: true
  22327. },
  22328. ]
  22329. ))
  22330. characterMakers.push(() => makeCharacter(
  22331. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  22332. {
  22333. front: {
  22334. height: math.unit(50, "feet"),
  22335. weight: math.unit(50000, "kg"),
  22336. name: "Front",
  22337. image: {
  22338. source: "./media/characters/anders/front.svg",
  22339. extra: 570 / 539,
  22340. bottom: 14.7 / 586.7
  22341. }
  22342. },
  22343. },
  22344. [
  22345. {
  22346. name: "Large",
  22347. height: math.unit(50, "feet")
  22348. },
  22349. {
  22350. name: "Macro",
  22351. height: math.unit(2000, "feet"),
  22352. default: true
  22353. },
  22354. {
  22355. name: "Megamacro",
  22356. height: math.unit(12, "miles")
  22357. },
  22358. ]
  22359. ))
  22360. characterMakers.push(() => makeCharacter(
  22361. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  22362. {
  22363. front: {
  22364. height: math.unit(7 + 2 / 12, "feet"),
  22365. weight: math.unit(300, "lb"),
  22366. name: "Front",
  22367. image: {
  22368. source: "./media/characters/reban/front.svg",
  22369. extra: 516 / 487,
  22370. bottom: 42.82 / 558.356
  22371. }
  22372. },
  22373. dick: {
  22374. height: math.unit(7 / 5, "feet"),
  22375. name: "Dick",
  22376. image: {
  22377. source: "./media/characters/reban/dick.svg"
  22378. }
  22379. },
  22380. },
  22381. [
  22382. {
  22383. name: "Natural Height",
  22384. height: math.unit(7 + 2 / 12, "feet")
  22385. },
  22386. {
  22387. name: "Macro",
  22388. height: math.unit(500, "feet"),
  22389. default: true
  22390. },
  22391. {
  22392. name: "Canon Height",
  22393. height: math.unit(50, "AU")
  22394. },
  22395. ]
  22396. ))
  22397. characterMakers.push(() => makeCharacter(
  22398. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  22399. {
  22400. front: {
  22401. height: math.unit(6, "feet"),
  22402. weight: math.unit(150, "lb"),
  22403. name: "Front",
  22404. image: {
  22405. source: "./media/characters/terrance-keayes/front.svg",
  22406. extra: 1.005,
  22407. bottom: 151 / 1615
  22408. }
  22409. },
  22410. side: {
  22411. height: math.unit(6, "feet"),
  22412. weight: math.unit(150, "lb"),
  22413. name: "Side",
  22414. image: {
  22415. source: "./media/characters/terrance-keayes/side.svg",
  22416. extra: 1.005,
  22417. bottom: 129.4 / 1544
  22418. }
  22419. },
  22420. back: {
  22421. height: math.unit(6, "feet"),
  22422. weight: math.unit(150, "lb"),
  22423. name: "Back",
  22424. image: {
  22425. source: "./media/characters/terrance-keayes/back.svg",
  22426. extra: 1.005,
  22427. bottom: 58.4 / 1557.3
  22428. }
  22429. },
  22430. dick: {
  22431. height: math.unit(6 * 0.208, "feet"),
  22432. name: "Dick",
  22433. image: {
  22434. source: "./media/characters/terrance-keayes/dick.svg"
  22435. }
  22436. },
  22437. },
  22438. [
  22439. {
  22440. name: "Canon Height",
  22441. height: math.unit(35, "miles"),
  22442. default: true
  22443. },
  22444. ]
  22445. ))
  22446. characterMakers.push(() => makeCharacter(
  22447. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  22448. {
  22449. front: {
  22450. height: math.unit(6, "feet"),
  22451. weight: math.unit(150, "lb"),
  22452. name: "Front",
  22453. image: {
  22454. source: "./media/characters/ofelia/front.svg",
  22455. extra: 546 / 541,
  22456. bottom: 39 / 583
  22457. }
  22458. },
  22459. back: {
  22460. height: math.unit(6, "feet"),
  22461. weight: math.unit(150, "lb"),
  22462. name: "Back",
  22463. image: {
  22464. source: "./media/characters/ofelia/back.svg",
  22465. extra: 564 / 559.5,
  22466. bottom: 8.69 / 573.02
  22467. }
  22468. },
  22469. maw: {
  22470. height: math.unit(1, "feet"),
  22471. name: "Maw",
  22472. image: {
  22473. source: "./media/characters/ofelia/maw.svg"
  22474. }
  22475. },
  22476. foot: {
  22477. height: math.unit(1.949, "feet"),
  22478. name: "Foot",
  22479. image: {
  22480. source: "./media/characters/ofelia/foot.svg"
  22481. }
  22482. },
  22483. },
  22484. [
  22485. {
  22486. name: "Canon Height",
  22487. height: math.unit(2000, "miles"),
  22488. default: true
  22489. },
  22490. ]
  22491. ))
  22492. characterMakers.push(() => makeCharacter(
  22493. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  22494. {
  22495. front: {
  22496. height: math.unit(6, "feet"),
  22497. weight: math.unit(150, "lb"),
  22498. name: "Front",
  22499. image: {
  22500. source: "./media/characters/samuel/front.svg",
  22501. extra: 265 / 258,
  22502. bottom: 2 / 266.1566
  22503. }
  22504. },
  22505. },
  22506. [
  22507. {
  22508. name: "Macro",
  22509. height: math.unit(100, "feet"),
  22510. default: true
  22511. },
  22512. {
  22513. name: "Full Size",
  22514. height: math.unit(1000, "miles")
  22515. },
  22516. ]
  22517. ))
  22518. characterMakers.push(() => makeCharacter(
  22519. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  22520. {
  22521. front: {
  22522. height: math.unit(6, "feet"),
  22523. weight: math.unit(300, "lb"),
  22524. name: "Front",
  22525. image: {
  22526. source: "./media/characters/beishir-kiel/front.svg",
  22527. extra: 569 / 547,
  22528. bottom: 41.9 / 609
  22529. }
  22530. },
  22531. maw: {
  22532. height: math.unit(6 * 0.202, "feet"),
  22533. name: "Maw",
  22534. image: {
  22535. source: "./media/characters/beishir-kiel/maw.svg"
  22536. }
  22537. },
  22538. },
  22539. [
  22540. {
  22541. name: "Macro",
  22542. height: math.unit(300, "feet"),
  22543. default: true
  22544. },
  22545. ]
  22546. ))
  22547. characterMakers.push(() => makeCharacter(
  22548. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  22549. {
  22550. front: {
  22551. height: math.unit(5 + 7/12, "feet"),
  22552. weight: math.unit(120, "lb"),
  22553. name: "Front",
  22554. image: {
  22555. source: "./media/characters/logan-grey/front.svg",
  22556. extra: 1836/1738,
  22557. bottom: 108/1944
  22558. }
  22559. },
  22560. back: {
  22561. height: math.unit(5 + 7/12, "feet"),
  22562. weight: math.unit(120, "lb"),
  22563. name: "Back",
  22564. image: {
  22565. source: "./media/characters/logan-grey/back.svg",
  22566. extra: 1880/1794,
  22567. bottom: 24/1904
  22568. }
  22569. },
  22570. frontSfw: {
  22571. height: math.unit(5 + 7/12, "feet"),
  22572. weight: math.unit(120, "lb"),
  22573. name: "Front (SFW)",
  22574. image: {
  22575. source: "./media/characters/logan-grey/front-sfw.svg",
  22576. extra: 1836/1738,
  22577. bottom: 108/1944
  22578. }
  22579. },
  22580. backSfw: {
  22581. height: math.unit(5 + 7/12, "feet"),
  22582. weight: math.unit(120, "lb"),
  22583. name: "Back (SFW)",
  22584. image: {
  22585. source: "./media/characters/logan-grey/back-sfw.svg",
  22586. extra: 1880/1794,
  22587. bottom: 24/1904
  22588. }
  22589. },
  22590. hands: {
  22591. height: math.unit(0.84, "feet"),
  22592. name: "Hands",
  22593. image: {
  22594. source: "./media/characters/logan-grey/hands.svg"
  22595. }
  22596. },
  22597. paws: {
  22598. height: math.unit(0.72, "feet"),
  22599. name: "Paws",
  22600. image: {
  22601. source: "./media/characters/logan-grey/paws.svg"
  22602. }
  22603. },
  22604. cock: {
  22605. height: math.unit(1.45, "feet"),
  22606. name: "Cock",
  22607. image: {
  22608. source: "./media/characters/logan-grey/cock.svg"
  22609. }
  22610. },
  22611. cockAlt: {
  22612. height: math.unit(1.437, "feet"),
  22613. name: "Cock (alt)",
  22614. image: {
  22615. source: "./media/characters/logan-grey/cock-alt.svg"
  22616. }
  22617. },
  22618. },
  22619. [
  22620. {
  22621. name: "Normal",
  22622. height: math.unit(5 + 8 / 12, "feet")
  22623. },
  22624. {
  22625. name: "The 500 Foot Femboy",
  22626. height: math.unit(500, "feet"),
  22627. default: true
  22628. },
  22629. {
  22630. name: "Megmacro",
  22631. height: math.unit(20, "miles")
  22632. },
  22633. ]
  22634. ))
  22635. characterMakers.push(() => makeCharacter(
  22636. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  22637. {
  22638. front: {
  22639. height: math.unit(8 + 2 / 12, "feet"),
  22640. weight: math.unit(275, "lb"),
  22641. name: "Front",
  22642. image: {
  22643. source: "./media/characters/draganta/front.svg",
  22644. extra: 1177 / 1135,
  22645. bottom: 33.46 / 1212.1
  22646. }
  22647. },
  22648. },
  22649. [
  22650. {
  22651. name: "Normal",
  22652. height: math.unit(8 + 6 / 12, "feet"),
  22653. default: true
  22654. },
  22655. {
  22656. name: "Macro",
  22657. height: math.unit(150, "feet")
  22658. },
  22659. {
  22660. name: "Megamacro",
  22661. height: math.unit(1000, "miles")
  22662. },
  22663. ]
  22664. ))
  22665. characterMakers.push(() => makeCharacter(
  22666. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  22667. {
  22668. front: {
  22669. height: math.unit(1.72, "m"),
  22670. weight: math.unit(80, "lb"),
  22671. name: "Front",
  22672. image: {
  22673. source: "./media/characters/voski/front.svg",
  22674. extra: 2076.22 / 2022.4,
  22675. bottom: 102.7 / 2177.3866
  22676. }
  22677. },
  22678. frontNsfw: {
  22679. height: math.unit(1.72, "m"),
  22680. weight: math.unit(80, "lb"),
  22681. name: "Front (NSFW)",
  22682. image: {
  22683. source: "./media/characters/voski/front-nsfw.svg",
  22684. extra: 2076.22 / 2022.4,
  22685. bottom: 102.7 / 2177.3866
  22686. }
  22687. },
  22688. back: {
  22689. height: math.unit(1.72, "m"),
  22690. weight: math.unit(80, "lb"),
  22691. name: "Back",
  22692. image: {
  22693. source: "./media/characters/voski/back.svg",
  22694. extra: 2104 / 2051,
  22695. bottom: 10.45 / 2113.63
  22696. }
  22697. },
  22698. },
  22699. [
  22700. {
  22701. name: "Normal",
  22702. height: math.unit(1.72, "m")
  22703. },
  22704. {
  22705. name: "Macro",
  22706. height: math.unit(55, "m"),
  22707. default: true
  22708. },
  22709. {
  22710. name: "Macro+",
  22711. height: math.unit(300, "m")
  22712. },
  22713. {
  22714. name: "Macro++",
  22715. height: math.unit(700, "m")
  22716. },
  22717. {
  22718. name: "Macro+++",
  22719. height: math.unit(4500, "m")
  22720. },
  22721. {
  22722. name: "Macro++++",
  22723. height: math.unit(45, "km")
  22724. },
  22725. {
  22726. name: "Macro+++++",
  22727. height: math.unit(1220, "km")
  22728. },
  22729. ]
  22730. ))
  22731. characterMakers.push(() => makeCharacter(
  22732. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  22733. {
  22734. front: {
  22735. height: math.unit(2.3, "m"),
  22736. weight: math.unit(304, "kg"),
  22737. name: "Front",
  22738. image: {
  22739. source: "./media/characters/icowom-lee/front.svg",
  22740. extra: 985 / 955,
  22741. bottom: 25.4 / 1012
  22742. }
  22743. },
  22744. fronttentacles: {
  22745. height: math.unit(2.3, "m"),
  22746. weight: math.unit(304, "kg"),
  22747. name: "Front-tentacles",
  22748. image: {
  22749. source: "./media/characters/icowom-lee/front-tentacles.svg",
  22750. extra: 985 / 955,
  22751. bottom: 25.4 / 1012
  22752. }
  22753. },
  22754. back: {
  22755. height: math.unit(2.3, "m"),
  22756. weight: math.unit(304, "kg"),
  22757. name: "Back",
  22758. image: {
  22759. source: "./media/characters/icowom-lee/back.svg",
  22760. extra: 975 / 954,
  22761. bottom: 9.5 / 985
  22762. }
  22763. },
  22764. backtentacles: {
  22765. height: math.unit(2.3, "m"),
  22766. weight: math.unit(304, "kg"),
  22767. name: "Back-tentacles",
  22768. image: {
  22769. source: "./media/characters/icowom-lee/back-tentacles.svg",
  22770. extra: 975 / 954,
  22771. bottom: 9.5 / 985
  22772. }
  22773. },
  22774. frontDressed: {
  22775. height: math.unit(2.3, "m"),
  22776. weight: math.unit(304, "kg"),
  22777. name: "Front (Dressed)",
  22778. image: {
  22779. source: "./media/characters/icowom-lee/front-dressed.svg",
  22780. extra: 3076 / 2933,
  22781. bottom: 51.4 / 3125.1889
  22782. }
  22783. },
  22784. rump: {
  22785. height: math.unit(0.776, "meters"),
  22786. name: "Rump",
  22787. image: {
  22788. source: "./media/characters/icowom-lee/rump.svg"
  22789. }
  22790. },
  22791. genitals: {
  22792. height: math.unit(0.78, "meters"),
  22793. name: "Genitals",
  22794. image: {
  22795. source: "./media/characters/icowom-lee/genitals.svg"
  22796. }
  22797. },
  22798. },
  22799. [
  22800. {
  22801. name: "Normal",
  22802. height: math.unit(2.3, "meters"),
  22803. default: true
  22804. },
  22805. {
  22806. name: "Macro",
  22807. height: math.unit(94, "meters"),
  22808. default: true
  22809. },
  22810. ]
  22811. ))
  22812. characterMakers.push(() => makeCharacter(
  22813. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  22814. {
  22815. front: {
  22816. height: math.unit(22, "meters"),
  22817. weight: math.unit(21000, "kg"),
  22818. name: "Front",
  22819. image: {
  22820. source: "./media/characters/shock-diamond/front.svg",
  22821. extra: 2204 / 2053,
  22822. bottom: 65 / 2239.47
  22823. }
  22824. },
  22825. frontNude: {
  22826. height: math.unit(22, "meters"),
  22827. weight: math.unit(21000, "kg"),
  22828. name: "Front (Nude)",
  22829. image: {
  22830. source: "./media/characters/shock-diamond/front-nude.svg",
  22831. extra: 2514 / 2285,
  22832. bottom: 13 / 2527.56
  22833. }
  22834. },
  22835. },
  22836. [
  22837. {
  22838. name: "Normal",
  22839. height: math.unit(3, "meters")
  22840. },
  22841. {
  22842. name: "Macro",
  22843. height: math.unit(22, "meters"),
  22844. default: true
  22845. },
  22846. ]
  22847. ))
  22848. characterMakers.push(() => makeCharacter(
  22849. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  22850. {
  22851. front: {
  22852. height: math.unit(5 + 4 / 12, "feet"),
  22853. weight: math.unit(120, "lb"),
  22854. name: "Front",
  22855. image: {
  22856. source: "./media/characters/rory/front.svg",
  22857. extra: 1318/1241,
  22858. bottom: 42/1360
  22859. }
  22860. },
  22861. back: {
  22862. height: math.unit(5 + 4 / 12, "feet"),
  22863. weight: math.unit(120, "lb"),
  22864. name: "Back",
  22865. image: {
  22866. source: "./media/characters/rory/back.svg",
  22867. extra: 1318/1241,
  22868. bottom: 42/1360
  22869. }
  22870. },
  22871. butt: {
  22872. height: math.unit(1.74, "feet"),
  22873. name: "Butt",
  22874. image: {
  22875. source: "./media/characters/rory/butt.svg"
  22876. }
  22877. },
  22878. dick: {
  22879. height: math.unit(1.02, "feet"),
  22880. name: "Dick",
  22881. image: {
  22882. source: "./media/characters/rory/dick.svg"
  22883. }
  22884. },
  22885. paws: {
  22886. height: math.unit(1, "feet"),
  22887. name: "Paws",
  22888. image: {
  22889. source: "./media/characters/rory/paws.svg"
  22890. }
  22891. },
  22892. frontAlt: {
  22893. height: math.unit(5 + 4 / 12, "feet"),
  22894. weight: math.unit(120, "lb"),
  22895. name: "Front (Alt)",
  22896. image: {
  22897. source: "./media/characters/rory/front-alt.svg",
  22898. extra: 589 / 556,
  22899. bottom: 45.7 / 635.76
  22900. }
  22901. },
  22902. frontAltNude: {
  22903. height: math.unit(5 + 4 / 12, "feet"),
  22904. weight: math.unit(120, "lb"),
  22905. name: "Front (Alt, Nude)",
  22906. image: {
  22907. source: "./media/characters/rory/front-alt-nude.svg",
  22908. extra: 589 / 556,
  22909. bottom: 45.7 / 635.76
  22910. }
  22911. },
  22912. side: {
  22913. height: math.unit(5 + 4 / 12, "feet"),
  22914. weight: math.unit(120, "lb"),
  22915. name: "Side",
  22916. image: {
  22917. source: "./media/characters/rory/side.svg",
  22918. extra: 597 / 564,
  22919. bottom: 55 / 653
  22920. }
  22921. },
  22922. backAlt: {
  22923. height: math.unit(5 + 4 / 12, "feet"),
  22924. weight: math.unit(120, "lb"),
  22925. name: "Back (Alt)",
  22926. image: {
  22927. source: "./media/characters/rory/back-alt.svg",
  22928. extra: 620 / 585,
  22929. bottom: 8.86 / 630.43
  22930. }
  22931. },
  22932. dickAlt: {
  22933. height: math.unit(0.86, "feet"),
  22934. name: "Dick (Alt)",
  22935. image: {
  22936. source: "./media/characters/rory/dick-alt.svg"
  22937. }
  22938. },
  22939. },
  22940. [
  22941. {
  22942. name: "Normal",
  22943. height: math.unit(5 + 4 / 12, "feet"),
  22944. default: true
  22945. },
  22946. {
  22947. name: "Macro",
  22948. height: math.unit(100, "feet")
  22949. },
  22950. {
  22951. name: "Macro+",
  22952. height: math.unit(140, "feet")
  22953. },
  22954. {
  22955. name: "Macro++",
  22956. height: math.unit(300, "feet")
  22957. },
  22958. ]
  22959. ))
  22960. characterMakers.push(() => makeCharacter(
  22961. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  22962. {
  22963. front: {
  22964. height: math.unit(5 + 9 / 12, "feet"),
  22965. weight: math.unit(190, "lb"),
  22966. name: "Front",
  22967. image: {
  22968. source: "./media/characters/sprisk/front.svg",
  22969. extra: 1225 / 1180,
  22970. bottom: 42.7 / 1266.4
  22971. }
  22972. },
  22973. frontNsfw: {
  22974. height: math.unit(5 + 9 / 12, "feet"),
  22975. weight: math.unit(190, "lb"),
  22976. name: "Front (NSFW)",
  22977. image: {
  22978. source: "./media/characters/sprisk/front-nsfw.svg",
  22979. extra: 1225 / 1180,
  22980. bottom: 42.7 / 1266.4
  22981. }
  22982. },
  22983. back: {
  22984. height: math.unit(5 + 9 / 12, "feet"),
  22985. weight: math.unit(190, "lb"),
  22986. name: "Back",
  22987. image: {
  22988. source: "./media/characters/sprisk/back.svg",
  22989. extra: 1247 / 1200,
  22990. bottom: 5.6 / 1253.04
  22991. }
  22992. },
  22993. },
  22994. [
  22995. {
  22996. name: "Tiny",
  22997. height: math.unit(2, "inches")
  22998. },
  22999. {
  23000. name: "Normal",
  23001. height: math.unit(5 + 9 / 12, "feet"),
  23002. default: true
  23003. },
  23004. {
  23005. name: "Mini Macro",
  23006. height: math.unit(18, "feet")
  23007. },
  23008. {
  23009. name: "Macro",
  23010. height: math.unit(100, "feet")
  23011. },
  23012. {
  23013. name: "MACRO",
  23014. height: math.unit(50, "miles")
  23015. },
  23016. {
  23017. name: "M A C R O",
  23018. height: math.unit(300, "miles")
  23019. },
  23020. ]
  23021. ))
  23022. characterMakers.push(() => makeCharacter(
  23023. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  23024. {
  23025. side: {
  23026. height: math.unit(15.6, "meters"),
  23027. weight: math.unit(700000, "kg"),
  23028. name: "Side",
  23029. image: {
  23030. source: "./media/characters/bunsen/side.svg",
  23031. extra: 1644 / 358
  23032. }
  23033. },
  23034. foot: {
  23035. height: math.unit(1.611 * 1644 / 358, "meter"),
  23036. name: "Foot",
  23037. image: {
  23038. source: "./media/characters/bunsen/foot.svg"
  23039. }
  23040. },
  23041. },
  23042. [
  23043. {
  23044. name: "Small",
  23045. height: math.unit(10, "feet")
  23046. },
  23047. {
  23048. name: "Normal",
  23049. height: math.unit(15.6, "meters"),
  23050. default: true
  23051. },
  23052. ]
  23053. ))
  23054. characterMakers.push(() => makeCharacter(
  23055. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  23056. {
  23057. front: {
  23058. height: math.unit(4 + 11 / 12, "feet"),
  23059. weight: math.unit(140, "lb"),
  23060. name: "Front",
  23061. image: {
  23062. source: "./media/characters/sesh/front.svg",
  23063. extra: 3420 / 3231,
  23064. bottom: 72 / 3949.5
  23065. }
  23066. },
  23067. },
  23068. [
  23069. {
  23070. name: "Normal",
  23071. height: math.unit(4 + 11 / 12, "feet")
  23072. },
  23073. {
  23074. name: "Grown",
  23075. height: math.unit(15, "feet"),
  23076. default: true
  23077. },
  23078. {
  23079. name: "Macro",
  23080. height: math.unit(1500, "feet")
  23081. },
  23082. {
  23083. name: "Megamacro",
  23084. height: math.unit(30, "miles")
  23085. },
  23086. {
  23087. name: "Continental",
  23088. height: math.unit(3000, "miles")
  23089. },
  23090. {
  23091. name: "Gravity Mass",
  23092. height: math.unit(300000, "miles")
  23093. },
  23094. {
  23095. name: "Planet Buster",
  23096. height: math.unit(30000000, "miles")
  23097. },
  23098. {
  23099. name: "Big",
  23100. height: math.unit(3000000000, "miles")
  23101. },
  23102. ]
  23103. ))
  23104. characterMakers.push(() => makeCharacter(
  23105. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  23106. {
  23107. front: {
  23108. height: math.unit(9, "feet"),
  23109. weight: math.unit(350, "lb"),
  23110. name: "Front",
  23111. image: {
  23112. source: "./media/characters/pepper/front.svg",
  23113. extra: 1448 / 1312,
  23114. bottom: 9.4 / 1457.88
  23115. }
  23116. },
  23117. back: {
  23118. height: math.unit(9, "feet"),
  23119. weight: math.unit(350, "lb"),
  23120. name: "Back",
  23121. image: {
  23122. source: "./media/characters/pepper/back.svg",
  23123. extra: 1423 / 1300,
  23124. bottom: 4.6 / 1429
  23125. }
  23126. },
  23127. maw: {
  23128. height: math.unit(0.932, "feet"),
  23129. name: "Maw",
  23130. image: {
  23131. source: "./media/characters/pepper/maw.svg"
  23132. }
  23133. },
  23134. },
  23135. [
  23136. {
  23137. name: "Normal",
  23138. height: math.unit(9, "feet"),
  23139. default: true
  23140. },
  23141. ]
  23142. ))
  23143. characterMakers.push(() => makeCharacter(
  23144. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  23145. {
  23146. front: {
  23147. height: math.unit(6, "feet"),
  23148. weight: math.unit(150, "lb"),
  23149. name: "Front",
  23150. image: {
  23151. source: "./media/characters/maelstrom/front.svg",
  23152. extra: 2100 / 1883,
  23153. bottom: 94 / 2196.7
  23154. }
  23155. },
  23156. },
  23157. [
  23158. {
  23159. name: "Less Kaiju",
  23160. height: math.unit(200, "feet")
  23161. },
  23162. {
  23163. name: "Kaiju",
  23164. height: math.unit(400, "feet"),
  23165. default: true
  23166. },
  23167. {
  23168. name: "Kaiju-er",
  23169. height: math.unit(600, "feet")
  23170. },
  23171. ]
  23172. ))
  23173. characterMakers.push(() => makeCharacter(
  23174. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  23175. {
  23176. front: {
  23177. height: math.unit(6 + 5 / 12, "feet"),
  23178. weight: math.unit(180, "lb"),
  23179. name: "Front",
  23180. image: {
  23181. source: "./media/characters/lexir/front.svg",
  23182. extra: 180 / 172,
  23183. bottom: 12 / 192
  23184. }
  23185. },
  23186. back: {
  23187. height: math.unit(6 + 5 / 12, "feet"),
  23188. weight: math.unit(180, "lb"),
  23189. name: "Back",
  23190. image: {
  23191. source: "./media/characters/lexir/back.svg",
  23192. extra: 183.84 / 175.5,
  23193. bottom: 3.1 / 187
  23194. }
  23195. },
  23196. },
  23197. [
  23198. {
  23199. name: "Very Smal",
  23200. height: math.unit(1, "nm")
  23201. },
  23202. {
  23203. name: "Normal",
  23204. height: math.unit(6 + 5 / 12, "feet"),
  23205. default: true
  23206. },
  23207. {
  23208. name: "Macro",
  23209. height: math.unit(1, "mile")
  23210. },
  23211. {
  23212. name: "Megamacro",
  23213. height: math.unit(50, "miles")
  23214. },
  23215. ]
  23216. ))
  23217. characterMakers.push(() => makeCharacter(
  23218. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  23219. {
  23220. front: {
  23221. height: math.unit(1.5, "meters"),
  23222. weight: math.unit(100, "lb"),
  23223. name: "Front",
  23224. image: {
  23225. source: "./media/characters/maksio/front.svg",
  23226. extra: 1549 / 1531,
  23227. bottom: 123.7 / 1674.5429
  23228. }
  23229. },
  23230. back: {
  23231. height: math.unit(1.5, "meters"),
  23232. weight: math.unit(100, "lb"),
  23233. name: "Back",
  23234. image: {
  23235. source: "./media/characters/maksio/back.svg",
  23236. extra: 1541 / 1509,
  23237. bottom: 97 / 1639
  23238. }
  23239. },
  23240. hand: {
  23241. height: math.unit(0.621, "feet"),
  23242. name: "Hand",
  23243. image: {
  23244. source: "./media/characters/maksio/hand.svg"
  23245. }
  23246. },
  23247. foot: {
  23248. height: math.unit(1.611, "feet"),
  23249. name: "Foot",
  23250. image: {
  23251. source: "./media/characters/maksio/foot.svg"
  23252. }
  23253. },
  23254. },
  23255. [
  23256. {
  23257. name: "Shrunken",
  23258. height: math.unit(10, "cm")
  23259. },
  23260. {
  23261. name: "Normal",
  23262. height: math.unit(150, "cm"),
  23263. default: true
  23264. },
  23265. ]
  23266. ))
  23267. characterMakers.push(() => makeCharacter(
  23268. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  23269. {
  23270. front: {
  23271. height: math.unit(100, "feet"),
  23272. name: "Front",
  23273. image: {
  23274. source: "./media/characters/erza-bear/front.svg",
  23275. extra: 2449 / 2390,
  23276. bottom: 46 / 2494
  23277. }
  23278. },
  23279. back: {
  23280. height: math.unit(100, "feet"),
  23281. name: "Back",
  23282. image: {
  23283. source: "./media/characters/erza-bear/back.svg",
  23284. extra: 2489 / 2430,
  23285. bottom: 85.4 / 2480
  23286. }
  23287. },
  23288. tail: {
  23289. height: math.unit(42, "feet"),
  23290. name: "Tail",
  23291. image: {
  23292. source: "./media/characters/erza-bear/tail.svg"
  23293. }
  23294. },
  23295. tongue: {
  23296. height: math.unit(8, "feet"),
  23297. name: "Tongue",
  23298. image: {
  23299. source: "./media/characters/erza-bear/tongue.svg"
  23300. }
  23301. },
  23302. dick: {
  23303. height: math.unit(10.5, "feet"),
  23304. name: "Dick",
  23305. image: {
  23306. source: "./media/characters/erza-bear/dick.svg"
  23307. }
  23308. },
  23309. dickVertical: {
  23310. height: math.unit(16.9, "feet"),
  23311. name: "Dick (Vertical)",
  23312. image: {
  23313. source: "./media/characters/erza-bear/dick-vertical.svg"
  23314. }
  23315. },
  23316. },
  23317. [
  23318. {
  23319. name: "Macro",
  23320. height: math.unit(100, "feet"),
  23321. default: true
  23322. },
  23323. ]
  23324. ))
  23325. characterMakers.push(() => makeCharacter(
  23326. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  23327. {
  23328. front: {
  23329. height: math.unit(172, "cm"),
  23330. weight: math.unit(73, "kg"),
  23331. name: "Front",
  23332. image: {
  23333. source: "./media/characters/violet-flor/front.svg",
  23334. extra: 1530 / 1442,
  23335. bottom: 61.9 / 1588.8
  23336. }
  23337. },
  23338. back: {
  23339. height: math.unit(180, "cm"),
  23340. weight: math.unit(73, "kg"),
  23341. name: "Back",
  23342. image: {
  23343. source: "./media/characters/violet-flor/back.svg",
  23344. extra: 1692 / 1630,
  23345. bottom: 20 / 1712
  23346. }
  23347. },
  23348. },
  23349. [
  23350. {
  23351. name: "Normal",
  23352. height: math.unit(172, "cm"),
  23353. default: true
  23354. },
  23355. ]
  23356. ))
  23357. characterMakers.push(() => makeCharacter(
  23358. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  23359. {
  23360. front: {
  23361. height: math.unit(6, "feet"),
  23362. weight: math.unit(220, "lb"),
  23363. name: "Front",
  23364. image: {
  23365. source: "./media/characters/lynn-rhea/front.svg",
  23366. extra: 310 / 273
  23367. }
  23368. },
  23369. back: {
  23370. height: math.unit(6, "feet"),
  23371. weight: math.unit(220, "lb"),
  23372. name: "Back",
  23373. image: {
  23374. source: "./media/characters/lynn-rhea/back.svg",
  23375. extra: 310 / 273
  23376. }
  23377. },
  23378. dicks: {
  23379. height: math.unit(0.9, "feet"),
  23380. name: "Dicks",
  23381. image: {
  23382. source: "./media/characters/lynn-rhea/dicks.svg"
  23383. }
  23384. },
  23385. slit: {
  23386. height: math.unit(0.4, "feet"),
  23387. name: "Slit",
  23388. image: {
  23389. source: "./media/characters/lynn-rhea/slit.svg"
  23390. }
  23391. },
  23392. },
  23393. [
  23394. {
  23395. name: "Micro",
  23396. height: math.unit(1, "inch")
  23397. },
  23398. {
  23399. name: "Macro",
  23400. height: math.unit(60, "feet"),
  23401. default: true
  23402. },
  23403. {
  23404. name: "Megamacro",
  23405. height: math.unit(2, "miles")
  23406. },
  23407. {
  23408. name: "Gigamacro",
  23409. height: math.unit(3, "earths")
  23410. },
  23411. {
  23412. name: "Galactic",
  23413. height: math.unit(0.8, "galaxies")
  23414. },
  23415. ]
  23416. ))
  23417. characterMakers.push(() => makeCharacter(
  23418. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  23419. {
  23420. front: {
  23421. height: math.unit(1600, "feet"),
  23422. weight: math.unit(85758785169, "kg"),
  23423. name: "Front",
  23424. image: {
  23425. source: "./media/characters/valathos/front.svg",
  23426. extra: 1451 / 1339
  23427. }
  23428. },
  23429. },
  23430. [
  23431. {
  23432. name: "Macro",
  23433. height: math.unit(1600, "feet"),
  23434. default: true
  23435. },
  23436. ]
  23437. ))
  23438. characterMakers.push(() => makeCharacter(
  23439. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  23440. {
  23441. front: {
  23442. height: math.unit(7 + 5 / 12, "feet"),
  23443. weight: math.unit(300, "lb"),
  23444. name: "Front",
  23445. image: {
  23446. source: "./media/characters/azula/front.svg",
  23447. extra: 3208 / 2880,
  23448. bottom: 80.2 / 3277
  23449. }
  23450. },
  23451. back: {
  23452. height: math.unit(7 + 5 / 12, "feet"),
  23453. weight: math.unit(300, "lb"),
  23454. name: "Back",
  23455. image: {
  23456. source: "./media/characters/azula/back.svg",
  23457. extra: 3169 / 2822,
  23458. bottom: 150.6 / 3321
  23459. }
  23460. },
  23461. },
  23462. [
  23463. {
  23464. name: "Normal",
  23465. height: math.unit(7 + 5 / 12, "feet"),
  23466. default: true
  23467. },
  23468. {
  23469. name: "Big",
  23470. height: math.unit(20, "feet")
  23471. },
  23472. ]
  23473. ))
  23474. characterMakers.push(() => makeCharacter(
  23475. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  23476. {
  23477. front: {
  23478. height: math.unit(5 + 1 / 12, "feet"),
  23479. weight: math.unit(110, "lb"),
  23480. name: "Front",
  23481. image: {
  23482. source: "./media/characters/rupert/front.svg",
  23483. extra: 1549 / 1495,
  23484. bottom: 54.2 / 1604.4
  23485. }
  23486. },
  23487. },
  23488. [
  23489. {
  23490. name: "Normal",
  23491. height: math.unit(5 + 1 / 12, "feet"),
  23492. default: true
  23493. },
  23494. ]
  23495. ))
  23496. characterMakers.push(() => makeCharacter(
  23497. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  23498. {
  23499. front: {
  23500. height: math.unit(8 + 4 / 12, "feet"),
  23501. weight: math.unit(350, "lb"),
  23502. name: "Front",
  23503. image: {
  23504. source: "./media/characters/sheera-castellar/front.svg",
  23505. extra: 1957 / 1894,
  23506. bottom: 26.97 / 1975.017
  23507. }
  23508. },
  23509. side: {
  23510. height: math.unit(8 + 4 / 12, "feet"),
  23511. weight: math.unit(350, "lb"),
  23512. name: "Side",
  23513. image: {
  23514. source: "./media/characters/sheera-castellar/side.svg",
  23515. extra: 1957 / 1894
  23516. }
  23517. },
  23518. back: {
  23519. height: math.unit(8 + 4 / 12, "feet"),
  23520. weight: math.unit(350, "lb"),
  23521. name: "Back",
  23522. image: {
  23523. source: "./media/characters/sheera-castellar/back.svg",
  23524. extra: 1957 / 1894
  23525. }
  23526. },
  23527. angled: {
  23528. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  23529. weight: math.unit(350, "lb"),
  23530. name: "Angled",
  23531. image: {
  23532. source: "./media/characters/sheera-castellar/angled.svg",
  23533. extra: 1807 / 1707,
  23534. bottom: 68 / 1875
  23535. }
  23536. },
  23537. genitals: {
  23538. height: math.unit(2.2, "feet"),
  23539. name: "Genitals",
  23540. image: {
  23541. source: "./media/characters/sheera-castellar/genitals.svg"
  23542. }
  23543. },
  23544. taur: {
  23545. height: math.unit(10 + 6/12, "feet"),
  23546. name: "Taur",
  23547. image: {
  23548. source: "./media/characters/sheera-castellar/taur.svg",
  23549. extra: 2017/1909,
  23550. bottom: 185/2202
  23551. }
  23552. },
  23553. },
  23554. [
  23555. {
  23556. name: "Normal",
  23557. height: math.unit(8 + 4 / 12, "feet")
  23558. },
  23559. {
  23560. name: "Macro",
  23561. height: math.unit(150, "feet"),
  23562. default: true
  23563. },
  23564. {
  23565. name: "Macro+",
  23566. height: math.unit(800, "feet")
  23567. },
  23568. ]
  23569. ))
  23570. characterMakers.push(() => makeCharacter(
  23571. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  23572. {
  23573. front: {
  23574. height: math.unit(6, "feet"),
  23575. weight: math.unit(150, "lb"),
  23576. name: "Front",
  23577. image: {
  23578. source: "./media/characters/jaipur/front.svg",
  23579. extra: 3860 / 3731,
  23580. bottom: 287 / 4140
  23581. }
  23582. },
  23583. back: {
  23584. height: math.unit(6, "feet"),
  23585. weight: math.unit(150, "lb"),
  23586. name: "Back",
  23587. image: {
  23588. source: "./media/characters/jaipur/back.svg",
  23589. extra: 4060 / 3930,
  23590. bottom: 151 / 4200
  23591. }
  23592. },
  23593. },
  23594. [
  23595. {
  23596. name: "Normal",
  23597. height: math.unit(1.85, "meters"),
  23598. default: true
  23599. },
  23600. {
  23601. name: "Macro",
  23602. height: math.unit(150, "meters")
  23603. },
  23604. {
  23605. name: "Macro+",
  23606. height: math.unit(0.5, "miles")
  23607. },
  23608. {
  23609. name: "Macro++",
  23610. height: math.unit(2.5, "miles")
  23611. },
  23612. {
  23613. name: "Macro+++",
  23614. height: math.unit(12, "miles")
  23615. },
  23616. {
  23617. name: "Macro++++",
  23618. height: math.unit(120, "miles")
  23619. },
  23620. {
  23621. name: "Macro+++++",
  23622. height: math.unit(1200, "miles")
  23623. },
  23624. ]
  23625. ))
  23626. characterMakers.push(() => makeCharacter(
  23627. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  23628. {
  23629. front: {
  23630. height: math.unit(6, "feet"),
  23631. weight: math.unit(150, "lb"),
  23632. name: "Front",
  23633. image: {
  23634. source: "./media/characters/sheila-wolf/front.svg",
  23635. extra: 1931 / 1808,
  23636. bottom: 29.5 / 1960
  23637. }
  23638. },
  23639. dick: {
  23640. height: math.unit(1.464, "feet"),
  23641. name: "Dick",
  23642. image: {
  23643. source: "./media/characters/sheila-wolf/dick.svg"
  23644. }
  23645. },
  23646. muzzle: {
  23647. height: math.unit(0.513, "feet"),
  23648. name: "Muzzle",
  23649. image: {
  23650. source: "./media/characters/sheila-wolf/muzzle.svg"
  23651. }
  23652. },
  23653. },
  23654. [
  23655. {
  23656. name: "Macro",
  23657. height: math.unit(70, "feet"),
  23658. default: true
  23659. },
  23660. ]
  23661. ))
  23662. characterMakers.push(() => makeCharacter(
  23663. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  23664. {
  23665. front: {
  23666. height: math.unit(32, "meters"),
  23667. weight: math.unit(300000, "kg"),
  23668. name: "Front",
  23669. image: {
  23670. source: "./media/characters/almor/front.svg",
  23671. extra: 1408 / 1322,
  23672. bottom: 94.6 / 1506.5
  23673. }
  23674. },
  23675. },
  23676. [
  23677. {
  23678. name: "Macro",
  23679. height: math.unit(32, "meters"),
  23680. default: true
  23681. },
  23682. ]
  23683. ))
  23684. characterMakers.push(() => makeCharacter(
  23685. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  23686. {
  23687. front: {
  23688. height: math.unit(7, "feet"),
  23689. weight: math.unit(200, "lb"),
  23690. name: "Front",
  23691. image: {
  23692. source: "./media/characters/silver/front.svg",
  23693. extra: 472.1 / 450.5,
  23694. bottom: 26.5 / 499.424
  23695. }
  23696. },
  23697. },
  23698. [
  23699. {
  23700. name: "Normal",
  23701. height: math.unit(7, "feet"),
  23702. default: true
  23703. },
  23704. {
  23705. name: "Macro",
  23706. height: math.unit(800, "feet")
  23707. },
  23708. {
  23709. name: "Megamacro",
  23710. height: math.unit(250, "miles")
  23711. },
  23712. ]
  23713. ))
  23714. characterMakers.push(() => makeCharacter(
  23715. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  23716. {
  23717. front: {
  23718. height: math.unit(6, "feet"),
  23719. weight: math.unit(150, "lb"),
  23720. name: "Front",
  23721. image: {
  23722. source: "./media/characters/pliskin/front.svg",
  23723. extra: 1469 / 1359,
  23724. bottom: 70 / 1540
  23725. }
  23726. },
  23727. },
  23728. [
  23729. {
  23730. name: "Micro",
  23731. height: math.unit(3, "inches")
  23732. },
  23733. {
  23734. name: "Normal",
  23735. height: math.unit(5 + 11 / 12, "feet"),
  23736. default: true
  23737. },
  23738. {
  23739. name: "Macro",
  23740. height: math.unit(120, "feet")
  23741. },
  23742. ]
  23743. ))
  23744. characterMakers.push(() => makeCharacter(
  23745. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  23746. {
  23747. front: {
  23748. height: math.unit(6, "feet"),
  23749. weight: math.unit(150, "lb"),
  23750. name: "Front",
  23751. image: {
  23752. source: "./media/characters/sammy/front.svg",
  23753. extra: 1193 / 1089,
  23754. bottom: 30.5 / 1226
  23755. }
  23756. },
  23757. },
  23758. [
  23759. {
  23760. name: "Macro",
  23761. height: math.unit(1700, "feet"),
  23762. default: true
  23763. },
  23764. {
  23765. name: "Examacro",
  23766. height: math.unit(2.5e9, "lightyears")
  23767. },
  23768. ]
  23769. ))
  23770. characterMakers.push(() => makeCharacter(
  23771. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  23772. {
  23773. front: {
  23774. height: math.unit(21, "meters"),
  23775. weight: math.unit(12, "tonnes"),
  23776. name: "Front",
  23777. image: {
  23778. source: "./media/characters/kuru/front.svg",
  23779. extra: 4301 / 3785,
  23780. bottom: 371.3 / 4691
  23781. }
  23782. },
  23783. },
  23784. [
  23785. {
  23786. name: "Macro",
  23787. height: math.unit(21, "meters"),
  23788. default: true
  23789. },
  23790. ]
  23791. ))
  23792. characterMakers.push(() => makeCharacter(
  23793. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  23794. {
  23795. front: {
  23796. height: math.unit(23, "meters"),
  23797. weight: math.unit(12.2, "tonnes"),
  23798. name: "Front",
  23799. image: {
  23800. source: "./media/characters/rakka/front.svg",
  23801. extra: 4670 / 4169,
  23802. bottom: 301 / 4968.7
  23803. }
  23804. },
  23805. },
  23806. [
  23807. {
  23808. name: "Macro",
  23809. height: math.unit(23, "meters"),
  23810. default: true
  23811. },
  23812. ]
  23813. ))
  23814. characterMakers.push(() => makeCharacter(
  23815. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  23816. {
  23817. front: {
  23818. height: math.unit(6, "feet"),
  23819. weight: math.unit(150, "lb"),
  23820. name: "Front",
  23821. image: {
  23822. source: "./media/characters/rhys-feline/front.svg",
  23823. extra: 2488 / 2308,
  23824. bottom: 35.67 / 2519.19
  23825. }
  23826. },
  23827. },
  23828. [
  23829. {
  23830. name: "Really Small",
  23831. height: math.unit(1, "nm")
  23832. },
  23833. {
  23834. name: "Micro",
  23835. height: math.unit(4, "inches")
  23836. },
  23837. {
  23838. name: "Normal",
  23839. height: math.unit(4 + 10 / 12, "feet"),
  23840. default: true
  23841. },
  23842. {
  23843. name: "Macro",
  23844. height: math.unit(100, "feet")
  23845. },
  23846. {
  23847. name: "Megamacto",
  23848. height: math.unit(50, "miles")
  23849. },
  23850. ]
  23851. ))
  23852. characterMakers.push(() => makeCharacter(
  23853. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  23854. {
  23855. side: {
  23856. height: math.unit(30, "feet"),
  23857. weight: math.unit(35000, "kg"),
  23858. name: "Side",
  23859. image: {
  23860. source: "./media/characters/alydar/side.svg",
  23861. extra: 234 / 222,
  23862. bottom: 6.5 / 241
  23863. }
  23864. },
  23865. front: {
  23866. height: math.unit(30, "feet"),
  23867. weight: math.unit(35000, "kg"),
  23868. name: "Front",
  23869. image: {
  23870. source: "./media/characters/alydar/front.svg",
  23871. extra: 223.37 / 210.2,
  23872. bottom: 22.3 / 246.76
  23873. }
  23874. },
  23875. top: {
  23876. height: math.unit(64.54, "feet"),
  23877. weight: math.unit(35000, "kg"),
  23878. name: "Top",
  23879. image: {
  23880. source: "./media/characters/alydar/top.svg"
  23881. }
  23882. },
  23883. anthro: {
  23884. height: math.unit(30, "feet"),
  23885. weight: math.unit(9000, "kg"),
  23886. name: "Anthro",
  23887. image: {
  23888. source: "./media/characters/alydar/anthro.svg",
  23889. extra: 432 / 421,
  23890. bottom: 7.18 / 440
  23891. }
  23892. },
  23893. maw: {
  23894. height: math.unit(11.693, "feet"),
  23895. name: "Maw",
  23896. image: {
  23897. source: "./media/characters/alydar/maw.svg"
  23898. }
  23899. },
  23900. head: {
  23901. height: math.unit(11.693, "feet"),
  23902. name: "Head",
  23903. image: {
  23904. source: "./media/characters/alydar/head.svg"
  23905. }
  23906. },
  23907. headAlt: {
  23908. height: math.unit(12.861, "feet"),
  23909. name: "Head (Alt)",
  23910. image: {
  23911. source: "./media/characters/alydar/head-alt.svg"
  23912. }
  23913. },
  23914. wing: {
  23915. height: math.unit(20.712, "feet"),
  23916. name: "Wing",
  23917. image: {
  23918. source: "./media/characters/alydar/wing.svg"
  23919. }
  23920. },
  23921. wingFeather: {
  23922. height: math.unit(9.662, "feet"),
  23923. name: "Wing Feather",
  23924. image: {
  23925. source: "./media/characters/alydar/wing-feather.svg"
  23926. }
  23927. },
  23928. countourFeather: {
  23929. height: math.unit(4.154, "feet"),
  23930. name: "Contour Feather",
  23931. image: {
  23932. source: "./media/characters/alydar/contour-feather.svg"
  23933. }
  23934. },
  23935. },
  23936. [
  23937. {
  23938. name: "Diplomatic",
  23939. height: math.unit(13, "feet"),
  23940. default: true
  23941. },
  23942. {
  23943. name: "Small",
  23944. height: math.unit(30, "feet")
  23945. },
  23946. {
  23947. name: "Normal",
  23948. height: math.unit(95, "feet"),
  23949. default: true
  23950. },
  23951. {
  23952. name: "Large",
  23953. height: math.unit(285, "feet")
  23954. },
  23955. {
  23956. name: "Incomprehensible",
  23957. height: math.unit(450, "megameters")
  23958. },
  23959. ]
  23960. ))
  23961. characterMakers.push(() => makeCharacter(
  23962. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  23963. {
  23964. side: {
  23965. height: math.unit(11, "feet"),
  23966. weight: math.unit(1750, "kg"),
  23967. name: "Side",
  23968. image: {
  23969. source: "./media/characters/selicia/side.svg",
  23970. extra: 440 / 396,
  23971. bottom: 24.8 / 465.979
  23972. }
  23973. },
  23974. maw: {
  23975. height: math.unit(4.665, "feet"),
  23976. name: "Maw",
  23977. image: {
  23978. source: "./media/characters/selicia/maw.svg"
  23979. }
  23980. },
  23981. },
  23982. [
  23983. {
  23984. name: "Normal",
  23985. height: math.unit(11, "feet"),
  23986. default: true
  23987. },
  23988. ]
  23989. ))
  23990. characterMakers.push(() => makeCharacter(
  23991. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  23992. {
  23993. side: {
  23994. height: math.unit(2 + 6 / 12, "feet"),
  23995. weight: math.unit(30, "lb"),
  23996. name: "Side",
  23997. image: {
  23998. source: "./media/characters/layla/side.svg",
  23999. extra: 244 / 188,
  24000. bottom: 18.2 / 262.1
  24001. }
  24002. },
  24003. back: {
  24004. height: math.unit(2 + 6 / 12, "feet"),
  24005. weight: math.unit(30, "lb"),
  24006. name: "Back",
  24007. image: {
  24008. source: "./media/characters/layla/back.svg",
  24009. extra: 308 / 241.5,
  24010. bottom: 8.9 / 316.8
  24011. }
  24012. },
  24013. cumming: {
  24014. height: math.unit(2 + 6 / 12, "feet"),
  24015. weight: math.unit(30, "lb"),
  24016. name: "Cumming",
  24017. image: {
  24018. source: "./media/characters/layla/cumming.svg",
  24019. extra: 342 / 279,
  24020. bottom: 595 / 938
  24021. }
  24022. },
  24023. dickFlaccid: {
  24024. height: math.unit(2.595, "feet"),
  24025. name: "Flaccid Genitals",
  24026. image: {
  24027. source: "./media/characters/layla/dick-flaccid.svg"
  24028. }
  24029. },
  24030. dickErect: {
  24031. height: math.unit(2.359, "feet"),
  24032. name: "Erect Genitals",
  24033. image: {
  24034. source: "./media/characters/layla/dick-erect.svg"
  24035. }
  24036. },
  24037. dragon: {
  24038. height: math.unit(40, "feet"),
  24039. name: "Dragon",
  24040. image: {
  24041. source: "./media/characters/layla/dragon.svg",
  24042. extra: 610/535,
  24043. bottom: 367/977
  24044. }
  24045. },
  24046. taur: {
  24047. height: math.unit(30, "feet"),
  24048. name: "Taur",
  24049. image: {
  24050. source: "./media/characters/layla/taur.svg",
  24051. extra: 1268/1199,
  24052. bottom: 112/1380
  24053. }
  24054. },
  24055. },
  24056. [
  24057. {
  24058. name: "Micro",
  24059. height: math.unit(1, "inch")
  24060. },
  24061. {
  24062. name: "Small",
  24063. height: math.unit(1, "foot")
  24064. },
  24065. {
  24066. name: "Normal",
  24067. height: math.unit(2 + 6 / 12, "feet"),
  24068. default: true
  24069. },
  24070. {
  24071. name: "Macro",
  24072. height: math.unit(200, "feet")
  24073. },
  24074. {
  24075. name: "Megamacro",
  24076. height: math.unit(1000, "miles")
  24077. },
  24078. {
  24079. name: "Planetary",
  24080. height: math.unit(8000, "miles")
  24081. },
  24082. {
  24083. name: "True Layla",
  24084. height: math.unit(200000 * 7, "multiverses")
  24085. },
  24086. ]
  24087. ))
  24088. characterMakers.push(() => makeCharacter(
  24089. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  24090. {
  24091. back: {
  24092. height: math.unit(10.5, "feet"),
  24093. weight: math.unit(800, "lb"),
  24094. name: "Back",
  24095. image: {
  24096. source: "./media/characters/knox/back.svg",
  24097. extra: 1486 / 1089,
  24098. bottom: 107 / 1601.4
  24099. }
  24100. },
  24101. side: {
  24102. height: math.unit(10.5, "feet"),
  24103. weight: math.unit(800, "lb"),
  24104. name: "Side",
  24105. image: {
  24106. source: "./media/characters/knox/side.svg",
  24107. extra: 244 / 218,
  24108. bottom: 14 / 260
  24109. }
  24110. },
  24111. },
  24112. [
  24113. {
  24114. name: "Compact",
  24115. height: math.unit(10.5, "feet"),
  24116. default: true
  24117. },
  24118. {
  24119. name: "Dynamax",
  24120. height: math.unit(210, "feet")
  24121. },
  24122. {
  24123. name: "Full Macro",
  24124. height: math.unit(850, "feet")
  24125. },
  24126. ]
  24127. ))
  24128. characterMakers.push(() => makeCharacter(
  24129. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  24130. {
  24131. front: {
  24132. height: math.unit(28, "feet"),
  24133. weight: math.unit(10500, "lb"),
  24134. name: "Front",
  24135. image: {
  24136. source: "./media/characters/kayda/front.svg",
  24137. extra: 1536 / 1428,
  24138. bottom: 68.7 / 1603
  24139. }
  24140. },
  24141. back: {
  24142. height: math.unit(28, "feet"),
  24143. weight: math.unit(10500, "lb"),
  24144. name: "Back",
  24145. image: {
  24146. source: "./media/characters/kayda/back.svg",
  24147. extra: 1557 / 1464,
  24148. bottom: 39.5 / 1597.49
  24149. }
  24150. },
  24151. dick: {
  24152. height: math.unit(3.858, "feet"),
  24153. name: "Dick",
  24154. image: {
  24155. source: "./media/characters/kayda/dick.svg"
  24156. }
  24157. },
  24158. },
  24159. [
  24160. {
  24161. name: "Macro",
  24162. height: math.unit(28, "feet"),
  24163. default: true
  24164. },
  24165. ]
  24166. ))
  24167. characterMakers.push(() => makeCharacter(
  24168. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  24169. {
  24170. front: {
  24171. height: math.unit(10 + 11 / 12, "feet"),
  24172. weight: math.unit(1400, "lb"),
  24173. name: "Front",
  24174. image: {
  24175. source: "./media/characters/brian/front.svg",
  24176. extra: 737 / 692,
  24177. bottom: 55.4 / 785
  24178. }
  24179. },
  24180. },
  24181. [
  24182. {
  24183. name: "Normal",
  24184. height: math.unit(10 + 11 / 12, "feet"),
  24185. default: true
  24186. },
  24187. ]
  24188. ))
  24189. characterMakers.push(() => makeCharacter(
  24190. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  24191. {
  24192. front: {
  24193. height: math.unit(5 + 8 / 12, "feet"),
  24194. weight: math.unit(140, "lb"),
  24195. name: "Front",
  24196. image: {
  24197. source: "./media/characters/khemri/front.svg",
  24198. extra: 4780 / 4059,
  24199. bottom: 80.1 / 4859.25
  24200. }
  24201. },
  24202. },
  24203. [
  24204. {
  24205. name: "Micro",
  24206. height: math.unit(6, "inches")
  24207. },
  24208. {
  24209. name: "Normal",
  24210. height: math.unit(5 + 8 / 12, "feet"),
  24211. default: true
  24212. },
  24213. ]
  24214. ))
  24215. characterMakers.push(() => makeCharacter(
  24216. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  24217. {
  24218. front: {
  24219. height: math.unit(13, "feet"),
  24220. weight: math.unit(1700, "lb"),
  24221. name: "Front",
  24222. image: {
  24223. source: "./media/characters/felix-braveheart/front.svg",
  24224. extra: 1222 / 1157,
  24225. bottom: 53.2 / 1280
  24226. }
  24227. },
  24228. back: {
  24229. height: math.unit(13, "feet"),
  24230. weight: math.unit(1700, "lb"),
  24231. name: "Back",
  24232. image: {
  24233. source: "./media/characters/felix-braveheart/back.svg",
  24234. extra: 1277 / 1203,
  24235. bottom: 50.2 / 1327
  24236. }
  24237. },
  24238. feral: {
  24239. height: math.unit(6, "feet"),
  24240. weight: math.unit(400, "lb"),
  24241. name: "Feral",
  24242. image: {
  24243. source: "./media/characters/felix-braveheart/feral.svg",
  24244. extra: 682 / 625,
  24245. bottom: 6.9 / 688
  24246. }
  24247. },
  24248. },
  24249. [
  24250. {
  24251. name: "Normal",
  24252. height: math.unit(13, "feet"),
  24253. default: true
  24254. },
  24255. ]
  24256. ))
  24257. characterMakers.push(() => makeCharacter(
  24258. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  24259. {
  24260. side: {
  24261. height: math.unit(5 + 11 / 12, "feet"),
  24262. weight: math.unit(1400, "lb"),
  24263. name: "Side",
  24264. image: {
  24265. source: "./media/characters/shadow-blade/side.svg",
  24266. extra: 1726 / 1267,
  24267. bottom: 58.4 / 1785
  24268. }
  24269. },
  24270. },
  24271. [
  24272. {
  24273. name: "Normal",
  24274. height: math.unit(5 + 11 / 12, "feet"),
  24275. default: true
  24276. },
  24277. ]
  24278. ))
  24279. characterMakers.push(() => makeCharacter(
  24280. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  24281. {
  24282. front: {
  24283. height: math.unit(1 + 6 / 12, "feet"),
  24284. weight: math.unit(25, "lb"),
  24285. name: "Front",
  24286. image: {
  24287. source: "./media/characters/karla-halldor/front.svg",
  24288. extra: 1459 / 1383,
  24289. bottom: 12 / 1472
  24290. }
  24291. },
  24292. },
  24293. [
  24294. {
  24295. name: "Normal",
  24296. height: math.unit(1 + 6 / 12, "feet"),
  24297. default: true
  24298. },
  24299. ]
  24300. ))
  24301. characterMakers.push(() => makeCharacter(
  24302. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  24303. {
  24304. front: {
  24305. height: math.unit(6 + 2 / 12, "feet"),
  24306. weight: math.unit(160, "lb"),
  24307. name: "Front",
  24308. image: {
  24309. source: "./media/characters/ariam/front.svg",
  24310. extra: 1073/976,
  24311. bottom: 52/1125
  24312. }
  24313. },
  24314. back: {
  24315. height: math.unit(6 + 2/12, "feet"),
  24316. weight: math.unit(160, "lb"),
  24317. name: "Back",
  24318. image: {
  24319. source: "./media/characters/ariam/back.svg",
  24320. extra: 1103/1023,
  24321. bottom: 9/1112
  24322. }
  24323. },
  24324. dressed: {
  24325. height: math.unit(6 + 2/12, "feet"),
  24326. weight: math.unit(160, "lb"),
  24327. name: "Dressed",
  24328. image: {
  24329. source: "./media/characters/ariam/dressed.svg",
  24330. extra: 1099/1009,
  24331. bottom: 25/1124
  24332. }
  24333. },
  24334. squatting: {
  24335. height: math.unit(4.1, "feet"),
  24336. weight: math.unit(160, "lb"),
  24337. name: "Squatting",
  24338. image: {
  24339. source: "./media/characters/ariam/squatting.svg",
  24340. extra: 2617 / 2112,
  24341. bottom: 61.2 / 2681,
  24342. }
  24343. },
  24344. },
  24345. [
  24346. {
  24347. name: "Normal",
  24348. height: math.unit(6 + 2 / 12, "feet"),
  24349. default: true
  24350. },
  24351. {
  24352. name: "Normal+",
  24353. height: math.unit(4, "meters")
  24354. },
  24355. {
  24356. name: "Macro",
  24357. height: math.unit(50, "meters")
  24358. },
  24359. {
  24360. name: "Macro+",
  24361. height: math.unit(100, "meters")
  24362. },
  24363. {
  24364. name: "Megamacro",
  24365. height: math.unit(20, "km")
  24366. },
  24367. {
  24368. name: "Caretaker",
  24369. height: math.unit(444, "megameters")
  24370. },
  24371. ]
  24372. ))
  24373. characterMakers.push(() => makeCharacter(
  24374. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  24375. {
  24376. front: {
  24377. height: math.unit(1.67, "meters"),
  24378. weight: math.unit(140, "lb"),
  24379. name: "Front",
  24380. image: {
  24381. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  24382. extra: 438 / 410,
  24383. bottom: 0.75 / 439
  24384. }
  24385. },
  24386. },
  24387. [
  24388. {
  24389. name: "Shrunken",
  24390. height: math.unit(7.6, "cm")
  24391. },
  24392. {
  24393. name: "Human Scale",
  24394. height: math.unit(1.67, "meters")
  24395. },
  24396. {
  24397. name: "Wolxi Scale",
  24398. height: math.unit(36.7, "meters"),
  24399. default: true
  24400. },
  24401. ]
  24402. ))
  24403. characterMakers.push(() => makeCharacter(
  24404. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  24405. {
  24406. front: {
  24407. height: math.unit(1.73, "meters"),
  24408. weight: math.unit(240, "lb"),
  24409. name: "Front",
  24410. image: {
  24411. source: "./media/characters/izue-two-mothers/front.svg",
  24412. extra: 469 / 437,
  24413. bottom: 1.24 / 470.6
  24414. }
  24415. },
  24416. },
  24417. [
  24418. {
  24419. name: "Shrunken",
  24420. height: math.unit(7.86, "cm")
  24421. },
  24422. {
  24423. name: "Human Scale",
  24424. height: math.unit(1.73, "meters")
  24425. },
  24426. {
  24427. name: "Wolxi Scale",
  24428. height: math.unit(38, "meters"),
  24429. default: true
  24430. },
  24431. ]
  24432. ))
  24433. characterMakers.push(() => makeCharacter(
  24434. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  24435. {
  24436. front: {
  24437. height: math.unit(1.55, "meters"),
  24438. weight: math.unit(120, "lb"),
  24439. name: "Front",
  24440. image: {
  24441. source: "./media/characters/teeku-love-shack/front.svg",
  24442. extra: 387 / 362,
  24443. bottom: 1.51 / 388
  24444. }
  24445. },
  24446. },
  24447. [
  24448. {
  24449. name: "Shrunken",
  24450. height: math.unit(7, "cm")
  24451. },
  24452. {
  24453. name: "Human Scale",
  24454. height: math.unit(1.55, "meters")
  24455. },
  24456. {
  24457. name: "Wolxi Scale",
  24458. height: math.unit(34.1, "meters"),
  24459. default: true
  24460. },
  24461. ]
  24462. ))
  24463. characterMakers.push(() => makeCharacter(
  24464. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  24465. {
  24466. front: {
  24467. height: math.unit(1.83, "meters"),
  24468. weight: math.unit(135, "lb"),
  24469. name: "Front",
  24470. image: {
  24471. source: "./media/characters/dejma-the-red/front.svg",
  24472. extra: 480 / 458,
  24473. bottom: 1.8 / 482
  24474. }
  24475. },
  24476. },
  24477. [
  24478. {
  24479. name: "Shrunken",
  24480. height: math.unit(8.3, "cm")
  24481. },
  24482. {
  24483. name: "Human Scale",
  24484. height: math.unit(1.83, "meters")
  24485. },
  24486. {
  24487. name: "Wolxi Scale",
  24488. height: math.unit(40, "meters"),
  24489. default: true
  24490. },
  24491. ]
  24492. ))
  24493. characterMakers.push(() => makeCharacter(
  24494. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  24495. {
  24496. front: {
  24497. height: math.unit(1.78, "meters"),
  24498. weight: math.unit(65, "kg"),
  24499. name: "Front",
  24500. image: {
  24501. source: "./media/characters/aki/front.svg",
  24502. extra: 452 / 415
  24503. }
  24504. },
  24505. frontNsfw: {
  24506. height: math.unit(1.78, "meters"),
  24507. weight: math.unit(65, "kg"),
  24508. name: "Front (NSFW)",
  24509. image: {
  24510. source: "./media/characters/aki/front-nsfw.svg",
  24511. extra: 452 / 415
  24512. }
  24513. },
  24514. back: {
  24515. height: math.unit(1.78, "meters"),
  24516. weight: math.unit(65, "kg"),
  24517. name: "Back",
  24518. image: {
  24519. source: "./media/characters/aki/back.svg",
  24520. extra: 452 / 415
  24521. }
  24522. },
  24523. rump: {
  24524. height: math.unit(2.05, "feet"),
  24525. name: "Rump",
  24526. image: {
  24527. source: "./media/characters/aki/rump.svg"
  24528. }
  24529. },
  24530. dick: {
  24531. height: math.unit(0.95, "feet"),
  24532. name: "Dick",
  24533. image: {
  24534. source: "./media/characters/aki/dick.svg"
  24535. }
  24536. },
  24537. },
  24538. [
  24539. {
  24540. name: "Micro",
  24541. height: math.unit(15, "cm")
  24542. },
  24543. {
  24544. name: "Normal",
  24545. height: math.unit(178, "cm"),
  24546. default: true
  24547. },
  24548. {
  24549. name: "Macro",
  24550. height: math.unit(214, "m")
  24551. },
  24552. {
  24553. name: "Macro+",
  24554. height: math.unit(534, "m")
  24555. },
  24556. ]
  24557. ))
  24558. characterMakers.push(() => makeCharacter(
  24559. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  24560. {
  24561. front: {
  24562. height: math.unit(5 + 5 / 12, "feet"),
  24563. weight: math.unit(120, "lb"),
  24564. name: "Front",
  24565. image: {
  24566. source: "./media/characters/ari/front.svg",
  24567. extra: 714.5 / 682,
  24568. bottom: 8 / 722.5
  24569. }
  24570. },
  24571. },
  24572. [
  24573. {
  24574. name: "Normal",
  24575. height: math.unit(5 + 5 / 12, "feet")
  24576. },
  24577. {
  24578. name: "Macro",
  24579. height: math.unit(100, "feet"),
  24580. default: true
  24581. },
  24582. {
  24583. name: "Megamacro",
  24584. height: math.unit(100, "miles")
  24585. },
  24586. {
  24587. name: "Gigamacro",
  24588. height: math.unit(80000, "miles")
  24589. },
  24590. ]
  24591. ))
  24592. characterMakers.push(() => makeCharacter(
  24593. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  24594. {
  24595. side: {
  24596. height: math.unit(9, "feet"),
  24597. weight: math.unit(400, "kg"),
  24598. name: "Side",
  24599. image: {
  24600. source: "./media/characters/bolt/side.svg",
  24601. extra: 1126 / 896,
  24602. bottom: 60 / 1187.3,
  24603. }
  24604. },
  24605. },
  24606. [
  24607. {
  24608. name: "Micro",
  24609. height: math.unit(5, "inches")
  24610. },
  24611. {
  24612. name: "Normal",
  24613. height: math.unit(9, "feet"),
  24614. default: true
  24615. },
  24616. {
  24617. name: "Macro",
  24618. height: math.unit(700, "feet")
  24619. },
  24620. {
  24621. name: "Max Size",
  24622. height: math.unit(1.52e22, "yottameters")
  24623. },
  24624. ]
  24625. ))
  24626. characterMakers.push(() => makeCharacter(
  24627. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  24628. {
  24629. front: {
  24630. height: math.unit(4.53, "meters"),
  24631. weight: math.unit(3, "tons"),
  24632. name: "Front",
  24633. image: {
  24634. source: "./media/characters/draekon-sylviar/front.svg",
  24635. extra: 1228 / 1068,
  24636. bottom: 41 / 1270
  24637. }
  24638. },
  24639. tail: {
  24640. height: math.unit(1.772, "meter"),
  24641. name: "Tail",
  24642. image: {
  24643. source: "./media/characters/draekon-sylviar/tail.svg"
  24644. }
  24645. },
  24646. head: {
  24647. height: math.unit(1.331, "meter"),
  24648. name: "Head",
  24649. image: {
  24650. source: "./media/characters/draekon-sylviar/head.svg"
  24651. }
  24652. },
  24653. hand: {
  24654. height: math.unit(0.564, "meter"),
  24655. name: "Hand",
  24656. image: {
  24657. source: "./media/characters/draekon-sylviar/hand.svg"
  24658. }
  24659. },
  24660. foot: {
  24661. height: math.unit(0.621, "meter"),
  24662. name: "Foot",
  24663. image: {
  24664. source: "./media/characters/draekon-sylviar/foot.svg",
  24665. bottom: 32 / 324
  24666. }
  24667. },
  24668. dick: {
  24669. height: math.unit(61, "cm"),
  24670. name: "Dick",
  24671. image: {
  24672. source: "./media/characters/draekon-sylviar/dick.svg"
  24673. }
  24674. },
  24675. dickseparated: {
  24676. height: math.unit(61, "cm"),
  24677. name: "Dick-separated",
  24678. image: {
  24679. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  24680. }
  24681. },
  24682. },
  24683. [
  24684. {
  24685. name: "Small",
  24686. height: math.unit(4.53 / 2, "meters"),
  24687. default: true
  24688. },
  24689. {
  24690. name: "Normal",
  24691. height: math.unit(4.53, "meters"),
  24692. default: true
  24693. },
  24694. {
  24695. name: "Large",
  24696. height: math.unit(4.53 * 2, "meters"),
  24697. },
  24698. ]
  24699. ))
  24700. characterMakers.push(() => makeCharacter(
  24701. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  24702. {
  24703. front: {
  24704. height: math.unit(6 + 2 / 12, "feet"),
  24705. weight: math.unit(180, "lb"),
  24706. name: "Front",
  24707. image: {
  24708. source: "./media/characters/brawler/front.svg",
  24709. extra: 3301 / 3027,
  24710. bottom: 138 / 3439
  24711. }
  24712. },
  24713. },
  24714. [
  24715. {
  24716. name: "Normal",
  24717. height: math.unit(6 + 2 / 12, "feet"),
  24718. default: true
  24719. },
  24720. ]
  24721. ))
  24722. characterMakers.push(() => makeCharacter(
  24723. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  24724. {
  24725. front: {
  24726. height: math.unit(11, "feet"),
  24727. weight: math.unit(1000, "lb"),
  24728. name: "Front",
  24729. image: {
  24730. source: "./media/characters/alex/front.svg",
  24731. bottom: 44.5 / 620
  24732. }
  24733. },
  24734. },
  24735. [
  24736. {
  24737. name: "Micro",
  24738. height: math.unit(5, "inches")
  24739. },
  24740. {
  24741. name: "Normal",
  24742. height: math.unit(11, "feet"),
  24743. default: true
  24744. },
  24745. {
  24746. name: "Macro",
  24747. height: math.unit(9.5e9, "feet")
  24748. },
  24749. {
  24750. name: "Max Size",
  24751. height: math.unit(1.4e283, "yottameters")
  24752. },
  24753. ]
  24754. ))
  24755. characterMakers.push(() => makeCharacter(
  24756. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  24757. {
  24758. female: {
  24759. height: math.unit(29.9, "m"),
  24760. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  24761. name: "Female",
  24762. image: {
  24763. source: "./media/characters/zenari/female.svg",
  24764. extra: 3281.6 / 3217,
  24765. bottom: 72.2 / 3353
  24766. }
  24767. },
  24768. male: {
  24769. height: math.unit(27.7, "m"),
  24770. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  24771. name: "Male",
  24772. image: {
  24773. source: "./media/characters/zenari/male.svg",
  24774. extra: 3008 / 2991,
  24775. bottom: 54.6 / 3069
  24776. }
  24777. },
  24778. },
  24779. [
  24780. {
  24781. name: "Macro",
  24782. height: math.unit(29.7, "meters"),
  24783. default: true
  24784. },
  24785. ]
  24786. ))
  24787. characterMakers.push(() => makeCharacter(
  24788. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  24789. {
  24790. female: {
  24791. height: math.unit(23.8, "m"),
  24792. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24793. name: "Female",
  24794. image: {
  24795. source: "./media/characters/mactarian/female.svg",
  24796. extra: 2662 / 2569,
  24797. bottom: 73 / 2736
  24798. }
  24799. },
  24800. male: {
  24801. height: math.unit(23.8, "m"),
  24802. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24803. name: "Male",
  24804. image: {
  24805. source: "./media/characters/mactarian/male.svg",
  24806. extra: 2673 / 2600,
  24807. bottom: 76 / 2750
  24808. }
  24809. },
  24810. },
  24811. [
  24812. {
  24813. name: "Macro",
  24814. height: math.unit(23.8, "meters"),
  24815. default: true
  24816. },
  24817. ]
  24818. ))
  24819. characterMakers.push(() => makeCharacter(
  24820. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  24821. {
  24822. female: {
  24823. height: math.unit(19.3, "m"),
  24824. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  24825. name: "Female",
  24826. image: {
  24827. source: "./media/characters/umok/female.svg",
  24828. extra: 2186 / 2078,
  24829. bottom: 87 / 2277
  24830. }
  24831. },
  24832. male: {
  24833. height: math.unit(19.5, "m"),
  24834. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  24835. name: "Male",
  24836. image: {
  24837. source: "./media/characters/umok/male.svg",
  24838. extra: 2233 / 2140,
  24839. bottom: 24.4 / 2258
  24840. }
  24841. },
  24842. },
  24843. [
  24844. {
  24845. name: "Macro",
  24846. height: math.unit(19.3, "meters"),
  24847. default: true
  24848. },
  24849. ]
  24850. ))
  24851. characterMakers.push(() => makeCharacter(
  24852. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  24853. {
  24854. female: {
  24855. height: math.unit(26.15, "m"),
  24856. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  24857. name: "Female",
  24858. image: {
  24859. source: "./media/characters/joraxian/female.svg",
  24860. extra: 2912 / 2824,
  24861. bottom: 36 / 2956
  24862. }
  24863. },
  24864. male: {
  24865. height: math.unit(25.4, "m"),
  24866. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  24867. name: "Male",
  24868. image: {
  24869. source: "./media/characters/joraxian/male.svg",
  24870. extra: 2877 / 2721,
  24871. bottom: 82 / 2967
  24872. }
  24873. },
  24874. },
  24875. [
  24876. {
  24877. name: "Macro",
  24878. height: math.unit(26.15, "meters"),
  24879. default: true
  24880. },
  24881. ]
  24882. ))
  24883. characterMakers.push(() => makeCharacter(
  24884. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  24885. {
  24886. female: {
  24887. height: math.unit(21.6, "m"),
  24888. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  24889. name: "Female",
  24890. image: {
  24891. source: "./media/characters/sthara/female.svg",
  24892. extra: 2516 / 2347,
  24893. bottom: 21.5 / 2537
  24894. }
  24895. },
  24896. male: {
  24897. height: math.unit(24, "m"),
  24898. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  24899. name: "Male",
  24900. image: {
  24901. source: "./media/characters/sthara/male.svg",
  24902. extra: 2732 / 2607,
  24903. bottom: 23 / 2732
  24904. }
  24905. },
  24906. },
  24907. [
  24908. {
  24909. name: "Macro",
  24910. height: math.unit(21.6, "meters"),
  24911. default: true
  24912. },
  24913. ]
  24914. ))
  24915. characterMakers.push(() => makeCharacter(
  24916. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  24917. {
  24918. front: {
  24919. height: math.unit(6 + 4 / 12, "feet"),
  24920. weight: math.unit(175, "lb"),
  24921. name: "Front",
  24922. image: {
  24923. source: "./media/characters/luka-bryzant/front.svg",
  24924. extra: 311 / 289,
  24925. bottom: 4 / 315
  24926. }
  24927. },
  24928. back: {
  24929. height: math.unit(6 + 4 / 12, "feet"),
  24930. weight: math.unit(175, "lb"),
  24931. name: "Back",
  24932. image: {
  24933. source: "./media/characters/luka-bryzant/back.svg",
  24934. extra: 311 / 289,
  24935. bottom: 3.8 / 313.7
  24936. }
  24937. },
  24938. },
  24939. [
  24940. {
  24941. name: "Micro",
  24942. height: math.unit(10, "inches")
  24943. },
  24944. {
  24945. name: "Normal",
  24946. height: math.unit(6 + 4 / 12, "feet"),
  24947. default: true
  24948. },
  24949. {
  24950. name: "Large",
  24951. height: math.unit(12, "feet")
  24952. },
  24953. ]
  24954. ))
  24955. characterMakers.push(() => makeCharacter(
  24956. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  24957. {
  24958. front: {
  24959. height: math.unit(5 + 7 / 12, "feet"),
  24960. weight: math.unit(185, "lb"),
  24961. name: "Front",
  24962. image: {
  24963. source: "./media/characters/aman-aquila/front.svg",
  24964. extra: 1013 / 976,
  24965. bottom: 45.6 / 1057
  24966. }
  24967. },
  24968. side: {
  24969. height: math.unit(5 + 7 / 12, "feet"),
  24970. weight: math.unit(185, "lb"),
  24971. name: "Side",
  24972. image: {
  24973. source: "./media/characters/aman-aquila/side.svg",
  24974. extra: 1054 / 1011,
  24975. bottom: 15 / 1070
  24976. }
  24977. },
  24978. back: {
  24979. height: math.unit(5 + 7 / 12, "feet"),
  24980. weight: math.unit(185, "lb"),
  24981. name: "Back",
  24982. image: {
  24983. source: "./media/characters/aman-aquila/back.svg",
  24984. extra: 1026 / 970,
  24985. bottom: 12 / 1039
  24986. }
  24987. },
  24988. head: {
  24989. height: math.unit(1.211, "feet"),
  24990. name: "Head",
  24991. image: {
  24992. source: "./media/characters/aman-aquila/head.svg",
  24993. }
  24994. },
  24995. },
  24996. [
  24997. {
  24998. name: "Minimicro",
  24999. height: math.unit(0.057, "inches")
  25000. },
  25001. {
  25002. name: "Micro",
  25003. height: math.unit(7, "inches")
  25004. },
  25005. {
  25006. name: "Mini",
  25007. height: math.unit(3 + 7 / 12, "feet")
  25008. },
  25009. {
  25010. name: "Normal",
  25011. height: math.unit(5 + 7 / 12, "feet"),
  25012. default: true
  25013. },
  25014. {
  25015. name: "Macro",
  25016. height: math.unit(157 + 7 / 12, "feet")
  25017. },
  25018. {
  25019. name: "Megamacro",
  25020. height: math.unit(1557 + 7 / 12, "feet")
  25021. },
  25022. {
  25023. name: "Gigamacro",
  25024. height: math.unit(15557 + 7 / 12, "feet")
  25025. },
  25026. ]
  25027. ))
  25028. characterMakers.push(() => makeCharacter(
  25029. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  25030. {
  25031. front: {
  25032. height: math.unit(3 + 2 / 12, "inches"),
  25033. weight: math.unit(0.3, "ounces"),
  25034. name: "Front",
  25035. image: {
  25036. source: "./media/characters/hiphae/front.svg",
  25037. extra: 1931 / 1683,
  25038. bottom: 24 / 1955
  25039. }
  25040. },
  25041. },
  25042. [
  25043. {
  25044. name: "Normal",
  25045. height: math.unit(3 + 1 / 2, "inches"),
  25046. default: true
  25047. },
  25048. ]
  25049. ))
  25050. characterMakers.push(() => makeCharacter(
  25051. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  25052. {
  25053. front: {
  25054. height: math.unit(5 + 10 / 12, "feet"),
  25055. weight: math.unit(165, "lb"),
  25056. name: "Front",
  25057. image: {
  25058. source: "./media/characters/nicky/front.svg",
  25059. extra: 3144 / 2886,
  25060. bottom: 45.6 / 3192
  25061. }
  25062. },
  25063. back: {
  25064. height: math.unit(5 + 10 / 12, "feet"),
  25065. weight: math.unit(165, "lb"),
  25066. name: "Back",
  25067. image: {
  25068. source: "./media/characters/nicky/back.svg",
  25069. extra: 3055 / 2804,
  25070. bottom: 28.4 / 3087
  25071. }
  25072. },
  25073. frontclothed: {
  25074. height: math.unit(5 + 10 / 12, "feet"),
  25075. weight: math.unit(165, "lb"),
  25076. name: "Front-clothed",
  25077. image: {
  25078. source: "./media/characters/nicky/front-clothed.svg",
  25079. extra: 3184.9 / 2926.9,
  25080. bottom: 86.5 / 3239.9
  25081. }
  25082. },
  25083. foot: {
  25084. height: math.unit(1.16, "feet"),
  25085. name: "Foot",
  25086. image: {
  25087. source: "./media/characters/nicky/foot.svg"
  25088. }
  25089. },
  25090. feet: {
  25091. height: math.unit(1.34, "feet"),
  25092. name: "Feet",
  25093. image: {
  25094. source: "./media/characters/nicky/feet.svg"
  25095. }
  25096. },
  25097. maw: {
  25098. height: math.unit(0.9, "feet"),
  25099. name: "Maw",
  25100. image: {
  25101. source: "./media/characters/nicky/maw.svg"
  25102. }
  25103. },
  25104. },
  25105. [
  25106. {
  25107. name: "Normal",
  25108. height: math.unit(5 + 10 / 12, "feet"),
  25109. default: true
  25110. },
  25111. {
  25112. name: "Macro",
  25113. height: math.unit(60, "feet")
  25114. },
  25115. {
  25116. name: "Megamacro",
  25117. height: math.unit(1, "mile")
  25118. },
  25119. ]
  25120. ))
  25121. characterMakers.push(() => makeCharacter(
  25122. { name: "Blair", species: ["seal"], tags: ["taur"] },
  25123. {
  25124. side: {
  25125. height: math.unit(10, "feet"),
  25126. weight: math.unit(600, "lb"),
  25127. name: "Side",
  25128. image: {
  25129. source: "./media/characters/blair/side.svg",
  25130. bottom: 16.6 / 475,
  25131. extra: 458 / 431
  25132. }
  25133. },
  25134. },
  25135. [
  25136. {
  25137. name: "Micro",
  25138. height: math.unit(8, "inches")
  25139. },
  25140. {
  25141. name: "Normal",
  25142. height: math.unit(10, "feet"),
  25143. default: true
  25144. },
  25145. {
  25146. name: "Macro",
  25147. height: math.unit(180, "feet")
  25148. },
  25149. ]
  25150. ))
  25151. characterMakers.push(() => makeCharacter(
  25152. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  25153. {
  25154. front: {
  25155. height: math.unit(5 + 4 / 12, "feet"),
  25156. weight: math.unit(125, "lb"),
  25157. name: "Front",
  25158. image: {
  25159. source: "./media/characters/fisher/front.svg",
  25160. extra: 444 / 390,
  25161. bottom: 2 / 444.8
  25162. }
  25163. },
  25164. },
  25165. [
  25166. {
  25167. name: "Micro",
  25168. height: math.unit(4, "inches")
  25169. },
  25170. {
  25171. name: "Normal",
  25172. height: math.unit(5 + 4 / 12, "feet"),
  25173. default: true
  25174. },
  25175. {
  25176. name: "Macro",
  25177. height: math.unit(100, "feet")
  25178. },
  25179. ]
  25180. ))
  25181. characterMakers.push(() => makeCharacter(
  25182. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  25183. {
  25184. front: {
  25185. height: math.unit(6.71, "feet"),
  25186. weight: math.unit(200, "lb"),
  25187. capacity: math.unit(1000000, "people"),
  25188. name: "Front",
  25189. image: {
  25190. source: "./media/characters/gliss/front.svg",
  25191. extra: 2347 / 2231,
  25192. bottom: 113 / 2462
  25193. }
  25194. },
  25195. hammerspaceSize: {
  25196. height: math.unit(6.71 * 717, "feet"),
  25197. weight: math.unit(200, "lb"),
  25198. capacity: math.unit(1000000, "people"),
  25199. name: "Hammerspace Size",
  25200. image: {
  25201. source: "./media/characters/gliss/front.svg",
  25202. extra: 2347 / 2231,
  25203. bottom: 113 / 2462
  25204. }
  25205. },
  25206. },
  25207. [
  25208. {
  25209. name: "Normal",
  25210. height: math.unit(6.71, "feet"),
  25211. default: true
  25212. },
  25213. ]
  25214. ))
  25215. characterMakers.push(() => makeCharacter(
  25216. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  25217. {
  25218. side: {
  25219. height: math.unit(1.44, "m"),
  25220. weight: math.unit(80, "kg"),
  25221. name: "Side",
  25222. image: {
  25223. source: "./media/characters/dune-anderson/side.svg",
  25224. bottom: 49 / 1426
  25225. }
  25226. },
  25227. },
  25228. [
  25229. {
  25230. name: "Wolf-sized",
  25231. height: math.unit(1.44, "meters")
  25232. },
  25233. {
  25234. name: "Normal",
  25235. height: math.unit(5.05, "meters"),
  25236. default: true
  25237. },
  25238. {
  25239. name: "Big",
  25240. height: math.unit(14.4, "meters")
  25241. },
  25242. {
  25243. name: "Huge",
  25244. height: math.unit(144, "meters")
  25245. },
  25246. ]
  25247. ))
  25248. characterMakers.push(() => makeCharacter(
  25249. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  25250. {
  25251. front: {
  25252. height: math.unit(7, "feet"),
  25253. weight: math.unit(425, "lb"),
  25254. name: "Front",
  25255. image: {
  25256. source: "./media/characters/hind/front.svg",
  25257. extra: 2091 / 1860,
  25258. bottom: 129 / 2220
  25259. }
  25260. },
  25261. back: {
  25262. height: math.unit(7, "feet"),
  25263. weight: math.unit(425, "lb"),
  25264. name: "Back",
  25265. image: {
  25266. source: "./media/characters/hind/back.svg",
  25267. extra: 2091 / 1860,
  25268. bottom: 24.6 / 2309
  25269. }
  25270. },
  25271. tail: {
  25272. height: math.unit(2.8, "feet"),
  25273. name: "Tail",
  25274. image: {
  25275. source: "./media/characters/hind/tail.svg"
  25276. }
  25277. },
  25278. head: {
  25279. height: math.unit(2.55, "feet"),
  25280. name: "Head",
  25281. image: {
  25282. source: "./media/characters/hind/head.svg"
  25283. }
  25284. },
  25285. },
  25286. [
  25287. {
  25288. name: "XS",
  25289. height: math.unit(0.7, "feet")
  25290. },
  25291. {
  25292. name: "Normal",
  25293. height: math.unit(7, "feet"),
  25294. default: true
  25295. },
  25296. {
  25297. name: "XL",
  25298. height: math.unit(70, "feet")
  25299. },
  25300. ]
  25301. ))
  25302. characterMakers.push(() => makeCharacter(
  25303. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  25304. {
  25305. front: {
  25306. height: math.unit(2.1, "meters"),
  25307. weight: math.unit(150, "lb"),
  25308. name: "Front",
  25309. image: {
  25310. source: "./media/characters/tharquench-sizestealer/front.svg",
  25311. extra: 1605/1470,
  25312. bottom: 36/1641
  25313. }
  25314. },
  25315. frontAlt: {
  25316. height: math.unit(2.1, "meters"),
  25317. weight: math.unit(150, "lb"),
  25318. name: "Front (Alt)",
  25319. image: {
  25320. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  25321. extra: 2318 / 2063,
  25322. bottom: 93.4 / 2410
  25323. }
  25324. },
  25325. },
  25326. [
  25327. {
  25328. name: "Nano",
  25329. height: math.unit(1, "mm")
  25330. },
  25331. {
  25332. name: "Micro",
  25333. height: math.unit(1, "cm")
  25334. },
  25335. {
  25336. name: "Normal",
  25337. height: math.unit(2.1, "meters"),
  25338. default: true
  25339. },
  25340. ]
  25341. ))
  25342. characterMakers.push(() => makeCharacter(
  25343. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  25344. {
  25345. front: {
  25346. height: math.unit(7 + 5 / 12, "feet"),
  25347. weight: math.unit(357, "lb"),
  25348. name: "Front",
  25349. image: {
  25350. source: "./media/characters/solex-draconov/front.svg",
  25351. extra: 1993 / 1865,
  25352. bottom: 117 / 2111
  25353. }
  25354. },
  25355. },
  25356. [
  25357. {
  25358. name: "Natural Height",
  25359. height: math.unit(7 + 5 / 12, "feet"),
  25360. default: true
  25361. },
  25362. {
  25363. name: "Macro",
  25364. height: math.unit(350, "feet")
  25365. },
  25366. {
  25367. name: "Macro+",
  25368. height: math.unit(1000, "feet")
  25369. },
  25370. {
  25371. name: "Megamacro",
  25372. height: math.unit(20, "km")
  25373. },
  25374. {
  25375. name: "Megamacro+",
  25376. height: math.unit(1000, "km")
  25377. },
  25378. {
  25379. name: "Gigamacro",
  25380. height: math.unit(2.5, "Gm")
  25381. },
  25382. {
  25383. name: "Teramacro",
  25384. height: math.unit(15, "Tm")
  25385. },
  25386. {
  25387. name: "Galactic",
  25388. height: math.unit(30, "Zm")
  25389. },
  25390. {
  25391. name: "Universal",
  25392. height: math.unit(21000, "Ym")
  25393. },
  25394. {
  25395. name: "Omniversal",
  25396. height: math.unit(9.861e50, "Ym")
  25397. },
  25398. {
  25399. name: "Existential",
  25400. height: math.unit(1e300, "meters")
  25401. },
  25402. ]
  25403. ))
  25404. characterMakers.push(() => makeCharacter(
  25405. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  25406. {
  25407. side: {
  25408. height: math.unit(25, "feet"),
  25409. weight: math.unit(90000, "lb"),
  25410. name: "Side",
  25411. image: {
  25412. source: "./media/characters/mandarax/side.svg",
  25413. extra: 614 / 332,
  25414. bottom: 55 / 630
  25415. }
  25416. },
  25417. head: {
  25418. height: math.unit(11.4, "feet"),
  25419. name: "Head",
  25420. image: {
  25421. source: "./media/characters/mandarax/head.svg"
  25422. }
  25423. },
  25424. belly: {
  25425. height: math.unit(33, "feet"),
  25426. name: "Belly",
  25427. capacity: math.unit(500, "people"),
  25428. image: {
  25429. source: "./media/characters/mandarax/belly.svg"
  25430. }
  25431. },
  25432. dick: {
  25433. height: math.unit(8.46, "feet"),
  25434. name: "Dick",
  25435. image: {
  25436. source: "./media/characters/mandarax/dick.svg"
  25437. }
  25438. },
  25439. top: {
  25440. height: math.unit(28, "meters"),
  25441. name: "Top",
  25442. image: {
  25443. source: "./media/characters/mandarax/top.svg"
  25444. }
  25445. },
  25446. },
  25447. [
  25448. {
  25449. name: "Normal",
  25450. height: math.unit(25, "feet"),
  25451. default: true
  25452. },
  25453. ]
  25454. ))
  25455. characterMakers.push(() => makeCharacter(
  25456. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  25457. {
  25458. front: {
  25459. height: math.unit(5, "feet"),
  25460. weight: math.unit(90, "lb"),
  25461. name: "Front",
  25462. image: {
  25463. source: "./media/characters/pixil/front.svg",
  25464. extra: 2000 / 1618,
  25465. bottom: 12.3 / 2011
  25466. }
  25467. },
  25468. },
  25469. [
  25470. {
  25471. name: "Normal",
  25472. height: math.unit(5, "feet"),
  25473. default: true
  25474. },
  25475. {
  25476. name: "Megamacro",
  25477. height: math.unit(10, "miles"),
  25478. },
  25479. ]
  25480. ))
  25481. characterMakers.push(() => makeCharacter(
  25482. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  25483. {
  25484. front: {
  25485. height: math.unit(7 + 2 / 12, "feet"),
  25486. weight: math.unit(200, "lb"),
  25487. name: "Front",
  25488. image: {
  25489. source: "./media/characters/angel/front.svg",
  25490. extra: 1830 / 1737,
  25491. bottom: 22.6 / 1854,
  25492. }
  25493. },
  25494. },
  25495. [
  25496. {
  25497. name: "Normal",
  25498. height: math.unit(7 + 2 / 12, "feet"),
  25499. default: true
  25500. },
  25501. {
  25502. name: "Macro",
  25503. height: math.unit(1000, "feet")
  25504. },
  25505. {
  25506. name: "Megamacro",
  25507. height: math.unit(2, "miles")
  25508. },
  25509. {
  25510. name: "Gigamacro",
  25511. height: math.unit(20, "earths")
  25512. },
  25513. ]
  25514. ))
  25515. characterMakers.push(() => makeCharacter(
  25516. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  25517. {
  25518. front: {
  25519. height: math.unit(5, "feet"),
  25520. weight: math.unit(180, "lb"),
  25521. name: "Front",
  25522. image: {
  25523. source: "./media/characters/mekana/front.svg",
  25524. extra: 1671 / 1605,
  25525. bottom: 3.5 / 1691
  25526. }
  25527. },
  25528. side: {
  25529. height: math.unit(5, "feet"),
  25530. weight: math.unit(180, "lb"),
  25531. name: "Side",
  25532. image: {
  25533. source: "./media/characters/mekana/side.svg",
  25534. extra: 1671 / 1605,
  25535. bottom: 3.5 / 1691
  25536. }
  25537. },
  25538. back: {
  25539. height: math.unit(5, "feet"),
  25540. weight: math.unit(180, "lb"),
  25541. name: "Back",
  25542. image: {
  25543. source: "./media/characters/mekana/back.svg",
  25544. extra: 1671 / 1605,
  25545. bottom: 3.5 / 1691
  25546. }
  25547. },
  25548. },
  25549. [
  25550. {
  25551. name: "Normal",
  25552. height: math.unit(5, "feet"),
  25553. default: true
  25554. },
  25555. ]
  25556. ))
  25557. characterMakers.push(() => makeCharacter(
  25558. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  25559. {
  25560. front: {
  25561. height: math.unit(4 + 6 / 12, "feet"),
  25562. weight: math.unit(80, "lb"),
  25563. name: "Front",
  25564. image: {
  25565. source: "./media/characters/pixie/front.svg",
  25566. extra: 1924 / 1825,
  25567. bottom: 22.4 / 1946
  25568. }
  25569. },
  25570. },
  25571. [
  25572. {
  25573. name: "Normal",
  25574. height: math.unit(4 + 6 / 12, "feet"),
  25575. default: true
  25576. },
  25577. {
  25578. name: "Macro",
  25579. height: math.unit(40, "feet")
  25580. },
  25581. ]
  25582. ))
  25583. characterMakers.push(() => makeCharacter(
  25584. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  25585. {
  25586. front: {
  25587. height: math.unit(2.1, "meters"),
  25588. weight: math.unit(200, "lb"),
  25589. name: "Front",
  25590. image: {
  25591. source: "./media/characters/the-lascivious/front.svg",
  25592. extra: 1 / 0.893,
  25593. bottom: 3.5 / 573.7
  25594. }
  25595. },
  25596. },
  25597. [
  25598. {
  25599. name: "Human Scale",
  25600. height: math.unit(2.1, "meters")
  25601. },
  25602. {
  25603. name: "Wolxi Scale",
  25604. height: math.unit(46.2, "m"),
  25605. default: true
  25606. },
  25607. {
  25608. name: "Boinker of Buildings",
  25609. height: math.unit(10, "km")
  25610. },
  25611. {
  25612. name: "Shagger of Skyscrapers",
  25613. height: math.unit(40, "km")
  25614. },
  25615. {
  25616. name: "Banger of Boroughs",
  25617. height: math.unit(4000, "km")
  25618. },
  25619. {
  25620. name: "Screwer of States",
  25621. height: math.unit(100000, "km")
  25622. },
  25623. {
  25624. name: "Pounder of Planets",
  25625. height: math.unit(2000000, "km")
  25626. },
  25627. ]
  25628. ))
  25629. characterMakers.push(() => makeCharacter(
  25630. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  25631. {
  25632. front: {
  25633. height: math.unit(6, "feet"),
  25634. weight: math.unit(150, "lb"),
  25635. name: "Front",
  25636. image: {
  25637. source: "./media/characters/aj/front.svg",
  25638. extra: 2039 / 1562,
  25639. bottom: 40 / 2079
  25640. }
  25641. },
  25642. },
  25643. [
  25644. {
  25645. name: "Normal",
  25646. height: math.unit(11 + 6 / 12, "feet"),
  25647. default: true
  25648. },
  25649. {
  25650. name: "Megamacro",
  25651. height: math.unit(60, "megameters")
  25652. },
  25653. ]
  25654. ))
  25655. characterMakers.push(() => makeCharacter(
  25656. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  25657. {
  25658. side: {
  25659. height: math.unit(31 + 8 / 12, "feet"),
  25660. weight: math.unit(75000, "kg"),
  25661. name: "Side",
  25662. image: {
  25663. source: "./media/characters/koros/side.svg",
  25664. extra: 1442 / 1297,
  25665. bottom: 122.7 / 1562
  25666. }
  25667. },
  25668. dicksKingsCrown: {
  25669. height: math.unit(6, "feet"),
  25670. name: "Dicks (King's Crown)",
  25671. image: {
  25672. source: "./media/characters/koros/dicks-kings-crown.svg"
  25673. }
  25674. },
  25675. dicksTailSet: {
  25676. height: math.unit(3, "feet"),
  25677. name: "Dicks (Tail Set)",
  25678. image: {
  25679. source: "./media/characters/koros/dicks-tail-set.svg"
  25680. }
  25681. },
  25682. dickCumming: {
  25683. height: math.unit(7.98, "feet"),
  25684. name: "Dick (Cumming)",
  25685. image: {
  25686. source: "./media/characters/koros/dick-cumming.svg"
  25687. }
  25688. },
  25689. dicksBack: {
  25690. height: math.unit(5.9, "feet"),
  25691. name: "Dicks (Back)",
  25692. image: {
  25693. source: "./media/characters/koros/dicks-back.svg"
  25694. }
  25695. },
  25696. dicksFront: {
  25697. height: math.unit(3.72, "feet"),
  25698. name: "Dicks (Front)",
  25699. image: {
  25700. source: "./media/characters/koros/dicks-front.svg"
  25701. }
  25702. },
  25703. dicksPeeking: {
  25704. height: math.unit(3.0, "feet"),
  25705. name: "Dicks (Peeking)",
  25706. image: {
  25707. source: "./media/characters/koros/dicks-peeking.svg"
  25708. }
  25709. },
  25710. eye: {
  25711. height: math.unit(1.7, "feet"),
  25712. name: "Eye",
  25713. image: {
  25714. source: "./media/characters/koros/eye.svg"
  25715. }
  25716. },
  25717. headFront: {
  25718. height: math.unit(11.69, "feet"),
  25719. name: "Head (Front)",
  25720. image: {
  25721. source: "./media/characters/koros/head-front.svg"
  25722. }
  25723. },
  25724. headSide: {
  25725. height: math.unit(14, "feet"),
  25726. name: "Head (Side)",
  25727. image: {
  25728. source: "./media/characters/koros/head-side.svg"
  25729. }
  25730. },
  25731. leg: {
  25732. height: math.unit(17, "feet"),
  25733. name: "Leg",
  25734. image: {
  25735. source: "./media/characters/koros/leg.svg"
  25736. }
  25737. },
  25738. mawSide: {
  25739. height: math.unit(12.8, "feet"),
  25740. name: "Maw (Side)",
  25741. image: {
  25742. source: "./media/characters/koros/maw-side.svg"
  25743. }
  25744. },
  25745. mawSpitting: {
  25746. height: math.unit(17, "feet"),
  25747. name: "Maw (Spitting)",
  25748. image: {
  25749. source: "./media/characters/koros/maw-spitting.svg"
  25750. }
  25751. },
  25752. slit: {
  25753. height: math.unit(2.8, "feet"),
  25754. name: "Slit",
  25755. image: {
  25756. source: "./media/characters/koros/slit.svg"
  25757. }
  25758. },
  25759. stomach: {
  25760. height: math.unit(6.8, "feet"),
  25761. capacity: math.unit(20, "people"),
  25762. name: "Stomach",
  25763. image: {
  25764. source: "./media/characters/koros/stomach.svg"
  25765. }
  25766. },
  25767. wingspanBottom: {
  25768. height: math.unit(114, "feet"),
  25769. name: "Wingspan (Bottom)",
  25770. image: {
  25771. source: "./media/characters/koros/wingspan-bottom.svg"
  25772. }
  25773. },
  25774. wingspanTop: {
  25775. height: math.unit(104, "feet"),
  25776. name: "Wingspan (Top)",
  25777. image: {
  25778. source: "./media/characters/koros/wingspan-top.svg"
  25779. }
  25780. },
  25781. },
  25782. [
  25783. {
  25784. name: "Normal",
  25785. height: math.unit(31 + 8 / 12, "feet"),
  25786. default: true
  25787. },
  25788. ]
  25789. ))
  25790. characterMakers.push(() => makeCharacter(
  25791. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  25792. {
  25793. front: {
  25794. height: math.unit(18 + 5 / 12, "feet"),
  25795. weight: math.unit(3750, "kg"),
  25796. name: "Front",
  25797. image: {
  25798. source: "./media/characters/vexx/front.svg",
  25799. extra: 426 / 396,
  25800. bottom: 31.5 / 458
  25801. }
  25802. },
  25803. maw: {
  25804. height: math.unit(6, "feet"),
  25805. name: "Maw",
  25806. image: {
  25807. source: "./media/characters/vexx/maw.svg"
  25808. }
  25809. },
  25810. },
  25811. [
  25812. {
  25813. name: "Normal",
  25814. height: math.unit(18 + 5 / 12, "feet"),
  25815. default: true
  25816. },
  25817. ]
  25818. ))
  25819. characterMakers.push(() => makeCharacter(
  25820. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  25821. {
  25822. front: {
  25823. height: math.unit(17 + 6 / 12, "feet"),
  25824. weight: math.unit(150, "lb"),
  25825. name: "Front",
  25826. image: {
  25827. source: "./media/characters/baadra/front.svg",
  25828. extra: 3137 / 2890,
  25829. bottom: 168.4 / 3305
  25830. }
  25831. },
  25832. back: {
  25833. height: math.unit(17 + 6 / 12, "feet"),
  25834. weight: math.unit(150, "lb"),
  25835. name: "Back",
  25836. image: {
  25837. source: "./media/characters/baadra/back.svg",
  25838. extra: 3142 / 2890,
  25839. bottom: 220 / 3371
  25840. }
  25841. },
  25842. head: {
  25843. height: math.unit(5.45, "feet"),
  25844. name: "Head",
  25845. image: {
  25846. source: "./media/characters/baadra/head.svg"
  25847. }
  25848. },
  25849. headAngry: {
  25850. height: math.unit(4.95, "feet"),
  25851. name: "Head (Angry)",
  25852. image: {
  25853. source: "./media/characters/baadra/head-angry.svg"
  25854. }
  25855. },
  25856. headOpen: {
  25857. height: math.unit(6, "feet"),
  25858. name: "Head (Open)",
  25859. image: {
  25860. source: "./media/characters/baadra/head-open.svg"
  25861. }
  25862. },
  25863. },
  25864. [
  25865. {
  25866. name: "Normal",
  25867. height: math.unit(17 + 6 / 12, "feet"),
  25868. default: true
  25869. },
  25870. ]
  25871. ))
  25872. characterMakers.push(() => makeCharacter(
  25873. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  25874. {
  25875. front: {
  25876. height: math.unit(7 + 3 / 12, "feet"),
  25877. weight: math.unit(180, "lb"),
  25878. name: "Front",
  25879. image: {
  25880. source: "./media/characters/juri/front.svg",
  25881. extra: 1401 / 1237,
  25882. bottom: 18.5 / 1418
  25883. }
  25884. },
  25885. side: {
  25886. height: math.unit(7 + 3 / 12, "feet"),
  25887. weight: math.unit(180, "lb"),
  25888. name: "Side",
  25889. image: {
  25890. source: "./media/characters/juri/side.svg",
  25891. extra: 1424 / 1242,
  25892. bottom: 18.5 / 1447
  25893. }
  25894. },
  25895. sitting: {
  25896. height: math.unit(6, "feet"),
  25897. weight: math.unit(180, "lb"),
  25898. name: "Sitting",
  25899. image: {
  25900. source: "./media/characters/juri/sitting.svg",
  25901. extra: 1270 / 1143,
  25902. bottom: 100 / 1343
  25903. }
  25904. },
  25905. back: {
  25906. height: math.unit(7 + 3 / 12, "feet"),
  25907. weight: math.unit(180, "lb"),
  25908. name: "Back",
  25909. image: {
  25910. source: "./media/characters/juri/back.svg",
  25911. extra: 1377 / 1240,
  25912. bottom: 23.7 / 1405
  25913. }
  25914. },
  25915. maw: {
  25916. height: math.unit(2.8, "feet"),
  25917. name: "Maw",
  25918. image: {
  25919. source: "./media/characters/juri/maw.svg"
  25920. }
  25921. },
  25922. stomach: {
  25923. height: math.unit(0.89, "feet"),
  25924. capacity: math.unit(4, "liters"),
  25925. name: "Stomach",
  25926. image: {
  25927. source: "./media/characters/juri/stomach.svg"
  25928. }
  25929. },
  25930. },
  25931. [
  25932. {
  25933. name: "Normal",
  25934. height: math.unit(7 + 3 / 12, "feet"),
  25935. default: true
  25936. },
  25937. ]
  25938. ))
  25939. characterMakers.push(() => makeCharacter(
  25940. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  25941. {
  25942. fox: {
  25943. height: math.unit(5 + 6 / 12, "feet"),
  25944. weight: math.unit(140, "lb"),
  25945. name: "Fox",
  25946. image: {
  25947. source: "./media/characters/maxene-sita/fox.svg",
  25948. extra: 146 / 138,
  25949. bottom: 2.1 / 148.19
  25950. }
  25951. },
  25952. foxLaying: {
  25953. height: math.unit(1.70, "feet"),
  25954. weight: math.unit(140, "lb"),
  25955. name: "Fox (Laying)",
  25956. image: {
  25957. source: "./media/characters/maxene-sita/fox-laying.svg",
  25958. extra: 910 / 572,
  25959. bottom: 71 / 981
  25960. }
  25961. },
  25962. kitsune: {
  25963. height: math.unit(10, "feet"),
  25964. weight: math.unit(800, "lb"),
  25965. name: "Kitsune",
  25966. image: {
  25967. source: "./media/characters/maxene-sita/kitsune.svg",
  25968. extra: 185 / 176,
  25969. bottom: 4.7 / 189.9
  25970. }
  25971. },
  25972. hellhound: {
  25973. height: math.unit(10, "feet"),
  25974. weight: math.unit(700, "lb"),
  25975. name: "Hellhound",
  25976. image: {
  25977. source: "./media/characters/maxene-sita/hellhound.svg",
  25978. extra: 1600 / 1545,
  25979. bottom: 81 / 1681
  25980. }
  25981. },
  25982. },
  25983. [
  25984. {
  25985. name: "Normal",
  25986. height: math.unit(5 + 6 / 12, "feet"),
  25987. default: true
  25988. },
  25989. ]
  25990. ))
  25991. characterMakers.push(() => makeCharacter(
  25992. { name: "Maia", species: ["mew"], tags: ["feral"] },
  25993. {
  25994. front: {
  25995. height: math.unit(3 + 4 / 12, "feet"),
  25996. weight: math.unit(70, "lb"),
  25997. name: "Front",
  25998. image: {
  25999. source: "./media/characters/maia/front.svg",
  26000. extra: 227 / 219.5,
  26001. bottom: 40 / 267
  26002. }
  26003. },
  26004. back: {
  26005. height: math.unit(3 + 4 / 12, "feet"),
  26006. weight: math.unit(70, "lb"),
  26007. name: "Back",
  26008. image: {
  26009. source: "./media/characters/maia/back.svg",
  26010. extra: 237 / 225
  26011. }
  26012. },
  26013. },
  26014. [
  26015. {
  26016. name: "Normal",
  26017. height: math.unit(3 + 4 / 12, "feet"),
  26018. default: true
  26019. },
  26020. ]
  26021. ))
  26022. characterMakers.push(() => makeCharacter(
  26023. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  26024. {
  26025. front: {
  26026. height: math.unit(5 + 10 / 12, "feet"),
  26027. weight: math.unit(197, "lb"),
  26028. name: "Front",
  26029. image: {
  26030. source: "./media/characters/jabaro/front.svg",
  26031. extra: 225 / 216,
  26032. bottom: 5.06 / 230
  26033. }
  26034. },
  26035. back: {
  26036. height: math.unit(5 + 10 / 12, "feet"),
  26037. weight: math.unit(197, "lb"),
  26038. name: "Back",
  26039. image: {
  26040. source: "./media/characters/jabaro/back.svg",
  26041. extra: 225 / 219,
  26042. bottom: 1.9 / 227
  26043. }
  26044. },
  26045. },
  26046. [
  26047. {
  26048. name: "Normal",
  26049. height: math.unit(5 + 10 / 12, "feet"),
  26050. default: true
  26051. },
  26052. ]
  26053. ))
  26054. characterMakers.push(() => makeCharacter(
  26055. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  26056. {
  26057. front: {
  26058. height: math.unit(5 + 8 / 12, "feet"),
  26059. weight: math.unit(139, "lb"),
  26060. name: "Front",
  26061. image: {
  26062. source: "./media/characters/risa/front.svg",
  26063. extra: 270 / 260,
  26064. bottom: 11.2 / 282
  26065. }
  26066. },
  26067. back: {
  26068. height: math.unit(5 + 8 / 12, "feet"),
  26069. weight: math.unit(139, "lb"),
  26070. name: "Back",
  26071. image: {
  26072. source: "./media/characters/risa/back.svg",
  26073. extra: 264 / 255,
  26074. bottom: 4 / 268
  26075. }
  26076. },
  26077. },
  26078. [
  26079. {
  26080. name: "Normal",
  26081. height: math.unit(5 + 8 / 12, "feet"),
  26082. default: true
  26083. },
  26084. ]
  26085. ))
  26086. characterMakers.push(() => makeCharacter(
  26087. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  26088. {
  26089. front: {
  26090. height: math.unit(2 + 11 / 12, "feet"),
  26091. weight: math.unit(30, "lb"),
  26092. name: "Front",
  26093. image: {
  26094. source: "./media/characters/weatley/front.svg",
  26095. bottom: 10.7 / 414,
  26096. extra: 403.5 / 362
  26097. }
  26098. },
  26099. back: {
  26100. height: math.unit(2 + 11 / 12, "feet"),
  26101. weight: math.unit(30, "lb"),
  26102. name: "Back",
  26103. image: {
  26104. source: "./media/characters/weatley/back.svg",
  26105. bottom: 10.7 / 414,
  26106. extra: 403.5 / 362
  26107. }
  26108. },
  26109. },
  26110. [
  26111. {
  26112. name: "Normal",
  26113. height: math.unit(2 + 11 / 12, "feet"),
  26114. default: true
  26115. },
  26116. ]
  26117. ))
  26118. characterMakers.push(() => makeCharacter(
  26119. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  26120. {
  26121. front: {
  26122. height: math.unit(5 + 2 / 12, "feet"),
  26123. weight: math.unit(50, "kg"),
  26124. name: "Front",
  26125. image: {
  26126. source: "./media/characters/mercury-crescent/front.svg",
  26127. extra: 1088 / 1033,
  26128. bottom: 18.9 / 1109
  26129. }
  26130. },
  26131. },
  26132. [
  26133. {
  26134. name: "Normal",
  26135. height: math.unit(5 + 2 / 12, "feet"),
  26136. default: true
  26137. },
  26138. ]
  26139. ))
  26140. characterMakers.push(() => makeCharacter(
  26141. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  26142. {
  26143. front: {
  26144. height: math.unit(2, "feet"),
  26145. weight: math.unit(15, "kg"),
  26146. name: "Front",
  26147. image: {
  26148. source: "./media/characters/diamond-jones/front.svg",
  26149. extra: 727/723,
  26150. bottom: 46/773
  26151. }
  26152. },
  26153. },
  26154. [
  26155. {
  26156. name: "Normal",
  26157. height: math.unit(2, "feet"),
  26158. default: true
  26159. },
  26160. ]
  26161. ))
  26162. characterMakers.push(() => makeCharacter(
  26163. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  26164. {
  26165. front: {
  26166. height: math.unit(3, "feet"),
  26167. weight: math.unit(30, "kg"),
  26168. name: "Front",
  26169. image: {
  26170. source: "./media/characters/sweet-bit/front.svg",
  26171. extra: 675 / 567,
  26172. bottom: 27.7 / 703
  26173. }
  26174. },
  26175. },
  26176. [
  26177. {
  26178. name: "Normal",
  26179. height: math.unit(3, "feet"),
  26180. default: true
  26181. },
  26182. ]
  26183. ))
  26184. characterMakers.push(() => makeCharacter(
  26185. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  26186. {
  26187. side: {
  26188. height: math.unit(9.178, "feet"),
  26189. weight: math.unit(500, "lb"),
  26190. name: "Side",
  26191. image: {
  26192. source: "./media/characters/umbrazen/side.svg",
  26193. extra: 1730 / 1473,
  26194. bottom: 34.6 / 1765
  26195. }
  26196. },
  26197. },
  26198. [
  26199. {
  26200. name: "Normal",
  26201. height: math.unit(9.178, "feet"),
  26202. default: true
  26203. },
  26204. ]
  26205. ))
  26206. characterMakers.push(() => makeCharacter(
  26207. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  26208. {
  26209. front: {
  26210. height: math.unit(10, "feet"),
  26211. weight: math.unit(750, "lb"),
  26212. name: "Front",
  26213. image: {
  26214. source: "./media/characters/arlist/front.svg",
  26215. extra: 961 / 778,
  26216. bottom: 6.2 / 986
  26217. }
  26218. },
  26219. },
  26220. [
  26221. {
  26222. name: "Normal",
  26223. height: math.unit(10, "feet"),
  26224. default: true
  26225. },
  26226. ]
  26227. ))
  26228. characterMakers.push(() => makeCharacter(
  26229. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  26230. {
  26231. front: {
  26232. height: math.unit(5 + 1 / 12, "feet"),
  26233. weight: math.unit(110, "lb"),
  26234. name: "Front",
  26235. image: {
  26236. source: "./media/characters/aradel/front.svg",
  26237. extra: 324 / 303,
  26238. bottom: 3.6 / 329.4
  26239. }
  26240. },
  26241. },
  26242. [
  26243. {
  26244. name: "Normal",
  26245. height: math.unit(5 + 1 / 12, "feet"),
  26246. default: true
  26247. },
  26248. ]
  26249. ))
  26250. characterMakers.push(() => makeCharacter(
  26251. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  26252. {
  26253. front: {
  26254. height: math.unit(3 + 8 / 12, "feet"),
  26255. weight: math.unit(50, "lb"),
  26256. name: "Front",
  26257. image: {
  26258. source: "./media/characters/serryn/front.svg",
  26259. extra: 1792 / 1656,
  26260. bottom: 43.5 / 1840
  26261. }
  26262. },
  26263. },
  26264. [
  26265. {
  26266. name: "Normal",
  26267. height: math.unit(3 + 8 / 12, "feet"),
  26268. default: true
  26269. },
  26270. ]
  26271. ))
  26272. characterMakers.push(() => makeCharacter(
  26273. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  26274. {
  26275. front: {
  26276. height: math.unit(7 + 10 / 12, "feet"),
  26277. weight: math.unit(255, "lb"),
  26278. name: "Front",
  26279. image: {
  26280. source: "./media/characters/xavier-thyme/front.svg",
  26281. extra: 3733 / 3642,
  26282. bottom: 131 / 3869
  26283. }
  26284. },
  26285. frontRaven: {
  26286. height: math.unit(7 + 10 / 12, "feet"),
  26287. weight: math.unit(255, "lb"),
  26288. name: "Front (Raven)",
  26289. image: {
  26290. source: "./media/characters/xavier-thyme/front-raven.svg",
  26291. extra: 4385 / 3642,
  26292. bottom: 131 / 4517
  26293. }
  26294. },
  26295. },
  26296. [
  26297. {
  26298. name: "Normal",
  26299. height: math.unit(7 + 10 / 12, "feet"),
  26300. default: true
  26301. },
  26302. ]
  26303. ))
  26304. characterMakers.push(() => makeCharacter(
  26305. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  26306. {
  26307. front: {
  26308. height: math.unit(1.6, "m"),
  26309. weight: math.unit(50, "kg"),
  26310. name: "Front",
  26311. image: {
  26312. source: "./media/characters/kiki/front.svg",
  26313. extra: 4682 / 3610,
  26314. bottom: 115 / 4777
  26315. }
  26316. },
  26317. },
  26318. [
  26319. {
  26320. name: "Normal",
  26321. height: math.unit(1.6, "meters"),
  26322. default: true
  26323. },
  26324. ]
  26325. ))
  26326. characterMakers.push(() => makeCharacter(
  26327. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  26328. {
  26329. front: {
  26330. height: math.unit(50, "m"),
  26331. weight: math.unit(500, "tonnes"),
  26332. name: "Front",
  26333. image: {
  26334. source: "./media/characters/ryoko/front.svg",
  26335. extra: 4632 / 3926,
  26336. bottom: 193 / 4823
  26337. }
  26338. },
  26339. },
  26340. [
  26341. {
  26342. name: "Normal",
  26343. height: math.unit(50, "meters"),
  26344. default: true
  26345. },
  26346. ]
  26347. ))
  26348. characterMakers.push(() => makeCharacter(
  26349. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  26350. {
  26351. front: {
  26352. height: math.unit(30, "m"),
  26353. weight: math.unit(22, "tonnes"),
  26354. name: "Front",
  26355. image: {
  26356. source: "./media/characters/elio/front.svg",
  26357. extra: 4582 / 3720,
  26358. bottom: 236 / 4828
  26359. }
  26360. },
  26361. },
  26362. [
  26363. {
  26364. name: "Normal",
  26365. height: math.unit(30, "meters"),
  26366. default: true
  26367. },
  26368. ]
  26369. ))
  26370. characterMakers.push(() => makeCharacter(
  26371. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  26372. {
  26373. front: {
  26374. height: math.unit(6 + 3 / 12, "feet"),
  26375. weight: math.unit(120, "lb"),
  26376. name: "Front",
  26377. image: {
  26378. source: "./media/characters/azura/front.svg",
  26379. extra: 1149 / 1135,
  26380. bottom: 45 / 1194
  26381. }
  26382. },
  26383. frontClothed: {
  26384. height: math.unit(6 + 3 / 12, "feet"),
  26385. weight: math.unit(120, "lb"),
  26386. name: "Front (Clothed)",
  26387. image: {
  26388. source: "./media/characters/azura/front-clothed.svg",
  26389. extra: 1149 / 1135,
  26390. bottom: 45 / 1194
  26391. }
  26392. },
  26393. },
  26394. [
  26395. {
  26396. name: "Normal",
  26397. height: math.unit(6 + 3 / 12, "feet"),
  26398. default: true
  26399. },
  26400. {
  26401. name: "Macro",
  26402. height: math.unit(20 + 6 / 12, "feet")
  26403. },
  26404. {
  26405. name: "Megamacro",
  26406. height: math.unit(12, "miles")
  26407. },
  26408. {
  26409. name: "Gigamacro",
  26410. height: math.unit(10000, "miles")
  26411. },
  26412. {
  26413. name: "Teramacro",
  26414. height: math.unit(900000, "miles")
  26415. },
  26416. ]
  26417. ))
  26418. characterMakers.push(() => makeCharacter(
  26419. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  26420. {
  26421. front: {
  26422. height: math.unit(12, "feet"),
  26423. weight: math.unit(1, "ton"),
  26424. capacity: math.unit(660000, "gallons"),
  26425. name: "Front",
  26426. image: {
  26427. source: "./media/characters/zeus/front.svg",
  26428. extra: 5005 / 4717,
  26429. bottom: 363 / 5388
  26430. }
  26431. },
  26432. },
  26433. [
  26434. {
  26435. name: "Normal",
  26436. height: math.unit(12, "feet")
  26437. },
  26438. {
  26439. name: "Preferred Size",
  26440. height: math.unit(0.5, "miles"),
  26441. default: true
  26442. },
  26443. {
  26444. name: "Giga Horse",
  26445. height: math.unit(300, "miles")
  26446. },
  26447. {
  26448. name: "Riding Planets",
  26449. height: math.unit(30, "megameters")
  26450. },
  26451. {
  26452. name: "Cosmic Giant",
  26453. height: math.unit(3, "zettameters")
  26454. },
  26455. {
  26456. name: "Breeding God",
  26457. height: math.unit(9.92e22, "yottameters")
  26458. },
  26459. ]
  26460. ))
  26461. characterMakers.push(() => makeCharacter(
  26462. { name: "Fang", species: ["monster"], tags: ["feral"] },
  26463. {
  26464. side: {
  26465. height: math.unit(9, "feet"),
  26466. weight: math.unit(1500, "kg"),
  26467. name: "Side",
  26468. image: {
  26469. source: "./media/characters/fang/side.svg",
  26470. extra: 924 / 866,
  26471. bottom: 47.5 / 972.3
  26472. }
  26473. },
  26474. },
  26475. [
  26476. {
  26477. name: "Normal",
  26478. height: math.unit(9, "feet"),
  26479. default: true
  26480. },
  26481. {
  26482. name: "Macro",
  26483. height: math.unit(75 + 6 / 12, "feet")
  26484. },
  26485. {
  26486. name: "Teramacro",
  26487. height: math.unit(50000, "miles")
  26488. },
  26489. ]
  26490. ))
  26491. characterMakers.push(() => makeCharacter(
  26492. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  26493. {
  26494. front: {
  26495. height: math.unit(10, "feet"),
  26496. weight: math.unit(2, "tons"),
  26497. name: "Front",
  26498. image: {
  26499. source: "./media/characters/rekhit/front.svg",
  26500. extra: 2796 / 2590,
  26501. bottom: 225 / 3022
  26502. }
  26503. },
  26504. },
  26505. [
  26506. {
  26507. name: "Normal",
  26508. height: math.unit(10, "feet"),
  26509. default: true
  26510. },
  26511. {
  26512. name: "Macro",
  26513. height: math.unit(500, "feet")
  26514. },
  26515. ]
  26516. ))
  26517. characterMakers.push(() => makeCharacter(
  26518. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  26519. {
  26520. front: {
  26521. height: math.unit(7 + 6.451 / 12, "feet"),
  26522. weight: math.unit(310, "lb"),
  26523. name: "Front",
  26524. image: {
  26525. source: "./media/characters/dahlia-verrick/front.svg",
  26526. extra: 1488 / 1365,
  26527. bottom: 6.2 / 1495
  26528. }
  26529. },
  26530. back: {
  26531. height: math.unit(7 + 6.451 / 12, "feet"),
  26532. weight: math.unit(310, "lb"),
  26533. name: "Back",
  26534. image: {
  26535. source: "./media/characters/dahlia-verrick/back.svg",
  26536. extra: 1472 / 1351,
  26537. bottom: 5.28 / 1477
  26538. }
  26539. },
  26540. frontBusiness: {
  26541. height: math.unit(7 + 6.451 / 12, "feet"),
  26542. weight: math.unit(200, "lb"),
  26543. name: "Front (Business)",
  26544. image: {
  26545. source: "./media/characters/dahlia-verrick/front-business.svg",
  26546. extra: 1478 / 1381,
  26547. bottom: 5.5 / 1484
  26548. }
  26549. },
  26550. frontCasual: {
  26551. height: math.unit(7 + 6.451 / 12, "feet"),
  26552. weight: math.unit(200, "lb"),
  26553. name: "Front (Casual)",
  26554. image: {
  26555. source: "./media/characters/dahlia-verrick/front-casual.svg",
  26556. extra: 1478 / 1381,
  26557. bottom: 5.5 / 1484
  26558. }
  26559. },
  26560. },
  26561. [
  26562. {
  26563. name: "Travel-Sized",
  26564. height: math.unit(7.45, "inches")
  26565. },
  26566. {
  26567. name: "Normal",
  26568. height: math.unit(7 + 6.451 / 12, "feet"),
  26569. default: true
  26570. },
  26571. {
  26572. name: "Hitting the Town",
  26573. height: math.unit(37 + 8 / 12, "feet")
  26574. },
  26575. {
  26576. name: "Stomp in the Suburbs",
  26577. height: math.unit(964 + 9.728 / 12, "feet")
  26578. },
  26579. {
  26580. name: "Sit on the City",
  26581. height: math.unit(61747 + 10.592 / 12, "feet")
  26582. },
  26583. {
  26584. name: "Glomp the Globe",
  26585. height: math.unit(252919327 + 4.832 / 12, "feet")
  26586. },
  26587. ]
  26588. ))
  26589. characterMakers.push(() => makeCharacter(
  26590. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  26591. {
  26592. front: {
  26593. height: math.unit(6 + 4 / 12, "feet"),
  26594. weight: math.unit(320, "lb"),
  26595. name: "Front",
  26596. image: {
  26597. source: "./media/characters/balina-mahigan/front.svg",
  26598. extra: 447 / 428,
  26599. bottom: 18 / 466
  26600. }
  26601. },
  26602. back: {
  26603. height: math.unit(6 + 4 / 12, "feet"),
  26604. weight: math.unit(320, "lb"),
  26605. name: "Back",
  26606. image: {
  26607. source: "./media/characters/balina-mahigan/back.svg",
  26608. extra: 445 / 428,
  26609. bottom: 4.07 / 448
  26610. }
  26611. },
  26612. arm: {
  26613. height: math.unit(1.88, "feet"),
  26614. name: "Arm",
  26615. image: {
  26616. source: "./media/characters/balina-mahigan/arm.svg"
  26617. }
  26618. },
  26619. backPort: {
  26620. height: math.unit(0.685, "feet"),
  26621. name: "Back Port",
  26622. image: {
  26623. source: "./media/characters/balina-mahigan/back-port.svg"
  26624. }
  26625. },
  26626. hoofpaw: {
  26627. height: math.unit(1.41, "feet"),
  26628. name: "Hoofpaw",
  26629. image: {
  26630. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  26631. }
  26632. },
  26633. leftHandBack: {
  26634. height: math.unit(0.938, "feet"),
  26635. name: "Left Hand (Back)",
  26636. image: {
  26637. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  26638. }
  26639. },
  26640. leftHandFront: {
  26641. height: math.unit(0.938, "feet"),
  26642. name: "Left Hand (Front)",
  26643. image: {
  26644. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  26645. }
  26646. },
  26647. rightHandBack: {
  26648. height: math.unit(0.95, "feet"),
  26649. name: "Right Hand (Back)",
  26650. image: {
  26651. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  26652. }
  26653. },
  26654. rightHandFront: {
  26655. height: math.unit(0.95, "feet"),
  26656. name: "Right Hand (Front)",
  26657. image: {
  26658. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  26659. }
  26660. },
  26661. },
  26662. [
  26663. {
  26664. name: "Normal",
  26665. height: math.unit(6 + 4 / 12, "feet"),
  26666. default: true
  26667. },
  26668. ]
  26669. ))
  26670. characterMakers.push(() => makeCharacter(
  26671. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  26672. {
  26673. front: {
  26674. height: math.unit(6, "feet"),
  26675. weight: math.unit(320, "lb"),
  26676. name: "Front",
  26677. image: {
  26678. source: "./media/characters/balina-mejeri/front.svg",
  26679. extra: 517 / 488,
  26680. bottom: 44.2 / 561
  26681. }
  26682. },
  26683. },
  26684. [
  26685. {
  26686. name: "Normal",
  26687. height: math.unit(6 + 4 / 12, "feet")
  26688. },
  26689. {
  26690. name: "Business",
  26691. height: math.unit(155, "feet"),
  26692. default: true
  26693. },
  26694. ]
  26695. ))
  26696. characterMakers.push(() => makeCharacter(
  26697. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  26698. {
  26699. kneeling: {
  26700. height: math.unit(6 + 4 / 12, "feet"),
  26701. weight: math.unit(300 * 20, "lb"),
  26702. name: "Kneeling",
  26703. image: {
  26704. source: "./media/characters/balbarian/kneeling.svg",
  26705. extra: 922 / 862,
  26706. bottom: 42.4 / 965
  26707. }
  26708. },
  26709. },
  26710. [
  26711. {
  26712. name: "Normal",
  26713. height: math.unit(6 + 4 / 12, "feet")
  26714. },
  26715. {
  26716. name: "Treasured",
  26717. height: math.unit(18 + 9 / 12, "feet"),
  26718. default: true
  26719. },
  26720. {
  26721. name: "Macro",
  26722. height: math.unit(900, "feet")
  26723. },
  26724. ]
  26725. ))
  26726. characterMakers.push(() => makeCharacter(
  26727. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  26728. {
  26729. front: {
  26730. height: math.unit(6 + 4 / 12, "feet"),
  26731. weight: math.unit(325, "lb"),
  26732. name: "Front",
  26733. image: {
  26734. source: "./media/characters/balina-amarini/front.svg",
  26735. extra: 415 / 403,
  26736. bottom: 19 / 433.4
  26737. }
  26738. },
  26739. back: {
  26740. height: math.unit(6 + 4 / 12, "feet"),
  26741. weight: math.unit(325, "lb"),
  26742. name: "Back",
  26743. image: {
  26744. source: "./media/characters/balina-amarini/back.svg",
  26745. extra: 415 / 403,
  26746. bottom: 13.5 / 432
  26747. }
  26748. },
  26749. overdrive: {
  26750. height: math.unit(6 + 4 / 12, "feet"),
  26751. weight: math.unit(400, "lb"),
  26752. name: "Overdrive",
  26753. image: {
  26754. source: "./media/characters/balina-amarini/overdrive.svg",
  26755. extra: 269 / 259,
  26756. bottom: 12 / 282
  26757. }
  26758. },
  26759. },
  26760. [
  26761. {
  26762. name: "Boom",
  26763. height: math.unit(9 + 10 / 12, "feet"),
  26764. default: true
  26765. },
  26766. {
  26767. name: "Macro",
  26768. height: math.unit(280, "feet")
  26769. },
  26770. ]
  26771. ))
  26772. characterMakers.push(() => makeCharacter(
  26773. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  26774. {
  26775. goddess: {
  26776. height: math.unit(600, "feet"),
  26777. weight: math.unit(2000000, "tons"),
  26778. name: "Goddess",
  26779. image: {
  26780. source: "./media/characters/lady-kubwa/goddess.svg",
  26781. extra: 1240.5 / 1223,
  26782. bottom: 22 / 1263
  26783. }
  26784. },
  26785. goddesser: {
  26786. height: math.unit(900, "feet"),
  26787. weight: math.unit(20000000, "lb"),
  26788. name: "Goddess-er",
  26789. image: {
  26790. source: "./media/characters/lady-kubwa/goddess-er.svg",
  26791. extra: 899 / 888,
  26792. bottom: 12.6 / 912
  26793. }
  26794. },
  26795. },
  26796. [
  26797. {
  26798. name: "Macro",
  26799. height: math.unit(600, "feet"),
  26800. default: true
  26801. },
  26802. {
  26803. name: "Megamacro",
  26804. height: math.unit(250, "miles")
  26805. },
  26806. ]
  26807. ))
  26808. characterMakers.push(() => makeCharacter(
  26809. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  26810. {
  26811. front: {
  26812. height: math.unit(7 + 7 / 12, "feet"),
  26813. weight: math.unit(250, "lb"),
  26814. name: "Front",
  26815. image: {
  26816. source: "./media/characters/tala-grovehorn/front.svg",
  26817. extra: 2636 / 2525,
  26818. bottom: 147 / 2781
  26819. }
  26820. },
  26821. back: {
  26822. height: math.unit(7 + 7 / 12, "feet"),
  26823. weight: math.unit(250, "lb"),
  26824. name: "Back",
  26825. image: {
  26826. source: "./media/characters/tala-grovehorn/back.svg",
  26827. extra: 2635 / 2539,
  26828. bottom: 100 / 2732.8
  26829. }
  26830. },
  26831. mouth: {
  26832. height: math.unit(1.15, "feet"),
  26833. name: "Mouth",
  26834. image: {
  26835. source: "./media/characters/tala-grovehorn/mouth.svg"
  26836. }
  26837. },
  26838. dick: {
  26839. height: math.unit(2.36, "feet"),
  26840. name: "Dick",
  26841. image: {
  26842. source: "./media/characters/tala-grovehorn/dick.svg"
  26843. }
  26844. },
  26845. slit: {
  26846. height: math.unit(0.61, "feet"),
  26847. name: "Slit",
  26848. image: {
  26849. source: "./media/characters/tala-grovehorn/slit.svg"
  26850. }
  26851. },
  26852. },
  26853. [
  26854. ]
  26855. ))
  26856. characterMakers.push(() => makeCharacter(
  26857. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  26858. {
  26859. front: {
  26860. height: math.unit(7 + 7 / 12, "feet"),
  26861. weight: math.unit(225, "lb"),
  26862. name: "Front",
  26863. image: {
  26864. source: "./media/characters/epona/front.svg",
  26865. extra: 2445 / 2290,
  26866. bottom: 251 / 2696
  26867. }
  26868. },
  26869. back: {
  26870. height: math.unit(7 + 7 / 12, "feet"),
  26871. weight: math.unit(225, "lb"),
  26872. name: "Back",
  26873. image: {
  26874. source: "./media/characters/epona/back.svg",
  26875. extra: 2546 / 2408,
  26876. bottom: 44 / 2589
  26877. }
  26878. },
  26879. genitals: {
  26880. height: math.unit(1.5, "feet"),
  26881. name: "Genitals",
  26882. image: {
  26883. source: "./media/characters/epona/genitals.svg"
  26884. }
  26885. },
  26886. },
  26887. [
  26888. {
  26889. name: "Normal",
  26890. height: math.unit(7 + 7 / 12, "feet"),
  26891. default: true
  26892. },
  26893. ]
  26894. ))
  26895. characterMakers.push(() => makeCharacter(
  26896. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  26897. {
  26898. front: {
  26899. height: math.unit(7, "feet"),
  26900. weight: math.unit(518, "lb"),
  26901. name: "Front",
  26902. image: {
  26903. source: "./media/characters/avia-bloodbourn/front.svg",
  26904. extra: 1466 / 1350,
  26905. bottom: 65 / 1527
  26906. }
  26907. },
  26908. },
  26909. [
  26910. ]
  26911. ))
  26912. characterMakers.push(() => makeCharacter(
  26913. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  26914. {
  26915. front: {
  26916. height: math.unit(9.35, "feet"),
  26917. weight: math.unit(600, "lb"),
  26918. name: "Front",
  26919. image: {
  26920. source: "./media/characters/amera/front.svg",
  26921. extra: 891 / 818,
  26922. bottom: 30 / 922.7
  26923. }
  26924. },
  26925. back: {
  26926. height: math.unit(9.35, "feet"),
  26927. weight: math.unit(600, "lb"),
  26928. name: "Back",
  26929. image: {
  26930. source: "./media/characters/amera/back.svg",
  26931. extra: 876 / 824,
  26932. bottom: 6.8 / 884
  26933. }
  26934. },
  26935. dick: {
  26936. height: math.unit(2.14, "feet"),
  26937. name: "Dick",
  26938. image: {
  26939. source: "./media/characters/amera/dick.svg"
  26940. }
  26941. },
  26942. },
  26943. [
  26944. {
  26945. name: "Normal",
  26946. height: math.unit(9.35, "feet"),
  26947. default: true
  26948. },
  26949. ]
  26950. ))
  26951. characterMakers.push(() => makeCharacter(
  26952. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  26953. {
  26954. kneeling: {
  26955. height: math.unit(3 + 4 / 12, "feet"),
  26956. weight: math.unit(90, "lb"),
  26957. name: "Kneeling",
  26958. image: {
  26959. source: "./media/characters/rosewen/kneeling.svg",
  26960. extra: 1835 / 1571,
  26961. bottom: 27.7 / 1862
  26962. }
  26963. },
  26964. },
  26965. [
  26966. {
  26967. name: "Normal",
  26968. height: math.unit(3 + 4 / 12, "feet"),
  26969. default: true
  26970. },
  26971. ]
  26972. ))
  26973. characterMakers.push(() => makeCharacter(
  26974. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  26975. {
  26976. front: {
  26977. height: math.unit(5 + 10 / 12, "feet"),
  26978. weight: math.unit(200, "lb"),
  26979. name: "Front",
  26980. image: {
  26981. source: "./media/characters/sabah/front.svg",
  26982. extra: 849 / 763,
  26983. bottom: 33.9 / 881
  26984. }
  26985. },
  26986. },
  26987. [
  26988. {
  26989. name: "Normal",
  26990. height: math.unit(5 + 10 / 12, "feet"),
  26991. default: true
  26992. },
  26993. ]
  26994. ))
  26995. characterMakers.push(() => makeCharacter(
  26996. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  26997. {
  26998. front: {
  26999. height: math.unit(3 + 5 / 12, "feet"),
  27000. weight: math.unit(40, "kg"),
  27001. name: "Front",
  27002. image: {
  27003. source: "./media/characters/purple-flame/front.svg",
  27004. extra: 1577 / 1412,
  27005. bottom: 97 / 1694
  27006. }
  27007. },
  27008. frontDressed: {
  27009. height: math.unit(3 + 5 / 12, "feet"),
  27010. weight: math.unit(40, "kg"),
  27011. name: "Front (Dressed)",
  27012. image: {
  27013. source: "./media/characters/purple-flame/front-dressed.svg",
  27014. extra: 1577 / 1412,
  27015. bottom: 97 / 1694
  27016. }
  27017. },
  27018. headphones: {
  27019. height: math.unit(0.85, "feet"),
  27020. name: "Headphones",
  27021. image: {
  27022. source: "./media/characters/purple-flame/headphones.svg"
  27023. }
  27024. },
  27025. },
  27026. [
  27027. {
  27028. name: "Really Small",
  27029. height: math.unit(5, "cm")
  27030. },
  27031. {
  27032. name: "Micro",
  27033. height: math.unit(1 + 5 / 12, "feet")
  27034. },
  27035. {
  27036. name: "Normal",
  27037. height: math.unit(3 + 5 / 12, "feet"),
  27038. default: true
  27039. },
  27040. {
  27041. name: "Minimacro",
  27042. height: math.unit(125, "feet")
  27043. },
  27044. {
  27045. name: "Macro",
  27046. height: math.unit(0.5, "miles")
  27047. },
  27048. {
  27049. name: "Megamacro",
  27050. height: math.unit(50, "miles")
  27051. },
  27052. {
  27053. name: "Gigantic",
  27054. height: math.unit(750, "miles")
  27055. },
  27056. {
  27057. name: "Planetary",
  27058. height: math.unit(15000, "miles")
  27059. },
  27060. ]
  27061. ))
  27062. characterMakers.push(() => makeCharacter(
  27063. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  27064. {
  27065. front: {
  27066. height: math.unit(14, "feet"),
  27067. weight: math.unit(959, "lb"),
  27068. name: "Front",
  27069. image: {
  27070. source: "./media/characters/arsenal/front.svg",
  27071. extra: 2357 / 2157,
  27072. bottom: 93 / 2458
  27073. }
  27074. },
  27075. },
  27076. [
  27077. {
  27078. name: "Normal",
  27079. height: math.unit(14, "feet"),
  27080. default: true
  27081. },
  27082. ]
  27083. ))
  27084. characterMakers.push(() => makeCharacter(
  27085. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  27086. {
  27087. front: {
  27088. height: math.unit(6, "feet"),
  27089. weight: math.unit(150, "lb"),
  27090. name: "Front",
  27091. image: {
  27092. source: "./media/characters/adira/front.svg",
  27093. extra: 1078 / 1029,
  27094. bottom: 87 / 1166
  27095. }
  27096. },
  27097. },
  27098. [
  27099. {
  27100. name: "Micro",
  27101. height: math.unit(4, "inches"),
  27102. default: true
  27103. },
  27104. {
  27105. name: "Macro",
  27106. height: math.unit(50, "feet")
  27107. },
  27108. ]
  27109. ))
  27110. characterMakers.push(() => makeCharacter(
  27111. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  27112. {
  27113. front: {
  27114. height: math.unit(16, "feet"),
  27115. weight: math.unit(1000, "lb"),
  27116. name: "Front",
  27117. image: {
  27118. source: "./media/characters/grim/front.svg",
  27119. extra: 622 / 614,
  27120. bottom: 18.1 / 642
  27121. }
  27122. },
  27123. back: {
  27124. height: math.unit(16, "feet"),
  27125. weight: math.unit(1000, "lb"),
  27126. name: "Back",
  27127. image: {
  27128. source: "./media/characters/grim/back.svg",
  27129. extra: 610.6 / 602,
  27130. bottom: 40.8 / 652
  27131. }
  27132. },
  27133. hunched: {
  27134. height: math.unit(9.75, "feet"),
  27135. weight: math.unit(1000, "lb"),
  27136. name: "Hunched",
  27137. image: {
  27138. source: "./media/characters/grim/hunched.svg",
  27139. extra: 304 / 297,
  27140. bottom: 35.4 / 394
  27141. }
  27142. },
  27143. },
  27144. [
  27145. {
  27146. name: "Normal",
  27147. height: math.unit(16, "feet"),
  27148. default: true
  27149. },
  27150. ]
  27151. ))
  27152. characterMakers.push(() => makeCharacter(
  27153. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  27154. {
  27155. front: {
  27156. height: math.unit(2.3, "meters"),
  27157. weight: math.unit(300, "lb"),
  27158. name: "Front",
  27159. image: {
  27160. source: "./media/characters/sinja/front-sfw.svg",
  27161. extra: 1393 / 1294,
  27162. bottom: 70 / 1463
  27163. }
  27164. },
  27165. frontNsfw: {
  27166. height: math.unit(2.3, "meters"),
  27167. weight: math.unit(300, "lb"),
  27168. name: "Front (NSFW)",
  27169. image: {
  27170. source: "./media/characters/sinja/front-nsfw.svg",
  27171. extra: 1393 / 1294,
  27172. bottom: 70 / 1463
  27173. }
  27174. },
  27175. back: {
  27176. height: math.unit(2.3, "meters"),
  27177. weight: math.unit(300, "lb"),
  27178. name: "Back",
  27179. image: {
  27180. source: "./media/characters/sinja/back.svg",
  27181. extra: 1393 / 1294,
  27182. bottom: 70 / 1463
  27183. }
  27184. },
  27185. head: {
  27186. height: math.unit(1.771, "feet"),
  27187. name: "Head",
  27188. image: {
  27189. source: "./media/characters/sinja/head.svg"
  27190. }
  27191. },
  27192. slit: {
  27193. height: math.unit(0.8, "feet"),
  27194. name: "Slit",
  27195. image: {
  27196. source: "./media/characters/sinja/slit.svg"
  27197. }
  27198. },
  27199. },
  27200. [
  27201. {
  27202. name: "Normal",
  27203. height: math.unit(2.3, "meters")
  27204. },
  27205. {
  27206. name: "Macro",
  27207. height: math.unit(91, "meters"),
  27208. default: true
  27209. },
  27210. {
  27211. name: "Megamacro",
  27212. height: math.unit(91440, "meters")
  27213. },
  27214. {
  27215. name: "Gigamacro",
  27216. height: math.unit(60960000, "meters")
  27217. },
  27218. {
  27219. name: "Teramacro",
  27220. height: math.unit(9144000000, "meters")
  27221. },
  27222. ]
  27223. ))
  27224. characterMakers.push(() => makeCharacter(
  27225. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  27226. {
  27227. front: {
  27228. height: math.unit(1.7, "meters"),
  27229. weight: math.unit(130, "lb"),
  27230. name: "Front",
  27231. image: {
  27232. source: "./media/characters/kyu/front.svg",
  27233. extra: 415 / 395,
  27234. bottom: 5 / 420
  27235. }
  27236. },
  27237. head: {
  27238. height: math.unit(1.75, "feet"),
  27239. name: "Head",
  27240. image: {
  27241. source: "./media/characters/kyu/head.svg"
  27242. }
  27243. },
  27244. foot: {
  27245. height: math.unit(0.81, "feet"),
  27246. name: "Foot",
  27247. image: {
  27248. source: "./media/characters/kyu/foot.svg"
  27249. }
  27250. },
  27251. },
  27252. [
  27253. {
  27254. name: "Normal",
  27255. height: math.unit(1.7, "meters")
  27256. },
  27257. {
  27258. name: "Macro",
  27259. height: math.unit(131, "feet"),
  27260. default: true
  27261. },
  27262. {
  27263. name: "Megamacro",
  27264. height: math.unit(91440, "meters")
  27265. },
  27266. {
  27267. name: "Gigamacro",
  27268. height: math.unit(60960000, "meters")
  27269. },
  27270. {
  27271. name: "Teramacro",
  27272. height: math.unit(9144000000, "meters")
  27273. },
  27274. ]
  27275. ))
  27276. characterMakers.push(() => makeCharacter(
  27277. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  27278. {
  27279. front: {
  27280. height: math.unit(7 + 1 / 12, "feet"),
  27281. weight: math.unit(250, "lb"),
  27282. name: "Front",
  27283. image: {
  27284. source: "./media/characters/joey/front.svg",
  27285. extra: 1791 / 1537,
  27286. bottom: 28 / 1816
  27287. }
  27288. },
  27289. },
  27290. [
  27291. {
  27292. name: "Micro",
  27293. height: math.unit(3, "inches")
  27294. },
  27295. {
  27296. name: "Normal",
  27297. height: math.unit(7 + 1 / 12, "feet"),
  27298. default: true
  27299. },
  27300. ]
  27301. ))
  27302. characterMakers.push(() => makeCharacter(
  27303. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  27304. {
  27305. front: {
  27306. height: math.unit(165, "cm"),
  27307. weight: math.unit(140, "lb"),
  27308. name: "Front",
  27309. image: {
  27310. source: "./media/characters/sam-evans/front.svg",
  27311. extra: 3417 / 3230,
  27312. bottom: 41.3 / 3417
  27313. }
  27314. },
  27315. frontSixTails: {
  27316. height: math.unit(165, "cm"),
  27317. weight: math.unit(140, "lb"),
  27318. name: "Front-six-tails",
  27319. image: {
  27320. source: "./media/characters/sam-evans/front-six-tails.svg",
  27321. extra: 3417 / 3230,
  27322. bottom: 41.3 / 3417
  27323. }
  27324. },
  27325. back: {
  27326. height: math.unit(165, "cm"),
  27327. weight: math.unit(140, "lb"),
  27328. name: "Back",
  27329. image: {
  27330. source: "./media/characters/sam-evans/back.svg",
  27331. extra: 3227 / 3032,
  27332. bottom: 6.8 / 3234
  27333. }
  27334. },
  27335. face: {
  27336. height: math.unit(0.68, "feet"),
  27337. name: "Face",
  27338. image: {
  27339. source: "./media/characters/sam-evans/face.svg"
  27340. }
  27341. },
  27342. },
  27343. [
  27344. {
  27345. name: "Normal",
  27346. height: math.unit(165, "cm"),
  27347. default: true
  27348. },
  27349. {
  27350. name: "Macro",
  27351. height: math.unit(100, "meters")
  27352. },
  27353. {
  27354. name: "Macro+",
  27355. height: math.unit(800, "meters")
  27356. },
  27357. {
  27358. name: "Macro++",
  27359. height: math.unit(3, "km")
  27360. },
  27361. {
  27362. name: "Macro+++",
  27363. height: math.unit(30, "km")
  27364. },
  27365. ]
  27366. ))
  27367. characterMakers.push(() => makeCharacter(
  27368. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  27369. {
  27370. front: {
  27371. height: math.unit(10, "feet"),
  27372. weight: math.unit(750, "lb"),
  27373. name: "Front",
  27374. image: {
  27375. source: "./media/characters/juliet-a/front.svg",
  27376. extra: 1766 / 1720,
  27377. bottom: 43 / 1809
  27378. }
  27379. },
  27380. back: {
  27381. height: math.unit(10, "feet"),
  27382. weight: math.unit(750, "lb"),
  27383. name: "Back",
  27384. image: {
  27385. source: "./media/characters/juliet-a/back.svg",
  27386. extra: 1781 / 1734,
  27387. bottom: 35 / 1810,
  27388. }
  27389. },
  27390. },
  27391. [
  27392. {
  27393. name: "Normal",
  27394. height: math.unit(10, "feet"),
  27395. default: true
  27396. },
  27397. {
  27398. name: "Dragon Form",
  27399. height: math.unit(250, "feet")
  27400. },
  27401. {
  27402. name: "Macro",
  27403. height: math.unit(1000, "feet")
  27404. },
  27405. {
  27406. name: "Megamacro",
  27407. height: math.unit(10000, "feet")
  27408. }
  27409. ]
  27410. ))
  27411. characterMakers.push(() => makeCharacter(
  27412. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  27413. {
  27414. regular: {
  27415. height: math.unit(7 + 3 / 12, "feet"),
  27416. weight: math.unit(260, "lb"),
  27417. name: "Regular",
  27418. image: {
  27419. source: "./media/characters/wild/regular.svg",
  27420. extra: 97.45 / 92,
  27421. bottom: 6.8 / 104.3
  27422. }
  27423. },
  27424. biggums: {
  27425. height: math.unit(8 + 6 / 12, "feet"),
  27426. weight: math.unit(425, "lb"),
  27427. name: "Biggums",
  27428. image: {
  27429. source: "./media/characters/wild/biggums.svg",
  27430. extra: 97.45 / 92,
  27431. bottom: 7.5 / 132.34
  27432. }
  27433. },
  27434. mawRegular: {
  27435. height: math.unit(1.24, "feet"),
  27436. name: "Maw (Regular)",
  27437. image: {
  27438. source: "./media/characters/wild/maw.svg"
  27439. }
  27440. },
  27441. mawBiggums: {
  27442. height: math.unit(1.47, "feet"),
  27443. name: "Maw (Biggums)",
  27444. image: {
  27445. source: "./media/characters/wild/maw.svg"
  27446. }
  27447. },
  27448. },
  27449. [
  27450. {
  27451. name: "Normal",
  27452. height: math.unit(7 + 3 / 12, "feet"),
  27453. default: true
  27454. },
  27455. ]
  27456. ))
  27457. characterMakers.push(() => makeCharacter(
  27458. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  27459. {
  27460. front: {
  27461. height: math.unit(2.5, "meters"),
  27462. weight: math.unit(200, "kg"),
  27463. name: "Front",
  27464. image: {
  27465. source: "./media/characters/vidar/front.svg",
  27466. extra: 2994 / 2795,
  27467. bottom: 56 / 3061
  27468. }
  27469. },
  27470. back: {
  27471. height: math.unit(2.5, "meters"),
  27472. weight: math.unit(200, "kg"),
  27473. name: "Back",
  27474. image: {
  27475. source: "./media/characters/vidar/back.svg",
  27476. extra: 3131 / 2928,
  27477. bottom: 13.5 / 3141.5
  27478. }
  27479. },
  27480. feral: {
  27481. height: math.unit(2.5, "meters"),
  27482. weight: math.unit(2000, "kg"),
  27483. name: "Feral",
  27484. image: {
  27485. source: "./media/characters/vidar/feral.svg",
  27486. extra: 2790 / 1765,
  27487. bottom: 6 / 2796
  27488. }
  27489. },
  27490. },
  27491. [
  27492. {
  27493. name: "Normal",
  27494. height: math.unit(2.5, "meters"),
  27495. default: true
  27496. },
  27497. {
  27498. name: "Macro",
  27499. height: math.unit(100, "meters")
  27500. },
  27501. ]
  27502. ))
  27503. characterMakers.push(() => makeCharacter(
  27504. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  27505. {
  27506. front: {
  27507. height: math.unit(5 + 9 / 12, "feet"),
  27508. weight: math.unit(120, "lb"),
  27509. name: "Front",
  27510. image: {
  27511. source: "./media/characters/ash/front.svg",
  27512. extra: 2189 / 1961,
  27513. bottom: 5.2 / 2194
  27514. }
  27515. },
  27516. },
  27517. [
  27518. {
  27519. name: "Normal",
  27520. height: math.unit(5 + 9 / 12, "feet"),
  27521. default: true
  27522. },
  27523. ]
  27524. ))
  27525. characterMakers.push(() => makeCharacter(
  27526. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  27527. {
  27528. front: {
  27529. height: math.unit(9, "feet"),
  27530. weight: math.unit(10000, "lb"),
  27531. name: "Front",
  27532. image: {
  27533. source: "./media/characters/gygabite/front.svg",
  27534. bottom: 31.7 / 537.8,
  27535. extra: 505 / 370
  27536. }
  27537. },
  27538. },
  27539. [
  27540. {
  27541. name: "Normal",
  27542. height: math.unit(9, "feet"),
  27543. default: true
  27544. },
  27545. ]
  27546. ))
  27547. characterMakers.push(() => makeCharacter(
  27548. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  27549. {
  27550. front: {
  27551. height: math.unit(12, "feet"),
  27552. weight: math.unit(35000, "lb"),
  27553. name: "Front",
  27554. image: {
  27555. source: "./media/characters/p0tat0/front.svg",
  27556. extra: 1065 / 921,
  27557. bottom: 55.7 / 1121.25
  27558. }
  27559. },
  27560. },
  27561. [
  27562. {
  27563. name: "Normal",
  27564. height: math.unit(12, "feet"),
  27565. default: true
  27566. },
  27567. ]
  27568. ))
  27569. characterMakers.push(() => makeCharacter(
  27570. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  27571. {
  27572. side: {
  27573. height: math.unit(6.5, "feet"),
  27574. weight: math.unit(800, "lb"),
  27575. name: "Side",
  27576. image: {
  27577. source: "./media/characters/dusk/side.svg",
  27578. extra: 615 / 373,
  27579. bottom: 53 / 664
  27580. }
  27581. },
  27582. sitting: {
  27583. height: math.unit(7, "feet"),
  27584. weight: math.unit(800, "lb"),
  27585. name: "Sitting",
  27586. image: {
  27587. source: "./media/characters/dusk/sitting.svg",
  27588. extra: 753 / 425,
  27589. bottom: 33 / 774
  27590. }
  27591. },
  27592. head: {
  27593. height: math.unit(6.1, "feet"),
  27594. name: "Head",
  27595. image: {
  27596. source: "./media/characters/dusk/head.svg"
  27597. }
  27598. },
  27599. },
  27600. [
  27601. {
  27602. name: "Normal",
  27603. height: math.unit(7, "feet"),
  27604. default: true
  27605. },
  27606. ]
  27607. ))
  27608. characterMakers.push(() => makeCharacter(
  27609. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  27610. {
  27611. front: {
  27612. height: math.unit(15, "feet"),
  27613. weight: math.unit(7000, "lb"),
  27614. name: "Front",
  27615. image: {
  27616. source: "./media/characters/jay-direwolf/front.svg",
  27617. extra: 1810 / 1732,
  27618. bottom: 66 / 1892
  27619. }
  27620. },
  27621. },
  27622. [
  27623. {
  27624. name: "Normal",
  27625. height: math.unit(15, "feet"),
  27626. default: true
  27627. },
  27628. ]
  27629. ))
  27630. characterMakers.push(() => makeCharacter(
  27631. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  27632. {
  27633. front: {
  27634. height: math.unit(4 + 9 / 12, "feet"),
  27635. weight: math.unit(130, "lb"),
  27636. name: "Front",
  27637. image: {
  27638. source: "./media/characters/anchovie/front.svg",
  27639. extra: 382 / 350,
  27640. bottom: 25 / 409
  27641. }
  27642. },
  27643. back: {
  27644. height: math.unit(4 + 9 / 12, "feet"),
  27645. weight: math.unit(130, "lb"),
  27646. name: "Back",
  27647. image: {
  27648. source: "./media/characters/anchovie/back.svg",
  27649. extra: 385 / 352,
  27650. bottom: 16.6 / 402
  27651. }
  27652. },
  27653. frontDressed: {
  27654. height: math.unit(4 + 9 / 12, "feet"),
  27655. weight: math.unit(130, "lb"),
  27656. name: "Front (Dressed)",
  27657. image: {
  27658. source: "./media/characters/anchovie/front-dressed.svg",
  27659. extra: 382 / 350,
  27660. bottom: 25 / 409
  27661. }
  27662. },
  27663. backDressed: {
  27664. height: math.unit(4 + 9 / 12, "feet"),
  27665. weight: math.unit(130, "lb"),
  27666. name: "Back (Dressed)",
  27667. image: {
  27668. source: "./media/characters/anchovie/back-dressed.svg",
  27669. extra: 385 / 352,
  27670. bottom: 16.6 / 402
  27671. }
  27672. },
  27673. },
  27674. [
  27675. {
  27676. name: "Micro",
  27677. height: math.unit(6.4, "inches")
  27678. },
  27679. {
  27680. name: "Normal",
  27681. height: math.unit(4 + 9 / 12, "feet"),
  27682. default: true
  27683. },
  27684. ]
  27685. ))
  27686. characterMakers.push(() => makeCharacter(
  27687. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  27688. {
  27689. front: {
  27690. height: math.unit(2, "meters"),
  27691. weight: math.unit(180, "lb"),
  27692. name: "Front",
  27693. image: {
  27694. source: "./media/characters/acidrenamon/front.svg",
  27695. extra: 987 / 890,
  27696. bottom: 22.8 / 1009
  27697. }
  27698. },
  27699. back: {
  27700. height: math.unit(2, "meters"),
  27701. weight: math.unit(180, "lb"),
  27702. name: "Back",
  27703. image: {
  27704. source: "./media/characters/acidrenamon/back.svg",
  27705. extra: 983 / 891,
  27706. bottom: 8.4 / 992
  27707. }
  27708. },
  27709. head: {
  27710. height: math.unit(1.92, "feet"),
  27711. name: "Head",
  27712. image: {
  27713. source: "./media/characters/acidrenamon/head.svg"
  27714. }
  27715. },
  27716. rump: {
  27717. height: math.unit(1.72, "feet"),
  27718. name: "Rump",
  27719. image: {
  27720. source: "./media/characters/acidrenamon/rump.svg"
  27721. }
  27722. },
  27723. tail: {
  27724. height: math.unit(4.2, "feet"),
  27725. name: "Tail",
  27726. image: {
  27727. source: "./media/characters/acidrenamon/tail.svg"
  27728. }
  27729. },
  27730. },
  27731. [
  27732. {
  27733. name: "Normal",
  27734. height: math.unit(2, "meters"),
  27735. default: true
  27736. },
  27737. {
  27738. name: "Minimacro",
  27739. height: math.unit(7, "meters")
  27740. },
  27741. {
  27742. name: "Macro",
  27743. height: math.unit(200, "meters")
  27744. },
  27745. {
  27746. name: "Gigamacro",
  27747. height: math.unit(0.2, "earths")
  27748. },
  27749. ]
  27750. ))
  27751. characterMakers.push(() => makeCharacter(
  27752. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  27753. {
  27754. front: {
  27755. height: math.unit(152, "feet"),
  27756. name: "Front",
  27757. image: {
  27758. source: "./media/characters/kenzie-lee/front.svg",
  27759. extra: 1869/1774,
  27760. bottom: 128/1997
  27761. }
  27762. },
  27763. side: {
  27764. height: math.unit(86, "feet"),
  27765. name: "Side",
  27766. image: {
  27767. source: "./media/characters/kenzie-lee/side.svg",
  27768. extra: 930/815,
  27769. bottom: 177/1107
  27770. }
  27771. },
  27772. paw: {
  27773. height: math.unit(15, "feet"),
  27774. name: "Paw",
  27775. image: {
  27776. source: "./media/characters/kenzie-lee/paw.svg"
  27777. }
  27778. },
  27779. },
  27780. [
  27781. {
  27782. name: "Micro",
  27783. height: math.unit(1.5, "inches")
  27784. },
  27785. {
  27786. name: "Normal",
  27787. height: math.unit(152, "feet"),
  27788. default: true
  27789. },
  27790. {
  27791. name: "Megamacro",
  27792. height: math.unit(7, "miles")
  27793. },
  27794. {
  27795. name: "Gigamacro",
  27796. height: math.unit(8000, "miles")
  27797. },
  27798. ]
  27799. ))
  27800. characterMakers.push(() => makeCharacter(
  27801. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  27802. {
  27803. side: {
  27804. height: math.unit(6, "feet"),
  27805. weight: math.unit(150, "lb"),
  27806. name: "Side",
  27807. image: {
  27808. source: "./media/characters/withers/side.svg",
  27809. extra: 1830 / 1728,
  27810. bottom: 96 / 1927
  27811. }
  27812. },
  27813. front: {
  27814. height: math.unit(6, "feet"),
  27815. weight: math.unit(150, "lb"),
  27816. name: "Front",
  27817. image: {
  27818. source: "./media/characters/withers/front.svg",
  27819. extra: 1514 / 1438,
  27820. bottom: 118 / 1632
  27821. }
  27822. },
  27823. },
  27824. [
  27825. {
  27826. name: "Macro",
  27827. height: math.unit(168, "feet"),
  27828. default: true
  27829. },
  27830. {
  27831. name: "Megamacro",
  27832. height: math.unit(15, "miles")
  27833. }
  27834. ]
  27835. ))
  27836. characterMakers.push(() => makeCharacter(
  27837. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  27838. {
  27839. front: {
  27840. height: math.unit(6 + 7 / 12, "feet"),
  27841. weight: math.unit(250, "lb"),
  27842. name: "Front",
  27843. image: {
  27844. source: "./media/characters/nemoskii/front.svg",
  27845. extra: 2270 / 1734,
  27846. bottom: 86 / 2354
  27847. }
  27848. },
  27849. back: {
  27850. height: math.unit(6 + 7 / 12, "feet"),
  27851. weight: math.unit(250, "lb"),
  27852. name: "Back",
  27853. image: {
  27854. source: "./media/characters/nemoskii/back.svg",
  27855. extra: 1845 / 1788,
  27856. bottom: 10.5 / 1852
  27857. }
  27858. },
  27859. head: {
  27860. height: math.unit(1.31, "feet"),
  27861. name: "Head",
  27862. image: {
  27863. source: "./media/characters/nemoskii/head.svg"
  27864. }
  27865. },
  27866. },
  27867. [
  27868. {
  27869. name: "Micro",
  27870. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  27871. },
  27872. {
  27873. name: "Normal",
  27874. height: math.unit(6 + 7 / 12, "feet"),
  27875. default: true
  27876. },
  27877. {
  27878. name: "Macro",
  27879. height: math.unit((6 + 7 / 12) * 150, "feet")
  27880. },
  27881. {
  27882. name: "Macro+",
  27883. height: math.unit((6 + 7 / 12) * 500, "feet")
  27884. },
  27885. {
  27886. name: "Megamacro",
  27887. height: math.unit((6 + 7 / 12) * 100000, "feet")
  27888. },
  27889. ]
  27890. ))
  27891. characterMakers.push(() => makeCharacter(
  27892. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  27893. {
  27894. front: {
  27895. height: math.unit(1, "mile"),
  27896. weight: math.unit(265261.9, "lb"),
  27897. name: "Front",
  27898. image: {
  27899. source: "./media/characters/shui/front.svg",
  27900. extra: 1633 / 1564,
  27901. bottom: 91.5 / 1726
  27902. }
  27903. },
  27904. },
  27905. [
  27906. {
  27907. name: "Macro",
  27908. height: math.unit(1, "mile"),
  27909. default: true
  27910. },
  27911. ]
  27912. ))
  27913. characterMakers.push(() => makeCharacter(
  27914. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  27915. {
  27916. front: {
  27917. height: math.unit(12 + 6 / 12, "feet"),
  27918. weight: math.unit(1342, "lb"),
  27919. name: "Front",
  27920. image: {
  27921. source: "./media/characters/arokh-takakura/front.svg",
  27922. extra: 1089 / 1043,
  27923. bottom: 77.4 / 1176.7
  27924. }
  27925. },
  27926. back: {
  27927. height: math.unit(12 + 6 / 12, "feet"),
  27928. weight: math.unit(1342, "lb"),
  27929. name: "Back",
  27930. image: {
  27931. source: "./media/characters/arokh-takakura/back.svg",
  27932. extra: 1046 / 1019,
  27933. bottom: 102 / 1150
  27934. }
  27935. },
  27936. },
  27937. [
  27938. {
  27939. name: "Big",
  27940. height: math.unit(12 + 6 / 12, "feet"),
  27941. default: true
  27942. },
  27943. ]
  27944. ))
  27945. characterMakers.push(() => makeCharacter(
  27946. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  27947. {
  27948. front: {
  27949. height: math.unit(5 + 6 / 12, "feet"),
  27950. weight: math.unit(150, "lb"),
  27951. name: "Front",
  27952. image: {
  27953. source: "./media/characters/theo/front.svg",
  27954. extra: 1184 / 1131,
  27955. bottom: 7.4 / 1191
  27956. }
  27957. },
  27958. },
  27959. [
  27960. {
  27961. name: "Micro",
  27962. height: math.unit(5, "inches")
  27963. },
  27964. {
  27965. name: "Normal",
  27966. height: math.unit(5 + 6 / 12, "feet"),
  27967. default: true
  27968. },
  27969. ]
  27970. ))
  27971. characterMakers.push(() => makeCharacter(
  27972. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  27973. {
  27974. front: {
  27975. height: math.unit(5 + 9 / 12, "feet"),
  27976. weight: math.unit(130, "lb"),
  27977. name: "Front",
  27978. image: {
  27979. source: "./media/characters/cecelia-swift/front.svg",
  27980. extra: 502 / 484,
  27981. bottom: 23 / 523
  27982. }
  27983. },
  27984. back: {
  27985. height: math.unit(5 + 9 / 12, "feet"),
  27986. weight: math.unit(130, "lb"),
  27987. name: "Back",
  27988. image: {
  27989. source: "./media/characters/cecelia-swift/back.svg",
  27990. extra: 499 / 485,
  27991. bottom: 12 / 511
  27992. }
  27993. },
  27994. head: {
  27995. height: math.unit(0.90, "feet"),
  27996. name: "Head",
  27997. image: {
  27998. source: "./media/characters/cecelia-swift/head.svg"
  27999. }
  28000. },
  28001. rump: {
  28002. height: math.unit(1.75, "feet"),
  28003. name: "Rump",
  28004. image: {
  28005. source: "./media/characters/cecelia-swift/rump.svg"
  28006. }
  28007. },
  28008. },
  28009. [
  28010. {
  28011. name: "Normal",
  28012. height: math.unit(5 + 9 / 12, "feet"),
  28013. default: true
  28014. },
  28015. {
  28016. name: "Big",
  28017. height: math.unit(50, "feet")
  28018. },
  28019. {
  28020. name: "Macro",
  28021. height: math.unit(100, "feet")
  28022. },
  28023. {
  28024. name: "Macro+",
  28025. height: math.unit(500, "feet")
  28026. },
  28027. {
  28028. name: "Macro++",
  28029. height: math.unit(1000, "feet")
  28030. },
  28031. ]
  28032. ))
  28033. characterMakers.push(() => makeCharacter(
  28034. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  28035. {
  28036. front: {
  28037. height: math.unit(6, "feet"),
  28038. weight: math.unit(150, "lb"),
  28039. name: "Front",
  28040. image: {
  28041. source: "./media/characters/kaunan/front.svg",
  28042. extra: 2890 / 2523,
  28043. bottom: 49 / 2939
  28044. }
  28045. },
  28046. },
  28047. [
  28048. {
  28049. name: "Macro",
  28050. height: math.unit(150, "feet"),
  28051. default: true
  28052. },
  28053. ]
  28054. ))
  28055. characterMakers.push(() => makeCharacter(
  28056. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  28057. {
  28058. front: {
  28059. height: math.unit(175, "cm"),
  28060. weight: math.unit(60, "kg"),
  28061. name: "Front",
  28062. image: {
  28063. source: "./media/characters/fei/front.svg",
  28064. extra: 1873/1723,
  28065. bottom: 53/1926
  28066. }
  28067. },
  28068. },
  28069. [
  28070. {
  28071. name: "Mortal",
  28072. height: math.unit(175, "cm")
  28073. },
  28074. {
  28075. name: "Normal",
  28076. height: math.unit(3500, "m"),
  28077. default: true
  28078. },
  28079. {
  28080. name: "Stroll",
  28081. height: math.unit(17.5, "km")
  28082. },
  28083. {
  28084. name: "Showoff",
  28085. height: math.unit(175, "km")
  28086. },
  28087. ]
  28088. ))
  28089. characterMakers.push(() => makeCharacter(
  28090. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  28091. {
  28092. front: {
  28093. height: math.unit(7, "feet"),
  28094. weight: math.unit(1000, "kg"),
  28095. name: "Front",
  28096. image: {
  28097. source: "./media/characters/edrax/front.svg",
  28098. extra: 2838 / 2550,
  28099. bottom: 130 / 2968
  28100. }
  28101. },
  28102. },
  28103. [
  28104. {
  28105. name: "Small",
  28106. height: math.unit(7, "feet")
  28107. },
  28108. {
  28109. name: "Normal",
  28110. height: math.unit(1500, "meters")
  28111. },
  28112. {
  28113. name: "Mega",
  28114. height: math.unit(12000000, "km"),
  28115. default: true
  28116. },
  28117. {
  28118. name: "Megamacro",
  28119. height: math.unit(10600000, "lightyears")
  28120. },
  28121. {
  28122. name: "Hypermacro",
  28123. height: math.unit(256, "yottameters")
  28124. },
  28125. ]
  28126. ))
  28127. characterMakers.push(() => makeCharacter(
  28128. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  28129. {
  28130. front: {
  28131. height: math.unit(10, "feet"),
  28132. weight: math.unit(750, "lb"),
  28133. name: "Front",
  28134. image: {
  28135. source: "./media/characters/clove/front.svg",
  28136. extra: 1918/1751,
  28137. bottom: 52/1970
  28138. }
  28139. },
  28140. back: {
  28141. height: math.unit(10, "feet"),
  28142. weight: math.unit(750, "lb"),
  28143. name: "Back",
  28144. image: {
  28145. source: "./media/characters/clove/back.svg",
  28146. extra: 1912/1747,
  28147. bottom: 50/1962
  28148. }
  28149. },
  28150. },
  28151. [
  28152. {
  28153. name: "Normal",
  28154. height: math.unit(10, "feet"),
  28155. default: true
  28156. },
  28157. ]
  28158. ))
  28159. characterMakers.push(() => makeCharacter(
  28160. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  28161. {
  28162. front: {
  28163. height: math.unit(4, "feet"),
  28164. weight: math.unit(50, "lb"),
  28165. name: "Front",
  28166. image: {
  28167. source: "./media/characters/alex-rabbit/front.svg",
  28168. extra: 507 / 458,
  28169. bottom: 18.5 / 527
  28170. }
  28171. },
  28172. back: {
  28173. height: math.unit(4, "feet"),
  28174. weight: math.unit(50, "lb"),
  28175. name: "Back",
  28176. image: {
  28177. source: "./media/characters/alex-rabbit/back.svg",
  28178. extra: 502 / 460,
  28179. bottom: 18.9 / 521
  28180. }
  28181. },
  28182. },
  28183. [
  28184. {
  28185. name: "Normal",
  28186. height: math.unit(4, "feet"),
  28187. default: true
  28188. },
  28189. ]
  28190. ))
  28191. characterMakers.push(() => makeCharacter(
  28192. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  28193. {
  28194. front: {
  28195. height: math.unit(1 + 3 / 12, "feet"),
  28196. weight: math.unit(80, "lb"),
  28197. name: "Front",
  28198. image: {
  28199. source: "./media/characters/zander-rose/front.svg",
  28200. extra: 916 / 797,
  28201. bottom: 17 / 933
  28202. }
  28203. },
  28204. back: {
  28205. height: math.unit(1 + 3 / 12, "feet"),
  28206. weight: math.unit(80, "lb"),
  28207. name: "Back",
  28208. image: {
  28209. source: "./media/characters/zander-rose/back.svg",
  28210. extra: 903 / 779,
  28211. bottom: 31 / 934
  28212. }
  28213. },
  28214. },
  28215. [
  28216. {
  28217. name: "Normal",
  28218. height: math.unit(1 + 3 / 12, "feet"),
  28219. default: true
  28220. },
  28221. ]
  28222. ))
  28223. characterMakers.push(() => makeCharacter(
  28224. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  28225. {
  28226. anthro: {
  28227. height: math.unit(6, "feet"),
  28228. weight: math.unit(150, "lb"),
  28229. name: "Anthro",
  28230. image: {
  28231. source: "./media/characters/razz/anthro.svg",
  28232. extra: 1437 / 1343,
  28233. bottom: 48 / 1485
  28234. }
  28235. },
  28236. feral: {
  28237. height: math.unit(6, "feet"),
  28238. weight: math.unit(150, "lb"),
  28239. name: "Feral",
  28240. image: {
  28241. source: "./media/characters/razz/feral.svg",
  28242. extra: 2569 / 1385,
  28243. bottom: 95 / 2664
  28244. }
  28245. },
  28246. },
  28247. [
  28248. {
  28249. name: "Normal",
  28250. height: math.unit(6, "feet"),
  28251. default: true
  28252. },
  28253. ]
  28254. ))
  28255. characterMakers.push(() => makeCharacter(
  28256. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  28257. {
  28258. front: {
  28259. height: math.unit(9 + 4 / 12, "feet"),
  28260. weight: math.unit(500, "lb"),
  28261. name: "Front",
  28262. image: {
  28263. source: "./media/characters/morrigan/front.svg",
  28264. extra: 2707 / 2579,
  28265. bottom: 156 / 2863
  28266. }
  28267. },
  28268. },
  28269. [
  28270. {
  28271. name: "Normal",
  28272. height: math.unit(9 + 4 / 12, "feet"),
  28273. default: true
  28274. },
  28275. ]
  28276. ))
  28277. characterMakers.push(() => makeCharacter(
  28278. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  28279. {
  28280. front: {
  28281. height: math.unit(5, "stories"),
  28282. weight: math.unit(4000, "lb"),
  28283. name: "Front",
  28284. image: {
  28285. source: "./media/characters/jenene/front.svg",
  28286. extra: 1780 / 1710,
  28287. bottom: 57 / 1837
  28288. }
  28289. },
  28290. },
  28291. [
  28292. {
  28293. name: "Normal",
  28294. height: math.unit(5, "stories"),
  28295. default: true
  28296. },
  28297. ]
  28298. ))
  28299. characterMakers.push(() => makeCharacter(
  28300. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  28301. {
  28302. taurSfw: {
  28303. height: math.unit(10, "meters"),
  28304. weight: math.unit(17500, "kg"),
  28305. name: "Taur",
  28306. image: {
  28307. source: "./media/characters/faey/taur-sfw.svg",
  28308. extra: 1200 / 968,
  28309. bottom: 41 / 1241
  28310. }
  28311. },
  28312. chestmaw: {
  28313. height: math.unit(2.01, "meters"),
  28314. name: "Chestmaw",
  28315. image: {
  28316. source: "./media/characters/faey/chestmaw.svg"
  28317. }
  28318. },
  28319. foot: {
  28320. height: math.unit(2.43, "meters"),
  28321. name: "Foot",
  28322. image: {
  28323. source: "./media/characters/faey/foot.svg"
  28324. }
  28325. },
  28326. jaws: {
  28327. height: math.unit(1.66, "meters"),
  28328. name: "Jaws",
  28329. image: {
  28330. source: "./media/characters/faey/jaws.svg"
  28331. }
  28332. },
  28333. tongues: {
  28334. height: math.unit(2.01, "meters"),
  28335. name: "Tongues",
  28336. image: {
  28337. source: "./media/characters/faey/tongues.svg"
  28338. }
  28339. },
  28340. },
  28341. [
  28342. {
  28343. name: "Small",
  28344. height: math.unit(10, "meters"),
  28345. default: true
  28346. },
  28347. {
  28348. name: "Big",
  28349. height: math.unit(500000, "km")
  28350. },
  28351. ]
  28352. ))
  28353. characterMakers.push(() => makeCharacter(
  28354. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  28355. {
  28356. front: {
  28357. height: math.unit(7, "feet"),
  28358. weight: math.unit(275, "lb"),
  28359. name: "Front",
  28360. image: {
  28361. source: "./media/characters/roku/front.svg",
  28362. extra: 903 / 878,
  28363. bottom: 37 / 940
  28364. }
  28365. },
  28366. },
  28367. [
  28368. {
  28369. name: "Normal",
  28370. height: math.unit(7, "feet"),
  28371. default: true
  28372. },
  28373. {
  28374. name: "Macro",
  28375. height: math.unit(500, "feet")
  28376. },
  28377. {
  28378. name: "Megamacro",
  28379. height: math.unit(200, "miles")
  28380. },
  28381. ]
  28382. ))
  28383. characterMakers.push(() => makeCharacter(
  28384. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  28385. {
  28386. front: {
  28387. height: math.unit(6 + 2 / 12, "feet"),
  28388. weight: math.unit(150, "lb"),
  28389. name: "Front",
  28390. image: {
  28391. source: "./media/characters/lira/front.svg",
  28392. extra: 1727 / 1605,
  28393. bottom: 26 / 1753
  28394. }
  28395. },
  28396. back: {
  28397. height: math.unit(6 + 2 / 12, "feet"),
  28398. weight: math.unit(150, "lb"),
  28399. name: "Back",
  28400. image: {
  28401. source: "./media/characters/lira/back.svg",
  28402. extra: 1713/1621,
  28403. bottom: 20/1733
  28404. }
  28405. },
  28406. hand: {
  28407. height: math.unit(0.75, "feet"),
  28408. name: "Hand",
  28409. image: {
  28410. source: "./media/characters/lira/hand.svg"
  28411. }
  28412. },
  28413. maw: {
  28414. height: math.unit(0.65, "feet"),
  28415. name: "Maw",
  28416. image: {
  28417. source: "./media/characters/lira/maw.svg"
  28418. }
  28419. },
  28420. pawDigi: {
  28421. height: math.unit(1.6, "feet"),
  28422. name: "Paw Digi",
  28423. image: {
  28424. source: "./media/characters/lira/paw-digi.svg"
  28425. }
  28426. },
  28427. pawPlanti: {
  28428. height: math.unit(1.4, "feet"),
  28429. name: "Paw Planti",
  28430. image: {
  28431. source: "./media/characters/lira/paw-planti.svg"
  28432. }
  28433. },
  28434. },
  28435. [
  28436. {
  28437. name: "Normal",
  28438. height: math.unit(6 + 2 / 12, "feet"),
  28439. default: true
  28440. },
  28441. {
  28442. name: "Macro",
  28443. height: math.unit(100, "feet")
  28444. },
  28445. {
  28446. name: "Macro²",
  28447. height: math.unit(1600, "feet")
  28448. },
  28449. {
  28450. name: "Planetary",
  28451. height: math.unit(20, "earths")
  28452. },
  28453. ]
  28454. ))
  28455. characterMakers.push(() => makeCharacter(
  28456. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  28457. {
  28458. front: {
  28459. height: math.unit(6, "feet"),
  28460. weight: math.unit(150, "lb"),
  28461. name: "Front",
  28462. image: {
  28463. source: "./media/characters/hadjet/front.svg",
  28464. extra: 1480 / 1346,
  28465. bottom: 26 / 1506
  28466. }
  28467. },
  28468. frontNsfw: {
  28469. height: math.unit(6, "feet"),
  28470. weight: math.unit(150, "lb"),
  28471. name: "Front (NSFW)",
  28472. image: {
  28473. source: "./media/characters/hadjet/front-nsfw.svg",
  28474. extra: 1440 / 1358,
  28475. bottom: 52 / 1492
  28476. }
  28477. },
  28478. },
  28479. [
  28480. {
  28481. name: "Macro",
  28482. height: math.unit(10, "stories"),
  28483. default: true
  28484. },
  28485. {
  28486. name: "Megamacro",
  28487. height: math.unit(1.5, "miles")
  28488. },
  28489. {
  28490. name: "Megamacro+",
  28491. height: math.unit(5, "miles")
  28492. },
  28493. ]
  28494. ))
  28495. characterMakers.push(() => makeCharacter(
  28496. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  28497. {
  28498. side: {
  28499. height: math.unit(106, "feet"),
  28500. weight: math.unit(500, "tonnes"),
  28501. name: "Side",
  28502. image: {
  28503. source: "./media/characters/kodran/side.svg",
  28504. extra: 553 / 480,
  28505. bottom: 33 / 586
  28506. }
  28507. },
  28508. front: {
  28509. height: math.unit(132, "feet"),
  28510. weight: math.unit(500, "tonnes"),
  28511. name: "Front",
  28512. image: {
  28513. source: "./media/characters/kodran/front.svg",
  28514. extra: 667 / 643,
  28515. bottom: 42 / 709
  28516. }
  28517. },
  28518. flying: {
  28519. height: math.unit(350, "feet"),
  28520. weight: math.unit(500, "tonnes"),
  28521. name: "Flying",
  28522. image: {
  28523. source: "./media/characters/kodran/flying.svg"
  28524. }
  28525. },
  28526. foot: {
  28527. height: math.unit(33, "feet"),
  28528. name: "Foot",
  28529. image: {
  28530. source: "./media/characters/kodran/foot.svg"
  28531. }
  28532. },
  28533. footFront: {
  28534. height: math.unit(19, "feet"),
  28535. name: "Foot (Front)",
  28536. image: {
  28537. source: "./media/characters/kodran/foot-front.svg",
  28538. extra: 261 / 261,
  28539. bottom: 91 / 352
  28540. }
  28541. },
  28542. headFront: {
  28543. height: math.unit(53, "feet"),
  28544. name: "Head (Front)",
  28545. image: {
  28546. source: "./media/characters/kodran/head-front.svg"
  28547. }
  28548. },
  28549. headSide: {
  28550. height: math.unit(65, "feet"),
  28551. name: "Head (Side)",
  28552. image: {
  28553. source: "./media/characters/kodran/head-side.svg"
  28554. }
  28555. },
  28556. throat: {
  28557. height: math.unit(79, "feet"),
  28558. name: "Throat",
  28559. image: {
  28560. source: "./media/characters/kodran/throat.svg"
  28561. }
  28562. },
  28563. },
  28564. [
  28565. {
  28566. name: "Large",
  28567. height: math.unit(106, "feet"),
  28568. default: true
  28569. },
  28570. ]
  28571. ))
  28572. characterMakers.push(() => makeCharacter(
  28573. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  28574. {
  28575. side: {
  28576. height: math.unit(11, "feet"),
  28577. weight: math.unit(150, "lb"),
  28578. name: "Side",
  28579. image: {
  28580. source: "./media/characters/pyxaron/side.svg",
  28581. extra: 305 / 195,
  28582. bottom: 17 / 322
  28583. }
  28584. },
  28585. },
  28586. [
  28587. {
  28588. name: "Normal",
  28589. height: math.unit(11, "feet"),
  28590. default: true
  28591. },
  28592. ]
  28593. ))
  28594. characterMakers.push(() => makeCharacter(
  28595. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  28596. {
  28597. front: {
  28598. height: math.unit(6, "feet"),
  28599. weight: math.unit(150, "lb"),
  28600. name: "Front",
  28601. image: {
  28602. source: "./media/characters/meep/front.svg",
  28603. extra: 88 / 80,
  28604. bottom: 6 / 94
  28605. }
  28606. },
  28607. },
  28608. [
  28609. {
  28610. name: "Fun Sized",
  28611. height: math.unit(2, "inches"),
  28612. default: true
  28613. },
  28614. {
  28615. name: "Friend Sized",
  28616. height: math.unit(8, "inches")
  28617. },
  28618. ]
  28619. ))
  28620. characterMakers.push(() => makeCharacter(
  28621. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  28622. {
  28623. front: {
  28624. height: math.unit(15, "feet"),
  28625. weight: math.unit(2500, "lb"),
  28626. name: "Front",
  28627. image: {
  28628. source: "./media/characters/holly-rabbit/front.svg",
  28629. extra: 1433 / 1233,
  28630. bottom: 125 / 1558
  28631. }
  28632. },
  28633. dick: {
  28634. height: math.unit(4.6, "feet"),
  28635. name: "Dick",
  28636. image: {
  28637. source: "./media/characters/holly-rabbit/dick.svg"
  28638. }
  28639. },
  28640. },
  28641. [
  28642. {
  28643. name: "Normal",
  28644. height: math.unit(15, "feet"),
  28645. default: true
  28646. },
  28647. {
  28648. name: "Macro",
  28649. height: math.unit(250, "feet")
  28650. },
  28651. {
  28652. name: "Macro+",
  28653. height: math.unit(2500, "feet")
  28654. },
  28655. ]
  28656. ))
  28657. characterMakers.push(() => makeCharacter(
  28658. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  28659. {
  28660. front: {
  28661. height: math.unit(3.02, "meters"),
  28662. weight: math.unit(500, "kg"),
  28663. name: "Front",
  28664. image: {
  28665. source: "./media/characters/drena/front.svg",
  28666. extra: 282 / 243,
  28667. bottom: 8 / 290
  28668. }
  28669. },
  28670. side: {
  28671. height: math.unit(3.02, "meters"),
  28672. weight: math.unit(500, "kg"),
  28673. name: "Side",
  28674. image: {
  28675. source: "./media/characters/drena/side.svg",
  28676. extra: 280 / 245,
  28677. bottom: 10 / 290
  28678. }
  28679. },
  28680. back: {
  28681. height: math.unit(3.02, "meters"),
  28682. weight: math.unit(500, "kg"),
  28683. name: "Back",
  28684. image: {
  28685. source: "./media/characters/drena/back.svg",
  28686. extra: 278 / 243,
  28687. bottom: 2 / 280
  28688. }
  28689. },
  28690. foot: {
  28691. height: math.unit(0.75, "meters"),
  28692. name: "Foot",
  28693. image: {
  28694. source: "./media/characters/drena/foot.svg"
  28695. }
  28696. },
  28697. maw: {
  28698. height: math.unit(0.82, "meters"),
  28699. name: "Maw",
  28700. image: {
  28701. source: "./media/characters/drena/maw.svg"
  28702. }
  28703. },
  28704. rump: {
  28705. height: math.unit(0.93, "meters"),
  28706. name: "Rump",
  28707. image: {
  28708. source: "./media/characters/drena/rump.svg"
  28709. }
  28710. },
  28711. },
  28712. [
  28713. {
  28714. name: "Normal",
  28715. height: math.unit(3.02, "meters"),
  28716. default: true
  28717. },
  28718. ]
  28719. ))
  28720. characterMakers.push(() => makeCharacter(
  28721. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  28722. {
  28723. front: {
  28724. height: math.unit(6 + 4 / 12, "feet"),
  28725. weight: math.unit(250, "lb"),
  28726. name: "Front",
  28727. image: {
  28728. source: "./media/characters/remmyzilla/front.svg",
  28729. extra: 4033 / 3588,
  28730. bottom: 123 / 4156
  28731. }
  28732. },
  28733. back: {
  28734. height: math.unit(6 + 4 / 12, "feet"),
  28735. weight: math.unit(250, "lb"),
  28736. name: "Back",
  28737. image: {
  28738. source: "./media/characters/remmyzilla/back.svg",
  28739. extra: 2687 / 2555,
  28740. bottom: 48 / 2735
  28741. }
  28742. },
  28743. paw: {
  28744. height: math.unit(1.73, "feet"),
  28745. name: "Paw",
  28746. image: {
  28747. source: "./media/characters/remmyzilla/paw.svg"
  28748. }
  28749. },
  28750. maw: {
  28751. height: math.unit(1.73, "feet"),
  28752. name: "Maw",
  28753. image: {
  28754. source: "./media/characters/remmyzilla/maw.svg"
  28755. }
  28756. },
  28757. },
  28758. [
  28759. {
  28760. name: "Normal",
  28761. height: math.unit(6 + 4 / 12, "feet")
  28762. },
  28763. {
  28764. name: "Minimacro",
  28765. height: math.unit(12 + 8 / 12, "feet")
  28766. },
  28767. {
  28768. name: "Normal",
  28769. height: math.unit(640, "feet"),
  28770. default: true
  28771. },
  28772. {
  28773. name: "Megamacro",
  28774. height: math.unit(6400, "feet")
  28775. },
  28776. {
  28777. name: "Gigamacro",
  28778. height: math.unit(64000, "miles")
  28779. },
  28780. ]
  28781. ))
  28782. characterMakers.push(() => makeCharacter(
  28783. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  28784. {
  28785. front: {
  28786. height: math.unit(2.5, "meters"),
  28787. weight: math.unit(300, "lb"),
  28788. name: "Front",
  28789. image: {
  28790. source: "./media/characters/lawrence/front.svg",
  28791. extra: 357 / 335,
  28792. bottom: 30 / 387
  28793. }
  28794. },
  28795. back: {
  28796. height: math.unit(2.5, "meters"),
  28797. weight: math.unit(300, "lb"),
  28798. name: "Back",
  28799. image: {
  28800. source: "./media/characters/lawrence/back.svg",
  28801. extra: 357 / 338,
  28802. bottom: 16 / 373
  28803. }
  28804. },
  28805. head: {
  28806. height: math.unit(0.9, "meter"),
  28807. name: "Head",
  28808. image: {
  28809. source: "./media/characters/lawrence/head.svg"
  28810. }
  28811. },
  28812. maw: {
  28813. height: math.unit(0.7, "meter"),
  28814. name: "Maw",
  28815. image: {
  28816. source: "./media/characters/lawrence/maw.svg"
  28817. }
  28818. },
  28819. footBottom: {
  28820. height: math.unit(0.5, "meter"),
  28821. name: "Foot (Bottom)",
  28822. image: {
  28823. source: "./media/characters/lawrence/foot-bottom.svg"
  28824. }
  28825. },
  28826. footTop: {
  28827. height: math.unit(0.5, "meter"),
  28828. name: "Foot (Top)",
  28829. image: {
  28830. source: "./media/characters/lawrence/foot-top.svg"
  28831. }
  28832. },
  28833. },
  28834. [
  28835. {
  28836. name: "Normal",
  28837. height: math.unit(2.5, "meters"),
  28838. default: true
  28839. },
  28840. {
  28841. name: "Macro",
  28842. height: math.unit(95, "meters")
  28843. },
  28844. {
  28845. name: "Megamacro",
  28846. height: math.unit(150, "km")
  28847. },
  28848. ]
  28849. ))
  28850. characterMakers.push(() => makeCharacter(
  28851. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  28852. {
  28853. front: {
  28854. height: math.unit(4.2, "meters"),
  28855. name: "Front",
  28856. image: {
  28857. source: "./media/characters/sydney/front.svg",
  28858. extra: 1323 / 1277,
  28859. bottom: 111 / 1434
  28860. }
  28861. },
  28862. },
  28863. [
  28864. {
  28865. name: "Normal",
  28866. height: math.unit(4.2, "meters"),
  28867. default: true
  28868. },
  28869. ]
  28870. ))
  28871. characterMakers.push(() => makeCharacter(
  28872. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  28873. {
  28874. back: {
  28875. height: math.unit(201, "feet"),
  28876. name: "Back",
  28877. image: {
  28878. source: "./media/characters/jessica/back.svg",
  28879. extra: 273 / 259,
  28880. bottom: 7 / 280
  28881. }
  28882. },
  28883. },
  28884. [
  28885. {
  28886. name: "Normal",
  28887. height: math.unit(201, "feet"),
  28888. default: true
  28889. },
  28890. {
  28891. name: "Megamacro",
  28892. height: math.unit(8, "miles")
  28893. },
  28894. ]
  28895. ))
  28896. characterMakers.push(() => makeCharacter(
  28897. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  28898. {
  28899. side: {
  28900. height: math.unit(320, "cm"),
  28901. name: "Side",
  28902. image: {
  28903. source: "./media/characters/victoria/side.svg",
  28904. extra: 778 / 346,
  28905. bottom: 56 / 834
  28906. }
  28907. },
  28908. maw: {
  28909. height: math.unit(5.9, "feet"),
  28910. name: "Maw",
  28911. image: {
  28912. source: "./media/characters/victoria/maw.svg"
  28913. }
  28914. },
  28915. },
  28916. [
  28917. {
  28918. name: "Normal",
  28919. height: math.unit(320, "cm"),
  28920. default: true
  28921. },
  28922. ]
  28923. ))
  28924. characterMakers.push(() => makeCharacter(
  28925. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  28926. {
  28927. front: {
  28928. height: math.unit(5 + 6 / 12, "feet"),
  28929. name: "Front",
  28930. image: {
  28931. source: "./media/characters/cat/front.svg",
  28932. extra: 1449/1295,
  28933. bottom: 34/1483
  28934. }
  28935. },
  28936. back: {
  28937. height: math.unit(5 + 6 / 12, "feet"),
  28938. name: "Back",
  28939. image: {
  28940. source: "./media/characters/cat/back.svg",
  28941. extra: 1466/1301,
  28942. bottom: 19/1485
  28943. }
  28944. },
  28945. taur: {
  28946. height: math.unit(7, "feet"),
  28947. name: "Taur",
  28948. image: {
  28949. source: "./media/characters/cat/taur.svg",
  28950. extra: 1389/1233,
  28951. bottom: 83/1472
  28952. }
  28953. },
  28954. lucarioFront: {
  28955. height: math.unit(4, "feet"),
  28956. name: "Lucario (Front)",
  28957. image: {
  28958. source: "./media/characters/cat/lucario-front.svg",
  28959. extra: 1149/1019,
  28960. bottom: 84/1233
  28961. }
  28962. },
  28963. lucarioBack: {
  28964. height: math.unit(4, "feet"),
  28965. name: "Lucario (Back)",
  28966. image: {
  28967. source: "./media/characters/cat/lucario-back.svg",
  28968. extra: 1190/1059,
  28969. bottom: 33/1223
  28970. }
  28971. },
  28972. megaLucario: {
  28973. height: math.unit(4, "feet"),
  28974. name: "Mega Lucario",
  28975. image: {
  28976. source: "./media/characters/cat/mega-lucario.svg",
  28977. extra: 1515 / 1319,
  28978. bottom: 63 / 1578
  28979. }
  28980. },
  28981. nickit: {
  28982. height: math.unit(2, "feet"),
  28983. name: "Nickit",
  28984. image: {
  28985. source: "./media/characters/cat/nickit.svg",
  28986. extra: 1980 / 1585,
  28987. bottom: 102 / 2082
  28988. }
  28989. },
  28990. lopunnyFront: {
  28991. height: math.unit(5, "feet"),
  28992. name: "Lopunny (Front)",
  28993. image: {
  28994. source: "./media/characters/cat/lopunny-front.svg",
  28995. extra: 1782 / 1469,
  28996. bottom: 38 / 1820
  28997. }
  28998. },
  28999. lopunnyBack: {
  29000. height: math.unit(5, "feet"),
  29001. name: "Lopunny (Back)",
  29002. image: {
  29003. source: "./media/characters/cat/lopunny-back.svg",
  29004. extra: 1660 / 1490,
  29005. bottom: 25 / 1685
  29006. }
  29007. },
  29008. },
  29009. [
  29010. {
  29011. name: "Really small",
  29012. height: math.unit(1, "nm")
  29013. },
  29014. {
  29015. name: "Micro",
  29016. height: math.unit(5, "inches")
  29017. },
  29018. {
  29019. name: "Normal",
  29020. height: math.unit(5 + 6 / 12, "feet"),
  29021. default: true
  29022. },
  29023. {
  29024. name: "Macro",
  29025. height: math.unit(50, "feet")
  29026. },
  29027. {
  29028. name: "Macro+",
  29029. height: math.unit(150, "feet")
  29030. },
  29031. {
  29032. name: "Megamacro",
  29033. height: math.unit(100, "miles")
  29034. },
  29035. ]
  29036. ))
  29037. characterMakers.push(() => makeCharacter(
  29038. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  29039. {
  29040. front: {
  29041. height: math.unit(63.4, "meters"),
  29042. weight: math.unit(3.28349e+6, "kilograms"),
  29043. name: "Front",
  29044. image: {
  29045. source: "./media/characters/kirina-violet/front.svg",
  29046. extra: 2812 / 2725,
  29047. bottom: 0 / 2812
  29048. }
  29049. },
  29050. back: {
  29051. height: math.unit(63.4, "meters"),
  29052. weight: math.unit(3.28349e+6, "kilograms"),
  29053. name: "Back",
  29054. image: {
  29055. source: "./media/characters/kirina-violet/back.svg",
  29056. extra: 2812 / 2725,
  29057. bottom: 0 / 2812
  29058. }
  29059. },
  29060. mouth: {
  29061. height: math.unit(4.35, "meters"),
  29062. name: "Mouth",
  29063. image: {
  29064. source: "./media/characters/kirina-violet/mouth.svg"
  29065. }
  29066. },
  29067. paw: {
  29068. height: math.unit(5.6, "meters"),
  29069. name: "Paw",
  29070. image: {
  29071. source: "./media/characters/kirina-violet/paw.svg"
  29072. }
  29073. },
  29074. tail: {
  29075. height: math.unit(18, "meters"),
  29076. name: "Tail",
  29077. image: {
  29078. source: "./media/characters/kirina-violet/tail.svg"
  29079. }
  29080. },
  29081. },
  29082. [
  29083. {
  29084. name: "Macro",
  29085. height: math.unit(63.4, "meters"),
  29086. default: true
  29087. },
  29088. ]
  29089. ))
  29090. characterMakers.push(() => makeCharacter(
  29091. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  29092. {
  29093. front: {
  29094. height: math.unit(75, "feet"),
  29095. name: "Front",
  29096. image: {
  29097. source: "./media/characters/cat-gigachu/front.svg",
  29098. extra: 1239/1027,
  29099. bottom: 32/1271
  29100. }
  29101. },
  29102. back: {
  29103. height: math.unit(75, "feet"),
  29104. name: "Back",
  29105. image: {
  29106. source: "./media/characters/cat-gigachu/back.svg",
  29107. extra: 1229/1030,
  29108. bottom: 9/1238
  29109. }
  29110. },
  29111. },
  29112. [
  29113. {
  29114. name: "Dynamax",
  29115. height: math.unit(75, "feet"),
  29116. default: true
  29117. },
  29118. ]
  29119. ))
  29120. characterMakers.push(() => makeCharacter(
  29121. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  29122. {
  29123. front: {
  29124. height: math.unit(6, "feet"),
  29125. weight: math.unit(150, "lb"),
  29126. name: "Front",
  29127. image: {
  29128. source: "./media/characters/sfaiyan/front.svg",
  29129. extra: 999 / 978,
  29130. bottom: 5 / 1004
  29131. }
  29132. },
  29133. },
  29134. [
  29135. {
  29136. name: "Normal",
  29137. height: math.unit(1.82, "meters")
  29138. },
  29139. {
  29140. name: "Giant",
  29141. height: math.unit(2.27, "km"),
  29142. default: true
  29143. },
  29144. ]
  29145. ))
  29146. characterMakers.push(() => makeCharacter(
  29147. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  29148. {
  29149. front: {
  29150. height: math.unit(179, "cm"),
  29151. weight: math.unit(100, "kg"),
  29152. name: "Front",
  29153. image: {
  29154. source: "./media/characters/raunehkeli/front.svg",
  29155. extra: 1934 / 1926,
  29156. bottom: 0 / 1934
  29157. }
  29158. },
  29159. },
  29160. [
  29161. {
  29162. name: "Normal",
  29163. height: math.unit(179, "cm")
  29164. },
  29165. {
  29166. name: "Maximum",
  29167. height: math.unit(575, "meters"),
  29168. default: true
  29169. },
  29170. ]
  29171. ))
  29172. characterMakers.push(() => makeCharacter(
  29173. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  29174. {
  29175. front: {
  29176. height: math.unit(6, "feet"),
  29177. weight: math.unit(150, "lb"),
  29178. name: "Front",
  29179. image: {
  29180. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  29181. extra: 2625 / 2518,
  29182. bottom: 60 / 2685
  29183. }
  29184. },
  29185. },
  29186. [
  29187. {
  29188. name: "Normal",
  29189. height: math.unit(6 + 2 / 12, "feet")
  29190. },
  29191. {
  29192. name: "Macro",
  29193. height: math.unit(1180, "feet"),
  29194. default: true
  29195. },
  29196. ]
  29197. ))
  29198. characterMakers.push(() => makeCharacter(
  29199. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  29200. {
  29201. front: {
  29202. height: math.unit(5 + 6 / 12, "feet"),
  29203. weight: math.unit(108, "lb"),
  29204. name: "Front",
  29205. image: {
  29206. source: "./media/characters/lilith-zott/front.svg",
  29207. extra: 2510 / 2238,
  29208. bottom: 100 / 2610
  29209. }
  29210. },
  29211. frontDressed: {
  29212. height: math.unit(5 + 6 / 12, "feet"),
  29213. weight: math.unit(108, "lb"),
  29214. name: "Front (Dressed)",
  29215. image: {
  29216. source: "./media/characters/lilith-zott/front-dressed.svg",
  29217. extra: 2510 / 2238,
  29218. bottom: 100 / 2610
  29219. }
  29220. },
  29221. },
  29222. [
  29223. {
  29224. name: "Normal",
  29225. height: math.unit(5 + 6 / 12, "feet")
  29226. },
  29227. {
  29228. name: "Macro",
  29229. height: math.unit(1030, "feet"),
  29230. default: true
  29231. },
  29232. ]
  29233. ))
  29234. characterMakers.push(() => makeCharacter(
  29235. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  29236. {
  29237. front: {
  29238. height: math.unit(6, "feet"),
  29239. weight: math.unit(150, "lb"),
  29240. name: "Front",
  29241. image: {
  29242. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  29243. extra: 2567 / 2435,
  29244. bottom: 39 / 2606
  29245. }
  29246. },
  29247. frontSuper: {
  29248. height: math.unit(6, "feet"),
  29249. name: "Front (Super)",
  29250. image: {
  29251. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  29252. extra: 2567 / 2435,
  29253. bottom: 39 / 2606
  29254. }
  29255. },
  29256. },
  29257. [
  29258. {
  29259. name: "Normal",
  29260. height: math.unit(5 + 10 / 12, "feet")
  29261. },
  29262. {
  29263. name: "Macro",
  29264. height: math.unit(1100, "feet"),
  29265. default: true
  29266. },
  29267. ]
  29268. ))
  29269. characterMakers.push(() => makeCharacter(
  29270. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  29271. {
  29272. front: {
  29273. height: math.unit(100, "miles"),
  29274. name: "Front",
  29275. image: {
  29276. source: "./media/characters/sona/front.svg",
  29277. extra: 2433 / 2201,
  29278. bottom: 53 / 2486
  29279. }
  29280. },
  29281. foot: {
  29282. height: math.unit(16.1, "miles"),
  29283. name: "Foot",
  29284. image: {
  29285. source: "./media/characters/sona/foot.svg"
  29286. }
  29287. },
  29288. },
  29289. [
  29290. {
  29291. name: "Macro",
  29292. height: math.unit(100, "miles"),
  29293. default: true
  29294. },
  29295. ]
  29296. ))
  29297. characterMakers.push(() => makeCharacter(
  29298. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  29299. {
  29300. front: {
  29301. height: math.unit(6, "feet"),
  29302. weight: math.unit(150, "lb"),
  29303. name: "Front",
  29304. image: {
  29305. source: "./media/characters/bailey/front.svg",
  29306. extra: 1778 / 1724,
  29307. bottom: 30 / 1808
  29308. }
  29309. },
  29310. },
  29311. [
  29312. {
  29313. name: "Micro",
  29314. height: math.unit(4, "inches")
  29315. },
  29316. {
  29317. name: "Normal",
  29318. height: math.unit(5 + 5 / 12, "feet"),
  29319. default: true
  29320. },
  29321. {
  29322. name: "Macro",
  29323. height: math.unit(250, "feet")
  29324. },
  29325. {
  29326. name: "Megamacro",
  29327. height: math.unit(100, "miles")
  29328. },
  29329. ]
  29330. ))
  29331. characterMakers.push(() => makeCharacter(
  29332. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  29333. {
  29334. front: {
  29335. height: math.unit(5 + 2 / 12, "feet"),
  29336. weight: math.unit(120, "lb"),
  29337. name: "Front",
  29338. image: {
  29339. source: "./media/characters/snaps/front.svg",
  29340. extra: 2370 / 2177,
  29341. bottom: 48 / 2418
  29342. }
  29343. },
  29344. back: {
  29345. height: math.unit(5 + 2 / 12, "feet"),
  29346. weight: math.unit(120, "lb"),
  29347. name: "Back",
  29348. image: {
  29349. source: "./media/characters/snaps/back.svg",
  29350. extra: 2408 / 2258,
  29351. bottom: 15 / 2423
  29352. }
  29353. },
  29354. },
  29355. [
  29356. {
  29357. name: "Micro",
  29358. height: math.unit(9, "inches")
  29359. },
  29360. {
  29361. name: "Normal",
  29362. height: math.unit(5 + 2 / 12, "feet"),
  29363. default: true
  29364. },
  29365. {
  29366. name: "Mini Macro",
  29367. height: math.unit(10, "feet")
  29368. },
  29369. ]
  29370. ))
  29371. characterMakers.push(() => makeCharacter(
  29372. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  29373. {
  29374. front: {
  29375. height: math.unit(1.8, "meters"),
  29376. weight: math.unit(85, "kg"),
  29377. name: "Front",
  29378. image: {
  29379. source: "./media/characters/azteck/front.svg",
  29380. extra: 2815 / 2625,
  29381. bottom: 89 / 2904
  29382. }
  29383. },
  29384. back: {
  29385. height: math.unit(1.8, "meters"),
  29386. weight: math.unit(85, "kg"),
  29387. name: "Back",
  29388. image: {
  29389. source: "./media/characters/azteck/back.svg",
  29390. extra: 2856 / 2648,
  29391. bottom: 85 / 2941
  29392. }
  29393. },
  29394. frontDressed: {
  29395. height: math.unit(1.8, "meters"),
  29396. weight: math.unit(85, "kg"),
  29397. name: "Front (Dressed)",
  29398. image: {
  29399. source: "./media/characters/azteck/front-dressed.svg",
  29400. extra: 2147 / 2003,
  29401. bottom: 68 / 2215
  29402. }
  29403. },
  29404. head: {
  29405. height: math.unit(0.47, "meters"),
  29406. weight: math.unit(85, "kg"),
  29407. name: "Head",
  29408. image: {
  29409. source: "./media/characters/azteck/head.svg"
  29410. }
  29411. },
  29412. },
  29413. [
  29414. {
  29415. name: "Bite sized",
  29416. height: math.unit(16, "cm")
  29417. },
  29418. {
  29419. name: "Normal",
  29420. height: math.unit(1.8, "meters"),
  29421. default: true
  29422. },
  29423. ]
  29424. ))
  29425. characterMakers.push(() => makeCharacter(
  29426. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  29427. {
  29428. front: {
  29429. height: math.unit(6, "feet"),
  29430. weight: math.unit(150, "lb"),
  29431. name: "Front",
  29432. image: {
  29433. source: "./media/characters/pidge/front.svg",
  29434. extra: 620 / 588,
  29435. bottom: 9 / 629
  29436. }
  29437. },
  29438. back: {
  29439. height: math.unit(6, "feet"),
  29440. weight: math.unit(150, "lb"),
  29441. name: "Back",
  29442. image: {
  29443. source: "./media/characters/pidge/back.svg",
  29444. extra: 620 / 588,
  29445. bottom: 9 / 629
  29446. }
  29447. },
  29448. },
  29449. [
  29450. {
  29451. name: "Macro",
  29452. height: math.unit(1, "mile"),
  29453. default: true
  29454. },
  29455. ]
  29456. ))
  29457. characterMakers.push(() => makeCharacter(
  29458. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  29459. {
  29460. front: {
  29461. height: math.unit(6, "feet"),
  29462. weight: math.unit(150, "lb"),
  29463. name: "Front",
  29464. image: {
  29465. source: "./media/characters/en/front.svg",
  29466. extra: 1697 / 1563,
  29467. bottom: 103 / 1800
  29468. }
  29469. },
  29470. back: {
  29471. height: math.unit(6, "feet"),
  29472. weight: math.unit(150, "lb"),
  29473. name: "Back",
  29474. image: {
  29475. source: "./media/characters/en/back.svg",
  29476. extra: 1700 / 1570,
  29477. bottom: 51 / 1751
  29478. }
  29479. },
  29480. frontDressed: {
  29481. height: math.unit(6, "feet"),
  29482. weight: math.unit(150, "lb"),
  29483. name: "Front (Dressed)",
  29484. image: {
  29485. source: "./media/characters/en/front-dressed.svg",
  29486. extra: 1697 / 1563,
  29487. bottom: 103 / 1800
  29488. }
  29489. },
  29490. backDressed: {
  29491. height: math.unit(6, "feet"),
  29492. weight: math.unit(150, "lb"),
  29493. name: "Back (Dressed)",
  29494. image: {
  29495. source: "./media/characters/en/back-dressed.svg",
  29496. extra: 1700 / 1570,
  29497. bottom: 51 / 1751
  29498. }
  29499. },
  29500. },
  29501. [
  29502. {
  29503. name: "Macro",
  29504. height: math.unit(210, "feet"),
  29505. default: true
  29506. },
  29507. ]
  29508. ))
  29509. characterMakers.push(() => makeCharacter(
  29510. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  29511. {
  29512. front: {
  29513. height: math.unit(6, "feet"),
  29514. weight: math.unit(150, "lb"),
  29515. name: "Front",
  29516. image: {
  29517. source: "./media/characters/haze-orris/front.svg",
  29518. extra: 3975 / 3525,
  29519. bottom: 137 / 4112
  29520. }
  29521. },
  29522. },
  29523. [
  29524. {
  29525. name: "Micro",
  29526. height: math.unit(150, "mm"),
  29527. default: true
  29528. },
  29529. ]
  29530. ))
  29531. characterMakers.push(() => makeCharacter(
  29532. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  29533. {
  29534. front: {
  29535. height: math.unit(6, "feet"),
  29536. weight: math.unit(150, "lb"),
  29537. name: "Front",
  29538. image: {
  29539. source: "./media/characters/casselene-yaro/front.svg",
  29540. extra: 4721 / 4541,
  29541. bottom: 82 / 4803
  29542. }
  29543. },
  29544. back: {
  29545. height: math.unit(6, "feet"),
  29546. weight: math.unit(150, "lb"),
  29547. name: "Back",
  29548. image: {
  29549. source: "./media/characters/casselene-yaro/back.svg",
  29550. extra: 4569 / 4377,
  29551. bottom: 69 / 4638
  29552. }
  29553. },
  29554. frontDressed: {
  29555. height: math.unit(6, "feet"),
  29556. weight: math.unit(150, "lb"),
  29557. name: "Front-dressed",
  29558. image: {
  29559. source: "./media/characters/casselene-yaro/front-dressed.svg",
  29560. extra: 4721 / 4541,
  29561. bottom: 82 / 4803
  29562. }
  29563. },
  29564. },
  29565. [
  29566. {
  29567. name: "Macro",
  29568. height: math.unit(190, "feet"),
  29569. default: true
  29570. },
  29571. ]
  29572. ))
  29573. characterMakers.push(() => makeCharacter(
  29574. { name: "Myra Rue Delore", species: ["monster"], tags: ["anthro"] },
  29575. {
  29576. front: {
  29577. height: math.unit(6, "feet"),
  29578. weight: math.unit(150, "lb"),
  29579. name: "Front",
  29580. image: {
  29581. source: "./media/characters/myra-rue-delore/front.svg",
  29582. extra: 1340 / 1308,
  29583. bottom: 67 / 1407
  29584. }
  29585. },
  29586. back: {
  29587. height: math.unit(6, "feet"),
  29588. weight: math.unit(150, "lb"),
  29589. name: "Back",
  29590. image: {
  29591. source: "./media/characters/myra-rue-delore/back.svg",
  29592. extra: 1341 / 1310,
  29593. bottom: 40 / 1381
  29594. }
  29595. },
  29596. frontDressed: {
  29597. height: math.unit(6, "feet"),
  29598. weight: math.unit(150, "lb"),
  29599. name: "Front (Dressed)",
  29600. image: {
  29601. source: "./media/characters/myra-rue-delore/front-dressed.svg",
  29602. extra: 1340 / 1308,
  29603. bottom: 67 / 1407
  29604. }
  29605. },
  29606. },
  29607. [
  29608. {
  29609. name: "Macro",
  29610. height: math.unit(150, "feet"),
  29611. default: true
  29612. },
  29613. ]
  29614. ))
  29615. characterMakers.push(() => makeCharacter(
  29616. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  29617. {
  29618. front: {
  29619. height: math.unit(10, "feet"),
  29620. weight: math.unit(15015, "lb"),
  29621. name: "Front",
  29622. image: {
  29623. source: "./media/characters/fem!plat/front.svg",
  29624. extra: 2799 / 2604,
  29625. bottom: 149 / 2948
  29626. }
  29627. },
  29628. },
  29629. [
  29630. {
  29631. name: "Normal",
  29632. height: math.unit(10, "feet"),
  29633. default: true
  29634. },
  29635. {
  29636. name: "Macro",
  29637. height: math.unit(100, "feet")
  29638. },
  29639. {
  29640. name: "Megamacro",
  29641. height: math.unit(1000, "feet")
  29642. },
  29643. ]
  29644. ))
  29645. characterMakers.push(() => makeCharacter(
  29646. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  29647. {
  29648. front: {
  29649. height: math.unit(15 + 5 / 12, "feet"),
  29650. weight: math.unit(4600, "lb"),
  29651. name: "Front",
  29652. image: {
  29653. source: "./media/characters/neapolitan-ananassa/front.svg",
  29654. extra: 2903 / 2736,
  29655. bottom: 0 / 2903
  29656. }
  29657. },
  29658. side: {
  29659. height: math.unit(15 + 5 / 12, "feet"),
  29660. weight: math.unit(4600, "lb"),
  29661. name: "Side",
  29662. image: {
  29663. source: "./media/characters/neapolitan-ananassa/side.svg",
  29664. extra: 2925 / 2719,
  29665. bottom: 0 / 2925
  29666. }
  29667. },
  29668. back: {
  29669. height: math.unit(15 + 5 / 12, "feet"),
  29670. weight: math.unit(4600, "lb"),
  29671. name: "Back",
  29672. image: {
  29673. source: "./media/characters/neapolitan-ananassa/back.svg",
  29674. extra: 2903 / 2736,
  29675. bottom: 0 / 2903
  29676. }
  29677. },
  29678. },
  29679. [
  29680. {
  29681. name: "Normal",
  29682. height: math.unit(15 + 5 / 12, "feet"),
  29683. default: true
  29684. },
  29685. {
  29686. name: "Post-Millenium",
  29687. height: math.unit(35 + 5 / 12, "feet")
  29688. },
  29689. {
  29690. name: "Post-Era",
  29691. height: math.unit(450 + 5 / 12, "feet")
  29692. },
  29693. ]
  29694. ))
  29695. characterMakers.push(() => makeCharacter(
  29696. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  29697. {
  29698. front: {
  29699. height: math.unit(300, "meters"),
  29700. weight: math.unit(125000, "tonnes"),
  29701. name: "Front",
  29702. image: {
  29703. source: "./media/characters/pazuzu/front.svg",
  29704. extra: 877 / 794,
  29705. bottom: 47 / 924
  29706. }
  29707. },
  29708. },
  29709. [
  29710. {
  29711. name: "Macro",
  29712. height: math.unit(300, "meters"),
  29713. default: true
  29714. },
  29715. ]
  29716. ))
  29717. characterMakers.push(() => makeCharacter(
  29718. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  29719. {
  29720. side: {
  29721. height: math.unit(10 + 7 / 12, "feet"),
  29722. weight: math.unit(2.5, "tons"),
  29723. name: "Side",
  29724. image: {
  29725. source: "./media/characters/aasha/side.svg",
  29726. extra: 1345 / 1245,
  29727. bottom: 111 / 1456
  29728. }
  29729. },
  29730. back: {
  29731. height: math.unit(10 + 7 / 12, "feet"),
  29732. weight: math.unit(2.5, "tons"),
  29733. name: "Back",
  29734. image: {
  29735. source: "./media/characters/aasha/back.svg",
  29736. extra: 1133 / 1057,
  29737. bottom: 257 / 1390
  29738. }
  29739. },
  29740. },
  29741. [
  29742. {
  29743. name: "Normal",
  29744. height: math.unit(10 + 7 / 12, "feet"),
  29745. default: true
  29746. },
  29747. ]
  29748. ))
  29749. characterMakers.push(() => makeCharacter(
  29750. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  29751. {
  29752. front: {
  29753. height: math.unit(6 + 3 / 12, "feet"),
  29754. name: "Front",
  29755. image: {
  29756. source: "./media/characters/nevan/front.svg",
  29757. extra: 704 / 704,
  29758. bottom: 28 / 732
  29759. }
  29760. },
  29761. back: {
  29762. height: math.unit(6 + 3 / 12, "feet"),
  29763. name: "Back",
  29764. image: {
  29765. source: "./media/characters/nevan/back.svg",
  29766. extra: 714 / 714,
  29767. bottom: 21 / 735
  29768. }
  29769. },
  29770. frontFlaccid: {
  29771. height: math.unit(6 + 3 / 12, "feet"),
  29772. name: "Front (Flaccid)",
  29773. image: {
  29774. source: "./media/characters/nevan/front-flaccid.svg",
  29775. extra: 704 / 704,
  29776. bottom: 28 / 732
  29777. }
  29778. },
  29779. frontErect: {
  29780. height: math.unit(6 + 3 / 12, "feet"),
  29781. name: "Front (Erect)",
  29782. image: {
  29783. source: "./media/characters/nevan/front-erect.svg",
  29784. extra: 704 / 704,
  29785. bottom: 28 / 732
  29786. }
  29787. },
  29788. backFlaccid: {
  29789. height: math.unit(6 + 3 / 12, "feet"),
  29790. name: "Back (Flaccid)",
  29791. image: {
  29792. source: "./media/characters/nevan/back-flaccid.svg",
  29793. extra: 714 / 714,
  29794. bottom: 21 / 735
  29795. }
  29796. },
  29797. },
  29798. [
  29799. {
  29800. name: "Normal",
  29801. height: math.unit(6 + 3 / 12, "feet"),
  29802. default: true
  29803. },
  29804. ]
  29805. ))
  29806. characterMakers.push(() => makeCharacter(
  29807. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  29808. {
  29809. front: {
  29810. height: math.unit(4, "feet"),
  29811. name: "Front",
  29812. image: {
  29813. source: "./media/characters/arhan/front.svg",
  29814. extra: 3368 / 3133,
  29815. bottom: 0 / 3368
  29816. }
  29817. },
  29818. side: {
  29819. height: math.unit(4, "feet"),
  29820. name: "Side",
  29821. image: {
  29822. source: "./media/characters/arhan/side.svg",
  29823. extra: 3347 / 3105,
  29824. bottom: 0 / 3347
  29825. }
  29826. },
  29827. tongue: {
  29828. height: math.unit(1.42, "feet"),
  29829. name: "Tongue",
  29830. image: {
  29831. source: "./media/characters/arhan/tongue.svg"
  29832. }
  29833. },
  29834. head: {
  29835. height: math.unit(0.85, "feet"),
  29836. name: "Head",
  29837. image: {
  29838. source: "./media/characters/arhan/head.svg"
  29839. }
  29840. },
  29841. },
  29842. [
  29843. {
  29844. name: "Normal",
  29845. height: math.unit(4, "feet"),
  29846. default: true
  29847. },
  29848. ]
  29849. ))
  29850. characterMakers.push(() => makeCharacter(
  29851. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  29852. {
  29853. front: {
  29854. height: math.unit(5 + 7.5 / 12, "feet"),
  29855. weight: math.unit(120, "lb"),
  29856. name: "Front",
  29857. image: {
  29858. source: "./media/characters/digi-duncan/front.svg",
  29859. extra: 330 / 326,
  29860. bottom: 16 / 346
  29861. }
  29862. },
  29863. side: {
  29864. height: math.unit(5 + 7.5 / 12, "feet"),
  29865. weight: math.unit(120, "lb"),
  29866. name: "Side",
  29867. image: {
  29868. source: "./media/characters/digi-duncan/side.svg",
  29869. extra: 341 / 337,
  29870. bottom: 1 / 342
  29871. }
  29872. },
  29873. back: {
  29874. height: math.unit(5 + 7.5 / 12, "feet"),
  29875. weight: math.unit(120, "lb"),
  29876. name: "Back",
  29877. image: {
  29878. source: "./media/characters/digi-duncan/back.svg",
  29879. extra: 330 / 326,
  29880. bottom: 12 / 342
  29881. }
  29882. },
  29883. },
  29884. [
  29885. {
  29886. name: "Speck",
  29887. height: math.unit(0.25, "mm")
  29888. },
  29889. {
  29890. name: "Micro",
  29891. height: math.unit(5, "mm")
  29892. },
  29893. {
  29894. name: "Tiny",
  29895. height: math.unit(0.5, "inches"),
  29896. default: true
  29897. },
  29898. {
  29899. name: "Human",
  29900. height: math.unit(5 + 7.5 / 12, "feet")
  29901. },
  29902. {
  29903. name: "Minigiant",
  29904. height: math.unit(8 + 5.25, "feet")
  29905. },
  29906. {
  29907. name: "Giant",
  29908. height: math.unit(2000, "feet")
  29909. },
  29910. {
  29911. name: "Mega",
  29912. height: math.unit(371.1, "miles")
  29913. },
  29914. ]
  29915. ))
  29916. characterMakers.push(() => makeCharacter(
  29917. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  29918. {
  29919. front: {
  29920. height: math.unit(2, "meters"),
  29921. weight: math.unit(350, "kg"),
  29922. name: "Front",
  29923. image: {
  29924. source: "./media/characters/jagaz-soulbreaker/front.svg",
  29925. extra: 898 / 838,
  29926. bottom: 9 / 907
  29927. }
  29928. },
  29929. },
  29930. [
  29931. {
  29932. name: "Micro",
  29933. height: math.unit(8, "meters")
  29934. },
  29935. {
  29936. name: "Normal",
  29937. height: math.unit(50, "meters"),
  29938. default: true
  29939. },
  29940. {
  29941. name: "Macro",
  29942. height: math.unit(500, "meters")
  29943. },
  29944. ]
  29945. ))
  29946. characterMakers.push(() => makeCharacter(
  29947. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  29948. {
  29949. front: {
  29950. height: math.unit(6 + 6 / 12, "feet"),
  29951. name: "Front",
  29952. image: {
  29953. source: "./media/characters/khardesh/front.svg",
  29954. extra: 1788/1596,
  29955. bottom: 66/1854
  29956. }
  29957. },
  29958. back: {
  29959. height: math.unit(6 + 6 / 12, "feet"),
  29960. name: "Back",
  29961. image: {
  29962. source: "./media/characters/khardesh/back.svg",
  29963. extra: 1781/1584,
  29964. bottom: 68/1849
  29965. }
  29966. },
  29967. },
  29968. [
  29969. {
  29970. name: "Normal",
  29971. height: math.unit(6 + 6 / 12, "feet"),
  29972. default: true
  29973. },
  29974. {
  29975. name: "Normal+",
  29976. height: math.unit(4, "meters")
  29977. },
  29978. {
  29979. name: "Macro",
  29980. height: math.unit(50, "meters")
  29981. },
  29982. {
  29983. name: "Macro+",
  29984. height: math.unit(100, "meters")
  29985. },
  29986. {
  29987. name: "Megamacro",
  29988. height: math.unit(20, "km")
  29989. },
  29990. ]
  29991. ))
  29992. characterMakers.push(() => makeCharacter(
  29993. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  29994. {
  29995. front: {
  29996. height: math.unit(6, "feet"),
  29997. weight: math.unit(150, "lb"),
  29998. name: "Front",
  29999. image: {
  30000. source: "./media/characters/kosho/front.svg",
  30001. extra: 1847 / 1847,
  30002. bottom: 86 / 1933
  30003. }
  30004. },
  30005. },
  30006. [
  30007. {
  30008. name: "Second-stage micro",
  30009. height: math.unit(0.5, "inches")
  30010. },
  30011. {
  30012. name: "First-stage micro",
  30013. height: math.unit(6, "inches")
  30014. },
  30015. {
  30016. name: "Normal",
  30017. height: math.unit(6, "feet"),
  30018. default: true
  30019. },
  30020. {
  30021. name: "First-stage macro",
  30022. height: math.unit(72, "feet")
  30023. },
  30024. {
  30025. name: "Second-stage macro",
  30026. height: math.unit(864, "feet")
  30027. },
  30028. ]
  30029. ))
  30030. characterMakers.push(() => makeCharacter(
  30031. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  30032. {
  30033. normal: {
  30034. height: math.unit(4 + 6 / 12, "feet"),
  30035. name: "Normal",
  30036. image: {
  30037. source: "./media/characters/hydra/normal.svg",
  30038. extra: 2833 / 2634,
  30039. bottom: 68 / 2901
  30040. }
  30041. },
  30042. smol: {
  30043. height: math.unit(0.705, "inches"),
  30044. name: "Smol",
  30045. image: {
  30046. source: "./media/characters/hydra/smol.svg",
  30047. extra: 2715 / 2540,
  30048. bottom: 0 / 2715
  30049. }
  30050. },
  30051. },
  30052. [
  30053. {
  30054. name: "Normal",
  30055. height: math.unit(4 + 6 / 12, "feet"),
  30056. default: true
  30057. }
  30058. ]
  30059. ))
  30060. characterMakers.push(() => makeCharacter(
  30061. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  30062. {
  30063. front: {
  30064. height: math.unit(0.6, "cm"),
  30065. name: "Front",
  30066. image: {
  30067. source: "./media/characters/daz/front.svg",
  30068. extra: 1682 / 1164,
  30069. bottom: 42 / 1724
  30070. }
  30071. },
  30072. },
  30073. [
  30074. {
  30075. name: "Normal",
  30076. height: math.unit(0.6, "cm"),
  30077. default: true
  30078. },
  30079. ]
  30080. ))
  30081. characterMakers.push(() => makeCharacter(
  30082. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  30083. {
  30084. front: {
  30085. height: math.unit(6, "feet"),
  30086. weight: math.unit(235, "lb"),
  30087. name: "Front",
  30088. image: {
  30089. source: "./media/characters/theo-pangolin/front.svg",
  30090. extra: 1996 / 1969,
  30091. bottom: 115 / 2111
  30092. }
  30093. },
  30094. back: {
  30095. height: math.unit(6, "feet"),
  30096. weight: math.unit(235, "lb"),
  30097. name: "Back",
  30098. image: {
  30099. source: "./media/characters/theo-pangolin/back.svg",
  30100. extra: 1979 / 1979,
  30101. bottom: 40 / 2019
  30102. }
  30103. },
  30104. feral: {
  30105. height: math.unit(2, "feet"),
  30106. weight: math.unit(30, "lb"),
  30107. name: "Feral",
  30108. image: {
  30109. source: "./media/characters/theo-pangolin/feral.svg",
  30110. extra: 803 / 791,
  30111. bottom: 181 / 984
  30112. }
  30113. },
  30114. footFive: {
  30115. height: math.unit(1.43, "feet"),
  30116. name: "Foot (Five Toes)",
  30117. image: {
  30118. source: "./media/characters/theo-pangolin/foot-five.svg"
  30119. }
  30120. },
  30121. footFour: {
  30122. height: math.unit(1.43, "feet"),
  30123. name: "Foot (Four Toes)",
  30124. image: {
  30125. source: "./media/characters/theo-pangolin/foot-four.svg"
  30126. }
  30127. },
  30128. handFour: {
  30129. height: math.unit(0.81, "feet"),
  30130. name: "Hand (Four Fingers)",
  30131. image: {
  30132. source: "./media/characters/theo-pangolin/hand-four.svg"
  30133. }
  30134. },
  30135. handThree: {
  30136. height: math.unit(0.81, "feet"),
  30137. name: "Hand (Three Fingers)",
  30138. image: {
  30139. source: "./media/characters/theo-pangolin/hand-three.svg"
  30140. }
  30141. },
  30142. headFront: {
  30143. height: math.unit(1.37, "feet"),
  30144. name: "Head (Front)",
  30145. image: {
  30146. source: "./media/characters/theo-pangolin/head-front.svg"
  30147. }
  30148. },
  30149. headSide: {
  30150. height: math.unit(1.43, "feet"),
  30151. name: "Head (Side)",
  30152. image: {
  30153. source: "./media/characters/theo-pangolin/head-side.svg"
  30154. }
  30155. },
  30156. tongue: {
  30157. height: math.unit(2.29, "feet"),
  30158. name: "Tongue",
  30159. image: {
  30160. source: "./media/characters/theo-pangolin/tongue.svg"
  30161. }
  30162. },
  30163. },
  30164. [
  30165. {
  30166. name: "Normal",
  30167. height: math.unit(6, "feet")
  30168. },
  30169. {
  30170. name: "Macro",
  30171. height: math.unit(400, "feet"),
  30172. default: true
  30173. },
  30174. ]
  30175. ))
  30176. characterMakers.push(() => makeCharacter(
  30177. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  30178. {
  30179. front: {
  30180. height: math.unit(6, "inches"),
  30181. weight: math.unit(0.036, "kg"),
  30182. name: "Front",
  30183. image: {
  30184. source: "./media/characters/renée/front.svg",
  30185. extra: 900 / 886,
  30186. bottom: 8 / 908
  30187. }
  30188. },
  30189. },
  30190. [
  30191. {
  30192. name: "Nano",
  30193. height: math.unit(1, "nm")
  30194. },
  30195. {
  30196. name: "Micro",
  30197. height: math.unit(1, "mm")
  30198. },
  30199. {
  30200. name: "Normal",
  30201. height: math.unit(6, "inches")
  30202. },
  30203. {
  30204. name: "Macro",
  30205. height: math.unit(2000, "feet"),
  30206. default: true
  30207. },
  30208. {
  30209. name: "Megamacro",
  30210. height: math.unit(2, "km")
  30211. },
  30212. {
  30213. name: "Gigamacro",
  30214. height: math.unit(2000, "km")
  30215. },
  30216. {
  30217. name: "Teramacro",
  30218. height: math.unit(250000, "km")
  30219. },
  30220. ]
  30221. ))
  30222. characterMakers.push(() => makeCharacter(
  30223. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  30224. {
  30225. front: {
  30226. height: math.unit(4, "meters"),
  30227. weight: math.unit(150, "kg"),
  30228. name: "Front",
  30229. image: {
  30230. source: "./media/characters/caledvwlch/front.svg",
  30231. extra: 1760 / 1551,
  30232. bottom: 28 / 1788
  30233. }
  30234. },
  30235. side: {
  30236. height: math.unit(4, "meters"),
  30237. weight: math.unit(150, "kg"),
  30238. name: "Side",
  30239. image: {
  30240. source: "./media/characters/caledvwlch/side.svg",
  30241. extra: 1605 / 1536,
  30242. bottom: 31 / 1636
  30243. }
  30244. },
  30245. back: {
  30246. height: math.unit(4, "meters"),
  30247. weight: math.unit(150, "kg"),
  30248. name: "Back",
  30249. image: {
  30250. source: "./media/characters/caledvwlch/back.svg",
  30251. extra: 1635 / 1565,
  30252. bottom: 27 / 1662
  30253. }
  30254. },
  30255. },
  30256. [
  30257. {
  30258. name: "\"Incognito\"",
  30259. height: math.unit(4, "meters")
  30260. },
  30261. {
  30262. name: "Small rampage",
  30263. height: math.unit(600, "meters")
  30264. },
  30265. {
  30266. name: "Mega",
  30267. height: math.unit(30, "km")
  30268. },
  30269. {
  30270. name: "Home-size",
  30271. height: math.unit(50, "km"),
  30272. default: true
  30273. },
  30274. {
  30275. name: "Giga",
  30276. height: math.unit(300, "km")
  30277. },
  30278. {
  30279. name: "Lounging",
  30280. height: math.unit(11000, "km")
  30281. },
  30282. {
  30283. name: "Planet snacking",
  30284. height: math.unit(2000000, "km")
  30285. },
  30286. ]
  30287. ))
  30288. characterMakers.push(() => makeCharacter(
  30289. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  30290. {
  30291. front: {
  30292. height: math.unit(6, "feet"),
  30293. weight: math.unit(215, "lb"),
  30294. name: "Front",
  30295. image: {
  30296. source: "./media/characters/sapphire-svell/front.svg",
  30297. extra: 495 / 455,
  30298. bottom: 20 / 515
  30299. }
  30300. },
  30301. back: {
  30302. height: math.unit(6, "feet"),
  30303. weight: math.unit(216, "lb"),
  30304. name: "Back",
  30305. image: {
  30306. source: "./media/characters/sapphire-svell/back.svg",
  30307. extra: 497 / 477,
  30308. bottom: 7 / 504
  30309. }
  30310. },
  30311. maw: {
  30312. height: math.unit(1.57, "feet"),
  30313. name: "Maw",
  30314. image: {
  30315. source: "./media/characters/sapphire-svell/maw.svg"
  30316. }
  30317. },
  30318. foot: {
  30319. height: math.unit(1.07, "feet"),
  30320. name: "Foot",
  30321. image: {
  30322. source: "./media/characters/sapphire-svell/foot.svg"
  30323. }
  30324. },
  30325. toering: {
  30326. height: math.unit(1.7, "inch"),
  30327. name: "Toering",
  30328. image: {
  30329. source: "./media/characters/sapphire-svell/toering.svg"
  30330. }
  30331. },
  30332. },
  30333. [
  30334. {
  30335. name: "Normal",
  30336. height: math.unit(300, "feet"),
  30337. default: true
  30338. },
  30339. {
  30340. name: "Augmented",
  30341. height: math.unit(1250, "feet")
  30342. },
  30343. {
  30344. name: "Unleashed",
  30345. height: math.unit(3000, "feet")
  30346. },
  30347. ]
  30348. ))
  30349. characterMakers.push(() => makeCharacter(
  30350. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  30351. {
  30352. side: {
  30353. height: math.unit(2 + 3 / 12, "feet"),
  30354. weight: math.unit(110, "lb"),
  30355. name: "Side",
  30356. image: {
  30357. source: "./media/characters/glitch-flux/side.svg",
  30358. extra: 997 / 805,
  30359. bottom: 20 / 1017
  30360. }
  30361. },
  30362. },
  30363. [
  30364. {
  30365. name: "Normal",
  30366. height: math.unit(2 + 3 / 12, "feet"),
  30367. default: true
  30368. },
  30369. ]
  30370. ))
  30371. characterMakers.push(() => makeCharacter(
  30372. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  30373. {
  30374. front: {
  30375. height: math.unit(4, "meters"),
  30376. name: "Front",
  30377. image: {
  30378. source: "./media/characters/mid/front.svg",
  30379. extra: 507 / 476,
  30380. bottom: 17 / 524
  30381. }
  30382. },
  30383. back: {
  30384. height: math.unit(4, "meters"),
  30385. name: "Back",
  30386. image: {
  30387. source: "./media/characters/mid/back.svg",
  30388. extra: 519 / 487,
  30389. bottom: 7 / 526
  30390. }
  30391. },
  30392. stuck: {
  30393. height: math.unit(2.2, "meters"),
  30394. name: "Stuck",
  30395. image: {
  30396. source: "./media/characters/mid/stuck.svg",
  30397. extra: 1951 / 1869,
  30398. bottom: 88 / 2039
  30399. }
  30400. }
  30401. },
  30402. [
  30403. {
  30404. name: "Normal",
  30405. height: math.unit(4, "meters"),
  30406. default: true
  30407. },
  30408. {
  30409. name: "Big",
  30410. height: math.unit(10, "meters")
  30411. },
  30412. {
  30413. name: "Macro",
  30414. height: math.unit(800, "meters")
  30415. },
  30416. {
  30417. name: "Megamacro",
  30418. height: math.unit(100, "km")
  30419. },
  30420. {
  30421. name: "Overgrown",
  30422. height: math.unit(1, "parsec")
  30423. },
  30424. ]
  30425. ))
  30426. characterMakers.push(() => makeCharacter(
  30427. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  30428. {
  30429. front: {
  30430. height: math.unit(2.5, "meters"),
  30431. weight: math.unit(225, "kg"),
  30432. name: "Front",
  30433. image: {
  30434. source: "./media/characters/iris/front.svg",
  30435. extra: 3348 / 3251,
  30436. bottom: 205 / 3553
  30437. }
  30438. },
  30439. maw: {
  30440. height: math.unit(0.56, "meter"),
  30441. name: "Maw",
  30442. image: {
  30443. source: "./media/characters/iris/maw.svg"
  30444. }
  30445. },
  30446. },
  30447. [
  30448. {
  30449. name: "Mewter cat",
  30450. height: math.unit(1.2, "meters")
  30451. },
  30452. {
  30453. name: "Minimacro",
  30454. height: math.unit(2.5, "meters"),
  30455. default: true
  30456. },
  30457. {
  30458. name: "Macro",
  30459. height: math.unit(180, "meters")
  30460. },
  30461. {
  30462. name: "Megamacro",
  30463. height: math.unit(2746, "meters")
  30464. },
  30465. ]
  30466. ))
  30467. characterMakers.push(() => makeCharacter(
  30468. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  30469. {
  30470. front: {
  30471. height: math.unit(6, "feet"),
  30472. weight: math.unit(135, "lb"),
  30473. name: "Front",
  30474. image: {
  30475. source: "./media/characters/axel/front.svg",
  30476. extra: 908 / 908,
  30477. bottom: 58 / 966
  30478. }
  30479. },
  30480. side: {
  30481. height: math.unit(6, "feet"),
  30482. weight: math.unit(135, "lb"),
  30483. name: "Side",
  30484. image: {
  30485. source: "./media/characters/axel/side.svg",
  30486. extra: 958 / 958,
  30487. bottom: 11 / 969
  30488. }
  30489. },
  30490. back: {
  30491. height: math.unit(6, "feet"),
  30492. weight: math.unit(135, "lb"),
  30493. name: "Back",
  30494. image: {
  30495. source: "./media/characters/axel/back.svg",
  30496. extra: 887 / 887,
  30497. bottom: 34 / 921
  30498. }
  30499. },
  30500. head: {
  30501. height: math.unit(1.07, "feet"),
  30502. name: "Head",
  30503. image: {
  30504. source: "./media/characters/axel/head.svg"
  30505. }
  30506. },
  30507. beak: {
  30508. height: math.unit(1.4, "feet"),
  30509. name: "Beak",
  30510. image: {
  30511. source: "./media/characters/axel/beak.svg"
  30512. }
  30513. },
  30514. beakSide: {
  30515. height: math.unit(1.4, "feet"),
  30516. name: "Beak Side",
  30517. image: {
  30518. source: "./media/characters/axel/beak-side.svg"
  30519. }
  30520. },
  30521. sheath: {
  30522. height: math.unit(0.5, "feet"),
  30523. name: "Sheath",
  30524. image: {
  30525. source: "./media/characters/axel/sheath.svg"
  30526. }
  30527. },
  30528. dick: {
  30529. height: math.unit(0.98, "feet"),
  30530. name: "Dick",
  30531. image: {
  30532. source: "./media/characters/axel/dick.svg"
  30533. }
  30534. },
  30535. },
  30536. [
  30537. {
  30538. name: "Macro",
  30539. height: math.unit(68, "meters"),
  30540. default: true
  30541. },
  30542. ]
  30543. ))
  30544. characterMakers.push(() => makeCharacter(
  30545. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  30546. {
  30547. front: {
  30548. height: math.unit(3.5, "meters"),
  30549. weight: math.unit(1200, "kg"),
  30550. name: "Front",
  30551. image: {
  30552. source: "./media/characters/joanna/front.svg",
  30553. extra: 1596 / 1488,
  30554. bottom: 29 / 1625
  30555. }
  30556. },
  30557. back: {
  30558. height: math.unit(3.5, "meters"),
  30559. weight: math.unit(1200, "kg"),
  30560. name: "Back",
  30561. image: {
  30562. source: "./media/characters/joanna/back.svg",
  30563. extra: 1594 / 1495,
  30564. bottom: 26 / 1620
  30565. }
  30566. },
  30567. frontShorts: {
  30568. height: math.unit(3.5, "meters"),
  30569. weight: math.unit(1200, "kg"),
  30570. name: "Front (Shorts)",
  30571. image: {
  30572. source: "./media/characters/joanna/front-shorts.svg",
  30573. extra: 1596 / 1488,
  30574. bottom: 29 / 1625
  30575. }
  30576. },
  30577. frontBiker: {
  30578. height: math.unit(3.5, "meters"),
  30579. weight: math.unit(1200, "kg"),
  30580. name: "Front (Biker)",
  30581. image: {
  30582. source: "./media/characters/joanna/front-biker.svg",
  30583. extra: 1596 / 1488,
  30584. bottom: 29 / 1625
  30585. }
  30586. },
  30587. backBiker: {
  30588. height: math.unit(3.5, "meters"),
  30589. weight: math.unit(1200, "kg"),
  30590. name: "Back (Biker)",
  30591. image: {
  30592. source: "./media/characters/joanna/back-biker.svg",
  30593. extra: 1594 / 1495,
  30594. bottom: 88 / 1682
  30595. }
  30596. },
  30597. bikeLeft: {
  30598. height: math.unit(2.4, "meters"),
  30599. weight: math.unit(1600, "kg"),
  30600. name: "Bike (Left)",
  30601. image: {
  30602. source: "./media/characters/joanna/bike-left.svg",
  30603. extra: 720 / 720,
  30604. bottom: 8 / 728
  30605. }
  30606. },
  30607. bikeRight: {
  30608. height: math.unit(2.4, "meters"),
  30609. weight: math.unit(1600, "kg"),
  30610. name: "Bike (Right)",
  30611. image: {
  30612. source: "./media/characters/joanna/bike-right.svg",
  30613. extra: 720 / 720,
  30614. bottom: 8 / 728
  30615. }
  30616. },
  30617. },
  30618. [
  30619. {
  30620. name: "Incognito",
  30621. height: math.unit(3.5, "meters")
  30622. },
  30623. {
  30624. name: "Casual Big",
  30625. height: math.unit(200, "meters")
  30626. },
  30627. {
  30628. name: "Macro",
  30629. height: math.unit(600, "meters")
  30630. },
  30631. {
  30632. name: "Original",
  30633. height: math.unit(20, "km"),
  30634. default: true
  30635. },
  30636. {
  30637. name: "Giga",
  30638. height: math.unit(400, "km")
  30639. },
  30640. {
  30641. name: "Lounging",
  30642. height: math.unit(1500, "km")
  30643. },
  30644. {
  30645. name: "Planetary",
  30646. height: math.unit(200000, "km")
  30647. },
  30648. ]
  30649. ))
  30650. characterMakers.push(() => makeCharacter(
  30651. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  30652. {
  30653. front: {
  30654. height: math.unit(6, "feet"),
  30655. weight: math.unit(150, "lb"),
  30656. name: "Front",
  30657. image: {
  30658. source: "./media/characters/hugo-sigil/front.svg",
  30659. extra: 522 / 500,
  30660. bottom: 2 / 524
  30661. }
  30662. },
  30663. back: {
  30664. height: math.unit(6, "feet"),
  30665. weight: math.unit(150, "lb"),
  30666. name: "Back",
  30667. image: {
  30668. source: "./media/characters/hugo-sigil/back.svg",
  30669. extra: 519 / 495,
  30670. bottom: 5 / 524
  30671. }
  30672. },
  30673. maw: {
  30674. height: math.unit(1.4, "feet"),
  30675. weight: math.unit(150, "lb"),
  30676. name: "Maw",
  30677. image: {
  30678. source: "./media/characters/hugo-sigil/maw.svg"
  30679. }
  30680. },
  30681. feet: {
  30682. height: math.unit(1.56, "feet"),
  30683. weight: math.unit(150, "lb"),
  30684. name: "Feet",
  30685. image: {
  30686. source: "./media/characters/hugo-sigil/feet.svg",
  30687. extra: 177 / 177,
  30688. bottom: 12 / 189
  30689. }
  30690. },
  30691. },
  30692. [
  30693. {
  30694. name: "Normal",
  30695. height: math.unit(6, "feet")
  30696. },
  30697. {
  30698. name: "Macro",
  30699. height: math.unit(200, "feet"),
  30700. default: true
  30701. },
  30702. ]
  30703. ))
  30704. characterMakers.push(() => makeCharacter(
  30705. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  30706. {
  30707. front: {
  30708. height: math.unit(6, "feet"),
  30709. weight: math.unit(150, "lb"),
  30710. name: "Front",
  30711. image: {
  30712. source: "./media/characters/peri/front.svg",
  30713. extra: 2354 / 2233,
  30714. bottom: 49 / 2403
  30715. }
  30716. },
  30717. },
  30718. [
  30719. {
  30720. name: "Really Small",
  30721. height: math.unit(1, "nm")
  30722. },
  30723. {
  30724. name: "Micro",
  30725. height: math.unit(4, "inches")
  30726. },
  30727. {
  30728. name: "Normal",
  30729. height: math.unit(7, "inches"),
  30730. default: true
  30731. },
  30732. {
  30733. name: "Macro",
  30734. height: math.unit(400, "feet")
  30735. },
  30736. {
  30737. name: "Megamacro",
  30738. height: math.unit(100, "miles")
  30739. },
  30740. ]
  30741. ))
  30742. characterMakers.push(() => makeCharacter(
  30743. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  30744. {
  30745. frontSlim: {
  30746. height: math.unit(7, "feet"),
  30747. name: "Front (Slim)",
  30748. image: {
  30749. source: "./media/characters/issilora/front-slim.svg",
  30750. extra: 529 / 449,
  30751. bottom: 53 / 582
  30752. }
  30753. },
  30754. sideSlim: {
  30755. height: math.unit(7, "feet"),
  30756. name: "Side (Slim)",
  30757. image: {
  30758. source: "./media/characters/issilora/side-slim.svg",
  30759. extra: 570 / 480,
  30760. bottom: 30 / 600
  30761. }
  30762. },
  30763. backSlim: {
  30764. height: math.unit(7, "feet"),
  30765. name: "Back (Slim)",
  30766. image: {
  30767. source: "./media/characters/issilora/back-slim.svg",
  30768. extra: 537 / 455,
  30769. bottom: 46 / 583
  30770. }
  30771. },
  30772. frontBuff: {
  30773. height: math.unit(7, "feet"),
  30774. name: "Front (Buff)",
  30775. image: {
  30776. source: "./media/characters/issilora/front-buff.svg",
  30777. extra: 2310 / 2035,
  30778. bottom: 335 / 2645
  30779. }
  30780. },
  30781. head: {
  30782. height: math.unit(1.94, "feet"),
  30783. name: "Head",
  30784. image: {
  30785. source: "./media/characters/issilora/head.svg"
  30786. }
  30787. },
  30788. },
  30789. [
  30790. {
  30791. name: "Minimum",
  30792. height: math.unit(7, "feet")
  30793. },
  30794. {
  30795. name: "Comfortable",
  30796. height: math.unit(17, "feet")
  30797. },
  30798. {
  30799. name: "Fun Size",
  30800. height: math.unit(47, "feet")
  30801. },
  30802. {
  30803. name: "Natural Macro",
  30804. height: math.unit(137, "feet"),
  30805. default: true
  30806. },
  30807. {
  30808. name: "Maximum Kaiju",
  30809. height: math.unit(397, "feet")
  30810. },
  30811. ]
  30812. ))
  30813. characterMakers.push(() => makeCharacter(
  30814. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  30815. {
  30816. front: {
  30817. height: math.unit(50 + 9/12, "feet"),
  30818. weight: math.unit(32.8, "tons"),
  30819. name: "Front",
  30820. image: {
  30821. source: "./media/characters/irb'iiritaahn/front.svg",
  30822. extra: 1878/1826,
  30823. bottom: 326/2204
  30824. }
  30825. },
  30826. back: {
  30827. height: math.unit(50 + 9/12, "feet"),
  30828. weight: math.unit(32.8, "tons"),
  30829. name: "Back",
  30830. image: {
  30831. source: "./media/characters/irb'iiritaahn/back.svg",
  30832. extra: 2052/2018,
  30833. bottom: 152/2204
  30834. }
  30835. },
  30836. head: {
  30837. height: math.unit(12.86, "feet"),
  30838. name: "Head",
  30839. image: {
  30840. source: "./media/characters/irb'iiritaahn/head.svg"
  30841. }
  30842. },
  30843. maw: {
  30844. height: math.unit(9.66, "feet"),
  30845. name: "Maw",
  30846. image: {
  30847. source: "./media/characters/irb'iiritaahn/maw.svg"
  30848. }
  30849. },
  30850. frontDick: {
  30851. height: math.unit(8.78461, "feet"),
  30852. name: "Front Dick",
  30853. image: {
  30854. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  30855. }
  30856. },
  30857. rearDick: {
  30858. height: math.unit(8.78461, "feet"),
  30859. name: "Rear Dick",
  30860. image: {
  30861. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  30862. }
  30863. },
  30864. rearDickUnfolded: {
  30865. height: math.unit(8.78, "feet"),
  30866. name: "Rear Dick (Unfolded)",
  30867. image: {
  30868. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  30869. }
  30870. },
  30871. wings: {
  30872. height: math.unit(43, "feet"),
  30873. name: "Wings",
  30874. image: {
  30875. source: "./media/characters/irb'iiritaahn/wings.svg"
  30876. }
  30877. },
  30878. },
  30879. [
  30880. {
  30881. name: "Macro",
  30882. height: math.unit(50 + 9/12, "feet"),
  30883. default: true
  30884. },
  30885. ]
  30886. ))
  30887. characterMakers.push(() => makeCharacter(
  30888. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  30889. {
  30890. front: {
  30891. height: math.unit(205, "cm"),
  30892. weight: math.unit(102, "kg"),
  30893. name: "Front",
  30894. image: {
  30895. source: "./media/characters/irbisgreif/front.svg",
  30896. extra: 785/706,
  30897. bottom: 13/798
  30898. }
  30899. },
  30900. back: {
  30901. height: math.unit(205, "cm"),
  30902. weight: math.unit(102, "kg"),
  30903. name: "Back",
  30904. image: {
  30905. source: "./media/characters/irbisgreif/back.svg",
  30906. extra: 713/701,
  30907. bottom: 26/739
  30908. }
  30909. },
  30910. frontDressed: {
  30911. height: math.unit(216, "cm"),
  30912. weight: math.unit(102, "kg"),
  30913. name: "Front-dressed",
  30914. image: {
  30915. source: "./media/characters/irbisgreif/front-dressed.svg",
  30916. extra: 902/776,
  30917. bottom: 14/916
  30918. }
  30919. },
  30920. sideDressed: {
  30921. height: math.unit(195, "cm"),
  30922. weight: math.unit(102, "kg"),
  30923. name: "Side-dressed",
  30924. image: {
  30925. source: "./media/characters/irbisgreif/side-dressed.svg",
  30926. extra: 788/688,
  30927. bottom: 21/809
  30928. }
  30929. },
  30930. backDressed: {
  30931. height: math.unit(216, "cm"),
  30932. weight: math.unit(102, "kg"),
  30933. name: "Back-dressed",
  30934. image: {
  30935. source: "./media/characters/irbisgreif/back-dressed.svg",
  30936. extra: 901/783,
  30937. bottom: 10/911
  30938. }
  30939. },
  30940. dick: {
  30941. height: math.unit(0.49, "feet"),
  30942. name: "Dick",
  30943. image: {
  30944. source: "./media/characters/irbisgreif/dick.svg"
  30945. }
  30946. },
  30947. wingTop: {
  30948. height: math.unit(1.93 , "feet"),
  30949. name: "Wing-top",
  30950. image: {
  30951. source: "./media/characters/irbisgreif/wing-top.svg"
  30952. }
  30953. },
  30954. wingBottom: {
  30955. height: math.unit(1.93 , "feet"),
  30956. name: "Wing-bottom",
  30957. image: {
  30958. source: "./media/characters/irbisgreif/wing-bottom.svg"
  30959. }
  30960. },
  30961. },
  30962. [
  30963. {
  30964. name: "Normal",
  30965. height: math.unit(216, "cm"),
  30966. default: true
  30967. },
  30968. ]
  30969. ))
  30970. characterMakers.push(() => makeCharacter(
  30971. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  30972. {
  30973. front: {
  30974. height: math.unit(6, "feet"),
  30975. weight: math.unit(150, "lb"),
  30976. name: "Front",
  30977. image: {
  30978. source: "./media/characters/pride/front.svg",
  30979. extra: 1299/1230,
  30980. bottom: 18/1317
  30981. }
  30982. },
  30983. },
  30984. [
  30985. {
  30986. name: "Normal",
  30987. height: math.unit(7, "feet")
  30988. },
  30989. {
  30990. name: "Mini-macro",
  30991. height: math.unit(11, "feet")
  30992. },
  30993. {
  30994. name: "Macro",
  30995. height: math.unit(15, "meters"),
  30996. default: true
  30997. },
  30998. {
  30999. name: "Macro+",
  31000. height: math.unit(40, "meters")
  31001. },
  31002. ]
  31003. ))
  31004. characterMakers.push(() => makeCharacter(
  31005. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  31006. {
  31007. front: {
  31008. height: math.unit(4 + 2 / 12, "feet"),
  31009. weight: math.unit(95, "lb"),
  31010. name: "Front",
  31011. image: {
  31012. source: "./media/characters/vaelophis-nyx/front.svg",
  31013. extra: 2532/2330,
  31014. bottom: 0/2532
  31015. }
  31016. },
  31017. back: {
  31018. height: math.unit(4 + 2 / 12, "feet"),
  31019. weight: math.unit(95, "lb"),
  31020. name: "Back",
  31021. image: {
  31022. source: "./media/characters/vaelophis-nyx/back.svg",
  31023. extra: 2484/2361,
  31024. bottom: 0/2484
  31025. }
  31026. },
  31027. feralSide: {
  31028. height: math.unit(2 + 1/12, "feet"),
  31029. weight: math.unit(20, "lb"),
  31030. name: "Feral (Side)",
  31031. image: {
  31032. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  31033. extra: 1721/1581,
  31034. bottom: 70/1791
  31035. }
  31036. },
  31037. feralLazing: {
  31038. height: math.unit(1.08, "feet"),
  31039. weight: math.unit(20, "lb"),
  31040. name: "Feral (Lazing)",
  31041. image: {
  31042. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  31043. extra: 822/822,
  31044. bottom: 248/1070
  31045. }
  31046. },
  31047. ear: {
  31048. height: math.unit(0.416, "feet"),
  31049. name: "Ear",
  31050. image: {
  31051. source: "./media/characters/vaelophis-nyx/ear.svg"
  31052. }
  31053. },
  31054. eye: {
  31055. height: math.unit(0.0748, "feet"),
  31056. name: "Eye",
  31057. image: {
  31058. source: "./media/characters/vaelophis-nyx/eye.svg"
  31059. }
  31060. },
  31061. mouth: {
  31062. height: math.unit(0.378, "feet"),
  31063. name: "Mouth",
  31064. image: {
  31065. source: "./media/characters/vaelophis-nyx/mouth.svg"
  31066. }
  31067. },
  31068. spade: {
  31069. height: math.unit(0.55, "feet"),
  31070. name: "Spade",
  31071. image: {
  31072. source: "./media/characters/vaelophis-nyx/spade.svg"
  31073. }
  31074. },
  31075. },
  31076. [
  31077. {
  31078. name: "Normal",
  31079. height: math.unit(4 + 2/12, "feet"),
  31080. default: true
  31081. },
  31082. ]
  31083. ))
  31084. characterMakers.push(() => makeCharacter(
  31085. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  31086. {
  31087. front: {
  31088. height: math.unit(7, "feet"),
  31089. weight: math.unit(231, "lb"),
  31090. name: "Front",
  31091. image: {
  31092. source: "./media/characters/flux/front.svg",
  31093. extra: 919/871,
  31094. bottom: 0/919
  31095. }
  31096. },
  31097. back: {
  31098. height: math.unit(7, "feet"),
  31099. weight: math.unit(231, "lb"),
  31100. name: "Back",
  31101. image: {
  31102. source: "./media/characters/flux/back.svg",
  31103. extra: 1040/992,
  31104. bottom: 0/1040
  31105. }
  31106. },
  31107. frontDressed: {
  31108. height: math.unit(7, "feet"),
  31109. weight: math.unit(231, "lb"),
  31110. name: "Front (Dressed)",
  31111. image: {
  31112. source: "./media/characters/flux/front-dressed.svg",
  31113. extra: 919/871,
  31114. bottom: 0/919
  31115. }
  31116. },
  31117. feralSide: {
  31118. height: math.unit(5, "feet"),
  31119. weight: math.unit(150, "lb"),
  31120. name: "Feral (Side)",
  31121. image: {
  31122. source: "./media/characters/flux/feral-side.svg",
  31123. extra: 598/528,
  31124. bottom: 28/626
  31125. }
  31126. },
  31127. head: {
  31128. height: math.unit(1.585, "feet"),
  31129. name: "Head",
  31130. image: {
  31131. source: "./media/characters/flux/head.svg"
  31132. }
  31133. },
  31134. headSide: {
  31135. height: math.unit(1.74, "feet"),
  31136. name: "Head (Side)",
  31137. image: {
  31138. source: "./media/characters/flux/head-side.svg"
  31139. }
  31140. },
  31141. headSideFire: {
  31142. height: math.unit(1.76, "feet"),
  31143. name: "Head (Side, Fire)",
  31144. image: {
  31145. source: "./media/characters/flux/head-side-fire.svg"
  31146. }
  31147. },
  31148. },
  31149. [
  31150. {
  31151. name: "Normal",
  31152. height: math.unit(7, "feet"),
  31153. default: true
  31154. },
  31155. ]
  31156. ))
  31157. characterMakers.push(() => makeCharacter(
  31158. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  31159. {
  31160. front: {
  31161. height: math.unit(9, "feet"),
  31162. weight: math.unit(1012, "lb"),
  31163. name: "Front",
  31164. image: {
  31165. source: "./media/characters/ulfra-lupae/front.svg",
  31166. extra: 1083/1011,
  31167. bottom: 67/1150
  31168. }
  31169. },
  31170. },
  31171. [
  31172. {
  31173. name: "Micro",
  31174. height: math.unit(6, "inches")
  31175. },
  31176. {
  31177. name: "Socializing",
  31178. height: math.unit(6 + 5/12, "feet")
  31179. },
  31180. {
  31181. name: "Normal",
  31182. height: math.unit(9, "feet"),
  31183. default: true
  31184. },
  31185. {
  31186. name: "Macro",
  31187. height: math.unit(150, "feet")
  31188. },
  31189. ]
  31190. ))
  31191. characterMakers.push(() => makeCharacter(
  31192. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  31193. {
  31194. front: {
  31195. height: math.unit(5 + 2/12, "feet"),
  31196. weight: math.unit(120, "lb"),
  31197. name: "Front",
  31198. image: {
  31199. source: "./media/characters/timber/front.svg",
  31200. extra: 2814/2705,
  31201. bottom: 181/2995
  31202. }
  31203. },
  31204. },
  31205. [
  31206. {
  31207. name: "Normal",
  31208. height: math.unit(5 + 2/12, "feet"),
  31209. default: true
  31210. },
  31211. ]
  31212. ))
  31213. characterMakers.push(() => makeCharacter(
  31214. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  31215. {
  31216. front: {
  31217. height: math.unit(5 + 7/12, "feet"),
  31218. weight: math.unit(220, "lb"),
  31219. name: "Front",
  31220. image: {
  31221. source: "./media/characters/nicki/front.svg",
  31222. extra: 453/419,
  31223. bottom: 7/460
  31224. }
  31225. },
  31226. frontAlt: {
  31227. height: math.unit(5 + 7/12, "feet"),
  31228. weight: math.unit(220, "lb"),
  31229. name: "Front-alt",
  31230. image: {
  31231. source: "./media/characters/nicki/front-alt.svg",
  31232. extra: 435/411,
  31233. bottom: 12/447
  31234. }
  31235. },
  31236. back: {
  31237. height: math.unit(5 + 7/12, "feet"),
  31238. weight: math.unit(220, "lb"),
  31239. name: "Back",
  31240. image: {
  31241. source: "./media/characters/nicki/back.svg",
  31242. extra: 440/413,
  31243. bottom: 19/459
  31244. }
  31245. },
  31246. taur: {
  31247. height: math.unit(7 + 6/12, "feet"),
  31248. weight: math.unit(700, "lb"),
  31249. name: "Taur",
  31250. image: {
  31251. source: "./media/characters/nicki/taur.svg",
  31252. extra: 975/773,
  31253. bottom: 0/975
  31254. }
  31255. },
  31256. frontNsfw: {
  31257. height: math.unit(5 + 7/12, "feet"),
  31258. weight: math.unit(220, "lb"),
  31259. name: "Front (NSFW)",
  31260. image: {
  31261. source: "./media/characters/nicki/front-nsfw.svg",
  31262. extra: 453/419,
  31263. bottom: 7/460
  31264. }
  31265. },
  31266. frontNsfwAlt: {
  31267. height: math.unit(5 + 7/12, "feet"),
  31268. weight: math.unit(220, "lb"),
  31269. name: "Front (Alt, NSFW)",
  31270. image: {
  31271. source: "./media/characters/nicki/front-alt-nsfw.svg",
  31272. extra: 435/411,
  31273. bottom: 12/447
  31274. }
  31275. },
  31276. backNsfw: {
  31277. height: math.unit(5 + 7/12, "feet"),
  31278. weight: math.unit(220, "lb"),
  31279. name: "Back (NSFW)",
  31280. image: {
  31281. source: "./media/characters/nicki/back-nsfw.svg",
  31282. extra: 440/413,
  31283. bottom: 19/459
  31284. }
  31285. },
  31286. head: {
  31287. height: math.unit(2.1, "feet"),
  31288. name: "Head",
  31289. image: {
  31290. source: "./media/characters/nicki/head.svg"
  31291. }
  31292. },
  31293. paw: {
  31294. height: math.unit(1.88, "feet"),
  31295. name: "Paw",
  31296. image: {
  31297. source: "./media/characters/nicki/paw.svg"
  31298. }
  31299. },
  31300. },
  31301. [
  31302. {
  31303. name: "Normal",
  31304. height: math.unit(5 + 7/12, "feet"),
  31305. default: true
  31306. },
  31307. ]
  31308. ))
  31309. characterMakers.push(() => makeCharacter(
  31310. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  31311. {
  31312. front: {
  31313. height: math.unit(7 + 10/12, "feet"),
  31314. weight: math.unit(3.5, "tons"),
  31315. name: "Front",
  31316. image: {
  31317. source: "./media/characters/lee/front.svg",
  31318. extra: 1773/1615,
  31319. bottom: 86/1859
  31320. }
  31321. },
  31322. hand: {
  31323. height: math.unit(1.78, "feet"),
  31324. name: "Hand",
  31325. image: {
  31326. source: "./media/characters/lee/hand.svg"
  31327. }
  31328. },
  31329. maw: {
  31330. height: math.unit(1.18, "feet"),
  31331. name: "Maw",
  31332. image: {
  31333. source: "./media/characters/lee/maw.svg"
  31334. }
  31335. },
  31336. },
  31337. [
  31338. {
  31339. name: "Normal",
  31340. height: math.unit(7 + 10/12, "feet"),
  31341. default: true
  31342. },
  31343. ]
  31344. ))
  31345. characterMakers.push(() => makeCharacter(
  31346. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  31347. {
  31348. front: {
  31349. height: math.unit(9, "feet"),
  31350. name: "Front",
  31351. image: {
  31352. source: "./media/characters/guti/front.svg",
  31353. extra: 4551/4355,
  31354. bottom: 123/4674
  31355. }
  31356. },
  31357. tongue: {
  31358. height: math.unit(1, "feet"),
  31359. name: "Tongue",
  31360. image: {
  31361. source: "./media/characters/guti/tongue.svg"
  31362. }
  31363. },
  31364. paw: {
  31365. height: math.unit(1.18, "feet"),
  31366. name: "Paw",
  31367. image: {
  31368. source: "./media/characters/guti/paw.svg"
  31369. }
  31370. },
  31371. },
  31372. [
  31373. {
  31374. name: "Normal",
  31375. height: math.unit(9, "feet"),
  31376. default: true
  31377. },
  31378. ]
  31379. ))
  31380. characterMakers.push(() => makeCharacter(
  31381. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  31382. {
  31383. side: {
  31384. height: math.unit(5, "meters"),
  31385. name: "Side",
  31386. image: {
  31387. source: "./media/characters/vesper/side.svg",
  31388. extra: 1605/1518,
  31389. bottom: 0/1605
  31390. }
  31391. },
  31392. },
  31393. [
  31394. {
  31395. name: "Small",
  31396. height: math.unit(5, "meters")
  31397. },
  31398. {
  31399. name: "Sage",
  31400. height: math.unit(100, "meters"),
  31401. default: true
  31402. },
  31403. {
  31404. name: "Fun Size",
  31405. height: math.unit(600, "meters")
  31406. },
  31407. {
  31408. name: "Goddess",
  31409. height: math.unit(20000, "km")
  31410. },
  31411. {
  31412. name: "Maximum",
  31413. height: math.unit(5, "galaxies")
  31414. },
  31415. ]
  31416. ))
  31417. characterMakers.push(() => makeCharacter(
  31418. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  31419. {
  31420. front: {
  31421. height: math.unit(6 + 3/12, "feet"),
  31422. weight: math.unit(190, "lb"),
  31423. name: "Front",
  31424. image: {
  31425. source: "./media/characters/gawain/front.svg",
  31426. extra: 2222/2139,
  31427. bottom: 90/2312
  31428. }
  31429. },
  31430. back: {
  31431. height: math.unit(6 + 3/12, "feet"),
  31432. weight: math.unit(190, "lb"),
  31433. name: "Back",
  31434. image: {
  31435. source: "./media/characters/gawain/back.svg",
  31436. extra: 2199/2111,
  31437. bottom: 73/2272
  31438. }
  31439. },
  31440. },
  31441. [
  31442. {
  31443. name: "Normal",
  31444. height: math.unit(6 + 3/12, "feet"),
  31445. default: true
  31446. },
  31447. ]
  31448. ))
  31449. characterMakers.push(() => makeCharacter(
  31450. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  31451. {
  31452. side: {
  31453. height: math.unit(3.5, "meters"),
  31454. weight: math.unit(16000, "lb"),
  31455. name: "Side",
  31456. image: {
  31457. source: "./media/characters/dascalti/side.svg",
  31458. extra: 392/273,
  31459. bottom: 47/439
  31460. }
  31461. },
  31462. breath: {
  31463. height: math.unit(7.4, "feet"),
  31464. name: "Breath",
  31465. image: {
  31466. source: "./media/characters/dascalti/breath.svg"
  31467. }
  31468. },
  31469. fed: {
  31470. height: math.unit(3.6, "meters"),
  31471. weight: math.unit(16000, "lb"),
  31472. name: "Fed",
  31473. image: {
  31474. source: "./media/characters/dascalti/fed.svg",
  31475. extra: 1419/820,
  31476. bottom: 95/1514
  31477. }
  31478. },
  31479. },
  31480. [
  31481. {
  31482. name: "Normal",
  31483. height: math.unit(3.5, "meters"),
  31484. default: true
  31485. },
  31486. ]
  31487. ))
  31488. characterMakers.push(() => makeCharacter(
  31489. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  31490. {
  31491. front: {
  31492. height: math.unit(3 + 5/12, "feet"),
  31493. name: "Front",
  31494. image: {
  31495. source: "./media/characters/mauve/front.svg",
  31496. extra: 1126/1033,
  31497. bottom: 65/1191
  31498. }
  31499. },
  31500. side: {
  31501. height: math.unit(3 + 5/12, "feet"),
  31502. name: "Side",
  31503. image: {
  31504. source: "./media/characters/mauve/side.svg",
  31505. extra: 1089/1001,
  31506. bottom: 29/1118
  31507. }
  31508. },
  31509. back: {
  31510. height: math.unit(3 + 5/12, "feet"),
  31511. name: "Back",
  31512. image: {
  31513. source: "./media/characters/mauve/back.svg",
  31514. extra: 1173/1053,
  31515. bottom: 109/1282
  31516. }
  31517. },
  31518. },
  31519. [
  31520. {
  31521. name: "Normal",
  31522. height: math.unit(3 + 5/12, "feet"),
  31523. default: true
  31524. },
  31525. ]
  31526. ))
  31527. characterMakers.push(() => makeCharacter(
  31528. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  31529. {
  31530. front: {
  31531. height: math.unit(6 + 3/12, "feet"),
  31532. weight: math.unit(430, "lb"),
  31533. name: "Front",
  31534. image: {
  31535. source: "./media/characters/carlos/front.svg",
  31536. extra: 1964/1913,
  31537. bottom: 70/2034
  31538. }
  31539. },
  31540. },
  31541. [
  31542. {
  31543. name: "Normal",
  31544. height: math.unit(6 + 3/12, "feet"),
  31545. default: true
  31546. },
  31547. ]
  31548. ))
  31549. characterMakers.push(() => makeCharacter(
  31550. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  31551. {
  31552. back: {
  31553. height: math.unit(5 + 10/12, "feet"),
  31554. weight: math.unit(200, "lb"),
  31555. name: "Back",
  31556. image: {
  31557. source: "./media/characters/jax/back.svg",
  31558. extra: 764/739,
  31559. bottom: 25/789
  31560. }
  31561. },
  31562. },
  31563. [
  31564. {
  31565. name: "Normal",
  31566. height: math.unit(5 + 10/12, "feet"),
  31567. default: true
  31568. },
  31569. ]
  31570. ))
  31571. characterMakers.push(() => makeCharacter(
  31572. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  31573. {
  31574. front: {
  31575. height: math.unit(8, "feet"),
  31576. weight: math.unit(250, "lb"),
  31577. name: "Front",
  31578. image: {
  31579. source: "./media/characters/eikthynir/front.svg",
  31580. extra: 1332/1166,
  31581. bottom: 82/1414
  31582. }
  31583. },
  31584. back: {
  31585. height: math.unit(8, "feet"),
  31586. weight: math.unit(250, "lb"),
  31587. name: "Back",
  31588. image: {
  31589. source: "./media/characters/eikthynir/back.svg",
  31590. extra: 1342/1190,
  31591. bottom: 19/1361
  31592. }
  31593. },
  31594. dick: {
  31595. height: math.unit(2.35, "feet"),
  31596. name: "Dick",
  31597. image: {
  31598. source: "./media/characters/eikthynir/dick.svg"
  31599. }
  31600. },
  31601. },
  31602. [
  31603. {
  31604. name: "Normal",
  31605. height: math.unit(8, "feet"),
  31606. default: true
  31607. },
  31608. ]
  31609. ))
  31610. characterMakers.push(() => makeCharacter(
  31611. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  31612. {
  31613. front: {
  31614. height: math.unit(99, "meters"),
  31615. weight: math.unit(13000, "tons"),
  31616. name: "Front",
  31617. image: {
  31618. source: "./media/characters/zlmos/front.svg",
  31619. extra: 2202/1992,
  31620. bottom: 315/2517
  31621. }
  31622. },
  31623. },
  31624. [
  31625. {
  31626. name: "Macro",
  31627. height: math.unit(99, "meters"),
  31628. default: true
  31629. },
  31630. ]
  31631. ))
  31632. characterMakers.push(() => makeCharacter(
  31633. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  31634. {
  31635. front: {
  31636. height: math.unit(6 + 5/12, "feet"),
  31637. name: "Front",
  31638. image: {
  31639. source: "./media/characters/purri/front.svg",
  31640. extra: 1698/1610,
  31641. bottom: 32/1730
  31642. }
  31643. },
  31644. frontAlt: {
  31645. height: math.unit(6 + 5/12, "feet"),
  31646. name: "Front (Alt)",
  31647. image: {
  31648. source: "./media/characters/purri/front-alt.svg",
  31649. extra: 450/420,
  31650. bottom: 26/476
  31651. }
  31652. },
  31653. boots: {
  31654. height: math.unit(5.5, "feet"),
  31655. name: "Boots",
  31656. image: {
  31657. source: "./media/characters/purri/boots.svg",
  31658. extra: 905/853,
  31659. bottom: 18/923
  31660. }
  31661. },
  31662. lying: {
  31663. height: math.unit(2, "feet"),
  31664. name: "Lying",
  31665. image: {
  31666. source: "./media/characters/purri/lying.svg",
  31667. extra: 940/843,
  31668. bottom: 146/1086
  31669. }
  31670. },
  31671. devious: {
  31672. height: math.unit(1.77, "feet"),
  31673. name: "Devious",
  31674. image: {
  31675. source: "./media/characters/purri/devious.svg",
  31676. extra: 1440/1155,
  31677. bottom: 147/1587
  31678. }
  31679. },
  31680. bean: {
  31681. height: math.unit(1.94, "feet"),
  31682. name: "Bean",
  31683. image: {
  31684. source: "./media/characters/purri/bean.svg"
  31685. }
  31686. },
  31687. },
  31688. [
  31689. {
  31690. name: "Micro",
  31691. height: math.unit(1, "mm")
  31692. },
  31693. {
  31694. name: "Normal",
  31695. height: math.unit(6 + 5/12, "feet"),
  31696. default: true
  31697. },
  31698. {
  31699. name: "Macro :3c",
  31700. height: math.unit(2, "miles")
  31701. },
  31702. ]
  31703. ))
  31704. characterMakers.push(() => makeCharacter(
  31705. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  31706. {
  31707. front: {
  31708. height: math.unit(6 + 2/12, "feet"),
  31709. weight: math.unit(250, "lb"),
  31710. name: "Front",
  31711. image: {
  31712. source: "./media/characters/moonlight/front.svg",
  31713. extra: 1044/908,
  31714. bottom: 56/1100
  31715. }
  31716. },
  31717. feral: {
  31718. height: math.unit(3 + 1/12, "feet"),
  31719. weight: math.unit(50, "kg"),
  31720. name: "Feral",
  31721. image: {
  31722. source: "./media/characters/moonlight/feral.svg",
  31723. extra: 3705/2791,
  31724. bottom: 145/3850
  31725. }
  31726. },
  31727. paw: {
  31728. height: math.unit(1, "feet"),
  31729. name: "Paw",
  31730. image: {
  31731. source: "./media/characters/moonlight/paw.svg"
  31732. }
  31733. },
  31734. paws: {
  31735. height: math.unit(0.98, "feet"),
  31736. name: "Paws",
  31737. image: {
  31738. source: "./media/characters/moonlight/paws.svg",
  31739. extra: 939/939,
  31740. bottom: 50/989
  31741. }
  31742. },
  31743. mouth: {
  31744. height: math.unit(0.48, "feet"),
  31745. name: "Mouth",
  31746. image: {
  31747. source: "./media/characters/moonlight/mouth.svg"
  31748. }
  31749. },
  31750. dick: {
  31751. height: math.unit(1.46, "feet"),
  31752. name: "Dick",
  31753. image: {
  31754. source: "./media/characters/moonlight/dick.svg"
  31755. }
  31756. },
  31757. },
  31758. [
  31759. {
  31760. name: "Normal",
  31761. height: math.unit(6 + 2/12, "feet"),
  31762. default: true
  31763. },
  31764. {
  31765. name: "Macro",
  31766. height: math.unit(300, "feet")
  31767. },
  31768. {
  31769. name: "Macro+",
  31770. height: math.unit(1, "mile")
  31771. },
  31772. {
  31773. name: "Mt. Moon",
  31774. height: math.unit(5, "miles")
  31775. },
  31776. {
  31777. name: "Megamacro",
  31778. height: math.unit(15, "miles")
  31779. },
  31780. ]
  31781. ))
  31782. characterMakers.push(() => makeCharacter(
  31783. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  31784. {
  31785. back: {
  31786. height: math.unit(6, "feet"),
  31787. weight: math.unit(150, "lb"),
  31788. name: "Back",
  31789. image: {
  31790. source: "./media/characters/sylen/back.svg",
  31791. extra: 1335/1273,
  31792. bottom: 107/1442
  31793. }
  31794. },
  31795. },
  31796. [
  31797. {
  31798. name: "Normal",
  31799. height: math.unit(5 + 5/12, "feet")
  31800. },
  31801. {
  31802. name: "Megamacro",
  31803. height: math.unit(3, "miles"),
  31804. default: true
  31805. },
  31806. ]
  31807. ))
  31808. characterMakers.push(() => makeCharacter(
  31809. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  31810. {
  31811. front: {
  31812. height: math.unit(6, "feet"),
  31813. weight: math.unit(190, "lb"),
  31814. name: "Front",
  31815. image: {
  31816. source: "./media/characters/huttser/front.svg",
  31817. extra: 1152/1058,
  31818. bottom: 23/1175
  31819. }
  31820. },
  31821. side: {
  31822. height: math.unit(6, "feet"),
  31823. weight: math.unit(190, "lb"),
  31824. name: "Side",
  31825. image: {
  31826. source: "./media/characters/huttser/side.svg",
  31827. extra: 1174/1065,
  31828. bottom: 18/1192
  31829. }
  31830. },
  31831. back: {
  31832. height: math.unit(6, "feet"),
  31833. weight: math.unit(190, "lb"),
  31834. name: "Back",
  31835. image: {
  31836. source: "./media/characters/huttser/back.svg",
  31837. extra: 1158/1056,
  31838. bottom: 12/1170
  31839. }
  31840. },
  31841. },
  31842. [
  31843. ]
  31844. ))
  31845. characterMakers.push(() => makeCharacter(
  31846. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  31847. {
  31848. side: {
  31849. height: math.unit(12 + 9/12, "feet"),
  31850. weight: math.unit(15000, "lb"),
  31851. name: "Side",
  31852. image: {
  31853. source: "./media/characters/faan/side.svg",
  31854. extra: 2747/2697,
  31855. bottom: 0/2747
  31856. }
  31857. },
  31858. front: {
  31859. height: math.unit(12 + 9/12, "feet"),
  31860. weight: math.unit(15000, "lb"),
  31861. name: "Front",
  31862. image: {
  31863. source: "./media/characters/faan/front.svg",
  31864. extra: 607/571,
  31865. bottom: 24/631
  31866. }
  31867. },
  31868. head: {
  31869. height: math.unit(2.85, "feet"),
  31870. name: "Head",
  31871. image: {
  31872. source: "./media/characters/faan/head.svg"
  31873. }
  31874. },
  31875. headAlt: {
  31876. height: math.unit(3.13, "feet"),
  31877. name: "Head-alt",
  31878. image: {
  31879. source: "./media/characters/faan/head-alt.svg"
  31880. }
  31881. },
  31882. },
  31883. [
  31884. {
  31885. name: "Normal",
  31886. height: math.unit(12 + 9/12, "feet"),
  31887. default: true
  31888. },
  31889. ]
  31890. ))
  31891. characterMakers.push(() => makeCharacter(
  31892. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  31893. {
  31894. front: {
  31895. height: math.unit(6, "feet"),
  31896. weight: math.unit(300, "lb"),
  31897. name: "Front",
  31898. image: {
  31899. source: "./media/characters/tanio/front.svg",
  31900. extra: 711/673,
  31901. bottom: 25/736
  31902. }
  31903. },
  31904. },
  31905. [
  31906. {
  31907. name: "Normal",
  31908. height: math.unit(6, "feet"),
  31909. default: true
  31910. },
  31911. ]
  31912. ))
  31913. characterMakers.push(() => makeCharacter(
  31914. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  31915. {
  31916. front: {
  31917. height: math.unit(3, "inches"),
  31918. name: "Front",
  31919. image: {
  31920. source: "./media/characters/noboru/front.svg",
  31921. extra: 1039/932,
  31922. bottom: 18/1057
  31923. }
  31924. },
  31925. },
  31926. [
  31927. {
  31928. name: "Micro",
  31929. height: math.unit(3, "inches"),
  31930. default: true
  31931. },
  31932. ]
  31933. ))
  31934. characterMakers.push(() => makeCharacter(
  31935. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  31936. {
  31937. front: {
  31938. height: math.unit(1.85, "meters"),
  31939. weight: math.unit(80, "kg"),
  31940. name: "Front",
  31941. image: {
  31942. source: "./media/characters/daniel-barrett/front.svg",
  31943. extra: 355/337,
  31944. bottom: 9/364
  31945. }
  31946. },
  31947. },
  31948. [
  31949. {
  31950. name: "Pico",
  31951. height: math.unit(0.0433, "mm")
  31952. },
  31953. {
  31954. name: "Nano",
  31955. height: math.unit(1.5, "mm")
  31956. },
  31957. {
  31958. name: "Micro",
  31959. height: math.unit(5.3, "cm"),
  31960. default: true
  31961. },
  31962. {
  31963. name: "Normal",
  31964. height: math.unit(1.85, "meters")
  31965. },
  31966. {
  31967. name: "Macro",
  31968. height: math.unit(64.7, "meters")
  31969. },
  31970. {
  31971. name: "Megamacro",
  31972. height: math.unit(2.26, "km")
  31973. },
  31974. {
  31975. name: "Gigamacro",
  31976. height: math.unit(79, "km")
  31977. },
  31978. {
  31979. name: "Teramacro",
  31980. height: math.unit(2765, "km")
  31981. },
  31982. {
  31983. name: "Petamacro",
  31984. height: math.unit(96678, "km")
  31985. },
  31986. ]
  31987. ))
  31988. characterMakers.push(() => makeCharacter(
  31989. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  31990. {
  31991. front: {
  31992. height: math.unit(30, "meters"),
  31993. weight: math.unit(400, "tons"),
  31994. name: "Front",
  31995. image: {
  31996. source: "./media/characters/zeel/front.svg",
  31997. extra: 2599/2599,
  31998. bottom: 226/2825
  31999. }
  32000. },
  32001. },
  32002. [
  32003. {
  32004. name: "Macro",
  32005. height: math.unit(30, "meters"),
  32006. default: true
  32007. },
  32008. ]
  32009. ))
  32010. characterMakers.push(() => makeCharacter(
  32011. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  32012. {
  32013. front: {
  32014. height: math.unit(6 + 7/12, "feet"),
  32015. weight: math.unit(210, "lb"),
  32016. name: "Front",
  32017. image: {
  32018. source: "./media/characters/tarn/front.svg",
  32019. extra: 3517/3220,
  32020. bottom: 91/3608
  32021. }
  32022. },
  32023. back: {
  32024. height: math.unit(6 + 7/12, "feet"),
  32025. weight: math.unit(210, "lb"),
  32026. name: "Back",
  32027. image: {
  32028. source: "./media/characters/tarn/back.svg",
  32029. extra: 3566/3241,
  32030. bottom: 34/3600
  32031. }
  32032. },
  32033. dick: {
  32034. height: math.unit(1.65, "feet"),
  32035. name: "Dick",
  32036. image: {
  32037. source: "./media/characters/tarn/dick.svg"
  32038. }
  32039. },
  32040. paw: {
  32041. height: math.unit(1.80, "feet"),
  32042. name: "Paw",
  32043. image: {
  32044. source: "./media/characters/tarn/paw.svg"
  32045. }
  32046. },
  32047. tongue: {
  32048. height: math.unit(0.97, "feet"),
  32049. name: "Tongue",
  32050. image: {
  32051. source: "./media/characters/tarn/tongue.svg"
  32052. }
  32053. },
  32054. },
  32055. [
  32056. {
  32057. name: "Micro",
  32058. height: math.unit(4, "inches")
  32059. },
  32060. {
  32061. name: "Normal",
  32062. height: math.unit(6 + 7/12, "feet"),
  32063. default: true
  32064. },
  32065. {
  32066. name: "Macro",
  32067. height: math.unit(300, "feet")
  32068. },
  32069. ]
  32070. ))
  32071. characterMakers.push(() => makeCharacter(
  32072. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  32073. {
  32074. front: {
  32075. height: math.unit(5 + 7/12, "feet"),
  32076. weight: math.unit(80, "kg"),
  32077. name: "Front",
  32078. image: {
  32079. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  32080. extra: 3023/2865,
  32081. bottom: 33/3056
  32082. }
  32083. },
  32084. back: {
  32085. height: math.unit(5 + 7/12, "feet"),
  32086. weight: math.unit(80, "kg"),
  32087. name: "Back",
  32088. image: {
  32089. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  32090. extra: 3020/2886,
  32091. bottom: 30/3050
  32092. }
  32093. },
  32094. dick: {
  32095. height: math.unit(0.98, "feet"),
  32096. name: "Dick",
  32097. image: {
  32098. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  32099. }
  32100. },
  32101. anatomy: {
  32102. height: math.unit(2.86, "feet"),
  32103. name: "Anatomy",
  32104. image: {
  32105. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  32106. }
  32107. },
  32108. },
  32109. [
  32110. {
  32111. name: "Really Small",
  32112. height: math.unit(2, "inches")
  32113. },
  32114. {
  32115. name: "Micro",
  32116. height: math.unit(5.583, "inches")
  32117. },
  32118. {
  32119. name: "Normal",
  32120. height: math.unit(5 + 7/12, "feet"),
  32121. default: true
  32122. },
  32123. {
  32124. name: "Macro",
  32125. height: math.unit(67, "feet")
  32126. },
  32127. {
  32128. name: "Megamacro",
  32129. height: math.unit(134, "feet")
  32130. },
  32131. ]
  32132. ))
  32133. characterMakers.push(() => makeCharacter(
  32134. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  32135. {
  32136. front: {
  32137. height: math.unit(9, "feet"),
  32138. weight: math.unit(120, "lb"),
  32139. name: "Front",
  32140. image: {
  32141. source: "./media/characters/sally/front.svg",
  32142. extra: 1506/1349,
  32143. bottom: 66/1572
  32144. }
  32145. },
  32146. },
  32147. [
  32148. {
  32149. name: "Normal",
  32150. height: math.unit(9, "feet"),
  32151. default: true
  32152. },
  32153. ]
  32154. ))
  32155. characterMakers.push(() => makeCharacter(
  32156. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  32157. {
  32158. front: {
  32159. height: math.unit(8, "feet"),
  32160. weight: math.unit(900, "lb"),
  32161. name: "Front",
  32162. image: {
  32163. source: "./media/characters/owen/front.svg",
  32164. extra: 1761/1657,
  32165. bottom: 74/1835
  32166. }
  32167. },
  32168. side: {
  32169. height: math.unit(8, "feet"),
  32170. weight: math.unit(900, "lb"),
  32171. name: "Side",
  32172. image: {
  32173. source: "./media/characters/owen/side.svg",
  32174. extra: 1797/1734,
  32175. bottom: 30/1827
  32176. }
  32177. },
  32178. back: {
  32179. height: math.unit(8, "feet"),
  32180. weight: math.unit(900, "lb"),
  32181. name: "Back",
  32182. image: {
  32183. source: "./media/characters/owen/back.svg",
  32184. extra: 1796/1706,
  32185. bottom: 59/1855
  32186. }
  32187. },
  32188. maw: {
  32189. height: math.unit(1.76, "feet"),
  32190. name: "Maw",
  32191. image: {
  32192. source: "./media/characters/owen/maw.svg"
  32193. }
  32194. },
  32195. },
  32196. [
  32197. {
  32198. name: "Normal",
  32199. height: math.unit(8, "feet"),
  32200. default: true
  32201. },
  32202. ]
  32203. ))
  32204. characterMakers.push(() => makeCharacter(
  32205. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  32206. {
  32207. front: {
  32208. height: math.unit(4, "feet"),
  32209. weight: math.unit(400, "lb"),
  32210. name: "Front",
  32211. image: {
  32212. source: "./media/characters/ryth/front.svg",
  32213. extra: 1920/1748,
  32214. bottom: 42/1962
  32215. }
  32216. },
  32217. back: {
  32218. height: math.unit(4, "feet"),
  32219. weight: math.unit(400, "lb"),
  32220. name: "Back",
  32221. image: {
  32222. source: "./media/characters/ryth/back.svg",
  32223. extra: 1897/1690,
  32224. bottom: 89/1986
  32225. }
  32226. },
  32227. mouth: {
  32228. height: math.unit(1.39, "feet"),
  32229. name: "Mouth",
  32230. image: {
  32231. source: "./media/characters/ryth/mouth.svg"
  32232. }
  32233. },
  32234. tailmaw: {
  32235. height: math.unit(1.23, "feet"),
  32236. name: "Tailmaw",
  32237. image: {
  32238. source: "./media/characters/ryth/tailmaw.svg"
  32239. }
  32240. },
  32241. goia: {
  32242. height: math.unit(4, "meters"),
  32243. weight: math.unit(10800, "lb"),
  32244. name: "Goia",
  32245. image: {
  32246. source: "./media/characters/ryth/goia.svg",
  32247. extra: 745/640,
  32248. bottom: 107/852
  32249. }
  32250. },
  32251. goiaFront: {
  32252. height: math.unit(4, "meters"),
  32253. weight: math.unit(10800, "lb"),
  32254. name: "Goia (Front)",
  32255. image: {
  32256. source: "./media/characters/ryth/goia-front.svg",
  32257. extra: 750/586,
  32258. bottom: 114/864
  32259. }
  32260. },
  32261. goiaMaw: {
  32262. height: math.unit(5.55, "feet"),
  32263. name: "Goia Maw",
  32264. image: {
  32265. source: "./media/characters/ryth/goia-maw.svg"
  32266. }
  32267. },
  32268. goiaForepaw: {
  32269. height: math.unit(3.5, "feet"),
  32270. name: "Goia Forepaw",
  32271. image: {
  32272. source: "./media/characters/ryth/goia-forepaw.svg"
  32273. }
  32274. },
  32275. goiaHindpaw: {
  32276. height: math.unit(5.55, "feet"),
  32277. name: "Goia Hindpaw",
  32278. image: {
  32279. source: "./media/characters/ryth/goia-hindpaw.svg"
  32280. }
  32281. },
  32282. },
  32283. [
  32284. {
  32285. name: "Normal",
  32286. height: math.unit(4, "feet"),
  32287. default: true
  32288. },
  32289. ]
  32290. ))
  32291. characterMakers.push(() => makeCharacter(
  32292. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  32293. {
  32294. front: {
  32295. height: math.unit(7, "feet"),
  32296. weight: math.unit(180, "lb"),
  32297. name: "Front",
  32298. image: {
  32299. source: "./media/characters/necrolance/front.svg",
  32300. extra: 1062/947,
  32301. bottom: 41/1103
  32302. }
  32303. },
  32304. back: {
  32305. height: math.unit(7, "feet"),
  32306. weight: math.unit(180, "lb"),
  32307. name: "Back",
  32308. image: {
  32309. source: "./media/characters/necrolance/back.svg",
  32310. extra: 1045/984,
  32311. bottom: 14/1059
  32312. }
  32313. },
  32314. wing: {
  32315. height: math.unit(2.67, "feet"),
  32316. name: "Wing",
  32317. image: {
  32318. source: "./media/characters/necrolance/wing.svg"
  32319. }
  32320. },
  32321. },
  32322. [
  32323. {
  32324. name: "Normal",
  32325. height: math.unit(7, "feet"),
  32326. default: true
  32327. },
  32328. ]
  32329. ))
  32330. characterMakers.push(() => makeCharacter(
  32331. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  32332. {
  32333. front: {
  32334. height: math.unit(76, "meters"),
  32335. weight: math.unit(30000, "tons"),
  32336. name: "Front",
  32337. image: {
  32338. source: "./media/characters/tyler/front.svg",
  32339. extra: 1640/1640,
  32340. bottom: 114/1754
  32341. }
  32342. },
  32343. },
  32344. [
  32345. {
  32346. name: "Macro",
  32347. height: math.unit(76, "meters"),
  32348. default: true
  32349. },
  32350. ]
  32351. ))
  32352. characterMakers.push(() => makeCharacter(
  32353. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  32354. {
  32355. front: {
  32356. height: math.unit(4 + 11/12, "feet"),
  32357. weight: math.unit(132, "lb"),
  32358. name: "Front",
  32359. image: {
  32360. source: "./media/characters/icey/front.svg",
  32361. extra: 2750/2550,
  32362. bottom: 33/2783
  32363. }
  32364. },
  32365. back: {
  32366. height: math.unit(4 + 11/12, "feet"),
  32367. weight: math.unit(132, "lb"),
  32368. name: "Back",
  32369. image: {
  32370. source: "./media/characters/icey/back.svg",
  32371. extra: 2624/2481,
  32372. bottom: 35/2659
  32373. }
  32374. },
  32375. },
  32376. [
  32377. {
  32378. name: "Normal",
  32379. height: math.unit(4 + 11/12, "feet"),
  32380. default: true
  32381. },
  32382. ]
  32383. ))
  32384. characterMakers.push(() => makeCharacter(
  32385. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  32386. {
  32387. front: {
  32388. height: math.unit(100, "feet"),
  32389. weight: math.unit(0, "lb"),
  32390. name: "Front",
  32391. image: {
  32392. source: "./media/characters/smile/front.svg",
  32393. extra: 2983/2912,
  32394. bottom: 162/3145
  32395. }
  32396. },
  32397. back: {
  32398. height: math.unit(100, "feet"),
  32399. weight: math.unit(0, "lb"),
  32400. name: "Back",
  32401. image: {
  32402. source: "./media/characters/smile/back.svg",
  32403. extra: 3143/3031,
  32404. bottom: 91/3234
  32405. }
  32406. },
  32407. head: {
  32408. height: math.unit(26.3, "feet"),
  32409. weight: math.unit(0, "lb"),
  32410. name: "Head",
  32411. image: {
  32412. source: "./media/characters/smile/head.svg"
  32413. }
  32414. },
  32415. collar: {
  32416. height: math.unit(5.3, "feet"),
  32417. weight: math.unit(0, "lb"),
  32418. name: "Collar",
  32419. image: {
  32420. source: "./media/characters/smile/collar.svg"
  32421. }
  32422. },
  32423. },
  32424. [
  32425. {
  32426. name: "Macro",
  32427. height: math.unit(100, "feet"),
  32428. default: true
  32429. },
  32430. ]
  32431. ))
  32432. characterMakers.push(() => makeCharacter(
  32433. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  32434. {
  32435. dragon: {
  32436. height: math.unit(26, "feet"),
  32437. weight: math.unit(36, "tons"),
  32438. name: "Dragon",
  32439. image: {
  32440. source: "./media/characters/arimphae/dragon.svg",
  32441. extra: 1574/983,
  32442. bottom: 357/1931
  32443. }
  32444. },
  32445. drake: {
  32446. height: math.unit(9, "feet"),
  32447. weight: math.unit(1.5, "tons"),
  32448. name: "Drake",
  32449. image: {
  32450. source: "./media/characters/arimphae/drake.svg",
  32451. extra: 1120/925,
  32452. bottom: 435/1555
  32453. }
  32454. },
  32455. },
  32456. [
  32457. {
  32458. name: "Small",
  32459. height: math.unit(26*5/9, "feet")
  32460. },
  32461. {
  32462. name: "Normal",
  32463. height: math.unit(26, "feet"),
  32464. default: true
  32465. },
  32466. ]
  32467. ))
  32468. characterMakers.push(() => makeCharacter(
  32469. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  32470. {
  32471. front: {
  32472. height: math.unit(8 + 9/12, "feet"),
  32473. name: "Front",
  32474. image: {
  32475. source: "./media/characters/xander/front.svg",
  32476. extra: 1237/974,
  32477. bottom: 94/1331
  32478. }
  32479. },
  32480. },
  32481. [
  32482. {
  32483. name: "Normal",
  32484. height: math.unit(8 + 9/12, "feet"),
  32485. default: true
  32486. },
  32487. {
  32488. name: "Gaze Grabber",
  32489. height: math.unit(13 + 8/12, "feet")
  32490. },
  32491. {
  32492. name: "Jaw Dropper",
  32493. height: math.unit(27, "feet")
  32494. },
  32495. {
  32496. name: "Show Stopper",
  32497. height: math.unit(136, "feet")
  32498. },
  32499. {
  32500. name: "Superstar",
  32501. height: math.unit(1.9e6, "miles")
  32502. },
  32503. ]
  32504. ))
  32505. characterMakers.push(() => makeCharacter(
  32506. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  32507. {
  32508. side: {
  32509. height: math.unit(2100, "feet"),
  32510. name: "Side",
  32511. image: {
  32512. source: "./media/characters/osiris/side.svg",
  32513. extra: 1105/939,
  32514. bottom: 167/1272
  32515. }
  32516. },
  32517. },
  32518. [
  32519. {
  32520. name: "Macro",
  32521. height: math.unit(2100, "feet"),
  32522. default: true
  32523. },
  32524. ]
  32525. ))
  32526. characterMakers.push(() => makeCharacter(
  32527. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  32528. {
  32529. front: {
  32530. height: math.unit(6 + 8/12, "feet"),
  32531. weight: math.unit(225, "lb"),
  32532. name: "Front",
  32533. image: {
  32534. source: "./media/characters/rhys-londe/front.svg",
  32535. extra: 2258/2141,
  32536. bottom: 188/2446
  32537. }
  32538. },
  32539. back: {
  32540. height: math.unit(6 + 8/12, "feet"),
  32541. weight: math.unit(225, "lb"),
  32542. name: "Back",
  32543. image: {
  32544. source: "./media/characters/rhys-londe/back.svg",
  32545. extra: 2237/2137,
  32546. bottom: 63/2300
  32547. }
  32548. },
  32549. frontNsfw: {
  32550. height: math.unit(6 + 8/12, "feet"),
  32551. weight: math.unit(225, "lb"),
  32552. name: "Front (NSFW)",
  32553. image: {
  32554. source: "./media/characters/rhys-londe/front-nsfw.svg",
  32555. extra: 2258/2141,
  32556. bottom: 188/2446
  32557. }
  32558. },
  32559. backNsfw: {
  32560. height: math.unit(6 + 8/12, "feet"),
  32561. weight: math.unit(225, "lb"),
  32562. name: "Back (NSFW)",
  32563. image: {
  32564. source: "./media/characters/rhys-londe/back-nsfw.svg",
  32565. extra: 2237/2137,
  32566. bottom: 63/2300
  32567. }
  32568. },
  32569. dick: {
  32570. height: math.unit(30, "inches"),
  32571. name: "Dick",
  32572. image: {
  32573. source: "./media/characters/rhys-londe/dick.svg"
  32574. }
  32575. },
  32576. maw: {
  32577. height: math.unit(1.6, "feet"),
  32578. name: "Maw",
  32579. image: {
  32580. source: "./media/characters/rhys-londe/maw.svg"
  32581. }
  32582. },
  32583. },
  32584. [
  32585. {
  32586. name: "Normal",
  32587. height: math.unit(6 + 8/12, "feet"),
  32588. default: true
  32589. },
  32590. ]
  32591. ))
  32592. characterMakers.push(() => makeCharacter(
  32593. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  32594. {
  32595. front: {
  32596. height: math.unit(3 + 10/12, "feet"),
  32597. weight: math.unit(90, "lb"),
  32598. name: "Front",
  32599. image: {
  32600. source: "./media/characters/taivas-ensim/front.svg",
  32601. extra: 1327/1216,
  32602. bottom: 96/1423
  32603. }
  32604. },
  32605. back: {
  32606. height: math.unit(3 + 10/12, "feet"),
  32607. weight: math.unit(90, "lb"),
  32608. name: "Back",
  32609. image: {
  32610. source: "./media/characters/taivas-ensim/back.svg",
  32611. extra: 1355/1247,
  32612. bottom: 11/1366
  32613. }
  32614. },
  32615. frontNsfw: {
  32616. height: math.unit(3 + 10/12, "feet"),
  32617. weight: math.unit(90, "lb"),
  32618. name: "Front (NSFW)",
  32619. image: {
  32620. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  32621. extra: 1327/1216,
  32622. bottom: 96/1423
  32623. }
  32624. },
  32625. backNsfw: {
  32626. height: math.unit(3 + 10/12, "feet"),
  32627. weight: math.unit(90, "lb"),
  32628. name: "Back (NSFW)",
  32629. image: {
  32630. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  32631. extra: 1355/1247,
  32632. bottom: 11/1366
  32633. }
  32634. },
  32635. },
  32636. [
  32637. {
  32638. name: "Normal",
  32639. height: math.unit(3 + 10/12, "feet"),
  32640. default: true
  32641. },
  32642. ]
  32643. ))
  32644. characterMakers.push(() => makeCharacter(
  32645. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  32646. {
  32647. front: {
  32648. height: math.unit(9 + 6/12, "feet"),
  32649. weight: math.unit(940, "lb"),
  32650. name: "Front",
  32651. image: {
  32652. source: "./media/characters/byliss/front.svg",
  32653. extra: 1327/1290,
  32654. bottom: 82/1409
  32655. }
  32656. },
  32657. back: {
  32658. height: math.unit(9 + 6/12, "feet"),
  32659. weight: math.unit(940, "lb"),
  32660. name: "Back",
  32661. image: {
  32662. source: "./media/characters/byliss/back.svg",
  32663. extra: 1376/1349,
  32664. bottom: 9/1385
  32665. }
  32666. },
  32667. frontNsfw: {
  32668. height: math.unit(9 + 6/12, "feet"),
  32669. weight: math.unit(940, "lb"),
  32670. name: "Front (NSFW)",
  32671. image: {
  32672. source: "./media/characters/byliss/front-nsfw.svg",
  32673. extra: 1327/1290,
  32674. bottom: 82/1409
  32675. }
  32676. },
  32677. backNsfw: {
  32678. height: math.unit(9 + 6/12, "feet"),
  32679. weight: math.unit(940, "lb"),
  32680. name: "Back (NSFW)",
  32681. image: {
  32682. source: "./media/characters/byliss/back-nsfw.svg",
  32683. extra: 1376/1349,
  32684. bottom: 9/1385
  32685. }
  32686. },
  32687. },
  32688. [
  32689. {
  32690. name: "Normal",
  32691. height: math.unit(9 + 6/12, "feet"),
  32692. default: true
  32693. },
  32694. ]
  32695. ))
  32696. characterMakers.push(() => makeCharacter(
  32697. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  32698. {
  32699. front: {
  32700. height: math.unit(5 + 2/12, "feet"),
  32701. weight: math.unit(200, "lb"),
  32702. name: "Front",
  32703. image: {
  32704. source: "./media/characters/noraly/front.svg",
  32705. extra: 4985/4773,
  32706. bottom: 150/5135
  32707. }
  32708. },
  32709. full: {
  32710. height: math.unit(5 + 2/12, "feet"),
  32711. weight: math.unit(164, "lb"),
  32712. name: "Full",
  32713. image: {
  32714. source: "./media/characters/noraly/full.svg",
  32715. extra: 1114/1059,
  32716. bottom: 35/1149
  32717. }
  32718. },
  32719. fuller: {
  32720. height: math.unit(5 + 2/12, "feet"),
  32721. weight: math.unit(230, "lb"),
  32722. name: "Fuller",
  32723. image: {
  32724. source: "./media/characters/noraly/fuller.svg",
  32725. extra: 1114/1059,
  32726. bottom: 35/1149
  32727. }
  32728. },
  32729. fullest: {
  32730. height: math.unit(5 + 2/12, "feet"),
  32731. weight: math.unit(300, "lb"),
  32732. name: "Fullest",
  32733. image: {
  32734. source: "./media/characters/noraly/fullest.svg",
  32735. extra: 1114/1059,
  32736. bottom: 35/1149
  32737. }
  32738. },
  32739. },
  32740. [
  32741. {
  32742. name: "Normal",
  32743. height: math.unit(5 + 2/12, "feet"),
  32744. default: true
  32745. },
  32746. ]
  32747. ))
  32748. characterMakers.push(() => makeCharacter(
  32749. { name: "Pera", species: ["snake"], tags: ["naga"] },
  32750. {
  32751. front: {
  32752. height: math.unit(5 + 2/12, "feet"),
  32753. weight: math.unit(210, "lb"),
  32754. name: "Front",
  32755. image: {
  32756. source: "./media/characters/pera/front.svg",
  32757. extra: 1560/1531,
  32758. bottom: 165/1725
  32759. }
  32760. },
  32761. back: {
  32762. height: math.unit(5 + 2/12, "feet"),
  32763. weight: math.unit(210, "lb"),
  32764. name: "Back",
  32765. image: {
  32766. source: "./media/characters/pera/back.svg",
  32767. extra: 1523/1493,
  32768. bottom: 152/1675
  32769. }
  32770. },
  32771. dick: {
  32772. height: math.unit(2.4, "feet"),
  32773. name: "Dick",
  32774. image: {
  32775. source: "./media/characters/pera/dick.svg"
  32776. }
  32777. },
  32778. },
  32779. [
  32780. {
  32781. name: "Normal",
  32782. height: math.unit(5 + 2/12, "feet"),
  32783. default: true
  32784. },
  32785. ]
  32786. ))
  32787. characterMakers.push(() => makeCharacter(
  32788. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  32789. {
  32790. front: {
  32791. height: math.unit(12, "feet"),
  32792. weight: math.unit(3200, "lb"),
  32793. name: "Front",
  32794. image: {
  32795. source: "./media/characters/julian/front.svg",
  32796. extra: 2962/2701,
  32797. bottom: 184/3146
  32798. }
  32799. },
  32800. maw: {
  32801. height: math.unit(5.35, "feet"),
  32802. name: "Maw",
  32803. image: {
  32804. source: "./media/characters/julian/maw.svg"
  32805. }
  32806. },
  32807. paw: {
  32808. height: math.unit(3.07, "feet"),
  32809. name: "Paw",
  32810. image: {
  32811. source: "./media/characters/julian/paw.svg"
  32812. }
  32813. },
  32814. },
  32815. [
  32816. {
  32817. name: "Default",
  32818. height: math.unit(12, "feet"),
  32819. default: true
  32820. },
  32821. {
  32822. name: "Big",
  32823. height: math.unit(50, "feet")
  32824. },
  32825. {
  32826. name: "Really Big",
  32827. height: math.unit(1, "mile")
  32828. },
  32829. {
  32830. name: "Extremely Big",
  32831. height: math.unit(100, "miles")
  32832. },
  32833. {
  32834. name: "Planet Hugger",
  32835. height: math.unit(200, "megameters")
  32836. },
  32837. {
  32838. name: "Unreasonably Big",
  32839. height: math.unit(1e300, "meters")
  32840. },
  32841. ]
  32842. ))
  32843. characterMakers.push(() => makeCharacter(
  32844. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  32845. {
  32846. solgooleo: {
  32847. height: math.unit(4, "meters"),
  32848. weight: math.unit(6000*1.5, "kg"),
  32849. volume: math.unit(6000, "liters"),
  32850. name: "Solgooleo",
  32851. image: {
  32852. source: "./media/characters/pi/solgooleo.svg",
  32853. extra: 388/331,
  32854. bottom: 29/417
  32855. }
  32856. },
  32857. },
  32858. [
  32859. {
  32860. name: "Normal",
  32861. height: math.unit(4, "meters"),
  32862. default: true
  32863. },
  32864. ]
  32865. ))
  32866. characterMakers.push(() => makeCharacter(
  32867. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  32868. {
  32869. front: {
  32870. height: math.unit(8, "feet"),
  32871. weight: math.unit(4, "tons"),
  32872. name: "Front",
  32873. image: {
  32874. source: "./media/characters/shaun/front.svg",
  32875. extra: 503/495,
  32876. bottom: 20/523
  32877. }
  32878. },
  32879. back: {
  32880. height: math.unit(8, "feet"),
  32881. weight: math.unit(4, "tons"),
  32882. name: "Back",
  32883. image: {
  32884. source: "./media/characters/shaun/back.svg",
  32885. extra: 487/480,
  32886. bottom: 20/507
  32887. }
  32888. },
  32889. },
  32890. [
  32891. {
  32892. name: "Lorg",
  32893. height: math.unit(8, "feet"),
  32894. default: true
  32895. },
  32896. ]
  32897. ))
  32898. characterMakers.push(() => makeCharacter(
  32899. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  32900. {
  32901. front: {
  32902. height: math.unit(7, "feet"),
  32903. name: "Front",
  32904. image: {
  32905. source: "./media/characters/sini/front.svg",
  32906. extra: 726/678,
  32907. bottom: 35/761
  32908. }
  32909. },
  32910. back: {
  32911. height: math.unit(7, "feet"),
  32912. name: "Back",
  32913. image: {
  32914. source: "./media/characters/sini/back.svg",
  32915. extra: 743/701,
  32916. bottom: 12/755
  32917. }
  32918. },
  32919. mawAnthro: {
  32920. height: math.unit(2.14, "feet"),
  32921. name: "Maw (Anthro)",
  32922. image: {
  32923. source: "./media/characters/sini/maw-anthro.svg"
  32924. }
  32925. },
  32926. dick: {
  32927. height: math.unit(1.45, "feet"),
  32928. name: "Dick (Anthro)",
  32929. image: {
  32930. source: "./media/characters/sini/dick-anthro.svg"
  32931. }
  32932. },
  32933. feral: {
  32934. height: math.unit(16, "feet"),
  32935. name: "Feral",
  32936. image: {
  32937. source: "./media/characters/sini/feral.svg",
  32938. extra: 814/605,
  32939. bottom: 11/825
  32940. }
  32941. },
  32942. mawFeral: {
  32943. height: math.unit(5.66, "feet"),
  32944. name: "Maw-feral",
  32945. image: {
  32946. source: "./media/characters/sini/maw-feral.svg"
  32947. }
  32948. },
  32949. footFeral: {
  32950. height: math.unit(5.17, "feet"),
  32951. name: "Foot-feral",
  32952. image: {
  32953. source: "./media/characters/sini/foot-feral.svg"
  32954. }
  32955. },
  32956. },
  32957. [
  32958. {
  32959. name: "Normal",
  32960. height: math.unit(7, "feet"),
  32961. default: true
  32962. },
  32963. ]
  32964. ))
  32965. characterMakers.push(() => makeCharacter(
  32966. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  32967. {
  32968. side: {
  32969. height: math.unit(13, "meters"),
  32970. weight: math.unit(9072, "kg"),
  32971. name: "Side",
  32972. image: {
  32973. source: "./media/characters/raylldo/side.svg",
  32974. extra: 403/344,
  32975. bottom: 42/445
  32976. }
  32977. },
  32978. leaping: {
  32979. height: math.unit(12.3, "meters"),
  32980. weight: math.unit(9072, "kg"),
  32981. name: "Leaping",
  32982. image: {
  32983. source: "./media/characters/raylldo/leaping.svg",
  32984. extra: 470/249,
  32985. bottom: 13/483
  32986. }
  32987. },
  32988. flying: {
  32989. height: math.unit(18, "meters"),
  32990. weight: math.unit(9072, "kg"),
  32991. name: "Flying",
  32992. image: {
  32993. source: "./media/characters/raylldo/flying.svg"
  32994. }
  32995. },
  32996. head: {
  32997. height: math.unit(5.85, "meters"),
  32998. name: "Head",
  32999. image: {
  33000. source: "./media/characters/raylldo/head.svg"
  33001. }
  33002. },
  33003. maw: {
  33004. height: math.unit(5.32, "meters"),
  33005. name: "Maw",
  33006. image: {
  33007. source: "./media/characters/raylldo/maw.svg"
  33008. }
  33009. },
  33010. eye: {
  33011. height: math.unit(0.54, "meters"),
  33012. name: "Eye",
  33013. image: {
  33014. source: "./media/characters/raylldo/eye.svg"
  33015. }
  33016. },
  33017. },
  33018. [
  33019. {
  33020. name: "Normal",
  33021. height: math.unit(13, "meters"),
  33022. default: true
  33023. },
  33024. ]
  33025. ))
  33026. characterMakers.push(() => makeCharacter(
  33027. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  33028. {
  33029. anthroFront: {
  33030. height: math.unit(9, "feet"),
  33031. weight: math.unit(600, "lb"),
  33032. name: "Anthro (Front)",
  33033. image: {
  33034. source: "./media/characters/glint/anthro-front.svg",
  33035. extra: 1097/1018,
  33036. bottom: 28/1125
  33037. }
  33038. },
  33039. anthroBack: {
  33040. height: math.unit(9, "feet"),
  33041. weight: math.unit(600, "lb"),
  33042. name: "Anthro (Back)",
  33043. image: {
  33044. source: "./media/characters/glint/anthro-back.svg",
  33045. extra: 1154/997,
  33046. bottom: 36/1190
  33047. }
  33048. },
  33049. feral: {
  33050. height: math.unit(11, "feet"),
  33051. weight: math.unit(50000, "lb"),
  33052. name: "Feral",
  33053. image: {
  33054. source: "./media/characters/glint/feral.svg",
  33055. extra: 3035/1585,
  33056. bottom: 1169/4204
  33057. }
  33058. },
  33059. dickAnthro: {
  33060. height: math.unit(0.7, "meters"),
  33061. name: "Dick (Anthro)",
  33062. image: {
  33063. source: "./media/characters/glint/dick-anthro.svg"
  33064. }
  33065. },
  33066. dickFeral: {
  33067. height: math.unit(2.65, "meters"),
  33068. name: "Dick (Feral)",
  33069. image: {
  33070. source: "./media/characters/glint/dick-feral.svg"
  33071. }
  33072. },
  33073. slitHidden: {
  33074. height: math.unit(5.85, "meters"),
  33075. name: "Slit (Hidden)",
  33076. image: {
  33077. source: "./media/characters/glint/slit-hidden.svg"
  33078. }
  33079. },
  33080. slitErect: {
  33081. height: math.unit(5.85, "meters"),
  33082. name: "Slit (Erect)",
  33083. image: {
  33084. source: "./media/characters/glint/slit-erect.svg"
  33085. }
  33086. },
  33087. mawAnthro: {
  33088. height: math.unit(0.63, "meters"),
  33089. name: "Maw (Anthro)",
  33090. image: {
  33091. source: "./media/characters/glint/maw.svg"
  33092. }
  33093. },
  33094. mawFeral: {
  33095. height: math.unit(2.89, "meters"),
  33096. name: "Maw (Feral)",
  33097. image: {
  33098. source: "./media/characters/glint/maw.svg"
  33099. }
  33100. },
  33101. },
  33102. [
  33103. {
  33104. name: "Normal",
  33105. height: math.unit(9, "feet"),
  33106. default: true
  33107. },
  33108. ]
  33109. ))
  33110. characterMakers.push(() => makeCharacter(
  33111. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  33112. {
  33113. side: {
  33114. height: math.unit(15, "feet"),
  33115. weight: math.unit(5000, "kg"),
  33116. name: "Side",
  33117. image: {
  33118. source: "./media/characters/kairne/side.svg",
  33119. extra: 979/811,
  33120. bottom: 13/992
  33121. }
  33122. },
  33123. front: {
  33124. height: math.unit(15, "feet"),
  33125. weight: math.unit(5000, "kg"),
  33126. name: "Front",
  33127. image: {
  33128. source: "./media/characters/kairne/front.svg",
  33129. extra: 908/814,
  33130. bottom: 26/934
  33131. }
  33132. },
  33133. sideNsfw: {
  33134. height: math.unit(15, "feet"),
  33135. weight: math.unit(5000, "kg"),
  33136. name: "Side (NSFW)",
  33137. image: {
  33138. source: "./media/characters/kairne/side-nsfw.svg",
  33139. extra: 979/811,
  33140. bottom: 13/992
  33141. }
  33142. },
  33143. frontNsfw: {
  33144. height: math.unit(15, "feet"),
  33145. weight: math.unit(5000, "kg"),
  33146. name: "Front (NSFW)",
  33147. image: {
  33148. source: "./media/characters/kairne/front-nsfw.svg",
  33149. extra: 908/814,
  33150. bottom: 26/934
  33151. }
  33152. },
  33153. dickCaged: {
  33154. height: math.unit(0.65, "meters"),
  33155. name: "Dick-caged",
  33156. image: {
  33157. source: "./media/characters/kairne/dick-caged.svg"
  33158. }
  33159. },
  33160. dick: {
  33161. height: math.unit(0.79, "meters"),
  33162. name: "Dick",
  33163. image: {
  33164. source: "./media/characters/kairne/dick.svg"
  33165. }
  33166. },
  33167. genitals: {
  33168. height: math.unit(1.29, "meters"),
  33169. name: "Genitals",
  33170. image: {
  33171. source: "./media/characters/kairne/genitals.svg"
  33172. }
  33173. },
  33174. maw: {
  33175. height: math.unit(1.73, "meters"),
  33176. name: "Maw",
  33177. image: {
  33178. source: "./media/characters/kairne/maw.svg"
  33179. }
  33180. },
  33181. },
  33182. [
  33183. {
  33184. name: "Normal",
  33185. height: math.unit(15, "feet"),
  33186. default: true
  33187. },
  33188. ]
  33189. ))
  33190. characterMakers.push(() => makeCharacter(
  33191. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  33192. {
  33193. front: {
  33194. height: math.unit(5 + 8/12, "feet"),
  33195. weight: math.unit(139, "lb"),
  33196. name: "Front",
  33197. image: {
  33198. source: "./media/characters/biscuit-jackal/front.svg",
  33199. extra: 2106/1961,
  33200. bottom: 58/2164
  33201. }
  33202. },
  33203. back: {
  33204. height: math.unit(5 + 8/12, "feet"),
  33205. weight: math.unit(139, "lb"),
  33206. name: "Back",
  33207. image: {
  33208. source: "./media/characters/biscuit-jackal/back.svg",
  33209. extra: 2132/1976,
  33210. bottom: 57/2189
  33211. }
  33212. },
  33213. werejackal: {
  33214. height: math.unit(6 + 3/12, "feet"),
  33215. weight: math.unit(188, "lb"),
  33216. name: "Werejackal",
  33217. image: {
  33218. source: "./media/characters/biscuit-jackal/werejackal.svg",
  33219. extra: 2373/2178,
  33220. bottom: 53/2426
  33221. }
  33222. },
  33223. },
  33224. [
  33225. {
  33226. name: "Normal",
  33227. height: math.unit(5 + 8/12, "feet"),
  33228. default: true
  33229. },
  33230. ]
  33231. ))
  33232. characterMakers.push(() => makeCharacter(
  33233. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  33234. {
  33235. front: {
  33236. height: math.unit(140, "cm"),
  33237. weight: math.unit(45, "kg"),
  33238. name: "Front",
  33239. image: {
  33240. source: "./media/characters/tayra-white/front.svg",
  33241. extra: 2229/2192,
  33242. bottom: 75/2304
  33243. }
  33244. },
  33245. },
  33246. [
  33247. {
  33248. name: "Normal",
  33249. height: math.unit(140, "cm"),
  33250. default: true
  33251. },
  33252. ]
  33253. ))
  33254. characterMakers.push(() => makeCharacter(
  33255. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  33256. {
  33257. front: {
  33258. height: math.unit(4 + 5/12, "feet"),
  33259. name: "Front",
  33260. image: {
  33261. source: "./media/characters/scoop/front.svg",
  33262. extra: 1257/1136,
  33263. bottom: 69/1326
  33264. }
  33265. },
  33266. back: {
  33267. height: math.unit(4 + 5/12, "feet"),
  33268. name: "Back",
  33269. image: {
  33270. source: "./media/characters/scoop/back.svg",
  33271. extra: 1321/1152,
  33272. bottom: 32/1353
  33273. }
  33274. },
  33275. maw: {
  33276. height: math.unit(0.68, "feet"),
  33277. name: "Maw",
  33278. image: {
  33279. source: "./media/characters/scoop/maw.svg"
  33280. }
  33281. },
  33282. },
  33283. [
  33284. {
  33285. name: "Really Small",
  33286. height: math.unit(1, "mm")
  33287. },
  33288. {
  33289. name: "Micro",
  33290. height: math.unit(1, "inch")
  33291. },
  33292. {
  33293. name: "Normal",
  33294. height: math.unit(4 + 5/12, "feet"),
  33295. default: true
  33296. },
  33297. {
  33298. name: "Macro",
  33299. height: math.unit(200, "feet")
  33300. },
  33301. {
  33302. name: "Megamacro",
  33303. height: math.unit(3240, "feet")
  33304. },
  33305. {
  33306. name: "Teramacro",
  33307. height: math.unit(2500, "miles")
  33308. },
  33309. ]
  33310. ))
  33311. characterMakers.push(() => makeCharacter(
  33312. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  33313. {
  33314. front: {
  33315. height: math.unit(15 + 7/12, "feet"),
  33316. name: "Front",
  33317. image: {
  33318. source: "./media/characters/saphinara/front.svg",
  33319. extra: 604/546,
  33320. bottom: 19/623
  33321. }
  33322. },
  33323. side: {
  33324. height: math.unit(15 + 7/12, "feet"),
  33325. name: "Side",
  33326. image: {
  33327. source: "./media/characters/saphinara/side.svg",
  33328. extra: 605/547,
  33329. bottom: 6/611
  33330. }
  33331. },
  33332. back: {
  33333. height: math.unit(15 + 7/12, "feet"),
  33334. name: "Back",
  33335. image: {
  33336. source: "./media/characters/saphinara/back.svg",
  33337. extra: 591/531,
  33338. bottom: 13/604
  33339. }
  33340. },
  33341. frontTail: {
  33342. height: math.unit(15 + 7/12, "feet"),
  33343. name: "Front (Full Tail)",
  33344. image: {
  33345. source: "./media/characters/saphinara/front-tail.svg",
  33346. extra: 748/547,
  33347. bottom: 66/814
  33348. }
  33349. },
  33350. },
  33351. [
  33352. {
  33353. name: "Normal",
  33354. height: math.unit(15 + 7/12, "feet"),
  33355. default: true
  33356. },
  33357. {
  33358. name: "Angry",
  33359. height: math.unit(30 + 6/12, "feet")
  33360. },
  33361. {
  33362. name: "Enraged",
  33363. height: math.unit(102 + 1/12, "feet")
  33364. },
  33365. ]
  33366. ))
  33367. characterMakers.push(() => makeCharacter(
  33368. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  33369. {
  33370. front: {
  33371. height: math.unit(6 + 8/12, "feet"),
  33372. weight: math.unit(300, "lb"),
  33373. name: "Front",
  33374. image: {
  33375. source: "./media/characters/jrain/front.svg",
  33376. extra: 3039/2865,
  33377. bottom: 399/3438
  33378. }
  33379. },
  33380. back: {
  33381. height: math.unit(6 + 8/12, "feet"),
  33382. weight: math.unit(300, "lb"),
  33383. name: "Back",
  33384. image: {
  33385. source: "./media/characters/jrain/back.svg",
  33386. extra: 3089/2938,
  33387. bottom: 172/3261
  33388. }
  33389. },
  33390. head: {
  33391. height: math.unit(2.14, "feet"),
  33392. name: "Head",
  33393. image: {
  33394. source: "./media/characters/jrain/head.svg"
  33395. }
  33396. },
  33397. maw: {
  33398. height: math.unit(1.77, "feet"),
  33399. name: "Maw",
  33400. image: {
  33401. source: "./media/characters/jrain/maw.svg"
  33402. }
  33403. },
  33404. leftHand: {
  33405. height: math.unit(1.1, "feet"),
  33406. name: "Left Hand",
  33407. image: {
  33408. source: "./media/characters/jrain/left-hand.svg"
  33409. }
  33410. },
  33411. rightHand: {
  33412. height: math.unit(1.1, "feet"),
  33413. name: "Right Hand",
  33414. image: {
  33415. source: "./media/characters/jrain/right-hand.svg"
  33416. }
  33417. },
  33418. eye: {
  33419. height: math.unit(0.35, "feet"),
  33420. name: "Eye",
  33421. image: {
  33422. source: "./media/characters/jrain/eye.svg"
  33423. }
  33424. },
  33425. },
  33426. [
  33427. {
  33428. name: "Normal",
  33429. height: math.unit(6 + 8/12, "feet"),
  33430. default: true
  33431. },
  33432. {
  33433. name: "Casually Large",
  33434. height: math.unit(25, "feet")
  33435. },
  33436. {
  33437. name: "Giant",
  33438. height: math.unit(100, "feet")
  33439. },
  33440. {
  33441. name: "Kaiju",
  33442. height: math.unit(300, "feet")
  33443. },
  33444. ]
  33445. ))
  33446. characterMakers.push(() => makeCharacter(
  33447. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  33448. {
  33449. dragon: {
  33450. height: math.unit(5, "meters"),
  33451. name: "Dragon",
  33452. image: {
  33453. source: "./media/characters/sabrina/dragon.svg",
  33454. extra: 3670 / 2365,
  33455. bottom: 333 / 4003
  33456. }
  33457. },
  33458. gryphon: {
  33459. height: math.unit(3, "meters"),
  33460. name: "Gryphon",
  33461. image: {
  33462. source: "./media/characters/sabrina/gryphon.svg",
  33463. extra: 1576 / 945,
  33464. bottom: 71 / 1647
  33465. }
  33466. },
  33467. snake: {
  33468. height: math.unit(12, "meters"),
  33469. name: "Snake",
  33470. image: {
  33471. source: "./media/characters/sabrina/snake.svg",
  33472. extra: 1758 / 1320,
  33473. bottom: 186 / 1944
  33474. }
  33475. },
  33476. collar: {
  33477. height: math.unit(1.86, "meters"),
  33478. name: "Collar",
  33479. image: {
  33480. source: "./media/characters/sabrina/collar.svg"
  33481. }
  33482. },
  33483. eye: {
  33484. height: math.unit(0.53, "meters"),
  33485. name: "Eye",
  33486. image: {
  33487. source: "./media/characters/sabrina/eye.svg"
  33488. }
  33489. },
  33490. foot: {
  33491. height: math.unit(1.86, "meters"),
  33492. name: "Foot",
  33493. image: {
  33494. source: "./media/characters/sabrina/foot.svg"
  33495. }
  33496. },
  33497. hand: {
  33498. height: math.unit(1.32, "meters"),
  33499. name: "Hand",
  33500. image: {
  33501. source: "./media/characters/sabrina/hand.svg"
  33502. }
  33503. },
  33504. head: {
  33505. height: math.unit(2.44, "meters"),
  33506. name: "Head",
  33507. image: {
  33508. source: "./media/characters/sabrina/head.svg"
  33509. }
  33510. },
  33511. headAngry: {
  33512. height: math.unit(2.44, "meters"),
  33513. name: "Head (Angry))",
  33514. image: {
  33515. source: "./media/characters/sabrina/head-angry.svg"
  33516. }
  33517. },
  33518. maw: {
  33519. height: math.unit(1.65, "meters"),
  33520. name: "Maw",
  33521. image: {
  33522. source: "./media/characters/sabrina/maw.svg"
  33523. }
  33524. },
  33525. spikes: {
  33526. height: math.unit(1.69, "meters"),
  33527. name: "Spikes",
  33528. image: {
  33529. source: "./media/characters/sabrina/spikes.svg"
  33530. }
  33531. },
  33532. stomach: {
  33533. height: math.unit(1.15, "meters"),
  33534. name: "Stomach",
  33535. image: {
  33536. source: "./media/characters/sabrina/stomach.svg"
  33537. }
  33538. },
  33539. tongue: {
  33540. height: math.unit(1.27, "meters"),
  33541. name: "Tongue",
  33542. image: {
  33543. source: "./media/characters/sabrina/tongue.svg"
  33544. }
  33545. },
  33546. wingDorsal: {
  33547. height: math.unit(4.85, "meters"),
  33548. name: "Wing (Dorsal)",
  33549. image: {
  33550. source: "./media/characters/sabrina/wing-dorsal.svg"
  33551. }
  33552. },
  33553. wingVentral: {
  33554. height: math.unit(4.85, "meters"),
  33555. name: "Wing (Ventral)",
  33556. image: {
  33557. source: "./media/characters/sabrina/wing-ventral.svg"
  33558. }
  33559. },
  33560. },
  33561. [
  33562. {
  33563. name: "Normal",
  33564. height: math.unit(5, "meters"),
  33565. default: true
  33566. },
  33567. ]
  33568. ))
  33569. characterMakers.push(() => makeCharacter(
  33570. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  33571. {
  33572. frontMaid: {
  33573. height: math.unit(5 + 5/12, "feet"),
  33574. weight: math.unit(130, "lb"),
  33575. name: "Front (Maid)",
  33576. image: {
  33577. source: "./media/characters/midnight-tales/front-maid.svg",
  33578. extra: 489/454,
  33579. bottom: 61/550
  33580. }
  33581. },
  33582. frontFormal: {
  33583. height: math.unit(5 + 5/12, "feet"),
  33584. weight: math.unit(130, "lb"),
  33585. name: "Front (Formal)",
  33586. image: {
  33587. source: "./media/characters/midnight-tales/front-formal.svg",
  33588. extra: 489/454,
  33589. bottom: 61/550
  33590. }
  33591. },
  33592. back: {
  33593. height: math.unit(5 + 5/12, "feet"),
  33594. weight: math.unit(130, "lb"),
  33595. name: "Back",
  33596. image: {
  33597. source: "./media/characters/midnight-tales/back.svg",
  33598. extra: 498/456,
  33599. bottom: 33/531
  33600. }
  33601. },
  33602. frontBeast: {
  33603. height: math.unit(40, "feet"),
  33604. weight: math.unit(64000, "lb"),
  33605. name: "Front (Beast)",
  33606. image: {
  33607. source: "./media/characters/midnight-tales/front-beast.svg",
  33608. extra: 927/860,
  33609. bottom: 53/980
  33610. }
  33611. },
  33612. backBeast: {
  33613. height: math.unit(40, "feet"),
  33614. weight: math.unit(64000, "lb"),
  33615. name: "Back (Beast)",
  33616. image: {
  33617. source: "./media/characters/midnight-tales/back-beast.svg",
  33618. extra: 929/855,
  33619. bottom: 16/945
  33620. }
  33621. },
  33622. footBeast: {
  33623. height: math.unit(6.7, "feet"),
  33624. name: "Foot (Beast)",
  33625. image: {
  33626. source: "./media/characters/midnight-tales/foot-beast.svg"
  33627. }
  33628. },
  33629. headBeast: {
  33630. height: math.unit(8, "feet"),
  33631. name: "Head (Beast)",
  33632. image: {
  33633. source: "./media/characters/midnight-tales/head-beast.svg"
  33634. }
  33635. },
  33636. },
  33637. [
  33638. {
  33639. name: "Normal",
  33640. height: math.unit(5 + 5 / 12, "feet"),
  33641. default: true
  33642. },
  33643. {
  33644. name: "Macro",
  33645. height: math.unit(25, "feet")
  33646. },
  33647. ]
  33648. ))
  33649. characterMakers.push(() => makeCharacter(
  33650. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  33651. {
  33652. front: {
  33653. height: math.unit(5 + 10/12, "feet"),
  33654. name: "Front",
  33655. image: {
  33656. source: "./media/characters/argon/front.svg",
  33657. extra: 2009/1935,
  33658. bottom: 118/2127
  33659. }
  33660. },
  33661. back: {
  33662. height: math.unit(5 + 10/12, "feet"),
  33663. name: "Back",
  33664. image: {
  33665. source: "./media/characters/argon/back.svg",
  33666. extra: 2047/1992,
  33667. bottom: 20/2067
  33668. }
  33669. },
  33670. frontDressed: {
  33671. height: math.unit(5 + 10/12, "feet"),
  33672. name: "Front (Dressed)",
  33673. image: {
  33674. source: "./media/characters/argon/front-dressed.svg",
  33675. extra: 2009/1935,
  33676. bottom: 118/2127
  33677. }
  33678. },
  33679. },
  33680. [
  33681. {
  33682. name: "Normal",
  33683. height: math.unit(5 + 10/12, "feet"),
  33684. default: true
  33685. },
  33686. ]
  33687. ))
  33688. characterMakers.push(() => makeCharacter(
  33689. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  33690. {
  33691. front: {
  33692. height: math.unit(8 + 6/12, "feet"),
  33693. weight: math.unit(1150, "lb"),
  33694. name: "Front",
  33695. image: {
  33696. source: "./media/characters/kichi/front.svg",
  33697. extra: 1267/1164,
  33698. bottom: 61/1328
  33699. }
  33700. },
  33701. back: {
  33702. height: math.unit(8 + 6/12, "feet"),
  33703. weight: math.unit(1150, "lb"),
  33704. name: "Back",
  33705. image: {
  33706. source: "./media/characters/kichi/back.svg",
  33707. extra: 1273/1166,
  33708. bottom: 33/1306
  33709. }
  33710. },
  33711. },
  33712. [
  33713. {
  33714. name: "Normal",
  33715. height: math.unit(8 + 6/12, "feet"),
  33716. default: true
  33717. },
  33718. ]
  33719. ))
  33720. characterMakers.push(() => makeCharacter(
  33721. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  33722. {
  33723. front: {
  33724. height: math.unit(6, "feet"),
  33725. weight: math.unit(210, "lb"),
  33726. name: "Front",
  33727. image: {
  33728. source: "./media/characters/manetel-greyscale/front.svg",
  33729. extra: 350/312,
  33730. bottom: 8/358
  33731. }
  33732. },
  33733. },
  33734. [
  33735. {
  33736. name: "Micro",
  33737. height: math.unit(2, "inches")
  33738. },
  33739. {
  33740. name: "Normal",
  33741. height: math.unit(6, "feet"),
  33742. default: true
  33743. },
  33744. {
  33745. name: "Minimacro",
  33746. height: math.unit(17, "feet")
  33747. },
  33748. {
  33749. name: "Macro",
  33750. height: math.unit(117, "feet")
  33751. },
  33752. ]
  33753. ))
  33754. characterMakers.push(() => makeCharacter(
  33755. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  33756. {
  33757. side: {
  33758. height: math.unit(5 + 1/12, "feet"),
  33759. weight: math.unit(418, "lb"),
  33760. name: "Side",
  33761. image: {
  33762. source: "./media/characters/softpurr/side.svg",
  33763. extra: 1993/1945,
  33764. bottom: 134/2127
  33765. }
  33766. },
  33767. front: {
  33768. height: math.unit(5 + 1/12, "feet"),
  33769. weight: math.unit(418, "lb"),
  33770. name: "Front",
  33771. image: {
  33772. source: "./media/characters/softpurr/front.svg",
  33773. extra: 1950/1856,
  33774. bottom: 174/2124
  33775. }
  33776. },
  33777. paw: {
  33778. height: math.unit(1, "feet"),
  33779. name: "Paw",
  33780. image: {
  33781. source: "./media/characters/softpurr/paw.svg"
  33782. }
  33783. },
  33784. },
  33785. [
  33786. {
  33787. name: "Normal",
  33788. height: math.unit(5 + 1/12, "feet"),
  33789. default: true
  33790. },
  33791. ]
  33792. ))
  33793. characterMakers.push(() => makeCharacter(
  33794. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  33795. {
  33796. front: {
  33797. height: math.unit(260, "meters"),
  33798. name: "Front",
  33799. image: {
  33800. source: "./media/characters/anahita/front.svg",
  33801. extra: 665/635,
  33802. bottom: 89/754
  33803. }
  33804. },
  33805. },
  33806. [
  33807. {
  33808. name: "Macro",
  33809. height: math.unit(260, "meters"),
  33810. default: true
  33811. },
  33812. ]
  33813. ))
  33814. characterMakers.push(() => makeCharacter(
  33815. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  33816. {
  33817. front: {
  33818. height: math.unit(4 + 10/12, "feet"),
  33819. weight: math.unit(160, "lb"),
  33820. name: "Front",
  33821. image: {
  33822. source: "./media/characters/chip-mouse/front.svg",
  33823. extra: 3528/3408,
  33824. bottom: 0/3528
  33825. }
  33826. },
  33827. frontNsfw: {
  33828. height: math.unit(4 + 10/12, "feet"),
  33829. weight: math.unit(160, "lb"),
  33830. name: "Front (NSFW)",
  33831. image: {
  33832. source: "./media/characters/chip-mouse/front-nsfw.svg",
  33833. extra: 3528/3408,
  33834. bottom: 0/3528
  33835. }
  33836. },
  33837. },
  33838. [
  33839. {
  33840. name: "Normal",
  33841. height: math.unit(4 + 10/12, "feet"),
  33842. default: true
  33843. },
  33844. ]
  33845. ))
  33846. characterMakers.push(() => makeCharacter(
  33847. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  33848. {
  33849. side: {
  33850. height: math.unit(10, "feet"),
  33851. weight: math.unit(14000, "lb"),
  33852. name: "Side",
  33853. image: {
  33854. source: "./media/characters/kremm/side.svg",
  33855. extra: 1390/1053,
  33856. bottom: 90/1480
  33857. }
  33858. },
  33859. gut: {
  33860. height: math.unit(5.8, "feet"),
  33861. name: "Gut",
  33862. image: {
  33863. source: "./media/characters/kremm/gut.svg"
  33864. }
  33865. },
  33866. ass: {
  33867. height: math.unit(6.1, "feet"),
  33868. name: "Ass",
  33869. image: {
  33870. source: "./media/characters/kremm/ass.svg"
  33871. }
  33872. },
  33873. jaws: {
  33874. height: math.unit(2.2, "feet"),
  33875. name: "Jaws",
  33876. image: {
  33877. source: "./media/characters/kremm/jaws.svg"
  33878. }
  33879. },
  33880. dick: {
  33881. height: math.unit(4.26, "feet"),
  33882. name: "Dick",
  33883. image: {
  33884. source: "./media/characters/kremm/dick.svg"
  33885. }
  33886. },
  33887. },
  33888. [
  33889. {
  33890. name: "Normal",
  33891. height: math.unit(10, "feet"),
  33892. default: true
  33893. },
  33894. ]
  33895. ))
  33896. characterMakers.push(() => makeCharacter(
  33897. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  33898. {
  33899. front: {
  33900. height: math.unit(30, "stories"),
  33901. name: "Front",
  33902. image: {
  33903. source: "./media/characters/kai/front.svg",
  33904. extra: 1892/1718,
  33905. bottom: 162/2054
  33906. }
  33907. },
  33908. },
  33909. [
  33910. {
  33911. name: "Macro",
  33912. height: math.unit(30, "stories"),
  33913. default: true
  33914. },
  33915. ]
  33916. ))
  33917. characterMakers.push(() => makeCharacter(
  33918. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  33919. {
  33920. front: {
  33921. height: math.unit(6 + 4/12, "feet"),
  33922. weight: math.unit(145, "lb"),
  33923. name: "Front",
  33924. image: {
  33925. source: "./media/characters/sykes/front.svg",
  33926. extra: 1321 / 1187,
  33927. bottom: 66 / 1387
  33928. }
  33929. },
  33930. back: {
  33931. height: math.unit(6 + 4/12, "feet"),
  33932. weight: math.unit(145, "lb"),
  33933. name: "Back",
  33934. image: {
  33935. source: "./media/characters/sykes/back.svg",
  33936. extra: 1326/1181,
  33937. bottom: 31/1357
  33938. }
  33939. },
  33940. handBack: {
  33941. height: math.unit(0.9, "feet"),
  33942. name: "Hand (Back)",
  33943. image: {
  33944. source: "./media/characters/sykes/hand-back.svg"
  33945. }
  33946. },
  33947. handFront: {
  33948. height: math.unit(0.839, "feet"),
  33949. name: "Hand (Front)",
  33950. image: {
  33951. source: "./media/characters/sykes/hand-front.svg"
  33952. }
  33953. },
  33954. leftFoot: {
  33955. height: math.unit(1.2, "feet"),
  33956. name: "Foot (Left)",
  33957. image: {
  33958. source: "./media/characters/sykes/foot-left.svg"
  33959. }
  33960. },
  33961. rightFoot: {
  33962. height: math.unit(1.2, "feet"),
  33963. name: "Foot (Right)",
  33964. image: {
  33965. source: "./media/characters/sykes/foot-right.svg"
  33966. }
  33967. },
  33968. maw: {
  33969. height: math.unit(1.93, "feet"),
  33970. name: "Maw",
  33971. image: {
  33972. source: "./media/characters/sykes/maw.svg"
  33973. }
  33974. },
  33975. teeth: {
  33976. height: math.unit(0.51, "feet"),
  33977. name: "Teeth",
  33978. image: {
  33979. source: "./media/characters/sykes/teeth.svg"
  33980. }
  33981. },
  33982. tongue: {
  33983. height: math.unit(2.13, "feet"),
  33984. name: "Tongue",
  33985. image: {
  33986. source: "./media/characters/sykes/tongue.svg"
  33987. }
  33988. },
  33989. uvula: {
  33990. height: math.unit(0.16, "feet"),
  33991. name: "Uvula",
  33992. image: {
  33993. source: "./media/characters/sykes/uvula.svg"
  33994. }
  33995. },
  33996. collar: {
  33997. height: math.unit(0.287, "feet"),
  33998. name: "Collar",
  33999. image: {
  34000. source: "./media/characters/sykes/collar.svg"
  34001. }
  34002. },
  34003. },
  34004. [
  34005. {
  34006. name: "Shrunken",
  34007. height: math.unit(5, "inches")
  34008. },
  34009. {
  34010. name: "Normal",
  34011. height: math.unit(6 + 4 / 12, "feet"),
  34012. default: true
  34013. },
  34014. {
  34015. name: "Big",
  34016. height: math.unit(15, "feet")
  34017. },
  34018. ]
  34019. ))
  34020. characterMakers.push(() => makeCharacter(
  34021. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  34022. {
  34023. front: {
  34024. height: math.unit(5 + 8/12, "feet"),
  34025. weight: math.unit(190, "lb"),
  34026. name: "Front",
  34027. image: {
  34028. source: "./media/characters/oven-otter/front.svg",
  34029. extra: 1809/1740,
  34030. bottom: 181/1990
  34031. }
  34032. },
  34033. back: {
  34034. height: math.unit(5 + 8/12, "feet"),
  34035. weight: math.unit(190, "lb"),
  34036. name: "Back",
  34037. image: {
  34038. source: "./media/characters/oven-otter/back.svg",
  34039. extra: 1709/1635,
  34040. bottom: 118/1827
  34041. }
  34042. },
  34043. hand: {
  34044. height: math.unit(1.07, "feet"),
  34045. name: "Hand",
  34046. image: {
  34047. source: "./media/characters/oven-otter/hand.svg"
  34048. }
  34049. },
  34050. beans: {
  34051. height: math.unit(1.74, "feet"),
  34052. name: "Beans",
  34053. image: {
  34054. source: "./media/characters/oven-otter/beans.svg"
  34055. }
  34056. },
  34057. },
  34058. [
  34059. {
  34060. name: "Micro",
  34061. height: math.unit(0.5, "inches")
  34062. },
  34063. {
  34064. name: "Normal",
  34065. height: math.unit(5 + 8/12, "feet"),
  34066. default: true
  34067. },
  34068. {
  34069. name: "Macro",
  34070. height: math.unit(250, "feet")
  34071. },
  34072. {
  34073. name: "Really High",
  34074. height: math.unit(420, "feet")
  34075. },
  34076. ]
  34077. ))
  34078. characterMakers.push(() => makeCharacter(
  34079. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  34080. {
  34081. front: {
  34082. height: math.unit(5, "meters"),
  34083. weight: math.unit(292000000000000, "kg"),
  34084. name: "Front",
  34085. image: {
  34086. source: "./media/characters/devourer/front.svg",
  34087. extra: 1800/1733,
  34088. bottom: 211/2011
  34089. }
  34090. },
  34091. maw: {
  34092. height: math.unit(1.1, "meter"),
  34093. name: "Maw",
  34094. image: {
  34095. source: "./media/characters/devourer/maw.svg"
  34096. }
  34097. },
  34098. },
  34099. [
  34100. {
  34101. name: "Small",
  34102. height: math.unit(3, "meters")
  34103. },
  34104. {
  34105. name: "Large",
  34106. height: math.unit(5, "meters"),
  34107. default: true
  34108. },
  34109. ]
  34110. ))
  34111. characterMakers.push(() => makeCharacter(
  34112. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  34113. {
  34114. front: {
  34115. height: math.unit(6, "feet"),
  34116. weight: math.unit(400, "lb"),
  34117. name: "Front",
  34118. image: {
  34119. source: "./media/characters/ellarby/front.svg",
  34120. extra: 1909/1763,
  34121. bottom: 80/1989
  34122. }
  34123. },
  34124. back: {
  34125. height: math.unit(6, "feet"),
  34126. weight: math.unit(400, "lb"),
  34127. name: "Back",
  34128. image: {
  34129. source: "./media/characters/ellarby/back.svg",
  34130. extra: 1914/1784,
  34131. bottom: 172/2086
  34132. }
  34133. },
  34134. },
  34135. [
  34136. {
  34137. name: "Mischief",
  34138. height: math.unit(18, "inches")
  34139. },
  34140. {
  34141. name: "Trouble",
  34142. height: math.unit(12, "feet")
  34143. },
  34144. {
  34145. name: "Havoc",
  34146. height: math.unit(200, "feet"),
  34147. default: true
  34148. },
  34149. {
  34150. name: "Pandemonium",
  34151. height: math.unit(1, "mile")
  34152. },
  34153. {
  34154. name: "Catastrophe",
  34155. height: math.unit(100, "miles")
  34156. },
  34157. ]
  34158. ))
  34159. characterMakers.push(() => makeCharacter(
  34160. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  34161. {
  34162. front: {
  34163. height: math.unit(4.7, "meters"),
  34164. weight: math.unit(6500, "kg"),
  34165. name: "Front",
  34166. image: {
  34167. source: "./media/characters/vex/front.svg",
  34168. extra: 1288/1140,
  34169. bottom: 100/1388
  34170. }
  34171. },
  34172. },
  34173. [
  34174. {
  34175. name: "Normal",
  34176. height: math.unit(4.7, "meters"),
  34177. default: true
  34178. },
  34179. ]
  34180. ))
  34181. characterMakers.push(() => makeCharacter(
  34182. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  34183. {
  34184. normal: {
  34185. height: math.unit(6, "feet"),
  34186. weight: math.unit(350, "lb"),
  34187. name: "Normal",
  34188. image: {
  34189. source: "./media/characters/teshy/normal.svg",
  34190. extra: 1795/1735,
  34191. bottom: 16/1811
  34192. }
  34193. },
  34194. monsterFront: {
  34195. height: math.unit(12, "feet"),
  34196. weight: math.unit(4700, "lb"),
  34197. name: "Monster (Front)",
  34198. image: {
  34199. source: "./media/characters/teshy/monster-front.svg",
  34200. extra: 2042/2034,
  34201. bottom: 128/2170
  34202. }
  34203. },
  34204. monsterSide: {
  34205. height: math.unit(12, "feet"),
  34206. weight: math.unit(4700, "lb"),
  34207. name: "Monster (Side)",
  34208. image: {
  34209. source: "./media/characters/teshy/monster-side.svg",
  34210. extra: 2067/2056,
  34211. bottom: 70/2137
  34212. }
  34213. },
  34214. monsterBack: {
  34215. height: math.unit(12, "feet"),
  34216. weight: math.unit(4700, "lb"),
  34217. name: "Monster (Back)",
  34218. image: {
  34219. source: "./media/characters/teshy/monster-back.svg",
  34220. extra: 1921/1914,
  34221. bottom: 171/2092
  34222. }
  34223. },
  34224. },
  34225. [
  34226. {
  34227. name: "Normal",
  34228. height: math.unit(6, "feet"),
  34229. default: true
  34230. },
  34231. ]
  34232. ))
  34233. characterMakers.push(() => makeCharacter(
  34234. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  34235. {
  34236. front: {
  34237. height: math.unit(6, "feet"),
  34238. name: "Front",
  34239. image: {
  34240. source: "./media/characters/ramey/front.svg",
  34241. extra: 790/787,
  34242. bottom: 27/817
  34243. }
  34244. },
  34245. },
  34246. [
  34247. {
  34248. name: "Normal",
  34249. height: math.unit(6, "feet"),
  34250. default: true
  34251. },
  34252. ]
  34253. ))
  34254. characterMakers.push(() => makeCharacter(
  34255. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  34256. {
  34257. front: {
  34258. height: math.unit(5 + 5/12, "feet"),
  34259. weight: math.unit(120, "lb"),
  34260. name: "Front",
  34261. image: {
  34262. source: "./media/characters/phirae/front.svg",
  34263. extra: 2491/2436,
  34264. bottom: 38/2529
  34265. }
  34266. },
  34267. },
  34268. [
  34269. {
  34270. name: "Normal",
  34271. height: math.unit(5 + 5/12, "feet"),
  34272. default: true
  34273. },
  34274. ]
  34275. ))
  34276. characterMakers.push(() => makeCharacter(
  34277. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  34278. {
  34279. front: {
  34280. height: math.unit(5 + 3/12, "feet"),
  34281. name: "Front",
  34282. image: {
  34283. source: "./media/characters/stagglas/front.svg",
  34284. extra: 962/882,
  34285. bottom: 53/1015
  34286. }
  34287. },
  34288. feral: {
  34289. height: math.unit(335, "cm"),
  34290. name: "Feral",
  34291. image: {
  34292. source: "./media/characters/stagglas/feral.svg",
  34293. extra: 1732/1090,
  34294. bottom: 48/1780
  34295. }
  34296. },
  34297. },
  34298. [
  34299. {
  34300. name: "Normal",
  34301. height: math.unit(5 + 3/12, "feet"),
  34302. default: true
  34303. },
  34304. ]
  34305. ))
  34306. characterMakers.push(() => makeCharacter(
  34307. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  34308. {
  34309. front: {
  34310. height: math.unit(5 + 4/12, "feet"),
  34311. weight: math.unit(145, "lb"),
  34312. name: "Front",
  34313. image: {
  34314. source: "./media/characters/starra/front.svg",
  34315. extra: 1790/1691,
  34316. bottom: 91/1881
  34317. }
  34318. },
  34319. },
  34320. [
  34321. {
  34322. name: "Normal",
  34323. height: math.unit(5 + 4/12, "feet"),
  34324. default: true
  34325. },
  34326. ]
  34327. ))
  34328. characterMakers.push(() => makeCharacter(
  34329. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  34330. {
  34331. front: {
  34332. height: math.unit(2.2, "meters"),
  34333. name: "Front",
  34334. image: {
  34335. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  34336. extra: 1194/1005,
  34337. bottom: 25/1219
  34338. }
  34339. },
  34340. },
  34341. [
  34342. {
  34343. name: "Normal",
  34344. height: math.unit(2.2, "meters"),
  34345. default: true
  34346. },
  34347. ]
  34348. ))
  34349. characterMakers.push(() => makeCharacter(
  34350. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  34351. {
  34352. side: {
  34353. height: math.unit(8 + 2/12, "feet"),
  34354. weight: math.unit(1240, "lb"),
  34355. name: "Side",
  34356. image: {
  34357. source: "./media/characters/mika-valentine/side.svg",
  34358. extra: 2670/2501,
  34359. bottom: 250/2920
  34360. }
  34361. },
  34362. },
  34363. [
  34364. {
  34365. name: "Normal",
  34366. height: math.unit(8 + 2/12, "feet"),
  34367. default: true
  34368. },
  34369. ]
  34370. ))
  34371. characterMakers.push(() => makeCharacter(
  34372. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  34373. {
  34374. front: {
  34375. height: math.unit(7 + 2/12, "feet"),
  34376. name: "Front",
  34377. image: {
  34378. source: "./media/characters/xoltol/front.svg",
  34379. extra: 2212/2124,
  34380. bottom: 84/2296
  34381. }
  34382. },
  34383. side: {
  34384. height: math.unit(7 + 2/12, "feet"),
  34385. name: "Side",
  34386. image: {
  34387. source: "./media/characters/xoltol/side.svg",
  34388. extra: 2273/2197,
  34389. bottom: 26/2299
  34390. }
  34391. },
  34392. hand: {
  34393. height: math.unit(2.5, "feet"),
  34394. name: "Hand",
  34395. image: {
  34396. source: "./media/characters/xoltol/hand.svg"
  34397. }
  34398. },
  34399. },
  34400. [
  34401. {
  34402. name: "Small-ish",
  34403. height: math.unit(5 + 11/12, "feet")
  34404. },
  34405. {
  34406. name: "Normal",
  34407. height: math.unit(7 + 2/12, "feet")
  34408. },
  34409. {
  34410. name: "\"Macro\"",
  34411. height: math.unit(14 + 9/12, "feet"),
  34412. default: true
  34413. },
  34414. {
  34415. name: "Alternate Height",
  34416. height: math.unit(20, "feet")
  34417. },
  34418. {
  34419. name: "Actually Macro",
  34420. height: math.unit(100, "feet")
  34421. },
  34422. ]
  34423. ))
  34424. characterMakers.push(() => makeCharacter(
  34425. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  34426. {
  34427. front: {
  34428. height: math.unit(5 + 2/12, "feet"),
  34429. name: "Front",
  34430. image: {
  34431. source: "./media/characters/kotetsu-redwood/front.svg",
  34432. extra: 1053/942,
  34433. bottom: 60/1113
  34434. }
  34435. },
  34436. },
  34437. [
  34438. {
  34439. name: "Normal",
  34440. height: math.unit(5 + 2/12, "feet"),
  34441. default: true
  34442. },
  34443. ]
  34444. ))
  34445. characterMakers.push(() => makeCharacter(
  34446. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  34447. {
  34448. front: {
  34449. height: math.unit(2.4, "meters"),
  34450. weight: math.unit(125, "kg"),
  34451. name: "Front",
  34452. image: {
  34453. source: "./media/characters/lilith/front.svg",
  34454. extra: 1590/1513,
  34455. bottom: 203/1793
  34456. }
  34457. },
  34458. },
  34459. [
  34460. {
  34461. name: "Humanoid",
  34462. height: math.unit(2.4, "meters")
  34463. },
  34464. {
  34465. name: "Normal",
  34466. height: math.unit(6, "meters"),
  34467. default: true
  34468. },
  34469. {
  34470. name: "Largest",
  34471. height: math.unit(55, "meters")
  34472. },
  34473. ]
  34474. ))
  34475. characterMakers.push(() => makeCharacter(
  34476. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  34477. {
  34478. front: {
  34479. height: math.unit(8 + 4/12, "feet"),
  34480. weight: math.unit(535, "lb"),
  34481. name: "Front",
  34482. image: {
  34483. source: "./media/characters/beh'kah-bolger/front.svg",
  34484. extra: 1660/1603,
  34485. bottom: 37/1697
  34486. }
  34487. },
  34488. },
  34489. [
  34490. {
  34491. name: "Normal",
  34492. height: math.unit(8 + 4/12, "feet"),
  34493. default: true
  34494. },
  34495. {
  34496. name: "Kaiju",
  34497. height: math.unit(250, "feet")
  34498. },
  34499. {
  34500. name: "Still Growing",
  34501. height: math.unit(10, "miles")
  34502. },
  34503. {
  34504. name: "Continental",
  34505. height: math.unit(5000, "miles")
  34506. },
  34507. {
  34508. name: "Final Form",
  34509. height: math.unit(2500000, "miles")
  34510. },
  34511. ]
  34512. ))
  34513. characterMakers.push(() => makeCharacter(
  34514. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  34515. {
  34516. front: {
  34517. height: math.unit(7 + 2/12, "feet"),
  34518. weight: math.unit(230, "kg"),
  34519. name: "Front",
  34520. image: {
  34521. source: "./media/characters/tatyana-milewska/front.svg",
  34522. extra: 1199/1150,
  34523. bottom: 86/1285
  34524. }
  34525. },
  34526. },
  34527. [
  34528. {
  34529. name: "Normal",
  34530. height: math.unit(7 + 2/12, "feet"),
  34531. default: true
  34532. },
  34533. {
  34534. name: "Big",
  34535. height: math.unit(12, "feet")
  34536. },
  34537. {
  34538. name: "Minimacro",
  34539. height: math.unit(20, "feet")
  34540. },
  34541. {
  34542. name: "Macro",
  34543. height: math.unit(120, "feet")
  34544. },
  34545. ]
  34546. ))
  34547. characterMakers.push(() => makeCharacter(
  34548. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  34549. {
  34550. front: {
  34551. height: math.unit(7 + 8/12, "feet"),
  34552. weight: math.unit(152, "kg"),
  34553. name: "Front",
  34554. image: {
  34555. source: "./media/characters/helen-arri/front.svg",
  34556. extra: 440/423,
  34557. bottom: 14/454
  34558. }
  34559. },
  34560. back: {
  34561. height: math.unit(7 + 8/12, "feet"),
  34562. weight: math.unit(152, "kg"),
  34563. name: "Back",
  34564. image: {
  34565. source: "./media/characters/helen-arri/back.svg",
  34566. extra: 443/426,
  34567. bottom: 8/451
  34568. }
  34569. },
  34570. },
  34571. [
  34572. {
  34573. name: "Normal",
  34574. height: math.unit(7 + 8/12, "feet"),
  34575. default: true
  34576. },
  34577. {
  34578. name: "Big",
  34579. height: math.unit(14, "feet")
  34580. },
  34581. {
  34582. name: "Minimacro",
  34583. height: math.unit(24, "feet")
  34584. },
  34585. {
  34586. name: "Macro",
  34587. height: math.unit(140, "feet")
  34588. },
  34589. ]
  34590. ))
  34591. characterMakers.push(() => makeCharacter(
  34592. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  34593. {
  34594. front: {
  34595. height: math.unit(6, "meters"),
  34596. name: "Front",
  34597. image: {
  34598. source: "./media/characters/ehanu-rehu/front.svg",
  34599. extra: 1800/1800,
  34600. bottom: 59/1859
  34601. }
  34602. },
  34603. },
  34604. [
  34605. {
  34606. name: "Normal",
  34607. height: math.unit(6, "meters"),
  34608. default: true
  34609. },
  34610. ]
  34611. ))
  34612. characterMakers.push(() => makeCharacter(
  34613. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  34614. {
  34615. front: {
  34616. height: math.unit(7 + 3/12, "feet"),
  34617. name: "Front",
  34618. image: {
  34619. source: "./media/characters/renholder/front.svg",
  34620. extra: 3096/2960,
  34621. bottom: 250/3346
  34622. }
  34623. },
  34624. },
  34625. [
  34626. {
  34627. name: "Normal Bat",
  34628. height: math.unit(7 + 3/12, "feet"),
  34629. default: true
  34630. },
  34631. {
  34632. name: "Slightly Tall Bat",
  34633. height: math.unit(100, "feet")
  34634. },
  34635. {
  34636. name: "Big Bat",
  34637. height: math.unit(1000, "feet")
  34638. },
  34639. {
  34640. name: "City-Sized Bat",
  34641. height: math.unit(200000, "feet")
  34642. },
  34643. {
  34644. name: "Bigger Bat",
  34645. height: math.unit(10000, "miles")
  34646. },
  34647. {
  34648. name: "Solar Sized Bat",
  34649. height: math.unit(100, "AU")
  34650. },
  34651. {
  34652. name: "Galactic Bat",
  34653. height: math.unit(200000, "lightyears")
  34654. },
  34655. {
  34656. name: "Universally Known Bat",
  34657. height: math.unit(1, "universe")
  34658. },
  34659. ]
  34660. ))
  34661. characterMakers.push(() => makeCharacter(
  34662. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  34663. {
  34664. front: {
  34665. height: math.unit(6 + 11/12, "feet"),
  34666. weight: math.unit(250, "lb"),
  34667. name: "Front",
  34668. image: {
  34669. source: "./media/characters/cookiecat/front.svg",
  34670. extra: 893/827,
  34671. bottom: 14/907
  34672. }
  34673. },
  34674. },
  34675. [
  34676. {
  34677. name: "Micro",
  34678. height: math.unit(3, "inches")
  34679. },
  34680. {
  34681. name: "Normal",
  34682. height: math.unit(6 + 11/12, "feet"),
  34683. default: true
  34684. },
  34685. {
  34686. name: "Macro",
  34687. height: math.unit(100, "feet")
  34688. },
  34689. {
  34690. name: "Macro+",
  34691. height: math.unit(404, "feet")
  34692. },
  34693. {
  34694. name: "Megamacro",
  34695. height: math.unit(165, "miles")
  34696. },
  34697. {
  34698. name: "Planetary",
  34699. height: math.unit(4600, "miles")
  34700. },
  34701. ]
  34702. ))
  34703. characterMakers.push(() => makeCharacter(
  34704. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  34705. {
  34706. front: {
  34707. height: math.unit(10 + 3/12, "feet"),
  34708. weight: math.unit(1500, "lb"),
  34709. name: "Front",
  34710. image: {
  34711. source: "./media/characters/tux-kusanagi/front.svg",
  34712. extra: 944/840,
  34713. bottom: 39/983
  34714. }
  34715. },
  34716. back: {
  34717. height: math.unit(10 + 3/12, "feet"),
  34718. weight: math.unit(1500, "lb"),
  34719. name: "Back",
  34720. image: {
  34721. source: "./media/characters/tux-kusanagi/back.svg",
  34722. extra: 941/842,
  34723. bottom: 28/969
  34724. }
  34725. },
  34726. rump: {
  34727. height: math.unit(5.25, "feet"),
  34728. name: "Rump",
  34729. image: {
  34730. source: "./media/characters/tux-kusanagi/rump.svg"
  34731. }
  34732. },
  34733. beak: {
  34734. height: math.unit(1.54, "feet"),
  34735. name: "Beak",
  34736. image: {
  34737. source: "./media/characters/tux-kusanagi/beak.svg"
  34738. }
  34739. },
  34740. },
  34741. [
  34742. {
  34743. name: "Normal",
  34744. height: math.unit(10 + 3/12, "feet"),
  34745. default: true
  34746. },
  34747. ]
  34748. ))
  34749. characterMakers.push(() => makeCharacter(
  34750. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  34751. {
  34752. front: {
  34753. height: math.unit(58, "feet"),
  34754. weight: math.unit(200, "tons"),
  34755. name: "Front",
  34756. image: {
  34757. source: "./media/characters/uzarmazari/front.svg",
  34758. extra: 1575/1455,
  34759. bottom: 152/1727
  34760. }
  34761. },
  34762. back: {
  34763. height: math.unit(58, "feet"),
  34764. weight: math.unit(200, "tons"),
  34765. name: "Back",
  34766. image: {
  34767. source: "./media/characters/uzarmazari/back.svg",
  34768. extra: 1585/1510,
  34769. bottom: 157/1742
  34770. }
  34771. },
  34772. head: {
  34773. height: math.unit(26, "feet"),
  34774. name: "Head",
  34775. image: {
  34776. source: "./media/characters/uzarmazari/head.svg"
  34777. }
  34778. },
  34779. },
  34780. [
  34781. {
  34782. name: "Normal",
  34783. height: math.unit(58, "feet"),
  34784. default: true
  34785. },
  34786. ]
  34787. ))
  34788. characterMakers.push(() => makeCharacter(
  34789. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  34790. {
  34791. side: {
  34792. height: math.unit(15, "feet"),
  34793. name: "Side",
  34794. image: {
  34795. source: "./media/characters/akitu/side.svg",
  34796. extra: 1421/1321,
  34797. bottom: 157/1578
  34798. }
  34799. },
  34800. front: {
  34801. height: math.unit(15, "feet"),
  34802. name: "Front",
  34803. image: {
  34804. source: "./media/characters/akitu/front.svg",
  34805. extra: 1435/1326,
  34806. bottom: 232/1667
  34807. }
  34808. },
  34809. },
  34810. [
  34811. {
  34812. name: "Normal",
  34813. height: math.unit(15, "feet"),
  34814. default: true
  34815. },
  34816. ]
  34817. ))
  34818. characterMakers.push(() => makeCharacter(
  34819. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  34820. {
  34821. front: {
  34822. height: math.unit(10 + 8/12, "feet"),
  34823. name: "Front",
  34824. image: {
  34825. source: "./media/characters/azalie-croixland/front.svg",
  34826. extra: 1972/1856,
  34827. bottom: 31/2003
  34828. }
  34829. },
  34830. },
  34831. [
  34832. {
  34833. name: "Original Height",
  34834. height: math.unit(5 + 4/12, "feet")
  34835. },
  34836. {
  34837. name: "Normal Height",
  34838. height: math.unit(10 + 8/12, "feet"),
  34839. default: true
  34840. },
  34841. ]
  34842. ))
  34843. characterMakers.push(() => makeCharacter(
  34844. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  34845. {
  34846. side: {
  34847. height: math.unit(7 + 1/12, "feet"),
  34848. weight: math.unit(245, "lb"),
  34849. name: "Side",
  34850. image: {
  34851. source: "./media/characters/kavus-kazian/side.svg",
  34852. extra: 349/342,
  34853. bottom: 15/364
  34854. }
  34855. },
  34856. },
  34857. [
  34858. {
  34859. name: "Normal",
  34860. height: math.unit(7 + 1/12, "feet"),
  34861. default: true
  34862. },
  34863. ]
  34864. ))
  34865. characterMakers.push(() => makeCharacter(
  34866. { name: "Moonlight Rose", species: ["eevee"], tags: ["anthro"] },
  34867. {
  34868. normal: {
  34869. height: math.unit(5 + 11/12, "feet"),
  34870. name: "Normal",
  34871. image: {
  34872. source: "./media/characters/moonlight-rose/normal.svg",
  34873. extra: 1979/1835,
  34874. bottom: 14/1993
  34875. }
  34876. },
  34877. demon: {
  34878. height: math.unit(5, "km"),
  34879. name: "Demon",
  34880. image: {
  34881. source: "./media/characters/moonlight-rose/demon.svg",
  34882. extra: 986/916,
  34883. bottom: 28/1014
  34884. }
  34885. },
  34886. },
  34887. [
  34888. {
  34889. name: "\"Natural\" height",
  34890. height: math.unit(5 + 11/12, "feet")
  34891. },
  34892. {
  34893. name: "Comfortable Size",
  34894. height: math.unit(40, "meters")
  34895. },
  34896. {
  34897. name: "Common Size",
  34898. height: math.unit(50, "km"),
  34899. default: true
  34900. },
  34901. {
  34902. name: "Demonic",
  34903. height: math.unit(1.24415e+21, "meters")
  34904. },
  34905. ]
  34906. ))
  34907. characterMakers.push(() => makeCharacter(
  34908. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  34909. {
  34910. front: {
  34911. height: math.unit(16, "feet"),
  34912. weight: math.unit(610, "kg"),
  34913. name: "Front",
  34914. image: {
  34915. source: "./media/characters/huckle/front.svg",
  34916. extra: 1731/1625,
  34917. bottom: 33/1764
  34918. }
  34919. },
  34920. back: {
  34921. height: math.unit(16, "feet"),
  34922. weight: math.unit(610, "kg"),
  34923. name: "Back",
  34924. image: {
  34925. source: "./media/characters/huckle/back.svg",
  34926. extra: 1738/1651,
  34927. bottom: 37/1775
  34928. }
  34929. },
  34930. laughing: {
  34931. height: math.unit(3.75, "feet"),
  34932. name: "Laughing",
  34933. image: {
  34934. source: "./media/characters/huckle/laughing.svg"
  34935. }
  34936. },
  34937. angry: {
  34938. height: math.unit(4.15, "feet"),
  34939. name: "Angry",
  34940. image: {
  34941. source: "./media/characters/huckle/angry.svg"
  34942. }
  34943. },
  34944. },
  34945. [
  34946. {
  34947. name: "Normal",
  34948. height: math.unit(16, "feet"),
  34949. default: true
  34950. },
  34951. {
  34952. name: "Mini Macro",
  34953. height: math.unit(463, "feet")
  34954. },
  34955. {
  34956. name: "Macro",
  34957. height: math.unit(1680, "meters")
  34958. },
  34959. {
  34960. name: "Mega Macro",
  34961. height: math.unit(175, "km")
  34962. },
  34963. {
  34964. name: "Terra Macro",
  34965. height: math.unit(32, "gigameters")
  34966. },
  34967. {
  34968. name: "Multiverse+",
  34969. height: math.unit(2.56e23, "yottameters")
  34970. },
  34971. ]
  34972. ))
  34973. characterMakers.push(() => makeCharacter(
  34974. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  34975. {
  34976. front: {
  34977. height: math.unit(6 + 9/12, "feet"),
  34978. weight: math.unit(280, "lb"),
  34979. name: "Front",
  34980. image: {
  34981. source: "./media/characters/candy/front.svg",
  34982. extra: 234/217,
  34983. bottom: 11/245
  34984. }
  34985. },
  34986. },
  34987. [
  34988. {
  34989. name: "Really Small",
  34990. height: math.unit(0.1, "nm")
  34991. },
  34992. {
  34993. name: "Micro",
  34994. height: math.unit(2, "inches")
  34995. },
  34996. {
  34997. name: "Normal",
  34998. height: math.unit(6 + 9/12, "feet"),
  34999. default: true
  35000. },
  35001. {
  35002. name: "Small Macro",
  35003. height: math.unit(69, "feet")
  35004. },
  35005. {
  35006. name: "Macro",
  35007. height: math.unit(160, "feet")
  35008. },
  35009. {
  35010. name: "Megamacro",
  35011. height: math.unit(22000, "miles")
  35012. },
  35013. {
  35014. name: "Gigamacro",
  35015. height: math.unit(50000, "miles")
  35016. },
  35017. ]
  35018. ))
  35019. characterMakers.push(() => makeCharacter(
  35020. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  35021. {
  35022. front: {
  35023. height: math.unit(4, "feet"),
  35024. weight: math.unit(90, "lb"),
  35025. name: "Front",
  35026. image: {
  35027. source: "./media/characters/joey-mcdonald/front.svg",
  35028. extra: 1059/852,
  35029. bottom: 33/1092
  35030. }
  35031. },
  35032. back: {
  35033. height: math.unit(4, "feet"),
  35034. weight: math.unit(90, "lb"),
  35035. name: "Back",
  35036. image: {
  35037. source: "./media/characters/joey-mcdonald/back.svg",
  35038. extra: 1077/879,
  35039. bottom: 5/1082
  35040. }
  35041. },
  35042. frontKobold: {
  35043. height: math.unit(4, "feet"),
  35044. weight: math.unit(100, "lb"),
  35045. name: "Front-kobold",
  35046. image: {
  35047. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  35048. extra: 1480/1367,
  35049. bottom: 0/1480
  35050. }
  35051. },
  35052. backKobold: {
  35053. height: math.unit(4, "feet"),
  35054. weight: math.unit(100, "lb"),
  35055. name: "Back-kobold",
  35056. image: {
  35057. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  35058. extra: 1449/1361,
  35059. bottom: 0/1449
  35060. }
  35061. },
  35062. },
  35063. [
  35064. {
  35065. name: "Normal",
  35066. height: math.unit(4, "feet"),
  35067. default: true
  35068. },
  35069. ]
  35070. ))
  35071. characterMakers.push(() => makeCharacter(
  35072. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  35073. {
  35074. front: {
  35075. height: math.unit(12 + 6/12, "feet"),
  35076. name: "Front",
  35077. image: {
  35078. source: "./media/characters/kass-lockheed/front.svg",
  35079. extra: 354/343,
  35080. bottom: 9/363
  35081. }
  35082. },
  35083. back: {
  35084. height: math.unit(12 + 6/12, "feet"),
  35085. name: "Back",
  35086. image: {
  35087. source: "./media/characters/kass-lockheed/back.svg",
  35088. extra: 364/352,
  35089. bottom: 3/367
  35090. }
  35091. },
  35092. dick: {
  35093. height: math.unit(3.12, "feet"),
  35094. name: "Dick",
  35095. image: {
  35096. source: "./media/characters/kass-lockheed/dick.svg"
  35097. }
  35098. },
  35099. head: {
  35100. height: math.unit(2.6, "feet"),
  35101. name: "Head",
  35102. image: {
  35103. source: "./media/characters/kass-lockheed/head.svg"
  35104. }
  35105. },
  35106. bleh: {
  35107. height: math.unit(2.85, "feet"),
  35108. name: "Bleh",
  35109. image: {
  35110. source: "./media/characters/kass-lockheed/bleh.svg"
  35111. }
  35112. },
  35113. smug: {
  35114. height: math.unit(2.85, "feet"),
  35115. name: "Smug",
  35116. image: {
  35117. source: "./media/characters/kass-lockheed/smug.svg"
  35118. }
  35119. },
  35120. },
  35121. [
  35122. {
  35123. name: "Normal",
  35124. height: math.unit(12 + 6/12, "feet"),
  35125. default: true
  35126. },
  35127. ]
  35128. ))
  35129. characterMakers.push(() => makeCharacter(
  35130. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  35131. {
  35132. front: {
  35133. height: math.unit(6 + 2/12, "feet"),
  35134. name: "Front",
  35135. image: {
  35136. source: "./media/characters/taylor/front.svg",
  35137. extra: 639/495,
  35138. bottom: 12/651
  35139. }
  35140. },
  35141. },
  35142. [
  35143. {
  35144. name: "Normal",
  35145. height: math.unit(6 + 2/12, "feet"),
  35146. default: true
  35147. },
  35148. {
  35149. name: "Big",
  35150. height: math.unit(15, "feet")
  35151. },
  35152. {
  35153. name: "Lorg",
  35154. height: math.unit(80, "feet")
  35155. },
  35156. {
  35157. name: "Too Lorg",
  35158. height: math.unit(120, "feet")
  35159. },
  35160. ]
  35161. ))
  35162. characterMakers.push(() => makeCharacter(
  35163. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  35164. {
  35165. front: {
  35166. height: math.unit(15, "feet"),
  35167. name: "Front",
  35168. image: {
  35169. source: "./media/characters/kaizer/front.svg",
  35170. extra: 1612/1436,
  35171. bottom: 43/1655
  35172. }
  35173. },
  35174. },
  35175. [
  35176. {
  35177. name: "Normal",
  35178. height: math.unit(15, "feet"),
  35179. default: true
  35180. },
  35181. ]
  35182. ))
  35183. characterMakers.push(() => makeCharacter(
  35184. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  35185. {
  35186. front: {
  35187. height: math.unit(2, "feet"),
  35188. weight: math.unit(30, "lb"),
  35189. name: "Front",
  35190. image: {
  35191. source: "./media/characters/sandy/front.svg",
  35192. extra: 1439/1307,
  35193. bottom: 194/1633
  35194. }
  35195. },
  35196. },
  35197. [
  35198. {
  35199. name: "Normal",
  35200. height: math.unit(2, "feet"),
  35201. default: true
  35202. },
  35203. ]
  35204. ))
  35205. characterMakers.push(() => makeCharacter(
  35206. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  35207. {
  35208. front: {
  35209. height: math.unit(3, "feet"),
  35210. name: "Front",
  35211. image: {
  35212. source: "./media/characters/mellvi/front.svg",
  35213. extra: 1831/1630,
  35214. bottom: 58/1889
  35215. }
  35216. },
  35217. },
  35218. [
  35219. {
  35220. name: "Normal",
  35221. height: math.unit(3, "feet"),
  35222. default: true
  35223. },
  35224. ]
  35225. ))
  35226. characterMakers.push(() => makeCharacter(
  35227. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  35228. {
  35229. front: {
  35230. height: math.unit(5 + 11/12, "feet"),
  35231. weight: math.unit(200, "lb"),
  35232. name: "Front",
  35233. image: {
  35234. source: "./media/characters/shirou/front.svg",
  35235. extra: 2491/2383,
  35236. bottom: 189/2680
  35237. }
  35238. },
  35239. back: {
  35240. height: math.unit(5 + 11/12, "feet"),
  35241. weight: math.unit(200, "lb"),
  35242. name: "Back",
  35243. image: {
  35244. source: "./media/characters/shirou/back.svg",
  35245. extra: 2554/2450,
  35246. bottom: 76/2630
  35247. }
  35248. },
  35249. },
  35250. [
  35251. {
  35252. name: "Normal",
  35253. height: math.unit(5 + 11/12, "feet"),
  35254. default: true
  35255. },
  35256. ]
  35257. ))
  35258. characterMakers.push(() => makeCharacter(
  35259. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  35260. {
  35261. front: {
  35262. height: math.unit(6 + 3/12, "feet"),
  35263. weight: math.unit(177, "lb"),
  35264. name: "Front",
  35265. image: {
  35266. source: "./media/characters/noryu/front.svg",
  35267. extra: 973/885,
  35268. bottom: 10/983
  35269. }
  35270. },
  35271. },
  35272. [
  35273. {
  35274. name: "Normal",
  35275. height: math.unit(6 + 3/12, "feet"),
  35276. default: true
  35277. },
  35278. ]
  35279. ))
  35280. characterMakers.push(() => makeCharacter(
  35281. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  35282. {
  35283. front: {
  35284. height: math.unit(5 + 6/12, "feet"),
  35285. weight: math.unit(170, "lb"),
  35286. name: "Front",
  35287. image: {
  35288. source: "./media/characters/mevolas-rubenido/front.svg",
  35289. extra: 2109/1901,
  35290. bottom: 96/2205
  35291. }
  35292. },
  35293. },
  35294. [
  35295. {
  35296. name: "Normal",
  35297. height: math.unit(5 + 6/12, "feet"),
  35298. default: true
  35299. },
  35300. ]
  35301. ))
  35302. characterMakers.push(() => makeCharacter(
  35303. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  35304. {
  35305. front: {
  35306. height: math.unit(100, "feet"),
  35307. name: "Front",
  35308. image: {
  35309. source: "./media/characters/dee/front.svg",
  35310. extra: 2153/2036,
  35311. bottom: 59/2212
  35312. }
  35313. },
  35314. back: {
  35315. height: math.unit(100, "feet"),
  35316. name: "Back",
  35317. image: {
  35318. source: "./media/characters/dee/back.svg",
  35319. extra: 2183/2058,
  35320. bottom: 75/2258
  35321. }
  35322. },
  35323. foot: {
  35324. height: math.unit(19.43, "feet"),
  35325. name: "Foot",
  35326. image: {
  35327. source: "./media/characters/dee/foot.svg"
  35328. }
  35329. },
  35330. hoof: {
  35331. height: math.unit(20.6, "feet"),
  35332. name: "Hoof",
  35333. image: {
  35334. source: "./media/characters/dee/hoof.svg"
  35335. }
  35336. },
  35337. },
  35338. [
  35339. {
  35340. name: "Macro",
  35341. height: math.unit(100, "feet"),
  35342. default: true
  35343. },
  35344. ]
  35345. ))
  35346. characterMakers.push(() => makeCharacter(
  35347. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  35348. {
  35349. front: {
  35350. height: math.unit(5 + 6/12, "feet"),
  35351. name: "Front",
  35352. image: {
  35353. source: "./media/characters/teh/front.svg",
  35354. extra: 1002/847,
  35355. bottom: 62/1064
  35356. }
  35357. },
  35358. },
  35359. [
  35360. {
  35361. name: "Normal",
  35362. height: math.unit(5 + 6/12, "feet"),
  35363. default: true
  35364. },
  35365. ]
  35366. ))
  35367. characterMakers.push(() => makeCharacter(
  35368. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  35369. {
  35370. side: {
  35371. height: math.unit(6 + 1/12, "feet"),
  35372. weight: math.unit(204, "lb"),
  35373. name: "Side",
  35374. image: {
  35375. source: "./media/characters/quicksilver-ayukoti/side.svg",
  35376. extra: 974/775,
  35377. bottom: 169/1143
  35378. }
  35379. },
  35380. sitting: {
  35381. height: math.unit(6 + 2/12, "feet"),
  35382. weight: math.unit(204, "lb"),
  35383. name: "Sitting",
  35384. image: {
  35385. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  35386. extra: 1175/964,
  35387. bottom: 378/1553
  35388. }
  35389. },
  35390. },
  35391. [
  35392. {
  35393. name: "Normal",
  35394. height: math.unit(6 + 1/12, "feet"),
  35395. default: true
  35396. },
  35397. ]
  35398. ))
  35399. characterMakers.push(() => makeCharacter(
  35400. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  35401. {
  35402. front: {
  35403. height: math.unit(6, "inches"),
  35404. name: "Front",
  35405. image: {
  35406. source: "./media/characters/tululi/front.svg",
  35407. extra: 1997/1876,
  35408. bottom: 20/2017
  35409. }
  35410. },
  35411. },
  35412. [
  35413. {
  35414. name: "Normal",
  35415. height: math.unit(6, "inches"),
  35416. default: true
  35417. },
  35418. ]
  35419. ))
  35420. characterMakers.push(() => makeCharacter(
  35421. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  35422. {
  35423. front: {
  35424. height: math.unit(4 + 1/12, "feet"),
  35425. name: "Front",
  35426. image: {
  35427. source: "./media/characters/star/front.svg",
  35428. extra: 1493/1189,
  35429. bottom: 48/1541
  35430. }
  35431. },
  35432. },
  35433. [
  35434. {
  35435. name: "Normal",
  35436. height: math.unit(4 + 1/12, "feet"),
  35437. default: true
  35438. },
  35439. ]
  35440. ))
  35441. characterMakers.push(() => makeCharacter(
  35442. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  35443. {
  35444. front: {
  35445. height: math.unit(6 + 3/12, "feet"),
  35446. name: "Front",
  35447. image: {
  35448. source: "./media/characters/comet/front.svg",
  35449. extra: 1681/1462,
  35450. bottom: 26/1707
  35451. }
  35452. },
  35453. },
  35454. [
  35455. {
  35456. name: "Normal",
  35457. height: math.unit(6 + 3/12, "feet"),
  35458. default: true
  35459. },
  35460. ]
  35461. ))
  35462. characterMakers.push(() => makeCharacter(
  35463. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  35464. {
  35465. front: {
  35466. height: math.unit(950, "feet"),
  35467. name: "Front",
  35468. image: {
  35469. source: "./media/characters/vortex/front.svg",
  35470. extra: 1497/1434,
  35471. bottom: 56/1553
  35472. }
  35473. },
  35474. maw: {
  35475. height: math.unit(285, "feet"),
  35476. name: "Maw",
  35477. image: {
  35478. source: "./media/characters/vortex/maw.svg"
  35479. }
  35480. },
  35481. },
  35482. [
  35483. {
  35484. name: "Macro",
  35485. height: math.unit(950, "feet"),
  35486. default: true
  35487. },
  35488. ]
  35489. ))
  35490. characterMakers.push(() => makeCharacter(
  35491. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  35492. {
  35493. front: {
  35494. height: math.unit(600, "feet"),
  35495. weight: math.unit(0.02, "grams"),
  35496. name: "Front",
  35497. image: {
  35498. source: "./media/characters/doodle/front.svg",
  35499. extra: 1578/1413,
  35500. bottom: 37/1615
  35501. }
  35502. },
  35503. },
  35504. [
  35505. {
  35506. name: "Macro",
  35507. height: math.unit(600, "feet"),
  35508. default: true
  35509. },
  35510. ]
  35511. ))
  35512. characterMakers.push(() => makeCharacter(
  35513. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  35514. {
  35515. front: {
  35516. height: math.unit(6 + 6/12, "feet"),
  35517. name: "Front",
  35518. image: {
  35519. source: "./media/characters/jai/front.svg",
  35520. extra: 1645/1534,
  35521. bottom: 115/1760
  35522. }
  35523. },
  35524. },
  35525. [
  35526. {
  35527. name: "Normal",
  35528. height: math.unit(6 + 6/12, "feet"),
  35529. default: true
  35530. },
  35531. ]
  35532. ))
  35533. characterMakers.push(() => makeCharacter(
  35534. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  35535. {
  35536. front: {
  35537. height: math.unit(6 + 8/12, "feet"),
  35538. name: "Front",
  35539. image: {
  35540. source: "./media/characters/pixel/front.svg",
  35541. extra: 1900/1735,
  35542. bottom: 63/1963
  35543. }
  35544. },
  35545. },
  35546. [
  35547. {
  35548. name: "Normal",
  35549. height: math.unit(6 + 8/12, "feet"),
  35550. default: true
  35551. },
  35552. ]
  35553. ))
  35554. characterMakers.push(() => makeCharacter(
  35555. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  35556. {
  35557. back: {
  35558. height: math.unit(4 + 1/12, "feet"),
  35559. weight: math.unit(75, "lb"),
  35560. name: "Back",
  35561. image: {
  35562. source: "./media/characters/rhett/back.svg",
  35563. extra: 930/878,
  35564. bottom: 25/955
  35565. }
  35566. },
  35567. front: {
  35568. height: math.unit(4 + 1/12, "feet"),
  35569. weight: math.unit(75, "lb"),
  35570. name: "Front",
  35571. image: {
  35572. source: "./media/characters/rhett/front.svg",
  35573. extra: 1682/1586,
  35574. bottom: 92/1774
  35575. }
  35576. },
  35577. },
  35578. [
  35579. {
  35580. name: "Micro",
  35581. height: math.unit(8, "inches")
  35582. },
  35583. {
  35584. name: "Tiny",
  35585. height: math.unit(2, "feet")
  35586. },
  35587. {
  35588. name: "Normal",
  35589. height: math.unit(4 + 1/12, "feet"),
  35590. default: true
  35591. },
  35592. ]
  35593. ))
  35594. characterMakers.push(() => makeCharacter(
  35595. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  35596. {
  35597. front: {
  35598. height: math.unit(3 + 3/12, "feet"),
  35599. name: "Front",
  35600. image: {
  35601. source: "./media/characters/penny/front.svg",
  35602. extra: 1406/1311,
  35603. bottom: 26/1432
  35604. }
  35605. },
  35606. },
  35607. [
  35608. {
  35609. name: "Normal",
  35610. height: math.unit(3 + 3/12, "feet"),
  35611. default: true
  35612. },
  35613. ]
  35614. ))
  35615. characterMakers.push(() => makeCharacter(
  35616. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  35617. {
  35618. front: {
  35619. height: math.unit(4 + 11/12, "feet"),
  35620. name: "Front",
  35621. image: {
  35622. source: "./media/characters/monty/front.svg",
  35623. extra: 1479/1209,
  35624. bottom: 0/1479
  35625. }
  35626. },
  35627. },
  35628. [
  35629. {
  35630. name: "Normal",
  35631. height: math.unit(4 + 11/12, "feet"),
  35632. default: true
  35633. },
  35634. ]
  35635. ))
  35636. characterMakers.push(() => makeCharacter(
  35637. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  35638. {
  35639. front: {
  35640. height: math.unit(8 + 4/12, "feet"),
  35641. name: "Front",
  35642. image: {
  35643. source: "./media/characters/sterling/front.svg",
  35644. extra: 1420/1236,
  35645. bottom: 27/1447
  35646. }
  35647. },
  35648. },
  35649. [
  35650. {
  35651. name: "Normal",
  35652. height: math.unit(8 + 4/12, "feet"),
  35653. default: true
  35654. },
  35655. ]
  35656. ))
  35657. characterMakers.push(() => makeCharacter(
  35658. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  35659. {
  35660. front: {
  35661. height: math.unit(15, "feet"),
  35662. name: "Front",
  35663. image: {
  35664. source: "./media/characters/marble/front.svg",
  35665. extra: 973/937,
  35666. bottom: 32/1005
  35667. }
  35668. },
  35669. },
  35670. [
  35671. {
  35672. name: "Normal",
  35673. height: math.unit(15, "feet"),
  35674. default: true
  35675. },
  35676. ]
  35677. ))
  35678. characterMakers.push(() => makeCharacter(
  35679. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  35680. {
  35681. front: {
  35682. height: math.unit(3, "inches"),
  35683. name: "Front",
  35684. image: {
  35685. source: "./media/characters/powder/front.svg",
  35686. extra: 1504/1334,
  35687. bottom: 518/2022
  35688. }
  35689. },
  35690. },
  35691. [
  35692. {
  35693. name: "Normal",
  35694. height: math.unit(3, "inches"),
  35695. default: true
  35696. },
  35697. ]
  35698. ))
  35699. characterMakers.push(() => makeCharacter(
  35700. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  35701. {
  35702. front: {
  35703. height: math.unit(4 + 5/12, "feet"),
  35704. name: "Front",
  35705. image: {
  35706. source: "./media/characters/joey-raccoon/front.svg",
  35707. extra: 1273/1197,
  35708. bottom: 0/1273
  35709. }
  35710. },
  35711. },
  35712. [
  35713. {
  35714. name: "Normal",
  35715. height: math.unit(4 + 5/12, "feet"),
  35716. default: true
  35717. },
  35718. ]
  35719. ))
  35720. characterMakers.push(() => makeCharacter(
  35721. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  35722. {
  35723. front: {
  35724. height: math.unit(8 + 4/12, "feet"),
  35725. name: "Front",
  35726. image: {
  35727. source: "./media/characters/vick/front.svg",
  35728. extra: 2187/2118,
  35729. bottom: 47/2234
  35730. }
  35731. },
  35732. },
  35733. [
  35734. {
  35735. name: "Normal",
  35736. height: math.unit(8 + 4/12, "feet"),
  35737. default: true
  35738. },
  35739. ]
  35740. ))
  35741. characterMakers.push(() => makeCharacter(
  35742. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  35743. {
  35744. front: {
  35745. height: math.unit(5 + 5/12, "feet"),
  35746. name: "Front",
  35747. image: {
  35748. source: "./media/characters/mitsy/front.svg",
  35749. extra: 1842/1695,
  35750. bottom: 0/1842
  35751. }
  35752. },
  35753. },
  35754. [
  35755. {
  35756. name: "Normal",
  35757. height: math.unit(5 + 5/12, "feet"),
  35758. default: true
  35759. },
  35760. ]
  35761. ))
  35762. characterMakers.push(() => makeCharacter(
  35763. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  35764. {
  35765. front: {
  35766. height: math.unit(6 + 3/12, "feet"),
  35767. name: "Front",
  35768. image: {
  35769. source: "./media/characters/silvy/front.svg",
  35770. extra: 1995/1836,
  35771. bottom: 225/2220
  35772. }
  35773. },
  35774. },
  35775. [
  35776. {
  35777. name: "Normal",
  35778. height: math.unit(6 + 3/12, "feet"),
  35779. default: true
  35780. },
  35781. ]
  35782. ))
  35783. characterMakers.push(() => makeCharacter(
  35784. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  35785. {
  35786. front: {
  35787. height: math.unit(3 + 8/12, "feet"),
  35788. name: "Front",
  35789. image: {
  35790. source: "./media/characters/rodney/front.svg",
  35791. extra: 1956/1747,
  35792. bottom: 31/1987
  35793. }
  35794. },
  35795. frontDressed: {
  35796. height: math.unit(2.9, "feet"),
  35797. name: "Front (Dressed)",
  35798. image: {
  35799. source: "./media/characters/rodney/front-dressed.svg",
  35800. extra: 1382/1241,
  35801. bottom: 385/1767
  35802. }
  35803. },
  35804. },
  35805. [
  35806. {
  35807. name: "Normal",
  35808. height: math.unit(3 + 8/12, "feet"),
  35809. default: true
  35810. },
  35811. ]
  35812. ))
  35813. characterMakers.push(() => makeCharacter(
  35814. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  35815. {
  35816. front: {
  35817. height: math.unit(5 + 9/12, "feet"),
  35818. weight: math.unit(194, "lbs"),
  35819. name: "Front",
  35820. image: {
  35821. source: "./media/characters/zakail-sudekai/front.svg",
  35822. extra: 2696/2533,
  35823. bottom: 248/2944
  35824. }
  35825. },
  35826. maw: {
  35827. height: math.unit(1.35, "feet"),
  35828. name: "Maw",
  35829. image: {
  35830. source: "./media/characters/zakail-sudekai/maw.svg"
  35831. }
  35832. },
  35833. },
  35834. [
  35835. {
  35836. name: "Normal",
  35837. height: math.unit(5 + 9/12, "feet"),
  35838. default: true
  35839. },
  35840. ]
  35841. ))
  35842. characterMakers.push(() => makeCharacter(
  35843. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  35844. {
  35845. front: {
  35846. height: math.unit(8 + 4/12, "feet"),
  35847. weight: math.unit(1200, "lb"),
  35848. name: "Front",
  35849. image: {
  35850. source: "./media/characters/eleanor/front.svg",
  35851. extra: 1226/1192,
  35852. bottom: 52/1278
  35853. }
  35854. },
  35855. back: {
  35856. height: math.unit(8 + 4/12, "feet"),
  35857. weight: math.unit(1200, "lb"),
  35858. name: "Back",
  35859. image: {
  35860. source: "./media/characters/eleanor/back.svg",
  35861. extra: 1242/1184,
  35862. bottom: 60/1302
  35863. }
  35864. },
  35865. head: {
  35866. height: math.unit(2.62, "feet"),
  35867. name: "Head",
  35868. image: {
  35869. source: "./media/characters/eleanor/head.svg"
  35870. }
  35871. },
  35872. },
  35873. [
  35874. {
  35875. name: "Normal",
  35876. height: math.unit(8 + 4/12, "feet"),
  35877. default: true
  35878. },
  35879. ]
  35880. ))
  35881. characterMakers.push(() => makeCharacter(
  35882. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  35883. {
  35884. front: {
  35885. height: math.unit(8 + 4/12, "feet"),
  35886. weight: math.unit(750, "lb"),
  35887. name: "Front",
  35888. image: {
  35889. source: "./media/characters/tanya/front.svg",
  35890. extra: 1749/1615,
  35891. bottom: 33/1782
  35892. }
  35893. },
  35894. },
  35895. [
  35896. {
  35897. name: "Normal",
  35898. height: math.unit(8 + 4/12, "feet"),
  35899. default: true
  35900. },
  35901. ]
  35902. ))
  35903. characterMakers.push(() => makeCharacter(
  35904. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  35905. {
  35906. front: {
  35907. height: math.unit(5, "feet"),
  35908. weight: math.unit(225, "lb"),
  35909. name: "Front",
  35910. image: {
  35911. source: "./media/characters/cindy/front.svg",
  35912. extra: 1320/1250,
  35913. bottom: 42/1362
  35914. }
  35915. },
  35916. frontDressed: {
  35917. height: math.unit(5, "feet"),
  35918. weight: math.unit(225, "lb"),
  35919. name: "Front (Dressed)",
  35920. image: {
  35921. source: "./media/characters/cindy/front-dressed.svg",
  35922. extra: 1320/1250,
  35923. bottom: 42/1362
  35924. }
  35925. },
  35926. back: {
  35927. height: math.unit(5, "feet"),
  35928. weight: math.unit(225, "lb"),
  35929. name: "Back",
  35930. image: {
  35931. source: "./media/characters/cindy/back.svg",
  35932. extra: 1384/1346,
  35933. bottom: 14/1398
  35934. }
  35935. },
  35936. },
  35937. [
  35938. {
  35939. name: "Normal",
  35940. height: math.unit(5, "feet"),
  35941. default: true
  35942. },
  35943. ]
  35944. ))
  35945. characterMakers.push(() => makeCharacter(
  35946. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  35947. {
  35948. front: {
  35949. height: math.unit(6 + 9/12, "feet"),
  35950. weight: math.unit(440, "lb"),
  35951. name: "Front",
  35952. image: {
  35953. source: "./media/characters/wilbur-owen/front.svg",
  35954. extra: 1575/1448,
  35955. bottom: 72/1647
  35956. }
  35957. },
  35958. back: {
  35959. height: math.unit(6 + 9/12, "feet"),
  35960. weight: math.unit(440, "lb"),
  35961. name: "Back",
  35962. image: {
  35963. source: "./media/characters/wilbur-owen/back.svg",
  35964. extra: 1578/1445,
  35965. bottom: 36/1614
  35966. }
  35967. },
  35968. },
  35969. [
  35970. {
  35971. name: "Normal",
  35972. height: math.unit(6 + 9/12, "feet"),
  35973. default: true
  35974. },
  35975. ]
  35976. ))
  35977. characterMakers.push(() => makeCharacter(
  35978. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  35979. {
  35980. front: {
  35981. height: math.unit(6 + 5/12, "feet"),
  35982. weight: math.unit(650, "lb"),
  35983. name: "Front",
  35984. image: {
  35985. source: "./media/characters/keegan/front.svg",
  35986. extra: 2387/2198,
  35987. bottom: 33/2420
  35988. }
  35989. },
  35990. side: {
  35991. height: math.unit(6 + 5/12, "feet"),
  35992. weight: math.unit(650, "lb"),
  35993. name: "Side",
  35994. image: {
  35995. source: "./media/characters/keegan/side.svg",
  35996. extra: 2390/2202,
  35997. bottom: 47/2437
  35998. }
  35999. },
  36000. back: {
  36001. height: math.unit(6 + 5/12, "feet"),
  36002. weight: math.unit(650, "lb"),
  36003. name: "Back",
  36004. image: {
  36005. source: "./media/characters/keegan/back.svg",
  36006. extra: 2418/2268,
  36007. bottom: 15/2433
  36008. }
  36009. },
  36010. frontSfw: {
  36011. height: math.unit(6 + 5/12, "feet"),
  36012. weight: math.unit(650, "lb"),
  36013. name: "Front (SFW)",
  36014. image: {
  36015. source: "./media/characters/keegan/front-sfw.svg",
  36016. extra: 2387/2198,
  36017. bottom: 33/2420
  36018. }
  36019. },
  36020. beans: {
  36021. height: math.unit(1.85, "feet"),
  36022. name: "Beans",
  36023. image: {
  36024. source: "./media/characters/keegan/beans.svg"
  36025. }
  36026. },
  36027. },
  36028. [
  36029. {
  36030. name: "Normal",
  36031. height: math.unit(6 + 5/12, "feet"),
  36032. default: true
  36033. },
  36034. ]
  36035. ))
  36036. characterMakers.push(() => makeCharacter(
  36037. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  36038. {
  36039. front: {
  36040. height: math.unit(9, "feet"),
  36041. name: "Front",
  36042. image: {
  36043. source: "./media/characters/colton/front.svg",
  36044. extra: 1589/1326,
  36045. bottom: 139/1728
  36046. }
  36047. },
  36048. },
  36049. [
  36050. {
  36051. name: "Normal",
  36052. height: math.unit(9, "feet"),
  36053. default: true
  36054. },
  36055. ]
  36056. ))
  36057. characterMakers.push(() => makeCharacter(
  36058. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  36059. {
  36060. front: {
  36061. height: math.unit(2 + 9/12, "feet"),
  36062. name: "Front",
  36063. image: {
  36064. source: "./media/characters/bora/front.svg",
  36065. extra: 1265/1250,
  36066. bottom: 24/1289
  36067. }
  36068. },
  36069. },
  36070. [
  36071. {
  36072. name: "Normal",
  36073. height: math.unit(2 + 9/12, "feet"),
  36074. default: true
  36075. },
  36076. ]
  36077. ))
  36078. characterMakers.push(() => makeCharacter(
  36079. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  36080. {
  36081. front: {
  36082. height: math.unit(8, "feet"),
  36083. name: "Front",
  36084. image: {
  36085. source: "./media/characters/myu-myu/front.svg",
  36086. extra: 1949/1857,
  36087. bottom: 90/2039
  36088. }
  36089. },
  36090. },
  36091. [
  36092. {
  36093. name: "Normal",
  36094. height: math.unit(8, "feet"),
  36095. default: true
  36096. },
  36097. {
  36098. name: "Big",
  36099. height: math.unit(15, "feet")
  36100. },
  36101. {
  36102. name: "BIG",
  36103. height: math.unit(25, "feet")
  36104. },
  36105. ]
  36106. ))
  36107. characterMakers.push(() => makeCharacter(
  36108. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  36109. {
  36110. side: {
  36111. height: math.unit(7 + 5/12, "feet"),
  36112. weight: math.unit(2800, "lb"),
  36113. name: "Side",
  36114. image: {
  36115. source: "./media/characters/haloren/side.svg",
  36116. extra: 1793/409,
  36117. bottom: 59/1852
  36118. }
  36119. },
  36120. frontPaw: {
  36121. height: math.unit(2.36, "feet"),
  36122. name: "Front paw",
  36123. image: {
  36124. source: "./media/characters/haloren/front-paw.svg"
  36125. }
  36126. },
  36127. hindPaw: {
  36128. height: math.unit(3.18, "feet"),
  36129. name: "Hind paw",
  36130. image: {
  36131. source: "./media/characters/haloren/hind-paw.svg"
  36132. }
  36133. },
  36134. maw: {
  36135. height: math.unit(5.05, "feet"),
  36136. name: "Maw",
  36137. image: {
  36138. source: "./media/characters/haloren/maw.svg"
  36139. }
  36140. },
  36141. dick: {
  36142. height: math.unit(2.90, "feet"),
  36143. name: "Dick",
  36144. image: {
  36145. source: "./media/characters/haloren/dick.svg"
  36146. }
  36147. },
  36148. },
  36149. [
  36150. {
  36151. name: "Normal",
  36152. height: math.unit(7 + 5/12, "feet"),
  36153. default: true
  36154. },
  36155. {
  36156. name: "Enhanced",
  36157. height: math.unit(14 + 3/12, "feet")
  36158. },
  36159. ]
  36160. ))
  36161. characterMakers.push(() => makeCharacter(
  36162. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  36163. {
  36164. front: {
  36165. height: math.unit(171, "cm"),
  36166. name: "Front",
  36167. image: {
  36168. source: "./media/characters/kimmy/front.svg",
  36169. extra: 1491/1435,
  36170. bottom: 53/1544
  36171. }
  36172. },
  36173. },
  36174. [
  36175. {
  36176. name: "Small",
  36177. height: math.unit(9, "cm")
  36178. },
  36179. {
  36180. name: "Normal",
  36181. height: math.unit(171, "cm"),
  36182. default: true
  36183. },
  36184. ]
  36185. ))
  36186. characterMakers.push(() => makeCharacter(
  36187. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  36188. {
  36189. front: {
  36190. height: math.unit(8, "feet"),
  36191. weight: math.unit(300, "lb"),
  36192. name: "Front",
  36193. image: {
  36194. source: "./media/characters/galeboomer/front.svg",
  36195. extra: 4651/4415,
  36196. bottom: 162/4813
  36197. }
  36198. },
  36199. back: {
  36200. height: math.unit(8, "feet"),
  36201. weight: math.unit(300, "lb"),
  36202. name: "Back",
  36203. image: {
  36204. source: "./media/characters/galeboomer/back.svg",
  36205. extra: 4544/4314,
  36206. bottom: 16/4560
  36207. }
  36208. },
  36209. frontAlt: {
  36210. height: math.unit(8, "feet"),
  36211. weight: math.unit(300, "lb"),
  36212. name: "Front (Alt)",
  36213. image: {
  36214. source: "./media/characters/galeboomer/front-alt.svg",
  36215. extra: 4458/4228,
  36216. bottom: 68/4526
  36217. }
  36218. },
  36219. maw: {
  36220. height: math.unit(1.2, "feet"),
  36221. name: "Maw",
  36222. image: {
  36223. source: "./media/characters/galeboomer/maw.svg"
  36224. }
  36225. },
  36226. },
  36227. [
  36228. {
  36229. name: "Normal",
  36230. height: math.unit(8, "feet"),
  36231. default: true
  36232. },
  36233. ]
  36234. ))
  36235. characterMakers.push(() => makeCharacter(
  36236. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  36237. {
  36238. front: {
  36239. height: math.unit(5 + 9/12, "feet"),
  36240. weight: math.unit(120, "lb"),
  36241. name: "Front",
  36242. image: {
  36243. source: "./media/characters/chyr/front.svg",
  36244. extra: 1323/1254,
  36245. bottom: 63/1386
  36246. }
  36247. },
  36248. back: {
  36249. height: math.unit(5 + 9/12, "feet"),
  36250. weight: math.unit(120, "lb"),
  36251. name: "Back",
  36252. image: {
  36253. source: "./media/characters/chyr/back.svg",
  36254. extra: 1323/1252,
  36255. bottom: 48/1371
  36256. }
  36257. },
  36258. },
  36259. [
  36260. {
  36261. name: "Normal",
  36262. height: math.unit(5 + 9/12, "feet"),
  36263. default: true
  36264. },
  36265. ]
  36266. ))
  36267. characterMakers.push(() => makeCharacter(
  36268. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  36269. {
  36270. front: {
  36271. height: math.unit(7, "feet"),
  36272. weight: math.unit(310, "lb"),
  36273. name: "Front",
  36274. image: {
  36275. source: "./media/characters/solarus/front.svg",
  36276. extra: 2415/2021,
  36277. bottom: 103/2518
  36278. }
  36279. },
  36280. back: {
  36281. height: math.unit(7, "feet"),
  36282. weight: math.unit(310, "lb"),
  36283. name: "Back",
  36284. image: {
  36285. source: "./media/characters/solarus/back.svg",
  36286. extra: 2463/2089,
  36287. bottom: 79/2542
  36288. }
  36289. },
  36290. },
  36291. [
  36292. {
  36293. name: "Normal",
  36294. height: math.unit(7, "feet"),
  36295. default: true
  36296. },
  36297. ]
  36298. ))
  36299. characterMakers.push(() => makeCharacter(
  36300. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  36301. {
  36302. front: {
  36303. height: math.unit(16, "feet"),
  36304. name: "Front",
  36305. image: {
  36306. source: "./media/characters/mutsuju-koizaemon/front.svg",
  36307. extra: 1844/1780,
  36308. bottom: 58/1902
  36309. }
  36310. },
  36311. winterCoat: {
  36312. height: math.unit(16, "feet"),
  36313. name: "Winter Coat",
  36314. image: {
  36315. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  36316. extra: 1807/1775,
  36317. bottom: 69/1876
  36318. }
  36319. },
  36320. },
  36321. [
  36322. {
  36323. name: "Normal",
  36324. height: math.unit(16, "feet"),
  36325. default: true
  36326. },
  36327. {
  36328. name: "Chicago Size",
  36329. height: math.unit(560, "feet")
  36330. },
  36331. ]
  36332. ))
  36333. characterMakers.push(() => makeCharacter(
  36334. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  36335. {
  36336. front: {
  36337. height: math.unit(11 + 6/12, "feet"),
  36338. weight: math.unit(1366, "lb"),
  36339. name: "Front",
  36340. image: {
  36341. source: "./media/characters/lexor/front.svg",
  36342. extra: 1560/1481,
  36343. bottom: 211/1771
  36344. }
  36345. },
  36346. back: {
  36347. height: math.unit(11 + 6/12, "feet"),
  36348. weight: math.unit(1366, "lb"),
  36349. name: "Back",
  36350. image: {
  36351. source: "./media/characters/lexor/back.svg",
  36352. extra: 1614/1533,
  36353. bottom: 76/1690
  36354. }
  36355. },
  36356. maw: {
  36357. height: math.unit(3, "feet"),
  36358. name: "Maw",
  36359. image: {
  36360. source: "./media/characters/lexor/maw.svg"
  36361. }
  36362. },
  36363. dick: {
  36364. height: math.unit(2.59, "feet"),
  36365. name: "Dick",
  36366. image: {
  36367. source: "./media/characters/lexor/dick.svg"
  36368. }
  36369. },
  36370. },
  36371. [
  36372. {
  36373. name: "Normal",
  36374. height: math.unit(11 + 6/12, "feet"),
  36375. default: true
  36376. },
  36377. ]
  36378. ))
  36379. characterMakers.push(() => makeCharacter(
  36380. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  36381. {
  36382. front: {
  36383. height: math.unit(5 + 8/12, "feet"),
  36384. name: "Front",
  36385. image: {
  36386. source: "./media/characters/magnum/front.svg",
  36387. extra: 942/855,
  36388. bottom: 26/968
  36389. }
  36390. },
  36391. },
  36392. [
  36393. {
  36394. name: "Normal",
  36395. height: math.unit(5 + 8/12, "feet"),
  36396. default: true
  36397. },
  36398. ]
  36399. ))
  36400. characterMakers.push(() => makeCharacter(
  36401. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  36402. {
  36403. front: {
  36404. height: math.unit(18 + 4/12, "feet"),
  36405. weight: math.unit(1500, "kg"),
  36406. name: "Front",
  36407. image: {
  36408. source: "./media/characters/solas-sharpsman/front.svg",
  36409. extra: 1698/1589,
  36410. bottom: 0/1698
  36411. }
  36412. },
  36413. },
  36414. [
  36415. {
  36416. name: "Normal",
  36417. height: math.unit(18 + 4/12, "feet"),
  36418. default: true
  36419. },
  36420. ]
  36421. ))
  36422. characterMakers.push(() => makeCharacter(
  36423. { name: "October", species: ["tiger"], tags: ["anthro"] },
  36424. {
  36425. front: {
  36426. height: math.unit(5 + 5/12, "feet"),
  36427. weight: math.unit(180, "lb"),
  36428. name: "Front",
  36429. image: {
  36430. source: "./media/characters/october/front.svg",
  36431. extra: 1800/1650,
  36432. bottom: 0/1800
  36433. }
  36434. },
  36435. frontNsfw: {
  36436. height: math.unit(5 + 5/12, "feet"),
  36437. weight: math.unit(180, "lb"),
  36438. name: "Front (NSFW)",
  36439. image: {
  36440. source: "./media/characters/october/front-nsfw.svg",
  36441. extra: 1392/1307,
  36442. bottom: 42/1434
  36443. }
  36444. },
  36445. },
  36446. [
  36447. {
  36448. name: "Normal",
  36449. height: math.unit(5 + 5/12, "feet"),
  36450. default: true
  36451. },
  36452. ]
  36453. ))
  36454. characterMakers.push(() => makeCharacter(
  36455. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  36456. {
  36457. front: {
  36458. height: math.unit(8 + 6/12, "feet"),
  36459. name: "Front",
  36460. image: {
  36461. source: "./media/characters/essynkardi/front.svg",
  36462. extra: 1914/1846,
  36463. bottom: 22/1936
  36464. }
  36465. },
  36466. },
  36467. [
  36468. {
  36469. name: "Normal",
  36470. height: math.unit(8 + 6/12, "feet"),
  36471. default: true
  36472. },
  36473. ]
  36474. ))
  36475. characterMakers.push(() => makeCharacter(
  36476. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  36477. {
  36478. front: {
  36479. height: math.unit(6 + 6/12, "feet"),
  36480. weight: math.unit(7, "lb"),
  36481. name: "Front",
  36482. image: {
  36483. source: "./media/characters/icky/front.svg",
  36484. extra: 813/782,
  36485. bottom: 66/879
  36486. }
  36487. },
  36488. back: {
  36489. height: math.unit(6 + 6/12, "feet"),
  36490. weight: math.unit(7, "lb"),
  36491. name: "Back",
  36492. image: {
  36493. source: "./media/characters/icky/back.svg",
  36494. extra: 754/735,
  36495. bottom: 56/810
  36496. }
  36497. },
  36498. },
  36499. [
  36500. {
  36501. name: "Normal",
  36502. height: math.unit(6 + 6/12, "feet"),
  36503. default: true
  36504. },
  36505. ]
  36506. ))
  36507. characterMakers.push(() => makeCharacter(
  36508. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  36509. {
  36510. front: {
  36511. height: math.unit(15, "feet"),
  36512. name: "Front",
  36513. image: {
  36514. source: "./media/characters/rojas/front.svg",
  36515. extra: 1462/1408,
  36516. bottom: 95/1557
  36517. }
  36518. },
  36519. back: {
  36520. height: math.unit(15, "feet"),
  36521. name: "Back",
  36522. image: {
  36523. source: "./media/characters/rojas/back.svg",
  36524. extra: 1023/954,
  36525. bottom: 28/1051
  36526. }
  36527. },
  36528. },
  36529. [
  36530. {
  36531. name: "Normal",
  36532. height: math.unit(15, "feet"),
  36533. default: true
  36534. },
  36535. ]
  36536. ))
  36537. characterMakers.push(() => makeCharacter(
  36538. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  36539. {
  36540. frontHuman: {
  36541. height: math.unit(5 + 7/12, "feet"),
  36542. name: "Front (Human)",
  36543. image: {
  36544. source: "./media/characters/alek-dryagan/front-human.svg",
  36545. extra: 1687/1667,
  36546. bottom: 69/1756
  36547. }
  36548. },
  36549. backHuman: {
  36550. height: math.unit(5 + 7/12, "feet"),
  36551. name: "Back (Human)",
  36552. image: {
  36553. source: "./media/characters/alek-dryagan/back-human.svg",
  36554. extra: 1670/1649,
  36555. bottom: 65/1735
  36556. }
  36557. },
  36558. frontDemi: {
  36559. height: math.unit(65, "feet"),
  36560. name: "Front (Demi)",
  36561. image: {
  36562. source: "./media/characters/alek-dryagan/front-demi.svg",
  36563. extra: 1669/1642,
  36564. bottom: 49/1718
  36565. }
  36566. },
  36567. backDemi: {
  36568. height: math.unit(65, "feet"),
  36569. name: "Back (Demi)",
  36570. image: {
  36571. source: "./media/characters/alek-dryagan/back-demi.svg",
  36572. extra: 1658/1637,
  36573. bottom: 40/1698
  36574. }
  36575. },
  36576. mawHuman: {
  36577. height: math.unit(0.3, "feet"),
  36578. name: "Maw (Human)",
  36579. image: {
  36580. source: "./media/characters/alek-dryagan/maw-human.svg"
  36581. }
  36582. },
  36583. mawDemi: {
  36584. height: math.unit(3.8, "feet"),
  36585. name: "Maw (Demi)",
  36586. image: {
  36587. source: "./media/characters/alek-dryagan/maw-demi.svg"
  36588. }
  36589. },
  36590. },
  36591. [
  36592. {
  36593. name: "Normal",
  36594. height: math.unit(5 + 7/12, "feet"),
  36595. default: true
  36596. },
  36597. ]
  36598. ))
  36599. characterMakers.push(() => makeCharacter(
  36600. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  36601. {
  36602. frontHuman: {
  36603. height: math.unit(5 + 2/12, "feet"),
  36604. name: "Front (Human)",
  36605. image: {
  36606. source: "./media/characters/gen/front-human.svg",
  36607. extra: 1627/1538,
  36608. bottom: 71/1698
  36609. }
  36610. },
  36611. backHuman: {
  36612. height: math.unit(5 + 2/12, "feet"),
  36613. name: "Back (Human)",
  36614. image: {
  36615. source: "./media/characters/gen/back-human.svg",
  36616. extra: 1638/1548,
  36617. bottom: 69/1707
  36618. }
  36619. },
  36620. frontDemi: {
  36621. height: math.unit(5 + 2/12, "feet"),
  36622. name: "Front (Demi)",
  36623. image: {
  36624. source: "./media/characters/gen/front-demi.svg",
  36625. extra: 1627/1538,
  36626. bottom: 71/1698
  36627. }
  36628. },
  36629. backDemi: {
  36630. height: math.unit(5 + 2/12, "feet"),
  36631. name: "Back (Demi)",
  36632. image: {
  36633. source: "./media/characters/gen/back-demi.svg",
  36634. extra: 1638/1548,
  36635. bottom: 69/1707
  36636. }
  36637. },
  36638. },
  36639. [
  36640. {
  36641. name: "Normal",
  36642. height: math.unit(5 + 2/12, "feet"),
  36643. default: true
  36644. },
  36645. ]
  36646. ))
  36647. characterMakers.push(() => makeCharacter(
  36648. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  36649. {
  36650. frontImp: {
  36651. height: math.unit(1 + 11/12, "feet"),
  36652. name: "Front (Imp)",
  36653. image: {
  36654. source: "./media/characters/max-kobold/front-imp.svg",
  36655. extra: 1238/1134,
  36656. bottom: 81/1319
  36657. }
  36658. },
  36659. backImp: {
  36660. height: math.unit(1 + 11/12, "feet"),
  36661. name: "Back (Imp)",
  36662. image: {
  36663. source: "./media/characters/max-kobold/back-imp.svg",
  36664. extra: 1334/1175,
  36665. bottom: 34/1368
  36666. }
  36667. },
  36668. frontDemi: {
  36669. height: math.unit(5 + 9/12, "feet"),
  36670. name: "Front (Demi)",
  36671. image: {
  36672. source: "./media/characters/max-kobold/front-demi.svg",
  36673. extra: 1715/1685,
  36674. bottom: 54/1769
  36675. }
  36676. },
  36677. backDemi: {
  36678. height: math.unit(5 + 9/12, "feet"),
  36679. name: "Back (Demi)",
  36680. image: {
  36681. source: "./media/characters/max-kobold/back-demi.svg",
  36682. extra: 1752/1729,
  36683. bottom: 41/1793
  36684. }
  36685. },
  36686. handImp: {
  36687. height: math.unit(0.45, "feet"),
  36688. name: "Hand (Imp)",
  36689. image: {
  36690. source: "./media/characters/max-kobold/hand.svg"
  36691. }
  36692. },
  36693. pawImp: {
  36694. height: math.unit(0.46, "feet"),
  36695. name: "Paw (Imp)",
  36696. image: {
  36697. source: "./media/characters/max-kobold/paw.svg"
  36698. }
  36699. },
  36700. handDemi: {
  36701. height: math.unit(0.80, "feet"),
  36702. name: "Hand (Demi)",
  36703. image: {
  36704. source: "./media/characters/max-kobold/hand.svg"
  36705. }
  36706. },
  36707. pawDemi: {
  36708. height: math.unit(1.1, "feet"),
  36709. name: "Paw (Demi)",
  36710. image: {
  36711. source: "./media/characters/max-kobold/paw.svg"
  36712. }
  36713. },
  36714. headImp: {
  36715. height: math.unit(1.33, "feet"),
  36716. name: "Head (Imp)",
  36717. image: {
  36718. source: "./media/characters/max-kobold/head-imp.svg"
  36719. }
  36720. },
  36721. mawImp: {
  36722. height: math.unit(0.75, "feet"),
  36723. name: "Maw (Imp)",
  36724. image: {
  36725. source: "./media/characters/max-kobold/maw-imp.svg"
  36726. }
  36727. },
  36728. mawDemi: {
  36729. height: math.unit(0.42, "feet"),
  36730. name: "Maw (Demi)",
  36731. image: {
  36732. source: "./media/characters/max-kobold/maw-demi.svg"
  36733. }
  36734. },
  36735. },
  36736. [
  36737. {
  36738. name: "Normal",
  36739. height: math.unit(1 + 11/12, "feet"),
  36740. default: true
  36741. },
  36742. ]
  36743. ))
  36744. characterMakers.push(() => makeCharacter(
  36745. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  36746. {
  36747. front: {
  36748. height: math.unit(7 + 5/12, "feet"),
  36749. name: "Front",
  36750. image: {
  36751. source: "./media/characters/carbon/front.svg",
  36752. extra: 1754/1689,
  36753. bottom: 65/1819
  36754. }
  36755. },
  36756. back: {
  36757. height: math.unit(7 + 5/12, "feet"),
  36758. name: "Back",
  36759. image: {
  36760. source: "./media/characters/carbon/back.svg",
  36761. extra: 1762/1695,
  36762. bottom: 24/1786
  36763. }
  36764. },
  36765. frontGigantamax: {
  36766. height: math.unit(150, "feet"),
  36767. name: "Front (Gigantamax)",
  36768. image: {
  36769. source: "./media/characters/carbon/front-gigantamax.svg",
  36770. extra: 1826/1669,
  36771. bottom: 59/1885
  36772. }
  36773. },
  36774. backGigantamax: {
  36775. height: math.unit(150, "feet"),
  36776. name: "Back (Gigantamax)",
  36777. image: {
  36778. source: "./media/characters/carbon/back-gigantamax.svg",
  36779. extra: 1796/1653,
  36780. bottom: 53/1849
  36781. }
  36782. },
  36783. maw: {
  36784. height: math.unit(0.48, "feet"),
  36785. name: "Maw",
  36786. image: {
  36787. source: "./media/characters/carbon/maw.svg"
  36788. }
  36789. },
  36790. mawGigantamax: {
  36791. height: math.unit(7.5, "feet"),
  36792. name: "Maw (Gigantamax)",
  36793. image: {
  36794. source: "./media/characters/carbon/maw-gigantamax.svg"
  36795. }
  36796. },
  36797. },
  36798. [
  36799. {
  36800. name: "Normal",
  36801. height: math.unit(7 + 5/12, "feet"),
  36802. default: true
  36803. },
  36804. ]
  36805. ))
  36806. characterMakers.push(() => makeCharacter(
  36807. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  36808. {
  36809. front: {
  36810. height: math.unit(6, "feet"),
  36811. name: "Front",
  36812. image: {
  36813. source: "./media/characters/maverick/front.svg",
  36814. extra: 1672/1661,
  36815. bottom: 85/1757
  36816. }
  36817. },
  36818. back: {
  36819. height: math.unit(6, "feet"),
  36820. name: "Back",
  36821. image: {
  36822. source: "./media/characters/maverick/back.svg",
  36823. extra: 1642/1631,
  36824. bottom: 38/1680
  36825. }
  36826. },
  36827. },
  36828. [
  36829. {
  36830. name: "Normal",
  36831. height: math.unit(6, "feet"),
  36832. default: true
  36833. },
  36834. ]
  36835. ))
  36836. characterMakers.push(() => makeCharacter(
  36837. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  36838. {
  36839. front: {
  36840. height: math.unit(15, "feet"),
  36841. weight: math.unit(615, "lb"),
  36842. name: "Front",
  36843. image: {
  36844. source: "./media/characters/grockle/front.svg",
  36845. extra: 1535/1427,
  36846. bottom: 56/1591
  36847. }
  36848. },
  36849. },
  36850. [
  36851. {
  36852. name: "Normal",
  36853. height: math.unit(15, "feet"),
  36854. default: true
  36855. },
  36856. {
  36857. name: "Large",
  36858. height: math.unit(150, "feet")
  36859. },
  36860. {
  36861. name: "Macro",
  36862. height: math.unit(1876, "feet")
  36863. },
  36864. {
  36865. name: "Mega Macro",
  36866. height: math.unit(121940, "feet")
  36867. },
  36868. {
  36869. name: "Giga Macro",
  36870. height: math.unit(750, "km")
  36871. },
  36872. {
  36873. name: "Tera Macro",
  36874. height: math.unit(750000, "km")
  36875. },
  36876. {
  36877. name: "Galactic",
  36878. height: math.unit(1.4e5, "km")
  36879. },
  36880. {
  36881. name: "Godlike",
  36882. height: math.unit(9.8e280, "galaxies")
  36883. },
  36884. ]
  36885. ))
  36886. characterMakers.push(() => makeCharacter(
  36887. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  36888. {
  36889. front: {
  36890. height: math.unit(11, "meters"),
  36891. weight: math.unit(20, "tonnes"),
  36892. name: "Front",
  36893. image: {
  36894. source: "./media/characters/alistair/front.svg",
  36895. extra: 1265/1009,
  36896. bottom: 93/1358
  36897. }
  36898. },
  36899. },
  36900. [
  36901. {
  36902. name: "Normal",
  36903. height: math.unit(11, "meters"),
  36904. default: true
  36905. },
  36906. ]
  36907. ))
  36908. characterMakers.push(() => makeCharacter(
  36909. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  36910. {
  36911. front: {
  36912. height: math.unit(5 + 8/12, "feet"),
  36913. name: "Front",
  36914. image: {
  36915. source: "./media/characters/haruka/front.svg",
  36916. extra: 2012/1952,
  36917. bottom: 0/2012
  36918. }
  36919. },
  36920. },
  36921. [
  36922. {
  36923. name: "Normal",
  36924. height: math.unit(5 + 8/12, "feet"),
  36925. default: true
  36926. },
  36927. ]
  36928. ))
  36929. characterMakers.push(() => makeCharacter(
  36930. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  36931. {
  36932. back: {
  36933. height: math.unit(9, "feet"),
  36934. name: "Back",
  36935. image: {
  36936. source: "./media/characters/vivian-sylveon/back.svg",
  36937. extra: 1853/1714,
  36938. bottom: 0/1853
  36939. }
  36940. },
  36941. },
  36942. [
  36943. {
  36944. name: "Normal",
  36945. height: math.unit(9, "feet"),
  36946. default: true
  36947. },
  36948. {
  36949. name: "Macro",
  36950. height: math.unit(500, "feet")
  36951. },
  36952. {
  36953. name: "Megamacro",
  36954. height: math.unit(600, "miles")
  36955. },
  36956. {
  36957. name: "Gigamacro",
  36958. height: math.unit(30000, "miles")
  36959. },
  36960. ]
  36961. ))
  36962. characterMakers.push(() => makeCharacter(
  36963. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  36964. {
  36965. anthro: {
  36966. height: math.unit(5 + 10/12, "feet"),
  36967. weight: math.unit(100, "lb"),
  36968. name: "Anthro",
  36969. image: {
  36970. source: "./media/characters/daiki/anthro.svg",
  36971. extra: 1115/1027,
  36972. bottom: 69/1184
  36973. }
  36974. },
  36975. feral: {
  36976. height: math.unit(200, "feet"),
  36977. name: "Feral",
  36978. image: {
  36979. source: "./media/characters/daiki/feral.svg",
  36980. extra: 1256/313,
  36981. bottom: 39/1295
  36982. }
  36983. },
  36984. feralHead: {
  36985. height: math.unit(171, "feet"),
  36986. name: "Feral Head",
  36987. image: {
  36988. source: "./media/characters/daiki/feral-head.svg"
  36989. }
  36990. },
  36991. manaDragon: {
  36992. height: math.unit(170, "meters"),
  36993. name: "Mana-dragon",
  36994. image: {
  36995. source: "./media/characters/daiki/mana-dragon.svg",
  36996. extra: 763/420,
  36997. bottom: 97/860
  36998. }
  36999. },
  37000. },
  37001. [
  37002. {
  37003. name: "Normal",
  37004. height: math.unit(5 + 10/12, "feet"),
  37005. default: true
  37006. },
  37007. ]
  37008. ))
  37009. characterMakers.push(() => makeCharacter(
  37010. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  37011. {
  37012. fullyEquippedFront: {
  37013. height: math.unit(3 + 1/12, "feet"),
  37014. weight: math.unit(24, "lb"),
  37015. name: "Fully Equipped (Front)",
  37016. image: {
  37017. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  37018. extra: 687/605,
  37019. bottom: 18/705
  37020. }
  37021. },
  37022. fullyEquippedBack: {
  37023. height: math.unit(3 + 1/12, "feet"),
  37024. weight: math.unit(24, "lb"),
  37025. name: "Fully Equipped (Back)",
  37026. image: {
  37027. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  37028. extra: 689/590,
  37029. bottom: 18/707
  37030. }
  37031. },
  37032. dailyWear: {
  37033. height: math.unit(3 + 1/12, "feet"),
  37034. weight: math.unit(24, "lb"),
  37035. name: "Daily Wear",
  37036. image: {
  37037. source: "./media/characters/tea-spot/daily-wear.svg",
  37038. extra: 701/620,
  37039. bottom: 21/722
  37040. }
  37041. },
  37042. maidWork: {
  37043. height: math.unit(3 + 1/12, "feet"),
  37044. weight: math.unit(24, "lb"),
  37045. name: "Maid Work",
  37046. image: {
  37047. source: "./media/characters/tea-spot/maid-work.svg",
  37048. extra: 693/609,
  37049. bottom: 15/708
  37050. }
  37051. },
  37052. },
  37053. [
  37054. {
  37055. name: "Normal",
  37056. height: math.unit(3 + 1/12, "feet"),
  37057. default: true
  37058. },
  37059. ]
  37060. ))
  37061. characterMakers.push(() => makeCharacter(
  37062. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  37063. {
  37064. front: {
  37065. height: math.unit(175, "cm"),
  37066. weight: math.unit(75, "kg"),
  37067. name: "Front",
  37068. image: {
  37069. source: "./media/characters/chee/front.svg",
  37070. extra: 1796/1740,
  37071. bottom: 40/1836
  37072. }
  37073. },
  37074. },
  37075. [
  37076. {
  37077. name: "Micro-Micro",
  37078. height: math.unit(1, "nm")
  37079. },
  37080. {
  37081. name: "Micro-erst",
  37082. height: math.unit(1, "micrometer")
  37083. },
  37084. {
  37085. name: "Micro-er",
  37086. height: math.unit(1, "cm")
  37087. },
  37088. {
  37089. name: "Normal",
  37090. height: math.unit(175, "cm"),
  37091. default: true
  37092. },
  37093. {
  37094. name: "Macro",
  37095. height: math.unit(100, "m")
  37096. },
  37097. {
  37098. name: "Macro-er",
  37099. height: math.unit(1, "km")
  37100. },
  37101. {
  37102. name: "Macro-erst",
  37103. height: math.unit(10, "km")
  37104. },
  37105. {
  37106. name: "Macro-Macro",
  37107. height: math.unit(100, "km")
  37108. },
  37109. ]
  37110. ))
  37111. characterMakers.push(() => makeCharacter(
  37112. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  37113. {
  37114. front: {
  37115. height: math.unit(11 + 9/12, "feet"),
  37116. weight: math.unit(935, "lb"),
  37117. name: "Front",
  37118. image: {
  37119. source: "./media/characters/kingsley/front.svg",
  37120. extra: 1803/1674,
  37121. bottom: 127/1930
  37122. }
  37123. },
  37124. frontNude: {
  37125. height: math.unit(11 + 9/12, "feet"),
  37126. weight: math.unit(935, "lb"),
  37127. name: "Front (Nude)",
  37128. image: {
  37129. source: "./media/characters/kingsley/front-nude.svg",
  37130. extra: 1803/1674,
  37131. bottom: 127/1930
  37132. }
  37133. },
  37134. },
  37135. [
  37136. {
  37137. name: "Normal",
  37138. height: math.unit(11 + 9/12, "feet"),
  37139. default: true
  37140. },
  37141. ]
  37142. ))
  37143. characterMakers.push(() => makeCharacter(
  37144. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  37145. {
  37146. side: {
  37147. height: math.unit(9, "feet"),
  37148. name: "Side",
  37149. image: {
  37150. source: "./media/characters/rymel/side.svg",
  37151. extra: 792/469,
  37152. bottom: 121/913
  37153. }
  37154. },
  37155. maw: {
  37156. height: math.unit(2.4, "meters"),
  37157. name: "Maw",
  37158. image: {
  37159. source: "./media/characters/rymel/maw.svg"
  37160. }
  37161. },
  37162. },
  37163. [
  37164. {
  37165. name: "House Drake",
  37166. height: math.unit(2, "feet")
  37167. },
  37168. {
  37169. name: "Reduced",
  37170. height: math.unit(4.5, "feet")
  37171. },
  37172. {
  37173. name: "Normal",
  37174. height: math.unit(9, "feet"),
  37175. default: true
  37176. },
  37177. ]
  37178. ))
  37179. characterMakers.push(() => makeCharacter(
  37180. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  37181. {
  37182. front: {
  37183. height: math.unit(1.74, "meters"),
  37184. weight: math.unit(55, "kg"),
  37185. name: "Front",
  37186. image: {
  37187. source: "./media/characters/rubus/front.svg",
  37188. extra: 1894/1742,
  37189. bottom: 44/1938
  37190. }
  37191. },
  37192. },
  37193. [
  37194. {
  37195. name: "Normal",
  37196. height: math.unit(1.74, "meters"),
  37197. default: true
  37198. },
  37199. ]
  37200. ))
  37201. characterMakers.push(() => makeCharacter(
  37202. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  37203. {
  37204. front: {
  37205. height: math.unit(5 + 2/12, "feet"),
  37206. weight: math.unit(112, "lb"),
  37207. name: "Front",
  37208. image: {
  37209. source: "./media/characters/cassie-kingston/front.svg",
  37210. extra: 1438/1390,
  37211. bottom: 47/1485
  37212. }
  37213. },
  37214. },
  37215. [
  37216. {
  37217. name: "Normal",
  37218. height: math.unit(5 + 2/12, "feet"),
  37219. default: true
  37220. },
  37221. {
  37222. name: "Macro",
  37223. height: math.unit(128, "feet")
  37224. },
  37225. {
  37226. name: "Megamacro",
  37227. height: math.unit(2.56, "miles")
  37228. },
  37229. ]
  37230. ))
  37231. characterMakers.push(() => makeCharacter(
  37232. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  37233. {
  37234. front: {
  37235. height: math.unit(7, "feet"),
  37236. name: "Front",
  37237. image: {
  37238. source: "./media/characters/fox/front.svg",
  37239. extra: 1798/1703,
  37240. bottom: 55/1853
  37241. }
  37242. },
  37243. back: {
  37244. height: math.unit(7, "feet"),
  37245. name: "Back",
  37246. image: {
  37247. source: "./media/characters/fox/back.svg",
  37248. extra: 1748/1649,
  37249. bottom: 32/1780
  37250. }
  37251. },
  37252. head: {
  37253. height: math.unit(1.95, "feet"),
  37254. name: "Head",
  37255. image: {
  37256. source: "./media/characters/fox/head.svg"
  37257. }
  37258. },
  37259. dick: {
  37260. height: math.unit(1.33, "feet"),
  37261. name: "Dick",
  37262. image: {
  37263. source: "./media/characters/fox/dick.svg"
  37264. }
  37265. },
  37266. foot: {
  37267. height: math.unit(1, "feet"),
  37268. name: "Foot",
  37269. image: {
  37270. source: "./media/characters/fox/foot.svg"
  37271. }
  37272. },
  37273. paw: {
  37274. height: math.unit(0.92, "feet"),
  37275. name: "Paw",
  37276. image: {
  37277. source: "./media/characters/fox/paw.svg"
  37278. }
  37279. },
  37280. },
  37281. [
  37282. {
  37283. name: "Small",
  37284. height: math.unit(3, "inches")
  37285. },
  37286. {
  37287. name: "\"Realistic\"",
  37288. height: math.unit(7, "feet")
  37289. },
  37290. {
  37291. name: "Normal",
  37292. height: math.unit(150, "feet"),
  37293. default: true
  37294. },
  37295. {
  37296. name: "BIG",
  37297. height: math.unit(1200, "feet")
  37298. },
  37299. {
  37300. name: "👀",
  37301. height: math.unit(5, "miles")
  37302. },
  37303. {
  37304. name: "👀👀👀",
  37305. height: math.unit(64, "miles")
  37306. },
  37307. ]
  37308. ))
  37309. characterMakers.push(() => makeCharacter(
  37310. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  37311. {
  37312. front: {
  37313. height: math.unit(625, "feet"),
  37314. name: "Front",
  37315. image: {
  37316. source: "./media/characters/asonja-rossa/front.svg",
  37317. extra: 1833/1686,
  37318. bottom: 24/1857
  37319. }
  37320. },
  37321. back: {
  37322. height: math.unit(625, "feet"),
  37323. name: "Back",
  37324. image: {
  37325. source: "./media/characters/asonja-rossa/back.svg",
  37326. extra: 1852/1753,
  37327. bottom: 26/1878
  37328. }
  37329. },
  37330. },
  37331. [
  37332. {
  37333. name: "Macro",
  37334. height: math.unit(625, "feet"),
  37335. default: true
  37336. },
  37337. ]
  37338. ))
  37339. characterMakers.push(() => makeCharacter(
  37340. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  37341. {
  37342. side: {
  37343. height: math.unit(8, "feet"),
  37344. name: "Side",
  37345. image: {
  37346. source: "./media/characters/rezukii/side.svg",
  37347. extra: 979/542,
  37348. bottom: 87/1066
  37349. }
  37350. },
  37351. sitting: {
  37352. height: math.unit(14.6, "feet"),
  37353. name: "Sitting",
  37354. image: {
  37355. source: "./media/characters/rezukii/sitting.svg",
  37356. extra: 1023/813,
  37357. bottom: 45/1068
  37358. }
  37359. },
  37360. },
  37361. [
  37362. {
  37363. name: "Tiny",
  37364. height: math.unit(2, "feet")
  37365. },
  37366. {
  37367. name: "Smol",
  37368. height: math.unit(4, "feet")
  37369. },
  37370. {
  37371. name: "Normal",
  37372. height: math.unit(8, "feet"),
  37373. default: true
  37374. },
  37375. {
  37376. name: "Big",
  37377. height: math.unit(12, "feet")
  37378. },
  37379. {
  37380. name: "Macro",
  37381. height: math.unit(30, "feet")
  37382. },
  37383. ]
  37384. ))
  37385. characterMakers.push(() => makeCharacter(
  37386. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  37387. {
  37388. front: {
  37389. height: math.unit(14, "feet"),
  37390. weight: math.unit(9.5, "tonnes"),
  37391. name: "Front",
  37392. image: {
  37393. source: "./media/characters/dawnheart/front.svg",
  37394. extra: 2792/2675,
  37395. bottom: 64/2856
  37396. }
  37397. },
  37398. },
  37399. [
  37400. {
  37401. name: "Normal",
  37402. height: math.unit(14, "feet"),
  37403. default: true
  37404. },
  37405. ]
  37406. ))
  37407. characterMakers.push(() => makeCharacter(
  37408. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  37409. {
  37410. front: {
  37411. height: math.unit(1.7, "m"),
  37412. name: "Front",
  37413. image: {
  37414. source: "./media/characters/gladi/front.svg",
  37415. extra: 1460/1362,
  37416. bottom: 19/1479
  37417. }
  37418. },
  37419. back: {
  37420. height: math.unit(1.7, "m"),
  37421. name: "Back",
  37422. image: {
  37423. source: "./media/characters/gladi/back.svg",
  37424. extra: 1459/1357,
  37425. bottom: 12/1471
  37426. }
  37427. },
  37428. feral: {
  37429. height: math.unit(2.05, "m"),
  37430. name: "Feral",
  37431. image: {
  37432. source: "./media/characters/gladi/feral.svg",
  37433. extra: 821/557,
  37434. bottom: 91/912
  37435. }
  37436. },
  37437. },
  37438. [
  37439. {
  37440. name: "Shortest",
  37441. height: math.unit(70, "cm")
  37442. },
  37443. {
  37444. name: "Normal",
  37445. height: math.unit(1.7, "m")
  37446. },
  37447. {
  37448. name: "Macro",
  37449. height: math.unit(10, "m"),
  37450. default: true
  37451. },
  37452. {
  37453. name: "Tallest",
  37454. height: math.unit(200, "m")
  37455. },
  37456. ]
  37457. ))
  37458. characterMakers.push(() => makeCharacter(
  37459. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  37460. {
  37461. front: {
  37462. height: math.unit(5 + 7/12, "feet"),
  37463. weight: math.unit(2, "tons"),
  37464. name: "Front",
  37465. image: {
  37466. source: "./media/characters/erdno/front.svg",
  37467. extra: 1234/1129,
  37468. bottom: 35/1269
  37469. }
  37470. },
  37471. angled: {
  37472. height: math.unit(5 + 7/12, "feet"),
  37473. weight: math.unit(2, "tons"),
  37474. name: "Angled",
  37475. image: {
  37476. source: "./media/characters/erdno/angled.svg",
  37477. extra: 1185/1139,
  37478. bottom: 36/1221
  37479. }
  37480. },
  37481. side: {
  37482. height: math.unit(5 + 7/12, "feet"),
  37483. weight: math.unit(2, "tons"),
  37484. name: "Side",
  37485. image: {
  37486. source: "./media/characters/erdno/side.svg",
  37487. extra: 1191/1144,
  37488. bottom: 40/1231
  37489. }
  37490. },
  37491. back: {
  37492. height: math.unit(5 + 7/12, "feet"),
  37493. weight: math.unit(2, "tons"),
  37494. name: "Back",
  37495. image: {
  37496. source: "./media/characters/erdno/back.svg",
  37497. extra: 1202/1146,
  37498. bottom: 17/1219
  37499. }
  37500. },
  37501. frontNsfw: {
  37502. height: math.unit(5 + 7/12, "feet"),
  37503. weight: math.unit(2, "tons"),
  37504. name: "Front (NSFW)",
  37505. image: {
  37506. source: "./media/characters/erdno/front-nsfw.svg",
  37507. extra: 1234/1129,
  37508. bottom: 35/1269
  37509. }
  37510. },
  37511. angledNsfw: {
  37512. height: math.unit(5 + 7/12, "feet"),
  37513. weight: math.unit(2, "tons"),
  37514. name: "Angled (NSFW)",
  37515. image: {
  37516. source: "./media/characters/erdno/angled-nsfw.svg",
  37517. extra: 1185/1139,
  37518. bottom: 36/1221
  37519. }
  37520. },
  37521. sideNsfw: {
  37522. height: math.unit(5 + 7/12, "feet"),
  37523. weight: math.unit(2, "tons"),
  37524. name: "Side (NSFW)",
  37525. image: {
  37526. source: "./media/characters/erdno/side-nsfw.svg",
  37527. extra: 1191/1144,
  37528. bottom: 40/1231
  37529. }
  37530. },
  37531. backNsfw: {
  37532. height: math.unit(5 + 7/12, "feet"),
  37533. weight: math.unit(2, "tons"),
  37534. name: "Back (NSFW)",
  37535. image: {
  37536. source: "./media/characters/erdno/back-nsfw.svg",
  37537. extra: 1202/1146,
  37538. bottom: 17/1219
  37539. }
  37540. },
  37541. frontHyper: {
  37542. height: math.unit(5 + 7/12, "feet"),
  37543. weight: math.unit(2, "tons"),
  37544. name: "Front (Hyper)",
  37545. image: {
  37546. source: "./media/characters/erdno/front-hyper.svg",
  37547. extra: 1298/1136,
  37548. bottom: 35/1333
  37549. }
  37550. },
  37551. },
  37552. [
  37553. {
  37554. name: "Normal",
  37555. height: math.unit(5 + 7/12, "feet"),
  37556. default: true
  37557. },
  37558. {
  37559. name: "Big",
  37560. height: math.unit(5.7, "meters")
  37561. },
  37562. {
  37563. name: "Macro",
  37564. height: math.unit(5.7, "kilometers")
  37565. },
  37566. {
  37567. name: "Megamacro",
  37568. height: math.unit(5.7, "earths")
  37569. },
  37570. ]
  37571. ))
  37572. characterMakers.push(() => makeCharacter(
  37573. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  37574. {
  37575. front: {
  37576. height: math.unit(5 + 10/12, "feet"),
  37577. weight: math.unit(150, "lb"),
  37578. name: "Front",
  37579. image: {
  37580. source: "./media/characters/jamie/front.svg",
  37581. extra: 1908/1768,
  37582. bottom: 19/1927
  37583. }
  37584. },
  37585. },
  37586. [
  37587. {
  37588. name: "Minimum",
  37589. height: math.unit(2, "cm")
  37590. },
  37591. {
  37592. name: "Micro",
  37593. height: math.unit(3, "inches")
  37594. },
  37595. {
  37596. name: "Normal",
  37597. height: math.unit(5 + 10/12, "feet"),
  37598. default: true
  37599. },
  37600. {
  37601. name: "Macro",
  37602. height: math.unit(150, "feet")
  37603. },
  37604. {
  37605. name: "Megamacro",
  37606. height: math.unit(10000, "m")
  37607. },
  37608. ]
  37609. ))
  37610. characterMakers.push(() => makeCharacter(
  37611. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  37612. {
  37613. front: {
  37614. height: math.unit(2, "meters"),
  37615. weight: math.unit(100, "kg"),
  37616. name: "Front",
  37617. image: {
  37618. source: "./media/characters/shiron/front.svg",
  37619. extra: 2103/1985,
  37620. bottom: 98/2201
  37621. }
  37622. },
  37623. back: {
  37624. height: math.unit(2, "meters"),
  37625. weight: math.unit(100, "kg"),
  37626. name: "Back",
  37627. image: {
  37628. source: "./media/characters/shiron/back.svg",
  37629. extra: 2110/2015,
  37630. bottom: 89/2199
  37631. }
  37632. },
  37633. hand: {
  37634. height: math.unit(0.96, "feet"),
  37635. name: "Hand",
  37636. image: {
  37637. source: "./media/characters/shiron/hand.svg"
  37638. }
  37639. },
  37640. foot: {
  37641. height: math.unit(1.464, "feet"),
  37642. name: "Foot",
  37643. image: {
  37644. source: "./media/characters/shiron/foot.svg"
  37645. }
  37646. },
  37647. },
  37648. [
  37649. {
  37650. name: "Normal",
  37651. height: math.unit(2, "meters")
  37652. },
  37653. {
  37654. name: "Macro",
  37655. height: math.unit(500, "meters"),
  37656. default: true
  37657. },
  37658. {
  37659. name: "Megamacro",
  37660. height: math.unit(20, "km")
  37661. },
  37662. ]
  37663. ))
  37664. characterMakers.push(() => makeCharacter(
  37665. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  37666. {
  37667. front: {
  37668. height: math.unit(6, "feet"),
  37669. name: "Front",
  37670. image: {
  37671. source: "./media/characters/sam/front.svg",
  37672. extra: 849/826,
  37673. bottom: 19/868
  37674. }
  37675. },
  37676. },
  37677. [
  37678. {
  37679. name: "Normal",
  37680. height: math.unit(6, "feet"),
  37681. default: true
  37682. },
  37683. ]
  37684. ))
  37685. characterMakers.push(() => makeCharacter(
  37686. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  37687. {
  37688. front: {
  37689. height: math.unit(8 + 4/12, "feet"),
  37690. weight: math.unit(122, "kg"),
  37691. name: "Front",
  37692. image: {
  37693. source: "./media/characters/namori-kurogawa/front.svg",
  37694. extra: 1894/1576,
  37695. bottom: 34/1928
  37696. }
  37697. },
  37698. },
  37699. [
  37700. {
  37701. name: "Normal",
  37702. height: math.unit(8 + 4/12, "feet"),
  37703. default: true
  37704. },
  37705. ]
  37706. ))
  37707. characterMakers.push(() => makeCharacter(
  37708. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  37709. {
  37710. front: {
  37711. height: math.unit(9, "feet"),
  37712. weight: math.unit(621, "lb"),
  37713. name: "Front",
  37714. image: {
  37715. source: "./media/characters/unmru/front.svg",
  37716. extra: 1853/1747,
  37717. bottom: 73/1926
  37718. }
  37719. },
  37720. side: {
  37721. height: math.unit(9, "feet"),
  37722. weight: math.unit(621, "lb"),
  37723. name: "Side",
  37724. image: {
  37725. source: "./media/characters/unmru/side.svg",
  37726. extra: 1781/1671,
  37727. bottom: 127/1908
  37728. }
  37729. },
  37730. back: {
  37731. height: math.unit(9, "feet"),
  37732. weight: math.unit(621, "lb"),
  37733. name: "Back",
  37734. image: {
  37735. source: "./media/characters/unmru/back.svg",
  37736. extra: 1894/1765,
  37737. bottom: 75/1969
  37738. }
  37739. },
  37740. dick: {
  37741. height: math.unit(3, "feet"),
  37742. weight: math.unit(35, "lb"),
  37743. name: "Dick",
  37744. image: {
  37745. source: "./media/characters/unmru/dick.svg"
  37746. }
  37747. },
  37748. },
  37749. [
  37750. {
  37751. name: "Normal",
  37752. height: math.unit(9, "feet")
  37753. },
  37754. {
  37755. name: "Natural",
  37756. height: math.unit(27, "feet"),
  37757. default: true
  37758. },
  37759. {
  37760. name: "Giant",
  37761. height: math.unit(90, "feet")
  37762. },
  37763. {
  37764. name: "Kaiju",
  37765. height: math.unit(270, "feet")
  37766. },
  37767. {
  37768. name: "Macro",
  37769. height: math.unit(900, "feet")
  37770. },
  37771. {
  37772. name: "Macro+",
  37773. height: math.unit(2700, "feet")
  37774. },
  37775. {
  37776. name: "Megamacro",
  37777. height: math.unit(9000, "feet")
  37778. },
  37779. {
  37780. name: "City-Crushing",
  37781. height: math.unit(27000, "feet")
  37782. },
  37783. {
  37784. name: "Mountain-Mashing",
  37785. height: math.unit(90000, "feet")
  37786. },
  37787. {
  37788. name: "Earth-Eclipsing",
  37789. height: math.unit(2.7e8, "feet")
  37790. },
  37791. {
  37792. name: "Sol-Swallowing",
  37793. height: math.unit(9e10, "feet")
  37794. },
  37795. {
  37796. name: "Majoris-Munching",
  37797. height: math.unit(2.7e13, "feet")
  37798. },
  37799. ]
  37800. ))
  37801. characterMakers.push(() => makeCharacter(
  37802. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  37803. {
  37804. front: {
  37805. height: math.unit(1, "inch"),
  37806. name: "Front",
  37807. image: {
  37808. source: "./media/characters/squeaks-mouse/front.svg",
  37809. extra: 352/308,
  37810. bottom: 25/377
  37811. }
  37812. },
  37813. },
  37814. [
  37815. {
  37816. name: "Micro",
  37817. height: math.unit(1, "inch"),
  37818. default: true
  37819. },
  37820. ]
  37821. ))
  37822. characterMakers.push(() => makeCharacter(
  37823. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  37824. {
  37825. side: {
  37826. height: math.unit(35, "feet"),
  37827. name: "Side",
  37828. image: {
  37829. source: "./media/characters/sayko/side.svg",
  37830. extra: 1697/1021,
  37831. bottom: 82/1779
  37832. }
  37833. },
  37834. head: {
  37835. height: math.unit(16, "feet"),
  37836. name: "Head",
  37837. image: {
  37838. source: "./media/characters/sayko/head.svg"
  37839. }
  37840. },
  37841. forepaw: {
  37842. height: math.unit(7.85, "feet"),
  37843. name: "Forepaw",
  37844. image: {
  37845. source: "./media/characters/sayko/forepaw.svg"
  37846. }
  37847. },
  37848. hindpaw: {
  37849. height: math.unit(8.8, "feet"),
  37850. name: "Hindpaw",
  37851. image: {
  37852. source: "./media/characters/sayko/hindpaw.svg"
  37853. }
  37854. },
  37855. },
  37856. [
  37857. {
  37858. name: "Normal",
  37859. height: math.unit(35, "feet"),
  37860. default: true
  37861. },
  37862. {
  37863. name: "Colossus",
  37864. height: math.unit(100, "meters")
  37865. },
  37866. {
  37867. name: "\"Small\" Deity",
  37868. height: math.unit(1, "km")
  37869. },
  37870. {
  37871. name: "\"Large\" Deity",
  37872. height: math.unit(15, "km")
  37873. },
  37874. ]
  37875. ))
  37876. characterMakers.push(() => makeCharacter(
  37877. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  37878. {
  37879. front: {
  37880. height: math.unit(6, "feet"),
  37881. weight: math.unit(250, "lb"),
  37882. name: "Front",
  37883. image: {
  37884. source: "./media/characters/mukiro/front.svg",
  37885. extra: 1368/1310,
  37886. bottom: 34/1402
  37887. }
  37888. },
  37889. },
  37890. [
  37891. {
  37892. name: "Normal",
  37893. height: math.unit(6, "feet"),
  37894. default: true
  37895. },
  37896. ]
  37897. ))
  37898. characterMakers.push(() => makeCharacter(
  37899. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  37900. {
  37901. front: {
  37902. height: math.unit(12 + 4/12, "feet"),
  37903. name: "Front",
  37904. image: {
  37905. source: "./media/characters/zeph-the-tiger-god/front.svg",
  37906. extra: 1346/1311,
  37907. bottom: 65/1411
  37908. }
  37909. },
  37910. },
  37911. [
  37912. {
  37913. name: "Base",
  37914. height: math.unit(12 + 4/12, "feet"),
  37915. default: true
  37916. },
  37917. {
  37918. name: "Macro",
  37919. height: math.unit(150, "feet")
  37920. },
  37921. {
  37922. name: "Mega",
  37923. height: math.unit(2, "miles")
  37924. },
  37925. {
  37926. name: "Demi God",
  37927. height: math.unit(4, "AU")
  37928. },
  37929. {
  37930. name: "God Size",
  37931. height: math.unit(1, "universe")
  37932. },
  37933. ]
  37934. ))
  37935. characterMakers.push(() => makeCharacter(
  37936. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  37937. {
  37938. front: {
  37939. height: math.unit(3 + 3/12, "feet"),
  37940. weight: math.unit(88, "lb"),
  37941. name: "Front",
  37942. image: {
  37943. source: "./media/characters/trey/front.svg",
  37944. extra: 1815/1509,
  37945. bottom: 60/1875
  37946. }
  37947. },
  37948. },
  37949. [
  37950. {
  37951. name: "Normal",
  37952. height: math.unit(3 + 3/12, "feet"),
  37953. default: true
  37954. },
  37955. ]
  37956. ))
  37957. characterMakers.push(() => makeCharacter(
  37958. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  37959. {
  37960. front: {
  37961. height: math.unit(4, "meters"),
  37962. name: "Front",
  37963. image: {
  37964. source: "./media/characters/adelonda/front.svg",
  37965. extra: 1077/982,
  37966. bottom: 39/1116
  37967. }
  37968. },
  37969. back: {
  37970. height: math.unit(4, "meters"),
  37971. name: "Back",
  37972. image: {
  37973. source: "./media/characters/adelonda/back.svg",
  37974. extra: 1105/1003,
  37975. bottom: 25/1130
  37976. }
  37977. },
  37978. feral: {
  37979. height: math.unit(40/1.5, "meters"),
  37980. name: "Feral",
  37981. image: {
  37982. source: "./media/characters/adelonda/feral.svg",
  37983. extra: 597/271,
  37984. bottom: 387/984
  37985. }
  37986. },
  37987. },
  37988. [
  37989. {
  37990. name: "Normal",
  37991. height: math.unit(4, "meters"),
  37992. default: true
  37993. },
  37994. ]
  37995. ))
  37996. characterMakers.push(() => makeCharacter(
  37997. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  37998. {
  37999. front: {
  38000. height: math.unit(8 + 4/12, "feet"),
  38001. weight: math.unit(670, "lb"),
  38002. name: "Front",
  38003. image: {
  38004. source: "./media/characters/acadiel/front.svg",
  38005. extra: 1901/1595,
  38006. bottom: 142/2043
  38007. }
  38008. },
  38009. },
  38010. [
  38011. {
  38012. name: "Normal",
  38013. height: math.unit(8 + 4/12, "feet"),
  38014. default: true
  38015. },
  38016. {
  38017. name: "Macro",
  38018. height: math.unit(200, "feet")
  38019. },
  38020. ]
  38021. ))
  38022. characterMakers.push(() => makeCharacter(
  38023. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  38024. {
  38025. front: {
  38026. height: math.unit(6 + 2/12, "feet"),
  38027. weight: math.unit(185, "lb"),
  38028. name: "Front",
  38029. image: {
  38030. source: "./media/characters/kayne-ein/front.svg",
  38031. extra: 1780/1560,
  38032. bottom: 81/1861
  38033. }
  38034. },
  38035. },
  38036. [
  38037. {
  38038. name: "Normal",
  38039. height: math.unit(6 + 2/12, "feet"),
  38040. default: true
  38041. },
  38042. {
  38043. name: "Transformation Stage",
  38044. height: math.unit(15, "feet")
  38045. },
  38046. {
  38047. name: "Macro",
  38048. height: math.unit(150, "feet")
  38049. },
  38050. {
  38051. name: "Earth's Shadow",
  38052. height: math.unit(6200, "miles")
  38053. },
  38054. {
  38055. name: "Universal Demon",
  38056. height: math.unit(28e9, "parsecs")
  38057. },
  38058. {
  38059. name: "Multiverse God",
  38060. height: math.unit(3, "multiverses")
  38061. },
  38062. ]
  38063. ))
  38064. characterMakers.push(() => makeCharacter(
  38065. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  38066. {
  38067. front: {
  38068. height: math.unit(5 + 5/12, "feet"),
  38069. name: "Front",
  38070. image: {
  38071. source: "./media/characters/fawn/front.svg",
  38072. extra: 1873/1731,
  38073. bottom: 95/1968
  38074. }
  38075. },
  38076. back: {
  38077. height: math.unit(5 + 5/12, "feet"),
  38078. name: "Back",
  38079. image: {
  38080. source: "./media/characters/fawn/back.svg",
  38081. extra: 1813/1700,
  38082. bottom: 14/1827
  38083. }
  38084. },
  38085. hoof: {
  38086. height: math.unit(1.45, "feet"),
  38087. name: "Hoof",
  38088. image: {
  38089. source: "./media/characters/fawn/hoof.svg"
  38090. }
  38091. },
  38092. },
  38093. [
  38094. {
  38095. name: "Normal",
  38096. height: math.unit(5 + 5/12, "feet"),
  38097. default: true
  38098. },
  38099. ]
  38100. ))
  38101. characterMakers.push(() => makeCharacter(
  38102. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  38103. {
  38104. front: {
  38105. height: math.unit(2 + 5/12, "feet"),
  38106. name: "Front",
  38107. image: {
  38108. source: "./media/characters/orion/front.svg",
  38109. extra: 1366/1304,
  38110. bottom: 43/1409
  38111. }
  38112. },
  38113. paw: {
  38114. height: math.unit(0.52, "feet"),
  38115. name: "Paw",
  38116. image: {
  38117. source: "./media/characters/orion/paw.svg"
  38118. }
  38119. },
  38120. },
  38121. [
  38122. {
  38123. name: "Normal",
  38124. height: math.unit(2 + 5/12, "feet"),
  38125. default: true
  38126. },
  38127. ]
  38128. ))
  38129. characterMakers.push(() => makeCharacter(
  38130. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  38131. {
  38132. front: {
  38133. height: math.unit(5 + 10/12, "feet"),
  38134. name: "Front",
  38135. image: {
  38136. source: "./media/characters/vera/front.svg",
  38137. extra: 1680/1575,
  38138. bottom: 49/1729
  38139. }
  38140. },
  38141. back: {
  38142. height: math.unit(5 + 10/12, "feet"),
  38143. name: "Back",
  38144. image: {
  38145. source: "./media/characters/vera/back.svg",
  38146. extra: 1700/1588,
  38147. bottom: 18/1718
  38148. }
  38149. },
  38150. arcanine: {
  38151. height: math.unit(6 + 8/12, "feet"),
  38152. name: "Arcanine",
  38153. image: {
  38154. source: "./media/characters/vera/arcanine.svg",
  38155. extra: 1590/1511,
  38156. bottom: 71/1661
  38157. }
  38158. },
  38159. maw: {
  38160. height: math.unit(0.82, "feet"),
  38161. name: "Maw",
  38162. image: {
  38163. source: "./media/characters/vera/maw.svg"
  38164. }
  38165. },
  38166. mawArcanine: {
  38167. height: math.unit(0.97, "feet"),
  38168. name: "Maw (Arcanine)",
  38169. image: {
  38170. source: "./media/characters/vera/maw-arcanine.svg"
  38171. }
  38172. },
  38173. paw: {
  38174. height: math.unit(0.75, "feet"),
  38175. name: "Paw",
  38176. image: {
  38177. source: "./media/characters/vera/paw.svg"
  38178. }
  38179. },
  38180. pawprint: {
  38181. height: math.unit(0.52, "feet"),
  38182. name: "Pawprint",
  38183. image: {
  38184. source: "./media/characters/vera/pawprint.svg"
  38185. }
  38186. },
  38187. },
  38188. [
  38189. {
  38190. name: "Normal",
  38191. height: math.unit(5 + 10/12, "feet"),
  38192. default: true
  38193. },
  38194. {
  38195. name: "Macro",
  38196. height: math.unit(75, "feet")
  38197. },
  38198. ]
  38199. ))
  38200. characterMakers.push(() => makeCharacter(
  38201. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  38202. {
  38203. front: {
  38204. height: math.unit(4, "feet"),
  38205. weight: math.unit(40, "lb"),
  38206. name: "Front",
  38207. image: {
  38208. source: "./media/characters/orvan-rabbit/front.svg",
  38209. extra: 1896/1642,
  38210. bottom: 29/1925
  38211. }
  38212. },
  38213. },
  38214. [
  38215. {
  38216. name: "Normal",
  38217. height: math.unit(4, "feet"),
  38218. default: true
  38219. },
  38220. ]
  38221. ))
  38222. characterMakers.push(() => makeCharacter(
  38223. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  38224. {
  38225. front: {
  38226. height: math.unit(6, "feet"),
  38227. weight: math.unit(168, "lb"),
  38228. name: "Front",
  38229. image: {
  38230. source: "./media/characters/lisa/front.svg",
  38231. extra: 2065/1867,
  38232. bottom: 46/2111
  38233. }
  38234. },
  38235. back: {
  38236. height: math.unit(6, "feet"),
  38237. weight: math.unit(168, "lb"),
  38238. name: "Back",
  38239. image: {
  38240. source: "./media/characters/lisa/back.svg",
  38241. extra: 1982/1838,
  38242. bottom: 29/2011
  38243. }
  38244. },
  38245. maw: {
  38246. height: math.unit(0.81, "feet"),
  38247. name: "Maw",
  38248. image: {
  38249. source: "./media/characters/lisa/maw.svg"
  38250. }
  38251. },
  38252. paw: {
  38253. height: math.unit(0.9, "feet"),
  38254. name: "Paw",
  38255. image: {
  38256. source: "./media/characters/lisa/paw.svg"
  38257. }
  38258. },
  38259. caribousune: {
  38260. height: math.unit(7 + 2/12, "feet"),
  38261. weight: math.unit(268, "lb"),
  38262. name: "Caribousune",
  38263. image: {
  38264. source: "./media/characters/lisa/caribousune.svg",
  38265. extra: 1843/1633,
  38266. bottom: 29/1872
  38267. }
  38268. },
  38269. frontCaribousune: {
  38270. height: math.unit(7 + 2/12, "feet"),
  38271. weight: math.unit(268, "lb"),
  38272. name: "Front (Caribousune)",
  38273. image: {
  38274. source: "./media/characters/lisa/front-caribousune.svg",
  38275. extra: 1818/1638,
  38276. bottom: 52/1870
  38277. }
  38278. },
  38279. sideCaribousune: {
  38280. height: math.unit(7 + 2/12, "feet"),
  38281. weight: math.unit(268, "lb"),
  38282. name: "Side (Caribousune)",
  38283. image: {
  38284. source: "./media/characters/lisa/side-caribousune.svg",
  38285. extra: 1851/1635,
  38286. bottom: 16/1867
  38287. }
  38288. },
  38289. backCaribousune: {
  38290. height: math.unit(7 + 2/12, "feet"),
  38291. weight: math.unit(268, "lb"),
  38292. name: "Back (Caribousune)",
  38293. image: {
  38294. source: "./media/characters/lisa/back-caribousune.svg",
  38295. extra: 1801/1604,
  38296. bottom: 44/1845
  38297. }
  38298. },
  38299. caribou: {
  38300. height: math.unit(7 + 2/12, "feet"),
  38301. weight: math.unit(268, "lb"),
  38302. name: "Caribou",
  38303. image: {
  38304. source: "./media/characters/lisa/caribou.svg",
  38305. extra: 1843/1633,
  38306. bottom: 29/1872
  38307. }
  38308. },
  38309. frontCaribou: {
  38310. height: math.unit(7 + 2/12, "feet"),
  38311. weight: math.unit(268, "lb"),
  38312. name: "Front (Caribou)",
  38313. image: {
  38314. source: "./media/characters/lisa/front-caribou.svg",
  38315. extra: 1818/1638,
  38316. bottom: 52/1870
  38317. }
  38318. },
  38319. sideCaribou: {
  38320. height: math.unit(7 + 2/12, "feet"),
  38321. weight: math.unit(268, "lb"),
  38322. name: "Side (Caribou)",
  38323. image: {
  38324. source: "./media/characters/lisa/side-caribou.svg",
  38325. extra: 1851/1635,
  38326. bottom: 16/1867
  38327. }
  38328. },
  38329. backCaribou: {
  38330. height: math.unit(7 + 2/12, "feet"),
  38331. weight: math.unit(268, "lb"),
  38332. name: "Back (Caribou)",
  38333. image: {
  38334. source: "./media/characters/lisa/back-caribou.svg",
  38335. extra: 1801/1604,
  38336. bottom: 44/1845
  38337. }
  38338. },
  38339. mawCaribou: {
  38340. height: math.unit(1.45, "feet"),
  38341. name: "Maw (Caribou)",
  38342. image: {
  38343. source: "./media/characters/lisa/maw-caribou.svg"
  38344. }
  38345. },
  38346. mawCaribousune: {
  38347. height: math.unit(1.45, "feet"),
  38348. name: "Maw (Caribousune)",
  38349. image: {
  38350. source: "./media/characters/lisa/maw-caribousune.svg"
  38351. }
  38352. },
  38353. pawCaribousune: {
  38354. height: math.unit(1.61, "feet"),
  38355. name: "Paw (Caribou)",
  38356. image: {
  38357. source: "./media/characters/lisa/paw-caribousune.svg"
  38358. }
  38359. },
  38360. },
  38361. [
  38362. {
  38363. name: "Normal",
  38364. height: math.unit(6, "feet")
  38365. },
  38366. {
  38367. name: "God Size",
  38368. height: math.unit(72, "feet"),
  38369. default: true
  38370. },
  38371. {
  38372. name: "Towering",
  38373. height: math.unit(288, "feet")
  38374. },
  38375. {
  38376. name: "City Size",
  38377. height: math.unit(48384, "feet")
  38378. },
  38379. {
  38380. name: "Continental",
  38381. height: math.unit(4200, "miles")
  38382. },
  38383. {
  38384. name: "Planet Eater",
  38385. height: math.unit(42, "earths")
  38386. },
  38387. {
  38388. name: "Star Swallower",
  38389. height: math.unit(42, "solarradii")
  38390. },
  38391. {
  38392. name: "System Swallower",
  38393. height: math.unit(84000, "AU")
  38394. },
  38395. {
  38396. name: "Galaxy Gobbler",
  38397. height: math.unit(42, "galaxies")
  38398. },
  38399. {
  38400. name: "Universe Devourer",
  38401. height: math.unit(42, "universes")
  38402. },
  38403. {
  38404. name: "Multiverse Muncher",
  38405. height: math.unit(42, "multiverses")
  38406. },
  38407. ]
  38408. ))
  38409. characterMakers.push(() => makeCharacter(
  38410. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  38411. {
  38412. front: {
  38413. height: math.unit(36, "feet"),
  38414. name: "Front",
  38415. image: {
  38416. source: "./media/characters/shadow-rat/front.svg",
  38417. extra: 1845/1758,
  38418. bottom: 83/1928
  38419. }
  38420. },
  38421. },
  38422. [
  38423. {
  38424. name: "Macro",
  38425. height: math.unit(36, "feet"),
  38426. default: true
  38427. },
  38428. ]
  38429. ))
  38430. characterMakers.push(() => makeCharacter(
  38431. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  38432. {
  38433. side: {
  38434. height: math.unit(8, "feet"),
  38435. weight: math.unit(2630, "lb"),
  38436. name: "Side",
  38437. image: {
  38438. source: "./media/characters/torallia/side.svg",
  38439. extra: 2164/2021,
  38440. bottom: 371/2535
  38441. }
  38442. },
  38443. },
  38444. [
  38445. {
  38446. name: "Mortal Interaction",
  38447. height: math.unit(8, "feet")
  38448. },
  38449. {
  38450. name: "Natural",
  38451. height: math.unit(24, "feet"),
  38452. default: true
  38453. },
  38454. {
  38455. name: "Giant",
  38456. height: math.unit(80, "feet")
  38457. },
  38458. {
  38459. name: "Kaiju",
  38460. height: math.unit(240, "feet")
  38461. },
  38462. {
  38463. name: "Macro",
  38464. height: math.unit(800, "feet")
  38465. },
  38466. {
  38467. name: "Macro+",
  38468. height: math.unit(2400, "feet")
  38469. },
  38470. {
  38471. name: "Macro++",
  38472. height: math.unit(8000, "feet")
  38473. },
  38474. {
  38475. name: "City-Crushing",
  38476. height: math.unit(24000, "feet")
  38477. },
  38478. {
  38479. name: "Mountain-Mashing",
  38480. height: math.unit(80000, "feet")
  38481. },
  38482. {
  38483. name: "District Demolisher",
  38484. height: math.unit(240000, "feet")
  38485. },
  38486. {
  38487. name: "Tri-County Terror",
  38488. height: math.unit(800000, "feet")
  38489. },
  38490. {
  38491. name: "State Smasher",
  38492. height: math.unit(2.4e6, "feet")
  38493. },
  38494. {
  38495. name: "Nation Nemesis",
  38496. height: math.unit(8e6, "feet")
  38497. },
  38498. {
  38499. name: "Continent Cracker",
  38500. height: math.unit(2.4e7, "feet")
  38501. },
  38502. {
  38503. name: "Planet-Pillaging",
  38504. height: math.unit(8e7, "feet")
  38505. },
  38506. {
  38507. name: "Earth-Eclipsing",
  38508. height: math.unit(2.4e8, "feet")
  38509. },
  38510. {
  38511. name: "Jovian-Jostling",
  38512. height: math.unit(8e8, "feet")
  38513. },
  38514. {
  38515. name: "Gas Giant Gulper",
  38516. height: math.unit(2.4e9, "feet")
  38517. },
  38518. {
  38519. name: "Astral Annihilator",
  38520. height: math.unit(8e9, "feet")
  38521. },
  38522. {
  38523. name: "Celestial Conqueror",
  38524. height: math.unit(2.4e10, "feet")
  38525. },
  38526. {
  38527. name: "Sol-Swallowing",
  38528. height: math.unit(8e10, "feet")
  38529. },
  38530. {
  38531. name: "Hunter of the Heavens",
  38532. height: math.unit(2.4e13, "feet")
  38533. },
  38534. ]
  38535. ))
  38536. characterMakers.push(() => makeCharacter(
  38537. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  38538. {
  38539. front: {
  38540. height: math.unit(6 + 8/12, "feet"),
  38541. name: "Front",
  38542. image: {
  38543. source: "./media/characters/rebecca-pawlson/front.svg",
  38544. extra: 1737/1596,
  38545. bottom: 107/1844
  38546. }
  38547. },
  38548. back: {
  38549. height: math.unit(6 + 8/12, "feet"),
  38550. name: "Back",
  38551. image: {
  38552. source: "./media/characters/rebecca-pawlson/back.svg",
  38553. extra: 1702/1523,
  38554. bottom: 86/1788
  38555. }
  38556. },
  38557. },
  38558. [
  38559. {
  38560. name: "Normal",
  38561. height: math.unit(6 + 8/12, "feet")
  38562. },
  38563. {
  38564. name: "Mini Macro",
  38565. height: math.unit(10, "feet"),
  38566. default: true
  38567. },
  38568. {
  38569. name: "Macro",
  38570. height: math.unit(100, "feet")
  38571. },
  38572. {
  38573. name: "Mega Macro",
  38574. height: math.unit(2500, "feet")
  38575. },
  38576. {
  38577. name: "Giga Macro",
  38578. height: math.unit(50, "miles")
  38579. },
  38580. ]
  38581. ))
  38582. characterMakers.push(() => makeCharacter(
  38583. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  38584. {
  38585. front: {
  38586. height: math.unit(7 + 6/12, "feet"),
  38587. weight: math.unit(600, "lb"),
  38588. name: "Front",
  38589. image: {
  38590. source: "./media/characters/moxie-nova/front.svg",
  38591. extra: 1734/1652,
  38592. bottom: 41/1775
  38593. }
  38594. },
  38595. },
  38596. [
  38597. {
  38598. name: "Normal",
  38599. height: math.unit(7 + 6/12, "feet"),
  38600. default: true
  38601. },
  38602. ]
  38603. ))
  38604. characterMakers.push(() => makeCharacter(
  38605. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  38606. {
  38607. goat: {
  38608. height: math.unit(4, "feet"),
  38609. weight: math.unit(180, "lb"),
  38610. name: "Goat",
  38611. image: {
  38612. source: "./media/characters/tiffany/goat.svg",
  38613. extra: 1845/1595,
  38614. bottom: 106/1951
  38615. }
  38616. },
  38617. front: {
  38618. height: math.unit(5, "feet"),
  38619. weight: math.unit(150, "lb"),
  38620. name: "Foxcoon",
  38621. image: {
  38622. source: "./media/characters/tiffany/foxcoon.svg",
  38623. extra: 1941/1845,
  38624. bottom: 58/1999
  38625. }
  38626. },
  38627. },
  38628. [
  38629. {
  38630. name: "Normal",
  38631. height: math.unit(5, "feet"),
  38632. default: true
  38633. },
  38634. ]
  38635. ))
  38636. characterMakers.push(() => makeCharacter(
  38637. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  38638. {
  38639. front: {
  38640. height: math.unit(8, "feet"),
  38641. weight: math.unit(300, "lb"),
  38642. name: "Front",
  38643. image: {
  38644. source: "./media/characters/raxinath/front.svg",
  38645. extra: 1407/1309,
  38646. bottom: 39/1446
  38647. }
  38648. },
  38649. back: {
  38650. height: math.unit(8, "feet"),
  38651. weight: math.unit(300, "lb"),
  38652. name: "Back",
  38653. image: {
  38654. source: "./media/characters/raxinath/back.svg",
  38655. extra: 1405/1315,
  38656. bottom: 9/1414
  38657. }
  38658. },
  38659. },
  38660. [
  38661. {
  38662. name: "Speck",
  38663. height: math.unit(0.5, "nm")
  38664. },
  38665. {
  38666. name: "Micro",
  38667. height: math.unit(3, "inches")
  38668. },
  38669. {
  38670. name: "Kobold",
  38671. height: math.unit(3, "feet")
  38672. },
  38673. {
  38674. name: "Normal",
  38675. height: math.unit(8, "feet"),
  38676. default: true
  38677. },
  38678. {
  38679. name: "Giant",
  38680. height: math.unit(50, "feet")
  38681. },
  38682. {
  38683. name: "Macro",
  38684. height: math.unit(1000, "feet")
  38685. },
  38686. {
  38687. name: "Megamacro",
  38688. height: math.unit(1, "mile")
  38689. },
  38690. ]
  38691. ))
  38692. characterMakers.push(() => makeCharacter(
  38693. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  38694. {
  38695. front: {
  38696. height: math.unit(10, "feet"),
  38697. weight: math.unit(1442, "lb"),
  38698. name: "Front",
  38699. image: {
  38700. source: "./media/characters/mal-dragon/front.svg",
  38701. extra: 1515/1444,
  38702. bottom: 113/1628
  38703. }
  38704. },
  38705. back: {
  38706. height: math.unit(10, "feet"),
  38707. weight: math.unit(1442, "lb"),
  38708. name: "Back",
  38709. image: {
  38710. source: "./media/characters/mal-dragon/back.svg",
  38711. extra: 1527/1434,
  38712. bottom: 25/1552
  38713. }
  38714. },
  38715. },
  38716. [
  38717. {
  38718. name: "Mortal Interaction",
  38719. height: math.unit(10, "feet"),
  38720. default: true
  38721. },
  38722. {
  38723. name: "Large",
  38724. height: math.unit(30, "feet")
  38725. },
  38726. {
  38727. name: "Kaiju",
  38728. height: math.unit(300, "feet")
  38729. },
  38730. {
  38731. name: "Megamacro",
  38732. height: math.unit(10000, "feet")
  38733. },
  38734. {
  38735. name: "Continent Cracker",
  38736. height: math.unit(30000000, "feet")
  38737. },
  38738. {
  38739. name: "Sol-Swallowing",
  38740. height: math.unit(1e11, "feet")
  38741. },
  38742. {
  38743. name: "Light Universal",
  38744. height: math.unit(5, "universes")
  38745. },
  38746. {
  38747. name: "Universe Atoms",
  38748. height: math.unit(1.829e9, "universes")
  38749. },
  38750. {
  38751. name: "Light Multiversal",
  38752. height: math.unit(5, "multiverses")
  38753. },
  38754. {
  38755. name: "Multiverse Atoms",
  38756. height: math.unit(1.829e9, "multiverses")
  38757. },
  38758. {
  38759. name: "Fabric of Time",
  38760. height: math.unit(1e262, "multiverses")
  38761. },
  38762. ]
  38763. ))
  38764. characterMakers.push(() => makeCharacter(
  38765. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  38766. {
  38767. front: {
  38768. height: math.unit(9, "feet"),
  38769. weight: math.unit(1050, "lb"),
  38770. name: "Front",
  38771. image: {
  38772. source: "./media/characters/tabitha/front.svg",
  38773. extra: 2083/1994,
  38774. bottom: 68/2151
  38775. }
  38776. },
  38777. },
  38778. [
  38779. {
  38780. name: "Baseline",
  38781. height: math.unit(9, "feet"),
  38782. default: true
  38783. },
  38784. {
  38785. name: "Giant",
  38786. height: math.unit(90, "feet")
  38787. },
  38788. {
  38789. name: "Macro",
  38790. height: math.unit(900, "feet")
  38791. },
  38792. {
  38793. name: "Megamacro",
  38794. height: math.unit(9000, "feet")
  38795. },
  38796. {
  38797. name: "City-Crushing",
  38798. height: math.unit(27000, "feet")
  38799. },
  38800. {
  38801. name: "Mountain-Mashing",
  38802. height: math.unit(90000, "feet")
  38803. },
  38804. {
  38805. name: "Nation Nemesis",
  38806. height: math.unit(9e6, "feet")
  38807. },
  38808. {
  38809. name: "Continent Cracker",
  38810. height: math.unit(27e6, "feet")
  38811. },
  38812. {
  38813. name: "Earth-Eclipsing",
  38814. height: math.unit(2.7e8, "feet")
  38815. },
  38816. {
  38817. name: "Gas Giant Gulper",
  38818. height: math.unit(2.7e9, "feet")
  38819. },
  38820. {
  38821. name: "Sol-Swallowing",
  38822. height: math.unit(9e10, "feet")
  38823. },
  38824. {
  38825. name: "Galaxy Gulper",
  38826. height: math.unit(9, "galaxies")
  38827. },
  38828. {
  38829. name: "Cosmos Churner",
  38830. height: math.unit(9, "universes")
  38831. },
  38832. ]
  38833. ))
  38834. characterMakers.push(() => makeCharacter(
  38835. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  38836. {
  38837. front: {
  38838. height: math.unit(160, "cm"),
  38839. weight: math.unit(55, "kg"),
  38840. name: "Front",
  38841. image: {
  38842. source: "./media/characters/tow/front.svg",
  38843. extra: 1751/1722,
  38844. bottom: 74/1825
  38845. }
  38846. },
  38847. },
  38848. [
  38849. {
  38850. name: "Norm",
  38851. height: math.unit(160, "cm")
  38852. },
  38853. {
  38854. name: "Casual",
  38855. height: math.unit(3200, "m"),
  38856. default: true
  38857. },
  38858. {
  38859. name: "Show-Off",
  38860. height: math.unit(160, "km")
  38861. },
  38862. ]
  38863. ))
  38864. characterMakers.push(() => makeCharacter(
  38865. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  38866. {
  38867. front: {
  38868. height: math.unit(7 + 11/12, "feet"),
  38869. weight: math.unit(342.8, "lb"),
  38870. name: "Front",
  38871. image: {
  38872. source: "./media/characters/vivian-orca-dragon/front.svg",
  38873. extra: 1890/1865,
  38874. bottom: 28/1918
  38875. }
  38876. },
  38877. },
  38878. [
  38879. {
  38880. name: "Micro",
  38881. height: math.unit(5, "inches")
  38882. },
  38883. {
  38884. name: "Normal",
  38885. height: math.unit(7 + 11/12, "feet"),
  38886. default: true
  38887. },
  38888. {
  38889. name: "Macro",
  38890. height: math.unit(395 + 7/12, "feet")
  38891. },
  38892. ]
  38893. ))
  38894. characterMakers.push(() => makeCharacter(
  38895. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  38896. {
  38897. side: {
  38898. height: math.unit(10, "feet"),
  38899. weight: math.unit(1442, "lb"),
  38900. name: "Side",
  38901. image: {
  38902. source: "./media/characters/lotherakon/side.svg",
  38903. extra: 1604/1497,
  38904. bottom: 89/1693
  38905. }
  38906. },
  38907. },
  38908. [
  38909. {
  38910. name: "Mortal Interaction",
  38911. height: math.unit(10, "feet")
  38912. },
  38913. {
  38914. name: "Large",
  38915. height: math.unit(30, "feet"),
  38916. default: true
  38917. },
  38918. {
  38919. name: "Giant",
  38920. height: math.unit(100, "feet")
  38921. },
  38922. {
  38923. name: "Kaiju",
  38924. height: math.unit(300, "feet")
  38925. },
  38926. {
  38927. name: "Macro",
  38928. height: math.unit(1000, "feet")
  38929. },
  38930. {
  38931. name: "Macro+",
  38932. height: math.unit(3000, "feet")
  38933. },
  38934. {
  38935. name: "Megamacro",
  38936. height: math.unit(10000, "feet")
  38937. },
  38938. {
  38939. name: "City-Crushing",
  38940. height: math.unit(30000, "feet")
  38941. },
  38942. {
  38943. name: "Continent Cracker",
  38944. height: math.unit(30e6, "feet")
  38945. },
  38946. {
  38947. name: "Earth Eclipsing",
  38948. height: math.unit(3e8, "feet")
  38949. },
  38950. {
  38951. name: "Gas Giant Gulper",
  38952. height: math.unit(3e9, "feet")
  38953. },
  38954. {
  38955. name: "Sol-Swallowing",
  38956. height: math.unit(1e11, "feet")
  38957. },
  38958. {
  38959. name: "System Swallower",
  38960. height: math.unit(3e14, "feet")
  38961. },
  38962. {
  38963. name: "Galaxy Gulper",
  38964. height: math.unit(10, "galaxies")
  38965. },
  38966. {
  38967. name: "Light Universal",
  38968. height: math.unit(5, "universes")
  38969. },
  38970. {
  38971. name: "Universe Palm",
  38972. height: math.unit(20, "universes")
  38973. },
  38974. {
  38975. name: "Light Multiversal",
  38976. height: math.unit(5, "multiverses")
  38977. },
  38978. {
  38979. name: "Multiverse Palm",
  38980. height: math.unit(20, "multiverses")
  38981. },
  38982. {
  38983. name: "Inferno Incarnate",
  38984. height: math.unit(1e7, "multiverses")
  38985. },
  38986. ]
  38987. ))
  38988. characterMakers.push(() => makeCharacter(
  38989. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  38990. {
  38991. front: {
  38992. height: math.unit(8, "feet"),
  38993. weight: math.unit(1200, "lb"),
  38994. name: "Front",
  38995. image: {
  38996. source: "./media/characters/malithee/front.svg",
  38997. extra: 1675/1640,
  38998. bottom: 162/1837
  38999. }
  39000. },
  39001. },
  39002. [
  39003. {
  39004. name: "Mortal Interaction",
  39005. height: math.unit(8, "feet"),
  39006. default: true
  39007. },
  39008. {
  39009. name: "Large",
  39010. height: math.unit(24, "feet")
  39011. },
  39012. {
  39013. name: "Kaiju",
  39014. height: math.unit(240, "feet")
  39015. },
  39016. {
  39017. name: "Megamacro",
  39018. height: math.unit(8000, "feet")
  39019. },
  39020. {
  39021. name: "Continent Cracker",
  39022. height: math.unit(24e6, "feet")
  39023. },
  39024. {
  39025. name: "Earth-Eclipsing",
  39026. height: math.unit(2.4e8, "feet")
  39027. },
  39028. {
  39029. name: "Sol-Swallowing",
  39030. height: math.unit(8e10, "feet")
  39031. },
  39032. {
  39033. name: "Galaxy Gulper",
  39034. height: math.unit(8, "galaxies")
  39035. },
  39036. {
  39037. name: "Light Universal",
  39038. height: math.unit(4, "universes")
  39039. },
  39040. {
  39041. name: "Universe Atoms",
  39042. height: math.unit(1.829e9, "universes")
  39043. },
  39044. {
  39045. name: "Light Multiversal",
  39046. height: math.unit(4, "multiverses")
  39047. },
  39048. {
  39049. name: "Multiverse Atoms",
  39050. height: math.unit(1.829e9, "multiverses")
  39051. },
  39052. {
  39053. name: "Nigh-Omnipresence",
  39054. height: math.unit(8e261, "multiverses")
  39055. },
  39056. ]
  39057. ))
  39058. characterMakers.push(() => makeCharacter(
  39059. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  39060. {
  39061. front: {
  39062. height: math.unit(10, "feet"),
  39063. weight: math.unit(1500, "lb"),
  39064. name: "Front",
  39065. image: {
  39066. source: "./media/characters/miles-thestia/front.svg",
  39067. extra: 1812/1727,
  39068. bottom: 86/1898
  39069. }
  39070. },
  39071. back: {
  39072. height: math.unit(10, "feet"),
  39073. weight: math.unit(1500, "lb"),
  39074. name: "Back",
  39075. image: {
  39076. source: "./media/characters/miles-thestia/back.svg",
  39077. extra: 1799/1690,
  39078. bottom: 47/1846
  39079. }
  39080. },
  39081. frontNsfw: {
  39082. height: math.unit(10, "feet"),
  39083. weight: math.unit(1500, "lb"),
  39084. name: "Front (NSFW)",
  39085. image: {
  39086. source: "./media/characters/miles-thestia/front-nsfw.svg",
  39087. extra: 1812/1727,
  39088. bottom: 86/1898
  39089. }
  39090. },
  39091. },
  39092. [
  39093. {
  39094. name: "Mini-Macro",
  39095. height: math.unit(10, "feet"),
  39096. default: true
  39097. },
  39098. ]
  39099. ))
  39100. characterMakers.push(() => makeCharacter(
  39101. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  39102. {
  39103. front: {
  39104. height: math.unit(25, "feet"),
  39105. name: "Front",
  39106. image: {
  39107. source: "./media/characters/titan-s-wulf/front.svg",
  39108. extra: 1560/1484,
  39109. bottom: 76/1636
  39110. }
  39111. },
  39112. },
  39113. [
  39114. {
  39115. name: "Smallest",
  39116. height: math.unit(25, "feet"),
  39117. default: true
  39118. },
  39119. {
  39120. name: "Normal",
  39121. height: math.unit(200, "feet")
  39122. },
  39123. {
  39124. name: "Macro",
  39125. height: math.unit(200000, "feet")
  39126. },
  39127. {
  39128. name: "Multiversal Original",
  39129. height: math.unit(10000, "multiverses")
  39130. },
  39131. ]
  39132. ))
  39133. characterMakers.push(() => makeCharacter(
  39134. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  39135. {
  39136. front: {
  39137. height: math.unit(8, "feet"),
  39138. weight: math.unit(553, "lb"),
  39139. name: "Front",
  39140. image: {
  39141. source: "./media/characters/tawendeh/front.svg",
  39142. extra: 2365/2268,
  39143. bottom: 83/2448
  39144. }
  39145. },
  39146. frontClothed: {
  39147. height: math.unit(8, "feet"),
  39148. weight: math.unit(553, "lb"),
  39149. name: "Front (Clothed)",
  39150. image: {
  39151. source: "./media/characters/tawendeh/front-clothed.svg",
  39152. extra: 2365/2268,
  39153. bottom: 83/2448
  39154. }
  39155. },
  39156. back: {
  39157. height: math.unit(8, "feet"),
  39158. weight: math.unit(553, "lb"),
  39159. name: "Back",
  39160. image: {
  39161. source: "./media/characters/tawendeh/back.svg",
  39162. extra: 2397/2294,
  39163. bottom: 42/2439
  39164. }
  39165. },
  39166. },
  39167. [
  39168. {
  39169. name: "Mortal Interaction",
  39170. height: math.unit(8, "feet"),
  39171. default: true
  39172. },
  39173. {
  39174. name: "Giant",
  39175. height: math.unit(80, "feet")
  39176. },
  39177. {
  39178. name: "Macro",
  39179. height: math.unit(800, "feet")
  39180. },
  39181. {
  39182. name: "Megamacro",
  39183. height: math.unit(8000, "feet")
  39184. },
  39185. {
  39186. name: "City-Crushing",
  39187. height: math.unit(24000, "feet")
  39188. },
  39189. {
  39190. name: "Mountain-Mashing",
  39191. height: math.unit(80000, "feet")
  39192. },
  39193. {
  39194. name: "Nation Nemesis",
  39195. height: math.unit(8e6, "feet")
  39196. },
  39197. {
  39198. name: "Continent Cracker",
  39199. height: math.unit(24e6, "feet")
  39200. },
  39201. {
  39202. name: "Earth-Eclipsing",
  39203. height: math.unit(2.4e8, "feet")
  39204. },
  39205. {
  39206. name: "Gas Giant Gulper",
  39207. height: math.unit(2.4e9, "feet")
  39208. },
  39209. {
  39210. name: "Sol-Swallowing",
  39211. height: math.unit(8e10, "feet")
  39212. },
  39213. {
  39214. name: "Galaxy Gulper",
  39215. height: math.unit(8, "galaxies")
  39216. },
  39217. {
  39218. name: "Cosmos Churner",
  39219. height: math.unit(8, "universes")
  39220. },
  39221. {
  39222. name: "Omnipotent Otter",
  39223. height: math.unit(80, "universes")
  39224. },
  39225. ]
  39226. ))
  39227. characterMakers.push(() => makeCharacter(
  39228. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  39229. {
  39230. front: {
  39231. height: math.unit(2.6, "meters"),
  39232. weight: math.unit(900, "kg"),
  39233. name: "Front",
  39234. image: {
  39235. source: "./media/characters/neesha/front.svg",
  39236. extra: 1803/1653,
  39237. bottom: 128/1931
  39238. }
  39239. },
  39240. },
  39241. [
  39242. {
  39243. name: "Normal",
  39244. height: math.unit(2.6, "meters"),
  39245. default: true
  39246. },
  39247. {
  39248. name: "Macro",
  39249. height: math.unit(50, "meters")
  39250. },
  39251. ]
  39252. ))
  39253. characterMakers.push(() => makeCharacter(
  39254. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  39255. {
  39256. front: {
  39257. height: math.unit(5, "feet"),
  39258. weight: math.unit(185, "lb"),
  39259. name: "Front",
  39260. image: {
  39261. source: "./media/characters/kyera/front.svg",
  39262. extra: 1875/1790,
  39263. bottom: 96/1971
  39264. }
  39265. },
  39266. },
  39267. [
  39268. {
  39269. name: "Normal",
  39270. height: math.unit(5, "feet"),
  39271. default: true
  39272. },
  39273. ]
  39274. ))
  39275. characterMakers.push(() => makeCharacter(
  39276. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  39277. {
  39278. front: {
  39279. height: math.unit(7 + 6/12, "feet"),
  39280. weight: math.unit(540, "lb"),
  39281. name: "Front",
  39282. image: {
  39283. source: "./media/characters/yuko/front.svg",
  39284. extra: 1282/1222,
  39285. bottom: 101/1383
  39286. }
  39287. },
  39288. frontClothed: {
  39289. height: math.unit(7 + 6/12, "feet"),
  39290. weight: math.unit(540, "lb"),
  39291. name: "Front (Clothed)",
  39292. image: {
  39293. source: "./media/characters/yuko/front-clothed.svg",
  39294. extra: 1282/1222,
  39295. bottom: 101/1383
  39296. }
  39297. },
  39298. },
  39299. [
  39300. {
  39301. name: "Normal",
  39302. height: math.unit(7 + 6/12, "feet"),
  39303. default: true
  39304. },
  39305. {
  39306. name: "Macro",
  39307. height: math.unit(26 + 9/12, "feet")
  39308. },
  39309. {
  39310. name: "Megamacro",
  39311. height: math.unit(300, "feet")
  39312. },
  39313. {
  39314. name: "Gigamacro",
  39315. height: math.unit(5000, "feet")
  39316. },
  39317. {
  39318. name: "Planetary",
  39319. height: math.unit(10000, "miles")
  39320. },
  39321. ]
  39322. ))
  39323. characterMakers.push(() => makeCharacter(
  39324. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  39325. {
  39326. front: {
  39327. height: math.unit(8 + 2/12, "feet"),
  39328. weight: math.unit(600, "lb"),
  39329. name: "Front",
  39330. image: {
  39331. source: "./media/characters/deam-nitrel/front.svg",
  39332. extra: 1308/1234,
  39333. bottom: 125/1433
  39334. }
  39335. },
  39336. },
  39337. [
  39338. {
  39339. name: "Normal",
  39340. height: math.unit(8 + 2/12, "feet"),
  39341. default: true
  39342. },
  39343. ]
  39344. ))
  39345. characterMakers.push(() => makeCharacter(
  39346. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  39347. {
  39348. front: {
  39349. height: math.unit(6.1, "feet"),
  39350. weight: math.unit(180, "lb"),
  39351. name: "Front",
  39352. image: {
  39353. source: "./media/characters/skyress/front.svg",
  39354. extra: 1045/915,
  39355. bottom: 28/1073
  39356. }
  39357. },
  39358. maw: {
  39359. height: math.unit(1, "feet"),
  39360. name: "Maw",
  39361. image: {
  39362. source: "./media/characters/skyress/maw.svg"
  39363. }
  39364. },
  39365. },
  39366. [
  39367. {
  39368. name: "Normal",
  39369. height: math.unit(6.1, "feet"),
  39370. default: true
  39371. },
  39372. {
  39373. name: "Macro",
  39374. height: math.unit(200, "feet")
  39375. },
  39376. ]
  39377. ))
  39378. characterMakers.push(() => makeCharacter(
  39379. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  39380. {
  39381. front: {
  39382. height: math.unit(4 + 2/12, "feet"),
  39383. weight: math.unit(40, "kg"),
  39384. name: "Front",
  39385. image: {
  39386. source: "./media/characters/amethyst-jones/front.svg",
  39387. extra: 1220/1150,
  39388. bottom: 101/1321
  39389. }
  39390. },
  39391. },
  39392. [
  39393. {
  39394. name: "Normal",
  39395. height: math.unit(4 + 2/12, "feet"),
  39396. default: true
  39397. },
  39398. ]
  39399. ))
  39400. characterMakers.push(() => makeCharacter(
  39401. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  39402. {
  39403. front: {
  39404. height: math.unit(1.7, "m"),
  39405. weight: math.unit(135, "lb"),
  39406. name: "Front",
  39407. image: {
  39408. source: "./media/characters/jade/front.svg",
  39409. extra: 1818/1767,
  39410. bottom: 32/1850
  39411. }
  39412. },
  39413. back: {
  39414. height: math.unit(1.7, "m"),
  39415. weight: math.unit(135, "lb"),
  39416. name: "Back",
  39417. image: {
  39418. source: "./media/characters/jade/back.svg",
  39419. extra: 1869/1809,
  39420. bottom: 35/1904
  39421. }
  39422. },
  39423. hand: {
  39424. height: math.unit(0.24, "m"),
  39425. name: "Hand",
  39426. image: {
  39427. source: "./media/characters/jade/hand.svg"
  39428. }
  39429. },
  39430. foot: {
  39431. height: math.unit(0.263, "m"),
  39432. name: "Foot",
  39433. image: {
  39434. source: "./media/characters/jade/foot.svg"
  39435. }
  39436. },
  39437. dick: {
  39438. height: math.unit(0.47, "m"),
  39439. name: "Dick",
  39440. image: {
  39441. source: "./media/characters/jade/dick.svg"
  39442. }
  39443. },
  39444. },
  39445. [
  39446. {
  39447. name: "Micro",
  39448. height: math.unit(22, "cm")
  39449. },
  39450. {
  39451. name: "Normal",
  39452. height: math.unit(1.7, "m"),
  39453. default: true
  39454. },
  39455. {
  39456. name: "Macro",
  39457. height: math.unit(152, "m")
  39458. },
  39459. ]
  39460. ))
  39461. characterMakers.push(() => makeCharacter(
  39462. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  39463. {
  39464. front: {
  39465. height: math.unit(100, "miles"),
  39466. weight: math.unit(20000, "tons"),
  39467. name: "Front",
  39468. image: {
  39469. source: "./media/characters/cookie/front.svg",
  39470. extra: 1125/1070,
  39471. bottom: 30/1155
  39472. }
  39473. },
  39474. },
  39475. [
  39476. {
  39477. name: "Big",
  39478. height: math.unit(50, "feet")
  39479. },
  39480. {
  39481. name: "Macro",
  39482. height: math.unit(100, "miles"),
  39483. default: true
  39484. },
  39485. {
  39486. name: "Megamacro",
  39487. height: math.unit(90000, "miles")
  39488. },
  39489. ]
  39490. ))
  39491. characterMakers.push(() => makeCharacter(
  39492. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  39493. {
  39494. front: {
  39495. height: math.unit(6, "feet"),
  39496. weight: math.unit(145, "lb"),
  39497. name: "Front",
  39498. image: {
  39499. source: "./media/characters/farzian/front.svg",
  39500. extra: 1902/1693,
  39501. bottom: 108/2010
  39502. }
  39503. },
  39504. },
  39505. [
  39506. {
  39507. name: "Macro",
  39508. height: math.unit(500, "feet"),
  39509. default: true
  39510. },
  39511. ]
  39512. ))
  39513. characterMakers.push(() => makeCharacter(
  39514. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  39515. {
  39516. front: {
  39517. height: math.unit(3 + 6/12, "feet"),
  39518. weight: math.unit(50, "lb"),
  39519. name: "Front",
  39520. image: {
  39521. source: "./media/characters/kimberly-tilson/front.svg",
  39522. extra: 1400/1322,
  39523. bottom: 36/1436
  39524. }
  39525. },
  39526. back: {
  39527. height: math.unit(3 + 6/12, "feet"),
  39528. weight: math.unit(50, "lb"),
  39529. name: "Back",
  39530. image: {
  39531. source: "./media/characters/kimberly-tilson/back.svg",
  39532. extra: 1370/1307,
  39533. bottom: 20/1390
  39534. }
  39535. },
  39536. },
  39537. [
  39538. {
  39539. name: "Normal",
  39540. height: math.unit(3 + 6/12, "feet"),
  39541. default: true
  39542. },
  39543. ]
  39544. ))
  39545. characterMakers.push(() => makeCharacter(
  39546. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  39547. {
  39548. front: {
  39549. height: math.unit(1148, "feet"),
  39550. weight: math.unit(34057, "lb"),
  39551. name: "Front",
  39552. image: {
  39553. source: "./media/characters/harthos/front.svg",
  39554. extra: 1391/1339,
  39555. bottom: 13/1404
  39556. }
  39557. },
  39558. },
  39559. [
  39560. {
  39561. name: "Macro",
  39562. height: math.unit(1148, "feet"),
  39563. default: true
  39564. },
  39565. ]
  39566. ))
  39567. characterMakers.push(() => makeCharacter(
  39568. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  39569. {
  39570. front: {
  39571. height: math.unit(15, "feet"),
  39572. name: "Front",
  39573. image: {
  39574. source: "./media/characters/hypatia/front.svg",
  39575. extra: 1653/1591,
  39576. bottom: 79/1732
  39577. }
  39578. },
  39579. },
  39580. [
  39581. {
  39582. name: "Normal",
  39583. height: math.unit(15, "feet")
  39584. },
  39585. {
  39586. name: "Small",
  39587. height: math.unit(300, "feet")
  39588. },
  39589. {
  39590. name: "Macro",
  39591. height: math.unit(2500, "feet"),
  39592. default: true
  39593. },
  39594. {
  39595. name: "Mega Macro",
  39596. height: math.unit(1500, "miles")
  39597. },
  39598. {
  39599. name: "Giga Macro",
  39600. height: math.unit(1.5e6, "miles")
  39601. },
  39602. ]
  39603. ))
  39604. characterMakers.push(() => makeCharacter(
  39605. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  39606. {
  39607. front: {
  39608. height: math.unit(6, "feet"),
  39609. weight: math.unit(200, "lb"),
  39610. name: "Front",
  39611. image: {
  39612. source: "./media/characters/wulver/front.svg",
  39613. extra: 1724/1632,
  39614. bottom: 130/1854
  39615. }
  39616. },
  39617. frontNsfw: {
  39618. height: math.unit(6, "feet"),
  39619. weight: math.unit(200, "lb"),
  39620. name: "Front (NSFW)",
  39621. image: {
  39622. source: "./media/characters/wulver/front-nsfw.svg",
  39623. extra: 1724/1632,
  39624. bottom: 130/1854
  39625. }
  39626. },
  39627. },
  39628. [
  39629. {
  39630. name: "Human-Sized",
  39631. height: math.unit(6, "feet")
  39632. },
  39633. {
  39634. name: "Normal",
  39635. height: math.unit(4, "meters"),
  39636. default: true
  39637. },
  39638. {
  39639. name: "Large",
  39640. height: math.unit(6, "m")
  39641. },
  39642. ]
  39643. ))
  39644. characterMakers.push(() => makeCharacter(
  39645. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  39646. {
  39647. front: {
  39648. height: math.unit(7, "feet"),
  39649. name: "Front",
  39650. image: {
  39651. source: "./media/characters/maru/front.svg",
  39652. extra: 1595/1570,
  39653. bottom: 0/1595
  39654. }
  39655. },
  39656. },
  39657. [
  39658. {
  39659. name: "Normal",
  39660. height: math.unit(7, "feet"),
  39661. default: true
  39662. },
  39663. {
  39664. name: "Macro",
  39665. height: math.unit(700, "feet")
  39666. },
  39667. {
  39668. name: "Mega Macro",
  39669. height: math.unit(25, "miles")
  39670. },
  39671. ]
  39672. ))
  39673. characterMakers.push(() => makeCharacter(
  39674. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  39675. {
  39676. front: {
  39677. height: math.unit(6, "feet"),
  39678. weight: math.unit(170, "lb"),
  39679. name: "Front",
  39680. image: {
  39681. source: "./media/characters/xenon/front.svg",
  39682. extra: 1376/1305,
  39683. bottom: 56/1432
  39684. }
  39685. },
  39686. back: {
  39687. height: math.unit(6, "feet"),
  39688. weight: math.unit(170, "lb"),
  39689. name: "Back",
  39690. image: {
  39691. source: "./media/characters/xenon/back.svg",
  39692. extra: 1328/1259,
  39693. bottom: 95/1423
  39694. }
  39695. },
  39696. maw: {
  39697. height: math.unit(0.52, "feet"),
  39698. name: "Maw",
  39699. image: {
  39700. source: "./media/characters/xenon/maw.svg"
  39701. }
  39702. },
  39703. hand: {
  39704. height: math.unit(0.82, "feet"),
  39705. name: "Hand",
  39706. image: {
  39707. source: "./media/characters/xenon/hand.svg"
  39708. }
  39709. },
  39710. foot: {
  39711. height: math.unit(1.13, "feet"),
  39712. name: "Foot",
  39713. image: {
  39714. source: "./media/characters/xenon/foot.svg"
  39715. }
  39716. },
  39717. },
  39718. [
  39719. {
  39720. name: "Micro",
  39721. height: math.unit(0.8, "inches")
  39722. },
  39723. {
  39724. name: "Normal",
  39725. height: math.unit(6, "feet")
  39726. },
  39727. {
  39728. name: "Macro",
  39729. height: math.unit(50, "feet"),
  39730. default: true
  39731. },
  39732. {
  39733. name: "Macro+",
  39734. height: math.unit(250, "feet")
  39735. },
  39736. {
  39737. name: "Megamacro",
  39738. height: math.unit(1500, "feet")
  39739. },
  39740. ]
  39741. ))
  39742. characterMakers.push(() => makeCharacter(
  39743. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  39744. {
  39745. front: {
  39746. height: math.unit(7 + 5/12, "feet"),
  39747. name: "Front",
  39748. image: {
  39749. source: "./media/characters/zane/front.svg",
  39750. extra: 1260/1203,
  39751. bottom: 94/1354
  39752. }
  39753. },
  39754. back: {
  39755. height: math.unit(5.05, "feet"),
  39756. name: "Back",
  39757. image: {
  39758. source: "./media/characters/zane/back.svg",
  39759. extra: 893/829,
  39760. bottom: 30/923
  39761. }
  39762. },
  39763. werewolf: {
  39764. height: math.unit(11, "feet"),
  39765. name: "Werewolf",
  39766. image: {
  39767. source: "./media/characters/zane/werewolf.svg",
  39768. extra: 1383/1323,
  39769. bottom: 89/1472
  39770. }
  39771. },
  39772. foot: {
  39773. height: math.unit(1.46, "feet"),
  39774. name: "Foot",
  39775. image: {
  39776. source: "./media/characters/zane/foot.svg"
  39777. }
  39778. },
  39779. footFront: {
  39780. height: math.unit(0.784, "feet"),
  39781. name: "Foot (Front)",
  39782. image: {
  39783. source: "./media/characters/zane/foot-front.svg"
  39784. }
  39785. },
  39786. dick: {
  39787. height: math.unit(1.95, "feet"),
  39788. name: "Dick",
  39789. image: {
  39790. source: "./media/characters/zane/dick.svg"
  39791. }
  39792. },
  39793. dickWerewolf: {
  39794. height: math.unit(3.77, "feet"),
  39795. name: "Dick (Werewolf)",
  39796. image: {
  39797. source: "./media/characters/zane/dick.svg"
  39798. }
  39799. },
  39800. },
  39801. [
  39802. {
  39803. name: "Normal",
  39804. height: math.unit(7 + 5/12, "feet"),
  39805. default: true
  39806. },
  39807. ]
  39808. ))
  39809. characterMakers.push(() => makeCharacter(
  39810. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  39811. {
  39812. front: {
  39813. height: math.unit(6 + 2/12, "feet"),
  39814. weight: math.unit(284, "lb"),
  39815. name: "Front",
  39816. image: {
  39817. source: "./media/characters/benni-desparque/front.svg",
  39818. extra: 1353/1126,
  39819. bottom: 69/1422
  39820. }
  39821. },
  39822. },
  39823. [
  39824. {
  39825. name: "Civilian",
  39826. height: math.unit(6 + 2/12, "feet")
  39827. },
  39828. {
  39829. name: "Normal",
  39830. height: math.unit(98, "feet"),
  39831. default: true
  39832. },
  39833. {
  39834. name: "Kaiju Fighter",
  39835. height: math.unit(268, "feet")
  39836. },
  39837. ]
  39838. ))
  39839. characterMakers.push(() => makeCharacter(
  39840. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  39841. {
  39842. front: {
  39843. height: math.unit(5, "feet"),
  39844. weight: math.unit(105, "lb"),
  39845. name: "Front",
  39846. image: {
  39847. source: "./media/characters/maxine/front.svg",
  39848. extra: 1386/1250,
  39849. bottom: 71/1457
  39850. }
  39851. },
  39852. },
  39853. [
  39854. {
  39855. name: "Normal",
  39856. height: math.unit(5, "feet"),
  39857. default: true
  39858. },
  39859. ]
  39860. ))
  39861. characterMakers.push(() => makeCharacter(
  39862. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  39863. {
  39864. front: {
  39865. height: math.unit(11 + 7/12, "feet"),
  39866. weight: math.unit(9576, "lb"),
  39867. name: "Front",
  39868. image: {
  39869. source: "./media/characters/scaly/front.svg",
  39870. extra: 888/867,
  39871. bottom: 36/924
  39872. }
  39873. },
  39874. },
  39875. [
  39876. {
  39877. name: "Normal",
  39878. height: math.unit(11 + 7/12, "feet"),
  39879. default: true
  39880. },
  39881. ]
  39882. ))
  39883. characterMakers.push(() => makeCharacter(
  39884. { name: "Saelria", species: ["mouse", "human"], tags: ["anthro"] },
  39885. {
  39886. front: {
  39887. height: math.unit(9, "inches"),
  39888. name: "Front",
  39889. image: {
  39890. source: "./media/characters/saelria/front.svg",
  39891. extra: 662/621,
  39892. bottom: 12/674
  39893. }
  39894. },
  39895. },
  39896. [
  39897. {
  39898. name: "Tiny",
  39899. height: math.unit(9, "inches"),
  39900. default: true
  39901. },
  39902. ]
  39903. ))
  39904. characterMakers.push(() => makeCharacter(
  39905. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  39906. {
  39907. front: {
  39908. height: math.unit(80, "meters"),
  39909. weight: math.unit(7000, "tonnes"),
  39910. name: "Front",
  39911. image: {
  39912. source: "./media/characters/tef/front.svg",
  39913. extra: 2036/1991,
  39914. bottom: 54/2090
  39915. }
  39916. },
  39917. back: {
  39918. height: math.unit(80, "meters"),
  39919. weight: math.unit(7000, "tonnes"),
  39920. name: "Back",
  39921. image: {
  39922. source: "./media/characters/tef/back.svg",
  39923. extra: 2036/1991,
  39924. bottom: 54/2090
  39925. }
  39926. },
  39927. },
  39928. [
  39929. {
  39930. name: "Macro",
  39931. height: math.unit(80, "meters"),
  39932. default: true
  39933. },
  39934. ]
  39935. ))
  39936. characterMakers.push(() => makeCharacter(
  39937. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  39938. {
  39939. front: {
  39940. height: math.unit(13, "feet"),
  39941. weight: math.unit(6, "tons"),
  39942. name: "Front",
  39943. image: {
  39944. source: "./media/characters/rover/front.svg",
  39945. extra: 1233/1156,
  39946. bottom: 50/1283
  39947. }
  39948. },
  39949. back: {
  39950. height: math.unit(13, "feet"),
  39951. weight: math.unit(6, "tons"),
  39952. name: "Back",
  39953. image: {
  39954. source: "./media/characters/rover/back.svg",
  39955. extra: 1327/1258,
  39956. bottom: 39/1366
  39957. }
  39958. },
  39959. },
  39960. [
  39961. {
  39962. name: "Normal",
  39963. height: math.unit(13, "feet"),
  39964. default: true
  39965. },
  39966. {
  39967. name: "Macro",
  39968. height: math.unit(1300, "feet")
  39969. },
  39970. {
  39971. name: "Megamacro",
  39972. height: math.unit(1300, "miles")
  39973. },
  39974. {
  39975. name: "Gigamacro",
  39976. height: math.unit(1300000, "miles")
  39977. },
  39978. ]
  39979. ))
  39980. characterMakers.push(() => makeCharacter(
  39981. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  39982. {
  39983. front: {
  39984. height: math.unit(6, "feet"),
  39985. weight: math.unit(150, "lb"),
  39986. name: "Front",
  39987. image: {
  39988. source: "./media/characters/ariz/front.svg",
  39989. extra: 1401/1346,
  39990. bottom: 5/1406
  39991. }
  39992. },
  39993. },
  39994. [
  39995. {
  39996. name: "Normal",
  39997. height: math.unit(10, "feet"),
  39998. default: true
  39999. },
  40000. ]
  40001. ))
  40002. characterMakers.push(() => makeCharacter(
  40003. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  40004. {
  40005. front: {
  40006. height: math.unit(6, "feet"),
  40007. weight: math.unit(140, "lb"),
  40008. name: "Front",
  40009. image: {
  40010. source: "./media/characters/sigrun/front.svg",
  40011. extra: 1418/1359,
  40012. bottom: 27/1445
  40013. }
  40014. },
  40015. },
  40016. [
  40017. {
  40018. name: "Macro",
  40019. height: math.unit(35, "feet"),
  40020. default: true
  40021. },
  40022. ]
  40023. ))
  40024. characterMakers.push(() => makeCharacter(
  40025. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  40026. {
  40027. front: {
  40028. height: math.unit(6, "feet"),
  40029. weight: math.unit(150, "lb"),
  40030. name: "Front",
  40031. image: {
  40032. source: "./media/characters/numin/front.svg",
  40033. extra: 1433/1388,
  40034. bottom: 12/1445
  40035. }
  40036. },
  40037. },
  40038. [
  40039. {
  40040. name: "Macro",
  40041. height: math.unit(21.5, "km"),
  40042. default: true
  40043. },
  40044. ]
  40045. ))
  40046. characterMakers.push(() => makeCharacter(
  40047. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  40048. {
  40049. front: {
  40050. height: math.unit(6, "feet"),
  40051. weight: math.unit(463, "lb"),
  40052. name: "Front",
  40053. image: {
  40054. source: "./media/characters/melwa/front.svg",
  40055. extra: 1307/1248,
  40056. bottom: 93/1400
  40057. }
  40058. },
  40059. },
  40060. [
  40061. {
  40062. name: "Macro",
  40063. height: math.unit(50, "meters"),
  40064. default: true
  40065. },
  40066. ]
  40067. ))
  40068. characterMakers.push(() => makeCharacter(
  40069. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  40070. {
  40071. front: {
  40072. height: math.unit(325, "feet"),
  40073. name: "Front",
  40074. image: {
  40075. source: "./media/characters/zorkaiju/front.svg",
  40076. extra: 1955/1814,
  40077. bottom: 40/1995
  40078. }
  40079. },
  40080. frontExtended: {
  40081. height: math.unit(325, "feet"),
  40082. name: "Front (Extended)",
  40083. image: {
  40084. source: "./media/characters/zorkaiju/front-extended.svg",
  40085. extra: 1955/1814,
  40086. bottom: 40/1995
  40087. }
  40088. },
  40089. side: {
  40090. height: math.unit(325, "feet"),
  40091. name: "Side",
  40092. image: {
  40093. source: "./media/characters/zorkaiju/side.svg",
  40094. extra: 1495/1396,
  40095. bottom: 17/1512
  40096. }
  40097. },
  40098. sideExtended: {
  40099. height: math.unit(325, "feet"),
  40100. name: "Side (Extended)",
  40101. image: {
  40102. source: "./media/characters/zorkaiju/side-extended.svg",
  40103. extra: 1495/1396,
  40104. bottom: 17/1512
  40105. }
  40106. },
  40107. back: {
  40108. height: math.unit(325, "feet"),
  40109. name: "Back",
  40110. image: {
  40111. source: "./media/characters/zorkaiju/back.svg",
  40112. extra: 1959/1821,
  40113. bottom: 31/1990
  40114. }
  40115. },
  40116. backExtended: {
  40117. height: math.unit(325, "feet"),
  40118. name: "Back (Extended)",
  40119. image: {
  40120. source: "./media/characters/zorkaiju/back-extended.svg",
  40121. extra: 1959/1821,
  40122. bottom: 31/1990
  40123. }
  40124. },
  40125. hand: {
  40126. height: math.unit(58.4, "feet"),
  40127. name: "Hand",
  40128. image: {
  40129. source: "./media/characters/zorkaiju/hand.svg"
  40130. }
  40131. },
  40132. handExtended: {
  40133. height: math.unit(61.4, "feet"),
  40134. name: "Hand (Extended)",
  40135. image: {
  40136. source: "./media/characters/zorkaiju/hand-extended.svg"
  40137. }
  40138. },
  40139. foot: {
  40140. height: math.unit(95, "feet"),
  40141. name: "Foot",
  40142. image: {
  40143. source: "./media/characters/zorkaiju/foot.svg"
  40144. }
  40145. },
  40146. leftArm: {
  40147. height: math.unit(59, "feet"),
  40148. name: "Left Arm",
  40149. image: {
  40150. source: "./media/characters/zorkaiju/left-arm.svg"
  40151. }
  40152. },
  40153. rightArm: {
  40154. height: math.unit(59, "feet"),
  40155. name: "Right Arm",
  40156. image: {
  40157. source: "./media/characters/zorkaiju/right-arm.svg"
  40158. }
  40159. },
  40160. tail: {
  40161. height: math.unit(104, "feet"),
  40162. name: "Tail",
  40163. image: {
  40164. source: "./media/characters/zorkaiju/tail.svg"
  40165. }
  40166. },
  40167. tailExtended: {
  40168. height: math.unit(104, "feet"),
  40169. name: "Tail (Extended)",
  40170. image: {
  40171. source: "./media/characters/zorkaiju/tail-extended.svg"
  40172. }
  40173. },
  40174. tailBottom: {
  40175. height: math.unit(104, "feet"),
  40176. name: "Tail Bottom",
  40177. image: {
  40178. source: "./media/characters/zorkaiju/tail-bottom.svg"
  40179. }
  40180. },
  40181. crystal: {
  40182. height: math.unit(27.54, "feet"),
  40183. name: "Crystal",
  40184. image: {
  40185. source: "./media/characters/zorkaiju/crystal.svg"
  40186. }
  40187. },
  40188. },
  40189. [
  40190. {
  40191. name: "Kaiju",
  40192. height: math.unit(325, "feet"),
  40193. default: true
  40194. },
  40195. ]
  40196. ))
  40197. characterMakers.push(() => makeCharacter(
  40198. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  40199. {
  40200. front: {
  40201. height: math.unit(6 + 1/12, "feet"),
  40202. weight: math.unit(115, "lb"),
  40203. name: "Front",
  40204. image: {
  40205. source: "./media/characters/bailey-belfry/front.svg",
  40206. extra: 1240/1121,
  40207. bottom: 101/1341
  40208. }
  40209. },
  40210. },
  40211. [
  40212. {
  40213. name: "Normal",
  40214. height: math.unit(6 + 1/12, "feet"),
  40215. default: true
  40216. },
  40217. ]
  40218. ))
  40219. characterMakers.push(() => makeCharacter(
  40220. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  40221. {
  40222. side: {
  40223. height: math.unit(4, "meters"),
  40224. weight: math.unit(250, "kg"),
  40225. name: "Side",
  40226. image: {
  40227. source: "./media/characters/blacky/side.svg",
  40228. extra: 1027/919,
  40229. bottom: 43/1070
  40230. }
  40231. },
  40232. maw: {
  40233. height: math.unit(1, "meters"),
  40234. name: "Maw",
  40235. image: {
  40236. source: "./media/characters/blacky/maw.svg"
  40237. }
  40238. },
  40239. paw: {
  40240. height: math.unit(1, "meters"),
  40241. name: "Paw",
  40242. image: {
  40243. source: "./media/characters/blacky/paw.svg"
  40244. }
  40245. },
  40246. },
  40247. [
  40248. {
  40249. name: "Normal",
  40250. height: math.unit(4, "meters"),
  40251. default: true
  40252. },
  40253. ]
  40254. ))
  40255. characterMakers.push(() => makeCharacter(
  40256. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  40257. {
  40258. front: {
  40259. height: math.unit(170, "cm"),
  40260. weight: math.unit(66, "kg"),
  40261. name: "Front",
  40262. image: {
  40263. source: "./media/characters/thux-ei/front.svg",
  40264. extra: 1109/1011,
  40265. bottom: 8/1117
  40266. }
  40267. },
  40268. },
  40269. [
  40270. {
  40271. name: "Normal",
  40272. height: math.unit(170, "cm"),
  40273. default: true
  40274. },
  40275. ]
  40276. ))
  40277. characterMakers.push(() => makeCharacter(
  40278. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  40279. {
  40280. front: {
  40281. height: math.unit(5, "feet"),
  40282. weight: math.unit(120, "lb"),
  40283. name: "Front",
  40284. image: {
  40285. source: "./media/characters/roxanne-voltaire/front.svg",
  40286. extra: 1901/1779,
  40287. bottom: 53/1954
  40288. }
  40289. },
  40290. },
  40291. [
  40292. {
  40293. name: "Normal",
  40294. height: math.unit(5, "feet"),
  40295. default: true
  40296. },
  40297. {
  40298. name: "Giant",
  40299. height: math.unit(50, "feet")
  40300. },
  40301. {
  40302. name: "Titan",
  40303. height: math.unit(500, "feet")
  40304. },
  40305. {
  40306. name: "Macro",
  40307. height: math.unit(5000, "feet")
  40308. },
  40309. {
  40310. name: "Megamacro",
  40311. height: math.unit(50000, "feet")
  40312. },
  40313. {
  40314. name: "Gigamacro",
  40315. height: math.unit(500000, "feet")
  40316. },
  40317. {
  40318. name: "Teramacro",
  40319. height: math.unit(5e6, "feet")
  40320. },
  40321. ]
  40322. ))
  40323. characterMakers.push(() => makeCharacter(
  40324. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  40325. {
  40326. front: {
  40327. height: math.unit(6 + 2/12, "feet"),
  40328. name: "Front",
  40329. image: {
  40330. source: "./media/characters/squeaks/front.svg",
  40331. extra: 1823/1768,
  40332. bottom: 138/1961
  40333. }
  40334. },
  40335. },
  40336. [
  40337. {
  40338. name: "Micro",
  40339. height: math.unit(0.5, "inches")
  40340. },
  40341. {
  40342. name: "Normal",
  40343. height: math.unit(6 + 2/12, "feet"),
  40344. default: true
  40345. },
  40346. {
  40347. name: "Macro",
  40348. height: math.unit(600, "feet")
  40349. },
  40350. ]
  40351. ))
  40352. characterMakers.push(() => makeCharacter(
  40353. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  40354. {
  40355. front: {
  40356. height: math.unit(1.72, "meters"),
  40357. name: "Front",
  40358. image: {
  40359. source: "./media/characters/archinger/front.svg",
  40360. extra: 1861/1675,
  40361. bottom: 125/1986
  40362. }
  40363. },
  40364. back: {
  40365. height: math.unit(1.72, "meters"),
  40366. name: "Back",
  40367. image: {
  40368. source: "./media/characters/archinger/back.svg",
  40369. extra: 1844/1701,
  40370. bottom: 104/1948
  40371. }
  40372. },
  40373. cock: {
  40374. height: math.unit(0.59, "feet"),
  40375. name: "Cock",
  40376. image: {
  40377. source: "./media/characters/archinger/cock.svg"
  40378. }
  40379. },
  40380. },
  40381. [
  40382. {
  40383. name: "Normal",
  40384. height: math.unit(1.72, "meters"),
  40385. default: true
  40386. },
  40387. {
  40388. name: "Macro",
  40389. height: math.unit(84, "meters")
  40390. },
  40391. {
  40392. name: "Macro+",
  40393. height: math.unit(112, "meters")
  40394. },
  40395. {
  40396. name: "Macro++",
  40397. height: math.unit(960, "meters")
  40398. },
  40399. {
  40400. name: "Macro+++",
  40401. height: math.unit(4, "km")
  40402. },
  40403. {
  40404. name: "Macro++++",
  40405. height: math.unit(48, "km")
  40406. },
  40407. {
  40408. name: "Macro+++++",
  40409. height: math.unit(4500, "km")
  40410. },
  40411. ]
  40412. ))
  40413. characterMakers.push(() => makeCharacter(
  40414. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  40415. {
  40416. front: {
  40417. height: math.unit(5 + 5/12, "feet"),
  40418. name: "Front",
  40419. image: {
  40420. source: "./media/characters/alsnapz/front.svg",
  40421. extra: 1157/1065,
  40422. bottom: 42/1199
  40423. }
  40424. },
  40425. },
  40426. [
  40427. {
  40428. name: "Normal",
  40429. height: math.unit(5 + 5/12, "feet"),
  40430. default: true
  40431. },
  40432. ]
  40433. ))
  40434. characterMakers.push(() => makeCharacter(
  40435. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  40436. {
  40437. side: {
  40438. height: math.unit(3.2, "earths"),
  40439. name: "Side",
  40440. image: {
  40441. source: "./media/characters/mag/side.svg",
  40442. extra: 1331/1008,
  40443. bottom: 52/1383
  40444. }
  40445. },
  40446. wing: {
  40447. height: math.unit(1.94, "earths"),
  40448. name: "Wing",
  40449. image: {
  40450. source: "./media/characters/mag/wing.svg"
  40451. }
  40452. },
  40453. dick: {
  40454. height: math.unit(1.8, "earths"),
  40455. name: "Dick",
  40456. image: {
  40457. source: "./media/characters/mag/dick.svg"
  40458. }
  40459. },
  40460. ass: {
  40461. height: math.unit(1.33, "earths"),
  40462. name: "Ass",
  40463. image: {
  40464. source: "./media/characters/mag/ass.svg"
  40465. }
  40466. },
  40467. head: {
  40468. height: math.unit(1.1, "earths"),
  40469. name: "Head",
  40470. image: {
  40471. source: "./media/characters/mag/head.svg"
  40472. }
  40473. },
  40474. maw: {
  40475. height: math.unit(1.62, "earths"),
  40476. name: "Maw",
  40477. image: {
  40478. source: "./media/characters/mag/maw.svg"
  40479. }
  40480. },
  40481. },
  40482. [
  40483. {
  40484. name: "Small",
  40485. height: math.unit(162, "feet")
  40486. },
  40487. {
  40488. name: "Normal",
  40489. height: math.unit(3.2, "earths"),
  40490. default: true
  40491. },
  40492. ]
  40493. ))
  40494. characterMakers.push(() => makeCharacter(
  40495. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  40496. {
  40497. front: {
  40498. height: math.unit(512, "feet"),
  40499. weight: math.unit(63509, "tonnes"),
  40500. name: "Front",
  40501. image: {
  40502. source: "./media/characters/vorrel-harroc/front.svg",
  40503. extra: 1075/1063,
  40504. bottom: 62/1137
  40505. }
  40506. },
  40507. },
  40508. [
  40509. {
  40510. name: "Normal",
  40511. height: math.unit(10, "feet")
  40512. },
  40513. {
  40514. name: "Macro",
  40515. height: math.unit(512, "feet"),
  40516. default: true
  40517. },
  40518. {
  40519. name: "Megamacro",
  40520. height: math.unit(256, "miles")
  40521. },
  40522. {
  40523. name: "Gigamacro",
  40524. height: math.unit(4096, "miles")
  40525. },
  40526. ]
  40527. ))
  40528. characterMakers.push(() => makeCharacter(
  40529. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  40530. {
  40531. side: {
  40532. height: math.unit(50, "feet"),
  40533. name: "Side",
  40534. image: {
  40535. source: "./media/characters/froimar/side.svg",
  40536. extra: 855/638,
  40537. bottom: 99/954
  40538. }
  40539. },
  40540. },
  40541. [
  40542. {
  40543. name: "Macro",
  40544. height: math.unit(50, "feet"),
  40545. default: true
  40546. },
  40547. ]
  40548. ))
  40549. characterMakers.push(() => makeCharacter(
  40550. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  40551. {
  40552. front: {
  40553. height: math.unit(210, "miles"),
  40554. name: "Front",
  40555. image: {
  40556. source: "./media/characters/timothy/front.svg",
  40557. extra: 1007/943,
  40558. bottom: 62/1069
  40559. }
  40560. },
  40561. frontSkirt: {
  40562. height: math.unit(210, "miles"),
  40563. name: "Front (Skirt)",
  40564. image: {
  40565. source: "./media/characters/timothy/front-skirt.svg",
  40566. extra: 1007/943,
  40567. bottom: 62/1069
  40568. }
  40569. },
  40570. frontCoat: {
  40571. height: math.unit(210, "miles"),
  40572. name: "Front (Coat)",
  40573. image: {
  40574. source: "./media/characters/timothy/front-coat.svg",
  40575. extra: 1007/943,
  40576. bottom: 62/1069
  40577. }
  40578. },
  40579. },
  40580. [
  40581. {
  40582. name: "Macro",
  40583. height: math.unit(210, "miles"),
  40584. default: true
  40585. },
  40586. {
  40587. name: "Megamacro",
  40588. height: math.unit(210000, "miles")
  40589. },
  40590. ]
  40591. ))
  40592. characterMakers.push(() => makeCharacter(
  40593. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  40594. {
  40595. front: {
  40596. height: math.unit(188, "feet"),
  40597. name: "Front",
  40598. image: {
  40599. source: "./media/characters/pyotr/front.svg",
  40600. extra: 1912/1826,
  40601. bottom: 18/1930
  40602. }
  40603. },
  40604. },
  40605. [
  40606. {
  40607. name: "Macro",
  40608. height: math.unit(188, "feet"),
  40609. default: true
  40610. },
  40611. {
  40612. name: "Megamacro",
  40613. height: math.unit(8, "miles")
  40614. },
  40615. ]
  40616. ))
  40617. characterMakers.push(() => makeCharacter(
  40618. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  40619. {
  40620. side: {
  40621. height: math.unit(10, "feet"),
  40622. weight: math.unit(4500, "lb"),
  40623. name: "Side",
  40624. image: {
  40625. source: "./media/characters/ackart/side.svg",
  40626. extra: 1776/1668,
  40627. bottom: 116/1892
  40628. }
  40629. },
  40630. },
  40631. [
  40632. {
  40633. name: "Normal",
  40634. height: math.unit(10, "feet"),
  40635. default: true
  40636. },
  40637. ]
  40638. ))
  40639. characterMakers.push(() => makeCharacter(
  40640. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  40641. {
  40642. side: {
  40643. height: math.unit(21, "feet"),
  40644. name: "Side",
  40645. image: {
  40646. source: "./media/characters/nolow/side.svg",
  40647. extra: 1484/1434,
  40648. bottom: 85/1569
  40649. }
  40650. },
  40651. sideErect: {
  40652. height: math.unit(21, "feet"),
  40653. name: "Side-erect",
  40654. image: {
  40655. source: "./media/characters/nolow/side-erect.svg",
  40656. extra: 1484/1434,
  40657. bottom: 85/1569
  40658. }
  40659. },
  40660. },
  40661. [
  40662. {
  40663. name: "Regular",
  40664. height: math.unit(12, "feet")
  40665. },
  40666. {
  40667. name: "Big Chee",
  40668. height: math.unit(21, "feet"),
  40669. default: true
  40670. },
  40671. ]
  40672. ))
  40673. characterMakers.push(() => makeCharacter(
  40674. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  40675. {
  40676. front: {
  40677. height: math.unit(7, "feet"),
  40678. weight: math.unit(250, "lb"),
  40679. name: "Front",
  40680. image: {
  40681. source: "./media/characters/nines/front.svg",
  40682. extra: 1741/1607,
  40683. bottom: 41/1782
  40684. }
  40685. },
  40686. side: {
  40687. height: math.unit(7, "feet"),
  40688. weight: math.unit(250, "lb"),
  40689. name: "Side",
  40690. image: {
  40691. source: "./media/characters/nines/side.svg",
  40692. extra: 1854/1735,
  40693. bottom: 93/1947
  40694. }
  40695. },
  40696. back: {
  40697. height: math.unit(7, "feet"),
  40698. weight: math.unit(250, "lb"),
  40699. name: "Back",
  40700. image: {
  40701. source: "./media/characters/nines/back.svg",
  40702. extra: 1748/1615,
  40703. bottom: 20/1768
  40704. }
  40705. },
  40706. },
  40707. [
  40708. {
  40709. name: "Megamacro",
  40710. height: math.unit(99, "km"),
  40711. default: true
  40712. },
  40713. ]
  40714. ))
  40715. characterMakers.push(() => makeCharacter(
  40716. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  40717. {
  40718. front: {
  40719. height: math.unit(5 + 10/12, "feet"),
  40720. weight: math.unit(210, "lb"),
  40721. name: "Front",
  40722. image: {
  40723. source: "./media/characters/zenith/front.svg",
  40724. extra: 1531/1452,
  40725. bottom: 198/1729
  40726. }
  40727. },
  40728. back: {
  40729. height: math.unit(5 + 10/12, "feet"),
  40730. weight: math.unit(210, "lb"),
  40731. name: "Back",
  40732. image: {
  40733. source: "./media/characters/zenith/back.svg",
  40734. extra: 1571/1487,
  40735. bottom: 75/1646
  40736. }
  40737. },
  40738. },
  40739. [
  40740. {
  40741. name: "Normal",
  40742. height: math.unit(5 + 10/12, "feet"),
  40743. default: true
  40744. }
  40745. ]
  40746. ))
  40747. characterMakers.push(() => makeCharacter(
  40748. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  40749. {
  40750. front: {
  40751. height: math.unit(4, "feet"),
  40752. weight: math.unit(60, "lb"),
  40753. name: "Front",
  40754. image: {
  40755. source: "./media/characters/jasper/front.svg",
  40756. extra: 1450/1379,
  40757. bottom: 19/1469
  40758. }
  40759. },
  40760. },
  40761. [
  40762. {
  40763. name: "Normal",
  40764. height: math.unit(4, "feet"),
  40765. default: true
  40766. },
  40767. ]
  40768. ))
  40769. characterMakers.push(() => makeCharacter(
  40770. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  40771. {
  40772. front: {
  40773. height: math.unit(6 + 5/12, "feet"),
  40774. weight: math.unit(290, "lb"),
  40775. name: "Front",
  40776. image: {
  40777. source: "./media/characters/tiberius-thyben/front.svg",
  40778. extra: 757/739,
  40779. bottom: 39/796
  40780. }
  40781. },
  40782. },
  40783. [
  40784. {
  40785. name: "Micro",
  40786. height: math.unit(1.5, "inches")
  40787. },
  40788. {
  40789. name: "Normal",
  40790. height: math.unit(6 + 5/12, "feet"),
  40791. default: true
  40792. },
  40793. {
  40794. name: "Macro",
  40795. height: math.unit(300, "feet")
  40796. },
  40797. ]
  40798. ))
  40799. characterMakers.push(() => makeCharacter(
  40800. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  40801. {
  40802. front: {
  40803. height: math.unit(5 + 6/12, "feet"),
  40804. weight: math.unit(60, "kg"),
  40805. name: "Front",
  40806. image: {
  40807. source: "./media/characters/sabre/front.svg",
  40808. extra: 738/671,
  40809. bottom: 27/765
  40810. }
  40811. },
  40812. },
  40813. [
  40814. {
  40815. name: "Teeny",
  40816. height: math.unit(2, "inches")
  40817. },
  40818. {
  40819. name: "Smol",
  40820. height: math.unit(8, "inches")
  40821. },
  40822. {
  40823. name: "Normal",
  40824. height: math.unit(5 + 6/12, "feet"),
  40825. default: true
  40826. },
  40827. {
  40828. name: "Mini-Macro",
  40829. height: math.unit(15, "feet")
  40830. },
  40831. {
  40832. name: "Macro",
  40833. height: math.unit(50, "feet")
  40834. },
  40835. ]
  40836. ))
  40837. characterMakers.push(() => makeCharacter(
  40838. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  40839. {
  40840. front: {
  40841. height: math.unit(6 + 4/12, "feet"),
  40842. weight: math.unit(170, "lb"),
  40843. name: "Front",
  40844. image: {
  40845. source: "./media/characters/charlie/front.svg",
  40846. extra: 1348/1228,
  40847. bottom: 15/1363
  40848. }
  40849. },
  40850. },
  40851. [
  40852. {
  40853. name: "Macro",
  40854. height: math.unit(1700, "meters"),
  40855. default: true
  40856. },
  40857. {
  40858. name: "MegaMacro",
  40859. height: math.unit(20400, "meters")
  40860. },
  40861. ]
  40862. ))
  40863. characterMakers.push(() => makeCharacter(
  40864. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  40865. {
  40866. front: {
  40867. height: math.unit(6 + 3/12, "feet"),
  40868. weight: math.unit(185, "lb"),
  40869. name: "Front",
  40870. image: {
  40871. source: "./media/characters/susan-grant/front.svg",
  40872. extra: 1351/1327,
  40873. bottom: 26/1377
  40874. }
  40875. },
  40876. },
  40877. [
  40878. {
  40879. name: "Normal",
  40880. height: math.unit(6 + 3/12, "feet"),
  40881. default: true
  40882. },
  40883. {
  40884. name: "Macro",
  40885. height: math.unit(225, "feet")
  40886. },
  40887. {
  40888. name: "Macro+",
  40889. height: math.unit(900, "feet")
  40890. },
  40891. {
  40892. name: "MegaMacro",
  40893. height: math.unit(14400, "feet")
  40894. },
  40895. ]
  40896. ))
  40897. characterMakers.push(() => makeCharacter(
  40898. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  40899. {
  40900. front: {
  40901. height: math.unit(5 + 4/12, "feet"),
  40902. weight: math.unit(110, "lb"),
  40903. name: "Front",
  40904. image: {
  40905. source: "./media/characters/axel-isanov/front.svg",
  40906. extra: 1096/1065,
  40907. bottom: 13/1109
  40908. }
  40909. },
  40910. },
  40911. [
  40912. {
  40913. name: "Normal",
  40914. height: math.unit(5 + 4/12, "feet"),
  40915. default: true
  40916. },
  40917. ]
  40918. ))
  40919. characterMakers.push(() => makeCharacter(
  40920. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  40921. {
  40922. front: {
  40923. height: math.unit(9, "feet"),
  40924. weight: math.unit(467, "lb"),
  40925. name: "Front",
  40926. image: {
  40927. source: "./media/characters/necahual/front.svg",
  40928. extra: 920/873,
  40929. bottom: 26/946
  40930. }
  40931. },
  40932. back: {
  40933. height: math.unit(9, "feet"),
  40934. weight: math.unit(467, "lb"),
  40935. name: "Back",
  40936. image: {
  40937. source: "./media/characters/necahual/back.svg",
  40938. extra: 930/884,
  40939. bottom: 16/946
  40940. }
  40941. },
  40942. frontUnderwear: {
  40943. height: math.unit(9, "feet"),
  40944. weight: math.unit(467, "lb"),
  40945. name: "Front (Underwear)",
  40946. image: {
  40947. source: "./media/characters/necahual/front-underwear.svg",
  40948. extra: 920/873,
  40949. bottom: 26/946
  40950. }
  40951. },
  40952. frontDressed: {
  40953. height: math.unit(9, "feet"),
  40954. weight: math.unit(467, "lb"),
  40955. name: "Front (Dressed)",
  40956. image: {
  40957. source: "./media/characters/necahual/front-dressed.svg",
  40958. extra: 920/873,
  40959. bottom: 26/946
  40960. }
  40961. },
  40962. },
  40963. [
  40964. {
  40965. name: "Comprsesed",
  40966. height: math.unit(9, "feet")
  40967. },
  40968. {
  40969. name: "Natural",
  40970. height: math.unit(15, "feet"),
  40971. default: true
  40972. },
  40973. {
  40974. name: "Boosted",
  40975. height: math.unit(50, "feet")
  40976. },
  40977. {
  40978. name: "Boosted+",
  40979. height: math.unit(150, "feet")
  40980. },
  40981. {
  40982. name: "Max",
  40983. height: math.unit(500, "feet")
  40984. },
  40985. ]
  40986. ))
  40987. characterMakers.push(() => makeCharacter(
  40988. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  40989. {
  40990. front: {
  40991. height: math.unit(22 + 1/12, "feet"),
  40992. weight: math.unit(3200, "lb"),
  40993. name: "Front",
  40994. image: {
  40995. source: "./media/characters/theo-acacia/front.svg",
  40996. extra: 1796/1741,
  40997. bottom: 83/1879
  40998. }
  40999. },
  41000. frontUnderwear: {
  41001. height: math.unit(22 + 1/12, "feet"),
  41002. weight: math.unit(3200, "lb"),
  41003. name: "Front (Underwear)",
  41004. image: {
  41005. source: "./media/characters/theo-acacia/front-underwear.svg",
  41006. extra: 1796/1741,
  41007. bottom: 83/1879
  41008. }
  41009. },
  41010. frontNude: {
  41011. height: math.unit(22 + 1/12, "feet"),
  41012. weight: math.unit(3200, "lb"),
  41013. name: "Front (Nude)",
  41014. image: {
  41015. source: "./media/characters/theo-acacia/front-nude.svg",
  41016. extra: 1796/1741,
  41017. bottom: 83/1879
  41018. }
  41019. },
  41020. },
  41021. [
  41022. {
  41023. name: "Normal",
  41024. height: math.unit(22 + 1/12, "feet"),
  41025. default: true
  41026. },
  41027. ]
  41028. ))
  41029. characterMakers.push(() => makeCharacter(
  41030. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  41031. {
  41032. front: {
  41033. height: math.unit(20, "feet"),
  41034. name: "Front",
  41035. image: {
  41036. source: "./media/characters/astra/front.svg",
  41037. extra: 1850/1714,
  41038. bottom: 106/1956
  41039. }
  41040. },
  41041. frontUndressed: {
  41042. height: math.unit(20, "feet"),
  41043. name: "Front (Undressed)",
  41044. image: {
  41045. source: "./media/characters/astra/front-undressed.svg",
  41046. extra: 1926/1749,
  41047. bottom: 0/1926
  41048. }
  41049. },
  41050. hand: {
  41051. height: math.unit(1.53, "feet"),
  41052. name: "Hand",
  41053. image: {
  41054. source: "./media/characters/astra/hand.svg"
  41055. }
  41056. },
  41057. paw: {
  41058. height: math.unit(1.53, "feet"),
  41059. name: "Paw",
  41060. image: {
  41061. source: "./media/characters/astra/paw.svg"
  41062. }
  41063. },
  41064. },
  41065. [
  41066. {
  41067. name: "Smallest",
  41068. height: math.unit(20, "feet")
  41069. },
  41070. {
  41071. name: "Normal",
  41072. height: math.unit(1e9, "miles"),
  41073. default: true
  41074. },
  41075. {
  41076. name: "Larger",
  41077. height: math.unit(5, "multiverses")
  41078. },
  41079. {
  41080. name: "Largest",
  41081. height: math.unit(1e9, "multiverses")
  41082. },
  41083. ]
  41084. ))
  41085. characterMakers.push(() => makeCharacter(
  41086. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  41087. {
  41088. front: {
  41089. height: math.unit(8, "feet"),
  41090. name: "Front",
  41091. image: {
  41092. source: "./media/characters/breanna/front.svg",
  41093. extra: 1912/1632,
  41094. bottom: 33/1945
  41095. }
  41096. },
  41097. },
  41098. [
  41099. {
  41100. name: "Smallest",
  41101. height: math.unit(8, "feet")
  41102. },
  41103. {
  41104. name: "Normal",
  41105. height: math.unit(1, "mile"),
  41106. default: true
  41107. },
  41108. {
  41109. name: "Maximum",
  41110. height: math.unit(1500000000000, "lightyears")
  41111. },
  41112. ]
  41113. ))
  41114. characterMakers.push(() => makeCharacter(
  41115. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  41116. {
  41117. front: {
  41118. height: math.unit(5 + 11/12, "feet"),
  41119. weight: math.unit(155, "lb"),
  41120. name: "Front",
  41121. image: {
  41122. source: "./media/characters/cai/front.svg",
  41123. extra: 1823/1702,
  41124. bottom: 32/1855
  41125. }
  41126. },
  41127. back: {
  41128. height: math.unit(5 + 11/12, "feet"),
  41129. weight: math.unit(155, "lb"),
  41130. name: "Back",
  41131. image: {
  41132. source: "./media/characters/cai/back.svg",
  41133. extra: 1809/1708,
  41134. bottom: 31/1840
  41135. }
  41136. },
  41137. },
  41138. [
  41139. {
  41140. name: "Normal",
  41141. height: math.unit(5 + 11/12, "feet"),
  41142. default: true
  41143. },
  41144. {
  41145. name: "Big",
  41146. height: math.unit(15, "feet")
  41147. },
  41148. {
  41149. name: "Macro",
  41150. height: math.unit(200, "feet")
  41151. },
  41152. ]
  41153. ))
  41154. characterMakers.push(() => makeCharacter(
  41155. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  41156. {
  41157. front: {
  41158. height: math.unit(5 + 6/12, "feet"),
  41159. weight: math.unit(160, "lb"),
  41160. name: "Front",
  41161. image: {
  41162. source: "./media/characters/zanna-virtuedòttir/front.svg",
  41163. extra: 1227/1174,
  41164. bottom: 37/1264
  41165. }
  41166. },
  41167. },
  41168. [
  41169. {
  41170. name: "Macro",
  41171. height: math.unit(444, "meters"),
  41172. default: true
  41173. },
  41174. ]
  41175. ))
  41176. characterMakers.push(() => makeCharacter(
  41177. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  41178. {
  41179. front: {
  41180. height: math.unit(18 + 7/12, "feet"),
  41181. name: "Front",
  41182. image: {
  41183. source: "./media/characters/rex/front.svg",
  41184. extra: 1941/1807,
  41185. bottom: 66/2007
  41186. }
  41187. },
  41188. back: {
  41189. height: math.unit(18 + 7/12, "feet"),
  41190. name: "Back",
  41191. image: {
  41192. source: "./media/characters/rex/back.svg",
  41193. extra: 1937/1822,
  41194. bottom: 42/1979
  41195. }
  41196. },
  41197. boot: {
  41198. height: math.unit(3.45, "feet"),
  41199. name: "Boot",
  41200. image: {
  41201. source: "./media/characters/rex/boot.svg"
  41202. }
  41203. },
  41204. paw: {
  41205. height: math.unit(4.17, "feet"),
  41206. name: "Paw",
  41207. image: {
  41208. source: "./media/characters/rex/paw.svg"
  41209. }
  41210. },
  41211. head: {
  41212. height: math.unit(6.728, "feet"),
  41213. name: "Head",
  41214. image: {
  41215. source: "./media/characters/rex/head.svg"
  41216. }
  41217. },
  41218. },
  41219. [
  41220. {
  41221. name: "Nano",
  41222. height: math.unit(18 + 7/12, "feet")
  41223. },
  41224. {
  41225. name: "Micro",
  41226. height: math.unit(1.5, "megameters")
  41227. },
  41228. {
  41229. name: "Normal",
  41230. height: math.unit(440, "megameters"),
  41231. default: true
  41232. },
  41233. {
  41234. name: "Macro",
  41235. height: math.unit(2.5, "gigameters")
  41236. },
  41237. {
  41238. name: "Gigamacro",
  41239. height: math.unit(2, "galaxies")
  41240. },
  41241. ]
  41242. ))
  41243. characterMakers.push(() => makeCharacter(
  41244. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  41245. {
  41246. side: {
  41247. height: math.unit(32, "feet"),
  41248. weight: math.unit(250000, "lb"),
  41249. name: "Side",
  41250. image: {
  41251. source: "./media/characters/silverwing/side.svg",
  41252. extra: 1100/1019,
  41253. bottom: 204/1304
  41254. }
  41255. },
  41256. },
  41257. [
  41258. {
  41259. name: "Normal",
  41260. height: math.unit(32, "feet"),
  41261. default: true
  41262. },
  41263. ]
  41264. ))
  41265. characterMakers.push(() => makeCharacter(
  41266. { name: "Tristan Hawthorne", species: ["labrador"], tags: ["anthro"] },
  41267. {
  41268. front: {
  41269. height: math.unit(6 + 6/12, "feet"),
  41270. weight: math.unit(350, "lb"),
  41271. name: "Front",
  41272. image: {
  41273. source: "./media/characters/tristan-hawthorne/front.svg",
  41274. extra: 1159/1124,
  41275. bottom: 37/1196
  41276. }
  41277. },
  41278. },
  41279. [
  41280. {
  41281. name: "Normal",
  41282. height: math.unit(6 + 6/12, "feet"),
  41283. default: true
  41284. },
  41285. ]
  41286. ))
  41287. characterMakers.push(() => makeCharacter(
  41288. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  41289. {
  41290. front: {
  41291. height: math.unit(5 + 11/12, "feet"),
  41292. weight: math.unit(190, "lb"),
  41293. name: "Front",
  41294. image: {
  41295. source: "./media/characters/mizu/front.svg",
  41296. extra: 1988/1788,
  41297. bottom: 14/2002
  41298. }
  41299. },
  41300. },
  41301. [
  41302. {
  41303. name: "Normal",
  41304. height: math.unit(5 + 11/12, "feet"),
  41305. default: true
  41306. },
  41307. ]
  41308. ))
  41309. characterMakers.push(() => makeCharacter(
  41310. { name: "Moonlight Rose (Terra)", species: ["leafeon"], tags: ["anthro"] },
  41311. {
  41312. front: {
  41313. height: math.unit(6, "feet"),
  41314. name: "Front",
  41315. image: {
  41316. source: "./media/characters/moonlight-rose-terra/front.svg",
  41317. extra: 1434/1252,
  41318. bottom: 48/1482
  41319. }
  41320. },
  41321. },
  41322. [
  41323. {
  41324. name: "TRAPPIST-1D",
  41325. height: math.unit(4992*2, "km")
  41326. },
  41327. {
  41328. name: "Earth",
  41329. height: math.unit(6367*2, "km"),
  41330. default: true
  41331. },
  41332. {
  41333. name: "Kepler-22b",
  41334. height: math.unit(15282*2, "km")
  41335. },
  41336. ]
  41337. ))
  41338. characterMakers.push(() => makeCharacter(
  41339. { name: "Moonlight Rose (Neptune)", species: ["vaporeon"], tags: ["anthro"] },
  41340. {
  41341. front: {
  41342. height: math.unit(6, "feet"),
  41343. name: "Front",
  41344. image: {
  41345. source: "./media/characters/moonlight-rose-neptune/front.svg",
  41346. extra: 1851/1712,
  41347. bottom: 0/1851
  41348. }
  41349. },
  41350. },
  41351. [
  41352. {
  41353. name: "Enceladus",
  41354. height: math.unit(513*2, "km")
  41355. },
  41356. {
  41357. name: "Europe",
  41358. height: math.unit(1560*2, "km")
  41359. },
  41360. {
  41361. name: "Neptune",
  41362. height: math.unit(24622*2, "km"),
  41363. default: true
  41364. },
  41365. {
  41366. name: "CoRoT-9b",
  41367. height: math.unit(75067*2, "km")
  41368. },
  41369. ]
  41370. ))
  41371. characterMakers.push(() => makeCharacter(
  41372. { name: "Moonlight Rose (Jupiter)", species: ["jolteon"], tags: ["anthro"] },
  41373. {
  41374. front: {
  41375. height: math.unit(6, "feet"),
  41376. name: "Front",
  41377. image: {
  41378. source: "./media/characters/moonlight-rose-jupiter/front.svg",
  41379. extra: 1367/1286,
  41380. bottom: 55/1422
  41381. }
  41382. },
  41383. },
  41384. [
  41385. {
  41386. name: "Saturn",
  41387. height: math.unit(58232*2, "km")
  41388. },
  41389. {
  41390. name: "Jupiter",
  41391. height: math.unit(69911*2, "km"),
  41392. default: true
  41393. },
  41394. {
  41395. name: "HD 100546 b",
  41396. height: math.unit(482938, "km")
  41397. },
  41398. ]
  41399. ))
  41400. characterMakers.push(() => makeCharacter(
  41401. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  41402. {
  41403. front: {
  41404. height: math.unit(1.7, "feet"),
  41405. weight: math.unit(50, "lb"),
  41406. name: "Front",
  41407. image: {
  41408. source: "./media/characters/dechroma/front.svg",
  41409. extra: 1095/859,
  41410. bottom: 64/1159
  41411. }
  41412. },
  41413. },
  41414. [
  41415. {
  41416. name: "Normal",
  41417. height: math.unit(1.7, "feet"),
  41418. default: true
  41419. },
  41420. ]
  41421. ))
  41422. characterMakers.push(() => makeCharacter(
  41423. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  41424. {
  41425. side: {
  41426. height: math.unit(30, "feet"),
  41427. name: "Side",
  41428. image: {
  41429. source: "./media/characters/veluren-thanazel/side.svg",
  41430. extra: 1611/633,
  41431. bottom: 118/1729
  41432. }
  41433. },
  41434. front: {
  41435. height: math.unit(30, "feet"),
  41436. name: "Front",
  41437. image: {
  41438. source: "./media/characters/veluren-thanazel/front.svg",
  41439. extra: 1486/636,
  41440. bottom: 238/1724
  41441. }
  41442. },
  41443. head: {
  41444. height: math.unit(21.4, "feet"),
  41445. name: "Head",
  41446. image: {
  41447. source: "./media/characters/veluren-thanazel/head.svg"
  41448. }
  41449. },
  41450. genitals: {
  41451. height: math.unit(19.4, "feet"),
  41452. name: "Genitals",
  41453. image: {
  41454. source: "./media/characters/veluren-thanazel/genitals.svg"
  41455. }
  41456. },
  41457. },
  41458. [
  41459. {
  41460. name: "Social",
  41461. height: math.unit(6, "feet")
  41462. },
  41463. {
  41464. name: "Play",
  41465. height: math.unit(12, "feet")
  41466. },
  41467. {
  41468. name: "True",
  41469. height: math.unit(30, "feet"),
  41470. default: true
  41471. },
  41472. ]
  41473. ))
  41474. characterMakers.push(() => makeCharacter(
  41475. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  41476. {
  41477. front: {
  41478. height: math.unit(7 + 6/12, "feet"),
  41479. weight: math.unit(500, "kg"),
  41480. name: "Front",
  41481. image: {
  41482. source: "./media/characters/arcturas/front.svg",
  41483. extra: 1700/1500,
  41484. bottom: 145/1845
  41485. }
  41486. },
  41487. },
  41488. [
  41489. {
  41490. name: "Normal",
  41491. height: math.unit(7 + 6/12, "feet"),
  41492. default: true
  41493. },
  41494. ]
  41495. ))
  41496. characterMakers.push(() => makeCharacter(
  41497. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  41498. {
  41499. side: {
  41500. height: math.unit(6, "feet"),
  41501. weight: math.unit(2, "tons"),
  41502. name: "Side",
  41503. image: {
  41504. source: "./media/characters/vitaen/side.svg",
  41505. extra: 1157/617,
  41506. bottom: 122/1279
  41507. }
  41508. },
  41509. },
  41510. [
  41511. {
  41512. name: "Normal",
  41513. height: math.unit(6, "feet"),
  41514. default: true
  41515. },
  41516. ]
  41517. ))
  41518. characterMakers.push(() => makeCharacter(
  41519. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  41520. {
  41521. front: {
  41522. height: math.unit(19, "feet"),
  41523. name: "Front",
  41524. image: {
  41525. source: "./media/characters/fia-dreamweaver/front.svg",
  41526. extra: 1630/1504,
  41527. bottom: 25/1655
  41528. }
  41529. },
  41530. },
  41531. [
  41532. {
  41533. name: "Normal",
  41534. height: math.unit(19, "feet"),
  41535. default: true
  41536. },
  41537. ]
  41538. ))
  41539. characterMakers.push(() => makeCharacter(
  41540. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  41541. {
  41542. front: {
  41543. height: math.unit(5 + 4/12, "feet"),
  41544. name: "Front",
  41545. image: {
  41546. source: "./media/characters/artan/front.svg",
  41547. extra: 1618/1535,
  41548. bottom: 46/1664
  41549. }
  41550. },
  41551. back: {
  41552. height: math.unit(5 + 4/12, "feet"),
  41553. name: "Back",
  41554. image: {
  41555. source: "./media/characters/artan/back.svg",
  41556. extra: 1618/1543,
  41557. bottom: 31/1649
  41558. }
  41559. },
  41560. },
  41561. [
  41562. {
  41563. name: "Normal",
  41564. height: math.unit(5 + 4/12, "feet"),
  41565. default: true
  41566. },
  41567. ]
  41568. ))
  41569. characterMakers.push(() => makeCharacter(
  41570. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  41571. {
  41572. side: {
  41573. height: math.unit(182, "cm"),
  41574. weight: math.unit(1000, "lb"),
  41575. name: "Side",
  41576. image: {
  41577. source: "./media/characters/silver-dragon/side.svg",
  41578. extra: 710/287,
  41579. bottom: 88/798
  41580. }
  41581. },
  41582. },
  41583. [
  41584. {
  41585. name: "Normal",
  41586. height: math.unit(182, "cm"),
  41587. default: true
  41588. },
  41589. ]
  41590. ))
  41591. characterMakers.push(() => makeCharacter(
  41592. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  41593. {
  41594. side: {
  41595. height: math.unit(6 + 6/12, "feet"),
  41596. weight: math.unit(1.5, "tons"),
  41597. name: "Side",
  41598. image: {
  41599. source: "./media/characters/zephyr/side.svg",
  41600. extra: 1433/586,
  41601. bottom: 109/1542
  41602. }
  41603. },
  41604. },
  41605. [
  41606. {
  41607. name: "Normal",
  41608. height: math.unit(6 + 6/12, "feet"),
  41609. default: true
  41610. },
  41611. ]
  41612. ))
  41613. characterMakers.push(() => makeCharacter(
  41614. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  41615. {
  41616. side: {
  41617. height: math.unit(1, "feet"),
  41618. name: "Side",
  41619. image: {
  41620. source: "./media/characters/vixye/side.svg",
  41621. extra: 632/541,
  41622. bottom: 0/632
  41623. }
  41624. },
  41625. },
  41626. [
  41627. {
  41628. name: "Normal",
  41629. height: math.unit(1, "feet"),
  41630. default: true
  41631. },
  41632. {
  41633. name: "True",
  41634. height: math.unit(1e15, "multiverses")
  41635. },
  41636. ]
  41637. ))
  41638. characterMakers.push(() => makeCharacter(
  41639. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  41640. {
  41641. front: {
  41642. height: math.unit(8 + 2/12, "feet"),
  41643. weight: math.unit(650, "lb"),
  41644. name: "Front",
  41645. image: {
  41646. source: "./media/characters/darla-mac-lochlainn/front.svg",
  41647. extra: 1174/1137,
  41648. bottom: 82/1256
  41649. }
  41650. },
  41651. back: {
  41652. height: math.unit(8 + 2/12, "feet"),
  41653. weight: math.unit(650, "lb"),
  41654. name: "Back",
  41655. image: {
  41656. source: "./media/characters/darla-mac-lochlainn/back.svg",
  41657. extra: 1204/1157,
  41658. bottom: 46/1250
  41659. }
  41660. },
  41661. },
  41662. [
  41663. {
  41664. name: "Wildform",
  41665. height: math.unit(8 + 2/12, "feet"),
  41666. default: true
  41667. },
  41668. ]
  41669. ))
  41670. characterMakers.push(() => makeCharacter(
  41671. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  41672. {
  41673. front: {
  41674. height: math.unit(18, "feet"),
  41675. name: "Front",
  41676. image: {
  41677. source: "./media/characters/cyphin/front.svg",
  41678. extra: 970/886,
  41679. bottom: 42/1012
  41680. }
  41681. },
  41682. back: {
  41683. height: math.unit(18, "feet"),
  41684. name: "Back",
  41685. image: {
  41686. source: "./media/characters/cyphin/back.svg",
  41687. extra: 1009/894,
  41688. bottom: 24/1033
  41689. }
  41690. },
  41691. head: {
  41692. height: math.unit(5.05, "feet"),
  41693. name: "Head",
  41694. image: {
  41695. source: "./media/characters/cyphin/head.svg"
  41696. }
  41697. },
  41698. tailbud: {
  41699. height: math.unit(5, "feet"),
  41700. name: "Tailbud",
  41701. image: {
  41702. source: "./media/characters/cyphin/tailbud.svg"
  41703. }
  41704. },
  41705. },
  41706. [
  41707. ]
  41708. ))
  41709. characterMakers.push(() => makeCharacter(
  41710. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  41711. {
  41712. side: {
  41713. height: math.unit(10, "feet"),
  41714. weight: math.unit(6, "tons"),
  41715. name: "Side",
  41716. image: {
  41717. source: "./media/characters/raijin/side.svg",
  41718. extra: 1529/613,
  41719. bottom: 337/1866
  41720. }
  41721. },
  41722. },
  41723. [
  41724. {
  41725. name: "Normal",
  41726. height: math.unit(10, "feet"),
  41727. default: true
  41728. },
  41729. ]
  41730. ))
  41731. characterMakers.push(() => makeCharacter(
  41732. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  41733. {
  41734. side: {
  41735. height: math.unit(9, "feet"),
  41736. name: "Side",
  41737. image: {
  41738. source: "./media/characters/nilghais/side.svg",
  41739. extra: 1047/744,
  41740. bottom: 91/1138
  41741. }
  41742. },
  41743. head: {
  41744. height: math.unit(3.14, "feet"),
  41745. name: "Head",
  41746. image: {
  41747. source: "./media/characters/nilghais/head.svg"
  41748. }
  41749. },
  41750. mouth: {
  41751. height: math.unit(4.6, "feet"),
  41752. name: "Mouth",
  41753. image: {
  41754. source: "./media/characters/nilghais/mouth.svg"
  41755. }
  41756. },
  41757. wings: {
  41758. height: math.unit(24, "feet"),
  41759. name: "Wings",
  41760. image: {
  41761. source: "./media/characters/nilghais/wings.svg"
  41762. }
  41763. },
  41764. ass: {
  41765. height: math.unit(6.12, "feet"),
  41766. name: "Ass",
  41767. image: {
  41768. source: "./media/characters/nilghais/ass.svg"
  41769. }
  41770. },
  41771. },
  41772. [
  41773. {
  41774. name: "Normal",
  41775. height: math.unit(9, "feet"),
  41776. default: true
  41777. },
  41778. ]
  41779. ))
  41780. characterMakers.push(() => makeCharacter(
  41781. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  41782. {
  41783. regular: {
  41784. height: math.unit(16 + 2/12, "feet"),
  41785. weight: math.unit(2300, "lb"),
  41786. name: "Regular",
  41787. image: {
  41788. source: "./media/characters/zolgar/regular.svg",
  41789. extra: 1246/1004,
  41790. bottom: 124/1370
  41791. }
  41792. },
  41793. boxers: {
  41794. height: math.unit(16 + 2/12, "feet"),
  41795. weight: math.unit(2300, "lb"),
  41796. name: "Boxers",
  41797. image: {
  41798. source: "./media/characters/zolgar/boxers.svg",
  41799. extra: 1246/1004,
  41800. bottom: 124/1370
  41801. }
  41802. },
  41803. armored: {
  41804. height: math.unit(16 + 2/12, "feet"),
  41805. weight: math.unit(2300, "lb"),
  41806. name: "Armored",
  41807. image: {
  41808. source: "./media/characters/zolgar/armored.svg",
  41809. extra: 1246/1004,
  41810. bottom: 124/1370
  41811. }
  41812. },
  41813. goth: {
  41814. height: math.unit(16 + 2/12, "feet"),
  41815. weight: math.unit(2300, "lb"),
  41816. name: "Goth",
  41817. image: {
  41818. source: "./media/characters/zolgar/goth.svg",
  41819. extra: 1246/1004,
  41820. bottom: 124/1370
  41821. }
  41822. },
  41823. },
  41824. [
  41825. {
  41826. name: "Shrunken Down",
  41827. height: math.unit(9 + 2/12, "feet")
  41828. },
  41829. {
  41830. name: "Normal",
  41831. height: math.unit(16 + 2/12, "feet"),
  41832. default: true
  41833. },
  41834. ]
  41835. ))
  41836. characterMakers.push(() => makeCharacter(
  41837. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  41838. {
  41839. front: {
  41840. height: math.unit(6, "feet"),
  41841. weight: math.unit(168, "lb"),
  41842. name: "Front",
  41843. image: {
  41844. source: "./media/characters/luca/front.svg",
  41845. extra: 841/667,
  41846. bottom: 102/943
  41847. }
  41848. },
  41849. },
  41850. [
  41851. {
  41852. name: "Normal",
  41853. height: math.unit(6, "feet"),
  41854. default: true
  41855. },
  41856. ]
  41857. ))
  41858. characterMakers.push(() => makeCharacter(
  41859. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  41860. {
  41861. side: {
  41862. height: math.unit(7 + 3/12, "feet"),
  41863. weight: math.unit(312, "lb"),
  41864. name: "Side",
  41865. image: {
  41866. source: "./media/characters/zezo/side.svg",
  41867. extra: 1192/1067,
  41868. bottom: 63/1255
  41869. }
  41870. },
  41871. },
  41872. [
  41873. {
  41874. name: "Normal",
  41875. height: math.unit(7 + 3/12, "feet"),
  41876. default: true
  41877. },
  41878. ]
  41879. ))
  41880. characterMakers.push(() => makeCharacter(
  41881. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  41882. {
  41883. front: {
  41884. height: math.unit(5 + 5/12, "feet"),
  41885. weight: math.unit(170, "lb"),
  41886. name: "Front",
  41887. image: {
  41888. source: "./media/characters/mayso/front.svg",
  41889. extra: 1215/1108,
  41890. bottom: 16/1231
  41891. }
  41892. },
  41893. },
  41894. [
  41895. {
  41896. name: "Normal",
  41897. height: math.unit(5 + 5/12, "feet"),
  41898. default: true
  41899. },
  41900. ]
  41901. ))
  41902. characterMakers.push(() => makeCharacter(
  41903. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  41904. {
  41905. front: {
  41906. height: math.unit(4 + 3/12, "feet"),
  41907. weight: math.unit(80, "lb"),
  41908. name: "Front",
  41909. image: {
  41910. source: "./media/characters/hess/front.svg",
  41911. extra: 1200/1123,
  41912. bottom: 16/1216
  41913. }
  41914. },
  41915. },
  41916. [
  41917. {
  41918. name: "Normal",
  41919. height: math.unit(4 + 3/12, "feet"),
  41920. default: true
  41921. },
  41922. ]
  41923. ))
  41924. characterMakers.push(() => makeCharacter(
  41925. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  41926. {
  41927. front: {
  41928. height: math.unit(1.9, "meters"),
  41929. name: "Front",
  41930. image: {
  41931. source: "./media/characters/ashgar/front.svg",
  41932. extra: 1177/1146,
  41933. bottom: 99/1276
  41934. }
  41935. },
  41936. back: {
  41937. height: math.unit(1.9, "meters"),
  41938. name: "Back",
  41939. image: {
  41940. source: "./media/characters/ashgar/back.svg",
  41941. extra: 1201/1183,
  41942. bottom: 53/1254
  41943. }
  41944. },
  41945. feral: {
  41946. height: math.unit(1.4, "meters"),
  41947. name: "Feral",
  41948. image: {
  41949. source: "./media/characters/ashgar/feral.svg",
  41950. extra: 370/345,
  41951. bottom: 45/415
  41952. }
  41953. },
  41954. },
  41955. [
  41956. {
  41957. name: "Normal",
  41958. height: math.unit(1.9, "meters"),
  41959. default: true
  41960. },
  41961. ]
  41962. ))
  41963. characterMakers.push(() => makeCharacter(
  41964. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  41965. {
  41966. regular: {
  41967. height: math.unit(6, "feet"),
  41968. weight: math.unit(220, "lb"),
  41969. name: "Regular",
  41970. image: {
  41971. source: "./media/characters/phillip/regular.svg",
  41972. extra: 1373/1277,
  41973. bottom: 75/1448
  41974. }
  41975. },
  41976. dressed: {
  41977. height: math.unit(6, "feet"),
  41978. weight: math.unit(220, "lb"),
  41979. name: "Dressed",
  41980. image: {
  41981. source: "./media/characters/phillip/dressed.svg",
  41982. extra: 1373/1277,
  41983. bottom: 75/1448
  41984. }
  41985. },
  41986. paw: {
  41987. height: math.unit(1.44, "feet"),
  41988. name: "Paw",
  41989. image: {
  41990. source: "./media/characters/phillip/paw.svg"
  41991. }
  41992. },
  41993. },
  41994. [
  41995. {
  41996. name: "Normal",
  41997. height: math.unit(6, "feet"),
  41998. default: true
  41999. },
  42000. ]
  42001. ))
  42002. characterMakers.push(() => makeCharacter(
  42003. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  42004. {
  42005. side: {
  42006. height: math.unit(42, "feet"),
  42007. name: "Side",
  42008. image: {
  42009. source: "./media/characters/uvula/side.svg",
  42010. extra: 683/586,
  42011. bottom: 60/743
  42012. }
  42013. },
  42014. front: {
  42015. height: math.unit(42, "feet"),
  42016. name: "Front",
  42017. image: {
  42018. source: "./media/characters/uvula/front.svg",
  42019. extra: 705/613,
  42020. bottom: 54/759
  42021. }
  42022. },
  42023. maw: {
  42024. height: math.unit(23.5, "feet"),
  42025. name: "Maw",
  42026. image: {
  42027. source: "./media/characters/uvula/maw.svg"
  42028. }
  42029. },
  42030. },
  42031. [
  42032. {
  42033. name: "Original Size",
  42034. height: math.unit(14, "inches")
  42035. },
  42036. {
  42037. name: "Human Size",
  42038. height: math.unit(6, "feet")
  42039. },
  42040. {
  42041. name: "Big",
  42042. height: math.unit(42, "feet"),
  42043. default: true
  42044. },
  42045. {
  42046. name: "Bigger",
  42047. height: math.unit(100, "feet")
  42048. },
  42049. ]
  42050. ))
  42051. characterMakers.push(() => makeCharacter(
  42052. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  42053. {
  42054. front: {
  42055. height: math.unit(5 + 11/12, "feet"),
  42056. name: "Front",
  42057. image: {
  42058. source: "./media/characters/lannah/front.svg",
  42059. extra: 1208/1113,
  42060. bottom: 97/1305
  42061. }
  42062. },
  42063. },
  42064. [
  42065. {
  42066. name: "Normal",
  42067. height: math.unit(5 + 11/12, "feet"),
  42068. default: true
  42069. },
  42070. ]
  42071. ))
  42072. characterMakers.push(() => makeCharacter(
  42073. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  42074. {
  42075. front: {
  42076. height: math.unit(6 + 3/12, "feet"),
  42077. weight: math.unit(3.5, "tons"),
  42078. name: "Front",
  42079. image: {
  42080. source: "./media/characters/emberflame/front.svg",
  42081. extra: 1198/672,
  42082. bottom: 82/1280
  42083. }
  42084. },
  42085. side: {
  42086. height: math.unit(6 + 3/12, "feet"),
  42087. weight: math.unit(3.5, "tons"),
  42088. name: "Side",
  42089. image: {
  42090. source: "./media/characters/emberflame/side.svg",
  42091. extra: 938/527,
  42092. bottom: 56/994
  42093. }
  42094. },
  42095. },
  42096. [
  42097. {
  42098. name: "Normal",
  42099. height: math.unit(6 + 3/12, "feet"),
  42100. default: true
  42101. },
  42102. ]
  42103. ))
  42104. characterMakers.push(() => makeCharacter(
  42105. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  42106. {
  42107. side: {
  42108. height: math.unit(17.5, "feet"),
  42109. weight: math.unit(35, "tons"),
  42110. name: "Side",
  42111. image: {
  42112. source: "./media/characters/sophie-ambrose/side.svg",
  42113. extra: 1573/1242,
  42114. bottom: 71/1644
  42115. }
  42116. },
  42117. maw: {
  42118. height: math.unit(7.4, "feet"),
  42119. name: "Maw",
  42120. image: {
  42121. source: "./media/characters/sophie-ambrose/maw.svg"
  42122. }
  42123. },
  42124. },
  42125. [
  42126. {
  42127. name: "Normal",
  42128. height: math.unit(17.5, "feet"),
  42129. default: true
  42130. },
  42131. ]
  42132. ))
  42133. characterMakers.push(() => makeCharacter(
  42134. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  42135. {
  42136. front: {
  42137. height: math.unit(280, "feet"),
  42138. weight: math.unit(550, "tons"),
  42139. name: "Front",
  42140. image: {
  42141. source: "./media/characters/king-mugi/front.svg",
  42142. extra: 1102/947,
  42143. bottom: 104/1206
  42144. }
  42145. },
  42146. },
  42147. [
  42148. {
  42149. name: "King Mugi",
  42150. height: math.unit(280, "feet"),
  42151. default: true
  42152. },
  42153. ]
  42154. ))
  42155. characterMakers.push(() => makeCharacter(
  42156. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  42157. {
  42158. front: {
  42159. height: math.unit(64, "meters"),
  42160. name: "Front",
  42161. image: {
  42162. source: "./media/characters/nova-fox/front.svg",
  42163. extra: 1310/1246,
  42164. bottom: 65/1375
  42165. }
  42166. },
  42167. },
  42168. [
  42169. {
  42170. name: "Macro",
  42171. height: math.unit(64, "meters"),
  42172. default: true
  42173. },
  42174. ]
  42175. ))
  42176. characterMakers.push(() => makeCharacter(
  42177. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  42178. {
  42179. front: {
  42180. height: math.unit(6 + 3/12, "feet"),
  42181. weight: math.unit(170, "lb"),
  42182. name: "Front",
  42183. image: {
  42184. source: "./media/characters/sam-bat/front.svg",
  42185. extra: 1601/1411,
  42186. bottom: 125/1726
  42187. }
  42188. },
  42189. back: {
  42190. height: math.unit(6 + 3/12, "feet"),
  42191. weight: math.unit(170, "lb"),
  42192. name: "Back",
  42193. image: {
  42194. source: "./media/characters/sam-bat/back.svg",
  42195. extra: 1577/1405,
  42196. bottom: 58/1635
  42197. }
  42198. },
  42199. },
  42200. [
  42201. {
  42202. name: "Normal",
  42203. height: math.unit(6 + 3/12, "feet"),
  42204. default: true
  42205. },
  42206. ]
  42207. ))
  42208. characterMakers.push(() => makeCharacter(
  42209. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  42210. {
  42211. front: {
  42212. height: math.unit(59, "feet"),
  42213. weight: math.unit(40000, "lb"),
  42214. name: "Front",
  42215. image: {
  42216. source: "./media/characters/inari/front.svg",
  42217. extra: 1884/1350,
  42218. bottom: 95/1979
  42219. }
  42220. },
  42221. },
  42222. [
  42223. {
  42224. name: "Gigantamax",
  42225. height: math.unit(59, "feet"),
  42226. default: true
  42227. },
  42228. ]
  42229. ))
  42230. characterMakers.push(() => makeCharacter(
  42231. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  42232. {
  42233. front: {
  42234. height: math.unit(5 + 8/12, "feet"),
  42235. name: "Front",
  42236. image: {
  42237. source: "./media/characters/elizabeth/front.svg",
  42238. extra: 1395/1298,
  42239. bottom: 54/1449
  42240. }
  42241. },
  42242. mouth: {
  42243. height: math.unit(1.97, "feet"),
  42244. name: "Mouth",
  42245. image: {
  42246. source: "./media/characters/elizabeth/mouth.svg"
  42247. }
  42248. },
  42249. foot: {
  42250. height: math.unit(1.17, "feet"),
  42251. name: "Foot",
  42252. image: {
  42253. source: "./media/characters/elizabeth/foot.svg"
  42254. }
  42255. },
  42256. },
  42257. [
  42258. {
  42259. name: "Normal",
  42260. height: math.unit(5 + 8/12, "feet"),
  42261. default: true
  42262. },
  42263. {
  42264. name: "Minimacro",
  42265. height: math.unit(18, "feet")
  42266. },
  42267. {
  42268. name: "Macro",
  42269. height: math.unit(180, "feet")
  42270. },
  42271. ]
  42272. ))
  42273. characterMakers.push(() => makeCharacter(
  42274. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  42275. {
  42276. front: {
  42277. height: math.unit(5 + 2/12, "feet"),
  42278. name: "Front",
  42279. image: {
  42280. source: "./media/characters/october-gossamer/front.svg",
  42281. extra: 505/454,
  42282. bottom: 7/512
  42283. }
  42284. },
  42285. back: {
  42286. height: math.unit(5 + 2/12, "feet"),
  42287. name: "Back",
  42288. image: {
  42289. source: "./media/characters/october-gossamer/back.svg",
  42290. extra: 501/454,
  42291. bottom: 11/512
  42292. }
  42293. },
  42294. },
  42295. [
  42296. {
  42297. name: "Normal",
  42298. height: math.unit(5 + 2/12, "feet"),
  42299. default: true
  42300. },
  42301. ]
  42302. ))
  42303. characterMakers.push(() => makeCharacter(
  42304. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  42305. {
  42306. front: {
  42307. height: math.unit(5, "feet"),
  42308. name: "Front",
  42309. image: {
  42310. source: "./media/characters/epiglottis/front.svg",
  42311. extra: 923/849,
  42312. bottom: 17/940
  42313. }
  42314. },
  42315. },
  42316. [
  42317. {
  42318. name: "Original Size",
  42319. height: math.unit(10, "inches")
  42320. },
  42321. {
  42322. name: "Human Size",
  42323. height: math.unit(5, "feet"),
  42324. default: true
  42325. },
  42326. {
  42327. name: "Big",
  42328. height: math.unit(25, "feet")
  42329. },
  42330. {
  42331. name: "Bigger",
  42332. height: math.unit(50, "feet")
  42333. },
  42334. {
  42335. name: "oh lawd",
  42336. height: math.unit(75, "feet")
  42337. },
  42338. ]
  42339. ))
  42340. characterMakers.push(() => makeCharacter(
  42341. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  42342. {
  42343. front: {
  42344. height: math.unit(2 + 4/12, "feet"),
  42345. weight: math.unit(60, "lb"),
  42346. name: "Front",
  42347. image: {
  42348. source: "./media/characters/lerm/front.svg",
  42349. extra: 796/790,
  42350. bottom: 79/875
  42351. }
  42352. },
  42353. },
  42354. [
  42355. {
  42356. name: "Normal",
  42357. height: math.unit(2 + 4/12, "feet"),
  42358. default: true
  42359. },
  42360. ]
  42361. ))
  42362. characterMakers.push(() => makeCharacter(
  42363. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  42364. {
  42365. front: {
  42366. height: math.unit(5.5, "feet"),
  42367. weight: math.unit(130, "lb"),
  42368. name: "Front",
  42369. image: {
  42370. source: "./media/characters/xena-nebadon/front.svg",
  42371. extra: 1828/1730,
  42372. bottom: 79/1907
  42373. }
  42374. },
  42375. },
  42376. [
  42377. {
  42378. name: "Tiny Puppy",
  42379. height: math.unit(3, "inches")
  42380. },
  42381. {
  42382. name: "Normal",
  42383. height: math.unit(5.5, "feet"),
  42384. default: true
  42385. },
  42386. {
  42387. name: "Lotta Lady",
  42388. height: math.unit(12, "feet")
  42389. },
  42390. {
  42391. name: "Pretty Big",
  42392. height: math.unit(100, "feet")
  42393. },
  42394. {
  42395. name: "Big",
  42396. height: math.unit(500, "feet")
  42397. },
  42398. {
  42399. name: "Skyscraper Toys",
  42400. height: math.unit(2500, "feet")
  42401. },
  42402. {
  42403. name: "Plane Catcher",
  42404. height: math.unit(8, "miles")
  42405. },
  42406. {
  42407. name: "Planet Toys",
  42408. height: math.unit(15, "earths")
  42409. },
  42410. {
  42411. name: "Stardust",
  42412. height: math.unit(0.25, "galaxies")
  42413. },
  42414. {
  42415. name: "Snacks",
  42416. height: math.unit(70, "universes")
  42417. },
  42418. ]
  42419. ))
  42420. characterMakers.push(() => makeCharacter(
  42421. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  42422. {
  42423. front: {
  42424. height: math.unit(1.6, "meters"),
  42425. weight: math.unit(60, "kg"),
  42426. name: "Front",
  42427. image: {
  42428. source: "./media/characters/bounty/front.svg",
  42429. extra: 1426/1308,
  42430. bottom: 15/1441
  42431. }
  42432. },
  42433. back: {
  42434. height: math.unit(1.6, "meters"),
  42435. weight: math.unit(60, "kg"),
  42436. name: "Back",
  42437. image: {
  42438. source: "./media/characters/bounty/back.svg",
  42439. extra: 1417/1307,
  42440. bottom: 8/1425
  42441. }
  42442. },
  42443. },
  42444. [
  42445. {
  42446. name: "Normal",
  42447. height: math.unit(1.6, "meters"),
  42448. default: true
  42449. },
  42450. {
  42451. name: "Macro",
  42452. height: math.unit(300, "meters")
  42453. },
  42454. ]
  42455. ))
  42456. characterMakers.push(() => makeCharacter(
  42457. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  42458. {
  42459. front: {
  42460. height: math.unit(2 + 8/12, "feet"),
  42461. weight: math.unit(15, "lb"),
  42462. name: "Front",
  42463. image: {
  42464. source: "./media/characters/mochi/front.svg",
  42465. extra: 1022/852,
  42466. bottom: 435/1457
  42467. }
  42468. },
  42469. back: {
  42470. height: math.unit(2 + 8/12, "feet"),
  42471. weight: math.unit(15, "lb"),
  42472. name: "Back",
  42473. image: {
  42474. source: "./media/characters/mochi/back.svg",
  42475. extra: 1335/1119,
  42476. bottom: 39/1374
  42477. }
  42478. },
  42479. bird: {
  42480. height: math.unit(2 + 8/12, "feet"),
  42481. weight: math.unit(15, "lb"),
  42482. name: "Bird",
  42483. image: {
  42484. source: "./media/characters/mochi/bird.svg",
  42485. extra: 1251/1113,
  42486. bottom: 178/1429
  42487. }
  42488. },
  42489. kaiju: {
  42490. height: math.unit(154, "feet"),
  42491. weight: math.unit(1e7, "lb"),
  42492. name: "Kaiju",
  42493. image: {
  42494. source: "./media/characters/mochi/kaiju.svg",
  42495. extra: 460/324,
  42496. bottom: 40/500
  42497. }
  42498. },
  42499. head: {
  42500. height: math.unit(1.21, "feet"),
  42501. name: "Head",
  42502. image: {
  42503. source: "./media/characters/mochi/head.svg"
  42504. }
  42505. },
  42506. alternateTail: {
  42507. height: math.unit(2 + 8/12, "feet"),
  42508. weight: math.unit(45, "lb"),
  42509. name: "Alternate Tail",
  42510. image: {
  42511. source: "./media/characters/mochi/alternate-tail.svg",
  42512. extra: 139/76,
  42513. bottom: 45/184
  42514. }
  42515. },
  42516. },
  42517. [
  42518. {
  42519. name: "Micro",
  42520. height: math.unit(2, "inches")
  42521. },
  42522. {
  42523. name: "Normal",
  42524. height: math.unit(2 + 8/12, "feet"),
  42525. default: true
  42526. },
  42527. {
  42528. name: "Macro",
  42529. height: math.unit(106, "feet")
  42530. },
  42531. ]
  42532. ))
  42533. characterMakers.push(() => makeCharacter(
  42534. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  42535. {
  42536. front: {
  42537. height: math.unit(5.67, "feet"),
  42538. weight: math.unit(135, "lb"),
  42539. name: "Front",
  42540. image: {
  42541. source: "./media/characters/sarel/front.svg",
  42542. extra: 865/788,
  42543. bottom: 97/962
  42544. }
  42545. },
  42546. back: {
  42547. height: math.unit(5.67, "feet"),
  42548. weight: math.unit(135, "lb"),
  42549. name: "Back",
  42550. image: {
  42551. source: "./media/characters/sarel/back.svg",
  42552. extra: 857/777,
  42553. bottom: 32/889
  42554. }
  42555. },
  42556. chozoan: {
  42557. height: math.unit(5.67, "feet"),
  42558. weight: math.unit(135, "lb"),
  42559. name: "Chozoan",
  42560. image: {
  42561. source: "./media/characters/sarel/chozoan.svg",
  42562. extra: 865/788,
  42563. bottom: 97/962
  42564. }
  42565. },
  42566. current: {
  42567. height: math.unit(5.67, "feet"),
  42568. weight: math.unit(135, "lb"),
  42569. name: "Current",
  42570. image: {
  42571. source: "./media/characters/sarel/current.svg",
  42572. extra: 865/788,
  42573. bottom: 97/962
  42574. }
  42575. },
  42576. head: {
  42577. height: math.unit(1.77, "feet"),
  42578. name: "Head",
  42579. image: {
  42580. source: "./media/characters/sarel/head.svg"
  42581. }
  42582. },
  42583. claws: {
  42584. height: math.unit(1.8, "feet"),
  42585. name: "Claws",
  42586. image: {
  42587. source: "./media/characters/sarel/claws.svg"
  42588. }
  42589. },
  42590. clawsAlt: {
  42591. height: math.unit(1.8, "feet"),
  42592. name: "Claws-alt",
  42593. image: {
  42594. source: "./media/characters/sarel/claws-alt.svg"
  42595. }
  42596. },
  42597. },
  42598. [
  42599. {
  42600. name: "Normal",
  42601. height: math.unit(5.67, "feet"),
  42602. default: true
  42603. },
  42604. ]
  42605. ))
  42606. characterMakers.push(() => makeCharacter(
  42607. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  42608. {
  42609. front: {
  42610. height: math.unit(5500, "feet"),
  42611. name: "Front",
  42612. image: {
  42613. source: "./media/characters/alyonia/front.svg",
  42614. extra: 1200/1135,
  42615. bottom: 29/1229
  42616. }
  42617. },
  42618. back: {
  42619. height: math.unit(5500, "feet"),
  42620. name: "Back",
  42621. image: {
  42622. source: "./media/characters/alyonia/back.svg",
  42623. extra: 1205/1138,
  42624. bottom: 10/1215
  42625. }
  42626. },
  42627. },
  42628. [
  42629. {
  42630. name: "Small",
  42631. height: math.unit(10, "feet")
  42632. },
  42633. {
  42634. name: "Macro",
  42635. height: math.unit(500, "feet")
  42636. },
  42637. {
  42638. name: "Mega Macro",
  42639. height: math.unit(5500, "feet"),
  42640. default: true
  42641. },
  42642. {
  42643. name: "Mega Macro+",
  42644. height: math.unit(500000, "feet")
  42645. },
  42646. {
  42647. name: "Giga Macro",
  42648. height: math.unit(3000, "miles")
  42649. },
  42650. {
  42651. name: "Tera Macro",
  42652. height: math.unit(2.8e6, "miles")
  42653. },
  42654. {
  42655. name: "Galactic",
  42656. height: math.unit(120000, "lightyears")
  42657. },
  42658. ]
  42659. ))
  42660. characterMakers.push(() => makeCharacter(
  42661. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  42662. {
  42663. werewolf: {
  42664. height: math.unit(8, "feet"),
  42665. weight: math.unit(425, "lb"),
  42666. name: "Werewolf",
  42667. image: {
  42668. source: "./media/characters/autumn/werewolf.svg",
  42669. extra: 2154/2031,
  42670. bottom: 160/2314
  42671. }
  42672. },
  42673. human: {
  42674. height: math.unit(5 + 8/12, "feet"),
  42675. weight: math.unit(150, "lb"),
  42676. name: "Human",
  42677. image: {
  42678. source: "./media/characters/autumn/human.svg",
  42679. extra: 1200/1149,
  42680. bottom: 30/1230
  42681. }
  42682. },
  42683. },
  42684. [
  42685. {
  42686. name: "Normal",
  42687. height: math.unit(8, "feet"),
  42688. default: true
  42689. },
  42690. ]
  42691. ))
  42692. characterMakers.push(() => makeCharacter(
  42693. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  42694. {
  42695. front: {
  42696. height: math.unit(8 + 5/12, "feet"),
  42697. weight: math.unit(825, "lb"),
  42698. name: "Front",
  42699. image: {
  42700. source: "./media/characters/cobalt-charizard/front.svg",
  42701. extra: 1268/1155,
  42702. bottom: 122/1390
  42703. }
  42704. },
  42705. side: {
  42706. height: math.unit(8 + 5/12, "feet"),
  42707. weight: math.unit(825, "lb"),
  42708. name: "Side",
  42709. image: {
  42710. source: "./media/characters/cobalt-charizard/side.svg",
  42711. extra: 1348/1257,
  42712. bottom: 58/1406
  42713. }
  42714. },
  42715. gMax: {
  42716. height: math.unit(134 + 11/12, "feet"),
  42717. name: "G-Max",
  42718. image: {
  42719. source: "./media/characters/cobalt-charizard/g-max.svg",
  42720. extra: 1835/1541,
  42721. bottom: 151/1986
  42722. }
  42723. },
  42724. },
  42725. [
  42726. {
  42727. name: "Normal",
  42728. height: math.unit(8 + 5/12, "feet"),
  42729. default: true
  42730. },
  42731. ]
  42732. ))
  42733. characterMakers.push(() => makeCharacter(
  42734. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  42735. {
  42736. front: {
  42737. height: math.unit(6 + 3/12, "feet"),
  42738. weight: math.unit(210, "lb"),
  42739. name: "Front",
  42740. image: {
  42741. source: "./media/characters/stella/front.svg",
  42742. extra: 3549/3335,
  42743. bottom: 51/3600
  42744. }
  42745. },
  42746. },
  42747. [
  42748. {
  42749. name: "Normal",
  42750. height: math.unit(6 + 3/12, "feet"),
  42751. default: true
  42752. },
  42753. ]
  42754. ))
  42755. characterMakers.push(() => makeCharacter(
  42756. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  42757. {
  42758. front: {
  42759. height: math.unit(5, "feet"),
  42760. weight: math.unit(90, "lb"),
  42761. name: "Front",
  42762. image: {
  42763. source: "./media/characters/riley-bishop/front.svg",
  42764. extra: 1450/1428,
  42765. bottom: 152/1602
  42766. }
  42767. },
  42768. },
  42769. [
  42770. {
  42771. name: "Normal",
  42772. height: math.unit(5, "feet"),
  42773. default: true
  42774. },
  42775. ]
  42776. ))
  42777. characterMakers.push(() => makeCharacter(
  42778. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  42779. {
  42780. side: {
  42781. height: math.unit(8 + 2/12, "feet"),
  42782. weight: math.unit(500, "kg"),
  42783. name: "Side",
  42784. image: {
  42785. source: "./media/characters/theo-arcanine/side.svg",
  42786. extra: 1342/1074,
  42787. bottom: 111/1453
  42788. }
  42789. },
  42790. },
  42791. [
  42792. {
  42793. name: "Normal",
  42794. height: math.unit(8 + 2/12, "feet"),
  42795. default: true
  42796. },
  42797. ]
  42798. ))
  42799. characterMakers.push(() => makeCharacter(
  42800. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  42801. {
  42802. front: {
  42803. height: math.unit(4, "feet"),
  42804. name: "Front",
  42805. image: {
  42806. source: "./media/characters/kali/front.svg",
  42807. extra: 1921/1357,
  42808. bottom: 70/1991
  42809. }
  42810. },
  42811. },
  42812. [
  42813. {
  42814. name: "Normal",
  42815. height: math.unit(4, "feet"),
  42816. default: true
  42817. },
  42818. {
  42819. name: "Macro",
  42820. height: math.unit(32, "meters")
  42821. },
  42822. {
  42823. name: "Macro+",
  42824. height: math.unit(150, "meters")
  42825. },
  42826. {
  42827. name: "Megamacro",
  42828. height: math.unit(7500, "meters")
  42829. },
  42830. {
  42831. name: "Megamacro+",
  42832. height: math.unit(80, "kilometers")
  42833. },
  42834. ]
  42835. ))
  42836. characterMakers.push(() => makeCharacter(
  42837. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  42838. {
  42839. side: {
  42840. height: math.unit(5 + 11/12, "feet"),
  42841. weight: math.unit(236, "lb"),
  42842. name: "Side",
  42843. image: {
  42844. source: "./media/characters/gapp/side.svg",
  42845. extra: 775/340,
  42846. bottom: 58/833
  42847. }
  42848. },
  42849. mouth: {
  42850. height: math.unit(2.98, "feet"),
  42851. name: "Mouth",
  42852. image: {
  42853. source: "./media/characters/gapp/mouth.svg"
  42854. }
  42855. },
  42856. },
  42857. [
  42858. {
  42859. name: "Normal",
  42860. height: math.unit(5 + 1/12, "feet"),
  42861. default: true
  42862. },
  42863. ]
  42864. ))
  42865. characterMakers.push(() => makeCharacter(
  42866. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  42867. {
  42868. front: {
  42869. height: math.unit(6, "feet"),
  42870. name: "Front",
  42871. image: {
  42872. source: "./media/characters/persephone/front.svg",
  42873. extra: 1895/1717,
  42874. bottom: 96/1991
  42875. }
  42876. },
  42877. back: {
  42878. height: math.unit(6, "feet"),
  42879. name: "Back",
  42880. image: {
  42881. source: "./media/characters/persephone/back.svg",
  42882. extra: 1868/1679,
  42883. bottom: 26/1894
  42884. }
  42885. },
  42886. casual: {
  42887. height: math.unit(6, "feet"),
  42888. name: "Casual",
  42889. image: {
  42890. source: "./media/characters/persephone/casual.svg",
  42891. extra: 1713/1541,
  42892. bottom: 76/1789
  42893. }
  42894. },
  42895. },
  42896. [
  42897. {
  42898. name: "Human Size",
  42899. height: math.unit(6, "feet")
  42900. },
  42901. {
  42902. name: "Big Steppy",
  42903. height: math.unit(600, "meters"),
  42904. default: true
  42905. },
  42906. {
  42907. name: "Galaxy Brain",
  42908. height: math.unit(1, "zettameter")
  42909. },
  42910. ]
  42911. ))
  42912. characterMakers.push(() => makeCharacter(
  42913. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  42914. {
  42915. front: {
  42916. height: math.unit(1.85, "meters"),
  42917. name: "Front",
  42918. image: {
  42919. source: "./media/characters/riley-foxthing/front.svg",
  42920. extra: 1495/1354,
  42921. bottom: 122/1617
  42922. }
  42923. },
  42924. frontAlt: {
  42925. height: math.unit(1.85, "meters"),
  42926. name: "Front (Alt)",
  42927. image: {
  42928. source: "./media/characters/riley-foxthing/front-alt.svg",
  42929. extra: 1572/1389,
  42930. bottom: 116/1688
  42931. }
  42932. },
  42933. },
  42934. [
  42935. {
  42936. name: "Normal Sized",
  42937. height: math.unit(1.85, "meters"),
  42938. default: true
  42939. },
  42940. {
  42941. name: "Quite Sizable",
  42942. height: math.unit(5, "meters")
  42943. },
  42944. {
  42945. name: "Rather Large",
  42946. height: math.unit(20, "meters")
  42947. },
  42948. {
  42949. name: "Macro",
  42950. height: math.unit(450, "meters")
  42951. },
  42952. {
  42953. name: "Giga",
  42954. height: math.unit(5, "km")
  42955. },
  42956. ]
  42957. ))
  42958. characterMakers.push(() => makeCharacter(
  42959. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  42960. {
  42961. front: {
  42962. height: math.unit(6, "feet"),
  42963. weight: math.unit(200, "lb"),
  42964. name: "Front",
  42965. image: {
  42966. source: "./media/characters/blizzard/front.svg",
  42967. extra: 1136/990,
  42968. bottom: 136/1272
  42969. }
  42970. },
  42971. back: {
  42972. height: math.unit(6, "feet"),
  42973. weight: math.unit(200, "lb"),
  42974. name: "Back",
  42975. image: {
  42976. source: "./media/characters/blizzard/back.svg",
  42977. extra: 1175/1034,
  42978. bottom: 97/1272
  42979. }
  42980. },
  42981. sitting: {
  42982. height: math.unit(3.725, "feet"),
  42983. weight: math.unit(200, "lb"),
  42984. name: "Sitting",
  42985. image: {
  42986. source: "./media/characters/blizzard/sitting.svg",
  42987. extra: 581/485,
  42988. bottom: 90/671
  42989. }
  42990. },
  42991. frontWizard: {
  42992. height: math.unit(7.9, "feet"),
  42993. weight: math.unit(200, "lb"),
  42994. name: "Front (Wizard)",
  42995. image: {
  42996. source: "./media/characters/blizzard/front-wizard.svg"
  42997. }
  42998. },
  42999. backWizard: {
  43000. height: math.unit(7.9, "feet"),
  43001. weight: math.unit(200, "lb"),
  43002. name: "Back (Wizard)",
  43003. image: {
  43004. source: "./media/characters/blizzard/back-wizard.svg"
  43005. }
  43006. },
  43007. frontNsfw: {
  43008. height: math.unit(6, "feet"),
  43009. weight: math.unit(200, "lb"),
  43010. name: "Front (NSFW)",
  43011. image: {
  43012. source: "./media/characters/blizzard/front-nsfw.svg",
  43013. extra: 1136/990,
  43014. bottom: 136/1272
  43015. }
  43016. },
  43017. backNsfw: {
  43018. height: math.unit(6, "feet"),
  43019. weight: math.unit(200, "lb"),
  43020. name: "Back (NSFW)",
  43021. image: {
  43022. source: "./media/characters/blizzard/back-nsfw.svg",
  43023. extra: 1175/1034,
  43024. bottom: 97/1272
  43025. }
  43026. },
  43027. sittingNsfw: {
  43028. height: math.unit(3.725, "feet"),
  43029. weight: math.unit(200, "lb"),
  43030. name: "Sitting (NSFW)",
  43031. image: {
  43032. source: "./media/characters/blizzard/sitting-nsfw.svg",
  43033. extra: 581/485,
  43034. bottom: 90/671
  43035. }
  43036. },
  43037. wizardFrontNsfw: {
  43038. height: math.unit(7.9, "feet"),
  43039. weight: math.unit(200, "lb"),
  43040. name: "Wizard (Front, NSFW)",
  43041. image: {
  43042. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  43043. }
  43044. },
  43045. },
  43046. [
  43047. {
  43048. name: "Normal",
  43049. height: math.unit(6, "feet"),
  43050. default: true
  43051. },
  43052. ]
  43053. ))
  43054. characterMakers.push(() => makeCharacter(
  43055. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  43056. {
  43057. front: {
  43058. height: math.unit(5 + 2/12, "feet"),
  43059. name: "Front",
  43060. image: {
  43061. source: "./media/characters/lumi/front.svg",
  43062. extra: 1328/1268,
  43063. bottom: 103/1431
  43064. }
  43065. },
  43066. back: {
  43067. height: math.unit(5 + 2/12, "feet"),
  43068. name: "Back",
  43069. image: {
  43070. source: "./media/characters/lumi/back.svg",
  43071. extra: 1381/1327,
  43072. bottom: 43/1424
  43073. }
  43074. },
  43075. },
  43076. [
  43077. {
  43078. name: "Normal",
  43079. height: math.unit(5 + 2/12, "feet"),
  43080. default: true
  43081. },
  43082. ]
  43083. ))
  43084. characterMakers.push(() => makeCharacter(
  43085. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  43086. {
  43087. front: {
  43088. height: math.unit(5 + 9/12, "feet"),
  43089. name: "Front",
  43090. image: {
  43091. source: "./media/characters/aliya-cotton/front.svg",
  43092. extra: 577/564,
  43093. bottom: 29/606
  43094. }
  43095. },
  43096. },
  43097. [
  43098. {
  43099. name: "Normal",
  43100. height: math.unit(5 + 9/12, "feet"),
  43101. default: true
  43102. },
  43103. ]
  43104. ))
  43105. characterMakers.push(() => makeCharacter(
  43106. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  43107. {
  43108. front: {
  43109. height: math.unit(2.7, "meters"),
  43110. weight: math.unit(25000, "lb"),
  43111. name: "Front",
  43112. image: {
  43113. source: "./media/characters/noah-luxray/front.svg",
  43114. extra: 1644/825,
  43115. bottom: 339/1983
  43116. }
  43117. },
  43118. side: {
  43119. height: math.unit(2.97, "meters"),
  43120. weight: math.unit(25000, "lb"),
  43121. name: "Side",
  43122. image: {
  43123. source: "./media/characters/noah-luxray/side.svg",
  43124. extra: 1319/650,
  43125. bottom: 163/1482
  43126. }
  43127. },
  43128. dick: {
  43129. height: math.unit(7.4, "feet"),
  43130. weight: math.unit(2500, "lb"),
  43131. name: "Dick",
  43132. image: {
  43133. source: "./media/characters/noah-luxray/dick.svg"
  43134. }
  43135. },
  43136. dickAlt: {
  43137. height: math.unit(10.83, "feet"),
  43138. weight: math.unit(2500, "lb"),
  43139. name: "Dick-alt",
  43140. image: {
  43141. source: "./media/characters/noah-luxray/dick-alt.svg"
  43142. }
  43143. },
  43144. },
  43145. [
  43146. {
  43147. name: "BIG",
  43148. height: math.unit(2.7, "meters"),
  43149. default: true
  43150. },
  43151. ]
  43152. ))
  43153. characterMakers.push(() => makeCharacter(
  43154. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  43155. {
  43156. standing: {
  43157. height: math.unit(183, "cm"),
  43158. weight: math.unit(68, "kg"),
  43159. name: "Standing",
  43160. image: {
  43161. source: "./media/characters/arion/standing.svg",
  43162. extra: 1869/1807,
  43163. bottom: 93/1962
  43164. }
  43165. },
  43166. reclining: {
  43167. height: math.unit(70.5, "cm"),
  43168. weight: math.unit(68, "lb"),
  43169. name: "Reclining",
  43170. image: {
  43171. source: "./media/characters/arion/reclining.svg",
  43172. extra: 937/870,
  43173. bottom: 63/1000
  43174. }
  43175. },
  43176. },
  43177. [
  43178. {
  43179. name: "Colossus Size, Low",
  43180. height: math.unit(33, "meters"),
  43181. default: true
  43182. },
  43183. {
  43184. name: "Colossus Size, Mid",
  43185. height: math.unit(52, "meters")
  43186. },
  43187. {
  43188. name: "Colossus Size, High",
  43189. height: math.unit(60, "meters")
  43190. },
  43191. {
  43192. name: "Titan Size, Low",
  43193. height: math.unit(91, "meters"),
  43194. },
  43195. {
  43196. name: "Titan Size, Mid",
  43197. height: math.unit(122, "meters")
  43198. },
  43199. {
  43200. name: "Titan Size, High",
  43201. height: math.unit(162, "meters")
  43202. },
  43203. ]
  43204. ))
  43205. characterMakers.push(() => makeCharacter(
  43206. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  43207. {
  43208. front: {
  43209. height: math.unit(53, "meters"),
  43210. name: "Front",
  43211. image: {
  43212. source: "./media/characters/stellar-marbey/front.svg",
  43213. extra: 1913/1805,
  43214. bottom: 92/2005
  43215. }
  43216. },
  43217. back: {
  43218. height: math.unit(53, "meters"),
  43219. name: "Back",
  43220. image: {
  43221. source: "./media/characters/stellar-marbey/back.svg",
  43222. extra: 1960/1851,
  43223. bottom: 28/1988
  43224. }
  43225. },
  43226. mouth: {
  43227. height: math.unit(3.5, "meters"),
  43228. name: "Mouth",
  43229. image: {
  43230. source: "./media/characters/stellar-marbey/mouth.svg"
  43231. }
  43232. },
  43233. },
  43234. [
  43235. {
  43236. name: "Macro",
  43237. height: math.unit(53, "meters"),
  43238. default: true
  43239. },
  43240. ]
  43241. ))
  43242. characterMakers.push(() => makeCharacter(
  43243. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  43244. {
  43245. front: {
  43246. height: math.unit(8 + 1/12, "feet"),
  43247. weight: math.unit(233, "lb"),
  43248. name: "Front",
  43249. image: {
  43250. source: "./media/characters/matsu/front.svg",
  43251. extra: 832/772,
  43252. bottom: 40/872
  43253. }
  43254. },
  43255. back: {
  43256. height: math.unit(8 + 1/12, "feet"),
  43257. weight: math.unit(233, "lb"),
  43258. name: "Back",
  43259. image: {
  43260. source: "./media/characters/matsu/back.svg",
  43261. extra: 839/780,
  43262. bottom: 47/886
  43263. }
  43264. },
  43265. },
  43266. [
  43267. {
  43268. name: "Normal",
  43269. height: math.unit(8 + 1/12, "feet"),
  43270. default: true
  43271. },
  43272. ]
  43273. ))
  43274. characterMakers.push(() => makeCharacter(
  43275. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  43276. {
  43277. front: {
  43278. height: math.unit(4, "feet"),
  43279. weight: math.unit(148, "lb"),
  43280. name: "Front",
  43281. image: {
  43282. source: "./media/characters/thiz/front.svg",
  43283. extra: 1913/1748,
  43284. bottom: 62/1975
  43285. }
  43286. },
  43287. },
  43288. [
  43289. {
  43290. name: "Normal",
  43291. height: math.unit(4, "feet"),
  43292. default: true
  43293. },
  43294. ]
  43295. ))
  43296. characterMakers.push(() => makeCharacter(
  43297. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  43298. {
  43299. front: {
  43300. height: math.unit(7 + 6/12, "feet"),
  43301. weight: math.unit(267, "lb"),
  43302. name: "Front",
  43303. image: {
  43304. source: "./media/characters/marcel/front.svg",
  43305. extra: 1221/1096,
  43306. bottom: 76/1297
  43307. }
  43308. },
  43309. },
  43310. [
  43311. {
  43312. name: "Normal",
  43313. height: math.unit(7 + 6/12, "feet"),
  43314. default: true
  43315. },
  43316. ]
  43317. ))
  43318. characterMakers.push(() => makeCharacter(
  43319. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  43320. {
  43321. side: {
  43322. height: math.unit(42, "meters"),
  43323. name: "Side",
  43324. image: {
  43325. source: "./media/characters/flake/side.svg",
  43326. extra: 1525/1306,
  43327. bottom: 209/1734
  43328. }
  43329. },
  43330. },
  43331. [
  43332. {
  43333. name: "Normal",
  43334. height: math.unit(42, "meters"),
  43335. default: true
  43336. },
  43337. ]
  43338. ))
  43339. characterMakers.push(() => makeCharacter(
  43340. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  43341. {
  43342. dressed: {
  43343. height: math.unit(6 + 4/12, "feet"),
  43344. weight: math.unit(520, "lb"),
  43345. name: "Dressed",
  43346. image: {
  43347. source: "./media/characters/someonne/dressed.svg",
  43348. extra: 1020/1010,
  43349. bottom: 178/1198
  43350. }
  43351. },
  43352. undressed: {
  43353. height: math.unit(6 + 4/12, "feet"),
  43354. weight: math.unit(520, "lb"),
  43355. name: "Undressed",
  43356. image: {
  43357. source: "./media/characters/someonne/undressed.svg",
  43358. extra: 1019/1014,
  43359. bottom: 169/1188
  43360. }
  43361. },
  43362. },
  43363. [
  43364. {
  43365. name: "Normal",
  43366. height: math.unit(6 + 4/12, "feet"),
  43367. default: true
  43368. },
  43369. ]
  43370. ))
  43371. characterMakers.push(() => makeCharacter(
  43372. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  43373. {
  43374. front: {
  43375. height: math.unit(3, "feet"),
  43376. weight: math.unit(30, "lb"),
  43377. name: "Front",
  43378. image: {
  43379. source: "./media/characters/till/front.svg",
  43380. extra: 892/823,
  43381. bottom: 55/947
  43382. }
  43383. },
  43384. },
  43385. [
  43386. {
  43387. name: "Normal",
  43388. height: math.unit(3, "feet"),
  43389. default: true
  43390. },
  43391. ]
  43392. ))
  43393. characterMakers.push(() => makeCharacter(
  43394. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  43395. {
  43396. front: {
  43397. height: math.unit(9 + 8/12, "feet"),
  43398. weight: math.unit(800, "lb"),
  43399. name: "Front",
  43400. image: {
  43401. source: "./media/characters/sydney-heki/front.svg",
  43402. extra: 1360/1300,
  43403. bottom: 22/1382
  43404. }
  43405. },
  43406. back: {
  43407. height: math.unit(9 + 8/12, "feet"),
  43408. weight: math.unit(800, "lb"),
  43409. name: "Back",
  43410. image: {
  43411. source: "./media/characters/sydney-heki/back.svg",
  43412. extra: 1356/1293,
  43413. bottom: 12/1368
  43414. }
  43415. },
  43416. frontDressed: {
  43417. height: math.unit(9 + 8/12, "feet"),
  43418. weight: math.unit(800, "lb"),
  43419. name: "Front-dressed",
  43420. image: {
  43421. source: "./media/characters/sydney-heki/front-dressed.svg",
  43422. extra: 1360/1300,
  43423. bottom: 22/1382
  43424. }
  43425. },
  43426. },
  43427. [
  43428. {
  43429. name: "Normal",
  43430. height: math.unit(9 + 8/12, "feet"),
  43431. default: true
  43432. },
  43433. {
  43434. name: "Macro",
  43435. height: math.unit(500, "feet")
  43436. },
  43437. {
  43438. name: "Megamacro",
  43439. height: math.unit(3.6, "miles")
  43440. },
  43441. ]
  43442. ))
  43443. characterMakers.push(() => makeCharacter(
  43444. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  43445. {
  43446. front: {
  43447. height: math.unit(200, "cm"),
  43448. weight: math.unit(250, "lb"),
  43449. name: "Front",
  43450. image: {
  43451. source: "./media/characters/fowler-karlsson/front.svg",
  43452. extra: 897/845,
  43453. bottom: 123/1020
  43454. }
  43455. },
  43456. back: {
  43457. height: math.unit(200, "cm"),
  43458. weight: math.unit(250, "lb"),
  43459. name: "Back",
  43460. image: {
  43461. source: "./media/characters/fowler-karlsson/back.svg",
  43462. extra: 999/944,
  43463. bottom: 26/1025
  43464. }
  43465. },
  43466. dick: {
  43467. height: math.unit(1.92, "feet"),
  43468. weight: math.unit(150, "lb"),
  43469. name: "Dick",
  43470. image: {
  43471. source: "./media/characters/fowler-karlsson/dick.svg"
  43472. }
  43473. },
  43474. },
  43475. [
  43476. {
  43477. name: "Normal",
  43478. height: math.unit(200, "cm"),
  43479. default: true
  43480. },
  43481. {
  43482. name: "Smaller Macro",
  43483. height: math.unit(90, "m")
  43484. },
  43485. {
  43486. name: "Macro",
  43487. height: math.unit(150, "m")
  43488. },
  43489. {
  43490. name: "Bigger Macro",
  43491. height: math.unit(300, "m")
  43492. },
  43493. ]
  43494. ))
  43495. characterMakers.push(() => makeCharacter(
  43496. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  43497. {
  43498. side: {
  43499. height: math.unit(8 + 2/12, "feet"),
  43500. weight: math.unit(1, "tonne"),
  43501. name: "Side",
  43502. image: {
  43503. source: "./media/characters/rylide/side.svg",
  43504. extra: 1318/1034,
  43505. bottom: 106/1424
  43506. }
  43507. },
  43508. sitting: {
  43509. height: math.unit(303, "cm"),
  43510. weight: math.unit(1, "tonne"),
  43511. name: "Sitting",
  43512. image: {
  43513. source: "./media/characters/rylide/sitting.svg",
  43514. extra: 1303/1103,
  43515. bottom: 36/1339
  43516. }
  43517. },
  43518. },
  43519. [
  43520. {
  43521. name: "Normal",
  43522. height: math.unit(8 + 2/12, "feet"),
  43523. default: true
  43524. },
  43525. ]
  43526. ))
  43527. characterMakers.push(() => makeCharacter(
  43528. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  43529. {
  43530. front: {
  43531. height: math.unit(5 + 10/12, "feet"),
  43532. weight: math.unit(160, "lb"),
  43533. name: "Front",
  43534. image: {
  43535. source: "./media/characters/pudask/front.svg",
  43536. extra: 1616/1590,
  43537. bottom: 161/1777
  43538. }
  43539. },
  43540. },
  43541. [
  43542. {
  43543. name: "Ferret Height",
  43544. height: math.unit(2 + 5/12, "feet")
  43545. },
  43546. {
  43547. name: "Canon Height",
  43548. height: math.unit(5 + 10/12, "feet"),
  43549. default: true
  43550. },
  43551. ]
  43552. ))
  43553. characterMakers.push(() => makeCharacter(
  43554. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  43555. {
  43556. front: {
  43557. height: math.unit(3 + 6/12, "feet"),
  43558. weight: math.unit(60, "lb"),
  43559. name: "Front",
  43560. image: {
  43561. source: "./media/characters/ramita/front.svg",
  43562. extra: 1402/1232,
  43563. bottom: 62/1464
  43564. }
  43565. },
  43566. dressed: {
  43567. height: math.unit(3 + 6/12, "feet"),
  43568. weight: math.unit(60, "lb"),
  43569. name: "Dressed",
  43570. image: {
  43571. source: "./media/characters/ramita/dressed.svg",
  43572. extra: 1534/1249,
  43573. bottom: 50/1584
  43574. }
  43575. },
  43576. },
  43577. [
  43578. {
  43579. name: "Normal",
  43580. height: math.unit(3 + 6/12, "feet"),
  43581. default: true
  43582. },
  43583. ]
  43584. ))
  43585. characterMakers.push(() => makeCharacter(
  43586. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  43587. {
  43588. front: {
  43589. height: math.unit(8, "feet"),
  43590. name: "Front",
  43591. image: {
  43592. source: "./media/characters/ark/front.svg",
  43593. extra: 772/693,
  43594. bottom: 45/817
  43595. }
  43596. },
  43597. },
  43598. [
  43599. {
  43600. name: "Normal",
  43601. height: math.unit(8, "feet"),
  43602. default: true
  43603. },
  43604. ]
  43605. ))
  43606. characterMakers.push(() => makeCharacter(
  43607. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  43608. {
  43609. front: {
  43610. height: math.unit(6, "feet"),
  43611. weight: math.unit(250, "lb"),
  43612. volume: math.unit(5/8, "gallons"),
  43613. name: "Front",
  43614. image: {
  43615. source: "./media/characters/ludwig-horn/front.svg",
  43616. extra: 1782/1635,
  43617. bottom: 96/1878
  43618. }
  43619. },
  43620. back: {
  43621. height: math.unit(6, "feet"),
  43622. weight: math.unit(250, "lb"),
  43623. volume: math.unit(5/8, "gallons"),
  43624. name: "Back",
  43625. image: {
  43626. source: "./media/characters/ludwig-horn/back.svg",
  43627. extra: 1874/1729,
  43628. bottom: 27/1901
  43629. }
  43630. },
  43631. dick: {
  43632. height: math.unit(1.05, "feet"),
  43633. weight: math.unit(15, "lb"),
  43634. volume: math.unit(5/8, "gallons"),
  43635. name: "Dick",
  43636. image: {
  43637. source: "./media/characters/ludwig-horn/dick.svg"
  43638. }
  43639. },
  43640. },
  43641. [
  43642. {
  43643. name: "Small",
  43644. height: math.unit(6, "feet")
  43645. },
  43646. {
  43647. name: "Typical",
  43648. height: math.unit(12, "feet"),
  43649. default: true
  43650. },
  43651. {
  43652. name: "Building",
  43653. height: math.unit(80, "feet")
  43654. },
  43655. {
  43656. name: "Town",
  43657. height: math.unit(800, "feet")
  43658. },
  43659. {
  43660. name: "Kingdom",
  43661. height: math.unit(80000, "feet")
  43662. },
  43663. {
  43664. name: "Planet",
  43665. height: math.unit(8000000, "feet")
  43666. },
  43667. {
  43668. name: "Universe",
  43669. height: math.unit(8000000000, "feet")
  43670. },
  43671. {
  43672. name: "Transcended",
  43673. height: math.unit(8e27, "feet")
  43674. },
  43675. ]
  43676. ))
  43677. characterMakers.push(() => makeCharacter(
  43678. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  43679. {
  43680. front: {
  43681. height: math.unit(5, "feet"),
  43682. weight: math.unit(50, "kg"),
  43683. name: "Front",
  43684. image: {
  43685. source: "./media/characters/biot-avery/front.svg",
  43686. extra: 1295/1232,
  43687. bottom: 86/1381
  43688. }
  43689. },
  43690. },
  43691. [
  43692. {
  43693. name: "Normal",
  43694. height: math.unit(5, "feet"),
  43695. default: true
  43696. },
  43697. ]
  43698. ))
  43699. characterMakers.push(() => makeCharacter(
  43700. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  43701. {
  43702. front: {
  43703. height: math.unit(6, "feet"),
  43704. name: "Front",
  43705. image: {
  43706. source: "./media/characters/kitsune-kiro/front.svg",
  43707. extra: 1270/1158,
  43708. bottom: 42/1312
  43709. }
  43710. },
  43711. frontAlt: {
  43712. height: math.unit(6, "feet"),
  43713. name: "Front-alt",
  43714. image: {
  43715. source: "./media/characters/kitsune-kiro/front-alt.svg",
  43716. extra: 1130/1081,
  43717. bottom: 36/1166
  43718. }
  43719. },
  43720. },
  43721. [
  43722. {
  43723. name: "Smol",
  43724. height: math.unit(3, "feet")
  43725. },
  43726. {
  43727. name: "Normal",
  43728. height: math.unit(6, "feet"),
  43729. default: true
  43730. },
  43731. ]
  43732. ))
  43733. characterMakers.push(() => makeCharacter(
  43734. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  43735. {
  43736. front: {
  43737. height: math.unit(6, "feet"),
  43738. weight: math.unit(125, "lb"),
  43739. name: "Front",
  43740. image: {
  43741. source: "./media/characters/jack-thatcher/front.svg",
  43742. extra: 1474/1370,
  43743. bottom: 26/1500
  43744. }
  43745. },
  43746. back: {
  43747. height: math.unit(6, "feet"),
  43748. weight: math.unit(125, "lb"),
  43749. name: "Back",
  43750. image: {
  43751. source: "./media/characters/jack-thatcher/back.svg",
  43752. extra: 1489/1384,
  43753. bottom: 18/1507
  43754. }
  43755. },
  43756. },
  43757. [
  43758. {
  43759. name: "Normal",
  43760. height: math.unit(6, "feet"),
  43761. default: true
  43762. },
  43763. {
  43764. name: "Macro",
  43765. height: math.unit(75, "feet")
  43766. },
  43767. {
  43768. name: "Macro-er",
  43769. height: math.unit(250, "feet")
  43770. },
  43771. ]
  43772. ))
  43773. characterMakers.push(() => makeCharacter(
  43774. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  43775. {
  43776. front: {
  43777. height: math.unit(7, "feet"),
  43778. weight: math.unit(110, "kg"),
  43779. name: "Front",
  43780. image: {
  43781. source: "./media/characters/max-hyper/front.svg",
  43782. extra: 1969/1881,
  43783. bottom: 49/2018
  43784. }
  43785. },
  43786. },
  43787. [
  43788. {
  43789. name: "Normal",
  43790. height: math.unit(7, "feet"),
  43791. default: true
  43792. },
  43793. ]
  43794. ))
  43795. characterMakers.push(() => makeCharacter(
  43796. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  43797. {
  43798. front: {
  43799. height: math.unit(5 + 5/12, "feet"),
  43800. weight: math.unit(160, "lb"),
  43801. name: "Front",
  43802. image: {
  43803. source: "./media/characters/spook/front.svg",
  43804. extra: 794/791,
  43805. bottom: 54/848
  43806. }
  43807. },
  43808. back: {
  43809. height: math.unit(5 + 5/12, "feet"),
  43810. weight: math.unit(160, "lb"),
  43811. name: "Back",
  43812. image: {
  43813. source: "./media/characters/spook/back.svg",
  43814. extra: 812/798,
  43815. bottom: 32/844
  43816. }
  43817. },
  43818. },
  43819. [
  43820. {
  43821. name: "Normal",
  43822. height: math.unit(5 + 5/12, "feet"),
  43823. default: true
  43824. },
  43825. ]
  43826. ))
  43827. characterMakers.push(() => makeCharacter(
  43828. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  43829. {
  43830. front: {
  43831. height: math.unit(18, "feet"),
  43832. name: "Front",
  43833. image: {
  43834. source: "./media/characters/xeaduulix/front.svg",
  43835. extra: 1380/1166,
  43836. bottom: 110/1490
  43837. }
  43838. },
  43839. back: {
  43840. height: math.unit(18, "feet"),
  43841. name: "Back",
  43842. image: {
  43843. source: "./media/characters/xeaduulix/back.svg",
  43844. extra: 1592/1170,
  43845. bottom: 128/1720
  43846. }
  43847. },
  43848. frontNsfw: {
  43849. height: math.unit(18, "feet"),
  43850. name: "Front (NSFW)",
  43851. image: {
  43852. source: "./media/characters/xeaduulix/front-nsfw.svg",
  43853. extra: 1380/1166,
  43854. bottom: 110/1490
  43855. }
  43856. },
  43857. backNsfw: {
  43858. height: math.unit(18, "feet"),
  43859. name: "Back (NSFW)",
  43860. image: {
  43861. source: "./media/characters/xeaduulix/back-nsfw.svg",
  43862. extra: 1592/1170,
  43863. bottom: 128/1720
  43864. }
  43865. },
  43866. },
  43867. [
  43868. {
  43869. name: "Normal",
  43870. height: math.unit(18, "feet"),
  43871. default: true
  43872. },
  43873. ]
  43874. ))
  43875. characterMakers.push(() => makeCharacter(
  43876. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  43877. {
  43878. spreadWings: {
  43879. height: math.unit(20, "feet"),
  43880. name: "Spread Wings",
  43881. image: {
  43882. source: "./media/characters/fledge/spread-wings.svg",
  43883. extra: 693/635,
  43884. bottom: 26/719
  43885. }
  43886. },
  43887. front: {
  43888. height: math.unit(20, "feet"),
  43889. name: "Front",
  43890. image: {
  43891. source: "./media/characters/fledge/front.svg",
  43892. extra: 684/637,
  43893. bottom: 18/702
  43894. }
  43895. },
  43896. frontAlt: {
  43897. height: math.unit(20, "feet"),
  43898. name: "Front (Alt)",
  43899. image: {
  43900. source: "./media/characters/fledge/front-alt.svg",
  43901. extra: 708/664,
  43902. bottom: 13/721
  43903. }
  43904. },
  43905. back: {
  43906. height: math.unit(20, "feet"),
  43907. name: "Back",
  43908. image: {
  43909. source: "./media/characters/fledge/back.svg",
  43910. extra: 718/634,
  43911. bottom: 22/740
  43912. }
  43913. },
  43914. head: {
  43915. height: math.unit(5.55, "feet"),
  43916. name: "Head",
  43917. image: {
  43918. source: "./media/characters/fledge/head.svg"
  43919. }
  43920. },
  43921. headAlt: {
  43922. height: math.unit(5.1, "feet"),
  43923. name: "Head (Alt)",
  43924. image: {
  43925. source: "./media/characters/fledge/head-alt.svg"
  43926. }
  43927. },
  43928. },
  43929. [
  43930. {
  43931. name: "Small",
  43932. height: math.unit(6 + 2/12, "feet")
  43933. },
  43934. {
  43935. name: "Big",
  43936. height: math.unit(20, "feet"),
  43937. default: true
  43938. },
  43939. {
  43940. name: "Giant",
  43941. height: math.unit(100, "feet")
  43942. },
  43943. {
  43944. name: "Macro",
  43945. height: math.unit(200, "feet")
  43946. },
  43947. ]
  43948. ))
  43949. characterMakers.push(() => makeCharacter(
  43950. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  43951. {
  43952. front: {
  43953. height: math.unit(1, "meter"),
  43954. name: "Front",
  43955. image: {
  43956. source: "./media/characters/atlas-morenai/front.svg",
  43957. extra: 1275/1043,
  43958. bottom: 19/1294
  43959. }
  43960. },
  43961. back: {
  43962. height: math.unit(1, "meter"),
  43963. name: "Back",
  43964. image: {
  43965. source: "./media/characters/atlas-morenai/back.svg",
  43966. extra: 1141/1001,
  43967. bottom: 25/1166
  43968. }
  43969. },
  43970. },
  43971. [
  43972. {
  43973. name: "Normal",
  43974. height: math.unit(1, "meter"),
  43975. default: true
  43976. },
  43977. {
  43978. name: "Magic-Infused",
  43979. height: math.unit(5, "meters")
  43980. },
  43981. ]
  43982. ))
  43983. characterMakers.push(() => makeCharacter(
  43984. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  43985. {
  43986. front: {
  43987. height: math.unit(5, "meters"),
  43988. name: "Front",
  43989. image: {
  43990. source: "./media/characters/cintia/front.svg",
  43991. extra: 1312/1228,
  43992. bottom: 38/1350
  43993. }
  43994. },
  43995. back: {
  43996. height: math.unit(5, "meters"),
  43997. name: "Back",
  43998. image: {
  43999. source: "./media/characters/cintia/back.svg",
  44000. extra: 1260/1166,
  44001. bottom: 98/1358
  44002. }
  44003. },
  44004. frontDick: {
  44005. height: math.unit(5, "meters"),
  44006. name: "Front (Dick)",
  44007. image: {
  44008. source: "./media/characters/cintia/front-dick.svg",
  44009. extra: 1312/1228,
  44010. bottom: 38/1350
  44011. }
  44012. },
  44013. backDick: {
  44014. height: math.unit(5, "meters"),
  44015. name: "Back (Dick)",
  44016. image: {
  44017. source: "./media/characters/cintia/back-dick.svg",
  44018. extra: 1260/1166,
  44019. bottom: 98/1358
  44020. }
  44021. },
  44022. bust: {
  44023. height: math.unit(1.97, "meters"),
  44024. name: "Bust",
  44025. image: {
  44026. source: "./media/characters/cintia/bust.svg",
  44027. extra: 617/565,
  44028. bottom: 0/617
  44029. }
  44030. },
  44031. },
  44032. [
  44033. {
  44034. name: "Normal",
  44035. height: math.unit(5, "meters"),
  44036. default: true
  44037. },
  44038. ]
  44039. ))
  44040. characterMakers.push(() => makeCharacter(
  44041. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  44042. {
  44043. side: {
  44044. height: math.unit(100, "feet"),
  44045. name: "Side",
  44046. image: {
  44047. source: "./media/characters/denora/side.svg",
  44048. extra: 875/803,
  44049. bottom: 9/884
  44050. }
  44051. },
  44052. },
  44053. [
  44054. {
  44055. name: "Standard",
  44056. height: math.unit(100, "feet"),
  44057. default: true
  44058. },
  44059. {
  44060. name: "Grand",
  44061. height: math.unit(1000, "feet")
  44062. },
  44063. {
  44064. name: "Conquering",
  44065. height: math.unit(10000, "feet")
  44066. },
  44067. ]
  44068. ))
  44069. characterMakers.push(() => makeCharacter(
  44070. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  44071. {
  44072. dressed: {
  44073. height: math.unit(8 + 5/12, "feet"),
  44074. weight: math.unit(700, "lb"),
  44075. name: "Dressed",
  44076. image: {
  44077. source: "./media/characters/kiva/dressed.svg",
  44078. extra: 1102/1055,
  44079. bottom: 60/1162
  44080. }
  44081. },
  44082. nude: {
  44083. height: math.unit(8 + 5/12, "feet"),
  44084. weight: math.unit(700, "lb"),
  44085. name: "Nude",
  44086. image: {
  44087. source: "./media/characters/kiva/nude.svg",
  44088. extra: 1102/1055,
  44089. bottom: 60/1162
  44090. }
  44091. },
  44092. },
  44093. [
  44094. {
  44095. name: "Base Height",
  44096. height: math.unit(8 + 5/12, "feet"),
  44097. default: true
  44098. },
  44099. {
  44100. name: "Macro",
  44101. height: math.unit(100, "feet")
  44102. },
  44103. {
  44104. name: "Max",
  44105. height: math.unit(3280, "feet")
  44106. },
  44107. ]
  44108. ))
  44109. characterMakers.push(() => makeCharacter(
  44110. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  44111. {
  44112. front: {
  44113. height: math.unit(6 + 8/12, "feet"),
  44114. weight: math.unit(250, "lb"),
  44115. name: "Front",
  44116. image: {
  44117. source: "./media/characters/ztragon/front.svg",
  44118. extra: 1825/1684,
  44119. bottom: 98/1923
  44120. }
  44121. },
  44122. },
  44123. [
  44124. {
  44125. name: "Normal",
  44126. height: math.unit(6 + 8/12, "feet"),
  44127. default: true
  44128. },
  44129. {
  44130. name: "Macro",
  44131. height: math.unit(80, "feet")
  44132. },
  44133. ]
  44134. ))
  44135. characterMakers.push(() => makeCharacter(
  44136. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  44137. {
  44138. front: {
  44139. height: math.unit(10.4, "feet"),
  44140. weight: math.unit(2, "tons"),
  44141. name: "Front",
  44142. image: {
  44143. source: "./media/characters/yesenia/front.svg",
  44144. extra: 1479/1474,
  44145. bottom: 233/1712
  44146. }
  44147. },
  44148. },
  44149. [
  44150. {
  44151. name: "Normal",
  44152. height: math.unit(10.4, "feet"),
  44153. default: true
  44154. },
  44155. ]
  44156. ))
  44157. characterMakers.push(() => makeCharacter(
  44158. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  44159. {
  44160. normal: {
  44161. height: math.unit(6 + 1/12, "feet"),
  44162. weight: math.unit(180, "lb"),
  44163. name: "Normal",
  44164. image: {
  44165. source: "./media/characters/leanne-lycheborne/normal.svg",
  44166. extra: 1748/1660,
  44167. bottom: 98/1846
  44168. }
  44169. },
  44170. were: {
  44171. height: math.unit(12, "feet"),
  44172. weight: math.unit(1600, "lb"),
  44173. name: "Were",
  44174. image: {
  44175. source: "./media/characters/leanne-lycheborne/were.svg",
  44176. extra: 1485/1432,
  44177. bottom: 66/1551
  44178. }
  44179. },
  44180. },
  44181. [
  44182. {
  44183. name: "Normal",
  44184. height: math.unit(6 + 1/12, "feet"),
  44185. default: true
  44186. },
  44187. ]
  44188. ))
  44189. characterMakers.push(() => makeCharacter(
  44190. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  44191. {
  44192. side: {
  44193. height: math.unit(13, "feet"),
  44194. name: "Side",
  44195. image: {
  44196. source: "./media/characters/kira-tyler/side.svg",
  44197. extra: 693/393,
  44198. bottom: 58/751
  44199. }
  44200. },
  44201. },
  44202. [
  44203. {
  44204. name: "Normal",
  44205. height: math.unit(13, "feet"),
  44206. default: true
  44207. },
  44208. ]
  44209. ))
  44210. characterMakers.push(() => makeCharacter(
  44211. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  44212. {
  44213. front: {
  44214. height: math.unit(10.3, "feet"),
  44215. weight: math.unit(150, "lb"),
  44216. name: "Front",
  44217. image: {
  44218. source: "./media/characters/blaze/front.svg",
  44219. extra: 1378/1286,
  44220. bottom: 172/1550
  44221. }
  44222. },
  44223. },
  44224. [
  44225. {
  44226. name: "Normal",
  44227. height: math.unit(10.3, "feet"),
  44228. default: true
  44229. },
  44230. ]
  44231. ))
  44232. characterMakers.push(() => makeCharacter(
  44233. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  44234. {
  44235. side: {
  44236. height: math.unit(2, "meters"),
  44237. weight: math.unit(400, "kg"),
  44238. name: "Side",
  44239. image: {
  44240. source: "./media/characters/anu/side.svg",
  44241. extra: 506/394,
  44242. bottom: 18/524
  44243. }
  44244. },
  44245. },
  44246. [
  44247. {
  44248. name: "Humanoid",
  44249. height: math.unit(2, "meters")
  44250. },
  44251. {
  44252. name: "Normal",
  44253. height: math.unit(5, "meters"),
  44254. default: true
  44255. },
  44256. ]
  44257. ))
  44258. characterMakers.push(() => makeCharacter(
  44259. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  44260. {
  44261. front: {
  44262. height: math.unit(5 + 5/12, "feet"),
  44263. weight: math.unit(170, "lb"),
  44264. name: "Front",
  44265. image: {
  44266. source: "./media/characters/synx-the-lynx/front.svg",
  44267. extra: 1893/1745,
  44268. bottom: 17/1910
  44269. }
  44270. },
  44271. side: {
  44272. height: math.unit(5 + 5/12, "feet"),
  44273. weight: math.unit(170, "lb"),
  44274. name: "Side",
  44275. image: {
  44276. source: "./media/characters/synx-the-lynx/side.svg",
  44277. extra: 1884/1740,
  44278. bottom: 39/1923
  44279. }
  44280. },
  44281. back: {
  44282. height: math.unit(5 + 5/12, "feet"),
  44283. weight: math.unit(170, "lb"),
  44284. name: "Back",
  44285. image: {
  44286. source: "./media/characters/synx-the-lynx/back.svg",
  44287. extra: 1903/1755,
  44288. bottom: 14/1917
  44289. }
  44290. },
  44291. },
  44292. [
  44293. {
  44294. name: "Normal",
  44295. height: math.unit(5 + 5/12, "feet"),
  44296. default: true
  44297. },
  44298. ]
  44299. ))
  44300. characterMakers.push(() => makeCharacter(
  44301. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  44302. {
  44303. back: {
  44304. height: math.unit(15, "feet"),
  44305. name: "Back",
  44306. image: {
  44307. source: "./media/characters/nadezda-fex/back.svg",
  44308. extra: 1695/1481,
  44309. bottom: 25/1720
  44310. }
  44311. },
  44312. },
  44313. [
  44314. {
  44315. name: "Normal",
  44316. height: math.unit(15, "feet"),
  44317. default: true
  44318. },
  44319. {
  44320. name: "Macro",
  44321. height: math.unit(2.5, "miles")
  44322. },
  44323. {
  44324. name: "Goddess",
  44325. height: math.unit(2, "multiverses")
  44326. },
  44327. ]
  44328. ))
  44329. characterMakers.push(() => makeCharacter(
  44330. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  44331. {
  44332. front: {
  44333. height: math.unit(216, "cm"),
  44334. name: "Front",
  44335. image: {
  44336. source: "./media/characters/lev/front.svg",
  44337. extra: 1728/1670,
  44338. bottom: 82/1810
  44339. }
  44340. },
  44341. back: {
  44342. height: math.unit(216, "cm"),
  44343. name: "Back",
  44344. image: {
  44345. source: "./media/characters/lev/back.svg",
  44346. extra: 1738/1675,
  44347. bottom: 24/1762
  44348. }
  44349. },
  44350. dressed: {
  44351. height: math.unit(216, "cm"),
  44352. name: "Dressed",
  44353. image: {
  44354. source: "./media/characters/lev/dressed.svg",
  44355. extra: 1397/1351,
  44356. bottom: 73/1470
  44357. }
  44358. },
  44359. head: {
  44360. height: math.unit(0.51, "meter"),
  44361. name: "Head",
  44362. image: {
  44363. source: "./media/characters/lev/head.svg"
  44364. }
  44365. },
  44366. },
  44367. [
  44368. {
  44369. name: "Normal",
  44370. height: math.unit(216, "cm"),
  44371. default: true
  44372. },
  44373. {
  44374. name: "Relatively Macro",
  44375. height: math.unit(80, "meters")
  44376. },
  44377. {
  44378. name: "Megamacro",
  44379. height: math.unit(21600, "meters")
  44380. },
  44381. {
  44382. name: "Megamacro+",
  44383. height: math.unit(64800, "meters")
  44384. },
  44385. ]
  44386. ))
  44387. characterMakers.push(() => makeCharacter(
  44388. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  44389. {
  44390. front: {
  44391. height: math.unit(2, "meters"),
  44392. weight: math.unit(80, "kg"),
  44393. name: "Front",
  44394. image: {
  44395. source: "./media/characters/moka/front.svg",
  44396. extra: 1337/1255,
  44397. bottom: 58/1395
  44398. }
  44399. },
  44400. },
  44401. [
  44402. {
  44403. name: "Micro",
  44404. height: math.unit(15, "cm")
  44405. },
  44406. {
  44407. name: "Normal",
  44408. height: math.unit(2, "meters"),
  44409. default: true
  44410. },
  44411. {
  44412. name: "Macro",
  44413. height: math.unit(20, "meters"),
  44414. },
  44415. ]
  44416. ))
  44417. characterMakers.push(() => makeCharacter(
  44418. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  44419. {
  44420. front: {
  44421. height: math.unit(9, "feet"),
  44422. weight: math.unit(240, "lb"),
  44423. name: "Front",
  44424. image: {
  44425. source: "./media/characters/kuzco/front.svg",
  44426. extra: 1593/1487,
  44427. bottom: 32/1625
  44428. }
  44429. },
  44430. side: {
  44431. height: math.unit(9, "feet"),
  44432. weight: math.unit(240, "lb"),
  44433. name: "Side",
  44434. image: {
  44435. source: "./media/characters/kuzco/side.svg",
  44436. extra: 1575/1485,
  44437. bottom: 30/1605
  44438. }
  44439. },
  44440. back: {
  44441. height: math.unit(9, "feet"),
  44442. weight: math.unit(240, "lb"),
  44443. name: "Back",
  44444. image: {
  44445. source: "./media/characters/kuzco/back.svg",
  44446. extra: 1603/1514,
  44447. bottom: 14/1617
  44448. }
  44449. },
  44450. },
  44451. [
  44452. {
  44453. name: "Normal",
  44454. height: math.unit(9, "feet"),
  44455. default: true
  44456. },
  44457. ]
  44458. ))
  44459. characterMakers.push(() => makeCharacter(
  44460. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  44461. {
  44462. side: {
  44463. height: math.unit(2, "meters"),
  44464. weight: math.unit(300, "kg"),
  44465. name: "Side",
  44466. image: {
  44467. source: "./media/characters/ceruleus/side.svg",
  44468. extra: 1068/974,
  44469. bottom: 126/1194
  44470. }
  44471. },
  44472. },
  44473. [
  44474. {
  44475. name: "Normal",
  44476. height: math.unit(16, "meters"),
  44477. default: true
  44478. },
  44479. ]
  44480. ))
  44481. characterMakers.push(() => makeCharacter(
  44482. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  44483. {
  44484. front: {
  44485. height: math.unit(9, "feet"),
  44486. weight: math.unit(500, "kg"),
  44487. name: "Front",
  44488. image: {
  44489. source: "./media/characters/acouya/front.svg",
  44490. extra: 1660/1473,
  44491. bottom: 28/1688
  44492. }
  44493. },
  44494. },
  44495. [
  44496. {
  44497. name: "Normal",
  44498. height: math.unit(9, "feet"),
  44499. default: true
  44500. },
  44501. ]
  44502. ))
  44503. characterMakers.push(() => makeCharacter(
  44504. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  44505. {
  44506. front: {
  44507. height: math.unit(5 + 6/12, "feet"),
  44508. weight: math.unit(195, "lb"),
  44509. name: "Front",
  44510. image: {
  44511. source: "./media/characters/vant/front.svg",
  44512. extra: 1396/1320,
  44513. bottom: 20/1416
  44514. }
  44515. },
  44516. back: {
  44517. height: math.unit(5 + 6/12, "feet"),
  44518. weight: math.unit(195, "lb"),
  44519. name: "Back",
  44520. image: {
  44521. source: "./media/characters/vant/back.svg",
  44522. extra: 1396/1320,
  44523. bottom: 20/1416
  44524. }
  44525. },
  44526. maw: {
  44527. height: math.unit(0.75, "feet"),
  44528. name: "Maw",
  44529. image: {
  44530. source: "./media/characters/vant/maw.svg"
  44531. }
  44532. },
  44533. paw: {
  44534. height: math.unit(1.07, "feet"),
  44535. name: "Paw",
  44536. image: {
  44537. source: "./media/characters/vant/paw.svg"
  44538. }
  44539. },
  44540. },
  44541. [
  44542. {
  44543. name: "Micro",
  44544. height: math.unit(0.25, "inches")
  44545. },
  44546. {
  44547. name: "Normal",
  44548. height: math.unit(5 + 6/12, "feet"),
  44549. default: true
  44550. },
  44551. {
  44552. name: "Macro",
  44553. height: math.unit(75, "feet")
  44554. },
  44555. ]
  44556. ))
  44557. characterMakers.push(() => makeCharacter(
  44558. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  44559. {
  44560. front: {
  44561. height: math.unit(30, "meters"),
  44562. weight: math.unit(363, "tons"),
  44563. name: "Front",
  44564. image: {
  44565. source: "./media/characters/ahra/front.svg",
  44566. extra: 1914/1814,
  44567. bottom: 46/1960
  44568. }
  44569. },
  44570. },
  44571. [
  44572. {
  44573. name: "Macro",
  44574. height: math.unit(30, "meters"),
  44575. default: true
  44576. },
  44577. ]
  44578. ))
  44579. characterMakers.push(() => makeCharacter(
  44580. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  44581. {
  44582. undressed: {
  44583. height: math.unit(2, "m"),
  44584. weight: math.unit(250, "kg"),
  44585. name: "Undressed",
  44586. image: {
  44587. source: "./media/characters/coriander/undressed.svg",
  44588. extra: 1757/1606,
  44589. bottom: 107/1864
  44590. }
  44591. },
  44592. dressed: {
  44593. height: math.unit(2, "m"),
  44594. weight: math.unit(250, "kg"),
  44595. name: "Dressed",
  44596. image: {
  44597. source: "./media/characters/coriander/dressed.svg",
  44598. extra: 1757/1606,
  44599. bottom: 107/1864
  44600. }
  44601. },
  44602. },
  44603. [
  44604. {
  44605. name: "Normal",
  44606. height: math.unit(4, "meters"),
  44607. default: true
  44608. },
  44609. {
  44610. name: "XL",
  44611. height: math.unit(6, "meters")
  44612. },
  44613. {
  44614. name: "XXL",
  44615. height: math.unit(8, "meters")
  44616. },
  44617. ]
  44618. ))
  44619. characterMakers.push(() => makeCharacter(
  44620. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  44621. {
  44622. front: {
  44623. height: math.unit(6, "feet"),
  44624. name: "Front",
  44625. image: {
  44626. source: "./media/characters/syrinx/front.svg",
  44627. extra: 1557/1259,
  44628. bottom: 171/1728
  44629. }
  44630. },
  44631. },
  44632. [
  44633. {
  44634. name: "Normal",
  44635. height: math.unit(6 + 3/12, "feet"),
  44636. default: true
  44637. },
  44638. ]
  44639. ))
  44640. characterMakers.push(() => makeCharacter(
  44641. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  44642. {
  44643. front: {
  44644. height: math.unit(11 + 6/12, "feet"),
  44645. weight: math.unit(1.5, "tons"),
  44646. name: "Front",
  44647. image: {
  44648. source: "./media/characters/bor/front.svg",
  44649. extra: 1189/1109,
  44650. bottom: 170/1359
  44651. }
  44652. },
  44653. },
  44654. [
  44655. {
  44656. name: "Normal",
  44657. height: math.unit(11 + 6/12, "feet"),
  44658. default: true
  44659. },
  44660. {
  44661. name: "Macro",
  44662. height: math.unit(32 + 9/12, "feet")
  44663. },
  44664. ]
  44665. ))
  44666. characterMakers.push(() => makeCharacter(
  44667. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  44668. {
  44669. anthro: {
  44670. height: math.unit(9, "feet"),
  44671. weight: math.unit(2076, "lb"),
  44672. name: "Anthro",
  44673. image: {
  44674. source: "./media/characters/abacus/anthro.svg",
  44675. extra: 1540/1494,
  44676. bottom: 233/1773
  44677. }
  44678. },
  44679. pigeon: {
  44680. height: math.unit(1, "feet"),
  44681. name: "Pigeon",
  44682. image: {
  44683. source: "./media/characters/abacus/pigeon.svg",
  44684. extra: 528/525,
  44685. bottom: 46/574
  44686. }
  44687. },
  44688. },
  44689. [
  44690. {
  44691. name: "Normal",
  44692. height: math.unit(9, "feet"),
  44693. default: true
  44694. },
  44695. ]
  44696. ))
  44697. characterMakers.push(() => makeCharacter(
  44698. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  44699. {
  44700. side: {
  44701. height: math.unit(6, "feet"),
  44702. name: "Side",
  44703. image: {
  44704. source: "./media/characters/delkhan/side.svg",
  44705. extra: 1884/1786,
  44706. bottom: 308/2192
  44707. }
  44708. },
  44709. head: {
  44710. height: math.unit(3.38, "feet"),
  44711. name: "Head",
  44712. image: {
  44713. source: "./media/characters/delkhan/head.svg"
  44714. }
  44715. },
  44716. },
  44717. [
  44718. {
  44719. name: "Normal",
  44720. height: math.unit(72, "feet"),
  44721. default: true
  44722. },
  44723. {
  44724. name: "Giant",
  44725. height: math.unit(172, "feet")
  44726. },
  44727. ]
  44728. ))
  44729. characterMakers.push(() => makeCharacter(
  44730. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  44731. {
  44732. standing: {
  44733. height: math.unit(6, "feet"),
  44734. name: "Standing",
  44735. image: {
  44736. source: "./media/characters/euchidat/standing.svg",
  44737. extra: 1612/1553,
  44738. bottom: 116/1728
  44739. }
  44740. },
  44741. leaning: {
  44742. height: math.unit(6, "feet"),
  44743. name: "Leaning",
  44744. image: {
  44745. source: "./media/characters/euchidat/leaning.svg",
  44746. extra: 1719/1674,
  44747. bottom: 27/1746
  44748. }
  44749. },
  44750. },
  44751. [
  44752. {
  44753. name: "Normal",
  44754. height: math.unit(175, "feet"),
  44755. default: true
  44756. },
  44757. {
  44758. name: "Megamacro",
  44759. height: math.unit(190, "miles")
  44760. },
  44761. {
  44762. name: "Gigamacro",
  44763. height: math.unit(190000, "miles")
  44764. },
  44765. ]
  44766. ))
  44767. characterMakers.push(() => makeCharacter(
  44768. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  44769. {
  44770. front: {
  44771. height: math.unit(6, "feet"),
  44772. weight: math.unit(150, "lb"),
  44773. name: "Front",
  44774. image: {
  44775. source: "./media/characters/rebecca-stack/front.svg",
  44776. extra: 1256/1201,
  44777. bottom: 18/1274
  44778. }
  44779. },
  44780. },
  44781. [
  44782. {
  44783. name: "Normal",
  44784. height: math.unit(5 + 8/12, "feet"),
  44785. default: true
  44786. },
  44787. {
  44788. name: "Demolitionist",
  44789. height: math.unit(200, "feet")
  44790. },
  44791. {
  44792. name: "Out of Control",
  44793. height: math.unit(2, "miles")
  44794. },
  44795. {
  44796. name: "Giga",
  44797. height: math.unit(7200, "miles")
  44798. },
  44799. ]
  44800. ))
  44801. characterMakers.push(() => makeCharacter(
  44802. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  44803. {
  44804. front: {
  44805. height: math.unit(6, "feet"),
  44806. weight: math.unit(150, "lb"),
  44807. name: "Front",
  44808. image: {
  44809. source: "./media/characters/jenny-cartwright/front.svg",
  44810. extra: 1384/1376,
  44811. bottom: 58/1442
  44812. }
  44813. },
  44814. },
  44815. [
  44816. {
  44817. name: "Normal",
  44818. height: math.unit(6 + 7/12, "feet"),
  44819. default: true
  44820. },
  44821. {
  44822. name: "Librarian",
  44823. height: math.unit(55, "feet")
  44824. },
  44825. {
  44826. name: "Sightseer",
  44827. height: math.unit(50, "miles")
  44828. },
  44829. {
  44830. name: "Giga",
  44831. height: math.unit(30000, "miles")
  44832. },
  44833. ]
  44834. ))
  44835. characterMakers.push(() => makeCharacter(
  44836. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  44837. {
  44838. nude: {
  44839. height: math.unit(8, "feet"),
  44840. weight: math.unit(225, "lb"),
  44841. name: "Nude",
  44842. image: {
  44843. source: "./media/characters/marvy/nude.svg",
  44844. extra: 1900/1683,
  44845. bottom: 89/1989
  44846. }
  44847. },
  44848. dressed: {
  44849. height: math.unit(8, "feet"),
  44850. weight: math.unit(225, "lb"),
  44851. name: "Dressed",
  44852. image: {
  44853. source: "./media/characters/marvy/dressed.svg",
  44854. extra: 1900/1683,
  44855. bottom: 89/1989
  44856. }
  44857. },
  44858. head: {
  44859. height: math.unit(2.85, "feet"),
  44860. name: "Head",
  44861. image: {
  44862. source: "./media/characters/marvy/head.svg"
  44863. }
  44864. },
  44865. },
  44866. [
  44867. {
  44868. name: "Normal",
  44869. height: math.unit(8, "feet"),
  44870. default: true
  44871. },
  44872. ]
  44873. ))
  44874. characterMakers.push(() => makeCharacter(
  44875. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  44876. {
  44877. front: {
  44878. height: math.unit(8, "feet"),
  44879. weight: math.unit(250, "lb"),
  44880. name: "Front",
  44881. image: {
  44882. source: "./media/characters/leah/front.svg",
  44883. extra: 1257/1149,
  44884. bottom: 109/1366
  44885. }
  44886. },
  44887. },
  44888. [
  44889. {
  44890. name: "Normal",
  44891. height: math.unit(8, "feet"),
  44892. default: true
  44893. },
  44894. {
  44895. name: "Minimacro",
  44896. height: math.unit(40, "feet")
  44897. },
  44898. {
  44899. name: "Macro",
  44900. height: math.unit(124, "feet")
  44901. },
  44902. {
  44903. name: "Megamacro",
  44904. height: math.unit(850, "feet")
  44905. },
  44906. ]
  44907. ))
  44908. characterMakers.push(() => makeCharacter(
  44909. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  44910. {
  44911. side: {
  44912. height: math.unit(13 + 6/12, "feet"),
  44913. weight: math.unit(3200, "lb"),
  44914. name: "Side",
  44915. image: {
  44916. source: "./media/characters/alvir/side.svg",
  44917. extra: 896/589,
  44918. bottom: 26/922
  44919. }
  44920. },
  44921. },
  44922. [
  44923. {
  44924. name: "Normal",
  44925. height: math.unit(13 + 6/12, "feet"),
  44926. default: true
  44927. },
  44928. ]
  44929. ))
  44930. characterMakers.push(() => makeCharacter(
  44931. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  44932. {
  44933. front: {
  44934. height: math.unit(5 + 4/12, "feet"),
  44935. weight: math.unit(236, "lb"),
  44936. name: "Front",
  44937. image: {
  44938. source: "./media/characters/zaina-khalil/front.svg",
  44939. extra: 1533/1485,
  44940. bottom: 94/1627
  44941. }
  44942. },
  44943. side: {
  44944. height: math.unit(5 + 4/12, "feet"),
  44945. weight: math.unit(236, "lb"),
  44946. name: "Side",
  44947. image: {
  44948. source: "./media/characters/zaina-khalil/side.svg",
  44949. extra: 1537/1498,
  44950. bottom: 66/1603
  44951. }
  44952. },
  44953. back: {
  44954. height: math.unit(5 + 4/12, "feet"),
  44955. weight: math.unit(236, "lb"),
  44956. name: "Back",
  44957. image: {
  44958. source: "./media/characters/zaina-khalil/back.svg",
  44959. extra: 1546/1494,
  44960. bottom: 89/1635
  44961. }
  44962. },
  44963. },
  44964. [
  44965. {
  44966. name: "Normal",
  44967. height: math.unit(5 + 4/12, "feet"),
  44968. default: true
  44969. },
  44970. ]
  44971. ))
  44972. characterMakers.push(() => makeCharacter(
  44973. { name: "Terry", species: ["husky"], tags: ["taur"] },
  44974. {
  44975. side: {
  44976. height: math.unit(12, "feet"),
  44977. weight: math.unit(4000, "lb"),
  44978. name: "Side",
  44979. image: {
  44980. source: "./media/characters/terry/side.svg",
  44981. extra: 1518/1439,
  44982. bottom: 149/1667
  44983. }
  44984. },
  44985. },
  44986. [
  44987. {
  44988. name: "Normal",
  44989. height: math.unit(12, "feet"),
  44990. default: true
  44991. },
  44992. ]
  44993. ))
  44994. characterMakers.push(() => makeCharacter(
  44995. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  44996. {
  44997. front: {
  44998. height: math.unit(12, "feet"),
  44999. weight: math.unit(1500, "lb"),
  45000. name: "Front",
  45001. image: {
  45002. source: "./media/characters/kahea/front.svg",
  45003. extra: 1722/1617,
  45004. bottom: 179/1901
  45005. }
  45006. },
  45007. },
  45008. [
  45009. {
  45010. name: "Normal",
  45011. height: math.unit(12, "feet"),
  45012. default: true
  45013. },
  45014. ]
  45015. ))
  45016. //characters
  45017. function makeCharacters() {
  45018. const results = [];
  45019. characterMakers.forEach(character => {
  45020. results.push(character());
  45021. });
  45022. return results;
  45023. }