less copy protection, more size visualization
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
 
 
 

51845 řádky
1.3 MiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes, forms) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. form: value.form,
  16. name: value.name,
  17. info: value.info,
  18. rename: value.rename,
  19. default: value.default
  20. }
  21. if (value.weight) {
  22. views[key].attributes.weight = {
  23. name: "Mass",
  24. power: 3,
  25. type: "mass",
  26. base: value.weight
  27. };
  28. }
  29. if (value.volume) {
  30. views[key].attributes.volume = {
  31. name: "Volume",
  32. power: 3,
  33. type: "volume",
  34. base: value.volume
  35. };
  36. }
  37. if (value.capacity) {
  38. views[key].attributes.capacity = {
  39. name: "Capacity",
  40. power: 3,
  41. type: "volume",
  42. base: value.capacity
  43. }
  44. }
  45. if (value.preyCapacity) {
  46. views[key].attributes.preyCapacity = {
  47. name: "Prey Capacity",
  48. power: 3,
  49. type: "volume",
  50. base: value.preyCapacity
  51. }
  52. }
  53. if (value.energyNeed) {
  54. views[key].attributes.capacity = {
  55. name: "Food Intake",
  56. power: 3,
  57. type: "energy",
  58. base: value.energyNeed
  59. }
  60. }
  61. if (value.extraAttributes) {
  62. Object.entries(value.extraAttributes).forEach(([attrKey, attrValue]) => {
  63. views[key].attributes[attrKey] = attrValue
  64. })
  65. }
  66. });
  67. return createEntityMaker(info, views, defaultSizes, forms);
  68. }
  69. const speciesData = {
  70. animal: {
  71. name: "Animal"
  72. },
  73. dog: {
  74. name: "Dog",
  75. parents: [
  76. "canine"
  77. ]
  78. },
  79. canine: {
  80. name: "Canine",
  81. parents: [
  82. "mammal"
  83. ]
  84. },
  85. crux: {
  86. name: "Crux",
  87. parents: [
  88. "mammal"
  89. ]
  90. },
  91. mammal: {
  92. name: "Mammal",
  93. parents: [
  94. "animal"
  95. ]
  96. },
  97. "rough-collie": {
  98. name: "Rough Collie",
  99. parents: [
  100. "dog"
  101. ]
  102. },
  103. dragon: {
  104. name: "Dragon",
  105. parents: [
  106. "reptile"
  107. ]
  108. },
  109. reptile: {
  110. name: "Reptile",
  111. parents: [
  112. "animal"
  113. ]
  114. },
  115. woodpecker: {
  116. name: "Woodpecker",
  117. parents: [
  118. "avian"
  119. ]
  120. },
  121. avian: {
  122. name: "Avian",
  123. parents: [
  124. "animal"
  125. ]
  126. },
  127. kitsune: {
  128. name: "Kitsune",
  129. parents: [
  130. "fox"
  131. ]
  132. },
  133. fox: {
  134. name: "Fox",
  135. parents: [
  136. "mammal"
  137. ]
  138. },
  139. pokemon: {
  140. name: "Pokemon",
  141. },
  142. tiger: {
  143. name: "Tiger",
  144. parents: [
  145. "cat"
  146. ]
  147. },
  148. cat: {
  149. name: "Cat",
  150. parents: [
  151. "feliform"
  152. ]
  153. },
  154. "blue-jay": {
  155. name: "Blue Jay",
  156. parents: [
  157. "avian"
  158. ]
  159. },
  160. wolf: {
  161. name: "Wolf",
  162. parents: [
  163. "mammal"
  164. ]
  165. },
  166. coyote: {
  167. name: "Coyote",
  168. parents: [
  169. "mammal"
  170. ]
  171. },
  172. raccoon: {
  173. name: "Raccoon",
  174. parents: [
  175. "mammal"
  176. ]
  177. },
  178. weasel: {
  179. name: "Weasel",
  180. parents: [
  181. "mustelid"
  182. ]
  183. },
  184. "red-panda": {
  185. name: "Red Panda",
  186. parents: [
  187. "mammal"
  188. ]
  189. },
  190. dolphin: {
  191. name: "Dolphin",
  192. parents: [
  193. "mammal"
  194. ]
  195. },
  196. "african-wild-dog": {
  197. name: "African Wild Dog",
  198. parents: [
  199. "canine"
  200. ]
  201. },
  202. "hyena": {
  203. name: "Hyena",
  204. parents: [
  205. "feliform"
  206. ]
  207. },
  208. "carbuncle": {
  209. name: "Carbuncle",
  210. parents: [
  211. "animal"
  212. ]
  213. },
  214. bat: {
  215. name: "Bat",
  216. parents: [
  217. "mammal"
  218. ]
  219. },
  220. "leaf-nosed-bat": {
  221. name: "Leaf-Nosed Bat",
  222. parents: [
  223. "bat"
  224. ]
  225. },
  226. "fish": {
  227. name: "Fish",
  228. parents: [
  229. "animal"
  230. ]
  231. },
  232. "ram": {
  233. name: "Ram",
  234. parents: [
  235. "mammal"
  236. ]
  237. },
  238. "demon": {
  239. name: "Demon",
  240. parents: [
  241. "supernatural"
  242. ]
  243. },
  244. "cougar": {
  245. name: "Cougar",
  246. parents: [
  247. "cat"
  248. ]
  249. },
  250. "goat": {
  251. name: "Goat",
  252. parents: [
  253. "mammal"
  254. ]
  255. },
  256. "lion": {
  257. name: "Lion",
  258. parents: [
  259. "cat"
  260. ]
  261. },
  262. "harpy-eager": {
  263. name: "Harpy Eagle",
  264. parents: [
  265. "avian"
  266. ]
  267. },
  268. "deer": {
  269. name: "Deer",
  270. parents: [
  271. "mammal"
  272. ]
  273. },
  274. "phoenix": {
  275. name: "Phoenix",
  276. parents: [
  277. "avian"
  278. ]
  279. },
  280. "aeromorph": {
  281. name: "Aeromorph",
  282. parents: [
  283. "machine"
  284. ]
  285. },
  286. "machine": {
  287. name: "Machine",
  288. },
  289. "android": {
  290. name: "Android",
  291. parents: [
  292. "machine"
  293. ]
  294. },
  295. "jackal": {
  296. name: "Jackal",
  297. parents: [
  298. "canine"
  299. ]
  300. },
  301. "corvid": {
  302. name: "Corvid",
  303. parents: [
  304. "avian"
  305. ]
  306. },
  307. "pharaoh-hound": {
  308. name: "Pharaoh Hound",
  309. parents: [
  310. "dog"
  311. ]
  312. },
  313. "skunk": {
  314. name: "Skunk",
  315. parents: [
  316. "mammal"
  317. ]
  318. },
  319. "shark": {
  320. name: "Shark",
  321. parents: [
  322. "fish"
  323. ]
  324. },
  325. "black-panther": {
  326. name: "Black Panther",
  327. parents: [
  328. "cat"
  329. ]
  330. },
  331. "umbra": {
  332. name: "Umbra",
  333. parents: [
  334. "animal"
  335. ]
  336. },
  337. "raven": {
  338. name: "Raven",
  339. parents: [
  340. "corvid"
  341. ]
  342. },
  343. "snow-leopard": {
  344. name: "Snow Leopard",
  345. parents: [
  346. "cat"
  347. ]
  348. },
  349. "barbary-lion": {
  350. name: "Barbary Lion",
  351. parents: [
  352. "lion"
  353. ]
  354. },
  355. "dra'gal": {
  356. name: "Dra'Gal",
  357. parents: [
  358. "mammal"
  359. ]
  360. },
  361. "german-shepherd": {
  362. name: "German Shepherd",
  363. parents: [
  364. "dog"
  365. ]
  366. },
  367. "bayleef": {
  368. name: "Bayleef",
  369. parents: [
  370. "pokemon",
  371. "plant",
  372. "animal"
  373. ]
  374. },
  375. "mouse": {
  376. name: "Mouse",
  377. parents: [
  378. "rodent"
  379. ]
  380. },
  381. "rat": {
  382. name: "Rat",
  383. parents: [
  384. "mammal"
  385. ]
  386. },
  387. "hoshiko-beast": {
  388. name: "Hoshiko Beast",
  389. parents: ["animal"]
  390. },
  391. "snow-jugani": {
  392. name: "Snow Jugani",
  393. parents: ["cat"]
  394. },
  395. "patamon": {
  396. name: "Patamon",
  397. parents: ["digimon", "guinea-pig"]
  398. },
  399. "digimon": {
  400. name: "Digimon",
  401. },
  402. "jugani": {
  403. name: "Jugani",
  404. parents: ["cat"]
  405. },
  406. "luxray": {
  407. name: "Luxray",
  408. parents: ["pokemon", "lion"]
  409. },
  410. "mech": {
  411. name: "Mech",
  412. parents: ["machine"]
  413. },
  414. "zoid": {
  415. name: "Zoid",
  416. parents: ["mech"]
  417. },
  418. "monster": {
  419. name: "Monster",
  420. parents: ["animal"]
  421. },
  422. "foo-dog": {
  423. name: "Foo Dog",
  424. parents: ["mammal"]
  425. },
  426. "elephant": {
  427. name: "Elephant",
  428. parents: ["mammal"]
  429. },
  430. "eagle": {
  431. name: "Eagle",
  432. parents: ["avian"]
  433. },
  434. "cow": {
  435. name: "Cow",
  436. parents: ["mammal"]
  437. },
  438. "crocodile": {
  439. name: "Crocodile",
  440. parents: ["reptile"]
  441. },
  442. "borzoi": {
  443. name: "Borzoi",
  444. parents: ["dog"]
  445. },
  446. "snake": {
  447. name: "Snake",
  448. parents: ["reptile"]
  449. },
  450. "horned-bush-viper": {
  451. name: "Horned Bush Viper",
  452. parents: ["viper"]
  453. },
  454. "cobra": {
  455. name: "Cobra",
  456. parents: ["snake"]
  457. },
  458. "harpy-eagle": {
  459. name: "Harpy Eagle",
  460. parents: ["eagle"]
  461. },
  462. "raptor": {
  463. name: "Raptor",
  464. parents: ["dinosaur"]
  465. },
  466. "dinosaur": {
  467. name: "Dinosaur",
  468. parents: ["reptile"]
  469. },
  470. "veilhound": {
  471. name: "Veilhound",
  472. parents: ["hellhound"]
  473. },
  474. "hellhound": {
  475. name: "Hellhound",
  476. parents: ["canine", "demon"]
  477. },
  478. "insect": {
  479. name: "Insect",
  480. parents: ["animal"]
  481. },
  482. "beetle": {
  483. name: "Beetle",
  484. parents: ["insect"]
  485. },
  486. "moth": {
  487. name: "Moth",
  488. parents: ["insect"]
  489. },
  490. "eastern-dragon": {
  491. name: "Eastern Dragon",
  492. parents: ["dragon"]
  493. },
  494. "jaguar": {
  495. name: "Jaguar",
  496. parents: ["cat"]
  497. },
  498. "horse": {
  499. name: "Horse",
  500. parents: ["mammal"]
  501. },
  502. "sergal": {
  503. name: "Sergal",
  504. parents: ["mammal", "avian", "vilous"]
  505. },
  506. "gryphon": {
  507. name: "Gryphon",
  508. parents: ["lion", "eagle"]
  509. },
  510. "robot": {
  511. name: "Robot",
  512. parents: ["machine"]
  513. },
  514. "medihound": {
  515. name: "Medihound",
  516. parents: ["robot", "dog"]
  517. },
  518. "sylveon": {
  519. name: "Sylveon",
  520. parents: ["pokemon"]
  521. },
  522. "catgirl": {
  523. name: "Catgirl",
  524. parents: ["mammal"]
  525. },
  526. "cowgirl": {
  527. name: "Cowgirl",
  528. parents: ["mammal"]
  529. },
  530. "pony": {
  531. name: "Pony",
  532. parents: ["horse"]
  533. },
  534. "rabbit": {
  535. name: "Rabbit",
  536. parents: ["leporidae"]
  537. },
  538. "fennec-fox": {
  539. name: "Fennec Fox",
  540. parents: ["fox"]
  541. },
  542. "azodian": {
  543. name: "Azodian",
  544. parents: ["mouse"]
  545. },
  546. "shiba-inu": {
  547. name: "Shiba Inu",
  548. parents: ["dog"]
  549. },
  550. "changeling": {
  551. name: "Changeling",
  552. parents: ["insect"]
  553. },
  554. "cheetah": {
  555. name: "Cheetah",
  556. parents: ["cat"]
  557. },
  558. "golden-jackal": {
  559. name: "Golden Jackal",
  560. parents: ["jackal"]
  561. },
  562. "manectric": {
  563. name: "Manectric",
  564. parents: ["pokemon", "wolf"]
  565. },
  566. "rat": {
  567. name: "Rat",
  568. parents: ["rodent"]
  569. },
  570. "rodent": {
  571. name: "Rodent",
  572. parents: ["mammal"]
  573. },
  574. "octocoon": {
  575. name: "Octocoon",
  576. parents: ["raccoon", "octopus"]
  577. },
  578. "octopus": {
  579. name: "Octopus",
  580. parents: ["fish"]
  581. },
  582. "werewolf": {
  583. name: "Werewolf",
  584. parents: ["wolf", "werebeast"]
  585. },
  586. "werebeast": {
  587. name: "Werebeast",
  588. parents: ["monster"]
  589. },
  590. "meerkat": {
  591. name: "Meerkat",
  592. parents: ["mammal"]
  593. },
  594. "human": {
  595. name: "Human",
  596. parents: ["mammal"]
  597. },
  598. "geth": {
  599. name: "Geth",
  600. parents: ["android"]
  601. },
  602. "husky": {
  603. name: "Husky",
  604. parents: ["dog"]
  605. },
  606. "long-eared-bat": {
  607. name: "Long Eared Bat",
  608. parents: ["bat"]
  609. },
  610. "lizard": {
  611. name: "Lizard",
  612. parents: ["reptile"]
  613. },
  614. "salamander": {
  615. name: "Salamander",
  616. parents: ["lizard"]
  617. },
  618. "chameleon": {
  619. name: "Chameleon",
  620. parents: ["lizard"]
  621. },
  622. "gecko": {
  623. name: "Gecko",
  624. parents: ["lizard"]
  625. },
  626. "kobold": {
  627. name: "Kobold",
  628. parents: ["reptile"]
  629. },
  630. "charizard": {
  631. name: "Charizard",
  632. parents: ["pokemon", "dragon"]
  633. },
  634. "lugia": {
  635. name: "Lugia",
  636. parents: ["pokemon", "avian"]
  637. },
  638. "cerberus": {
  639. name: "Cerberus",
  640. parents: ["dog"]
  641. },
  642. "tyrantrum": {
  643. name: "Tyrantrum",
  644. parents: ["pokemon"]
  645. },
  646. "lemur": {
  647. name: "Lemur",
  648. parents: ["mammal"]
  649. },
  650. "kelpie": {
  651. name: "Kelpie",
  652. parents: ["horse", "monster"]
  653. },
  654. "labrador": {
  655. name: "Labrador",
  656. parents: ["dog"]
  657. },
  658. "sylveon": {
  659. name: "Sylveon",
  660. parents: ["eeveelution"]
  661. },
  662. "eeveelution": {
  663. name: "Eeveelution",
  664. parents: ["pokemon", "cat"]
  665. },
  666. "polar-bear": {
  667. name: "Polar Bear",
  668. parents: ["bear"]
  669. },
  670. "bear": {
  671. name: "Bear",
  672. parents: ["mammal"]
  673. },
  674. "absol": {
  675. name: "Absol",
  676. parents: ["pokemon", "cat"]
  677. },
  678. "wolver": {
  679. name: "Wolver",
  680. parents: ["mammal"]
  681. },
  682. "rottweiler": {
  683. name: "Rottweiler",
  684. parents: ["dog"]
  685. },
  686. "zebra": {
  687. name: "Zebra",
  688. parents: ["horse"]
  689. },
  690. "yoshi": {
  691. name: "Yoshi",
  692. parents: ["lizard"]
  693. },
  694. "lynx": {
  695. name: "Lynx",
  696. parents: ["cat"]
  697. },
  698. "unknown": {
  699. name: "Unknown",
  700. parents: []
  701. },
  702. "thylacine": {
  703. name: "Thylacine",
  704. parents: ["mammal"]
  705. },
  706. "gabumon": {
  707. name: "Gabumon",
  708. parents: ["digimon"]
  709. },
  710. "border-collie": {
  711. name: "Border Collie",
  712. parents: ["dog"]
  713. },
  714. "imp": {
  715. name: "Imp",
  716. parents: ["demon"]
  717. },
  718. "kangaroo": {
  719. name: "Kangaroo",
  720. parents: ["marsupial"]
  721. },
  722. "renamon": {
  723. name: "Renamon",
  724. parents: ["digimon", "fox"]
  725. },
  726. "candy-orca-dragon": {
  727. name: "Candy Orca Dragon",
  728. parents: ["fish", "dragon", "candy"]
  729. },
  730. "sabertooth-tiger": {
  731. name: "Sabertooth Tiger",
  732. parents: ["cat"]
  733. },
  734. "espurr": {
  735. name: "Espurr",
  736. parents: ["pokemon", "cat"]
  737. },
  738. "otter": {
  739. name: "Otter",
  740. parents: ["mustelid"]
  741. },
  742. "elemental": {
  743. name: "Elemental",
  744. parents: ["mammal"]
  745. },
  746. "mew": {
  747. name: "Mew",
  748. parents: ["pokemon"]
  749. },
  750. "goodra": {
  751. name: "Goodra",
  752. parents: ["pokemon"]
  753. },
  754. "fairy": {
  755. name: "Fairy",
  756. parents: ["magical"]
  757. },
  758. "typhlosion": {
  759. name: "Typhlosion",
  760. parents: ["pokemon"]
  761. },
  762. "magical": {
  763. name: "Magical",
  764. parents: []
  765. },
  766. "xenomorph": {
  767. name: "Xenomorph",
  768. parents: ["monster", "alien"]
  769. },
  770. "charr": {
  771. name: "Charr",
  772. parents: ["cat"]
  773. },
  774. "siberian-husky": {
  775. name: "Siberian Husky",
  776. parents: ["husky"]
  777. },
  778. "alligator": {
  779. name: "Alligator",
  780. parents: ["reptile"]
  781. },
  782. "bernese-mountain-dog": {
  783. name: "Bernese Mountain Dog",
  784. parents: ["dog"]
  785. },
  786. "reshiram": {
  787. name: "Reshiram",
  788. parents: ["pokemon", "dragon"]
  789. },
  790. "grizzly-bear": {
  791. name: "Grizzly Bear",
  792. parents: ["bear"]
  793. },
  794. "water-monitor": {
  795. name: "Water Monitor",
  796. parents: ["lizard"]
  797. },
  798. "banchofossa": {
  799. name: "Banchofossa",
  800. parents: ["mammal"]
  801. },
  802. "kirin": {
  803. name: "Kirin",
  804. parents: ["monster"]
  805. },
  806. "quilava": {
  807. name: "Quilava",
  808. parents: ["pokemon"]
  809. },
  810. "seviper": {
  811. name: "Seviper",
  812. parents: ["pokemon", "viper"]
  813. },
  814. "flying-fox": {
  815. name: "Flying Fox",
  816. parents: ["bat"]
  817. },
  818. "keynain": {
  819. name: "Keynain",
  820. parents: ["avian"]
  821. },
  822. "lucario": {
  823. name: "Lucario",
  824. parents: ["pokemon", "jackal"]
  825. },
  826. "siamese-cat": {
  827. name: "Siamese Cat",
  828. parents: ["cat"]
  829. },
  830. "spider": {
  831. name: "Spider",
  832. parents: ["insect"]
  833. },
  834. "samurott": {
  835. name: "Samurott",
  836. parents: ["pokemon", "otter"]
  837. },
  838. "megalodon": {
  839. name: "Megalodon",
  840. parents: ["shark"]
  841. },
  842. "unicorn": {
  843. name: "Unicorn",
  844. parents: ["horse"]
  845. },
  846. "greninja": {
  847. name: "Greninja",
  848. parents: ["pokemon", "frog"]
  849. },
  850. "water-dragon": {
  851. name: "Water Dragon",
  852. parents: ["dragon"]
  853. },
  854. "cross-fox": {
  855. name: "Cross Fox",
  856. parents: ["fox"]
  857. },
  858. "synth": {
  859. name: "Synth",
  860. parents: ["machine"]
  861. },
  862. "construct": {
  863. name: "Construct",
  864. parents: []
  865. },
  866. "mexican-wolf": {
  867. name: "Mexican Wolf",
  868. parents: ["wolf"]
  869. },
  870. "leopard": {
  871. name: "Leopard",
  872. parents: ["cat"]
  873. },
  874. "pig": {
  875. name: "Pig",
  876. parents: ["mammal"]
  877. },
  878. "ampharos": {
  879. name: "Ampharos",
  880. parents: ["pokemon", "sheep"]
  881. },
  882. "orca": {
  883. name: "Orca",
  884. parents: ["fish"]
  885. },
  886. "lycanroc": {
  887. name: "Lycanroc",
  888. parents: ["pokemon", "wolf"]
  889. },
  890. "surkanu": {
  891. name: "Surkanu",
  892. parents: ["monster"]
  893. },
  894. "seal": {
  895. name: "Seal",
  896. parents: ["mammal"]
  897. },
  898. "keldeo": {
  899. name: "Keldeo",
  900. parents: ["pokemon"]
  901. },
  902. "great-dane": {
  903. name: "Great Dane",
  904. parents: ["dog"]
  905. },
  906. "black-backed-jackal": {
  907. name: "Black Backed Jackal",
  908. parents: ["jackal"]
  909. },
  910. "sheep": {
  911. name: "Sheep",
  912. parents: ["mammal"]
  913. },
  914. "leopard-seal": {
  915. name: "Leopard Seal",
  916. parents: ["seal"]
  917. },
  918. "zoroark": {
  919. name: "Zoroark",
  920. parents: ["pokemon", "fox"]
  921. },
  922. "maned-wolf": {
  923. name: "Maned Wolf",
  924. parents: ["canine"]
  925. },
  926. "dracha": {
  927. name: "Dracha",
  928. parents: ["dragon"]
  929. },
  930. "wolxi": {
  931. name: "Wolxi",
  932. parents: ["mammal", "alien"]
  933. },
  934. "dratini": {
  935. name: "Dratini",
  936. parents: ["pokemon", "dragon"]
  937. },
  938. "skaven": {
  939. name: "Skaven",
  940. parents: ["rat"]
  941. },
  942. "mongoose": {
  943. name: "Mongoose",
  944. parents: ["mammal"]
  945. },
  946. "lopunny": {
  947. name: "Lopunny",
  948. parents: ["pokemon", "rabbit"]
  949. },
  950. "feraligatr": {
  951. name: "Feraligatr",
  952. parents: ["pokemon", "alligator"]
  953. },
  954. "houndoom": {
  955. name: "Houndoom",
  956. parents: ["pokemon", "dog"]
  957. },
  958. "protogen": {
  959. name: "Protogen",
  960. parents: ["machine"]
  961. },
  962. "saint-bernard": {
  963. name: "Saint Bernard",
  964. parents: ["dog"]
  965. },
  966. "crow": {
  967. name: "Crow",
  968. parents: ["corvid"]
  969. },
  970. "delphox": {
  971. name: "Delphox",
  972. parents: ["pokemon", "fox"]
  973. },
  974. "moose": {
  975. name: "Moose",
  976. parents: ["mammal"]
  977. },
  978. "joraxian": {
  979. name: "Joraxian",
  980. parents: ["monster", "canine", "demon"]
  981. },
  982. "nimbat": {
  983. name: "Nimbat",
  984. parents: ["mammal"]
  985. },
  986. "aardwolf": {
  987. name: "Aardwolf",
  988. parents: ["canine"]
  989. },
  990. "fluudrani": {
  991. name: "Fluudrani",
  992. parents: ["animal"]
  993. },
  994. "arcanine": {
  995. name: "Arcanine",
  996. parents: ["pokemon", "dog"]
  997. },
  998. "inteleon": {
  999. name: "Inteleon",
  1000. parents: ["pokemon", "fish"]
  1001. },
  1002. "ninetales": {
  1003. name: "Ninetales",
  1004. parents: ["pokemon", "kitsune"]
  1005. },
  1006. "tigrex": {
  1007. name: "Tigrex",
  1008. parents: ["tiger"]
  1009. },
  1010. "zorua": {
  1011. name: "Zorua",
  1012. parents: ["pokemon", "fox"]
  1013. },
  1014. "vulpix": {
  1015. name: "Vulpix",
  1016. parents: ["pokemon", "fox"]
  1017. },
  1018. "barghest": {
  1019. name: "Barghest",
  1020. parents: ["monster"]
  1021. },
  1022. "gray-wolf": {
  1023. name: "Gray Wolf",
  1024. parents: ["wolf"]
  1025. },
  1026. "ruppells-fox": {
  1027. name: "Rüppell's Fox",
  1028. parents: ["fox"]
  1029. },
  1030. "bull-terrier": {
  1031. name: "Bull Terrier",
  1032. parents: ["dog"]
  1033. },
  1034. "european-honey-buzzard": {
  1035. name: "European Honey Buzzard",
  1036. parents: ["avian"]
  1037. },
  1038. "t-rex": {
  1039. name: "Tyrannosaurus Rex",
  1040. parents: ["dinosaur"]
  1041. },
  1042. "mactarian": {
  1043. name: "Mactarian",
  1044. parents: ["shark", "monster"]
  1045. },
  1046. "mewtwo-y": {
  1047. name: "Mewtwo Y",
  1048. parents: ["mewtwo"]
  1049. },
  1050. "mewtwo": {
  1051. name: "Mewtwo",
  1052. parents: ["pokemon"]
  1053. },
  1054. "eevee": {
  1055. name: "Eevee",
  1056. parents: ["eeveelution"]
  1057. },
  1058. "mienshao": {
  1059. name: "Mienshao",
  1060. parents: ["pokemon"]
  1061. },
  1062. "sugar-glider": {
  1063. name: "Sugar Glider",
  1064. parents: ["opossum"]
  1065. },
  1066. "spectral-bat": {
  1067. name: "Spectral Bat",
  1068. parents: ["bat"]
  1069. },
  1070. "scolipede": {
  1071. name: "Scolipede",
  1072. parents: ["pokemon", "insect"]
  1073. },
  1074. "jackalope": {
  1075. name: "Jackalope",
  1076. parents: ["rabbit", "antelope"]
  1077. },
  1078. "caracal": {
  1079. name: "Caracal",
  1080. parents: ["cat"]
  1081. },
  1082. "stoat": {
  1083. name: "Stoat",
  1084. parents: ["mammal"]
  1085. },
  1086. "african-golden-cat": {
  1087. name: "African Golden Cat",
  1088. parents: ["cat"]
  1089. },
  1090. "gigantosaurus": {
  1091. name: "Gigantosaurus",
  1092. parents: ["dinosaur"]
  1093. },
  1094. "zorgoia": {
  1095. name: "Zorgoia",
  1096. parents: ["mammal"]
  1097. },
  1098. "monitor-lizard": {
  1099. name: "Monitor Lizard",
  1100. parents: ["lizard"]
  1101. },
  1102. "ziralkia": {
  1103. name: "Ziralkia",
  1104. parents: ["mammal"]
  1105. },
  1106. "kiiasi": {
  1107. name: "Kiiasi",
  1108. parents: ["animal"]
  1109. },
  1110. "synx": {
  1111. name: "Synx",
  1112. parents: ["monster"]
  1113. },
  1114. "panther": {
  1115. name: "Panther",
  1116. parents: ["cat"]
  1117. },
  1118. "azumarill": {
  1119. name: "Azumarill",
  1120. parents: ["pokemon"]
  1121. },
  1122. "river-snaptail": {
  1123. name: "River Snaptail",
  1124. parents: ["otter", "crocodile"]
  1125. },
  1126. "great-blue-heron": {
  1127. name: "Great Blue Heron",
  1128. parents: ["avian"]
  1129. },
  1130. "smeargle": {
  1131. name: "Smeargle",
  1132. parents: ["pokemon"]
  1133. },
  1134. "vendeilen": {
  1135. name: "Vendeilen",
  1136. parents: ["monster"]
  1137. },
  1138. "ventura": {
  1139. name: "Ventura",
  1140. parents: ["canine"]
  1141. },
  1142. "clouded-leopard": {
  1143. name: "Clouded Leopard",
  1144. parents: ["leopard"]
  1145. },
  1146. "argonian": {
  1147. name: "Argonian",
  1148. parents: ["lizard"]
  1149. },
  1150. "salazzle": {
  1151. name: "Salazzle",
  1152. parents: ["pokemon", "lizard"]
  1153. },
  1154. "je-stoff-drachen": {
  1155. name: "Je-Stoff Drachen",
  1156. parents: ["dragon"]
  1157. },
  1158. "finnish-spitz-dog": {
  1159. name: "Finnish Spitz Dog",
  1160. parents: ["dog"]
  1161. },
  1162. "gray-fox": {
  1163. name: "Gray Fox",
  1164. parents: ["fox"]
  1165. },
  1166. "opossum": {
  1167. name: "Opossum",
  1168. parents: ["mammal"]
  1169. },
  1170. "antelope": {
  1171. name: "Antelope",
  1172. parents: ["mammal"]
  1173. },
  1174. "weavile": {
  1175. name: "Weavile",
  1176. parents: ["pokemon"]
  1177. },
  1178. "pikachu": {
  1179. name: "Pikachu",
  1180. parents: ["pokemon", "mouse"]
  1181. },
  1182. "grovyle": {
  1183. name: "Grovyle",
  1184. parents: ["pokemon", "plant"]
  1185. },
  1186. "sthara": {
  1187. name: "Sthara",
  1188. parents: ["snow-leopard", "reptile"]
  1189. },
  1190. "star-warrior": {
  1191. name: "Star Warrior",
  1192. parents: ["magical"]
  1193. },
  1194. "dragonoid": {
  1195. name: "Dragonoid",
  1196. parents: ["dragon"]
  1197. },
  1198. "suicune": {
  1199. name: "Suicune",
  1200. parents: ["pokemon"]
  1201. },
  1202. "vole": {
  1203. name: "Vole",
  1204. parents: ["mammal"]
  1205. },
  1206. "blaziken": {
  1207. name: "Blaziken",
  1208. parents: ["pokemon", "avian"]
  1209. },
  1210. "buizel": {
  1211. name: "Buizel",
  1212. parents: ["pokemon", "fish"]
  1213. },
  1214. "floatzel": {
  1215. name: "Floatzel",
  1216. parents: ["pokemon", "fish"]
  1217. },
  1218. "umok": {
  1219. name: "Umok",
  1220. parents: ["avian"]
  1221. },
  1222. "sea-monster": {
  1223. name: "Sea Monster",
  1224. parents: ["monster", "fish"]
  1225. },
  1226. "egyptian-vulture": {
  1227. name: "Egyptian Vulture",
  1228. parents: ["avian"]
  1229. },
  1230. "doberman": {
  1231. name: "Doberman",
  1232. parents: ["dog"]
  1233. },
  1234. "zangoose": {
  1235. name: "Zangoose",
  1236. parents: ["pokemon", "mongoose"]
  1237. },
  1238. "mongoose": {
  1239. name: "Mongoose",
  1240. parents: ["mammal"]
  1241. },
  1242. "wickerbeast": {
  1243. name: "Wickerbeast",
  1244. parents: ["monster"]
  1245. },
  1246. "zenari": {
  1247. name: "Zenari",
  1248. parents: ["lizard"]
  1249. },
  1250. "plant": {
  1251. name: "Plant",
  1252. parents: []
  1253. },
  1254. "raskatox": {
  1255. name: "Raskatox",
  1256. parents: ["raccoon", "skunk", "cat", "fox"]
  1257. },
  1258. "mikromare": {
  1259. name: "mikromare",
  1260. parents: ["alien"]
  1261. },
  1262. "alien": {
  1263. name: "Alien",
  1264. parents: ["animal"]
  1265. },
  1266. "deity": {
  1267. name: "Deity",
  1268. parents: []
  1269. },
  1270. "skarlan": {
  1271. name: "Skarlan",
  1272. parents: ["slug", "dragon"]
  1273. },
  1274. "slug": {
  1275. name: "Slug",
  1276. parents: ["mollusk"]
  1277. },
  1278. "mollusk": {
  1279. name: "Mollusk",
  1280. parents: ["animal"]
  1281. },
  1282. "chimera": {
  1283. name: "Chimera",
  1284. parents: ["monster"]
  1285. },
  1286. "gestalt": {
  1287. name: "Gestalt",
  1288. parents: ["construct"]
  1289. },
  1290. "mimic": {
  1291. name: "Mimic",
  1292. parents: ["monster"]
  1293. },
  1294. "calico-rat": {
  1295. name: "Calico Rat",
  1296. parents: ["rat"]
  1297. },
  1298. "panda": {
  1299. name: "Panda",
  1300. parents: ["mammal"]
  1301. },
  1302. "oni": {
  1303. name: "Oni",
  1304. parents: ["monster"]
  1305. },
  1306. "pegasus": {
  1307. name: "Pegasus",
  1308. parents: ["horse"]
  1309. },
  1310. "vulpera": {
  1311. name: "Vulpera",
  1312. parents: ["fennec-fox"]
  1313. },
  1314. "ceratosaurus": {
  1315. name: "Ceratosaurus",
  1316. parents: ["dinosaur"]
  1317. },
  1318. "nykur": {
  1319. name: "Nykur",
  1320. parents: ["horse", "monster"]
  1321. },
  1322. "giraffe": {
  1323. name: "Giraffe",
  1324. parents: ["mammal"]
  1325. },
  1326. "tauren": {
  1327. name: "Tauren",
  1328. parents: ["cow"]
  1329. },
  1330. "draconi": {
  1331. name: "Draconi",
  1332. parents: ["alien", "cat", "cyborg"]
  1333. },
  1334. "dire-wolf": {
  1335. name: "Dire Wolf",
  1336. parents: ["wolf"]
  1337. },
  1338. "ferromorph": {
  1339. name: "Ferromorph",
  1340. parents: ["construct"]
  1341. },
  1342. "meowth": {
  1343. name: "Meowth",
  1344. parents: ["cat", "pokemon"]
  1345. },
  1346. "pavodragon": {
  1347. name: "Pavodragon",
  1348. parents: ["dragon"]
  1349. },
  1350. "aaltranae": {
  1351. name: "Aaltranae",
  1352. parents: ["dragon"]
  1353. },
  1354. "cyborg": {
  1355. name: "Cyborg",
  1356. parents: ["machine"]
  1357. },
  1358. "draptor": {
  1359. name: "Draptor",
  1360. parents: ["dragon"]
  1361. },
  1362. "candy": {
  1363. name: "Candy",
  1364. parents: []
  1365. },
  1366. "drenath": {
  1367. name: "Drenath",
  1368. parents: ["dragon", "snake", "rabbit"]
  1369. },
  1370. "coyju": {
  1371. name: "Coyju",
  1372. parents: ["coyote", "kaiju"]
  1373. },
  1374. "kaiju": {
  1375. name: "Kaiju",
  1376. parents: ["monster"]
  1377. },
  1378. "nickit": {
  1379. name: "Nickit",
  1380. parents: ["pokemon", "cat"]
  1381. },
  1382. "lopunny": {
  1383. name: "Lopunny",
  1384. parents: ["pokemon", "rabbit"]
  1385. },
  1386. "korean-jindo-dog": {
  1387. name: "Korean Jindo Dog",
  1388. parents: ["dog"]
  1389. },
  1390. "naga": {
  1391. name: "Naga",
  1392. parents: ["snake", "monster"]
  1393. },
  1394. "undead": {
  1395. name: "Undead",
  1396. parents: ["monster"]
  1397. },
  1398. "whale": {
  1399. name: "Whale",
  1400. parents: ["fish"]
  1401. },
  1402. "gelato-bee": {
  1403. name: "Gelato Bee",
  1404. parents: ["bee"]
  1405. },
  1406. "bee": {
  1407. name: "Bee",
  1408. parents: ["insect"]
  1409. },
  1410. "gardevoir": {
  1411. name: "Gardevoir",
  1412. parents: ["pokemon"]
  1413. },
  1414. "ant": {
  1415. name: "Ant",
  1416. parents: ["insect"]
  1417. },
  1418. "frog": {
  1419. name: "Frog",
  1420. parents: ["amphibian"]
  1421. },
  1422. "amphibian": {
  1423. name: "Amphibian",
  1424. parents: ["animal"]
  1425. },
  1426. "pangolin": {
  1427. name: "Pangolin",
  1428. parents: ["mammal"]
  1429. },
  1430. "uragi'viidorn": {
  1431. name: "Uragi'viidorn",
  1432. parents: ["avian", "bear"]
  1433. },
  1434. "gryphdelphais": {
  1435. name: "Gryphdelphais",
  1436. parents: ["dolphin", "gryphon"]
  1437. },
  1438. "plush": {
  1439. name: "Plush",
  1440. parents: ["construct"]
  1441. },
  1442. "draiger": {
  1443. name: "Draiger",
  1444. parents: ["dragon","tiger"]
  1445. },
  1446. "foxsky": {
  1447. name: "Foxsky",
  1448. parents: ["fox", "husky"]
  1449. },
  1450. "umbreon": {
  1451. name: "Umbreon",
  1452. parents: ["eeveelution"]
  1453. },
  1454. "slime-dragon": {
  1455. name: "Slime Dragon",
  1456. parents: ["dragon", "goo"]
  1457. },
  1458. "enderman": {
  1459. name: "Enderman",
  1460. parents: ["monster"]
  1461. },
  1462. "gremlin": {
  1463. name: "Gremlin",
  1464. parents: ["monster"]
  1465. },
  1466. "dragonsune": {
  1467. name: "Dragonsune",
  1468. parents: ["dragon", "kitsune"]
  1469. },
  1470. "ghost": {
  1471. name: "Ghost",
  1472. parents: ["supernatural"]
  1473. },
  1474. "false-vampire-bat": {
  1475. name: "False Vampire Bat",
  1476. parents: ["bat"]
  1477. },
  1478. "succubus": {
  1479. name: "Succubus",
  1480. parents: ["demon"]
  1481. },
  1482. "mia": {
  1483. name: "Mia",
  1484. parents: ["canine"]
  1485. },
  1486. "rainbow": {
  1487. name: "Rainbow",
  1488. parents: ["monster"]
  1489. },
  1490. "solgaleo": {
  1491. name: "Solgaleo",
  1492. parents: ["pokemon"]
  1493. },
  1494. "lucent-nargacuga": {
  1495. name: "Lucent Nargacuga",
  1496. parents: ["monster-hunter"]
  1497. },
  1498. "monster-hunter": {
  1499. name: "Monster Hunter",
  1500. parents: ["monster"]
  1501. },
  1502. "leviathan": {
  1503. "name": "Leviathan",
  1504. "url": "sea-monster"
  1505. },
  1506. "bull": {
  1507. name: "Bull",
  1508. parents: ["mammal"]
  1509. },
  1510. "tanuki": {
  1511. name: "Tanuki",
  1512. parents: ["monster"]
  1513. },
  1514. "chakat": {
  1515. name: "Chakat",
  1516. parents: ["cat"]
  1517. },
  1518. "hydra": {
  1519. name: "Hydra",
  1520. parents: ["monster"]
  1521. },
  1522. "zigzagoon": {
  1523. name: "Zigzagoon",
  1524. parents: ["raccoon", "pokemon"]
  1525. },
  1526. "vulture": {
  1527. name: "Vulture",
  1528. parents: ["avian"]
  1529. },
  1530. "eastern-dragon": {
  1531. name: "Eastern Dragon",
  1532. parents: ["dragon"]
  1533. },
  1534. "gryffon": {
  1535. name: "Gryffon",
  1536. parents: ["phoenix", "red-panda"]
  1537. },
  1538. "amtsvane": {
  1539. name: "Amtsvane",
  1540. parents: ["reptile"]
  1541. },
  1542. "kigavi": {
  1543. name: "Kigavi",
  1544. parents: ["avian"]
  1545. },
  1546. "turian": {
  1547. name: "Turian",
  1548. parents: ["avian"]
  1549. },
  1550. "zeraora": {
  1551. name: "Zeraora",
  1552. parents: ["pokemon", "cat"]
  1553. },
  1554. "sandshrew": {
  1555. name: "Sandshrew",
  1556. parents: ["pokemon", "pangolin"]
  1557. },
  1558. "valais-blacknose-sheep": {
  1559. name: "Valais Blacknose Sheep",
  1560. parents: ["sheep"]
  1561. },
  1562. "novaleit": {
  1563. name: "Novaleit",
  1564. parents: ["mammal"]
  1565. },
  1566. "dunnoh": {
  1567. name: "Dunnoh",
  1568. parents: ["mammal"]
  1569. },
  1570. "lunaral-dragon": {
  1571. name: "Lunaral Dragon",
  1572. parents: ["dragon"]
  1573. },
  1574. "arctic-wolf": {
  1575. name: "Arctic Wolf",
  1576. parents: ["wolf"]
  1577. },
  1578. "donkey": {
  1579. name: "Donkey",
  1580. parents: ["horse"]
  1581. },
  1582. "chinchilla": {
  1583. name: "Chinchilla",
  1584. parents: ["rodent"]
  1585. },
  1586. "felkin": {
  1587. name: "Felkin",
  1588. parents: ["dragon"]
  1589. },
  1590. "tykeriel": {
  1591. name: "Tykeriel",
  1592. parents: ["avian"]
  1593. },
  1594. "folf": {
  1595. name: "Folf",
  1596. parents: ["fox", "wolf"]
  1597. },
  1598. "pooltoy": {
  1599. name: "Pooltoy",
  1600. parents: ["construct"]
  1601. },
  1602. "demi": {
  1603. name: "Demi",
  1604. parents: ["human"]
  1605. },
  1606. "stegosaurus": {
  1607. name: "Stegosaurus",
  1608. parents: ["dinosaur"]
  1609. },
  1610. "computer-virus": {
  1611. name: "Computer Virus",
  1612. parents: ["program"]
  1613. },
  1614. "program": {
  1615. name: "Program",
  1616. parents: ["construct"]
  1617. },
  1618. "space-springhare": {
  1619. name: "Space Springhare",
  1620. parents: ["hare"]
  1621. },
  1622. "river-drake": {
  1623. name: "River Drake",
  1624. parents: ["dragon"]
  1625. },
  1626. "djinn": {
  1627. "name": "Djinn",
  1628. "url": "supernatural"
  1629. },
  1630. "supernatural": {
  1631. name: "Supernatural",
  1632. parents: ["monster"]
  1633. },
  1634. "grasshopper-mouse": {
  1635. name: "Grasshopper Mouse",
  1636. parents: ["mouse"]
  1637. },
  1638. "somali-cat": {
  1639. name: "Somali Cat",
  1640. parents: ["cat"]
  1641. },
  1642. "minccino": {
  1643. name: "Minccino",
  1644. parents: ["pokemon", "chinchilla"]
  1645. },
  1646. "pine-marten": {
  1647. name: "Pine Marten",
  1648. parents: ["marten"]
  1649. },
  1650. "marten": {
  1651. name: "Marten",
  1652. parents: ["mustelid"]
  1653. },
  1654. "mustelid": {
  1655. name: "Mustelid",
  1656. parents: ["mammal"]
  1657. },
  1658. "caribou": {
  1659. name: "Caribou",
  1660. parents: ["deer"]
  1661. },
  1662. "gnoll": {
  1663. name: "Gnoll",
  1664. parents: ["hyena", "monster"]
  1665. },
  1666. "peacekeeper": {
  1667. name: "Peacekeeper",
  1668. parents: ["human"]
  1669. },
  1670. "river-otter": {
  1671. name: "River Otter",
  1672. parents: ["otter"]
  1673. },
  1674. "dhole": {
  1675. name: "Dhole",
  1676. parents: ["canine"]
  1677. },
  1678. "springbok": {
  1679. name: "Springbok",
  1680. parents: ["antelope"]
  1681. },
  1682. "marsupial": {
  1683. name: "Marsupial",
  1684. parents: ["mammal"]
  1685. },
  1686. "townsend-big-eared-bat": {
  1687. name: "Townsend Big-eared Bat",
  1688. parents: ["bat"]
  1689. },
  1690. "squirrel": {
  1691. name: "Squirrel",
  1692. parents: ["rodent"]
  1693. },
  1694. "magpie": {
  1695. name: "Magpie",
  1696. parents: ["corvid"]
  1697. },
  1698. "civet": {
  1699. name: "Civet",
  1700. parents: ["feliform"]
  1701. },
  1702. "feliform": {
  1703. name: "Feliform",
  1704. parents: ["mammal"]
  1705. },
  1706. "tiefling": {
  1707. name: "Tiefling",
  1708. parents: ["devil"]
  1709. },
  1710. "devil": {
  1711. name: "Devil",
  1712. parents: ["supernatural"]
  1713. },
  1714. "sika-deer": {
  1715. name: "Sika Deer",
  1716. parents: ["deer"]
  1717. },
  1718. "vaporeon": {
  1719. name: "Vaporeon",
  1720. parents: ["eeveelution"]
  1721. },
  1722. "leafeon": {
  1723. name: "Leafeon",
  1724. parents: ["eeveelution"]
  1725. },
  1726. "jolteon": {
  1727. name: "Jolteon",
  1728. parents: ["eeveelution"]
  1729. },
  1730. "spireborn": {
  1731. name: "Spireborn",
  1732. parents: ["zorgoia"]
  1733. },
  1734. "vampire": {
  1735. name: "Vampire",
  1736. parents: ["monster"]
  1737. },
  1738. "extraplanar": {
  1739. name: "Extraplanar",
  1740. parents: []
  1741. },
  1742. "goo": {
  1743. name: "Goo",
  1744. parents: []
  1745. },
  1746. "skink": {
  1747. name: "Skink",
  1748. parents: ["lizard"]
  1749. },
  1750. "bat-eared-fox": {
  1751. name: "Bat-eared Fox",
  1752. parents: ["fox"]
  1753. },
  1754. "belted-kingfisher": {
  1755. name: "Belted Kingfisher",
  1756. parents: ["avian"]
  1757. },
  1758. "omnifalcon": {
  1759. name: "Omnifalcon",
  1760. parents: ["gryphon", "falcon", "harpy-eagle"]
  1761. },
  1762. "falcon": {
  1763. name: "Falcon",
  1764. parents: ["avian"]
  1765. },
  1766. "avali": {
  1767. name: "Avali",
  1768. parents: ["avian", "alien"]
  1769. },
  1770. "arctic-fox": {
  1771. name: "Arctic Fox",
  1772. parents: ["fox"]
  1773. },
  1774. "snow-tiger": {
  1775. name: "Snow Tiger",
  1776. parents: ["tiger"]
  1777. },
  1778. "marble-fox": {
  1779. name: "Marble Fox",
  1780. parents: ["fox"]
  1781. },
  1782. "king-wickerbeast": {
  1783. name: "King Wickerbeast",
  1784. parents: ["wickerbeast"]
  1785. },
  1786. "wickerbeast": {
  1787. name: "Wickerbeast",
  1788. parents: ["mammal"]
  1789. },
  1790. "european-polecat": {
  1791. name: "European Polecat",
  1792. parents: ["mustelid"]
  1793. },
  1794. "teshari": {
  1795. name: "Teshari",
  1796. parents: ["avian", "raptor"]
  1797. },
  1798. "alicorn": {
  1799. name: "Alicorn",
  1800. parents: ["horse"]
  1801. },
  1802. "atlas-moth": {
  1803. name: "Atlas Moth",
  1804. parents: ["moth"]
  1805. },
  1806. "owlbear": {
  1807. name: "Owlbear",
  1808. parents: ["owl", "bear", "monster"]
  1809. },
  1810. "owl": {
  1811. name: "Owl",
  1812. parents: ["avian"]
  1813. },
  1814. "silvertongue": {
  1815. name: "Silvertongue",
  1816. parents: ["reptile"]
  1817. },
  1818. "ahuizotl": {
  1819. name: "Ahuizotl",
  1820. parents: ["monster"]
  1821. },
  1822. "ender-dragon": {
  1823. name: "Ender Dragon",
  1824. parents: ["dragon"]
  1825. },
  1826. "bruhathkayosaurus": {
  1827. name: "Bruhathkayosaurus",
  1828. parents: ["sauropod"]
  1829. },
  1830. "sauropod": {
  1831. name: "Sauropod",
  1832. parents: ["dinosaur"]
  1833. },
  1834. "black-sable-antelope": {
  1835. name: "Black Sable Antelope",
  1836. parents: ["antelope"]
  1837. },
  1838. "slime": {
  1839. name: "Slime",
  1840. parents: ["goo"]
  1841. },
  1842. "utahraptor": {
  1843. name: "Utahraptor",
  1844. parents: ["raptor"]
  1845. },
  1846. "indian-giant-squirrel": {
  1847. name: "Indian Giant Squirrel",
  1848. parents: ["squirrel"]
  1849. },
  1850. "golden-retriever": {
  1851. name: "Golden Retriever",
  1852. parents: ["dog"]
  1853. },
  1854. "triceratops": {
  1855. name: "Triceratops",
  1856. parents: ["dinosaur"]
  1857. },
  1858. "drake": {
  1859. name: "Drake",
  1860. parents: ["dragon"]
  1861. },
  1862. "okapi": {
  1863. name: "Okapi",
  1864. parents: ["giraffe"]
  1865. },
  1866. "arctic-hare": {
  1867. name: "Arctic Hare",
  1868. parents: ["hare"]
  1869. },
  1870. "hare": {
  1871. name: "Hare",
  1872. parents: ["leporidae"]
  1873. },
  1874. "leporidae": {
  1875. name: "Leporidae",
  1876. parents: ["mammal"]
  1877. },
  1878. "leopard-gecko": {
  1879. name: "Leopard Gecko",
  1880. parents: ["gecko"]
  1881. },
  1882. "dreamspawn": {
  1883. name: "Dreamspawn",
  1884. parents: ["illusion"]
  1885. },
  1886. "illusion": {
  1887. name: "Illusion",
  1888. parents: []
  1889. },
  1890. "purrloin": {
  1891. name: "Purrloin",
  1892. parents: ["cat", "pokemon"]
  1893. },
  1894. "noivern": {
  1895. name: "Noivern",
  1896. parents: ["bat", "dragon", "pokemon"]
  1897. },
  1898. "hedgehog": {
  1899. name: "Hedgehog",
  1900. parents: ["mammal"]
  1901. },
  1902. "liger": {
  1903. name: "Liger",
  1904. parents: ["lion", "tiger", "hybrid"]
  1905. },
  1906. "hybrid": {
  1907. name: "Hybrid",
  1908. parents: []
  1909. },
  1910. "drider": {
  1911. name: "Drider",
  1912. parents: ["spider"]
  1913. },
  1914. "sabresune": {
  1915. name: "Sabresune",
  1916. parents: ["kitsune", "sabertooth-tiger"]
  1917. },
  1918. "ditto": {
  1919. name: "Ditto",
  1920. parents: ["pokemon", "goo"]
  1921. },
  1922. "amogus": {
  1923. name: "Amogus",
  1924. parents: ["deity"]
  1925. },
  1926. "ferret": {
  1927. name: "Ferret",
  1928. parents: ["mustelid"]
  1929. },
  1930. "guinea-pig": {
  1931. name: "Guinea Pig",
  1932. parents: ["rodent"]
  1933. },
  1934. "viper": {
  1935. name: "Viper",
  1936. parents: ["snake"]
  1937. },
  1938. "cinderace": {
  1939. name: "Cinderace",
  1940. parents: ["pokemon", "rabbit"]
  1941. },
  1942. "caudin": {
  1943. name: "Caudin",
  1944. parents: ["dragon"]
  1945. },
  1946. "red-winged-blackbird": {
  1947. name: "Red-Winged Blackbird",
  1948. parents: ["avian"]
  1949. },
  1950. "hooded-wheater": {
  1951. name: "Hooded Wheater",
  1952. parents: ["passerine"]
  1953. },
  1954. "passerine": {
  1955. name: "Passerine",
  1956. parents: ["avian"]
  1957. },
  1958. "gieeg": {
  1959. name: "Gieeg",
  1960. parents: ["alien"]
  1961. },
  1962. "ringtail": {
  1963. name: "Ringtail",
  1964. parents: ["raccoon"]
  1965. },
  1966. "hisuian-zoroark": {
  1967. name: "Hisuian Zoroark",
  1968. parents: ["zoroark", "hisuian"]
  1969. },
  1970. "hisuian": {
  1971. name: "Hisuian",
  1972. parents: ["regional-pokemon"]
  1973. },
  1974. "regional-pokemon": {
  1975. name: "Regional Pokemon",
  1976. parents: ["pokemon"]
  1977. },
  1978. "cybeast": {
  1979. name: "Cybeast",
  1980. parents: ["computer-virus"]
  1981. },
  1982. "javira-dragon": {
  1983. name: "Javira Dragon",
  1984. parents: ["dragon"]
  1985. },
  1986. "koopew": {
  1987. name: "Koopew",
  1988. parents: ["dragon", "alien"]
  1989. },
  1990. "nevrean": {
  1991. name: "Nevrean",
  1992. parents: ["avian", "vilous"]
  1993. },
  1994. "vilous": {
  1995. name: "Vilous Species",
  1996. parents: []
  1997. },
  1998. "titanoboa": {
  1999. name: "Titanoboa",
  2000. parents: ["snake"]
  2001. },
  2002. }
  2003. //species
  2004. function getSpeciesInfo(speciesList) {
  2005. let result = new Set();
  2006. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  2007. result.add(entry)
  2008. });
  2009. return Array.from(result);
  2010. };
  2011. function getSpeciesInfoHelper(species) {
  2012. if (!speciesData[species]) {
  2013. console.warn(species + " doesn't exist");
  2014. return [];
  2015. }
  2016. if (speciesData[species].parents) {
  2017. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  2018. } else {
  2019. return [species];
  2020. }
  2021. }
  2022. characterMakers.push(() => makeCharacter(
  2023. {
  2024. name: "Fen",
  2025. species: ["crux"],
  2026. description: {
  2027. title: "Bio",
  2028. text: "Very furry. Sheds on everything."
  2029. },
  2030. tags: [
  2031. "anthro",
  2032. "goo"
  2033. ]
  2034. },
  2035. {
  2036. front: {
  2037. height: math.unit(12, "feet"),
  2038. weight: math.unit(2400, "lb"),
  2039. name: "Front",
  2040. image: {
  2041. source: "./media/characters/fen/front.svg",
  2042. extra: 1804/1562,
  2043. bottom: 205/2009
  2044. },
  2045. extraAttributes: {
  2046. pawSize: {
  2047. name: "Paw Size",
  2048. power: 2,
  2049. type: "area",
  2050. base: math.unit(0.35, "m^2")
  2051. }
  2052. }
  2053. },
  2054. diving: {
  2055. height: math.unit(4.9, "meters"),
  2056. weight: math.unit(2400, "lb"),
  2057. name: "Diving",
  2058. image: {
  2059. source: "./media/characters/fen/diving.svg"
  2060. }
  2061. },
  2062. goo: {
  2063. height: math.unit(12, "feet"),
  2064. weight: math.unit(3600, "lb"),
  2065. volume: math.unit(1000, "liters"),
  2066. preyCapacity: math.unit(6, "people"),
  2067. name: "Goo",
  2068. image: {
  2069. source: "./media/characters/fen/goo.svg",
  2070. extra: 1307/1071,
  2071. bottom: 134/1441
  2072. }
  2073. },
  2074. maw: {
  2075. height: math.unit(5.03, "feet"),
  2076. name: "Maw",
  2077. image: {
  2078. source: "./media/characters/fen/maw.svg"
  2079. }
  2080. },
  2081. gooCeiling: {
  2082. height: math.unit(6.6, "feet"),
  2083. weight: math.unit(3000, "lb"),
  2084. volume: math.unit(1000, "liters"),
  2085. preyCapacity: math.unit(6, "people"),
  2086. name: "Goo (Ceiling)",
  2087. image: {
  2088. source: "./media/characters/fen/goo-ceiling.svg"
  2089. }
  2090. },
  2091. back: {
  2092. height: math.unit(12, "feet"),
  2093. weight: math.unit(2400, "lb"),
  2094. name: "Back",
  2095. image: {
  2096. source: "./media/characters/fen/back.svg",
  2097. },
  2098. info: {
  2099. description: {
  2100. mode: "append",
  2101. text: "\n\nHe is not currently looking at you."
  2102. }
  2103. }
  2104. },
  2105. full: {
  2106. height: math.unit(1.85, "meter"),
  2107. weight: math.unit(3200, "lb"),
  2108. name: "Full",
  2109. image: {
  2110. source: "./media/characters/fen/full.svg",
  2111. extra: 1133/859,
  2112. bottom: 145/1278
  2113. },
  2114. info: {
  2115. description: {
  2116. mode: "append",
  2117. text: "\n\nMunch."
  2118. }
  2119. }
  2120. },
  2121. gooLounging: {
  2122. height: math.unit(4.53, "feet"),
  2123. weight: math.unit(3000, "lb"),
  2124. preyCapacity: math.unit(6, "people"),
  2125. name: "Goo (Lounging)",
  2126. image: {
  2127. source: "./media/characters/fen/goo-lounging.svg",
  2128. bottom: 116 / 613
  2129. }
  2130. },
  2131. lounging: {
  2132. height: math.unit(10.52, "feet"),
  2133. weight: math.unit(2400, "lb"),
  2134. name: "Lounging",
  2135. image: {
  2136. source: "./media/characters/fen/lounging.svg"
  2137. }
  2138. },
  2139. },
  2140. [
  2141. {
  2142. name: "Small",
  2143. height: math.unit(2.2428, "meter")
  2144. },
  2145. {
  2146. name: "Normal",
  2147. height: math.unit(12, "feet"),
  2148. default: true,
  2149. },
  2150. {
  2151. name: "Big",
  2152. height: math.unit(20, "feet")
  2153. },
  2154. {
  2155. name: "Minimacro",
  2156. height: math.unit(40, "feet"),
  2157. info: {
  2158. description: {
  2159. mode: "append",
  2160. text: "\n\nTOO DAMN BIG"
  2161. }
  2162. }
  2163. },
  2164. {
  2165. name: "Macro",
  2166. height: math.unit(100, "feet"),
  2167. info: {
  2168. description: {
  2169. mode: "append",
  2170. text: "\n\nTOO DAMN BIG"
  2171. }
  2172. }
  2173. },
  2174. {
  2175. name: "Megamacro",
  2176. height: math.unit(2, "miles")
  2177. },
  2178. {
  2179. name: "Gigamacro",
  2180. height: math.unit(10, "earths")
  2181. },
  2182. ]
  2183. ))
  2184. characterMakers.push(() => makeCharacter(
  2185. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2186. {
  2187. front: {
  2188. height: math.unit(183, "cm"),
  2189. weight: math.unit(80, "kg"),
  2190. name: "Front",
  2191. image: {
  2192. source: "./media/characters/sofia-fluttertail/front.svg",
  2193. bottom: 0.01,
  2194. extra: 2154 / 2081
  2195. }
  2196. },
  2197. frontAlt: {
  2198. height: math.unit(183, "cm"),
  2199. weight: math.unit(80, "kg"),
  2200. name: "Front (alt)",
  2201. image: {
  2202. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2203. }
  2204. },
  2205. back: {
  2206. height: math.unit(183, "cm"),
  2207. weight: math.unit(80, "kg"),
  2208. name: "Back",
  2209. image: {
  2210. source: "./media/characters/sofia-fluttertail/back.svg"
  2211. }
  2212. },
  2213. kneeling: {
  2214. height: math.unit(125, "cm"),
  2215. weight: math.unit(80, "kg"),
  2216. name: "Kneeling",
  2217. image: {
  2218. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2219. extra: 1033 / 977,
  2220. bottom: 23.7 / 1057
  2221. }
  2222. },
  2223. maw: {
  2224. height: math.unit(183 / 5, "cm"),
  2225. name: "Maw",
  2226. image: {
  2227. source: "./media/characters/sofia-fluttertail/maw.svg"
  2228. }
  2229. },
  2230. mawcloseup: {
  2231. height: math.unit(183 / 5 * 0.41, "cm"),
  2232. name: "Maw (Closeup)",
  2233. image: {
  2234. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2235. }
  2236. },
  2237. paws: {
  2238. height: math.unit(1.17, "feet"),
  2239. name: "Paws",
  2240. image: {
  2241. source: "./media/characters/sofia-fluttertail/paws.svg",
  2242. extra: 851 / 851,
  2243. bottom: 17 / 868
  2244. }
  2245. },
  2246. },
  2247. [
  2248. {
  2249. name: "Normal",
  2250. height: math.unit(1.83, "meter")
  2251. },
  2252. {
  2253. name: "Size Thief",
  2254. height: math.unit(18, "feet")
  2255. },
  2256. {
  2257. name: "50 Foot Collie",
  2258. height: math.unit(50, "feet")
  2259. },
  2260. {
  2261. name: "Macro",
  2262. height: math.unit(96, "feet"),
  2263. default: true
  2264. },
  2265. {
  2266. name: "Megamerger",
  2267. height: math.unit(650, "feet")
  2268. },
  2269. ]
  2270. ))
  2271. characterMakers.push(() => makeCharacter(
  2272. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2273. {
  2274. front: {
  2275. height: math.unit(7, "feet"),
  2276. weight: math.unit(100, "kg"),
  2277. name: "Front",
  2278. image: {
  2279. source: "./media/characters/march/front.svg",
  2280. extra: 1992/1851,
  2281. bottom: 39/2031
  2282. }
  2283. },
  2284. foot: {
  2285. height: math.unit(0.9, "feet"),
  2286. name: "Foot",
  2287. image: {
  2288. source: "./media/characters/march/foot.svg"
  2289. }
  2290. },
  2291. },
  2292. [
  2293. {
  2294. name: "Normal",
  2295. height: math.unit(7.9, "feet")
  2296. },
  2297. {
  2298. name: "Macro",
  2299. height: math.unit(220, "meters")
  2300. },
  2301. {
  2302. name: "Megamacro",
  2303. height: math.unit(2.98, "km"),
  2304. default: true
  2305. },
  2306. {
  2307. name: "Gigamacro",
  2308. height: math.unit(15963, "km")
  2309. },
  2310. {
  2311. name: "Teramacro",
  2312. height: math.unit(2980000000, "km")
  2313. },
  2314. {
  2315. name: "Examacro",
  2316. height: math.unit(250, "parsecs")
  2317. },
  2318. ]
  2319. ))
  2320. characterMakers.push(() => makeCharacter(
  2321. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2322. {
  2323. front: {
  2324. height: math.unit(6, "feet"),
  2325. weight: math.unit(60, "kg"),
  2326. name: "Front",
  2327. image: {
  2328. source: "./media/characters/noir/front.svg",
  2329. extra: 1,
  2330. bottom: 0.032
  2331. }
  2332. },
  2333. },
  2334. [
  2335. {
  2336. name: "Normal",
  2337. height: math.unit(6.6, "feet")
  2338. },
  2339. {
  2340. name: "Macro",
  2341. height: math.unit(500, "feet")
  2342. },
  2343. {
  2344. name: "Megamacro",
  2345. height: math.unit(2.5, "km"),
  2346. default: true
  2347. },
  2348. {
  2349. name: "Gigamacro",
  2350. height: math.unit(22500, "km")
  2351. },
  2352. {
  2353. name: "Teramacro",
  2354. height: math.unit(2500000000, "km")
  2355. },
  2356. {
  2357. name: "Examacro",
  2358. height: math.unit(200, "parsecs")
  2359. },
  2360. ]
  2361. ))
  2362. characterMakers.push(() => makeCharacter(
  2363. { name: "Okuri", species: ["sabresune"], tags: ["anthro"] },
  2364. {
  2365. front: {
  2366. height: math.unit(7, "feet"),
  2367. weight: math.unit(100, "kg"),
  2368. name: "Front",
  2369. image: {
  2370. source: "./media/characters/okuri/front.svg",
  2371. extra: 739/665,
  2372. bottom: 39/778
  2373. }
  2374. },
  2375. back: {
  2376. height: math.unit(7, "feet"),
  2377. weight: math.unit(100, "kg"),
  2378. name: "Back",
  2379. image: {
  2380. source: "./media/characters/okuri/back.svg",
  2381. extra: 734/653,
  2382. bottom: 13/747
  2383. }
  2384. },
  2385. sitting: {
  2386. height: math.unit(2.95, "feet"),
  2387. weight: math.unit(100, "kg"),
  2388. name: "Sitting",
  2389. image: {
  2390. source: "./media/characters/okuri/sitting.svg",
  2391. extra: 370/318,
  2392. bottom: 99/469
  2393. }
  2394. },
  2395. },
  2396. [
  2397. {
  2398. name: "Smallest",
  2399. height: math.unit(5 + 2/12, "feet")
  2400. },
  2401. {
  2402. name: "Smaller",
  2403. height: math.unit(300, "feet")
  2404. },
  2405. {
  2406. name: "Small",
  2407. height: math.unit(1000, "feet")
  2408. },
  2409. {
  2410. name: "Macro",
  2411. height: math.unit(1, "mile")
  2412. },
  2413. {
  2414. name: "Mega Macro (Small)",
  2415. height: math.unit(20, "km")
  2416. },
  2417. {
  2418. name: "Mega Macro (Large)",
  2419. height: math.unit(600, "km")
  2420. },
  2421. {
  2422. name: "Giga Macro",
  2423. height: math.unit(10000, "km")
  2424. },
  2425. {
  2426. name: "Normal",
  2427. height: math.unit(577560, "km"),
  2428. default: true
  2429. },
  2430. {
  2431. name: "Large",
  2432. height: math.unit(4, "galaxies")
  2433. },
  2434. {
  2435. name: "Largest",
  2436. height: math.unit(15, "multiverses")
  2437. },
  2438. ]
  2439. ))
  2440. characterMakers.push(() => makeCharacter(
  2441. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2442. {
  2443. front: {
  2444. height: math.unit(7, "feet"),
  2445. weight: math.unit(100, "kg"),
  2446. name: "Front",
  2447. image: {
  2448. source: "./media/characters/manny/front.svg",
  2449. extra: 1,
  2450. bottom: 0.06
  2451. }
  2452. },
  2453. back: {
  2454. height: math.unit(7, "feet"),
  2455. weight: math.unit(100, "kg"),
  2456. name: "Back",
  2457. image: {
  2458. source: "./media/characters/manny/back.svg",
  2459. extra: 1,
  2460. bottom: 0.014
  2461. }
  2462. },
  2463. },
  2464. [
  2465. {
  2466. name: "Normal",
  2467. height: math.unit(7, "feet"),
  2468. },
  2469. {
  2470. name: "Macro",
  2471. height: math.unit(78, "feet"),
  2472. default: true
  2473. },
  2474. {
  2475. name: "Macro+",
  2476. height: math.unit(300, "meters")
  2477. },
  2478. {
  2479. name: "Macro++",
  2480. height: math.unit(2400, "meters")
  2481. },
  2482. {
  2483. name: "Megamacro",
  2484. height: math.unit(5167, "meters")
  2485. },
  2486. {
  2487. name: "Gigamacro",
  2488. height: math.unit(41769, "miles")
  2489. },
  2490. ]
  2491. ))
  2492. characterMakers.push(() => makeCharacter(
  2493. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2494. {
  2495. front: {
  2496. height: math.unit(7, "feet"),
  2497. weight: math.unit(100, "kg"),
  2498. name: "Front",
  2499. image: {
  2500. source: "./media/characters/adake/front-1.svg"
  2501. }
  2502. },
  2503. frontAlt: {
  2504. height: math.unit(7, "feet"),
  2505. weight: math.unit(100, "kg"),
  2506. name: "Front (Alt)",
  2507. image: {
  2508. source: "./media/characters/adake/front-2.svg",
  2509. extra: 1,
  2510. bottom: 0.01
  2511. }
  2512. },
  2513. back: {
  2514. height: math.unit(7, "feet"),
  2515. weight: math.unit(100, "kg"),
  2516. name: "Back",
  2517. image: {
  2518. source: "./media/characters/adake/back.svg",
  2519. }
  2520. },
  2521. kneel: {
  2522. height: math.unit(5.385, "feet"),
  2523. weight: math.unit(100, "kg"),
  2524. name: "Kneeling",
  2525. image: {
  2526. source: "./media/characters/adake/kneel.svg",
  2527. bottom: 0.052
  2528. }
  2529. },
  2530. },
  2531. [
  2532. {
  2533. name: "Normal",
  2534. height: math.unit(7, "feet"),
  2535. },
  2536. {
  2537. name: "Macro",
  2538. height: math.unit(78, "feet"),
  2539. default: true
  2540. },
  2541. {
  2542. name: "Macro+",
  2543. height: math.unit(300, "meters")
  2544. },
  2545. {
  2546. name: "Macro++",
  2547. height: math.unit(2400, "meters")
  2548. },
  2549. {
  2550. name: "Megamacro",
  2551. height: math.unit(5167, "meters")
  2552. },
  2553. {
  2554. name: "Gigamacro",
  2555. height: math.unit(41769, "miles")
  2556. },
  2557. ]
  2558. ))
  2559. characterMakers.push(() => makeCharacter(
  2560. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2561. {
  2562. front: {
  2563. height: math.unit(1.65, "meters"),
  2564. weight: math.unit(50, "kg"),
  2565. name: "Front",
  2566. image: {
  2567. source: "./media/characters/elijah/front.svg",
  2568. extra: 858 / 830,
  2569. bottom: 95.5 / 953.8559
  2570. }
  2571. },
  2572. back: {
  2573. height: math.unit(1.65, "meters"),
  2574. weight: math.unit(50, "kg"),
  2575. name: "Back",
  2576. image: {
  2577. source: "./media/characters/elijah/back.svg",
  2578. extra: 895 / 850,
  2579. bottom: 5.3 / 897.956
  2580. }
  2581. },
  2582. frontNsfw: {
  2583. height: math.unit(1.65, "meters"),
  2584. weight: math.unit(50, "kg"),
  2585. name: "Front (NSFW)",
  2586. image: {
  2587. source: "./media/characters/elijah/front-nsfw.svg",
  2588. extra: 858 / 830,
  2589. bottom: 95.5 / 953.8559
  2590. }
  2591. },
  2592. backNsfw: {
  2593. height: math.unit(1.65, "meters"),
  2594. weight: math.unit(50, "kg"),
  2595. name: "Back (NSFW)",
  2596. image: {
  2597. source: "./media/characters/elijah/back-nsfw.svg",
  2598. extra: 895 / 850,
  2599. bottom: 5.3 / 897.956
  2600. }
  2601. },
  2602. dick: {
  2603. height: math.unit(1, "feet"),
  2604. name: "Dick",
  2605. image: {
  2606. source: "./media/characters/elijah/dick.svg"
  2607. }
  2608. },
  2609. beakOpen: {
  2610. height: math.unit(1.25, "feet"),
  2611. name: "Beak (Open)",
  2612. image: {
  2613. source: "./media/characters/elijah/beak-open.svg"
  2614. }
  2615. },
  2616. beakShut: {
  2617. height: math.unit(1.25, "feet"),
  2618. name: "Beak (Shut)",
  2619. image: {
  2620. source: "./media/characters/elijah/beak-shut.svg"
  2621. }
  2622. },
  2623. footFlexing: {
  2624. height: math.unit(1.61, "feet"),
  2625. name: "Foot (Flexing)",
  2626. image: {
  2627. source: "./media/characters/elijah/foot-flexing.svg"
  2628. }
  2629. },
  2630. footStepping: {
  2631. height: math.unit(1.44, "feet"),
  2632. name: "Foot (Stepping)",
  2633. image: {
  2634. source: "./media/characters/elijah/foot-stepping.svg"
  2635. }
  2636. },
  2637. plantigradeLeg: {
  2638. height: math.unit(2.34, "feet"),
  2639. name: "Plantigrade Leg",
  2640. image: {
  2641. source: "./media/characters/elijah/plantigrade-leg.svg"
  2642. }
  2643. },
  2644. plantigradeFootLeft: {
  2645. height: math.unit(0.9, "feet"),
  2646. name: "Plantigrade Foot (Left)",
  2647. image: {
  2648. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2649. }
  2650. },
  2651. plantigradeFootRight: {
  2652. height: math.unit(0.9, "feet"),
  2653. name: "Plantigrade Foot (Right)",
  2654. image: {
  2655. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2656. }
  2657. },
  2658. },
  2659. [
  2660. {
  2661. name: "Normal",
  2662. height: math.unit(1.65, "meters")
  2663. },
  2664. {
  2665. name: "Macro",
  2666. height: math.unit(55, "meters"),
  2667. default: true
  2668. },
  2669. {
  2670. name: "Macro+",
  2671. height: math.unit(105, "meters")
  2672. },
  2673. ]
  2674. ))
  2675. characterMakers.push(() => makeCharacter(
  2676. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2677. {
  2678. front: {
  2679. height: math.unit(7 + 2/12, "feet"),
  2680. weight: math.unit(320, "kg"),
  2681. name: "Front",
  2682. image: {
  2683. source: "./media/characters/rai/front.svg",
  2684. extra: 1802/1696,
  2685. bottom: 68/1870
  2686. }
  2687. },
  2688. frontDressed: {
  2689. height: math.unit(7 + 2/12, "feet"),
  2690. weight: math.unit(320, "kg"),
  2691. name: "Front (Dressed)",
  2692. image: {
  2693. source: "./media/characters/rai/front-dressed.svg",
  2694. extra: 1802/1696,
  2695. bottom: 68/1870
  2696. }
  2697. },
  2698. side: {
  2699. height: math.unit(7 + 2/12, "feet"),
  2700. weight: math.unit(320, "kg"),
  2701. name: "Side",
  2702. image: {
  2703. source: "./media/characters/rai/side.svg",
  2704. extra: 1789/1710,
  2705. bottom: 115/1904
  2706. }
  2707. },
  2708. back: {
  2709. height: math.unit(7 + 2/12, "feet"),
  2710. weight: math.unit(320, "kg"),
  2711. name: "Back",
  2712. image: {
  2713. source: "./media/characters/rai/back.svg",
  2714. extra: 1770/1707,
  2715. bottom: 28/1798
  2716. }
  2717. },
  2718. feral: {
  2719. height: math.unit(9.5, "feet"),
  2720. weight: math.unit(640, "kg"),
  2721. name: "Feral",
  2722. image: {
  2723. source: "./media/characters/rai/feral.svg",
  2724. extra: 945/553,
  2725. bottom: 176/1121
  2726. }
  2727. },
  2728. dragon: {
  2729. height: math.unit(23, "feet"),
  2730. weight: math.unit(50000, "lb"),
  2731. name: "Dragon",
  2732. image: {
  2733. source: "./media/characters/rai/dragon.svg",
  2734. extra: 2498 / 2030,
  2735. bottom: 85.2 / 2584
  2736. }
  2737. },
  2738. maw: {
  2739. height: math.unit(1.69, "feet"),
  2740. name: "Maw",
  2741. image: {
  2742. source: "./media/characters/rai/maw.svg"
  2743. }
  2744. },
  2745. },
  2746. [
  2747. {
  2748. name: "Normal",
  2749. height: math.unit(7 + 2/12, "feet")
  2750. },
  2751. {
  2752. name: "Big",
  2753. height: math.unit(11, "feet")
  2754. },
  2755. {
  2756. name: "Macro",
  2757. height: math.unit(302, "feet"),
  2758. default: true
  2759. },
  2760. ]
  2761. ))
  2762. characterMakers.push(() => makeCharacter(
  2763. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2764. {
  2765. frontDressed: {
  2766. height: math.unit(216, "feet"),
  2767. weight: math.unit(7000000, "lb"),
  2768. name: "Front (Dressed)",
  2769. image: {
  2770. source: "./media/characters/jazzy/front-dressed.svg",
  2771. extra: 2738 / 2651,
  2772. bottom: 41.8 / 2786
  2773. }
  2774. },
  2775. backDressed: {
  2776. height: math.unit(216, "feet"),
  2777. weight: math.unit(7000000, "lb"),
  2778. name: "Back (Dressed)",
  2779. image: {
  2780. source: "./media/characters/jazzy/back-dressed.svg",
  2781. extra: 2775 / 2673,
  2782. bottom: 36.8 / 2817
  2783. }
  2784. },
  2785. front: {
  2786. height: math.unit(216, "feet"),
  2787. weight: math.unit(7000000, "lb"),
  2788. name: "Front",
  2789. image: {
  2790. source: "./media/characters/jazzy/front.svg",
  2791. extra: 2738 / 2651,
  2792. bottom: 41.8 / 2786
  2793. }
  2794. },
  2795. back: {
  2796. height: math.unit(216, "feet"),
  2797. weight: math.unit(7000000, "lb"),
  2798. name: "Back",
  2799. image: {
  2800. source: "./media/characters/jazzy/back.svg",
  2801. extra: 2775 / 2673,
  2802. bottom: 36.8 / 2817
  2803. }
  2804. },
  2805. maw: {
  2806. height: math.unit(20, "feet"),
  2807. name: "Maw",
  2808. image: {
  2809. source: "./media/characters/jazzy/maw.svg"
  2810. }
  2811. },
  2812. paws: {
  2813. height: math.unit(27.5, "feet"),
  2814. name: "Paws",
  2815. image: {
  2816. source: "./media/characters/jazzy/paws.svg"
  2817. }
  2818. },
  2819. eye: {
  2820. height: math.unit(4.4, "feet"),
  2821. name: "Eye",
  2822. image: {
  2823. source: "./media/characters/jazzy/eye.svg"
  2824. }
  2825. },
  2826. droneOffense: {
  2827. height: math.unit(9.5, "inches"),
  2828. name: "Drone (Offense)",
  2829. image: {
  2830. source: "./media/characters/jazzy/drone-offense.svg"
  2831. }
  2832. },
  2833. droneRecon: {
  2834. height: math.unit(9.5, "inches"),
  2835. name: "Drone (Recon)",
  2836. image: {
  2837. source: "./media/characters/jazzy/drone-recon.svg"
  2838. }
  2839. },
  2840. droneDefense: {
  2841. height: math.unit(9.5, "inches"),
  2842. name: "Drone (Defense)",
  2843. image: {
  2844. source: "./media/characters/jazzy/drone-defense.svg"
  2845. }
  2846. },
  2847. },
  2848. [
  2849. {
  2850. name: "Macro",
  2851. height: math.unit(216, "feet"),
  2852. default: true
  2853. },
  2854. ]
  2855. ))
  2856. characterMakers.push(() => makeCharacter(
  2857. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2858. {
  2859. front: {
  2860. height: math.unit(9 + 6/12, "feet"),
  2861. weight: math.unit(700, "lb"),
  2862. name: "Front",
  2863. image: {
  2864. source: "./media/characters/flamm/front.svg",
  2865. extra: 1751/1632,
  2866. bottom: 46/1797
  2867. }
  2868. },
  2869. buff: {
  2870. height: math.unit(9 + 6/12, "feet"),
  2871. weight: math.unit(950, "lb"),
  2872. name: "Buff",
  2873. image: {
  2874. source: "./media/characters/flamm/buff.svg",
  2875. extra: 3018/2874,
  2876. bottom: 221/3239
  2877. }
  2878. },
  2879. },
  2880. [
  2881. {
  2882. name: "Normal",
  2883. height: math.unit(9.5, "feet")
  2884. },
  2885. {
  2886. name: "Macro",
  2887. height: math.unit(200, "feet"),
  2888. default: true
  2889. },
  2890. ]
  2891. ))
  2892. characterMakers.push(() => makeCharacter(
  2893. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2894. {
  2895. front: {
  2896. height: math.unit(5 + 3/12, "feet"),
  2897. weight: math.unit(60, "kg"),
  2898. name: "Front",
  2899. image: {
  2900. source: "./media/characters/zephiro/front.svg",
  2901. extra: 2309 / 2162,
  2902. bottom: 0.069
  2903. }
  2904. },
  2905. side: {
  2906. height: math.unit(5 + 3/12, "feet"),
  2907. weight: math.unit(60, "kg"),
  2908. name: "Side",
  2909. image: {
  2910. source: "./media/characters/zephiro/side.svg",
  2911. extra: 2403 / 2279,
  2912. bottom: 0.015
  2913. }
  2914. },
  2915. back: {
  2916. height: math.unit(5 + 3/12, "feet"),
  2917. weight: math.unit(60, "kg"),
  2918. name: "Back",
  2919. image: {
  2920. source: "./media/characters/zephiro/back.svg",
  2921. extra: 2373 / 2244,
  2922. bottom: 0.013
  2923. }
  2924. },
  2925. hand: {
  2926. height: math.unit(0.68, "feet"),
  2927. name: "Hand",
  2928. image: {
  2929. source: "./media/characters/zephiro/hand.svg"
  2930. }
  2931. },
  2932. paw: {
  2933. height: math.unit(1, "feet"),
  2934. name: "Paw",
  2935. image: {
  2936. source: "./media/characters/zephiro/paw.svg"
  2937. }
  2938. },
  2939. beans: {
  2940. height: math.unit(0.93, "feet"),
  2941. name: "Beans",
  2942. image: {
  2943. source: "./media/characters/zephiro/beans.svg"
  2944. }
  2945. },
  2946. },
  2947. [
  2948. {
  2949. name: "Micro",
  2950. height: math.unit(3, "inches")
  2951. },
  2952. {
  2953. name: "Normal",
  2954. height: math.unit(5 + 3 / 12, "feet"),
  2955. default: true
  2956. },
  2957. {
  2958. name: "Macro",
  2959. height: math.unit(118, "feet")
  2960. },
  2961. ]
  2962. ))
  2963. characterMakers.push(() => makeCharacter(
  2964. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2965. {
  2966. front: {
  2967. height: math.unit(5, "feet"),
  2968. weight: math.unit(90, "kg"),
  2969. name: "Front",
  2970. image: {
  2971. source: "./media/characters/fory/front.svg",
  2972. extra: 2862 / 2674,
  2973. bottom: 180 / 3043.8
  2974. }
  2975. },
  2976. back: {
  2977. height: math.unit(5, "feet"),
  2978. weight: math.unit(90, "kg"),
  2979. name: "Back",
  2980. image: {
  2981. source: "./media/characters/fory/back.svg",
  2982. extra: 2962 / 2791,
  2983. bottom: 106 / 3071.8
  2984. }
  2985. },
  2986. foot: {
  2987. height: math.unit(2.14, "feet"),
  2988. name: "Foot",
  2989. image: {
  2990. source: "./media/characters/fory/foot.svg"
  2991. }
  2992. },
  2993. },
  2994. [
  2995. {
  2996. name: "Normal",
  2997. height: math.unit(5, "feet")
  2998. },
  2999. {
  3000. name: "Macro",
  3001. height: math.unit(50, "feet"),
  3002. default: true
  3003. },
  3004. {
  3005. name: "Megamacro",
  3006. height: math.unit(10, "miles")
  3007. },
  3008. {
  3009. name: "Gigamacro",
  3010. height: math.unit(5, "earths")
  3011. },
  3012. ]
  3013. ))
  3014. characterMakers.push(() => makeCharacter(
  3015. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  3016. {
  3017. front: {
  3018. height: math.unit(7, "feet"),
  3019. weight: math.unit(90, "kg"),
  3020. name: "Front",
  3021. image: {
  3022. source: "./media/characters/kurrikage/front.svg",
  3023. extra: 1845/1733,
  3024. bottom: 119/1964
  3025. }
  3026. },
  3027. back: {
  3028. height: math.unit(7, "feet"),
  3029. weight: math.unit(90, "kg"),
  3030. name: "Back",
  3031. image: {
  3032. source: "./media/characters/kurrikage/back.svg",
  3033. extra: 1790/1677,
  3034. bottom: 61/1851
  3035. }
  3036. },
  3037. dressed: {
  3038. height: math.unit(7, "feet"),
  3039. weight: math.unit(90, "kg"),
  3040. name: "Dressed",
  3041. image: {
  3042. source: "./media/characters/kurrikage/dressed.svg",
  3043. extra: 1845/1733,
  3044. bottom: 119/1964
  3045. }
  3046. },
  3047. foot: {
  3048. height: math.unit(1.5, "feet"),
  3049. name: "Foot",
  3050. image: {
  3051. source: "./media/characters/kurrikage/foot.svg"
  3052. }
  3053. },
  3054. staff: {
  3055. height: math.unit(6.7, "feet"),
  3056. name: "Staff",
  3057. image: {
  3058. source: "./media/characters/kurrikage/staff.svg"
  3059. }
  3060. },
  3061. peek: {
  3062. height: math.unit(1.05, "feet"),
  3063. name: "Peeking",
  3064. image: {
  3065. source: "./media/characters/kurrikage/peek.svg",
  3066. bottom: 0.08
  3067. }
  3068. },
  3069. },
  3070. [
  3071. {
  3072. name: "Normal",
  3073. height: math.unit(12, "feet"),
  3074. default: true
  3075. },
  3076. {
  3077. name: "Big",
  3078. height: math.unit(20, "feet")
  3079. },
  3080. {
  3081. name: "Macro",
  3082. height: math.unit(500, "feet")
  3083. },
  3084. {
  3085. name: "Megamacro",
  3086. height: math.unit(20, "miles")
  3087. },
  3088. ]
  3089. ))
  3090. characterMakers.push(() => makeCharacter(
  3091. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  3092. {
  3093. front: {
  3094. height: math.unit(6, "feet"),
  3095. weight: math.unit(75, "kg"),
  3096. name: "Front",
  3097. image: {
  3098. source: "./media/characters/shingo/front.svg",
  3099. extra: 1900/1825,
  3100. bottom: 82/1982
  3101. }
  3102. },
  3103. side: {
  3104. height: math.unit(6, "feet"),
  3105. weight: math.unit(75, "kg"),
  3106. name: "Side",
  3107. image: {
  3108. source: "./media/characters/shingo/side.svg",
  3109. extra: 1930/1865,
  3110. bottom: 16/1946
  3111. }
  3112. },
  3113. back: {
  3114. height: math.unit(6, "feet"),
  3115. weight: math.unit(75, "kg"),
  3116. name: "Back",
  3117. image: {
  3118. source: "./media/characters/shingo/back.svg",
  3119. extra: 1922/1852,
  3120. bottom: 16/1938
  3121. }
  3122. },
  3123. frontDressed: {
  3124. height: math.unit(6, "feet"),
  3125. weight: math.unit(150, "lb"),
  3126. name: "Front-dressed",
  3127. image: {
  3128. source: "./media/characters/shingo/front-dressed.svg",
  3129. extra: 1900/1825,
  3130. bottom: 82/1982
  3131. }
  3132. },
  3133. paw: {
  3134. height: math.unit(1.29, "feet"),
  3135. name: "Paw",
  3136. image: {
  3137. source: "./media/characters/shingo/paw.svg"
  3138. }
  3139. },
  3140. hand: {
  3141. height: math.unit(1.07, "feet"),
  3142. name: "Hand",
  3143. image: {
  3144. source: "./media/characters/shingo/hand.svg"
  3145. }
  3146. },
  3147. frontAlt: {
  3148. height: math.unit(6, "feet"),
  3149. weight: math.unit(75, "kg"),
  3150. name: "Front (Alt)",
  3151. image: {
  3152. source: "./media/characters/shingo/front-alt.svg",
  3153. extra: 3511 / 3338,
  3154. bottom: 0.005
  3155. }
  3156. },
  3157. frontAlt2: {
  3158. height: math.unit(6, "feet"),
  3159. weight: math.unit(75, "kg"),
  3160. name: "Front (Alt 2)",
  3161. image: {
  3162. source: "./media/characters/shingo/front-alt-2.svg",
  3163. extra: 706/681,
  3164. bottom: 11/717
  3165. }
  3166. },
  3167. pawAlt: {
  3168. height: math.unit(1, "feet"),
  3169. name: "Paw (Alt)",
  3170. image: {
  3171. source: "./media/characters/shingo/paw-alt.svg"
  3172. }
  3173. },
  3174. },
  3175. [
  3176. {
  3177. name: "Micro",
  3178. height: math.unit(4, "inches")
  3179. },
  3180. {
  3181. name: "Normal",
  3182. height: math.unit(6, "feet"),
  3183. default: true
  3184. },
  3185. {
  3186. name: "Macro",
  3187. height: math.unit(108, "feet")
  3188. },
  3189. {
  3190. name: "Macro+",
  3191. height: math.unit(1500, "feet")
  3192. },
  3193. ]
  3194. ))
  3195. characterMakers.push(() => makeCharacter(
  3196. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3197. {
  3198. side: {
  3199. height: math.unit(6, "feet"),
  3200. weight: math.unit(75, "kg"),
  3201. name: "Side",
  3202. image: {
  3203. source: "./media/characters/aigey/side.svg"
  3204. }
  3205. },
  3206. },
  3207. [
  3208. {
  3209. name: "Macro",
  3210. height: math.unit(200, "feet"),
  3211. default: true
  3212. },
  3213. {
  3214. name: "Megamacro",
  3215. height: math.unit(100, "miles")
  3216. },
  3217. ]
  3218. )
  3219. )
  3220. characterMakers.push(() => makeCharacter(
  3221. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3222. {
  3223. front: {
  3224. height: math.unit(5 + 5 / 12, "feet"),
  3225. weight: math.unit(75, "kg"),
  3226. name: "Front",
  3227. image: {
  3228. source: "./media/characters/natasha/front.svg",
  3229. extra: 859 / 824,
  3230. bottom: 23 / 879.6
  3231. }
  3232. },
  3233. frontNsfw: {
  3234. height: math.unit(5 + 5 / 12, "feet"),
  3235. weight: math.unit(75, "kg"),
  3236. name: "Front (NSFW)",
  3237. image: {
  3238. source: "./media/characters/natasha/front-nsfw.svg",
  3239. extra: 859 / 824,
  3240. bottom: 23 / 879.6
  3241. }
  3242. },
  3243. frontErect: {
  3244. height: math.unit(5 + 5 / 12, "feet"),
  3245. weight: math.unit(75, "kg"),
  3246. name: "Front (Erect)",
  3247. image: {
  3248. source: "./media/characters/natasha/front-erect.svg",
  3249. extra: 859 / 824,
  3250. bottom: 23 / 879.6
  3251. }
  3252. },
  3253. back: {
  3254. height: math.unit(5 + 5 / 12, "feet"),
  3255. weight: math.unit(75, "kg"),
  3256. name: "Back",
  3257. image: {
  3258. source: "./media/characters/natasha/back.svg",
  3259. extra: 887.9 / 852.6,
  3260. bottom: 9.7 / 896.4
  3261. }
  3262. },
  3263. backAlt: {
  3264. height: math.unit(5 + 5 / 12, "feet"),
  3265. weight: math.unit(75, "kg"),
  3266. name: "Back (Alt)",
  3267. image: {
  3268. source: "./media/characters/natasha/back-alt.svg",
  3269. extra: 1236.7 / 1192,
  3270. bottom: 22.3 / 1258.2
  3271. }
  3272. },
  3273. dick: {
  3274. height: math.unit(1.772, "feet"),
  3275. name: "Dick",
  3276. image: {
  3277. source: "./media/characters/natasha/dick.svg"
  3278. }
  3279. },
  3280. paw: {
  3281. height: math.unit(0.250, "meters"),
  3282. name: "Paw",
  3283. image: {
  3284. source: "./media/characters/natasha/paw.svg"
  3285. },
  3286. extraAttributes: {
  3287. "toeSize": {
  3288. name: "Toe Size",
  3289. power: 2,
  3290. type: "area",
  3291. base: math.unit(0.0024, "m^2")
  3292. },
  3293. "padSize": {
  3294. name: "Pad Size",
  3295. power: 2,
  3296. type: "area",
  3297. base: math.unit(0.00889, "m^2")
  3298. },
  3299. "pawSize": {
  3300. name: "Paw Size",
  3301. power: 2,
  3302. type: "area",
  3303. base: math.unit(0.023667, "m^2")
  3304. },
  3305. }
  3306. },
  3307. },
  3308. [
  3309. {
  3310. name: "Normal",
  3311. height: math.unit(5 + 5 / 12, "feet")
  3312. },
  3313. {
  3314. name: "Large",
  3315. height: math.unit(12, "feet")
  3316. },
  3317. {
  3318. name: "Macro",
  3319. height: math.unit(100, "feet"),
  3320. default: true
  3321. },
  3322. {
  3323. name: "Macro+",
  3324. height: math.unit(260, "feet")
  3325. },
  3326. {
  3327. name: "Macro++",
  3328. height: math.unit(1, "mile")
  3329. },
  3330. ]
  3331. ))
  3332. characterMakers.push(() => makeCharacter(
  3333. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3334. {
  3335. front: {
  3336. height: math.unit(6, "feet"),
  3337. weight: math.unit(75, "kg"),
  3338. name: "Front",
  3339. image: {
  3340. source: "./media/characters/malik/front.svg"
  3341. }
  3342. },
  3343. side: {
  3344. height: math.unit(6, "feet"),
  3345. weight: math.unit(75, "kg"),
  3346. name: "Side",
  3347. image: {
  3348. source: "./media/characters/malik/side.svg",
  3349. extra: 1.1539
  3350. }
  3351. },
  3352. back: {
  3353. height: math.unit(6, "feet"),
  3354. weight: math.unit(75, "kg"),
  3355. name: "Back",
  3356. image: {
  3357. source: "./media/characters/malik/back.svg"
  3358. }
  3359. },
  3360. },
  3361. [
  3362. {
  3363. name: "Macro",
  3364. height: math.unit(156, "feet"),
  3365. default: true
  3366. },
  3367. {
  3368. name: "Macro+",
  3369. height: math.unit(1188, "feet")
  3370. },
  3371. ]
  3372. ))
  3373. characterMakers.push(() => makeCharacter(
  3374. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3375. {
  3376. front: {
  3377. height: math.unit(6, "feet"),
  3378. weight: math.unit(75, "kg"),
  3379. name: "Front",
  3380. image: {
  3381. source: "./media/characters/sefer/front.svg",
  3382. extra: 848 / 659,
  3383. bottom: 28.3 / 876.442
  3384. }
  3385. },
  3386. back: {
  3387. height: math.unit(6, "feet"),
  3388. weight: math.unit(75, "kg"),
  3389. name: "Back",
  3390. image: {
  3391. source: "./media/characters/sefer/back.svg",
  3392. extra: 864 / 695,
  3393. bottom: 10 / 871
  3394. }
  3395. },
  3396. frontDressed: {
  3397. height: math.unit(6, "feet"),
  3398. weight: math.unit(75, "kg"),
  3399. name: "Front (Dressed)",
  3400. image: {
  3401. source: "./media/characters/sefer/front-dressed.svg",
  3402. extra: 839 / 653,
  3403. bottom: 37.6 / 878
  3404. }
  3405. },
  3406. },
  3407. [
  3408. {
  3409. name: "Normal",
  3410. height: math.unit(6, "feet"),
  3411. default: true
  3412. },
  3413. ]
  3414. ))
  3415. characterMakers.push(() => makeCharacter(
  3416. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3417. {
  3418. body: {
  3419. height: math.unit(2.2428, "meter"),
  3420. weight: math.unit(124.738, "kg"),
  3421. name: "Body",
  3422. image: {
  3423. extra: 1225 / 1050,
  3424. source: "./media/characters/north/front.svg"
  3425. }
  3426. }
  3427. },
  3428. [
  3429. {
  3430. name: "Micro",
  3431. height: math.unit(4, "inches")
  3432. },
  3433. {
  3434. name: "Macro",
  3435. height: math.unit(63, "meters")
  3436. },
  3437. {
  3438. name: "Megamacro",
  3439. height: math.unit(101, "miles"),
  3440. default: true
  3441. }
  3442. ]
  3443. ))
  3444. characterMakers.push(() => makeCharacter(
  3445. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3446. {
  3447. angled: {
  3448. height: math.unit(4, "meter"),
  3449. weight: math.unit(150, "kg"),
  3450. name: "Angled",
  3451. image: {
  3452. source: "./media/characters/talan/angled-sfw.svg",
  3453. bottom: 29 / 3734
  3454. }
  3455. },
  3456. angledNsfw: {
  3457. height: math.unit(4, "meter"),
  3458. weight: math.unit(150, "kg"),
  3459. name: "Angled (NSFW)",
  3460. image: {
  3461. source: "./media/characters/talan/angled-nsfw.svg",
  3462. bottom: 29 / 3734
  3463. }
  3464. },
  3465. frontNsfw: {
  3466. height: math.unit(4, "meter"),
  3467. weight: math.unit(150, "kg"),
  3468. name: "Front (NSFW)",
  3469. image: {
  3470. source: "./media/characters/talan/front-nsfw.svg",
  3471. bottom: 29 / 3734
  3472. }
  3473. },
  3474. sideNsfw: {
  3475. height: math.unit(4, "meter"),
  3476. weight: math.unit(150, "kg"),
  3477. name: "Side (NSFW)",
  3478. image: {
  3479. source: "./media/characters/talan/side-nsfw.svg",
  3480. bottom: 29 / 3734
  3481. }
  3482. },
  3483. back: {
  3484. height: math.unit(4, "meter"),
  3485. weight: math.unit(150, "kg"),
  3486. name: "Back",
  3487. image: {
  3488. source: "./media/characters/talan/back.svg"
  3489. }
  3490. },
  3491. dickBottom: {
  3492. height: math.unit(0.621, "meter"),
  3493. name: "Dick (Bottom)",
  3494. image: {
  3495. source: "./media/characters/talan/dick-bottom.svg"
  3496. }
  3497. },
  3498. dickTop: {
  3499. height: math.unit(0.621, "meter"),
  3500. name: "Dick (Top)",
  3501. image: {
  3502. source: "./media/characters/talan/dick-top.svg"
  3503. }
  3504. },
  3505. dickSide: {
  3506. height: math.unit(0.305, "meter"),
  3507. name: "Dick (Side)",
  3508. image: {
  3509. source: "./media/characters/talan/dick-side.svg"
  3510. }
  3511. },
  3512. dickFront: {
  3513. height: math.unit(0.305, "meter"),
  3514. name: "Dick (Front)",
  3515. image: {
  3516. source: "./media/characters/talan/dick-front.svg"
  3517. }
  3518. },
  3519. },
  3520. [
  3521. {
  3522. name: "Normal",
  3523. height: math.unit(4, "meters")
  3524. },
  3525. {
  3526. name: "Macro",
  3527. height: math.unit(100, "meters")
  3528. },
  3529. {
  3530. name: "Megamacro",
  3531. height: math.unit(2, "miles"),
  3532. default: true
  3533. },
  3534. {
  3535. name: "Gigamacro",
  3536. height: math.unit(5000, "miles")
  3537. },
  3538. {
  3539. name: "Teramacro",
  3540. height: math.unit(100, "parsecs")
  3541. }
  3542. ]
  3543. ))
  3544. characterMakers.push(() => makeCharacter(
  3545. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3546. {
  3547. front: {
  3548. height: math.unit(2, "meter"),
  3549. weight: math.unit(90, "kg"),
  3550. name: "Front",
  3551. image: {
  3552. source: "./media/characters/gael'rathus/front.svg"
  3553. }
  3554. },
  3555. frontAlt: {
  3556. height: math.unit(2, "meter"),
  3557. weight: math.unit(90, "kg"),
  3558. name: "Front (alt)",
  3559. image: {
  3560. source: "./media/characters/gael'rathus/front-alt.svg"
  3561. }
  3562. },
  3563. frontAlt2: {
  3564. height: math.unit(2, "meter"),
  3565. weight: math.unit(90, "kg"),
  3566. name: "Front (alt 2)",
  3567. image: {
  3568. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3569. }
  3570. }
  3571. },
  3572. [
  3573. {
  3574. name: "Normal",
  3575. height: math.unit(9, "feet"),
  3576. default: true
  3577. },
  3578. {
  3579. name: "Large",
  3580. height: math.unit(25, "feet")
  3581. },
  3582. {
  3583. name: "Macro",
  3584. height: math.unit(0.25, "miles")
  3585. },
  3586. {
  3587. name: "Megamacro",
  3588. height: math.unit(10, "miles")
  3589. }
  3590. ]
  3591. ))
  3592. characterMakers.push(() => makeCharacter(
  3593. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3594. {
  3595. side: {
  3596. height: math.unit(2, "meter"),
  3597. weight: math.unit(140, "kg"),
  3598. name: "Side",
  3599. image: {
  3600. source: "./media/characters/sosha/side.svg",
  3601. bottom: 0.042
  3602. }
  3603. },
  3604. },
  3605. [
  3606. {
  3607. name: "Normal",
  3608. height: math.unit(12, "feet"),
  3609. default: true
  3610. }
  3611. ]
  3612. ))
  3613. characterMakers.push(() => makeCharacter(
  3614. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3615. {
  3616. side: {
  3617. height: math.unit(5 + 5 / 12, "feet"),
  3618. weight: math.unit(170, "kg"),
  3619. name: "Side",
  3620. image: {
  3621. source: "./media/characters/runnola/side.svg",
  3622. extra: 741 / 448,
  3623. bottom: 0.05
  3624. }
  3625. },
  3626. },
  3627. [
  3628. {
  3629. name: "Small",
  3630. height: math.unit(3, "feet")
  3631. },
  3632. {
  3633. name: "Normal",
  3634. height: math.unit(5 + 5 / 12, "feet"),
  3635. default: true
  3636. },
  3637. {
  3638. name: "Big",
  3639. height: math.unit(10, "feet")
  3640. },
  3641. ]
  3642. ))
  3643. characterMakers.push(() => makeCharacter(
  3644. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3645. {
  3646. front: {
  3647. height: math.unit(2, "meter"),
  3648. weight: math.unit(50, "kg"),
  3649. name: "Front",
  3650. image: {
  3651. source: "./media/characters/kurribird/front.svg",
  3652. bottom: 0.015
  3653. }
  3654. },
  3655. frontAlt: {
  3656. height: math.unit(1.5, "meter"),
  3657. weight: math.unit(50, "kg"),
  3658. name: "Front (Alt)",
  3659. image: {
  3660. source: "./media/characters/kurribird/front-alt.svg",
  3661. extra: 1.45
  3662. }
  3663. },
  3664. },
  3665. [
  3666. {
  3667. name: "Normal",
  3668. height: math.unit(7, "feet")
  3669. },
  3670. {
  3671. name: "Big",
  3672. height: math.unit(12, "feet"),
  3673. default: true
  3674. },
  3675. {
  3676. name: "Macro",
  3677. height: math.unit(1500, "feet")
  3678. },
  3679. {
  3680. name: "Megamacro",
  3681. height: math.unit(2, "miles")
  3682. }
  3683. ]
  3684. ))
  3685. characterMakers.push(() => makeCharacter(
  3686. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3687. {
  3688. front: {
  3689. height: math.unit(2, "meter"),
  3690. weight: math.unit(80, "kg"),
  3691. name: "Front",
  3692. image: {
  3693. source: "./media/characters/elbial/front.svg",
  3694. extra: 1643 / 1556,
  3695. bottom: 60.2 / 1696
  3696. }
  3697. },
  3698. side: {
  3699. height: math.unit(2, "meter"),
  3700. weight: math.unit(80, "kg"),
  3701. name: "Side",
  3702. image: {
  3703. source: "./media/characters/elbial/side.svg",
  3704. extra: 1601/1528,
  3705. bottom: 97/1698
  3706. }
  3707. },
  3708. back: {
  3709. height: math.unit(2, "meter"),
  3710. weight: math.unit(80, "kg"),
  3711. name: "Back",
  3712. image: {
  3713. source: "./media/characters/elbial/back.svg",
  3714. extra: 1653/1569,
  3715. bottom: 20/1673
  3716. }
  3717. },
  3718. frontDressed: {
  3719. height: math.unit(2, "meter"),
  3720. weight: math.unit(80, "kg"),
  3721. name: "Front (Dressed)",
  3722. image: {
  3723. source: "./media/characters/elbial/front-dressed.svg",
  3724. extra: 1638/1569,
  3725. bottom: 70/1708
  3726. }
  3727. },
  3728. genitals: {
  3729. height: math.unit(2 / 3.367, "meter"),
  3730. name: "Genitals",
  3731. image: {
  3732. source: "./media/characters/elbial/genitals.svg"
  3733. }
  3734. },
  3735. },
  3736. [
  3737. {
  3738. name: "Large",
  3739. height: math.unit(100, "feet")
  3740. },
  3741. {
  3742. name: "Macro",
  3743. height: math.unit(500, "feet"),
  3744. default: true
  3745. },
  3746. {
  3747. name: "Megamacro",
  3748. height: math.unit(10, "miles")
  3749. },
  3750. {
  3751. name: "Gigamacro",
  3752. height: math.unit(25000, "miles")
  3753. },
  3754. {
  3755. name: "Full-Size",
  3756. height: math.unit(8000000, "gigaparsecs")
  3757. }
  3758. ]
  3759. ))
  3760. characterMakers.push(() => makeCharacter(
  3761. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3762. {
  3763. front: {
  3764. height: math.unit(2, "meter"),
  3765. weight: math.unit(60, "kg"),
  3766. name: "Front",
  3767. image: {
  3768. source: "./media/characters/noah/front.svg"
  3769. }
  3770. },
  3771. talons: {
  3772. height: math.unit(0.315, "meter"),
  3773. name: "Talons",
  3774. image: {
  3775. source: "./media/characters/noah/talons.svg"
  3776. }
  3777. }
  3778. },
  3779. [
  3780. {
  3781. name: "Large",
  3782. height: math.unit(50, "feet")
  3783. },
  3784. {
  3785. name: "Macro",
  3786. height: math.unit(750, "feet"),
  3787. default: true
  3788. },
  3789. {
  3790. name: "Megamacro",
  3791. height: math.unit(50, "miles")
  3792. },
  3793. {
  3794. name: "Gigamacro",
  3795. height: math.unit(100000, "miles")
  3796. },
  3797. {
  3798. name: "Full-Size",
  3799. height: math.unit(3000000000, "miles")
  3800. }
  3801. ]
  3802. ))
  3803. characterMakers.push(() => makeCharacter(
  3804. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3805. {
  3806. front: {
  3807. height: math.unit(2, "meter"),
  3808. weight: math.unit(80, "kg"),
  3809. name: "Front",
  3810. image: {
  3811. source: "./media/characters/natalya/front.svg"
  3812. }
  3813. },
  3814. back: {
  3815. height: math.unit(2, "meter"),
  3816. weight: math.unit(80, "kg"),
  3817. name: "Back",
  3818. image: {
  3819. source: "./media/characters/natalya/back.svg"
  3820. }
  3821. }
  3822. },
  3823. [
  3824. {
  3825. name: "Normal",
  3826. height: math.unit(150, "feet"),
  3827. default: true
  3828. },
  3829. {
  3830. name: "Megamacro",
  3831. height: math.unit(5, "miles")
  3832. },
  3833. {
  3834. name: "Full-Size",
  3835. height: math.unit(600, "kiloparsecs")
  3836. }
  3837. ]
  3838. ))
  3839. characterMakers.push(() => makeCharacter(
  3840. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3841. {
  3842. front: {
  3843. height: math.unit(2, "meter"),
  3844. weight: math.unit(50, "kg"),
  3845. name: "Front",
  3846. image: {
  3847. source: "./media/characters/erestrebah/front.svg",
  3848. extra: 1262/1162,
  3849. bottom: 96/1358
  3850. }
  3851. },
  3852. back: {
  3853. height: math.unit(2, "meter"),
  3854. weight: math.unit(50, "kg"),
  3855. name: "Back",
  3856. image: {
  3857. source: "./media/characters/erestrebah/back.svg",
  3858. extra: 1257/1139,
  3859. bottom: 13/1270
  3860. }
  3861. },
  3862. wing: {
  3863. height: math.unit(2, "meter"),
  3864. weight: math.unit(50, "kg"),
  3865. name: "Wing",
  3866. image: {
  3867. source: "./media/characters/erestrebah/wing.svg",
  3868. extra: 1262/1162,
  3869. bottom: 96/1358
  3870. }
  3871. },
  3872. mouth: {
  3873. height: math.unit(0.39, "feet"),
  3874. name: "Mouth",
  3875. image: {
  3876. source: "./media/characters/erestrebah/mouth.svg"
  3877. }
  3878. }
  3879. },
  3880. [
  3881. {
  3882. name: "Normal",
  3883. height: math.unit(10, "feet")
  3884. },
  3885. {
  3886. name: "Large",
  3887. height: math.unit(50, "feet"),
  3888. default: true
  3889. },
  3890. {
  3891. name: "Macro",
  3892. height: math.unit(300, "feet")
  3893. },
  3894. {
  3895. name: "Macro+",
  3896. height: math.unit(750, "feet")
  3897. },
  3898. {
  3899. name: "Megamacro",
  3900. height: math.unit(3, "miles")
  3901. }
  3902. ]
  3903. ))
  3904. characterMakers.push(() => makeCharacter(
  3905. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3906. {
  3907. front: {
  3908. height: math.unit(2, "meter"),
  3909. weight: math.unit(80, "kg"),
  3910. name: "Front",
  3911. image: {
  3912. source: "./media/characters/jennifer/front.svg",
  3913. bottom: 0.11,
  3914. extra: 1.16
  3915. }
  3916. },
  3917. frontAlt: {
  3918. height: math.unit(2, "meter"),
  3919. weight: math.unit(80, "kg"),
  3920. name: "Front (Alt)",
  3921. image: {
  3922. source: "./media/characters/jennifer/front-alt.svg"
  3923. }
  3924. }
  3925. },
  3926. [
  3927. {
  3928. name: "Canon Height",
  3929. height: math.unit(120, "feet"),
  3930. default: true
  3931. },
  3932. {
  3933. name: "Macro+",
  3934. height: math.unit(300, "feet")
  3935. },
  3936. {
  3937. name: "Megamacro",
  3938. height: math.unit(20000, "feet")
  3939. }
  3940. ]
  3941. ))
  3942. characterMakers.push(() => makeCharacter(
  3943. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3944. {
  3945. front: {
  3946. height: math.unit(2, "meter"),
  3947. weight: math.unit(50, "kg"),
  3948. name: "Front",
  3949. image: {
  3950. source: "./media/characters/kalista/front.svg",
  3951. extra: 1314/1145,
  3952. bottom: 101/1415
  3953. }
  3954. },
  3955. back: {
  3956. height: math.unit(2, "meter"),
  3957. weight: math.unit(50, "kg"),
  3958. name: "Back",
  3959. image: {
  3960. source: "./media/characters/kalista/back.svg",
  3961. extra: 1366 / 1156,
  3962. bottom: 33.9 / 1362.78
  3963. }
  3964. }
  3965. },
  3966. [
  3967. {
  3968. name: "Uncomfortably Small",
  3969. height: math.unit(10, "feet")
  3970. },
  3971. {
  3972. name: "Small",
  3973. height: math.unit(30, "feet")
  3974. },
  3975. {
  3976. name: "Macro",
  3977. height: math.unit(100, "feet"),
  3978. default: true
  3979. },
  3980. {
  3981. name: "Macro+",
  3982. height: math.unit(2000, "feet")
  3983. },
  3984. {
  3985. name: "True Form",
  3986. height: math.unit(8924, "miles")
  3987. }
  3988. ]
  3989. ))
  3990. characterMakers.push(() => makeCharacter(
  3991. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3992. {
  3993. front: {
  3994. height: math.unit(2, "meter"),
  3995. weight: math.unit(120, "kg"),
  3996. name: "Front",
  3997. image: {
  3998. source: "./media/characters/ggv/front.svg"
  3999. }
  4000. },
  4001. side: {
  4002. height: math.unit(2, "meter"),
  4003. weight: math.unit(120, "kg"),
  4004. name: "Side",
  4005. image: {
  4006. source: "./media/characters/ggv/side.svg"
  4007. }
  4008. }
  4009. },
  4010. [
  4011. {
  4012. name: "Extremely Puny",
  4013. height: math.unit(9 + 5 / 12, "feet")
  4014. },
  4015. {
  4016. name: "Horribly Small",
  4017. height: math.unit(47.7, "miles"),
  4018. default: true
  4019. },
  4020. {
  4021. name: "Reasonably Sized",
  4022. height: math.unit(25000, "parsecs")
  4023. },
  4024. {
  4025. name: "Slightly Uncompressed",
  4026. height: math.unit(7.77e31, "parsecs")
  4027. },
  4028. {
  4029. name: "Omniversal",
  4030. height: math.unit(1e300, "meters")
  4031. },
  4032. ]
  4033. ))
  4034. characterMakers.push(() => makeCharacter(
  4035. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  4036. {
  4037. front: {
  4038. height: math.unit(2, "meter"),
  4039. weight: math.unit(75, "lb"),
  4040. name: "Front",
  4041. image: {
  4042. source: "./media/characters/napalm/front.svg"
  4043. }
  4044. },
  4045. back: {
  4046. height: math.unit(2, "meter"),
  4047. weight: math.unit(75, "lb"),
  4048. name: "Back",
  4049. image: {
  4050. source: "./media/characters/napalm/back.svg"
  4051. }
  4052. }
  4053. },
  4054. [
  4055. {
  4056. name: "Standard",
  4057. height: math.unit(55, "feet"),
  4058. default: true
  4059. }
  4060. ]
  4061. ))
  4062. characterMakers.push(() => makeCharacter(
  4063. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  4064. {
  4065. front: {
  4066. height: math.unit(7 + 5 / 6, "feet"),
  4067. weight: math.unit(325, "lb"),
  4068. name: "Front",
  4069. image: {
  4070. source: "./media/characters/asana/front.svg",
  4071. extra: 1133 / 1060,
  4072. bottom: 15.2 / 1148.6
  4073. }
  4074. },
  4075. back: {
  4076. height: math.unit(7 + 5 / 6, "feet"),
  4077. weight: math.unit(325, "lb"),
  4078. name: "Back",
  4079. image: {
  4080. source: "./media/characters/asana/back.svg",
  4081. extra: 1114 / 1043,
  4082. bottom: 5 / 1120
  4083. }
  4084. },
  4085. dressedDark: {
  4086. height: math.unit(7 + 5 / 6, "feet"),
  4087. weight: math.unit(325, "lb"),
  4088. name: "Dressed (Dark)",
  4089. image: {
  4090. source: "./media/characters/asana/dressed-dark.svg",
  4091. extra: 1133 / 1060,
  4092. bottom: 15.2 / 1148.6
  4093. }
  4094. },
  4095. dressedLight: {
  4096. height: math.unit(7 + 5 / 6, "feet"),
  4097. weight: math.unit(325, "lb"),
  4098. name: "Dressed (Light)",
  4099. image: {
  4100. source: "./media/characters/asana/dressed-light.svg",
  4101. extra: 1133 / 1060,
  4102. bottom: 15.2 / 1148.6
  4103. }
  4104. },
  4105. },
  4106. [
  4107. {
  4108. name: "Standard",
  4109. height: math.unit(7 + 5 / 6, "feet"),
  4110. default: true
  4111. },
  4112. {
  4113. name: "Large",
  4114. height: math.unit(10, "meters")
  4115. },
  4116. {
  4117. name: "Macro",
  4118. height: math.unit(2500, "meters")
  4119. },
  4120. {
  4121. name: "Megamacro",
  4122. height: math.unit(5e6, "meters")
  4123. },
  4124. {
  4125. name: "Examacro",
  4126. height: math.unit(5e12, "lightyears")
  4127. },
  4128. {
  4129. name: "Max Size",
  4130. height: math.unit(1e31, "lightyears")
  4131. }
  4132. ]
  4133. ))
  4134. characterMakers.push(() => makeCharacter(
  4135. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  4136. {
  4137. front: {
  4138. height: math.unit(2, "meter"),
  4139. weight: math.unit(60, "kg"),
  4140. name: "Front",
  4141. image: {
  4142. source: "./media/characters/ebony/front.svg",
  4143. bottom: 0.03,
  4144. extra: 1045 / 810 + 0.03
  4145. }
  4146. },
  4147. side: {
  4148. height: math.unit(2, "meter"),
  4149. weight: math.unit(60, "kg"),
  4150. name: "Side",
  4151. image: {
  4152. source: "./media/characters/ebony/side.svg",
  4153. bottom: 0.03,
  4154. extra: 1045 / 810 + 0.03
  4155. }
  4156. },
  4157. back: {
  4158. height: math.unit(2, "meter"),
  4159. weight: math.unit(60, "kg"),
  4160. name: "Back",
  4161. image: {
  4162. source: "./media/characters/ebony/back.svg",
  4163. bottom: 0.01,
  4164. extra: 1045 / 810 + 0.01
  4165. }
  4166. },
  4167. },
  4168. [
  4169. // TODO check why I did this lol
  4170. {
  4171. name: "Standard",
  4172. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  4173. default: true
  4174. },
  4175. {
  4176. name: "Macro",
  4177. height: math.unit(200, "feet")
  4178. },
  4179. {
  4180. name: "Gigamacro",
  4181. height: math.unit(13000, "km")
  4182. }
  4183. ]
  4184. ))
  4185. characterMakers.push(() => makeCharacter(
  4186. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4187. {
  4188. front: {
  4189. height: math.unit(6, "feet"),
  4190. weight: math.unit(175, "lb"),
  4191. name: "Front",
  4192. image: {
  4193. source: "./media/characters/mountain/front.svg",
  4194. extra: 972 / 955,
  4195. bottom: 64 / 1036.6
  4196. }
  4197. },
  4198. back: {
  4199. height: math.unit(6, "feet"),
  4200. weight: math.unit(175, "lb"),
  4201. name: "Back",
  4202. image: {
  4203. source: "./media/characters/mountain/back.svg",
  4204. extra: 970 / 950,
  4205. bottom: 28.25 / 999
  4206. }
  4207. },
  4208. },
  4209. [
  4210. {
  4211. name: "Large",
  4212. height: math.unit(20, "meters")
  4213. },
  4214. {
  4215. name: "Macro",
  4216. height: math.unit(300, "meters")
  4217. },
  4218. {
  4219. name: "Gigamacro",
  4220. height: math.unit(10000, "km"),
  4221. default: true
  4222. },
  4223. {
  4224. name: "Examacro",
  4225. height: math.unit(10e9, "lightyears")
  4226. }
  4227. ]
  4228. ))
  4229. characterMakers.push(() => makeCharacter(
  4230. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4231. {
  4232. front: {
  4233. height: math.unit(8, "feet"),
  4234. weight: math.unit(500, "lb"),
  4235. name: "Front",
  4236. image: {
  4237. source: "./media/characters/rick/front.svg"
  4238. }
  4239. }
  4240. },
  4241. [
  4242. {
  4243. name: "Normal",
  4244. height: math.unit(8, "feet"),
  4245. default: true
  4246. },
  4247. {
  4248. name: "Macro",
  4249. height: math.unit(5, "km")
  4250. }
  4251. ]
  4252. ))
  4253. characterMakers.push(() => makeCharacter(
  4254. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4255. {
  4256. front: {
  4257. height: math.unit(8, "feet"),
  4258. weight: math.unit(120, "lb"),
  4259. name: "Front",
  4260. image: {
  4261. source: "./media/characters/ona/front.svg"
  4262. }
  4263. },
  4264. frontAlt: {
  4265. height: math.unit(8, "feet"),
  4266. weight: math.unit(120, "lb"),
  4267. name: "Front (Alt)",
  4268. image: {
  4269. source: "./media/characters/ona/front-alt.svg"
  4270. }
  4271. },
  4272. back: {
  4273. height: math.unit(8, "feet"),
  4274. weight: math.unit(120, "lb"),
  4275. name: "Back",
  4276. image: {
  4277. source: "./media/characters/ona/back.svg"
  4278. }
  4279. },
  4280. foot: {
  4281. height: math.unit(1.1, "feet"),
  4282. name: "Foot",
  4283. image: {
  4284. source: "./media/characters/ona/foot.svg"
  4285. }
  4286. }
  4287. },
  4288. [
  4289. {
  4290. name: "Megamacro",
  4291. height: math.unit(70, "km"),
  4292. default: true
  4293. },
  4294. {
  4295. name: "Gigamacro",
  4296. height: math.unit(681818, "miles")
  4297. },
  4298. {
  4299. name: "Examacro",
  4300. height: math.unit(3800000, "lightyears")
  4301. },
  4302. ]
  4303. ))
  4304. characterMakers.push(() => makeCharacter(
  4305. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  4306. {
  4307. front: {
  4308. height: math.unit(12, "feet"),
  4309. weight: math.unit(3000, "lb"),
  4310. name: "Front",
  4311. image: {
  4312. source: "./media/characters/mech/front.svg",
  4313. extra: 2900 / 2770,
  4314. bottom: 110 / 3010
  4315. }
  4316. },
  4317. back: {
  4318. height: math.unit(12, "feet"),
  4319. weight: math.unit(3000, "lb"),
  4320. name: "Back",
  4321. image: {
  4322. source: "./media/characters/mech/back.svg",
  4323. extra: 3011 / 2890,
  4324. bottom: 94 / 3105
  4325. }
  4326. },
  4327. maw: {
  4328. height: math.unit(3.07, "feet"),
  4329. name: "Maw",
  4330. image: {
  4331. source: "./media/characters/mech/maw.svg"
  4332. }
  4333. },
  4334. head: {
  4335. height: math.unit(2.82, "feet"),
  4336. name: "Head",
  4337. image: {
  4338. source: "./media/characters/mech/head.svg"
  4339. }
  4340. },
  4341. dick: {
  4342. height: math.unit(1.43, "feet"),
  4343. name: "Dick",
  4344. image: {
  4345. source: "./media/characters/mech/dick.svg"
  4346. }
  4347. },
  4348. },
  4349. [
  4350. {
  4351. name: "Normal",
  4352. height: math.unit(12, "feet")
  4353. },
  4354. {
  4355. name: "Macro",
  4356. height: math.unit(300, "feet"),
  4357. default: true
  4358. },
  4359. {
  4360. name: "Macro+",
  4361. height: math.unit(1500, "feet")
  4362. },
  4363. ]
  4364. ))
  4365. characterMakers.push(() => makeCharacter(
  4366. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  4367. {
  4368. front: {
  4369. height: math.unit(1.3, "meter"),
  4370. weight: math.unit(30, "kg"),
  4371. name: "Front",
  4372. image: {
  4373. source: "./media/characters/gregory/front.svg",
  4374. }
  4375. }
  4376. },
  4377. [
  4378. {
  4379. name: "Normal",
  4380. height: math.unit(1.3, "meter"),
  4381. default: true
  4382. },
  4383. {
  4384. name: "Macro",
  4385. height: math.unit(20, "meter")
  4386. }
  4387. ]
  4388. ))
  4389. characterMakers.push(() => makeCharacter(
  4390. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  4391. {
  4392. front: {
  4393. height: math.unit(2.8, "meter"),
  4394. weight: math.unit(200, "kg"),
  4395. name: "Front",
  4396. image: {
  4397. source: "./media/characters/elory/front.svg",
  4398. }
  4399. }
  4400. },
  4401. [
  4402. {
  4403. name: "Normal",
  4404. height: math.unit(2.8, "meter"),
  4405. default: true
  4406. },
  4407. {
  4408. name: "Macro",
  4409. height: math.unit(38, "meter")
  4410. }
  4411. ]
  4412. ))
  4413. characterMakers.push(() => makeCharacter(
  4414. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4415. {
  4416. front: {
  4417. height: math.unit(470, "feet"),
  4418. weight: math.unit(924, "tons"),
  4419. name: "Front",
  4420. image: {
  4421. source: "./media/characters/angelpatamon/front.svg",
  4422. }
  4423. }
  4424. },
  4425. [
  4426. {
  4427. name: "Normal",
  4428. height: math.unit(470, "feet"),
  4429. default: true
  4430. },
  4431. {
  4432. name: "Deity Size I",
  4433. height: math.unit(28651.2, "km")
  4434. },
  4435. {
  4436. name: "Deity Size II",
  4437. height: math.unit(171907.2, "km")
  4438. }
  4439. ]
  4440. ))
  4441. characterMakers.push(() => makeCharacter(
  4442. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4443. {
  4444. side: {
  4445. height: math.unit(7.2, "meter"),
  4446. weight: math.unit(8.2, "tons"),
  4447. name: "Side",
  4448. image: {
  4449. source: "./media/characters/cryae/side.svg",
  4450. extra: 3500 / 1500
  4451. }
  4452. }
  4453. },
  4454. [
  4455. {
  4456. name: "Normal",
  4457. height: math.unit(7.2, "meter"),
  4458. default: true
  4459. }
  4460. ]
  4461. ))
  4462. characterMakers.push(() => makeCharacter(
  4463. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4464. {
  4465. front: {
  4466. height: math.unit(6, "feet"),
  4467. weight: math.unit(175, "lb"),
  4468. name: "Front",
  4469. image: {
  4470. source: "./media/characters/xera/front.svg",
  4471. extra: 2377 / 1972,
  4472. bottom: 75.5 / 2452
  4473. }
  4474. },
  4475. side: {
  4476. height: math.unit(6, "feet"),
  4477. weight: math.unit(175, "lb"),
  4478. name: "Side",
  4479. image: {
  4480. source: "./media/characters/xera/side.svg",
  4481. extra: 2345 / 2019,
  4482. bottom: 39.7 / 2384
  4483. }
  4484. },
  4485. back: {
  4486. height: math.unit(6, "feet"),
  4487. weight: math.unit(175, "lb"),
  4488. name: "Back",
  4489. image: {
  4490. source: "./media/characters/xera/back.svg",
  4491. extra: 2095 / 1984,
  4492. bottom: 67 / 2166
  4493. }
  4494. },
  4495. },
  4496. [
  4497. {
  4498. name: "Small",
  4499. height: math.unit(10, "feet")
  4500. },
  4501. {
  4502. name: "Macro",
  4503. height: math.unit(500, "meters"),
  4504. default: true
  4505. },
  4506. {
  4507. name: "Macro+",
  4508. height: math.unit(10, "km")
  4509. },
  4510. {
  4511. name: "Gigamacro",
  4512. height: math.unit(25000, "km")
  4513. },
  4514. {
  4515. name: "Teramacro",
  4516. height: math.unit(3e6, "km")
  4517. }
  4518. ]
  4519. ))
  4520. characterMakers.push(() => makeCharacter(
  4521. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4522. {
  4523. front: {
  4524. height: math.unit(6, "feet"),
  4525. weight: math.unit(175, "lb"),
  4526. name: "Front",
  4527. image: {
  4528. source: "./media/characters/nebula/front.svg",
  4529. extra: 2566 / 2362,
  4530. bottom: 81 / 2644
  4531. }
  4532. }
  4533. },
  4534. [
  4535. {
  4536. name: "Small",
  4537. height: math.unit(4.5, "meters")
  4538. },
  4539. {
  4540. name: "Macro",
  4541. height: math.unit(1500, "meters"),
  4542. default: true
  4543. },
  4544. {
  4545. name: "Megamacro",
  4546. height: math.unit(150, "km")
  4547. },
  4548. {
  4549. name: "Gigamacro",
  4550. height: math.unit(27000, "km")
  4551. }
  4552. ]
  4553. ))
  4554. characterMakers.push(() => makeCharacter(
  4555. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4556. {
  4557. front: {
  4558. height: math.unit(6, "feet"),
  4559. weight: math.unit(225, "lb"),
  4560. name: "Front",
  4561. image: {
  4562. source: "./media/characters/abysgar/front.svg",
  4563. extra: 1739/1614,
  4564. bottom: 71/1810
  4565. }
  4566. },
  4567. frontNsfw: {
  4568. height: math.unit(6, "feet"),
  4569. weight: math.unit(225, "lb"),
  4570. name: "Front (NSFW)",
  4571. image: {
  4572. source: "./media/characters/abysgar/front-nsfw.svg",
  4573. extra: 1739/1614,
  4574. bottom: 71/1810
  4575. }
  4576. },
  4577. back: {
  4578. height: math.unit(4.6, "feet"),
  4579. weight: math.unit(225, "lb"),
  4580. name: "Back",
  4581. image: {
  4582. source: "./media/characters/abysgar/back.svg",
  4583. extra: 1384/1327,
  4584. bottom: 0/1384
  4585. }
  4586. },
  4587. head: {
  4588. height: math.unit(1.25, "feet"),
  4589. name: "Head",
  4590. image: {
  4591. source: "./media/characters/abysgar/head.svg",
  4592. extra: 669/569,
  4593. bottom: 0/669
  4594. }
  4595. },
  4596. },
  4597. [
  4598. {
  4599. name: "Small",
  4600. height: math.unit(4.5, "meters")
  4601. },
  4602. {
  4603. name: "Macro",
  4604. height: math.unit(1250, "meters"),
  4605. default: true
  4606. },
  4607. {
  4608. name: "Megamacro",
  4609. height: math.unit(125, "km")
  4610. },
  4611. {
  4612. name: "Gigamacro",
  4613. height: math.unit(26000, "km")
  4614. }
  4615. ]
  4616. ))
  4617. characterMakers.push(() => makeCharacter(
  4618. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  4619. {
  4620. front: {
  4621. height: math.unit(6, "feet"),
  4622. weight: math.unit(180, "lb"),
  4623. name: "Front",
  4624. image: {
  4625. source: "./media/characters/yakuz/front.svg"
  4626. }
  4627. }
  4628. },
  4629. [
  4630. {
  4631. name: "Small",
  4632. height: math.unit(5, "meters")
  4633. },
  4634. {
  4635. name: "Macro",
  4636. height: math.unit(1500, "meters"),
  4637. default: true
  4638. },
  4639. {
  4640. name: "Megamacro",
  4641. height: math.unit(200, "km")
  4642. },
  4643. {
  4644. name: "Gigamacro",
  4645. height: math.unit(100000, "km")
  4646. }
  4647. ]
  4648. ))
  4649. characterMakers.push(() => makeCharacter(
  4650. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4651. {
  4652. front: {
  4653. height: math.unit(6, "feet"),
  4654. weight: math.unit(175, "lb"),
  4655. name: "Front",
  4656. image: {
  4657. source: "./media/characters/mirova/front.svg",
  4658. extra: 3334 / 3071,
  4659. bottom: 42 / 3375.6
  4660. }
  4661. }
  4662. },
  4663. [
  4664. {
  4665. name: "Small",
  4666. height: math.unit(5, "meters")
  4667. },
  4668. {
  4669. name: "Macro",
  4670. height: math.unit(900, "meters"),
  4671. default: true
  4672. },
  4673. {
  4674. name: "Megamacro",
  4675. height: math.unit(135, "km")
  4676. },
  4677. {
  4678. name: "Gigamacro",
  4679. height: math.unit(20000, "km")
  4680. }
  4681. ]
  4682. ))
  4683. characterMakers.push(() => makeCharacter(
  4684. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4685. {
  4686. side: {
  4687. height: math.unit(28.35, "feet"),
  4688. weight: math.unit(99.75, "tons"),
  4689. name: "Side",
  4690. image: {
  4691. source: "./media/characters/asana-mech/side.svg",
  4692. extra: 923 / 699,
  4693. bottom: 50 / 975
  4694. }
  4695. },
  4696. chaingun: {
  4697. height: math.unit(7, "feet"),
  4698. weight: math.unit(2400, "lb"),
  4699. name: "Chaingun",
  4700. image: {
  4701. source: "./media/characters/asana-mech/chaingun.svg"
  4702. }
  4703. },
  4704. laser: {
  4705. height: math.unit(7.12, "feet"),
  4706. weight: math.unit(2000, "lb"),
  4707. name: "Laser",
  4708. image: {
  4709. source: "./media/characters/asana-mech/laser.svg"
  4710. }
  4711. },
  4712. },
  4713. [
  4714. {
  4715. name: "Normal",
  4716. height: math.unit(28.35, "feet"),
  4717. default: true
  4718. },
  4719. {
  4720. name: "Macro",
  4721. height: math.unit(2500, "feet")
  4722. },
  4723. {
  4724. name: "Megamacro",
  4725. height: math.unit(25, "miles")
  4726. },
  4727. {
  4728. name: "Examacro",
  4729. height: math.unit(6e8, "lightyears")
  4730. },
  4731. ]
  4732. ))
  4733. characterMakers.push(() => makeCharacter(
  4734. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4735. {
  4736. front: {
  4737. height: math.unit(5, "meters"),
  4738. weight: math.unit(1000, "kg"),
  4739. name: "Front",
  4740. image: {
  4741. source: "./media/characters/asche/front.svg",
  4742. extra: 1258 / 1190,
  4743. bottom: 47 / 1305
  4744. }
  4745. },
  4746. frontUnderwear: {
  4747. height: math.unit(5, "meters"),
  4748. weight: math.unit(1000, "kg"),
  4749. name: "Front (Underwear)",
  4750. image: {
  4751. source: "./media/characters/asche/front-underwear.svg",
  4752. extra: 1258 / 1190,
  4753. bottom: 47 / 1305
  4754. }
  4755. },
  4756. frontDressed: {
  4757. height: math.unit(5, "meters"),
  4758. weight: math.unit(1000, "kg"),
  4759. name: "Front (Dressed)",
  4760. image: {
  4761. source: "./media/characters/asche/front-dressed.svg",
  4762. extra: 1258 / 1190,
  4763. bottom: 47 / 1305
  4764. }
  4765. },
  4766. frontArmor: {
  4767. height: math.unit(5, "meters"),
  4768. weight: math.unit(1000, "kg"),
  4769. name: "Front (Armored)",
  4770. image: {
  4771. source: "./media/characters/asche/front-armored.svg",
  4772. extra: 1374 / 1308,
  4773. bottom: 23 / 1397
  4774. }
  4775. },
  4776. mp724: {
  4777. height: math.unit(0.96, "meters"),
  4778. weight: math.unit(38, "kg"),
  4779. name: "H&K MP724",
  4780. image: {
  4781. source: "./media/characters/asche/h&k-mp724.svg"
  4782. }
  4783. },
  4784. side: {
  4785. height: math.unit(5, "meters"),
  4786. weight: math.unit(1000, "kg"),
  4787. name: "Side",
  4788. image: {
  4789. source: "./media/characters/asche/side.svg",
  4790. extra: 1717 / 1609,
  4791. bottom: 0.005
  4792. }
  4793. },
  4794. back: {
  4795. height: math.unit(5, "meters"),
  4796. weight: math.unit(1000, "kg"),
  4797. name: "Back",
  4798. image: {
  4799. source: "./media/characters/asche/back.svg",
  4800. extra: 1570 / 1501
  4801. }
  4802. },
  4803. },
  4804. [
  4805. {
  4806. name: "DEFCON 5",
  4807. height: math.unit(5, "meters")
  4808. },
  4809. {
  4810. name: "DEFCON 4",
  4811. height: math.unit(500, "meters"),
  4812. default: true
  4813. },
  4814. {
  4815. name: "DEFCON 3",
  4816. height: math.unit(5, "km")
  4817. },
  4818. {
  4819. name: "DEFCON 2",
  4820. height: math.unit(500, "km")
  4821. },
  4822. {
  4823. name: "DEFCON 1",
  4824. height: math.unit(500000, "km")
  4825. },
  4826. {
  4827. name: "DEFCON 0",
  4828. height: math.unit(3, "gigaparsecs")
  4829. },
  4830. ]
  4831. ))
  4832. characterMakers.push(() => makeCharacter(
  4833. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4834. {
  4835. front: {
  4836. height: math.unit(2, "meters"),
  4837. weight: math.unit(76, "kg"),
  4838. name: "Front",
  4839. image: {
  4840. source: "./media/characters/gale/front.svg"
  4841. }
  4842. },
  4843. frontAlt1: {
  4844. height: math.unit(2, "meters"),
  4845. weight: math.unit(76, "kg"),
  4846. name: "Front (Alt 1)",
  4847. image: {
  4848. source: "./media/characters/gale/front-alt-1.svg"
  4849. }
  4850. },
  4851. frontAlt2: {
  4852. height: math.unit(2, "meters"),
  4853. weight: math.unit(76, "kg"),
  4854. name: "Front (Alt 2)",
  4855. image: {
  4856. source: "./media/characters/gale/front-alt-2.svg"
  4857. }
  4858. },
  4859. },
  4860. [
  4861. {
  4862. name: "Normal",
  4863. height: math.unit(7, "feet")
  4864. },
  4865. {
  4866. name: "Macro",
  4867. height: math.unit(150, "feet"),
  4868. default: true
  4869. },
  4870. {
  4871. name: "Macro+",
  4872. height: math.unit(300, "feet")
  4873. },
  4874. ]
  4875. ))
  4876. characterMakers.push(() => makeCharacter(
  4877. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4878. {
  4879. front: {
  4880. height: math.unit(5 + 10/12, "feet"),
  4881. weight: math.unit(67, "kg"),
  4882. name: "Front",
  4883. image: {
  4884. source: "./media/characters/draylen/front.svg",
  4885. extra: 832/777,
  4886. bottom: 85/917
  4887. }
  4888. }
  4889. },
  4890. [
  4891. {
  4892. name: "Normal",
  4893. height: math.unit(5 + 10/12, "feet")
  4894. },
  4895. {
  4896. name: "Macro",
  4897. height: math.unit(150, "feet"),
  4898. default: true
  4899. }
  4900. ]
  4901. ))
  4902. characterMakers.push(() => makeCharacter(
  4903. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4904. {
  4905. front: {
  4906. height: math.unit(7 + 9 / 12, "feet"),
  4907. weight: math.unit(379, "lbs"),
  4908. name: "Front",
  4909. image: {
  4910. source: "./media/characters/chez/front.svg"
  4911. }
  4912. },
  4913. side: {
  4914. height: math.unit(7 + 9 / 12, "feet"),
  4915. weight: math.unit(379, "lbs"),
  4916. name: "Side",
  4917. image: {
  4918. source: "./media/characters/chez/side.svg"
  4919. }
  4920. }
  4921. },
  4922. [
  4923. {
  4924. name: "Normal",
  4925. height: math.unit(7 + 9 / 12, "feet"),
  4926. default: true
  4927. },
  4928. {
  4929. name: "God King",
  4930. height: math.unit(9750000, "meters")
  4931. }
  4932. ]
  4933. ))
  4934. characterMakers.push(() => makeCharacter(
  4935. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4936. {
  4937. front: {
  4938. height: math.unit(6, "feet"),
  4939. weight: math.unit(275, "lbs"),
  4940. name: "Front",
  4941. image: {
  4942. source: "./media/characters/kaylum/front.svg",
  4943. bottom: 0.01,
  4944. extra: 1166 / 1031
  4945. }
  4946. },
  4947. frontWingless: {
  4948. height: math.unit(6, "feet"),
  4949. weight: math.unit(275, "lbs"),
  4950. name: "Front (Wingless)",
  4951. image: {
  4952. source: "./media/characters/kaylum/front-wingless.svg",
  4953. bottom: 0.01,
  4954. extra: 1117 / 1031
  4955. }
  4956. }
  4957. },
  4958. [
  4959. {
  4960. name: "Normal",
  4961. height: math.unit(3.05, "meters")
  4962. },
  4963. {
  4964. name: "Master",
  4965. height: math.unit(5.5, "meters")
  4966. },
  4967. {
  4968. name: "Rampage",
  4969. height: math.unit(19, "meters")
  4970. },
  4971. {
  4972. name: "Macro Lite",
  4973. height: math.unit(37, "meters")
  4974. },
  4975. {
  4976. name: "Hyper Predator",
  4977. height: math.unit(61, "meters")
  4978. },
  4979. {
  4980. name: "Macro",
  4981. height: math.unit(138, "meters"),
  4982. default: true
  4983. }
  4984. ]
  4985. ))
  4986. characterMakers.push(() => makeCharacter(
  4987. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4988. {
  4989. front: {
  4990. height: math.unit(5 + 5 / 12, "feet"),
  4991. weight: math.unit(120, "lbs"),
  4992. name: "Front",
  4993. image: {
  4994. source: "./media/characters/geta/front.svg",
  4995. extra: 1003/933,
  4996. bottom: 21/1024
  4997. }
  4998. },
  4999. paw: {
  5000. height: math.unit(0.35, "feet"),
  5001. name: "Paw",
  5002. image: {
  5003. source: "./media/characters/geta/paw.svg"
  5004. }
  5005. },
  5006. },
  5007. [
  5008. {
  5009. name: "Micro",
  5010. height: math.unit(3, "inches"),
  5011. default: true
  5012. },
  5013. {
  5014. name: "Normal",
  5015. height: math.unit(5 + 5 / 12, "feet")
  5016. }
  5017. ]
  5018. ))
  5019. characterMakers.push(() => makeCharacter(
  5020. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  5021. {
  5022. front: {
  5023. height: math.unit(6, "feet"),
  5024. weight: math.unit(300, "lbs"),
  5025. name: "Front",
  5026. image: {
  5027. source: "./media/characters/tyrnn/front.svg"
  5028. }
  5029. }
  5030. },
  5031. [
  5032. {
  5033. name: "Main Height",
  5034. height: math.unit(355, "feet"),
  5035. default: true
  5036. },
  5037. {
  5038. name: "Fave. Height",
  5039. height: math.unit(2400, "feet")
  5040. }
  5041. ]
  5042. ))
  5043. characterMakers.push(() => makeCharacter(
  5044. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  5045. {
  5046. front: {
  5047. height: math.unit(6, "feet"),
  5048. weight: math.unit(300, "lbs"),
  5049. name: "Front",
  5050. image: {
  5051. source: "./media/characters/appledectomy/front.svg"
  5052. }
  5053. }
  5054. },
  5055. [
  5056. {
  5057. name: "Macro",
  5058. height: math.unit(2500, "feet")
  5059. },
  5060. {
  5061. name: "Megamacro",
  5062. height: math.unit(50, "miles"),
  5063. default: true
  5064. },
  5065. {
  5066. name: "Gigamacro",
  5067. height: math.unit(5000, "miles")
  5068. },
  5069. {
  5070. name: "Teramacro",
  5071. height: math.unit(250000, "miles")
  5072. },
  5073. ]
  5074. ))
  5075. characterMakers.push(() => makeCharacter(
  5076. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  5077. {
  5078. front: {
  5079. height: math.unit(6, "feet"),
  5080. weight: math.unit(200, "lbs"),
  5081. name: "Front",
  5082. image: {
  5083. source: "./media/characters/vulpes/front.svg",
  5084. extra: 573 / 543,
  5085. bottom: 0.033
  5086. }
  5087. },
  5088. side: {
  5089. height: math.unit(6, "feet"),
  5090. weight: math.unit(200, "lbs"),
  5091. name: "Side",
  5092. image: {
  5093. source: "./media/characters/vulpes/side.svg",
  5094. extra: 577 / 549,
  5095. bottom: 11 / 588
  5096. }
  5097. },
  5098. back: {
  5099. height: math.unit(6, "feet"),
  5100. weight: math.unit(200, "lbs"),
  5101. name: "Back",
  5102. image: {
  5103. source: "./media/characters/vulpes/back.svg",
  5104. extra: 573 / 549,
  5105. bottom: 20 / 593
  5106. }
  5107. },
  5108. feet: {
  5109. height: math.unit(1.276, "feet"),
  5110. name: "Feet",
  5111. image: {
  5112. source: "./media/characters/vulpes/feet.svg"
  5113. }
  5114. },
  5115. maw: {
  5116. height: math.unit(1.18, "feet"),
  5117. name: "Maw",
  5118. image: {
  5119. source: "./media/characters/vulpes/maw.svg"
  5120. }
  5121. },
  5122. },
  5123. [
  5124. {
  5125. name: "Micro",
  5126. height: math.unit(2, "inches")
  5127. },
  5128. {
  5129. name: "Normal",
  5130. height: math.unit(6.3, "feet")
  5131. },
  5132. {
  5133. name: "Macro",
  5134. height: math.unit(850, "feet")
  5135. },
  5136. {
  5137. name: "Megamacro",
  5138. height: math.unit(7500, "feet"),
  5139. default: true
  5140. },
  5141. {
  5142. name: "Gigamacro",
  5143. height: math.unit(570000, "miles")
  5144. }
  5145. ]
  5146. ))
  5147. characterMakers.push(() => makeCharacter(
  5148. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  5149. {
  5150. front: {
  5151. height: math.unit(6, "feet"),
  5152. weight: math.unit(210, "lbs"),
  5153. name: "Front",
  5154. image: {
  5155. source: "./media/characters/rain-fallen/front.svg"
  5156. }
  5157. },
  5158. side: {
  5159. height: math.unit(6, "feet"),
  5160. weight: math.unit(210, "lbs"),
  5161. name: "Side",
  5162. image: {
  5163. source: "./media/characters/rain-fallen/side.svg"
  5164. }
  5165. },
  5166. back: {
  5167. height: math.unit(6, "feet"),
  5168. weight: math.unit(210, "lbs"),
  5169. name: "Back",
  5170. image: {
  5171. source: "./media/characters/rain-fallen/back.svg"
  5172. }
  5173. },
  5174. feral: {
  5175. height: math.unit(9, "feet"),
  5176. weight: math.unit(700, "lbs"),
  5177. name: "Feral",
  5178. image: {
  5179. source: "./media/characters/rain-fallen/feral.svg"
  5180. }
  5181. },
  5182. },
  5183. [
  5184. {
  5185. name: "Meddling with Mortals",
  5186. height: math.unit(8 + 8/12, "feet")
  5187. },
  5188. {
  5189. name: "Normal",
  5190. height: math.unit(5, "meter")
  5191. },
  5192. {
  5193. name: "Macro",
  5194. height: math.unit(150, "meter"),
  5195. default: true
  5196. },
  5197. {
  5198. name: "Megamacro",
  5199. height: math.unit(278e6, "meter")
  5200. },
  5201. {
  5202. name: "Gigamacro",
  5203. height: math.unit(2e9, "meter")
  5204. },
  5205. {
  5206. name: "Teramacro",
  5207. height: math.unit(8e12, "meter")
  5208. },
  5209. {
  5210. name: "Devourer",
  5211. height: math.unit(14, "zettameters")
  5212. },
  5213. {
  5214. name: "Scarlet King",
  5215. height: math.unit(18, "yottameters")
  5216. },
  5217. {
  5218. name: "Void",
  5219. height: math.unit(1e88, "yottameters")
  5220. }
  5221. ]
  5222. ))
  5223. characterMakers.push(() => makeCharacter(
  5224. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  5225. {
  5226. standing: {
  5227. height: math.unit(6, "feet"),
  5228. weight: math.unit(180, "lbs"),
  5229. name: "Standing",
  5230. image: {
  5231. source: "./media/characters/zaakira/standing.svg",
  5232. extra: 1599/1504,
  5233. bottom: 39/1638
  5234. }
  5235. },
  5236. laying: {
  5237. height: math.unit(3.3, "feet"),
  5238. weight: math.unit(180, "lbs"),
  5239. name: "Laying",
  5240. image: {
  5241. source: "./media/characters/zaakira/laying.svg"
  5242. }
  5243. },
  5244. },
  5245. [
  5246. {
  5247. name: "Normal",
  5248. height: math.unit(12, "feet")
  5249. },
  5250. {
  5251. name: "Macro",
  5252. height: math.unit(279, "feet"),
  5253. default: true
  5254. }
  5255. ]
  5256. ))
  5257. characterMakers.push(() => makeCharacter(
  5258. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  5259. {
  5260. femSfw: {
  5261. height: math.unit(8, "feet"),
  5262. weight: math.unit(350, "lb"),
  5263. name: "Fem",
  5264. image: {
  5265. source: "./media/characters/sigvald/fem-sfw.svg",
  5266. extra: 182 / 164,
  5267. bottom: 8.7 / 190.5
  5268. }
  5269. },
  5270. femNsfw: {
  5271. height: math.unit(8, "feet"),
  5272. weight: math.unit(350, "lb"),
  5273. name: "Fem (NSFW)",
  5274. image: {
  5275. source: "./media/characters/sigvald/fem-nsfw.svg",
  5276. extra: 182 / 164,
  5277. bottom: 8.7 / 190.5
  5278. }
  5279. },
  5280. maleNsfw: {
  5281. height: math.unit(8, "feet"),
  5282. weight: math.unit(350, "lb"),
  5283. name: "Male (NSFW)",
  5284. image: {
  5285. source: "./media/characters/sigvald/male-nsfw.svg",
  5286. extra: 182 / 164,
  5287. bottom: 8.7 / 190.5
  5288. }
  5289. },
  5290. hermNsfw: {
  5291. height: math.unit(8, "feet"),
  5292. weight: math.unit(350, "lb"),
  5293. name: "Herm (NSFW)",
  5294. image: {
  5295. source: "./media/characters/sigvald/herm-nsfw.svg",
  5296. extra: 182 / 164,
  5297. bottom: 8.7 / 190.5
  5298. }
  5299. },
  5300. dick: {
  5301. height: math.unit(2.36, "feet"),
  5302. name: "Dick",
  5303. image: {
  5304. source: "./media/characters/sigvald/dick.svg"
  5305. }
  5306. },
  5307. eye: {
  5308. height: math.unit(0.31, "feet"),
  5309. name: "Eye",
  5310. image: {
  5311. source: "./media/characters/sigvald/eye.svg"
  5312. }
  5313. },
  5314. mouth: {
  5315. height: math.unit(0.92, "feet"),
  5316. name: "Mouth",
  5317. image: {
  5318. source: "./media/characters/sigvald/mouth.svg"
  5319. }
  5320. },
  5321. paws: {
  5322. height: math.unit(2.2, "feet"),
  5323. name: "Paws",
  5324. image: {
  5325. source: "./media/characters/sigvald/paws.svg"
  5326. }
  5327. }
  5328. },
  5329. [
  5330. {
  5331. name: "Normal",
  5332. height: math.unit(8, "feet")
  5333. },
  5334. {
  5335. name: "Large",
  5336. height: math.unit(12, "feet")
  5337. },
  5338. {
  5339. name: "Larger",
  5340. height: math.unit(20, "feet")
  5341. },
  5342. {
  5343. name: "Macro",
  5344. height: math.unit(150, "feet")
  5345. },
  5346. {
  5347. name: "Macro+",
  5348. height: math.unit(200, "feet"),
  5349. default: true
  5350. },
  5351. ]
  5352. ))
  5353. characterMakers.push(() => makeCharacter(
  5354. { name: "Scott", species: ["fox"], tags: ["taur"] },
  5355. {
  5356. side: {
  5357. height: math.unit(12, "feet"),
  5358. weight: math.unit(2000, "kg"),
  5359. name: "Side",
  5360. image: {
  5361. source: "./media/characters/scott/side.svg",
  5362. extra: 754 / 724,
  5363. bottom: 0.069
  5364. }
  5365. },
  5366. upright: {
  5367. height: math.unit(12, "feet"),
  5368. weight: math.unit(2000, "kg"),
  5369. name: "Upright",
  5370. image: {
  5371. source: "./media/characters/scott/upright.svg",
  5372. extra: 3881 / 3722,
  5373. bottom: 0.05
  5374. }
  5375. },
  5376. },
  5377. [
  5378. {
  5379. name: "Normal",
  5380. height: math.unit(12, "feet"),
  5381. default: true
  5382. },
  5383. ]
  5384. ))
  5385. characterMakers.push(() => makeCharacter(
  5386. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  5387. {
  5388. side: {
  5389. height: math.unit(8, "meters"),
  5390. weight: math.unit(84755, "lbs"),
  5391. name: "Side",
  5392. image: {
  5393. source: "./media/characters/tobias/side.svg",
  5394. extra: 1474 / 1096,
  5395. bottom: 38.9 / 1513.1235
  5396. }
  5397. },
  5398. },
  5399. [
  5400. {
  5401. name: "Normal",
  5402. height: math.unit(8, "meters"),
  5403. default: true
  5404. },
  5405. ]
  5406. ))
  5407. characterMakers.push(() => makeCharacter(
  5408. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  5409. {
  5410. front: {
  5411. height: math.unit(5.5, "feet"),
  5412. weight: math.unit(400, "lbs"),
  5413. name: "Front",
  5414. image: {
  5415. source: "./media/characters/kieran/front.svg",
  5416. extra: 2694 / 2364,
  5417. bottom: 217 / 2908
  5418. }
  5419. },
  5420. side: {
  5421. height: math.unit(5.5, "feet"),
  5422. weight: math.unit(400, "lbs"),
  5423. name: "Side",
  5424. image: {
  5425. source: "./media/characters/kieran/side.svg",
  5426. extra: 875 / 777,
  5427. bottom: 84.6 / 959
  5428. }
  5429. },
  5430. },
  5431. [
  5432. {
  5433. name: "Normal",
  5434. height: math.unit(5.5, "feet"),
  5435. default: true
  5436. },
  5437. ]
  5438. ))
  5439. characterMakers.push(() => makeCharacter(
  5440. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  5441. {
  5442. side: {
  5443. height: math.unit(2, "meters"),
  5444. weight: math.unit(70, "kg"),
  5445. name: "Side",
  5446. image: {
  5447. source: "./media/characters/sanya/side.svg",
  5448. bottom: 0.02,
  5449. extra: 1.02
  5450. }
  5451. },
  5452. },
  5453. [
  5454. {
  5455. name: "Small",
  5456. height: math.unit(2, "meters")
  5457. },
  5458. {
  5459. name: "Normal",
  5460. height: math.unit(3, "meters")
  5461. },
  5462. {
  5463. name: "Macro",
  5464. height: math.unit(16, "meters"),
  5465. default: true
  5466. },
  5467. ]
  5468. ))
  5469. characterMakers.push(() => makeCharacter(
  5470. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  5471. {
  5472. front: {
  5473. height: math.unit(2, "meters"),
  5474. weight: math.unit(120, "kg"),
  5475. name: "Front",
  5476. image: {
  5477. source: "./media/characters/miranda/front.svg",
  5478. extra: 195 / 185,
  5479. bottom: 10.9 / 206.5
  5480. }
  5481. },
  5482. back: {
  5483. height: math.unit(2, "meters"),
  5484. weight: math.unit(120, "kg"),
  5485. name: "Back",
  5486. image: {
  5487. source: "./media/characters/miranda/back.svg",
  5488. extra: 201 / 193,
  5489. bottom: 2.3 / 203.7
  5490. }
  5491. },
  5492. },
  5493. [
  5494. {
  5495. name: "Normal",
  5496. height: math.unit(10, "feet"),
  5497. default: true
  5498. }
  5499. ]
  5500. ))
  5501. characterMakers.push(() => makeCharacter(
  5502. { name: "James", species: ["deer"], tags: ["anthro"] },
  5503. {
  5504. side: {
  5505. height: math.unit(2, "meters"),
  5506. weight: math.unit(100, "kg"),
  5507. name: "Front",
  5508. image: {
  5509. source: "./media/characters/james/front.svg",
  5510. extra: 10 / 8.5
  5511. }
  5512. },
  5513. },
  5514. [
  5515. {
  5516. name: "Normal",
  5517. height: math.unit(8.5, "feet"),
  5518. default: true
  5519. }
  5520. ]
  5521. ))
  5522. characterMakers.push(() => makeCharacter(
  5523. { name: "Heather", species: ["cow"], tags: ["taur"] },
  5524. {
  5525. side: {
  5526. height: math.unit(9.5, "feet"),
  5527. weight: math.unit(2500, "lbs"),
  5528. name: "Side",
  5529. image: {
  5530. source: "./media/characters/heather/side.svg"
  5531. }
  5532. },
  5533. },
  5534. [
  5535. {
  5536. name: "Normal",
  5537. height: math.unit(9.5, "feet"),
  5538. default: true
  5539. }
  5540. ]
  5541. ))
  5542. characterMakers.push(() => makeCharacter(
  5543. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  5544. {
  5545. side: {
  5546. height: math.unit(6.5, "feet"),
  5547. weight: math.unit(400, "lbs"),
  5548. name: "Side",
  5549. image: {
  5550. source: "./media/characters/lukas/side.svg",
  5551. extra: 7.25 / 6.5
  5552. }
  5553. },
  5554. },
  5555. [
  5556. {
  5557. name: "Normal",
  5558. height: math.unit(6.5, "feet"),
  5559. default: true
  5560. }
  5561. ]
  5562. ))
  5563. characterMakers.push(() => makeCharacter(
  5564. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  5565. {
  5566. side: {
  5567. height: math.unit(5, "feet"),
  5568. weight: math.unit(3000, "lbs"),
  5569. name: "Side",
  5570. image: {
  5571. source: "./media/characters/louise/side.svg"
  5572. }
  5573. },
  5574. },
  5575. [
  5576. {
  5577. name: "Normal",
  5578. height: math.unit(5, "feet"),
  5579. default: true
  5580. }
  5581. ]
  5582. ))
  5583. characterMakers.push(() => makeCharacter(
  5584. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  5585. {
  5586. side: {
  5587. height: math.unit(6, "feet"),
  5588. weight: math.unit(150, "lbs"),
  5589. name: "Side",
  5590. image: {
  5591. source: "./media/characters/ramona/side.svg",
  5592. extra: 871/854,
  5593. bottom: 41/912
  5594. }
  5595. },
  5596. },
  5597. [
  5598. {
  5599. name: "Normal",
  5600. height: math.unit(5.3, "meters"),
  5601. default: true
  5602. },
  5603. {
  5604. name: "Macro",
  5605. height: math.unit(20, "stories")
  5606. },
  5607. {
  5608. name: "Macro+",
  5609. height: math.unit(50, "stories")
  5610. },
  5611. ]
  5612. ))
  5613. characterMakers.push(() => makeCharacter(
  5614. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  5615. {
  5616. standing: {
  5617. height: math.unit(5.75, "feet"),
  5618. weight: math.unit(160, "lbs"),
  5619. name: "Standing",
  5620. image: {
  5621. source: "./media/characters/deerpuff/standing.svg",
  5622. extra: 682 / 624
  5623. }
  5624. },
  5625. sitting: {
  5626. height: math.unit(5.75 / 1.79, "feet"),
  5627. weight: math.unit(160, "lbs"),
  5628. name: "Sitting",
  5629. image: {
  5630. source: "./media/characters/deerpuff/sitting.svg",
  5631. bottom: 44 / 400,
  5632. extra: 1
  5633. }
  5634. },
  5635. taurLaying: {
  5636. height: math.unit(6, "feet"),
  5637. weight: math.unit(400, "lbs"),
  5638. name: "Taur (Laying)",
  5639. image: {
  5640. source: "./media/characters/deerpuff/taur-laying.svg"
  5641. }
  5642. },
  5643. },
  5644. [
  5645. {
  5646. name: "Puffball",
  5647. height: math.unit(6, "inches")
  5648. },
  5649. {
  5650. name: "Normalpuff",
  5651. height: math.unit(5.75, "feet")
  5652. },
  5653. {
  5654. name: "Macropuff",
  5655. height: math.unit(1500, "feet"),
  5656. default: true
  5657. },
  5658. {
  5659. name: "Megapuff",
  5660. height: math.unit(500, "miles")
  5661. },
  5662. {
  5663. name: "Gigapuff",
  5664. height: math.unit(250000, "miles")
  5665. },
  5666. {
  5667. name: "Omegapuff",
  5668. height: math.unit(1000, "lightyears")
  5669. },
  5670. ]
  5671. ))
  5672. characterMakers.push(() => makeCharacter(
  5673. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5674. {
  5675. stomping: {
  5676. height: math.unit(6, "feet"),
  5677. weight: math.unit(170, "lbs"),
  5678. name: "Stomping",
  5679. image: {
  5680. source: "./media/characters/vivian/stomping.svg"
  5681. }
  5682. },
  5683. sitting: {
  5684. height: math.unit(6 / 1.75, "feet"),
  5685. weight: math.unit(170, "lbs"),
  5686. name: "Sitting",
  5687. image: {
  5688. source: "./media/characters/vivian/sitting.svg",
  5689. bottom: 1 / 6.4,
  5690. extra: 1,
  5691. }
  5692. },
  5693. },
  5694. [
  5695. {
  5696. name: "Normal",
  5697. height: math.unit(7, "feet"),
  5698. default: true
  5699. },
  5700. {
  5701. name: "Macro",
  5702. height: math.unit(10, "stories")
  5703. },
  5704. {
  5705. name: "Macro+",
  5706. height: math.unit(30, "stories")
  5707. },
  5708. {
  5709. name: "Megamacro",
  5710. height: math.unit(10, "miles")
  5711. },
  5712. {
  5713. name: "Megamacro+",
  5714. height: math.unit(2750000, "meters")
  5715. },
  5716. ]
  5717. ))
  5718. characterMakers.push(() => makeCharacter(
  5719. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5720. {
  5721. front: {
  5722. height: math.unit(6, "feet"),
  5723. weight: math.unit(160, "lbs"),
  5724. name: "Front",
  5725. image: {
  5726. source: "./media/characters/prince/front.svg",
  5727. extra: 3400 / 3000
  5728. }
  5729. },
  5730. jumping: {
  5731. height: math.unit(6, "feet"),
  5732. weight: math.unit(160, "lbs"),
  5733. name: "Jumping",
  5734. image: {
  5735. source: "./media/characters/prince/jump.svg",
  5736. extra: 2555 / 2134
  5737. }
  5738. },
  5739. },
  5740. [
  5741. {
  5742. name: "Normal",
  5743. height: math.unit(7.75, "feet"),
  5744. default: true
  5745. },
  5746. {
  5747. name: "Not cute",
  5748. height: math.unit(17, "feet")
  5749. },
  5750. {
  5751. name: "I said NOT",
  5752. height: math.unit(91, "feet")
  5753. },
  5754. {
  5755. name: "Please stop",
  5756. height: math.unit(560, "feet")
  5757. },
  5758. {
  5759. name: "What have you done",
  5760. height: math.unit(2200, "feet")
  5761. },
  5762. {
  5763. name: "Deer God",
  5764. height: math.unit(3.6, "miles")
  5765. },
  5766. ]
  5767. ))
  5768. characterMakers.push(() => makeCharacter(
  5769. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5770. {
  5771. standing: {
  5772. height: math.unit(6, "feet"),
  5773. weight: math.unit(300, "lbs"),
  5774. name: "Standing",
  5775. image: {
  5776. source: "./media/characters/psymon/standing.svg",
  5777. extra: 1888 / 1810,
  5778. bottom: 0.05
  5779. }
  5780. },
  5781. slithering: {
  5782. height: math.unit(6, "feet"),
  5783. weight: math.unit(300, "lbs"),
  5784. name: "Slithering",
  5785. image: {
  5786. source: "./media/characters/psymon/slithering.svg",
  5787. extra: 1330 / 1224
  5788. }
  5789. },
  5790. slitheringAlt: {
  5791. height: math.unit(6, "feet"),
  5792. weight: math.unit(300, "lbs"),
  5793. name: "Slithering (Alt)",
  5794. image: {
  5795. source: "./media/characters/psymon/slithering-alt.svg",
  5796. extra: 1330 / 1224
  5797. }
  5798. },
  5799. },
  5800. [
  5801. {
  5802. name: "Normal",
  5803. height: math.unit(11.25, "feet"),
  5804. default: true
  5805. },
  5806. {
  5807. name: "Large",
  5808. height: math.unit(27, "feet")
  5809. },
  5810. {
  5811. name: "Giant",
  5812. height: math.unit(87, "feet")
  5813. },
  5814. {
  5815. name: "Macro",
  5816. height: math.unit(365, "feet")
  5817. },
  5818. {
  5819. name: "Megamacro",
  5820. height: math.unit(3, "miles")
  5821. },
  5822. {
  5823. name: "World Serpent",
  5824. height: math.unit(8000, "miles")
  5825. },
  5826. ]
  5827. ))
  5828. characterMakers.push(() => makeCharacter(
  5829. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5830. {
  5831. front: {
  5832. height: math.unit(6, "feet"),
  5833. weight: math.unit(180, "lbs"),
  5834. name: "Front",
  5835. image: {
  5836. source: "./media/characters/daimos/front.svg",
  5837. extra: 4160 / 3897,
  5838. bottom: 0.021
  5839. }
  5840. }
  5841. },
  5842. [
  5843. {
  5844. name: "Normal",
  5845. height: math.unit(8, "feet"),
  5846. default: true
  5847. },
  5848. {
  5849. name: "Big Dog",
  5850. height: math.unit(22, "feet")
  5851. },
  5852. {
  5853. name: "Macro",
  5854. height: math.unit(127, "feet")
  5855. },
  5856. {
  5857. name: "Megamacro",
  5858. height: math.unit(3600, "feet")
  5859. },
  5860. ]
  5861. ))
  5862. characterMakers.push(() => makeCharacter(
  5863. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5864. {
  5865. side: {
  5866. height: math.unit(6, "feet"),
  5867. weight: math.unit(180, "lbs"),
  5868. name: "Side",
  5869. image: {
  5870. source: "./media/characters/blake/side.svg",
  5871. extra: 1212 / 1120,
  5872. bottom: 0.05
  5873. }
  5874. },
  5875. crouched: {
  5876. height: math.unit(6 * 0.57, "feet"),
  5877. weight: math.unit(180, "lbs"),
  5878. name: "Crouched",
  5879. image: {
  5880. source: "./media/characters/blake/crouched.svg",
  5881. extra: 840 / 587,
  5882. bottom: 0.04
  5883. }
  5884. },
  5885. bent: {
  5886. height: math.unit(6 * 0.75, "feet"),
  5887. weight: math.unit(180, "lbs"),
  5888. name: "Bent",
  5889. image: {
  5890. source: "./media/characters/blake/bent.svg",
  5891. extra: 592 / 544,
  5892. bottom: 0.035
  5893. }
  5894. },
  5895. },
  5896. [
  5897. {
  5898. name: "Normal",
  5899. height: math.unit(8 + 1 / 6, "feet"),
  5900. default: true
  5901. },
  5902. {
  5903. name: "Big Backside",
  5904. height: math.unit(37, "feet")
  5905. },
  5906. {
  5907. name: "Subway Shredder",
  5908. height: math.unit(72, "feet")
  5909. },
  5910. {
  5911. name: "City Carver",
  5912. height: math.unit(1675, "feet")
  5913. },
  5914. {
  5915. name: "Tectonic Tweaker",
  5916. height: math.unit(2300, "miles")
  5917. },
  5918. ]
  5919. ))
  5920. characterMakers.push(() => makeCharacter(
  5921. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5922. {
  5923. front: {
  5924. height: math.unit(6, "feet"),
  5925. weight: math.unit(180, "lbs"),
  5926. name: "Front",
  5927. image: {
  5928. source: "./media/characters/guisetto/front.svg",
  5929. extra: 856 / 817,
  5930. bottom: 0.06
  5931. }
  5932. },
  5933. airborne: {
  5934. height: math.unit(6, "feet"),
  5935. weight: math.unit(180, "lbs"),
  5936. name: "Airborne",
  5937. image: {
  5938. source: "./media/characters/guisetto/airborne.svg",
  5939. extra: 584 / 525
  5940. }
  5941. },
  5942. },
  5943. [
  5944. {
  5945. name: "Normal",
  5946. height: math.unit(10 + 11 / 12, "feet"),
  5947. default: true
  5948. },
  5949. {
  5950. name: "Large",
  5951. height: math.unit(35, "feet")
  5952. },
  5953. {
  5954. name: "Macro",
  5955. height: math.unit(475, "feet")
  5956. },
  5957. ]
  5958. ))
  5959. characterMakers.push(() => makeCharacter(
  5960. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5961. {
  5962. front: {
  5963. height: math.unit(6, "feet"),
  5964. weight: math.unit(180, "lbs"),
  5965. name: "Front",
  5966. image: {
  5967. source: "./media/characters/luxor/front.svg",
  5968. extra: 2940 / 2152
  5969. }
  5970. },
  5971. back: {
  5972. height: math.unit(6, "feet"),
  5973. weight: math.unit(180, "lbs"),
  5974. name: "Back",
  5975. image: {
  5976. source: "./media/characters/luxor/back.svg",
  5977. extra: 1083 / 960
  5978. }
  5979. },
  5980. },
  5981. [
  5982. {
  5983. name: "Normal",
  5984. height: math.unit(5 + 5 / 6, "feet"),
  5985. default: true
  5986. },
  5987. {
  5988. name: "Lamp",
  5989. height: math.unit(50, "feet")
  5990. },
  5991. {
  5992. name: "Lämp",
  5993. height: math.unit(300, "feet")
  5994. },
  5995. {
  5996. name: "The sun is a lamp",
  5997. height: math.unit(250000, "miles")
  5998. },
  5999. ]
  6000. ))
  6001. characterMakers.push(() => makeCharacter(
  6002. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  6003. {
  6004. front: {
  6005. height: math.unit(6, "feet"),
  6006. weight: math.unit(50, "lbs"),
  6007. name: "Front",
  6008. image: {
  6009. source: "./media/characters/huoyan/front.svg"
  6010. }
  6011. },
  6012. side: {
  6013. height: math.unit(6, "feet"),
  6014. weight: math.unit(180, "lbs"),
  6015. name: "Side",
  6016. image: {
  6017. source: "./media/characters/huoyan/side.svg"
  6018. }
  6019. },
  6020. },
  6021. [
  6022. {
  6023. name: "Chef",
  6024. height: math.unit(9, "feet")
  6025. },
  6026. {
  6027. name: "Normal",
  6028. height: math.unit(65, "feet"),
  6029. default: true
  6030. },
  6031. {
  6032. name: "Macro",
  6033. height: math.unit(780, "feet")
  6034. },
  6035. {
  6036. name: "Flaming Mountain",
  6037. height: math.unit(4.8, "miles")
  6038. },
  6039. {
  6040. name: "Celestial",
  6041. height: math.unit(765000, "miles")
  6042. },
  6043. ]
  6044. ))
  6045. characterMakers.push(() => makeCharacter(
  6046. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  6047. {
  6048. front: {
  6049. height: math.unit(5 + 3 / 4, "feet"),
  6050. weight: math.unit(120, "lbs"),
  6051. name: "Front",
  6052. image: {
  6053. source: "./media/characters/tails/front.svg"
  6054. }
  6055. }
  6056. },
  6057. [
  6058. {
  6059. name: "Normal",
  6060. height: math.unit(5 + 3 / 4, "feet"),
  6061. default: true
  6062. }
  6063. ]
  6064. ))
  6065. characterMakers.push(() => makeCharacter(
  6066. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  6067. {
  6068. front: {
  6069. height: math.unit(4, "feet"),
  6070. weight: math.unit(50, "lbs"),
  6071. name: "Front",
  6072. image: {
  6073. source: "./media/characters/rainy/front.svg"
  6074. }
  6075. }
  6076. },
  6077. [
  6078. {
  6079. name: "Macro",
  6080. height: math.unit(800, "feet"),
  6081. default: true
  6082. }
  6083. ]
  6084. ))
  6085. characterMakers.push(() => makeCharacter(
  6086. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  6087. {
  6088. front: {
  6089. height: math.unit(6, "feet"),
  6090. weight: math.unit(150, "lbs"),
  6091. name: "Front",
  6092. image: {
  6093. source: "./media/characters/rainier/front.svg"
  6094. }
  6095. }
  6096. },
  6097. [
  6098. {
  6099. name: "Micro",
  6100. height: math.unit(2, "mm"),
  6101. default: true
  6102. }
  6103. ]
  6104. ))
  6105. characterMakers.push(() => makeCharacter(
  6106. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  6107. {
  6108. front: {
  6109. height: math.unit(8 + 4/12, "feet"),
  6110. weight: math.unit(450, "kilograms"),
  6111. volume: math.unit(5, "cups"),
  6112. name: "Front",
  6113. image: {
  6114. source: "./media/characters/andy-renard/front.svg",
  6115. extra: 1839/1726,
  6116. bottom: 134/1973
  6117. }
  6118. },
  6119. back: {
  6120. height: math.unit(8 + 4/12, "feet"),
  6121. weight: math.unit(450, "kilograms"),
  6122. volume: math.unit(5, "cups"),
  6123. name: "Back",
  6124. image: {
  6125. source: "./media/characters/andy-renard/back.svg",
  6126. extra: 1838/1710,
  6127. bottom: 105/1943
  6128. }
  6129. },
  6130. },
  6131. [
  6132. {
  6133. name: "Tall",
  6134. height: math.unit(8 + 4/12, "feet")
  6135. },
  6136. {
  6137. name: "Mini Macro",
  6138. height: math.unit(15, "feet"),
  6139. default: true
  6140. },
  6141. {
  6142. name: "Macro",
  6143. height: math.unit(100, "feet")
  6144. },
  6145. {
  6146. name: "Mega Macro",
  6147. height: math.unit(1000, "feet")
  6148. },
  6149. {
  6150. name: "Giga Macro",
  6151. height: math.unit(10, "miles")
  6152. },
  6153. {
  6154. name: "God Macro",
  6155. height: math.unit(1, "multiverse")
  6156. },
  6157. ]
  6158. ))
  6159. characterMakers.push(() => makeCharacter(
  6160. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  6161. {
  6162. front: {
  6163. height: math.unit(6, "feet"),
  6164. weight: math.unit(210, "lbs"),
  6165. name: "Front",
  6166. image: {
  6167. source: "./media/characters/cimmaron/front-sfw.svg",
  6168. extra: 701 / 676,
  6169. bottom: 0.046
  6170. }
  6171. },
  6172. back: {
  6173. height: math.unit(6, "feet"),
  6174. weight: math.unit(210, "lbs"),
  6175. name: "Back",
  6176. image: {
  6177. source: "./media/characters/cimmaron/back-sfw.svg",
  6178. extra: 701 / 676,
  6179. bottom: 0.046
  6180. }
  6181. },
  6182. frontNsfw: {
  6183. height: math.unit(6, "feet"),
  6184. weight: math.unit(210, "lbs"),
  6185. name: "Front (NSFW)",
  6186. image: {
  6187. source: "./media/characters/cimmaron/front-nsfw.svg",
  6188. extra: 701 / 676,
  6189. bottom: 0.046
  6190. }
  6191. },
  6192. backNsfw: {
  6193. height: math.unit(6, "feet"),
  6194. weight: math.unit(210, "lbs"),
  6195. name: "Back (NSFW)",
  6196. image: {
  6197. source: "./media/characters/cimmaron/back-nsfw.svg",
  6198. extra: 701 / 676,
  6199. bottom: 0.046
  6200. }
  6201. },
  6202. dick: {
  6203. height: math.unit(1.714, "feet"),
  6204. name: "Dick",
  6205. image: {
  6206. source: "./media/characters/cimmaron/dick.svg"
  6207. }
  6208. },
  6209. },
  6210. [
  6211. {
  6212. name: "Normal",
  6213. height: math.unit(6, "feet"),
  6214. default: true
  6215. },
  6216. {
  6217. name: "Macro Mayor",
  6218. height: math.unit(350, "meters")
  6219. },
  6220. ]
  6221. ))
  6222. characterMakers.push(() => makeCharacter(
  6223. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  6224. {
  6225. front: {
  6226. height: math.unit(6, "feet"),
  6227. weight: math.unit(200, "lbs"),
  6228. name: "Front",
  6229. image: {
  6230. source: "./media/characters/akari/front.svg",
  6231. extra: 962 / 901,
  6232. bottom: 0.04
  6233. }
  6234. }
  6235. },
  6236. [
  6237. {
  6238. name: "Micro",
  6239. height: math.unit(5, "inches"),
  6240. default: true
  6241. },
  6242. {
  6243. name: "Normal",
  6244. height: math.unit(7, "feet")
  6245. },
  6246. ]
  6247. ))
  6248. characterMakers.push(() => makeCharacter(
  6249. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  6250. {
  6251. front: {
  6252. height: math.unit(6, "feet"),
  6253. weight: math.unit(140, "lbs"),
  6254. name: "Front",
  6255. image: {
  6256. source: "./media/characters/cynosura/front.svg",
  6257. extra: 896 / 847
  6258. }
  6259. },
  6260. back: {
  6261. height: math.unit(6, "feet"),
  6262. weight: math.unit(140, "lbs"),
  6263. name: "Back",
  6264. image: {
  6265. source: "./media/characters/cynosura/back.svg",
  6266. extra: 1365 / 1250
  6267. }
  6268. },
  6269. },
  6270. [
  6271. {
  6272. name: "Micro",
  6273. height: math.unit(4, "inches")
  6274. },
  6275. {
  6276. name: "Normal",
  6277. height: math.unit(5.75, "feet"),
  6278. default: true
  6279. },
  6280. {
  6281. name: "Tall",
  6282. height: math.unit(10, "feet")
  6283. },
  6284. {
  6285. name: "Big",
  6286. height: math.unit(20, "feet")
  6287. },
  6288. {
  6289. name: "Macro",
  6290. height: math.unit(50, "feet")
  6291. },
  6292. ]
  6293. ))
  6294. characterMakers.push(() => makeCharacter(
  6295. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  6296. {
  6297. front: {
  6298. height: math.unit(13 + 2/12, "feet"),
  6299. weight: math.unit(800, "kg"),
  6300. name: "Front",
  6301. image: {
  6302. source: "./media/characters/gin/front.svg",
  6303. extra: 1312/1191,
  6304. bottom: 45/1357
  6305. }
  6306. },
  6307. mouth: {
  6308. height: math.unit(2.39 * 1.8, "feet"),
  6309. name: "Mouth",
  6310. image: {
  6311. source: "./media/characters/gin/mouth.svg"
  6312. }
  6313. },
  6314. hand: {
  6315. height: math.unit(1.57 * 2.19, "feet"),
  6316. name: "Hand",
  6317. image: {
  6318. source: "./media/characters/gin/hand.svg"
  6319. }
  6320. },
  6321. foot: {
  6322. height: math.unit(6 / 4.25 * 2.19, "feet"),
  6323. name: "Foot",
  6324. image: {
  6325. source: "./media/characters/gin/foot.svg"
  6326. }
  6327. },
  6328. sole: {
  6329. height: math.unit(6 / 4.40 * 2.19, "feet"),
  6330. name: "Sole",
  6331. image: {
  6332. source: "./media/characters/gin/sole.svg"
  6333. }
  6334. },
  6335. },
  6336. [
  6337. {
  6338. name: "Very Small",
  6339. height: math.unit(13 + 2 / 12, "feet")
  6340. },
  6341. {
  6342. name: "Micro",
  6343. height: math.unit(600, "miles")
  6344. },
  6345. {
  6346. name: "Regular",
  6347. height: math.unit(20, "earths"),
  6348. default: true
  6349. },
  6350. {
  6351. name: "Macro",
  6352. height: math.unit(2.2, "solarradii")
  6353. },
  6354. {
  6355. name: "Teramacro",
  6356. height: math.unit(1.2, "galaxies")
  6357. },
  6358. {
  6359. name: "Omegamacro",
  6360. height: math.unit(200, "universes")
  6361. },
  6362. ]
  6363. ))
  6364. characterMakers.push(() => makeCharacter(
  6365. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  6366. {
  6367. front: {
  6368. height: math.unit(6 + 1 / 6, "feet"),
  6369. weight: math.unit(178, "lbs"),
  6370. name: "Front",
  6371. image: {
  6372. source: "./media/characters/guy/front.svg"
  6373. }
  6374. }
  6375. },
  6376. [
  6377. {
  6378. name: "Normal",
  6379. height: math.unit(6 + 1 / 6, "feet"),
  6380. default: true
  6381. },
  6382. {
  6383. name: "Large",
  6384. height: math.unit(25 + 7 / 12, "feet")
  6385. },
  6386. {
  6387. name: "Macro",
  6388. height: math.unit(60 + 9 / 12, "feet")
  6389. },
  6390. {
  6391. name: "Macro+",
  6392. height: math.unit(246, "feet")
  6393. },
  6394. {
  6395. name: "Macro++",
  6396. height: math.unit(878, "feet")
  6397. }
  6398. ]
  6399. ))
  6400. characterMakers.push(() => makeCharacter(
  6401. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  6402. {
  6403. front: {
  6404. height: math.unit(9, "feet"),
  6405. weight: math.unit(800, "lbs"),
  6406. name: "Front",
  6407. image: {
  6408. source: "./media/characters/tiberius/front.svg",
  6409. extra: 2295 / 2071
  6410. }
  6411. },
  6412. back: {
  6413. height: math.unit(9, "feet"),
  6414. weight: math.unit(800, "lbs"),
  6415. name: "Back",
  6416. image: {
  6417. source: "./media/characters/tiberius/back.svg",
  6418. extra: 2373 / 2160
  6419. }
  6420. },
  6421. },
  6422. [
  6423. {
  6424. name: "Normal",
  6425. height: math.unit(9, "feet"),
  6426. default: true
  6427. }
  6428. ]
  6429. ))
  6430. characterMakers.push(() => makeCharacter(
  6431. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  6432. {
  6433. front: {
  6434. height: math.unit(6, "feet"),
  6435. weight: math.unit(600, "lbs"),
  6436. name: "Front",
  6437. image: {
  6438. source: "./media/characters/surgo/front.svg",
  6439. extra: 3591 / 2227
  6440. }
  6441. },
  6442. back: {
  6443. height: math.unit(6, "feet"),
  6444. weight: math.unit(600, "lbs"),
  6445. name: "Back",
  6446. image: {
  6447. source: "./media/characters/surgo/back.svg",
  6448. extra: 3557 / 2228
  6449. }
  6450. },
  6451. laying: {
  6452. height: math.unit(6 * 0.85, "feet"),
  6453. weight: math.unit(600, "lbs"),
  6454. name: "Laying",
  6455. image: {
  6456. source: "./media/characters/surgo/laying.svg"
  6457. }
  6458. },
  6459. },
  6460. [
  6461. {
  6462. name: "Normal",
  6463. height: math.unit(6, "feet"),
  6464. default: true
  6465. }
  6466. ]
  6467. ))
  6468. characterMakers.push(() => makeCharacter(
  6469. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  6470. {
  6471. side: {
  6472. height: math.unit(6, "feet"),
  6473. weight: math.unit(150, "lbs"),
  6474. name: "Side",
  6475. image: {
  6476. source: "./media/characters/cibus/side.svg",
  6477. extra: 800 / 400
  6478. }
  6479. },
  6480. },
  6481. [
  6482. {
  6483. name: "Normal",
  6484. height: math.unit(6, "feet"),
  6485. default: true
  6486. }
  6487. ]
  6488. ))
  6489. characterMakers.push(() => makeCharacter(
  6490. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  6491. {
  6492. front: {
  6493. height: math.unit(6, "feet"),
  6494. weight: math.unit(240, "lbs"),
  6495. name: "Front",
  6496. image: {
  6497. source: "./media/characters/nibbles/front.svg"
  6498. }
  6499. },
  6500. side: {
  6501. height: math.unit(6, "feet"),
  6502. weight: math.unit(240, "lbs"),
  6503. name: "Side",
  6504. image: {
  6505. source: "./media/characters/nibbles/side.svg"
  6506. }
  6507. },
  6508. },
  6509. [
  6510. {
  6511. name: "Normal",
  6512. height: math.unit(9, "feet"),
  6513. default: true
  6514. }
  6515. ]
  6516. ))
  6517. characterMakers.push(() => makeCharacter(
  6518. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  6519. {
  6520. side: {
  6521. height: math.unit(5 + 1 / 6, "feet"),
  6522. weight: math.unit(130, "lbs"),
  6523. name: "Side",
  6524. image: {
  6525. source: "./media/characters/rikky/side.svg",
  6526. extra: 851 / 801
  6527. }
  6528. },
  6529. },
  6530. [
  6531. {
  6532. name: "Normal",
  6533. height: math.unit(5 + 1 / 6, "feet")
  6534. },
  6535. {
  6536. name: "Macro",
  6537. height: math.unit(152, "feet"),
  6538. default: true
  6539. },
  6540. {
  6541. name: "Megamacro",
  6542. height: math.unit(7, "miles")
  6543. }
  6544. ]
  6545. ))
  6546. characterMakers.push(() => makeCharacter(
  6547. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  6548. {
  6549. side: {
  6550. height: math.unit(370, "cm"),
  6551. weight: math.unit(350, "lbs"),
  6552. name: "Side",
  6553. image: {
  6554. source: "./media/characters/malfressa/side.svg"
  6555. }
  6556. },
  6557. walking: {
  6558. height: math.unit(370, "cm"),
  6559. weight: math.unit(350, "lbs"),
  6560. name: "Walking",
  6561. image: {
  6562. source: "./media/characters/malfressa/walking.svg"
  6563. }
  6564. },
  6565. feral: {
  6566. height: math.unit(2500, "cm"),
  6567. weight: math.unit(100000, "lbs"),
  6568. name: "Feral",
  6569. image: {
  6570. source: "./media/characters/malfressa/feral.svg",
  6571. extra: 2108 / 837,
  6572. bottom: 0.02
  6573. }
  6574. },
  6575. },
  6576. [
  6577. {
  6578. name: "Normal",
  6579. height: math.unit(370, "cm")
  6580. },
  6581. {
  6582. name: "Macro",
  6583. height: math.unit(300, "meters"),
  6584. default: true
  6585. }
  6586. ]
  6587. ))
  6588. characterMakers.push(() => makeCharacter(
  6589. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  6590. {
  6591. front: {
  6592. height: math.unit(6, "feet"),
  6593. weight: math.unit(60, "kg"),
  6594. name: "Front",
  6595. image: {
  6596. source: "./media/characters/jaro/front.svg",
  6597. extra: 845/817,
  6598. bottom: 45/890
  6599. }
  6600. },
  6601. back: {
  6602. height: math.unit(6, "feet"),
  6603. weight: math.unit(60, "kg"),
  6604. name: "Back",
  6605. image: {
  6606. source: "./media/characters/jaro/back.svg",
  6607. extra: 847/817,
  6608. bottom: 34/881
  6609. }
  6610. },
  6611. },
  6612. [
  6613. {
  6614. name: "Micro",
  6615. height: math.unit(7, "inches")
  6616. },
  6617. {
  6618. name: "Normal",
  6619. height: math.unit(5.5, "feet"),
  6620. default: true
  6621. },
  6622. {
  6623. name: "Minimacro",
  6624. height: math.unit(20, "feet")
  6625. },
  6626. {
  6627. name: "Macro",
  6628. height: math.unit(200, "meters")
  6629. }
  6630. ]
  6631. ))
  6632. characterMakers.push(() => makeCharacter(
  6633. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  6634. {
  6635. front: {
  6636. height: math.unit(6, "feet"),
  6637. weight: math.unit(195, "lb"),
  6638. name: "Front",
  6639. image: {
  6640. source: "./media/characters/rogue/front.svg"
  6641. }
  6642. },
  6643. },
  6644. [
  6645. {
  6646. name: "Macro",
  6647. height: math.unit(90, "feet"),
  6648. default: true
  6649. },
  6650. ]
  6651. ))
  6652. characterMakers.push(() => makeCharacter(
  6653. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  6654. {
  6655. standing: {
  6656. height: math.unit(5 + 8 / 12, "feet"),
  6657. weight: math.unit(140, "lb"),
  6658. name: "Standing",
  6659. image: {
  6660. source: "./media/characters/piper/standing.svg",
  6661. extra: 1440/1284,
  6662. bottom: 66/1506
  6663. }
  6664. },
  6665. running: {
  6666. height: math.unit(5 + 8 / 12, "feet"),
  6667. weight: math.unit(140, "lb"),
  6668. name: "Running",
  6669. image: {
  6670. source: "./media/characters/piper/running.svg",
  6671. extra: 3948/3655,
  6672. bottom: 0/3948
  6673. }
  6674. },
  6675. sole: {
  6676. height: math.unit(0.81, "feet"),
  6677. weight: math.unit(2, "kg"),
  6678. name: "Sole",
  6679. image: {
  6680. source: "./media/characters/piper/sole.svg"
  6681. }
  6682. },
  6683. nipple: {
  6684. height: math.unit(0.25, "feet"),
  6685. weight: math.unit(1.5, "lb"),
  6686. name: "Nipple",
  6687. image: {
  6688. source: "./media/characters/piper/nipple.svg"
  6689. }
  6690. },
  6691. head: {
  6692. height: math.unit(1.1, "feet"),
  6693. name: "Head",
  6694. image: {
  6695. source: "./media/characters/piper/head.svg"
  6696. }
  6697. },
  6698. },
  6699. [
  6700. {
  6701. name: "Micro",
  6702. height: math.unit(2, "inches")
  6703. },
  6704. {
  6705. name: "Normal",
  6706. height: math.unit(5 + 8 / 12, "feet")
  6707. },
  6708. {
  6709. name: "Macro",
  6710. height: math.unit(250, "feet"),
  6711. default: true
  6712. },
  6713. {
  6714. name: "Megamacro",
  6715. height: math.unit(7, "miles")
  6716. },
  6717. ]
  6718. ))
  6719. characterMakers.push(() => makeCharacter(
  6720. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  6721. {
  6722. front: {
  6723. height: math.unit(6, "feet"),
  6724. weight: math.unit(220, "lb"),
  6725. name: "Front",
  6726. image: {
  6727. source: "./media/characters/gemini/front.svg"
  6728. }
  6729. },
  6730. back: {
  6731. height: math.unit(6, "feet"),
  6732. weight: math.unit(220, "lb"),
  6733. name: "Back",
  6734. image: {
  6735. source: "./media/characters/gemini/back.svg"
  6736. }
  6737. },
  6738. kneeling: {
  6739. height: math.unit(6 / 1.5, "feet"),
  6740. weight: math.unit(220, "lb"),
  6741. name: "Kneeling",
  6742. image: {
  6743. source: "./media/characters/gemini/kneeling.svg",
  6744. bottom: 0.02
  6745. }
  6746. },
  6747. },
  6748. [
  6749. {
  6750. name: "Macro",
  6751. height: math.unit(300, "meters"),
  6752. default: true
  6753. },
  6754. {
  6755. name: "Megamacro",
  6756. height: math.unit(6900, "meters")
  6757. },
  6758. ]
  6759. ))
  6760. characterMakers.push(() => makeCharacter(
  6761. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6762. {
  6763. anthro: {
  6764. height: math.unit(2.35, "meters"),
  6765. weight: math.unit(73, "kg"),
  6766. name: "Anthro",
  6767. image: {
  6768. source: "./media/characters/alicia/anthro.svg",
  6769. extra: 2571 / 2385,
  6770. bottom: 75 / 2648
  6771. }
  6772. },
  6773. paw: {
  6774. height: math.unit(1.32, "feet"),
  6775. name: "Paw",
  6776. image: {
  6777. source: "./media/characters/alicia/paw.svg"
  6778. }
  6779. },
  6780. feral: {
  6781. height: math.unit(1.69, "meters"),
  6782. weight: math.unit(73, "kg"),
  6783. name: "Feral",
  6784. image: {
  6785. source: "./media/characters/alicia/feral.svg",
  6786. extra: 2123 / 1715,
  6787. bottom: 222 / 2349
  6788. }
  6789. },
  6790. },
  6791. [
  6792. {
  6793. name: "Normal",
  6794. height: math.unit(2.35, "meters")
  6795. },
  6796. {
  6797. name: "Macro",
  6798. height: math.unit(60, "meters"),
  6799. default: true
  6800. },
  6801. {
  6802. name: "Megamacro",
  6803. height: math.unit(10000, "kilometers")
  6804. },
  6805. ]
  6806. ))
  6807. characterMakers.push(() => makeCharacter(
  6808. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6809. {
  6810. front: {
  6811. height: math.unit(7, "feet"),
  6812. weight: math.unit(250, "lbs"),
  6813. name: "Front",
  6814. image: {
  6815. source: "./media/characters/archy/front.svg"
  6816. }
  6817. }
  6818. },
  6819. [
  6820. {
  6821. name: "Micro",
  6822. height: math.unit(1, "inch")
  6823. },
  6824. {
  6825. name: "Shorty",
  6826. height: math.unit(5, "feet")
  6827. },
  6828. {
  6829. name: "Normal",
  6830. height: math.unit(7, "feet")
  6831. },
  6832. {
  6833. name: "Macro",
  6834. height: math.unit(600, "meters"),
  6835. default: true
  6836. },
  6837. {
  6838. name: "Megamacro",
  6839. height: math.unit(1, "mile")
  6840. },
  6841. ]
  6842. ))
  6843. characterMakers.push(() => makeCharacter(
  6844. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6845. {
  6846. front: {
  6847. height: math.unit(1.65, "meters"),
  6848. weight: math.unit(74, "kg"),
  6849. name: "Front",
  6850. image: {
  6851. source: "./media/characters/berri/front.svg",
  6852. extra: 857 / 837,
  6853. bottom: 18 / 877
  6854. }
  6855. },
  6856. bum: {
  6857. height: math.unit(1.46, "feet"),
  6858. name: "Bum",
  6859. image: {
  6860. source: "./media/characters/berri/bum.svg"
  6861. }
  6862. },
  6863. mouth: {
  6864. height: math.unit(0.44, "feet"),
  6865. name: "Mouth",
  6866. image: {
  6867. source: "./media/characters/berri/mouth.svg"
  6868. }
  6869. },
  6870. paw: {
  6871. height: math.unit(0.826, "feet"),
  6872. name: "Paw",
  6873. image: {
  6874. source: "./media/characters/berri/paw.svg"
  6875. }
  6876. },
  6877. },
  6878. [
  6879. {
  6880. name: "Normal",
  6881. height: math.unit(1.65, "meters")
  6882. },
  6883. {
  6884. name: "Macro",
  6885. height: math.unit(60, "m"),
  6886. default: true
  6887. },
  6888. {
  6889. name: "Megamacro",
  6890. height: math.unit(9.213, "km")
  6891. },
  6892. {
  6893. name: "Planet Eater",
  6894. height: math.unit(489, "megameters")
  6895. },
  6896. {
  6897. name: "Teramacro",
  6898. height: math.unit(2471635000000, "meters")
  6899. },
  6900. {
  6901. name: "Examacro",
  6902. height: math.unit(8.0624e+26, "meters")
  6903. }
  6904. ]
  6905. ))
  6906. characterMakers.push(() => makeCharacter(
  6907. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  6908. {
  6909. front: {
  6910. height: math.unit(1.72, "meters"),
  6911. weight: math.unit(68, "kg"),
  6912. name: "Front",
  6913. image: {
  6914. source: "./media/characters/lexi/front.svg"
  6915. }
  6916. }
  6917. },
  6918. [
  6919. {
  6920. name: "Very Smol",
  6921. height: math.unit(10, "mm")
  6922. },
  6923. {
  6924. name: "Micro",
  6925. height: math.unit(6.8, "cm"),
  6926. default: true
  6927. },
  6928. {
  6929. name: "Normal",
  6930. height: math.unit(1.72, "m")
  6931. }
  6932. ]
  6933. ))
  6934. characterMakers.push(() => makeCharacter(
  6935. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  6936. {
  6937. front: {
  6938. height: math.unit(1.69, "meters"),
  6939. weight: math.unit(68, "kg"),
  6940. name: "Front",
  6941. image: {
  6942. source: "./media/characters/martin/front.svg",
  6943. extra: 596 / 581
  6944. }
  6945. }
  6946. },
  6947. [
  6948. {
  6949. name: "Micro",
  6950. height: math.unit(6.85, "cm"),
  6951. default: true
  6952. },
  6953. {
  6954. name: "Normal",
  6955. height: math.unit(1.69, "m")
  6956. }
  6957. ]
  6958. ))
  6959. characterMakers.push(() => makeCharacter(
  6960. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6961. {
  6962. front: {
  6963. height: math.unit(1.69, "meters"),
  6964. weight: math.unit(68, "kg"),
  6965. name: "Front",
  6966. image: {
  6967. source: "./media/characters/juno/front.svg"
  6968. }
  6969. }
  6970. },
  6971. [
  6972. {
  6973. name: "Micro",
  6974. height: math.unit(7, "cm")
  6975. },
  6976. {
  6977. name: "Normal",
  6978. height: math.unit(1.89, "m")
  6979. },
  6980. {
  6981. name: "Macro",
  6982. height: math.unit(353, "meters"),
  6983. default: true
  6984. }
  6985. ]
  6986. ))
  6987. characterMakers.push(() => makeCharacter(
  6988. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6989. {
  6990. front: {
  6991. height: math.unit(1.93, "meters"),
  6992. weight: math.unit(83, "kg"),
  6993. name: "Front",
  6994. image: {
  6995. source: "./media/characters/samantha/front.svg"
  6996. }
  6997. },
  6998. frontClothed: {
  6999. height: math.unit(1.93, "meters"),
  7000. weight: math.unit(83, "kg"),
  7001. name: "Front (Clothed)",
  7002. image: {
  7003. source: "./media/characters/samantha/front-clothed.svg"
  7004. }
  7005. },
  7006. back: {
  7007. height: math.unit(1.93, "meters"),
  7008. weight: math.unit(83, "kg"),
  7009. name: "Back",
  7010. image: {
  7011. source: "./media/characters/samantha/back.svg"
  7012. }
  7013. },
  7014. },
  7015. [
  7016. {
  7017. name: "Normal",
  7018. height: math.unit(1.93, "m")
  7019. },
  7020. {
  7021. name: "Macro",
  7022. height: math.unit(74, "meters"),
  7023. default: true
  7024. },
  7025. {
  7026. name: "Macro+",
  7027. height: math.unit(223, "meters"),
  7028. },
  7029. {
  7030. name: "Megamacro",
  7031. height: math.unit(8381, "meters"),
  7032. },
  7033. {
  7034. name: "Megamacro+",
  7035. height: math.unit(12000, "kilometers")
  7036. },
  7037. ]
  7038. ))
  7039. characterMakers.push(() => makeCharacter(
  7040. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  7041. {
  7042. front: {
  7043. height: math.unit(1.92, "meters"),
  7044. weight: math.unit(80, "kg"),
  7045. name: "Front",
  7046. image: {
  7047. source: "./media/characters/dr-clay/front.svg"
  7048. }
  7049. },
  7050. frontClothed: {
  7051. height: math.unit(1.92, "meters"),
  7052. weight: math.unit(80, "kg"),
  7053. name: "Front (Clothed)",
  7054. image: {
  7055. source: "./media/characters/dr-clay/front-clothed.svg"
  7056. }
  7057. }
  7058. },
  7059. [
  7060. {
  7061. name: "Normal",
  7062. height: math.unit(1.92, "m")
  7063. },
  7064. {
  7065. name: "Macro",
  7066. height: math.unit(214, "meters"),
  7067. default: true
  7068. },
  7069. {
  7070. name: "Macro+",
  7071. height: math.unit(12.237, "meters"),
  7072. },
  7073. {
  7074. name: "Megamacro",
  7075. height: math.unit(557, "megameters"),
  7076. },
  7077. {
  7078. name: "Unimaginable",
  7079. height: math.unit(120e9, "lightyears")
  7080. },
  7081. ]
  7082. ))
  7083. characterMakers.push(() => makeCharacter(
  7084. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  7085. {
  7086. front: {
  7087. height: math.unit(2, "meters"),
  7088. weight: math.unit(80, "kg"),
  7089. name: "Front",
  7090. image: {
  7091. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  7092. }
  7093. }
  7094. },
  7095. [
  7096. {
  7097. name: "Teramacro",
  7098. height: math.unit(500000, "lightyears"),
  7099. default: true
  7100. },
  7101. ]
  7102. ))
  7103. characterMakers.push(() => makeCharacter(
  7104. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  7105. {
  7106. crux: {
  7107. height: math.unit(2, "meters"),
  7108. weight: math.unit(150, "kg"),
  7109. name: "Crux",
  7110. image: {
  7111. source: "./media/characters/vemus/crux.svg",
  7112. extra: 1074/936,
  7113. bottom: 23/1097
  7114. }
  7115. },
  7116. skunkTanuki: {
  7117. height: math.unit(2, "meters"),
  7118. weight: math.unit(150, "kg"),
  7119. name: "Skunk-Tanuki",
  7120. image: {
  7121. source: "./media/characters/vemus/skunk-tanuki.svg",
  7122. extra: 926/893,
  7123. bottom: 20/946
  7124. }
  7125. },
  7126. },
  7127. [
  7128. {
  7129. name: "Normal",
  7130. height: math.unit(3.75, "meters"),
  7131. default: true
  7132. },
  7133. {
  7134. name: "Big",
  7135. height: math.unit(8, "meters")
  7136. },
  7137. {
  7138. name: "Macro",
  7139. height: math.unit(100, "meters")
  7140. },
  7141. {
  7142. name: "Macro+",
  7143. height: math.unit(1500, "meters")
  7144. },
  7145. {
  7146. name: "Stellar",
  7147. height: math.unit(14e8, "meters")
  7148. },
  7149. ]
  7150. ))
  7151. characterMakers.push(() => makeCharacter(
  7152. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  7153. {
  7154. front: {
  7155. height: math.unit(2, "meters"),
  7156. weight: math.unit(70, "kg"),
  7157. name: "Front",
  7158. image: {
  7159. source: "./media/characters/beherit/front.svg",
  7160. extra: 1234/1109,
  7161. bottom: 55/1289
  7162. }
  7163. }
  7164. },
  7165. [
  7166. {
  7167. name: "Normal",
  7168. height: math.unit(6, "feet")
  7169. },
  7170. {
  7171. name: "Lorg",
  7172. height: math.unit(25, "feet"),
  7173. default: true
  7174. },
  7175. {
  7176. name: "Lorger",
  7177. height: math.unit(75, "feet")
  7178. },
  7179. {
  7180. name: "Macro",
  7181. height: math.unit(200, "meters")
  7182. },
  7183. ]
  7184. ))
  7185. characterMakers.push(() => makeCharacter(
  7186. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  7187. {
  7188. front: {
  7189. height: math.unit(2, "meters"),
  7190. weight: math.unit(150, "kg"),
  7191. name: "Front",
  7192. image: {
  7193. source: "./media/characters/everett/front.svg",
  7194. extra: 1017/866,
  7195. bottom: 86/1103
  7196. }
  7197. },
  7198. paw: {
  7199. height: math.unit(2 / 3.6, "meters"),
  7200. name: "Paw",
  7201. image: {
  7202. source: "./media/characters/everett/paw.svg"
  7203. }
  7204. },
  7205. },
  7206. [
  7207. {
  7208. name: "Normal",
  7209. height: math.unit(15, "feet"),
  7210. default: true
  7211. },
  7212. {
  7213. name: "Lorg",
  7214. height: math.unit(70, "feet"),
  7215. default: true
  7216. },
  7217. {
  7218. name: "Lorger",
  7219. height: math.unit(250, "feet")
  7220. },
  7221. {
  7222. name: "Macro",
  7223. height: math.unit(500, "meters")
  7224. },
  7225. ]
  7226. ))
  7227. characterMakers.push(() => makeCharacter(
  7228. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  7229. {
  7230. front: {
  7231. height: math.unit(2, "meters"),
  7232. weight: math.unit(86, "kg"),
  7233. name: "Front",
  7234. image: {
  7235. source: "./media/characters/rose/front.svg",
  7236. extra: 1785/1636,
  7237. bottom: 30/1815
  7238. },
  7239. form: "liom",
  7240. default: true
  7241. },
  7242. frontSporty: {
  7243. height: math.unit(2, "meters"),
  7244. weight: math.unit(86, "kg"),
  7245. name: "Front (Sporty)",
  7246. image: {
  7247. source: "./media/characters/rose/front-sporty.svg",
  7248. extra: 350/335,
  7249. bottom: 10/360
  7250. },
  7251. form: "liom"
  7252. },
  7253. frontAlt: {
  7254. height: math.unit(1.6, "meters"),
  7255. weight: math.unit(86, "kg"),
  7256. name: "Front (Alt)",
  7257. image: {
  7258. source: "./media/characters/rose/front-alt.svg",
  7259. extra: 299/283,
  7260. bottom: 3/302
  7261. },
  7262. form: "liom"
  7263. },
  7264. plush: {
  7265. height: math.unit(2, "meters"),
  7266. weight: math.unit(86/3, "kg"),
  7267. name: "Plush",
  7268. image: {
  7269. source: "./media/characters/rose/plush.svg",
  7270. extra: 361/337,
  7271. bottom: 11/372
  7272. },
  7273. form: "plush",
  7274. default: true
  7275. },
  7276. faeStanding: {
  7277. height: math.unit(10, "cm"),
  7278. weight: math.unit(10, "grams"),
  7279. name: "Standing",
  7280. image: {
  7281. source: "./media/characters/rose/fae-standing.svg",
  7282. extra: 1189/1060,
  7283. bottom: 27/1216
  7284. },
  7285. form: "fae",
  7286. default: true
  7287. },
  7288. faeSitting: {
  7289. height: math.unit(5, "cm"),
  7290. weight: math.unit(10, "grams"),
  7291. name: "Sitting",
  7292. image: {
  7293. source: "./media/characters/rose/fae-sitting.svg",
  7294. extra: 737/577,
  7295. bottom: 356/1093
  7296. },
  7297. form: "fae"
  7298. },
  7299. faePaw: {
  7300. height: math.unit(1.35, "cm"),
  7301. name: "Paw",
  7302. image: {
  7303. source: "./media/characters/rose/fae-paw.svg"
  7304. },
  7305. form: "fae"
  7306. },
  7307. },
  7308. [
  7309. {
  7310. name: "True Micro",
  7311. height: math.unit(9, "cm"),
  7312. form: "liom"
  7313. },
  7314. {
  7315. name: "Micro",
  7316. height: math.unit(16, "cm"),
  7317. form: "liom"
  7318. },
  7319. {
  7320. name: "Normal",
  7321. height: math.unit(1.85, "meters"),
  7322. default: true,
  7323. form: "liom"
  7324. },
  7325. {
  7326. name: "Mini-Macro",
  7327. height: math.unit(5, "meters"),
  7328. form: "liom"
  7329. },
  7330. {
  7331. name: "Macro",
  7332. height: math.unit(15, "meters"),
  7333. form: "liom"
  7334. },
  7335. {
  7336. name: "True Macro",
  7337. height: math.unit(40, "meters"),
  7338. form: "liom"
  7339. },
  7340. {
  7341. name: "City Scale",
  7342. height: math.unit(1, "km"),
  7343. form: "liom"
  7344. },
  7345. {
  7346. name: "Plushie",
  7347. height: math.unit(9, "cm"),
  7348. form: "plush",
  7349. default: true
  7350. },
  7351. {
  7352. name: "Fae",
  7353. height: math.unit(10, "cm"),
  7354. form: "fae",
  7355. default: true
  7356. },
  7357. ],
  7358. {
  7359. "liom": {
  7360. name: "Liom"
  7361. },
  7362. "plush": {
  7363. name: "Plush"
  7364. },
  7365. "fae": {
  7366. name: "Fae Fox",
  7367. default: true
  7368. }
  7369. }
  7370. ))
  7371. characterMakers.push(() => makeCharacter(
  7372. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  7373. {
  7374. front: {
  7375. height: math.unit(2, "meters"),
  7376. weight: math.unit(350, "lbs"),
  7377. name: "Front",
  7378. image: {
  7379. source: "./media/characters/regal/front.svg"
  7380. }
  7381. },
  7382. back: {
  7383. height: math.unit(2, "meters"),
  7384. weight: math.unit(350, "lbs"),
  7385. name: "Back",
  7386. image: {
  7387. source: "./media/characters/regal/back.svg"
  7388. }
  7389. },
  7390. },
  7391. [
  7392. {
  7393. name: "Macro",
  7394. height: math.unit(350, "feet"),
  7395. default: true
  7396. }
  7397. ]
  7398. ))
  7399. characterMakers.push(() => makeCharacter(
  7400. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  7401. {
  7402. front: {
  7403. height: math.unit(4 + 11 / 12, "feet"),
  7404. weight: math.unit(100, "lbs"),
  7405. name: "Front",
  7406. image: {
  7407. source: "./media/characters/opal/front.svg"
  7408. }
  7409. },
  7410. frontAlt: {
  7411. height: math.unit(4 + 11 / 12, "feet"),
  7412. weight: math.unit(100, "lbs"),
  7413. name: "Front (Alt)",
  7414. image: {
  7415. source: "./media/characters/opal/front-alt.svg"
  7416. }
  7417. },
  7418. },
  7419. [
  7420. {
  7421. name: "Small",
  7422. height: math.unit(4 + 11 / 12, "feet")
  7423. },
  7424. {
  7425. name: "Normal",
  7426. height: math.unit(20, "feet"),
  7427. default: true
  7428. },
  7429. {
  7430. name: "Macro",
  7431. height: math.unit(120, "feet")
  7432. },
  7433. {
  7434. name: "Megamacro",
  7435. height: math.unit(80, "miles")
  7436. },
  7437. {
  7438. name: "True Size",
  7439. height: math.unit(100000, "lightyears")
  7440. },
  7441. ]
  7442. ))
  7443. characterMakers.push(() => makeCharacter(
  7444. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  7445. {
  7446. front: {
  7447. height: math.unit(6, "feet"),
  7448. weight: math.unit(200, "lbs"),
  7449. name: "Front",
  7450. image: {
  7451. source: "./media/characters/vector-wuff/front.svg"
  7452. }
  7453. }
  7454. },
  7455. [
  7456. {
  7457. name: "Normal",
  7458. height: math.unit(2.8, "meters")
  7459. },
  7460. {
  7461. name: "Macro",
  7462. height: math.unit(450, "meters"),
  7463. default: true
  7464. },
  7465. {
  7466. name: "Megamacro",
  7467. height: math.unit(15, "kilometers")
  7468. }
  7469. ]
  7470. ))
  7471. characterMakers.push(() => makeCharacter(
  7472. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  7473. {
  7474. front: {
  7475. height: math.unit(6, "feet"),
  7476. weight: math.unit(256, "lbs"),
  7477. name: "Front",
  7478. image: {
  7479. source: "./media/characters/dannik/front.svg"
  7480. }
  7481. }
  7482. },
  7483. [
  7484. {
  7485. name: "Macro",
  7486. height: math.unit(69.57, "meters"),
  7487. default: true
  7488. },
  7489. ]
  7490. ))
  7491. characterMakers.push(() => makeCharacter(
  7492. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  7493. {
  7494. front: {
  7495. height: math.unit(6, "feet"),
  7496. weight: math.unit(120, "lbs"),
  7497. name: "Front",
  7498. image: {
  7499. source: "./media/characters/azura-saharah/front.svg"
  7500. }
  7501. },
  7502. back: {
  7503. height: math.unit(6, "feet"),
  7504. weight: math.unit(120, "lbs"),
  7505. name: "Back",
  7506. image: {
  7507. source: "./media/characters/azura-saharah/back.svg"
  7508. }
  7509. },
  7510. },
  7511. [
  7512. {
  7513. name: "Macro",
  7514. height: math.unit(100, "feet"),
  7515. default: true
  7516. },
  7517. ]
  7518. ))
  7519. characterMakers.push(() => makeCharacter(
  7520. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  7521. {
  7522. side: {
  7523. height: math.unit(5 + 4 / 12, "feet"),
  7524. weight: math.unit(163, "lbs"),
  7525. name: "Side",
  7526. image: {
  7527. source: "./media/characters/kennedy/side.svg"
  7528. }
  7529. }
  7530. },
  7531. [
  7532. {
  7533. name: "Standard Doggo",
  7534. height: math.unit(5 + 4 / 12, "feet")
  7535. },
  7536. {
  7537. name: "Big Doggo",
  7538. height: math.unit(25 + 3 / 12, "feet"),
  7539. default: true
  7540. },
  7541. ]
  7542. ))
  7543. characterMakers.push(() => makeCharacter(
  7544. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  7545. {
  7546. front: {
  7547. height: math.unit(5 + 5/12, "feet"),
  7548. weight: math.unit(100, "lbs"),
  7549. name: "Front",
  7550. image: {
  7551. source: "./media/characters/odios-de-lunar/front.svg",
  7552. extra: 1468/1323,
  7553. bottom: 22/1490
  7554. }
  7555. }
  7556. },
  7557. [
  7558. {
  7559. name: "Micro",
  7560. height: math.unit(3, "inches")
  7561. },
  7562. {
  7563. name: "Normal",
  7564. height: math.unit(5.5, "feet"),
  7565. default: true
  7566. },
  7567. {
  7568. name: "Macro",
  7569. height: math.unit(100, "feet")
  7570. },
  7571. ]
  7572. ))
  7573. characterMakers.push(() => makeCharacter(
  7574. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  7575. {
  7576. back: {
  7577. height: math.unit(6, "feet"),
  7578. weight: math.unit(220, "lbs"),
  7579. name: "Back",
  7580. image: {
  7581. source: "./media/characters/mandake/back.svg"
  7582. }
  7583. }
  7584. },
  7585. [
  7586. {
  7587. name: "Normal",
  7588. height: math.unit(7, "feet"),
  7589. default: true
  7590. },
  7591. {
  7592. name: "Macro",
  7593. height: math.unit(78, "feet")
  7594. },
  7595. {
  7596. name: "Macro+",
  7597. height: math.unit(300, "meters")
  7598. },
  7599. {
  7600. name: "Macro++",
  7601. height: math.unit(2400, "feet")
  7602. },
  7603. {
  7604. name: "Megamacro",
  7605. height: math.unit(5167, "meters")
  7606. },
  7607. {
  7608. name: "Gigamacro",
  7609. height: math.unit(41769, "miles")
  7610. },
  7611. ]
  7612. ))
  7613. characterMakers.push(() => makeCharacter(
  7614. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  7615. {
  7616. front: {
  7617. height: math.unit(6, "feet"),
  7618. weight: math.unit(120, "lbs"),
  7619. name: "Front",
  7620. image: {
  7621. source: "./media/characters/yozey/front.svg"
  7622. }
  7623. },
  7624. frontAlt: {
  7625. height: math.unit(6, "feet"),
  7626. weight: math.unit(120, "lbs"),
  7627. name: "Front (Alt)",
  7628. image: {
  7629. source: "./media/characters/yozey/front-alt.svg"
  7630. }
  7631. },
  7632. side: {
  7633. height: math.unit(6, "feet"),
  7634. weight: math.unit(120, "lbs"),
  7635. name: "Side",
  7636. image: {
  7637. source: "./media/characters/yozey/side.svg"
  7638. }
  7639. },
  7640. },
  7641. [
  7642. {
  7643. name: "Micro",
  7644. height: math.unit(3, "inches"),
  7645. default: true
  7646. },
  7647. {
  7648. name: "Normal",
  7649. height: math.unit(6, "feet")
  7650. }
  7651. ]
  7652. ))
  7653. characterMakers.push(() => makeCharacter(
  7654. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  7655. {
  7656. front: {
  7657. height: math.unit(6, "feet"),
  7658. weight: math.unit(103, "lbs"),
  7659. name: "Front",
  7660. image: {
  7661. source: "./media/characters/valeska-voss/front.svg"
  7662. }
  7663. }
  7664. },
  7665. [
  7666. {
  7667. name: "Mini-Sized Sub",
  7668. height: math.unit(3.1, "inches")
  7669. },
  7670. {
  7671. name: "Mid-Sized Sub",
  7672. height: math.unit(6.2, "inches")
  7673. },
  7674. {
  7675. name: "Full-Sized Sub",
  7676. height: math.unit(9.3, "inches")
  7677. },
  7678. {
  7679. name: "Normal",
  7680. height: math.unit(5 + 2 / 12, "foot"),
  7681. default: true
  7682. },
  7683. ]
  7684. ))
  7685. characterMakers.push(() => makeCharacter(
  7686. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  7687. {
  7688. front: {
  7689. height: math.unit(6, "feet"),
  7690. weight: math.unit(160, "lbs"),
  7691. name: "Front",
  7692. image: {
  7693. source: "./media/characters/gene-zeta/front.svg",
  7694. extra: 3006 / 2826,
  7695. bottom: 182 / 3188
  7696. }
  7697. }
  7698. },
  7699. [
  7700. {
  7701. name: "Micro",
  7702. height: math.unit(6, "inches")
  7703. },
  7704. {
  7705. name: "Normal",
  7706. height: math.unit(5 + 11 / 12, "foot"),
  7707. default: true
  7708. },
  7709. {
  7710. name: "Macro",
  7711. height: math.unit(140, "feet")
  7712. },
  7713. {
  7714. name: "Supercharged",
  7715. height: math.unit(2500, "feet")
  7716. },
  7717. ]
  7718. ))
  7719. characterMakers.push(() => makeCharacter(
  7720. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  7721. {
  7722. front: {
  7723. height: math.unit(6, "feet"),
  7724. weight: math.unit(350, "lbs"),
  7725. name: "Front",
  7726. image: {
  7727. source: "./media/characters/razinox/front.svg",
  7728. extra: 1686 / 1548,
  7729. bottom: 28.2 / 1868
  7730. }
  7731. },
  7732. back: {
  7733. height: math.unit(6, "feet"),
  7734. weight: math.unit(350, "lbs"),
  7735. name: "Back",
  7736. image: {
  7737. source: "./media/characters/razinox/back.svg",
  7738. extra: 1660 / 1590,
  7739. bottom: 15 / 1665
  7740. }
  7741. },
  7742. },
  7743. [
  7744. {
  7745. name: "Normal",
  7746. height: math.unit(10 + 8 / 12, "foot")
  7747. },
  7748. {
  7749. name: "Minimacro",
  7750. height: math.unit(15, "foot")
  7751. },
  7752. {
  7753. name: "Macro",
  7754. height: math.unit(60, "foot"),
  7755. default: true
  7756. },
  7757. {
  7758. name: "Megamacro",
  7759. height: math.unit(5, "miles")
  7760. },
  7761. {
  7762. name: "Gigamacro",
  7763. height: math.unit(6000, "miles")
  7764. },
  7765. ]
  7766. ))
  7767. characterMakers.push(() => makeCharacter(
  7768. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  7769. {
  7770. front: {
  7771. height: math.unit(6, "feet"),
  7772. weight: math.unit(150, "lbs"),
  7773. name: "Front",
  7774. image: {
  7775. source: "./media/characters/cobalt/front.svg"
  7776. }
  7777. }
  7778. },
  7779. [
  7780. {
  7781. name: "Normal",
  7782. height: math.unit(8 + 1 / 12, "foot")
  7783. },
  7784. {
  7785. name: "Macro",
  7786. height: math.unit(111, "foot"),
  7787. default: true
  7788. },
  7789. {
  7790. name: "Supracosmic",
  7791. height: math.unit(1e42, "feet")
  7792. },
  7793. ]
  7794. ))
  7795. characterMakers.push(() => makeCharacter(
  7796. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  7797. {
  7798. front: {
  7799. height: math.unit(5, "inches"),
  7800. name: "Front",
  7801. image: {
  7802. source: "./media/characters/amanda/front.svg",
  7803. extra: 926/791,
  7804. bottom: 38/964
  7805. }
  7806. },
  7807. back: {
  7808. height: math.unit(5, "inches"),
  7809. name: "Back",
  7810. image: {
  7811. source: "./media/characters/amanda/back.svg",
  7812. extra: 909/805,
  7813. bottom: 43/952
  7814. }
  7815. },
  7816. },
  7817. [
  7818. {
  7819. name: "Micro",
  7820. height: math.unit(5, "inches"),
  7821. default: true
  7822. },
  7823. ]
  7824. ))
  7825. characterMakers.push(() => makeCharacter(
  7826. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  7827. {
  7828. front: {
  7829. height: math.unit(2.75, "meters"),
  7830. weight: math.unit(1200, "lb"),
  7831. name: "Front",
  7832. image: {
  7833. source: "./media/characters/teal/front.svg",
  7834. extra: 2463 / 2320,
  7835. bottom: 166 / 2629
  7836. }
  7837. },
  7838. back: {
  7839. height: math.unit(2.75, "meters"),
  7840. weight: math.unit(1200, "lb"),
  7841. name: "Back",
  7842. image: {
  7843. source: "./media/characters/teal/back.svg",
  7844. extra: 2580 / 2489,
  7845. bottom: 151 / 2731
  7846. }
  7847. },
  7848. sitting: {
  7849. height: math.unit(1.9, "meters"),
  7850. weight: math.unit(1200, "lb"),
  7851. name: "Sitting",
  7852. image: {
  7853. source: "./media/characters/teal/sitting.svg",
  7854. extra: 623 / 590,
  7855. bottom: 121 / 744
  7856. }
  7857. },
  7858. standing: {
  7859. height: math.unit(2.75, "meters"),
  7860. weight: math.unit(1200, "lb"),
  7861. name: "Standing",
  7862. image: {
  7863. source: "./media/characters/teal/standing.svg",
  7864. extra: 923 / 893,
  7865. bottom: 60 / 983
  7866. }
  7867. },
  7868. stretching: {
  7869. height: math.unit(3.65, "meters"),
  7870. weight: math.unit(1200, "lb"),
  7871. name: "Stretching",
  7872. image: {
  7873. source: "./media/characters/teal/stretching.svg",
  7874. extra: 1276 / 1244,
  7875. bottom: 0 / 1276
  7876. }
  7877. },
  7878. legged: {
  7879. height: math.unit(1.3, "meters"),
  7880. weight: math.unit(100, "lb"),
  7881. name: "Legged",
  7882. image: {
  7883. source: "./media/characters/teal/legged.svg",
  7884. extra: 462 / 437,
  7885. bottom: 24 / 486
  7886. }
  7887. },
  7888. naga: {
  7889. height: math.unit(5.4, "meters"),
  7890. weight: math.unit(4000, "lb"),
  7891. name: "Naga",
  7892. image: {
  7893. source: "./media/characters/teal/naga.svg",
  7894. extra: 1902 / 1858,
  7895. bottom: 0 / 1902
  7896. }
  7897. },
  7898. hand: {
  7899. height: math.unit(0.52, "meters"),
  7900. name: "Hand",
  7901. image: {
  7902. source: "./media/characters/teal/hand.svg"
  7903. }
  7904. },
  7905. maw: {
  7906. height: math.unit(0.43, "meters"),
  7907. name: "Maw",
  7908. image: {
  7909. source: "./media/characters/teal/maw.svg"
  7910. }
  7911. },
  7912. slit: {
  7913. height: math.unit(0.25, "meters"),
  7914. name: "Slit",
  7915. image: {
  7916. source: "./media/characters/teal/slit.svg"
  7917. }
  7918. },
  7919. },
  7920. [
  7921. {
  7922. name: "Normal",
  7923. height: math.unit(2.75, "meters"),
  7924. default: true
  7925. },
  7926. {
  7927. name: "Macro",
  7928. height: math.unit(300, "feet")
  7929. },
  7930. {
  7931. name: "Macro+",
  7932. height: math.unit(2000, "feet")
  7933. },
  7934. ]
  7935. ))
  7936. characterMakers.push(() => makeCharacter(
  7937. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  7938. {
  7939. frontCat: {
  7940. height: math.unit(6, "feet"),
  7941. weight: math.unit(180, "lbs"),
  7942. name: "Front (Cat)",
  7943. image: {
  7944. source: "./media/characters/ravin-amulet/front-cat.svg"
  7945. }
  7946. },
  7947. frontCatAlt: {
  7948. height: math.unit(6, "feet"),
  7949. weight: math.unit(180, "lbs"),
  7950. name: "Front (Alt, Cat)",
  7951. image: {
  7952. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  7953. }
  7954. },
  7955. frontWerewolf: {
  7956. height: math.unit(6 * 1.2, "feet"),
  7957. weight: math.unit(225, "lbs"),
  7958. name: "Front (Werewolf)",
  7959. image: {
  7960. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  7961. }
  7962. },
  7963. backWerewolf: {
  7964. height: math.unit(6 * 1.2, "feet"),
  7965. weight: math.unit(225, "lbs"),
  7966. name: "Back (Werewolf)",
  7967. image: {
  7968. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  7969. }
  7970. },
  7971. },
  7972. [
  7973. {
  7974. name: "Nano",
  7975. height: math.unit(1, "micrometer")
  7976. },
  7977. {
  7978. name: "Micro",
  7979. height: math.unit(1, "inch")
  7980. },
  7981. {
  7982. name: "Normal",
  7983. height: math.unit(6, "feet"),
  7984. default: true
  7985. },
  7986. {
  7987. name: "Macro",
  7988. height: math.unit(60, "feet")
  7989. }
  7990. ]
  7991. ))
  7992. characterMakers.push(() => makeCharacter(
  7993. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  7994. {
  7995. front: {
  7996. height: math.unit(6, "feet"),
  7997. weight: math.unit(165, "lbs"),
  7998. name: "Front",
  7999. image: {
  8000. source: "./media/characters/fluoresce/front.svg"
  8001. }
  8002. }
  8003. },
  8004. [
  8005. {
  8006. name: "Micro",
  8007. height: math.unit(6, "cm")
  8008. },
  8009. {
  8010. name: "Normal",
  8011. height: math.unit(5 + 7 / 12, "feet"),
  8012. default: true
  8013. },
  8014. {
  8015. name: "Macro",
  8016. height: math.unit(56, "feet")
  8017. },
  8018. {
  8019. name: "Megamacro",
  8020. height: math.unit(1.9, "miles")
  8021. },
  8022. ]
  8023. ))
  8024. characterMakers.push(() => makeCharacter(
  8025. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  8026. {
  8027. front: {
  8028. height: math.unit(9 + 6 / 12, "feet"),
  8029. weight: math.unit(523, "lbs"),
  8030. name: "Side",
  8031. image: {
  8032. source: "./media/characters/aurora/side.svg"
  8033. }
  8034. }
  8035. },
  8036. [
  8037. {
  8038. name: "Normal",
  8039. height: math.unit(9 + 6 / 12, "feet")
  8040. },
  8041. {
  8042. name: "Macro",
  8043. height: math.unit(96, "feet"),
  8044. default: true
  8045. },
  8046. {
  8047. name: "Macro+",
  8048. height: math.unit(243, "feet")
  8049. },
  8050. ]
  8051. ))
  8052. characterMakers.push(() => makeCharacter(
  8053. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  8054. {
  8055. front: {
  8056. height: math.unit(194, "cm"),
  8057. weight: math.unit(90, "kg"),
  8058. name: "Front",
  8059. image: {
  8060. source: "./media/characters/ranek/front.svg",
  8061. extra: 1862/1791,
  8062. bottom: 80/1942
  8063. }
  8064. },
  8065. back: {
  8066. height: math.unit(194, "cm"),
  8067. weight: math.unit(90, "kg"),
  8068. name: "Back",
  8069. image: {
  8070. source: "./media/characters/ranek/back.svg",
  8071. extra: 1853/1787,
  8072. bottom: 74/1927
  8073. }
  8074. },
  8075. feral: {
  8076. height: math.unit(30, "cm"),
  8077. weight: math.unit(1.6, "lbs"),
  8078. name: "Feral",
  8079. image: {
  8080. source: "./media/characters/ranek/feral.svg",
  8081. extra: 990/631,
  8082. bottom: 29/1019
  8083. }
  8084. },
  8085. },
  8086. [
  8087. {
  8088. name: "Normal",
  8089. height: math.unit(194, "cm"),
  8090. default: true
  8091. },
  8092. {
  8093. name: "Macro",
  8094. height: math.unit(100, "meters")
  8095. },
  8096. ]
  8097. ))
  8098. characterMakers.push(() => makeCharacter(
  8099. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  8100. {
  8101. front: {
  8102. height: math.unit(5 + 6 / 12, "feet"),
  8103. weight: math.unit(153, "lbs"),
  8104. name: "Front",
  8105. image: {
  8106. source: "./media/characters/andrew-cooper/front.svg"
  8107. }
  8108. },
  8109. },
  8110. [
  8111. {
  8112. name: "Nano",
  8113. height: math.unit(1, "mm")
  8114. },
  8115. {
  8116. name: "Micro",
  8117. height: math.unit(2, "inches")
  8118. },
  8119. {
  8120. name: "Normal",
  8121. height: math.unit(5 + 6 / 12, "feet"),
  8122. default: true
  8123. }
  8124. ]
  8125. ))
  8126. characterMakers.push(() => makeCharacter(
  8127. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  8128. {
  8129. front: {
  8130. height: math.unit(6, "feet"),
  8131. weight: math.unit(180, "lbs"),
  8132. name: "Front",
  8133. image: {
  8134. source: "./media/characters/akane-sato/front.svg",
  8135. extra: 1219 / 1140
  8136. }
  8137. },
  8138. back: {
  8139. height: math.unit(6, "feet"),
  8140. weight: math.unit(180, "lbs"),
  8141. name: "Back",
  8142. image: {
  8143. source: "./media/characters/akane-sato/back.svg",
  8144. extra: 1219 / 1170
  8145. }
  8146. },
  8147. },
  8148. [
  8149. {
  8150. name: "Normal",
  8151. height: math.unit(2.5, "meters")
  8152. },
  8153. {
  8154. name: "Macro",
  8155. height: math.unit(250, "meters"),
  8156. default: true
  8157. },
  8158. {
  8159. name: "Megamacro",
  8160. height: math.unit(25, "km")
  8161. },
  8162. ]
  8163. ))
  8164. characterMakers.push(() => makeCharacter(
  8165. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  8166. {
  8167. front: {
  8168. height: math.unit(6, "feet"),
  8169. weight: math.unit(65, "kg"),
  8170. name: "Front",
  8171. image: {
  8172. source: "./media/characters/rook/front.svg",
  8173. extra: 960 / 950
  8174. }
  8175. }
  8176. },
  8177. [
  8178. {
  8179. name: "Normal",
  8180. height: math.unit(8.8, "feet")
  8181. },
  8182. {
  8183. name: "Macro",
  8184. height: math.unit(88, "feet"),
  8185. default: true
  8186. },
  8187. {
  8188. name: "Megamacro",
  8189. height: math.unit(8, "miles")
  8190. },
  8191. ]
  8192. ))
  8193. characterMakers.push(() => makeCharacter(
  8194. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  8195. {
  8196. front: {
  8197. height: math.unit(12 + 2 / 12, "feet"),
  8198. weight: math.unit(808, "lbs"),
  8199. name: "Front",
  8200. image: {
  8201. source: "./media/characters/prodigy/front.svg"
  8202. }
  8203. }
  8204. },
  8205. [
  8206. {
  8207. name: "Normal",
  8208. height: math.unit(12 + 2 / 12, "feet"),
  8209. default: true
  8210. },
  8211. {
  8212. name: "Macro",
  8213. height: math.unit(143, "feet")
  8214. },
  8215. {
  8216. name: "Macro+",
  8217. height: math.unit(400, "feet")
  8218. },
  8219. ]
  8220. ))
  8221. characterMakers.push(() => makeCharacter(
  8222. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  8223. {
  8224. front: {
  8225. height: math.unit(6, "feet"),
  8226. weight: math.unit(225, "lbs"),
  8227. name: "Front",
  8228. image: {
  8229. source: "./media/characters/daniel/front.svg"
  8230. }
  8231. },
  8232. leaning: {
  8233. height: math.unit(6, "feet"),
  8234. weight: math.unit(225, "lbs"),
  8235. name: "Leaning",
  8236. image: {
  8237. source: "./media/characters/daniel/leaning.svg"
  8238. }
  8239. },
  8240. },
  8241. [
  8242. {
  8243. name: "Macro",
  8244. height: math.unit(1000, "feet"),
  8245. default: true
  8246. },
  8247. ]
  8248. ))
  8249. characterMakers.push(() => makeCharacter(
  8250. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  8251. {
  8252. front: {
  8253. height: math.unit(6, "feet"),
  8254. weight: math.unit(88, "lbs"),
  8255. name: "Front",
  8256. image: {
  8257. source: "./media/characters/chiros/front.svg",
  8258. extra: 306 / 226
  8259. }
  8260. },
  8261. side: {
  8262. height: math.unit(6, "feet"),
  8263. weight: math.unit(88, "lbs"),
  8264. name: "Side",
  8265. image: {
  8266. source: "./media/characters/chiros/side.svg",
  8267. extra: 306 / 226
  8268. }
  8269. },
  8270. },
  8271. [
  8272. {
  8273. name: "Normal",
  8274. height: math.unit(6, "cm"),
  8275. default: true
  8276. },
  8277. ]
  8278. ))
  8279. characterMakers.push(() => makeCharacter(
  8280. { name: "Selka", species: ["snake"], tags: ["naga"] },
  8281. {
  8282. front: {
  8283. height: math.unit(6, "feet"),
  8284. weight: math.unit(100, "lbs"),
  8285. name: "Front",
  8286. image: {
  8287. source: "./media/characters/selka/front.svg",
  8288. extra: 947 / 887
  8289. }
  8290. }
  8291. },
  8292. [
  8293. {
  8294. name: "Normal",
  8295. height: math.unit(5, "cm"),
  8296. default: true
  8297. },
  8298. ]
  8299. ))
  8300. characterMakers.push(() => makeCharacter(
  8301. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  8302. {
  8303. front: {
  8304. height: math.unit(8 + 3 / 12, "feet"),
  8305. weight: math.unit(424, "lbs"),
  8306. name: "Front",
  8307. image: {
  8308. source: "./media/characters/verin/front.svg",
  8309. extra: 1845 / 1550
  8310. }
  8311. },
  8312. frontArmored: {
  8313. height: math.unit(8 + 3 / 12, "feet"),
  8314. weight: math.unit(424, "lbs"),
  8315. name: "Front (Armored)",
  8316. image: {
  8317. source: "./media/characters/verin/front-armor.svg",
  8318. extra: 1845 / 1550,
  8319. bottom: 0.01
  8320. }
  8321. },
  8322. back: {
  8323. height: math.unit(8 + 3 / 12, "feet"),
  8324. weight: math.unit(424, "lbs"),
  8325. name: "Back",
  8326. image: {
  8327. source: "./media/characters/verin/back.svg",
  8328. bottom: 0.1,
  8329. extra: 1
  8330. }
  8331. },
  8332. foot: {
  8333. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  8334. name: "Foot",
  8335. image: {
  8336. source: "./media/characters/verin/foot.svg"
  8337. }
  8338. },
  8339. },
  8340. [
  8341. {
  8342. name: "Normal",
  8343. height: math.unit(8 + 3 / 12, "feet")
  8344. },
  8345. {
  8346. name: "Minimacro",
  8347. height: math.unit(21, "feet"),
  8348. default: true
  8349. },
  8350. {
  8351. name: "Macro",
  8352. height: math.unit(626, "feet")
  8353. },
  8354. ]
  8355. ))
  8356. characterMakers.push(() => makeCharacter(
  8357. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  8358. {
  8359. front: {
  8360. height: math.unit(2.718, "meters"),
  8361. weight: math.unit(150, "lbs"),
  8362. name: "Front",
  8363. image: {
  8364. source: "./media/characters/sovrim-terraquian/front.svg",
  8365. extra: 1752/1689,
  8366. bottom: 36/1788
  8367. }
  8368. },
  8369. back: {
  8370. height: math.unit(2.718, "meters"),
  8371. weight: math.unit(150, "lbs"),
  8372. name: "Back",
  8373. image: {
  8374. source: "./media/characters/sovrim-terraquian/back.svg",
  8375. extra: 1698/1657,
  8376. bottom: 58/1756
  8377. }
  8378. },
  8379. tongue: {
  8380. height: math.unit(2.865, "feet"),
  8381. name: "Tongue",
  8382. image: {
  8383. source: "./media/characters/sovrim-terraquian/tongue.svg"
  8384. }
  8385. },
  8386. hand: {
  8387. height: math.unit(1.61, "feet"),
  8388. name: "Hand",
  8389. image: {
  8390. source: "./media/characters/sovrim-terraquian/hand.svg"
  8391. }
  8392. },
  8393. foot: {
  8394. height: math.unit(1.05, "feet"),
  8395. name: "Foot",
  8396. image: {
  8397. source: "./media/characters/sovrim-terraquian/foot.svg"
  8398. }
  8399. },
  8400. footAlt: {
  8401. height: math.unit(0.88, "feet"),
  8402. name: "Foot (Alt)",
  8403. image: {
  8404. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  8405. }
  8406. },
  8407. },
  8408. [
  8409. {
  8410. name: "Micro",
  8411. height: math.unit(2, "inches")
  8412. },
  8413. {
  8414. name: "Small",
  8415. height: math.unit(1, "meter")
  8416. },
  8417. {
  8418. name: "Normal",
  8419. height: math.unit(Math.E, "meters"),
  8420. default: true
  8421. },
  8422. {
  8423. name: "Macro",
  8424. height: math.unit(20, "meters")
  8425. },
  8426. {
  8427. name: "Macro+",
  8428. height: math.unit(400, "meters")
  8429. },
  8430. ]
  8431. ))
  8432. characterMakers.push(() => makeCharacter(
  8433. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  8434. {
  8435. front: {
  8436. height: math.unit(7, "feet"),
  8437. weight: math.unit(489, "lbs"),
  8438. name: "Front",
  8439. image: {
  8440. source: "./media/characters/reece-silvermane/front.svg",
  8441. bottom: 0.02,
  8442. extra: 1
  8443. }
  8444. },
  8445. },
  8446. [
  8447. {
  8448. name: "Macro",
  8449. height: math.unit(1.5, "miles"),
  8450. default: true
  8451. },
  8452. ]
  8453. ))
  8454. characterMakers.push(() => makeCharacter(
  8455. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  8456. {
  8457. front: {
  8458. height: math.unit(6, "feet"),
  8459. weight: math.unit(78, "kg"),
  8460. name: "Front",
  8461. image: {
  8462. source: "./media/characters/kane/front.svg",
  8463. extra: 978 / 899
  8464. }
  8465. },
  8466. },
  8467. [
  8468. {
  8469. name: "Normal",
  8470. height: math.unit(2.1, "m"),
  8471. },
  8472. {
  8473. name: "Macro",
  8474. height: math.unit(1, "km"),
  8475. default: true
  8476. },
  8477. ]
  8478. ))
  8479. characterMakers.push(() => makeCharacter(
  8480. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  8481. {
  8482. front: {
  8483. height: math.unit(6, "feet"),
  8484. weight: math.unit(200, "kg"),
  8485. name: "Front",
  8486. image: {
  8487. source: "./media/characters/tegon/front.svg",
  8488. bottom: 0.01,
  8489. extra: 1
  8490. }
  8491. },
  8492. },
  8493. [
  8494. {
  8495. name: "Micro",
  8496. height: math.unit(1, "inch")
  8497. },
  8498. {
  8499. name: "Normal",
  8500. height: math.unit(6 + 3 / 12, "feet"),
  8501. default: true
  8502. },
  8503. {
  8504. name: "Macro",
  8505. height: math.unit(300, "feet")
  8506. },
  8507. {
  8508. name: "Megamacro",
  8509. height: math.unit(69, "miles")
  8510. },
  8511. ]
  8512. ))
  8513. characterMakers.push(() => makeCharacter(
  8514. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  8515. {
  8516. side: {
  8517. height: math.unit(6, "feet"),
  8518. weight: math.unit(2304, "lbs"),
  8519. name: "Side",
  8520. image: {
  8521. source: "./media/characters/arcturax/side.svg",
  8522. extra: 790 / 376,
  8523. bottom: 0.01
  8524. }
  8525. },
  8526. },
  8527. [
  8528. {
  8529. name: "Micro",
  8530. height: math.unit(2, "inch")
  8531. },
  8532. {
  8533. name: "Normal",
  8534. height: math.unit(6, "feet")
  8535. },
  8536. {
  8537. name: "Macro",
  8538. height: math.unit(39, "feet"),
  8539. default: true
  8540. },
  8541. {
  8542. name: "Megamacro",
  8543. height: math.unit(7, "miles")
  8544. },
  8545. ]
  8546. ))
  8547. characterMakers.push(() => makeCharacter(
  8548. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  8549. {
  8550. front: {
  8551. height: math.unit(6, "feet"),
  8552. weight: math.unit(50, "lbs"),
  8553. name: "Front",
  8554. image: {
  8555. source: "./media/characters/sentri/front.svg",
  8556. extra: 1750 / 1570,
  8557. bottom: 0.025
  8558. }
  8559. },
  8560. frontAlt: {
  8561. height: math.unit(6, "feet"),
  8562. weight: math.unit(50, "lbs"),
  8563. name: "Front (Alt)",
  8564. image: {
  8565. source: "./media/characters/sentri/front-alt.svg",
  8566. extra: 1750 / 1570,
  8567. bottom: 0.025
  8568. }
  8569. },
  8570. },
  8571. [
  8572. {
  8573. name: "Normal",
  8574. height: math.unit(15, "feet"),
  8575. default: true
  8576. },
  8577. {
  8578. name: "Macro",
  8579. height: math.unit(2500, "feet")
  8580. }
  8581. ]
  8582. ))
  8583. characterMakers.push(() => makeCharacter(
  8584. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  8585. {
  8586. front: {
  8587. height: math.unit(5 + 8 / 12, "feet"),
  8588. weight: math.unit(130, "lbs"),
  8589. name: "Front",
  8590. image: {
  8591. source: "./media/characters/corvin/front.svg",
  8592. extra: 1803 / 1629
  8593. }
  8594. },
  8595. frontShirt: {
  8596. height: math.unit(5 + 8 / 12, "feet"),
  8597. weight: math.unit(130, "lbs"),
  8598. name: "Front (Shirt)",
  8599. image: {
  8600. source: "./media/characters/corvin/front-shirt.svg",
  8601. extra: 1803 / 1629
  8602. }
  8603. },
  8604. frontPoncho: {
  8605. height: math.unit(5 + 8 / 12, "feet"),
  8606. weight: math.unit(130, "lbs"),
  8607. name: "Front (Poncho)",
  8608. image: {
  8609. source: "./media/characters/corvin/front-poncho.svg",
  8610. extra: 1803 / 1629
  8611. }
  8612. },
  8613. side: {
  8614. height: math.unit(5 + 8 / 12, "feet"),
  8615. weight: math.unit(130, "lbs"),
  8616. name: "Side",
  8617. image: {
  8618. source: "./media/characters/corvin/side.svg",
  8619. extra: 1012 / 945
  8620. }
  8621. },
  8622. back: {
  8623. height: math.unit(5 + 8 / 12, "feet"),
  8624. weight: math.unit(130, "lbs"),
  8625. name: "Back",
  8626. image: {
  8627. source: "./media/characters/corvin/back.svg",
  8628. extra: 1803 / 1629
  8629. }
  8630. },
  8631. },
  8632. [
  8633. {
  8634. name: "Micro",
  8635. height: math.unit(3, "inches")
  8636. },
  8637. {
  8638. name: "Normal",
  8639. height: math.unit(5 + 8 / 12, "feet")
  8640. },
  8641. {
  8642. name: "Macro",
  8643. height: math.unit(300, "feet"),
  8644. default: true
  8645. },
  8646. {
  8647. name: "Megamacro",
  8648. height: math.unit(500, "miles")
  8649. }
  8650. ]
  8651. ))
  8652. characterMakers.push(() => makeCharacter(
  8653. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  8654. {
  8655. front: {
  8656. height: math.unit(6, "feet"),
  8657. weight: math.unit(135, "lbs"),
  8658. name: "Front",
  8659. image: {
  8660. source: "./media/characters/q/front.svg",
  8661. extra: 854 / 752,
  8662. bottom: 0.005
  8663. }
  8664. },
  8665. back: {
  8666. height: math.unit(6, "feet"),
  8667. weight: math.unit(130, "lbs"),
  8668. name: "Back",
  8669. image: {
  8670. source: "./media/characters/q/back.svg",
  8671. extra: 854 / 752
  8672. }
  8673. },
  8674. },
  8675. [
  8676. {
  8677. name: "Macro",
  8678. height: math.unit(90, "feet"),
  8679. default: true
  8680. },
  8681. {
  8682. name: "Extra Macro",
  8683. height: math.unit(300, "feet"),
  8684. },
  8685. {
  8686. name: "BIG WALF",
  8687. height: math.unit(750, "feet"),
  8688. },
  8689. ]
  8690. ))
  8691. characterMakers.push(() => makeCharacter(
  8692. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  8693. {
  8694. front: {
  8695. height: math.unit(6, "feet"),
  8696. weight: math.unit(150, "lbs"),
  8697. name: "Front",
  8698. image: {
  8699. source: "./media/characters/carley/front.svg",
  8700. extra: 3927 / 3540,
  8701. bottom: 29.2 / 735
  8702. }
  8703. }
  8704. },
  8705. [
  8706. {
  8707. name: "Normal",
  8708. height: math.unit(6 + 3 / 12, "feet")
  8709. },
  8710. {
  8711. name: "Macro",
  8712. height: math.unit(185, "feet"),
  8713. default: true
  8714. },
  8715. {
  8716. name: "Megamacro",
  8717. height: math.unit(8, "miles"),
  8718. },
  8719. ]
  8720. ))
  8721. characterMakers.push(() => makeCharacter(
  8722. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  8723. {
  8724. front: {
  8725. height: math.unit(3, "feet"),
  8726. weight: math.unit(28, "lbs"),
  8727. name: "Front",
  8728. image: {
  8729. source: "./media/characters/citrine/front.svg"
  8730. }
  8731. }
  8732. },
  8733. [
  8734. {
  8735. name: "Normal",
  8736. height: math.unit(3, "feet"),
  8737. default: true
  8738. }
  8739. ]
  8740. ))
  8741. characterMakers.push(() => makeCharacter(
  8742. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  8743. {
  8744. front: {
  8745. height: math.unit(14, "feet"),
  8746. weight: math.unit(1450, "kg"),
  8747. preyCapacity: math.unit(15, "people"),
  8748. name: "Front",
  8749. image: {
  8750. source: "./media/characters/aura-starwind/front.svg",
  8751. extra: 1440/1327,
  8752. bottom: 11/1451
  8753. }
  8754. },
  8755. side: {
  8756. height: math.unit(14, "feet"),
  8757. weight: math.unit(1450, "kg"),
  8758. preyCapacity: math.unit(15, "people"),
  8759. name: "Side",
  8760. image: {
  8761. source: "./media/characters/aura-starwind/side.svg",
  8762. extra: 1654 / 1497
  8763. }
  8764. },
  8765. taur: {
  8766. height: math.unit(18, "feet"),
  8767. weight: math.unit(5500, "kg"),
  8768. preyCapacity: math.unit(50, "people"),
  8769. name: "Taur",
  8770. image: {
  8771. source: "./media/characters/aura-starwind/taur.svg",
  8772. extra: 1760 / 1650
  8773. }
  8774. },
  8775. feral: {
  8776. height: math.unit(46, "feet"),
  8777. weight: math.unit(25000, "kg"),
  8778. preyCapacity: math.unit(120, "people"),
  8779. name: "Feral",
  8780. image: {
  8781. source: "./media/characters/aura-starwind/feral.svg"
  8782. }
  8783. },
  8784. },
  8785. [
  8786. {
  8787. name: "Normal",
  8788. height: math.unit(14, "feet"),
  8789. default: true
  8790. },
  8791. {
  8792. name: "Macro",
  8793. height: math.unit(50, "meters")
  8794. },
  8795. {
  8796. name: "Megamacro",
  8797. height: math.unit(5000, "meters")
  8798. },
  8799. {
  8800. name: "Gigamacro",
  8801. height: math.unit(100000, "kilometers")
  8802. },
  8803. ]
  8804. ))
  8805. characterMakers.push(() => makeCharacter(
  8806. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  8807. {
  8808. front: {
  8809. height: math.unit(2 + 7 / 12, "feet"),
  8810. weight: math.unit(32, "lbs"),
  8811. name: "Front",
  8812. image: {
  8813. source: "./media/characters/rivet/front.svg",
  8814. extra: 1716 / 1658,
  8815. bottom: 0.03
  8816. }
  8817. },
  8818. foot: {
  8819. height: math.unit(0.551, "feet"),
  8820. name: "Rivet's Foot",
  8821. image: {
  8822. source: "./media/characters/rivet/foot.svg"
  8823. },
  8824. rename: true
  8825. }
  8826. },
  8827. [
  8828. {
  8829. name: "Micro",
  8830. height: math.unit(1.5, "inches"),
  8831. },
  8832. {
  8833. name: "Normal",
  8834. height: math.unit(2 + 7 / 12, "feet"),
  8835. default: true
  8836. },
  8837. {
  8838. name: "Macro",
  8839. height: math.unit(85, "feet")
  8840. },
  8841. {
  8842. name: "Megamacro",
  8843. height: math.unit(2.2, "km")
  8844. }
  8845. ]
  8846. ))
  8847. characterMakers.push(() => makeCharacter(
  8848. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  8849. {
  8850. front: {
  8851. height: math.unit(5 + 9 / 12, "feet"),
  8852. weight: math.unit(150, "lbs"),
  8853. name: "Front",
  8854. image: {
  8855. source: "./media/characters/coffee/front.svg",
  8856. extra: 3666 / 3032,
  8857. bottom: 0.04
  8858. }
  8859. },
  8860. foot: {
  8861. height: math.unit(1.29, "feet"),
  8862. name: "Foot",
  8863. image: {
  8864. source: "./media/characters/coffee/foot.svg"
  8865. }
  8866. },
  8867. },
  8868. [
  8869. {
  8870. name: "Micro",
  8871. height: math.unit(2, "inches"),
  8872. },
  8873. {
  8874. name: "Normal",
  8875. height: math.unit(5 + 9 / 12, "feet"),
  8876. default: true
  8877. },
  8878. {
  8879. name: "Macro",
  8880. height: math.unit(800, "feet")
  8881. },
  8882. {
  8883. name: "Megamacro",
  8884. height: math.unit(25, "miles")
  8885. }
  8886. ]
  8887. ))
  8888. characterMakers.push(() => makeCharacter(
  8889. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  8890. {
  8891. front: {
  8892. height: math.unit(6, "feet"),
  8893. weight: math.unit(200, "lbs"),
  8894. name: "Front",
  8895. image: {
  8896. source: "./media/characters/chari-gal/front.svg",
  8897. extra: 1568 / 1385,
  8898. bottom: 0.047
  8899. }
  8900. },
  8901. gigantamax: {
  8902. height: math.unit(6 * 16, "feet"),
  8903. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  8904. name: "Gigantamax",
  8905. image: {
  8906. source: "./media/characters/chari-gal/gigantamax.svg",
  8907. extra: 1124 / 888,
  8908. bottom: 0.03
  8909. }
  8910. },
  8911. },
  8912. [
  8913. {
  8914. name: "Normal",
  8915. height: math.unit(5 + 7 / 12, "feet")
  8916. },
  8917. {
  8918. name: "Macro",
  8919. height: math.unit(200, "feet"),
  8920. default: true
  8921. }
  8922. ]
  8923. ))
  8924. characterMakers.push(() => makeCharacter(
  8925. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  8926. {
  8927. front: {
  8928. height: math.unit(6, "feet"),
  8929. weight: math.unit(150, "lbs"),
  8930. name: "Front",
  8931. image: {
  8932. source: "./media/characters/nova/front.svg",
  8933. extra: 5000 / 4722,
  8934. bottom: 0.02
  8935. }
  8936. }
  8937. },
  8938. [
  8939. {
  8940. name: "Micro-",
  8941. height: math.unit(0.8, "inches")
  8942. },
  8943. {
  8944. name: "Micro",
  8945. height: math.unit(2, "inches"),
  8946. default: true
  8947. },
  8948. ]
  8949. ))
  8950. characterMakers.push(() => makeCharacter(
  8951. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  8952. {
  8953. front: {
  8954. height: math.unit(3 + 1 / 12, "feet"),
  8955. weight: math.unit(21.7, "lbs"),
  8956. name: "Front",
  8957. image: {
  8958. source: "./media/characters/argent/front.svg",
  8959. extra: 1471 / 1331,
  8960. bottom: 100.8 / 1575.5
  8961. }
  8962. }
  8963. },
  8964. [
  8965. {
  8966. name: "Micro",
  8967. height: math.unit(2, "inches")
  8968. },
  8969. {
  8970. name: "Normal",
  8971. height: math.unit(3 + 1 / 12, "feet"),
  8972. default: true
  8973. },
  8974. {
  8975. name: "Macro",
  8976. height: math.unit(120, "feet")
  8977. },
  8978. ]
  8979. ))
  8980. characterMakers.push(() => makeCharacter(
  8981. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  8982. {
  8983. lamp: {
  8984. height: math.unit(7 * 1559 / 989, "feet"),
  8985. name: "Magic Lamp",
  8986. image: {
  8987. source: "./media/characters/mira-al-cul/lamp.svg",
  8988. extra: 1617 / 1559
  8989. }
  8990. },
  8991. front: {
  8992. height: math.unit(7, "feet"),
  8993. name: "Front",
  8994. image: {
  8995. source: "./media/characters/mira-al-cul/front.svg",
  8996. extra: 1044 / 990
  8997. }
  8998. },
  8999. },
  9000. [
  9001. {
  9002. name: "Heavily Restricted",
  9003. height: math.unit(7 * 1559 / 989, "feet")
  9004. },
  9005. {
  9006. name: "Freshly Freed",
  9007. height: math.unit(50 * 1559 / 989, "feet")
  9008. },
  9009. {
  9010. name: "World Encompassing",
  9011. height: math.unit(10000 * 1559 / 989, "miles")
  9012. },
  9013. {
  9014. name: "Galactic",
  9015. height: math.unit(1.433 * 1559 / 989, "zettameters")
  9016. },
  9017. {
  9018. name: "Palmed Universe",
  9019. height: math.unit(6000 * 1559 / 989, "yottameters"),
  9020. default: true
  9021. },
  9022. {
  9023. name: "Multiversal Matriarch",
  9024. height: math.unit(8.87e10, "yottameters")
  9025. },
  9026. {
  9027. name: "Void Mother",
  9028. height: math.unit(3.14e110, "yottaparsecs")
  9029. },
  9030. {
  9031. name: "Toying with Transcendence",
  9032. height: math.unit(1e307, "meters")
  9033. },
  9034. ]
  9035. ))
  9036. characterMakers.push(() => makeCharacter(
  9037. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  9038. {
  9039. front: {
  9040. height: math.unit(17 + 1 / 12, "feet"),
  9041. weight: math.unit(476.2 * 5, "lbs"),
  9042. name: "Front",
  9043. image: {
  9044. source: "./media/characters/kuro-shi-uchū/front.svg",
  9045. extra: 2329 / 1835,
  9046. bottom: 0.02
  9047. }
  9048. },
  9049. },
  9050. [
  9051. {
  9052. name: "Micro",
  9053. height: math.unit(2, "inches")
  9054. },
  9055. {
  9056. name: "Normal",
  9057. height: math.unit(12, "meters")
  9058. },
  9059. {
  9060. name: "Planetary",
  9061. height: math.unit(0.00929, "AU"),
  9062. default: true
  9063. },
  9064. {
  9065. name: "Universal",
  9066. height: math.unit(20, "gigaparsecs")
  9067. },
  9068. ]
  9069. ))
  9070. characterMakers.push(() => makeCharacter(
  9071. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  9072. {
  9073. front: {
  9074. height: math.unit(5 + 2 / 12, "feet"),
  9075. weight: math.unit(120, "lbs"),
  9076. name: "Front",
  9077. image: {
  9078. source: "./media/characters/katherine/front.svg",
  9079. extra: 2075 / 1969
  9080. }
  9081. },
  9082. dress: {
  9083. height: math.unit(5 + 2 / 12, "feet"),
  9084. weight: math.unit(120, "lbs"),
  9085. name: "Dress",
  9086. image: {
  9087. source: "./media/characters/katherine/dress.svg",
  9088. extra: 2258 / 2064
  9089. }
  9090. },
  9091. },
  9092. [
  9093. {
  9094. name: "Micro",
  9095. height: math.unit(1, "inches"),
  9096. default: true
  9097. },
  9098. {
  9099. name: "Normal",
  9100. height: math.unit(5 + 2 / 12, "feet")
  9101. },
  9102. {
  9103. name: "Macro",
  9104. height: math.unit(100, "meters")
  9105. },
  9106. {
  9107. name: "Megamacro",
  9108. height: math.unit(80, "miles")
  9109. },
  9110. ]
  9111. ))
  9112. characterMakers.push(() => makeCharacter(
  9113. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  9114. {
  9115. front: {
  9116. height: math.unit(7 + 8 / 12, "feet"),
  9117. weight: math.unit(250, "lbs"),
  9118. name: "Front",
  9119. image: {
  9120. source: "./media/characters/yevis/front.svg",
  9121. extra: 1938 / 1755
  9122. }
  9123. }
  9124. },
  9125. [
  9126. {
  9127. name: "Mortal",
  9128. height: math.unit(7 + 8 / 12, "feet")
  9129. },
  9130. {
  9131. name: "Battle",
  9132. height: math.unit(25 + 11 / 12, "feet")
  9133. },
  9134. {
  9135. name: "Wrath",
  9136. height: math.unit(1654 + 11 / 12, "feet")
  9137. },
  9138. {
  9139. name: "Planet Destroyer",
  9140. height: math.unit(12000, "miles")
  9141. },
  9142. {
  9143. name: "Galaxy Conqueror",
  9144. height: math.unit(1.45, "zettameters"),
  9145. default: true
  9146. },
  9147. {
  9148. name: "Universal War",
  9149. height: math.unit(184, "gigaparsecs")
  9150. },
  9151. {
  9152. name: "Eternity War",
  9153. height: math.unit(1.98e55, "yottaparsecs")
  9154. },
  9155. ]
  9156. ))
  9157. characterMakers.push(() => makeCharacter(
  9158. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  9159. {
  9160. front: {
  9161. height: math.unit(5 + 8 / 12, "feet"),
  9162. weight: math.unit(63, "kg"),
  9163. name: "Front",
  9164. image: {
  9165. source: "./media/characters/xavier/front.svg",
  9166. extra: 944 / 883
  9167. }
  9168. },
  9169. frontStretch: {
  9170. height: math.unit(5 + 8 / 12, "feet"),
  9171. weight: math.unit(63, "kg"),
  9172. name: "Stretching",
  9173. image: {
  9174. source: "./media/characters/xavier/front-stretch.svg",
  9175. extra: 962 / 820
  9176. }
  9177. },
  9178. },
  9179. [
  9180. {
  9181. name: "Normal",
  9182. height: math.unit(5 + 8 / 12, "feet")
  9183. },
  9184. {
  9185. name: "Macro",
  9186. height: math.unit(100, "meters"),
  9187. default: true
  9188. },
  9189. {
  9190. name: "McLargeHuge",
  9191. height: math.unit(10, "miles")
  9192. },
  9193. ]
  9194. ))
  9195. characterMakers.push(() => makeCharacter(
  9196. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  9197. {
  9198. front: {
  9199. height: math.unit(5 + 5 / 12, "feet"),
  9200. weight: math.unit(150, "lb"),
  9201. name: "Front",
  9202. image: {
  9203. source: "./media/characters/joshii/front.svg",
  9204. extra: 765 / 653,
  9205. bottom: 51 / 816
  9206. }
  9207. },
  9208. foot: {
  9209. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  9210. name: "Foot",
  9211. image: {
  9212. source: "./media/characters/joshii/foot.svg"
  9213. }
  9214. },
  9215. },
  9216. [
  9217. {
  9218. name: "Micro",
  9219. height: math.unit(2, "inches"),
  9220. default: true
  9221. },
  9222. {
  9223. name: "Normal",
  9224. height: math.unit(5 + 5 / 12, "feet")
  9225. },
  9226. {
  9227. name: "Macro",
  9228. height: math.unit(785, "feet")
  9229. },
  9230. {
  9231. name: "Megamacro",
  9232. height: math.unit(24.5, "miles")
  9233. },
  9234. ]
  9235. ))
  9236. characterMakers.push(() => makeCharacter(
  9237. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  9238. {
  9239. front: {
  9240. height: math.unit(6, "feet"),
  9241. weight: math.unit(150, "lb"),
  9242. name: "Front",
  9243. image: {
  9244. source: "./media/characters/goddess-elizabeth/front.svg",
  9245. extra: 1800 / 1525,
  9246. bottom: 0.005
  9247. }
  9248. },
  9249. foot: {
  9250. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  9251. name: "Foot",
  9252. image: {
  9253. source: "./media/characters/goddess-elizabeth/foot.svg"
  9254. }
  9255. },
  9256. mouth: {
  9257. height: math.unit(6, "feet"),
  9258. name: "Mouth",
  9259. image: {
  9260. source: "./media/characters/goddess-elizabeth/mouth.svg"
  9261. }
  9262. },
  9263. },
  9264. [
  9265. {
  9266. name: "Micro",
  9267. height: math.unit(12, "feet")
  9268. },
  9269. {
  9270. name: "Normal",
  9271. height: math.unit(80, "miles"),
  9272. default: true
  9273. },
  9274. {
  9275. name: "Macro",
  9276. height: math.unit(15000, "parsecs")
  9277. },
  9278. ]
  9279. ))
  9280. characterMakers.push(() => makeCharacter(
  9281. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  9282. {
  9283. front: {
  9284. height: math.unit(5 + 9 / 12, "feet"),
  9285. weight: math.unit(144, "lb"),
  9286. name: "Front",
  9287. image: {
  9288. source: "./media/characters/kara/front.svg"
  9289. }
  9290. },
  9291. feet: {
  9292. height: math.unit(6 / 6.765, "feet"),
  9293. name: "Kara's Feet",
  9294. rename: true,
  9295. image: {
  9296. source: "./media/characters/kara/feet.svg"
  9297. }
  9298. },
  9299. },
  9300. [
  9301. {
  9302. name: "Normal",
  9303. height: math.unit(5 + 9 / 12, "feet")
  9304. },
  9305. {
  9306. name: "Macro",
  9307. height: math.unit(174, "feet"),
  9308. default: true
  9309. },
  9310. ]
  9311. ))
  9312. characterMakers.push(() => makeCharacter(
  9313. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  9314. {
  9315. front: {
  9316. height: math.unit(18, "feet"),
  9317. weight: math.unit(4050, "lb"),
  9318. name: "Front",
  9319. image: {
  9320. source: "./media/characters/tyrone/front.svg",
  9321. extra: 2405 / 2270,
  9322. bottom: 182 / 2587
  9323. }
  9324. },
  9325. },
  9326. [
  9327. {
  9328. name: "Normal",
  9329. height: math.unit(18, "feet"),
  9330. default: true
  9331. },
  9332. {
  9333. name: "Macro",
  9334. height: math.unit(300, "feet")
  9335. },
  9336. {
  9337. name: "Megamacro",
  9338. height: math.unit(15, "km")
  9339. },
  9340. {
  9341. name: "Gigamacro",
  9342. height: math.unit(500, "km")
  9343. },
  9344. {
  9345. name: "Teramacro",
  9346. height: math.unit(0.5, "gigameters")
  9347. },
  9348. {
  9349. name: "Omnimacro",
  9350. height: math.unit(1e252, "yottauniverse")
  9351. },
  9352. ]
  9353. ))
  9354. characterMakers.push(() => makeCharacter(
  9355. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  9356. {
  9357. front: {
  9358. height: math.unit(7 + 8 / 12, "feet"),
  9359. weight: math.unit(120, "lb"),
  9360. name: "Front",
  9361. image: {
  9362. source: "./media/characters/danny/front.svg",
  9363. extra: 1490 / 1350
  9364. }
  9365. },
  9366. back: {
  9367. height: math.unit(7 + 8 / 12, "feet"),
  9368. weight: math.unit(120, "lb"),
  9369. name: "Back",
  9370. image: {
  9371. source: "./media/characters/danny/back.svg",
  9372. extra: 1490 / 1350
  9373. }
  9374. },
  9375. },
  9376. [
  9377. {
  9378. name: "Normal",
  9379. height: math.unit(7 + 8 / 12, "feet"),
  9380. default: true
  9381. },
  9382. ]
  9383. ))
  9384. characterMakers.push(() => makeCharacter(
  9385. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  9386. {
  9387. front: {
  9388. height: math.unit(3.5, "inches"),
  9389. weight: math.unit(19, "grams"),
  9390. name: "Front",
  9391. image: {
  9392. source: "./media/characters/mallow/front.svg",
  9393. extra: 471 / 431
  9394. }
  9395. },
  9396. back: {
  9397. height: math.unit(3.5, "inches"),
  9398. weight: math.unit(19, "grams"),
  9399. name: "Back",
  9400. image: {
  9401. source: "./media/characters/mallow/back.svg",
  9402. extra: 471 / 431
  9403. }
  9404. },
  9405. },
  9406. [
  9407. {
  9408. name: "Normal",
  9409. height: math.unit(3.5, "inches"),
  9410. default: true
  9411. },
  9412. ]
  9413. ))
  9414. characterMakers.push(() => makeCharacter(
  9415. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  9416. {
  9417. front: {
  9418. height: math.unit(9, "feet"),
  9419. weight: math.unit(230, "kg"),
  9420. name: "Front",
  9421. image: {
  9422. source: "./media/characters/starry-aqua/front.svg"
  9423. }
  9424. },
  9425. back: {
  9426. height: math.unit(9, "feet"),
  9427. weight: math.unit(230, "kg"),
  9428. name: "Back",
  9429. image: {
  9430. source: "./media/characters/starry-aqua/back.svg"
  9431. }
  9432. },
  9433. hand: {
  9434. height: math.unit(9 * 0.1168, "feet"),
  9435. name: "Hand",
  9436. image: {
  9437. source: "./media/characters/starry-aqua/hand.svg"
  9438. }
  9439. },
  9440. foot: {
  9441. height: math.unit(9 * 0.18, "feet"),
  9442. name: "Foot",
  9443. image: {
  9444. source: "./media/characters/starry-aqua/foot.svg"
  9445. }
  9446. }
  9447. },
  9448. [
  9449. {
  9450. name: "Micro",
  9451. height: math.unit(3, "inches")
  9452. },
  9453. {
  9454. name: "Normal",
  9455. height: math.unit(9, "feet")
  9456. },
  9457. {
  9458. name: "Macro",
  9459. height: math.unit(300, "feet"),
  9460. default: true
  9461. },
  9462. {
  9463. name: "Megamacro",
  9464. height: math.unit(3200, "feet")
  9465. }
  9466. ]
  9467. ))
  9468. characterMakers.push(() => makeCharacter(
  9469. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  9470. {
  9471. front: {
  9472. height: math.unit(15, "feet"),
  9473. weight: math.unit(5026, "lb"),
  9474. name: "Front",
  9475. image: {
  9476. source: "./media/characters/luka-towers/front.svg",
  9477. extra: 1269/1133,
  9478. bottom: 51/1320
  9479. }
  9480. },
  9481. },
  9482. [
  9483. {
  9484. name: "Normal",
  9485. height: math.unit(15, "feet"),
  9486. default: true
  9487. },
  9488. {
  9489. name: "Minimacro",
  9490. height: math.unit(25, "feet")
  9491. },
  9492. {
  9493. name: "Macro",
  9494. height: math.unit(320, "feet")
  9495. },
  9496. {
  9497. name: "Megamacro",
  9498. height: math.unit(35000, "feet")
  9499. },
  9500. {
  9501. name: "Gigamacro",
  9502. height: math.unit(4000, "miles")
  9503. },
  9504. {
  9505. name: "Teramacro",
  9506. height: math.unit(15000, "miles")
  9507. },
  9508. ]
  9509. ))
  9510. characterMakers.push(() => makeCharacter(
  9511. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  9512. {
  9513. front: {
  9514. height: math.unit(6, "feet"),
  9515. weight: math.unit(150, "lb"),
  9516. name: "Front",
  9517. image: {
  9518. source: "./media/characters/natalie-nightring/front.svg",
  9519. extra: 1,
  9520. bottom: 0.06
  9521. }
  9522. },
  9523. },
  9524. [
  9525. {
  9526. name: "Uh Oh",
  9527. height: math.unit(0.1, "mm")
  9528. },
  9529. {
  9530. name: "Small",
  9531. height: math.unit(3, "inches")
  9532. },
  9533. {
  9534. name: "Human Scale",
  9535. height: math.unit(6, "feet")
  9536. },
  9537. {
  9538. name: "Librarian",
  9539. height: math.unit(50, "feet"),
  9540. default: true
  9541. },
  9542. {
  9543. name: "Immense",
  9544. height: math.unit(200, "miles")
  9545. },
  9546. ]
  9547. ))
  9548. characterMakers.push(() => makeCharacter(
  9549. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  9550. {
  9551. front: {
  9552. height: math.unit(6, "feet"),
  9553. weight: math.unit(180, "lbs"),
  9554. name: "Front",
  9555. image: {
  9556. source: "./media/characters/danni-rosie/front.svg",
  9557. extra: 1260 / 1128,
  9558. bottom: 0.022
  9559. }
  9560. },
  9561. },
  9562. [
  9563. {
  9564. name: "Micro",
  9565. height: math.unit(2, "inches"),
  9566. default: true
  9567. },
  9568. ]
  9569. ))
  9570. characterMakers.push(() => makeCharacter(
  9571. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  9572. {
  9573. front: {
  9574. height: math.unit(5 + 9 / 12, "feet"),
  9575. weight: math.unit(220, "lb"),
  9576. name: "Front",
  9577. image: {
  9578. source: "./media/characters/samantha-kruse/front.svg",
  9579. extra: (985 / 935),
  9580. bottom: 0.03
  9581. }
  9582. },
  9583. frontUndressed: {
  9584. height: math.unit(5 + 9 / 12, "feet"),
  9585. weight: math.unit(220, "lb"),
  9586. name: "Front (Undressed)",
  9587. image: {
  9588. source: "./media/characters/samantha-kruse/front-undressed.svg",
  9589. extra: (973 / 923),
  9590. bottom: 0.025
  9591. }
  9592. },
  9593. fat: {
  9594. height: math.unit(5 + 9 / 12, "feet"),
  9595. weight: math.unit(900, "lb"),
  9596. name: "Front (Fat)",
  9597. image: {
  9598. source: "./media/characters/samantha-kruse/fat.svg",
  9599. extra: 2688 / 2561
  9600. }
  9601. },
  9602. },
  9603. [
  9604. {
  9605. name: "Normal",
  9606. height: math.unit(5 + 9 / 12, "feet"),
  9607. default: true
  9608. }
  9609. ]
  9610. ))
  9611. characterMakers.push(() => makeCharacter(
  9612. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  9613. {
  9614. back: {
  9615. height: math.unit(5 + 4 / 12, "feet"),
  9616. weight: math.unit(4963, "lb"),
  9617. name: "Back",
  9618. image: {
  9619. source: "./media/characters/amelia-rosie/back.svg",
  9620. extra: 1113 / 963,
  9621. bottom: 0.01
  9622. }
  9623. },
  9624. },
  9625. [
  9626. {
  9627. name: "Level 0",
  9628. height: math.unit(5 + 4 / 12, "feet")
  9629. },
  9630. {
  9631. name: "Level 1",
  9632. height: math.unit(164597, "feet"),
  9633. default: true
  9634. },
  9635. {
  9636. name: "Level 2",
  9637. height: math.unit(956243, "miles")
  9638. },
  9639. {
  9640. name: "Level 3",
  9641. height: math.unit(29421709423, "miles")
  9642. },
  9643. {
  9644. name: "Level 4",
  9645. height: math.unit(154, "lightyears")
  9646. },
  9647. {
  9648. name: "Level 5",
  9649. height: math.unit(4738272, "lightyears")
  9650. },
  9651. {
  9652. name: "Level 6",
  9653. height: math.unit(145787152896, "lightyears")
  9654. },
  9655. ]
  9656. ))
  9657. characterMakers.push(() => makeCharacter(
  9658. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  9659. {
  9660. front: {
  9661. height: math.unit(5 + 11 / 12, "feet"),
  9662. weight: math.unit(65, "kg"),
  9663. name: "Front",
  9664. image: {
  9665. source: "./media/characters/rook-kitara/front.svg",
  9666. extra: 1347 / 1274,
  9667. bottom: 0.005
  9668. }
  9669. },
  9670. },
  9671. [
  9672. {
  9673. name: "Totally Unfair",
  9674. height: math.unit(1.8, "mm")
  9675. },
  9676. {
  9677. name: "Lap Rookie",
  9678. height: math.unit(1.4, "feet")
  9679. },
  9680. {
  9681. name: "Normal",
  9682. height: math.unit(5 + 11 / 12, "feet"),
  9683. default: true
  9684. },
  9685. {
  9686. name: "How Did This Happen",
  9687. height: math.unit(80, "miles")
  9688. }
  9689. ]
  9690. ))
  9691. characterMakers.push(() => makeCharacter(
  9692. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  9693. {
  9694. front: {
  9695. height: math.unit(7, "feet"),
  9696. weight: math.unit(300, "lb"),
  9697. name: "Front",
  9698. image: {
  9699. source: "./media/characters/pisces/front.svg",
  9700. extra: 2255 / 2115,
  9701. bottom: 0.03
  9702. }
  9703. },
  9704. back: {
  9705. height: math.unit(7, "feet"),
  9706. weight: math.unit(300, "lb"),
  9707. name: "Back",
  9708. image: {
  9709. source: "./media/characters/pisces/back.svg",
  9710. extra: 2146 / 2055,
  9711. bottom: 0.04
  9712. }
  9713. },
  9714. },
  9715. [
  9716. {
  9717. name: "Normal",
  9718. height: math.unit(7, "feet"),
  9719. default: true
  9720. },
  9721. {
  9722. name: "Swimming Pool",
  9723. height: math.unit(12.2, "meters")
  9724. },
  9725. {
  9726. name: "Olympic Swimming Pool",
  9727. height: math.unit(56.3, "meters")
  9728. },
  9729. {
  9730. name: "Lake Superior",
  9731. height: math.unit(93900, "meters")
  9732. },
  9733. {
  9734. name: "Mediterranean Sea",
  9735. height: math.unit(644457, "meters")
  9736. },
  9737. {
  9738. name: "World's Oceans",
  9739. height: math.unit(4567491, "meters")
  9740. },
  9741. ]
  9742. ))
  9743. characterMakers.push(() => makeCharacter(
  9744. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  9745. {
  9746. front: {
  9747. height: math.unit(2.3, "meters"),
  9748. weight: math.unit(120, "kg"),
  9749. name: "Front",
  9750. image: {
  9751. source: "./media/characters/zelas/front.svg"
  9752. }
  9753. },
  9754. side: {
  9755. height: math.unit(2.3, "meters"),
  9756. weight: math.unit(120, "kg"),
  9757. name: "Side",
  9758. image: {
  9759. source: "./media/characters/zelas/side.svg"
  9760. }
  9761. },
  9762. back: {
  9763. height: math.unit(2.3, "meters"),
  9764. weight: math.unit(120, "kg"),
  9765. name: "Back",
  9766. image: {
  9767. source: "./media/characters/zelas/back.svg"
  9768. }
  9769. },
  9770. foot: {
  9771. height: math.unit(1.116, "feet"),
  9772. name: "Foot",
  9773. image: {
  9774. source: "./media/characters/zelas/foot.svg"
  9775. }
  9776. },
  9777. },
  9778. [
  9779. {
  9780. name: "Normal",
  9781. height: math.unit(2.3, "meters")
  9782. },
  9783. {
  9784. name: "Macro",
  9785. height: math.unit(30, "meters"),
  9786. default: true
  9787. },
  9788. ]
  9789. ))
  9790. characterMakers.push(() => makeCharacter(
  9791. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  9792. {
  9793. front: {
  9794. height: math.unit(1, "inch"),
  9795. weight: math.unit(0.21, "grams"),
  9796. name: "Front",
  9797. image: {
  9798. source: "./media/characters/talbot/front.svg",
  9799. extra: 594 / 544
  9800. }
  9801. },
  9802. },
  9803. [
  9804. {
  9805. name: "Micro",
  9806. height: math.unit(1, "inch"),
  9807. default: true
  9808. },
  9809. ]
  9810. ))
  9811. characterMakers.push(() => makeCharacter(
  9812. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  9813. {
  9814. front: {
  9815. height: math.unit(3 + 3 / 12, "feet"),
  9816. weight: math.unit(51.8, "lb"),
  9817. name: "Front",
  9818. image: {
  9819. source: "./media/characters/fliss/front.svg",
  9820. extra: 840 / 640
  9821. }
  9822. },
  9823. },
  9824. [
  9825. {
  9826. name: "Teeny Tiny",
  9827. height: math.unit(1, "mm")
  9828. },
  9829. {
  9830. name: "Small",
  9831. height: math.unit(1, "inch"),
  9832. default: true
  9833. },
  9834. {
  9835. name: "Standard Sylveon",
  9836. height: math.unit(3 + 3 / 12, "feet")
  9837. },
  9838. {
  9839. name: "Large Nuisance",
  9840. height: math.unit(33, "feet")
  9841. },
  9842. {
  9843. name: "City Filler",
  9844. height: math.unit(3000, "feet")
  9845. },
  9846. {
  9847. name: "New Horizon",
  9848. height: math.unit(6000, "miles")
  9849. },
  9850. ]
  9851. ))
  9852. characterMakers.push(() => makeCharacter(
  9853. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  9854. {
  9855. front: {
  9856. height: math.unit(5, "cm"),
  9857. weight: math.unit(1.94, "g"),
  9858. name: "Front",
  9859. image: {
  9860. source: "./media/characters/fleta/front.svg",
  9861. extra: 835 / 803
  9862. }
  9863. },
  9864. back: {
  9865. height: math.unit(5, "cm"),
  9866. weight: math.unit(1.94, "g"),
  9867. name: "Back",
  9868. image: {
  9869. source: "./media/characters/fleta/back.svg",
  9870. extra: 835 / 803
  9871. }
  9872. },
  9873. },
  9874. [
  9875. {
  9876. name: "Micro",
  9877. height: math.unit(5, "cm"),
  9878. default: true
  9879. },
  9880. ]
  9881. ))
  9882. characterMakers.push(() => makeCharacter(
  9883. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  9884. {
  9885. front: {
  9886. height: math.unit(6, "feet"),
  9887. weight: math.unit(225, "lb"),
  9888. name: "Front",
  9889. image: {
  9890. source: "./media/characters/dominic/front.svg",
  9891. extra: 1770 / 1620,
  9892. bottom: 0.025
  9893. }
  9894. },
  9895. back: {
  9896. height: math.unit(6, "feet"),
  9897. weight: math.unit(225, "lb"),
  9898. name: "Back",
  9899. image: {
  9900. source: "./media/characters/dominic/back.svg",
  9901. extra: 1745 / 1620,
  9902. bottom: 0.065
  9903. }
  9904. },
  9905. },
  9906. [
  9907. {
  9908. name: "Nano",
  9909. height: math.unit(0.1, "mm")
  9910. },
  9911. {
  9912. name: "Micro-",
  9913. height: math.unit(1, "mm")
  9914. },
  9915. {
  9916. name: "Micro",
  9917. height: math.unit(4, "inches")
  9918. },
  9919. {
  9920. name: "Normal",
  9921. height: math.unit(6 + 4 / 12, "feet"),
  9922. default: true
  9923. },
  9924. {
  9925. name: "Macro",
  9926. height: math.unit(115, "feet")
  9927. },
  9928. {
  9929. name: "Macro+",
  9930. height: math.unit(955, "feet")
  9931. },
  9932. {
  9933. name: "Megamacro",
  9934. height: math.unit(8990, "feet")
  9935. },
  9936. {
  9937. name: "Gigmacro",
  9938. height: math.unit(9310, "miles")
  9939. },
  9940. {
  9941. name: "Teramacro",
  9942. height: math.unit(1567005010, "miles")
  9943. },
  9944. {
  9945. name: "Examacro",
  9946. height: math.unit(1425, "parsecs")
  9947. },
  9948. ]
  9949. ))
  9950. characterMakers.push(() => makeCharacter(
  9951. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  9952. {
  9953. front: {
  9954. height: math.unit(400, "feet"),
  9955. weight: math.unit(44444444, "lb"),
  9956. name: "Front",
  9957. image: {
  9958. source: "./media/characters/major-colonel/front.svg"
  9959. }
  9960. },
  9961. back: {
  9962. height: math.unit(400, "feet"),
  9963. weight: math.unit(44444444, "lb"),
  9964. name: "Back",
  9965. image: {
  9966. source: "./media/characters/major-colonel/back.svg"
  9967. }
  9968. },
  9969. },
  9970. [
  9971. {
  9972. name: "Macro",
  9973. height: math.unit(400, "feet"),
  9974. default: true
  9975. },
  9976. ]
  9977. ))
  9978. characterMakers.push(() => makeCharacter(
  9979. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  9980. {
  9981. catFront: {
  9982. height: math.unit(6, "feet"),
  9983. weight: math.unit(120, "lb"),
  9984. name: "Front (Cat Side)",
  9985. image: {
  9986. source: "./media/characters/axel-lycan/cat-front.svg",
  9987. extra: 430 / 402,
  9988. bottom: 43 / 472.35
  9989. }
  9990. },
  9991. catBack: {
  9992. height: math.unit(6, "feet"),
  9993. weight: math.unit(120, "lb"),
  9994. name: "Back (Cat Side)",
  9995. image: {
  9996. source: "./media/characters/axel-lycan/cat-back.svg",
  9997. extra: 447 / 419,
  9998. bottom: 23.3 / 469
  9999. }
  10000. },
  10001. wolfFront: {
  10002. height: math.unit(6, "feet"),
  10003. weight: math.unit(120, "lb"),
  10004. name: "Front (Wolf Side)",
  10005. image: {
  10006. source: "./media/characters/axel-lycan/wolf-front.svg",
  10007. extra: 485 / 456,
  10008. bottom: 19 / 504
  10009. }
  10010. },
  10011. wolfBack: {
  10012. height: math.unit(6, "feet"),
  10013. weight: math.unit(120, "lb"),
  10014. name: "Back (Wolf Side)",
  10015. image: {
  10016. source: "./media/characters/axel-lycan/wolf-back.svg",
  10017. extra: 475 / 438,
  10018. bottom: 39.2 / 514
  10019. }
  10020. },
  10021. },
  10022. [
  10023. {
  10024. name: "Macro",
  10025. height: math.unit(1, "km"),
  10026. default: true
  10027. },
  10028. ]
  10029. ))
  10030. characterMakers.push(() => makeCharacter(
  10031. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  10032. {
  10033. front: {
  10034. height: math.unit(5 + 9 / 12, "feet"),
  10035. weight: math.unit(175, "lb"),
  10036. name: "Front",
  10037. image: {
  10038. source: "./media/characters/vanrel-hyena/front.svg",
  10039. extra: 1086 / 1010,
  10040. bottom: 0.04
  10041. }
  10042. },
  10043. },
  10044. [
  10045. {
  10046. name: "Normal",
  10047. height: math.unit(5 + 9 / 12, "feet"),
  10048. default: true
  10049. },
  10050. ]
  10051. ))
  10052. characterMakers.push(() => makeCharacter(
  10053. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  10054. {
  10055. front: {
  10056. height: math.unit(6, "feet"),
  10057. weight: math.unit(103, "lb"),
  10058. name: "Front",
  10059. image: {
  10060. source: "./media/characters/abbott-absol/front.svg",
  10061. extra: 2010 / 1842
  10062. }
  10063. },
  10064. },
  10065. [
  10066. {
  10067. name: "Megamicro",
  10068. height: math.unit(0.1, "mm")
  10069. },
  10070. {
  10071. name: "Micro",
  10072. height: math.unit(1, "inch")
  10073. },
  10074. {
  10075. name: "Normal",
  10076. height: math.unit(6, "feet"),
  10077. default: true
  10078. },
  10079. ]
  10080. ))
  10081. characterMakers.push(() => makeCharacter(
  10082. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  10083. {
  10084. front: {
  10085. height: math.unit(6, "feet"),
  10086. weight: math.unit(264, "lb"),
  10087. name: "Front",
  10088. image: {
  10089. source: "./media/characters/hector/front.svg",
  10090. extra: 2280 / 2130,
  10091. bottom: 0.07
  10092. }
  10093. },
  10094. },
  10095. [
  10096. {
  10097. name: "Normal",
  10098. height: math.unit(12.25, "foot"),
  10099. default: true
  10100. },
  10101. {
  10102. name: "Macro",
  10103. height: math.unit(160, "feet")
  10104. },
  10105. ]
  10106. ))
  10107. characterMakers.push(() => makeCharacter(
  10108. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  10109. {
  10110. front: {
  10111. height: math.unit(6, "feet"),
  10112. weight: math.unit(150, "lb"),
  10113. name: "Front",
  10114. image: {
  10115. source: "./media/characters/sal/front.svg",
  10116. extra: 1846 / 1699,
  10117. bottom: 0.04
  10118. }
  10119. },
  10120. },
  10121. [
  10122. {
  10123. name: "Megamacro",
  10124. height: math.unit(10, "miles"),
  10125. default: true
  10126. },
  10127. ]
  10128. ))
  10129. characterMakers.push(() => makeCharacter(
  10130. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  10131. {
  10132. front: {
  10133. height: math.unit(3, "meters"),
  10134. weight: math.unit(450, "kg"),
  10135. name: "front",
  10136. image: {
  10137. source: "./media/characters/ranger/front.svg",
  10138. extra: 2401 / 2243,
  10139. bottom: 0.05
  10140. }
  10141. },
  10142. },
  10143. [
  10144. {
  10145. name: "Normal",
  10146. height: math.unit(3, "meters"),
  10147. default: true
  10148. },
  10149. ]
  10150. ))
  10151. characterMakers.push(() => makeCharacter(
  10152. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  10153. {
  10154. front: {
  10155. height: math.unit(14, "feet"),
  10156. weight: math.unit(800, "kg"),
  10157. name: "Front",
  10158. image: {
  10159. source: "./media/characters/theresa/front.svg",
  10160. extra: 3575 / 3346,
  10161. bottom: 0.03
  10162. }
  10163. },
  10164. },
  10165. [
  10166. {
  10167. name: "Normal",
  10168. height: math.unit(14, "feet"),
  10169. default: true
  10170. },
  10171. ]
  10172. ))
  10173. characterMakers.push(() => makeCharacter(
  10174. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  10175. {
  10176. front: {
  10177. height: math.unit(6, "feet"),
  10178. weight: math.unit(3, "kg"),
  10179. name: "Front",
  10180. image: {
  10181. source: "./media/characters/ine/front.svg",
  10182. extra: 678 / 539,
  10183. bottom: 0.023
  10184. }
  10185. },
  10186. },
  10187. [
  10188. {
  10189. name: "Normal",
  10190. height: math.unit(2.265, "feet"),
  10191. default: true
  10192. },
  10193. ]
  10194. ))
  10195. characterMakers.push(() => makeCharacter(
  10196. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  10197. {
  10198. front: {
  10199. height: math.unit(5, "feet"),
  10200. weight: math.unit(30, "kg"),
  10201. name: "Front",
  10202. image: {
  10203. source: "./media/characters/vial/front.svg",
  10204. extra: 1365 / 1277,
  10205. bottom: 0.04
  10206. }
  10207. },
  10208. },
  10209. [
  10210. {
  10211. name: "Normal",
  10212. height: math.unit(5, "feet"),
  10213. default: true
  10214. },
  10215. ]
  10216. ))
  10217. characterMakers.push(() => makeCharacter(
  10218. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  10219. {
  10220. side: {
  10221. height: math.unit(3.4, "meters"),
  10222. weight: math.unit(1000, "lb"),
  10223. name: "Side",
  10224. image: {
  10225. source: "./media/characters/rovoska/side.svg",
  10226. extra: 4403 / 1515
  10227. }
  10228. },
  10229. },
  10230. [
  10231. {
  10232. name: "Normal",
  10233. height: math.unit(3.4, "meters"),
  10234. default: true
  10235. },
  10236. ]
  10237. ))
  10238. characterMakers.push(() => makeCharacter(
  10239. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  10240. {
  10241. front: {
  10242. height: math.unit(8, "feet"),
  10243. weight: math.unit(315, "lb"),
  10244. name: "Front",
  10245. image: {
  10246. source: "./media/characters/gunner-rotthbauer/front.svg"
  10247. }
  10248. },
  10249. back: {
  10250. height: math.unit(8, "feet"),
  10251. weight: math.unit(315, "lb"),
  10252. name: "Back",
  10253. image: {
  10254. source: "./media/characters/gunner-rotthbauer/back.svg"
  10255. }
  10256. },
  10257. },
  10258. [
  10259. {
  10260. name: "Micro",
  10261. height: math.unit(3.5, "inches")
  10262. },
  10263. {
  10264. name: "Normal",
  10265. height: math.unit(8, "feet"),
  10266. default: true
  10267. },
  10268. {
  10269. name: "Macro",
  10270. height: math.unit(250, "feet")
  10271. },
  10272. {
  10273. name: "Megamacro",
  10274. height: math.unit(1, "AU")
  10275. },
  10276. ]
  10277. ))
  10278. characterMakers.push(() => makeCharacter(
  10279. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  10280. {
  10281. front: {
  10282. height: math.unit(5 + 5 / 12, "feet"),
  10283. weight: math.unit(140, "lb"),
  10284. name: "Front",
  10285. image: {
  10286. source: "./media/characters/allatia/front.svg",
  10287. extra: 1227 / 1180,
  10288. bottom: 0.027
  10289. }
  10290. },
  10291. },
  10292. [
  10293. {
  10294. name: "Normal",
  10295. height: math.unit(5 + 5 / 12, "feet")
  10296. },
  10297. {
  10298. name: "Macro",
  10299. height: math.unit(250, "feet"),
  10300. default: true
  10301. },
  10302. {
  10303. name: "Megamacro",
  10304. height: math.unit(8, "miles")
  10305. }
  10306. ]
  10307. ))
  10308. characterMakers.push(() => makeCharacter(
  10309. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  10310. {
  10311. front: {
  10312. height: math.unit(6, "feet"),
  10313. weight: math.unit(120, "lb"),
  10314. name: "Front",
  10315. image: {
  10316. source: "./media/characters/tene/front.svg",
  10317. extra: 814/750,
  10318. bottom: 36/850
  10319. }
  10320. },
  10321. stomping: {
  10322. height: math.unit(2.025, "meters"),
  10323. weight: math.unit(120, "lb"),
  10324. name: "Stomping",
  10325. image: {
  10326. source: "./media/characters/tene/stomping.svg",
  10327. extra: 885/821,
  10328. bottom: 15/900
  10329. }
  10330. },
  10331. sitting: {
  10332. height: math.unit(1, "meter"),
  10333. weight: math.unit(120, "lb"),
  10334. name: "Sitting",
  10335. image: {
  10336. source: "./media/characters/tene/sitting.svg",
  10337. extra: 396/366,
  10338. bottom: 79/475
  10339. }
  10340. },
  10341. smiling: {
  10342. height: math.unit(1.2, "feet"),
  10343. name: "Smiling",
  10344. image: {
  10345. source: "./media/characters/tene/smiling.svg",
  10346. extra: 1364/1071,
  10347. bottom: 0/1364
  10348. }
  10349. },
  10350. smug: {
  10351. height: math.unit(1.3, "feet"),
  10352. name: "Smug",
  10353. image: {
  10354. source: "./media/characters/tene/smug.svg",
  10355. extra: 1323/1082,
  10356. bottom: 0/1323
  10357. }
  10358. },
  10359. feral: {
  10360. height: math.unit(3.9, "feet"),
  10361. weight: math.unit(250, "lb"),
  10362. name: "Feral",
  10363. image: {
  10364. source: "./media/characters/tene/feral.svg",
  10365. extra: 717 / 458,
  10366. bottom: 0.179
  10367. }
  10368. },
  10369. },
  10370. [
  10371. {
  10372. name: "Normal",
  10373. height: math.unit(6, "feet")
  10374. },
  10375. {
  10376. name: "Macro",
  10377. height: math.unit(300, "feet"),
  10378. default: true
  10379. },
  10380. {
  10381. name: "Megamacro",
  10382. height: math.unit(5, "miles")
  10383. },
  10384. ]
  10385. ))
  10386. characterMakers.push(() => makeCharacter(
  10387. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  10388. {
  10389. side: {
  10390. height: math.unit(6, "feet"),
  10391. name: "Side",
  10392. image: {
  10393. source: "./media/characters/evander/side.svg",
  10394. extra: 877 / 477
  10395. }
  10396. },
  10397. },
  10398. [
  10399. {
  10400. name: "Normal",
  10401. height: math.unit(0.83, "meters"),
  10402. default: true
  10403. },
  10404. ]
  10405. ))
  10406. characterMakers.push(() => makeCharacter(
  10407. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  10408. {
  10409. front: {
  10410. height: math.unit(12, "feet"),
  10411. weight: math.unit(1000, "lb"),
  10412. name: "Front",
  10413. image: {
  10414. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  10415. extra: 1762 / 1611
  10416. }
  10417. },
  10418. back: {
  10419. height: math.unit(12, "feet"),
  10420. weight: math.unit(1000, "lb"),
  10421. name: "Back",
  10422. image: {
  10423. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  10424. extra: 1762 / 1611
  10425. }
  10426. },
  10427. },
  10428. [
  10429. {
  10430. name: "Normal",
  10431. height: math.unit(12, "feet"),
  10432. default: true
  10433. },
  10434. {
  10435. name: "Kaiju",
  10436. height: math.unit(150, "feet")
  10437. },
  10438. ]
  10439. ))
  10440. characterMakers.push(() => makeCharacter(
  10441. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  10442. {
  10443. front: {
  10444. height: math.unit(6, "feet"),
  10445. weight: math.unit(150, "lb"),
  10446. name: "Front",
  10447. image: {
  10448. source: "./media/characters/zero-alurus/front.svg"
  10449. }
  10450. },
  10451. back: {
  10452. height: math.unit(6, "feet"),
  10453. weight: math.unit(150, "lb"),
  10454. name: "Back",
  10455. image: {
  10456. source: "./media/characters/zero-alurus/back.svg"
  10457. }
  10458. },
  10459. },
  10460. [
  10461. {
  10462. name: "Normal",
  10463. height: math.unit(5 + 10 / 12, "feet")
  10464. },
  10465. {
  10466. name: "Macro",
  10467. height: math.unit(60, "feet"),
  10468. default: true
  10469. },
  10470. {
  10471. name: "Macro+",
  10472. height: math.unit(450, "feet")
  10473. },
  10474. ]
  10475. ))
  10476. characterMakers.push(() => makeCharacter(
  10477. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  10478. {
  10479. front: {
  10480. height: math.unit(6, "feet"),
  10481. weight: math.unit(200, "lb"),
  10482. name: "Front",
  10483. image: {
  10484. source: "./media/characters/mega-shi/front.svg",
  10485. extra: 1279 / 1250,
  10486. bottom: 0.02
  10487. }
  10488. },
  10489. back: {
  10490. height: math.unit(6, "feet"),
  10491. weight: math.unit(200, "lb"),
  10492. name: "Back",
  10493. image: {
  10494. source: "./media/characters/mega-shi/back.svg",
  10495. extra: 1279 / 1250,
  10496. bottom: 0.02
  10497. }
  10498. },
  10499. },
  10500. [
  10501. {
  10502. name: "Micro",
  10503. height: math.unit(16 + 6 / 12, "feet")
  10504. },
  10505. {
  10506. name: "Third Dimension",
  10507. height: math.unit(40, "meters")
  10508. },
  10509. {
  10510. name: "Normal",
  10511. height: math.unit(660, "feet"),
  10512. default: true
  10513. },
  10514. {
  10515. name: "Megamacro",
  10516. height: math.unit(10, "miles")
  10517. },
  10518. {
  10519. name: "Planetary Launch",
  10520. height: math.unit(500, "miles")
  10521. },
  10522. {
  10523. name: "Interstellar",
  10524. height: math.unit(1e9, "miles")
  10525. },
  10526. {
  10527. name: "Leaving the Universe",
  10528. height: math.unit(1, "gigaparsec")
  10529. },
  10530. {
  10531. name: "Travelling Universes",
  10532. height: math.unit(30e15, "parsecs")
  10533. },
  10534. ]
  10535. ))
  10536. characterMakers.push(() => makeCharacter(
  10537. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  10538. {
  10539. front: {
  10540. height: math.unit(5 + 4/12, "feet"),
  10541. weight: math.unit(120, "lb"),
  10542. name: "Front",
  10543. image: {
  10544. source: "./media/characters/odyssey/front.svg",
  10545. extra: 1747/1571,
  10546. bottom: 47/1794
  10547. }
  10548. },
  10549. side: {
  10550. height: math.unit(5.1, "feet"),
  10551. weight: math.unit(120, "lb"),
  10552. name: "Side",
  10553. image: {
  10554. source: "./media/characters/odyssey/side.svg",
  10555. extra: 1847/1619,
  10556. bottom: 47/1894
  10557. }
  10558. },
  10559. lounging: {
  10560. height: math.unit(1.464, "feet"),
  10561. weight: math.unit(120, "lb"),
  10562. name: "Lounging",
  10563. image: {
  10564. source: "./media/characters/odyssey/lounging.svg",
  10565. extra: 1235/837,
  10566. bottom: 551/1786
  10567. }
  10568. },
  10569. },
  10570. [
  10571. {
  10572. name: "Normal",
  10573. height: math.unit(5 + 4 / 12, "feet")
  10574. },
  10575. {
  10576. name: "Macro",
  10577. height: math.unit(1, "km")
  10578. },
  10579. {
  10580. name: "Megamacro",
  10581. height: math.unit(3000, "km")
  10582. },
  10583. {
  10584. name: "Gigamacro",
  10585. height: math.unit(1, "AU"),
  10586. default: true
  10587. },
  10588. {
  10589. name: "Omniversal",
  10590. height: math.unit(100e14, "lightyears")
  10591. },
  10592. ]
  10593. ))
  10594. characterMakers.push(() => makeCharacter(
  10595. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  10596. {
  10597. front: {
  10598. height: math.unit(6, "feet"),
  10599. weight: math.unit(300, "lb"),
  10600. name: "Front",
  10601. image: {
  10602. source: "./media/characters/mekuto/front.svg",
  10603. extra: 921 / 832,
  10604. bottom: 0.03
  10605. }
  10606. },
  10607. hand: {
  10608. height: math.unit(6 / 10.24, "feet"),
  10609. name: "Hand",
  10610. image: {
  10611. source: "./media/characters/mekuto/hand.svg"
  10612. }
  10613. },
  10614. foot: {
  10615. height: math.unit(6 / 5.05, "feet"),
  10616. name: "Foot",
  10617. image: {
  10618. source: "./media/characters/mekuto/foot.svg"
  10619. }
  10620. },
  10621. },
  10622. [
  10623. {
  10624. name: "Minimicro",
  10625. height: math.unit(0.2, "inches")
  10626. },
  10627. {
  10628. name: "Micro",
  10629. height: math.unit(1.5, "inches")
  10630. },
  10631. {
  10632. name: "Normal",
  10633. height: math.unit(5 + 11 / 12, "feet"),
  10634. default: true
  10635. },
  10636. {
  10637. name: "Minimacro",
  10638. height: math.unit(17 + 9 / 12, "feet")
  10639. },
  10640. {
  10641. name: "Macro",
  10642. height: math.unit(177.5, "feet")
  10643. },
  10644. {
  10645. name: "Megamacro",
  10646. height: math.unit(152, "miles")
  10647. },
  10648. ]
  10649. ))
  10650. characterMakers.push(() => makeCharacter(
  10651. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  10652. {
  10653. front: {
  10654. height: math.unit(6.5, "inches"),
  10655. weight: math.unit(13, "oz"),
  10656. name: "Front",
  10657. image: {
  10658. source: "./media/characters/dafydd-tomos/front.svg",
  10659. extra: 2990 / 2603,
  10660. bottom: 0.03
  10661. }
  10662. },
  10663. },
  10664. [
  10665. {
  10666. name: "Micro",
  10667. height: math.unit(6.5, "inches"),
  10668. default: true
  10669. },
  10670. ]
  10671. ))
  10672. characterMakers.push(() => makeCharacter(
  10673. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  10674. {
  10675. front: {
  10676. height: math.unit(6, "feet"),
  10677. weight: math.unit(150, "lb"),
  10678. name: "Front",
  10679. image: {
  10680. source: "./media/characters/splinter/front.svg",
  10681. extra: 2990 / 2882,
  10682. bottom: 0.04
  10683. }
  10684. },
  10685. back: {
  10686. height: math.unit(6, "feet"),
  10687. weight: math.unit(150, "lb"),
  10688. name: "Back",
  10689. image: {
  10690. source: "./media/characters/splinter/back.svg",
  10691. extra: 2990 / 2882,
  10692. bottom: 0.04
  10693. }
  10694. },
  10695. },
  10696. [
  10697. {
  10698. name: "Normal",
  10699. height: math.unit(6, "feet")
  10700. },
  10701. {
  10702. name: "Macro",
  10703. height: math.unit(230, "meters"),
  10704. default: true
  10705. },
  10706. ]
  10707. ))
  10708. characterMakers.push(() => makeCharacter(
  10709. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  10710. {
  10711. front: {
  10712. height: math.unit(4 + 10 / 12, "feet"),
  10713. weight: math.unit(480, "lb"),
  10714. name: "Front",
  10715. image: {
  10716. source: "./media/characters/snow-gabumon/front.svg",
  10717. extra: 1140 / 963,
  10718. bottom: 0.058
  10719. }
  10720. },
  10721. back: {
  10722. height: math.unit(4 + 10 / 12, "feet"),
  10723. weight: math.unit(480, "lb"),
  10724. name: "Back",
  10725. image: {
  10726. source: "./media/characters/snow-gabumon/back.svg",
  10727. extra: 1115 / 962,
  10728. bottom: 0.041
  10729. }
  10730. },
  10731. frontUndresed: {
  10732. height: math.unit(4 + 10 / 12, "feet"),
  10733. weight: math.unit(480, "lb"),
  10734. name: "Front (Undressed)",
  10735. image: {
  10736. source: "./media/characters/snow-gabumon/front-undressed.svg",
  10737. extra: 1061 / 960,
  10738. bottom: 0.045
  10739. }
  10740. },
  10741. },
  10742. [
  10743. {
  10744. name: "Micro",
  10745. height: math.unit(1, "inch")
  10746. },
  10747. {
  10748. name: "Normal",
  10749. height: math.unit(4 + 10 / 12, "feet"),
  10750. default: true
  10751. },
  10752. {
  10753. name: "Macro",
  10754. height: math.unit(200, "feet")
  10755. },
  10756. {
  10757. name: "Megamacro",
  10758. height: math.unit(120, "miles")
  10759. },
  10760. {
  10761. name: "Gigamacro",
  10762. height: math.unit(9800, "miles")
  10763. },
  10764. ]
  10765. ))
  10766. characterMakers.push(() => makeCharacter(
  10767. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  10768. {
  10769. front: {
  10770. height: math.unit(1.7, "meters"),
  10771. weight: math.unit(140, "lb"),
  10772. name: "Front",
  10773. image: {
  10774. source: "./media/characters/moody/front.svg",
  10775. extra: 3226 / 3007,
  10776. bottom: 0.087
  10777. }
  10778. },
  10779. },
  10780. [
  10781. {
  10782. name: "Micro",
  10783. height: math.unit(1, "mm")
  10784. },
  10785. {
  10786. name: "Normal",
  10787. height: math.unit(1.7, "meters"),
  10788. default: true
  10789. },
  10790. {
  10791. name: "Macro",
  10792. height: math.unit(80, "meters")
  10793. },
  10794. {
  10795. name: "Macro+",
  10796. height: math.unit(500, "meters")
  10797. },
  10798. ]
  10799. ))
  10800. characterMakers.push(() => makeCharacter(
  10801. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  10802. {
  10803. front: {
  10804. height: math.unit(6, "feet"),
  10805. weight: math.unit(150, "lb"),
  10806. name: "Front",
  10807. image: {
  10808. source: "./media/characters/zyas/front.svg",
  10809. extra: 1180 / 1120,
  10810. bottom: 0.045
  10811. }
  10812. },
  10813. },
  10814. [
  10815. {
  10816. name: "Normal",
  10817. height: math.unit(10, "feet"),
  10818. default: true
  10819. },
  10820. {
  10821. name: "Macro",
  10822. height: math.unit(500, "feet")
  10823. },
  10824. {
  10825. name: "Megamacro",
  10826. height: math.unit(5, "miles")
  10827. },
  10828. {
  10829. name: "Teramacro",
  10830. height: math.unit(150000, "miles")
  10831. },
  10832. ]
  10833. ))
  10834. characterMakers.push(() => makeCharacter(
  10835. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  10836. {
  10837. front: {
  10838. height: math.unit(6, "feet"),
  10839. weight: math.unit(150, "lb"),
  10840. name: "Front",
  10841. image: {
  10842. source: "./media/characters/cuon/front.svg",
  10843. extra: 1390 / 1320,
  10844. bottom: 0.008
  10845. }
  10846. },
  10847. },
  10848. [
  10849. {
  10850. name: "Micro",
  10851. height: math.unit(3, "inches")
  10852. },
  10853. {
  10854. name: "Normal",
  10855. height: math.unit(18 + 9 / 12, "feet"),
  10856. default: true
  10857. },
  10858. {
  10859. name: "Macro",
  10860. height: math.unit(360, "feet")
  10861. },
  10862. {
  10863. name: "Megamacro",
  10864. height: math.unit(360, "miles")
  10865. },
  10866. ]
  10867. ))
  10868. characterMakers.push(() => makeCharacter(
  10869. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  10870. {
  10871. front: {
  10872. height: math.unit(2.4, "meters"),
  10873. weight: math.unit(70, "kg"),
  10874. name: "Front",
  10875. image: {
  10876. source: "./media/characters/nyanuxk/front.svg",
  10877. extra: 1172 / 1084,
  10878. bottom: 0.065
  10879. }
  10880. },
  10881. side: {
  10882. height: math.unit(2.4, "meters"),
  10883. weight: math.unit(70, "kg"),
  10884. name: "Side",
  10885. image: {
  10886. source: "./media/characters/nyanuxk/side.svg",
  10887. extra: 1190 / 1132,
  10888. bottom: 0.007
  10889. }
  10890. },
  10891. back: {
  10892. height: math.unit(2.4, "meters"),
  10893. weight: math.unit(70, "kg"),
  10894. name: "Back",
  10895. image: {
  10896. source: "./media/characters/nyanuxk/back.svg",
  10897. extra: 1200 / 1141,
  10898. bottom: 0.015
  10899. }
  10900. },
  10901. foot: {
  10902. height: math.unit(0.52, "meters"),
  10903. name: "Foot",
  10904. image: {
  10905. source: "./media/characters/nyanuxk/foot.svg"
  10906. }
  10907. },
  10908. },
  10909. [
  10910. {
  10911. name: "Micro",
  10912. height: math.unit(2, "cm")
  10913. },
  10914. {
  10915. name: "Normal",
  10916. height: math.unit(2.4, "meters"),
  10917. default: true
  10918. },
  10919. {
  10920. name: "Smaller Macro",
  10921. height: math.unit(120, "meters")
  10922. },
  10923. {
  10924. name: "Bigger Macro",
  10925. height: math.unit(1.2, "km")
  10926. },
  10927. {
  10928. name: "Megamacro",
  10929. height: math.unit(15, "kilometers")
  10930. },
  10931. {
  10932. name: "Gigamacro",
  10933. height: math.unit(2000, "km")
  10934. },
  10935. {
  10936. name: "Teramacro",
  10937. height: math.unit(500000, "km")
  10938. },
  10939. ]
  10940. ))
  10941. characterMakers.push(() => makeCharacter(
  10942. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  10943. {
  10944. side: {
  10945. height: math.unit(6, "feet"),
  10946. name: "Side",
  10947. image: {
  10948. source: "./media/characters/ailbhe/side.svg",
  10949. extra: 757 / 464,
  10950. bottom: 0.041
  10951. }
  10952. },
  10953. },
  10954. [
  10955. {
  10956. name: "Normal",
  10957. height: math.unit(1.07, "meters"),
  10958. default: true
  10959. },
  10960. ]
  10961. ))
  10962. characterMakers.push(() => makeCharacter(
  10963. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  10964. {
  10965. front: {
  10966. height: math.unit(6, "feet"),
  10967. weight: math.unit(120, "kg"),
  10968. name: "Front",
  10969. image: {
  10970. source: "./media/characters/zevulfius/front.svg",
  10971. extra: 965 / 903
  10972. }
  10973. },
  10974. side: {
  10975. height: math.unit(6, "feet"),
  10976. weight: math.unit(120, "kg"),
  10977. name: "Side",
  10978. image: {
  10979. source: "./media/characters/zevulfius/side.svg",
  10980. extra: 939 / 900
  10981. }
  10982. },
  10983. back: {
  10984. height: math.unit(6, "feet"),
  10985. weight: math.unit(120, "kg"),
  10986. name: "Back",
  10987. image: {
  10988. source: "./media/characters/zevulfius/back.svg",
  10989. extra: 918 / 854,
  10990. bottom: 0.005
  10991. }
  10992. },
  10993. foot: {
  10994. height: math.unit(6 / 3.72, "feet"),
  10995. name: "Foot",
  10996. image: {
  10997. source: "./media/characters/zevulfius/foot.svg"
  10998. }
  10999. },
  11000. },
  11001. [
  11002. {
  11003. name: "Macro",
  11004. height: math.unit(750, "meters")
  11005. },
  11006. {
  11007. name: "Megamacro",
  11008. height: math.unit(20, "km"),
  11009. default: true
  11010. },
  11011. {
  11012. name: "Gigamacro",
  11013. height: math.unit(2000, "km")
  11014. },
  11015. {
  11016. name: "Teramacro",
  11017. height: math.unit(250000, "km")
  11018. },
  11019. ]
  11020. ))
  11021. characterMakers.push(() => makeCharacter(
  11022. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  11023. {
  11024. front: {
  11025. height: math.unit(100, "feet"),
  11026. weight: math.unit(350, "kg"),
  11027. name: "Front",
  11028. image: {
  11029. source: "./media/characters/rikes/front.svg",
  11030. extra: 1565 / 1483,
  11031. bottom: 0.017
  11032. }
  11033. },
  11034. },
  11035. [
  11036. {
  11037. name: "Macro",
  11038. height: math.unit(100, "feet"),
  11039. default: true
  11040. },
  11041. ]
  11042. ))
  11043. characterMakers.push(() => makeCharacter(
  11044. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  11045. {
  11046. front: {
  11047. height: math.unit(8, "feet"),
  11048. weight: math.unit(356, "lb"),
  11049. name: "Front",
  11050. image: {
  11051. source: "./media/characters/adam-silver-mane/front.svg",
  11052. extra: 1036/937,
  11053. bottom: 63/1099
  11054. }
  11055. },
  11056. side: {
  11057. height: math.unit(8, "feet"),
  11058. weight: math.unit(356, "lb"),
  11059. name: "Side",
  11060. image: {
  11061. source: "./media/characters/adam-silver-mane/side.svg",
  11062. extra: 997/901,
  11063. bottom: 59/1056
  11064. }
  11065. },
  11066. frontNsfw: {
  11067. height: math.unit(8, "feet"),
  11068. weight: math.unit(356, "lb"),
  11069. name: "Front (NSFW)",
  11070. image: {
  11071. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  11072. extra: 1036/937,
  11073. bottom: 63/1099
  11074. }
  11075. },
  11076. sideNsfw: {
  11077. height: math.unit(8, "feet"),
  11078. weight: math.unit(356, "lb"),
  11079. name: "Side (NSFW)",
  11080. image: {
  11081. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  11082. extra: 997/901,
  11083. bottom: 59/1056
  11084. }
  11085. },
  11086. dick: {
  11087. height: math.unit(2.1, "feet"),
  11088. name: "Dick",
  11089. image: {
  11090. source: "./media/characters/adam-silver-mane/dick.svg"
  11091. }
  11092. },
  11093. taur: {
  11094. height: math.unit(16, "feet"),
  11095. weight: math.unit(1500, "kg"),
  11096. name: "Taur",
  11097. image: {
  11098. source: "./media/characters/adam-silver-mane/taur.svg",
  11099. extra: 1713 / 1571,
  11100. bottom: 0.01
  11101. }
  11102. },
  11103. },
  11104. [
  11105. {
  11106. name: "Normal",
  11107. height: math.unit(8, "feet")
  11108. },
  11109. {
  11110. name: "Minimacro",
  11111. height: math.unit(80, "feet")
  11112. },
  11113. {
  11114. name: "MDA",
  11115. height: math.unit(80, "meters")
  11116. },
  11117. {
  11118. name: "Macro",
  11119. height: math.unit(800, "feet"),
  11120. default: true
  11121. },
  11122. {
  11123. name: "Megamacro",
  11124. height: math.unit(8000, "feet")
  11125. },
  11126. {
  11127. name: "Gigamacro",
  11128. height: math.unit(800, "miles")
  11129. },
  11130. {
  11131. name: "Teramacro",
  11132. height: math.unit(80000, "miles")
  11133. },
  11134. {
  11135. name: "Celestial",
  11136. height: math.unit(8e6, "miles")
  11137. },
  11138. {
  11139. name: "Star Dragon",
  11140. height: math.unit(800000, "parsecs")
  11141. },
  11142. {
  11143. name: "Godly",
  11144. height: math.unit(800, "teraparsecs")
  11145. },
  11146. ]
  11147. ))
  11148. characterMakers.push(() => makeCharacter(
  11149. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  11150. {
  11151. front: {
  11152. height: math.unit(6, "feet"),
  11153. weight: math.unit(150, "lb"),
  11154. name: "Front",
  11155. image: {
  11156. source: "./media/characters/ky'owin/front.svg",
  11157. extra: 3888 / 3068,
  11158. bottom: 0.015
  11159. }
  11160. },
  11161. },
  11162. [
  11163. {
  11164. name: "Normal",
  11165. height: math.unit(6 + 8 / 12, "feet")
  11166. },
  11167. {
  11168. name: "Large",
  11169. height: math.unit(68, "feet")
  11170. },
  11171. {
  11172. name: "Macro",
  11173. height: math.unit(132, "feet")
  11174. },
  11175. {
  11176. name: "Macro+",
  11177. height: math.unit(340, "feet")
  11178. },
  11179. {
  11180. name: "Macro++",
  11181. height: math.unit(680, "feet"),
  11182. default: true
  11183. },
  11184. {
  11185. name: "Megamacro",
  11186. height: math.unit(1, "mile")
  11187. },
  11188. {
  11189. name: "Megamacro+",
  11190. height: math.unit(10, "miles")
  11191. },
  11192. ]
  11193. ))
  11194. characterMakers.push(() => makeCharacter(
  11195. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  11196. {
  11197. front: {
  11198. height: math.unit(4, "feet"),
  11199. weight: math.unit(50, "lb"),
  11200. name: "Front",
  11201. image: {
  11202. source: "./media/characters/mal/front.svg",
  11203. extra: 785 / 724,
  11204. bottom: 0.07
  11205. }
  11206. },
  11207. },
  11208. [
  11209. {
  11210. name: "Micro",
  11211. height: math.unit(4, "inches")
  11212. },
  11213. {
  11214. name: "Normal",
  11215. height: math.unit(4, "feet"),
  11216. default: true
  11217. },
  11218. {
  11219. name: "Macro",
  11220. height: math.unit(200, "feet")
  11221. },
  11222. ]
  11223. ))
  11224. characterMakers.push(() => makeCharacter(
  11225. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  11226. {
  11227. front: {
  11228. height: math.unit(6, "feet"),
  11229. weight: math.unit(150, "lb"),
  11230. name: "Front",
  11231. image: {
  11232. source: "./media/characters/jordan-deware/front.svg",
  11233. extra: 1191 / 1012
  11234. }
  11235. },
  11236. },
  11237. [
  11238. {
  11239. name: "Nano",
  11240. height: math.unit(0.01, "mm")
  11241. },
  11242. {
  11243. name: "Minimicro",
  11244. height: math.unit(1, "mm")
  11245. },
  11246. {
  11247. name: "Micro",
  11248. height: math.unit(0.5, "inches")
  11249. },
  11250. {
  11251. name: "Normal",
  11252. height: math.unit(4, "feet"),
  11253. default: true
  11254. },
  11255. {
  11256. name: "Minimacro",
  11257. height: math.unit(40, "meters")
  11258. },
  11259. {
  11260. name: "Small Macro",
  11261. height: math.unit(400, "meters")
  11262. },
  11263. {
  11264. name: "Macro",
  11265. height: math.unit(4, "miles")
  11266. },
  11267. {
  11268. name: "Megamacro",
  11269. height: math.unit(40, "miles")
  11270. },
  11271. {
  11272. name: "Megamacro+",
  11273. height: math.unit(400, "miles")
  11274. },
  11275. {
  11276. name: "Gigamacro",
  11277. height: math.unit(400000, "miles")
  11278. },
  11279. ]
  11280. ))
  11281. characterMakers.push(() => makeCharacter(
  11282. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  11283. {
  11284. side: {
  11285. height: math.unit(6, "feet"),
  11286. weight: math.unit(150, "lb"),
  11287. name: "Side",
  11288. image: {
  11289. source: "./media/characters/kimiko/side.svg",
  11290. extra: 600 / 358
  11291. }
  11292. },
  11293. },
  11294. [
  11295. {
  11296. name: "Normal",
  11297. height: math.unit(15, "feet"),
  11298. default: true
  11299. },
  11300. {
  11301. name: "Macro",
  11302. height: math.unit(220, "feet")
  11303. },
  11304. {
  11305. name: "Macro+",
  11306. height: math.unit(1450, "feet")
  11307. },
  11308. {
  11309. name: "Megamacro",
  11310. height: math.unit(11500, "feet")
  11311. },
  11312. {
  11313. name: "Gigamacro",
  11314. height: math.unit(9500, "miles")
  11315. },
  11316. {
  11317. name: "Teramacro",
  11318. height: math.unit(2208005005, "miles")
  11319. },
  11320. {
  11321. name: "Examacro",
  11322. height: math.unit(2750, "parsecs")
  11323. },
  11324. {
  11325. name: "Zettamacro",
  11326. height: math.unit(101500, "parsecs")
  11327. },
  11328. ]
  11329. ))
  11330. characterMakers.push(() => makeCharacter(
  11331. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  11332. {
  11333. front: {
  11334. height: math.unit(6, "feet"),
  11335. weight: math.unit(70, "kg"),
  11336. name: "Front",
  11337. image: {
  11338. source: "./media/characters/andrew-sleepy/front.svg"
  11339. }
  11340. },
  11341. side: {
  11342. height: math.unit(6, "feet"),
  11343. weight: math.unit(70, "kg"),
  11344. name: "Side",
  11345. image: {
  11346. source: "./media/characters/andrew-sleepy/side.svg"
  11347. }
  11348. },
  11349. },
  11350. [
  11351. {
  11352. name: "Micro",
  11353. height: math.unit(1, "mm"),
  11354. default: true
  11355. },
  11356. ]
  11357. ))
  11358. characterMakers.push(() => makeCharacter(
  11359. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  11360. {
  11361. front: {
  11362. height: math.unit(6, "feet"),
  11363. weight: math.unit(150, "lb"),
  11364. name: "Front",
  11365. image: {
  11366. source: "./media/characters/judio/front.svg",
  11367. extra: 1258 / 1110
  11368. }
  11369. },
  11370. },
  11371. [
  11372. {
  11373. name: "Normal",
  11374. height: math.unit(5 + 6 / 12, "feet")
  11375. },
  11376. {
  11377. name: "Macro",
  11378. height: math.unit(1000, "feet"),
  11379. default: true
  11380. },
  11381. {
  11382. name: "Megamacro",
  11383. height: math.unit(10, "miles")
  11384. },
  11385. ]
  11386. ))
  11387. characterMakers.push(() => makeCharacter(
  11388. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  11389. {
  11390. frontDressed: {
  11391. height: math.unit(6, "feet"),
  11392. weight: math.unit(68, "kg"),
  11393. name: "Front (Dressed)",
  11394. image: {
  11395. source: "./media/characters/nomaxice/front-dressed.svg",
  11396. extra: 1137/824,
  11397. bottom: 74/1211
  11398. }
  11399. },
  11400. frontShorts: {
  11401. height: math.unit(6, "feet"),
  11402. weight: math.unit(68, "kg"),
  11403. name: "Front (Shorts)",
  11404. image: {
  11405. source: "./media/characters/nomaxice/front-shorts.svg",
  11406. extra: 1137/824,
  11407. bottom: 74/1211
  11408. }
  11409. },
  11410. back: {
  11411. height: math.unit(6, "feet"),
  11412. weight: math.unit(68, "kg"),
  11413. name: "Back",
  11414. image: {
  11415. source: "./media/characters/nomaxice/back.svg",
  11416. extra: 822/786,
  11417. bottom: 39/861
  11418. }
  11419. },
  11420. hand: {
  11421. height: math.unit(0.565, "feet"),
  11422. name: "Hand",
  11423. image: {
  11424. source: "./media/characters/nomaxice/hand.svg"
  11425. }
  11426. },
  11427. foot: {
  11428. height: math.unit(1, "feet"),
  11429. name: "Foot",
  11430. image: {
  11431. source: "./media/characters/nomaxice/foot.svg"
  11432. }
  11433. },
  11434. },
  11435. [
  11436. {
  11437. name: "Micro",
  11438. height: math.unit(8, "cm")
  11439. },
  11440. {
  11441. name: "Norm",
  11442. height: math.unit(1.82, "m")
  11443. },
  11444. {
  11445. name: "Norm+",
  11446. height: math.unit(8.8, "feet"),
  11447. default: true
  11448. },
  11449. {
  11450. name: "Big",
  11451. height: math.unit(8, "meters")
  11452. },
  11453. {
  11454. name: "Macro",
  11455. height: math.unit(18, "meters")
  11456. },
  11457. {
  11458. name: "Macro+",
  11459. height: math.unit(88, "meters")
  11460. },
  11461. ]
  11462. ))
  11463. characterMakers.push(() => makeCharacter(
  11464. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  11465. {
  11466. front: {
  11467. height: math.unit(12, "feet"),
  11468. weight: math.unit(1.5, "tons"),
  11469. name: "Front",
  11470. image: {
  11471. source: "./media/characters/dydros/front.svg",
  11472. extra: 863 / 800,
  11473. bottom: 0.015
  11474. }
  11475. },
  11476. back: {
  11477. height: math.unit(12, "feet"),
  11478. weight: math.unit(1.5, "tons"),
  11479. name: "Back",
  11480. image: {
  11481. source: "./media/characters/dydros/back.svg",
  11482. extra: 900 / 843,
  11483. bottom: 0.005
  11484. }
  11485. },
  11486. },
  11487. [
  11488. {
  11489. name: "Normal",
  11490. height: math.unit(12, "feet"),
  11491. default: true
  11492. },
  11493. ]
  11494. ))
  11495. characterMakers.push(() => makeCharacter(
  11496. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  11497. {
  11498. front: {
  11499. height: math.unit(6, "feet"),
  11500. weight: math.unit(100, "kg"),
  11501. name: "Front",
  11502. image: {
  11503. source: "./media/characters/riggi/front.svg",
  11504. extra: 5787 / 5303
  11505. }
  11506. },
  11507. hyper: {
  11508. height: math.unit(6 * 5 / 3, "feet"),
  11509. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  11510. name: "Hyper",
  11511. image: {
  11512. source: "./media/characters/riggi/hyper.svg",
  11513. extra: 3595 / 3485
  11514. }
  11515. },
  11516. },
  11517. [
  11518. {
  11519. name: "Small Macro",
  11520. height: math.unit(50, "feet")
  11521. },
  11522. {
  11523. name: "Default",
  11524. height: math.unit(200, "feet"),
  11525. default: true
  11526. },
  11527. {
  11528. name: "Loom",
  11529. height: math.unit(10000, "feet")
  11530. },
  11531. {
  11532. name: "Cruising Altitude",
  11533. height: math.unit(30000, "feet")
  11534. },
  11535. {
  11536. name: "Megamacro",
  11537. height: math.unit(100, "miles")
  11538. },
  11539. {
  11540. name: "Continent Sized",
  11541. height: math.unit(2800, "miles")
  11542. },
  11543. {
  11544. name: "Earth Sized",
  11545. height: math.unit(8000, "miles")
  11546. },
  11547. ]
  11548. ))
  11549. characterMakers.push(() => makeCharacter(
  11550. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  11551. {
  11552. front: {
  11553. height: math.unit(6, "feet"),
  11554. weight: math.unit(250, "lb"),
  11555. name: "Front",
  11556. image: {
  11557. source: "./media/characters/alexi/front.svg",
  11558. extra: 3483 / 3291,
  11559. bottom: 0.04
  11560. }
  11561. },
  11562. back: {
  11563. height: math.unit(6, "feet"),
  11564. weight: math.unit(250, "lb"),
  11565. name: "Back",
  11566. image: {
  11567. source: "./media/characters/alexi/back.svg",
  11568. extra: 3533 / 3356,
  11569. bottom: 0.021
  11570. }
  11571. },
  11572. frontTransforming: {
  11573. height: math.unit(8.58, "feet"),
  11574. weight: math.unit(1300, "lb"),
  11575. name: "Transforming",
  11576. image: {
  11577. source: "./media/characters/alexi/front-transforming.svg",
  11578. extra: 437 / 409,
  11579. bottom: 19 / 458.66
  11580. }
  11581. },
  11582. frontTransformed: {
  11583. height: math.unit(12.5, "feet"),
  11584. weight: math.unit(4000, "lb"),
  11585. name: "Transformed",
  11586. image: {
  11587. source: "./media/characters/alexi/front-transformed.svg",
  11588. extra: 639 / 614,
  11589. bottom: 30.55 / 671
  11590. }
  11591. },
  11592. },
  11593. [
  11594. {
  11595. name: "Normal",
  11596. height: math.unit(14, "feet"),
  11597. default: true
  11598. },
  11599. {
  11600. name: "Minimacro",
  11601. height: math.unit(30, "meters")
  11602. },
  11603. {
  11604. name: "Macro",
  11605. height: math.unit(500, "meters")
  11606. },
  11607. {
  11608. name: "Megamacro",
  11609. height: math.unit(9000, "km")
  11610. },
  11611. {
  11612. name: "Teramacro",
  11613. height: math.unit(384000, "km")
  11614. },
  11615. ]
  11616. ))
  11617. characterMakers.push(() => makeCharacter(
  11618. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  11619. {
  11620. front: {
  11621. height: math.unit(6, "feet"),
  11622. weight: math.unit(150, "lb"),
  11623. name: "Front",
  11624. image: {
  11625. source: "./media/characters/kayroo/front.svg",
  11626. extra: 1153 / 1038,
  11627. bottom: 0.06
  11628. }
  11629. },
  11630. foot: {
  11631. height: math.unit(6, "feet"),
  11632. weight: math.unit(150, "lb"),
  11633. name: "Foot",
  11634. image: {
  11635. source: "./media/characters/kayroo/foot.svg"
  11636. }
  11637. },
  11638. },
  11639. [
  11640. {
  11641. name: "Normal",
  11642. height: math.unit(8, "feet"),
  11643. default: true
  11644. },
  11645. {
  11646. name: "Minimacro",
  11647. height: math.unit(250, "feet")
  11648. },
  11649. {
  11650. name: "Macro",
  11651. height: math.unit(2800, "feet")
  11652. },
  11653. {
  11654. name: "Megamacro",
  11655. height: math.unit(5200, "feet")
  11656. },
  11657. {
  11658. name: "Gigamacro",
  11659. height: math.unit(27000, "feet")
  11660. },
  11661. {
  11662. name: "Omega",
  11663. height: math.unit(45000, "feet")
  11664. },
  11665. ]
  11666. ))
  11667. characterMakers.push(() => makeCharacter(
  11668. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  11669. {
  11670. front: {
  11671. height: math.unit(18, "feet"),
  11672. weight: math.unit(5800, "lb"),
  11673. name: "Front",
  11674. image: {
  11675. source: "./media/characters/rhys/front.svg",
  11676. extra: 3386 / 3090,
  11677. bottom: 0.07
  11678. }
  11679. },
  11680. },
  11681. [
  11682. {
  11683. name: "Normal",
  11684. height: math.unit(18, "feet"),
  11685. default: true
  11686. },
  11687. {
  11688. name: "Working Size",
  11689. height: math.unit(200, "feet")
  11690. },
  11691. {
  11692. name: "Demolition Size",
  11693. height: math.unit(2000, "feet")
  11694. },
  11695. {
  11696. name: "Maximum Licensed Size",
  11697. height: math.unit(5, "miles")
  11698. },
  11699. {
  11700. name: "Maximum Observed Size",
  11701. height: math.unit(10, "yottameters")
  11702. },
  11703. ]
  11704. ))
  11705. characterMakers.push(() => makeCharacter(
  11706. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  11707. {
  11708. front: {
  11709. height: math.unit(6, "feet"),
  11710. weight: math.unit(250, "lb"),
  11711. name: "Front",
  11712. image: {
  11713. source: "./media/characters/toto/front.svg",
  11714. extra: 527 / 479,
  11715. bottom: 0.05
  11716. }
  11717. },
  11718. },
  11719. [
  11720. {
  11721. name: "Micro",
  11722. height: math.unit(3, "feet")
  11723. },
  11724. {
  11725. name: "Normal",
  11726. height: math.unit(10, "feet")
  11727. },
  11728. {
  11729. name: "Macro",
  11730. height: math.unit(150, "feet"),
  11731. default: true
  11732. },
  11733. {
  11734. name: "Megamacro",
  11735. height: math.unit(1200, "feet")
  11736. },
  11737. ]
  11738. ))
  11739. characterMakers.push(() => makeCharacter(
  11740. { name: "King", species: ["lion"], tags: ["anthro"] },
  11741. {
  11742. back: {
  11743. height: math.unit(6, "feet"),
  11744. weight: math.unit(150, "lb"),
  11745. name: "Back",
  11746. image: {
  11747. source: "./media/characters/king/back.svg"
  11748. }
  11749. },
  11750. },
  11751. [
  11752. {
  11753. name: "Micro",
  11754. height: math.unit(2, "inches")
  11755. },
  11756. {
  11757. name: "Normal",
  11758. height: math.unit(8, "feet")
  11759. },
  11760. {
  11761. name: "Macro",
  11762. height: math.unit(200, "feet"),
  11763. default: true
  11764. },
  11765. {
  11766. name: "Megamacro",
  11767. height: math.unit(50, "miles")
  11768. },
  11769. ]
  11770. ))
  11771. characterMakers.push(() => makeCharacter(
  11772. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  11773. {
  11774. front: {
  11775. height: math.unit(11, "feet"),
  11776. weight: math.unit(1400, "lb"),
  11777. name: "Front",
  11778. image: {
  11779. source: "./media/characters/cordite/front.svg",
  11780. extra: 1919/1827,
  11781. bottom: 40/1959
  11782. }
  11783. },
  11784. side: {
  11785. height: math.unit(11, "feet"),
  11786. weight: math.unit(1400, "lb"),
  11787. name: "Side",
  11788. image: {
  11789. source: "./media/characters/cordite/side.svg",
  11790. extra: 1908/1793,
  11791. bottom: 38/1946
  11792. }
  11793. },
  11794. back: {
  11795. height: math.unit(11, "feet"),
  11796. weight: math.unit(1400, "lb"),
  11797. name: "Back",
  11798. image: {
  11799. source: "./media/characters/cordite/back.svg",
  11800. extra: 1938/1837,
  11801. bottom: 10/1948
  11802. }
  11803. },
  11804. feral: {
  11805. height: math.unit(2, "feet"),
  11806. weight: math.unit(90, "lb"),
  11807. name: "Feral",
  11808. image: {
  11809. source: "./media/characters/cordite/feral.svg",
  11810. extra: 1260 / 755,
  11811. bottom: 0.05
  11812. }
  11813. },
  11814. },
  11815. [
  11816. {
  11817. name: "Normal",
  11818. height: math.unit(11, "feet"),
  11819. default: true
  11820. },
  11821. ]
  11822. ))
  11823. characterMakers.push(() => makeCharacter(
  11824. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  11825. {
  11826. front: {
  11827. height: math.unit(6, "feet"),
  11828. weight: math.unit(150, "lb"),
  11829. name: "Front",
  11830. image: {
  11831. source: "./media/characters/pianostrong/front.svg",
  11832. extra: 6577 / 6254,
  11833. bottom: 0.02
  11834. }
  11835. },
  11836. side: {
  11837. height: math.unit(6, "feet"),
  11838. weight: math.unit(150, "lb"),
  11839. name: "Side",
  11840. image: {
  11841. source: "./media/characters/pianostrong/side.svg",
  11842. extra: 6106 / 5730
  11843. }
  11844. },
  11845. back: {
  11846. height: math.unit(6, "feet"),
  11847. weight: math.unit(150, "lb"),
  11848. name: "Back",
  11849. image: {
  11850. source: "./media/characters/pianostrong/back.svg",
  11851. extra: 6085 / 5733,
  11852. bottom: 0.01
  11853. }
  11854. },
  11855. },
  11856. [
  11857. {
  11858. name: "Macro",
  11859. height: math.unit(100, "feet")
  11860. },
  11861. {
  11862. name: "Macro+",
  11863. height: math.unit(300, "feet"),
  11864. default: true
  11865. },
  11866. {
  11867. name: "Macro++",
  11868. height: math.unit(1000, "feet")
  11869. },
  11870. ]
  11871. ))
  11872. characterMakers.push(() => makeCharacter(
  11873. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  11874. {
  11875. front: {
  11876. height: math.unit(6, "feet"),
  11877. weight: math.unit(150, "lb"),
  11878. name: "Front",
  11879. image: {
  11880. source: "./media/characters/kona/front.svg",
  11881. extra: 2960 / 2629,
  11882. bottom: 0.005
  11883. }
  11884. },
  11885. },
  11886. [
  11887. {
  11888. name: "Normal",
  11889. height: math.unit(11 + 8 / 12, "feet")
  11890. },
  11891. {
  11892. name: "Macro",
  11893. height: math.unit(850, "feet"),
  11894. default: true
  11895. },
  11896. {
  11897. name: "Macro+",
  11898. height: math.unit(1.5, "km"),
  11899. default: true
  11900. },
  11901. {
  11902. name: "Megamacro",
  11903. height: math.unit(80, "miles")
  11904. },
  11905. {
  11906. name: "Gigamacro",
  11907. height: math.unit(3500, "miles")
  11908. },
  11909. ]
  11910. ))
  11911. characterMakers.push(() => makeCharacter(
  11912. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  11913. {
  11914. side: {
  11915. height: math.unit(1.9, "meters"),
  11916. weight: math.unit(326, "kg"),
  11917. name: "Side",
  11918. image: {
  11919. source: "./media/characters/levi/side.svg",
  11920. extra: 1704 / 1334,
  11921. bottom: 0.02
  11922. }
  11923. },
  11924. },
  11925. [
  11926. {
  11927. name: "Normal",
  11928. height: math.unit(1.9, "meters"),
  11929. default: true
  11930. },
  11931. {
  11932. name: "Macro",
  11933. height: math.unit(20, "meters")
  11934. },
  11935. {
  11936. name: "Macro+",
  11937. height: math.unit(200, "meters")
  11938. },
  11939. {
  11940. name: "Megamacro",
  11941. height: math.unit(2, "km")
  11942. },
  11943. {
  11944. name: "Megamacro+",
  11945. height: math.unit(20, "km")
  11946. },
  11947. {
  11948. name: "Gigamacro",
  11949. height: math.unit(2500, "km")
  11950. },
  11951. {
  11952. name: "Gigamacro+",
  11953. height: math.unit(120000, "km")
  11954. },
  11955. {
  11956. name: "Teramacro",
  11957. height: math.unit(7.77e6, "km")
  11958. },
  11959. ]
  11960. ))
  11961. characterMakers.push(() => makeCharacter(
  11962. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  11963. {
  11964. front: {
  11965. height: math.unit(6 + 4/12, "feet"),
  11966. weight: math.unit(190, "lb"),
  11967. name: "Front",
  11968. image: {
  11969. source: "./media/characters/bmc/front.svg",
  11970. extra: 1626/1472,
  11971. bottom: 79/1705
  11972. }
  11973. },
  11974. back: {
  11975. height: math.unit(6 + 4/12, "feet"),
  11976. weight: math.unit(190, "lb"),
  11977. name: "Back",
  11978. image: {
  11979. source: "./media/characters/bmc/back.svg",
  11980. extra: 1640/1479,
  11981. bottom: 45/1685
  11982. }
  11983. },
  11984. frontArmor: {
  11985. height: math.unit(6 + 4/12, "feet"),
  11986. weight: math.unit(190, "lb"),
  11987. name: "Front-armor",
  11988. image: {
  11989. source: "./media/characters/bmc/front-armor.svg",
  11990. extra: 1538/1468,
  11991. bottom: 79/1617
  11992. }
  11993. },
  11994. },
  11995. [
  11996. {
  11997. name: "Human-sized",
  11998. height: math.unit(6 + 4 / 12, "feet")
  11999. },
  12000. {
  12001. name: "Interactive Size",
  12002. height: math.unit(25, "feet")
  12003. },
  12004. {
  12005. name: "Small",
  12006. height: math.unit(250, "feet")
  12007. },
  12008. {
  12009. name: "Normal",
  12010. height: math.unit(1250, "feet"),
  12011. default: true
  12012. },
  12013. {
  12014. name: "Good Day",
  12015. height: math.unit(88, "miles")
  12016. },
  12017. {
  12018. name: "Largest Measured Size",
  12019. height: math.unit(105.960, "galaxies")
  12020. },
  12021. ]
  12022. ))
  12023. characterMakers.push(() => makeCharacter(
  12024. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  12025. {
  12026. front: {
  12027. height: math.unit(20, "feet"),
  12028. weight: math.unit(2016, "kg"),
  12029. name: "Front",
  12030. image: {
  12031. source: "./media/characters/sven-the-kaiju/front.svg",
  12032. extra: 1277/1250,
  12033. bottom: 35/1312
  12034. }
  12035. },
  12036. mouth: {
  12037. height: math.unit(1.85, "feet"),
  12038. name: "Mouth",
  12039. image: {
  12040. source: "./media/characters/sven-the-kaiju/mouth.svg"
  12041. }
  12042. },
  12043. },
  12044. [
  12045. {
  12046. name: "Fairy",
  12047. height: math.unit(6, "inches")
  12048. },
  12049. {
  12050. name: "Normal",
  12051. height: math.unit(20, "feet"),
  12052. default: true
  12053. },
  12054. {
  12055. name: "Rampage",
  12056. height: math.unit(200, "feet")
  12057. },
  12058. {
  12059. name: "Archfey Forest Guardian",
  12060. height: math.unit(1, "mile")
  12061. },
  12062. ]
  12063. ))
  12064. characterMakers.push(() => makeCharacter(
  12065. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  12066. {
  12067. front: {
  12068. height: math.unit(4, "meters"),
  12069. weight: math.unit(2, "tons"),
  12070. name: "Front",
  12071. image: {
  12072. source: "./media/characters/marik/front.svg",
  12073. extra: 1057 / 1003,
  12074. bottom: 0.08
  12075. }
  12076. },
  12077. },
  12078. [
  12079. {
  12080. name: "Normal",
  12081. height: math.unit(4, "meters"),
  12082. default: true
  12083. },
  12084. {
  12085. name: "Macro",
  12086. height: math.unit(20, "meters")
  12087. },
  12088. {
  12089. name: "Megamacro",
  12090. height: math.unit(50, "km")
  12091. },
  12092. {
  12093. name: "Gigamacro",
  12094. height: math.unit(100, "km")
  12095. },
  12096. {
  12097. name: "Alpha Macro",
  12098. height: math.unit(7.88e7, "yottameters")
  12099. },
  12100. ]
  12101. ))
  12102. characterMakers.push(() => makeCharacter(
  12103. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  12104. {
  12105. front: {
  12106. height: math.unit(6, "feet"),
  12107. weight: math.unit(110, "lb"),
  12108. name: "Front",
  12109. image: {
  12110. source: "./media/characters/mel/front.svg",
  12111. extra: 736 / 617,
  12112. bottom: 0.017
  12113. }
  12114. },
  12115. },
  12116. [
  12117. {
  12118. name: "Pico",
  12119. height: math.unit(3, "pm")
  12120. },
  12121. {
  12122. name: "Nano",
  12123. height: math.unit(3, "nm")
  12124. },
  12125. {
  12126. name: "Micro",
  12127. height: math.unit(0.3, "mm"),
  12128. default: true
  12129. },
  12130. {
  12131. name: "Micro+",
  12132. height: math.unit(3, "mm")
  12133. },
  12134. {
  12135. name: "Normal",
  12136. height: math.unit(5 + 10.5 / 12, "feet")
  12137. },
  12138. ]
  12139. ))
  12140. characterMakers.push(() => makeCharacter(
  12141. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  12142. {
  12143. kaiju: {
  12144. height: math.unit(1.75, "meters"),
  12145. weight: math.unit(55, "kg"),
  12146. name: "Kaiju",
  12147. image: {
  12148. source: "./media/characters/lykonous/kaiju.svg",
  12149. extra: 1055 / 946,
  12150. bottom: 0.135
  12151. }
  12152. },
  12153. },
  12154. [
  12155. {
  12156. name: "Normal",
  12157. height: math.unit(2.5, "meters"),
  12158. default: true
  12159. },
  12160. {
  12161. name: "Kaiju Dragon",
  12162. height: math.unit(60, "meters")
  12163. },
  12164. {
  12165. name: "Mega Kaiju",
  12166. height: math.unit(120, "km")
  12167. },
  12168. {
  12169. name: "Giga Kaiju",
  12170. height: math.unit(200, "megameters")
  12171. },
  12172. {
  12173. name: "Terra Kaiju",
  12174. height: math.unit(400, "gigameters")
  12175. },
  12176. {
  12177. name: "Kaiju Dragon God",
  12178. height: math.unit(13000, "exaparsecs")
  12179. },
  12180. ]
  12181. ))
  12182. characterMakers.push(() => makeCharacter(
  12183. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  12184. {
  12185. front: {
  12186. height: math.unit(6, "feet"),
  12187. weight: math.unit(150, "lb"),
  12188. name: "Front",
  12189. image: {
  12190. source: "./media/characters/blü/front.svg",
  12191. extra: 1883 / 1564,
  12192. bottom: 0.031
  12193. }
  12194. },
  12195. },
  12196. [
  12197. {
  12198. name: "Normal",
  12199. height: math.unit(13, "feet"),
  12200. default: true
  12201. },
  12202. {
  12203. name: "Big Boi",
  12204. height: math.unit(150, "meters")
  12205. },
  12206. {
  12207. name: "Mini Stomper",
  12208. height: math.unit(300, "meters")
  12209. },
  12210. {
  12211. name: "Macro",
  12212. height: math.unit(1000, "meters")
  12213. },
  12214. {
  12215. name: "Megamacro",
  12216. height: math.unit(11000, "meters")
  12217. },
  12218. {
  12219. name: "Gigamacro",
  12220. height: math.unit(11000, "km")
  12221. },
  12222. {
  12223. name: "Teramacro",
  12224. height: math.unit(420000, "km")
  12225. },
  12226. {
  12227. name: "Examacro",
  12228. height: math.unit(120, "parsecs")
  12229. },
  12230. {
  12231. name: "God Tho",
  12232. height: math.unit(98000000000, "parsecs")
  12233. },
  12234. ]
  12235. ))
  12236. characterMakers.push(() => makeCharacter(
  12237. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  12238. {
  12239. taurFront: {
  12240. height: math.unit(6, "feet"),
  12241. weight: math.unit(200, "lb"),
  12242. name: "Taur (Front)",
  12243. image: {
  12244. source: "./media/characters/scales/taur-front.svg",
  12245. extra: 1,
  12246. bottom: 0.05
  12247. }
  12248. },
  12249. taurBack: {
  12250. height: math.unit(6, "feet"),
  12251. weight: math.unit(200, "lb"),
  12252. name: "Taur (Back)",
  12253. image: {
  12254. source: "./media/characters/scales/taur-back.svg",
  12255. extra: 1,
  12256. bottom: 0.08
  12257. }
  12258. },
  12259. anthro: {
  12260. height: math.unit(6 * 7 / 12, "feet"),
  12261. weight: math.unit(100, "lb"),
  12262. name: "Anthro",
  12263. image: {
  12264. source: "./media/characters/scales/anthro.svg",
  12265. extra: 1,
  12266. bottom: 0.06
  12267. }
  12268. },
  12269. },
  12270. [
  12271. {
  12272. name: "Normal",
  12273. height: math.unit(12, "feet"),
  12274. default: true
  12275. },
  12276. ]
  12277. ))
  12278. characterMakers.push(() => makeCharacter(
  12279. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  12280. {
  12281. front: {
  12282. height: math.unit(6, "feet"),
  12283. weight: math.unit(150, "lb"),
  12284. name: "Front",
  12285. image: {
  12286. source: "./media/characters/koragos/front.svg",
  12287. extra: 841 / 794,
  12288. bottom: 0.035
  12289. }
  12290. },
  12291. back: {
  12292. height: math.unit(6, "feet"),
  12293. weight: math.unit(150, "lb"),
  12294. name: "Back",
  12295. image: {
  12296. source: "./media/characters/koragos/back.svg",
  12297. extra: 841 / 810,
  12298. bottom: 0.022
  12299. }
  12300. },
  12301. },
  12302. [
  12303. {
  12304. name: "Normal",
  12305. height: math.unit(6 + 11 / 12, "feet"),
  12306. default: true
  12307. },
  12308. {
  12309. name: "Macro",
  12310. height: math.unit(490, "feet")
  12311. },
  12312. {
  12313. name: "Megamacro",
  12314. height: math.unit(10, "miles")
  12315. },
  12316. {
  12317. name: "Gigamacro",
  12318. height: math.unit(50, "miles")
  12319. },
  12320. ]
  12321. ))
  12322. characterMakers.push(() => makeCharacter(
  12323. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  12324. {
  12325. front: {
  12326. height: math.unit(6, "feet"),
  12327. weight: math.unit(250, "lb"),
  12328. name: "Front",
  12329. image: {
  12330. source: "./media/characters/xylrem/front.svg",
  12331. extra: 3323 / 3050,
  12332. bottom: 0.065
  12333. }
  12334. },
  12335. },
  12336. [
  12337. {
  12338. name: "Micro",
  12339. height: math.unit(4, "feet")
  12340. },
  12341. {
  12342. name: "Normal",
  12343. height: math.unit(16, "feet"),
  12344. default: true
  12345. },
  12346. {
  12347. name: "Macro",
  12348. height: math.unit(2720, "feet")
  12349. },
  12350. {
  12351. name: "Megamacro",
  12352. height: math.unit(25000, "miles")
  12353. },
  12354. ]
  12355. ))
  12356. characterMakers.push(() => makeCharacter(
  12357. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  12358. {
  12359. front: {
  12360. height: math.unit(8, "feet"),
  12361. weight: math.unit(250, "kg"),
  12362. name: "Front",
  12363. image: {
  12364. source: "./media/characters/ikideru/front.svg",
  12365. extra: 930 / 870,
  12366. bottom: 0.087
  12367. }
  12368. },
  12369. back: {
  12370. height: math.unit(8, "feet"),
  12371. weight: math.unit(250, "kg"),
  12372. name: "Back",
  12373. image: {
  12374. source: "./media/characters/ikideru/back.svg",
  12375. extra: 919 / 852,
  12376. bottom: 0.055
  12377. }
  12378. },
  12379. },
  12380. [
  12381. {
  12382. name: "Rare",
  12383. height: math.unit(8, "feet"),
  12384. default: true
  12385. },
  12386. {
  12387. name: "Playful Loom",
  12388. height: math.unit(80, "feet")
  12389. },
  12390. {
  12391. name: "City Leaner",
  12392. height: math.unit(230, "feet")
  12393. },
  12394. {
  12395. name: "Megamacro",
  12396. height: math.unit(2500, "feet")
  12397. },
  12398. {
  12399. name: "Gigamacro",
  12400. height: math.unit(26400, "feet")
  12401. },
  12402. {
  12403. name: "Tectonic Shifter",
  12404. height: math.unit(1.7, "megameters")
  12405. },
  12406. {
  12407. name: "Planet Carer",
  12408. height: math.unit(21, "megameters")
  12409. },
  12410. {
  12411. name: "God",
  12412. height: math.unit(11157.22, "parsecs")
  12413. },
  12414. ]
  12415. ))
  12416. characterMakers.push(() => makeCharacter(
  12417. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  12418. {
  12419. front: {
  12420. height: math.unit(6, "feet"),
  12421. weight: math.unit(120, "lb"),
  12422. name: "Front",
  12423. image: {
  12424. source: "./media/characters/neo/front.svg"
  12425. }
  12426. },
  12427. },
  12428. [
  12429. {
  12430. name: "Micro",
  12431. height: math.unit(2, "inches"),
  12432. default: true
  12433. },
  12434. {
  12435. name: "Human Size",
  12436. height: math.unit(5 + 8 / 12, "feet")
  12437. },
  12438. ]
  12439. ))
  12440. characterMakers.push(() => makeCharacter(
  12441. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  12442. {
  12443. front: {
  12444. height: math.unit(13 + 10 / 12, "feet"),
  12445. weight: math.unit(5320, "lb"),
  12446. name: "Front",
  12447. image: {
  12448. source: "./media/characters/chauncey-chantz/front.svg",
  12449. extra: 1587 / 1435,
  12450. bottom: 0.02
  12451. }
  12452. },
  12453. },
  12454. [
  12455. {
  12456. name: "Normal",
  12457. height: math.unit(13 + 10 / 12, "feet"),
  12458. default: true
  12459. },
  12460. {
  12461. name: "Macro",
  12462. height: math.unit(45, "feet")
  12463. },
  12464. {
  12465. name: "Megamacro",
  12466. height: math.unit(250, "miles")
  12467. },
  12468. {
  12469. name: "Planetary",
  12470. height: math.unit(10000, "miles")
  12471. },
  12472. {
  12473. name: "Galactic",
  12474. height: math.unit(40000, "parsecs")
  12475. },
  12476. {
  12477. name: "Universal",
  12478. height: math.unit(1, "yottameter")
  12479. },
  12480. ]
  12481. ))
  12482. characterMakers.push(() => makeCharacter(
  12483. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  12484. {
  12485. front: {
  12486. height: math.unit(6, "feet"),
  12487. weight: math.unit(150, "lb"),
  12488. name: "Front",
  12489. image: {
  12490. source: "./media/characters/epifox/front.svg",
  12491. extra: 1,
  12492. bottom: 0.075
  12493. }
  12494. },
  12495. },
  12496. [
  12497. {
  12498. name: "Micro",
  12499. height: math.unit(6, "inches")
  12500. },
  12501. {
  12502. name: "Normal",
  12503. height: math.unit(12, "feet"),
  12504. default: true
  12505. },
  12506. {
  12507. name: "Macro",
  12508. height: math.unit(3810, "feet")
  12509. },
  12510. {
  12511. name: "Megamacro",
  12512. height: math.unit(500, "miles")
  12513. },
  12514. ]
  12515. ))
  12516. characterMakers.push(() => makeCharacter(
  12517. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  12518. {
  12519. front: {
  12520. height: math.unit(1.8796, "m"),
  12521. weight: math.unit(230, "lb"),
  12522. name: "Front",
  12523. image: {
  12524. source: "./media/characters/colin-t/front.svg",
  12525. extra: 1272 / 1193,
  12526. bottom: 0.07
  12527. }
  12528. },
  12529. },
  12530. [
  12531. {
  12532. name: "Micro",
  12533. height: math.unit(0.571, "meters")
  12534. },
  12535. {
  12536. name: "Normal",
  12537. height: math.unit(1.8796, "meters"),
  12538. default: true
  12539. },
  12540. {
  12541. name: "Tall",
  12542. height: math.unit(4, "meters")
  12543. },
  12544. {
  12545. name: "Macro",
  12546. height: math.unit(67.241, "meters")
  12547. },
  12548. {
  12549. name: "Megamacro",
  12550. height: math.unit(371.856, "meters")
  12551. },
  12552. {
  12553. name: "Planetary",
  12554. height: math.unit(12631.5689, "km")
  12555. },
  12556. ]
  12557. ))
  12558. characterMakers.push(() => makeCharacter(
  12559. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  12560. {
  12561. front: {
  12562. height: math.unit(1.85, "meters"),
  12563. weight: math.unit(80, "kg"),
  12564. name: "Front",
  12565. image: {
  12566. source: "./media/characters/matvei/front.svg",
  12567. extra: 614 / 594,
  12568. bottom: 0.01
  12569. }
  12570. },
  12571. },
  12572. [
  12573. {
  12574. name: "Normal",
  12575. height: math.unit(1.85, "meters"),
  12576. default: true
  12577. },
  12578. ]
  12579. ))
  12580. characterMakers.push(() => makeCharacter(
  12581. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  12582. {
  12583. front: {
  12584. height: math.unit(5 + 9 / 12, "feet"),
  12585. weight: math.unit(70, "lb"),
  12586. name: "Front",
  12587. image: {
  12588. source: "./media/characters/quincy/front.svg",
  12589. extra: 3041 / 2751
  12590. }
  12591. },
  12592. back: {
  12593. height: math.unit(5 + 9 / 12, "feet"),
  12594. weight: math.unit(70, "lb"),
  12595. name: "Back",
  12596. image: {
  12597. source: "./media/characters/quincy/back.svg",
  12598. extra: 3041 / 2751
  12599. }
  12600. },
  12601. flying: {
  12602. height: math.unit(5 + 4 / 12, "feet"),
  12603. weight: math.unit(70, "lb"),
  12604. name: "Flying",
  12605. image: {
  12606. source: "./media/characters/quincy/flying.svg",
  12607. extra: 1044 / 930
  12608. }
  12609. },
  12610. },
  12611. [
  12612. {
  12613. name: "Micro",
  12614. height: math.unit(3, "cm")
  12615. },
  12616. {
  12617. name: "Normal",
  12618. height: math.unit(5 + 9 / 12, "feet")
  12619. },
  12620. {
  12621. name: "Macro",
  12622. height: math.unit(200, "meters"),
  12623. default: true
  12624. },
  12625. {
  12626. name: "Megamacro",
  12627. height: math.unit(1000, "meters")
  12628. },
  12629. ]
  12630. ))
  12631. characterMakers.push(() => makeCharacter(
  12632. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  12633. {
  12634. front: {
  12635. height: math.unit(3 + 11/12, "feet"),
  12636. weight: math.unit(50, "lb"),
  12637. name: "Front",
  12638. image: {
  12639. source: "./media/characters/vanrel/front.svg",
  12640. extra: 1104/949,
  12641. bottom: 52/1156
  12642. }
  12643. },
  12644. back: {
  12645. height: math.unit(3 + 11/12, "feet"),
  12646. weight: math.unit(50, "lb"),
  12647. name: "Back",
  12648. image: {
  12649. source: "./media/characters/vanrel/back.svg",
  12650. extra: 1119/976,
  12651. bottom: 37/1156
  12652. }
  12653. },
  12654. tome: {
  12655. height: math.unit(1.35, "feet"),
  12656. weight: math.unit(10, "lb"),
  12657. name: "Vanrel's Tome",
  12658. rename: true,
  12659. image: {
  12660. source: "./media/characters/vanrel/tome.svg"
  12661. }
  12662. },
  12663. beans: {
  12664. height: math.unit(0.89, "feet"),
  12665. name: "Beans",
  12666. image: {
  12667. source: "./media/characters/vanrel/beans.svg"
  12668. }
  12669. },
  12670. },
  12671. [
  12672. {
  12673. name: "Normal",
  12674. height: math.unit(3 + 11/12, "feet"),
  12675. default: true
  12676. },
  12677. ]
  12678. ))
  12679. characterMakers.push(() => makeCharacter(
  12680. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  12681. {
  12682. front: {
  12683. height: math.unit(7 + 5 / 12, "feet"),
  12684. name: "Front",
  12685. image: {
  12686. source: "./media/characters/kuiper-vanrel/front.svg",
  12687. extra: 1219/1169,
  12688. bottom: 69/1288
  12689. }
  12690. },
  12691. back: {
  12692. height: math.unit(7 + 5 / 12, "feet"),
  12693. name: "Back",
  12694. image: {
  12695. source: "./media/characters/kuiper-vanrel/back.svg",
  12696. extra: 1236/1193,
  12697. bottom: 27/1263
  12698. }
  12699. },
  12700. foot: {
  12701. height: math.unit(0.55, "meters"),
  12702. name: "Foot",
  12703. image: {
  12704. source: "./media/characters/kuiper-vanrel/foot.svg",
  12705. }
  12706. },
  12707. battle: {
  12708. height: math.unit(6.824, "feet"),
  12709. name: "Battle",
  12710. image: {
  12711. source: "./media/characters/kuiper-vanrel/battle.svg",
  12712. extra: 1466 / 1327,
  12713. bottom: 29 / 1492.5
  12714. }
  12715. },
  12716. meerkui: {
  12717. height: math.unit(18, "inches"),
  12718. name: "Meerkui",
  12719. image: {
  12720. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  12721. extra: 1354/1289,
  12722. bottom: 69/1423
  12723. }
  12724. },
  12725. },
  12726. [
  12727. {
  12728. name: "Normal",
  12729. height: math.unit(7 + 5 / 12, "feet"),
  12730. default: true
  12731. },
  12732. ]
  12733. ))
  12734. characterMakers.push(() => makeCharacter(
  12735. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  12736. {
  12737. front: {
  12738. height: math.unit(8 + 5 / 12, "feet"),
  12739. name: "Front",
  12740. image: {
  12741. source: "./media/characters/keset-vanrel/front.svg",
  12742. extra: 1231/1148,
  12743. bottom: 82/1313
  12744. }
  12745. },
  12746. back: {
  12747. height: math.unit(8 + 5 / 12, "feet"),
  12748. name: "Back",
  12749. image: {
  12750. source: "./media/characters/keset-vanrel/back.svg",
  12751. extra: 1240/1174,
  12752. bottom: 33/1273
  12753. }
  12754. },
  12755. hand: {
  12756. height: math.unit(0.6, "meters"),
  12757. name: "Hand",
  12758. image: {
  12759. source: "./media/characters/keset-vanrel/hand.svg"
  12760. }
  12761. },
  12762. foot: {
  12763. height: math.unit(0.94978, "meters"),
  12764. name: "Foot",
  12765. image: {
  12766. source: "./media/characters/keset-vanrel/foot.svg"
  12767. }
  12768. },
  12769. battle: {
  12770. height: math.unit(7.408, "feet"),
  12771. name: "Battle",
  12772. image: {
  12773. source: "./media/characters/keset-vanrel/battle.svg",
  12774. extra: 1890 / 1386,
  12775. bottom: 73.28 / 1970
  12776. }
  12777. },
  12778. },
  12779. [
  12780. {
  12781. name: "Normal",
  12782. height: math.unit(8 + 5 / 12, "feet"),
  12783. default: true
  12784. },
  12785. ]
  12786. ))
  12787. characterMakers.push(() => makeCharacter(
  12788. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  12789. {
  12790. front: {
  12791. height: math.unit(6, "feet"),
  12792. weight: math.unit(150, "lb"),
  12793. name: "Front",
  12794. image: {
  12795. source: "./media/characters/neos/front.svg",
  12796. extra: 1696 / 992,
  12797. bottom: 0.14
  12798. }
  12799. },
  12800. },
  12801. [
  12802. {
  12803. name: "Normal",
  12804. height: math.unit(54, "cm"),
  12805. default: true
  12806. },
  12807. {
  12808. name: "Macro",
  12809. height: math.unit(100, "m")
  12810. },
  12811. {
  12812. name: "Megamacro",
  12813. height: math.unit(10, "km")
  12814. },
  12815. {
  12816. name: "Megamacro+",
  12817. height: math.unit(100, "km")
  12818. },
  12819. {
  12820. name: "Gigamacro",
  12821. height: math.unit(100, "Mm")
  12822. },
  12823. {
  12824. name: "Teramacro",
  12825. height: math.unit(100, "Gm")
  12826. },
  12827. {
  12828. name: "Examacro",
  12829. height: math.unit(100, "Em")
  12830. },
  12831. {
  12832. name: "Godly",
  12833. height: math.unit(10000, "Ym")
  12834. },
  12835. {
  12836. name: "Beyond Godly",
  12837. height: math.unit(25, "multiverses")
  12838. },
  12839. ]
  12840. ))
  12841. characterMakers.push(() => makeCharacter(
  12842. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  12843. {
  12844. feminine: {
  12845. height: math.unit(5, "feet"),
  12846. weight: math.unit(100, "lb"),
  12847. name: "Feminine",
  12848. image: {
  12849. source: "./media/characters/sammy-mouse/feminine.svg",
  12850. extra: 2526 / 2425,
  12851. bottom: 0.123
  12852. }
  12853. },
  12854. masculine: {
  12855. height: math.unit(5, "feet"),
  12856. weight: math.unit(100, "lb"),
  12857. name: "Masculine",
  12858. image: {
  12859. source: "./media/characters/sammy-mouse/masculine.svg",
  12860. extra: 2526 / 2425,
  12861. bottom: 0.123
  12862. }
  12863. },
  12864. },
  12865. [
  12866. {
  12867. name: "Micro",
  12868. height: math.unit(5, "inches")
  12869. },
  12870. {
  12871. name: "Normal",
  12872. height: math.unit(5, "feet"),
  12873. default: true
  12874. },
  12875. {
  12876. name: "Macro",
  12877. height: math.unit(60, "feet")
  12878. },
  12879. ]
  12880. ))
  12881. characterMakers.push(() => makeCharacter(
  12882. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  12883. {
  12884. front: {
  12885. height: math.unit(4, "feet"),
  12886. weight: math.unit(50, "lb"),
  12887. name: "Front",
  12888. image: {
  12889. source: "./media/characters/kole/front.svg",
  12890. extra: 1423 / 1303,
  12891. bottom: 0.025
  12892. }
  12893. },
  12894. back: {
  12895. height: math.unit(4, "feet"),
  12896. weight: math.unit(50, "lb"),
  12897. name: "Back",
  12898. image: {
  12899. source: "./media/characters/kole/back.svg",
  12900. extra: 1426 / 1280,
  12901. bottom: 0.02
  12902. }
  12903. },
  12904. },
  12905. [
  12906. {
  12907. name: "Normal",
  12908. height: math.unit(4, "feet"),
  12909. default: true
  12910. },
  12911. ]
  12912. ))
  12913. characterMakers.push(() => makeCharacter(
  12914. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  12915. {
  12916. front: {
  12917. height: math.unit(2.5, "feet"),
  12918. weight: math.unit(32, "lb"),
  12919. name: "Front",
  12920. image: {
  12921. source: "./media/characters/rufran/front.svg",
  12922. extra: 1313/885,
  12923. bottom: 94/1407
  12924. }
  12925. },
  12926. side: {
  12927. height: math.unit(2.5, "feet"),
  12928. weight: math.unit(32, "lb"),
  12929. name: "Side",
  12930. image: {
  12931. source: "./media/characters/rufran/side.svg",
  12932. extra: 1109/852,
  12933. bottom: 118/1227
  12934. }
  12935. },
  12936. back: {
  12937. height: math.unit(2.5, "feet"),
  12938. weight: math.unit(32, "lb"),
  12939. name: "Back",
  12940. image: {
  12941. source: "./media/characters/rufran/back.svg",
  12942. extra: 1280/878,
  12943. bottom: 131/1411
  12944. }
  12945. },
  12946. mouth: {
  12947. height: math.unit(1.13, "feet"),
  12948. name: "Mouth",
  12949. image: {
  12950. source: "./media/characters/rufran/mouth.svg"
  12951. }
  12952. },
  12953. foot: {
  12954. height: math.unit(1.33, "feet"),
  12955. name: "Foot",
  12956. image: {
  12957. source: "./media/characters/rufran/foot.svg"
  12958. }
  12959. },
  12960. koboldFront: {
  12961. height: math.unit(2 + 6 / 12, "feet"),
  12962. weight: math.unit(20, "lb"),
  12963. name: "Front (Kobold)",
  12964. image: {
  12965. source: "./media/characters/rufran/kobold-front.svg",
  12966. extra: 2041 / 1839,
  12967. bottom: 0.055
  12968. }
  12969. },
  12970. koboldBack: {
  12971. height: math.unit(2 + 6 / 12, "feet"),
  12972. weight: math.unit(20, "lb"),
  12973. name: "Back (Kobold)",
  12974. image: {
  12975. source: "./media/characters/rufran/kobold-back.svg",
  12976. extra: 2054 / 1839,
  12977. bottom: 0.01
  12978. }
  12979. },
  12980. koboldHand: {
  12981. height: math.unit(0.2166, "meters"),
  12982. name: "Hand (Kobold)",
  12983. image: {
  12984. source: "./media/characters/rufran/kobold-hand.svg"
  12985. }
  12986. },
  12987. koboldFoot: {
  12988. height: math.unit(0.185, "meters"),
  12989. name: "Foot (Kobold)",
  12990. image: {
  12991. source: "./media/characters/rufran/kobold-foot.svg"
  12992. }
  12993. },
  12994. },
  12995. [
  12996. {
  12997. name: "Micro",
  12998. height: math.unit(1, "inch")
  12999. },
  13000. {
  13001. name: "Normal",
  13002. height: math.unit(2 + 6 / 12, "feet"),
  13003. default: true
  13004. },
  13005. {
  13006. name: "Big",
  13007. height: math.unit(60, "feet")
  13008. },
  13009. {
  13010. name: "Macro",
  13011. height: math.unit(325, "feet")
  13012. },
  13013. ]
  13014. ))
  13015. characterMakers.push(() => makeCharacter(
  13016. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  13017. {
  13018. front: {
  13019. height: math.unit(0.3, "meters"),
  13020. weight: math.unit(3.5, "kg"),
  13021. name: "Front",
  13022. image: {
  13023. source: "./media/characters/chip/front.svg",
  13024. extra: 748 / 674
  13025. }
  13026. },
  13027. },
  13028. [
  13029. {
  13030. name: "Micro",
  13031. height: math.unit(1, "inch"),
  13032. default: true
  13033. },
  13034. ]
  13035. ))
  13036. characterMakers.push(() => makeCharacter(
  13037. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  13038. {
  13039. side: {
  13040. height: math.unit(2.3, "meters"),
  13041. weight: math.unit(3500, "lb"),
  13042. name: "Side",
  13043. image: {
  13044. source: "./media/characters/torvid/side.svg",
  13045. extra: 1972 / 722,
  13046. bottom: 0.035
  13047. }
  13048. },
  13049. },
  13050. [
  13051. {
  13052. name: "Normal",
  13053. height: math.unit(2.3, "meters"),
  13054. default: true
  13055. },
  13056. ]
  13057. ))
  13058. characterMakers.push(() => makeCharacter(
  13059. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  13060. {
  13061. front: {
  13062. height: math.unit(2, "meters"),
  13063. weight: math.unit(150.5, "kg"),
  13064. name: "Front",
  13065. image: {
  13066. source: "./media/characters/susan/front.svg",
  13067. extra: 693 / 635,
  13068. bottom: 0.05
  13069. }
  13070. },
  13071. },
  13072. [
  13073. {
  13074. name: "Megamacro",
  13075. height: math.unit(505, "miles"),
  13076. default: true
  13077. },
  13078. ]
  13079. ))
  13080. characterMakers.push(() => makeCharacter(
  13081. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  13082. {
  13083. front: {
  13084. height: math.unit(6, "feet"),
  13085. weight: math.unit(150, "lb"),
  13086. name: "Front",
  13087. image: {
  13088. source: "./media/characters/raindrops/front.svg",
  13089. extra: 2655 / 2461,
  13090. bottom: 49 / 2705
  13091. }
  13092. },
  13093. back: {
  13094. height: math.unit(6, "feet"),
  13095. weight: math.unit(150, "lb"),
  13096. name: "Back",
  13097. image: {
  13098. source: "./media/characters/raindrops/back.svg",
  13099. extra: 2574 / 2400,
  13100. bottom: 65 / 2634
  13101. }
  13102. },
  13103. },
  13104. [
  13105. {
  13106. name: "Micro",
  13107. height: math.unit(6, "inches")
  13108. },
  13109. {
  13110. name: "Normal",
  13111. height: math.unit(6 + 2 / 12, "feet")
  13112. },
  13113. {
  13114. name: "Macro",
  13115. height: math.unit(131, "feet"),
  13116. default: true
  13117. },
  13118. {
  13119. name: "Megamacro",
  13120. height: math.unit(15, "miles")
  13121. },
  13122. {
  13123. name: "Gigamacro",
  13124. height: math.unit(4000, "miles")
  13125. },
  13126. {
  13127. name: "Teramacro",
  13128. height: math.unit(315000, "miles")
  13129. },
  13130. ]
  13131. ))
  13132. characterMakers.push(() => makeCharacter(
  13133. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  13134. {
  13135. front: {
  13136. height: math.unit(2.794, "meters"),
  13137. weight: math.unit(325, "kg"),
  13138. name: "Front",
  13139. image: {
  13140. source: "./media/characters/tezwa/front.svg",
  13141. extra: 2083 / 1906,
  13142. bottom: 0.031
  13143. }
  13144. },
  13145. foot: {
  13146. height: math.unit(0.687, "meters"),
  13147. name: "Foot",
  13148. image: {
  13149. source: "./media/characters/tezwa/foot.svg"
  13150. }
  13151. },
  13152. },
  13153. [
  13154. {
  13155. name: "Normal",
  13156. height: math.unit(9 + 2 / 12, "feet"),
  13157. default: true
  13158. },
  13159. ]
  13160. ))
  13161. characterMakers.push(() => makeCharacter(
  13162. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  13163. {
  13164. front: {
  13165. height: math.unit(58, "feet"),
  13166. weight: math.unit(89000, "lb"),
  13167. name: "Front",
  13168. image: {
  13169. source: "./media/characters/typhus/front.svg",
  13170. extra: 816 / 800,
  13171. bottom: 0.065
  13172. }
  13173. },
  13174. },
  13175. [
  13176. {
  13177. name: "Macro",
  13178. height: math.unit(58, "feet"),
  13179. default: true
  13180. },
  13181. ]
  13182. ))
  13183. characterMakers.push(() => makeCharacter(
  13184. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  13185. {
  13186. front: {
  13187. height: math.unit(12, "feet"),
  13188. weight: math.unit(6, "tonnes"),
  13189. name: "Front",
  13190. image: {
  13191. source: "./media/characters/lyra-von-wulf/front.svg",
  13192. extra: 1,
  13193. bottom: 0.10
  13194. }
  13195. },
  13196. frontMecha: {
  13197. height: math.unit(12, "feet"),
  13198. weight: math.unit(12, "tonnes"),
  13199. name: "Front (Mecha)",
  13200. image: {
  13201. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  13202. extra: 1,
  13203. bottom: 0.042
  13204. }
  13205. },
  13206. maw: {
  13207. height: math.unit(2.2, "feet"),
  13208. name: "Maw",
  13209. image: {
  13210. source: "./media/characters/lyra-von-wulf/maw.svg"
  13211. }
  13212. },
  13213. },
  13214. [
  13215. {
  13216. name: "Normal",
  13217. height: math.unit(12, "feet"),
  13218. default: true
  13219. },
  13220. {
  13221. name: "Classic",
  13222. height: math.unit(50, "feet")
  13223. },
  13224. {
  13225. name: "Macro",
  13226. height: math.unit(500, "feet")
  13227. },
  13228. {
  13229. name: "Megamacro",
  13230. height: math.unit(1, "mile")
  13231. },
  13232. {
  13233. name: "Gigamacro",
  13234. height: math.unit(400, "miles")
  13235. },
  13236. {
  13237. name: "Teramacro",
  13238. height: math.unit(22000, "miles")
  13239. },
  13240. {
  13241. name: "Solarmacro",
  13242. height: math.unit(8600000, "miles")
  13243. },
  13244. {
  13245. name: "Galactic",
  13246. height: math.unit(1057000, "lightyears")
  13247. },
  13248. ]
  13249. ))
  13250. characterMakers.push(() => makeCharacter(
  13251. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  13252. {
  13253. front: {
  13254. height: math.unit(6 + 10 / 12, "feet"),
  13255. weight: math.unit(150, "lb"),
  13256. name: "Front",
  13257. image: {
  13258. source: "./media/characters/dixon/front.svg",
  13259. extra: 3361 / 3209,
  13260. bottom: 0.01
  13261. }
  13262. },
  13263. },
  13264. [
  13265. {
  13266. name: "Normal",
  13267. height: math.unit(6 + 10 / 12, "feet"),
  13268. default: true
  13269. },
  13270. {
  13271. name: "Big",
  13272. height: math.unit(12, "meters")
  13273. },
  13274. {
  13275. name: "Macro",
  13276. height: math.unit(500, "meters")
  13277. },
  13278. {
  13279. name: "Megamacro",
  13280. height: math.unit(2, "km")
  13281. },
  13282. ]
  13283. ))
  13284. characterMakers.push(() => makeCharacter(
  13285. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  13286. {
  13287. front: {
  13288. height: math.unit(185, "cm"),
  13289. weight: math.unit(68, "kg"),
  13290. name: "Front",
  13291. image: {
  13292. source: "./media/characters/kauko/front.svg",
  13293. extra: 1455 / 1421,
  13294. bottom: 0.03
  13295. }
  13296. },
  13297. back: {
  13298. height: math.unit(185, "cm"),
  13299. weight: math.unit(68, "kg"),
  13300. name: "Back",
  13301. image: {
  13302. source: "./media/characters/kauko/back.svg",
  13303. extra: 1455 / 1421,
  13304. bottom: 0.004
  13305. }
  13306. },
  13307. },
  13308. [
  13309. {
  13310. name: "Normal",
  13311. height: math.unit(185, "cm"),
  13312. default: true
  13313. },
  13314. ]
  13315. ))
  13316. characterMakers.push(() => makeCharacter(
  13317. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  13318. {
  13319. front: {
  13320. height: math.unit(6, "feet"),
  13321. weight: math.unit(150, "kg"),
  13322. name: "Front",
  13323. image: {
  13324. source: "./media/characters/varg/front.svg",
  13325. extra: 1108 / 1018,
  13326. bottom: 0.0375
  13327. }
  13328. },
  13329. },
  13330. [
  13331. {
  13332. name: "Normal",
  13333. height: math.unit(5, "meters")
  13334. },
  13335. {
  13336. name: "Macro",
  13337. height: math.unit(200, "meters")
  13338. },
  13339. {
  13340. name: "Megamacro",
  13341. height: math.unit(20, "kilometers")
  13342. },
  13343. {
  13344. name: "True Size",
  13345. height: math.unit(211, "km"),
  13346. default: true
  13347. },
  13348. {
  13349. name: "Gigamacro",
  13350. height: math.unit(1000, "km")
  13351. },
  13352. {
  13353. name: "Gigamacro+",
  13354. height: math.unit(8000, "km")
  13355. },
  13356. {
  13357. name: "Teramacro",
  13358. height: math.unit(1000000, "km")
  13359. },
  13360. ]
  13361. ))
  13362. characterMakers.push(() => makeCharacter(
  13363. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  13364. {
  13365. front: {
  13366. height: math.unit(7 + 7 / 12, "feet"),
  13367. weight: math.unit(267, "lb"),
  13368. name: "Front",
  13369. image: {
  13370. source: "./media/characters/dayza/front.svg",
  13371. extra: 1262 / 1200,
  13372. bottom: 0.035
  13373. }
  13374. },
  13375. side: {
  13376. height: math.unit(7 + 7 / 12, "feet"),
  13377. weight: math.unit(267, "lb"),
  13378. name: "Side",
  13379. image: {
  13380. source: "./media/characters/dayza/side.svg",
  13381. extra: 1295 / 1245,
  13382. bottom: 0.05
  13383. }
  13384. },
  13385. back: {
  13386. height: math.unit(7 + 7 / 12, "feet"),
  13387. weight: math.unit(267, "lb"),
  13388. name: "Back",
  13389. image: {
  13390. source: "./media/characters/dayza/back.svg",
  13391. extra: 1241 / 1170
  13392. }
  13393. },
  13394. },
  13395. [
  13396. {
  13397. name: "Normal",
  13398. height: math.unit(7 + 7 / 12, "feet"),
  13399. default: true
  13400. },
  13401. {
  13402. name: "Macro",
  13403. height: math.unit(155, "feet")
  13404. },
  13405. ]
  13406. ))
  13407. characterMakers.push(() => makeCharacter(
  13408. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  13409. {
  13410. front: {
  13411. height: math.unit(6 + 5 / 12, "feet"),
  13412. weight: math.unit(160, "lb"),
  13413. name: "Front",
  13414. image: {
  13415. source: "./media/characters/xanthos/front.svg",
  13416. extra: 1,
  13417. bottom: 0.04
  13418. }
  13419. },
  13420. back: {
  13421. height: math.unit(6 + 5 / 12, "feet"),
  13422. weight: math.unit(160, "lb"),
  13423. name: "Back",
  13424. image: {
  13425. source: "./media/characters/xanthos/back.svg",
  13426. extra: 1,
  13427. bottom: 0.03
  13428. }
  13429. },
  13430. hand: {
  13431. height: math.unit(0.928, "feet"),
  13432. name: "Hand",
  13433. image: {
  13434. source: "./media/characters/xanthos/hand.svg"
  13435. }
  13436. },
  13437. foot: {
  13438. height: math.unit(1.286, "feet"),
  13439. name: "Foot",
  13440. image: {
  13441. source: "./media/characters/xanthos/foot.svg"
  13442. }
  13443. },
  13444. },
  13445. [
  13446. {
  13447. name: "Normal",
  13448. height: math.unit(6 + 5 / 12, "feet"),
  13449. default: true
  13450. },
  13451. {
  13452. name: "Normal+",
  13453. height: math.unit(6, "meters")
  13454. },
  13455. {
  13456. name: "Macro",
  13457. height: math.unit(40, "feet")
  13458. },
  13459. {
  13460. name: "Macro+",
  13461. height: math.unit(200, "meters")
  13462. },
  13463. {
  13464. name: "Megamacro",
  13465. height: math.unit(20, "km")
  13466. },
  13467. {
  13468. name: "Megamacro+",
  13469. height: math.unit(100, "km")
  13470. },
  13471. {
  13472. name: "Gigamacro",
  13473. height: math.unit(200, "megameters")
  13474. },
  13475. {
  13476. name: "Gigamacro+",
  13477. height: math.unit(1.5, "gigameters")
  13478. },
  13479. ]
  13480. ))
  13481. characterMakers.push(() => makeCharacter(
  13482. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  13483. {
  13484. front: {
  13485. height: math.unit(6 + 3 / 12, "feet"),
  13486. weight: math.unit(215, "lb"),
  13487. name: "Front",
  13488. image: {
  13489. source: "./media/characters/grynn/front.svg",
  13490. extra: 4627 / 4209,
  13491. bottom: 0.047
  13492. }
  13493. },
  13494. },
  13495. [
  13496. {
  13497. name: "Micro",
  13498. height: math.unit(6, "inches")
  13499. },
  13500. {
  13501. name: "Normal",
  13502. height: math.unit(6 + 3 / 12, "feet"),
  13503. default: true
  13504. },
  13505. {
  13506. name: "Big",
  13507. height: math.unit(104, "feet")
  13508. },
  13509. {
  13510. name: "Macro",
  13511. height: math.unit(944, "feet")
  13512. },
  13513. {
  13514. name: "Macro+",
  13515. height: math.unit(9480, "feet")
  13516. },
  13517. {
  13518. name: "Megamacro",
  13519. height: math.unit(78752, "feet")
  13520. },
  13521. {
  13522. name: "Megamacro+",
  13523. height: math.unit(630128, "feet")
  13524. },
  13525. {
  13526. name: "Megamacro++",
  13527. height: math.unit(3150695, "feet")
  13528. },
  13529. ]
  13530. ))
  13531. characterMakers.push(() => makeCharacter(
  13532. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  13533. {
  13534. front: {
  13535. height: math.unit(7 + 5 / 12, "feet"),
  13536. weight: math.unit(450, "lb"),
  13537. name: "Front",
  13538. image: {
  13539. source: "./media/characters/mocha-aura/front.svg",
  13540. extra: 1907 / 1817,
  13541. bottom: 0.04
  13542. }
  13543. },
  13544. back: {
  13545. height: math.unit(7 + 5 / 12, "feet"),
  13546. weight: math.unit(450, "lb"),
  13547. name: "Back",
  13548. image: {
  13549. source: "./media/characters/mocha-aura/back.svg",
  13550. extra: 1900 / 1825,
  13551. bottom: 0.045
  13552. }
  13553. },
  13554. },
  13555. [
  13556. {
  13557. name: "Nano",
  13558. height: math.unit(1, "nm")
  13559. },
  13560. {
  13561. name: "Megamicro",
  13562. height: math.unit(1, "mm")
  13563. },
  13564. {
  13565. name: "Micro",
  13566. height: math.unit(3, "inches")
  13567. },
  13568. {
  13569. name: "Normal",
  13570. height: math.unit(7 + 5 / 12, "feet"),
  13571. default: true
  13572. },
  13573. {
  13574. name: "Macro",
  13575. height: math.unit(30, "feet")
  13576. },
  13577. {
  13578. name: "Megamacro",
  13579. height: math.unit(3500, "feet")
  13580. },
  13581. {
  13582. name: "Teramacro",
  13583. height: math.unit(500000, "miles")
  13584. },
  13585. {
  13586. name: "Petamacro",
  13587. height: math.unit(50000000000000000, "parsecs")
  13588. },
  13589. ]
  13590. ))
  13591. characterMakers.push(() => makeCharacter(
  13592. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  13593. {
  13594. front: {
  13595. height: math.unit(6, "feet"),
  13596. weight: math.unit(150, "lb"),
  13597. name: "Front",
  13598. image: {
  13599. source: "./media/characters/ilisha-devya/front.svg",
  13600. extra: 1053/1049,
  13601. bottom: 270/1323
  13602. }
  13603. },
  13604. back: {
  13605. height: math.unit(6, "feet"),
  13606. weight: math.unit(150, "lb"),
  13607. name: "Back",
  13608. image: {
  13609. source: "./media/characters/ilisha-devya/back.svg",
  13610. extra: 1131/1128,
  13611. bottom: 39/1170
  13612. }
  13613. },
  13614. },
  13615. [
  13616. {
  13617. name: "Macro",
  13618. height: math.unit(500, "feet"),
  13619. default: true
  13620. },
  13621. {
  13622. name: "Megamacro",
  13623. height: math.unit(10, "miles")
  13624. },
  13625. {
  13626. name: "Gigamacro",
  13627. height: math.unit(100000, "miles")
  13628. },
  13629. {
  13630. name: "Examacro",
  13631. height: math.unit(1e9, "lightyears")
  13632. },
  13633. {
  13634. name: "Omniversal",
  13635. height: math.unit(1e33, "lightyears")
  13636. },
  13637. {
  13638. name: "Beyond Infinite",
  13639. height: math.unit(1e100, "lightyears")
  13640. },
  13641. ]
  13642. ))
  13643. characterMakers.push(() => makeCharacter(
  13644. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  13645. {
  13646. Side: {
  13647. height: math.unit(6, "feet"),
  13648. weight: math.unit(150, "lb"),
  13649. name: "Side",
  13650. image: {
  13651. source: "./media/characters/mira/side.svg",
  13652. extra: 900 / 799,
  13653. bottom: 0.02
  13654. }
  13655. },
  13656. },
  13657. [
  13658. {
  13659. name: "Human Size",
  13660. height: math.unit(6, "feet")
  13661. },
  13662. {
  13663. name: "Macro",
  13664. height: math.unit(100, "feet"),
  13665. default: true
  13666. },
  13667. {
  13668. name: "Megamacro",
  13669. height: math.unit(10, "miles")
  13670. },
  13671. {
  13672. name: "Gigamacro",
  13673. height: math.unit(25000, "miles")
  13674. },
  13675. {
  13676. name: "Teramacro",
  13677. height: math.unit(300, "AU")
  13678. },
  13679. {
  13680. name: "Full Size",
  13681. height: math.unit(4.5e10, "lightyears")
  13682. },
  13683. ]
  13684. ))
  13685. characterMakers.push(() => makeCharacter(
  13686. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  13687. {
  13688. front: {
  13689. height: math.unit(6, "feet"),
  13690. weight: math.unit(150, "lb"),
  13691. name: "Front",
  13692. image: {
  13693. source: "./media/characters/holly/front.svg",
  13694. extra: 639 / 606
  13695. }
  13696. },
  13697. back: {
  13698. height: math.unit(6, "feet"),
  13699. weight: math.unit(150, "lb"),
  13700. name: "Back",
  13701. image: {
  13702. source: "./media/characters/holly/back.svg",
  13703. extra: 623 / 598
  13704. }
  13705. },
  13706. frontWorking: {
  13707. height: math.unit(6, "feet"),
  13708. weight: math.unit(150, "lb"),
  13709. name: "Front (Working)",
  13710. image: {
  13711. source: "./media/characters/holly/front-working.svg",
  13712. extra: 607 / 577,
  13713. bottom: 0.048
  13714. }
  13715. },
  13716. },
  13717. [
  13718. {
  13719. name: "Normal",
  13720. height: math.unit(12 + 3 / 12, "feet"),
  13721. default: true
  13722. },
  13723. ]
  13724. ))
  13725. characterMakers.push(() => makeCharacter(
  13726. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  13727. {
  13728. front: {
  13729. height: math.unit(6, "feet"),
  13730. weight: math.unit(150, "lb"),
  13731. name: "Front",
  13732. image: {
  13733. source: "./media/characters/porter/front.svg",
  13734. extra: 1,
  13735. bottom: 0.01
  13736. }
  13737. },
  13738. frontRobes: {
  13739. height: math.unit(6, "feet"),
  13740. weight: math.unit(150, "lb"),
  13741. name: "Front (Robes)",
  13742. image: {
  13743. source: "./media/characters/porter/front-robes.svg",
  13744. extra: 1.01,
  13745. bottom: 0.01
  13746. }
  13747. },
  13748. },
  13749. [
  13750. {
  13751. name: "Normal",
  13752. height: math.unit(11 + 9 / 12, "feet"),
  13753. default: true
  13754. },
  13755. ]
  13756. ))
  13757. characterMakers.push(() => makeCharacter(
  13758. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  13759. {
  13760. legendary: {
  13761. height: math.unit(6, "feet"),
  13762. weight: math.unit(150, "lb"),
  13763. name: "Legendary",
  13764. image: {
  13765. source: "./media/characters/lucy/legendary.svg",
  13766. extra: 1355 / 1100,
  13767. bottom: 0.045
  13768. }
  13769. },
  13770. },
  13771. [
  13772. {
  13773. name: "Legendary",
  13774. height: math.unit(86882 * 2, "miles"),
  13775. default: true
  13776. },
  13777. ]
  13778. ))
  13779. characterMakers.push(() => makeCharacter(
  13780. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  13781. {
  13782. front: {
  13783. height: math.unit(6, "feet"),
  13784. weight: math.unit(150, "lb"),
  13785. name: "Front",
  13786. image: {
  13787. source: "./media/characters/drusilla/front.svg",
  13788. extra: 678 / 635,
  13789. bottom: 0.03
  13790. }
  13791. },
  13792. back: {
  13793. height: math.unit(6, "feet"),
  13794. weight: math.unit(150, "lb"),
  13795. name: "Back",
  13796. image: {
  13797. source: "./media/characters/drusilla/back.svg",
  13798. extra: 678 / 635,
  13799. bottom: 0.005
  13800. }
  13801. },
  13802. },
  13803. [
  13804. {
  13805. name: "Macro",
  13806. height: math.unit(100, "feet")
  13807. },
  13808. {
  13809. name: "Canon Height",
  13810. height: math.unit(2000, "feet"),
  13811. default: true
  13812. },
  13813. ]
  13814. ))
  13815. characterMakers.push(() => makeCharacter(
  13816. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  13817. {
  13818. front: {
  13819. height: math.unit(6, "feet"),
  13820. weight: math.unit(180, "lb"),
  13821. name: "Front",
  13822. image: {
  13823. source: "./media/characters/renard-thatch/front.svg",
  13824. extra: 2411 / 2275,
  13825. bottom: 0.01
  13826. }
  13827. },
  13828. frontPosing: {
  13829. height: math.unit(6, "feet"),
  13830. weight: math.unit(180, "lb"),
  13831. name: "Front (Posing)",
  13832. image: {
  13833. source: "./media/characters/renard-thatch/front-posing.svg",
  13834. extra: 2381 / 2261,
  13835. bottom: 0.01
  13836. }
  13837. },
  13838. back: {
  13839. height: math.unit(6, "feet"),
  13840. weight: math.unit(180, "lb"),
  13841. name: "Back",
  13842. image: {
  13843. source: "./media/characters/renard-thatch/back.svg",
  13844. extra: 2428 / 2288
  13845. }
  13846. },
  13847. },
  13848. [
  13849. {
  13850. name: "Micro",
  13851. height: math.unit(3, "inches")
  13852. },
  13853. {
  13854. name: "Default",
  13855. height: math.unit(6, "feet"),
  13856. default: true
  13857. },
  13858. {
  13859. name: "Macro",
  13860. height: math.unit(75, "feet")
  13861. },
  13862. ]
  13863. ))
  13864. characterMakers.push(() => makeCharacter(
  13865. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  13866. {
  13867. front: {
  13868. height: math.unit(1450, "feet"),
  13869. weight: math.unit(1.21e6, "tons"),
  13870. name: "Front",
  13871. image: {
  13872. source: "./media/characters/sekvra/front.svg",
  13873. extra: 1193/1190,
  13874. bottom: 78/1271
  13875. }
  13876. },
  13877. side: {
  13878. height: math.unit(1450, "feet"),
  13879. weight: math.unit(1.21e6, "tons"),
  13880. name: "Side",
  13881. image: {
  13882. source: "./media/characters/sekvra/side.svg",
  13883. extra: 1193/1190,
  13884. bottom: 52/1245
  13885. }
  13886. },
  13887. back: {
  13888. height: math.unit(1450, "feet"),
  13889. weight: math.unit(1.21e6, "tons"),
  13890. name: "Back",
  13891. image: {
  13892. source: "./media/characters/sekvra/back.svg",
  13893. extra: 1219/1216,
  13894. bottom: 21/1240
  13895. }
  13896. },
  13897. frontClothed: {
  13898. height: math.unit(1450, "feet"),
  13899. weight: math.unit(1.21e6, "tons"),
  13900. name: "Front (Clothed)",
  13901. image: {
  13902. source: "./media/characters/sekvra/front-clothed.svg",
  13903. extra: 1192/1189,
  13904. bottom: 79/1271
  13905. }
  13906. },
  13907. },
  13908. [
  13909. {
  13910. name: "Macro",
  13911. height: math.unit(1450, "feet"),
  13912. default: true
  13913. },
  13914. {
  13915. name: "Megamacro",
  13916. height: math.unit(15000, "feet")
  13917. },
  13918. ]
  13919. ))
  13920. characterMakers.push(() => makeCharacter(
  13921. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  13922. {
  13923. front: {
  13924. height: math.unit(6, "feet"),
  13925. weight: math.unit(150, "lb"),
  13926. name: "Front",
  13927. image: {
  13928. source: "./media/characters/carmine/front.svg",
  13929. extra: 1,
  13930. bottom: 0.035
  13931. }
  13932. },
  13933. frontArmor: {
  13934. height: math.unit(6, "feet"),
  13935. weight: math.unit(150, "lb"),
  13936. name: "Front (Armor)",
  13937. image: {
  13938. source: "./media/characters/carmine/front-armor.svg",
  13939. extra: 1,
  13940. bottom: 0.035
  13941. }
  13942. },
  13943. },
  13944. [
  13945. {
  13946. name: "Large",
  13947. height: math.unit(1, "mile")
  13948. },
  13949. {
  13950. name: "Huge",
  13951. height: math.unit(40, "miles"),
  13952. default: true
  13953. },
  13954. {
  13955. name: "Colossal",
  13956. height: math.unit(2500, "miles")
  13957. },
  13958. ]
  13959. ))
  13960. characterMakers.push(() => makeCharacter(
  13961. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  13962. {
  13963. front: {
  13964. height: math.unit(6, "feet"),
  13965. weight: math.unit(150, "lb"),
  13966. name: "Front",
  13967. image: {
  13968. source: "./media/characters/elyssia/front.svg",
  13969. extra: 2201 / 2035,
  13970. bottom: 0.05
  13971. }
  13972. },
  13973. frontClothed: {
  13974. height: math.unit(6, "feet"),
  13975. weight: math.unit(150, "lb"),
  13976. name: "Front (Clothed)",
  13977. image: {
  13978. source: "./media/characters/elyssia/front-clothed.svg",
  13979. extra: 2201 / 2035,
  13980. bottom: 0.05
  13981. }
  13982. },
  13983. back: {
  13984. height: math.unit(6, "feet"),
  13985. weight: math.unit(150, "lb"),
  13986. name: "Back",
  13987. image: {
  13988. source: "./media/characters/elyssia/back.svg",
  13989. extra: 2201 / 2035,
  13990. bottom: 0.013
  13991. }
  13992. },
  13993. },
  13994. [
  13995. {
  13996. name: "Smaller",
  13997. height: math.unit(150, "feet")
  13998. },
  13999. {
  14000. name: "Standard",
  14001. height: math.unit(1400, "feet"),
  14002. default: true
  14003. },
  14004. {
  14005. name: "Distracted",
  14006. height: math.unit(15000, "feet")
  14007. },
  14008. ]
  14009. ))
  14010. characterMakers.push(() => makeCharacter(
  14011. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  14012. {
  14013. front: {
  14014. height: math.unit(7 + 4/12, "feet"),
  14015. weight: math.unit(690, "lb"),
  14016. name: "Front",
  14017. image: {
  14018. source: "./media/characters/geno-maxwell/front.svg",
  14019. extra: 984/856,
  14020. bottom: 87/1071
  14021. }
  14022. },
  14023. back: {
  14024. height: math.unit(7 + 4/12, "feet"),
  14025. weight: math.unit(690, "lb"),
  14026. name: "Back",
  14027. image: {
  14028. source: "./media/characters/geno-maxwell/back.svg",
  14029. extra: 981/854,
  14030. bottom: 57/1038
  14031. }
  14032. },
  14033. frontCostume: {
  14034. height: math.unit(7 + 4/12, "feet"),
  14035. weight: math.unit(690, "lb"),
  14036. name: "Front (Costume)",
  14037. image: {
  14038. source: "./media/characters/geno-maxwell/front-costume.svg",
  14039. extra: 984/856,
  14040. bottom: 87/1071
  14041. }
  14042. },
  14043. backcostume: {
  14044. height: math.unit(7 + 4/12, "feet"),
  14045. weight: math.unit(690, "lb"),
  14046. name: "Back (Costume)",
  14047. image: {
  14048. source: "./media/characters/geno-maxwell/back-costume.svg",
  14049. extra: 981/854,
  14050. bottom: 57/1038
  14051. }
  14052. },
  14053. },
  14054. [
  14055. {
  14056. name: "Micro",
  14057. height: math.unit(3, "inches")
  14058. },
  14059. {
  14060. name: "Normal",
  14061. height: math.unit(7 + 4 / 12, "feet"),
  14062. default: true
  14063. },
  14064. {
  14065. name: "Macro",
  14066. height: math.unit(220, "feet")
  14067. },
  14068. {
  14069. name: "Megamacro",
  14070. height: math.unit(11, "miles")
  14071. },
  14072. ]
  14073. ))
  14074. characterMakers.push(() => makeCharacter(
  14075. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  14076. {
  14077. front: {
  14078. height: math.unit(7 + 4/12, "feet"),
  14079. weight: math.unit(750, "lb"),
  14080. name: "Front",
  14081. image: {
  14082. source: "./media/characters/regena-maxwell/front.svg",
  14083. extra: 984/856,
  14084. bottom: 87/1071
  14085. }
  14086. },
  14087. back: {
  14088. height: math.unit(7 + 4/12, "feet"),
  14089. weight: math.unit(750, "lb"),
  14090. name: "Back",
  14091. image: {
  14092. source: "./media/characters/regena-maxwell/back.svg",
  14093. extra: 981/854,
  14094. bottom: 57/1038
  14095. }
  14096. },
  14097. frontCostume: {
  14098. height: math.unit(7 + 4/12, "feet"),
  14099. weight: math.unit(750, "lb"),
  14100. name: "Front (Costume)",
  14101. image: {
  14102. source: "./media/characters/regena-maxwell/front-costume.svg",
  14103. extra: 984/856,
  14104. bottom: 87/1071
  14105. }
  14106. },
  14107. backcostume: {
  14108. height: math.unit(7 + 4/12, "feet"),
  14109. weight: math.unit(750, "lb"),
  14110. name: "Back (Costume)",
  14111. image: {
  14112. source: "./media/characters/regena-maxwell/back-costume.svg",
  14113. extra: 981/854,
  14114. bottom: 57/1038
  14115. }
  14116. },
  14117. },
  14118. [
  14119. {
  14120. name: "Normal",
  14121. height: math.unit(7 + 4 / 12, "feet"),
  14122. default: true
  14123. },
  14124. {
  14125. name: "Macro",
  14126. height: math.unit(220, "feet")
  14127. },
  14128. {
  14129. name: "Megamacro",
  14130. height: math.unit(11, "miles")
  14131. },
  14132. ]
  14133. ))
  14134. characterMakers.push(() => makeCharacter(
  14135. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  14136. {
  14137. front: {
  14138. height: math.unit(6, "feet"),
  14139. weight: math.unit(150, "lb"),
  14140. name: "Front",
  14141. image: {
  14142. source: "./media/characters/x-gliding-dragon-x/front.svg",
  14143. extra: 860 / 690,
  14144. bottom: 0.03
  14145. }
  14146. },
  14147. },
  14148. [
  14149. {
  14150. name: "Normal",
  14151. height: math.unit(1.7, "meters"),
  14152. default: true
  14153. },
  14154. ]
  14155. ))
  14156. characterMakers.push(() => makeCharacter(
  14157. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  14158. {
  14159. front: {
  14160. height: math.unit(6, "feet"),
  14161. weight: math.unit(150, "lb"),
  14162. name: "Front",
  14163. image: {
  14164. source: "./media/characters/quilly/front.svg",
  14165. extra: 890 / 776
  14166. }
  14167. },
  14168. },
  14169. [
  14170. {
  14171. name: "Gigamacro",
  14172. height: math.unit(404090, "miles"),
  14173. default: true
  14174. },
  14175. ]
  14176. ))
  14177. characterMakers.push(() => makeCharacter(
  14178. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  14179. {
  14180. front: {
  14181. height: math.unit(7 + 8 / 12, "feet"),
  14182. weight: math.unit(350, "lb"),
  14183. name: "Front",
  14184. image: {
  14185. source: "./media/characters/tempest/front.svg",
  14186. extra: 1175 / 1086,
  14187. bottom: 0.02
  14188. }
  14189. },
  14190. },
  14191. [
  14192. {
  14193. name: "Normal",
  14194. height: math.unit(7 + 8 / 12, "feet"),
  14195. default: true
  14196. },
  14197. ]
  14198. ))
  14199. characterMakers.push(() => makeCharacter(
  14200. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  14201. {
  14202. side: {
  14203. height: math.unit(4 + 5 / 12, "feet"),
  14204. weight: math.unit(80, "lb"),
  14205. name: "Side",
  14206. image: {
  14207. source: "./media/characters/rodger/side.svg",
  14208. extra: 1235 / 1118
  14209. }
  14210. },
  14211. },
  14212. [
  14213. {
  14214. name: "Micro",
  14215. height: math.unit(1, "inch")
  14216. },
  14217. {
  14218. name: "Normal",
  14219. height: math.unit(4 + 5 / 12, "feet"),
  14220. default: true
  14221. },
  14222. {
  14223. name: "Macro",
  14224. height: math.unit(120, "feet")
  14225. },
  14226. ]
  14227. ))
  14228. characterMakers.push(() => makeCharacter(
  14229. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  14230. {
  14231. front: {
  14232. height: math.unit(6, "feet"),
  14233. weight: math.unit(150, "lb"),
  14234. name: "Front",
  14235. image: {
  14236. source: "./media/characters/danyel/front.svg",
  14237. extra: 1185 / 1123,
  14238. bottom: 0.05
  14239. }
  14240. },
  14241. },
  14242. [
  14243. {
  14244. name: "Shrunken",
  14245. height: math.unit(0.5, "mm")
  14246. },
  14247. {
  14248. name: "Micro",
  14249. height: math.unit(1, "mm"),
  14250. default: true
  14251. },
  14252. {
  14253. name: "Upsized",
  14254. height: math.unit(5 + 5 / 12, "feet")
  14255. },
  14256. ]
  14257. ))
  14258. characterMakers.push(() => makeCharacter(
  14259. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  14260. {
  14261. front: {
  14262. height: math.unit(5 + 6 / 12, "feet"),
  14263. weight: math.unit(200, "lb"),
  14264. name: "Front",
  14265. image: {
  14266. source: "./media/characters/vivian-bijoux/front.svg",
  14267. extra: 1217/1209,
  14268. bottom: 76/1293
  14269. }
  14270. },
  14271. back: {
  14272. height: math.unit(5 + 6 / 12, "feet"),
  14273. weight: math.unit(200, "lb"),
  14274. name: "Back",
  14275. image: {
  14276. source: "./media/characters/vivian-bijoux/back.svg",
  14277. extra: 1214/1208,
  14278. bottom: 51/1265
  14279. }
  14280. },
  14281. dressed: {
  14282. height: math.unit(5 + 6 / 12, "feet"),
  14283. weight: math.unit(200, "lb"),
  14284. name: "Dressed",
  14285. image: {
  14286. source: "./media/characters/vivian-bijoux/dressed.svg",
  14287. extra: 1217/1209,
  14288. bottom: 76/1293
  14289. }
  14290. },
  14291. },
  14292. [
  14293. {
  14294. name: "Normal",
  14295. height: math.unit(5 + 6 / 12, "feet"),
  14296. default: true
  14297. },
  14298. {
  14299. name: "Bad Dream",
  14300. height: math.unit(500, "feet")
  14301. },
  14302. {
  14303. name: "Nightmare",
  14304. height: math.unit(500, "miles")
  14305. },
  14306. ]
  14307. ))
  14308. characterMakers.push(() => makeCharacter(
  14309. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  14310. {
  14311. front: {
  14312. height: math.unit(6 + 1 / 12, "feet"),
  14313. weight: math.unit(260, "lb"),
  14314. name: "Front",
  14315. image: {
  14316. source: "./media/characters/zeta/front.svg",
  14317. extra: 1968 / 1889,
  14318. bottom: 0.06
  14319. }
  14320. },
  14321. back: {
  14322. height: math.unit(6 + 1 / 12, "feet"),
  14323. weight: math.unit(260, "lb"),
  14324. name: "Back",
  14325. image: {
  14326. source: "./media/characters/zeta/back.svg",
  14327. extra: 1944 / 1858,
  14328. bottom: 0.03
  14329. }
  14330. },
  14331. hand: {
  14332. height: math.unit(1.112, "feet"),
  14333. name: "Hand",
  14334. image: {
  14335. source: "./media/characters/zeta/hand.svg"
  14336. }
  14337. },
  14338. foot: {
  14339. height: math.unit(1.48, "feet"),
  14340. name: "Foot",
  14341. image: {
  14342. source: "./media/characters/zeta/foot.svg"
  14343. }
  14344. },
  14345. },
  14346. [
  14347. {
  14348. name: "Micro",
  14349. height: math.unit(6, "inches")
  14350. },
  14351. {
  14352. name: "Normal",
  14353. height: math.unit(6 + 1 / 12, "feet"),
  14354. default: true
  14355. },
  14356. {
  14357. name: "Macro",
  14358. height: math.unit(20, "feet")
  14359. },
  14360. ]
  14361. ))
  14362. characterMakers.push(() => makeCharacter(
  14363. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  14364. {
  14365. front: {
  14366. height: math.unit(6, "feet"),
  14367. weight: math.unit(150, "lb"),
  14368. name: "Front",
  14369. image: {
  14370. source: "./media/characters/jamie-larsen/front.svg",
  14371. extra: 962 / 933,
  14372. bottom: 0.02
  14373. }
  14374. },
  14375. back: {
  14376. height: math.unit(6, "feet"),
  14377. weight: math.unit(150, "lb"),
  14378. name: "Back",
  14379. image: {
  14380. source: "./media/characters/jamie-larsen/back.svg",
  14381. extra: 997 / 946
  14382. }
  14383. },
  14384. },
  14385. [
  14386. {
  14387. name: "Macro",
  14388. height: math.unit(28 + 7 / 12, "feet"),
  14389. default: true
  14390. },
  14391. {
  14392. name: "Macro+",
  14393. height: math.unit(180, "feet")
  14394. },
  14395. {
  14396. name: "Megamacro",
  14397. height: math.unit(10, "miles")
  14398. },
  14399. {
  14400. name: "Gigamacro",
  14401. height: math.unit(200000, "miles")
  14402. },
  14403. ]
  14404. ))
  14405. characterMakers.push(() => makeCharacter(
  14406. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  14407. {
  14408. front: {
  14409. height: math.unit(6, "feet"),
  14410. weight: math.unit(120, "lb"),
  14411. name: "Front",
  14412. image: {
  14413. source: "./media/characters/vance/front.svg",
  14414. extra: 1980 / 1890,
  14415. bottom: 0.09
  14416. }
  14417. },
  14418. back: {
  14419. height: math.unit(6, "feet"),
  14420. weight: math.unit(120, "lb"),
  14421. name: "Back",
  14422. image: {
  14423. source: "./media/characters/vance/back.svg",
  14424. extra: 2081 / 1994,
  14425. bottom: 0.014
  14426. }
  14427. },
  14428. hand: {
  14429. height: math.unit(0.88, "feet"),
  14430. name: "Hand",
  14431. image: {
  14432. source: "./media/characters/vance/hand.svg"
  14433. }
  14434. },
  14435. foot: {
  14436. height: math.unit(0.64, "feet"),
  14437. name: "Foot",
  14438. image: {
  14439. source: "./media/characters/vance/foot.svg"
  14440. }
  14441. },
  14442. },
  14443. [
  14444. {
  14445. name: "Small",
  14446. height: math.unit(90, "feet"),
  14447. default: true
  14448. },
  14449. {
  14450. name: "Macro",
  14451. height: math.unit(100, "meters")
  14452. },
  14453. {
  14454. name: "Megamacro",
  14455. height: math.unit(15, "miles")
  14456. },
  14457. ]
  14458. ))
  14459. characterMakers.push(() => makeCharacter(
  14460. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  14461. {
  14462. front: {
  14463. height: math.unit(6, "feet"),
  14464. weight: math.unit(180, "lb"),
  14465. name: "Front",
  14466. image: {
  14467. source: "./media/characters/xochitl/front.svg",
  14468. extra: 2297 / 2261,
  14469. bottom: 0.065
  14470. }
  14471. },
  14472. back: {
  14473. height: math.unit(6, "feet"),
  14474. weight: math.unit(180, "lb"),
  14475. name: "Back",
  14476. image: {
  14477. source: "./media/characters/xochitl/back.svg",
  14478. extra: 2386 / 2354,
  14479. bottom: 0.01
  14480. }
  14481. },
  14482. foot: {
  14483. height: math.unit(6 / 5 * 1.15, "feet"),
  14484. weight: math.unit(150, "lb"),
  14485. name: "Foot",
  14486. image: {
  14487. source: "./media/characters/xochitl/foot.svg"
  14488. }
  14489. },
  14490. },
  14491. [
  14492. {
  14493. name: "Macro",
  14494. height: math.unit(80, "feet")
  14495. },
  14496. {
  14497. name: "Macro+",
  14498. height: math.unit(400, "feet"),
  14499. default: true
  14500. },
  14501. {
  14502. name: "Gigamacro",
  14503. height: math.unit(80000, "miles")
  14504. },
  14505. {
  14506. name: "Gigamacro+",
  14507. height: math.unit(400000, "miles")
  14508. },
  14509. {
  14510. name: "Teramacro",
  14511. height: math.unit(300, "AU")
  14512. },
  14513. ]
  14514. ))
  14515. characterMakers.push(() => makeCharacter(
  14516. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  14517. {
  14518. front: {
  14519. height: math.unit(6, "feet"),
  14520. weight: math.unit(150, "lb"),
  14521. name: "Front",
  14522. image: {
  14523. source: "./media/characters/vincent/front.svg",
  14524. extra: 1130 / 1080,
  14525. bottom: 0.055
  14526. }
  14527. },
  14528. beak: {
  14529. height: math.unit(6 * 0.1, "feet"),
  14530. name: "Beak",
  14531. image: {
  14532. source: "./media/characters/vincent/beak.svg"
  14533. }
  14534. },
  14535. hand: {
  14536. height: math.unit(6 * 0.85, "feet"),
  14537. weight: math.unit(150, "lb"),
  14538. name: "Hand",
  14539. image: {
  14540. source: "./media/characters/vincent/hand.svg"
  14541. }
  14542. },
  14543. foot: {
  14544. height: math.unit(6 * 0.19, "feet"),
  14545. weight: math.unit(150, "lb"),
  14546. name: "Foot",
  14547. image: {
  14548. source: "./media/characters/vincent/foot.svg"
  14549. }
  14550. },
  14551. },
  14552. [
  14553. {
  14554. name: "Base",
  14555. height: math.unit(6 + 5 / 12, "feet"),
  14556. default: true
  14557. },
  14558. {
  14559. name: "Macro",
  14560. height: math.unit(300, "feet")
  14561. },
  14562. {
  14563. name: "Megamacro",
  14564. height: math.unit(2, "miles")
  14565. },
  14566. {
  14567. name: "Gigamacro",
  14568. height: math.unit(1000, "miles")
  14569. },
  14570. ]
  14571. ))
  14572. characterMakers.push(() => makeCharacter(
  14573. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  14574. {
  14575. front: {
  14576. height: math.unit(2, "meters"),
  14577. weight: math.unit(500, "kg"),
  14578. name: "Front",
  14579. image: {
  14580. source: "./media/characters/coatl/front.svg",
  14581. extra: 3948 / 3500,
  14582. bottom: 0.082
  14583. }
  14584. },
  14585. },
  14586. [
  14587. {
  14588. name: "Normal",
  14589. height: math.unit(4, "meters")
  14590. },
  14591. {
  14592. name: "Macro",
  14593. height: math.unit(100, "meters"),
  14594. default: true
  14595. },
  14596. {
  14597. name: "Macro+",
  14598. height: math.unit(300, "meters")
  14599. },
  14600. {
  14601. name: "Megamacro",
  14602. height: math.unit(3, "gigameters")
  14603. },
  14604. {
  14605. name: "Megamacro+",
  14606. height: math.unit(300, "terameters")
  14607. },
  14608. {
  14609. name: "Megamacro++",
  14610. height: math.unit(3, "lightyears")
  14611. },
  14612. ]
  14613. ))
  14614. characterMakers.push(() => makeCharacter(
  14615. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  14616. {
  14617. front: {
  14618. height: math.unit(6, "feet"),
  14619. weight: math.unit(50, "kg"),
  14620. name: "front",
  14621. image: {
  14622. source: "./media/characters/shiroryu/front.svg",
  14623. extra: 1990 / 1935
  14624. }
  14625. },
  14626. },
  14627. [
  14628. {
  14629. name: "Mortal Mingling",
  14630. height: math.unit(3, "meters")
  14631. },
  14632. {
  14633. name: "Kaiju-ish",
  14634. height: math.unit(250, "meters")
  14635. },
  14636. {
  14637. name: "Somewhat Godly",
  14638. height: math.unit(400, "km"),
  14639. default: true
  14640. },
  14641. {
  14642. name: "Planetary",
  14643. height: math.unit(300, "megameters")
  14644. },
  14645. {
  14646. name: "Galaxy-dwarfing",
  14647. height: math.unit(450, "kiloparsecs")
  14648. },
  14649. {
  14650. name: "Universe Eater",
  14651. height: math.unit(150, "gigaparsecs")
  14652. },
  14653. {
  14654. name: "Almost Immeasurable",
  14655. height: math.unit(1.3e266, "yottaparsecs")
  14656. },
  14657. ]
  14658. ))
  14659. characterMakers.push(() => makeCharacter(
  14660. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  14661. {
  14662. front: {
  14663. height: math.unit(6, "feet"),
  14664. weight: math.unit(150, "lb"),
  14665. name: "Front",
  14666. image: {
  14667. source: "./media/characters/umeko/front.svg",
  14668. extra: 1,
  14669. bottom: 0.019
  14670. }
  14671. },
  14672. frontArmored: {
  14673. height: math.unit(6, "feet"),
  14674. weight: math.unit(150, "lb"),
  14675. name: "Front (Armored)",
  14676. image: {
  14677. source: "./media/characters/umeko/front-armored.svg",
  14678. extra: 1,
  14679. bottom: 0.021
  14680. }
  14681. },
  14682. },
  14683. [
  14684. {
  14685. name: "Macro",
  14686. height: math.unit(220, "feet"),
  14687. default: true
  14688. },
  14689. {
  14690. name: "Guardian Dragon",
  14691. height: math.unit(50, "miles")
  14692. },
  14693. {
  14694. name: "Cosmic",
  14695. height: math.unit(800000, "miles")
  14696. },
  14697. ]
  14698. ))
  14699. characterMakers.push(() => makeCharacter(
  14700. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  14701. {
  14702. front: {
  14703. height: math.unit(6, "feet"),
  14704. weight: math.unit(150, "lb"),
  14705. name: "Front",
  14706. image: {
  14707. source: "./media/characters/cassidy/front.svg",
  14708. extra: 810/808,
  14709. bottom: 41/851
  14710. }
  14711. },
  14712. },
  14713. [
  14714. {
  14715. name: "Canon Height",
  14716. height: math.unit(120, "feet"),
  14717. default: true
  14718. },
  14719. {
  14720. name: "Macro+",
  14721. height: math.unit(400, "feet")
  14722. },
  14723. {
  14724. name: "Macro++",
  14725. height: math.unit(4000, "feet")
  14726. },
  14727. {
  14728. name: "Megamacro",
  14729. height: math.unit(3, "miles")
  14730. },
  14731. ]
  14732. ))
  14733. characterMakers.push(() => makeCharacter(
  14734. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  14735. {
  14736. front: {
  14737. height: math.unit(6, "feet"),
  14738. weight: math.unit(150, "lb"),
  14739. name: "Front",
  14740. image: {
  14741. source: "./media/characters/isaac/front.svg",
  14742. extra: 896 / 815,
  14743. bottom: 0.11
  14744. }
  14745. },
  14746. },
  14747. [
  14748. {
  14749. name: "Human Size",
  14750. height: math.unit(8, "feet"),
  14751. default: true
  14752. },
  14753. {
  14754. name: "Macro",
  14755. height: math.unit(400, "feet")
  14756. },
  14757. {
  14758. name: "Megamacro",
  14759. height: math.unit(50, "miles")
  14760. },
  14761. {
  14762. name: "Canon Height",
  14763. height: math.unit(200, "AU")
  14764. },
  14765. ]
  14766. ))
  14767. characterMakers.push(() => makeCharacter(
  14768. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  14769. {
  14770. front: {
  14771. height: math.unit(6, "feet"),
  14772. weight: math.unit(72, "kg"),
  14773. name: "Front",
  14774. image: {
  14775. source: "./media/characters/sleekit/front.svg",
  14776. extra: 4693 / 4487,
  14777. bottom: 0.012
  14778. }
  14779. },
  14780. },
  14781. [
  14782. {
  14783. name: "Minimum Height",
  14784. height: math.unit(10, "meters")
  14785. },
  14786. {
  14787. name: "Smaller",
  14788. height: math.unit(25, "meters")
  14789. },
  14790. {
  14791. name: "Larger",
  14792. height: math.unit(38, "meters"),
  14793. default: true
  14794. },
  14795. {
  14796. name: "Maximum height",
  14797. height: math.unit(100, "meters")
  14798. },
  14799. ]
  14800. ))
  14801. characterMakers.push(() => makeCharacter(
  14802. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  14803. {
  14804. front: {
  14805. height: math.unit(6, "feet"),
  14806. weight: math.unit(150, "lb"),
  14807. name: "Front",
  14808. image: {
  14809. source: "./media/characters/nillia/front.svg",
  14810. extra: 2195 / 2037,
  14811. bottom: 0.005
  14812. }
  14813. },
  14814. back: {
  14815. height: math.unit(6, "feet"),
  14816. weight: math.unit(150, "lb"),
  14817. name: "Back",
  14818. image: {
  14819. source: "./media/characters/nillia/back.svg",
  14820. extra: 2195 / 2037,
  14821. bottom: 0.005
  14822. }
  14823. },
  14824. },
  14825. [
  14826. {
  14827. name: "Canon Height",
  14828. height: math.unit(489, "feet"),
  14829. default: true
  14830. }
  14831. ]
  14832. ))
  14833. characterMakers.push(() => makeCharacter(
  14834. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  14835. {
  14836. front: {
  14837. height: math.unit(6, "feet"),
  14838. weight: math.unit(150, "lb"),
  14839. name: "Front",
  14840. image: {
  14841. source: "./media/characters/mesmyriza/front.svg",
  14842. extra: 2067 / 1784,
  14843. bottom: 0.035
  14844. }
  14845. },
  14846. foot: {
  14847. height: math.unit(6 / (250 / 35), "feet"),
  14848. name: "Foot",
  14849. image: {
  14850. source: "./media/characters/mesmyriza/foot.svg"
  14851. }
  14852. },
  14853. },
  14854. [
  14855. {
  14856. name: "Macro",
  14857. height: math.unit(457, "meters"),
  14858. default: true
  14859. },
  14860. {
  14861. name: "Megamacro",
  14862. height: math.unit(8, "megameters")
  14863. },
  14864. ]
  14865. ))
  14866. characterMakers.push(() => makeCharacter(
  14867. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  14868. {
  14869. front: {
  14870. height: math.unit(6, "feet"),
  14871. weight: math.unit(250, "lb"),
  14872. name: "Front",
  14873. image: {
  14874. source: "./media/characters/saudade/front.svg",
  14875. extra: 1172 / 1139,
  14876. bottom: 0.035
  14877. }
  14878. },
  14879. },
  14880. [
  14881. {
  14882. name: "Micro",
  14883. height: math.unit(3, "inches")
  14884. },
  14885. {
  14886. name: "Normal",
  14887. height: math.unit(6, "feet"),
  14888. default: true
  14889. },
  14890. {
  14891. name: "Macro",
  14892. height: math.unit(50, "feet")
  14893. },
  14894. {
  14895. name: "Megamacro",
  14896. height: math.unit(2800, "feet")
  14897. },
  14898. ]
  14899. ))
  14900. characterMakers.push(() => makeCharacter(
  14901. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  14902. {
  14903. front: {
  14904. height: math.unit(5 + 4 / 12, "feet"),
  14905. weight: math.unit(100, "lb"),
  14906. name: "Front",
  14907. image: {
  14908. source: "./media/characters/keireer/front.svg",
  14909. extra: 716 / 666,
  14910. bottom: 0.05
  14911. }
  14912. },
  14913. },
  14914. [
  14915. {
  14916. name: "Normal",
  14917. height: math.unit(5 + 4 / 12, "feet"),
  14918. default: true
  14919. },
  14920. ]
  14921. ))
  14922. characterMakers.push(() => makeCharacter(
  14923. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  14924. {
  14925. front: {
  14926. height: math.unit(6, "feet"),
  14927. weight: math.unit(90, "kg"),
  14928. name: "Front",
  14929. image: {
  14930. source: "./media/characters/mirja/front.svg",
  14931. extra: 1789 / 1683,
  14932. bottom: 0.05
  14933. }
  14934. },
  14935. frontDressed: {
  14936. height: math.unit(6, "feet"),
  14937. weight: math.unit(90, "lb"),
  14938. name: "Front (Dressed)",
  14939. image: {
  14940. source: "./media/characters/mirja/front-dressed.svg",
  14941. extra: 1789 / 1683,
  14942. bottom: 0.05
  14943. }
  14944. },
  14945. back: {
  14946. height: math.unit(6, "feet"),
  14947. weight: math.unit(90, "lb"),
  14948. name: "Back",
  14949. image: {
  14950. source: "./media/characters/mirja/back.svg",
  14951. extra: 953 / 917,
  14952. bottom: 0.017
  14953. }
  14954. },
  14955. },
  14956. [
  14957. {
  14958. name: "\"Incognito\"",
  14959. height: math.unit(3, "meters")
  14960. },
  14961. {
  14962. name: "Strolling Size",
  14963. height: math.unit(15, "km")
  14964. },
  14965. {
  14966. name: "Larger Strolling Size",
  14967. height: math.unit(400, "km")
  14968. },
  14969. {
  14970. name: "Preferred Size",
  14971. height: math.unit(5000, "km")
  14972. },
  14973. {
  14974. name: "True Size",
  14975. height: math.unit(30657809462086840000000000000000, "parsecs"),
  14976. default: true
  14977. },
  14978. ]
  14979. ))
  14980. characterMakers.push(() => makeCharacter(
  14981. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  14982. {
  14983. front: {
  14984. height: math.unit(15, "feet"),
  14985. weight: math.unit(880, "kg"),
  14986. name: "Front",
  14987. image: {
  14988. source: "./media/characters/nightraver/front.svg",
  14989. extra: 2444 / 2160,
  14990. bottom: 0.027
  14991. }
  14992. },
  14993. back: {
  14994. height: math.unit(15, "feet"),
  14995. weight: math.unit(880, "kg"),
  14996. name: "Back",
  14997. image: {
  14998. source: "./media/characters/nightraver/back.svg",
  14999. extra: 2309 / 2180,
  15000. bottom: 0.005
  15001. }
  15002. },
  15003. sole: {
  15004. height: math.unit(2.878, "feet"),
  15005. name: "Sole",
  15006. image: {
  15007. source: "./media/characters/nightraver/sole.svg"
  15008. }
  15009. },
  15010. foot: {
  15011. height: math.unit(2.285, "feet"),
  15012. name: "Foot",
  15013. image: {
  15014. source: "./media/characters/nightraver/foot.svg"
  15015. }
  15016. },
  15017. maw: {
  15018. height: math.unit(2.67, "feet"),
  15019. name: "Maw",
  15020. image: {
  15021. source: "./media/characters/nightraver/maw.svg"
  15022. }
  15023. },
  15024. },
  15025. [
  15026. {
  15027. name: "Micro",
  15028. height: math.unit(1, "cm")
  15029. },
  15030. {
  15031. name: "Normal",
  15032. height: math.unit(15, "feet"),
  15033. default: true
  15034. },
  15035. {
  15036. name: "Macro",
  15037. height: math.unit(300, "feet")
  15038. },
  15039. {
  15040. name: "Megamacro",
  15041. height: math.unit(300, "miles")
  15042. },
  15043. {
  15044. name: "Gigamacro",
  15045. height: math.unit(10000, "miles")
  15046. },
  15047. ]
  15048. ))
  15049. characterMakers.push(() => makeCharacter(
  15050. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  15051. {
  15052. side: {
  15053. height: math.unit(2, "inches"),
  15054. weight: math.unit(5, "grams"),
  15055. name: "Side",
  15056. image: {
  15057. source: "./media/characters/arc/side.svg"
  15058. }
  15059. },
  15060. },
  15061. [
  15062. {
  15063. name: "Micro",
  15064. height: math.unit(2, "inches"),
  15065. default: true
  15066. },
  15067. ]
  15068. ))
  15069. characterMakers.push(() => makeCharacter(
  15070. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  15071. {
  15072. front: {
  15073. height: math.unit(1.1938, "meters"),
  15074. weight: math.unit(54, "kg"),
  15075. name: "Front",
  15076. image: {
  15077. source: "./media/characters/nebula-shahar/front.svg",
  15078. extra: 1642 / 1436,
  15079. bottom: 0.06
  15080. }
  15081. },
  15082. },
  15083. [
  15084. {
  15085. name: "Megamicro",
  15086. height: math.unit(0.3, "mm")
  15087. },
  15088. {
  15089. name: "Micro",
  15090. height: math.unit(3, "cm")
  15091. },
  15092. {
  15093. name: "Normal",
  15094. height: math.unit(138, "cm"),
  15095. default: true
  15096. },
  15097. {
  15098. name: "Macro",
  15099. height: math.unit(30, "m")
  15100. },
  15101. ]
  15102. ))
  15103. characterMakers.push(() => makeCharacter(
  15104. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  15105. {
  15106. front: {
  15107. height: math.unit(5.24, "feet"),
  15108. weight: math.unit(150, "lb"),
  15109. name: "Front",
  15110. image: {
  15111. source: "./media/characters/shayla/front.svg",
  15112. extra: 1512 / 1414,
  15113. bottom: 0.01
  15114. }
  15115. },
  15116. back: {
  15117. height: math.unit(5.24, "feet"),
  15118. weight: math.unit(150, "lb"),
  15119. name: "Back",
  15120. image: {
  15121. source: "./media/characters/shayla/back.svg",
  15122. extra: 1512 / 1414
  15123. }
  15124. },
  15125. hand: {
  15126. height: math.unit(0.7781496062992126, "feet"),
  15127. name: "Hand",
  15128. image: {
  15129. source: "./media/characters/shayla/hand.svg"
  15130. }
  15131. },
  15132. foot: {
  15133. height: math.unit(1.4206036745406823, "feet"),
  15134. name: "Foot",
  15135. image: {
  15136. source: "./media/characters/shayla/foot.svg"
  15137. }
  15138. },
  15139. },
  15140. [
  15141. {
  15142. name: "Micro",
  15143. height: math.unit(0.32, "feet")
  15144. },
  15145. {
  15146. name: "Normal",
  15147. height: math.unit(5.24, "feet"),
  15148. default: true
  15149. },
  15150. {
  15151. name: "Macro",
  15152. height: math.unit(492.12, "feet")
  15153. },
  15154. {
  15155. name: "Megamacro",
  15156. height: math.unit(186.41, "miles")
  15157. },
  15158. ]
  15159. ))
  15160. characterMakers.push(() => makeCharacter(
  15161. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  15162. {
  15163. front: {
  15164. height: math.unit(2.2, "m"),
  15165. weight: math.unit(120, "kg"),
  15166. name: "Front",
  15167. image: {
  15168. source: "./media/characters/pia-jr/front.svg",
  15169. extra: 1000 / 970,
  15170. bottom: 0.035
  15171. }
  15172. },
  15173. hand: {
  15174. height: math.unit(0.759 * 7.21 / 6, "feet"),
  15175. name: "Hand",
  15176. image: {
  15177. source: "./media/characters/pia-jr/hand.svg"
  15178. }
  15179. },
  15180. paw: {
  15181. height: math.unit(1.185 * 7.21 / 6, "feet"),
  15182. name: "Paw",
  15183. image: {
  15184. source: "./media/characters/pia-jr/paw.svg"
  15185. }
  15186. },
  15187. },
  15188. [
  15189. {
  15190. name: "Micro",
  15191. height: math.unit(1.2, "cm")
  15192. },
  15193. {
  15194. name: "Normal",
  15195. height: math.unit(2.2, "m"),
  15196. default: true
  15197. },
  15198. {
  15199. name: "Macro",
  15200. height: math.unit(180, "m")
  15201. },
  15202. {
  15203. name: "Megamacro",
  15204. height: math.unit(420, "km")
  15205. },
  15206. ]
  15207. ))
  15208. characterMakers.push(() => makeCharacter(
  15209. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  15210. {
  15211. front: {
  15212. height: math.unit(2, "m"),
  15213. weight: math.unit(115, "kg"),
  15214. name: "Front",
  15215. image: {
  15216. source: "./media/characters/pia-sr/front.svg",
  15217. extra: 760 / 730,
  15218. bottom: 0.015
  15219. }
  15220. },
  15221. back: {
  15222. height: math.unit(2, "m"),
  15223. weight: math.unit(115, "kg"),
  15224. name: "Back",
  15225. image: {
  15226. source: "./media/characters/pia-sr/back.svg",
  15227. extra: 760 / 730,
  15228. bottom: 0.01
  15229. }
  15230. },
  15231. hand: {
  15232. height: math.unit(0.89 * 6.56 / 6, "feet"),
  15233. name: "Hand",
  15234. image: {
  15235. source: "./media/characters/pia-sr/hand.svg"
  15236. }
  15237. },
  15238. foot: {
  15239. height: math.unit(1.83, "feet"),
  15240. name: "Foot",
  15241. image: {
  15242. source: "./media/characters/pia-sr/foot.svg"
  15243. }
  15244. },
  15245. },
  15246. [
  15247. {
  15248. name: "Micro",
  15249. height: math.unit(88, "mm")
  15250. },
  15251. {
  15252. name: "Normal",
  15253. height: math.unit(2, "m"),
  15254. default: true
  15255. },
  15256. {
  15257. name: "Macro",
  15258. height: math.unit(200, "m")
  15259. },
  15260. {
  15261. name: "Megamacro",
  15262. height: math.unit(420, "km")
  15263. },
  15264. ]
  15265. ))
  15266. characterMakers.push(() => makeCharacter(
  15267. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  15268. {
  15269. front: {
  15270. height: math.unit(8 + 2 / 12, "feet"),
  15271. weight: math.unit(300, "lb"),
  15272. name: "Front",
  15273. image: {
  15274. source: "./media/characters/kibibyte/front.svg",
  15275. extra: 2221 / 2098,
  15276. bottom: 0.04
  15277. }
  15278. },
  15279. },
  15280. [
  15281. {
  15282. name: "Normal",
  15283. height: math.unit(8 + 2 / 12, "feet"),
  15284. default: true
  15285. },
  15286. {
  15287. name: "Socialable Macro",
  15288. height: math.unit(50, "feet")
  15289. },
  15290. {
  15291. name: "Macro",
  15292. height: math.unit(300, "feet")
  15293. },
  15294. {
  15295. name: "Megamacro",
  15296. height: math.unit(500, "miles")
  15297. },
  15298. ]
  15299. ))
  15300. characterMakers.push(() => makeCharacter(
  15301. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  15302. {
  15303. front: {
  15304. height: math.unit(6, "feet"),
  15305. weight: math.unit(150, "lb"),
  15306. name: "Front",
  15307. image: {
  15308. source: "./media/characters/felix/front.svg",
  15309. extra: 762 / 722,
  15310. bottom: 0.02
  15311. }
  15312. },
  15313. frontClothed: {
  15314. height: math.unit(6, "feet"),
  15315. weight: math.unit(150, "lb"),
  15316. name: "Front (Clothed)",
  15317. image: {
  15318. source: "./media/characters/felix/front-clothed.svg",
  15319. extra: 762 / 722,
  15320. bottom: 0.02
  15321. }
  15322. },
  15323. },
  15324. [
  15325. {
  15326. name: "Normal",
  15327. height: math.unit(6 + 8 / 12, "feet"),
  15328. default: true
  15329. },
  15330. {
  15331. name: "Macro",
  15332. height: math.unit(2600, "feet")
  15333. },
  15334. {
  15335. name: "Megamacro",
  15336. height: math.unit(450, "miles")
  15337. },
  15338. ]
  15339. ))
  15340. characterMakers.push(() => makeCharacter(
  15341. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  15342. {
  15343. front: {
  15344. height: math.unit(6 + 1 / 12, "feet"),
  15345. weight: math.unit(250, "lb"),
  15346. name: "Front",
  15347. image: {
  15348. source: "./media/characters/tobo/front.svg",
  15349. extra: 608 / 586,
  15350. bottom: 0.023
  15351. }
  15352. },
  15353. back: {
  15354. height: math.unit(6 + 1 / 12, "feet"),
  15355. weight: math.unit(250, "lb"),
  15356. name: "Back",
  15357. image: {
  15358. source: "./media/characters/tobo/back.svg",
  15359. extra: 608 / 586
  15360. }
  15361. },
  15362. },
  15363. [
  15364. {
  15365. name: "Nano",
  15366. height: math.unit(2, "nm")
  15367. },
  15368. {
  15369. name: "Megamicro",
  15370. height: math.unit(0.1, "mm")
  15371. },
  15372. {
  15373. name: "Micro",
  15374. height: math.unit(1, "inch"),
  15375. default: true
  15376. },
  15377. {
  15378. name: "Human-sized",
  15379. height: math.unit(6 + 1 / 12, "feet")
  15380. },
  15381. {
  15382. name: "Macro",
  15383. height: math.unit(250, "feet")
  15384. },
  15385. {
  15386. name: "Megamacro",
  15387. height: math.unit(75, "miles")
  15388. },
  15389. {
  15390. name: "Texas-sized",
  15391. height: math.unit(750, "miles")
  15392. },
  15393. {
  15394. name: "Teramacro",
  15395. height: math.unit(50000, "miles")
  15396. },
  15397. ]
  15398. ))
  15399. characterMakers.push(() => makeCharacter(
  15400. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  15401. {
  15402. front: {
  15403. height: math.unit(6, "feet"),
  15404. weight: math.unit(269, "lb"),
  15405. name: "Front",
  15406. image: {
  15407. source: "./media/characters/danny-kapowsky/front.svg",
  15408. extra: 766 / 736,
  15409. bottom: 0.044
  15410. }
  15411. },
  15412. back: {
  15413. height: math.unit(6, "feet"),
  15414. weight: math.unit(269, "lb"),
  15415. name: "Back",
  15416. image: {
  15417. source: "./media/characters/danny-kapowsky/back.svg",
  15418. extra: 797 / 760,
  15419. bottom: 0.025
  15420. }
  15421. },
  15422. },
  15423. [
  15424. {
  15425. name: "Macro",
  15426. height: math.unit(150, "feet"),
  15427. default: true
  15428. },
  15429. {
  15430. name: "Macro+",
  15431. height: math.unit(200, "feet")
  15432. },
  15433. {
  15434. name: "Macro++",
  15435. height: math.unit(300, "feet")
  15436. },
  15437. {
  15438. name: "Macro+++",
  15439. height: math.unit(400, "feet")
  15440. },
  15441. ]
  15442. ))
  15443. characterMakers.push(() => makeCharacter(
  15444. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  15445. {
  15446. side: {
  15447. height: math.unit(6, "feet"),
  15448. weight: math.unit(170, "lb"),
  15449. name: "Side",
  15450. image: {
  15451. source: "./media/characters/finn/side.svg",
  15452. extra: 1953 / 1807,
  15453. bottom: 0.057
  15454. }
  15455. },
  15456. },
  15457. [
  15458. {
  15459. name: "Megamacro",
  15460. height: math.unit(14445, "feet"),
  15461. default: true
  15462. },
  15463. ]
  15464. ))
  15465. characterMakers.push(() => makeCharacter(
  15466. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  15467. {
  15468. front: {
  15469. height: math.unit(5 + 6 / 12, "feet"),
  15470. weight: math.unit(125, "lb"),
  15471. name: "Front",
  15472. image: {
  15473. source: "./media/characters/roy/front.svg",
  15474. extra: 1,
  15475. bottom: 0.11
  15476. }
  15477. },
  15478. },
  15479. [
  15480. {
  15481. name: "Micro",
  15482. height: math.unit(3, "inches"),
  15483. default: true
  15484. },
  15485. {
  15486. name: "Normal",
  15487. height: math.unit(5 + 6 / 12, "feet")
  15488. },
  15489. {
  15490. name: "Lesser Macro",
  15491. height: math.unit(60, "feet")
  15492. },
  15493. {
  15494. name: "Greater Macro",
  15495. height: math.unit(120, "feet")
  15496. },
  15497. ]
  15498. ))
  15499. characterMakers.push(() => makeCharacter(
  15500. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  15501. {
  15502. front: {
  15503. height: math.unit(6, "feet"),
  15504. weight: math.unit(100, "lb"),
  15505. name: "Front",
  15506. image: {
  15507. source: "./media/characters/aevsivs/front.svg",
  15508. extra: 1,
  15509. bottom: 0.03
  15510. }
  15511. },
  15512. back: {
  15513. height: math.unit(6, "feet"),
  15514. weight: math.unit(100, "lb"),
  15515. name: "Back",
  15516. image: {
  15517. source: "./media/characters/aevsivs/back.svg"
  15518. }
  15519. },
  15520. },
  15521. [
  15522. {
  15523. name: "Micro",
  15524. height: math.unit(2, "inches"),
  15525. default: true
  15526. },
  15527. {
  15528. name: "Normal",
  15529. height: math.unit(5, "feet")
  15530. },
  15531. ]
  15532. ))
  15533. characterMakers.push(() => makeCharacter(
  15534. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  15535. {
  15536. front: {
  15537. height: math.unit(5 + 7 / 12, "feet"),
  15538. weight: math.unit(159, "lb"),
  15539. name: "Front",
  15540. image: {
  15541. source: "./media/characters/hildegard/front.svg",
  15542. extra: 289 / 269,
  15543. bottom: 7.63 / 297.8
  15544. }
  15545. },
  15546. back: {
  15547. height: math.unit(5 + 7 / 12, "feet"),
  15548. weight: math.unit(159, "lb"),
  15549. name: "Back",
  15550. image: {
  15551. source: "./media/characters/hildegard/back.svg",
  15552. extra: 280 / 260,
  15553. bottom: 2.3 / 282
  15554. }
  15555. },
  15556. },
  15557. [
  15558. {
  15559. name: "Normal",
  15560. height: math.unit(5 + 7 / 12, "feet"),
  15561. default: true
  15562. },
  15563. ]
  15564. ))
  15565. characterMakers.push(() => makeCharacter(
  15566. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  15567. {
  15568. bernard: {
  15569. height: math.unit(2 + 7 / 12, "feet"),
  15570. weight: math.unit(66, "lb"),
  15571. name: "Bernard",
  15572. rename: true,
  15573. image: {
  15574. source: "./media/characters/bernard-wilder/bernard.svg",
  15575. extra: 192 / 128,
  15576. bottom: 0.05
  15577. }
  15578. },
  15579. wilder: {
  15580. height: math.unit(5 + 8 / 12, "feet"),
  15581. weight: math.unit(143, "lb"),
  15582. name: "Wilder",
  15583. rename: true,
  15584. image: {
  15585. source: "./media/characters/bernard-wilder/wilder.svg",
  15586. extra: 361 / 312,
  15587. bottom: 0.02
  15588. }
  15589. },
  15590. },
  15591. [
  15592. {
  15593. name: "Normal",
  15594. height: math.unit(2 + 7 / 12, "feet"),
  15595. default: true
  15596. },
  15597. ]
  15598. ))
  15599. characterMakers.push(() => makeCharacter(
  15600. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  15601. {
  15602. anthro: {
  15603. height: math.unit(6 + 1 / 12, "feet"),
  15604. weight: math.unit(155, "lb"),
  15605. name: "Anthro",
  15606. image: {
  15607. source: "./media/characters/hearth/anthro.svg",
  15608. extra: 1178/1136,
  15609. bottom: 28/1206
  15610. }
  15611. },
  15612. feral: {
  15613. height: math.unit(3.78, "feet"),
  15614. weight: math.unit(35, "kg"),
  15615. name: "Feral",
  15616. image: {
  15617. source: "./media/characters/hearth/feral.svg",
  15618. extra: 153 / 135,
  15619. bottom: 0.03
  15620. }
  15621. },
  15622. },
  15623. [
  15624. {
  15625. name: "Normal",
  15626. height: math.unit(6 + 1 / 12, "feet"),
  15627. default: true
  15628. },
  15629. ]
  15630. ))
  15631. characterMakers.push(() => makeCharacter(
  15632. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  15633. {
  15634. front: {
  15635. height: math.unit(6, "feet"),
  15636. weight: math.unit(182, "lb"),
  15637. name: "Front",
  15638. image: {
  15639. source: "./media/characters/ingrid/front.svg",
  15640. extra: 294 / 268,
  15641. bottom: 0.027
  15642. }
  15643. },
  15644. },
  15645. [
  15646. {
  15647. name: "Normal",
  15648. height: math.unit(6, "feet"),
  15649. default: true
  15650. },
  15651. ]
  15652. ))
  15653. characterMakers.push(() => makeCharacter(
  15654. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  15655. {
  15656. eevee: {
  15657. height: math.unit(2 + 10 / 12, "feet"),
  15658. weight: math.unit(86, "lb"),
  15659. name: "Malgam",
  15660. image: {
  15661. source: "./media/characters/malgam/eevee.svg",
  15662. extra: 952/784,
  15663. bottom: 38/990
  15664. }
  15665. },
  15666. sylveon: {
  15667. height: math.unit(4, "feet"),
  15668. weight: math.unit(101, "lb"),
  15669. name: "Future Malgam",
  15670. rename: true,
  15671. image: {
  15672. source: "./media/characters/malgam/sylveon.svg",
  15673. extra: 371 / 325,
  15674. bottom: 0.015
  15675. }
  15676. },
  15677. gigantamax: {
  15678. height: math.unit(50, "feet"),
  15679. name: "Gigantamax Malgam",
  15680. rename: true,
  15681. image: {
  15682. source: "./media/characters/malgam/gigantamax.svg"
  15683. }
  15684. },
  15685. },
  15686. [
  15687. {
  15688. name: "Normal",
  15689. height: math.unit(2 + 10 / 12, "feet"),
  15690. default: true
  15691. },
  15692. ]
  15693. ))
  15694. characterMakers.push(() => makeCharacter(
  15695. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  15696. {
  15697. front: {
  15698. height: math.unit(5 + 11 / 12, "feet"),
  15699. weight: math.unit(188, "lb"),
  15700. name: "Front",
  15701. image: {
  15702. source: "./media/characters/fleur/front.svg",
  15703. extra: 309 / 283,
  15704. bottom: 0.007
  15705. }
  15706. },
  15707. },
  15708. [
  15709. {
  15710. name: "Normal",
  15711. height: math.unit(5 + 11 / 12, "feet"),
  15712. default: true
  15713. },
  15714. ]
  15715. ))
  15716. characterMakers.push(() => makeCharacter(
  15717. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  15718. {
  15719. front: {
  15720. height: math.unit(5 + 4 / 12, "feet"),
  15721. weight: math.unit(122, "lb"),
  15722. name: "Front",
  15723. image: {
  15724. source: "./media/characters/jude/front.svg",
  15725. extra: 288 / 273,
  15726. bottom: 0.03
  15727. }
  15728. },
  15729. },
  15730. [
  15731. {
  15732. name: "Normal",
  15733. height: math.unit(5 + 4 / 12, "feet"),
  15734. default: true
  15735. },
  15736. ]
  15737. ))
  15738. characterMakers.push(() => makeCharacter(
  15739. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  15740. {
  15741. front: {
  15742. height: math.unit(5 + 11 / 12, "feet"),
  15743. weight: math.unit(190, "lb"),
  15744. name: "Front",
  15745. image: {
  15746. source: "./media/characters/seara/front.svg",
  15747. extra: 1,
  15748. bottom: 0.05
  15749. }
  15750. },
  15751. },
  15752. [
  15753. {
  15754. name: "Normal",
  15755. height: math.unit(5 + 11 / 12, "feet"),
  15756. default: true
  15757. },
  15758. ]
  15759. ))
  15760. characterMakers.push(() => makeCharacter(
  15761. { name: "Caspian (Lugia)", species: ["lugia"], tags: ["anthro"] },
  15762. {
  15763. front: {
  15764. height: math.unit(16 + 5 / 12, "feet"),
  15765. weight: math.unit(524, "lb"),
  15766. name: "Front",
  15767. image: {
  15768. source: "./media/characters/caspian-lugia/front.svg",
  15769. extra: 1,
  15770. bottom: 0.04
  15771. }
  15772. },
  15773. },
  15774. [
  15775. {
  15776. name: "Normal",
  15777. height: math.unit(16 + 5 / 12, "feet"),
  15778. default: true
  15779. },
  15780. ]
  15781. ))
  15782. characterMakers.push(() => makeCharacter(
  15783. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  15784. {
  15785. front: {
  15786. height: math.unit(5 + 7 / 12, "feet"),
  15787. weight: math.unit(170, "lb"),
  15788. name: "Front",
  15789. image: {
  15790. source: "./media/characters/mika/front.svg",
  15791. extra: 1,
  15792. bottom: 0.016
  15793. }
  15794. },
  15795. },
  15796. [
  15797. {
  15798. name: "Normal",
  15799. height: math.unit(5 + 7 / 12, "feet"),
  15800. default: true
  15801. },
  15802. ]
  15803. ))
  15804. characterMakers.push(() => makeCharacter(
  15805. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  15806. {
  15807. front: {
  15808. height: math.unit(6 + 2 / 12, "feet"),
  15809. weight: math.unit(268, "lb"),
  15810. name: "Front",
  15811. image: {
  15812. source: "./media/characters/sol/front.svg",
  15813. extra: 247 / 231,
  15814. bottom: 0.05
  15815. }
  15816. },
  15817. },
  15818. [
  15819. {
  15820. name: "Normal",
  15821. height: math.unit(6 + 2 / 12, "feet"),
  15822. default: true
  15823. },
  15824. ]
  15825. ))
  15826. characterMakers.push(() => makeCharacter(
  15827. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  15828. {
  15829. buizel: {
  15830. height: math.unit(2 + 5 / 12, "feet"),
  15831. weight: math.unit(87, "lb"),
  15832. name: "Front",
  15833. image: {
  15834. source: "./media/characters/umiko/buizel.svg",
  15835. extra: 172 / 157,
  15836. bottom: 0.01
  15837. },
  15838. form: "buizel",
  15839. default: true
  15840. },
  15841. floatzel: {
  15842. height: math.unit(5 + 9 / 12, "feet"),
  15843. weight: math.unit(250, "lb"),
  15844. name: "Front",
  15845. image: {
  15846. source: "./media/characters/umiko/floatzel.svg",
  15847. extra: 1076/1006,
  15848. bottom: 15/1091
  15849. },
  15850. form: "floatzel",
  15851. default: true
  15852. },
  15853. },
  15854. [
  15855. {
  15856. name: "Normal",
  15857. height: math.unit(2 + 5 / 12, "feet"),
  15858. form: "buizel",
  15859. default: true
  15860. },
  15861. {
  15862. name: "Normal",
  15863. height: math.unit(5 + 9 / 12, "feet"),
  15864. form: "floatzel",
  15865. default: true
  15866. },
  15867. ],
  15868. {
  15869. "buizel": {
  15870. name: "Buizel"
  15871. },
  15872. "floatzel": {
  15873. name: "Floatzel",
  15874. default: true
  15875. }
  15876. }
  15877. ))
  15878. characterMakers.push(() => makeCharacter(
  15879. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  15880. {
  15881. front: {
  15882. height: math.unit(6 + 2 / 12, "feet"),
  15883. weight: math.unit(146, "lb"),
  15884. name: "Front",
  15885. image: {
  15886. source: "./media/characters/iliac/front.svg",
  15887. extra: 389 / 365,
  15888. bottom: 0.035
  15889. }
  15890. },
  15891. },
  15892. [
  15893. {
  15894. name: "Normal",
  15895. height: math.unit(6 + 2 / 12, "feet"),
  15896. default: true
  15897. },
  15898. ]
  15899. ))
  15900. characterMakers.push(() => makeCharacter(
  15901. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  15902. {
  15903. front: {
  15904. height: math.unit(6, "feet"),
  15905. weight: math.unit(170, "lb"),
  15906. name: "Front",
  15907. image: {
  15908. source: "./media/characters/topaz/front.svg",
  15909. extra: 317 / 303,
  15910. bottom: 0.055
  15911. }
  15912. },
  15913. },
  15914. [
  15915. {
  15916. name: "Normal",
  15917. height: math.unit(6, "feet"),
  15918. default: true
  15919. },
  15920. ]
  15921. ))
  15922. characterMakers.push(() => makeCharacter(
  15923. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  15924. {
  15925. front: {
  15926. height: math.unit(5 + 11 / 12, "feet"),
  15927. weight: math.unit(144, "lb"),
  15928. name: "Front",
  15929. image: {
  15930. source: "./media/characters/gabriel/front.svg",
  15931. extra: 285 / 262,
  15932. bottom: 0.004
  15933. }
  15934. },
  15935. },
  15936. [
  15937. {
  15938. name: "Normal",
  15939. height: math.unit(5 + 11 / 12, "feet"),
  15940. default: true
  15941. },
  15942. ]
  15943. ))
  15944. characterMakers.push(() => makeCharacter(
  15945. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  15946. {
  15947. side: {
  15948. height: math.unit(6 + 5 / 12, "feet"),
  15949. weight: math.unit(300, "lb"),
  15950. name: "Side",
  15951. image: {
  15952. source: "./media/characters/tempest-suicune/side.svg",
  15953. extra: 195 / 154,
  15954. bottom: 0.04
  15955. }
  15956. },
  15957. },
  15958. [
  15959. {
  15960. name: "Normal",
  15961. height: math.unit(6 + 5 / 12, "feet"),
  15962. default: true
  15963. },
  15964. ]
  15965. ))
  15966. characterMakers.push(() => makeCharacter(
  15967. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  15968. {
  15969. front: {
  15970. height: math.unit(7 + 2 / 12, "feet"),
  15971. weight: math.unit(322, "lb"),
  15972. name: "Front",
  15973. image: {
  15974. source: "./media/characters/vulcan/front.svg",
  15975. extra: 154 / 147,
  15976. bottom: 0.04
  15977. }
  15978. },
  15979. },
  15980. [
  15981. {
  15982. name: "Normal",
  15983. height: math.unit(7 + 2 / 12, "feet"),
  15984. default: true
  15985. },
  15986. ]
  15987. ))
  15988. characterMakers.push(() => makeCharacter(
  15989. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  15990. {
  15991. front: {
  15992. height: math.unit(5 + 10 / 12, "feet"),
  15993. weight: math.unit(264, "lb"),
  15994. name: "Front",
  15995. image: {
  15996. source: "./media/characters/gault/front.svg",
  15997. extra: 161 / 140,
  15998. bottom: 0.028
  15999. }
  16000. },
  16001. },
  16002. [
  16003. {
  16004. name: "Normal",
  16005. height: math.unit(5 + 10 / 12, "feet"),
  16006. default: true
  16007. },
  16008. ]
  16009. ))
  16010. characterMakers.push(() => makeCharacter(
  16011. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  16012. {
  16013. front: {
  16014. height: math.unit(6, "feet"),
  16015. weight: math.unit(150, "lb"),
  16016. name: "Front",
  16017. image: {
  16018. source: "./media/characters/shard/front.svg",
  16019. extra: 273 / 238,
  16020. bottom: 0.02
  16021. }
  16022. },
  16023. },
  16024. [
  16025. {
  16026. name: "Normal",
  16027. height: math.unit(3 + 6 / 12, "feet"),
  16028. default: true
  16029. },
  16030. ]
  16031. ))
  16032. characterMakers.push(() => makeCharacter(
  16033. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  16034. {
  16035. front: {
  16036. height: math.unit(5 + 11 / 12, "feet"),
  16037. weight: math.unit(146, "lb"),
  16038. name: "Front",
  16039. image: {
  16040. source: "./media/characters/ashe/front.svg",
  16041. extra: 400 / 373,
  16042. bottom: 0.01
  16043. }
  16044. },
  16045. },
  16046. [
  16047. {
  16048. name: "Normal",
  16049. height: math.unit(5 + 11 / 12, "feet"),
  16050. default: true
  16051. },
  16052. ]
  16053. ))
  16054. characterMakers.push(() => makeCharacter(
  16055. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  16056. {
  16057. front: {
  16058. height: math.unit(5 + 5 / 12, "feet"),
  16059. weight: math.unit(135, "lb"),
  16060. name: "Front",
  16061. image: {
  16062. source: "./media/characters/beatrix/front.svg",
  16063. extra: 392 / 379,
  16064. bottom: 0.01
  16065. }
  16066. },
  16067. },
  16068. [
  16069. {
  16070. name: "Normal",
  16071. height: math.unit(6, "feet"),
  16072. default: true
  16073. },
  16074. ]
  16075. ))
  16076. characterMakers.push(() => makeCharacter(
  16077. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  16078. {
  16079. front: {
  16080. height: math.unit(6 + 2/12, "feet"),
  16081. weight: math.unit(135, "lb"),
  16082. name: "Front",
  16083. image: {
  16084. source: "./media/characters/ignatius/front.svg",
  16085. extra: 1380/1259,
  16086. bottom: 27/1407
  16087. }
  16088. },
  16089. },
  16090. [
  16091. {
  16092. name: "Normal",
  16093. height: math.unit(6 + 2/12, "feet"),
  16094. default: true
  16095. },
  16096. ]
  16097. ))
  16098. characterMakers.push(() => makeCharacter(
  16099. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  16100. {
  16101. front: {
  16102. height: math.unit(6 + 2 / 12, "feet"),
  16103. weight: math.unit(138, "lb"),
  16104. name: "Front",
  16105. image: {
  16106. source: "./media/characters/mei-li/front.svg",
  16107. extra: 237 / 229,
  16108. bottom: 0.03
  16109. }
  16110. },
  16111. },
  16112. [
  16113. {
  16114. name: "Normal",
  16115. height: math.unit(6 + 2 / 12, "feet"),
  16116. default: true
  16117. },
  16118. ]
  16119. ))
  16120. characterMakers.push(() => makeCharacter(
  16121. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  16122. {
  16123. front: {
  16124. height: math.unit(2 + 4 / 12, "feet"),
  16125. weight: math.unit(62, "lb"),
  16126. name: "Front",
  16127. image: {
  16128. source: "./media/characters/puru/front.svg",
  16129. extra: 206 / 149,
  16130. bottom: 0.06
  16131. }
  16132. },
  16133. },
  16134. [
  16135. {
  16136. name: "Normal",
  16137. height: math.unit(2 + 4 / 12, "feet"),
  16138. default: true
  16139. },
  16140. ]
  16141. ))
  16142. characterMakers.push(() => makeCharacter(
  16143. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  16144. {
  16145. anthro: {
  16146. height: math.unit(5 + 8/12, "feet"),
  16147. weight: math.unit(200, "lb"),
  16148. energyNeed: math.unit(2000, "kcal"),
  16149. name: "Anthro",
  16150. image: {
  16151. source: "./media/characters/kee/anthro.svg",
  16152. extra: 3251/3184,
  16153. bottom: 250/3501
  16154. }
  16155. },
  16156. taur: {
  16157. height: math.unit(11, "feet"),
  16158. weight: math.unit(500, "lb"),
  16159. energyNeed: math.unit(5000, "kcal"),
  16160. name: "Taur",
  16161. image: {
  16162. source: "./media/characters/kee/taur.svg",
  16163. extra: 1362/1320,
  16164. bottom: 83/1445
  16165. }
  16166. },
  16167. },
  16168. [
  16169. {
  16170. name: "Normal",
  16171. height: math.unit(5 + 8/12, "feet"),
  16172. default: true
  16173. },
  16174. {
  16175. name: "Macro",
  16176. height: math.unit(35, "feet")
  16177. },
  16178. ]
  16179. ))
  16180. characterMakers.push(() => makeCharacter(
  16181. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  16182. {
  16183. anthro: {
  16184. height: math.unit(7, "feet"),
  16185. weight: math.unit(190, "lb"),
  16186. name: "Anthro",
  16187. image: {
  16188. source: "./media/characters/cobalt-dracha/anthro.svg",
  16189. extra: 231 / 225,
  16190. bottom: 0.04
  16191. }
  16192. },
  16193. feral: {
  16194. height: math.unit(9 + 7 / 12, "feet"),
  16195. weight: math.unit(294, "lb"),
  16196. name: "Feral",
  16197. image: {
  16198. source: "./media/characters/cobalt-dracha/feral.svg",
  16199. extra: 692 / 633,
  16200. bottom: 0.05
  16201. }
  16202. },
  16203. },
  16204. [
  16205. {
  16206. name: "Normal",
  16207. height: math.unit(7, "feet"),
  16208. default: true
  16209. },
  16210. ]
  16211. ))
  16212. characterMakers.push(() => makeCharacter(
  16213. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  16214. {
  16215. fallen: {
  16216. height: math.unit(11 + 8 / 12, "feet"),
  16217. weight: math.unit(485, "lb"),
  16218. name: "Java (Fallen)",
  16219. rename: true,
  16220. image: {
  16221. source: "./media/characters/java/fallen.svg",
  16222. extra: 226 / 208,
  16223. bottom: 0.005
  16224. }
  16225. },
  16226. godkin: {
  16227. height: math.unit(10 + 6 / 12, "feet"),
  16228. weight: math.unit(328, "lb"),
  16229. name: "Java (Godkin)",
  16230. rename: true,
  16231. image: {
  16232. source: "./media/characters/java/godkin.svg",
  16233. extra: 1104/1068,
  16234. bottom: 36/1140
  16235. }
  16236. },
  16237. },
  16238. [
  16239. {
  16240. name: "Normal",
  16241. height: math.unit(11 + 8 / 12, "feet"),
  16242. default: true
  16243. },
  16244. ]
  16245. ))
  16246. characterMakers.push(() => makeCharacter(
  16247. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  16248. {
  16249. front: {
  16250. height: math.unit(5 + 9 / 12, "feet"),
  16251. weight: math.unit(170, "lb"),
  16252. name: "Front",
  16253. image: {
  16254. source: "./media/characters/purna/front.svg",
  16255. extra: 239 / 229,
  16256. bottom: 0.01
  16257. }
  16258. },
  16259. },
  16260. [
  16261. {
  16262. name: "Normal",
  16263. height: math.unit(5 + 9 / 12, "feet"),
  16264. default: true
  16265. },
  16266. ]
  16267. ))
  16268. characterMakers.push(() => makeCharacter(
  16269. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  16270. {
  16271. front: {
  16272. height: math.unit(5 + 9 / 12, "feet"),
  16273. weight: math.unit(142, "lb"),
  16274. name: "Front",
  16275. image: {
  16276. source: "./media/characters/kuva/front.svg",
  16277. extra: 281 / 271,
  16278. bottom: 0.006
  16279. }
  16280. },
  16281. },
  16282. [
  16283. {
  16284. name: "Normal",
  16285. height: math.unit(5 + 9 / 12, "feet"),
  16286. default: true
  16287. },
  16288. ]
  16289. ))
  16290. characterMakers.push(() => makeCharacter(
  16291. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  16292. {
  16293. anthro: {
  16294. height: math.unit(9 + 2 / 12, "feet"),
  16295. weight: math.unit(270, "lb"),
  16296. name: "Anthro",
  16297. image: {
  16298. source: "./media/characters/embra/anthro.svg",
  16299. extra: 200 / 187,
  16300. bottom: 0.02
  16301. }
  16302. },
  16303. feral: {
  16304. height: math.unit(18 + 8 / 12, "feet"),
  16305. weight: math.unit(576, "lb"),
  16306. name: "Feral",
  16307. image: {
  16308. source: "./media/characters/embra/feral.svg",
  16309. extra: 152 / 137,
  16310. bottom: 0.037
  16311. }
  16312. },
  16313. },
  16314. [
  16315. {
  16316. name: "Normal",
  16317. height: math.unit(9 + 2 / 12, "feet"),
  16318. default: true
  16319. },
  16320. ]
  16321. ))
  16322. characterMakers.push(() => makeCharacter(
  16323. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  16324. {
  16325. anthro: {
  16326. height: math.unit(10 + 9 / 12, "feet"),
  16327. weight: math.unit(224, "lb"),
  16328. name: "Anthro",
  16329. image: {
  16330. source: "./media/characters/grottos/anthro.svg",
  16331. extra: 350 / 332,
  16332. bottom: 0.045
  16333. }
  16334. },
  16335. feral: {
  16336. height: math.unit(20 + 7 / 12, "feet"),
  16337. weight: math.unit(629, "lb"),
  16338. name: "Feral",
  16339. image: {
  16340. source: "./media/characters/grottos/feral.svg",
  16341. extra: 207 / 190,
  16342. bottom: 0.05
  16343. }
  16344. },
  16345. },
  16346. [
  16347. {
  16348. name: "Normal",
  16349. height: math.unit(10 + 9 / 12, "feet"),
  16350. default: true
  16351. },
  16352. ]
  16353. ))
  16354. characterMakers.push(() => makeCharacter(
  16355. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  16356. {
  16357. anthro: {
  16358. height: math.unit(9 + 6 / 12, "feet"),
  16359. weight: math.unit(298, "lb"),
  16360. name: "Anthro",
  16361. image: {
  16362. source: "./media/characters/frifna/anthro.svg",
  16363. extra: 282 / 269,
  16364. bottom: 0.015
  16365. }
  16366. },
  16367. feral: {
  16368. height: math.unit(16 + 2 / 12, "feet"),
  16369. weight: math.unit(624, "lb"),
  16370. name: "Feral",
  16371. image: {
  16372. source: "./media/characters/frifna/feral.svg"
  16373. }
  16374. },
  16375. },
  16376. [
  16377. {
  16378. name: "Normal",
  16379. height: math.unit(9 + 6 / 12, "feet"),
  16380. default: true
  16381. },
  16382. ]
  16383. ))
  16384. characterMakers.push(() => makeCharacter(
  16385. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  16386. {
  16387. front: {
  16388. height: math.unit(6 + 2 / 12, "feet"),
  16389. weight: math.unit(168, "lb"),
  16390. name: "Front",
  16391. image: {
  16392. source: "./media/characters/elise/front.svg",
  16393. extra: 276 / 271
  16394. }
  16395. },
  16396. },
  16397. [
  16398. {
  16399. name: "Normal",
  16400. height: math.unit(6 + 2 / 12, "feet"),
  16401. default: true
  16402. },
  16403. ]
  16404. ))
  16405. characterMakers.push(() => makeCharacter(
  16406. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  16407. {
  16408. front: {
  16409. height: math.unit(5 + 10 / 12, "feet"),
  16410. weight: math.unit(210, "lb"),
  16411. name: "Front",
  16412. image: {
  16413. source: "./media/characters/glade/front.svg",
  16414. extra: 258 / 247,
  16415. bottom: 0.008
  16416. }
  16417. },
  16418. },
  16419. [
  16420. {
  16421. name: "Normal",
  16422. height: math.unit(5 + 10 / 12, "feet"),
  16423. default: true
  16424. },
  16425. ]
  16426. ))
  16427. characterMakers.push(() => makeCharacter(
  16428. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  16429. {
  16430. front: {
  16431. height: math.unit(5 + 10 / 12, "feet"),
  16432. weight: math.unit(129, "lb"),
  16433. name: "Front",
  16434. image: {
  16435. source: "./media/characters/rina/front.svg",
  16436. extra: 266 / 255,
  16437. bottom: 0.005
  16438. }
  16439. },
  16440. },
  16441. [
  16442. {
  16443. name: "Normal",
  16444. height: math.unit(5 + 10 / 12, "feet"),
  16445. default: true
  16446. },
  16447. ]
  16448. ))
  16449. characterMakers.push(() => makeCharacter(
  16450. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  16451. {
  16452. front: {
  16453. height: math.unit(6 + 1 / 12, "feet"),
  16454. weight: math.unit(192, "lb"),
  16455. name: "Front",
  16456. image: {
  16457. source: "./media/characters/veronica/front.svg",
  16458. extra: 319 / 309,
  16459. bottom: 0.005
  16460. }
  16461. },
  16462. },
  16463. [
  16464. {
  16465. name: "Normal",
  16466. height: math.unit(6 + 1 / 12, "feet"),
  16467. default: true
  16468. },
  16469. ]
  16470. ))
  16471. characterMakers.push(() => makeCharacter(
  16472. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  16473. {
  16474. front: {
  16475. height: math.unit(9 + 3 / 12, "feet"),
  16476. weight: math.unit(1100, "lb"),
  16477. name: "Front",
  16478. image: {
  16479. source: "./media/characters/braxton/front.svg",
  16480. extra: 1057 / 984,
  16481. bottom: 0.05
  16482. }
  16483. },
  16484. },
  16485. [
  16486. {
  16487. name: "Normal",
  16488. height: math.unit(9 + 3 / 12, "feet")
  16489. },
  16490. {
  16491. name: "Giant",
  16492. height: math.unit(300, "feet"),
  16493. default: true
  16494. },
  16495. {
  16496. name: "Macro",
  16497. height: math.unit(700, "feet")
  16498. },
  16499. {
  16500. name: "Megamacro",
  16501. height: math.unit(6000, "feet")
  16502. },
  16503. ]
  16504. ))
  16505. characterMakers.push(() => makeCharacter(
  16506. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  16507. {
  16508. front: {
  16509. height: math.unit(6 + 7 / 12, "feet"),
  16510. weight: math.unit(150, "lb"),
  16511. name: "Front",
  16512. image: {
  16513. source: "./media/characters/blue-feyonics/front.svg",
  16514. extra: 1403 / 1306,
  16515. bottom: 0.047
  16516. }
  16517. },
  16518. },
  16519. [
  16520. {
  16521. name: "Normal",
  16522. height: math.unit(6 + 7 / 12, "feet"),
  16523. default: true
  16524. },
  16525. ]
  16526. ))
  16527. characterMakers.push(() => makeCharacter(
  16528. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  16529. {
  16530. front: {
  16531. height: math.unit(1.8, "meters"),
  16532. weight: math.unit(60, "kg"),
  16533. name: "Front",
  16534. image: {
  16535. source: "./media/characters/maxwell/front.svg",
  16536. extra: 2060 / 1873
  16537. }
  16538. },
  16539. },
  16540. [
  16541. {
  16542. name: "Micro",
  16543. height: math.unit(1, "mm")
  16544. },
  16545. {
  16546. name: "Normal",
  16547. height: math.unit(1.8, "meter"),
  16548. default: true
  16549. },
  16550. {
  16551. name: "Macro",
  16552. height: math.unit(30, "meters")
  16553. },
  16554. {
  16555. name: "Megamacro",
  16556. height: math.unit(10, "km")
  16557. },
  16558. ]
  16559. ))
  16560. characterMakers.push(() => makeCharacter(
  16561. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  16562. {
  16563. front: {
  16564. height: math.unit(6, "feet"),
  16565. weight: math.unit(150, "lb"),
  16566. name: "Front",
  16567. image: {
  16568. source: "./media/characters/jack/front.svg",
  16569. extra: 1754 / 1640,
  16570. bottom: 0.01
  16571. }
  16572. },
  16573. },
  16574. [
  16575. {
  16576. name: "Normal",
  16577. height: math.unit(80000, "feet"),
  16578. default: true
  16579. },
  16580. {
  16581. name: "Max size",
  16582. height: math.unit(10, "lightyears")
  16583. },
  16584. ]
  16585. ))
  16586. characterMakers.push(() => makeCharacter(
  16587. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  16588. {
  16589. urban: {
  16590. height: math.unit(5, "feet"),
  16591. weight: math.unit(240, "lb"),
  16592. name: "Urban",
  16593. image: {
  16594. source: "./media/characters/cafat/urban.svg",
  16595. extra: 1223/1126,
  16596. bottom: 205/1428
  16597. }
  16598. },
  16599. summer: {
  16600. height: math.unit(5, "feet"),
  16601. weight: math.unit(240, "lb"),
  16602. name: "Summer",
  16603. image: {
  16604. source: "./media/characters/cafat/summer.svg",
  16605. extra: 1223/1126,
  16606. bottom: 205/1428
  16607. }
  16608. },
  16609. winter: {
  16610. height: math.unit(5, "feet"),
  16611. weight: math.unit(240, "lb"),
  16612. name: "Winter",
  16613. image: {
  16614. source: "./media/characters/cafat/winter.svg",
  16615. extra: 1223/1126,
  16616. bottom: 205/1428
  16617. }
  16618. },
  16619. lingerie: {
  16620. height: math.unit(5, "feet"),
  16621. weight: math.unit(240, "lb"),
  16622. name: "Lingerie",
  16623. image: {
  16624. source: "./media/characters/cafat/lingerie.svg",
  16625. extra: 1223/1126,
  16626. bottom: 205/1428
  16627. }
  16628. },
  16629. upright: {
  16630. height: math.unit(6.3, "feet"),
  16631. weight: math.unit(240, "lb"),
  16632. name: "Upright",
  16633. image: {
  16634. source: "./media/characters/cafat/upright.svg",
  16635. bottom: 0.01
  16636. }
  16637. },
  16638. uprightFull: {
  16639. height: math.unit(6.3, "feet"),
  16640. weight: math.unit(240, "lb"),
  16641. name: "Upright (Full)",
  16642. image: {
  16643. source: "./media/characters/cafat/upright-full.svg",
  16644. bottom: 0.01
  16645. }
  16646. },
  16647. },
  16648. [
  16649. {
  16650. name: "Small",
  16651. height: math.unit(5, "feet"),
  16652. default: true
  16653. },
  16654. {
  16655. name: "Large",
  16656. height: math.unit(13, "feet")
  16657. },
  16658. ]
  16659. ))
  16660. characterMakers.push(() => makeCharacter(
  16661. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  16662. {
  16663. front: {
  16664. height: math.unit(6, "feet"),
  16665. weight: math.unit(150, "lb"),
  16666. name: "Front",
  16667. image: {
  16668. source: "./media/characters/verin-raharra/front.svg",
  16669. extra: 5019 / 4835,
  16670. bottom: 0.023
  16671. }
  16672. },
  16673. },
  16674. [
  16675. {
  16676. name: "Normal",
  16677. height: math.unit(7 + 5 / 12, "feet"),
  16678. default: true
  16679. },
  16680. {
  16681. name: "Upsized",
  16682. height: math.unit(20, "feet")
  16683. },
  16684. ]
  16685. ))
  16686. characterMakers.push(() => makeCharacter(
  16687. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  16688. {
  16689. front: {
  16690. height: math.unit(7, "feet"),
  16691. weight: math.unit(230, "lb"),
  16692. name: "Front",
  16693. image: {
  16694. source: "./media/characters/nakata/front.svg",
  16695. extra: 1.005,
  16696. bottom: 0.01
  16697. }
  16698. },
  16699. },
  16700. [
  16701. {
  16702. name: "Normal",
  16703. height: math.unit(7, "feet"),
  16704. default: true
  16705. },
  16706. {
  16707. name: "Big",
  16708. height: math.unit(14, "feet")
  16709. },
  16710. {
  16711. name: "Macro",
  16712. height: math.unit(400, "feet")
  16713. },
  16714. ]
  16715. ))
  16716. characterMakers.push(() => makeCharacter(
  16717. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  16718. {
  16719. front: {
  16720. height: math.unit(4.91, "feet"),
  16721. weight: math.unit(100, "lb"),
  16722. name: "Front",
  16723. image: {
  16724. source: "./media/characters/lily/front.svg",
  16725. extra: 1585 / 1415,
  16726. bottom: 0.02
  16727. }
  16728. },
  16729. },
  16730. [
  16731. {
  16732. name: "Normal",
  16733. height: math.unit(4.91, "feet"),
  16734. default: true
  16735. },
  16736. ]
  16737. ))
  16738. characterMakers.push(() => makeCharacter(
  16739. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  16740. {
  16741. laying: {
  16742. height: math.unit(4 + 4 / 12, "feet"),
  16743. weight: math.unit(600, "lb"),
  16744. name: "Laying",
  16745. image: {
  16746. source: "./media/characters/sheila/laying.svg",
  16747. extra: 1333 / 1265,
  16748. bottom: 0.16
  16749. }
  16750. },
  16751. },
  16752. [
  16753. {
  16754. name: "Normal",
  16755. height: math.unit(4 + 4 / 12, "feet"),
  16756. default: true
  16757. },
  16758. ]
  16759. ))
  16760. characterMakers.push(() => makeCharacter(
  16761. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  16762. {
  16763. front: {
  16764. height: math.unit(6, "feet"),
  16765. weight: math.unit(190, "lb"),
  16766. name: "Front",
  16767. image: {
  16768. source: "./media/characters/sax/front.svg",
  16769. extra: 1187 / 973,
  16770. bottom: 0.042
  16771. }
  16772. },
  16773. },
  16774. [
  16775. {
  16776. name: "Micro",
  16777. height: math.unit(4, "inches"),
  16778. default: true
  16779. },
  16780. ]
  16781. ))
  16782. characterMakers.push(() => makeCharacter(
  16783. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  16784. {
  16785. front: {
  16786. height: math.unit(6, "feet"),
  16787. weight: math.unit(150, "lb"),
  16788. name: "Front",
  16789. image: {
  16790. source: "./media/characters/pandora/front.svg",
  16791. extra: 2720 / 2556,
  16792. bottom: 0.015
  16793. }
  16794. },
  16795. back: {
  16796. height: math.unit(6, "feet"),
  16797. weight: math.unit(150, "lb"),
  16798. name: "Back",
  16799. image: {
  16800. source: "./media/characters/pandora/back.svg",
  16801. extra: 2720 / 2556,
  16802. bottom: 0.01
  16803. }
  16804. },
  16805. beans: {
  16806. height: math.unit(6 / 8, "feet"),
  16807. name: "Beans",
  16808. image: {
  16809. source: "./media/characters/pandora/beans.svg"
  16810. }
  16811. },
  16812. collar: {
  16813. height: math.unit(0.31, "feet"),
  16814. name: "Collar",
  16815. image: {
  16816. source: "./media/characters/pandora/collar.svg"
  16817. }
  16818. },
  16819. skirt: {
  16820. height: math.unit(6, "feet"),
  16821. weight: math.unit(150, "lb"),
  16822. name: "Skirt",
  16823. image: {
  16824. source: "./media/characters/pandora/skirt.svg",
  16825. extra: 1622 / 1525,
  16826. bottom: 0.015
  16827. }
  16828. },
  16829. hoodie: {
  16830. height: math.unit(6, "feet"),
  16831. weight: math.unit(150, "lb"),
  16832. name: "Hoodie",
  16833. image: {
  16834. source: "./media/characters/pandora/hoodie.svg",
  16835. extra: 1622 / 1525,
  16836. bottom: 0.015
  16837. }
  16838. },
  16839. casual: {
  16840. height: math.unit(6, "feet"),
  16841. weight: math.unit(150, "lb"),
  16842. name: "Casual",
  16843. image: {
  16844. source: "./media/characters/pandora/casual.svg",
  16845. extra: 1622 / 1525,
  16846. bottom: 0.015
  16847. }
  16848. },
  16849. },
  16850. [
  16851. {
  16852. name: "Normal",
  16853. height: math.unit(6, "feet")
  16854. },
  16855. {
  16856. name: "Big Steppy",
  16857. height: math.unit(1, "km"),
  16858. default: true
  16859. },
  16860. {
  16861. name: "Galactic Steppy",
  16862. height: math.unit(2, "gigameters")
  16863. },
  16864. ]
  16865. ))
  16866. characterMakers.push(() => makeCharacter(
  16867. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  16868. {
  16869. side: {
  16870. height: math.unit(10, "feet"),
  16871. weight: math.unit(800, "kg"),
  16872. name: "Side",
  16873. image: {
  16874. source: "./media/characters/venio-darcony/side.svg",
  16875. extra: 1373 / 1003,
  16876. bottom: 0.037
  16877. }
  16878. },
  16879. front: {
  16880. height: math.unit(19, "feet"),
  16881. weight: math.unit(800, "kg"),
  16882. name: "Front",
  16883. image: {
  16884. source: "./media/characters/venio-darcony/front.svg"
  16885. }
  16886. },
  16887. back: {
  16888. height: math.unit(19, "feet"),
  16889. weight: math.unit(800, "kg"),
  16890. name: "Back",
  16891. image: {
  16892. source: "./media/characters/venio-darcony/back.svg"
  16893. }
  16894. },
  16895. sideNsfw: {
  16896. height: math.unit(10, "feet"),
  16897. weight: math.unit(800, "kg"),
  16898. name: "Side (NSFW)",
  16899. image: {
  16900. source: "./media/characters/venio-darcony/side-nsfw.svg",
  16901. extra: 1373 / 1003,
  16902. bottom: 0.037
  16903. }
  16904. },
  16905. frontNsfw: {
  16906. height: math.unit(19, "feet"),
  16907. weight: math.unit(800, "kg"),
  16908. name: "Front (NSFW)",
  16909. image: {
  16910. source: "./media/characters/venio-darcony/front-nsfw.svg"
  16911. }
  16912. },
  16913. backNsfw: {
  16914. height: math.unit(19, "feet"),
  16915. weight: math.unit(800, "kg"),
  16916. name: "Back (NSFW)",
  16917. image: {
  16918. source: "./media/characters/venio-darcony/back-nsfw.svg"
  16919. }
  16920. },
  16921. sideArmored: {
  16922. height: math.unit(10, "feet"),
  16923. weight: math.unit(800, "kg"),
  16924. name: "Side (Armored)",
  16925. image: {
  16926. source: "./media/characters/venio-darcony/side-armored.svg",
  16927. extra: 1373 / 1003,
  16928. bottom: 0.037
  16929. }
  16930. },
  16931. frontArmored: {
  16932. height: math.unit(19, "feet"),
  16933. weight: math.unit(900, "kg"),
  16934. name: "Front (Armored)",
  16935. image: {
  16936. source: "./media/characters/venio-darcony/front-armored.svg"
  16937. }
  16938. },
  16939. backArmored: {
  16940. height: math.unit(19, "feet"),
  16941. weight: math.unit(900, "kg"),
  16942. name: "Back (Armored)",
  16943. image: {
  16944. source: "./media/characters/venio-darcony/back-armored.svg"
  16945. }
  16946. },
  16947. sword: {
  16948. height: math.unit(10, "feet"),
  16949. weight: math.unit(50, "lb"),
  16950. name: "Sword",
  16951. image: {
  16952. source: "./media/characters/venio-darcony/sword.svg"
  16953. }
  16954. },
  16955. },
  16956. [
  16957. {
  16958. name: "Normal",
  16959. height: math.unit(10, "feet")
  16960. },
  16961. {
  16962. name: "Macro",
  16963. height: math.unit(130, "feet"),
  16964. default: true
  16965. },
  16966. {
  16967. name: "Macro+",
  16968. height: math.unit(240, "feet")
  16969. },
  16970. ]
  16971. ))
  16972. characterMakers.push(() => makeCharacter(
  16973. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  16974. {
  16975. front: {
  16976. height: math.unit(6, "feet"),
  16977. weight: math.unit(150, "lb"),
  16978. name: "Front",
  16979. image: {
  16980. source: "./media/characters/veski/front.svg",
  16981. extra: 1299 / 1225,
  16982. bottom: 0.04
  16983. }
  16984. },
  16985. back: {
  16986. height: math.unit(6, "feet"),
  16987. weight: math.unit(150, "lb"),
  16988. name: "Back",
  16989. image: {
  16990. source: "./media/characters/veski/back.svg",
  16991. extra: 1299 / 1225,
  16992. bottom: 0.008
  16993. }
  16994. },
  16995. maw: {
  16996. height: math.unit(1.5 * 1.21, "feet"),
  16997. name: "Maw",
  16998. image: {
  16999. source: "./media/characters/veski/maw.svg"
  17000. }
  17001. },
  17002. },
  17003. [
  17004. {
  17005. name: "Macro",
  17006. height: math.unit(2, "km"),
  17007. default: true
  17008. },
  17009. ]
  17010. ))
  17011. characterMakers.push(() => makeCharacter(
  17012. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  17013. {
  17014. front: {
  17015. height: math.unit(5 + 7 / 12, "feet"),
  17016. name: "Front",
  17017. image: {
  17018. source: "./media/characters/isabelle/front.svg",
  17019. extra: 2130 / 1976,
  17020. bottom: 0.05
  17021. }
  17022. },
  17023. },
  17024. [
  17025. {
  17026. name: "Supermicro",
  17027. height: math.unit(10, "micrometers")
  17028. },
  17029. {
  17030. name: "Micro",
  17031. height: math.unit(1, "inch")
  17032. },
  17033. {
  17034. name: "Tiny",
  17035. height: math.unit(5, "inches")
  17036. },
  17037. {
  17038. name: "Standard",
  17039. height: math.unit(5 + 7 / 12, "inches")
  17040. },
  17041. {
  17042. name: "Macro",
  17043. height: math.unit(80, "meters"),
  17044. default: true
  17045. },
  17046. {
  17047. name: "Megamacro",
  17048. height: math.unit(250, "meters")
  17049. },
  17050. {
  17051. name: "Gigamacro",
  17052. height: math.unit(5, "km")
  17053. },
  17054. {
  17055. name: "Cosmic",
  17056. height: math.unit(2.5e6, "miles")
  17057. },
  17058. ]
  17059. ))
  17060. characterMakers.push(() => makeCharacter(
  17061. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  17062. {
  17063. front: {
  17064. height: math.unit(6, "feet"),
  17065. weight: math.unit(150, "lb"),
  17066. name: "Front",
  17067. image: {
  17068. source: "./media/characters/hanzo/front.svg",
  17069. extra: 374 / 344,
  17070. bottom: 0.02
  17071. }
  17072. },
  17073. },
  17074. [
  17075. {
  17076. name: "Normal",
  17077. height: math.unit(8, "feet"),
  17078. default: true
  17079. },
  17080. ]
  17081. ))
  17082. characterMakers.push(() => makeCharacter(
  17083. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  17084. {
  17085. front: {
  17086. height: math.unit(7, "feet"),
  17087. weight: math.unit(130, "lb"),
  17088. name: "Front",
  17089. image: {
  17090. source: "./media/characters/anna/front.svg",
  17091. extra: 169 / 145,
  17092. bottom: 0.06
  17093. }
  17094. },
  17095. full: {
  17096. height: math.unit(4.96, "feet"),
  17097. weight: math.unit(220, "lb"),
  17098. name: "Full",
  17099. image: {
  17100. source: "./media/characters/anna/full.svg",
  17101. extra: 138 / 114,
  17102. bottom: 0.15
  17103. }
  17104. },
  17105. tongue: {
  17106. height: math.unit(2.53, "feet"),
  17107. name: "Tongue",
  17108. image: {
  17109. source: "./media/characters/anna/tongue.svg"
  17110. }
  17111. },
  17112. },
  17113. [
  17114. {
  17115. name: "Normal",
  17116. height: math.unit(7, "feet"),
  17117. default: true
  17118. },
  17119. ]
  17120. ))
  17121. characterMakers.push(() => makeCharacter(
  17122. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  17123. {
  17124. front: {
  17125. height: math.unit(7, "feet"),
  17126. weight: math.unit(150, "lb"),
  17127. name: "Front",
  17128. image: {
  17129. source: "./media/characters/ian-corvid/front.svg",
  17130. extra: 150 / 142,
  17131. bottom: 0.02
  17132. }
  17133. },
  17134. back: {
  17135. height: math.unit(7, "feet"),
  17136. weight: math.unit(150, "lb"),
  17137. name: "Back",
  17138. image: {
  17139. source: "./media/characters/ian-corvid/back.svg",
  17140. extra: 150 / 143,
  17141. bottom: 0.01
  17142. }
  17143. },
  17144. stomping: {
  17145. height: math.unit(7, "feet"),
  17146. weight: math.unit(150, "lb"),
  17147. name: "Stomping",
  17148. image: {
  17149. source: "./media/characters/ian-corvid/stomping.svg",
  17150. extra: 76 / 72
  17151. }
  17152. },
  17153. sitting: {
  17154. height: math.unit(7 / 1.8, "feet"),
  17155. weight: math.unit(150, "lb"),
  17156. name: "Sitting",
  17157. image: {
  17158. source: "./media/characters/ian-corvid/sitting.svg",
  17159. extra: 1400 / 1269,
  17160. bottom: 0.15
  17161. }
  17162. },
  17163. },
  17164. [
  17165. {
  17166. name: "Tiny Microw",
  17167. height: math.unit(1, "inch")
  17168. },
  17169. {
  17170. name: "Microw",
  17171. height: math.unit(6, "inches")
  17172. },
  17173. {
  17174. name: "Crow",
  17175. height: math.unit(7 + 1 / 12, "feet"),
  17176. default: true
  17177. },
  17178. {
  17179. name: "Macrow",
  17180. height: math.unit(176, "feet")
  17181. },
  17182. ]
  17183. ))
  17184. characterMakers.push(() => makeCharacter(
  17185. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  17186. {
  17187. front: {
  17188. height: math.unit(5 + 7 / 12, "feet"),
  17189. weight: math.unit(147, "lb"),
  17190. name: "Front",
  17191. image: {
  17192. source: "./media/characters/natalie-kellon/front.svg",
  17193. extra: 1214 / 1141,
  17194. bottom: 0.02
  17195. }
  17196. },
  17197. },
  17198. [
  17199. {
  17200. name: "Micro",
  17201. height: math.unit(1 / 16, "inch")
  17202. },
  17203. {
  17204. name: "Tiny",
  17205. height: math.unit(4, "inches")
  17206. },
  17207. {
  17208. name: "Normal",
  17209. height: math.unit(5 + 7 / 12, "feet"),
  17210. default: true
  17211. },
  17212. {
  17213. name: "Amazon",
  17214. height: math.unit(12, "feet")
  17215. },
  17216. {
  17217. name: "Giantess",
  17218. height: math.unit(160, "meters")
  17219. },
  17220. {
  17221. name: "Titaness",
  17222. height: math.unit(800, "meters")
  17223. },
  17224. ]
  17225. ))
  17226. characterMakers.push(() => makeCharacter(
  17227. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  17228. {
  17229. front: {
  17230. height: math.unit(6, "feet"),
  17231. weight: math.unit(150, "lb"),
  17232. name: "Front",
  17233. image: {
  17234. source: "./media/characters/alluria/front.svg",
  17235. extra: 806 / 738,
  17236. bottom: 0.01
  17237. }
  17238. },
  17239. side: {
  17240. height: math.unit(6, "feet"),
  17241. weight: math.unit(150, "lb"),
  17242. name: "Side",
  17243. image: {
  17244. source: "./media/characters/alluria/side.svg",
  17245. extra: 800 / 750,
  17246. }
  17247. },
  17248. back: {
  17249. height: math.unit(6, "feet"),
  17250. weight: math.unit(150, "lb"),
  17251. name: "Back",
  17252. image: {
  17253. source: "./media/characters/alluria/back.svg",
  17254. extra: 806 / 738,
  17255. }
  17256. },
  17257. frontMaid: {
  17258. height: math.unit(6, "feet"),
  17259. weight: math.unit(150, "lb"),
  17260. name: "Front (Maid)",
  17261. image: {
  17262. source: "./media/characters/alluria/front-maid.svg",
  17263. extra: 806 / 738,
  17264. bottom: 0.01
  17265. }
  17266. },
  17267. sideMaid: {
  17268. height: math.unit(6, "feet"),
  17269. weight: math.unit(150, "lb"),
  17270. name: "Side (Maid)",
  17271. image: {
  17272. source: "./media/characters/alluria/side-maid.svg",
  17273. extra: 800 / 750,
  17274. bottom: 0.005
  17275. }
  17276. },
  17277. backMaid: {
  17278. height: math.unit(6, "feet"),
  17279. weight: math.unit(150, "lb"),
  17280. name: "Back (Maid)",
  17281. image: {
  17282. source: "./media/characters/alluria/back-maid.svg",
  17283. extra: 806 / 738,
  17284. }
  17285. },
  17286. },
  17287. [
  17288. {
  17289. name: "Micro",
  17290. height: math.unit(6, "inches"),
  17291. default: true
  17292. },
  17293. ]
  17294. ))
  17295. characterMakers.push(() => makeCharacter(
  17296. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  17297. {
  17298. front: {
  17299. height: math.unit(6, "feet"),
  17300. weight: math.unit(150, "lb"),
  17301. name: "Front",
  17302. image: {
  17303. source: "./media/characters/kyle/front.svg",
  17304. extra: 1069 / 962,
  17305. bottom: 77.228 / 1727.45
  17306. }
  17307. },
  17308. },
  17309. [
  17310. {
  17311. name: "Macro",
  17312. height: math.unit(150, "feet"),
  17313. default: true
  17314. },
  17315. ]
  17316. ))
  17317. characterMakers.push(() => makeCharacter(
  17318. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  17319. {
  17320. front: {
  17321. height: math.unit(6, "feet"),
  17322. weight: math.unit(300, "lb"),
  17323. name: "Front",
  17324. image: {
  17325. source: "./media/characters/duncan/front.svg",
  17326. extra: 1650 / 1482,
  17327. bottom: 0.05
  17328. }
  17329. },
  17330. },
  17331. [
  17332. {
  17333. name: "Macro",
  17334. height: math.unit(100, "feet"),
  17335. default: true
  17336. },
  17337. ]
  17338. ))
  17339. characterMakers.push(() => makeCharacter(
  17340. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  17341. {
  17342. front: {
  17343. height: math.unit(5 + 4 / 12, "feet"),
  17344. weight: math.unit(220, "lb"),
  17345. name: "Front",
  17346. image: {
  17347. source: "./media/characters/memory/front.svg",
  17348. extra: 3641 / 3545,
  17349. bottom: 0.03
  17350. }
  17351. },
  17352. back: {
  17353. height: math.unit(5 + 4 / 12, "feet"),
  17354. weight: math.unit(220, "lb"),
  17355. name: "Back",
  17356. image: {
  17357. source: "./media/characters/memory/back.svg",
  17358. extra: 3641 / 3545,
  17359. bottom: 0.025
  17360. }
  17361. },
  17362. frontSkirt: {
  17363. height: math.unit(5 + 4 / 12, "feet"),
  17364. weight: math.unit(220, "lb"),
  17365. name: "Front (Skirt)",
  17366. image: {
  17367. source: "./media/characters/memory/front-skirt.svg",
  17368. extra: 3641 / 3545,
  17369. bottom: 0.03
  17370. }
  17371. },
  17372. frontDress: {
  17373. height: math.unit(5 + 4 / 12, "feet"),
  17374. weight: math.unit(220, "lb"),
  17375. name: "Front (Dress)",
  17376. image: {
  17377. source: "./media/characters/memory/front-dress.svg",
  17378. extra: 3641 / 3545,
  17379. bottom: 0.03
  17380. }
  17381. },
  17382. },
  17383. [
  17384. {
  17385. name: "Micro",
  17386. height: math.unit(6, "inches"),
  17387. default: true
  17388. },
  17389. {
  17390. name: "Normal",
  17391. height: math.unit(5 + 4 / 12, "feet")
  17392. },
  17393. ]
  17394. ))
  17395. characterMakers.push(() => makeCharacter(
  17396. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  17397. {
  17398. front: {
  17399. height: math.unit(4 + 11 / 12, "feet"),
  17400. weight: math.unit(100, "lb"),
  17401. name: "Front",
  17402. image: {
  17403. source: "./media/characters/luno/front.svg",
  17404. extra: 1535 / 1487,
  17405. bottom: 0.03
  17406. }
  17407. },
  17408. },
  17409. [
  17410. {
  17411. name: "Micro",
  17412. height: math.unit(3, "inches")
  17413. },
  17414. {
  17415. name: "Normal",
  17416. height: math.unit(4 + 11 / 12, "feet"),
  17417. default: true
  17418. },
  17419. {
  17420. name: "Macro",
  17421. height: math.unit(300, "feet")
  17422. },
  17423. {
  17424. name: "Megamacro",
  17425. height: math.unit(700, "miles")
  17426. },
  17427. ]
  17428. ))
  17429. characterMakers.push(() => makeCharacter(
  17430. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  17431. {
  17432. front: {
  17433. height: math.unit(6 + 2 / 12, "feet"),
  17434. weight: math.unit(170, "lb"),
  17435. name: "Front",
  17436. image: {
  17437. source: "./media/characters/jamesy/front.svg",
  17438. extra: 440 / 382,
  17439. bottom: 0.005
  17440. }
  17441. },
  17442. },
  17443. [
  17444. {
  17445. name: "Micro",
  17446. height: math.unit(3, "inches")
  17447. },
  17448. {
  17449. name: "Normal",
  17450. height: math.unit(6 + 2 / 12, "feet"),
  17451. default: true
  17452. },
  17453. {
  17454. name: "Macro",
  17455. height: math.unit(300, "feet")
  17456. },
  17457. {
  17458. name: "Megamacro",
  17459. height: math.unit(700, "miles")
  17460. },
  17461. ]
  17462. ))
  17463. characterMakers.push(() => makeCharacter(
  17464. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  17465. {
  17466. front: {
  17467. height: math.unit(6, "feet"),
  17468. weight: math.unit(160, "lb"),
  17469. name: "Front",
  17470. image: {
  17471. source: "./media/characters/mark/front.svg",
  17472. extra: 3300 / 3100,
  17473. bottom: 136.42 / 3440.47
  17474. }
  17475. },
  17476. },
  17477. [
  17478. {
  17479. name: "Macro",
  17480. height: math.unit(120, "meters")
  17481. },
  17482. {
  17483. name: "Bigger Macro",
  17484. height: math.unit(350, "meters")
  17485. },
  17486. {
  17487. name: "Megamacro",
  17488. height: math.unit(8, "km"),
  17489. default: true
  17490. },
  17491. {
  17492. name: "Continental",
  17493. height: math.unit(4550, "km")
  17494. },
  17495. {
  17496. name: "Planetary",
  17497. height: math.unit(65000, "km")
  17498. },
  17499. ]
  17500. ))
  17501. characterMakers.push(() => makeCharacter(
  17502. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  17503. {
  17504. front: {
  17505. height: math.unit(6, "feet"),
  17506. weight: math.unit(400, "lb"),
  17507. name: "Front",
  17508. image: {
  17509. source: "./media/characters/mac/front.svg",
  17510. extra: 1048 / 987.7,
  17511. bottom: 60 / 1107.6,
  17512. }
  17513. },
  17514. },
  17515. [
  17516. {
  17517. name: "Macro",
  17518. height: math.unit(500, "feet"),
  17519. default: true
  17520. },
  17521. ]
  17522. ))
  17523. characterMakers.push(() => makeCharacter(
  17524. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  17525. {
  17526. front: {
  17527. height: math.unit(5 + 2 / 12, "feet"),
  17528. weight: math.unit(190, "lb"),
  17529. name: "Front",
  17530. image: {
  17531. source: "./media/characters/bari/front.svg",
  17532. extra: 3156 / 2880,
  17533. bottom: 0.03
  17534. }
  17535. },
  17536. back: {
  17537. height: math.unit(5 + 2 / 12, "feet"),
  17538. weight: math.unit(190, "lb"),
  17539. name: "Back",
  17540. image: {
  17541. source: "./media/characters/bari/back.svg",
  17542. extra: 3260 / 2834,
  17543. bottom: 0.025
  17544. }
  17545. },
  17546. frontPlush: {
  17547. height: math.unit(5 + 2 / 12, "feet"),
  17548. weight: math.unit(190, "lb"),
  17549. name: "Front (Plush)",
  17550. image: {
  17551. source: "./media/characters/bari/front-plush.svg",
  17552. extra: 1112 / 1061,
  17553. bottom: 0.002
  17554. }
  17555. },
  17556. },
  17557. [
  17558. {
  17559. name: "Micro",
  17560. height: math.unit(3, "inches")
  17561. },
  17562. {
  17563. name: "Normal",
  17564. height: math.unit(5 + 2 / 12, "feet"),
  17565. default: true
  17566. },
  17567. {
  17568. name: "Macro",
  17569. height: math.unit(20, "feet")
  17570. },
  17571. ]
  17572. ))
  17573. characterMakers.push(() => makeCharacter(
  17574. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  17575. {
  17576. front: {
  17577. height: math.unit(6 + 1 / 12, "feet"),
  17578. weight: math.unit(275, "lb"),
  17579. name: "Front",
  17580. image: {
  17581. source: "./media/characters/hunter-misha-raven/front.svg"
  17582. }
  17583. },
  17584. },
  17585. [
  17586. {
  17587. name: "Mortal",
  17588. height: math.unit(6 + 1 / 12, "feet")
  17589. },
  17590. {
  17591. name: "Divine",
  17592. height: math.unit(1.12134e34, "parsecs"),
  17593. default: true
  17594. },
  17595. ]
  17596. ))
  17597. characterMakers.push(() => makeCharacter(
  17598. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  17599. {
  17600. front: {
  17601. height: math.unit(6 + 3 / 12, "feet"),
  17602. weight: math.unit(220, "lb"),
  17603. name: "Front",
  17604. image: {
  17605. source: "./media/characters/max-calore/front.svg",
  17606. extra: 1700 / 1648,
  17607. bottom: 0.01
  17608. }
  17609. },
  17610. back: {
  17611. height: math.unit(6 + 3 / 12, "feet"),
  17612. weight: math.unit(220, "lb"),
  17613. name: "Back",
  17614. image: {
  17615. source: "./media/characters/max-calore/back.svg",
  17616. extra: 1700 / 1648,
  17617. bottom: 0.01
  17618. }
  17619. },
  17620. },
  17621. [
  17622. {
  17623. name: "Normal",
  17624. height: math.unit(6 + 3 / 12, "feet"),
  17625. default: true
  17626. },
  17627. ]
  17628. ))
  17629. characterMakers.push(() => makeCharacter(
  17630. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  17631. {
  17632. side: {
  17633. height: math.unit(2 + 8 / 12, "feet"),
  17634. weight: math.unit(99, "lb"),
  17635. name: "Side",
  17636. image: {
  17637. source: "./media/characters/aspen/side.svg",
  17638. extra: 152 / 138,
  17639. bottom: 0.032
  17640. }
  17641. },
  17642. },
  17643. [
  17644. {
  17645. name: "Normal",
  17646. height: math.unit(2 + 8 / 12, "feet"),
  17647. default: true
  17648. },
  17649. ]
  17650. ))
  17651. characterMakers.push(() => makeCharacter(
  17652. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  17653. {
  17654. side: {
  17655. height: math.unit(3 + 2 / 12, "feet"),
  17656. weight: math.unit(224, "lb"),
  17657. name: "Side",
  17658. image: {
  17659. source: "./media/characters/sheila-feral-wolf/side.svg",
  17660. extra: 179 / 166,
  17661. bottom: 0.03
  17662. }
  17663. },
  17664. },
  17665. [
  17666. {
  17667. name: "Normal",
  17668. height: math.unit(3 + 2 / 12, "feet"),
  17669. default: true
  17670. },
  17671. ]
  17672. ))
  17673. characterMakers.push(() => makeCharacter(
  17674. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  17675. {
  17676. side: {
  17677. height: math.unit(1 + 9 / 12, "feet"),
  17678. weight: math.unit(38, "lb"),
  17679. name: "Side",
  17680. image: {
  17681. source: "./media/characters/michelle/side.svg",
  17682. extra: 147 / 136.7,
  17683. bottom: 0.03
  17684. }
  17685. },
  17686. },
  17687. [
  17688. {
  17689. name: "Normal",
  17690. height: math.unit(1 + 9 / 12, "feet"),
  17691. default: true
  17692. },
  17693. ]
  17694. ))
  17695. characterMakers.push(() => makeCharacter(
  17696. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  17697. {
  17698. front: {
  17699. height: math.unit(1.54, "feet"),
  17700. weight: math.unit(50, "lb"),
  17701. name: "Front",
  17702. image: {
  17703. source: "./media/characters/nino/front.svg"
  17704. }
  17705. },
  17706. },
  17707. [
  17708. {
  17709. name: "Normal",
  17710. height: math.unit(1.54, "feet"),
  17711. default: true
  17712. },
  17713. ]
  17714. ))
  17715. characterMakers.push(() => makeCharacter(
  17716. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  17717. {
  17718. front: {
  17719. height: math.unit(1.49, "feet"),
  17720. weight: math.unit(45, "lb"),
  17721. name: "Front",
  17722. image: {
  17723. source: "./media/characters/viola/front.svg"
  17724. }
  17725. },
  17726. },
  17727. [
  17728. {
  17729. name: "Normal",
  17730. height: math.unit(1.49, "feet"),
  17731. default: true
  17732. },
  17733. ]
  17734. ))
  17735. characterMakers.push(() => makeCharacter(
  17736. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  17737. {
  17738. front: {
  17739. height: math.unit(6 + 5 / 12, "feet"),
  17740. weight: math.unit(580, "lb"),
  17741. name: "Front",
  17742. image: {
  17743. source: "./media/characters/atlas/front.svg",
  17744. extra: 298.5 / 290,
  17745. bottom: 0.015
  17746. }
  17747. },
  17748. },
  17749. [
  17750. {
  17751. name: "Normal",
  17752. height: math.unit(6 + 5 / 12, "feet"),
  17753. default: true
  17754. },
  17755. ]
  17756. ))
  17757. characterMakers.push(() => makeCharacter(
  17758. { name: "Davy", species: ["cat"], tags: ["feral"] },
  17759. {
  17760. side: {
  17761. height: math.unit(15.6, "inches"),
  17762. weight: math.unit(10, "lb"),
  17763. name: "Side",
  17764. image: {
  17765. source: "./media/characters/davy/side.svg",
  17766. extra: 200 / 170,
  17767. bottom: 0.01
  17768. }
  17769. },
  17770. },
  17771. [
  17772. {
  17773. name: "Normal",
  17774. height: math.unit(15.6, "inches"),
  17775. default: true
  17776. },
  17777. ]
  17778. ))
  17779. characterMakers.push(() => makeCharacter(
  17780. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  17781. {
  17782. side: {
  17783. height: math.unit(4 + 8 / 12, "feet"),
  17784. weight: math.unit(166, "lb"),
  17785. name: "Side",
  17786. image: {
  17787. source: "./media/characters/fiona/side.svg",
  17788. extra: 232 / 220,
  17789. bottom: 0.03
  17790. }
  17791. },
  17792. },
  17793. [
  17794. {
  17795. name: "Normal",
  17796. height: math.unit(4 + 8 / 12, "feet"),
  17797. default: true
  17798. },
  17799. ]
  17800. ))
  17801. characterMakers.push(() => makeCharacter(
  17802. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  17803. {
  17804. front: {
  17805. height: math.unit(26, "inches"),
  17806. weight: math.unit(35, "lb"),
  17807. name: "Front",
  17808. image: {
  17809. source: "./media/characters/lyla/front.svg",
  17810. bottom: 0.1
  17811. }
  17812. },
  17813. },
  17814. [
  17815. {
  17816. name: "Normal",
  17817. height: math.unit(3, "feet"),
  17818. default: true
  17819. },
  17820. ]
  17821. ))
  17822. characterMakers.push(() => makeCharacter(
  17823. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  17824. {
  17825. side: {
  17826. height: math.unit(1.8, "feet"),
  17827. weight: math.unit(44, "lb"),
  17828. name: "Side",
  17829. image: {
  17830. source: "./media/characters/perseus/side.svg",
  17831. bottom: 0.21
  17832. }
  17833. },
  17834. },
  17835. [
  17836. {
  17837. name: "Normal",
  17838. height: math.unit(1.8, "feet"),
  17839. default: true
  17840. },
  17841. ]
  17842. ))
  17843. characterMakers.push(() => makeCharacter(
  17844. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  17845. {
  17846. side: {
  17847. height: math.unit(4 + 2 / 12, "feet"),
  17848. weight: math.unit(20, "lb"),
  17849. name: "Side",
  17850. image: {
  17851. source: "./media/characters/remus/side.svg"
  17852. }
  17853. },
  17854. },
  17855. [
  17856. {
  17857. name: "Normal",
  17858. height: math.unit(4 + 2 / 12, "feet"),
  17859. default: true
  17860. },
  17861. ]
  17862. ))
  17863. characterMakers.push(() => makeCharacter(
  17864. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  17865. {
  17866. front: {
  17867. height: math.unit(4 + 11 / 12, "feet"),
  17868. weight: math.unit(114, "lb"),
  17869. name: "Front",
  17870. image: {
  17871. source: "./media/characters/raf/front.svg",
  17872. extra: 1504/1339,
  17873. bottom: 26/1530
  17874. }
  17875. },
  17876. side: {
  17877. height: math.unit(4 + 11 / 12, "feet"),
  17878. weight: math.unit(114, "lb"),
  17879. name: "Side",
  17880. image: {
  17881. source: "./media/characters/raf/side.svg",
  17882. extra: 1466/1316,
  17883. bottom: 29/1495
  17884. }
  17885. },
  17886. },
  17887. [
  17888. {
  17889. name: "Micro",
  17890. height: math.unit(2, "inches")
  17891. },
  17892. {
  17893. name: "Normal",
  17894. height: math.unit(4 + 11 / 12, "feet"),
  17895. default: true
  17896. },
  17897. {
  17898. name: "Macro",
  17899. height: math.unit(70, "feet")
  17900. },
  17901. ]
  17902. ))
  17903. characterMakers.push(() => makeCharacter(
  17904. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  17905. {
  17906. front: {
  17907. height: math.unit(1.5, "meters"),
  17908. weight: math.unit(68, "kg"),
  17909. name: "Front",
  17910. image: {
  17911. source: "./media/characters/liam-einarr/front.svg",
  17912. extra: 2822 / 2666
  17913. }
  17914. },
  17915. back: {
  17916. height: math.unit(1.5, "meters"),
  17917. weight: math.unit(68, "kg"),
  17918. name: "Back",
  17919. image: {
  17920. source: "./media/characters/liam-einarr/back.svg",
  17921. extra: 2822 / 2666,
  17922. bottom: 0.015
  17923. }
  17924. },
  17925. },
  17926. [
  17927. {
  17928. name: "Normal",
  17929. height: math.unit(1.5, "meters"),
  17930. default: true
  17931. },
  17932. {
  17933. name: "Macro",
  17934. height: math.unit(150, "meters")
  17935. },
  17936. {
  17937. name: "Megamacro",
  17938. height: math.unit(35, "km")
  17939. },
  17940. ]
  17941. ))
  17942. characterMakers.push(() => makeCharacter(
  17943. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  17944. {
  17945. front: {
  17946. height: math.unit(6, "feet"),
  17947. weight: math.unit(75, "kg"),
  17948. name: "Front",
  17949. image: {
  17950. source: "./media/characters/linda/front.svg",
  17951. extra: 930 / 874,
  17952. bottom: 0.004
  17953. }
  17954. },
  17955. },
  17956. [
  17957. {
  17958. name: "Normal",
  17959. height: math.unit(6, "feet"),
  17960. default: true
  17961. },
  17962. ]
  17963. ))
  17964. characterMakers.push(() => makeCharacter(
  17965. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  17966. {
  17967. front: {
  17968. height: math.unit(6 + 8 / 12, "feet"),
  17969. weight: math.unit(220, "lb"),
  17970. name: "Front",
  17971. image: {
  17972. source: "./media/characters/caylex/front.svg",
  17973. extra: 821 / 772,
  17974. bottom: 0.07
  17975. }
  17976. },
  17977. back: {
  17978. height: math.unit(6 + 8 / 12, "feet"),
  17979. weight: math.unit(220, "lb"),
  17980. name: "Back",
  17981. image: {
  17982. source: "./media/characters/caylex/back.svg",
  17983. extra: 821 / 772,
  17984. bottom: 0.022
  17985. }
  17986. },
  17987. hand: {
  17988. height: math.unit(1.25, "feet"),
  17989. name: "Hand",
  17990. image: {
  17991. source: "./media/characters/caylex/hand.svg"
  17992. }
  17993. },
  17994. foot: {
  17995. height: math.unit(1.6, "feet"),
  17996. name: "Foot",
  17997. image: {
  17998. source: "./media/characters/caylex/foot.svg"
  17999. }
  18000. },
  18001. armored: {
  18002. height: math.unit(6 + 8 / 12, "feet"),
  18003. weight: math.unit(250, "lb"),
  18004. name: "Armored",
  18005. image: {
  18006. source: "./media/characters/caylex/armored.svg",
  18007. extra: 1420 / 1310,
  18008. bottom: 0.045
  18009. }
  18010. },
  18011. },
  18012. [
  18013. {
  18014. name: "Normal",
  18015. height: math.unit(6 + 8 / 12, "feet"),
  18016. default: true
  18017. },
  18018. {
  18019. name: "Normal+",
  18020. height: math.unit(12, "feet")
  18021. },
  18022. ]
  18023. ))
  18024. characterMakers.push(() => makeCharacter(
  18025. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  18026. {
  18027. front: {
  18028. height: math.unit(7 + 6 / 12, "feet"),
  18029. weight: math.unit(288, "lb"),
  18030. name: "Front",
  18031. image: {
  18032. source: "./media/characters/alana/front.svg",
  18033. extra: 679 / 653,
  18034. bottom: 22.5 / 701
  18035. }
  18036. },
  18037. },
  18038. [
  18039. {
  18040. name: "Normal",
  18041. height: math.unit(7 + 6 / 12, "feet")
  18042. },
  18043. {
  18044. name: "Large",
  18045. height: math.unit(50, "feet")
  18046. },
  18047. {
  18048. name: "Macro",
  18049. height: math.unit(100, "feet"),
  18050. default: true
  18051. },
  18052. {
  18053. name: "Macro+",
  18054. height: math.unit(200, "feet")
  18055. },
  18056. ]
  18057. ))
  18058. characterMakers.push(() => makeCharacter(
  18059. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  18060. {
  18061. front: {
  18062. height: math.unit(6 + 1 / 12, "feet"),
  18063. weight: math.unit(210, "lb"),
  18064. name: "Front",
  18065. image: {
  18066. source: "./media/characters/hasani/front.svg",
  18067. extra: 244 / 232,
  18068. bottom: 0.01
  18069. }
  18070. },
  18071. back: {
  18072. height: math.unit(6 + 1 / 12, "feet"),
  18073. weight: math.unit(210, "lb"),
  18074. name: "Back",
  18075. image: {
  18076. source: "./media/characters/hasani/back.svg",
  18077. extra: 244 / 232,
  18078. bottom: 0.01
  18079. }
  18080. },
  18081. },
  18082. [
  18083. {
  18084. name: "Normal",
  18085. height: math.unit(6 + 1 / 12, "feet")
  18086. },
  18087. {
  18088. name: "Macro",
  18089. height: math.unit(175, "feet"),
  18090. default: true
  18091. },
  18092. ]
  18093. ))
  18094. characterMakers.push(() => makeCharacter(
  18095. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  18096. {
  18097. front: {
  18098. height: math.unit(1.82, "meters"),
  18099. weight: math.unit(140, "lb"),
  18100. name: "Front",
  18101. image: {
  18102. source: "./media/characters/nita/front.svg",
  18103. extra: 2473 / 2363,
  18104. bottom: 0.01
  18105. }
  18106. },
  18107. },
  18108. [
  18109. {
  18110. name: "Normal",
  18111. height: math.unit(1.82, "m")
  18112. },
  18113. {
  18114. name: "Macro",
  18115. height: math.unit(300, "m")
  18116. },
  18117. {
  18118. name: "Mistake Canon",
  18119. height: math.unit(0.5, "miles"),
  18120. default: true
  18121. },
  18122. {
  18123. name: "Big Mistake",
  18124. height: math.unit(13, "miles")
  18125. },
  18126. {
  18127. name: "Playing God",
  18128. height: math.unit(2450, "miles")
  18129. },
  18130. ]
  18131. ))
  18132. characterMakers.push(() => makeCharacter(
  18133. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  18134. {
  18135. front: {
  18136. height: math.unit(4, "feet"),
  18137. weight: math.unit(120, "lb"),
  18138. name: "Front",
  18139. image: {
  18140. source: "./media/characters/shiriko/front.svg",
  18141. extra: 970/934,
  18142. bottom: 5/975
  18143. }
  18144. },
  18145. },
  18146. [
  18147. {
  18148. name: "Normal",
  18149. height: math.unit(4, "feet"),
  18150. default: true
  18151. },
  18152. ]
  18153. ))
  18154. characterMakers.push(() => makeCharacter(
  18155. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  18156. {
  18157. front: {
  18158. height: math.unit(6, "feet"),
  18159. name: "front",
  18160. image: {
  18161. source: "./media/characters/deja/front.svg",
  18162. extra: 926 / 840,
  18163. bottom: 0.07
  18164. }
  18165. },
  18166. },
  18167. [
  18168. {
  18169. name: "Planck Length",
  18170. height: math.unit(1.6e-35, "meters")
  18171. },
  18172. {
  18173. name: "Normal",
  18174. height: math.unit(30.48, "meters"),
  18175. default: true
  18176. },
  18177. {
  18178. name: "Universal",
  18179. height: math.unit(8.8e26, "meters")
  18180. },
  18181. ]
  18182. ))
  18183. characterMakers.push(() => makeCharacter(
  18184. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  18185. {
  18186. side: {
  18187. height: math.unit(8, "feet"),
  18188. weight: math.unit(6300, "lb"),
  18189. name: "Side",
  18190. image: {
  18191. source: "./media/characters/anima/side.svg",
  18192. bottom: 0.035
  18193. }
  18194. },
  18195. },
  18196. [
  18197. {
  18198. name: "Normal",
  18199. height: math.unit(8, "feet"),
  18200. default: true
  18201. },
  18202. ]
  18203. ))
  18204. characterMakers.push(() => makeCharacter(
  18205. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  18206. {
  18207. front: {
  18208. height: math.unit(8, "feet"),
  18209. weight: math.unit(350, "lb"),
  18210. name: "Front",
  18211. image: {
  18212. source: "./media/characters/bianca/front.svg",
  18213. extra: 234 / 225,
  18214. bottom: 0.03
  18215. }
  18216. },
  18217. },
  18218. [
  18219. {
  18220. name: "Normal",
  18221. height: math.unit(8, "feet"),
  18222. default: true
  18223. },
  18224. ]
  18225. ))
  18226. characterMakers.push(() => makeCharacter(
  18227. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  18228. {
  18229. front: {
  18230. height: math.unit(6, "feet"),
  18231. weight: math.unit(150, "lb"),
  18232. name: "Front",
  18233. image: {
  18234. source: "./media/characters/adinia/front.svg",
  18235. extra: 1845 / 1672,
  18236. bottom: 0.02
  18237. }
  18238. },
  18239. back: {
  18240. height: math.unit(6, "feet"),
  18241. weight: math.unit(150, "lb"),
  18242. name: "Back",
  18243. image: {
  18244. source: "./media/characters/adinia/back.svg",
  18245. extra: 1845 / 1672,
  18246. bottom: 0.002
  18247. }
  18248. },
  18249. },
  18250. [
  18251. {
  18252. name: "Normal",
  18253. height: math.unit(11 + 5 / 12, "feet"),
  18254. default: true
  18255. },
  18256. ]
  18257. ))
  18258. characterMakers.push(() => makeCharacter(
  18259. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  18260. {
  18261. front: {
  18262. height: math.unit(3, "meters"),
  18263. weight: math.unit(200, "kg"),
  18264. name: "Front",
  18265. image: {
  18266. source: "./media/characters/lykasa/front.svg",
  18267. extra: 1076 / 976,
  18268. bottom: 0.06
  18269. }
  18270. },
  18271. },
  18272. [
  18273. {
  18274. name: "Normal",
  18275. height: math.unit(3, "meters")
  18276. },
  18277. {
  18278. name: "Kaiju",
  18279. height: math.unit(120, "meters"),
  18280. default: true
  18281. },
  18282. {
  18283. name: "Mega Kaiju",
  18284. height: math.unit(240, "km")
  18285. },
  18286. {
  18287. name: "Giga Kaiju",
  18288. height: math.unit(400, "megameters")
  18289. },
  18290. {
  18291. name: "Tera Kaiju",
  18292. height: math.unit(800, "gigameters")
  18293. },
  18294. {
  18295. name: "Kaiju Dragon Goddess",
  18296. height: math.unit(26, "zettaparsecs")
  18297. },
  18298. ]
  18299. ))
  18300. characterMakers.push(() => makeCharacter(
  18301. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  18302. {
  18303. side: {
  18304. height: math.unit(283 / 124 * 6, "feet"),
  18305. weight: math.unit(35000, "lb"),
  18306. name: "Side",
  18307. image: {
  18308. source: "./media/characters/malfaren/side.svg",
  18309. extra: 1310/529,
  18310. bottom: 24/1334
  18311. }
  18312. },
  18313. front: {
  18314. height: math.unit(22.36, "feet"),
  18315. weight: math.unit(35000, "lb"),
  18316. name: "Front",
  18317. image: {
  18318. source: "./media/characters/malfaren/front.svg",
  18319. extra: 1237/1115,
  18320. bottom: 32/1269
  18321. }
  18322. },
  18323. maw: {
  18324. height: math.unit(6.9, "feet"),
  18325. name: "Maw",
  18326. image: {
  18327. source: "./media/characters/malfaren/maw.svg"
  18328. }
  18329. },
  18330. dick: {
  18331. height: math.unit(6.19, "feet"),
  18332. name: "Dick",
  18333. image: {
  18334. source: "./media/characters/malfaren/dick.svg"
  18335. }
  18336. },
  18337. eye: {
  18338. height: math.unit(0.69, "feet"),
  18339. name: "Eye",
  18340. image: {
  18341. source: "./media/characters/malfaren/eye.svg"
  18342. }
  18343. },
  18344. },
  18345. [
  18346. {
  18347. name: "Big",
  18348. height: math.unit(283 / 162 * 6, "feet"),
  18349. },
  18350. {
  18351. name: "Bigger",
  18352. height: math.unit(283 / 124 * 6, "feet")
  18353. },
  18354. {
  18355. name: "Massive",
  18356. height: math.unit(283 / 92 * 6, "feet"),
  18357. default: true
  18358. },
  18359. {
  18360. name: "👀💦",
  18361. height: math.unit(283 / 73 * 6, "feet"),
  18362. },
  18363. ]
  18364. ))
  18365. characterMakers.push(() => makeCharacter(
  18366. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  18367. {
  18368. front: {
  18369. height: math.unit(1.7, "m"),
  18370. weight: math.unit(70, "kg"),
  18371. name: "Front",
  18372. image: {
  18373. source: "./media/characters/kernel/front.svg",
  18374. extra: 222 / 210,
  18375. bottom: 0.007
  18376. }
  18377. },
  18378. },
  18379. [
  18380. {
  18381. name: "Nano",
  18382. height: math.unit(17, "micrometers")
  18383. },
  18384. {
  18385. name: "Micro",
  18386. height: math.unit(1.7, "mm")
  18387. },
  18388. {
  18389. name: "Small",
  18390. height: math.unit(1.7, "cm")
  18391. },
  18392. {
  18393. name: "Normal",
  18394. height: math.unit(1.7, "m"),
  18395. default: true
  18396. },
  18397. ]
  18398. ))
  18399. characterMakers.push(() => makeCharacter(
  18400. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  18401. {
  18402. front: {
  18403. height: math.unit(1.75, "meters"),
  18404. weight: math.unit(65, "kg"),
  18405. name: "Front",
  18406. image: {
  18407. source: "./media/characters/jayne-folest/front.svg",
  18408. extra: 2115 / 2007,
  18409. bottom: 0.02
  18410. }
  18411. },
  18412. back: {
  18413. height: math.unit(1.75, "meters"),
  18414. weight: math.unit(65, "kg"),
  18415. name: "Back",
  18416. image: {
  18417. source: "./media/characters/jayne-folest/back.svg",
  18418. extra: 2115 / 2007,
  18419. bottom: 0.005
  18420. }
  18421. },
  18422. frontClothed: {
  18423. height: math.unit(1.75, "meters"),
  18424. weight: math.unit(65, "kg"),
  18425. name: "Front (Clothed)",
  18426. image: {
  18427. source: "./media/characters/jayne-folest/front-clothed.svg",
  18428. extra: 2115 / 2007,
  18429. bottom: 0.035
  18430. }
  18431. },
  18432. hand: {
  18433. height: math.unit(1 / 1.260, "feet"),
  18434. name: "Hand",
  18435. image: {
  18436. source: "./media/characters/jayne-folest/hand.svg"
  18437. }
  18438. },
  18439. foot: {
  18440. height: math.unit(1 / 0.918, "feet"),
  18441. name: "Foot",
  18442. image: {
  18443. source: "./media/characters/jayne-folest/foot.svg"
  18444. }
  18445. },
  18446. },
  18447. [
  18448. {
  18449. name: "Micro",
  18450. height: math.unit(4, "cm")
  18451. },
  18452. {
  18453. name: "Normal",
  18454. height: math.unit(1.75, "meters")
  18455. },
  18456. {
  18457. name: "Macro",
  18458. height: math.unit(47.5, "meters"),
  18459. default: true
  18460. },
  18461. ]
  18462. ))
  18463. characterMakers.push(() => makeCharacter(
  18464. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  18465. {
  18466. front: {
  18467. height: math.unit(180, "cm"),
  18468. weight: math.unit(70, "kg"),
  18469. name: "Front",
  18470. image: {
  18471. source: "./media/characters/algier/front.svg",
  18472. extra: 596 / 572,
  18473. bottom: 0.04
  18474. }
  18475. },
  18476. back: {
  18477. height: math.unit(180, "cm"),
  18478. weight: math.unit(70, "kg"),
  18479. name: "Back",
  18480. image: {
  18481. source: "./media/characters/algier/back.svg",
  18482. extra: 596 / 572,
  18483. bottom: 0.025
  18484. }
  18485. },
  18486. frontdressed: {
  18487. height: math.unit(180, "cm"),
  18488. weight: math.unit(150, "kg"),
  18489. name: "Front-dressed",
  18490. image: {
  18491. source: "./media/characters/algier/front-dressed.svg",
  18492. extra: 596 / 572,
  18493. bottom: 0.038
  18494. }
  18495. },
  18496. },
  18497. [
  18498. {
  18499. name: "Micro",
  18500. height: math.unit(5, "cm")
  18501. },
  18502. {
  18503. name: "Normal",
  18504. height: math.unit(180, "cm"),
  18505. default: true
  18506. },
  18507. {
  18508. name: "Macro",
  18509. height: math.unit(64, "m")
  18510. },
  18511. ]
  18512. ))
  18513. characterMakers.push(() => makeCharacter(
  18514. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  18515. {
  18516. upright: {
  18517. height: math.unit(7, "feet"),
  18518. weight: math.unit(300, "lb"),
  18519. name: "Upright",
  18520. image: {
  18521. source: "./media/characters/pretzel/upright.svg",
  18522. extra: 534 / 522,
  18523. bottom: 0.065
  18524. }
  18525. },
  18526. sprawling: {
  18527. height: math.unit(3.75, "feet"),
  18528. weight: math.unit(300, "lb"),
  18529. name: "Sprawling",
  18530. image: {
  18531. source: "./media/characters/pretzel/sprawling.svg",
  18532. extra: 314 / 281,
  18533. bottom: 0.1
  18534. }
  18535. },
  18536. tongue: {
  18537. height: math.unit(2, "feet"),
  18538. name: "Tongue",
  18539. image: {
  18540. source: "./media/characters/pretzel/tongue.svg"
  18541. }
  18542. },
  18543. },
  18544. [
  18545. {
  18546. name: "Normal",
  18547. height: math.unit(7, "feet"),
  18548. default: true
  18549. },
  18550. {
  18551. name: "Oversized",
  18552. height: math.unit(15, "feet")
  18553. },
  18554. {
  18555. name: "Huge",
  18556. height: math.unit(30, "feet")
  18557. },
  18558. {
  18559. name: "Macro",
  18560. height: math.unit(250, "feet")
  18561. },
  18562. ]
  18563. ))
  18564. characterMakers.push(() => makeCharacter(
  18565. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  18566. {
  18567. sideFront: {
  18568. height: math.unit(5 + 2 / 12, "feet"),
  18569. weight: math.unit(120, "lb"),
  18570. name: "Front Side",
  18571. image: {
  18572. source: "./media/characters/roxi/side-front.svg",
  18573. extra: 2924 / 2717,
  18574. bottom: 0.08
  18575. }
  18576. },
  18577. sideBack: {
  18578. height: math.unit(5 + 2 / 12, "feet"),
  18579. weight: math.unit(120, "lb"),
  18580. name: "Back Side",
  18581. image: {
  18582. source: "./media/characters/roxi/side-back.svg",
  18583. extra: 2904 / 2693,
  18584. bottom: 0.06
  18585. }
  18586. },
  18587. front: {
  18588. height: math.unit(5 + 2 / 12, "feet"),
  18589. weight: math.unit(120, "lb"),
  18590. name: "Front",
  18591. image: {
  18592. source: "./media/characters/roxi/front.svg",
  18593. extra: 2028 / 1907,
  18594. bottom: 0.01
  18595. }
  18596. },
  18597. frontAlt: {
  18598. height: math.unit(5 + 2 / 12, "feet"),
  18599. weight: math.unit(120, "lb"),
  18600. name: "Front (Alt)",
  18601. image: {
  18602. source: "./media/characters/roxi/front-alt.svg",
  18603. extra: 1828 / 1798,
  18604. bottom: 0.01
  18605. }
  18606. },
  18607. sitting: {
  18608. height: math.unit(2.8, "feet"),
  18609. weight: math.unit(120, "lb"),
  18610. name: "Sitting",
  18611. image: {
  18612. source: "./media/characters/roxi/sitting.svg",
  18613. extra: 2660 / 2462,
  18614. bottom: 0.1
  18615. }
  18616. },
  18617. },
  18618. [
  18619. {
  18620. name: "Normal",
  18621. height: math.unit(5 + 2 / 12, "feet"),
  18622. default: true
  18623. },
  18624. ]
  18625. ))
  18626. characterMakers.push(() => makeCharacter(
  18627. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  18628. {
  18629. side: {
  18630. height: math.unit(55, "feet"),
  18631. weight: math.unit(153, "tons"),
  18632. name: "Side",
  18633. image: {
  18634. source: "./media/characters/shadow/side.svg",
  18635. extra: 701 / 628,
  18636. bottom: 0.02
  18637. }
  18638. },
  18639. flying: {
  18640. height: math.unit(145, "feet"),
  18641. weight: math.unit(153, "tons"),
  18642. name: "Flying",
  18643. image: {
  18644. source: "./media/characters/shadow/flying.svg"
  18645. }
  18646. },
  18647. },
  18648. [
  18649. {
  18650. name: "Normal",
  18651. height: math.unit(55, "feet"),
  18652. default: true
  18653. },
  18654. ]
  18655. ))
  18656. characterMakers.push(() => makeCharacter(
  18657. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  18658. {
  18659. front: {
  18660. height: math.unit(6, "feet"),
  18661. weight: math.unit(200, "lb"),
  18662. name: "Front",
  18663. image: {
  18664. source: "./media/characters/marcie/front.svg",
  18665. extra: 960 / 876,
  18666. bottom: 58 / 1017.87
  18667. }
  18668. },
  18669. },
  18670. [
  18671. {
  18672. name: "Macro",
  18673. height: math.unit(1, "mile"),
  18674. default: true
  18675. },
  18676. ]
  18677. ))
  18678. characterMakers.push(() => makeCharacter(
  18679. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  18680. {
  18681. front: {
  18682. height: math.unit(7, "feet"),
  18683. weight: math.unit(200, "lb"),
  18684. name: "Front",
  18685. image: {
  18686. source: "./media/characters/kachina/front.svg",
  18687. extra: 1290.68 / 1119,
  18688. bottom: 36.5 / 1327.18
  18689. }
  18690. },
  18691. },
  18692. [
  18693. {
  18694. name: "Normal",
  18695. height: math.unit(7, "feet"),
  18696. default: true
  18697. },
  18698. ]
  18699. ))
  18700. characterMakers.push(() => makeCharacter(
  18701. { name: "Kash", species: ["canine"], tags: ["feral"] },
  18702. {
  18703. looking: {
  18704. height: math.unit(2, "meters"),
  18705. weight: math.unit(300, "kg"),
  18706. name: "Looking",
  18707. image: {
  18708. source: "./media/characters/kash/looking.svg",
  18709. extra: 474 / 344,
  18710. bottom: 0.03
  18711. }
  18712. },
  18713. side: {
  18714. height: math.unit(2, "meters"),
  18715. weight: math.unit(300, "kg"),
  18716. name: "Side",
  18717. image: {
  18718. source: "./media/characters/kash/side.svg",
  18719. extra: 302 / 251,
  18720. bottom: 0.03
  18721. }
  18722. },
  18723. front: {
  18724. height: math.unit(2, "meters"),
  18725. weight: math.unit(300, "kg"),
  18726. name: "Front",
  18727. image: {
  18728. source: "./media/characters/kash/front.svg",
  18729. extra: 495 / 360,
  18730. bottom: 0.015
  18731. }
  18732. },
  18733. },
  18734. [
  18735. {
  18736. name: "Normal",
  18737. height: math.unit(2, "meters"),
  18738. default: true
  18739. },
  18740. {
  18741. name: "Big",
  18742. height: math.unit(3, "meters")
  18743. },
  18744. {
  18745. name: "Large",
  18746. height: math.unit(5, "meters")
  18747. },
  18748. ]
  18749. ))
  18750. characterMakers.push(() => makeCharacter(
  18751. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  18752. {
  18753. feeding: {
  18754. height: math.unit(6.7, "feet"),
  18755. weight: math.unit(350, "lb"),
  18756. name: "Feeding",
  18757. image: {
  18758. source: "./media/characters/lalim/feeding.svg",
  18759. }
  18760. },
  18761. },
  18762. [
  18763. {
  18764. name: "Normal",
  18765. height: math.unit(6.7, "feet"),
  18766. default: true
  18767. },
  18768. ]
  18769. ))
  18770. characterMakers.push(() => makeCharacter(
  18771. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  18772. {
  18773. front: {
  18774. height: math.unit(9.5, "feet"),
  18775. weight: math.unit(600, "lb"),
  18776. name: "Front",
  18777. image: {
  18778. source: "./media/characters/de'vout/front.svg",
  18779. extra: 1443 / 1328,
  18780. bottom: 0.025
  18781. }
  18782. },
  18783. back: {
  18784. height: math.unit(9.5, "feet"),
  18785. weight: math.unit(600, "lb"),
  18786. name: "Back",
  18787. image: {
  18788. source: "./media/characters/de'vout/back.svg",
  18789. extra: 1443 / 1328
  18790. }
  18791. },
  18792. frontDressed: {
  18793. height: math.unit(9.5, "feet"),
  18794. weight: math.unit(600, "lb"),
  18795. name: "Front (Dressed",
  18796. image: {
  18797. source: "./media/characters/de'vout/front-dressed.svg",
  18798. extra: 1443 / 1328,
  18799. bottom: 0.025
  18800. }
  18801. },
  18802. backDressed: {
  18803. height: math.unit(9.5, "feet"),
  18804. weight: math.unit(600, "lb"),
  18805. name: "Back (Dressed",
  18806. image: {
  18807. source: "./media/characters/de'vout/back-dressed.svg",
  18808. extra: 1443 / 1328
  18809. }
  18810. },
  18811. },
  18812. [
  18813. {
  18814. name: "Normal",
  18815. height: math.unit(9.5, "feet"),
  18816. default: true
  18817. },
  18818. ]
  18819. ))
  18820. characterMakers.push(() => makeCharacter(
  18821. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  18822. {
  18823. front: {
  18824. height: math.unit(8, "feet"),
  18825. weight: math.unit(225, "lb"),
  18826. name: "Front",
  18827. image: {
  18828. source: "./media/characters/talana/front.svg",
  18829. extra: 1410 / 1300,
  18830. bottom: 0.015
  18831. }
  18832. },
  18833. frontDressed: {
  18834. height: math.unit(8, "feet"),
  18835. weight: math.unit(225, "lb"),
  18836. name: "Front (Dressed",
  18837. image: {
  18838. source: "./media/characters/talana/front-dressed.svg",
  18839. extra: 1410 / 1300,
  18840. bottom: 0.015
  18841. }
  18842. },
  18843. },
  18844. [
  18845. {
  18846. name: "Normal",
  18847. height: math.unit(8, "feet"),
  18848. default: true
  18849. },
  18850. ]
  18851. ))
  18852. characterMakers.push(() => makeCharacter(
  18853. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  18854. {
  18855. side: {
  18856. height: math.unit(7.2, "feet"),
  18857. weight: math.unit(150, "lb"),
  18858. name: "Side",
  18859. image: {
  18860. source: "./media/characters/xeauvok/side.svg",
  18861. extra: 1975 / 1523,
  18862. bottom: 0.07
  18863. }
  18864. },
  18865. },
  18866. [
  18867. {
  18868. name: "Normal",
  18869. height: math.unit(7.2, "feet"),
  18870. default: true
  18871. },
  18872. ]
  18873. ))
  18874. characterMakers.push(() => makeCharacter(
  18875. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  18876. {
  18877. side: {
  18878. height: math.unit(4, "meters"),
  18879. weight: math.unit(2200, "kg"),
  18880. name: "Side",
  18881. image: {
  18882. source: "./media/characters/zara/side.svg",
  18883. extra: 765/744,
  18884. bottom: 156/921
  18885. }
  18886. },
  18887. },
  18888. [
  18889. {
  18890. name: "Normal",
  18891. height: math.unit(4, "meters"),
  18892. default: true
  18893. },
  18894. ]
  18895. ))
  18896. characterMakers.push(() => makeCharacter(
  18897. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  18898. {
  18899. side: {
  18900. height: math.unit(6, "feet"),
  18901. weight: math.unit(150, "lb"),
  18902. name: "Side",
  18903. image: {
  18904. source: "./media/characters/richard-dragon/side.svg",
  18905. extra: 845 / 340,
  18906. bottom: 0.017
  18907. }
  18908. },
  18909. maw: {
  18910. height: math.unit(2.97, "feet"),
  18911. name: "Maw",
  18912. image: {
  18913. source: "./media/characters/richard-dragon/maw.svg"
  18914. }
  18915. },
  18916. },
  18917. [
  18918. ]
  18919. ))
  18920. characterMakers.push(() => makeCharacter(
  18921. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  18922. {
  18923. front: {
  18924. height: math.unit(4, "feet"),
  18925. weight: math.unit(100, "lb"),
  18926. name: "Front",
  18927. image: {
  18928. source: "./media/characters/richard-smeargle/front.svg",
  18929. extra: 2952 / 2820,
  18930. bottom: 0.028
  18931. }
  18932. },
  18933. },
  18934. [
  18935. {
  18936. name: "Normal",
  18937. height: math.unit(4, "feet"),
  18938. default: true
  18939. },
  18940. {
  18941. name: "Dynamax",
  18942. height: math.unit(20, "meters")
  18943. },
  18944. ]
  18945. ))
  18946. characterMakers.push(() => makeCharacter(
  18947. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  18948. {
  18949. front: {
  18950. height: math.unit(6, "feet"),
  18951. weight: math.unit(110, "lb"),
  18952. name: "Front",
  18953. image: {
  18954. source: "./media/characters/klay/front.svg",
  18955. extra: 962 / 883,
  18956. bottom: 0.04
  18957. }
  18958. },
  18959. back: {
  18960. height: math.unit(6, "feet"),
  18961. weight: math.unit(110, "lb"),
  18962. name: "Back",
  18963. image: {
  18964. source: "./media/characters/klay/back.svg",
  18965. extra: 962 / 883
  18966. }
  18967. },
  18968. beans: {
  18969. height: math.unit(1.15, "feet"),
  18970. name: "Beans",
  18971. image: {
  18972. source: "./media/characters/klay/beans.svg"
  18973. }
  18974. },
  18975. },
  18976. [
  18977. {
  18978. name: "Micro",
  18979. height: math.unit(6, "inches")
  18980. },
  18981. {
  18982. name: "Mini",
  18983. height: math.unit(3, "feet")
  18984. },
  18985. {
  18986. name: "Normal",
  18987. height: math.unit(6, "feet"),
  18988. default: true
  18989. },
  18990. {
  18991. name: "Big",
  18992. height: math.unit(25, "feet")
  18993. },
  18994. {
  18995. name: "Macro",
  18996. height: math.unit(100, "feet")
  18997. },
  18998. {
  18999. name: "Megamacro",
  19000. height: math.unit(400, "feet")
  19001. },
  19002. ]
  19003. ))
  19004. characterMakers.push(() => makeCharacter(
  19005. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  19006. {
  19007. front: {
  19008. height: math.unit(6, "feet"),
  19009. weight: math.unit(160, "lb"),
  19010. name: "Front",
  19011. image: {
  19012. source: "./media/characters/marcus/front.svg",
  19013. extra: 734 / 676,
  19014. bottom: 0.03
  19015. }
  19016. },
  19017. },
  19018. [
  19019. {
  19020. name: "Little",
  19021. height: math.unit(6, "feet")
  19022. },
  19023. {
  19024. name: "Normal",
  19025. height: math.unit(110, "feet"),
  19026. default: true
  19027. },
  19028. {
  19029. name: "Macro",
  19030. height: math.unit(250, "feet")
  19031. },
  19032. {
  19033. name: "Megamacro",
  19034. height: math.unit(1000, "feet")
  19035. },
  19036. ]
  19037. ))
  19038. characterMakers.push(() => makeCharacter(
  19039. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  19040. {
  19041. front: {
  19042. height: math.unit(7, "feet"),
  19043. weight: math.unit(275, "lb"),
  19044. name: "Front",
  19045. image: {
  19046. source: "./media/characters/claude-delroute/front.svg",
  19047. extra: 902/827,
  19048. bottom: 26/928
  19049. }
  19050. },
  19051. side: {
  19052. height: math.unit(7, "feet"),
  19053. weight: math.unit(275, "lb"),
  19054. name: "Side",
  19055. image: {
  19056. source: "./media/characters/claude-delroute/side.svg",
  19057. extra: 908/853,
  19058. bottom: 16/924
  19059. }
  19060. },
  19061. back: {
  19062. height: math.unit(7, "feet"),
  19063. weight: math.unit(275, "lb"),
  19064. name: "Back",
  19065. image: {
  19066. source: "./media/characters/claude-delroute/back.svg",
  19067. extra: 911/829,
  19068. bottom: 18/929
  19069. }
  19070. },
  19071. maw: {
  19072. height: math.unit(0.6407, "meters"),
  19073. name: "Maw",
  19074. image: {
  19075. source: "./media/characters/claude-delroute/maw.svg"
  19076. }
  19077. },
  19078. },
  19079. [
  19080. {
  19081. name: "Normal",
  19082. height: math.unit(7, "feet"),
  19083. default: true
  19084. },
  19085. {
  19086. name: "Lorge",
  19087. height: math.unit(20, "feet")
  19088. },
  19089. ]
  19090. ))
  19091. characterMakers.push(() => makeCharacter(
  19092. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  19093. {
  19094. front: {
  19095. height: math.unit(8 + 4 / 12, "feet"),
  19096. weight: math.unit(600, "lb"),
  19097. name: "Front",
  19098. image: {
  19099. source: "./media/characters/dragonien/front.svg",
  19100. extra: 100 / 94,
  19101. bottom: 3.3 / 103.3445
  19102. }
  19103. },
  19104. back: {
  19105. height: math.unit(8 + 4 / 12, "feet"),
  19106. weight: math.unit(600, "lb"),
  19107. name: "Back",
  19108. image: {
  19109. source: "./media/characters/dragonien/back.svg",
  19110. extra: 776 / 746,
  19111. bottom: 6.4 / 782.0616
  19112. }
  19113. },
  19114. foot: {
  19115. height: math.unit(1.54, "feet"),
  19116. name: "Foot",
  19117. image: {
  19118. source: "./media/characters/dragonien/foot.svg",
  19119. }
  19120. },
  19121. },
  19122. [
  19123. {
  19124. name: "Normal",
  19125. height: math.unit(8 + 4 / 12, "feet"),
  19126. default: true
  19127. },
  19128. {
  19129. name: "Macro",
  19130. height: math.unit(200, "feet")
  19131. },
  19132. {
  19133. name: "Megamacro",
  19134. height: math.unit(1, "mile")
  19135. },
  19136. {
  19137. name: "Gigamacro",
  19138. height: math.unit(1000, "miles")
  19139. },
  19140. ]
  19141. ))
  19142. characterMakers.push(() => makeCharacter(
  19143. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  19144. {
  19145. front: {
  19146. height: math.unit(5 + 2 / 12, "feet"),
  19147. weight: math.unit(110, "lb"),
  19148. name: "Front",
  19149. image: {
  19150. source: "./media/characters/desta/front.svg",
  19151. extra: 767 / 726,
  19152. bottom: 11.7 / 779
  19153. }
  19154. },
  19155. back: {
  19156. height: math.unit(5 + 2 / 12, "feet"),
  19157. weight: math.unit(110, "lb"),
  19158. name: "Back",
  19159. image: {
  19160. source: "./media/characters/desta/back.svg",
  19161. extra: 777 / 728,
  19162. bottom: 6 / 784
  19163. }
  19164. },
  19165. frontAlt: {
  19166. height: math.unit(5 + 2 / 12, "feet"),
  19167. weight: math.unit(110, "lb"),
  19168. name: "Front",
  19169. image: {
  19170. source: "./media/characters/desta/front-alt.svg",
  19171. extra: 1482 / 1417
  19172. }
  19173. },
  19174. side: {
  19175. height: math.unit(5 + 2 / 12, "feet"),
  19176. weight: math.unit(110, "lb"),
  19177. name: "Side",
  19178. image: {
  19179. source: "./media/characters/desta/side.svg",
  19180. extra: 2579 / 2491,
  19181. bottom: 0.053
  19182. }
  19183. },
  19184. },
  19185. [
  19186. {
  19187. name: "Micro",
  19188. height: math.unit(6, "inches")
  19189. },
  19190. {
  19191. name: "Normal",
  19192. height: math.unit(5 + 2 / 12, "feet"),
  19193. default: true
  19194. },
  19195. {
  19196. name: "Macro",
  19197. height: math.unit(62, "feet")
  19198. },
  19199. {
  19200. name: "Megamacro",
  19201. height: math.unit(1800, "feet")
  19202. },
  19203. ]
  19204. ))
  19205. characterMakers.push(() => makeCharacter(
  19206. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  19207. {
  19208. front: {
  19209. height: math.unit(10, "feet"),
  19210. weight: math.unit(700, "lb"),
  19211. name: "Front",
  19212. image: {
  19213. source: "./media/characters/storm-alystar/front.svg",
  19214. extra: 2112 / 1898,
  19215. bottom: 0.034
  19216. }
  19217. },
  19218. },
  19219. [
  19220. {
  19221. name: "Micro",
  19222. height: math.unit(3.5, "inches")
  19223. },
  19224. {
  19225. name: "Normal",
  19226. height: math.unit(10, "feet"),
  19227. default: true
  19228. },
  19229. {
  19230. name: "Macro",
  19231. height: math.unit(400, "feet")
  19232. },
  19233. {
  19234. name: "Deific",
  19235. height: math.unit(60, "miles")
  19236. },
  19237. ]
  19238. ))
  19239. characterMakers.push(() => makeCharacter(
  19240. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  19241. {
  19242. front: {
  19243. height: math.unit(2.35, "meters"),
  19244. weight: math.unit(119, "kg"),
  19245. name: "Front",
  19246. image: {
  19247. source: "./media/characters/ilia/front.svg",
  19248. extra: 1285 / 1255,
  19249. bottom: 0.06
  19250. }
  19251. },
  19252. },
  19253. [
  19254. {
  19255. name: "Normal",
  19256. height: math.unit(2.35, "meters")
  19257. },
  19258. {
  19259. name: "Macro",
  19260. height: math.unit(140, "meters"),
  19261. default: true
  19262. },
  19263. {
  19264. name: "Megamacro",
  19265. height: math.unit(100, "miles")
  19266. },
  19267. ]
  19268. ))
  19269. characterMakers.push(() => makeCharacter(
  19270. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  19271. {
  19272. front: {
  19273. height: math.unit(6 + 5 / 12, "feet"),
  19274. weight: math.unit(190, "lb"),
  19275. name: "Front",
  19276. image: {
  19277. source: "./media/characters/kingdead/front.svg",
  19278. extra: 1228 / 1177
  19279. }
  19280. },
  19281. },
  19282. [
  19283. {
  19284. name: "Micro",
  19285. height: math.unit(7, "inches")
  19286. },
  19287. {
  19288. name: "Normal",
  19289. height: math.unit(6 + 5 / 12, "feet")
  19290. },
  19291. {
  19292. name: "Macro",
  19293. height: math.unit(150, "feet"),
  19294. default: true
  19295. },
  19296. {
  19297. name: "Megamacro",
  19298. height: math.unit(200, "miles")
  19299. },
  19300. ]
  19301. ))
  19302. characterMakers.push(() => makeCharacter(
  19303. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  19304. {
  19305. front: {
  19306. height: math.unit(8, "feet"),
  19307. weight: math.unit(600, "lb"),
  19308. name: "Front",
  19309. image: {
  19310. source: "./media/characters/kyrehx/front.svg",
  19311. extra: 1195 / 1095,
  19312. bottom: 0.034
  19313. }
  19314. },
  19315. },
  19316. [
  19317. {
  19318. name: "Micro",
  19319. height: math.unit(2, "inches")
  19320. },
  19321. {
  19322. name: "Normal",
  19323. height: math.unit(8, "feet"),
  19324. default: true
  19325. },
  19326. {
  19327. name: "Macro",
  19328. height: math.unit(255, "feet")
  19329. },
  19330. ]
  19331. ))
  19332. characterMakers.push(() => makeCharacter(
  19333. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  19334. {
  19335. front: {
  19336. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  19337. weight: math.unit(184, "lb"),
  19338. name: "Front",
  19339. image: {
  19340. source: "./media/characters/xang/front.svg",
  19341. extra: 845 / 755
  19342. }
  19343. },
  19344. },
  19345. [
  19346. {
  19347. name: "Normal",
  19348. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  19349. default: true
  19350. },
  19351. {
  19352. name: "Macro",
  19353. height: math.unit(0.935 * 146, "feet")
  19354. },
  19355. {
  19356. name: "Megamacro",
  19357. height: math.unit(0.935 * 3, "miles")
  19358. },
  19359. ]
  19360. ))
  19361. characterMakers.push(() => makeCharacter(
  19362. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  19363. {
  19364. frontDressed: {
  19365. height: math.unit(5 + 7 / 12, "feet"),
  19366. weight: math.unit(140, "lb"),
  19367. name: "Front (Dressed)",
  19368. image: {
  19369. source: "./media/characters/doc-weardno/front-dressed.svg",
  19370. extra: 263 / 234
  19371. }
  19372. },
  19373. backDressed: {
  19374. height: math.unit(5 + 7 / 12, "feet"),
  19375. weight: math.unit(140, "lb"),
  19376. name: "Back (Dressed)",
  19377. image: {
  19378. source: "./media/characters/doc-weardno/back-dressed.svg",
  19379. extra: 266 / 238
  19380. }
  19381. },
  19382. front: {
  19383. height: math.unit(5 + 7 / 12, "feet"),
  19384. weight: math.unit(140, "lb"),
  19385. name: "Front",
  19386. image: {
  19387. source: "./media/characters/doc-weardno/front.svg",
  19388. extra: 254 / 233
  19389. }
  19390. },
  19391. },
  19392. [
  19393. {
  19394. name: "Micro",
  19395. height: math.unit(3, "inches")
  19396. },
  19397. {
  19398. name: "Normal",
  19399. height: math.unit(5 + 7 / 12, "feet"),
  19400. default: true
  19401. },
  19402. {
  19403. name: "Macro",
  19404. height: math.unit(25, "feet")
  19405. },
  19406. {
  19407. name: "Megamacro",
  19408. height: math.unit(2, "miles")
  19409. },
  19410. ]
  19411. ))
  19412. characterMakers.push(() => makeCharacter(
  19413. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  19414. {
  19415. front: {
  19416. height: math.unit(6 + 2 / 12, "feet"),
  19417. weight: math.unit(153, "lb"),
  19418. name: "Front",
  19419. image: {
  19420. source: "./media/characters/seth-whilst/front.svg",
  19421. bottom: 0.07
  19422. }
  19423. },
  19424. },
  19425. [
  19426. {
  19427. name: "Micro",
  19428. height: math.unit(5, "inches")
  19429. },
  19430. {
  19431. name: "Normal",
  19432. height: math.unit(6 + 2 / 12, "feet"),
  19433. default: true
  19434. },
  19435. ]
  19436. ))
  19437. characterMakers.push(() => makeCharacter(
  19438. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  19439. {
  19440. front: {
  19441. height: math.unit(3, "inches"),
  19442. weight: math.unit(8, "grams"),
  19443. name: "Front",
  19444. image: {
  19445. source: "./media/characters/pocket-jabari/front.svg",
  19446. extra: 1024 / 974,
  19447. bottom: 0.039
  19448. }
  19449. },
  19450. },
  19451. [
  19452. {
  19453. name: "Minimicro",
  19454. height: math.unit(8, "mm")
  19455. },
  19456. {
  19457. name: "Micro",
  19458. height: math.unit(3, "inches"),
  19459. default: true
  19460. },
  19461. {
  19462. name: "Normal",
  19463. height: math.unit(3, "feet")
  19464. },
  19465. ]
  19466. ))
  19467. characterMakers.push(() => makeCharacter(
  19468. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  19469. {
  19470. frontDressed: {
  19471. height: math.unit(15, "feet"),
  19472. weight: math.unit(3280, "lb"),
  19473. name: "Front (Dressed)",
  19474. image: {
  19475. source: "./media/characters/sapphy/front-dressed.svg",
  19476. extra: 1951/1654,
  19477. bottom: 194/2145
  19478. },
  19479. form: "anthro",
  19480. default: true
  19481. },
  19482. backDressed: {
  19483. height: math.unit(15, "feet"),
  19484. weight: math.unit(3280, "lb"),
  19485. name: "Back (Dressed)",
  19486. image: {
  19487. source: "./media/characters/sapphy/back-dressed.svg",
  19488. extra: 2058/1918,
  19489. bottom: 125/2183
  19490. },
  19491. form: "anthro"
  19492. },
  19493. frontNude: {
  19494. height: math.unit(15, "feet"),
  19495. weight: math.unit(3280, "lb"),
  19496. name: "Front (Nude)",
  19497. image: {
  19498. source: "./media/characters/sapphy/front-nude.svg",
  19499. extra: 1951/1654,
  19500. bottom: 194/2145
  19501. },
  19502. form: "anthro"
  19503. },
  19504. backNude: {
  19505. height: math.unit(15, "feet"),
  19506. weight: math.unit(3280, "lb"),
  19507. name: "Back (Nude)",
  19508. image: {
  19509. source: "./media/characters/sapphy/back-nude.svg",
  19510. extra: 2058/1918,
  19511. bottom: 125/2183
  19512. },
  19513. form: "anthro"
  19514. },
  19515. full: {
  19516. height: math.unit(15, "feet"),
  19517. weight: math.unit(3280, "lb"),
  19518. name: "Full",
  19519. image: {
  19520. source: "./media/characters/sapphy/full.svg",
  19521. extra: 1396/1317,
  19522. bottom: 44/1440
  19523. },
  19524. form: "anthro"
  19525. },
  19526. dick: {
  19527. height: math.unit(3.8, "feet"),
  19528. name: "Dick",
  19529. image: {
  19530. source: "./media/characters/sapphy/dick.svg"
  19531. },
  19532. form: "anthro"
  19533. },
  19534. feral: {
  19535. height: math.unit(35, "feet"),
  19536. weight: math.unit(160, "tons"),
  19537. name: "Feral",
  19538. image: {
  19539. source: "./media/characters/sapphy/feral.svg",
  19540. extra: 1050/573,
  19541. bottom: 60/1110
  19542. },
  19543. form: "feral",
  19544. default: true
  19545. },
  19546. },
  19547. [
  19548. {
  19549. name: "Normal",
  19550. height: math.unit(15, "feet"),
  19551. form: "anthro"
  19552. },
  19553. {
  19554. name: "Casual Macro",
  19555. height: math.unit(120, "feet"),
  19556. form: "anthro"
  19557. },
  19558. {
  19559. name: "Macro",
  19560. height: math.unit(2150, "feet"),
  19561. default: true,
  19562. form: "anthro"
  19563. },
  19564. {
  19565. name: "Megamacro",
  19566. height: math.unit(8, "miles"),
  19567. form: "anthro"
  19568. },
  19569. {
  19570. name: "Galaxy Mom",
  19571. height: math.unit(6, "megalightyears"),
  19572. form: "anthro"
  19573. },
  19574. {
  19575. name: "Normal",
  19576. height: math.unit(35, "feet"),
  19577. form: "feral",
  19578. default: true
  19579. },
  19580. {
  19581. name: "Macro",
  19582. height: math.unit(300, "feet"),
  19583. form: "feral"
  19584. },
  19585. {
  19586. name: "Galaxy Mom",
  19587. height: math.unit(10, "megalightyears"),
  19588. form: "feral"
  19589. },
  19590. ],
  19591. {
  19592. "anthro": {
  19593. name: "Anthro",
  19594. default: true
  19595. },
  19596. "feral": {
  19597. name: "Feral"
  19598. }
  19599. }
  19600. ))
  19601. characterMakers.push(() => makeCharacter(
  19602. { name: "Kiro", species: ["folf"], tags: ["anthro"] },
  19603. {
  19604. front: {
  19605. height: math.unit(6, "feet"),
  19606. weight: math.unit(170, "lb"),
  19607. name: "Front",
  19608. image: {
  19609. source: "./media/characters/kiro/front.svg",
  19610. extra: 1064 / 1012,
  19611. bottom: 0.052
  19612. }
  19613. },
  19614. },
  19615. [
  19616. {
  19617. name: "Micro",
  19618. height: math.unit(6, "inches")
  19619. },
  19620. {
  19621. name: "Normal",
  19622. height: math.unit(6, "feet"),
  19623. default: true
  19624. },
  19625. {
  19626. name: "Macro",
  19627. height: math.unit(72, "feet")
  19628. },
  19629. ]
  19630. ))
  19631. characterMakers.push(() => makeCharacter(
  19632. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  19633. {
  19634. front: {
  19635. height: math.unit(5 + 9 / 12, "feet"),
  19636. weight: math.unit(175, "lb"),
  19637. name: "Front",
  19638. image: {
  19639. source: "./media/characters/irishfox/front.svg",
  19640. extra: 1912 / 1680,
  19641. bottom: 0.02
  19642. }
  19643. },
  19644. },
  19645. [
  19646. {
  19647. name: "Nano",
  19648. height: math.unit(1, "mm")
  19649. },
  19650. {
  19651. name: "Micro",
  19652. height: math.unit(2, "inches")
  19653. },
  19654. {
  19655. name: "Normal",
  19656. height: math.unit(5 + 9 / 12, "feet"),
  19657. default: true
  19658. },
  19659. {
  19660. name: "Macro",
  19661. height: math.unit(45, "feet")
  19662. },
  19663. ]
  19664. ))
  19665. characterMakers.push(() => makeCharacter(
  19666. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  19667. {
  19668. front: {
  19669. height: math.unit(6 + 1 / 12, "feet"),
  19670. weight: math.unit(75, "lb"),
  19671. name: "Front",
  19672. image: {
  19673. source: "./media/characters/aronai-sieyes/front.svg",
  19674. extra: 1532/1450,
  19675. bottom: 42/1574
  19676. }
  19677. },
  19678. side: {
  19679. height: math.unit(6 + 1 / 12, "feet"),
  19680. weight: math.unit(75, "lb"),
  19681. name: "Side",
  19682. image: {
  19683. source: "./media/characters/aronai-sieyes/side.svg",
  19684. extra: 1422/1365,
  19685. bottom: 148/1570
  19686. }
  19687. },
  19688. back: {
  19689. height: math.unit(6 + 1 / 12, "feet"),
  19690. weight: math.unit(75, "lb"),
  19691. name: "Back",
  19692. image: {
  19693. source: "./media/characters/aronai-sieyes/back.svg",
  19694. extra: 1526/1464,
  19695. bottom: 51/1577
  19696. }
  19697. },
  19698. dressed: {
  19699. height: math.unit(6 + 1 / 12, "feet"),
  19700. weight: math.unit(75, "lb"),
  19701. name: "Dressed",
  19702. image: {
  19703. source: "./media/characters/aronai-sieyes/dressed.svg",
  19704. extra: 1559/1483,
  19705. bottom: 39/1598
  19706. }
  19707. },
  19708. slit: {
  19709. height: math.unit(1.3, "feet"),
  19710. name: "Slit",
  19711. image: {
  19712. source: "./media/characters/aronai-sieyes/slit.svg"
  19713. }
  19714. },
  19715. slitSpread: {
  19716. height: math.unit(0.9, "feet"),
  19717. name: "Slit (Spread)",
  19718. image: {
  19719. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  19720. }
  19721. },
  19722. rump: {
  19723. height: math.unit(1.3, "feet"),
  19724. name: "Rump",
  19725. image: {
  19726. source: "./media/characters/aronai-sieyes/rump.svg"
  19727. }
  19728. },
  19729. maw: {
  19730. height: math.unit(1.25, "feet"),
  19731. name: "Maw",
  19732. image: {
  19733. source: "./media/characters/aronai-sieyes/maw.svg"
  19734. }
  19735. },
  19736. feral: {
  19737. height: math.unit(18, "feet"),
  19738. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  19739. name: "Feral",
  19740. image: {
  19741. source: "./media/characters/aronai-sieyes/feral.svg",
  19742. extra: 1530 / 1240,
  19743. bottom: 0.035
  19744. }
  19745. },
  19746. },
  19747. [
  19748. {
  19749. name: "Micro",
  19750. height: math.unit(2, "inches")
  19751. },
  19752. {
  19753. name: "Normal",
  19754. height: math.unit(6 + 1 / 12, "feet"),
  19755. default: true
  19756. }
  19757. ]
  19758. ))
  19759. characterMakers.push(() => makeCharacter(
  19760. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  19761. {
  19762. front: {
  19763. height: math.unit(12, "feet"),
  19764. weight: math.unit(410, "kg"),
  19765. name: "Front",
  19766. image: {
  19767. source: "./media/characters/xuna/front.svg",
  19768. extra: 2184 / 1980
  19769. }
  19770. },
  19771. side: {
  19772. height: math.unit(12, "feet"),
  19773. weight: math.unit(410, "kg"),
  19774. name: "Side",
  19775. image: {
  19776. source: "./media/characters/xuna/side.svg",
  19777. extra: 2184 / 1980
  19778. }
  19779. },
  19780. back: {
  19781. height: math.unit(12, "feet"),
  19782. weight: math.unit(410, "kg"),
  19783. name: "Back",
  19784. image: {
  19785. source: "./media/characters/xuna/back.svg",
  19786. extra: 2184 / 1980
  19787. }
  19788. },
  19789. },
  19790. [
  19791. {
  19792. name: "Nano glow",
  19793. height: math.unit(10, "nm")
  19794. },
  19795. {
  19796. name: "Micro floof",
  19797. height: math.unit(0.3, "m")
  19798. },
  19799. {
  19800. name: "Huggable softy boi",
  19801. height: math.unit(3.6576, "m"),
  19802. default: true
  19803. },
  19804. {
  19805. name: "Admirable floof",
  19806. height: math.unit(80, "meters")
  19807. },
  19808. {
  19809. name: "Gentle macro",
  19810. height: math.unit(300, "meters")
  19811. },
  19812. {
  19813. name: "Very careful floof",
  19814. height: math.unit(3200, "meters")
  19815. },
  19816. {
  19817. name: "The mega floof",
  19818. height: math.unit(36000, "meters")
  19819. },
  19820. {
  19821. name: "Giga-fur-Wicker",
  19822. height: math.unit(4800000, "meters")
  19823. },
  19824. {
  19825. name: "Licky world",
  19826. height: math.unit(20000000, "meters")
  19827. },
  19828. {
  19829. name: "Floofy cyan sun",
  19830. height: math.unit(1500000000, "meters")
  19831. },
  19832. {
  19833. name: "Milky Wicker",
  19834. height: math.unit(1000000000000000000000, "meters")
  19835. },
  19836. {
  19837. name: "The observing Wicker",
  19838. height: math.unit(999999999999999999999999999, "meters")
  19839. },
  19840. ]
  19841. ))
  19842. characterMakers.push(() => makeCharacter(
  19843. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19844. {
  19845. front: {
  19846. height: math.unit(5 + 9 / 12, "feet"),
  19847. weight: math.unit(150, "lb"),
  19848. name: "Front",
  19849. image: {
  19850. source: "./media/characters/arokha-sieyes/front.svg",
  19851. extra: 1425 / 1284,
  19852. bottom: 0.05
  19853. }
  19854. },
  19855. },
  19856. [
  19857. {
  19858. name: "Normal",
  19859. height: math.unit(5 + 9 / 12, "feet")
  19860. },
  19861. {
  19862. name: "Macro",
  19863. height: math.unit(30, "meters"),
  19864. default: true
  19865. },
  19866. ]
  19867. ))
  19868. characterMakers.push(() => makeCharacter(
  19869. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19870. {
  19871. front: {
  19872. height: math.unit(6, "feet"),
  19873. weight: math.unit(180, "lb"),
  19874. name: "Front",
  19875. image: {
  19876. source: "./media/characters/arokh-sieyes/front.svg",
  19877. extra: 1830 / 1769,
  19878. bottom: 0.01
  19879. }
  19880. },
  19881. },
  19882. [
  19883. {
  19884. name: "Normal",
  19885. height: math.unit(6, "feet")
  19886. },
  19887. {
  19888. name: "Macro",
  19889. height: math.unit(30, "meters"),
  19890. default: true
  19891. },
  19892. ]
  19893. ))
  19894. characterMakers.push(() => makeCharacter(
  19895. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  19896. {
  19897. side: {
  19898. height: math.unit(13 + 1 / 12, "feet"),
  19899. weight: math.unit(8.5, "tonnes"),
  19900. name: "Side",
  19901. image: {
  19902. source: "./media/characters/goldeneye/side.svg",
  19903. extra: 1182 / 778,
  19904. bottom: 0.067
  19905. }
  19906. },
  19907. paw: {
  19908. height: math.unit(3.4, "feet"),
  19909. name: "Paw",
  19910. image: {
  19911. source: "./media/characters/goldeneye/paw.svg"
  19912. }
  19913. },
  19914. },
  19915. [
  19916. {
  19917. name: "Normal",
  19918. height: math.unit(13 + 1 / 12, "feet"),
  19919. default: true
  19920. },
  19921. ]
  19922. ))
  19923. characterMakers.push(() => makeCharacter(
  19924. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  19925. {
  19926. front: {
  19927. height: math.unit(6 + 1 / 12, "feet"),
  19928. weight: math.unit(210, "lb"),
  19929. name: "Front",
  19930. image: {
  19931. source: "./media/characters/leonardo-lycheborne/front.svg",
  19932. extra: 776/723,
  19933. bottom: 34/810
  19934. }
  19935. },
  19936. side: {
  19937. height: math.unit(6 + 1 / 12, "feet"),
  19938. weight: math.unit(210, "lb"),
  19939. name: "Side",
  19940. image: {
  19941. source: "./media/characters/leonardo-lycheborne/side.svg",
  19942. extra: 780/728,
  19943. bottom: 12/792
  19944. }
  19945. },
  19946. back: {
  19947. height: math.unit(6 + 1 / 12, "feet"),
  19948. weight: math.unit(210, "lb"),
  19949. name: "Back",
  19950. image: {
  19951. source: "./media/characters/leonardo-lycheborne/back.svg",
  19952. extra: 775/721,
  19953. bottom: 17/792
  19954. }
  19955. },
  19956. hand: {
  19957. height: math.unit(1.08, "feet"),
  19958. name: "Hand",
  19959. image: {
  19960. source: "./media/characters/leonardo-lycheborne/hand.svg"
  19961. }
  19962. },
  19963. foot: {
  19964. height: math.unit(1.32, "feet"),
  19965. name: "Foot",
  19966. image: {
  19967. source: "./media/characters/leonardo-lycheborne/foot.svg"
  19968. }
  19969. },
  19970. maw: {
  19971. height: math.unit(1, "feet"),
  19972. name: "Maw",
  19973. image: {
  19974. source: "./media/characters/leonardo-lycheborne/maw.svg"
  19975. }
  19976. },
  19977. were: {
  19978. height: math.unit(20, "feet"),
  19979. weight: math.unit(7800, "lb"),
  19980. name: "Were",
  19981. image: {
  19982. source: "./media/characters/leonardo-lycheborne/were.svg",
  19983. extra: 1224/1165,
  19984. bottom: 72/1296
  19985. }
  19986. },
  19987. feral: {
  19988. height: math.unit(7.5, "feet"),
  19989. weight: math.unit(600, "lb"),
  19990. name: "Feral",
  19991. image: {
  19992. source: "./media/characters/leonardo-lycheborne/feral.svg",
  19993. extra: 797/702,
  19994. bottom: 139/936
  19995. }
  19996. },
  19997. taur: {
  19998. height: math.unit(11, "feet"),
  19999. weight: math.unit(3300, "lb"),
  20000. name: "Taur",
  20001. image: {
  20002. source: "./media/characters/leonardo-lycheborne/taur.svg",
  20003. extra: 1271/1197,
  20004. bottom: 47/1318
  20005. }
  20006. },
  20007. barghest: {
  20008. height: math.unit(11, "feet"),
  20009. weight: math.unit(1300, "lb"),
  20010. name: "Barghest",
  20011. image: {
  20012. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  20013. extra: 1291/1204,
  20014. bottom: 37/1328
  20015. }
  20016. },
  20017. dick: {
  20018. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  20019. name: "Dick",
  20020. image: {
  20021. source: "./media/characters/leonardo-lycheborne/dick.svg"
  20022. }
  20023. },
  20024. dickWere: {
  20025. height: math.unit((20) / 3.8, "feet"),
  20026. name: "Dick (Were)",
  20027. image: {
  20028. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  20029. }
  20030. },
  20031. },
  20032. [
  20033. {
  20034. name: "Normal",
  20035. height: math.unit(6 + 1 / 12, "feet"),
  20036. default: true
  20037. },
  20038. ]
  20039. ))
  20040. characterMakers.push(() => makeCharacter(
  20041. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  20042. {
  20043. front: {
  20044. height: math.unit(10, "feet"),
  20045. weight: math.unit(350, "lb"),
  20046. name: "Front",
  20047. image: {
  20048. source: "./media/characters/jet/front.svg",
  20049. extra: 2050 / 1980,
  20050. bottom: 0.013
  20051. }
  20052. },
  20053. back: {
  20054. height: math.unit(10, "feet"),
  20055. weight: math.unit(350, "lb"),
  20056. name: "Back",
  20057. image: {
  20058. source: "./media/characters/jet/back.svg",
  20059. extra: 2050 / 1980,
  20060. bottom: 0.013
  20061. }
  20062. },
  20063. },
  20064. [
  20065. {
  20066. name: "Micro",
  20067. height: math.unit(6, "inches")
  20068. },
  20069. {
  20070. name: "Normal",
  20071. height: math.unit(10, "feet"),
  20072. default: true
  20073. },
  20074. {
  20075. name: "Macro",
  20076. height: math.unit(100, "feet")
  20077. },
  20078. ]
  20079. ))
  20080. characterMakers.push(() => makeCharacter(
  20081. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  20082. {
  20083. front: {
  20084. height: math.unit(15, "feet"),
  20085. weight: math.unit(2800, "lb"),
  20086. name: "Front",
  20087. image: {
  20088. source: "./media/characters/tanarath/front.svg",
  20089. extra: 2392 / 2220,
  20090. bottom: 0.03
  20091. }
  20092. },
  20093. back: {
  20094. height: math.unit(15, "feet"),
  20095. weight: math.unit(2800, "lb"),
  20096. name: "Back",
  20097. image: {
  20098. source: "./media/characters/tanarath/back.svg",
  20099. extra: 2392 / 2220,
  20100. bottom: 0.03
  20101. }
  20102. },
  20103. },
  20104. [
  20105. {
  20106. name: "Normal",
  20107. height: math.unit(15, "feet"),
  20108. default: true
  20109. },
  20110. ]
  20111. ))
  20112. characterMakers.push(() => makeCharacter(
  20113. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  20114. {
  20115. front: {
  20116. height: math.unit(7 + 1 / 12, "feet"),
  20117. weight: math.unit(175, "lb"),
  20118. name: "Front",
  20119. image: {
  20120. source: "./media/characters/patty-cattybatty/front.svg",
  20121. extra: 908 / 874,
  20122. bottom: 0.025
  20123. }
  20124. },
  20125. },
  20126. [
  20127. {
  20128. name: "Micro",
  20129. height: math.unit(1, "inch")
  20130. },
  20131. {
  20132. name: "Normal",
  20133. height: math.unit(7 + 1 / 12, "feet")
  20134. },
  20135. {
  20136. name: "Mini Macro",
  20137. height: math.unit(155, "feet")
  20138. },
  20139. {
  20140. name: "Macro",
  20141. height: math.unit(1077, "feet")
  20142. },
  20143. {
  20144. name: "Mega Macro",
  20145. height: math.unit(47650, "feet"),
  20146. default: true
  20147. },
  20148. {
  20149. name: "Giga Macro",
  20150. height: math.unit(440, "miles")
  20151. },
  20152. {
  20153. name: "Tera Macro",
  20154. height: math.unit(8700, "miles")
  20155. },
  20156. {
  20157. name: "Planetary Macro",
  20158. height: math.unit(32700, "miles")
  20159. },
  20160. {
  20161. name: "Solar Macro",
  20162. height: math.unit(550000, "miles")
  20163. },
  20164. {
  20165. name: "Celestial Macro",
  20166. height: math.unit(2.5, "AU")
  20167. },
  20168. ]
  20169. ))
  20170. characterMakers.push(() => makeCharacter(
  20171. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  20172. {
  20173. front: {
  20174. height: math.unit(4 + 5 / 12, "feet"),
  20175. weight: math.unit(90, "lb"),
  20176. name: "Front",
  20177. image: {
  20178. source: "./media/characters/cappu/front.svg",
  20179. extra: 1247 / 1152,
  20180. bottom: 0.012
  20181. }
  20182. },
  20183. },
  20184. [
  20185. {
  20186. name: "Normal",
  20187. height: math.unit(4 + 5 / 12, "feet"),
  20188. default: true
  20189. },
  20190. ]
  20191. ))
  20192. characterMakers.push(() => makeCharacter(
  20193. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  20194. {
  20195. frontDressed: {
  20196. height: math.unit(70, "cm"),
  20197. weight: math.unit(6, "kg"),
  20198. name: "Front (Dressed)",
  20199. image: {
  20200. source: "./media/characters/sebi/front-dressed.svg",
  20201. extra: 713.5 / 686.5,
  20202. bottom: 0.003
  20203. }
  20204. },
  20205. front: {
  20206. height: math.unit(70, "cm"),
  20207. weight: math.unit(5, "kg"),
  20208. name: "Front",
  20209. image: {
  20210. source: "./media/characters/sebi/front.svg",
  20211. extra: 713.5 / 686.5,
  20212. bottom: 0.003
  20213. }
  20214. }
  20215. },
  20216. [
  20217. {
  20218. name: "Normal",
  20219. height: math.unit(70, "cm"),
  20220. default: true
  20221. },
  20222. {
  20223. name: "Macro",
  20224. height: math.unit(8, "meters")
  20225. },
  20226. ]
  20227. ))
  20228. characterMakers.push(() => makeCharacter(
  20229. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  20230. {
  20231. front: {
  20232. height: math.unit(6, "feet"),
  20233. weight: math.unit(150, "lb"),
  20234. name: "Front",
  20235. image: {
  20236. source: "./media/characters/typhek/front.svg",
  20237. extra: 1948 / 1929,
  20238. bottom: 0.025
  20239. }
  20240. },
  20241. side: {
  20242. height: math.unit(6, "feet"),
  20243. weight: math.unit(150, "lb"),
  20244. name: "Side",
  20245. image: {
  20246. source: "./media/characters/typhek/side.svg",
  20247. extra: 2034 / 2010,
  20248. bottom: 0.003
  20249. }
  20250. },
  20251. back: {
  20252. height: math.unit(6, "feet"),
  20253. weight: math.unit(150, "lb"),
  20254. name: "Back",
  20255. image: {
  20256. source: "./media/characters/typhek/back.svg",
  20257. extra: 2005 / 1978,
  20258. bottom: 0.004
  20259. }
  20260. },
  20261. palm: {
  20262. height: math.unit(1.2, "feet"),
  20263. name: "Palm",
  20264. image: {
  20265. source: "./media/characters/typhek/palm.svg"
  20266. }
  20267. },
  20268. fist: {
  20269. height: math.unit(1.1, "feet"),
  20270. name: "Fist",
  20271. image: {
  20272. source: "./media/characters/typhek/fist.svg"
  20273. }
  20274. },
  20275. foot: {
  20276. height: math.unit(1.57, "feet"),
  20277. name: "Foot",
  20278. image: {
  20279. source: "./media/characters/typhek/foot.svg"
  20280. }
  20281. },
  20282. sole: {
  20283. height: math.unit(2.05, "feet"),
  20284. name: "Sole",
  20285. image: {
  20286. source: "./media/characters/typhek/sole.svg"
  20287. }
  20288. },
  20289. },
  20290. [
  20291. {
  20292. name: "Macro",
  20293. height: math.unit(40, "stories"),
  20294. default: true
  20295. },
  20296. {
  20297. name: "Megamacro",
  20298. height: math.unit(1, "mile")
  20299. },
  20300. {
  20301. name: "Gigamacro",
  20302. height: math.unit(4000, "solarradii")
  20303. },
  20304. {
  20305. name: "Universal",
  20306. height: math.unit(1.1, "universes")
  20307. }
  20308. ]
  20309. ))
  20310. characterMakers.push(() => makeCharacter(
  20311. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  20312. {
  20313. side: {
  20314. height: math.unit(5 + 7 / 12, "feet"),
  20315. weight: math.unit(150, "lb"),
  20316. name: "Side",
  20317. image: {
  20318. source: "./media/characters/kassy/side.svg",
  20319. extra: 1280 / 1225,
  20320. bottom: 0.002
  20321. }
  20322. },
  20323. front: {
  20324. height: math.unit(5 + 7 / 12, "feet"),
  20325. weight: math.unit(150, "lb"),
  20326. name: "Front",
  20327. image: {
  20328. source: "./media/characters/kassy/front.svg",
  20329. extra: 1280 / 1225,
  20330. bottom: 0.025
  20331. }
  20332. },
  20333. back: {
  20334. height: math.unit(5 + 7 / 12, "feet"),
  20335. weight: math.unit(150, "lb"),
  20336. name: "Back",
  20337. image: {
  20338. source: "./media/characters/kassy/back.svg",
  20339. extra: 1280 / 1225,
  20340. bottom: 0.002
  20341. }
  20342. },
  20343. foot: {
  20344. height: math.unit(1.266, "feet"),
  20345. name: "Foot",
  20346. image: {
  20347. source: "./media/characters/kassy/foot.svg"
  20348. }
  20349. },
  20350. },
  20351. [
  20352. {
  20353. name: "Normal",
  20354. height: math.unit(5 + 7 / 12, "feet")
  20355. },
  20356. {
  20357. name: "Macro",
  20358. height: math.unit(137, "feet"),
  20359. default: true
  20360. },
  20361. {
  20362. name: "Megamacro",
  20363. height: math.unit(1, "mile")
  20364. },
  20365. ]
  20366. ))
  20367. characterMakers.push(() => makeCharacter(
  20368. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  20369. {
  20370. front: {
  20371. height: math.unit(6 + 1 / 12, "feet"),
  20372. weight: math.unit(200, "lb"),
  20373. name: "Front",
  20374. image: {
  20375. source: "./media/characters/neil/front.svg",
  20376. extra: 1326 / 1250,
  20377. bottom: 0.023
  20378. }
  20379. },
  20380. },
  20381. [
  20382. {
  20383. name: "Normal",
  20384. height: math.unit(6 + 1 / 12, "feet"),
  20385. default: true
  20386. },
  20387. {
  20388. name: "Macro",
  20389. height: math.unit(200, "feet")
  20390. },
  20391. ]
  20392. ))
  20393. characterMakers.push(() => makeCharacter(
  20394. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  20395. {
  20396. front: {
  20397. height: math.unit(5 + 9 / 12, "feet"),
  20398. weight: math.unit(190, "lb"),
  20399. name: "Front",
  20400. image: {
  20401. source: "./media/characters/atticus/front.svg",
  20402. extra: 2934 / 2785,
  20403. bottom: 0.025
  20404. }
  20405. },
  20406. },
  20407. [
  20408. {
  20409. name: "Normal",
  20410. height: math.unit(5 + 9 / 12, "feet"),
  20411. default: true
  20412. },
  20413. {
  20414. name: "Macro",
  20415. height: math.unit(180, "feet")
  20416. },
  20417. ]
  20418. ))
  20419. characterMakers.push(() => makeCharacter(
  20420. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  20421. {
  20422. side: {
  20423. height: math.unit(9, "feet"),
  20424. weight: math.unit(650, "lb"),
  20425. name: "Side",
  20426. image: {
  20427. source: "./media/characters/milo/side.svg",
  20428. extra: 2644 / 2310,
  20429. bottom: 0.032
  20430. }
  20431. },
  20432. },
  20433. [
  20434. {
  20435. name: "Normal",
  20436. height: math.unit(9, "feet"),
  20437. default: true
  20438. },
  20439. {
  20440. name: "Macro",
  20441. height: math.unit(300, "feet")
  20442. },
  20443. ]
  20444. ))
  20445. characterMakers.push(() => makeCharacter(
  20446. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  20447. {
  20448. side: {
  20449. height: math.unit(8, "meters"),
  20450. weight: math.unit(90000, "kg"),
  20451. name: "Side",
  20452. image: {
  20453. source: "./media/characters/ijzer/side.svg",
  20454. extra: 2756 / 1600,
  20455. bottom: 0.01
  20456. }
  20457. },
  20458. },
  20459. [
  20460. {
  20461. name: "Small",
  20462. height: math.unit(3, "meters")
  20463. },
  20464. {
  20465. name: "Normal",
  20466. height: math.unit(8, "meters"),
  20467. default: true
  20468. },
  20469. {
  20470. name: "Normal+",
  20471. height: math.unit(10, "meters")
  20472. },
  20473. {
  20474. name: "Bigger",
  20475. height: math.unit(24, "meters")
  20476. },
  20477. {
  20478. name: "Huge",
  20479. height: math.unit(80, "meters")
  20480. },
  20481. ]
  20482. ))
  20483. characterMakers.push(() => makeCharacter(
  20484. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  20485. {
  20486. front: {
  20487. height: math.unit(6 + 2 / 12, "feet"),
  20488. weight: math.unit(153, "lb"),
  20489. name: "Front",
  20490. image: {
  20491. source: "./media/characters/luca-cervicum/front.svg",
  20492. extra: 370 / 327,
  20493. bottom: 0.015
  20494. }
  20495. },
  20496. back: {
  20497. height: math.unit(6 + 2 / 12, "feet"),
  20498. weight: math.unit(153, "lb"),
  20499. name: "Back",
  20500. image: {
  20501. source: "./media/characters/luca-cervicum/back.svg",
  20502. extra: 367 / 333,
  20503. bottom: 0.005
  20504. }
  20505. },
  20506. frontGear: {
  20507. height: math.unit(6 + 2 / 12, "feet"),
  20508. weight: math.unit(173, "lb"),
  20509. name: "Front (Gear)",
  20510. image: {
  20511. source: "./media/characters/luca-cervicum/front-gear.svg",
  20512. extra: 377 / 333,
  20513. bottom: 0.006
  20514. }
  20515. },
  20516. },
  20517. [
  20518. {
  20519. name: "Normal",
  20520. height: math.unit(6 + 2 / 12, "feet"),
  20521. default: true
  20522. },
  20523. ]
  20524. ))
  20525. characterMakers.push(() => makeCharacter(
  20526. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  20527. {
  20528. front: {
  20529. height: math.unit(6 + 1 / 12, "feet"),
  20530. weight: math.unit(304, "lb"),
  20531. name: "Front",
  20532. image: {
  20533. source: "./media/characters/oliver/front.svg",
  20534. extra: 157 / 143,
  20535. bottom: 0.08
  20536. }
  20537. },
  20538. },
  20539. [
  20540. {
  20541. name: "Normal",
  20542. height: math.unit(6 + 1 / 12, "feet"),
  20543. default: true
  20544. },
  20545. ]
  20546. ))
  20547. characterMakers.push(() => makeCharacter(
  20548. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  20549. {
  20550. front: {
  20551. height: math.unit(5 + 7 / 12, "feet"),
  20552. weight: math.unit(140, "lb"),
  20553. name: "Front",
  20554. image: {
  20555. source: "./media/characters/shane/front.svg",
  20556. extra: 304 / 289,
  20557. bottom: 0.005
  20558. }
  20559. },
  20560. },
  20561. [
  20562. {
  20563. name: "Normal",
  20564. height: math.unit(5 + 7 / 12, "feet"),
  20565. default: true
  20566. },
  20567. ]
  20568. ))
  20569. characterMakers.push(() => makeCharacter(
  20570. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  20571. {
  20572. front: {
  20573. height: math.unit(5 + 9 / 12, "feet"),
  20574. weight: math.unit(178, "lb"),
  20575. name: "Front",
  20576. image: {
  20577. source: "./media/characters/shin/front.svg",
  20578. extra: 159 / 151,
  20579. bottom: 0.015
  20580. }
  20581. },
  20582. },
  20583. [
  20584. {
  20585. name: "Normal",
  20586. height: math.unit(5 + 9 / 12, "feet"),
  20587. default: true
  20588. },
  20589. ]
  20590. ))
  20591. characterMakers.push(() => makeCharacter(
  20592. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  20593. {
  20594. front: {
  20595. height: math.unit(5 + 10 / 12, "feet"),
  20596. weight: math.unit(168, "lb"),
  20597. name: "Front",
  20598. image: {
  20599. source: "./media/characters/xerxes/front.svg",
  20600. extra: 282 / 260,
  20601. bottom: 0.045
  20602. }
  20603. },
  20604. },
  20605. [
  20606. {
  20607. name: "Normal",
  20608. height: math.unit(5 + 10 / 12, "feet"),
  20609. default: true
  20610. },
  20611. ]
  20612. ))
  20613. characterMakers.push(() => makeCharacter(
  20614. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  20615. {
  20616. front: {
  20617. height: math.unit(6 + 7 / 12, "feet"),
  20618. weight: math.unit(208, "lb"),
  20619. name: "Front",
  20620. image: {
  20621. source: "./media/characters/chaska/front.svg",
  20622. extra: 332 / 319,
  20623. bottom: 0.015
  20624. }
  20625. },
  20626. },
  20627. [
  20628. {
  20629. name: "Normal",
  20630. height: math.unit(6 + 7 / 12, "feet"),
  20631. default: true
  20632. },
  20633. ]
  20634. ))
  20635. characterMakers.push(() => makeCharacter(
  20636. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  20637. {
  20638. front: {
  20639. height: math.unit(5 + 8 / 12, "feet"),
  20640. weight: math.unit(208, "lb"),
  20641. name: "Front",
  20642. image: {
  20643. source: "./media/characters/enuk/front.svg",
  20644. extra: 437 / 406,
  20645. bottom: 0.02
  20646. }
  20647. },
  20648. },
  20649. [
  20650. {
  20651. name: "Normal",
  20652. height: math.unit(5 + 8 / 12, "feet"),
  20653. default: true
  20654. },
  20655. ]
  20656. ))
  20657. characterMakers.push(() => makeCharacter(
  20658. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  20659. {
  20660. front: {
  20661. height: math.unit(5 + 10 / 12, "feet"),
  20662. weight: math.unit(252, "lb"),
  20663. name: "Front",
  20664. image: {
  20665. source: "./media/characters/bruun/front.svg",
  20666. extra: 197 / 187,
  20667. bottom: 0.012
  20668. }
  20669. },
  20670. },
  20671. [
  20672. {
  20673. name: "Normal",
  20674. height: math.unit(5 + 10 / 12, "feet"),
  20675. default: true
  20676. },
  20677. ]
  20678. ))
  20679. characterMakers.push(() => makeCharacter(
  20680. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  20681. {
  20682. front: {
  20683. height: math.unit(6 + 10 / 12, "feet"),
  20684. weight: math.unit(255, "lb"),
  20685. name: "Front",
  20686. image: {
  20687. source: "./media/characters/alexeev/front.svg",
  20688. extra: 213 / 200,
  20689. bottom: 0.05
  20690. }
  20691. },
  20692. },
  20693. [
  20694. {
  20695. name: "Normal",
  20696. height: math.unit(6 + 10 / 12, "feet"),
  20697. default: true
  20698. },
  20699. ]
  20700. ))
  20701. characterMakers.push(() => makeCharacter(
  20702. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  20703. {
  20704. front: {
  20705. height: math.unit(2 + 8 / 12, "feet"),
  20706. weight: math.unit(22, "lb"),
  20707. name: "Front",
  20708. image: {
  20709. source: "./media/characters/evelyn/front.svg",
  20710. extra: 208 / 180
  20711. }
  20712. },
  20713. },
  20714. [
  20715. {
  20716. name: "Normal",
  20717. height: math.unit(2 + 8 / 12, "feet"),
  20718. default: true
  20719. },
  20720. ]
  20721. ))
  20722. characterMakers.push(() => makeCharacter(
  20723. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  20724. {
  20725. front: {
  20726. height: math.unit(5 + 9 / 12, "feet"),
  20727. weight: math.unit(139, "lb"),
  20728. name: "Front",
  20729. image: {
  20730. source: "./media/characters/inca/front.svg",
  20731. extra: 294 / 291,
  20732. bottom: 0.03
  20733. }
  20734. },
  20735. },
  20736. [
  20737. {
  20738. name: "Normal",
  20739. height: math.unit(5 + 9 / 12, "feet"),
  20740. default: true
  20741. },
  20742. ]
  20743. ))
  20744. characterMakers.push(() => makeCharacter(
  20745. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  20746. {
  20747. front: {
  20748. height: math.unit(6 + 3 / 12, "feet"),
  20749. weight: math.unit(185, "lb"),
  20750. name: "Front",
  20751. image: {
  20752. source: "./media/characters/mera/front.svg",
  20753. extra: 291 / 277,
  20754. bottom: 0.03
  20755. }
  20756. },
  20757. },
  20758. [
  20759. {
  20760. name: "Normal",
  20761. height: math.unit(6 + 3 / 12, "feet"),
  20762. default: true
  20763. },
  20764. ]
  20765. ))
  20766. characterMakers.push(() => makeCharacter(
  20767. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  20768. {
  20769. front: {
  20770. height: math.unit(6 + 7 / 12, "feet"),
  20771. weight: math.unit(160, "lb"),
  20772. name: "Front",
  20773. image: {
  20774. source: "./media/characters/ceres/front.svg",
  20775. extra: 1023 / 950,
  20776. bottom: 0.027
  20777. }
  20778. },
  20779. back: {
  20780. height: math.unit(6 + 7 / 12, "feet"),
  20781. weight: math.unit(160, "lb"),
  20782. name: "Back",
  20783. image: {
  20784. source: "./media/characters/ceres/back.svg",
  20785. extra: 1023 / 950
  20786. }
  20787. },
  20788. },
  20789. [
  20790. {
  20791. name: "Normal",
  20792. height: math.unit(6 + 7 / 12, "feet"),
  20793. default: true
  20794. },
  20795. ]
  20796. ))
  20797. characterMakers.push(() => makeCharacter(
  20798. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  20799. {
  20800. front: {
  20801. height: math.unit(5 + 10 / 12, "feet"),
  20802. weight: math.unit(150, "lb"),
  20803. name: "Front",
  20804. image: {
  20805. source: "./media/characters/kris/front.svg",
  20806. extra: 885 / 803,
  20807. bottom: 0.03
  20808. }
  20809. },
  20810. },
  20811. [
  20812. {
  20813. name: "Normal",
  20814. height: math.unit(5 + 10 / 12, "feet"),
  20815. default: true
  20816. },
  20817. ]
  20818. ))
  20819. characterMakers.push(() => makeCharacter(
  20820. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  20821. {
  20822. front: {
  20823. height: math.unit(7, "feet"),
  20824. weight: math.unit(120, "kg"),
  20825. name: "Front",
  20826. image: {
  20827. source: "./media/characters/taluthus/front.svg",
  20828. extra: 903 / 833,
  20829. bottom: 0.015
  20830. }
  20831. },
  20832. },
  20833. [
  20834. {
  20835. name: "Normal",
  20836. height: math.unit(7, "feet"),
  20837. default: true
  20838. },
  20839. {
  20840. name: "Macro",
  20841. height: math.unit(300, "feet")
  20842. },
  20843. ]
  20844. ))
  20845. characterMakers.push(() => makeCharacter(
  20846. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  20847. {
  20848. front: {
  20849. height: math.unit(5 + 9 / 12, "feet"),
  20850. weight: math.unit(145, "lb"),
  20851. name: "Front",
  20852. image: {
  20853. source: "./media/characters/dawn/front.svg",
  20854. extra: 2094 / 2016,
  20855. bottom: 0.025
  20856. }
  20857. },
  20858. back: {
  20859. height: math.unit(5 + 9 / 12, "feet"),
  20860. weight: math.unit(160, "lb"),
  20861. name: "Back",
  20862. image: {
  20863. source: "./media/characters/dawn/back.svg",
  20864. extra: 2112 / 2080,
  20865. bottom: 0.005
  20866. }
  20867. },
  20868. },
  20869. [
  20870. {
  20871. name: "Normal",
  20872. height: math.unit(6 + 7 / 12, "feet"),
  20873. default: true
  20874. },
  20875. ]
  20876. ))
  20877. characterMakers.push(() => makeCharacter(
  20878. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  20879. {
  20880. anthro: {
  20881. height: math.unit(8 + 3 / 12, "feet"),
  20882. weight: math.unit(450, "lb"),
  20883. name: "Anthro",
  20884. image: {
  20885. source: "./media/characters/arador/anthro.svg",
  20886. extra: 1835 / 1718,
  20887. bottom: 0.025
  20888. }
  20889. },
  20890. feral: {
  20891. height: math.unit(4, "feet"),
  20892. weight: math.unit(200, "lb"),
  20893. name: "Feral",
  20894. image: {
  20895. source: "./media/characters/arador/feral.svg",
  20896. extra: 1683 / 1514,
  20897. bottom: 0.07
  20898. }
  20899. },
  20900. },
  20901. [
  20902. {
  20903. name: "Normal",
  20904. height: math.unit(8 + 3 / 12, "feet")
  20905. },
  20906. {
  20907. name: "Macro",
  20908. height: math.unit(82.5, "feet"),
  20909. default: true
  20910. },
  20911. ]
  20912. ))
  20913. characterMakers.push(() => makeCharacter(
  20914. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  20915. {
  20916. front: {
  20917. height: math.unit(5 + 10 / 12, "feet"),
  20918. weight: math.unit(125, "lb"),
  20919. name: "Front",
  20920. image: {
  20921. source: "./media/characters/dharsi/front.svg",
  20922. extra: 716 / 630,
  20923. bottom: 0.035
  20924. }
  20925. },
  20926. },
  20927. [
  20928. {
  20929. name: "Nano",
  20930. height: math.unit(100, "nm")
  20931. },
  20932. {
  20933. name: "Micro",
  20934. height: math.unit(2, "inches")
  20935. },
  20936. {
  20937. name: "Normal",
  20938. height: math.unit(5 + 10 / 12, "feet"),
  20939. default: true
  20940. },
  20941. {
  20942. name: "Macro",
  20943. height: math.unit(1000, "feet")
  20944. },
  20945. {
  20946. name: "Megamacro",
  20947. height: math.unit(10, "miles")
  20948. },
  20949. {
  20950. name: "Gigamacro",
  20951. height: math.unit(3000, "miles")
  20952. },
  20953. {
  20954. name: "Teramacro",
  20955. height: math.unit(500000, "miles")
  20956. },
  20957. {
  20958. name: "Teramacro+",
  20959. height: math.unit(30, "galaxies")
  20960. },
  20961. ]
  20962. ))
  20963. characterMakers.push(() => makeCharacter(
  20964. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  20965. {
  20966. front: {
  20967. height: math.unit(6, "feet"),
  20968. weight: math.unit(150, "lb"),
  20969. name: "Front",
  20970. image: {
  20971. source: "./media/characters/deathy/front.svg",
  20972. extra: 1552 / 1463,
  20973. bottom: 0.025
  20974. }
  20975. },
  20976. side: {
  20977. height: math.unit(6, "feet"),
  20978. weight: math.unit(150, "lb"),
  20979. name: "Side",
  20980. image: {
  20981. source: "./media/characters/deathy/side.svg",
  20982. extra: 1604 / 1455,
  20983. bottom: 0.025
  20984. }
  20985. },
  20986. back: {
  20987. height: math.unit(6, "feet"),
  20988. weight: math.unit(150, "lb"),
  20989. name: "Back",
  20990. image: {
  20991. source: "./media/characters/deathy/back.svg",
  20992. extra: 1580 / 1463,
  20993. bottom: 0.005
  20994. }
  20995. },
  20996. },
  20997. [
  20998. {
  20999. name: "Micro",
  21000. height: math.unit(5, "millimeters")
  21001. },
  21002. {
  21003. name: "Normal",
  21004. height: math.unit(6 + 5 / 12, "feet"),
  21005. default: true
  21006. },
  21007. ]
  21008. ))
  21009. characterMakers.push(() => makeCharacter(
  21010. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  21011. {
  21012. front: {
  21013. height: math.unit(16, "feet"),
  21014. weight: math.unit(4000, "lb"),
  21015. name: "Front",
  21016. image: {
  21017. source: "./media/characters/juniper/front.svg",
  21018. bottom: 0.04
  21019. }
  21020. },
  21021. },
  21022. [
  21023. {
  21024. name: "Normal",
  21025. height: math.unit(16, "feet"),
  21026. default: true
  21027. },
  21028. ]
  21029. ))
  21030. characterMakers.push(() => makeCharacter(
  21031. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  21032. {
  21033. front: {
  21034. height: math.unit(6, "feet"),
  21035. weight: math.unit(150, "lb"),
  21036. name: "Front",
  21037. image: {
  21038. source: "./media/characters/hipster/front.svg",
  21039. extra: 1312 / 1209,
  21040. bottom: 0.025
  21041. }
  21042. },
  21043. back: {
  21044. height: math.unit(6, "feet"),
  21045. weight: math.unit(150, "lb"),
  21046. name: "Back",
  21047. image: {
  21048. source: "./media/characters/hipster/back.svg",
  21049. extra: 1281 / 1196,
  21050. bottom: 0.01
  21051. }
  21052. },
  21053. },
  21054. [
  21055. {
  21056. name: "Micro",
  21057. height: math.unit(1, "mm")
  21058. },
  21059. {
  21060. name: "Normal",
  21061. height: math.unit(4, "inches"),
  21062. default: true
  21063. },
  21064. {
  21065. name: "Macro",
  21066. height: math.unit(500, "feet")
  21067. },
  21068. {
  21069. name: "Megamacro",
  21070. height: math.unit(1000, "miles")
  21071. },
  21072. ]
  21073. ))
  21074. characterMakers.push(() => makeCharacter(
  21075. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  21076. {
  21077. front: {
  21078. height: math.unit(6, "feet"),
  21079. weight: math.unit(150, "lb"),
  21080. name: "Front",
  21081. image: {
  21082. source: "./media/characters/tendirmuldr/front.svg",
  21083. extra: 1878 / 1772,
  21084. bottom: 0.015
  21085. }
  21086. },
  21087. },
  21088. [
  21089. {
  21090. name: "Megamacro",
  21091. height: math.unit(1500, "miles"),
  21092. default: true
  21093. },
  21094. ]
  21095. ))
  21096. characterMakers.push(() => makeCharacter(
  21097. { name: "Mort", species: ["demon"], tags: ["feral"] },
  21098. {
  21099. front: {
  21100. height: math.unit(14, "feet"),
  21101. weight: math.unit(12000, "lb"),
  21102. name: "Front",
  21103. image: {
  21104. source: "./media/characters/mort/front.svg",
  21105. extra: 365 / 318,
  21106. bottom: 0.01
  21107. }
  21108. },
  21109. side: {
  21110. height: math.unit(14, "feet"),
  21111. weight: math.unit(12000, "lb"),
  21112. name: "Side",
  21113. image: {
  21114. source: "./media/characters/mort/side.svg",
  21115. extra: 365 / 318,
  21116. bottom: 0.052
  21117. },
  21118. default: true
  21119. },
  21120. back: {
  21121. height: math.unit(14, "feet"),
  21122. weight: math.unit(12000, "lb"),
  21123. name: "Back",
  21124. image: {
  21125. source: "./media/characters/mort/back.svg",
  21126. extra: 371 / 332,
  21127. bottom: 0.18
  21128. }
  21129. },
  21130. },
  21131. [
  21132. {
  21133. name: "Normal",
  21134. height: math.unit(14, "feet"),
  21135. default: true
  21136. },
  21137. ]
  21138. ))
  21139. characterMakers.push(() => makeCharacter(
  21140. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  21141. {
  21142. front: {
  21143. height: math.unit(8, "feet"),
  21144. weight: math.unit(1, "ton"),
  21145. name: "Front",
  21146. image: {
  21147. source: "./media/characters/lycoa/front.svg",
  21148. extra: 1836/1728,
  21149. bottom: 81/1917
  21150. }
  21151. },
  21152. back: {
  21153. height: math.unit(8, "feet"),
  21154. weight: math.unit(1, "ton"),
  21155. name: "Back",
  21156. image: {
  21157. source: "./media/characters/lycoa/back.svg",
  21158. extra: 1785/1720,
  21159. bottom: 91/1876
  21160. }
  21161. },
  21162. head: {
  21163. height: math.unit(1.6243, "feet"),
  21164. name: "Head",
  21165. image: {
  21166. source: "./media/characters/lycoa/head.svg",
  21167. extra: 1011/782,
  21168. bottom: 0/1011
  21169. }
  21170. },
  21171. tailmaw: {
  21172. height: math.unit(1.9, "feet"),
  21173. name: "Tailmaw",
  21174. image: {
  21175. source: "./media/characters/lycoa/tailmaw.svg"
  21176. }
  21177. },
  21178. tentacles: {
  21179. height: math.unit(2.1, "feet"),
  21180. name: "Tentacles",
  21181. image: {
  21182. source: "./media/characters/lycoa/tentacles.svg"
  21183. }
  21184. },
  21185. dick: {
  21186. height: math.unit(1.73, "feet"),
  21187. name: "Dick",
  21188. image: {
  21189. source: "./media/characters/lycoa/dick.svg"
  21190. }
  21191. },
  21192. },
  21193. [
  21194. {
  21195. name: "Normal",
  21196. height: math.unit(8, "feet"),
  21197. default: true
  21198. },
  21199. {
  21200. name: "Macro",
  21201. height: math.unit(30, "feet")
  21202. },
  21203. ]
  21204. ))
  21205. characterMakers.push(() => makeCharacter(
  21206. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  21207. {
  21208. front: {
  21209. height: math.unit(4 + 2 / 12, "feet"),
  21210. weight: math.unit(70, "lb"),
  21211. name: "Front",
  21212. image: {
  21213. source: "./media/characters/naldara/front.svg",
  21214. extra: 1664/1387,
  21215. bottom: 81/1745
  21216. },
  21217. form: "anthro",
  21218. default: true
  21219. },
  21220. naga: {
  21221. height: math.unit(20, "feet"),
  21222. weight: math.unit(15000, "kg"),
  21223. name: "Front",
  21224. image: {
  21225. source: "./media/characters/naldara/naga.svg",
  21226. extra: 1590/1396,
  21227. bottom: 285/1875
  21228. },
  21229. form: "naga",
  21230. default: true
  21231. },
  21232. },
  21233. [
  21234. {
  21235. name: "Normal",
  21236. height: math.unit(4 + 2 / 12, "feet"),
  21237. form: "anthro",
  21238. default: true
  21239. },
  21240. {
  21241. name: "Normal",
  21242. height: math.unit(20, "feet"),
  21243. form: "naga",
  21244. default: true
  21245. },
  21246. ],
  21247. {
  21248. "anthro": {
  21249. name: "Anthro",
  21250. default: true
  21251. },
  21252. "naga": {
  21253. name: "Naga"
  21254. }
  21255. }
  21256. ))
  21257. characterMakers.push(() => makeCharacter(
  21258. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  21259. {
  21260. front: {
  21261. height: math.unit(13 + 7 / 12, "feet"),
  21262. weight: math.unit(1500, "lb"),
  21263. name: "Front",
  21264. image: {
  21265. source: "./media/characters/briar/front.svg",
  21266. extra: 1223/1157,
  21267. bottom: 123/1346
  21268. }
  21269. },
  21270. },
  21271. [
  21272. {
  21273. name: "Normal",
  21274. height: math.unit(13 + 7 / 12, "feet"),
  21275. default: true
  21276. },
  21277. ]
  21278. ))
  21279. characterMakers.push(() => makeCharacter(
  21280. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  21281. {
  21282. side: {
  21283. height: math.unit(16, "feet"),
  21284. weight: math.unit(500, "lb"),
  21285. name: "Side",
  21286. image: {
  21287. source: "./media/characters/vanguard/side.svg",
  21288. extra: 1022/914,
  21289. bottom: 30/1052
  21290. }
  21291. },
  21292. sideAlt: {
  21293. height: math.unit(10, "feet"),
  21294. weight: math.unit(500, "lb"),
  21295. name: "Side (Alt)",
  21296. image: {
  21297. source: "./media/characters/vanguard/side-alt.svg",
  21298. extra: 502 / 425,
  21299. bottom: 0.087
  21300. }
  21301. },
  21302. },
  21303. [
  21304. {
  21305. name: "Normal",
  21306. height: math.unit(17.71, "feet"),
  21307. default: true
  21308. },
  21309. ]
  21310. ))
  21311. characterMakers.push(() => makeCharacter(
  21312. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  21313. {
  21314. front: {
  21315. height: math.unit(7.5, "feet"),
  21316. weight: math.unit(2, "lb"),
  21317. name: "Front",
  21318. image: {
  21319. source: "./media/characters/artemis/work-safe-front.svg",
  21320. extra: 1192 / 1075,
  21321. bottom: 0.07
  21322. },
  21323. form: "work-safe",
  21324. default: true
  21325. },
  21326. frontNsfw: {
  21327. height: math.unit(7.5, "feet"),
  21328. weight: math.unit(2, "lb"),
  21329. name: "Front",
  21330. image: {
  21331. source: "./media/characters/artemis/calibrating-front.svg",
  21332. extra: 1192 / 1075,
  21333. bottom: 0.07
  21334. },
  21335. form: "calibrating",
  21336. default: true
  21337. },
  21338. frontNsfwer: {
  21339. height: math.unit(7.5, "feet"),
  21340. weight: math.unit(2, "lb"),
  21341. name: "Front",
  21342. image: {
  21343. source: "./media/characters/artemis/oversize-load-front.svg",
  21344. extra: 1192 / 1075,
  21345. bottom: 0.07
  21346. },
  21347. form: "oversize-load",
  21348. default: true
  21349. },
  21350. side: {
  21351. height: math.unit(7.5, "feet"),
  21352. weight: math.unit(2, "lb"),
  21353. name: "Side",
  21354. image: {
  21355. source: "./media/characters/artemis/work-safe-side.svg",
  21356. extra: 1192 / 1075,
  21357. bottom: 0.07
  21358. },
  21359. form: "work-safe"
  21360. },
  21361. sideNsfw: {
  21362. height: math.unit(7.5, "feet"),
  21363. weight: math.unit(2, "lb"),
  21364. name: "Side",
  21365. image: {
  21366. source: "./media/characters/artemis/calibrating-side.svg",
  21367. extra: 1192 / 1075,
  21368. bottom: 0.07
  21369. },
  21370. form: "calibrating"
  21371. },
  21372. sideNsfwer: {
  21373. height: math.unit(7.5, "feet"),
  21374. weight: math.unit(2, "lb"),
  21375. name: "Side",
  21376. image: {
  21377. source: "./media/characters/artemis/oversize-load-side.svg",
  21378. extra: 1192 / 1075,
  21379. bottom: 0.07
  21380. },
  21381. form: "oversize-load"
  21382. },
  21383. maw: {
  21384. height: math.unit(1.1, "feet"),
  21385. name: "Maw",
  21386. image: {
  21387. source: "./media/characters/artemis/maw.svg"
  21388. },
  21389. form: "work-safe"
  21390. },
  21391. stomach: {
  21392. height: math.unit(0.95, "feet"),
  21393. name: "Stomach",
  21394. image: {
  21395. source: "./media/characters/artemis/stomach.svg"
  21396. },
  21397. form: "work-safe"
  21398. },
  21399. dickCanine: {
  21400. height: math.unit(1, "feet"),
  21401. name: "Dick (Canine)",
  21402. image: {
  21403. source: "./media/characters/artemis/dick-canine.svg"
  21404. },
  21405. form: "calibrating"
  21406. },
  21407. dickEquine: {
  21408. height: math.unit(0.85, "feet"),
  21409. name: "Dick (Equine)",
  21410. image: {
  21411. source: "./media/characters/artemis/dick-equine.svg"
  21412. },
  21413. form: "calibrating"
  21414. },
  21415. dickExotic: {
  21416. height: math.unit(0.85, "feet"),
  21417. name: "Dick (Exotic)",
  21418. image: {
  21419. source: "./media/characters/artemis/dick-exotic.svg"
  21420. },
  21421. form: "calibrating"
  21422. },
  21423. dickCanineBigger: {
  21424. height: math.unit(1 * 1.33, "feet"),
  21425. name: "Dick (Canine)",
  21426. image: {
  21427. source: "./media/characters/artemis/dick-canine.svg"
  21428. },
  21429. form: "oversize-load"
  21430. },
  21431. dickEquineBigger: {
  21432. height: math.unit(0.85 * 1.33, "feet"),
  21433. name: "Dick (Equine)",
  21434. image: {
  21435. source: "./media/characters/artemis/dick-equine.svg"
  21436. },
  21437. form: "oversize-load"
  21438. },
  21439. dickExoticBigger: {
  21440. height: math.unit(0.85 * 1.33, "feet"),
  21441. name: "Dick (Exotic)",
  21442. image: {
  21443. source: "./media/characters/artemis/dick-exotic.svg"
  21444. },
  21445. form: "oversize-load"
  21446. },
  21447. },
  21448. [
  21449. {
  21450. name: "Normal",
  21451. height: math.unit(7.5, "feet"),
  21452. form: "work-safe",
  21453. default: true
  21454. },
  21455. {
  21456. name: "Normal",
  21457. height: math.unit(7.5, "feet"),
  21458. form: "calibrating",
  21459. default: true
  21460. },
  21461. {
  21462. name: "Normal",
  21463. height: math.unit(7.5, "feet"),
  21464. form: "oversize-load",
  21465. default: true
  21466. },
  21467. {
  21468. name: "Enlarged",
  21469. height: math.unit(12, "feet"),
  21470. form: "work-safe",
  21471. },
  21472. {
  21473. name: "Enlarged",
  21474. height: math.unit(12, "feet"),
  21475. form: "calibrating",
  21476. },
  21477. {
  21478. name: "Enlarged",
  21479. height: math.unit(12, "feet"),
  21480. form: "oversize-load",
  21481. },
  21482. ],
  21483. {
  21484. "work-safe": {
  21485. name: "Work-Safe",
  21486. default: true
  21487. },
  21488. "calibrating": {
  21489. name: "Calibrating"
  21490. },
  21491. "oversize-load": {
  21492. name: "Oversize Load"
  21493. }
  21494. }
  21495. ))
  21496. characterMakers.push(() => makeCharacter(
  21497. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  21498. {
  21499. front: {
  21500. height: math.unit(5 + 3 / 12, "feet"),
  21501. weight: math.unit(160, "lb"),
  21502. name: "Front",
  21503. image: {
  21504. source: "./media/characters/kira/front.svg",
  21505. extra: 906 / 786,
  21506. bottom: 0.01
  21507. }
  21508. },
  21509. back: {
  21510. height: math.unit(5 + 3 / 12, "feet"),
  21511. weight: math.unit(160, "lb"),
  21512. name: "Back",
  21513. image: {
  21514. source: "./media/characters/kira/back.svg",
  21515. extra: 882 / 757,
  21516. bottom: 0.005
  21517. }
  21518. },
  21519. frontDressed: {
  21520. height: math.unit(5 + 3 / 12, "feet"),
  21521. weight: math.unit(160, "lb"),
  21522. name: "Front (Dressed)",
  21523. image: {
  21524. source: "./media/characters/kira/front-dressed.svg",
  21525. extra: 906 / 786,
  21526. bottom: 0.01
  21527. }
  21528. },
  21529. beans: {
  21530. height: math.unit(0.92, "feet"),
  21531. name: "Beans",
  21532. image: {
  21533. source: "./media/characters/kira/beans.svg"
  21534. }
  21535. },
  21536. },
  21537. [
  21538. {
  21539. name: "Normal",
  21540. height: math.unit(5 + 3 / 12, "feet"),
  21541. default: true
  21542. },
  21543. ]
  21544. ))
  21545. characterMakers.push(() => makeCharacter(
  21546. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  21547. {
  21548. front: {
  21549. height: math.unit(5 + 4 / 12, "feet"),
  21550. weight: math.unit(145, "lb"),
  21551. name: "Front",
  21552. image: {
  21553. source: "./media/characters/scramble/front.svg",
  21554. extra: 763 / 727,
  21555. bottom: 0.05
  21556. }
  21557. },
  21558. back: {
  21559. height: math.unit(5 + 4 / 12, "feet"),
  21560. weight: math.unit(145, "lb"),
  21561. name: "Back",
  21562. image: {
  21563. source: "./media/characters/scramble/back.svg",
  21564. extra: 826 / 737,
  21565. bottom: 0.002
  21566. }
  21567. },
  21568. },
  21569. [
  21570. {
  21571. name: "Normal",
  21572. height: math.unit(5 + 4 / 12, "feet"),
  21573. default: true
  21574. },
  21575. ]
  21576. ))
  21577. characterMakers.push(() => makeCharacter(
  21578. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  21579. {
  21580. side: {
  21581. height: math.unit(6 + 2 / 12, "feet"),
  21582. weight: math.unit(190, "lb"),
  21583. name: "Side",
  21584. image: {
  21585. source: "./media/characters/biscuit/side.svg",
  21586. extra: 858 / 791,
  21587. bottom: 0.044
  21588. }
  21589. },
  21590. },
  21591. [
  21592. {
  21593. name: "Normal",
  21594. height: math.unit(6 + 2 / 12, "feet"),
  21595. default: true
  21596. },
  21597. ]
  21598. ))
  21599. characterMakers.push(() => makeCharacter(
  21600. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  21601. {
  21602. front: {
  21603. height: math.unit(5 + 2 / 12, "feet"),
  21604. weight: math.unit(120, "lb"),
  21605. name: "Front",
  21606. image: {
  21607. source: "./media/characters/poffin/front.svg",
  21608. extra: 786 / 680,
  21609. bottom: 0.005
  21610. }
  21611. },
  21612. },
  21613. [
  21614. {
  21615. name: "Normal",
  21616. height: math.unit(5 + 2 / 12, "feet"),
  21617. default: true
  21618. },
  21619. ]
  21620. ))
  21621. characterMakers.push(() => makeCharacter(
  21622. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  21623. {
  21624. front: {
  21625. height: math.unit(6 + 3 / 12, "feet"),
  21626. weight: math.unit(519, "lb"),
  21627. name: "Front",
  21628. image: {
  21629. source: "./media/characters/dhari/front.svg",
  21630. extra: 1048 / 946,
  21631. bottom: 0.015
  21632. }
  21633. },
  21634. back: {
  21635. height: math.unit(6 + 3 / 12, "feet"),
  21636. weight: math.unit(519, "lb"),
  21637. name: "Back",
  21638. image: {
  21639. source: "./media/characters/dhari/back.svg",
  21640. extra: 1048 / 931,
  21641. bottom: 0.005
  21642. }
  21643. },
  21644. frontDressed: {
  21645. height: math.unit(6 + 3 / 12, "feet"),
  21646. weight: math.unit(519, "lb"),
  21647. name: "Front (Dressed)",
  21648. image: {
  21649. source: "./media/characters/dhari/front-dressed.svg",
  21650. extra: 1713 / 1546,
  21651. bottom: 0.02
  21652. }
  21653. },
  21654. backDressed: {
  21655. height: math.unit(6 + 3 / 12, "feet"),
  21656. weight: math.unit(519, "lb"),
  21657. name: "Back (Dressed)",
  21658. image: {
  21659. source: "./media/characters/dhari/back-dressed.svg",
  21660. extra: 1699 / 1537,
  21661. bottom: 0.01
  21662. }
  21663. },
  21664. maw: {
  21665. height: math.unit(0.95, "feet"),
  21666. name: "Maw",
  21667. image: {
  21668. source: "./media/characters/dhari/maw.svg"
  21669. }
  21670. },
  21671. wereFront: {
  21672. height: math.unit(12 + 8 / 12, "feet"),
  21673. weight: math.unit(4000, "lb"),
  21674. name: "Front (Were)",
  21675. image: {
  21676. source: "./media/characters/dhari/were-front.svg",
  21677. extra: 1065 / 969,
  21678. bottom: 0.015
  21679. }
  21680. },
  21681. wereBack: {
  21682. height: math.unit(12 + 8 / 12, "feet"),
  21683. weight: math.unit(4000, "lb"),
  21684. name: "Back (Were)",
  21685. image: {
  21686. source: "./media/characters/dhari/were-back.svg",
  21687. extra: 1065 / 969,
  21688. bottom: 0.012
  21689. }
  21690. },
  21691. wereMaw: {
  21692. height: math.unit(0.625, "meters"),
  21693. name: "Maw (Were)",
  21694. image: {
  21695. source: "./media/characters/dhari/were-maw.svg"
  21696. }
  21697. },
  21698. },
  21699. [
  21700. {
  21701. name: "Normal",
  21702. height: math.unit(6 + 3 / 12, "feet"),
  21703. default: true
  21704. },
  21705. ]
  21706. ))
  21707. characterMakers.push(() => makeCharacter(
  21708. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  21709. {
  21710. anthro: {
  21711. height: math.unit(5 + 7 / 12, "feet"),
  21712. weight: math.unit(175, "lb"),
  21713. name: "Anthro",
  21714. image: {
  21715. source: "./media/characters/rena-dyne/anthro.svg",
  21716. extra: 1849 / 1785,
  21717. bottom: 0.005
  21718. }
  21719. },
  21720. taur: {
  21721. height: math.unit(15 + 6 / 12, "feet"),
  21722. weight: math.unit(8000, "lb"),
  21723. name: "Taur",
  21724. image: {
  21725. source: "./media/characters/rena-dyne/taur.svg",
  21726. extra: 2315 / 2234,
  21727. bottom: 0.033
  21728. }
  21729. },
  21730. },
  21731. [
  21732. {
  21733. name: "Normal",
  21734. height: math.unit(5 + 7 / 12, "feet"),
  21735. default: true
  21736. },
  21737. ]
  21738. ))
  21739. characterMakers.push(() => makeCharacter(
  21740. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  21741. {
  21742. front: {
  21743. height: math.unit(8, "feet"),
  21744. weight: math.unit(600, "lb"),
  21745. name: "Front",
  21746. image: {
  21747. source: "./media/characters/weremeep/front.svg",
  21748. extra: 967 / 862,
  21749. bottom: 0.01
  21750. }
  21751. },
  21752. },
  21753. [
  21754. {
  21755. name: "Normal",
  21756. height: math.unit(8, "feet"),
  21757. default: true
  21758. },
  21759. {
  21760. name: "Lorg",
  21761. height: math.unit(12, "feet")
  21762. },
  21763. {
  21764. name: "Oh Lawd She Comin'",
  21765. height: math.unit(20, "feet")
  21766. },
  21767. ]
  21768. ))
  21769. characterMakers.push(() => makeCharacter(
  21770. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  21771. {
  21772. front: {
  21773. height: math.unit(4, "feet"),
  21774. weight: math.unit(90, "lb"),
  21775. name: "Front",
  21776. image: {
  21777. source: "./media/characters/reza/front.svg",
  21778. extra: 1183 / 1111,
  21779. bottom: 0.017
  21780. }
  21781. },
  21782. back: {
  21783. height: math.unit(4, "feet"),
  21784. weight: math.unit(90, "lb"),
  21785. name: "Back",
  21786. image: {
  21787. source: "./media/characters/reza/back.svg",
  21788. extra: 1183 / 1111,
  21789. bottom: 0.01
  21790. }
  21791. },
  21792. drake: {
  21793. height: math.unit(30, "feet"),
  21794. weight: math.unit(246960, "lb"),
  21795. name: "Drake",
  21796. image: {
  21797. source: "./media/characters/reza/drake.svg",
  21798. extra: 2350 / 2024,
  21799. bottom: 60.7 / 2403
  21800. }
  21801. },
  21802. },
  21803. [
  21804. {
  21805. name: "Normal",
  21806. height: math.unit(4, "feet"),
  21807. default: true
  21808. },
  21809. ]
  21810. ))
  21811. characterMakers.push(() => makeCharacter(
  21812. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  21813. {
  21814. side: {
  21815. height: math.unit(15, "feet"),
  21816. weight: math.unit(14, "tons"),
  21817. name: "Side",
  21818. image: {
  21819. source: "./media/characters/athea/side.svg",
  21820. extra: 960 / 540,
  21821. bottom: 0.003
  21822. }
  21823. },
  21824. sitting: {
  21825. height: math.unit(6 * 2.85, "feet"),
  21826. weight: math.unit(14, "tons"),
  21827. name: "Sitting",
  21828. image: {
  21829. source: "./media/characters/athea/sitting.svg",
  21830. extra: 621 / 581,
  21831. bottom: 0.075
  21832. }
  21833. },
  21834. maw: {
  21835. height: math.unit(7.59498031496063, "feet"),
  21836. name: "Maw",
  21837. image: {
  21838. source: "./media/characters/athea/maw.svg"
  21839. }
  21840. },
  21841. },
  21842. [
  21843. {
  21844. name: "Lap Cat",
  21845. height: math.unit(2.5, "feet")
  21846. },
  21847. {
  21848. name: "Minimacro",
  21849. height: math.unit(15, "feet"),
  21850. default: true
  21851. },
  21852. {
  21853. name: "Macro",
  21854. height: math.unit(120, "feet")
  21855. },
  21856. {
  21857. name: "Macro+",
  21858. height: math.unit(640, "feet")
  21859. },
  21860. {
  21861. name: "Colossus",
  21862. height: math.unit(2.2, "miles")
  21863. },
  21864. ]
  21865. ))
  21866. characterMakers.push(() => makeCharacter(
  21867. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  21868. {
  21869. front: {
  21870. height: math.unit(8 + 8 / 12, "feet"),
  21871. weight: math.unit(130, "kg"),
  21872. name: "Front",
  21873. image: {
  21874. source: "./media/characters/seroko/front.svg",
  21875. extra: 1385 / 1280,
  21876. bottom: 0.025
  21877. }
  21878. },
  21879. back: {
  21880. height: math.unit(8 + 8 / 12, "feet"),
  21881. weight: math.unit(130, "kg"),
  21882. name: "Back",
  21883. image: {
  21884. source: "./media/characters/seroko/back.svg",
  21885. extra: 1369 / 1238,
  21886. bottom: 0.018
  21887. }
  21888. },
  21889. frontDressed: {
  21890. height: math.unit(8 + 8 / 12, "feet"),
  21891. weight: math.unit(130, "kg"),
  21892. name: "Front (Dressed)",
  21893. image: {
  21894. source: "./media/characters/seroko/front-dressed.svg",
  21895. extra: 1366 / 1275,
  21896. bottom: 0.03
  21897. }
  21898. },
  21899. },
  21900. [
  21901. {
  21902. name: "Normal",
  21903. height: math.unit(8 + 8 / 12, "feet"),
  21904. default: true
  21905. },
  21906. ]
  21907. ))
  21908. characterMakers.push(() => makeCharacter(
  21909. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  21910. {
  21911. front: {
  21912. height: math.unit(5.5, "feet"),
  21913. weight: math.unit(160, "lb"),
  21914. name: "Front",
  21915. image: {
  21916. source: "./media/characters/quatzi/front.svg",
  21917. extra: 2346 / 2242,
  21918. bottom: 0.015
  21919. }
  21920. },
  21921. },
  21922. [
  21923. {
  21924. name: "Normal",
  21925. height: math.unit(5.5, "feet"),
  21926. default: true
  21927. },
  21928. {
  21929. name: "Big",
  21930. height: math.unit(7.7, "feet")
  21931. },
  21932. ]
  21933. ))
  21934. characterMakers.push(() => makeCharacter(
  21935. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  21936. {
  21937. front: {
  21938. height: math.unit(5 + 11 / 12, "feet"),
  21939. weight: math.unit(180, "lb"),
  21940. name: "Front",
  21941. image: {
  21942. source: "./media/characters/sen/front.svg",
  21943. extra: 1321 / 1254,
  21944. bottom: 0.015
  21945. }
  21946. },
  21947. side: {
  21948. height: math.unit(5 + 11 / 12, "feet"),
  21949. weight: math.unit(180, "lb"),
  21950. name: "Side",
  21951. image: {
  21952. source: "./media/characters/sen/side.svg",
  21953. extra: 1321 / 1254,
  21954. bottom: 0.007
  21955. }
  21956. },
  21957. back: {
  21958. height: math.unit(5 + 11 / 12, "feet"),
  21959. weight: math.unit(180, "lb"),
  21960. name: "Back",
  21961. image: {
  21962. source: "./media/characters/sen/back.svg",
  21963. extra: 1321 / 1254
  21964. }
  21965. },
  21966. },
  21967. [
  21968. {
  21969. name: "Normal",
  21970. height: math.unit(5 + 11 / 12, "feet"),
  21971. default: true
  21972. },
  21973. ]
  21974. ))
  21975. characterMakers.push(() => makeCharacter(
  21976. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  21977. {
  21978. front: {
  21979. height: math.unit(166.6, "cm"),
  21980. weight: math.unit(66.6, "kg"),
  21981. name: "Front",
  21982. image: {
  21983. source: "./media/characters/fruity/front.svg",
  21984. extra: 1510 / 1386,
  21985. bottom: 0.04
  21986. }
  21987. },
  21988. back: {
  21989. height: math.unit(166.6, "cm"),
  21990. weight: math.unit(66.6, "lb"),
  21991. name: "Back",
  21992. image: {
  21993. source: "./media/characters/fruity/back.svg",
  21994. extra: 1563 / 1435,
  21995. bottom: 0.005
  21996. }
  21997. },
  21998. },
  21999. [
  22000. {
  22001. name: "Normal",
  22002. height: math.unit(166.6, "cm"),
  22003. default: true
  22004. },
  22005. {
  22006. name: "Demonic",
  22007. height: math.unit(166.6, "feet")
  22008. },
  22009. ]
  22010. ))
  22011. characterMakers.push(() => makeCharacter(
  22012. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  22013. {
  22014. side: {
  22015. height: math.unit(10, "feet"),
  22016. weight: math.unit(500, "lb"),
  22017. name: "Side",
  22018. image: {
  22019. source: "./media/characters/zost/side.svg",
  22020. extra: 2870/2533,
  22021. bottom: 252/3122
  22022. }
  22023. },
  22024. mawFront: {
  22025. height: math.unit(1.08, "meters"),
  22026. name: "Maw (Front)",
  22027. image: {
  22028. source: "./media/characters/zost/maw-front.svg"
  22029. }
  22030. },
  22031. mawSide: {
  22032. height: math.unit(2.66, "feet"),
  22033. name: "Maw (Side)",
  22034. image: {
  22035. source: "./media/characters/zost/maw-side.svg"
  22036. }
  22037. },
  22038. wingspan: {
  22039. height: math.unit(7.4, "feet"),
  22040. name: "Wingspan",
  22041. image: {
  22042. source: "./media/characters/zost/wingspan.svg"
  22043. }
  22044. },
  22045. },
  22046. [
  22047. {
  22048. name: "Normal",
  22049. height: math.unit(10, "feet"),
  22050. default: true
  22051. },
  22052. ]
  22053. ))
  22054. characterMakers.push(() => makeCharacter(
  22055. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  22056. {
  22057. front: {
  22058. height: math.unit(5 + 4 / 12, "feet"),
  22059. weight: math.unit(120, "lb"),
  22060. name: "Front",
  22061. image: {
  22062. source: "./media/characters/luci/front.svg",
  22063. extra: 1985 / 1884,
  22064. bottom: 0.04
  22065. }
  22066. },
  22067. back: {
  22068. height: math.unit(5 + 4 / 12, "feet"),
  22069. weight: math.unit(120, "lb"),
  22070. name: "Back",
  22071. image: {
  22072. source: "./media/characters/luci/back.svg",
  22073. extra: 1892 / 1791,
  22074. bottom: 0.002
  22075. }
  22076. },
  22077. },
  22078. [
  22079. {
  22080. name: "Normal",
  22081. height: math.unit(5 + 4 / 12, "feet"),
  22082. default: true
  22083. },
  22084. ]
  22085. ))
  22086. characterMakers.push(() => makeCharacter(
  22087. { name: "2th", species: ["monster"], tags: ["anthro"] },
  22088. {
  22089. front: {
  22090. height: math.unit(1500, "feet"),
  22091. weight: math.unit(3.8e6, "tons"),
  22092. name: "Front",
  22093. image: {
  22094. source: "./media/characters/2th/front.svg",
  22095. extra: 3489 / 3350,
  22096. bottom: 0.1
  22097. }
  22098. },
  22099. foot: {
  22100. height: math.unit(461, "feet"),
  22101. name: "Foot",
  22102. image: {
  22103. source: "./media/characters/2th/foot.svg"
  22104. }
  22105. },
  22106. },
  22107. [
  22108. {
  22109. name: "\"Micro\"",
  22110. height: math.unit(15 + 7 / 12, "feet")
  22111. },
  22112. {
  22113. name: "Normal",
  22114. height: math.unit(1500, "feet"),
  22115. default: true
  22116. },
  22117. {
  22118. name: "Macro",
  22119. height: math.unit(5000, "feet")
  22120. },
  22121. {
  22122. name: "Megamacro",
  22123. height: math.unit(15, "miles")
  22124. },
  22125. {
  22126. name: "Gigamacro",
  22127. height: math.unit(4000, "miles")
  22128. },
  22129. {
  22130. name: "Galactic",
  22131. height: math.unit(50, "AU")
  22132. },
  22133. ]
  22134. ))
  22135. characterMakers.push(() => makeCharacter(
  22136. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  22137. {
  22138. front: {
  22139. height: math.unit(5 + 6 / 12, "feet"),
  22140. weight: math.unit(220, "lb"),
  22141. name: "Front",
  22142. image: {
  22143. source: "./media/characters/amethyst/front.svg",
  22144. extra: 2078 / 2040,
  22145. bottom: 0.045
  22146. }
  22147. },
  22148. back: {
  22149. height: math.unit(5 + 6 / 12, "feet"),
  22150. weight: math.unit(220, "lb"),
  22151. name: "Back",
  22152. image: {
  22153. source: "./media/characters/amethyst/back.svg",
  22154. extra: 2021 / 1989,
  22155. bottom: 0.02
  22156. }
  22157. },
  22158. },
  22159. [
  22160. {
  22161. name: "Normal",
  22162. height: math.unit(5 + 6 / 12, "feet"),
  22163. default: true
  22164. },
  22165. ]
  22166. ))
  22167. characterMakers.push(() => makeCharacter(
  22168. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  22169. {
  22170. front: {
  22171. height: math.unit(4 + 11 / 12, "feet"),
  22172. weight: math.unit(120, "lb"),
  22173. name: "Front",
  22174. image: {
  22175. source: "./media/characters/yumi-akiyama/front.svg",
  22176. extra: 1327 / 1235,
  22177. bottom: 0.02
  22178. }
  22179. },
  22180. back: {
  22181. height: math.unit(4 + 11 / 12, "feet"),
  22182. weight: math.unit(120, "lb"),
  22183. name: "Back",
  22184. image: {
  22185. source: "./media/characters/yumi-akiyama/back.svg",
  22186. extra: 1287 / 1245,
  22187. bottom: 0.002
  22188. }
  22189. },
  22190. },
  22191. [
  22192. {
  22193. name: "Galactic",
  22194. height: math.unit(50, "galaxies"),
  22195. default: true
  22196. },
  22197. {
  22198. name: "Universal",
  22199. height: math.unit(100, "universes")
  22200. },
  22201. ]
  22202. ))
  22203. characterMakers.push(() => makeCharacter(
  22204. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  22205. {
  22206. front: {
  22207. height: math.unit(8, "feet"),
  22208. weight: math.unit(500, "lb"),
  22209. name: "Front",
  22210. image: {
  22211. source: "./media/characters/rifter-yrmori/front.svg",
  22212. extra: 1180 / 1125,
  22213. bottom: 0.02
  22214. }
  22215. },
  22216. back: {
  22217. height: math.unit(8, "feet"),
  22218. weight: math.unit(500, "lb"),
  22219. name: "Back",
  22220. image: {
  22221. source: "./media/characters/rifter-yrmori/back.svg",
  22222. extra: 1190 / 1145,
  22223. bottom: 0.001
  22224. }
  22225. },
  22226. wings: {
  22227. height: math.unit(7.75, "feet"),
  22228. weight: math.unit(500, "lb"),
  22229. name: "Wings",
  22230. image: {
  22231. source: "./media/characters/rifter-yrmori/wings.svg",
  22232. extra: 1357 / 1285
  22233. }
  22234. },
  22235. maw: {
  22236. height: math.unit(0.8, "feet"),
  22237. name: "Maw",
  22238. image: {
  22239. source: "./media/characters/rifter-yrmori/maw.svg"
  22240. }
  22241. },
  22242. mawfront: {
  22243. height: math.unit(1.45, "feet"),
  22244. name: "Maw (Front)",
  22245. image: {
  22246. source: "./media/characters/rifter-yrmori/maw-front.svg"
  22247. }
  22248. },
  22249. },
  22250. [
  22251. {
  22252. name: "Normal",
  22253. height: math.unit(8, "feet"),
  22254. default: true
  22255. },
  22256. {
  22257. name: "Macro",
  22258. height: math.unit(42, "meters")
  22259. },
  22260. ]
  22261. ))
  22262. characterMakers.push(() => makeCharacter(
  22263. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  22264. {
  22265. were: {
  22266. height: math.unit(25 + 6 / 12, "feet"),
  22267. weight: math.unit(10000, "lb"),
  22268. name: "Were",
  22269. image: {
  22270. source: "./media/characters/tahajin/were.svg",
  22271. extra: 801 / 770,
  22272. bottom: 0.042
  22273. }
  22274. },
  22275. aquatic: {
  22276. height: math.unit(6 + 4 / 12, "feet"),
  22277. weight: math.unit(160, "lb"),
  22278. name: "Aquatic",
  22279. image: {
  22280. source: "./media/characters/tahajin/aquatic.svg",
  22281. extra: 572 / 542,
  22282. bottom: 0.04
  22283. }
  22284. },
  22285. chow: {
  22286. height: math.unit(8 + 11 / 12, "feet"),
  22287. weight: math.unit(450, "lb"),
  22288. name: "Chow",
  22289. image: {
  22290. source: "./media/characters/tahajin/chow.svg",
  22291. extra: 660 / 640,
  22292. bottom: 0.015
  22293. }
  22294. },
  22295. demiNaga: {
  22296. height: math.unit(6 + 8 / 12, "feet"),
  22297. weight: math.unit(300, "lb"),
  22298. name: "Demi Naga",
  22299. image: {
  22300. source: "./media/characters/tahajin/demi-naga.svg",
  22301. extra: 643 / 615,
  22302. bottom: 0.1
  22303. }
  22304. },
  22305. data: {
  22306. height: math.unit(5, "inches"),
  22307. weight: math.unit(0.1, "lb"),
  22308. name: "Data",
  22309. image: {
  22310. source: "./media/characters/tahajin/data.svg"
  22311. }
  22312. },
  22313. fluu: {
  22314. height: math.unit(5 + 7 / 12, "feet"),
  22315. weight: math.unit(140, "lb"),
  22316. name: "Fluu",
  22317. image: {
  22318. source: "./media/characters/tahajin/fluu.svg",
  22319. extra: 628 / 592,
  22320. bottom: 0.02
  22321. }
  22322. },
  22323. starWarrior: {
  22324. height: math.unit(4 + 5 / 12, "feet"),
  22325. weight: math.unit(50, "lb"),
  22326. name: "Star Warrior",
  22327. image: {
  22328. source: "./media/characters/tahajin/star-warrior.svg"
  22329. }
  22330. },
  22331. },
  22332. [
  22333. {
  22334. name: "Normal",
  22335. height: math.unit(25 + 6 / 12, "feet"),
  22336. default: true
  22337. },
  22338. ]
  22339. ))
  22340. characterMakers.push(() => makeCharacter(
  22341. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  22342. {
  22343. front: {
  22344. height: math.unit(8, "feet"),
  22345. weight: math.unit(350, "lb"),
  22346. name: "Front",
  22347. image: {
  22348. source: "./media/characters/gabira/front.svg",
  22349. extra: 608 / 580,
  22350. bottom: 0.03
  22351. }
  22352. },
  22353. back: {
  22354. height: math.unit(8, "feet"),
  22355. weight: math.unit(350, "lb"),
  22356. name: "Back",
  22357. image: {
  22358. source: "./media/characters/gabira/back.svg",
  22359. extra: 608 / 580,
  22360. bottom: 0.03
  22361. }
  22362. },
  22363. },
  22364. [
  22365. {
  22366. name: "Normal",
  22367. height: math.unit(8, "feet"),
  22368. default: true
  22369. },
  22370. ]
  22371. ))
  22372. characterMakers.push(() => makeCharacter(
  22373. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  22374. {
  22375. front: {
  22376. height: math.unit(5 + 3 / 12, "feet"),
  22377. weight: math.unit(137, "lb"),
  22378. name: "Front",
  22379. image: {
  22380. source: "./media/characters/sasha-katraine/front.svg",
  22381. extra: 1745/1694,
  22382. bottom: 37/1782
  22383. }
  22384. },
  22385. back: {
  22386. height: math.unit(5 + 3 / 12, "feet"),
  22387. weight: math.unit(137, "lb"),
  22388. name: "Back",
  22389. image: {
  22390. source: "./media/characters/sasha-katraine/back.svg",
  22391. extra: 1776/1699,
  22392. bottom: 26/1802
  22393. }
  22394. },
  22395. },
  22396. [
  22397. {
  22398. name: "Micro",
  22399. height: math.unit(5, "inches")
  22400. },
  22401. {
  22402. name: "Normal",
  22403. height: math.unit(5 + 3 / 12, "feet"),
  22404. default: true
  22405. },
  22406. ]
  22407. ))
  22408. characterMakers.push(() => makeCharacter(
  22409. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  22410. {
  22411. side: {
  22412. height: math.unit(4, "inches"),
  22413. weight: math.unit(200, "grams"),
  22414. name: "Side",
  22415. image: {
  22416. source: "./media/characters/der/side.svg",
  22417. extra: 719 / 400,
  22418. bottom: 30.6 / 749.9187
  22419. }
  22420. },
  22421. },
  22422. [
  22423. {
  22424. name: "Micro",
  22425. height: math.unit(4, "inches"),
  22426. default: true
  22427. },
  22428. ]
  22429. ))
  22430. characterMakers.push(() => makeCharacter(
  22431. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  22432. {
  22433. side: {
  22434. height: math.unit(30, "meters"),
  22435. weight: math.unit(700, "tonnes"),
  22436. name: "Side",
  22437. image: {
  22438. source: "./media/characters/fixerdragon/side.svg",
  22439. extra: (1293.0514 - 116.03) / 1106.86,
  22440. bottom: 116.03 / 1293.0514
  22441. }
  22442. },
  22443. },
  22444. [
  22445. {
  22446. name: "Planck",
  22447. height: math.unit(1.6e-35, "meters")
  22448. },
  22449. {
  22450. name: "Micro",
  22451. height: math.unit(0.4, "meters")
  22452. },
  22453. {
  22454. name: "Normal",
  22455. height: math.unit(30, "meters"),
  22456. default: true
  22457. },
  22458. {
  22459. name: "Megamacro",
  22460. height: math.unit(1.2, "megameters")
  22461. },
  22462. {
  22463. name: "Teramacro",
  22464. height: math.unit(130, "terameters")
  22465. },
  22466. {
  22467. name: "Yottamacro",
  22468. height: math.unit(6200, "yottameters")
  22469. },
  22470. ]
  22471. ));
  22472. characterMakers.push(() => makeCharacter(
  22473. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  22474. {
  22475. front: {
  22476. height: math.unit(8, "feet"),
  22477. weight: math.unit(250, "lb"),
  22478. name: "Front",
  22479. image: {
  22480. source: "./media/characters/kite/front.svg",
  22481. extra: 2796 / 2659,
  22482. bottom: 0.002
  22483. }
  22484. },
  22485. },
  22486. [
  22487. {
  22488. name: "Normal",
  22489. height: math.unit(8, "feet"),
  22490. default: true
  22491. },
  22492. {
  22493. name: "Macro",
  22494. height: math.unit(360, "feet")
  22495. },
  22496. {
  22497. name: "Megamacro",
  22498. height: math.unit(1500, "feet")
  22499. },
  22500. ]
  22501. ))
  22502. characterMakers.push(() => makeCharacter(
  22503. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  22504. {
  22505. front: {
  22506. height: math.unit(5 + 11/12, "feet"),
  22507. weight: math.unit(170, "lb"),
  22508. name: "Front",
  22509. image: {
  22510. source: "./media/characters/poojawa-vynar/front.svg",
  22511. extra: 1735/1585,
  22512. bottom: 96/1831
  22513. }
  22514. },
  22515. back: {
  22516. height: math.unit(5 + 11/12, "feet"),
  22517. weight: math.unit(170, "lb"),
  22518. name: "Back",
  22519. image: {
  22520. source: "./media/characters/poojawa-vynar/back.svg",
  22521. extra: 1749/1607,
  22522. bottom: 28/1777
  22523. }
  22524. },
  22525. male: {
  22526. height: math.unit(5 + 11/12, "feet"),
  22527. weight: math.unit(170, "lb"),
  22528. name: "Male",
  22529. image: {
  22530. source: "./media/characters/poojawa-vynar/male.svg",
  22531. extra: 1855/1713,
  22532. bottom: 63/1918
  22533. }
  22534. },
  22535. taur: {
  22536. height: math.unit(5 + 11/12, "feet"),
  22537. weight: math.unit(170, "lb"),
  22538. name: "Taur",
  22539. image: {
  22540. source: "./media/characters/poojawa-vynar/taur.svg",
  22541. extra: 1151/1059,
  22542. bottom: 356/1507
  22543. }
  22544. },
  22545. frontDressed: {
  22546. height: math.unit(5 + 11/12, "feet"),
  22547. weight: math.unit(170, "lb"),
  22548. name: "Front (Dressed)",
  22549. image: {
  22550. source: "./media/characters/poojawa-vynar/front-dressed.svg",
  22551. extra: 1735/1585,
  22552. bottom: 96/1831
  22553. }
  22554. },
  22555. backDressed: {
  22556. height: math.unit(5 + 11/12, "feet"),
  22557. weight: math.unit(170, "lb"),
  22558. name: "Back (Dressed)",
  22559. image: {
  22560. source: "./media/characters/poojawa-vynar/back-dressed.svg",
  22561. extra: 1749/1607,
  22562. bottom: 28/1777
  22563. }
  22564. },
  22565. maleDressed: {
  22566. height: math.unit(5 + 11/12, "feet"),
  22567. weight: math.unit(170, "lb"),
  22568. name: "Male (Dressed)",
  22569. image: {
  22570. source: "./media/characters/poojawa-vynar/male-dressed.svg",
  22571. extra: 1855/1713,
  22572. bottom: 63/1918
  22573. }
  22574. },
  22575. taurDressed: {
  22576. height: math.unit(5 + 11/12, "feet"),
  22577. weight: math.unit(170, "lb"),
  22578. name: "Taur (Dressed)",
  22579. image: {
  22580. source: "./media/characters/poojawa-vynar/taur-dressed.svg",
  22581. extra: 1151/1059,
  22582. bottom: 356/1507
  22583. }
  22584. },
  22585. maw: {
  22586. height: math.unit(1.46, "feet"),
  22587. name: "Maw",
  22588. image: {
  22589. source: "./media/characters/poojawa-vynar/maw.svg"
  22590. }
  22591. },
  22592. head: {
  22593. height: math.unit(2.34, "feet"),
  22594. name: "Head",
  22595. image: {
  22596. source: "./media/characters/poojawa-vynar/head.svg"
  22597. }
  22598. },
  22599. paw: {
  22600. height: math.unit(1.61, "feet"),
  22601. name: "Paw",
  22602. image: {
  22603. source: "./media/characters/poojawa-vynar/paw.svg"
  22604. }
  22605. },
  22606. pawToering: {
  22607. height: math.unit(1.72, "feet"),
  22608. name: "Paw (Toering)",
  22609. image: {
  22610. source: "./media/characters/poojawa-vynar/paw-toering.svg"
  22611. }
  22612. },
  22613. toering: {
  22614. height: math.unit(2.9, "inches"),
  22615. name: "Toering",
  22616. image: {
  22617. source: "./media/characters/poojawa-vynar/toering.svg"
  22618. }
  22619. },
  22620. shaft: {
  22621. height: math.unit(0.625, "feet"),
  22622. name: "Shaft",
  22623. image: {
  22624. source: "./media/characters/poojawa-vynar/shaft.svg"
  22625. }
  22626. },
  22627. spade: {
  22628. height: math.unit(0.42, "feet"),
  22629. name: "Spade",
  22630. image: {
  22631. source: "./media/characters/poojawa-vynar/spade.svg"
  22632. }
  22633. },
  22634. },
  22635. [
  22636. {
  22637. name: "Shortstack",
  22638. height: math.unit(4, "feet")
  22639. },
  22640. {
  22641. name: "Normal",
  22642. height: math.unit(5 + 11 / 12, "feet"),
  22643. default: true
  22644. },
  22645. {
  22646. name: "Tauric",
  22647. height: math.unit(4, "meters")
  22648. },
  22649. ]
  22650. ))
  22651. characterMakers.push(() => makeCharacter(
  22652. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  22653. {
  22654. front: {
  22655. height: math.unit(293, "meters"),
  22656. weight: math.unit(70400, "tons"),
  22657. name: "Front",
  22658. image: {
  22659. source: "./media/characters/violette/front.svg",
  22660. extra: 1227 / 1180,
  22661. bottom: 0.005
  22662. }
  22663. },
  22664. back: {
  22665. height: math.unit(293, "meters"),
  22666. weight: math.unit(70400, "tons"),
  22667. name: "Back",
  22668. image: {
  22669. source: "./media/characters/violette/back.svg",
  22670. extra: 1227 / 1180,
  22671. bottom: 0.005
  22672. }
  22673. },
  22674. },
  22675. [
  22676. {
  22677. name: "Macro",
  22678. height: math.unit(293, "meters"),
  22679. default: true
  22680. },
  22681. ]
  22682. ))
  22683. characterMakers.push(() => makeCharacter(
  22684. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  22685. {
  22686. front: {
  22687. height: math.unit(1050, "feet"),
  22688. weight: math.unit(200000, "tons"),
  22689. name: "Front",
  22690. image: {
  22691. source: "./media/characters/alessandra/front.svg",
  22692. extra: 960 / 912,
  22693. bottom: 0.06
  22694. }
  22695. },
  22696. },
  22697. [
  22698. {
  22699. name: "Macro",
  22700. height: math.unit(1050, "feet")
  22701. },
  22702. {
  22703. name: "Macro+",
  22704. height: math.unit(900, "meters"),
  22705. default: true
  22706. },
  22707. ]
  22708. ))
  22709. characterMakers.push(() => makeCharacter(
  22710. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  22711. {
  22712. front: {
  22713. height: math.unit(5, "feet"),
  22714. weight: math.unit(187, "lb"),
  22715. name: "Front",
  22716. image: {
  22717. source: "./media/characters/person/front.svg",
  22718. extra: 3087 / 2945,
  22719. bottom: 91 / 3181
  22720. }
  22721. },
  22722. },
  22723. [
  22724. {
  22725. name: "Micro",
  22726. height: math.unit(3, "inches")
  22727. },
  22728. {
  22729. name: "Normal",
  22730. height: math.unit(5, "feet"),
  22731. default: true
  22732. },
  22733. {
  22734. name: "Macro",
  22735. height: math.unit(90, "feet")
  22736. },
  22737. {
  22738. name: "Max Size",
  22739. height: math.unit(280, "feet")
  22740. },
  22741. ]
  22742. ))
  22743. characterMakers.push(() => makeCharacter(
  22744. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  22745. {
  22746. front: {
  22747. height: math.unit(4.5, "meters"),
  22748. weight: math.unit(3200, "lb"),
  22749. name: "Front",
  22750. image: {
  22751. source: "./media/characters/ty/front.svg",
  22752. extra: 1038 / 960,
  22753. bottom: 31.156 / 1068
  22754. }
  22755. },
  22756. back: {
  22757. height: math.unit(4.5, "meters"),
  22758. weight: math.unit(3200, "lb"),
  22759. name: "Back",
  22760. image: {
  22761. source: "./media/characters/ty/back.svg",
  22762. extra: 1044 / 966,
  22763. bottom: 7.48 / 1049
  22764. }
  22765. },
  22766. },
  22767. [
  22768. {
  22769. name: "Normal",
  22770. height: math.unit(4.5, "meters"),
  22771. default: true
  22772. },
  22773. ]
  22774. ))
  22775. characterMakers.push(() => makeCharacter(
  22776. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  22777. {
  22778. front: {
  22779. height: math.unit(5 + 4 / 12, "feet"),
  22780. weight: math.unit(115, "lb"),
  22781. name: "Front",
  22782. image: {
  22783. source: "./media/characters/rocky/front.svg",
  22784. extra: 1012 / 975,
  22785. bottom: 54 / 1066
  22786. }
  22787. },
  22788. },
  22789. [
  22790. {
  22791. name: "Normal",
  22792. height: math.unit(5 + 4 / 12, "feet"),
  22793. default: true
  22794. },
  22795. ]
  22796. ))
  22797. characterMakers.push(() => makeCharacter(
  22798. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  22799. {
  22800. upright: {
  22801. height: math.unit(6, "meters"),
  22802. weight: math.unit(4000, "kg"),
  22803. name: "Upright",
  22804. image: {
  22805. source: "./media/characters/ruin/upright.svg",
  22806. extra: 668 / 661,
  22807. bottom: 42 / 799.8396
  22808. }
  22809. },
  22810. },
  22811. [
  22812. {
  22813. name: "Normal",
  22814. height: math.unit(6, "meters"),
  22815. default: true
  22816. },
  22817. ]
  22818. ))
  22819. characterMakers.push(() => makeCharacter(
  22820. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  22821. {
  22822. front: {
  22823. height: math.unit(5, "feet"),
  22824. weight: math.unit(106, "lb"),
  22825. name: "Front",
  22826. image: {
  22827. source: "./media/characters/robin/front.svg",
  22828. extra: 862 / 799,
  22829. bottom: 42.4 / 914.8856
  22830. }
  22831. },
  22832. },
  22833. [
  22834. {
  22835. name: "Normal",
  22836. height: math.unit(5, "feet"),
  22837. default: true
  22838. },
  22839. ]
  22840. ))
  22841. characterMakers.push(() => makeCharacter(
  22842. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  22843. {
  22844. side: {
  22845. height: math.unit(3, "feet"),
  22846. weight: math.unit(225, "lb"),
  22847. name: "Side",
  22848. image: {
  22849. source: "./media/characters/saian/side.svg",
  22850. extra: 566 / 356,
  22851. bottom: 79.7 / 643
  22852. }
  22853. },
  22854. maw: {
  22855. height: math.unit(2.85, "feet"),
  22856. name: "Maw",
  22857. image: {
  22858. source: "./media/characters/saian/maw.svg"
  22859. }
  22860. },
  22861. },
  22862. [
  22863. {
  22864. name: "Normal",
  22865. height: math.unit(3, "feet"),
  22866. default: true
  22867. },
  22868. ]
  22869. ))
  22870. characterMakers.push(() => makeCharacter(
  22871. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  22872. {
  22873. side: {
  22874. height: math.unit(8, "feet"),
  22875. weight: math.unit(300, "lb"),
  22876. name: "Side",
  22877. image: {
  22878. source: "./media/characters/equus-silvermane/side.svg",
  22879. extra: 2176 / 2050,
  22880. bottom: 65.7 / 2245
  22881. }
  22882. },
  22883. front: {
  22884. height: math.unit(8, "feet"),
  22885. weight: math.unit(300, "lb"),
  22886. name: "Front",
  22887. image: {
  22888. source: "./media/characters/equus-silvermane/front.svg",
  22889. extra: 4633 / 4400,
  22890. bottom: 71.3 / 4706.915
  22891. }
  22892. },
  22893. sideStepping: {
  22894. height: math.unit(8, "feet"),
  22895. weight: math.unit(300, "lb"),
  22896. name: "Side (Stepping)",
  22897. image: {
  22898. source: "./media/characters/equus-silvermane/side-stepping.svg",
  22899. extra: 1968 / 1860,
  22900. bottom: 16.4 / 1989
  22901. }
  22902. },
  22903. },
  22904. [
  22905. {
  22906. name: "Normal",
  22907. height: math.unit(8, "feet")
  22908. },
  22909. {
  22910. name: "Minimacro",
  22911. height: math.unit(75, "feet"),
  22912. default: true
  22913. },
  22914. {
  22915. name: "Macro",
  22916. height: math.unit(150, "feet")
  22917. },
  22918. {
  22919. name: "Macro+",
  22920. height: math.unit(1000, "feet")
  22921. },
  22922. {
  22923. name: "Megamacro",
  22924. height: math.unit(1, "mile")
  22925. },
  22926. ]
  22927. ))
  22928. characterMakers.push(() => makeCharacter(
  22929. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  22930. {
  22931. side: {
  22932. height: math.unit(20, "feet"),
  22933. weight: math.unit(30000, "kg"),
  22934. name: "Side",
  22935. image: {
  22936. source: "./media/characters/windar/side.svg",
  22937. extra: 1491 / 1248,
  22938. bottom: 82.56 / 1568
  22939. }
  22940. },
  22941. },
  22942. [
  22943. {
  22944. name: "Normal",
  22945. height: math.unit(20, "feet"),
  22946. default: true
  22947. },
  22948. ]
  22949. ))
  22950. characterMakers.push(() => makeCharacter(
  22951. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  22952. {
  22953. side: {
  22954. height: math.unit(15.66, "feet"),
  22955. weight: math.unit(150, "lb"),
  22956. name: "Side",
  22957. image: {
  22958. source: "./media/characters/melody/side.svg",
  22959. extra: 1097 / 944,
  22960. bottom: 11.8 / 1109
  22961. }
  22962. },
  22963. sideOutfit: {
  22964. height: math.unit(15.66, "feet"),
  22965. weight: math.unit(150, "lb"),
  22966. name: "Side (Outfit)",
  22967. image: {
  22968. source: "./media/characters/melody/side-outfit.svg",
  22969. extra: 1097 / 944,
  22970. bottom: 11.8 / 1109
  22971. }
  22972. },
  22973. },
  22974. [
  22975. {
  22976. name: "Normal",
  22977. height: math.unit(15.66, "feet"),
  22978. default: true
  22979. },
  22980. ]
  22981. ))
  22982. characterMakers.push(() => makeCharacter(
  22983. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  22984. {
  22985. front: {
  22986. height: math.unit(8, "feet"),
  22987. weight: math.unit(325, "lb"),
  22988. name: "Front",
  22989. image: {
  22990. source: "./media/characters/windera/front.svg",
  22991. extra: 3180 / 2845,
  22992. bottom: 178 / 3365
  22993. }
  22994. },
  22995. },
  22996. [
  22997. {
  22998. name: "Normal",
  22999. height: math.unit(8, "feet"),
  23000. default: true
  23001. },
  23002. ]
  23003. ))
  23004. characterMakers.push(() => makeCharacter(
  23005. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  23006. {
  23007. front: {
  23008. height: math.unit(28.75, "feet"),
  23009. weight: math.unit(2000, "kg"),
  23010. name: "Front",
  23011. image: {
  23012. source: "./media/characters/sonear/front.svg",
  23013. extra: 1041.1 / 964.9,
  23014. bottom: 53.7 / 1096.6
  23015. }
  23016. },
  23017. },
  23018. [
  23019. {
  23020. name: "Normal",
  23021. height: math.unit(28.75, "feet"),
  23022. default: true
  23023. },
  23024. ]
  23025. ))
  23026. characterMakers.push(() => makeCharacter(
  23027. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  23028. {
  23029. side: {
  23030. height: math.unit(25.5, "feet"),
  23031. weight: math.unit(23000, "kg"),
  23032. name: "Side",
  23033. image: {
  23034. source: "./media/characters/kanara/side.svg"
  23035. }
  23036. },
  23037. },
  23038. [
  23039. {
  23040. name: "Normal",
  23041. height: math.unit(25.5, "feet"),
  23042. default: true
  23043. },
  23044. ]
  23045. ))
  23046. characterMakers.push(() => makeCharacter(
  23047. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  23048. {
  23049. side: {
  23050. height: math.unit(10, "feet"),
  23051. weight: math.unit(1000, "kg"),
  23052. name: "Side",
  23053. image: {
  23054. source: "./media/characters/ereus/side.svg",
  23055. extra: 1157 / 959,
  23056. bottom: 153 / 1312.5
  23057. }
  23058. },
  23059. },
  23060. [
  23061. {
  23062. name: "Normal",
  23063. height: math.unit(10, "feet"),
  23064. default: true
  23065. },
  23066. ]
  23067. ))
  23068. characterMakers.push(() => makeCharacter(
  23069. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  23070. {
  23071. side: {
  23072. height: math.unit(4.5, "feet"),
  23073. weight: math.unit(500, "lb"),
  23074. name: "Side",
  23075. image: {
  23076. source: "./media/characters/e-ter/side.svg",
  23077. extra: 1550 / 1248,
  23078. bottom: 146 / 1694
  23079. }
  23080. },
  23081. },
  23082. [
  23083. {
  23084. name: "Normal",
  23085. height: math.unit(4.5, "feet"),
  23086. default: true
  23087. },
  23088. ]
  23089. ))
  23090. characterMakers.push(() => makeCharacter(
  23091. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  23092. {
  23093. side: {
  23094. height: math.unit(9.7, "feet"),
  23095. weight: math.unit(4000, "kg"),
  23096. name: "Side",
  23097. image: {
  23098. source: "./media/characters/yamie/side.svg"
  23099. }
  23100. },
  23101. },
  23102. [
  23103. {
  23104. name: "Normal",
  23105. height: math.unit(9.7, "feet"),
  23106. default: true
  23107. },
  23108. ]
  23109. ))
  23110. characterMakers.push(() => makeCharacter(
  23111. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  23112. {
  23113. front: {
  23114. height: math.unit(50, "feet"),
  23115. weight: math.unit(50000, "kg"),
  23116. name: "Front",
  23117. image: {
  23118. source: "./media/characters/anders/front.svg",
  23119. extra: 570 / 539,
  23120. bottom: 14.7 / 586.7
  23121. }
  23122. },
  23123. },
  23124. [
  23125. {
  23126. name: "Large",
  23127. height: math.unit(50, "feet")
  23128. },
  23129. {
  23130. name: "Macro",
  23131. height: math.unit(2000, "feet"),
  23132. default: true
  23133. },
  23134. {
  23135. name: "Megamacro",
  23136. height: math.unit(12, "miles")
  23137. },
  23138. ]
  23139. ))
  23140. characterMakers.push(() => makeCharacter(
  23141. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  23142. {
  23143. front: {
  23144. height: math.unit(7 + 2 / 12, "feet"),
  23145. weight: math.unit(300, "lb"),
  23146. name: "Front",
  23147. image: {
  23148. source: "./media/characters/reban/front.svg",
  23149. extra: 1287/1212,
  23150. bottom: 148/1435
  23151. }
  23152. },
  23153. head: {
  23154. height: math.unit(1.95, "feet"),
  23155. name: "Head",
  23156. image: {
  23157. source: "./media/characters/reban/head.svg"
  23158. }
  23159. },
  23160. maw: {
  23161. height: math.unit(0.95, "feet"),
  23162. name: "Maw",
  23163. image: {
  23164. source: "./media/characters/reban/maw.svg"
  23165. }
  23166. },
  23167. foot: {
  23168. height: math.unit(1.65, "feet"),
  23169. name: "Foot",
  23170. image: {
  23171. source: "./media/characters/reban/foot.svg"
  23172. }
  23173. },
  23174. dick: {
  23175. height: math.unit(7 / 5, "feet"),
  23176. name: "Dick",
  23177. image: {
  23178. source: "./media/characters/reban/dick.svg"
  23179. }
  23180. },
  23181. },
  23182. [
  23183. {
  23184. name: "Natural Height",
  23185. height: math.unit(7 + 2 / 12, "feet")
  23186. },
  23187. {
  23188. name: "Macro",
  23189. height: math.unit(500, "feet"),
  23190. default: true
  23191. },
  23192. {
  23193. name: "Canon Height",
  23194. height: math.unit(50, "AU")
  23195. },
  23196. ]
  23197. ))
  23198. characterMakers.push(() => makeCharacter(
  23199. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  23200. {
  23201. front: {
  23202. height: math.unit(6, "feet"),
  23203. weight: math.unit(150, "lb"),
  23204. name: "Front",
  23205. image: {
  23206. source: "./media/characters/terrance-keayes/front.svg",
  23207. extra: 1.005,
  23208. bottom: 151 / 1615
  23209. }
  23210. },
  23211. side: {
  23212. height: math.unit(6, "feet"),
  23213. weight: math.unit(150, "lb"),
  23214. name: "Side",
  23215. image: {
  23216. source: "./media/characters/terrance-keayes/side.svg",
  23217. extra: 1.005,
  23218. bottom: 129.4 / 1544
  23219. }
  23220. },
  23221. back: {
  23222. height: math.unit(6, "feet"),
  23223. weight: math.unit(150, "lb"),
  23224. name: "Back",
  23225. image: {
  23226. source: "./media/characters/terrance-keayes/back.svg",
  23227. extra: 1.005,
  23228. bottom: 58.4 / 1557.3
  23229. }
  23230. },
  23231. dick: {
  23232. height: math.unit(6 * 0.208, "feet"),
  23233. name: "Dick",
  23234. image: {
  23235. source: "./media/characters/terrance-keayes/dick.svg"
  23236. }
  23237. },
  23238. },
  23239. [
  23240. {
  23241. name: "Canon Height",
  23242. height: math.unit(35, "miles"),
  23243. default: true
  23244. },
  23245. ]
  23246. ))
  23247. characterMakers.push(() => makeCharacter(
  23248. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  23249. {
  23250. front: {
  23251. height: math.unit(6, "feet"),
  23252. weight: math.unit(150, "lb"),
  23253. name: "Front",
  23254. image: {
  23255. source: "./media/characters/ofelia/front.svg",
  23256. extra: 1130/1117,
  23257. bottom: 91/1221
  23258. }
  23259. },
  23260. back: {
  23261. height: math.unit(6, "feet"),
  23262. weight: math.unit(150, "lb"),
  23263. name: "Back",
  23264. image: {
  23265. source: "./media/characters/ofelia/back.svg",
  23266. extra: 1172/1159,
  23267. bottom: 28/1200
  23268. }
  23269. },
  23270. maw: {
  23271. height: math.unit(1, "feet"),
  23272. name: "Maw",
  23273. image: {
  23274. source: "./media/characters/ofelia/maw.svg"
  23275. }
  23276. },
  23277. foot: {
  23278. height: math.unit(1.949, "feet"),
  23279. name: "Foot",
  23280. image: {
  23281. source: "./media/characters/ofelia/foot.svg"
  23282. }
  23283. },
  23284. },
  23285. [
  23286. {
  23287. name: "Canon Height",
  23288. height: math.unit(2000, "miles"),
  23289. default: true
  23290. },
  23291. ]
  23292. ))
  23293. characterMakers.push(() => makeCharacter(
  23294. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  23295. {
  23296. front: {
  23297. height: math.unit(6, "feet"),
  23298. weight: math.unit(150, "lb"),
  23299. name: "Front",
  23300. image: {
  23301. source: "./media/characters/samuel/front.svg",
  23302. extra: 265 / 258,
  23303. bottom: 2 / 266.1566
  23304. }
  23305. },
  23306. },
  23307. [
  23308. {
  23309. name: "Macro",
  23310. height: math.unit(100, "feet"),
  23311. default: true
  23312. },
  23313. {
  23314. name: "Full Size",
  23315. height: math.unit(1000, "miles")
  23316. },
  23317. ]
  23318. ))
  23319. characterMakers.push(() => makeCharacter(
  23320. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  23321. {
  23322. front: {
  23323. height: math.unit(6, "feet"),
  23324. weight: math.unit(300, "lb"),
  23325. name: "Front",
  23326. image: {
  23327. source: "./media/characters/beishir-kiel/front.svg",
  23328. extra: 569 / 547,
  23329. bottom: 41.9 / 609
  23330. }
  23331. },
  23332. maw: {
  23333. height: math.unit(6 * 0.202, "feet"),
  23334. name: "Maw",
  23335. image: {
  23336. source: "./media/characters/beishir-kiel/maw.svg"
  23337. }
  23338. },
  23339. },
  23340. [
  23341. {
  23342. name: "Macro",
  23343. height: math.unit(300, "feet"),
  23344. default: true
  23345. },
  23346. ]
  23347. ))
  23348. characterMakers.push(() => makeCharacter(
  23349. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  23350. {
  23351. front: {
  23352. height: math.unit(5 + 7/12, "feet"),
  23353. weight: math.unit(120, "lb"),
  23354. name: "Front",
  23355. image: {
  23356. source: "./media/characters/logan-grey/front.svg",
  23357. extra: 1836/1738,
  23358. bottom: 108/1944
  23359. }
  23360. },
  23361. back: {
  23362. height: math.unit(5 + 7/12, "feet"),
  23363. weight: math.unit(120, "lb"),
  23364. name: "Back",
  23365. image: {
  23366. source: "./media/characters/logan-grey/back.svg",
  23367. extra: 1880/1794,
  23368. bottom: 24/1904
  23369. }
  23370. },
  23371. frontSfw: {
  23372. height: math.unit(5 + 7/12, "feet"),
  23373. weight: math.unit(120, "lb"),
  23374. name: "Front (SFW)",
  23375. image: {
  23376. source: "./media/characters/logan-grey/front-sfw.svg",
  23377. extra: 1836/1738,
  23378. bottom: 108/1944
  23379. }
  23380. },
  23381. backSfw: {
  23382. height: math.unit(5 + 7/12, "feet"),
  23383. weight: math.unit(120, "lb"),
  23384. name: "Back (SFW)",
  23385. image: {
  23386. source: "./media/characters/logan-grey/back-sfw.svg",
  23387. extra: 1880/1794,
  23388. bottom: 24/1904
  23389. }
  23390. },
  23391. hands: {
  23392. height: math.unit(0.84, "feet"),
  23393. name: "Hands",
  23394. image: {
  23395. source: "./media/characters/logan-grey/hands.svg"
  23396. }
  23397. },
  23398. paws: {
  23399. height: math.unit(0.72, "feet"),
  23400. name: "Paws",
  23401. image: {
  23402. source: "./media/characters/logan-grey/paws.svg"
  23403. }
  23404. },
  23405. cock: {
  23406. height: math.unit(1.45, "feet"),
  23407. name: "Cock",
  23408. image: {
  23409. source: "./media/characters/logan-grey/cock.svg"
  23410. }
  23411. },
  23412. cockAlt: {
  23413. height: math.unit(1.437, "feet"),
  23414. name: "Cock (alt)",
  23415. image: {
  23416. source: "./media/characters/logan-grey/cock-alt.svg"
  23417. }
  23418. },
  23419. },
  23420. [
  23421. {
  23422. name: "Normal",
  23423. height: math.unit(5 + 8 / 12, "feet")
  23424. },
  23425. {
  23426. name: "The 500 Foot Femboy",
  23427. height: math.unit(500, "feet"),
  23428. default: true
  23429. },
  23430. {
  23431. name: "Megmacro",
  23432. height: math.unit(20, "miles")
  23433. },
  23434. ]
  23435. ))
  23436. characterMakers.push(() => makeCharacter(
  23437. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  23438. {
  23439. front: {
  23440. height: math.unit(8 + 2 / 12, "feet"),
  23441. weight: math.unit(275, "lb"),
  23442. name: "Front",
  23443. image: {
  23444. source: "./media/characters/draganta/front.svg",
  23445. extra: 1177 / 1135,
  23446. bottom: 33.46 / 1212.1
  23447. }
  23448. },
  23449. },
  23450. [
  23451. {
  23452. name: "Normal",
  23453. height: math.unit(8 + 6 / 12, "feet"),
  23454. default: true
  23455. },
  23456. {
  23457. name: "Macro",
  23458. height: math.unit(150, "feet")
  23459. },
  23460. {
  23461. name: "Megamacro",
  23462. height: math.unit(1000, "miles")
  23463. },
  23464. ]
  23465. ))
  23466. characterMakers.push(() => makeCharacter(
  23467. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  23468. {
  23469. front: {
  23470. height: math.unit(1.72, "m"),
  23471. weight: math.unit(80, "lb"),
  23472. name: "Front",
  23473. image: {
  23474. source: "./media/characters/voski/front.svg",
  23475. extra: 2076.22 / 2022.4,
  23476. bottom: 102.7 / 2177.3866
  23477. }
  23478. },
  23479. frontFlaccid: {
  23480. height: math.unit(1.72, "m"),
  23481. weight: math.unit(80, "lb"),
  23482. name: "Front (Flaccid)",
  23483. image: {
  23484. source: "./media/characters/voski/front-flaccid.svg",
  23485. extra: 2076.22 / 2022.4,
  23486. bottom: 102.7 / 2177.3866
  23487. }
  23488. },
  23489. frontErect: {
  23490. height: math.unit(1.72, "m"),
  23491. weight: math.unit(80, "lb"),
  23492. name: "Front (Erect)",
  23493. image: {
  23494. source: "./media/characters/voski/front-erect.svg",
  23495. extra: 2076.22 / 2022.4,
  23496. bottom: 102.7 / 2177.3866
  23497. }
  23498. },
  23499. back: {
  23500. height: math.unit(1.72, "m"),
  23501. weight: math.unit(80, "lb"),
  23502. name: "Back",
  23503. image: {
  23504. source: "./media/characters/voski/back.svg",
  23505. extra: 2104 / 2051,
  23506. bottom: 10.45 / 2113.63
  23507. }
  23508. },
  23509. },
  23510. [
  23511. {
  23512. name: "Normal",
  23513. height: math.unit(1.72, "m")
  23514. },
  23515. {
  23516. name: "Macro",
  23517. height: math.unit(55, "m"),
  23518. default: true
  23519. },
  23520. {
  23521. name: "Macro+",
  23522. height: math.unit(300, "m")
  23523. },
  23524. {
  23525. name: "Macro++",
  23526. height: math.unit(700, "m")
  23527. },
  23528. {
  23529. name: "Macro+++",
  23530. height: math.unit(4500, "m")
  23531. },
  23532. {
  23533. name: "Macro++++",
  23534. height: math.unit(45, "km")
  23535. },
  23536. {
  23537. name: "Macro+++++",
  23538. height: math.unit(1220, "km")
  23539. },
  23540. ]
  23541. ))
  23542. characterMakers.push(() => makeCharacter(
  23543. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  23544. {
  23545. front: {
  23546. height: math.unit(2.3, "m"),
  23547. weight: math.unit(304, "kg"),
  23548. name: "Front",
  23549. image: {
  23550. source: "./media/characters/icowom-lee/front.svg",
  23551. extra: 985 / 955,
  23552. bottom: 25.4 / 1012
  23553. }
  23554. },
  23555. fronttentacles: {
  23556. height: math.unit(2.3, "m"),
  23557. weight: math.unit(304, "kg"),
  23558. name: "Front-tentacles",
  23559. image: {
  23560. source: "./media/characters/icowom-lee/front-tentacles.svg",
  23561. extra: 985 / 955,
  23562. bottom: 25.4 / 1012
  23563. }
  23564. },
  23565. back: {
  23566. height: math.unit(2.3, "m"),
  23567. weight: math.unit(304, "kg"),
  23568. name: "Back",
  23569. image: {
  23570. source: "./media/characters/icowom-lee/back.svg",
  23571. extra: 975 / 954,
  23572. bottom: 9.5 / 985
  23573. }
  23574. },
  23575. backtentacles: {
  23576. height: math.unit(2.3, "m"),
  23577. weight: math.unit(304, "kg"),
  23578. name: "Back-tentacles",
  23579. image: {
  23580. source: "./media/characters/icowom-lee/back-tentacles.svg",
  23581. extra: 975 / 954,
  23582. bottom: 9.5 / 985
  23583. }
  23584. },
  23585. frontDressed: {
  23586. height: math.unit(2.3, "m"),
  23587. weight: math.unit(304, "kg"),
  23588. name: "Front (Dressed)",
  23589. image: {
  23590. source: "./media/characters/icowom-lee/front-dressed.svg",
  23591. extra: 3076 / 2933,
  23592. bottom: 51.4 / 3125.1889
  23593. }
  23594. },
  23595. rump: {
  23596. height: math.unit(0.776, "meters"),
  23597. name: "Rump",
  23598. image: {
  23599. source: "./media/characters/icowom-lee/rump.svg"
  23600. }
  23601. },
  23602. genitals: {
  23603. height: math.unit(0.78, "meters"),
  23604. name: "Genitals",
  23605. image: {
  23606. source: "./media/characters/icowom-lee/genitals.svg"
  23607. }
  23608. },
  23609. },
  23610. [
  23611. {
  23612. name: "Normal",
  23613. height: math.unit(2.3, "meters"),
  23614. default: true
  23615. },
  23616. {
  23617. name: "Macro",
  23618. height: math.unit(94, "meters"),
  23619. default: true
  23620. },
  23621. ]
  23622. ))
  23623. characterMakers.push(() => makeCharacter(
  23624. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  23625. {
  23626. front: {
  23627. height: math.unit(22, "meters"),
  23628. weight: math.unit(21000, "kg"),
  23629. name: "Front",
  23630. image: {
  23631. source: "./media/characters/shock-diamond/front.svg",
  23632. extra: 2204 / 2053,
  23633. bottom: 65 / 2239.47
  23634. }
  23635. },
  23636. frontNude: {
  23637. height: math.unit(22, "meters"),
  23638. weight: math.unit(21000, "kg"),
  23639. name: "Front (Nude)",
  23640. image: {
  23641. source: "./media/characters/shock-diamond/front-nude.svg",
  23642. extra: 2514 / 2285,
  23643. bottom: 13 / 2527.56
  23644. }
  23645. },
  23646. },
  23647. [
  23648. {
  23649. name: "Normal",
  23650. height: math.unit(3, "meters")
  23651. },
  23652. {
  23653. name: "Macro",
  23654. height: math.unit(22, "meters"),
  23655. default: true
  23656. },
  23657. ]
  23658. ))
  23659. characterMakers.push(() => makeCharacter(
  23660. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  23661. {
  23662. front: {
  23663. height: math.unit(5 + 4 / 12, "feet"),
  23664. weight: math.unit(120, "lb"),
  23665. name: "Front",
  23666. image: {
  23667. source: "./media/characters/rory/front.svg",
  23668. extra: 1318/1241,
  23669. bottom: 42/1360
  23670. }
  23671. },
  23672. back: {
  23673. height: math.unit(5 + 4 / 12, "feet"),
  23674. weight: math.unit(120, "lb"),
  23675. name: "Back",
  23676. image: {
  23677. source: "./media/characters/rory/back.svg",
  23678. extra: 1318/1241,
  23679. bottom: 42/1360
  23680. }
  23681. },
  23682. butt: {
  23683. height: math.unit(1.74, "feet"),
  23684. name: "Butt",
  23685. image: {
  23686. source: "./media/characters/rory/butt.svg"
  23687. }
  23688. },
  23689. dick: {
  23690. height: math.unit(1.02, "feet"),
  23691. name: "Dick",
  23692. image: {
  23693. source: "./media/characters/rory/dick.svg"
  23694. }
  23695. },
  23696. paws: {
  23697. height: math.unit(1, "feet"),
  23698. name: "Paws",
  23699. image: {
  23700. source: "./media/characters/rory/paws.svg"
  23701. }
  23702. },
  23703. frontAlt: {
  23704. height: math.unit(5 + 4 / 12, "feet"),
  23705. weight: math.unit(120, "lb"),
  23706. name: "Front (Alt)",
  23707. image: {
  23708. source: "./media/characters/rory/front-alt.svg",
  23709. extra: 589 / 556,
  23710. bottom: 45.7 / 635.76
  23711. }
  23712. },
  23713. frontAltNude: {
  23714. height: math.unit(5 + 4 / 12, "feet"),
  23715. weight: math.unit(120, "lb"),
  23716. name: "Front (Alt, Nude)",
  23717. image: {
  23718. source: "./media/characters/rory/front-alt-nude.svg",
  23719. extra: 589 / 556,
  23720. bottom: 45.7 / 635.76
  23721. }
  23722. },
  23723. side: {
  23724. height: math.unit(5 + 4 / 12, "feet"),
  23725. weight: math.unit(120, "lb"),
  23726. name: "Side",
  23727. image: {
  23728. source: "./media/characters/rory/side.svg",
  23729. extra: 597 / 564,
  23730. bottom: 55 / 653
  23731. }
  23732. },
  23733. backAlt: {
  23734. height: math.unit(5 + 4 / 12, "feet"),
  23735. weight: math.unit(120, "lb"),
  23736. name: "Back (Alt)",
  23737. image: {
  23738. source: "./media/characters/rory/back-alt.svg",
  23739. extra: 620 / 585,
  23740. bottom: 8.86 / 630.43
  23741. }
  23742. },
  23743. dickAlt: {
  23744. height: math.unit(0.86, "feet"),
  23745. name: "Dick (Alt)",
  23746. image: {
  23747. source: "./media/characters/rory/dick-alt.svg"
  23748. }
  23749. },
  23750. },
  23751. [
  23752. {
  23753. name: "Normal",
  23754. height: math.unit(5 + 4 / 12, "feet"),
  23755. default: true
  23756. },
  23757. {
  23758. name: "Macro",
  23759. height: math.unit(100, "feet")
  23760. },
  23761. {
  23762. name: "Macro+",
  23763. height: math.unit(140, "feet")
  23764. },
  23765. {
  23766. name: "Macro++",
  23767. height: math.unit(300, "feet")
  23768. },
  23769. ]
  23770. ))
  23771. characterMakers.push(() => makeCharacter(
  23772. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  23773. {
  23774. front: {
  23775. height: math.unit(5 + 9 / 12, "feet"),
  23776. weight: math.unit(190, "lb"),
  23777. name: "Front",
  23778. image: {
  23779. source: "./media/characters/sprisk/front.svg",
  23780. extra: 1225 / 1180,
  23781. bottom: 42.7 / 1266.4
  23782. }
  23783. },
  23784. frontNsfw: {
  23785. height: math.unit(5 + 9 / 12, "feet"),
  23786. weight: math.unit(190, "lb"),
  23787. name: "Front (NSFW)",
  23788. image: {
  23789. source: "./media/characters/sprisk/front-nsfw.svg",
  23790. extra: 1225 / 1180,
  23791. bottom: 42.7 / 1266.4
  23792. }
  23793. },
  23794. back: {
  23795. height: math.unit(5 + 9 / 12, "feet"),
  23796. weight: math.unit(190, "lb"),
  23797. name: "Back",
  23798. image: {
  23799. source: "./media/characters/sprisk/back.svg",
  23800. extra: 1247 / 1200,
  23801. bottom: 5.6 / 1253.04
  23802. }
  23803. },
  23804. },
  23805. [
  23806. {
  23807. name: "Tiny",
  23808. height: math.unit(2, "inches")
  23809. },
  23810. {
  23811. name: "Normal",
  23812. height: math.unit(5 + 9 / 12, "feet"),
  23813. default: true
  23814. },
  23815. {
  23816. name: "Mini Macro",
  23817. height: math.unit(18, "feet")
  23818. },
  23819. {
  23820. name: "Macro",
  23821. height: math.unit(100, "feet")
  23822. },
  23823. {
  23824. name: "MACRO",
  23825. height: math.unit(50, "miles")
  23826. },
  23827. {
  23828. name: "M A C R O",
  23829. height: math.unit(300, "miles")
  23830. },
  23831. ]
  23832. ))
  23833. characterMakers.push(() => makeCharacter(
  23834. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  23835. {
  23836. side: {
  23837. height: math.unit(15.6, "meters"),
  23838. weight: math.unit(700000, "kg"),
  23839. name: "Side",
  23840. image: {
  23841. source: "./media/characters/bunsen/side.svg",
  23842. extra: 1644 / 358
  23843. }
  23844. },
  23845. foot: {
  23846. height: math.unit(1.611 * 1644 / 358, "meter"),
  23847. name: "Foot",
  23848. image: {
  23849. source: "./media/characters/bunsen/foot.svg"
  23850. }
  23851. },
  23852. },
  23853. [
  23854. {
  23855. name: "Small",
  23856. height: math.unit(10, "feet")
  23857. },
  23858. {
  23859. name: "Normal",
  23860. height: math.unit(15.6, "meters"),
  23861. default: true
  23862. },
  23863. ]
  23864. ))
  23865. characterMakers.push(() => makeCharacter(
  23866. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  23867. {
  23868. front: {
  23869. height: math.unit(4 + 11 / 12, "feet"),
  23870. weight: math.unit(140, "lb"),
  23871. name: "Front",
  23872. image: {
  23873. source: "./media/characters/sesh/front.svg",
  23874. extra: 3420 / 3231,
  23875. bottom: 72 / 3949.5
  23876. }
  23877. },
  23878. },
  23879. [
  23880. {
  23881. name: "Normal",
  23882. height: math.unit(4 + 11 / 12, "feet")
  23883. },
  23884. {
  23885. name: "Grown",
  23886. height: math.unit(15, "feet"),
  23887. default: true
  23888. },
  23889. {
  23890. name: "Macro",
  23891. height: math.unit(1500, "feet")
  23892. },
  23893. {
  23894. name: "Megamacro",
  23895. height: math.unit(30, "miles")
  23896. },
  23897. {
  23898. name: "Continental",
  23899. height: math.unit(3000, "miles")
  23900. },
  23901. {
  23902. name: "Gravity Mass",
  23903. height: math.unit(300000, "miles")
  23904. },
  23905. {
  23906. name: "Planet Buster",
  23907. height: math.unit(30000000, "miles")
  23908. },
  23909. {
  23910. name: "Big",
  23911. height: math.unit(3000000000, "miles")
  23912. },
  23913. ]
  23914. ))
  23915. characterMakers.push(() => makeCharacter(
  23916. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  23917. {
  23918. front: {
  23919. height: math.unit(9, "feet"),
  23920. weight: math.unit(350, "lb"),
  23921. name: "Front",
  23922. image: {
  23923. source: "./media/characters/pepper/front.svg",
  23924. extra: 1448 / 1312,
  23925. bottom: 9.4 / 1457.88
  23926. }
  23927. },
  23928. back: {
  23929. height: math.unit(9, "feet"),
  23930. weight: math.unit(350, "lb"),
  23931. name: "Back",
  23932. image: {
  23933. source: "./media/characters/pepper/back.svg",
  23934. extra: 1423 / 1300,
  23935. bottom: 4.6 / 1429
  23936. }
  23937. },
  23938. maw: {
  23939. height: math.unit(0.932, "feet"),
  23940. name: "Maw",
  23941. image: {
  23942. source: "./media/characters/pepper/maw.svg"
  23943. }
  23944. },
  23945. },
  23946. [
  23947. {
  23948. name: "Normal",
  23949. height: math.unit(9, "feet"),
  23950. default: true
  23951. },
  23952. ]
  23953. ))
  23954. characterMakers.push(() => makeCharacter(
  23955. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  23956. {
  23957. front: {
  23958. height: math.unit(6, "feet"),
  23959. weight: math.unit(150, "lb"),
  23960. name: "Front",
  23961. image: {
  23962. source: "./media/characters/maelstrom/front.svg",
  23963. extra: 2100 / 1883,
  23964. bottom: 94 / 2196.7
  23965. }
  23966. },
  23967. },
  23968. [
  23969. {
  23970. name: "Less Kaiju",
  23971. height: math.unit(200, "feet")
  23972. },
  23973. {
  23974. name: "Kaiju",
  23975. height: math.unit(400, "feet"),
  23976. default: true
  23977. },
  23978. {
  23979. name: "Kaiju-er",
  23980. height: math.unit(600, "feet")
  23981. },
  23982. ]
  23983. ))
  23984. characterMakers.push(() => makeCharacter(
  23985. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  23986. {
  23987. front: {
  23988. height: math.unit(6 + 5 / 12, "feet"),
  23989. weight: math.unit(180, "lb"),
  23990. name: "Front",
  23991. image: {
  23992. source: "./media/characters/lexir/front.svg",
  23993. extra: 180 / 172,
  23994. bottom: 12 / 192
  23995. }
  23996. },
  23997. back: {
  23998. height: math.unit(6 + 5 / 12, "feet"),
  23999. weight: math.unit(180, "lb"),
  24000. name: "Back",
  24001. image: {
  24002. source: "./media/characters/lexir/back.svg",
  24003. extra: 1273/1201,
  24004. bottom: 39/1312
  24005. }
  24006. },
  24007. },
  24008. [
  24009. {
  24010. name: "Very Smal",
  24011. height: math.unit(1, "nm")
  24012. },
  24013. {
  24014. name: "Normal",
  24015. height: math.unit(6 + 5 / 12, "feet"),
  24016. default: true
  24017. },
  24018. {
  24019. name: "Macro",
  24020. height: math.unit(1, "mile")
  24021. },
  24022. {
  24023. name: "Megamacro",
  24024. height: math.unit(50, "miles")
  24025. },
  24026. ]
  24027. ))
  24028. characterMakers.push(() => makeCharacter(
  24029. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  24030. {
  24031. front: {
  24032. height: math.unit(1.5, "meters"),
  24033. weight: math.unit(100, "lb"),
  24034. name: "Front",
  24035. image: {
  24036. source: "./media/characters/maksio/front.svg",
  24037. extra: 1549 / 1531,
  24038. bottom: 123.7 / 1674.5429
  24039. }
  24040. },
  24041. back: {
  24042. height: math.unit(1.5, "meters"),
  24043. weight: math.unit(100, "lb"),
  24044. name: "Back",
  24045. image: {
  24046. source: "./media/characters/maksio/back.svg",
  24047. extra: 1541 / 1509,
  24048. bottom: 97 / 1639
  24049. }
  24050. },
  24051. hand: {
  24052. height: math.unit(0.621, "feet"),
  24053. name: "Hand",
  24054. image: {
  24055. source: "./media/characters/maksio/hand.svg"
  24056. }
  24057. },
  24058. foot: {
  24059. height: math.unit(1.611, "feet"),
  24060. name: "Foot",
  24061. image: {
  24062. source: "./media/characters/maksio/foot.svg"
  24063. }
  24064. },
  24065. },
  24066. [
  24067. {
  24068. name: "Shrunken",
  24069. height: math.unit(10, "cm")
  24070. },
  24071. {
  24072. name: "Normal",
  24073. height: math.unit(150, "cm"),
  24074. default: true
  24075. },
  24076. ]
  24077. ))
  24078. characterMakers.push(() => makeCharacter(
  24079. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  24080. {
  24081. front: {
  24082. height: math.unit(100, "feet"),
  24083. name: "Front",
  24084. image: {
  24085. source: "./media/characters/erza-bear/front.svg",
  24086. extra: 2449 / 2390,
  24087. bottom: 46 / 2494
  24088. }
  24089. },
  24090. back: {
  24091. height: math.unit(100, "feet"),
  24092. name: "Back",
  24093. image: {
  24094. source: "./media/characters/erza-bear/back.svg",
  24095. extra: 2489 / 2430,
  24096. bottom: 85.4 / 2480
  24097. }
  24098. },
  24099. tail: {
  24100. height: math.unit(42, "feet"),
  24101. name: "Tail",
  24102. image: {
  24103. source: "./media/characters/erza-bear/tail.svg"
  24104. }
  24105. },
  24106. tongue: {
  24107. height: math.unit(8, "feet"),
  24108. name: "Tongue",
  24109. image: {
  24110. source: "./media/characters/erza-bear/tongue.svg"
  24111. }
  24112. },
  24113. dick: {
  24114. height: math.unit(10.5, "feet"),
  24115. name: "Dick",
  24116. image: {
  24117. source: "./media/characters/erza-bear/dick.svg"
  24118. }
  24119. },
  24120. dickVertical: {
  24121. height: math.unit(16.9, "feet"),
  24122. name: "Dick (Vertical)",
  24123. image: {
  24124. source: "./media/characters/erza-bear/dick-vertical.svg"
  24125. }
  24126. },
  24127. },
  24128. [
  24129. {
  24130. name: "Macro",
  24131. height: math.unit(100, "feet"),
  24132. default: true
  24133. },
  24134. ]
  24135. ))
  24136. characterMakers.push(() => makeCharacter(
  24137. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  24138. {
  24139. front: {
  24140. height: math.unit(172, "cm"),
  24141. weight: math.unit(73, "kg"),
  24142. name: "Front",
  24143. image: {
  24144. source: "./media/characters/violet-flor/front.svg",
  24145. extra: 1530 / 1442,
  24146. bottom: 61.9 / 1588.8
  24147. }
  24148. },
  24149. back: {
  24150. height: math.unit(180, "cm"),
  24151. weight: math.unit(73, "kg"),
  24152. name: "Back",
  24153. image: {
  24154. source: "./media/characters/violet-flor/back.svg",
  24155. extra: 1692 / 1630,
  24156. bottom: 20 / 1712
  24157. }
  24158. },
  24159. },
  24160. [
  24161. {
  24162. name: "Normal",
  24163. height: math.unit(172, "cm"),
  24164. default: true
  24165. },
  24166. ]
  24167. ))
  24168. characterMakers.push(() => makeCharacter(
  24169. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  24170. {
  24171. front: {
  24172. height: math.unit(6, "feet"),
  24173. weight: math.unit(220, "lb"),
  24174. name: "Front",
  24175. image: {
  24176. source: "./media/characters/lynn-rhea/front.svg",
  24177. extra: 310 / 273
  24178. }
  24179. },
  24180. back: {
  24181. height: math.unit(6, "feet"),
  24182. weight: math.unit(220, "lb"),
  24183. name: "Back",
  24184. image: {
  24185. source: "./media/characters/lynn-rhea/back.svg",
  24186. extra: 310 / 273
  24187. }
  24188. },
  24189. dicks: {
  24190. height: math.unit(0.9, "feet"),
  24191. name: "Dicks",
  24192. image: {
  24193. source: "./media/characters/lynn-rhea/dicks.svg"
  24194. }
  24195. },
  24196. slit: {
  24197. height: math.unit(0.4, "feet"),
  24198. name: "Slit",
  24199. image: {
  24200. source: "./media/characters/lynn-rhea/slit.svg"
  24201. }
  24202. },
  24203. },
  24204. [
  24205. {
  24206. name: "Micro",
  24207. height: math.unit(1, "inch")
  24208. },
  24209. {
  24210. name: "Macro",
  24211. height: math.unit(60, "feet"),
  24212. default: true
  24213. },
  24214. {
  24215. name: "Megamacro",
  24216. height: math.unit(2, "miles")
  24217. },
  24218. {
  24219. name: "Gigamacro",
  24220. height: math.unit(3, "earths")
  24221. },
  24222. {
  24223. name: "Galactic",
  24224. height: math.unit(0.8, "galaxies")
  24225. },
  24226. ]
  24227. ))
  24228. characterMakers.push(() => makeCharacter(
  24229. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  24230. {
  24231. front: {
  24232. height: math.unit(1600, "feet"),
  24233. weight: math.unit(85758785169, "kg"),
  24234. name: "Front",
  24235. image: {
  24236. source: "./media/characters/valathos/front.svg",
  24237. extra: 1451 / 1339
  24238. }
  24239. },
  24240. },
  24241. [
  24242. {
  24243. name: "Macro",
  24244. height: math.unit(1600, "feet"),
  24245. default: true
  24246. },
  24247. ]
  24248. ))
  24249. characterMakers.push(() => makeCharacter(
  24250. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  24251. {
  24252. front: {
  24253. height: math.unit(7 + 5 / 12, "feet"),
  24254. weight: math.unit(300, "lb"),
  24255. name: "Front",
  24256. image: {
  24257. source: "./media/characters/azula/front.svg",
  24258. extra: 3208 / 2880,
  24259. bottom: 80.2 / 3277
  24260. }
  24261. },
  24262. back: {
  24263. height: math.unit(7 + 5 / 12, "feet"),
  24264. weight: math.unit(300, "lb"),
  24265. name: "Back",
  24266. image: {
  24267. source: "./media/characters/azula/back.svg",
  24268. extra: 3169 / 2822,
  24269. bottom: 150.6 / 3321
  24270. }
  24271. },
  24272. },
  24273. [
  24274. {
  24275. name: "Normal",
  24276. height: math.unit(7 + 5 / 12, "feet"),
  24277. default: true
  24278. },
  24279. {
  24280. name: "Big",
  24281. height: math.unit(20, "feet")
  24282. },
  24283. ]
  24284. ))
  24285. characterMakers.push(() => makeCharacter(
  24286. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  24287. {
  24288. front: {
  24289. height: math.unit(5 + 1 / 12, "feet"),
  24290. weight: math.unit(110, "lb"),
  24291. name: "Front",
  24292. image: {
  24293. source: "./media/characters/rupert/front.svg",
  24294. extra: 1549 / 1495,
  24295. bottom: 54.2 / 1604.4
  24296. }
  24297. },
  24298. },
  24299. [
  24300. {
  24301. name: "Normal",
  24302. height: math.unit(5 + 1 / 12, "feet"),
  24303. default: true
  24304. },
  24305. ]
  24306. ))
  24307. characterMakers.push(() => makeCharacter(
  24308. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  24309. {
  24310. front: {
  24311. height: math.unit(8 + 4 / 12, "feet"),
  24312. weight: math.unit(350, "lb"),
  24313. name: "Front",
  24314. image: {
  24315. source: "./media/characters/sheera-castellar/front.svg",
  24316. extra: 1957 / 1894,
  24317. bottom: 26.97 / 1975.017
  24318. }
  24319. },
  24320. side: {
  24321. height: math.unit(8 + 4 / 12, "feet"),
  24322. weight: math.unit(350, "lb"),
  24323. name: "Side",
  24324. image: {
  24325. source: "./media/characters/sheera-castellar/side.svg",
  24326. extra: 1957 / 1894
  24327. }
  24328. },
  24329. back: {
  24330. height: math.unit(8 + 4 / 12, "feet"),
  24331. weight: math.unit(350, "lb"),
  24332. name: "Back",
  24333. image: {
  24334. source: "./media/characters/sheera-castellar/back.svg",
  24335. extra: 1957 / 1894
  24336. }
  24337. },
  24338. angled: {
  24339. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  24340. weight: math.unit(350, "lb"),
  24341. name: "Angled",
  24342. image: {
  24343. source: "./media/characters/sheera-castellar/angled.svg",
  24344. extra: 1807 / 1707,
  24345. bottom: 68 / 1875
  24346. }
  24347. },
  24348. genitals: {
  24349. height: math.unit(2.2, "feet"),
  24350. name: "Genitals",
  24351. image: {
  24352. source: "./media/characters/sheera-castellar/genitals.svg"
  24353. }
  24354. },
  24355. taur: {
  24356. height: math.unit(10 + 6/12, "feet"),
  24357. name: "Taur",
  24358. image: {
  24359. source: "./media/characters/sheera-castellar/taur.svg",
  24360. extra: 2017/1909,
  24361. bottom: 185/2202
  24362. }
  24363. },
  24364. },
  24365. [
  24366. {
  24367. name: "Normal",
  24368. height: math.unit(8 + 4 / 12, "feet")
  24369. },
  24370. {
  24371. name: "Macro",
  24372. height: math.unit(150, "feet"),
  24373. default: true
  24374. },
  24375. {
  24376. name: "Macro+",
  24377. height: math.unit(800, "feet")
  24378. },
  24379. ]
  24380. ))
  24381. characterMakers.push(() => makeCharacter(
  24382. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  24383. {
  24384. front: {
  24385. height: math.unit(6, "feet"),
  24386. weight: math.unit(150, "lb"),
  24387. name: "Front",
  24388. image: {
  24389. source: "./media/characters/jaipur/front.svg",
  24390. extra: 3860 / 3731,
  24391. bottom: 287 / 4140
  24392. }
  24393. },
  24394. back: {
  24395. height: math.unit(6, "feet"),
  24396. weight: math.unit(150, "lb"),
  24397. name: "Back",
  24398. image: {
  24399. source: "./media/characters/jaipur/back.svg",
  24400. extra: 1637/1561,
  24401. bottom: 154/1791
  24402. }
  24403. },
  24404. },
  24405. [
  24406. {
  24407. name: "Normal",
  24408. height: math.unit(1.85, "meters"),
  24409. default: true
  24410. },
  24411. {
  24412. name: "Macro",
  24413. height: math.unit(150, "meters")
  24414. },
  24415. {
  24416. name: "Macro+",
  24417. height: math.unit(0.5, "miles")
  24418. },
  24419. {
  24420. name: "Macro++",
  24421. height: math.unit(2.5, "miles")
  24422. },
  24423. {
  24424. name: "Macro+++",
  24425. height: math.unit(12, "miles")
  24426. },
  24427. {
  24428. name: "Macro++++",
  24429. height: math.unit(120, "miles")
  24430. },
  24431. {
  24432. name: "Macro+++++",
  24433. height: math.unit(1200, "miles")
  24434. },
  24435. ]
  24436. ))
  24437. characterMakers.push(() => makeCharacter(
  24438. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  24439. {
  24440. front: {
  24441. height: math.unit(6, "feet"),
  24442. weight: math.unit(150, "lb"),
  24443. name: "Front",
  24444. image: {
  24445. source: "./media/characters/sheila-wolf/front.svg",
  24446. extra: 1931 / 1808,
  24447. bottom: 29.5 / 1960
  24448. }
  24449. },
  24450. dick: {
  24451. height: math.unit(1.464, "feet"),
  24452. name: "Dick",
  24453. image: {
  24454. source: "./media/characters/sheila-wolf/dick.svg"
  24455. }
  24456. },
  24457. muzzle: {
  24458. height: math.unit(0.513, "feet"),
  24459. name: "Muzzle",
  24460. image: {
  24461. source: "./media/characters/sheila-wolf/muzzle.svg"
  24462. }
  24463. },
  24464. },
  24465. [
  24466. {
  24467. name: "Macro",
  24468. height: math.unit(70, "feet"),
  24469. default: true
  24470. },
  24471. ]
  24472. ))
  24473. characterMakers.push(() => makeCharacter(
  24474. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  24475. {
  24476. front: {
  24477. height: math.unit(32, "meters"),
  24478. weight: math.unit(300000, "kg"),
  24479. name: "Front",
  24480. image: {
  24481. source: "./media/characters/almor/front.svg",
  24482. extra: 1408 / 1322,
  24483. bottom: 94.6 / 1506.5
  24484. }
  24485. },
  24486. },
  24487. [
  24488. {
  24489. name: "Macro",
  24490. height: math.unit(32, "meters"),
  24491. default: true
  24492. },
  24493. ]
  24494. ))
  24495. characterMakers.push(() => makeCharacter(
  24496. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  24497. {
  24498. front: {
  24499. height: math.unit(7, "feet"),
  24500. weight: math.unit(200, "lb"),
  24501. name: "Front",
  24502. image: {
  24503. source: "./media/characters/silver/front.svg",
  24504. extra: 472.1 / 450.5,
  24505. bottom: 26.5 / 499.424
  24506. }
  24507. },
  24508. },
  24509. [
  24510. {
  24511. name: "Normal",
  24512. height: math.unit(7, "feet"),
  24513. default: true
  24514. },
  24515. {
  24516. name: "Macro",
  24517. height: math.unit(800, "feet")
  24518. },
  24519. {
  24520. name: "Megamacro",
  24521. height: math.unit(250, "miles")
  24522. },
  24523. ]
  24524. ))
  24525. characterMakers.push(() => makeCharacter(
  24526. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  24527. {
  24528. front: {
  24529. height: math.unit(6, "feet"),
  24530. weight: math.unit(150, "lb"),
  24531. name: "Front",
  24532. image: {
  24533. source: "./media/characters/pliskin/front.svg",
  24534. extra: 1469 / 1359,
  24535. bottom: 70 / 1540
  24536. }
  24537. },
  24538. },
  24539. [
  24540. {
  24541. name: "Micro",
  24542. height: math.unit(3, "inches")
  24543. },
  24544. {
  24545. name: "Normal",
  24546. height: math.unit(5 + 11 / 12, "feet"),
  24547. default: true
  24548. },
  24549. {
  24550. name: "Macro",
  24551. height: math.unit(120, "feet")
  24552. },
  24553. ]
  24554. ))
  24555. characterMakers.push(() => makeCharacter(
  24556. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  24557. {
  24558. front: {
  24559. height: math.unit(6, "feet"),
  24560. weight: math.unit(150, "lb"),
  24561. name: "Front",
  24562. image: {
  24563. source: "./media/characters/sammy/front.svg",
  24564. extra: 1193 / 1089,
  24565. bottom: 30.5 / 1226
  24566. }
  24567. },
  24568. },
  24569. [
  24570. {
  24571. name: "Macro",
  24572. height: math.unit(1700, "feet"),
  24573. default: true
  24574. },
  24575. {
  24576. name: "Examacro",
  24577. height: math.unit(2.5e9, "lightyears")
  24578. },
  24579. ]
  24580. ))
  24581. characterMakers.push(() => makeCharacter(
  24582. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  24583. {
  24584. front: {
  24585. height: math.unit(21, "meters"),
  24586. weight: math.unit(12, "tonnes"),
  24587. name: "Front",
  24588. image: {
  24589. source: "./media/characters/kuru/front.svg",
  24590. extra: 4301 / 3785,
  24591. bottom: 371.3 / 4691
  24592. }
  24593. },
  24594. },
  24595. [
  24596. {
  24597. name: "Macro",
  24598. height: math.unit(21, "meters"),
  24599. default: true
  24600. },
  24601. ]
  24602. ))
  24603. characterMakers.push(() => makeCharacter(
  24604. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  24605. {
  24606. front: {
  24607. height: math.unit(23, "meters"),
  24608. weight: math.unit(12.2, "tonnes"),
  24609. name: "Front",
  24610. image: {
  24611. source: "./media/characters/rakka/front.svg",
  24612. extra: 4670 / 4169,
  24613. bottom: 301 / 4968.7
  24614. }
  24615. },
  24616. },
  24617. [
  24618. {
  24619. name: "Macro",
  24620. height: math.unit(23, "meters"),
  24621. default: true
  24622. },
  24623. ]
  24624. ))
  24625. characterMakers.push(() => makeCharacter(
  24626. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  24627. {
  24628. front: {
  24629. height: math.unit(6, "feet"),
  24630. weight: math.unit(150, "lb"),
  24631. name: "Front",
  24632. image: {
  24633. source: "./media/characters/rhys-feline/front.svg",
  24634. extra: 2488 / 2308,
  24635. bottom: 35.67 / 2519.19
  24636. }
  24637. },
  24638. },
  24639. [
  24640. {
  24641. name: "Really Small",
  24642. height: math.unit(1, "nm")
  24643. },
  24644. {
  24645. name: "Micro",
  24646. height: math.unit(4, "inches")
  24647. },
  24648. {
  24649. name: "Normal",
  24650. height: math.unit(4 + 10 / 12, "feet"),
  24651. default: true
  24652. },
  24653. {
  24654. name: "Macro",
  24655. height: math.unit(100, "feet")
  24656. },
  24657. {
  24658. name: "Megamacto",
  24659. height: math.unit(50, "miles")
  24660. },
  24661. ]
  24662. ))
  24663. characterMakers.push(() => makeCharacter(
  24664. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  24665. {
  24666. side: {
  24667. height: math.unit(30, "feet"),
  24668. weight: math.unit(35000, "kg"),
  24669. name: "Side",
  24670. image: {
  24671. source: "./media/characters/alydar/side.svg",
  24672. extra: 234 / 222,
  24673. bottom: 6.5 / 241
  24674. }
  24675. },
  24676. front: {
  24677. height: math.unit(30, "feet"),
  24678. weight: math.unit(35000, "kg"),
  24679. name: "Front",
  24680. image: {
  24681. source: "./media/characters/alydar/front.svg",
  24682. extra: 223.37 / 210.2,
  24683. bottom: 22.3 / 246.76
  24684. }
  24685. },
  24686. top: {
  24687. height: math.unit(64.54, "feet"),
  24688. weight: math.unit(35000, "kg"),
  24689. name: "Top",
  24690. image: {
  24691. source: "./media/characters/alydar/top.svg"
  24692. }
  24693. },
  24694. anthro: {
  24695. height: math.unit(30, "feet"),
  24696. weight: math.unit(9000, "kg"),
  24697. name: "Anthro",
  24698. image: {
  24699. source: "./media/characters/alydar/anthro.svg",
  24700. extra: 432 / 421,
  24701. bottom: 7.18 / 440
  24702. }
  24703. },
  24704. maw: {
  24705. height: math.unit(11.693, "feet"),
  24706. name: "Maw",
  24707. image: {
  24708. source: "./media/characters/alydar/maw.svg"
  24709. }
  24710. },
  24711. head: {
  24712. height: math.unit(11.693, "feet"),
  24713. name: "Head",
  24714. image: {
  24715. source: "./media/characters/alydar/head.svg"
  24716. }
  24717. },
  24718. headAlt: {
  24719. height: math.unit(12.861, "feet"),
  24720. name: "Head (Alt)",
  24721. image: {
  24722. source: "./media/characters/alydar/head-alt.svg"
  24723. }
  24724. },
  24725. wing: {
  24726. height: math.unit(20.712, "feet"),
  24727. name: "Wing",
  24728. image: {
  24729. source: "./media/characters/alydar/wing.svg"
  24730. }
  24731. },
  24732. wingFeather: {
  24733. height: math.unit(9.662, "feet"),
  24734. name: "Wing Feather",
  24735. image: {
  24736. source: "./media/characters/alydar/wing-feather.svg"
  24737. }
  24738. },
  24739. countourFeather: {
  24740. height: math.unit(4.154, "feet"),
  24741. name: "Contour Feather",
  24742. image: {
  24743. source: "./media/characters/alydar/contour-feather.svg"
  24744. }
  24745. },
  24746. },
  24747. [
  24748. {
  24749. name: "Diplomatic",
  24750. height: math.unit(13, "feet"),
  24751. default: true
  24752. },
  24753. {
  24754. name: "Small",
  24755. height: math.unit(30, "feet")
  24756. },
  24757. {
  24758. name: "Normal",
  24759. height: math.unit(95, "feet"),
  24760. default: true
  24761. },
  24762. {
  24763. name: "Large",
  24764. height: math.unit(285, "feet")
  24765. },
  24766. {
  24767. name: "Incomprehensible",
  24768. height: math.unit(450, "megameters")
  24769. },
  24770. ]
  24771. ))
  24772. characterMakers.push(() => makeCharacter(
  24773. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  24774. {
  24775. side: {
  24776. height: math.unit(11, "feet"),
  24777. weight: math.unit(1750, "kg"),
  24778. name: "Side",
  24779. image: {
  24780. source: "./media/characters/selicia/side.svg",
  24781. extra: 440 / 396,
  24782. bottom: 24.8 / 465.979
  24783. }
  24784. },
  24785. maw: {
  24786. height: math.unit(4.665, "feet"),
  24787. name: "Maw",
  24788. image: {
  24789. source: "./media/characters/selicia/maw.svg"
  24790. }
  24791. },
  24792. },
  24793. [
  24794. {
  24795. name: "Normal",
  24796. height: math.unit(11, "feet"),
  24797. default: true
  24798. },
  24799. ]
  24800. ))
  24801. characterMakers.push(() => makeCharacter(
  24802. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  24803. {
  24804. side: {
  24805. height: math.unit(2 + 6 / 12, "feet"),
  24806. weight: math.unit(30, "lb"),
  24807. name: "Side",
  24808. image: {
  24809. source: "./media/characters/layla/side.svg",
  24810. extra: 244 / 188,
  24811. bottom: 18.2 / 262.1
  24812. }
  24813. },
  24814. back: {
  24815. height: math.unit(2 + 6 / 12, "feet"),
  24816. weight: math.unit(30, "lb"),
  24817. name: "Back",
  24818. image: {
  24819. source: "./media/characters/layla/back.svg",
  24820. extra: 308 / 241.5,
  24821. bottom: 8.9 / 316.8
  24822. }
  24823. },
  24824. cumming: {
  24825. height: math.unit(2 + 6 / 12, "feet"),
  24826. weight: math.unit(30, "lb"),
  24827. name: "Cumming",
  24828. image: {
  24829. source: "./media/characters/layla/cumming.svg",
  24830. extra: 342 / 279,
  24831. bottom: 595 / 938
  24832. }
  24833. },
  24834. dickFlaccid: {
  24835. height: math.unit(2.595, "feet"),
  24836. name: "Flaccid Genitals",
  24837. image: {
  24838. source: "./media/characters/layla/dick-flaccid.svg"
  24839. }
  24840. },
  24841. dickErect: {
  24842. height: math.unit(2.359, "feet"),
  24843. name: "Erect Genitals",
  24844. image: {
  24845. source: "./media/characters/layla/dick-erect.svg"
  24846. }
  24847. },
  24848. dragon: {
  24849. height: math.unit(40, "feet"),
  24850. name: "Dragon",
  24851. image: {
  24852. source: "./media/characters/layla/dragon.svg",
  24853. extra: 610/535,
  24854. bottom: 367/977
  24855. }
  24856. },
  24857. taur: {
  24858. height: math.unit(30, "feet"),
  24859. name: "Taur",
  24860. image: {
  24861. source: "./media/characters/layla/taur.svg",
  24862. extra: 1268/1199,
  24863. bottom: 112/1380
  24864. }
  24865. },
  24866. },
  24867. [
  24868. {
  24869. name: "Micro",
  24870. height: math.unit(1, "inch")
  24871. },
  24872. {
  24873. name: "Small",
  24874. height: math.unit(1, "foot")
  24875. },
  24876. {
  24877. name: "Normal",
  24878. height: math.unit(2 + 6 / 12, "feet"),
  24879. default: true
  24880. },
  24881. {
  24882. name: "Macro",
  24883. height: math.unit(200, "feet")
  24884. },
  24885. {
  24886. name: "Megamacro",
  24887. height: math.unit(1000, "miles")
  24888. },
  24889. {
  24890. name: "Planetary",
  24891. height: math.unit(8000, "miles")
  24892. },
  24893. {
  24894. name: "True Layla",
  24895. height: math.unit(200000 * 7, "multiverses")
  24896. },
  24897. ]
  24898. ))
  24899. characterMakers.push(() => makeCharacter(
  24900. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  24901. {
  24902. back: {
  24903. height: math.unit(10.5, "feet"),
  24904. weight: math.unit(800, "lb"),
  24905. name: "Back",
  24906. image: {
  24907. source: "./media/characters/knox/back.svg",
  24908. extra: 1486 / 1089,
  24909. bottom: 107 / 1601.4
  24910. }
  24911. },
  24912. side: {
  24913. height: math.unit(10.5, "feet"),
  24914. weight: math.unit(800, "lb"),
  24915. name: "Side",
  24916. image: {
  24917. source: "./media/characters/knox/side.svg",
  24918. extra: 244 / 218,
  24919. bottom: 14 / 260
  24920. }
  24921. },
  24922. },
  24923. [
  24924. {
  24925. name: "Compact",
  24926. height: math.unit(10.5, "feet"),
  24927. default: true
  24928. },
  24929. {
  24930. name: "Dynamax",
  24931. height: math.unit(210, "feet")
  24932. },
  24933. {
  24934. name: "Full Macro",
  24935. height: math.unit(850, "feet")
  24936. },
  24937. ]
  24938. ))
  24939. characterMakers.push(() => makeCharacter(
  24940. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  24941. {
  24942. front: {
  24943. height: math.unit(28, "feet"),
  24944. weight: math.unit(10500, "lb"),
  24945. name: "Front",
  24946. image: {
  24947. source: "./media/characters/kayda/front.svg",
  24948. extra: 1536 / 1428,
  24949. bottom: 68.7 / 1603
  24950. }
  24951. },
  24952. back: {
  24953. height: math.unit(28, "feet"),
  24954. weight: math.unit(10500, "lb"),
  24955. name: "Back",
  24956. image: {
  24957. source: "./media/characters/kayda/back.svg",
  24958. extra: 1557 / 1464,
  24959. bottom: 39.5 / 1597.49
  24960. }
  24961. },
  24962. dick: {
  24963. height: math.unit(3.858, "feet"),
  24964. name: "Dick",
  24965. image: {
  24966. source: "./media/characters/kayda/dick.svg"
  24967. }
  24968. },
  24969. },
  24970. [
  24971. {
  24972. name: "Macro",
  24973. height: math.unit(28, "feet"),
  24974. default: true
  24975. },
  24976. ]
  24977. ))
  24978. characterMakers.push(() => makeCharacter(
  24979. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  24980. {
  24981. front: {
  24982. height: math.unit(10 + 11 / 12, "feet"),
  24983. weight: math.unit(1400, "lb"),
  24984. name: "Front",
  24985. image: {
  24986. source: "./media/characters/brian/front.svg",
  24987. extra: 737 / 692,
  24988. bottom: 55.4 / 785
  24989. }
  24990. },
  24991. },
  24992. [
  24993. {
  24994. name: "Normal",
  24995. height: math.unit(10 + 11 / 12, "feet"),
  24996. default: true
  24997. },
  24998. ]
  24999. ))
  25000. characterMakers.push(() => makeCharacter(
  25001. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  25002. {
  25003. front: {
  25004. height: math.unit(5 + 8 / 12, "feet"),
  25005. weight: math.unit(140, "lb"),
  25006. name: "Front",
  25007. image: {
  25008. source: "./media/characters/khemri/front.svg",
  25009. extra: 4780 / 4059,
  25010. bottom: 80.1 / 4859.25
  25011. }
  25012. },
  25013. },
  25014. [
  25015. {
  25016. name: "Micro",
  25017. height: math.unit(6, "inches")
  25018. },
  25019. {
  25020. name: "Normal",
  25021. height: math.unit(5 + 8 / 12, "feet"),
  25022. default: true
  25023. },
  25024. ]
  25025. ))
  25026. characterMakers.push(() => makeCharacter(
  25027. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  25028. {
  25029. front: {
  25030. height: math.unit(13, "feet"),
  25031. weight: math.unit(1700, "lb"),
  25032. name: "Front",
  25033. image: {
  25034. source: "./media/characters/felix-braveheart/front.svg",
  25035. extra: 1222 / 1157,
  25036. bottom: 53.2 / 1280
  25037. }
  25038. },
  25039. back: {
  25040. height: math.unit(13, "feet"),
  25041. weight: math.unit(1700, "lb"),
  25042. name: "Back",
  25043. image: {
  25044. source: "./media/characters/felix-braveheart/back.svg",
  25045. extra: 1277 / 1203,
  25046. bottom: 50.2 / 1327
  25047. }
  25048. },
  25049. feral: {
  25050. height: math.unit(6, "feet"),
  25051. weight: math.unit(400, "lb"),
  25052. name: "Feral",
  25053. image: {
  25054. source: "./media/characters/felix-braveheart/feral.svg",
  25055. extra: 682 / 625,
  25056. bottom: 6.9 / 688
  25057. }
  25058. },
  25059. },
  25060. [
  25061. {
  25062. name: "Normal",
  25063. height: math.unit(13, "feet"),
  25064. default: true
  25065. },
  25066. ]
  25067. ))
  25068. characterMakers.push(() => makeCharacter(
  25069. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  25070. {
  25071. side: {
  25072. height: math.unit(5 + 11 / 12, "feet"),
  25073. weight: math.unit(1400, "lb"),
  25074. name: "Side",
  25075. image: {
  25076. source: "./media/characters/shadow-blade/side.svg",
  25077. extra: 1726 / 1267,
  25078. bottom: 58.4 / 1785
  25079. }
  25080. },
  25081. },
  25082. [
  25083. {
  25084. name: "Normal",
  25085. height: math.unit(5 + 11 / 12, "feet"),
  25086. default: true
  25087. },
  25088. ]
  25089. ))
  25090. characterMakers.push(() => makeCharacter(
  25091. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  25092. {
  25093. front: {
  25094. height: math.unit(1 + 6 / 12, "feet"),
  25095. weight: math.unit(25, "lb"),
  25096. name: "Front",
  25097. image: {
  25098. source: "./media/characters/karla-halldor/front.svg",
  25099. extra: 1459 / 1383,
  25100. bottom: 12 / 1472
  25101. }
  25102. },
  25103. },
  25104. [
  25105. {
  25106. name: "Normal",
  25107. height: math.unit(1 + 6 / 12, "feet"),
  25108. default: true
  25109. },
  25110. ]
  25111. ))
  25112. characterMakers.push(() => makeCharacter(
  25113. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  25114. {
  25115. front: {
  25116. height: math.unit(6 + 2 / 12, "feet"),
  25117. weight: math.unit(160, "lb"),
  25118. name: "Front",
  25119. image: {
  25120. source: "./media/characters/ariam/front.svg",
  25121. extra: 1073/976,
  25122. bottom: 52/1125
  25123. }
  25124. },
  25125. back: {
  25126. height: math.unit(6 + 2/12, "feet"),
  25127. weight: math.unit(160, "lb"),
  25128. name: "Back",
  25129. image: {
  25130. source: "./media/characters/ariam/back.svg",
  25131. extra: 1103/1023,
  25132. bottom: 9/1112
  25133. }
  25134. },
  25135. dressed: {
  25136. height: math.unit(6 + 2/12, "feet"),
  25137. weight: math.unit(160, "lb"),
  25138. name: "Dressed",
  25139. image: {
  25140. source: "./media/characters/ariam/dressed.svg",
  25141. extra: 1099/1009,
  25142. bottom: 25/1124
  25143. }
  25144. },
  25145. squatting: {
  25146. height: math.unit(4.1, "feet"),
  25147. weight: math.unit(160, "lb"),
  25148. name: "Squatting",
  25149. image: {
  25150. source: "./media/characters/ariam/squatting.svg",
  25151. extra: 2617 / 2112,
  25152. bottom: 61.2 / 2681,
  25153. }
  25154. },
  25155. },
  25156. [
  25157. {
  25158. name: "Normal",
  25159. height: math.unit(6 + 2 / 12, "feet"),
  25160. default: true
  25161. },
  25162. {
  25163. name: "Normal+",
  25164. height: math.unit(4, "meters")
  25165. },
  25166. {
  25167. name: "Macro",
  25168. height: math.unit(50, "meters")
  25169. },
  25170. {
  25171. name: "Macro+",
  25172. height: math.unit(100, "meters")
  25173. },
  25174. {
  25175. name: "Megamacro",
  25176. height: math.unit(20, "km")
  25177. },
  25178. {
  25179. name: "Caretaker",
  25180. height: math.unit(444, "megameters")
  25181. },
  25182. ]
  25183. ))
  25184. characterMakers.push(() => makeCharacter(
  25185. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  25186. {
  25187. front: {
  25188. height: math.unit(1.67, "meters"),
  25189. weight: math.unit(140, "lb"),
  25190. name: "Front",
  25191. image: {
  25192. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  25193. extra: 438 / 410,
  25194. bottom: 0.75 / 439
  25195. }
  25196. },
  25197. },
  25198. [
  25199. {
  25200. name: "Shrunken",
  25201. height: math.unit(7.6, "cm")
  25202. },
  25203. {
  25204. name: "Human Scale",
  25205. height: math.unit(1.67, "meters")
  25206. },
  25207. {
  25208. name: "Wolxi Scale",
  25209. height: math.unit(36.7, "meters"),
  25210. default: true
  25211. },
  25212. ]
  25213. ))
  25214. characterMakers.push(() => makeCharacter(
  25215. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  25216. {
  25217. front: {
  25218. height: math.unit(1.73, "meters"),
  25219. weight: math.unit(240, "lb"),
  25220. name: "Front",
  25221. image: {
  25222. source: "./media/characters/izue-two-mothers/front.svg",
  25223. extra: 469 / 437,
  25224. bottom: 1.24 / 470.6
  25225. }
  25226. },
  25227. },
  25228. [
  25229. {
  25230. name: "Shrunken",
  25231. height: math.unit(7.86, "cm")
  25232. },
  25233. {
  25234. name: "Human Scale",
  25235. height: math.unit(1.73, "meters")
  25236. },
  25237. {
  25238. name: "Wolxi Scale",
  25239. height: math.unit(38, "meters"),
  25240. default: true
  25241. },
  25242. ]
  25243. ))
  25244. characterMakers.push(() => makeCharacter(
  25245. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  25246. {
  25247. front: {
  25248. height: math.unit(1.55, "meters"),
  25249. weight: math.unit(120, "lb"),
  25250. name: "Front",
  25251. image: {
  25252. source: "./media/characters/teeku-love-shack/front.svg",
  25253. extra: 387 / 362,
  25254. bottom: 1.51 / 388
  25255. }
  25256. },
  25257. },
  25258. [
  25259. {
  25260. name: "Shrunken",
  25261. height: math.unit(7, "cm")
  25262. },
  25263. {
  25264. name: "Human Scale",
  25265. height: math.unit(1.55, "meters")
  25266. },
  25267. {
  25268. name: "Wolxi Scale",
  25269. height: math.unit(34.1, "meters"),
  25270. default: true
  25271. },
  25272. ]
  25273. ))
  25274. characterMakers.push(() => makeCharacter(
  25275. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  25276. {
  25277. front: {
  25278. height: math.unit(1.83, "meters"),
  25279. weight: math.unit(135, "lb"),
  25280. name: "Front",
  25281. image: {
  25282. source: "./media/characters/dejma-the-red/front.svg",
  25283. extra: 480 / 458,
  25284. bottom: 1.8 / 482
  25285. }
  25286. },
  25287. },
  25288. [
  25289. {
  25290. name: "Shrunken",
  25291. height: math.unit(8.3, "cm")
  25292. },
  25293. {
  25294. name: "Human Scale",
  25295. height: math.unit(1.83, "meters")
  25296. },
  25297. {
  25298. name: "Wolxi Scale",
  25299. height: math.unit(40, "meters"),
  25300. default: true
  25301. },
  25302. ]
  25303. ))
  25304. characterMakers.push(() => makeCharacter(
  25305. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  25306. {
  25307. front: {
  25308. height: math.unit(1.78, "meters"),
  25309. weight: math.unit(65, "kg"),
  25310. name: "Front",
  25311. image: {
  25312. source: "./media/characters/aki/front.svg",
  25313. extra: 452 / 415
  25314. }
  25315. },
  25316. frontNsfw: {
  25317. height: math.unit(1.78, "meters"),
  25318. weight: math.unit(65, "kg"),
  25319. name: "Front (NSFW)",
  25320. image: {
  25321. source: "./media/characters/aki/front-nsfw.svg",
  25322. extra: 452 / 415
  25323. }
  25324. },
  25325. back: {
  25326. height: math.unit(1.78, "meters"),
  25327. weight: math.unit(65, "kg"),
  25328. name: "Back",
  25329. image: {
  25330. source: "./media/characters/aki/back.svg",
  25331. extra: 452 / 415
  25332. }
  25333. },
  25334. rump: {
  25335. height: math.unit(2.05, "feet"),
  25336. name: "Rump",
  25337. image: {
  25338. source: "./media/characters/aki/rump.svg"
  25339. }
  25340. },
  25341. dick: {
  25342. height: math.unit(0.95, "feet"),
  25343. name: "Dick",
  25344. image: {
  25345. source: "./media/characters/aki/dick.svg"
  25346. }
  25347. },
  25348. },
  25349. [
  25350. {
  25351. name: "Micro",
  25352. height: math.unit(15, "cm")
  25353. },
  25354. {
  25355. name: "Normal",
  25356. height: math.unit(178, "cm"),
  25357. default: true
  25358. },
  25359. {
  25360. name: "Macro",
  25361. height: math.unit(214, "m")
  25362. },
  25363. {
  25364. name: "Macro+",
  25365. height: math.unit(534, "m")
  25366. },
  25367. ]
  25368. ))
  25369. characterMakers.push(() => makeCharacter(
  25370. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  25371. {
  25372. front: {
  25373. height: math.unit(5 + 5 / 12, "feet"),
  25374. weight: math.unit(120, "lb"),
  25375. name: "Front",
  25376. image: {
  25377. source: "./media/characters/ari/front.svg",
  25378. extra: 1550/1471,
  25379. bottom: 39/1589
  25380. }
  25381. },
  25382. },
  25383. [
  25384. {
  25385. name: "Normal",
  25386. height: math.unit(5 + 5 / 12, "feet")
  25387. },
  25388. {
  25389. name: "Macro",
  25390. height: math.unit(100, "feet"),
  25391. default: true
  25392. },
  25393. {
  25394. name: "Megamacro",
  25395. height: math.unit(100, "miles")
  25396. },
  25397. {
  25398. name: "Gigamacro",
  25399. height: math.unit(80000, "miles")
  25400. },
  25401. ]
  25402. ))
  25403. characterMakers.push(() => makeCharacter(
  25404. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  25405. {
  25406. side: {
  25407. height: math.unit(9, "feet"),
  25408. weight: math.unit(400, "kg"),
  25409. name: "Side",
  25410. image: {
  25411. source: "./media/characters/bolt/side.svg",
  25412. extra: 1126 / 896,
  25413. bottom: 60 / 1187.3,
  25414. }
  25415. },
  25416. },
  25417. [
  25418. {
  25419. name: "Micro",
  25420. height: math.unit(5, "inches")
  25421. },
  25422. {
  25423. name: "Normal",
  25424. height: math.unit(9, "feet"),
  25425. default: true
  25426. },
  25427. {
  25428. name: "Macro",
  25429. height: math.unit(700, "feet")
  25430. },
  25431. {
  25432. name: "Max Size",
  25433. height: math.unit(1.52e22, "yottameters")
  25434. },
  25435. ]
  25436. ))
  25437. characterMakers.push(() => makeCharacter(
  25438. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  25439. {
  25440. front: {
  25441. height: math.unit(4.3, "meters"),
  25442. weight: math.unit(3, "tons"),
  25443. name: "Front",
  25444. image: {
  25445. source: "./media/characters/draekon-sylviar/front.svg",
  25446. extra: 2072/1512,
  25447. bottom: 74/2146
  25448. }
  25449. },
  25450. back: {
  25451. height: math.unit(4.3, "meters"),
  25452. weight: math.unit(3, "tons"),
  25453. name: "Back",
  25454. image: {
  25455. source: "./media/characters/draekon-sylviar/back.svg",
  25456. extra: 1639/1483,
  25457. bottom: 41/1680
  25458. }
  25459. },
  25460. feral: {
  25461. height: math.unit(1.15, "meters"),
  25462. weight: math.unit(3, "tons"),
  25463. name: "Feral",
  25464. image: {
  25465. source: "./media/characters/draekon-sylviar/feral.svg",
  25466. extra: 1033/395,
  25467. bottom: 130/1163
  25468. }
  25469. },
  25470. maw: {
  25471. height: math.unit(1.3, "meters"),
  25472. name: "Maw",
  25473. image: {
  25474. source: "./media/characters/draekon-sylviar/maw.svg"
  25475. }
  25476. },
  25477. mawSeparated: {
  25478. height: math.unit(1.53, "meters"),
  25479. name: "Separated Maw",
  25480. image: {
  25481. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  25482. }
  25483. },
  25484. tail: {
  25485. height: math.unit(1.15, "meters"),
  25486. name: "Tail",
  25487. image: {
  25488. source: "./media/characters/draekon-sylviar/tail.svg"
  25489. }
  25490. },
  25491. tailDick: {
  25492. height: math.unit(1.15, "meters"),
  25493. name: "Tail (Dick)",
  25494. image: {
  25495. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  25496. }
  25497. },
  25498. tailDickSeparated: {
  25499. height: math.unit(1.19, "meters"),
  25500. name: "Tail (Separated Dick)",
  25501. image: {
  25502. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  25503. }
  25504. },
  25505. slit: {
  25506. height: math.unit(1, "meters"),
  25507. name: "Slit",
  25508. image: {
  25509. source: "./media/characters/draekon-sylviar/slit.svg"
  25510. }
  25511. },
  25512. dick: {
  25513. height: math.unit(1.15, "meters"),
  25514. name: "Dick",
  25515. image: {
  25516. source: "./media/characters/draekon-sylviar/dick.svg"
  25517. }
  25518. },
  25519. dickSeparated: {
  25520. height: math.unit(1.1, "meters"),
  25521. name: "Separated Dick",
  25522. image: {
  25523. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  25524. }
  25525. },
  25526. sheath: {
  25527. height: math.unit(1.15, "meters"),
  25528. name: "Sheath",
  25529. image: {
  25530. source: "./media/characters/draekon-sylviar/sheath.svg"
  25531. }
  25532. },
  25533. },
  25534. [
  25535. {
  25536. name: "Small",
  25537. height: math.unit(4.53 / 2, "meters"),
  25538. default: true
  25539. },
  25540. {
  25541. name: "Normal",
  25542. height: math.unit(4.53, "meters"),
  25543. default: true
  25544. },
  25545. {
  25546. name: "Large",
  25547. height: math.unit(4.53 * 2, "meters"),
  25548. },
  25549. ]
  25550. ))
  25551. characterMakers.push(() => makeCharacter(
  25552. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  25553. {
  25554. front: {
  25555. height: math.unit(6 + 2 / 12, "feet"),
  25556. weight: math.unit(180, "lb"),
  25557. name: "Front",
  25558. image: {
  25559. source: "./media/characters/brawler/front.svg",
  25560. extra: 3301 / 3027,
  25561. bottom: 138 / 3439
  25562. }
  25563. },
  25564. },
  25565. [
  25566. {
  25567. name: "Normal",
  25568. height: math.unit(6 + 2 / 12, "feet"),
  25569. default: true
  25570. },
  25571. ]
  25572. ))
  25573. characterMakers.push(() => makeCharacter(
  25574. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  25575. {
  25576. front: {
  25577. height: math.unit(11, "feet"),
  25578. weight: math.unit(1000, "lb"),
  25579. name: "Front",
  25580. image: {
  25581. source: "./media/characters/alex/front.svg",
  25582. bottom: 44.5 / 620
  25583. }
  25584. },
  25585. },
  25586. [
  25587. {
  25588. name: "Micro",
  25589. height: math.unit(5, "inches")
  25590. },
  25591. {
  25592. name: "Normal",
  25593. height: math.unit(11, "feet"),
  25594. default: true
  25595. },
  25596. {
  25597. name: "Macro",
  25598. height: math.unit(9.5e9, "feet")
  25599. },
  25600. {
  25601. name: "Max Size",
  25602. height: math.unit(1.4e283, "yottameters")
  25603. },
  25604. ]
  25605. ))
  25606. characterMakers.push(() => makeCharacter(
  25607. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  25608. {
  25609. female: {
  25610. height: math.unit(29.9, "m"),
  25611. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  25612. name: "Female",
  25613. image: {
  25614. source: "./media/characters/zenari/female.svg",
  25615. extra: 3281.6 / 3217,
  25616. bottom: 72.2 / 3353
  25617. }
  25618. },
  25619. male: {
  25620. height: math.unit(27.7, "m"),
  25621. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  25622. name: "Male",
  25623. image: {
  25624. source: "./media/characters/zenari/male.svg",
  25625. extra: 3008 / 2991,
  25626. bottom: 54.6 / 3069
  25627. }
  25628. },
  25629. },
  25630. [
  25631. {
  25632. name: "Macro",
  25633. height: math.unit(29.7, "meters"),
  25634. default: true
  25635. },
  25636. ]
  25637. ))
  25638. characterMakers.push(() => makeCharacter(
  25639. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  25640. {
  25641. female: {
  25642. height: math.unit(23.8, "m"),
  25643. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  25644. name: "Female",
  25645. image: {
  25646. source: "./media/characters/mactarian/female.svg",
  25647. extra: 2662 / 2569,
  25648. bottom: 73 / 2736
  25649. }
  25650. },
  25651. male: {
  25652. height: math.unit(23.8, "m"),
  25653. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  25654. name: "Male",
  25655. image: {
  25656. source: "./media/characters/mactarian/male.svg",
  25657. extra: 2673 / 2600,
  25658. bottom: 76 / 2750
  25659. }
  25660. },
  25661. },
  25662. [
  25663. {
  25664. name: "Macro",
  25665. height: math.unit(23.8, "meters"),
  25666. default: true
  25667. },
  25668. ]
  25669. ))
  25670. characterMakers.push(() => makeCharacter(
  25671. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  25672. {
  25673. female: {
  25674. height: math.unit(19.3, "m"),
  25675. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  25676. name: "Female",
  25677. image: {
  25678. source: "./media/characters/umok/female.svg",
  25679. extra: 2186 / 2078,
  25680. bottom: 87 / 2277
  25681. }
  25682. },
  25683. male: {
  25684. height: math.unit(19.5, "m"),
  25685. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  25686. name: "Male",
  25687. image: {
  25688. source: "./media/characters/umok/male.svg",
  25689. extra: 2233 / 2140,
  25690. bottom: 24.4 / 2258
  25691. }
  25692. },
  25693. },
  25694. [
  25695. {
  25696. name: "Macro",
  25697. height: math.unit(19.3, "meters"),
  25698. default: true
  25699. },
  25700. ]
  25701. ))
  25702. characterMakers.push(() => makeCharacter(
  25703. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  25704. {
  25705. female: {
  25706. height: math.unit(26.15, "m"),
  25707. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  25708. name: "Female",
  25709. image: {
  25710. source: "./media/characters/joraxian/female.svg",
  25711. extra: 2912 / 2824,
  25712. bottom: 36 / 2956
  25713. }
  25714. },
  25715. male: {
  25716. height: math.unit(25.4, "m"),
  25717. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  25718. name: "Male",
  25719. image: {
  25720. source: "./media/characters/joraxian/male.svg",
  25721. extra: 2877 / 2721,
  25722. bottom: 82 / 2967
  25723. }
  25724. },
  25725. },
  25726. [
  25727. {
  25728. name: "Macro",
  25729. height: math.unit(26.15, "meters"),
  25730. default: true
  25731. },
  25732. ]
  25733. ))
  25734. characterMakers.push(() => makeCharacter(
  25735. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  25736. {
  25737. female: {
  25738. height: math.unit(21.6, "m"),
  25739. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  25740. name: "Female",
  25741. image: {
  25742. source: "./media/characters/sthara/female.svg",
  25743. extra: 2516 / 2347,
  25744. bottom: 21.5 / 2537
  25745. }
  25746. },
  25747. male: {
  25748. height: math.unit(24, "m"),
  25749. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  25750. name: "Male",
  25751. image: {
  25752. source: "./media/characters/sthara/male.svg",
  25753. extra: 2732 / 2607,
  25754. bottom: 23 / 2732
  25755. }
  25756. },
  25757. },
  25758. [
  25759. {
  25760. name: "Macro",
  25761. height: math.unit(21.6, "meters"),
  25762. default: true
  25763. },
  25764. ]
  25765. ))
  25766. characterMakers.push(() => makeCharacter(
  25767. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  25768. {
  25769. front: {
  25770. height: math.unit(6 + 4 / 12, "feet"),
  25771. weight: math.unit(175, "lb"),
  25772. name: "Front",
  25773. image: {
  25774. source: "./media/characters/luka-bryzant/front.svg",
  25775. extra: 311 / 289,
  25776. bottom: 4 / 315
  25777. }
  25778. },
  25779. back: {
  25780. height: math.unit(6 + 4 / 12, "feet"),
  25781. weight: math.unit(175, "lb"),
  25782. name: "Back",
  25783. image: {
  25784. source: "./media/characters/luka-bryzant/back.svg",
  25785. extra: 311 / 289,
  25786. bottom: 3.8 / 313.7
  25787. }
  25788. },
  25789. },
  25790. [
  25791. {
  25792. name: "Micro",
  25793. height: math.unit(10, "inches")
  25794. },
  25795. {
  25796. name: "Normal",
  25797. height: math.unit(6 + 4 / 12, "feet"),
  25798. default: true
  25799. },
  25800. {
  25801. name: "Large",
  25802. height: math.unit(12, "feet")
  25803. },
  25804. ]
  25805. ))
  25806. characterMakers.push(() => makeCharacter(
  25807. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  25808. {
  25809. front: {
  25810. height: math.unit(5 + 7 / 12, "feet"),
  25811. weight: math.unit(185, "lb"),
  25812. name: "Front",
  25813. image: {
  25814. source: "./media/characters/aman-aquila/front.svg",
  25815. extra: 1013 / 976,
  25816. bottom: 45.6 / 1057
  25817. }
  25818. },
  25819. side: {
  25820. height: math.unit(5 + 7 / 12, "feet"),
  25821. weight: math.unit(185, "lb"),
  25822. name: "Side",
  25823. image: {
  25824. source: "./media/characters/aman-aquila/side.svg",
  25825. extra: 1054 / 1011,
  25826. bottom: 15 / 1070
  25827. }
  25828. },
  25829. back: {
  25830. height: math.unit(5 + 7 / 12, "feet"),
  25831. weight: math.unit(185, "lb"),
  25832. name: "Back",
  25833. image: {
  25834. source: "./media/characters/aman-aquila/back.svg",
  25835. extra: 1026 / 970,
  25836. bottom: 12 / 1039
  25837. }
  25838. },
  25839. head: {
  25840. height: math.unit(1.211, "feet"),
  25841. name: "Head",
  25842. image: {
  25843. source: "./media/characters/aman-aquila/head.svg",
  25844. }
  25845. },
  25846. },
  25847. [
  25848. {
  25849. name: "Minimicro",
  25850. height: math.unit(0.057, "inches")
  25851. },
  25852. {
  25853. name: "Micro",
  25854. height: math.unit(7, "inches")
  25855. },
  25856. {
  25857. name: "Mini",
  25858. height: math.unit(3 + 7 / 12, "feet")
  25859. },
  25860. {
  25861. name: "Normal",
  25862. height: math.unit(5 + 7 / 12, "feet"),
  25863. default: true
  25864. },
  25865. {
  25866. name: "Macro",
  25867. height: math.unit(157 + 7 / 12, "feet")
  25868. },
  25869. {
  25870. name: "Megamacro",
  25871. height: math.unit(1557 + 7 / 12, "feet")
  25872. },
  25873. {
  25874. name: "Gigamacro",
  25875. height: math.unit(15557 + 7 / 12, "feet")
  25876. },
  25877. ]
  25878. ))
  25879. characterMakers.push(() => makeCharacter(
  25880. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  25881. {
  25882. front: {
  25883. height: math.unit(3 + 2 / 12, "inches"),
  25884. weight: math.unit(0.3, "ounces"),
  25885. name: "Front",
  25886. image: {
  25887. source: "./media/characters/hiphae/front.svg",
  25888. extra: 1931 / 1683,
  25889. bottom: 24 / 1955
  25890. }
  25891. },
  25892. },
  25893. [
  25894. {
  25895. name: "Normal",
  25896. height: math.unit(3 + 1 / 2, "inches"),
  25897. default: true
  25898. },
  25899. ]
  25900. ))
  25901. characterMakers.push(() => makeCharacter(
  25902. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  25903. {
  25904. front: {
  25905. height: math.unit(5 + 10 / 12, "feet"),
  25906. weight: math.unit(165, "lb"),
  25907. name: "Front",
  25908. image: {
  25909. source: "./media/characters/nicky/front.svg",
  25910. extra: 3144 / 2886,
  25911. bottom: 45.6 / 3192
  25912. }
  25913. },
  25914. back: {
  25915. height: math.unit(5 + 10 / 12, "feet"),
  25916. weight: math.unit(165, "lb"),
  25917. name: "Back",
  25918. image: {
  25919. source: "./media/characters/nicky/back.svg",
  25920. extra: 3055 / 2804,
  25921. bottom: 28.4 / 3087
  25922. }
  25923. },
  25924. frontclothed: {
  25925. height: math.unit(5 + 10 / 12, "feet"),
  25926. weight: math.unit(165, "lb"),
  25927. name: "Front-clothed",
  25928. image: {
  25929. source: "./media/characters/nicky/front-clothed.svg",
  25930. extra: 3184.9 / 2926.9,
  25931. bottom: 86.5 / 3239.9
  25932. }
  25933. },
  25934. foot: {
  25935. height: math.unit(1.16, "feet"),
  25936. name: "Foot",
  25937. image: {
  25938. source: "./media/characters/nicky/foot.svg"
  25939. }
  25940. },
  25941. feet: {
  25942. height: math.unit(1.34, "feet"),
  25943. name: "Feet",
  25944. image: {
  25945. source: "./media/characters/nicky/feet.svg"
  25946. }
  25947. },
  25948. maw: {
  25949. height: math.unit(0.9, "feet"),
  25950. name: "Maw",
  25951. image: {
  25952. source: "./media/characters/nicky/maw.svg"
  25953. }
  25954. },
  25955. },
  25956. [
  25957. {
  25958. name: "Normal",
  25959. height: math.unit(5 + 10 / 12, "feet"),
  25960. default: true
  25961. },
  25962. {
  25963. name: "Macro",
  25964. height: math.unit(60, "feet")
  25965. },
  25966. {
  25967. name: "Megamacro",
  25968. height: math.unit(1, "mile")
  25969. },
  25970. ]
  25971. ))
  25972. characterMakers.push(() => makeCharacter(
  25973. { name: "Blair", species: ["seal"], tags: ["taur"] },
  25974. {
  25975. side: {
  25976. height: math.unit(10, "feet"),
  25977. weight: math.unit(600, "lb"),
  25978. name: "Side",
  25979. image: {
  25980. source: "./media/characters/blair/side.svg",
  25981. bottom: 16.6 / 475,
  25982. extra: 458 / 431
  25983. }
  25984. },
  25985. },
  25986. [
  25987. {
  25988. name: "Micro",
  25989. height: math.unit(8, "inches")
  25990. },
  25991. {
  25992. name: "Normal",
  25993. height: math.unit(10, "feet"),
  25994. default: true
  25995. },
  25996. {
  25997. name: "Macro",
  25998. height: math.unit(180, "feet")
  25999. },
  26000. ]
  26001. ))
  26002. characterMakers.push(() => makeCharacter(
  26003. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  26004. {
  26005. front: {
  26006. height: math.unit(5 + 4 / 12, "feet"),
  26007. weight: math.unit(125, "lb"),
  26008. name: "Front",
  26009. image: {
  26010. source: "./media/characters/fisher/front.svg",
  26011. extra: 444 / 390,
  26012. bottom: 2 / 444.8
  26013. }
  26014. },
  26015. },
  26016. [
  26017. {
  26018. name: "Micro",
  26019. height: math.unit(4, "inches")
  26020. },
  26021. {
  26022. name: "Normal",
  26023. height: math.unit(5 + 4 / 12, "feet"),
  26024. default: true
  26025. },
  26026. {
  26027. name: "Macro",
  26028. height: math.unit(100, "feet")
  26029. },
  26030. ]
  26031. ))
  26032. characterMakers.push(() => makeCharacter(
  26033. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  26034. {
  26035. front: {
  26036. height: math.unit(6.71, "feet"),
  26037. weight: math.unit(200, "lb"),
  26038. preyCapacity: math.unit(1000000, "people"),
  26039. name: "Front",
  26040. image: {
  26041. source: "./media/characters/gliss/front.svg",
  26042. extra: 2347 / 2231,
  26043. bottom: 113 / 2462
  26044. }
  26045. },
  26046. hammerspaceSize: {
  26047. height: math.unit(6.71 * 717, "feet"),
  26048. weight: math.unit(200, "lb"),
  26049. preyCapacity: math.unit(1000000, "people"),
  26050. name: "Hammerspace Size",
  26051. image: {
  26052. source: "./media/characters/gliss/front.svg",
  26053. extra: 2347 / 2231,
  26054. bottom: 113 / 2462
  26055. }
  26056. },
  26057. },
  26058. [
  26059. {
  26060. name: "Normal",
  26061. height: math.unit(6.71, "feet"),
  26062. default: true
  26063. },
  26064. ]
  26065. ))
  26066. characterMakers.push(() => makeCharacter(
  26067. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  26068. {
  26069. side: {
  26070. height: math.unit(1.44, "m"),
  26071. weight: math.unit(80, "kg"),
  26072. name: "Side",
  26073. image: {
  26074. source: "./media/characters/dune-anderson/side.svg",
  26075. bottom: 49 / 1426
  26076. }
  26077. },
  26078. },
  26079. [
  26080. {
  26081. name: "Wolf-sized",
  26082. height: math.unit(1.44, "meters")
  26083. },
  26084. {
  26085. name: "Normal",
  26086. height: math.unit(5.05, "meters"),
  26087. default: true
  26088. },
  26089. {
  26090. name: "Big",
  26091. height: math.unit(14.4, "meters")
  26092. },
  26093. {
  26094. name: "Huge",
  26095. height: math.unit(144, "meters")
  26096. },
  26097. ]
  26098. ))
  26099. characterMakers.push(() => makeCharacter(
  26100. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  26101. {
  26102. front: {
  26103. height: math.unit(7, "feet"),
  26104. weight: math.unit(425, "lb"),
  26105. name: "Front",
  26106. image: {
  26107. source: "./media/characters/hind/front.svg",
  26108. extra: 2091 / 1860,
  26109. bottom: 129 / 2220
  26110. }
  26111. },
  26112. back: {
  26113. height: math.unit(7, "feet"),
  26114. weight: math.unit(425, "lb"),
  26115. name: "Back",
  26116. image: {
  26117. source: "./media/characters/hind/back.svg",
  26118. extra: 2091 / 1860,
  26119. bottom: 24.6 / 2309
  26120. }
  26121. },
  26122. tail: {
  26123. height: math.unit(2.8, "feet"),
  26124. name: "Tail",
  26125. image: {
  26126. source: "./media/characters/hind/tail.svg"
  26127. }
  26128. },
  26129. head: {
  26130. height: math.unit(2.55, "feet"),
  26131. name: "Head",
  26132. image: {
  26133. source: "./media/characters/hind/head.svg"
  26134. }
  26135. },
  26136. },
  26137. [
  26138. {
  26139. name: "XS",
  26140. height: math.unit(0.7, "feet")
  26141. },
  26142. {
  26143. name: "Normal",
  26144. height: math.unit(7, "feet"),
  26145. default: true
  26146. },
  26147. {
  26148. name: "XL",
  26149. height: math.unit(70, "feet")
  26150. },
  26151. ]
  26152. ))
  26153. characterMakers.push(() => makeCharacter(
  26154. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  26155. {
  26156. front: {
  26157. height: math.unit(2.1, "meters"),
  26158. weight: math.unit(150, "lb"),
  26159. name: "Front",
  26160. image: {
  26161. source: "./media/characters/tharquench-sizestealer/front.svg",
  26162. extra: 1605/1470,
  26163. bottom: 36/1641
  26164. }
  26165. },
  26166. frontAlt: {
  26167. height: math.unit(2.1, "meters"),
  26168. weight: math.unit(150, "lb"),
  26169. name: "Front (Alt)",
  26170. image: {
  26171. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  26172. extra: 2318 / 2063,
  26173. bottom: 93.4 / 2410
  26174. }
  26175. },
  26176. },
  26177. [
  26178. {
  26179. name: "Nano",
  26180. height: math.unit(1, "mm")
  26181. },
  26182. {
  26183. name: "Micro",
  26184. height: math.unit(1, "cm")
  26185. },
  26186. {
  26187. name: "Normal",
  26188. height: math.unit(2.1, "meters"),
  26189. default: true
  26190. },
  26191. ]
  26192. ))
  26193. characterMakers.push(() => makeCharacter(
  26194. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  26195. {
  26196. front: {
  26197. height: math.unit(7 + 5 / 12, "feet"),
  26198. weight: math.unit(357, "lb"),
  26199. name: "Front",
  26200. image: {
  26201. source: "./media/characters/solex-draconov/front.svg",
  26202. extra: 1993 / 1865,
  26203. bottom: 117 / 2111
  26204. }
  26205. },
  26206. },
  26207. [
  26208. {
  26209. name: "Natural Height",
  26210. height: math.unit(7 + 5 / 12, "feet"),
  26211. default: true
  26212. },
  26213. {
  26214. name: "Macro",
  26215. height: math.unit(350, "feet")
  26216. },
  26217. {
  26218. name: "Macro+",
  26219. height: math.unit(1000, "feet")
  26220. },
  26221. {
  26222. name: "Megamacro",
  26223. height: math.unit(20, "km")
  26224. },
  26225. {
  26226. name: "Megamacro+",
  26227. height: math.unit(1000, "km")
  26228. },
  26229. {
  26230. name: "Gigamacro",
  26231. height: math.unit(2.5, "Gm")
  26232. },
  26233. {
  26234. name: "Teramacro",
  26235. height: math.unit(15, "Tm")
  26236. },
  26237. {
  26238. name: "Galactic",
  26239. height: math.unit(30, "Zm")
  26240. },
  26241. {
  26242. name: "Universal",
  26243. height: math.unit(21000, "Ym")
  26244. },
  26245. {
  26246. name: "Omniversal",
  26247. height: math.unit(9.861e50, "Ym")
  26248. },
  26249. {
  26250. name: "Existential",
  26251. height: math.unit(1e300, "meters")
  26252. },
  26253. ]
  26254. ))
  26255. characterMakers.push(() => makeCharacter(
  26256. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  26257. {
  26258. side: {
  26259. height: math.unit(25, "feet"),
  26260. weight: math.unit(90000, "lb"),
  26261. name: "Side",
  26262. image: {
  26263. source: "./media/characters/mandarax/side.svg",
  26264. extra: 614 / 332,
  26265. bottom: 55 / 630
  26266. }
  26267. },
  26268. lounging: {
  26269. height: math.unit(15.4, "feet"),
  26270. weight: math.unit(90000, "lb"),
  26271. name: "Lounging",
  26272. image: {
  26273. source: "./media/characters/mandarax/lounging.svg",
  26274. extra: 817/609,
  26275. bottom: 685/1502
  26276. }
  26277. },
  26278. head: {
  26279. height: math.unit(11.4, "feet"),
  26280. name: "Head",
  26281. image: {
  26282. source: "./media/characters/mandarax/head.svg"
  26283. }
  26284. },
  26285. belly: {
  26286. height: math.unit(33, "feet"),
  26287. name: "Belly",
  26288. preyCapacity: math.unit(500, "people"),
  26289. image: {
  26290. source: "./media/characters/mandarax/belly.svg"
  26291. }
  26292. },
  26293. dick: {
  26294. height: math.unit(8.46, "feet"),
  26295. name: "Dick",
  26296. image: {
  26297. source: "./media/characters/mandarax/dick.svg"
  26298. }
  26299. },
  26300. top: {
  26301. height: math.unit(28, "meters"),
  26302. name: "Top",
  26303. image: {
  26304. source: "./media/characters/mandarax/top.svg"
  26305. }
  26306. },
  26307. },
  26308. [
  26309. {
  26310. name: "Normal",
  26311. height: math.unit(25, "feet"),
  26312. default: true
  26313. },
  26314. ]
  26315. ))
  26316. characterMakers.push(() => makeCharacter(
  26317. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  26318. {
  26319. front: {
  26320. height: math.unit(5, "feet"),
  26321. weight: math.unit(90, "lb"),
  26322. name: "Front",
  26323. image: {
  26324. source: "./media/characters/pixil/front.svg",
  26325. extra: 2000 / 1618,
  26326. bottom: 12.3 / 2011
  26327. }
  26328. },
  26329. },
  26330. [
  26331. {
  26332. name: "Normal",
  26333. height: math.unit(5, "feet"),
  26334. default: true
  26335. },
  26336. {
  26337. name: "Megamacro",
  26338. height: math.unit(10, "miles"),
  26339. },
  26340. ]
  26341. ))
  26342. characterMakers.push(() => makeCharacter(
  26343. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  26344. {
  26345. front: {
  26346. height: math.unit(7 + 2 / 12, "feet"),
  26347. weight: math.unit(200, "lb"),
  26348. name: "Front",
  26349. image: {
  26350. source: "./media/characters/angel/front.svg",
  26351. extra: 1830 / 1737,
  26352. bottom: 22.6 / 1854,
  26353. }
  26354. },
  26355. },
  26356. [
  26357. {
  26358. name: "Normal",
  26359. height: math.unit(7 + 2 / 12, "feet"),
  26360. default: true
  26361. },
  26362. {
  26363. name: "Macro",
  26364. height: math.unit(1000, "feet")
  26365. },
  26366. {
  26367. name: "Megamacro",
  26368. height: math.unit(2, "miles")
  26369. },
  26370. {
  26371. name: "Gigamacro",
  26372. height: math.unit(20, "earths")
  26373. },
  26374. ]
  26375. ))
  26376. characterMakers.push(() => makeCharacter(
  26377. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  26378. {
  26379. front: {
  26380. height: math.unit(5, "feet"),
  26381. weight: math.unit(180, "lb"),
  26382. name: "Front",
  26383. image: {
  26384. source: "./media/characters/mekana/front.svg",
  26385. extra: 1671 / 1605,
  26386. bottom: 3.5 / 1691
  26387. }
  26388. },
  26389. side: {
  26390. height: math.unit(5, "feet"),
  26391. weight: math.unit(180, "lb"),
  26392. name: "Side",
  26393. image: {
  26394. source: "./media/characters/mekana/side.svg",
  26395. extra: 1671 / 1605,
  26396. bottom: 3.5 / 1691
  26397. }
  26398. },
  26399. back: {
  26400. height: math.unit(5, "feet"),
  26401. weight: math.unit(180, "lb"),
  26402. name: "Back",
  26403. image: {
  26404. source: "./media/characters/mekana/back.svg",
  26405. extra: 1671 / 1605,
  26406. bottom: 3.5 / 1691
  26407. }
  26408. },
  26409. },
  26410. [
  26411. {
  26412. name: "Normal",
  26413. height: math.unit(5, "feet"),
  26414. default: true
  26415. },
  26416. ]
  26417. ))
  26418. characterMakers.push(() => makeCharacter(
  26419. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  26420. {
  26421. front: {
  26422. height: math.unit(4 + 6 / 12, "feet"),
  26423. weight: math.unit(80, "lb"),
  26424. name: "Front",
  26425. image: {
  26426. source: "./media/characters/pixie/front.svg",
  26427. extra: 1924 / 1825,
  26428. bottom: 22.4 / 1946
  26429. }
  26430. },
  26431. },
  26432. [
  26433. {
  26434. name: "Normal",
  26435. height: math.unit(4 + 6 / 12, "feet"),
  26436. default: true
  26437. },
  26438. {
  26439. name: "Macro",
  26440. height: math.unit(40, "feet")
  26441. },
  26442. ]
  26443. ))
  26444. characterMakers.push(() => makeCharacter(
  26445. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  26446. {
  26447. front: {
  26448. height: math.unit(2.1, "meters"),
  26449. weight: math.unit(200, "lb"),
  26450. name: "Front",
  26451. image: {
  26452. source: "./media/characters/the-lascivious/front.svg",
  26453. extra: 1 / 0.893,
  26454. bottom: 3.5 / 573.7
  26455. }
  26456. },
  26457. },
  26458. [
  26459. {
  26460. name: "Human Scale",
  26461. height: math.unit(2.1, "meters")
  26462. },
  26463. {
  26464. name: "Wolxi Scale",
  26465. height: math.unit(46.2, "m"),
  26466. default: true
  26467. },
  26468. {
  26469. name: "Boinker of Buildings",
  26470. height: math.unit(10, "km")
  26471. },
  26472. {
  26473. name: "Shagger of Skyscrapers",
  26474. height: math.unit(40, "km")
  26475. },
  26476. {
  26477. name: "Banger of Boroughs",
  26478. height: math.unit(4000, "km")
  26479. },
  26480. {
  26481. name: "Screwer of States",
  26482. height: math.unit(100000, "km")
  26483. },
  26484. {
  26485. name: "Pounder of Planets",
  26486. height: math.unit(2000000, "km")
  26487. },
  26488. ]
  26489. ))
  26490. characterMakers.push(() => makeCharacter(
  26491. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  26492. {
  26493. front: {
  26494. height: math.unit(6, "feet"),
  26495. weight: math.unit(150, "lb"),
  26496. name: "Front",
  26497. image: {
  26498. source: "./media/characters/aj/front.svg",
  26499. extra: 2039 / 1562,
  26500. bottom: 40 / 2079
  26501. }
  26502. },
  26503. },
  26504. [
  26505. {
  26506. name: "Normal",
  26507. height: math.unit(11 + 6 / 12, "feet"),
  26508. default: true
  26509. },
  26510. {
  26511. name: "Megamacro",
  26512. height: math.unit(60, "megameters")
  26513. },
  26514. ]
  26515. ))
  26516. characterMakers.push(() => makeCharacter(
  26517. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  26518. {
  26519. side: {
  26520. height: math.unit(31 + 8 / 12, "feet"),
  26521. weight: math.unit(75000, "kg"),
  26522. name: "Side",
  26523. image: {
  26524. source: "./media/characters/koros/side.svg",
  26525. extra: 1442 / 1297,
  26526. bottom: 122.7 / 1562
  26527. }
  26528. },
  26529. dicksKingsCrown: {
  26530. height: math.unit(6, "feet"),
  26531. name: "Dicks (King's Crown)",
  26532. image: {
  26533. source: "./media/characters/koros/dicks-kings-crown.svg"
  26534. }
  26535. },
  26536. dicksTailSet: {
  26537. height: math.unit(3, "feet"),
  26538. name: "Dicks (Tail Set)",
  26539. image: {
  26540. source: "./media/characters/koros/dicks-tail-set.svg"
  26541. }
  26542. },
  26543. dickCumming: {
  26544. height: math.unit(7.98, "feet"),
  26545. name: "Dick (Cumming)",
  26546. image: {
  26547. source: "./media/characters/koros/dick-cumming.svg"
  26548. }
  26549. },
  26550. dicksBack: {
  26551. height: math.unit(5.9, "feet"),
  26552. name: "Dicks (Back)",
  26553. image: {
  26554. source: "./media/characters/koros/dicks-back.svg"
  26555. }
  26556. },
  26557. dicksFront: {
  26558. height: math.unit(3.72, "feet"),
  26559. name: "Dicks (Front)",
  26560. image: {
  26561. source: "./media/characters/koros/dicks-front.svg"
  26562. }
  26563. },
  26564. dicksPeeking: {
  26565. height: math.unit(3.0, "feet"),
  26566. name: "Dicks (Peeking)",
  26567. image: {
  26568. source: "./media/characters/koros/dicks-peeking.svg"
  26569. }
  26570. },
  26571. eye: {
  26572. height: math.unit(1.7, "feet"),
  26573. name: "Eye",
  26574. image: {
  26575. source: "./media/characters/koros/eye.svg"
  26576. }
  26577. },
  26578. headFront: {
  26579. height: math.unit(11.69, "feet"),
  26580. name: "Head (Front)",
  26581. image: {
  26582. source: "./media/characters/koros/head-front.svg"
  26583. }
  26584. },
  26585. headSide: {
  26586. height: math.unit(14, "feet"),
  26587. name: "Head (Side)",
  26588. image: {
  26589. source: "./media/characters/koros/head-side.svg"
  26590. }
  26591. },
  26592. leg: {
  26593. height: math.unit(17, "feet"),
  26594. name: "Leg",
  26595. image: {
  26596. source: "./media/characters/koros/leg.svg"
  26597. }
  26598. },
  26599. mawSide: {
  26600. height: math.unit(12.8, "feet"),
  26601. name: "Maw (Side)",
  26602. image: {
  26603. source: "./media/characters/koros/maw-side.svg"
  26604. }
  26605. },
  26606. mawSpitting: {
  26607. height: math.unit(17, "feet"),
  26608. name: "Maw (Spitting)",
  26609. image: {
  26610. source: "./media/characters/koros/maw-spitting.svg"
  26611. }
  26612. },
  26613. slit: {
  26614. height: math.unit(2.8, "feet"),
  26615. name: "Slit",
  26616. image: {
  26617. source: "./media/characters/koros/slit.svg"
  26618. }
  26619. },
  26620. stomach: {
  26621. height: math.unit(6.8, "feet"),
  26622. preyCapacity: math.unit(20, "people"),
  26623. name: "Stomach",
  26624. image: {
  26625. source: "./media/characters/koros/stomach.svg"
  26626. }
  26627. },
  26628. wingspanBottom: {
  26629. height: math.unit(114, "feet"),
  26630. name: "Wingspan (Bottom)",
  26631. image: {
  26632. source: "./media/characters/koros/wingspan-bottom.svg"
  26633. }
  26634. },
  26635. wingspanTop: {
  26636. height: math.unit(104, "feet"),
  26637. name: "Wingspan (Top)",
  26638. image: {
  26639. source: "./media/characters/koros/wingspan-top.svg"
  26640. }
  26641. },
  26642. },
  26643. [
  26644. {
  26645. name: "Normal",
  26646. height: math.unit(31 + 8 / 12, "feet"),
  26647. default: true
  26648. },
  26649. ]
  26650. ))
  26651. characterMakers.push(() => makeCharacter(
  26652. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  26653. {
  26654. front: {
  26655. height: math.unit(18 + 5 / 12, "feet"),
  26656. weight: math.unit(3750, "kg"),
  26657. name: "Front",
  26658. image: {
  26659. source: "./media/characters/vexx/front.svg",
  26660. extra: 426 / 396,
  26661. bottom: 31.5 / 458
  26662. }
  26663. },
  26664. maw: {
  26665. height: math.unit(6, "feet"),
  26666. name: "Maw",
  26667. image: {
  26668. source: "./media/characters/vexx/maw.svg"
  26669. }
  26670. },
  26671. },
  26672. [
  26673. {
  26674. name: "Normal",
  26675. height: math.unit(18 + 5 / 12, "feet"),
  26676. default: true
  26677. },
  26678. ]
  26679. ))
  26680. characterMakers.push(() => makeCharacter(
  26681. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  26682. {
  26683. front: {
  26684. height: math.unit(17 + 6 / 12, "feet"),
  26685. weight: math.unit(150, "lb"),
  26686. name: "Front",
  26687. image: {
  26688. source: "./media/characters/baadra/front.svg",
  26689. extra: 1694/1553,
  26690. bottom: 179/1873
  26691. }
  26692. },
  26693. frontAlt: {
  26694. height: math.unit(17 + 6 / 12, "feet"),
  26695. weight: math.unit(150, "lb"),
  26696. name: "Front (Alt)",
  26697. image: {
  26698. source: "./media/characters/baadra/front-alt.svg",
  26699. extra: 3137 / 2890,
  26700. bottom: 168.4 / 3305
  26701. }
  26702. },
  26703. back: {
  26704. height: math.unit(17 + 6 / 12, "feet"),
  26705. weight: math.unit(150, "lb"),
  26706. name: "Back",
  26707. image: {
  26708. source: "./media/characters/baadra/back.svg",
  26709. extra: 3142 / 2890,
  26710. bottom: 220 / 3371
  26711. }
  26712. },
  26713. head: {
  26714. height: math.unit(5.45, "feet"),
  26715. name: "Head",
  26716. image: {
  26717. source: "./media/characters/baadra/head.svg"
  26718. }
  26719. },
  26720. headAngry: {
  26721. height: math.unit(4.95, "feet"),
  26722. name: "Head (Angry)",
  26723. image: {
  26724. source: "./media/characters/baadra/head-angry.svg"
  26725. }
  26726. },
  26727. headOpen: {
  26728. height: math.unit(6, "feet"),
  26729. name: "Head (Open)",
  26730. image: {
  26731. source: "./media/characters/baadra/head-open.svg"
  26732. }
  26733. },
  26734. },
  26735. [
  26736. {
  26737. name: "Normal",
  26738. height: math.unit(17 + 6 / 12, "feet"),
  26739. default: true
  26740. },
  26741. ]
  26742. ))
  26743. characterMakers.push(() => makeCharacter(
  26744. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  26745. {
  26746. front: {
  26747. height: math.unit(7 + 3 / 12, "feet"),
  26748. weight: math.unit(180, "lb"),
  26749. name: "Front",
  26750. image: {
  26751. source: "./media/characters/juri/front.svg",
  26752. extra: 1401 / 1237,
  26753. bottom: 18.5 / 1418
  26754. }
  26755. },
  26756. side: {
  26757. height: math.unit(7 + 3 / 12, "feet"),
  26758. weight: math.unit(180, "lb"),
  26759. name: "Side",
  26760. image: {
  26761. source: "./media/characters/juri/side.svg",
  26762. extra: 1424 / 1242,
  26763. bottom: 18.5 / 1447
  26764. }
  26765. },
  26766. sitting: {
  26767. height: math.unit(6, "feet"),
  26768. weight: math.unit(180, "lb"),
  26769. name: "Sitting",
  26770. image: {
  26771. source: "./media/characters/juri/sitting.svg",
  26772. extra: 1270 / 1143,
  26773. bottom: 100 / 1343
  26774. }
  26775. },
  26776. back: {
  26777. height: math.unit(7 + 3 / 12, "feet"),
  26778. weight: math.unit(180, "lb"),
  26779. name: "Back",
  26780. image: {
  26781. source: "./media/characters/juri/back.svg",
  26782. extra: 1377 / 1240,
  26783. bottom: 23.7 / 1405
  26784. }
  26785. },
  26786. maw: {
  26787. height: math.unit(2.8, "feet"),
  26788. name: "Maw",
  26789. image: {
  26790. source: "./media/characters/juri/maw.svg"
  26791. }
  26792. },
  26793. stomach: {
  26794. height: math.unit(0.89, "feet"),
  26795. preyCapacity: math.unit(4, "liters"),
  26796. name: "Stomach",
  26797. image: {
  26798. source: "./media/characters/juri/stomach.svg"
  26799. }
  26800. },
  26801. },
  26802. [
  26803. {
  26804. name: "Normal",
  26805. height: math.unit(7 + 3 / 12, "feet"),
  26806. default: true
  26807. },
  26808. ]
  26809. ))
  26810. characterMakers.push(() => makeCharacter(
  26811. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  26812. {
  26813. fox: {
  26814. height: math.unit(5 + 6 / 12, "feet"),
  26815. weight: math.unit(140, "lb"),
  26816. name: "Fox",
  26817. image: {
  26818. source: "./media/characters/maxene-sita/fox.svg",
  26819. extra: 146 / 138,
  26820. bottom: 2.1 / 148.19
  26821. }
  26822. },
  26823. foxLaying: {
  26824. height: math.unit(1.70, "feet"),
  26825. weight: math.unit(140, "lb"),
  26826. name: "Fox (Laying)",
  26827. image: {
  26828. source: "./media/characters/maxene-sita/fox-laying.svg",
  26829. extra: 910 / 572,
  26830. bottom: 71 / 981
  26831. }
  26832. },
  26833. kitsune: {
  26834. height: math.unit(10, "feet"),
  26835. weight: math.unit(800, "lb"),
  26836. name: "Kitsune",
  26837. image: {
  26838. source: "./media/characters/maxene-sita/kitsune.svg",
  26839. extra: 185 / 176,
  26840. bottom: 4.7 / 189.9
  26841. }
  26842. },
  26843. hellhound: {
  26844. height: math.unit(10, "feet"),
  26845. weight: math.unit(700, "lb"),
  26846. name: "Hellhound",
  26847. image: {
  26848. source: "./media/characters/maxene-sita/hellhound.svg",
  26849. extra: 1600 / 1545,
  26850. bottom: 81 / 1681
  26851. }
  26852. },
  26853. },
  26854. [
  26855. {
  26856. name: "Normal",
  26857. height: math.unit(5 + 6 / 12, "feet"),
  26858. default: true
  26859. },
  26860. ]
  26861. ))
  26862. characterMakers.push(() => makeCharacter(
  26863. { name: "Maia", species: ["mew"], tags: ["feral"] },
  26864. {
  26865. front: {
  26866. height: math.unit(3 + 4 / 12, "feet"),
  26867. weight: math.unit(70, "lb"),
  26868. name: "Front",
  26869. image: {
  26870. source: "./media/characters/maia/front.svg",
  26871. extra: 227 / 219.5,
  26872. bottom: 40 / 267
  26873. }
  26874. },
  26875. back: {
  26876. height: math.unit(3 + 4 / 12, "feet"),
  26877. weight: math.unit(70, "lb"),
  26878. name: "Back",
  26879. image: {
  26880. source: "./media/characters/maia/back.svg",
  26881. extra: 237 / 225
  26882. }
  26883. },
  26884. },
  26885. [
  26886. {
  26887. name: "Normal",
  26888. height: math.unit(3 + 4 / 12, "feet"),
  26889. default: true
  26890. },
  26891. ]
  26892. ))
  26893. characterMakers.push(() => makeCharacter(
  26894. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  26895. {
  26896. front: {
  26897. height: math.unit(5 + 10 / 12, "feet"),
  26898. weight: math.unit(197, "lb"),
  26899. name: "Front",
  26900. image: {
  26901. source: "./media/characters/jabaro/front.svg",
  26902. extra: 225 / 216,
  26903. bottom: 5.06 / 230
  26904. }
  26905. },
  26906. back: {
  26907. height: math.unit(5 + 10 / 12, "feet"),
  26908. weight: math.unit(197, "lb"),
  26909. name: "Back",
  26910. image: {
  26911. source: "./media/characters/jabaro/back.svg",
  26912. extra: 225 / 219,
  26913. bottom: 1.9 / 227
  26914. }
  26915. },
  26916. },
  26917. [
  26918. {
  26919. name: "Normal",
  26920. height: math.unit(5 + 10 / 12, "feet"),
  26921. default: true
  26922. },
  26923. ]
  26924. ))
  26925. characterMakers.push(() => makeCharacter(
  26926. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  26927. {
  26928. front: {
  26929. height: math.unit(5 + 8 / 12, "feet"),
  26930. weight: math.unit(139, "lb"),
  26931. name: "Front",
  26932. image: {
  26933. source: "./media/characters/risa/front.svg",
  26934. extra: 270 / 260,
  26935. bottom: 11.2 / 282
  26936. }
  26937. },
  26938. back: {
  26939. height: math.unit(5 + 8 / 12, "feet"),
  26940. weight: math.unit(139, "lb"),
  26941. name: "Back",
  26942. image: {
  26943. source: "./media/characters/risa/back.svg",
  26944. extra: 264 / 255,
  26945. bottom: 4 / 268
  26946. }
  26947. },
  26948. },
  26949. [
  26950. {
  26951. name: "Normal",
  26952. height: math.unit(5 + 8 / 12, "feet"),
  26953. default: true
  26954. },
  26955. ]
  26956. ))
  26957. characterMakers.push(() => makeCharacter(
  26958. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  26959. {
  26960. front: {
  26961. height: math.unit(2 + 11 / 12, "feet"),
  26962. weight: math.unit(30, "lb"),
  26963. name: "Front",
  26964. image: {
  26965. source: "./media/characters/weatley/front.svg",
  26966. bottom: 10.7 / 414,
  26967. extra: 403.5 / 362
  26968. }
  26969. },
  26970. back: {
  26971. height: math.unit(2 + 11 / 12, "feet"),
  26972. weight: math.unit(30, "lb"),
  26973. name: "Back",
  26974. image: {
  26975. source: "./media/characters/weatley/back.svg",
  26976. bottom: 10.7 / 414,
  26977. extra: 403.5 / 362
  26978. }
  26979. },
  26980. },
  26981. [
  26982. {
  26983. name: "Normal",
  26984. height: math.unit(2 + 11 / 12, "feet"),
  26985. default: true
  26986. },
  26987. ]
  26988. ))
  26989. characterMakers.push(() => makeCharacter(
  26990. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  26991. {
  26992. front: {
  26993. height: math.unit(5 + 2 / 12, "feet"),
  26994. weight: math.unit(50, "kg"),
  26995. name: "Front",
  26996. image: {
  26997. source: "./media/characters/mercury-crescent/front.svg",
  26998. extra: 1088 / 1033,
  26999. bottom: 18.9 / 1109
  27000. }
  27001. },
  27002. },
  27003. [
  27004. {
  27005. name: "Normal",
  27006. height: math.unit(5 + 2 / 12, "feet"),
  27007. default: true
  27008. },
  27009. ]
  27010. ))
  27011. characterMakers.push(() => makeCharacter(
  27012. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  27013. {
  27014. front: {
  27015. height: math.unit(2, "feet"),
  27016. weight: math.unit(15, "kg"),
  27017. name: "Front",
  27018. image: {
  27019. source: "./media/characters/diamond-jones/front.svg",
  27020. extra: 727/723,
  27021. bottom: 46/773
  27022. }
  27023. },
  27024. },
  27025. [
  27026. {
  27027. name: "Normal",
  27028. height: math.unit(2, "feet"),
  27029. default: true
  27030. },
  27031. ]
  27032. ))
  27033. characterMakers.push(() => makeCharacter(
  27034. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  27035. {
  27036. front: {
  27037. height: math.unit(3, "feet"),
  27038. weight: math.unit(30, "kg"),
  27039. name: "Front",
  27040. image: {
  27041. source: "./media/characters/sweet-bit/front.svg",
  27042. extra: 675 / 567,
  27043. bottom: 27.7 / 703
  27044. }
  27045. },
  27046. },
  27047. [
  27048. {
  27049. name: "Normal",
  27050. height: math.unit(3, "feet"),
  27051. default: true
  27052. },
  27053. ]
  27054. ))
  27055. characterMakers.push(() => makeCharacter(
  27056. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  27057. {
  27058. side: {
  27059. height: math.unit(9.178, "feet"),
  27060. weight: math.unit(500, "lb"),
  27061. name: "Side",
  27062. image: {
  27063. source: "./media/characters/umbrazen/side.svg",
  27064. extra: 1730 / 1473,
  27065. bottom: 34.6 / 1765
  27066. }
  27067. },
  27068. },
  27069. [
  27070. {
  27071. name: "Normal",
  27072. height: math.unit(9.178, "feet"),
  27073. default: true
  27074. },
  27075. ]
  27076. ))
  27077. characterMakers.push(() => makeCharacter(
  27078. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  27079. {
  27080. front: {
  27081. height: math.unit(10, "feet"),
  27082. weight: math.unit(750, "lb"),
  27083. name: "Front",
  27084. image: {
  27085. source: "./media/characters/arlist/front.svg",
  27086. extra: 961 / 778,
  27087. bottom: 6.2 / 986
  27088. }
  27089. },
  27090. },
  27091. [
  27092. {
  27093. name: "Normal",
  27094. height: math.unit(10, "feet"),
  27095. default: true
  27096. },
  27097. ]
  27098. ))
  27099. characterMakers.push(() => makeCharacter(
  27100. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  27101. {
  27102. front: {
  27103. height: math.unit(5 + 1 / 12, "feet"),
  27104. weight: math.unit(110, "lb"),
  27105. name: "Front",
  27106. image: {
  27107. source: "./media/characters/aradel/front.svg",
  27108. extra: 324 / 303,
  27109. bottom: 3.6 / 329.4
  27110. }
  27111. },
  27112. },
  27113. [
  27114. {
  27115. name: "Normal",
  27116. height: math.unit(5 + 1 / 12, "feet"),
  27117. default: true
  27118. },
  27119. ]
  27120. ))
  27121. characterMakers.push(() => makeCharacter(
  27122. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  27123. {
  27124. dressed: {
  27125. height: math.unit(3 + 8 / 12, "feet"),
  27126. weight: math.unit(50, "lb"),
  27127. name: "Dressed",
  27128. image: {
  27129. source: "./media/characters/serryn/dressed.svg",
  27130. extra: 1792 / 1656,
  27131. bottom: 43.5 / 1840
  27132. }
  27133. },
  27134. nude: {
  27135. height: math.unit(3 + 8 / 12, "feet"),
  27136. weight: math.unit(50, "lb"),
  27137. name: "Nude",
  27138. image: {
  27139. source: "./media/characters/serryn/nude.svg",
  27140. extra: 1792 / 1656,
  27141. bottom: 43.5 / 1840
  27142. }
  27143. },
  27144. },
  27145. [
  27146. {
  27147. name: "Normal",
  27148. height: math.unit(3 + 8 / 12, "feet"),
  27149. default: true
  27150. },
  27151. ]
  27152. ))
  27153. characterMakers.push(() => makeCharacter(
  27154. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  27155. {
  27156. front: {
  27157. height: math.unit(7 + 10 / 12, "feet"),
  27158. weight: math.unit(255, "lb"),
  27159. name: "Front",
  27160. image: {
  27161. source: "./media/characters/xavier-thyme/front.svg",
  27162. extra: 3733 / 3642,
  27163. bottom: 131 / 3869
  27164. }
  27165. },
  27166. frontRaven: {
  27167. height: math.unit(7 + 10 / 12, "feet"),
  27168. weight: math.unit(255, "lb"),
  27169. name: "Front (Raven)",
  27170. image: {
  27171. source: "./media/characters/xavier-thyme/front-raven.svg",
  27172. extra: 4385 / 3642,
  27173. bottom: 131 / 4517
  27174. }
  27175. },
  27176. },
  27177. [
  27178. {
  27179. name: "Normal",
  27180. height: math.unit(7 + 10 / 12, "feet"),
  27181. default: true
  27182. },
  27183. ]
  27184. ))
  27185. characterMakers.push(() => makeCharacter(
  27186. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  27187. {
  27188. front: {
  27189. height: math.unit(1.6, "m"),
  27190. weight: math.unit(50, "kg"),
  27191. name: "Front",
  27192. image: {
  27193. source: "./media/characters/kiki/front.svg",
  27194. extra: 4682 / 3610,
  27195. bottom: 115 / 4777
  27196. }
  27197. },
  27198. },
  27199. [
  27200. {
  27201. name: "Normal",
  27202. height: math.unit(1.6, "meters"),
  27203. default: true
  27204. },
  27205. ]
  27206. ))
  27207. characterMakers.push(() => makeCharacter(
  27208. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  27209. {
  27210. front: {
  27211. height: math.unit(50, "m"),
  27212. weight: math.unit(500, "tonnes"),
  27213. name: "Front",
  27214. image: {
  27215. source: "./media/characters/ryoko/front.svg",
  27216. extra: 4632 / 3926,
  27217. bottom: 193 / 4823
  27218. }
  27219. },
  27220. },
  27221. [
  27222. {
  27223. name: "Normal",
  27224. height: math.unit(50, "meters"),
  27225. default: true
  27226. },
  27227. ]
  27228. ))
  27229. characterMakers.push(() => makeCharacter(
  27230. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  27231. {
  27232. front: {
  27233. height: math.unit(30, "m"),
  27234. weight: math.unit(22, "tonnes"),
  27235. name: "Front",
  27236. image: {
  27237. source: "./media/characters/elio/front.svg",
  27238. extra: 4582 / 3720,
  27239. bottom: 236 / 4828
  27240. }
  27241. },
  27242. },
  27243. [
  27244. {
  27245. name: "Normal",
  27246. height: math.unit(30, "meters"),
  27247. default: true
  27248. },
  27249. ]
  27250. ))
  27251. characterMakers.push(() => makeCharacter(
  27252. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  27253. {
  27254. front: {
  27255. height: math.unit(6 + 3 / 12, "feet"),
  27256. weight: math.unit(120, "lb"),
  27257. name: "Front",
  27258. image: {
  27259. source: "./media/characters/azura/front.svg",
  27260. extra: 1149 / 1135,
  27261. bottom: 45 / 1194
  27262. }
  27263. },
  27264. frontClothed: {
  27265. height: math.unit(6 + 3 / 12, "feet"),
  27266. weight: math.unit(120, "lb"),
  27267. name: "Front (Clothed)",
  27268. image: {
  27269. source: "./media/characters/azura/front-clothed.svg",
  27270. extra: 1149 / 1135,
  27271. bottom: 45 / 1194
  27272. }
  27273. },
  27274. },
  27275. [
  27276. {
  27277. name: "Normal",
  27278. height: math.unit(6 + 3 / 12, "feet"),
  27279. default: true
  27280. },
  27281. {
  27282. name: "Macro",
  27283. height: math.unit(20 + 6 / 12, "feet")
  27284. },
  27285. {
  27286. name: "Megamacro",
  27287. height: math.unit(12, "miles")
  27288. },
  27289. {
  27290. name: "Gigamacro",
  27291. height: math.unit(10000, "miles")
  27292. },
  27293. {
  27294. name: "Teramacro",
  27295. height: math.unit(900000, "miles")
  27296. },
  27297. ]
  27298. ))
  27299. characterMakers.push(() => makeCharacter(
  27300. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  27301. {
  27302. front: {
  27303. height: math.unit(12, "feet"),
  27304. weight: math.unit(1, "ton"),
  27305. capacity: math.unit(660000, "gallons"),
  27306. name: "Front",
  27307. image: {
  27308. source: "./media/characters/zeus/front.svg",
  27309. extra: 5005 / 4717,
  27310. bottom: 363 / 5388
  27311. }
  27312. },
  27313. },
  27314. [
  27315. {
  27316. name: "Normal",
  27317. height: math.unit(12, "feet")
  27318. },
  27319. {
  27320. name: "Preferred Size",
  27321. height: math.unit(0.5, "miles"),
  27322. default: true
  27323. },
  27324. {
  27325. name: "Giga Horse",
  27326. height: math.unit(300, "miles")
  27327. },
  27328. {
  27329. name: "Riding Planets",
  27330. height: math.unit(30, "megameters")
  27331. },
  27332. {
  27333. name: "Cosmic Giant",
  27334. height: math.unit(3, "zettameters")
  27335. },
  27336. {
  27337. name: "Breeding God",
  27338. height: math.unit(9.92e22, "yottameters")
  27339. },
  27340. ]
  27341. ))
  27342. characterMakers.push(() => makeCharacter(
  27343. { name: "Fang", species: ["monster"], tags: ["feral"] },
  27344. {
  27345. side: {
  27346. height: math.unit(9, "feet"),
  27347. weight: math.unit(1500, "kg"),
  27348. name: "Side",
  27349. image: {
  27350. source: "./media/characters/fang/side.svg",
  27351. extra: 924 / 866,
  27352. bottom: 47.5 / 972.3
  27353. }
  27354. },
  27355. },
  27356. [
  27357. {
  27358. name: "Normal",
  27359. height: math.unit(9, "feet"),
  27360. default: true
  27361. },
  27362. {
  27363. name: "Macro",
  27364. height: math.unit(75 + 6 / 12, "feet")
  27365. },
  27366. {
  27367. name: "Teramacro",
  27368. height: math.unit(50000, "miles")
  27369. },
  27370. ]
  27371. ))
  27372. characterMakers.push(() => makeCharacter(
  27373. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  27374. {
  27375. front: {
  27376. height: math.unit(10, "feet"),
  27377. weight: math.unit(2, "tons"),
  27378. name: "Front",
  27379. image: {
  27380. source: "./media/characters/rekhit/front.svg",
  27381. extra: 2796 / 2590,
  27382. bottom: 225 / 3022
  27383. }
  27384. },
  27385. },
  27386. [
  27387. {
  27388. name: "Normal",
  27389. height: math.unit(10, "feet"),
  27390. default: true
  27391. },
  27392. {
  27393. name: "Macro",
  27394. height: math.unit(500, "feet")
  27395. },
  27396. ]
  27397. ))
  27398. characterMakers.push(() => makeCharacter(
  27399. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  27400. {
  27401. front: {
  27402. height: math.unit(7 + 6.451 / 12, "feet"),
  27403. weight: math.unit(310, "lb"),
  27404. name: "Front",
  27405. image: {
  27406. source: "./media/characters/dahlia-verrick/front.svg",
  27407. extra: 1488 / 1365,
  27408. bottom: 6.2 / 1495
  27409. }
  27410. },
  27411. back: {
  27412. height: math.unit(7 + 6.451 / 12, "feet"),
  27413. weight: math.unit(310, "lb"),
  27414. name: "Back",
  27415. image: {
  27416. source: "./media/characters/dahlia-verrick/back.svg",
  27417. extra: 1472 / 1351,
  27418. bottom: 5.28 / 1477
  27419. }
  27420. },
  27421. frontBusiness: {
  27422. height: math.unit(7 + 6.451 / 12, "feet"),
  27423. weight: math.unit(200, "lb"),
  27424. name: "Front (Business)",
  27425. image: {
  27426. source: "./media/characters/dahlia-verrick/front-business.svg",
  27427. extra: 1478 / 1381,
  27428. bottom: 5.5 / 1484
  27429. }
  27430. },
  27431. frontCasual: {
  27432. height: math.unit(7 + 6.451 / 12, "feet"),
  27433. weight: math.unit(200, "lb"),
  27434. name: "Front (Casual)",
  27435. image: {
  27436. source: "./media/characters/dahlia-verrick/front-casual.svg",
  27437. extra: 1478 / 1381,
  27438. bottom: 5.5 / 1484
  27439. }
  27440. },
  27441. },
  27442. [
  27443. {
  27444. name: "Travel-Sized",
  27445. height: math.unit(7.45, "inches")
  27446. },
  27447. {
  27448. name: "Normal",
  27449. height: math.unit(7 + 6.451 / 12, "feet"),
  27450. default: true
  27451. },
  27452. {
  27453. name: "Hitting the Town",
  27454. height: math.unit(37 + 8 / 12, "feet")
  27455. },
  27456. {
  27457. name: "Stomp in the Suburbs",
  27458. height: math.unit(964 + 9.728 / 12, "feet")
  27459. },
  27460. {
  27461. name: "Sit on the City",
  27462. height: math.unit(61747 + 10.592 / 12, "feet")
  27463. },
  27464. {
  27465. name: "Glomp the Globe",
  27466. height: math.unit(252919327 + 4.832 / 12, "feet")
  27467. },
  27468. ]
  27469. ))
  27470. characterMakers.push(() => makeCharacter(
  27471. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  27472. {
  27473. front: {
  27474. height: math.unit(6 + 4 / 12, "feet"),
  27475. weight: math.unit(320, "lb"),
  27476. name: "Front",
  27477. image: {
  27478. source: "./media/characters/balina-mahigan/front.svg",
  27479. extra: 447 / 428,
  27480. bottom: 18 / 466
  27481. }
  27482. },
  27483. back: {
  27484. height: math.unit(6 + 4 / 12, "feet"),
  27485. weight: math.unit(320, "lb"),
  27486. name: "Back",
  27487. image: {
  27488. source: "./media/characters/balina-mahigan/back.svg",
  27489. extra: 445 / 428,
  27490. bottom: 4.07 / 448
  27491. }
  27492. },
  27493. arm: {
  27494. height: math.unit(1.88, "feet"),
  27495. name: "Arm",
  27496. image: {
  27497. source: "./media/characters/balina-mahigan/arm.svg"
  27498. }
  27499. },
  27500. backPort: {
  27501. height: math.unit(0.685, "feet"),
  27502. name: "Back Port",
  27503. image: {
  27504. source: "./media/characters/balina-mahigan/back-port.svg"
  27505. }
  27506. },
  27507. hoofpaw: {
  27508. height: math.unit(1.41, "feet"),
  27509. name: "Hoofpaw",
  27510. image: {
  27511. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  27512. }
  27513. },
  27514. leftHandBack: {
  27515. height: math.unit(0.938, "feet"),
  27516. name: "Left Hand (Back)",
  27517. image: {
  27518. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  27519. }
  27520. },
  27521. leftHandFront: {
  27522. height: math.unit(0.938, "feet"),
  27523. name: "Left Hand (Front)",
  27524. image: {
  27525. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  27526. }
  27527. },
  27528. rightHandBack: {
  27529. height: math.unit(0.95, "feet"),
  27530. name: "Right Hand (Back)",
  27531. image: {
  27532. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  27533. }
  27534. },
  27535. rightHandFront: {
  27536. height: math.unit(0.95, "feet"),
  27537. name: "Right Hand (Front)",
  27538. image: {
  27539. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  27540. }
  27541. },
  27542. },
  27543. [
  27544. {
  27545. name: "Normal",
  27546. height: math.unit(6 + 4 / 12, "feet"),
  27547. default: true
  27548. },
  27549. ]
  27550. ))
  27551. characterMakers.push(() => makeCharacter(
  27552. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  27553. {
  27554. front: {
  27555. height: math.unit(6, "feet"),
  27556. weight: math.unit(320, "lb"),
  27557. name: "Front",
  27558. image: {
  27559. source: "./media/characters/balina-mejeri/front.svg",
  27560. extra: 517 / 488,
  27561. bottom: 44.2 / 561
  27562. }
  27563. },
  27564. },
  27565. [
  27566. {
  27567. name: "Normal",
  27568. height: math.unit(6 + 4 / 12, "feet")
  27569. },
  27570. {
  27571. name: "Business",
  27572. height: math.unit(155, "feet"),
  27573. default: true
  27574. },
  27575. ]
  27576. ))
  27577. characterMakers.push(() => makeCharacter(
  27578. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  27579. {
  27580. kneeling: {
  27581. height: math.unit(6 + 4 / 12, "feet"),
  27582. weight: math.unit(300 * 20, "lb"),
  27583. name: "Kneeling",
  27584. image: {
  27585. source: "./media/characters/balbarian/kneeling.svg",
  27586. extra: 922 / 862,
  27587. bottom: 42.4 / 965
  27588. }
  27589. },
  27590. },
  27591. [
  27592. {
  27593. name: "Normal",
  27594. height: math.unit(6 + 4 / 12, "feet")
  27595. },
  27596. {
  27597. name: "Treasured",
  27598. height: math.unit(18 + 9 / 12, "feet"),
  27599. default: true
  27600. },
  27601. {
  27602. name: "Macro",
  27603. height: math.unit(900, "feet")
  27604. },
  27605. ]
  27606. ))
  27607. characterMakers.push(() => makeCharacter(
  27608. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  27609. {
  27610. front: {
  27611. height: math.unit(6 + 4 / 12, "feet"),
  27612. weight: math.unit(325, "lb"),
  27613. name: "Front",
  27614. image: {
  27615. source: "./media/characters/balina-amarini/front.svg",
  27616. extra: 415 / 403,
  27617. bottom: 19 / 433.4
  27618. }
  27619. },
  27620. back: {
  27621. height: math.unit(6 + 4 / 12, "feet"),
  27622. weight: math.unit(325, "lb"),
  27623. name: "Back",
  27624. image: {
  27625. source: "./media/characters/balina-amarini/back.svg",
  27626. extra: 415 / 403,
  27627. bottom: 13.5 / 432
  27628. }
  27629. },
  27630. overdrive: {
  27631. height: math.unit(6 + 4 / 12, "feet"),
  27632. weight: math.unit(400, "lb"),
  27633. name: "Overdrive",
  27634. image: {
  27635. source: "./media/characters/balina-amarini/overdrive.svg",
  27636. extra: 269 / 259,
  27637. bottom: 12 / 282
  27638. }
  27639. },
  27640. },
  27641. [
  27642. {
  27643. name: "Boom",
  27644. height: math.unit(9 + 10 / 12, "feet"),
  27645. default: true
  27646. },
  27647. {
  27648. name: "Macro",
  27649. height: math.unit(280, "feet")
  27650. },
  27651. ]
  27652. ))
  27653. characterMakers.push(() => makeCharacter(
  27654. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  27655. {
  27656. goddess: {
  27657. height: math.unit(600, "feet"),
  27658. weight: math.unit(2000000, "tons"),
  27659. name: "Goddess",
  27660. image: {
  27661. source: "./media/characters/lady-kubwa/goddess.svg",
  27662. extra: 1240.5 / 1223,
  27663. bottom: 22 / 1263
  27664. }
  27665. },
  27666. goddesser: {
  27667. height: math.unit(900, "feet"),
  27668. weight: math.unit(20000000, "lb"),
  27669. name: "Goddess-er",
  27670. image: {
  27671. source: "./media/characters/lady-kubwa/goddess-er.svg",
  27672. extra: 899 / 888,
  27673. bottom: 12.6 / 912
  27674. }
  27675. },
  27676. },
  27677. [
  27678. {
  27679. name: "Macro",
  27680. height: math.unit(600, "feet"),
  27681. default: true
  27682. },
  27683. {
  27684. name: "Megamacro",
  27685. height: math.unit(250, "miles")
  27686. },
  27687. ]
  27688. ))
  27689. characterMakers.push(() => makeCharacter(
  27690. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  27691. {
  27692. front: {
  27693. height: math.unit(7 + 7 / 12, "feet"),
  27694. weight: math.unit(250, "lb"),
  27695. name: "Front",
  27696. image: {
  27697. source: "./media/characters/tala-grovehorn/front.svg",
  27698. extra: 2636 / 2525,
  27699. bottom: 147 / 2781
  27700. }
  27701. },
  27702. back: {
  27703. height: math.unit(7 + 7 / 12, "feet"),
  27704. weight: math.unit(250, "lb"),
  27705. name: "Back",
  27706. image: {
  27707. source: "./media/characters/tala-grovehorn/back.svg",
  27708. extra: 2635 / 2539,
  27709. bottom: 100 / 2732.8
  27710. }
  27711. },
  27712. mouth: {
  27713. height: math.unit(1.15, "feet"),
  27714. name: "Mouth",
  27715. image: {
  27716. source: "./media/characters/tala-grovehorn/mouth.svg"
  27717. }
  27718. },
  27719. dick: {
  27720. height: math.unit(2.36, "feet"),
  27721. name: "Dick",
  27722. image: {
  27723. source: "./media/characters/tala-grovehorn/dick.svg"
  27724. }
  27725. },
  27726. slit: {
  27727. height: math.unit(0.61, "feet"),
  27728. name: "Slit",
  27729. image: {
  27730. source: "./media/characters/tala-grovehorn/slit.svg"
  27731. }
  27732. },
  27733. },
  27734. [
  27735. ]
  27736. ))
  27737. characterMakers.push(() => makeCharacter(
  27738. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  27739. {
  27740. front: {
  27741. height: math.unit(7 + 7 / 12, "feet"),
  27742. weight: math.unit(225, "lb"),
  27743. name: "Front",
  27744. image: {
  27745. source: "./media/characters/epona/front.svg",
  27746. extra: 2445 / 2290,
  27747. bottom: 251 / 2696
  27748. }
  27749. },
  27750. back: {
  27751. height: math.unit(7 + 7 / 12, "feet"),
  27752. weight: math.unit(225, "lb"),
  27753. name: "Back",
  27754. image: {
  27755. source: "./media/characters/epona/back.svg",
  27756. extra: 2546 / 2408,
  27757. bottom: 44 / 2589
  27758. }
  27759. },
  27760. genitals: {
  27761. height: math.unit(1.5, "feet"),
  27762. name: "Genitals",
  27763. image: {
  27764. source: "./media/characters/epona/genitals.svg"
  27765. }
  27766. },
  27767. },
  27768. [
  27769. {
  27770. name: "Normal",
  27771. height: math.unit(7 + 7 / 12, "feet"),
  27772. default: true
  27773. },
  27774. ]
  27775. ))
  27776. characterMakers.push(() => makeCharacter(
  27777. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  27778. {
  27779. front: {
  27780. height: math.unit(7, "feet"),
  27781. weight: math.unit(518, "lb"),
  27782. name: "Front",
  27783. image: {
  27784. source: "./media/characters/avia-bloodbourn/front.svg",
  27785. extra: 1466 / 1350,
  27786. bottom: 65 / 1527
  27787. }
  27788. },
  27789. },
  27790. [
  27791. ]
  27792. ))
  27793. characterMakers.push(() => makeCharacter(
  27794. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  27795. {
  27796. front: {
  27797. height: math.unit(9.35, "feet"),
  27798. weight: math.unit(600, "lb"),
  27799. name: "Front",
  27800. image: {
  27801. source: "./media/characters/amera/front.svg",
  27802. extra: 891 / 818,
  27803. bottom: 30 / 922.7
  27804. }
  27805. },
  27806. back: {
  27807. height: math.unit(9.35, "feet"),
  27808. weight: math.unit(600, "lb"),
  27809. name: "Back",
  27810. image: {
  27811. source: "./media/characters/amera/back.svg",
  27812. extra: 876 / 824,
  27813. bottom: 6.8 / 884
  27814. }
  27815. },
  27816. dick: {
  27817. height: math.unit(2.14, "feet"),
  27818. name: "Dick",
  27819. image: {
  27820. source: "./media/characters/amera/dick.svg"
  27821. }
  27822. },
  27823. },
  27824. [
  27825. {
  27826. name: "Normal",
  27827. height: math.unit(9.35, "feet"),
  27828. default: true
  27829. },
  27830. ]
  27831. ))
  27832. characterMakers.push(() => makeCharacter(
  27833. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  27834. {
  27835. kneeling: {
  27836. height: math.unit(3 + 4 / 12, "feet"),
  27837. weight: math.unit(90, "lb"),
  27838. name: "Kneeling",
  27839. image: {
  27840. source: "./media/characters/rosewen/kneeling.svg",
  27841. extra: 1835 / 1571,
  27842. bottom: 27.7 / 1862
  27843. }
  27844. },
  27845. },
  27846. [
  27847. {
  27848. name: "Normal",
  27849. height: math.unit(3 + 4 / 12, "feet"),
  27850. default: true
  27851. },
  27852. ]
  27853. ))
  27854. characterMakers.push(() => makeCharacter(
  27855. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  27856. {
  27857. front: {
  27858. height: math.unit(5 + 10 / 12, "feet"),
  27859. weight: math.unit(200, "lb"),
  27860. name: "Front",
  27861. image: {
  27862. source: "./media/characters/sabah/front.svg",
  27863. extra: 849 / 763,
  27864. bottom: 33.9 / 881
  27865. }
  27866. },
  27867. },
  27868. [
  27869. {
  27870. name: "Normal",
  27871. height: math.unit(5 + 10 / 12, "feet"),
  27872. default: true
  27873. },
  27874. ]
  27875. ))
  27876. characterMakers.push(() => makeCharacter(
  27877. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  27878. {
  27879. front: {
  27880. height: math.unit(3 + 5 / 12, "feet"),
  27881. weight: math.unit(40, "kg"),
  27882. name: "Front",
  27883. image: {
  27884. source: "./media/characters/purple-flame/front.svg",
  27885. extra: 1577 / 1412,
  27886. bottom: 97 / 1694
  27887. }
  27888. },
  27889. frontDressed: {
  27890. height: math.unit(3 + 5 / 12, "feet"),
  27891. weight: math.unit(40, "kg"),
  27892. name: "Front (Dressed)",
  27893. image: {
  27894. source: "./media/characters/purple-flame/front-dressed.svg",
  27895. extra: 1577 / 1412,
  27896. bottom: 97 / 1694
  27897. }
  27898. },
  27899. headphones: {
  27900. height: math.unit(0.85, "feet"),
  27901. name: "Headphones",
  27902. image: {
  27903. source: "./media/characters/purple-flame/headphones.svg"
  27904. }
  27905. },
  27906. },
  27907. [
  27908. {
  27909. name: "Really Small",
  27910. height: math.unit(5, "cm")
  27911. },
  27912. {
  27913. name: "Micro",
  27914. height: math.unit(1 + 5 / 12, "feet")
  27915. },
  27916. {
  27917. name: "Normal",
  27918. height: math.unit(3 + 5 / 12, "feet"),
  27919. default: true
  27920. },
  27921. {
  27922. name: "Minimacro",
  27923. height: math.unit(125, "feet")
  27924. },
  27925. {
  27926. name: "Macro",
  27927. height: math.unit(0.5, "miles")
  27928. },
  27929. {
  27930. name: "Megamacro",
  27931. height: math.unit(50, "miles")
  27932. },
  27933. {
  27934. name: "Gigantic",
  27935. height: math.unit(750, "miles")
  27936. },
  27937. {
  27938. name: "Planetary",
  27939. height: math.unit(15000, "miles")
  27940. },
  27941. ]
  27942. ))
  27943. characterMakers.push(() => makeCharacter(
  27944. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  27945. {
  27946. front: {
  27947. height: math.unit(14, "feet"),
  27948. weight: math.unit(959, "lb"),
  27949. name: "Front",
  27950. image: {
  27951. source: "./media/characters/arsenal/front.svg",
  27952. extra: 2357 / 2157,
  27953. bottom: 93 / 2458
  27954. }
  27955. },
  27956. },
  27957. [
  27958. {
  27959. name: "Normal",
  27960. height: math.unit(14, "feet"),
  27961. default: true
  27962. },
  27963. ]
  27964. ))
  27965. characterMakers.push(() => makeCharacter(
  27966. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  27967. {
  27968. front: {
  27969. height: math.unit(6, "feet"),
  27970. weight: math.unit(150, "lb"),
  27971. name: "Front",
  27972. image: {
  27973. source: "./media/characters/adira/front.svg",
  27974. extra: 1078 / 1029,
  27975. bottom: 87 / 1166
  27976. }
  27977. },
  27978. },
  27979. [
  27980. {
  27981. name: "Micro",
  27982. height: math.unit(4, "inches"),
  27983. default: true
  27984. },
  27985. {
  27986. name: "Macro",
  27987. height: math.unit(50, "feet")
  27988. },
  27989. ]
  27990. ))
  27991. characterMakers.push(() => makeCharacter(
  27992. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  27993. {
  27994. front: {
  27995. height: math.unit(16, "feet"),
  27996. weight: math.unit(1000, "lb"),
  27997. name: "Front",
  27998. image: {
  27999. source: "./media/characters/grim/front.svg",
  28000. extra: 622 / 614,
  28001. bottom: 18.1 / 642
  28002. }
  28003. },
  28004. back: {
  28005. height: math.unit(16, "feet"),
  28006. weight: math.unit(1000, "lb"),
  28007. name: "Back",
  28008. image: {
  28009. source: "./media/characters/grim/back.svg",
  28010. extra: 610.6 / 602,
  28011. bottom: 40.8 / 652
  28012. }
  28013. },
  28014. hunched: {
  28015. height: math.unit(9.75, "feet"),
  28016. weight: math.unit(1000, "lb"),
  28017. name: "Hunched",
  28018. image: {
  28019. source: "./media/characters/grim/hunched.svg",
  28020. extra: 304 / 297,
  28021. bottom: 35.4 / 394
  28022. }
  28023. },
  28024. },
  28025. [
  28026. {
  28027. name: "Normal",
  28028. height: math.unit(16, "feet"),
  28029. default: true
  28030. },
  28031. ]
  28032. ))
  28033. characterMakers.push(() => makeCharacter(
  28034. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  28035. {
  28036. front: {
  28037. height: math.unit(2.3, "meters"),
  28038. weight: math.unit(300, "lb"),
  28039. name: "Front",
  28040. image: {
  28041. source: "./media/characters/sinja/front-sfw.svg",
  28042. extra: 1393 / 1294,
  28043. bottom: 70 / 1463
  28044. }
  28045. },
  28046. frontNsfw: {
  28047. height: math.unit(2.3, "meters"),
  28048. weight: math.unit(300, "lb"),
  28049. name: "Front (NSFW)",
  28050. image: {
  28051. source: "./media/characters/sinja/front-nsfw.svg",
  28052. extra: 1393 / 1294,
  28053. bottom: 70 / 1463
  28054. }
  28055. },
  28056. back: {
  28057. height: math.unit(2.3, "meters"),
  28058. weight: math.unit(300, "lb"),
  28059. name: "Back",
  28060. image: {
  28061. source: "./media/characters/sinja/back.svg",
  28062. extra: 1393 / 1294,
  28063. bottom: 70 / 1463
  28064. }
  28065. },
  28066. head: {
  28067. height: math.unit(1.771, "feet"),
  28068. name: "Head",
  28069. image: {
  28070. source: "./media/characters/sinja/head.svg"
  28071. }
  28072. },
  28073. slit: {
  28074. height: math.unit(0.8, "feet"),
  28075. name: "Slit",
  28076. image: {
  28077. source: "./media/characters/sinja/slit.svg"
  28078. }
  28079. },
  28080. },
  28081. [
  28082. {
  28083. name: "Normal",
  28084. height: math.unit(2.3, "meters")
  28085. },
  28086. {
  28087. name: "Macro",
  28088. height: math.unit(91, "meters"),
  28089. default: true
  28090. },
  28091. {
  28092. name: "Megamacro",
  28093. height: math.unit(91440, "meters")
  28094. },
  28095. {
  28096. name: "Gigamacro",
  28097. height: math.unit(60960000, "meters")
  28098. },
  28099. {
  28100. name: "Teramacro",
  28101. height: math.unit(9144000000, "meters")
  28102. },
  28103. ]
  28104. ))
  28105. characterMakers.push(() => makeCharacter(
  28106. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  28107. {
  28108. front: {
  28109. height: math.unit(1.7, "meters"),
  28110. weight: math.unit(130, "lb"),
  28111. name: "Front",
  28112. image: {
  28113. source: "./media/characters/kyu/front.svg",
  28114. extra: 415 / 395,
  28115. bottom: 5 / 420
  28116. }
  28117. },
  28118. head: {
  28119. height: math.unit(1.75, "feet"),
  28120. name: "Head",
  28121. image: {
  28122. source: "./media/characters/kyu/head.svg"
  28123. }
  28124. },
  28125. foot: {
  28126. height: math.unit(0.81, "feet"),
  28127. name: "Foot",
  28128. image: {
  28129. source: "./media/characters/kyu/foot.svg"
  28130. }
  28131. },
  28132. },
  28133. [
  28134. {
  28135. name: "Normal",
  28136. height: math.unit(1.7, "meters")
  28137. },
  28138. {
  28139. name: "Macro",
  28140. height: math.unit(131, "feet"),
  28141. default: true
  28142. },
  28143. {
  28144. name: "Megamacro",
  28145. height: math.unit(91440, "meters")
  28146. },
  28147. {
  28148. name: "Gigamacro",
  28149. height: math.unit(60960000, "meters")
  28150. },
  28151. {
  28152. name: "Teramacro",
  28153. height: math.unit(9144000000, "meters")
  28154. },
  28155. ]
  28156. ))
  28157. characterMakers.push(() => makeCharacter(
  28158. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  28159. {
  28160. front: {
  28161. height: math.unit(7 + 1 / 12, "feet"),
  28162. weight: math.unit(250, "lb"),
  28163. name: "Front",
  28164. image: {
  28165. source: "./media/characters/joey/front.svg",
  28166. extra: 1791 / 1537,
  28167. bottom: 28 / 1816
  28168. }
  28169. },
  28170. },
  28171. [
  28172. {
  28173. name: "Micro",
  28174. height: math.unit(3, "inches")
  28175. },
  28176. {
  28177. name: "Normal",
  28178. height: math.unit(7 + 1 / 12, "feet"),
  28179. default: true
  28180. },
  28181. ]
  28182. ))
  28183. characterMakers.push(() => makeCharacter(
  28184. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  28185. {
  28186. front: {
  28187. height: math.unit(165, "cm"),
  28188. weight: math.unit(140, "lb"),
  28189. name: "Front",
  28190. image: {
  28191. source: "./media/characters/sam-evans/front.svg",
  28192. extra: 3417 / 3230,
  28193. bottom: 41.3 / 3417
  28194. }
  28195. },
  28196. frontSixTails: {
  28197. height: math.unit(165, "cm"),
  28198. weight: math.unit(140, "lb"),
  28199. name: "Front-six-tails",
  28200. image: {
  28201. source: "./media/characters/sam-evans/front-six-tails.svg",
  28202. extra: 3417 / 3230,
  28203. bottom: 41.3 / 3417
  28204. }
  28205. },
  28206. back: {
  28207. height: math.unit(165, "cm"),
  28208. weight: math.unit(140, "lb"),
  28209. name: "Back",
  28210. image: {
  28211. source: "./media/characters/sam-evans/back.svg",
  28212. extra: 3227 / 3032,
  28213. bottom: 6.8 / 3234
  28214. }
  28215. },
  28216. face: {
  28217. height: math.unit(0.68, "feet"),
  28218. name: "Face",
  28219. image: {
  28220. source: "./media/characters/sam-evans/face.svg"
  28221. }
  28222. },
  28223. },
  28224. [
  28225. {
  28226. name: "Normal",
  28227. height: math.unit(165, "cm"),
  28228. default: true
  28229. },
  28230. {
  28231. name: "Macro",
  28232. height: math.unit(100, "meters")
  28233. },
  28234. {
  28235. name: "Macro+",
  28236. height: math.unit(800, "meters")
  28237. },
  28238. {
  28239. name: "Macro++",
  28240. height: math.unit(3, "km")
  28241. },
  28242. {
  28243. name: "Macro+++",
  28244. height: math.unit(30, "km")
  28245. },
  28246. ]
  28247. ))
  28248. characterMakers.push(() => makeCharacter(
  28249. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  28250. {
  28251. front: {
  28252. height: math.unit(10, "feet"),
  28253. weight: math.unit(750, "lb"),
  28254. name: "Front",
  28255. image: {
  28256. source: "./media/characters/juliet-a/front.svg",
  28257. extra: 1766 / 1720,
  28258. bottom: 43 / 1809
  28259. }
  28260. },
  28261. back: {
  28262. height: math.unit(10, "feet"),
  28263. weight: math.unit(750, "lb"),
  28264. name: "Back",
  28265. image: {
  28266. source: "./media/characters/juliet-a/back.svg",
  28267. extra: 1781 / 1734,
  28268. bottom: 35 / 1810,
  28269. }
  28270. },
  28271. },
  28272. [
  28273. {
  28274. name: "Normal",
  28275. height: math.unit(10, "feet"),
  28276. default: true
  28277. },
  28278. {
  28279. name: "Dragon Form",
  28280. height: math.unit(250, "feet")
  28281. },
  28282. {
  28283. name: "Macro",
  28284. height: math.unit(1000, "feet")
  28285. },
  28286. {
  28287. name: "Megamacro",
  28288. height: math.unit(10000, "feet")
  28289. }
  28290. ]
  28291. ))
  28292. characterMakers.push(() => makeCharacter(
  28293. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  28294. {
  28295. regular: {
  28296. height: math.unit(7 + 3 / 12, "feet"),
  28297. weight: math.unit(260, "lb"),
  28298. name: "Regular",
  28299. image: {
  28300. source: "./media/characters/wild/regular.svg",
  28301. extra: 97.45 / 92,
  28302. bottom: 6.8 / 104.3
  28303. }
  28304. },
  28305. biggums: {
  28306. height: math.unit(8 + 6 / 12, "feet"),
  28307. weight: math.unit(425, "lb"),
  28308. name: "Biggums",
  28309. image: {
  28310. source: "./media/characters/wild/biggums.svg",
  28311. extra: 97.45 / 92,
  28312. bottom: 7.5 / 132.34
  28313. }
  28314. },
  28315. mawRegular: {
  28316. height: math.unit(1.24, "feet"),
  28317. name: "Maw (Regular)",
  28318. image: {
  28319. source: "./media/characters/wild/maw.svg"
  28320. }
  28321. },
  28322. mawBiggums: {
  28323. height: math.unit(1.47, "feet"),
  28324. name: "Maw (Biggums)",
  28325. image: {
  28326. source: "./media/characters/wild/maw.svg"
  28327. }
  28328. },
  28329. },
  28330. [
  28331. {
  28332. name: "Normal",
  28333. height: math.unit(7 + 3 / 12, "feet"),
  28334. default: true
  28335. },
  28336. ]
  28337. ))
  28338. characterMakers.push(() => makeCharacter(
  28339. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  28340. {
  28341. front: {
  28342. height: math.unit(2.5, "meters"),
  28343. weight: math.unit(200, "kg"),
  28344. name: "Front",
  28345. image: {
  28346. source: "./media/characters/vidar/front.svg",
  28347. extra: 2994 / 2795,
  28348. bottom: 56 / 3061
  28349. }
  28350. },
  28351. back: {
  28352. height: math.unit(2.5, "meters"),
  28353. weight: math.unit(200, "kg"),
  28354. name: "Back",
  28355. image: {
  28356. source: "./media/characters/vidar/back.svg",
  28357. extra: 3131 / 2928,
  28358. bottom: 13.5 / 3141.5
  28359. }
  28360. },
  28361. feral: {
  28362. height: math.unit(2.5, "meters"),
  28363. weight: math.unit(2000, "kg"),
  28364. name: "Feral",
  28365. image: {
  28366. source: "./media/characters/vidar/feral.svg",
  28367. extra: 2790 / 1765,
  28368. bottom: 6 / 2796
  28369. }
  28370. },
  28371. },
  28372. [
  28373. {
  28374. name: "Normal",
  28375. height: math.unit(2.5, "meters"),
  28376. default: true
  28377. },
  28378. {
  28379. name: "Macro",
  28380. height: math.unit(100, "meters")
  28381. },
  28382. ]
  28383. ))
  28384. characterMakers.push(() => makeCharacter(
  28385. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  28386. {
  28387. front: {
  28388. height: math.unit(5 + 9 / 12, "feet"),
  28389. weight: math.unit(120, "lb"),
  28390. name: "Front",
  28391. image: {
  28392. source: "./media/characters/ash/front.svg",
  28393. extra: 2189 / 1961,
  28394. bottom: 5.2 / 2194
  28395. }
  28396. },
  28397. },
  28398. [
  28399. {
  28400. name: "Normal",
  28401. height: math.unit(5 + 9 / 12, "feet"),
  28402. default: true
  28403. },
  28404. ]
  28405. ))
  28406. characterMakers.push(() => makeCharacter(
  28407. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  28408. {
  28409. front: {
  28410. height: math.unit(9, "feet"),
  28411. weight: math.unit(10000, "lb"),
  28412. name: "Front",
  28413. image: {
  28414. source: "./media/characters/gygabite/front.svg",
  28415. bottom: 31.7 / 537.8,
  28416. extra: 505 / 370
  28417. }
  28418. },
  28419. },
  28420. [
  28421. {
  28422. name: "Normal",
  28423. height: math.unit(9, "feet"),
  28424. default: true
  28425. },
  28426. ]
  28427. ))
  28428. characterMakers.push(() => makeCharacter(
  28429. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  28430. {
  28431. front: {
  28432. height: math.unit(12, "feet"),
  28433. weight: math.unit(35000, "lb"),
  28434. name: "Front",
  28435. image: {
  28436. source: "./media/characters/p0tat0/front.svg",
  28437. extra: 1065 / 921,
  28438. bottom: 55.7 / 1121.25
  28439. }
  28440. },
  28441. },
  28442. [
  28443. {
  28444. name: "Normal",
  28445. height: math.unit(12, "feet"),
  28446. default: true
  28447. },
  28448. ]
  28449. ))
  28450. characterMakers.push(() => makeCharacter(
  28451. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  28452. {
  28453. side: {
  28454. height: math.unit(6.5, "feet"),
  28455. weight: math.unit(800, "lb"),
  28456. name: "Side",
  28457. image: {
  28458. source: "./media/characters/dusk/side.svg",
  28459. extra: 615 / 373,
  28460. bottom: 53 / 664
  28461. }
  28462. },
  28463. sitting: {
  28464. height: math.unit(7, "feet"),
  28465. weight: math.unit(800, "lb"),
  28466. name: "Sitting",
  28467. image: {
  28468. source: "./media/characters/dusk/sitting.svg",
  28469. extra: 753 / 425,
  28470. bottom: 33 / 774
  28471. }
  28472. },
  28473. head: {
  28474. height: math.unit(6.1, "feet"),
  28475. name: "Head",
  28476. image: {
  28477. source: "./media/characters/dusk/head.svg"
  28478. }
  28479. },
  28480. },
  28481. [
  28482. {
  28483. name: "Normal",
  28484. height: math.unit(7, "feet"),
  28485. default: true
  28486. },
  28487. ]
  28488. ))
  28489. characterMakers.push(() => makeCharacter(
  28490. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  28491. {
  28492. front: {
  28493. height: math.unit(15, "feet"),
  28494. weight: math.unit(7000, "lb"),
  28495. name: "Front",
  28496. image: {
  28497. source: "./media/characters/jay-direwolf/front.svg",
  28498. extra: 1810 / 1732,
  28499. bottom: 66 / 1892
  28500. }
  28501. },
  28502. },
  28503. [
  28504. {
  28505. name: "Normal",
  28506. height: math.unit(15, "feet"),
  28507. default: true
  28508. },
  28509. ]
  28510. ))
  28511. characterMakers.push(() => makeCharacter(
  28512. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  28513. {
  28514. front: {
  28515. height: math.unit(4 + 9 / 12, "feet"),
  28516. weight: math.unit(130, "lb"),
  28517. name: "Front",
  28518. image: {
  28519. source: "./media/characters/anchovie/front.svg",
  28520. extra: 382 / 350,
  28521. bottom: 25 / 409
  28522. }
  28523. },
  28524. back: {
  28525. height: math.unit(4 + 9 / 12, "feet"),
  28526. weight: math.unit(130, "lb"),
  28527. name: "Back",
  28528. image: {
  28529. source: "./media/characters/anchovie/back.svg",
  28530. extra: 385 / 352,
  28531. bottom: 16.6 / 402
  28532. }
  28533. },
  28534. frontDressed: {
  28535. height: math.unit(4 + 9 / 12, "feet"),
  28536. weight: math.unit(130, "lb"),
  28537. name: "Front (Dressed)",
  28538. image: {
  28539. source: "./media/characters/anchovie/front-dressed.svg",
  28540. extra: 382 / 350,
  28541. bottom: 25 / 409
  28542. }
  28543. },
  28544. backDressed: {
  28545. height: math.unit(4 + 9 / 12, "feet"),
  28546. weight: math.unit(130, "lb"),
  28547. name: "Back (Dressed)",
  28548. image: {
  28549. source: "./media/characters/anchovie/back-dressed.svg",
  28550. extra: 385 / 352,
  28551. bottom: 16.6 / 402
  28552. }
  28553. },
  28554. },
  28555. [
  28556. {
  28557. name: "Micro",
  28558. height: math.unit(6.4, "inches")
  28559. },
  28560. {
  28561. name: "Normal",
  28562. height: math.unit(4 + 9 / 12, "feet"),
  28563. default: true
  28564. },
  28565. ]
  28566. ))
  28567. characterMakers.push(() => makeCharacter(
  28568. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  28569. {
  28570. front: {
  28571. height: math.unit(2, "meters"),
  28572. weight: math.unit(180, "lb"),
  28573. name: "Front",
  28574. image: {
  28575. source: "./media/characters/acidrenamon/front.svg",
  28576. extra: 987 / 890,
  28577. bottom: 22.8 / 1009
  28578. }
  28579. },
  28580. back: {
  28581. height: math.unit(2, "meters"),
  28582. weight: math.unit(180, "lb"),
  28583. name: "Back",
  28584. image: {
  28585. source: "./media/characters/acidrenamon/back.svg",
  28586. extra: 983 / 891,
  28587. bottom: 8.4 / 992
  28588. }
  28589. },
  28590. head: {
  28591. height: math.unit(1.92, "feet"),
  28592. name: "Head",
  28593. image: {
  28594. source: "./media/characters/acidrenamon/head.svg"
  28595. }
  28596. },
  28597. rump: {
  28598. height: math.unit(1.72, "feet"),
  28599. name: "Rump",
  28600. image: {
  28601. source: "./media/characters/acidrenamon/rump.svg"
  28602. }
  28603. },
  28604. tail: {
  28605. height: math.unit(4.2, "feet"),
  28606. name: "Tail",
  28607. image: {
  28608. source: "./media/characters/acidrenamon/tail.svg"
  28609. }
  28610. },
  28611. },
  28612. [
  28613. {
  28614. name: "Normal",
  28615. height: math.unit(2, "meters"),
  28616. default: true
  28617. },
  28618. {
  28619. name: "Minimacro",
  28620. height: math.unit(7, "meters")
  28621. },
  28622. {
  28623. name: "Macro",
  28624. height: math.unit(200, "meters")
  28625. },
  28626. {
  28627. name: "Gigamacro",
  28628. height: math.unit(0.2, "earths")
  28629. },
  28630. ]
  28631. ))
  28632. characterMakers.push(() => makeCharacter(
  28633. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  28634. {
  28635. front: {
  28636. height: math.unit(152, "feet"),
  28637. name: "Front",
  28638. image: {
  28639. source: "./media/characters/kenzie-lee/front.svg",
  28640. extra: 1869/1774,
  28641. bottom: 128/1997
  28642. }
  28643. },
  28644. side: {
  28645. height: math.unit(86, "feet"),
  28646. name: "Side",
  28647. image: {
  28648. source: "./media/characters/kenzie-lee/side.svg",
  28649. extra: 930/815,
  28650. bottom: 177/1107
  28651. }
  28652. },
  28653. paw: {
  28654. height: math.unit(15, "feet"),
  28655. name: "Paw",
  28656. image: {
  28657. source: "./media/characters/kenzie-lee/paw.svg"
  28658. }
  28659. },
  28660. },
  28661. [
  28662. {
  28663. name: "Kenzie Flea",
  28664. height: math.unit(2, "mm"),
  28665. default: true
  28666. },
  28667. {
  28668. name: "Micro",
  28669. height: math.unit(2, "inches")
  28670. },
  28671. {
  28672. name: "Normal",
  28673. height: math.unit(152, "feet")
  28674. },
  28675. {
  28676. name: "Megamacro",
  28677. height: math.unit(7, "miles")
  28678. },
  28679. {
  28680. name: "Gigamacro",
  28681. height: math.unit(8000, "miles")
  28682. },
  28683. ]
  28684. ))
  28685. characterMakers.push(() => makeCharacter(
  28686. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  28687. {
  28688. front: {
  28689. height: math.unit(6, "feet"),
  28690. name: "Front",
  28691. image: {
  28692. source: "./media/characters/withers/front.svg",
  28693. extra: 1935/1760,
  28694. bottom: 72/2007
  28695. }
  28696. },
  28697. back: {
  28698. height: math.unit(6, "feet"),
  28699. name: "Back",
  28700. image: {
  28701. source: "./media/characters/withers/back.svg",
  28702. extra: 1944/1792,
  28703. bottom: 12/1956
  28704. }
  28705. },
  28706. dressed: {
  28707. height: math.unit(6, "feet"),
  28708. name: "Dressed",
  28709. image: {
  28710. source: "./media/characters/withers/dressed.svg",
  28711. extra: 1937/1765,
  28712. bottom: 73/2010
  28713. }
  28714. },
  28715. phase1: {
  28716. height: math.unit(1.1, "feet"),
  28717. name: "Phase 1",
  28718. image: {
  28719. source: "./media/characters/withers/phase-1.svg",
  28720. extra: 1885/1232,
  28721. bottom: 0/1885
  28722. }
  28723. },
  28724. phase2: {
  28725. height: math.unit(1.05, "feet"),
  28726. name: "Phase 2",
  28727. image: {
  28728. source: "./media/characters/withers/phase-2.svg",
  28729. extra: 1792/1090,
  28730. bottom: 0/1792
  28731. }
  28732. },
  28733. partyWipe: {
  28734. height: math.unit(1.1, "feet"),
  28735. name: "Party Wipe",
  28736. image: {
  28737. source: "./media/characters/withers/party-wipe.svg",
  28738. extra: 1864/1207,
  28739. bottom: 0/1864
  28740. }
  28741. },
  28742. },
  28743. [
  28744. {
  28745. name: "Macro",
  28746. height: math.unit(167, "feet"),
  28747. default: true
  28748. },
  28749. {
  28750. name: "Megamacro",
  28751. height: math.unit(15, "miles")
  28752. }
  28753. ]
  28754. ))
  28755. characterMakers.push(() => makeCharacter(
  28756. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  28757. {
  28758. front: {
  28759. height: math.unit(6 + 7 / 12, "feet"),
  28760. weight: math.unit(250, "lb"),
  28761. name: "Front",
  28762. image: {
  28763. source: "./media/characters/nemoskii/front.svg",
  28764. extra: 2270 / 1734,
  28765. bottom: 86 / 2354
  28766. }
  28767. },
  28768. back: {
  28769. height: math.unit(6 + 7 / 12, "feet"),
  28770. weight: math.unit(250, "lb"),
  28771. name: "Back",
  28772. image: {
  28773. source: "./media/characters/nemoskii/back.svg",
  28774. extra: 1845 / 1788,
  28775. bottom: 10.5 / 1852
  28776. }
  28777. },
  28778. head: {
  28779. height: math.unit(1.31, "feet"),
  28780. name: "Head",
  28781. image: {
  28782. source: "./media/characters/nemoskii/head.svg"
  28783. }
  28784. },
  28785. },
  28786. [
  28787. {
  28788. name: "Micro",
  28789. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  28790. },
  28791. {
  28792. name: "Normal",
  28793. height: math.unit(6 + 7 / 12, "feet"),
  28794. default: true
  28795. },
  28796. {
  28797. name: "Macro",
  28798. height: math.unit((6 + 7 / 12) * 150, "feet")
  28799. },
  28800. {
  28801. name: "Macro+",
  28802. height: math.unit((6 + 7 / 12) * 500, "feet")
  28803. },
  28804. {
  28805. name: "Megamacro",
  28806. height: math.unit((6 + 7 / 12) * 100000, "feet")
  28807. },
  28808. ]
  28809. ))
  28810. characterMakers.push(() => makeCharacter(
  28811. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  28812. {
  28813. front: {
  28814. height: math.unit(1, "mile"),
  28815. weight: math.unit(265261.9, "lb"),
  28816. name: "Front",
  28817. image: {
  28818. source: "./media/characters/shui/front.svg",
  28819. extra: 1633 / 1564,
  28820. bottom: 91.5 / 1726
  28821. }
  28822. },
  28823. },
  28824. [
  28825. {
  28826. name: "Macro",
  28827. height: math.unit(1, "mile"),
  28828. default: true
  28829. },
  28830. ]
  28831. ))
  28832. characterMakers.push(() => makeCharacter(
  28833. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  28834. {
  28835. front: {
  28836. height: math.unit(12 + 6 / 12, "feet"),
  28837. weight: math.unit(1342, "lb"),
  28838. name: "Front",
  28839. image: {
  28840. source: "./media/characters/arokh-takakura/front.svg",
  28841. extra: 1089 / 1043,
  28842. bottom: 77.4 / 1176.7
  28843. }
  28844. },
  28845. back: {
  28846. height: math.unit(12 + 6 / 12, "feet"),
  28847. weight: math.unit(1342, "lb"),
  28848. name: "Back",
  28849. image: {
  28850. source: "./media/characters/arokh-takakura/back.svg",
  28851. extra: 1046 / 1019,
  28852. bottom: 102 / 1150
  28853. }
  28854. },
  28855. },
  28856. [
  28857. {
  28858. name: "Big",
  28859. height: math.unit(12 + 6 / 12, "feet"),
  28860. default: true
  28861. },
  28862. ]
  28863. ))
  28864. characterMakers.push(() => makeCharacter(
  28865. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  28866. {
  28867. front: {
  28868. height: math.unit(5 + 6 / 12, "feet"),
  28869. weight: math.unit(150, "lb"),
  28870. name: "Front",
  28871. image: {
  28872. source: "./media/characters/theo/front.svg",
  28873. extra: 1184 / 1131,
  28874. bottom: 7.4 / 1191
  28875. }
  28876. },
  28877. },
  28878. [
  28879. {
  28880. name: "Micro",
  28881. height: math.unit(5, "inches")
  28882. },
  28883. {
  28884. name: "Normal",
  28885. height: math.unit(5 + 6 / 12, "feet"),
  28886. default: true
  28887. },
  28888. ]
  28889. ))
  28890. characterMakers.push(() => makeCharacter(
  28891. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  28892. {
  28893. front: {
  28894. height: math.unit(5 + 9 / 12, "feet"),
  28895. weight: math.unit(130, "lb"),
  28896. name: "Front",
  28897. image: {
  28898. source: "./media/characters/cecelia-swift/front.svg",
  28899. extra: 502 / 484,
  28900. bottom: 23 / 523
  28901. }
  28902. },
  28903. back: {
  28904. height: math.unit(5 + 9 / 12, "feet"),
  28905. weight: math.unit(130, "lb"),
  28906. name: "Back",
  28907. image: {
  28908. source: "./media/characters/cecelia-swift/back.svg",
  28909. extra: 499 / 485,
  28910. bottom: 12 / 511
  28911. }
  28912. },
  28913. head: {
  28914. height: math.unit(0.90, "feet"),
  28915. name: "Head",
  28916. image: {
  28917. source: "./media/characters/cecelia-swift/head.svg"
  28918. }
  28919. },
  28920. rump: {
  28921. height: math.unit(1.75, "feet"),
  28922. name: "Rump",
  28923. image: {
  28924. source: "./media/characters/cecelia-swift/rump.svg"
  28925. }
  28926. },
  28927. },
  28928. [
  28929. {
  28930. name: "Normal",
  28931. height: math.unit(5 + 9 / 12, "feet"),
  28932. default: true
  28933. },
  28934. {
  28935. name: "Big",
  28936. height: math.unit(50, "feet")
  28937. },
  28938. {
  28939. name: "Macro",
  28940. height: math.unit(100, "feet")
  28941. },
  28942. {
  28943. name: "Macro+",
  28944. height: math.unit(500, "feet")
  28945. },
  28946. {
  28947. name: "Macro++",
  28948. height: math.unit(1000, "feet")
  28949. },
  28950. ]
  28951. ))
  28952. characterMakers.push(() => makeCharacter(
  28953. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  28954. {
  28955. front: {
  28956. height: math.unit(6, "feet"),
  28957. weight: math.unit(150, "lb"),
  28958. name: "Front",
  28959. image: {
  28960. source: "./media/characters/kaunan/front.svg",
  28961. extra: 2890 / 2523,
  28962. bottom: 49 / 2939
  28963. }
  28964. },
  28965. },
  28966. [
  28967. {
  28968. name: "Macro",
  28969. height: math.unit(150, "feet"),
  28970. default: true
  28971. },
  28972. ]
  28973. ))
  28974. characterMakers.push(() => makeCharacter(
  28975. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  28976. {
  28977. front: {
  28978. height: math.unit(175, "cm"),
  28979. weight: math.unit(60, "kg"),
  28980. name: "Front",
  28981. image: {
  28982. source: "./media/characters/fei/front.svg",
  28983. extra: 1873/1723,
  28984. bottom: 53/1926
  28985. }
  28986. },
  28987. },
  28988. [
  28989. {
  28990. name: "Mortal",
  28991. height: math.unit(175, "cm")
  28992. },
  28993. {
  28994. name: "Normal",
  28995. height: math.unit(3500, "m"),
  28996. default: true
  28997. },
  28998. {
  28999. name: "Stroll",
  29000. height: math.unit(17.5, "km")
  29001. },
  29002. {
  29003. name: "Showoff",
  29004. height: math.unit(175, "km")
  29005. },
  29006. ]
  29007. ))
  29008. characterMakers.push(() => makeCharacter(
  29009. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  29010. {
  29011. front: {
  29012. height: math.unit(7, "feet"),
  29013. weight: math.unit(1000, "kg"),
  29014. name: "Front",
  29015. image: {
  29016. source: "./media/characters/edrax/front.svg",
  29017. extra: 2838 / 2550,
  29018. bottom: 130 / 2968
  29019. }
  29020. },
  29021. },
  29022. [
  29023. {
  29024. name: "Small",
  29025. height: math.unit(7, "feet")
  29026. },
  29027. {
  29028. name: "Normal",
  29029. height: math.unit(1500, "meters")
  29030. },
  29031. {
  29032. name: "Mega",
  29033. height: math.unit(12000000, "km"),
  29034. default: true
  29035. },
  29036. {
  29037. name: "Megamacro",
  29038. height: math.unit(10600000, "lightyears")
  29039. },
  29040. {
  29041. name: "Hypermacro",
  29042. height: math.unit(256, "yottameters")
  29043. },
  29044. ]
  29045. ))
  29046. characterMakers.push(() => makeCharacter(
  29047. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  29048. {
  29049. front: {
  29050. height: math.unit(10, "feet"),
  29051. weight: math.unit(750, "lb"),
  29052. name: "Front",
  29053. image: {
  29054. source: "./media/characters/clove/front.svg",
  29055. extra: 1918/1751,
  29056. bottom: 52/1970
  29057. }
  29058. },
  29059. back: {
  29060. height: math.unit(10, "feet"),
  29061. weight: math.unit(750, "lb"),
  29062. name: "Back",
  29063. image: {
  29064. source: "./media/characters/clove/back.svg",
  29065. extra: 1912/1747,
  29066. bottom: 50/1962
  29067. }
  29068. },
  29069. },
  29070. [
  29071. {
  29072. name: "Normal",
  29073. height: math.unit(10, "feet"),
  29074. default: true
  29075. },
  29076. ]
  29077. ))
  29078. characterMakers.push(() => makeCharacter(
  29079. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  29080. {
  29081. front: {
  29082. height: math.unit(4, "feet"),
  29083. weight: math.unit(50, "lb"),
  29084. name: "Front",
  29085. image: {
  29086. source: "./media/characters/alex-rabbit/front.svg",
  29087. extra: 507 / 458,
  29088. bottom: 18.5 / 527
  29089. }
  29090. },
  29091. back: {
  29092. height: math.unit(4, "feet"),
  29093. weight: math.unit(50, "lb"),
  29094. name: "Back",
  29095. image: {
  29096. source: "./media/characters/alex-rabbit/back.svg",
  29097. extra: 502 / 460,
  29098. bottom: 18.9 / 521
  29099. }
  29100. },
  29101. },
  29102. [
  29103. {
  29104. name: "Normal",
  29105. height: math.unit(4, "feet"),
  29106. default: true
  29107. },
  29108. ]
  29109. ))
  29110. characterMakers.push(() => makeCharacter(
  29111. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  29112. {
  29113. front: {
  29114. height: math.unit(1 + 3 / 12, "feet"),
  29115. weight: math.unit(80, "lb"),
  29116. name: "Front",
  29117. image: {
  29118. source: "./media/characters/zander-rose/front.svg",
  29119. extra: 916 / 797,
  29120. bottom: 17 / 933
  29121. }
  29122. },
  29123. back: {
  29124. height: math.unit(1 + 3 / 12, "feet"),
  29125. weight: math.unit(80, "lb"),
  29126. name: "Back",
  29127. image: {
  29128. source: "./media/characters/zander-rose/back.svg",
  29129. extra: 903 / 779,
  29130. bottom: 31 / 934
  29131. }
  29132. },
  29133. },
  29134. [
  29135. {
  29136. name: "Normal",
  29137. height: math.unit(1 + 3 / 12, "feet"),
  29138. default: true
  29139. },
  29140. ]
  29141. ))
  29142. characterMakers.push(() => makeCharacter(
  29143. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  29144. {
  29145. anthro: {
  29146. height: math.unit(6, "feet"),
  29147. weight: math.unit(150, "lb"),
  29148. name: "Anthro",
  29149. image: {
  29150. source: "./media/characters/razz/anthro.svg",
  29151. extra: 1437 / 1343,
  29152. bottom: 48 / 1485
  29153. }
  29154. },
  29155. feral: {
  29156. height: math.unit(6, "feet"),
  29157. weight: math.unit(150, "lb"),
  29158. name: "Feral",
  29159. image: {
  29160. source: "./media/characters/razz/feral.svg",
  29161. extra: 2569 / 1385,
  29162. bottom: 95 / 2664
  29163. }
  29164. },
  29165. },
  29166. [
  29167. {
  29168. name: "Normal",
  29169. height: math.unit(6, "feet"),
  29170. default: true
  29171. },
  29172. ]
  29173. ))
  29174. characterMakers.push(() => makeCharacter(
  29175. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  29176. {
  29177. front: {
  29178. height: math.unit(9 + 4 / 12, "feet"),
  29179. weight: math.unit(500, "lb"),
  29180. name: "Front",
  29181. image: {
  29182. source: "./media/characters/morrigan/front.svg",
  29183. extra: 2707 / 2579,
  29184. bottom: 156 / 2863
  29185. }
  29186. },
  29187. },
  29188. [
  29189. {
  29190. name: "Normal",
  29191. height: math.unit(9 + 4 / 12, "feet"),
  29192. default: true
  29193. },
  29194. ]
  29195. ))
  29196. characterMakers.push(() => makeCharacter(
  29197. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  29198. {
  29199. front: {
  29200. height: math.unit(5, "stories"),
  29201. weight: math.unit(4000, "lb"),
  29202. name: "Front",
  29203. image: {
  29204. source: "./media/characters/jenene/front.svg",
  29205. extra: 1780 / 1710,
  29206. bottom: 57 / 1837
  29207. }
  29208. },
  29209. },
  29210. [
  29211. {
  29212. name: "Normal",
  29213. height: math.unit(5, "stories"),
  29214. default: true
  29215. },
  29216. ]
  29217. ))
  29218. characterMakers.push(() => makeCharacter(
  29219. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  29220. {
  29221. taurSfw: {
  29222. height: math.unit(10, "meters"),
  29223. weight: math.unit(17500, "kg"),
  29224. name: "Taur",
  29225. image: {
  29226. source: "./media/characters/faey/taur-sfw.svg",
  29227. extra: 1200 / 968,
  29228. bottom: 41 / 1241
  29229. }
  29230. },
  29231. chestmaw: {
  29232. height: math.unit(2.01, "meters"),
  29233. name: "Chestmaw",
  29234. image: {
  29235. source: "./media/characters/faey/chestmaw.svg"
  29236. }
  29237. },
  29238. foot: {
  29239. height: math.unit(2.43, "meters"),
  29240. name: "Foot",
  29241. image: {
  29242. source: "./media/characters/faey/foot.svg"
  29243. }
  29244. },
  29245. jaws: {
  29246. height: math.unit(1.66, "meters"),
  29247. name: "Jaws",
  29248. image: {
  29249. source: "./media/characters/faey/jaws.svg"
  29250. }
  29251. },
  29252. tongues: {
  29253. height: math.unit(2.01, "meters"),
  29254. name: "Tongues",
  29255. image: {
  29256. source: "./media/characters/faey/tongues.svg"
  29257. }
  29258. },
  29259. },
  29260. [
  29261. {
  29262. name: "Small",
  29263. height: math.unit(10, "meters"),
  29264. default: true
  29265. },
  29266. {
  29267. name: "Big",
  29268. height: math.unit(500000, "km")
  29269. },
  29270. ]
  29271. ))
  29272. characterMakers.push(() => makeCharacter(
  29273. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  29274. {
  29275. front: {
  29276. height: math.unit(7, "feet"),
  29277. weight: math.unit(275, "lb"),
  29278. name: "Front",
  29279. image: {
  29280. source: "./media/characters/roku/front.svg",
  29281. extra: 903 / 878,
  29282. bottom: 37 / 940
  29283. }
  29284. },
  29285. },
  29286. [
  29287. {
  29288. name: "Normal",
  29289. height: math.unit(7, "feet"),
  29290. default: true
  29291. },
  29292. {
  29293. name: "Macro",
  29294. height: math.unit(500, "feet")
  29295. },
  29296. {
  29297. name: "Megamacro",
  29298. height: math.unit(200, "miles")
  29299. },
  29300. ]
  29301. ))
  29302. characterMakers.push(() => makeCharacter(
  29303. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  29304. {
  29305. front: {
  29306. height: math.unit(6 + 2 / 12, "feet"),
  29307. weight: math.unit(150, "lb"),
  29308. name: "Front",
  29309. image: {
  29310. source: "./media/characters/lira/front.svg",
  29311. extra: 1727 / 1605,
  29312. bottom: 26 / 1753
  29313. }
  29314. },
  29315. back: {
  29316. height: math.unit(6 + 2 / 12, "feet"),
  29317. weight: math.unit(150, "lb"),
  29318. name: "Back",
  29319. image: {
  29320. source: "./media/characters/lira/back.svg",
  29321. extra: 1713/1621,
  29322. bottom: 20/1733
  29323. }
  29324. },
  29325. hand: {
  29326. height: math.unit(0.75, "feet"),
  29327. name: "Hand",
  29328. image: {
  29329. source: "./media/characters/lira/hand.svg"
  29330. }
  29331. },
  29332. maw: {
  29333. height: math.unit(0.65, "feet"),
  29334. name: "Maw",
  29335. image: {
  29336. source: "./media/characters/lira/maw.svg"
  29337. }
  29338. },
  29339. pawDigi: {
  29340. height: math.unit(1.6, "feet"),
  29341. name: "Paw Digi",
  29342. image: {
  29343. source: "./media/characters/lira/paw-digi.svg"
  29344. }
  29345. },
  29346. pawPlanti: {
  29347. height: math.unit(1.4, "feet"),
  29348. name: "Paw Planti",
  29349. image: {
  29350. source: "./media/characters/lira/paw-planti.svg"
  29351. }
  29352. },
  29353. },
  29354. [
  29355. {
  29356. name: "Normal",
  29357. height: math.unit(6 + 2 / 12, "feet"),
  29358. default: true
  29359. },
  29360. {
  29361. name: "Macro",
  29362. height: math.unit(100, "feet")
  29363. },
  29364. {
  29365. name: "Macro²",
  29366. height: math.unit(1600, "feet")
  29367. },
  29368. {
  29369. name: "Planetary",
  29370. height: math.unit(20, "earths")
  29371. },
  29372. ]
  29373. ))
  29374. characterMakers.push(() => makeCharacter(
  29375. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  29376. {
  29377. front: {
  29378. height: math.unit(6, "feet"),
  29379. weight: math.unit(150, "lb"),
  29380. name: "Front",
  29381. image: {
  29382. source: "./media/characters/hadjet/front.svg",
  29383. extra: 1480 / 1346,
  29384. bottom: 26 / 1506
  29385. }
  29386. },
  29387. frontNsfw: {
  29388. height: math.unit(6, "feet"),
  29389. weight: math.unit(150, "lb"),
  29390. name: "Front (NSFW)",
  29391. image: {
  29392. source: "./media/characters/hadjet/front-nsfw.svg",
  29393. extra: 1440 / 1358,
  29394. bottom: 52 / 1492
  29395. }
  29396. },
  29397. },
  29398. [
  29399. {
  29400. name: "Macro",
  29401. height: math.unit(10, "stories"),
  29402. default: true
  29403. },
  29404. {
  29405. name: "Megamacro",
  29406. height: math.unit(1.5, "miles")
  29407. },
  29408. {
  29409. name: "Megamacro+",
  29410. height: math.unit(5, "miles")
  29411. },
  29412. ]
  29413. ))
  29414. characterMakers.push(() => makeCharacter(
  29415. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  29416. {
  29417. side: {
  29418. height: math.unit(106, "feet"),
  29419. weight: math.unit(500, "tonnes"),
  29420. name: "Side",
  29421. image: {
  29422. source: "./media/characters/kodran/side.svg",
  29423. extra: 553 / 480,
  29424. bottom: 33 / 586
  29425. }
  29426. },
  29427. front: {
  29428. height: math.unit(132, "feet"),
  29429. weight: math.unit(500, "tonnes"),
  29430. name: "Front",
  29431. image: {
  29432. source: "./media/characters/kodran/front.svg",
  29433. extra: 667 / 643,
  29434. bottom: 42 / 709
  29435. }
  29436. },
  29437. flying: {
  29438. height: math.unit(350, "feet"),
  29439. weight: math.unit(500, "tonnes"),
  29440. name: "Flying",
  29441. image: {
  29442. source: "./media/characters/kodran/flying.svg"
  29443. }
  29444. },
  29445. foot: {
  29446. height: math.unit(33, "feet"),
  29447. name: "Foot",
  29448. image: {
  29449. source: "./media/characters/kodran/foot.svg"
  29450. }
  29451. },
  29452. footFront: {
  29453. height: math.unit(19, "feet"),
  29454. name: "Foot (Front)",
  29455. image: {
  29456. source: "./media/characters/kodran/foot-front.svg",
  29457. extra: 261 / 261,
  29458. bottom: 91 / 352
  29459. }
  29460. },
  29461. headFront: {
  29462. height: math.unit(53, "feet"),
  29463. name: "Head (Front)",
  29464. image: {
  29465. source: "./media/characters/kodran/head-front.svg"
  29466. }
  29467. },
  29468. headSide: {
  29469. height: math.unit(65, "feet"),
  29470. name: "Head (Side)",
  29471. image: {
  29472. source: "./media/characters/kodran/head-side.svg"
  29473. }
  29474. },
  29475. throat: {
  29476. height: math.unit(79, "feet"),
  29477. name: "Throat",
  29478. image: {
  29479. source: "./media/characters/kodran/throat.svg"
  29480. }
  29481. },
  29482. },
  29483. [
  29484. {
  29485. name: "Large",
  29486. height: math.unit(106, "feet"),
  29487. default: true
  29488. },
  29489. ]
  29490. ))
  29491. characterMakers.push(() => makeCharacter(
  29492. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  29493. {
  29494. side: {
  29495. height: math.unit(11, "feet"),
  29496. weight: math.unit(150, "lb"),
  29497. name: "Side",
  29498. image: {
  29499. source: "./media/characters/pyxaron/side.svg",
  29500. extra: 305 / 195,
  29501. bottom: 17 / 322
  29502. }
  29503. },
  29504. },
  29505. [
  29506. {
  29507. name: "Normal",
  29508. height: math.unit(11, "feet"),
  29509. default: true
  29510. },
  29511. ]
  29512. ))
  29513. characterMakers.push(() => makeCharacter(
  29514. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  29515. {
  29516. front: {
  29517. height: math.unit(6, "feet"),
  29518. weight: math.unit(150, "lb"),
  29519. name: "Front",
  29520. image: {
  29521. source: "./media/characters/meep/front.svg",
  29522. extra: 88 / 80,
  29523. bottom: 6 / 94
  29524. }
  29525. },
  29526. },
  29527. [
  29528. {
  29529. name: "Fun Sized",
  29530. height: math.unit(2, "inches"),
  29531. default: true
  29532. },
  29533. {
  29534. name: "Friend Sized",
  29535. height: math.unit(8, "inches")
  29536. },
  29537. ]
  29538. ))
  29539. characterMakers.push(() => makeCharacter(
  29540. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  29541. {
  29542. front: {
  29543. height: math.unit(15, "feet"),
  29544. weight: math.unit(2500, "lb"),
  29545. name: "Front",
  29546. image: {
  29547. source: "./media/characters/holly-rabbit/front.svg",
  29548. extra: 1433 / 1233,
  29549. bottom: 125 / 1558
  29550. }
  29551. },
  29552. dick: {
  29553. height: math.unit(4.6, "feet"),
  29554. name: "Dick",
  29555. image: {
  29556. source: "./media/characters/holly-rabbit/dick.svg"
  29557. }
  29558. },
  29559. },
  29560. [
  29561. {
  29562. name: "Normal",
  29563. height: math.unit(15, "feet"),
  29564. default: true
  29565. },
  29566. {
  29567. name: "Macro",
  29568. height: math.unit(250, "feet")
  29569. },
  29570. {
  29571. name: "Macro+",
  29572. height: math.unit(2500, "feet")
  29573. },
  29574. ]
  29575. ))
  29576. characterMakers.push(() => makeCharacter(
  29577. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  29578. {
  29579. front: {
  29580. height: math.unit(3.02, "meters"),
  29581. weight: math.unit(500, "kg"),
  29582. name: "Front",
  29583. image: {
  29584. source: "./media/characters/drena/front.svg",
  29585. extra: 282 / 243,
  29586. bottom: 8 / 290
  29587. }
  29588. },
  29589. side: {
  29590. height: math.unit(3.02, "meters"),
  29591. weight: math.unit(500, "kg"),
  29592. name: "Side",
  29593. image: {
  29594. source: "./media/characters/drena/side.svg",
  29595. extra: 280 / 245,
  29596. bottom: 10 / 290
  29597. }
  29598. },
  29599. back: {
  29600. height: math.unit(3.02, "meters"),
  29601. weight: math.unit(500, "kg"),
  29602. name: "Back",
  29603. image: {
  29604. source: "./media/characters/drena/back.svg",
  29605. extra: 278 / 243,
  29606. bottom: 2 / 280
  29607. }
  29608. },
  29609. foot: {
  29610. height: math.unit(0.75, "meters"),
  29611. name: "Foot",
  29612. image: {
  29613. source: "./media/characters/drena/foot.svg"
  29614. }
  29615. },
  29616. maw: {
  29617. height: math.unit(0.82, "meters"),
  29618. name: "Maw",
  29619. image: {
  29620. source: "./media/characters/drena/maw.svg"
  29621. }
  29622. },
  29623. eating: {
  29624. height: math.unit(0.75, "meters"),
  29625. name: "Eating",
  29626. image: {
  29627. source: "./media/characters/drena/eating.svg"
  29628. }
  29629. },
  29630. rump: {
  29631. height: math.unit(0.93, "meters"),
  29632. name: "Rump",
  29633. image: {
  29634. source: "./media/characters/drena/rump.svg"
  29635. }
  29636. },
  29637. },
  29638. [
  29639. {
  29640. name: "Normal",
  29641. height: math.unit(3.02, "meters"),
  29642. default: true
  29643. },
  29644. ]
  29645. ))
  29646. characterMakers.push(() => makeCharacter(
  29647. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  29648. {
  29649. front: {
  29650. height: math.unit(6 + 4 / 12, "feet"),
  29651. weight: math.unit(250, "lb"),
  29652. name: "Front",
  29653. image: {
  29654. source: "./media/characters/remmyzilla/front.svg",
  29655. extra: 4033 / 3588,
  29656. bottom: 123 / 4156
  29657. }
  29658. },
  29659. back: {
  29660. height: math.unit(6 + 4 / 12, "feet"),
  29661. weight: math.unit(250, "lb"),
  29662. name: "Back",
  29663. image: {
  29664. source: "./media/characters/remmyzilla/back.svg",
  29665. extra: 2687 / 2555,
  29666. bottom: 48 / 2735
  29667. }
  29668. },
  29669. paw: {
  29670. height: math.unit(1.73, "feet"),
  29671. name: "Paw",
  29672. image: {
  29673. source: "./media/characters/remmyzilla/paw.svg"
  29674. },
  29675. extraAttributes: {
  29676. "toeSize": {
  29677. name: "Toe Size",
  29678. power: 2,
  29679. type: "area",
  29680. base: math.unit(0.0035, "m^2")
  29681. },
  29682. "padSize": {
  29683. name: "Pad Size",
  29684. power: 2,
  29685. type: "area",
  29686. base: math.unit(0.015, "m^2")
  29687. },
  29688. "pawsize": {
  29689. name: "Paw Size",
  29690. power: 2,
  29691. type: "area",
  29692. base: math.unit(0.072, "m^2")
  29693. },
  29694. }
  29695. },
  29696. maw: {
  29697. height: math.unit(1.73, "feet"),
  29698. name: "Maw",
  29699. image: {
  29700. source: "./media/characters/remmyzilla/maw.svg"
  29701. }
  29702. },
  29703. },
  29704. [
  29705. {
  29706. name: "Normal",
  29707. height: math.unit(6 + 4 / 12, "feet")
  29708. },
  29709. {
  29710. name: "Minimacro",
  29711. height: math.unit(12 + 8 / 12, "feet")
  29712. },
  29713. {
  29714. name: "Normal",
  29715. height: math.unit(640, "feet"),
  29716. default: true
  29717. },
  29718. {
  29719. name: "Megamacro",
  29720. height: math.unit(6400, "feet")
  29721. },
  29722. {
  29723. name: "Gigamacro",
  29724. height: math.unit(64000, "miles")
  29725. },
  29726. ]
  29727. ))
  29728. characterMakers.push(() => makeCharacter(
  29729. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  29730. {
  29731. front: {
  29732. height: math.unit(2.5, "meters"),
  29733. weight: math.unit(300, "lb"),
  29734. name: "Front",
  29735. image: {
  29736. source: "./media/characters/lawrence/front.svg",
  29737. extra: 357 / 335,
  29738. bottom: 30 / 387
  29739. }
  29740. },
  29741. back: {
  29742. height: math.unit(2.5, "meters"),
  29743. weight: math.unit(300, "lb"),
  29744. name: "Back",
  29745. image: {
  29746. source: "./media/characters/lawrence/back.svg",
  29747. extra: 357 / 338,
  29748. bottom: 16 / 373
  29749. }
  29750. },
  29751. head: {
  29752. height: math.unit(0.9, "meter"),
  29753. name: "Head",
  29754. image: {
  29755. source: "./media/characters/lawrence/head.svg"
  29756. }
  29757. },
  29758. maw: {
  29759. height: math.unit(0.7, "meter"),
  29760. name: "Maw",
  29761. image: {
  29762. source: "./media/characters/lawrence/maw.svg"
  29763. }
  29764. },
  29765. footBottom: {
  29766. height: math.unit(0.5, "meter"),
  29767. name: "Foot (Bottom)",
  29768. image: {
  29769. source: "./media/characters/lawrence/foot-bottom.svg"
  29770. }
  29771. },
  29772. footTop: {
  29773. height: math.unit(0.5, "meter"),
  29774. name: "Foot (Top)",
  29775. image: {
  29776. source: "./media/characters/lawrence/foot-top.svg"
  29777. }
  29778. },
  29779. },
  29780. [
  29781. {
  29782. name: "Normal",
  29783. height: math.unit(2.5, "meters"),
  29784. default: true
  29785. },
  29786. {
  29787. name: "Macro",
  29788. height: math.unit(95, "meters")
  29789. },
  29790. {
  29791. name: "Megamacro",
  29792. height: math.unit(150, "km")
  29793. },
  29794. ]
  29795. ))
  29796. characterMakers.push(() => makeCharacter(
  29797. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  29798. {
  29799. front: {
  29800. height: math.unit(4.2, "meters"),
  29801. name: "Front",
  29802. image: {
  29803. source: "./media/characters/sydney/front.svg",
  29804. extra: 1323 / 1277,
  29805. bottom: 111 / 1434
  29806. }
  29807. },
  29808. },
  29809. [
  29810. {
  29811. name: "Normal",
  29812. height: math.unit(4.2, "meters"),
  29813. default: true
  29814. },
  29815. ]
  29816. ))
  29817. characterMakers.push(() => makeCharacter(
  29818. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  29819. {
  29820. back: {
  29821. height: math.unit(201, "feet"),
  29822. name: "Back",
  29823. image: {
  29824. source: "./media/characters/jessica/back.svg",
  29825. extra: 273 / 259,
  29826. bottom: 7 / 280
  29827. }
  29828. },
  29829. },
  29830. [
  29831. {
  29832. name: "Normal",
  29833. height: math.unit(201, "feet"),
  29834. default: true
  29835. },
  29836. {
  29837. name: "Megamacro",
  29838. height: math.unit(8, "miles")
  29839. },
  29840. ]
  29841. ))
  29842. characterMakers.push(() => makeCharacter(
  29843. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  29844. {
  29845. side: {
  29846. height: math.unit(5.6, "m"),
  29847. weight: math.unit(8000, "kg"),
  29848. name: "Side",
  29849. image: {
  29850. source: "./media/characters/victoria/side.svg",
  29851. extra: 1542/1229,
  29852. bottom: 124/1666
  29853. }
  29854. },
  29855. maw: {
  29856. height: math.unit(7.14, "feet"),
  29857. name: "Maw",
  29858. image: {
  29859. source: "./media/characters/victoria/maw.svg"
  29860. }
  29861. },
  29862. },
  29863. [
  29864. {
  29865. name: "Normal",
  29866. height: math.unit(5.6, "m"),
  29867. default: true
  29868. },
  29869. ]
  29870. ))
  29871. characterMakers.push(() => makeCharacter(
  29872. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  29873. {
  29874. front: {
  29875. height: math.unit(5 + 6 / 12, "feet"),
  29876. name: "Front",
  29877. image: {
  29878. source: "./media/characters/cat/front.svg",
  29879. extra: 1449/1295,
  29880. bottom: 34/1483
  29881. },
  29882. form: "cat",
  29883. default: true
  29884. },
  29885. back: {
  29886. height: math.unit(5 + 6 / 12, "feet"),
  29887. name: "Back",
  29888. image: {
  29889. source: "./media/characters/cat/back.svg",
  29890. extra: 1466/1301,
  29891. bottom: 19/1485
  29892. },
  29893. form: "cat"
  29894. },
  29895. taur: {
  29896. height: math.unit(7, "feet"),
  29897. name: "Taur",
  29898. image: {
  29899. source: "./media/characters/cat/taur.svg",
  29900. extra: 1389/1233,
  29901. bottom: 83/1472
  29902. },
  29903. form: "taur",
  29904. default: true
  29905. },
  29906. lucarioFront: {
  29907. height: math.unit(4, "feet"),
  29908. name: "Lucario (Front)",
  29909. image: {
  29910. source: "./media/characters/cat/lucario-front.svg",
  29911. extra: 1149/1019,
  29912. bottom: 84/1233
  29913. },
  29914. form: "lucario",
  29915. default: true
  29916. },
  29917. lucarioBack: {
  29918. height: math.unit(4, "feet"),
  29919. name: "Lucario (Back)",
  29920. image: {
  29921. source: "./media/characters/cat/lucario-back.svg",
  29922. extra: 1190/1059,
  29923. bottom: 33/1223
  29924. },
  29925. form: "lucario"
  29926. },
  29927. megaLucario: {
  29928. height: math.unit(4, "feet"),
  29929. name: "Mega Lucario",
  29930. image: {
  29931. source: "./media/characters/cat/mega-lucario.svg",
  29932. extra: 1515 / 1319,
  29933. bottom: 63 / 1578
  29934. },
  29935. form: "lucario"
  29936. },
  29937. nickit: {
  29938. height: math.unit(2, "feet"),
  29939. name: "Nickit",
  29940. image: {
  29941. source: "./media/characters/cat/nickit.svg",
  29942. extra: 1980 / 1585,
  29943. bottom: 102 / 2082
  29944. },
  29945. form: "nickit",
  29946. default: true
  29947. },
  29948. lopunnyFront: {
  29949. height: math.unit(5, "feet"),
  29950. name: "Lopunny (Front)",
  29951. image: {
  29952. source: "./media/characters/cat/lopunny-front.svg",
  29953. extra: 1782 / 1469,
  29954. bottom: 38 / 1820
  29955. },
  29956. form: "lopunny",
  29957. default: true
  29958. },
  29959. lopunnyBack: {
  29960. height: math.unit(5, "feet"),
  29961. name: "Lopunny (Back)",
  29962. image: {
  29963. source: "./media/characters/cat/lopunny-back.svg",
  29964. extra: 1660 / 1490,
  29965. bottom: 25 / 1685
  29966. },
  29967. form: "lopunny"
  29968. },
  29969. },
  29970. [
  29971. {
  29972. name: "Really small",
  29973. height: math.unit(1, "nm")
  29974. },
  29975. {
  29976. name: "Micro",
  29977. height: math.unit(5, "inches")
  29978. },
  29979. {
  29980. name: "Normal",
  29981. height: math.unit(5 + 6 / 12, "feet"),
  29982. default: true
  29983. },
  29984. {
  29985. name: "Macro",
  29986. height: math.unit(50, "feet")
  29987. },
  29988. {
  29989. name: "Macro+",
  29990. height: math.unit(150, "feet")
  29991. },
  29992. {
  29993. name: "Megamacro",
  29994. height: math.unit(100, "miles")
  29995. },
  29996. ]
  29997. ))
  29998. characterMakers.push(() => makeCharacter(
  29999. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  30000. {
  30001. front: {
  30002. height: math.unit(63.4, "meters"),
  30003. weight: math.unit(3.28349e+6, "kilograms"),
  30004. name: "Front",
  30005. image: {
  30006. source: "./media/characters/kirina-violet/front.svg",
  30007. extra: 2812 / 2725,
  30008. bottom: 0 / 2812
  30009. }
  30010. },
  30011. back: {
  30012. height: math.unit(63.4, "meters"),
  30013. weight: math.unit(3.28349e+6, "kilograms"),
  30014. name: "Back",
  30015. image: {
  30016. source: "./media/characters/kirina-violet/back.svg",
  30017. extra: 2812 / 2725,
  30018. bottom: 0 / 2812
  30019. }
  30020. },
  30021. mouth: {
  30022. height: math.unit(4.35, "meters"),
  30023. name: "Mouth",
  30024. image: {
  30025. source: "./media/characters/kirina-violet/mouth.svg"
  30026. }
  30027. },
  30028. paw: {
  30029. height: math.unit(5.6, "meters"),
  30030. name: "Paw",
  30031. image: {
  30032. source: "./media/characters/kirina-violet/paw.svg"
  30033. }
  30034. },
  30035. tail: {
  30036. height: math.unit(18, "meters"),
  30037. name: "Tail",
  30038. image: {
  30039. source: "./media/characters/kirina-violet/tail.svg"
  30040. }
  30041. },
  30042. },
  30043. [
  30044. {
  30045. name: "Macro",
  30046. height: math.unit(63.4, "meters"),
  30047. default: true
  30048. },
  30049. ]
  30050. ))
  30051. characterMakers.push(() => makeCharacter(
  30052. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  30053. {
  30054. front: {
  30055. height: math.unit(75, "feet"),
  30056. name: "Front",
  30057. image: {
  30058. source: "./media/characters/cat-gigachu/front.svg",
  30059. extra: 1239/1027,
  30060. bottom: 32/1271
  30061. }
  30062. },
  30063. back: {
  30064. height: math.unit(75, "feet"),
  30065. name: "Back",
  30066. image: {
  30067. source: "./media/characters/cat-gigachu/back.svg",
  30068. extra: 1229/1030,
  30069. bottom: 9/1238
  30070. }
  30071. },
  30072. },
  30073. [
  30074. {
  30075. name: "Dynamax",
  30076. height: math.unit(75, "feet"),
  30077. default: true
  30078. },
  30079. ]
  30080. ))
  30081. characterMakers.push(() => makeCharacter(
  30082. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  30083. {
  30084. front: {
  30085. height: math.unit(6, "feet"),
  30086. weight: math.unit(150, "lb"),
  30087. name: "Front",
  30088. image: {
  30089. source: "./media/characters/sfaiyan/front.svg",
  30090. extra: 999 / 978,
  30091. bottom: 5 / 1004
  30092. }
  30093. },
  30094. },
  30095. [
  30096. {
  30097. name: "Normal",
  30098. height: math.unit(1.82, "meters")
  30099. },
  30100. {
  30101. name: "Giant",
  30102. height: math.unit(2.27, "km"),
  30103. default: true
  30104. },
  30105. ]
  30106. ))
  30107. characterMakers.push(() => makeCharacter(
  30108. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  30109. {
  30110. front: {
  30111. height: math.unit(179, "cm"),
  30112. weight: math.unit(100, "kg"),
  30113. name: "Front",
  30114. image: {
  30115. source: "./media/characters/raunehkeli/front.svg",
  30116. extra: 1934 / 1926,
  30117. bottom: 0 / 1934
  30118. }
  30119. },
  30120. },
  30121. [
  30122. {
  30123. name: "Normal",
  30124. height: math.unit(179, "cm")
  30125. },
  30126. {
  30127. name: "Maximum",
  30128. height: math.unit(575, "meters"),
  30129. default: true
  30130. },
  30131. ]
  30132. ))
  30133. characterMakers.push(() => makeCharacter(
  30134. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  30135. {
  30136. front: {
  30137. height: math.unit(6, "feet"),
  30138. weight: math.unit(150, "lb"),
  30139. name: "Front",
  30140. image: {
  30141. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  30142. extra: 2625 / 2518,
  30143. bottom: 60 / 2685
  30144. }
  30145. },
  30146. },
  30147. [
  30148. {
  30149. name: "Normal",
  30150. height: math.unit(6 + 2 / 12, "feet")
  30151. },
  30152. {
  30153. name: "Macro",
  30154. height: math.unit(1180, "feet"),
  30155. default: true
  30156. },
  30157. ]
  30158. ))
  30159. characterMakers.push(() => makeCharacter(
  30160. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  30161. {
  30162. front: {
  30163. height: math.unit(5 + 6 / 12, "feet"),
  30164. weight: math.unit(108, "lb"),
  30165. name: "Front",
  30166. image: {
  30167. source: "./media/characters/lilith-zott/front.svg",
  30168. extra: 2510 / 2238,
  30169. bottom: 100 / 2610
  30170. }
  30171. },
  30172. frontDressed: {
  30173. height: math.unit(5 + 6 / 12, "feet"),
  30174. weight: math.unit(108, "lb"),
  30175. name: "Front (Dressed)",
  30176. image: {
  30177. source: "./media/characters/lilith-zott/front-dressed.svg",
  30178. extra: 2510 / 2238,
  30179. bottom: 100 / 2610
  30180. }
  30181. },
  30182. },
  30183. [
  30184. {
  30185. name: "Normal",
  30186. height: math.unit(5 + 6 / 12, "feet")
  30187. },
  30188. {
  30189. name: "Macro",
  30190. height: math.unit(1030, "feet"),
  30191. default: true
  30192. },
  30193. ]
  30194. ))
  30195. characterMakers.push(() => makeCharacter(
  30196. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  30197. {
  30198. front: {
  30199. height: math.unit(6, "feet"),
  30200. weight: math.unit(150, "lb"),
  30201. name: "Front",
  30202. image: {
  30203. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  30204. extra: 2567 / 2435,
  30205. bottom: 39 / 2606
  30206. }
  30207. },
  30208. frontSuper: {
  30209. height: math.unit(6, "feet"),
  30210. name: "Front (Super)",
  30211. image: {
  30212. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  30213. extra: 2567 / 2435,
  30214. bottom: 39 / 2606
  30215. }
  30216. },
  30217. },
  30218. [
  30219. {
  30220. name: "Normal",
  30221. height: math.unit(5 + 10 / 12, "feet")
  30222. },
  30223. {
  30224. name: "Macro",
  30225. height: math.unit(1100, "feet"),
  30226. default: true
  30227. },
  30228. ]
  30229. ))
  30230. characterMakers.push(() => makeCharacter(
  30231. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  30232. {
  30233. front: {
  30234. height: math.unit(100, "miles"),
  30235. name: "Front",
  30236. image: {
  30237. source: "./media/characters/sona/front.svg",
  30238. extra: 2433 / 2201,
  30239. bottom: 53 / 2486
  30240. }
  30241. },
  30242. foot: {
  30243. height: math.unit(16.1, "miles"),
  30244. name: "Foot",
  30245. image: {
  30246. source: "./media/characters/sona/foot.svg"
  30247. }
  30248. },
  30249. },
  30250. [
  30251. {
  30252. name: "Macro",
  30253. height: math.unit(100, "miles"),
  30254. default: true
  30255. },
  30256. ]
  30257. ))
  30258. characterMakers.push(() => makeCharacter(
  30259. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  30260. {
  30261. front: {
  30262. height: math.unit(6, "feet"),
  30263. weight: math.unit(150, "lb"),
  30264. name: "Front",
  30265. image: {
  30266. source: "./media/characters/bailey/front.svg",
  30267. extra: 1778 / 1724,
  30268. bottom: 30 / 1808
  30269. }
  30270. },
  30271. },
  30272. [
  30273. {
  30274. name: "Micro",
  30275. height: math.unit(4, "inches")
  30276. },
  30277. {
  30278. name: "Normal",
  30279. height: math.unit(5 + 5 / 12, "feet"),
  30280. default: true
  30281. },
  30282. {
  30283. name: "Macro",
  30284. height: math.unit(250, "feet")
  30285. },
  30286. {
  30287. name: "Megamacro",
  30288. height: math.unit(100, "miles")
  30289. },
  30290. ]
  30291. ))
  30292. characterMakers.push(() => makeCharacter(
  30293. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  30294. {
  30295. front: {
  30296. height: math.unit(5 + 2 / 12, "feet"),
  30297. weight: math.unit(120, "lb"),
  30298. name: "Front",
  30299. image: {
  30300. source: "./media/characters/snaps/front.svg",
  30301. extra: 2370 / 2177,
  30302. bottom: 48 / 2418
  30303. }
  30304. },
  30305. back: {
  30306. height: math.unit(5 + 2 / 12, "feet"),
  30307. weight: math.unit(120, "lb"),
  30308. name: "Back",
  30309. image: {
  30310. source: "./media/characters/snaps/back.svg",
  30311. extra: 2408 / 2258,
  30312. bottom: 15 / 2423
  30313. }
  30314. },
  30315. },
  30316. [
  30317. {
  30318. name: "Micro",
  30319. height: math.unit(9, "inches")
  30320. },
  30321. {
  30322. name: "Normal",
  30323. height: math.unit(5 + 2 / 12, "feet"),
  30324. default: true
  30325. },
  30326. {
  30327. name: "Mini Macro",
  30328. height: math.unit(10, "feet")
  30329. },
  30330. ]
  30331. ))
  30332. characterMakers.push(() => makeCharacter(
  30333. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  30334. {
  30335. front: {
  30336. height: math.unit(1.8, "meters"),
  30337. weight: math.unit(85, "kg"),
  30338. name: "Front",
  30339. image: {
  30340. source: "./media/characters/azteck/front.svg",
  30341. extra: 2815 / 2625,
  30342. bottom: 89 / 2904
  30343. }
  30344. },
  30345. back: {
  30346. height: math.unit(1.8, "meters"),
  30347. weight: math.unit(85, "kg"),
  30348. name: "Back",
  30349. image: {
  30350. source: "./media/characters/azteck/back.svg",
  30351. extra: 2856 / 2648,
  30352. bottom: 85 / 2941
  30353. }
  30354. },
  30355. frontDressed: {
  30356. height: math.unit(1.8, "meters"),
  30357. weight: math.unit(85, "kg"),
  30358. name: "Front (Dressed)",
  30359. image: {
  30360. source: "./media/characters/azteck/front-dressed.svg",
  30361. extra: 2147 / 2003,
  30362. bottom: 68 / 2215
  30363. }
  30364. },
  30365. head: {
  30366. height: math.unit(0.47, "meters"),
  30367. weight: math.unit(85, "kg"),
  30368. name: "Head",
  30369. image: {
  30370. source: "./media/characters/azteck/head.svg"
  30371. }
  30372. },
  30373. },
  30374. [
  30375. {
  30376. name: "Bite sized",
  30377. height: math.unit(16, "cm")
  30378. },
  30379. {
  30380. name: "Normal",
  30381. height: math.unit(1.8, "meters"),
  30382. default: true
  30383. },
  30384. ]
  30385. ))
  30386. characterMakers.push(() => makeCharacter(
  30387. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  30388. {
  30389. front: {
  30390. height: math.unit(6, "feet"),
  30391. weight: math.unit(150, "lb"),
  30392. name: "Front",
  30393. image: {
  30394. source: "./media/characters/pidge/front.svg",
  30395. extra: 1936/1820,
  30396. bottom: 0/1936
  30397. }
  30398. },
  30399. back: {
  30400. height: math.unit(6, "feet"),
  30401. weight: math.unit(150, "lb"),
  30402. name: "Back",
  30403. image: {
  30404. source: "./media/characters/pidge/back.svg",
  30405. extra: 1938/1843,
  30406. bottom: 0/1938
  30407. }
  30408. },
  30409. casual: {
  30410. height: math.unit(6, "feet"),
  30411. weight: math.unit(150, "lb"),
  30412. name: "Casual",
  30413. image: {
  30414. source: "./media/characters/pidge/casual.svg",
  30415. extra: 1936/1820,
  30416. bottom: 0/1936
  30417. }
  30418. },
  30419. tech: {
  30420. height: math.unit(6, "feet"),
  30421. weight: math.unit(150, "lb"),
  30422. name: "Tech",
  30423. image: {
  30424. source: "./media/characters/pidge/tech.svg",
  30425. extra: 1802/1682,
  30426. bottom: 0/1802
  30427. }
  30428. },
  30429. head: {
  30430. height: math.unit(1.61, "feet"),
  30431. name: "Head",
  30432. image: {
  30433. source: "./media/characters/pidge/head.svg"
  30434. }
  30435. },
  30436. collar: {
  30437. height: math.unit(0.82, "feet"),
  30438. name: "Collar",
  30439. image: {
  30440. source: "./media/characters/pidge/collar.svg"
  30441. }
  30442. },
  30443. },
  30444. [
  30445. {
  30446. name: "Macro",
  30447. height: math.unit(2, "mile"),
  30448. default: true
  30449. },
  30450. {
  30451. name: "PUPPY",
  30452. height: math.unit(20, "miles")
  30453. },
  30454. ]
  30455. ))
  30456. characterMakers.push(() => makeCharacter(
  30457. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  30458. {
  30459. front: {
  30460. height: math.unit(6, "feet"),
  30461. weight: math.unit(150, "lb"),
  30462. name: "Front",
  30463. image: {
  30464. source: "./media/characters/en/front.svg",
  30465. extra: 1697 / 1563,
  30466. bottom: 103 / 1800
  30467. }
  30468. },
  30469. back: {
  30470. height: math.unit(6, "feet"),
  30471. weight: math.unit(150, "lb"),
  30472. name: "Back",
  30473. image: {
  30474. source: "./media/characters/en/back.svg",
  30475. extra: 1700 / 1570,
  30476. bottom: 51 / 1751
  30477. }
  30478. },
  30479. frontDressed: {
  30480. height: math.unit(6, "feet"),
  30481. weight: math.unit(150, "lb"),
  30482. name: "Front (Dressed)",
  30483. image: {
  30484. source: "./media/characters/en/front-dressed.svg",
  30485. extra: 1697 / 1563,
  30486. bottom: 103 / 1800
  30487. }
  30488. },
  30489. backDressed: {
  30490. height: math.unit(6, "feet"),
  30491. weight: math.unit(150, "lb"),
  30492. name: "Back (Dressed)",
  30493. image: {
  30494. source: "./media/characters/en/back-dressed.svg",
  30495. extra: 1700 / 1570,
  30496. bottom: 51 / 1751
  30497. }
  30498. },
  30499. },
  30500. [
  30501. {
  30502. name: "Macro",
  30503. height: math.unit(210, "feet"),
  30504. default: true
  30505. },
  30506. ]
  30507. ))
  30508. characterMakers.push(() => makeCharacter(
  30509. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  30510. {
  30511. front: {
  30512. height: math.unit(6, "feet"),
  30513. weight: math.unit(150, "lb"),
  30514. name: "Front",
  30515. image: {
  30516. source: "./media/characters/haze-orris/front.svg",
  30517. extra: 3975 / 3525,
  30518. bottom: 137 / 4112
  30519. }
  30520. },
  30521. },
  30522. [
  30523. {
  30524. name: "Micro",
  30525. height: math.unit(150, "mm"),
  30526. default: true
  30527. },
  30528. ]
  30529. ))
  30530. characterMakers.push(() => makeCharacter(
  30531. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  30532. {
  30533. front: {
  30534. height: math.unit(6, "feet"),
  30535. weight: math.unit(150, "lb"),
  30536. name: "Front",
  30537. image: {
  30538. source: "./media/characters/casselene-yaro/front.svg",
  30539. extra: 4721 / 4541,
  30540. bottom: 82 / 4803
  30541. }
  30542. },
  30543. back: {
  30544. height: math.unit(6, "feet"),
  30545. weight: math.unit(150, "lb"),
  30546. name: "Back",
  30547. image: {
  30548. source: "./media/characters/casselene-yaro/back.svg",
  30549. extra: 4569 / 4377,
  30550. bottom: 69 / 4638
  30551. }
  30552. },
  30553. dressed: {
  30554. height: math.unit(6, "feet"),
  30555. weight: math.unit(150, "lb"),
  30556. name: "Dressed",
  30557. image: {
  30558. source: "./media/characters/casselene-yaro/dressed.svg",
  30559. extra: 4721 / 4541,
  30560. bottom: 82 / 4803
  30561. }
  30562. },
  30563. maw: {
  30564. height: math.unit(1, "feet"),
  30565. name: "Maw",
  30566. image: {
  30567. source: "./media/characters/casselene-yaro/maw.svg"
  30568. }
  30569. },
  30570. },
  30571. [
  30572. {
  30573. name: "Macro",
  30574. height: math.unit(190, "feet"),
  30575. default: true
  30576. },
  30577. ]
  30578. ))
  30579. characterMakers.push(() => makeCharacter(
  30580. { name: "Platine", species: ["raven"], tags: ["anthro"] },
  30581. {
  30582. front: {
  30583. height: math.unit(10, "feet"),
  30584. weight: math.unit(15015, "lb"),
  30585. name: "Front",
  30586. image: {
  30587. source: "./media/characters/platine/front.svg",
  30588. extra: 1428/1353,
  30589. bottom: 31/1459
  30590. }
  30591. },
  30592. },
  30593. [
  30594. {
  30595. name: "Normal",
  30596. height: math.unit(10, "feet"),
  30597. default: true
  30598. },
  30599. {
  30600. name: "Macro",
  30601. height: math.unit(100, "feet")
  30602. },
  30603. {
  30604. name: "Megamacro",
  30605. height: math.unit(1000, "feet")
  30606. },
  30607. ]
  30608. ))
  30609. characterMakers.push(() => makeCharacter(
  30610. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  30611. {
  30612. front: {
  30613. height: math.unit(15 + 5 / 12, "feet"),
  30614. weight: math.unit(4600, "lb"),
  30615. name: "Front",
  30616. image: {
  30617. source: "./media/characters/neapolitan-ananassa/front.svg",
  30618. extra: 2903 / 2736,
  30619. bottom: 0 / 2903
  30620. }
  30621. },
  30622. side: {
  30623. height: math.unit(15 + 5 / 12, "feet"),
  30624. weight: math.unit(4600, "lb"),
  30625. name: "Side",
  30626. image: {
  30627. source: "./media/characters/neapolitan-ananassa/side.svg",
  30628. extra: 2925 / 2719,
  30629. bottom: 0 / 2925
  30630. }
  30631. },
  30632. back: {
  30633. height: math.unit(15 + 5 / 12, "feet"),
  30634. weight: math.unit(4600, "lb"),
  30635. name: "Back",
  30636. image: {
  30637. source: "./media/characters/neapolitan-ananassa/back.svg",
  30638. extra: 2903 / 2736,
  30639. bottom: 0 / 2903
  30640. }
  30641. },
  30642. },
  30643. [
  30644. {
  30645. name: "Normal",
  30646. height: math.unit(15 + 5 / 12, "feet"),
  30647. default: true
  30648. },
  30649. {
  30650. name: "Post-Millenium",
  30651. height: math.unit(35 + 5 / 12, "feet")
  30652. },
  30653. {
  30654. name: "Post-Era",
  30655. height: math.unit(450 + 5 / 12, "feet")
  30656. },
  30657. ]
  30658. ))
  30659. characterMakers.push(() => makeCharacter(
  30660. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  30661. {
  30662. front: {
  30663. height: math.unit(300, "meters"),
  30664. weight: math.unit(125000, "tonnes"),
  30665. name: "Front",
  30666. image: {
  30667. source: "./media/characters/pazuzu/front.svg",
  30668. extra: 877 / 794,
  30669. bottom: 47 / 924
  30670. }
  30671. },
  30672. },
  30673. [
  30674. {
  30675. name: "Macro",
  30676. height: math.unit(300, "meters"),
  30677. default: true
  30678. },
  30679. ]
  30680. ))
  30681. characterMakers.push(() => makeCharacter(
  30682. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  30683. {
  30684. side: {
  30685. height: math.unit(10 + 7 / 12, "feet"),
  30686. weight: math.unit(2.5, "tons"),
  30687. name: "Side",
  30688. image: {
  30689. source: "./media/characters/aasha/side.svg",
  30690. extra: 1345 / 1245,
  30691. bottom: 111 / 1456
  30692. }
  30693. },
  30694. back: {
  30695. height: math.unit(10 + 7 / 12, "feet"),
  30696. weight: math.unit(2.5, "tons"),
  30697. name: "Back",
  30698. image: {
  30699. source: "./media/characters/aasha/back.svg",
  30700. extra: 1133 / 1057,
  30701. bottom: 257 / 1390
  30702. }
  30703. },
  30704. },
  30705. [
  30706. {
  30707. name: "Normal",
  30708. height: math.unit(10 + 7 / 12, "feet"),
  30709. default: true
  30710. },
  30711. ]
  30712. ))
  30713. characterMakers.push(() => makeCharacter(
  30714. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  30715. {
  30716. front: {
  30717. height: math.unit(6 + 3 / 12, "feet"),
  30718. name: "Front",
  30719. image: {
  30720. source: "./media/characters/nevan/front.svg",
  30721. extra: 704 / 704,
  30722. bottom: 28 / 732
  30723. }
  30724. },
  30725. back: {
  30726. height: math.unit(6 + 3 / 12, "feet"),
  30727. name: "Back",
  30728. image: {
  30729. source: "./media/characters/nevan/back.svg",
  30730. extra: 714 / 714,
  30731. bottom: 21 / 735
  30732. }
  30733. },
  30734. frontFlaccid: {
  30735. height: math.unit(6 + 3 / 12, "feet"),
  30736. name: "Front (Flaccid)",
  30737. image: {
  30738. source: "./media/characters/nevan/front-flaccid.svg",
  30739. extra: 704 / 704,
  30740. bottom: 28 / 732
  30741. }
  30742. },
  30743. frontErect: {
  30744. height: math.unit(6 + 3 / 12, "feet"),
  30745. name: "Front (Erect)",
  30746. image: {
  30747. source: "./media/characters/nevan/front-erect.svg",
  30748. extra: 704 / 704,
  30749. bottom: 28 / 732
  30750. }
  30751. },
  30752. backFlaccid: {
  30753. height: math.unit(6 + 3 / 12, "feet"),
  30754. name: "Back (Flaccid)",
  30755. image: {
  30756. source: "./media/characters/nevan/back-flaccid.svg",
  30757. extra: 714 / 714,
  30758. bottom: 21 / 735
  30759. }
  30760. },
  30761. },
  30762. [
  30763. {
  30764. name: "Normal",
  30765. height: math.unit(6 + 3 / 12, "feet"),
  30766. default: true
  30767. },
  30768. ]
  30769. ))
  30770. characterMakers.push(() => makeCharacter(
  30771. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  30772. {
  30773. front: {
  30774. height: math.unit(4, "feet"),
  30775. name: "Front",
  30776. image: {
  30777. source: "./media/characters/arhan/front.svg",
  30778. extra: 3368 / 3133,
  30779. bottom: 0 / 3368
  30780. }
  30781. },
  30782. side: {
  30783. height: math.unit(4, "feet"),
  30784. name: "Side",
  30785. image: {
  30786. source: "./media/characters/arhan/side.svg",
  30787. extra: 3347 / 3105,
  30788. bottom: 0 / 3347
  30789. }
  30790. },
  30791. tongue: {
  30792. height: math.unit(1.42, "feet"),
  30793. name: "Tongue",
  30794. image: {
  30795. source: "./media/characters/arhan/tongue.svg"
  30796. }
  30797. },
  30798. head: {
  30799. height: math.unit(0.85, "feet"),
  30800. name: "Head",
  30801. image: {
  30802. source: "./media/characters/arhan/head.svg"
  30803. }
  30804. },
  30805. },
  30806. [
  30807. {
  30808. name: "Normal",
  30809. height: math.unit(4, "feet"),
  30810. default: true
  30811. },
  30812. ]
  30813. ))
  30814. characterMakers.push(() => makeCharacter(
  30815. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  30816. {
  30817. front: {
  30818. height: math.unit(5 + 7.5 / 12, "feet"),
  30819. weight: math.unit(120, "lb"),
  30820. name: "Front",
  30821. image: {
  30822. source: "./media/characters/digi-duncan/front.svg",
  30823. extra: 330 / 326,
  30824. bottom: 16 / 346
  30825. }
  30826. },
  30827. side: {
  30828. height: math.unit(5 + 7.5 / 12, "feet"),
  30829. weight: math.unit(120, "lb"),
  30830. name: "Side",
  30831. image: {
  30832. source: "./media/characters/digi-duncan/side.svg",
  30833. extra: 341 / 337,
  30834. bottom: 1 / 342
  30835. }
  30836. },
  30837. back: {
  30838. height: math.unit(5 + 7.5 / 12, "feet"),
  30839. weight: math.unit(120, "lb"),
  30840. name: "Back",
  30841. image: {
  30842. source: "./media/characters/digi-duncan/back.svg",
  30843. extra: 330 / 326,
  30844. bottom: 12 / 342
  30845. }
  30846. },
  30847. },
  30848. [
  30849. {
  30850. name: "Speck",
  30851. height: math.unit(0.25, "mm")
  30852. },
  30853. {
  30854. name: "Micro",
  30855. height: math.unit(5, "mm")
  30856. },
  30857. {
  30858. name: "Tiny",
  30859. height: math.unit(0.5, "inches"),
  30860. default: true
  30861. },
  30862. {
  30863. name: "Human",
  30864. height: math.unit(5 + 7.5 / 12, "feet")
  30865. },
  30866. {
  30867. name: "Minigiant",
  30868. height: math.unit(8 + 5.25, "feet")
  30869. },
  30870. {
  30871. name: "Giant",
  30872. height: math.unit(2000, "feet")
  30873. },
  30874. {
  30875. name: "Mega",
  30876. height: math.unit(371.1, "miles")
  30877. },
  30878. ]
  30879. ))
  30880. characterMakers.push(() => makeCharacter(
  30881. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  30882. {
  30883. front: {
  30884. height: math.unit(2, "meters"),
  30885. weight: math.unit(350, "kg"),
  30886. name: "Front",
  30887. image: {
  30888. source: "./media/characters/jagaz-soulbreaker/front.svg",
  30889. extra: 898 / 838,
  30890. bottom: 9 / 907
  30891. }
  30892. },
  30893. },
  30894. [
  30895. {
  30896. name: "Micro",
  30897. height: math.unit(8, "meters")
  30898. },
  30899. {
  30900. name: "Normal",
  30901. height: math.unit(50, "meters"),
  30902. default: true
  30903. },
  30904. {
  30905. name: "Macro",
  30906. height: math.unit(500, "meters")
  30907. },
  30908. ]
  30909. ))
  30910. characterMakers.push(() => makeCharacter(
  30911. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  30912. {
  30913. front: {
  30914. height: math.unit(6 + 6 / 12, "feet"),
  30915. name: "Front",
  30916. image: {
  30917. source: "./media/characters/khardesh/front.svg",
  30918. extra: 1788/1596,
  30919. bottom: 66/1854
  30920. }
  30921. },
  30922. back: {
  30923. height: math.unit(6 + 6 / 12, "feet"),
  30924. name: "Back",
  30925. image: {
  30926. source: "./media/characters/khardesh/back.svg",
  30927. extra: 1781/1584,
  30928. bottom: 68/1849
  30929. }
  30930. },
  30931. },
  30932. [
  30933. {
  30934. name: "Normal",
  30935. height: math.unit(6 + 6 / 12, "feet"),
  30936. default: true
  30937. },
  30938. {
  30939. name: "Normal+",
  30940. height: math.unit(4, "meters")
  30941. },
  30942. {
  30943. name: "Macro",
  30944. height: math.unit(50, "meters")
  30945. },
  30946. {
  30947. name: "Macro+",
  30948. height: math.unit(100, "meters")
  30949. },
  30950. {
  30951. name: "Megamacro",
  30952. height: math.unit(20, "km")
  30953. },
  30954. ]
  30955. ))
  30956. characterMakers.push(() => makeCharacter(
  30957. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  30958. {
  30959. front: {
  30960. height: math.unit(6, "feet"),
  30961. weight: math.unit(150, "lb"),
  30962. name: "Front",
  30963. image: {
  30964. source: "./media/characters/kosho/front.svg",
  30965. extra: 1847 / 1847,
  30966. bottom: 86 / 1933
  30967. }
  30968. },
  30969. },
  30970. [
  30971. {
  30972. name: "Second-stage micro",
  30973. height: math.unit(0.5, "inches")
  30974. },
  30975. {
  30976. name: "First-stage micro",
  30977. height: math.unit(6, "inches")
  30978. },
  30979. {
  30980. name: "Normal",
  30981. height: math.unit(6, "feet"),
  30982. default: true
  30983. },
  30984. {
  30985. name: "First-stage macro",
  30986. height: math.unit(72, "feet")
  30987. },
  30988. {
  30989. name: "Second-stage macro",
  30990. height: math.unit(864, "feet")
  30991. },
  30992. ]
  30993. ))
  30994. characterMakers.push(() => makeCharacter(
  30995. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  30996. {
  30997. normal: {
  30998. height: math.unit(4 + 6 / 12, "feet"),
  30999. name: "Normal",
  31000. image: {
  31001. source: "./media/characters/hydra/normal.svg",
  31002. extra: 2833 / 2634,
  31003. bottom: 68 / 2901
  31004. }
  31005. },
  31006. smol: {
  31007. height: math.unit(0.705, "inches"),
  31008. name: "Smol",
  31009. image: {
  31010. source: "./media/characters/hydra/smol.svg",
  31011. extra: 2715 / 2540,
  31012. bottom: 0 / 2715
  31013. }
  31014. },
  31015. },
  31016. [
  31017. {
  31018. name: "Normal",
  31019. height: math.unit(4 + 6 / 12, "feet"),
  31020. default: true
  31021. }
  31022. ]
  31023. ))
  31024. characterMakers.push(() => makeCharacter(
  31025. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  31026. {
  31027. front: {
  31028. height: math.unit(0.6, "cm"),
  31029. name: "Front",
  31030. image: {
  31031. source: "./media/characters/daz/front.svg",
  31032. extra: 1682 / 1164,
  31033. bottom: 42 / 1724
  31034. }
  31035. },
  31036. },
  31037. [
  31038. {
  31039. name: "Normal",
  31040. height: math.unit(0.6, "cm"),
  31041. default: true
  31042. },
  31043. ]
  31044. ))
  31045. characterMakers.push(() => makeCharacter(
  31046. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  31047. {
  31048. front: {
  31049. height: math.unit(6, "feet"),
  31050. weight: math.unit(235, "lb"),
  31051. name: "Front",
  31052. image: {
  31053. source: "./media/characters/theo-pangolin/front.svg",
  31054. extra: 1996 / 1969,
  31055. bottom: 115 / 2111
  31056. }
  31057. },
  31058. back: {
  31059. height: math.unit(6, "feet"),
  31060. weight: math.unit(235, "lb"),
  31061. name: "Back",
  31062. image: {
  31063. source: "./media/characters/theo-pangolin/back.svg",
  31064. extra: 1979 / 1979,
  31065. bottom: 40 / 2019
  31066. }
  31067. },
  31068. feral: {
  31069. height: math.unit(2, "feet"),
  31070. weight: math.unit(30, "lb"),
  31071. name: "Feral",
  31072. image: {
  31073. source: "./media/characters/theo-pangolin/feral.svg",
  31074. extra: 803 / 791,
  31075. bottom: 181 / 984
  31076. }
  31077. },
  31078. footFive: {
  31079. height: math.unit(1.43, "feet"),
  31080. name: "Foot (Five Toes)",
  31081. image: {
  31082. source: "./media/characters/theo-pangolin/foot-five.svg"
  31083. }
  31084. },
  31085. footFour: {
  31086. height: math.unit(1.43, "feet"),
  31087. name: "Foot (Four Toes)",
  31088. image: {
  31089. source: "./media/characters/theo-pangolin/foot-four.svg"
  31090. }
  31091. },
  31092. handFour: {
  31093. height: math.unit(0.81, "feet"),
  31094. name: "Hand (Four Fingers)",
  31095. image: {
  31096. source: "./media/characters/theo-pangolin/hand-four.svg"
  31097. }
  31098. },
  31099. handThree: {
  31100. height: math.unit(0.81, "feet"),
  31101. name: "Hand (Three Fingers)",
  31102. image: {
  31103. source: "./media/characters/theo-pangolin/hand-three.svg"
  31104. }
  31105. },
  31106. headFront: {
  31107. height: math.unit(1.37, "feet"),
  31108. name: "Head (Front)",
  31109. image: {
  31110. source: "./media/characters/theo-pangolin/head-front.svg"
  31111. }
  31112. },
  31113. headSide: {
  31114. height: math.unit(1.43, "feet"),
  31115. name: "Head (Side)",
  31116. image: {
  31117. source: "./media/characters/theo-pangolin/head-side.svg"
  31118. }
  31119. },
  31120. tongue: {
  31121. height: math.unit(2.29, "feet"),
  31122. name: "Tongue",
  31123. image: {
  31124. source: "./media/characters/theo-pangolin/tongue.svg"
  31125. }
  31126. },
  31127. },
  31128. [
  31129. {
  31130. name: "Normal",
  31131. height: math.unit(6, "feet")
  31132. },
  31133. {
  31134. name: "Macro",
  31135. height: math.unit(400, "feet"),
  31136. default: true
  31137. },
  31138. ]
  31139. ))
  31140. characterMakers.push(() => makeCharacter(
  31141. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  31142. {
  31143. front: {
  31144. height: math.unit(6, "inches"),
  31145. weight: math.unit(0.036, "kg"),
  31146. name: "Front",
  31147. image: {
  31148. source: "./media/characters/renée/front.svg",
  31149. extra: 900 / 886,
  31150. bottom: 8 / 908
  31151. }
  31152. },
  31153. },
  31154. [
  31155. {
  31156. name: "Nano",
  31157. height: math.unit(1, "nm")
  31158. },
  31159. {
  31160. name: "Micro",
  31161. height: math.unit(1, "mm")
  31162. },
  31163. {
  31164. name: "Normal",
  31165. height: math.unit(6, "inches")
  31166. },
  31167. {
  31168. name: "Macro",
  31169. height: math.unit(2000, "feet"),
  31170. default: true
  31171. },
  31172. {
  31173. name: "Megamacro",
  31174. height: math.unit(2, "km")
  31175. },
  31176. {
  31177. name: "Gigamacro",
  31178. height: math.unit(2000, "km")
  31179. },
  31180. {
  31181. name: "Teramacro",
  31182. height: math.unit(250000, "km")
  31183. },
  31184. ]
  31185. ))
  31186. characterMakers.push(() => makeCharacter(
  31187. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  31188. {
  31189. front: {
  31190. height: math.unit(4, "meters"),
  31191. weight: math.unit(150, "kg"),
  31192. name: "Front",
  31193. image: {
  31194. source: "./media/characters/caledvwlch/front.svg",
  31195. extra: 1760 / 1551,
  31196. bottom: 28 / 1788
  31197. }
  31198. },
  31199. side: {
  31200. height: math.unit(4, "meters"),
  31201. weight: math.unit(150, "kg"),
  31202. name: "Side",
  31203. image: {
  31204. source: "./media/characters/caledvwlch/side.svg",
  31205. extra: 1605 / 1536,
  31206. bottom: 31 / 1636
  31207. }
  31208. },
  31209. back: {
  31210. height: math.unit(4, "meters"),
  31211. weight: math.unit(150, "kg"),
  31212. name: "Back",
  31213. image: {
  31214. source: "./media/characters/caledvwlch/back.svg",
  31215. extra: 1635 / 1565,
  31216. bottom: 27 / 1662
  31217. }
  31218. },
  31219. },
  31220. [
  31221. {
  31222. name: "\"Incognito\"",
  31223. height: math.unit(4, "meters")
  31224. },
  31225. {
  31226. name: "Small rampage",
  31227. height: math.unit(600, "meters")
  31228. },
  31229. {
  31230. name: "Mega",
  31231. height: math.unit(30, "km")
  31232. },
  31233. {
  31234. name: "Home-size",
  31235. height: math.unit(50, "km"),
  31236. default: true
  31237. },
  31238. {
  31239. name: "Giga",
  31240. height: math.unit(300, "km")
  31241. },
  31242. {
  31243. name: "Lounging",
  31244. height: math.unit(11000, "km")
  31245. },
  31246. {
  31247. name: "Planet snacking",
  31248. height: math.unit(2000000, "km")
  31249. },
  31250. ]
  31251. ))
  31252. characterMakers.push(() => makeCharacter(
  31253. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  31254. {
  31255. front: {
  31256. height: math.unit(6, "feet"),
  31257. weight: math.unit(215, "lb"),
  31258. name: "Front",
  31259. image: {
  31260. source: "./media/characters/sapphire-svell/front.svg",
  31261. extra: 495 / 455,
  31262. bottom: 20 / 515
  31263. }
  31264. },
  31265. back: {
  31266. height: math.unit(6, "feet"),
  31267. weight: math.unit(216, "lb"),
  31268. name: "Back",
  31269. image: {
  31270. source: "./media/characters/sapphire-svell/back.svg",
  31271. extra: 497 / 477,
  31272. bottom: 7 / 504
  31273. }
  31274. },
  31275. maw: {
  31276. height: math.unit(1.57, "feet"),
  31277. name: "Maw",
  31278. image: {
  31279. source: "./media/characters/sapphire-svell/maw.svg"
  31280. }
  31281. },
  31282. foot: {
  31283. height: math.unit(1.07, "feet"),
  31284. name: "Foot",
  31285. image: {
  31286. source: "./media/characters/sapphire-svell/foot.svg"
  31287. }
  31288. },
  31289. toering: {
  31290. height: math.unit(1.7, "inch"),
  31291. name: "Toering",
  31292. image: {
  31293. source: "./media/characters/sapphire-svell/toering.svg"
  31294. }
  31295. },
  31296. },
  31297. [
  31298. {
  31299. name: "Normal",
  31300. height: math.unit(300, "feet"),
  31301. default: true
  31302. },
  31303. {
  31304. name: "Augmented",
  31305. height: math.unit(1250, "feet")
  31306. },
  31307. {
  31308. name: "Unleashed",
  31309. height: math.unit(3000, "feet")
  31310. },
  31311. ]
  31312. ))
  31313. characterMakers.push(() => makeCharacter(
  31314. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  31315. {
  31316. side: {
  31317. height: math.unit(2 + 3 / 12, "feet"),
  31318. weight: math.unit(110, "lb"),
  31319. name: "Side",
  31320. image: {
  31321. source: "./media/characters/glitch-flux/side.svg",
  31322. extra: 997 / 805,
  31323. bottom: 20 / 1017
  31324. }
  31325. },
  31326. },
  31327. [
  31328. {
  31329. name: "Normal",
  31330. height: math.unit(2 + 3 / 12, "feet"),
  31331. default: true
  31332. },
  31333. ]
  31334. ))
  31335. characterMakers.push(() => makeCharacter(
  31336. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  31337. {
  31338. front: {
  31339. height: math.unit(4, "meters"),
  31340. name: "Front",
  31341. image: {
  31342. source: "./media/characters/mid/front.svg",
  31343. extra: 507 / 476,
  31344. bottom: 17 / 524
  31345. }
  31346. },
  31347. back: {
  31348. height: math.unit(4, "meters"),
  31349. name: "Back",
  31350. image: {
  31351. source: "./media/characters/mid/back.svg",
  31352. extra: 519 / 487,
  31353. bottom: 7 / 526
  31354. }
  31355. },
  31356. stuck: {
  31357. height: math.unit(2.2, "meters"),
  31358. name: "Stuck",
  31359. image: {
  31360. source: "./media/characters/mid/stuck.svg",
  31361. extra: 1951 / 1869,
  31362. bottom: 88 / 2039
  31363. }
  31364. }
  31365. },
  31366. [
  31367. {
  31368. name: "Normal",
  31369. height: math.unit(4, "meters"),
  31370. default: true
  31371. },
  31372. {
  31373. name: "Big",
  31374. height: math.unit(10, "meters")
  31375. },
  31376. {
  31377. name: "Macro",
  31378. height: math.unit(800, "meters")
  31379. },
  31380. {
  31381. name: "Megamacro",
  31382. height: math.unit(100, "km")
  31383. },
  31384. {
  31385. name: "Overgrown",
  31386. height: math.unit(1, "parsec")
  31387. },
  31388. ]
  31389. ))
  31390. characterMakers.push(() => makeCharacter(
  31391. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  31392. {
  31393. front: {
  31394. height: math.unit(2.5, "meters"),
  31395. weight: math.unit(225, "kg"),
  31396. name: "Front",
  31397. image: {
  31398. source: "./media/characters/iris/front.svg",
  31399. extra: 3348 / 3251,
  31400. bottom: 205 / 3553
  31401. }
  31402. },
  31403. maw: {
  31404. height: math.unit(0.56, "meter"),
  31405. name: "Maw",
  31406. image: {
  31407. source: "./media/characters/iris/maw.svg"
  31408. }
  31409. },
  31410. },
  31411. [
  31412. {
  31413. name: "Mewter cat",
  31414. height: math.unit(1.2, "meters")
  31415. },
  31416. {
  31417. name: "Minimacro",
  31418. height: math.unit(2.5, "meters"),
  31419. default: true
  31420. },
  31421. {
  31422. name: "Macro",
  31423. height: math.unit(180, "meters")
  31424. },
  31425. {
  31426. name: "Megamacro",
  31427. height: math.unit(2746, "meters")
  31428. },
  31429. ]
  31430. ))
  31431. characterMakers.push(() => makeCharacter(
  31432. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  31433. {
  31434. front: {
  31435. height: math.unit(6, "feet"),
  31436. weight: math.unit(135, "lb"),
  31437. name: "Front",
  31438. image: {
  31439. source: "./media/characters/axel/front.svg",
  31440. extra: 908 / 908,
  31441. bottom: 58 / 966
  31442. }
  31443. },
  31444. side: {
  31445. height: math.unit(6, "feet"),
  31446. weight: math.unit(135, "lb"),
  31447. name: "Side",
  31448. image: {
  31449. source: "./media/characters/axel/side.svg",
  31450. extra: 958 / 958,
  31451. bottom: 11 / 969
  31452. }
  31453. },
  31454. back: {
  31455. height: math.unit(6, "feet"),
  31456. weight: math.unit(135, "lb"),
  31457. name: "Back",
  31458. image: {
  31459. source: "./media/characters/axel/back.svg",
  31460. extra: 887 / 887,
  31461. bottom: 34 / 921
  31462. }
  31463. },
  31464. head: {
  31465. height: math.unit(1.07, "feet"),
  31466. name: "Head",
  31467. image: {
  31468. source: "./media/characters/axel/head.svg"
  31469. }
  31470. },
  31471. beak: {
  31472. height: math.unit(1.4, "feet"),
  31473. name: "Beak",
  31474. image: {
  31475. source: "./media/characters/axel/beak.svg"
  31476. }
  31477. },
  31478. beakSide: {
  31479. height: math.unit(1.4, "feet"),
  31480. name: "Beak Side",
  31481. image: {
  31482. source: "./media/characters/axel/beak-side.svg"
  31483. }
  31484. },
  31485. sheath: {
  31486. height: math.unit(0.5, "feet"),
  31487. name: "Sheath",
  31488. image: {
  31489. source: "./media/characters/axel/sheath.svg"
  31490. }
  31491. },
  31492. dick: {
  31493. height: math.unit(0.98, "feet"),
  31494. name: "Dick",
  31495. image: {
  31496. source: "./media/characters/axel/dick.svg"
  31497. }
  31498. },
  31499. },
  31500. [
  31501. {
  31502. name: "Macro",
  31503. height: math.unit(68, "meters"),
  31504. default: true
  31505. },
  31506. ]
  31507. ))
  31508. characterMakers.push(() => makeCharacter(
  31509. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  31510. {
  31511. front: {
  31512. height: math.unit(3.5, "meters"),
  31513. weight: math.unit(1200, "kg"),
  31514. name: "Front",
  31515. image: {
  31516. source: "./media/characters/joanna/front.svg",
  31517. extra: 1596 / 1488,
  31518. bottom: 29 / 1625
  31519. }
  31520. },
  31521. back: {
  31522. height: math.unit(3.5, "meters"),
  31523. weight: math.unit(1200, "kg"),
  31524. name: "Back",
  31525. image: {
  31526. source: "./media/characters/joanna/back.svg",
  31527. extra: 1594 / 1495,
  31528. bottom: 26 / 1620
  31529. }
  31530. },
  31531. frontShorts: {
  31532. height: math.unit(3.5, "meters"),
  31533. weight: math.unit(1200, "kg"),
  31534. name: "Front (Shorts)",
  31535. image: {
  31536. source: "./media/characters/joanna/front-shorts.svg",
  31537. extra: 1596 / 1488,
  31538. bottom: 29 / 1625
  31539. }
  31540. },
  31541. frontBiker: {
  31542. height: math.unit(3.5, "meters"),
  31543. weight: math.unit(1200, "kg"),
  31544. name: "Front (Biker)",
  31545. image: {
  31546. source: "./media/characters/joanna/front-biker.svg",
  31547. extra: 1596 / 1488,
  31548. bottom: 29 / 1625
  31549. }
  31550. },
  31551. backBiker: {
  31552. height: math.unit(3.5, "meters"),
  31553. weight: math.unit(1200, "kg"),
  31554. name: "Back (Biker)",
  31555. image: {
  31556. source: "./media/characters/joanna/back-biker.svg",
  31557. extra: 1594 / 1495,
  31558. bottom: 88 / 1682
  31559. }
  31560. },
  31561. bikeLeft: {
  31562. height: math.unit(2.4, "meters"),
  31563. weight: math.unit(1600, "kg"),
  31564. name: "Bike (Left)",
  31565. image: {
  31566. source: "./media/characters/joanna/bike-left.svg",
  31567. extra: 720 / 720,
  31568. bottom: 8 / 728
  31569. }
  31570. },
  31571. bikeRight: {
  31572. height: math.unit(2.4, "meters"),
  31573. weight: math.unit(1600, "kg"),
  31574. name: "Bike (Right)",
  31575. image: {
  31576. source: "./media/characters/joanna/bike-right.svg",
  31577. extra: 720 / 720,
  31578. bottom: 8 / 728
  31579. }
  31580. },
  31581. },
  31582. [
  31583. {
  31584. name: "Incognito",
  31585. height: math.unit(3.5, "meters")
  31586. },
  31587. {
  31588. name: "Casual Big",
  31589. height: math.unit(200, "meters")
  31590. },
  31591. {
  31592. name: "Macro",
  31593. height: math.unit(600, "meters")
  31594. },
  31595. {
  31596. name: "Original",
  31597. height: math.unit(20, "km"),
  31598. default: true
  31599. },
  31600. {
  31601. name: "Giga",
  31602. height: math.unit(400, "km")
  31603. },
  31604. {
  31605. name: "Lounging",
  31606. height: math.unit(1500, "km")
  31607. },
  31608. {
  31609. name: "Planetary",
  31610. height: math.unit(200000, "km")
  31611. },
  31612. ]
  31613. ))
  31614. characterMakers.push(() => makeCharacter(
  31615. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  31616. {
  31617. front: {
  31618. height: math.unit(6, "feet"),
  31619. weight: math.unit(150, "lb"),
  31620. name: "Front",
  31621. image: {
  31622. source: "./media/characters/hugo-sigil/front.svg",
  31623. extra: 522 / 500,
  31624. bottom: 2 / 524
  31625. }
  31626. },
  31627. back: {
  31628. height: math.unit(6, "feet"),
  31629. weight: math.unit(150, "lb"),
  31630. name: "Back",
  31631. image: {
  31632. source: "./media/characters/hugo-sigil/back.svg",
  31633. extra: 519 / 495,
  31634. bottom: 5 / 524
  31635. }
  31636. },
  31637. maw: {
  31638. height: math.unit(1.4, "feet"),
  31639. weight: math.unit(150, "lb"),
  31640. name: "Maw",
  31641. image: {
  31642. source: "./media/characters/hugo-sigil/maw.svg"
  31643. }
  31644. },
  31645. feet: {
  31646. height: math.unit(1.56, "feet"),
  31647. weight: math.unit(150, "lb"),
  31648. name: "Feet",
  31649. image: {
  31650. source: "./media/characters/hugo-sigil/feet.svg",
  31651. extra: 177 / 177,
  31652. bottom: 12 / 189
  31653. }
  31654. },
  31655. },
  31656. [
  31657. {
  31658. name: "Normal",
  31659. height: math.unit(6, "feet")
  31660. },
  31661. {
  31662. name: "Macro",
  31663. height: math.unit(200, "feet"),
  31664. default: true
  31665. },
  31666. ]
  31667. ))
  31668. characterMakers.push(() => makeCharacter(
  31669. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  31670. {
  31671. front: {
  31672. height: math.unit(6, "feet"),
  31673. weight: math.unit(150, "lb"),
  31674. name: "Front",
  31675. image: {
  31676. source: "./media/characters/peri/front.svg",
  31677. extra: 2354 / 2233,
  31678. bottom: 49 / 2403
  31679. }
  31680. },
  31681. },
  31682. [
  31683. {
  31684. name: "Really Small",
  31685. height: math.unit(1, "nm")
  31686. },
  31687. {
  31688. name: "Micro",
  31689. height: math.unit(4, "inches")
  31690. },
  31691. {
  31692. name: "Normal",
  31693. height: math.unit(7, "inches"),
  31694. default: true
  31695. },
  31696. {
  31697. name: "Macro",
  31698. height: math.unit(400, "feet")
  31699. },
  31700. {
  31701. name: "Megamacro",
  31702. height: math.unit(100, "miles")
  31703. },
  31704. ]
  31705. ))
  31706. characterMakers.push(() => makeCharacter(
  31707. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  31708. {
  31709. frontSlim: {
  31710. height: math.unit(7, "feet"),
  31711. name: "Front (Slim)",
  31712. image: {
  31713. source: "./media/characters/issilora/front-slim.svg",
  31714. extra: 529 / 449,
  31715. bottom: 53 / 582
  31716. }
  31717. },
  31718. sideSlim: {
  31719. height: math.unit(7, "feet"),
  31720. name: "Side (Slim)",
  31721. image: {
  31722. source: "./media/characters/issilora/side-slim.svg",
  31723. extra: 570 / 480,
  31724. bottom: 30 / 600
  31725. }
  31726. },
  31727. backSlim: {
  31728. height: math.unit(7, "feet"),
  31729. name: "Back (Slim)",
  31730. image: {
  31731. source: "./media/characters/issilora/back-slim.svg",
  31732. extra: 537 / 455,
  31733. bottom: 46 / 583
  31734. }
  31735. },
  31736. frontBuff: {
  31737. height: math.unit(7, "feet"),
  31738. name: "Front (Buff)",
  31739. image: {
  31740. source: "./media/characters/issilora/front-buff.svg",
  31741. extra: 2310 / 2035,
  31742. bottom: 335 / 2645
  31743. }
  31744. },
  31745. head: {
  31746. height: math.unit(1.94, "feet"),
  31747. name: "Head",
  31748. image: {
  31749. source: "./media/characters/issilora/head.svg"
  31750. }
  31751. },
  31752. },
  31753. [
  31754. {
  31755. name: "Minimum",
  31756. height: math.unit(7, "feet")
  31757. },
  31758. {
  31759. name: "Comfortable",
  31760. height: math.unit(17, "feet")
  31761. },
  31762. {
  31763. name: "Fun Size",
  31764. height: math.unit(47, "feet")
  31765. },
  31766. {
  31767. name: "Natural Macro",
  31768. height: math.unit(137, "feet"),
  31769. default: true
  31770. },
  31771. {
  31772. name: "Maximum Kaiju",
  31773. height: math.unit(397, "feet")
  31774. },
  31775. ]
  31776. ))
  31777. characterMakers.push(() => makeCharacter(
  31778. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  31779. {
  31780. front: {
  31781. height: math.unit(50 + 9/12, "feet"),
  31782. weight: math.unit(32.8, "tons"),
  31783. name: "Front",
  31784. image: {
  31785. source: "./media/characters/irb'iiritaahn/front.svg",
  31786. extra: 1878/1826,
  31787. bottom: 326/2204
  31788. }
  31789. },
  31790. back: {
  31791. height: math.unit(50 + 9/12, "feet"),
  31792. weight: math.unit(32.8, "tons"),
  31793. name: "Back",
  31794. image: {
  31795. source: "./media/characters/irb'iiritaahn/back.svg",
  31796. extra: 2052/2018,
  31797. bottom: 152/2204
  31798. }
  31799. },
  31800. head: {
  31801. height: math.unit(12.86, "feet"),
  31802. name: "Head",
  31803. image: {
  31804. source: "./media/characters/irb'iiritaahn/head.svg"
  31805. }
  31806. },
  31807. maw: {
  31808. height: math.unit(9.66, "feet"),
  31809. name: "Maw",
  31810. image: {
  31811. source: "./media/characters/irb'iiritaahn/maw.svg"
  31812. }
  31813. },
  31814. frontDick: {
  31815. height: math.unit(8.78461, "feet"),
  31816. name: "Front Dick",
  31817. image: {
  31818. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  31819. }
  31820. },
  31821. rearDick: {
  31822. height: math.unit(8.78461, "feet"),
  31823. name: "Rear Dick",
  31824. image: {
  31825. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  31826. }
  31827. },
  31828. rearDickUnfolded: {
  31829. height: math.unit(8.78, "feet"),
  31830. name: "Rear Dick (Unfolded)",
  31831. image: {
  31832. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  31833. }
  31834. },
  31835. wings: {
  31836. height: math.unit(43, "feet"),
  31837. name: "Wings",
  31838. image: {
  31839. source: "./media/characters/irb'iiritaahn/wings.svg"
  31840. }
  31841. },
  31842. },
  31843. [
  31844. {
  31845. name: "Macro",
  31846. height: math.unit(50 + 9/12, "feet"),
  31847. default: true
  31848. },
  31849. ]
  31850. ))
  31851. characterMakers.push(() => makeCharacter(
  31852. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  31853. {
  31854. front: {
  31855. height: math.unit(205, "cm"),
  31856. weight: math.unit(102, "kg"),
  31857. name: "Front",
  31858. image: {
  31859. source: "./media/characters/irbisgreif/front.svg",
  31860. extra: 785/706,
  31861. bottom: 13/798
  31862. }
  31863. },
  31864. back: {
  31865. height: math.unit(205, "cm"),
  31866. weight: math.unit(102, "kg"),
  31867. name: "Back",
  31868. image: {
  31869. source: "./media/characters/irbisgreif/back.svg",
  31870. extra: 713/701,
  31871. bottom: 26/739
  31872. }
  31873. },
  31874. frontDressed: {
  31875. height: math.unit(216, "cm"),
  31876. weight: math.unit(102, "kg"),
  31877. name: "Front-dressed",
  31878. image: {
  31879. source: "./media/characters/irbisgreif/front-dressed.svg",
  31880. extra: 902/776,
  31881. bottom: 14/916
  31882. }
  31883. },
  31884. sideDressed: {
  31885. height: math.unit(195, "cm"),
  31886. weight: math.unit(102, "kg"),
  31887. name: "Side-dressed",
  31888. image: {
  31889. source: "./media/characters/irbisgreif/side-dressed.svg",
  31890. extra: 788/688,
  31891. bottom: 21/809
  31892. }
  31893. },
  31894. backDressed: {
  31895. height: math.unit(216, "cm"),
  31896. weight: math.unit(102, "kg"),
  31897. name: "Back-dressed",
  31898. image: {
  31899. source: "./media/characters/irbisgreif/back-dressed.svg",
  31900. extra: 901/783,
  31901. bottom: 10/911
  31902. }
  31903. },
  31904. dick: {
  31905. height: math.unit(0.49, "feet"),
  31906. name: "Dick",
  31907. image: {
  31908. source: "./media/characters/irbisgreif/dick.svg"
  31909. }
  31910. },
  31911. wingTop: {
  31912. height: math.unit(1.93 , "feet"),
  31913. name: "Wing-top",
  31914. image: {
  31915. source: "./media/characters/irbisgreif/wing-top.svg"
  31916. }
  31917. },
  31918. wingBottom: {
  31919. height: math.unit(1.93 , "feet"),
  31920. name: "Wing-bottom",
  31921. image: {
  31922. source: "./media/characters/irbisgreif/wing-bottom.svg"
  31923. }
  31924. },
  31925. },
  31926. [
  31927. {
  31928. name: "Normal",
  31929. height: math.unit(216, "cm"),
  31930. default: true
  31931. },
  31932. ]
  31933. ))
  31934. characterMakers.push(() => makeCharacter(
  31935. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  31936. {
  31937. front: {
  31938. height: math.unit(6, "feet"),
  31939. weight: math.unit(150, "lb"),
  31940. name: "Front",
  31941. image: {
  31942. source: "./media/characters/pride/front.svg",
  31943. extra: 1299/1230,
  31944. bottom: 18/1317
  31945. }
  31946. },
  31947. },
  31948. [
  31949. {
  31950. name: "Normal",
  31951. height: math.unit(7, "feet")
  31952. },
  31953. {
  31954. name: "Mini-macro",
  31955. height: math.unit(11, "feet")
  31956. },
  31957. {
  31958. name: "Macro",
  31959. height: math.unit(15, "meters"),
  31960. default: true
  31961. },
  31962. {
  31963. name: "Macro+",
  31964. height: math.unit(40, "meters")
  31965. },
  31966. ]
  31967. ))
  31968. characterMakers.push(() => makeCharacter(
  31969. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  31970. {
  31971. front: {
  31972. height: math.unit(4 + 2 / 12, "feet"),
  31973. weight: math.unit(95, "lb"),
  31974. name: "Front",
  31975. image: {
  31976. source: "./media/characters/vaelophis-nyx/front.svg",
  31977. extra: 2532/2330,
  31978. bottom: 0/2532
  31979. }
  31980. },
  31981. back: {
  31982. height: math.unit(4 + 2 / 12, "feet"),
  31983. weight: math.unit(95, "lb"),
  31984. name: "Back",
  31985. image: {
  31986. source: "./media/characters/vaelophis-nyx/back.svg",
  31987. extra: 2484/2361,
  31988. bottom: 0/2484
  31989. }
  31990. },
  31991. feralSide: {
  31992. height: math.unit(2 + 1/12, "feet"),
  31993. weight: math.unit(20, "lb"),
  31994. name: "Feral (Side)",
  31995. image: {
  31996. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  31997. extra: 1721/1581,
  31998. bottom: 70/1791
  31999. }
  32000. },
  32001. feralLazing: {
  32002. height: math.unit(1.08, "feet"),
  32003. weight: math.unit(20, "lb"),
  32004. name: "Feral (Lazing)",
  32005. image: {
  32006. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  32007. extra: 822/822,
  32008. bottom: 248/1070
  32009. }
  32010. },
  32011. ear: {
  32012. height: math.unit(0.416, "feet"),
  32013. name: "Ear",
  32014. image: {
  32015. source: "./media/characters/vaelophis-nyx/ear.svg"
  32016. }
  32017. },
  32018. eye: {
  32019. height: math.unit(0.0748, "feet"),
  32020. name: "Eye",
  32021. image: {
  32022. source: "./media/characters/vaelophis-nyx/eye.svg"
  32023. }
  32024. },
  32025. mouth: {
  32026. height: math.unit(0.378, "feet"),
  32027. name: "Mouth",
  32028. image: {
  32029. source: "./media/characters/vaelophis-nyx/mouth.svg"
  32030. }
  32031. },
  32032. spade: {
  32033. height: math.unit(0.55, "feet"),
  32034. name: "Spade",
  32035. image: {
  32036. source: "./media/characters/vaelophis-nyx/spade.svg"
  32037. }
  32038. },
  32039. },
  32040. [
  32041. {
  32042. name: "Normal",
  32043. height: math.unit(4 + 2/12, "feet"),
  32044. default: true
  32045. },
  32046. ]
  32047. ))
  32048. characterMakers.push(() => makeCharacter(
  32049. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  32050. {
  32051. front: {
  32052. height: math.unit(7, "feet"),
  32053. weight: math.unit(231, "lb"),
  32054. name: "Front",
  32055. image: {
  32056. source: "./media/characters/flux/front.svg",
  32057. extra: 919/871,
  32058. bottom: 0/919
  32059. }
  32060. },
  32061. back: {
  32062. height: math.unit(7, "feet"),
  32063. weight: math.unit(231, "lb"),
  32064. name: "Back",
  32065. image: {
  32066. source: "./media/characters/flux/back.svg",
  32067. extra: 1040/992,
  32068. bottom: 0/1040
  32069. }
  32070. },
  32071. frontDressed: {
  32072. height: math.unit(7, "feet"),
  32073. weight: math.unit(231, "lb"),
  32074. name: "Front (Dressed)",
  32075. image: {
  32076. source: "./media/characters/flux/front-dressed.svg",
  32077. extra: 919/871,
  32078. bottom: 0/919
  32079. }
  32080. },
  32081. feralSide: {
  32082. height: math.unit(5, "feet"),
  32083. weight: math.unit(150, "lb"),
  32084. name: "Feral (Side)",
  32085. image: {
  32086. source: "./media/characters/flux/feral-side.svg",
  32087. extra: 598/528,
  32088. bottom: 28/626
  32089. }
  32090. },
  32091. head: {
  32092. height: math.unit(1.585, "feet"),
  32093. name: "Head",
  32094. image: {
  32095. source: "./media/characters/flux/head.svg"
  32096. }
  32097. },
  32098. headSide: {
  32099. height: math.unit(1.74, "feet"),
  32100. name: "Head (Side)",
  32101. image: {
  32102. source: "./media/characters/flux/head-side.svg"
  32103. }
  32104. },
  32105. headSideFire: {
  32106. height: math.unit(1.76, "feet"),
  32107. name: "Head (Side, Fire)",
  32108. image: {
  32109. source: "./media/characters/flux/head-side-fire.svg"
  32110. }
  32111. },
  32112. },
  32113. [
  32114. {
  32115. name: "Normal",
  32116. height: math.unit(7, "feet"),
  32117. default: true
  32118. },
  32119. ]
  32120. ))
  32121. characterMakers.push(() => makeCharacter(
  32122. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  32123. {
  32124. front: {
  32125. height: math.unit(9, "feet"),
  32126. weight: math.unit(1012, "lb"),
  32127. name: "Front",
  32128. image: {
  32129. source: "./media/characters/ulfra-lupae/front.svg",
  32130. extra: 1083/1011,
  32131. bottom: 67/1150
  32132. }
  32133. },
  32134. },
  32135. [
  32136. {
  32137. name: "Micro",
  32138. height: math.unit(6, "inches")
  32139. },
  32140. {
  32141. name: "Socializing",
  32142. height: math.unit(6 + 5/12, "feet")
  32143. },
  32144. {
  32145. name: "Normal",
  32146. height: math.unit(9, "feet"),
  32147. default: true
  32148. },
  32149. {
  32150. name: "Macro",
  32151. height: math.unit(150, "feet")
  32152. },
  32153. ]
  32154. ))
  32155. characterMakers.push(() => makeCharacter(
  32156. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  32157. {
  32158. front: {
  32159. height: math.unit(5 + 2/12, "feet"),
  32160. weight: math.unit(120, "lb"),
  32161. name: "Front",
  32162. image: {
  32163. source: "./media/characters/timber/front.svg",
  32164. extra: 2814/2705,
  32165. bottom: 181/2995
  32166. }
  32167. },
  32168. },
  32169. [
  32170. {
  32171. name: "Normal",
  32172. height: math.unit(5 + 2/12, "feet"),
  32173. default: true
  32174. },
  32175. ]
  32176. ))
  32177. characterMakers.push(() => makeCharacter(
  32178. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  32179. {
  32180. front: {
  32181. height: math.unit(9, "feet"),
  32182. name: "Front",
  32183. image: {
  32184. source: "./media/characters/nicki/front.svg",
  32185. extra: 1240/990,
  32186. bottom: 45/1285
  32187. },
  32188. form: "anthro",
  32189. default: true
  32190. },
  32191. side: {
  32192. height: math.unit(9, "feet"),
  32193. name: "Side",
  32194. image: {
  32195. source: "./media/characters/nicki/side.svg",
  32196. extra: 1047/973,
  32197. bottom: 61/1108
  32198. },
  32199. form: "anthro"
  32200. },
  32201. back: {
  32202. height: math.unit(9, "feet"),
  32203. name: "Back",
  32204. image: {
  32205. source: "./media/characters/nicki/back.svg",
  32206. extra: 1006/965,
  32207. bottom: 39/1045
  32208. },
  32209. form: "anthro"
  32210. },
  32211. taur: {
  32212. height: math.unit(15, "feet"),
  32213. name: "Taur",
  32214. image: {
  32215. source: "./media/characters/nicki/taur.svg",
  32216. extra: 1592/1347,
  32217. bottom: 0/1592
  32218. },
  32219. form: "taur",
  32220. default: true
  32221. },
  32222. },
  32223. [
  32224. {
  32225. name: "Normal",
  32226. height: math.unit(9, "feet"),
  32227. form: "anthro",
  32228. default: true
  32229. },
  32230. {
  32231. name: "Normal",
  32232. height: math.unit(15, "feet"),
  32233. form: "taur",
  32234. default: true
  32235. }
  32236. ],
  32237. {
  32238. "anthro": {
  32239. name: "Anthro",
  32240. default: true
  32241. },
  32242. "taur": {
  32243. name: "Taur"
  32244. }
  32245. }
  32246. ))
  32247. characterMakers.push(() => makeCharacter(
  32248. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  32249. {
  32250. front: {
  32251. height: math.unit(7 + 10/12, "feet"),
  32252. weight: math.unit(3.5, "tons"),
  32253. name: "Front",
  32254. image: {
  32255. source: "./media/characters/lee/front.svg",
  32256. extra: 1773/1615,
  32257. bottom: 86/1859
  32258. }
  32259. },
  32260. hand: {
  32261. height: math.unit(1.78, "feet"),
  32262. name: "Hand",
  32263. image: {
  32264. source: "./media/characters/lee/hand.svg"
  32265. }
  32266. },
  32267. maw: {
  32268. height: math.unit(1.18, "feet"),
  32269. name: "Maw",
  32270. image: {
  32271. source: "./media/characters/lee/maw.svg"
  32272. }
  32273. },
  32274. },
  32275. [
  32276. {
  32277. name: "Normal",
  32278. height: math.unit(7 + 10/12, "feet"),
  32279. default: true
  32280. },
  32281. ]
  32282. ))
  32283. characterMakers.push(() => makeCharacter(
  32284. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  32285. {
  32286. front: {
  32287. height: math.unit(9, "feet"),
  32288. name: "Front",
  32289. image: {
  32290. source: "./media/characters/guti/front.svg",
  32291. extra: 4551/4355,
  32292. bottom: 123/4674
  32293. }
  32294. },
  32295. tongue: {
  32296. height: math.unit(1, "feet"),
  32297. name: "Tongue",
  32298. image: {
  32299. source: "./media/characters/guti/tongue.svg"
  32300. }
  32301. },
  32302. paw: {
  32303. height: math.unit(1.18, "feet"),
  32304. name: "Paw",
  32305. image: {
  32306. source: "./media/characters/guti/paw.svg"
  32307. }
  32308. },
  32309. },
  32310. [
  32311. {
  32312. name: "Normal",
  32313. height: math.unit(9, "feet"),
  32314. default: true
  32315. },
  32316. ]
  32317. ))
  32318. characterMakers.push(() => makeCharacter(
  32319. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  32320. {
  32321. side: {
  32322. height: math.unit(5, "meters"),
  32323. name: "Side",
  32324. image: {
  32325. source: "./media/characters/vesper/side.svg",
  32326. extra: 1605/1518,
  32327. bottom: 0/1605
  32328. }
  32329. },
  32330. },
  32331. [
  32332. {
  32333. name: "Small",
  32334. height: math.unit(5, "meters")
  32335. },
  32336. {
  32337. name: "Sage",
  32338. height: math.unit(100, "meters"),
  32339. default: true
  32340. },
  32341. {
  32342. name: "Fun Size",
  32343. height: math.unit(600, "meters")
  32344. },
  32345. {
  32346. name: "Goddess",
  32347. height: math.unit(20000, "km")
  32348. },
  32349. {
  32350. name: "Maximum",
  32351. height: math.unit(5, "galaxies")
  32352. },
  32353. ]
  32354. ))
  32355. characterMakers.push(() => makeCharacter(
  32356. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  32357. {
  32358. front: {
  32359. height: math.unit(6 + 3/12, "feet"),
  32360. weight: math.unit(190, "lb"),
  32361. name: "Front",
  32362. image: {
  32363. source: "./media/characters/gawain/front.svg",
  32364. extra: 2222/2139,
  32365. bottom: 90/2312
  32366. }
  32367. },
  32368. back: {
  32369. height: math.unit(6 + 3/12, "feet"),
  32370. weight: math.unit(190, "lb"),
  32371. name: "Back",
  32372. image: {
  32373. source: "./media/characters/gawain/back.svg",
  32374. extra: 2199/2111,
  32375. bottom: 73/2272
  32376. }
  32377. },
  32378. },
  32379. [
  32380. {
  32381. name: "Normal",
  32382. height: math.unit(6 + 3/12, "feet"),
  32383. default: true
  32384. },
  32385. ]
  32386. ))
  32387. characterMakers.push(() => makeCharacter(
  32388. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  32389. {
  32390. side: {
  32391. height: math.unit(3.5, "meters"),
  32392. weight: math.unit(16000, "lb"),
  32393. name: "Side",
  32394. image: {
  32395. source: "./media/characters/dascalti/side.svg",
  32396. extra: 392/273,
  32397. bottom: 47/439
  32398. }
  32399. },
  32400. breath: {
  32401. height: math.unit(7.4, "feet"),
  32402. name: "Breath",
  32403. image: {
  32404. source: "./media/characters/dascalti/breath.svg"
  32405. }
  32406. },
  32407. fed: {
  32408. height: math.unit(3.6, "meters"),
  32409. weight: math.unit(16000, "lb"),
  32410. name: "Fed",
  32411. image: {
  32412. source: "./media/characters/dascalti/fed.svg",
  32413. extra: 1419/820,
  32414. bottom: 95/1514
  32415. }
  32416. },
  32417. },
  32418. [
  32419. {
  32420. name: "Normal",
  32421. height: math.unit(3.5, "meters"),
  32422. default: true
  32423. },
  32424. ]
  32425. ))
  32426. characterMakers.push(() => makeCharacter(
  32427. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  32428. {
  32429. front: {
  32430. height: math.unit(3 + 5/12, "feet"),
  32431. name: "Front",
  32432. image: {
  32433. source: "./media/characters/mauve/front.svg",
  32434. extra: 1126/1033,
  32435. bottom: 65/1191
  32436. }
  32437. },
  32438. side: {
  32439. height: math.unit(3 + 5/12, "feet"),
  32440. name: "Side",
  32441. image: {
  32442. source: "./media/characters/mauve/side.svg",
  32443. extra: 1089/1001,
  32444. bottom: 29/1118
  32445. }
  32446. },
  32447. back: {
  32448. height: math.unit(3 + 5/12, "feet"),
  32449. name: "Back",
  32450. image: {
  32451. source: "./media/characters/mauve/back.svg",
  32452. extra: 1173/1053,
  32453. bottom: 109/1282
  32454. }
  32455. },
  32456. },
  32457. [
  32458. {
  32459. name: "Normal",
  32460. height: math.unit(3 + 5/12, "feet"),
  32461. default: true
  32462. },
  32463. ]
  32464. ))
  32465. characterMakers.push(() => makeCharacter(
  32466. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  32467. {
  32468. front: {
  32469. height: math.unit(6 + 3/12, "feet"),
  32470. weight: math.unit(430, "lb"),
  32471. name: "Front",
  32472. image: {
  32473. source: "./media/characters/carlos/front.svg",
  32474. extra: 1964/1913,
  32475. bottom: 70/2034
  32476. }
  32477. },
  32478. },
  32479. [
  32480. {
  32481. name: "Normal",
  32482. height: math.unit(6 + 3/12, "feet"),
  32483. default: true
  32484. },
  32485. ]
  32486. ))
  32487. characterMakers.push(() => makeCharacter(
  32488. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  32489. {
  32490. back: {
  32491. height: math.unit(5 + 10/12, "feet"),
  32492. weight: math.unit(200, "lb"),
  32493. name: "Back",
  32494. image: {
  32495. source: "./media/characters/jax/back.svg",
  32496. extra: 764/739,
  32497. bottom: 25/789
  32498. }
  32499. },
  32500. },
  32501. [
  32502. {
  32503. name: "Normal",
  32504. height: math.unit(5 + 10/12, "feet"),
  32505. default: true
  32506. },
  32507. ]
  32508. ))
  32509. characterMakers.push(() => makeCharacter(
  32510. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  32511. {
  32512. front: {
  32513. height: math.unit(8, "feet"),
  32514. weight: math.unit(250, "lb"),
  32515. name: "Front",
  32516. image: {
  32517. source: "./media/characters/eikthynir/front.svg",
  32518. extra: 1332/1166,
  32519. bottom: 82/1414
  32520. }
  32521. },
  32522. back: {
  32523. height: math.unit(8, "feet"),
  32524. weight: math.unit(250, "lb"),
  32525. name: "Back",
  32526. image: {
  32527. source: "./media/characters/eikthynir/back.svg",
  32528. extra: 1342/1190,
  32529. bottom: 19/1361
  32530. }
  32531. },
  32532. dick: {
  32533. height: math.unit(2.35, "feet"),
  32534. name: "Dick",
  32535. image: {
  32536. source: "./media/characters/eikthynir/dick.svg"
  32537. }
  32538. },
  32539. },
  32540. [
  32541. {
  32542. name: "Normal",
  32543. height: math.unit(8, "feet"),
  32544. default: true
  32545. },
  32546. ]
  32547. ))
  32548. characterMakers.push(() => makeCharacter(
  32549. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  32550. {
  32551. front: {
  32552. height: math.unit(99, "meters"),
  32553. weight: math.unit(13000, "tons"),
  32554. name: "Front",
  32555. image: {
  32556. source: "./media/characters/zlmos/front.svg",
  32557. extra: 2202/1992,
  32558. bottom: 315/2517
  32559. }
  32560. },
  32561. },
  32562. [
  32563. {
  32564. name: "Macro",
  32565. height: math.unit(99, "meters"),
  32566. default: true
  32567. },
  32568. ]
  32569. ))
  32570. characterMakers.push(() => makeCharacter(
  32571. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  32572. {
  32573. front: {
  32574. height: math.unit(6 + 5/12, "feet"),
  32575. name: "Front",
  32576. image: {
  32577. source: "./media/characters/purri/front.svg",
  32578. extra: 1698/1610,
  32579. bottom: 32/1730
  32580. }
  32581. },
  32582. frontAlt: {
  32583. height: math.unit(6 + 5/12, "feet"),
  32584. name: "Front (Alt)",
  32585. image: {
  32586. source: "./media/characters/purri/front-alt.svg",
  32587. extra: 450/420,
  32588. bottom: 26/476
  32589. }
  32590. },
  32591. boots: {
  32592. height: math.unit(5.5, "feet"),
  32593. name: "Boots",
  32594. image: {
  32595. source: "./media/characters/purri/boots.svg",
  32596. extra: 905/853,
  32597. bottom: 18/923
  32598. }
  32599. },
  32600. lying: {
  32601. height: math.unit(2, "feet"),
  32602. name: "Lying",
  32603. image: {
  32604. source: "./media/characters/purri/lying.svg",
  32605. extra: 940/843,
  32606. bottom: 146/1086
  32607. }
  32608. },
  32609. devious: {
  32610. height: math.unit(1.77, "feet"),
  32611. name: "Devious",
  32612. image: {
  32613. source: "./media/characters/purri/devious.svg",
  32614. extra: 1440/1155,
  32615. bottom: 147/1587
  32616. }
  32617. },
  32618. bean: {
  32619. height: math.unit(1.94, "feet"),
  32620. name: "Bean",
  32621. image: {
  32622. source: "./media/characters/purri/bean.svg"
  32623. }
  32624. },
  32625. },
  32626. [
  32627. {
  32628. name: "Micro",
  32629. height: math.unit(1, "mm")
  32630. },
  32631. {
  32632. name: "Normal",
  32633. height: math.unit(6 + 5/12, "feet"),
  32634. default: true
  32635. },
  32636. {
  32637. name: "Macro :3c",
  32638. height: math.unit(2, "miles")
  32639. },
  32640. ]
  32641. ))
  32642. characterMakers.push(() => makeCharacter(
  32643. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  32644. {
  32645. front: {
  32646. height: math.unit(6 + 2/12, "feet"),
  32647. weight: math.unit(250, "lb"),
  32648. name: "Front",
  32649. image: {
  32650. source: "./media/characters/moonlight/front.svg",
  32651. extra: 1044/908,
  32652. bottom: 56/1100
  32653. }
  32654. },
  32655. feral: {
  32656. height: math.unit(3 + 1/12, "feet"),
  32657. weight: math.unit(50, "kg"),
  32658. name: "Feral",
  32659. image: {
  32660. source: "./media/characters/moonlight/feral.svg",
  32661. extra: 3705/2791,
  32662. bottom: 145/3850
  32663. }
  32664. },
  32665. paw: {
  32666. height: math.unit(1, "feet"),
  32667. name: "Paw",
  32668. image: {
  32669. source: "./media/characters/moonlight/paw.svg"
  32670. }
  32671. },
  32672. paws: {
  32673. height: math.unit(0.98, "feet"),
  32674. name: "Paws",
  32675. image: {
  32676. source: "./media/characters/moonlight/paws.svg",
  32677. extra: 939/939,
  32678. bottom: 50/989
  32679. }
  32680. },
  32681. mouth: {
  32682. height: math.unit(0.48, "feet"),
  32683. name: "Mouth",
  32684. image: {
  32685. source: "./media/characters/moonlight/mouth.svg"
  32686. }
  32687. },
  32688. dick: {
  32689. height: math.unit(1.46, "feet"),
  32690. name: "Dick",
  32691. image: {
  32692. source: "./media/characters/moonlight/dick.svg"
  32693. }
  32694. },
  32695. },
  32696. [
  32697. {
  32698. name: "Normal",
  32699. height: math.unit(6 + 2/12, "feet"),
  32700. default: true
  32701. },
  32702. {
  32703. name: "Macro",
  32704. height: math.unit(300, "feet")
  32705. },
  32706. {
  32707. name: "Macro+",
  32708. height: math.unit(1, "mile")
  32709. },
  32710. {
  32711. name: "Mt. Moon",
  32712. height: math.unit(5, "miles")
  32713. },
  32714. {
  32715. name: "Megamacro",
  32716. height: math.unit(15, "miles")
  32717. },
  32718. ]
  32719. ))
  32720. characterMakers.push(() => makeCharacter(
  32721. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  32722. {
  32723. back: {
  32724. height: math.unit(6, "feet"),
  32725. weight: math.unit(150, "lb"),
  32726. name: "Back",
  32727. image: {
  32728. source: "./media/characters/sylen/back.svg",
  32729. extra: 1335/1273,
  32730. bottom: 107/1442
  32731. }
  32732. },
  32733. },
  32734. [
  32735. {
  32736. name: "Normal",
  32737. height: math.unit(5 + 5/12, "feet")
  32738. },
  32739. {
  32740. name: "Megamacro",
  32741. height: math.unit(3, "miles"),
  32742. default: true
  32743. },
  32744. ]
  32745. ))
  32746. characterMakers.push(() => makeCharacter(
  32747. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  32748. {
  32749. front: {
  32750. height: math.unit(6, "feet"),
  32751. weight: math.unit(190, "lb"),
  32752. name: "Front",
  32753. image: {
  32754. source: "./media/characters/huttser/front.svg",
  32755. extra: 1152/1058,
  32756. bottom: 23/1175
  32757. }
  32758. },
  32759. side: {
  32760. height: math.unit(6, "feet"),
  32761. weight: math.unit(190, "lb"),
  32762. name: "Side",
  32763. image: {
  32764. source: "./media/characters/huttser/side.svg",
  32765. extra: 1174/1065,
  32766. bottom: 18/1192
  32767. }
  32768. },
  32769. back: {
  32770. height: math.unit(6, "feet"),
  32771. weight: math.unit(190, "lb"),
  32772. name: "Back",
  32773. image: {
  32774. source: "./media/characters/huttser/back.svg",
  32775. extra: 1158/1056,
  32776. bottom: 12/1170
  32777. }
  32778. },
  32779. },
  32780. [
  32781. ]
  32782. ))
  32783. characterMakers.push(() => makeCharacter(
  32784. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  32785. {
  32786. side: {
  32787. height: math.unit(12 + 9/12, "feet"),
  32788. weight: math.unit(15000, "lb"),
  32789. name: "Side",
  32790. image: {
  32791. source: "./media/characters/faan/side.svg",
  32792. extra: 2747/2697,
  32793. bottom: 0/2747
  32794. }
  32795. },
  32796. front: {
  32797. height: math.unit(12 + 9/12, "feet"),
  32798. weight: math.unit(15000, "lb"),
  32799. name: "Front",
  32800. image: {
  32801. source: "./media/characters/faan/front.svg",
  32802. extra: 607/571,
  32803. bottom: 24/631
  32804. }
  32805. },
  32806. head: {
  32807. height: math.unit(2.85, "feet"),
  32808. name: "Head",
  32809. image: {
  32810. source: "./media/characters/faan/head.svg"
  32811. }
  32812. },
  32813. headAlt: {
  32814. height: math.unit(3.13, "feet"),
  32815. name: "Head-alt",
  32816. image: {
  32817. source: "./media/characters/faan/head-alt.svg"
  32818. }
  32819. },
  32820. },
  32821. [
  32822. {
  32823. name: "Normal",
  32824. height: math.unit(12 + 9/12, "feet"),
  32825. default: true
  32826. },
  32827. ]
  32828. ))
  32829. characterMakers.push(() => makeCharacter(
  32830. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  32831. {
  32832. front: {
  32833. height: math.unit(6, "feet"),
  32834. weight: math.unit(300, "lb"),
  32835. name: "Front",
  32836. image: {
  32837. source: "./media/characters/tanio/front.svg",
  32838. extra: 711/673,
  32839. bottom: 25/736
  32840. }
  32841. },
  32842. },
  32843. [
  32844. {
  32845. name: "Normal",
  32846. height: math.unit(6, "feet"),
  32847. default: true
  32848. },
  32849. ]
  32850. ))
  32851. characterMakers.push(() => makeCharacter(
  32852. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  32853. {
  32854. front: {
  32855. height: math.unit(3, "inches"),
  32856. name: "Front",
  32857. image: {
  32858. source: "./media/characters/noboru/front.svg",
  32859. extra: 1039/932,
  32860. bottom: 18/1057
  32861. }
  32862. },
  32863. },
  32864. [
  32865. {
  32866. name: "Micro",
  32867. height: math.unit(3, "inches"),
  32868. default: true
  32869. },
  32870. ]
  32871. ))
  32872. characterMakers.push(() => makeCharacter(
  32873. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  32874. {
  32875. front: {
  32876. height: math.unit(1.85, "meters"),
  32877. weight: math.unit(80, "kg"),
  32878. name: "Front",
  32879. image: {
  32880. source: "./media/characters/daniel-barrett/front.svg",
  32881. extra: 355/337,
  32882. bottom: 9/364
  32883. }
  32884. },
  32885. },
  32886. [
  32887. {
  32888. name: "Pico",
  32889. height: math.unit(0.0433, "mm")
  32890. },
  32891. {
  32892. name: "Nano",
  32893. height: math.unit(1.5, "mm")
  32894. },
  32895. {
  32896. name: "Micro",
  32897. height: math.unit(5.3, "cm"),
  32898. default: true
  32899. },
  32900. {
  32901. name: "Normal",
  32902. height: math.unit(1.85, "meters")
  32903. },
  32904. {
  32905. name: "Macro",
  32906. height: math.unit(64.7, "meters")
  32907. },
  32908. {
  32909. name: "Megamacro",
  32910. height: math.unit(2.26, "km")
  32911. },
  32912. {
  32913. name: "Gigamacro",
  32914. height: math.unit(79, "km")
  32915. },
  32916. {
  32917. name: "Teramacro",
  32918. height: math.unit(2765, "km")
  32919. },
  32920. {
  32921. name: "Petamacro",
  32922. height: math.unit(96678, "km")
  32923. },
  32924. ]
  32925. ))
  32926. characterMakers.push(() => makeCharacter(
  32927. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  32928. {
  32929. front: {
  32930. height: math.unit(30, "meters"),
  32931. weight: math.unit(400, "tons"),
  32932. name: "Front",
  32933. image: {
  32934. source: "./media/characters/zeel/front.svg",
  32935. extra: 2599/2599,
  32936. bottom: 226/2825
  32937. }
  32938. },
  32939. },
  32940. [
  32941. {
  32942. name: "Macro",
  32943. height: math.unit(30, "meters"),
  32944. default: true
  32945. },
  32946. ]
  32947. ))
  32948. characterMakers.push(() => makeCharacter(
  32949. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  32950. {
  32951. front: {
  32952. height: math.unit(6 + 7/12, "feet"),
  32953. weight: math.unit(210, "lb"),
  32954. name: "Front",
  32955. image: {
  32956. source: "./media/characters/tarn/front.svg",
  32957. extra: 3517/3220,
  32958. bottom: 91/3608
  32959. }
  32960. },
  32961. back: {
  32962. height: math.unit(6 + 7/12, "feet"),
  32963. weight: math.unit(210, "lb"),
  32964. name: "Back",
  32965. image: {
  32966. source: "./media/characters/tarn/back.svg",
  32967. extra: 3566/3241,
  32968. bottom: 34/3600
  32969. }
  32970. },
  32971. dick: {
  32972. height: math.unit(1.65, "feet"),
  32973. name: "Dick",
  32974. image: {
  32975. source: "./media/characters/tarn/dick.svg"
  32976. }
  32977. },
  32978. paw: {
  32979. height: math.unit(1.80, "feet"),
  32980. name: "Paw",
  32981. image: {
  32982. source: "./media/characters/tarn/paw.svg"
  32983. }
  32984. },
  32985. tongue: {
  32986. height: math.unit(0.97, "feet"),
  32987. name: "Tongue",
  32988. image: {
  32989. source: "./media/characters/tarn/tongue.svg"
  32990. }
  32991. },
  32992. },
  32993. [
  32994. {
  32995. name: "Micro",
  32996. height: math.unit(4, "inches")
  32997. },
  32998. {
  32999. name: "Normal",
  33000. height: math.unit(6 + 7/12, "feet"),
  33001. default: true
  33002. },
  33003. {
  33004. name: "Macro",
  33005. height: math.unit(300, "feet")
  33006. },
  33007. ]
  33008. ))
  33009. characterMakers.push(() => makeCharacter(
  33010. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  33011. {
  33012. front: {
  33013. height: math.unit(5 + 7/12, "feet"),
  33014. weight: math.unit(80, "kg"),
  33015. name: "Front",
  33016. image: {
  33017. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  33018. extra: 3023/2865,
  33019. bottom: 33/3056
  33020. }
  33021. },
  33022. back: {
  33023. height: math.unit(5 + 7/12, "feet"),
  33024. weight: math.unit(80, "kg"),
  33025. name: "Back",
  33026. image: {
  33027. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  33028. extra: 3020/2886,
  33029. bottom: 30/3050
  33030. }
  33031. },
  33032. dick: {
  33033. height: math.unit(0.98, "feet"),
  33034. name: "Dick",
  33035. image: {
  33036. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  33037. }
  33038. },
  33039. anatomy: {
  33040. height: math.unit(2.86, "feet"),
  33041. name: "Anatomy",
  33042. image: {
  33043. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  33044. }
  33045. },
  33046. },
  33047. [
  33048. {
  33049. name: "Really Small",
  33050. height: math.unit(2, "inches")
  33051. },
  33052. {
  33053. name: "Micro",
  33054. height: math.unit(5.583, "inches")
  33055. },
  33056. {
  33057. name: "Normal",
  33058. height: math.unit(5 + 7/12, "feet"),
  33059. default: true
  33060. },
  33061. {
  33062. name: "Macro",
  33063. height: math.unit(67, "feet")
  33064. },
  33065. {
  33066. name: "Megamacro",
  33067. height: math.unit(134, "feet")
  33068. },
  33069. ]
  33070. ))
  33071. characterMakers.push(() => makeCharacter(
  33072. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  33073. {
  33074. front: {
  33075. height: math.unit(9, "feet"),
  33076. weight: math.unit(120, "lb"),
  33077. name: "Front",
  33078. image: {
  33079. source: "./media/characters/sally/front.svg",
  33080. extra: 1506/1349,
  33081. bottom: 66/1572
  33082. }
  33083. },
  33084. },
  33085. [
  33086. {
  33087. name: "Normal",
  33088. height: math.unit(9, "feet"),
  33089. default: true
  33090. },
  33091. ]
  33092. ))
  33093. characterMakers.push(() => makeCharacter(
  33094. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  33095. {
  33096. front: {
  33097. height: math.unit(8, "feet"),
  33098. weight: math.unit(900, "lb"),
  33099. name: "Front",
  33100. image: {
  33101. source: "./media/characters/owen/front.svg",
  33102. extra: 1761/1657,
  33103. bottom: 74/1835
  33104. }
  33105. },
  33106. side: {
  33107. height: math.unit(8, "feet"),
  33108. weight: math.unit(900, "lb"),
  33109. name: "Side",
  33110. image: {
  33111. source: "./media/characters/owen/side.svg",
  33112. extra: 1797/1734,
  33113. bottom: 30/1827
  33114. }
  33115. },
  33116. back: {
  33117. height: math.unit(8, "feet"),
  33118. weight: math.unit(900, "lb"),
  33119. name: "Back",
  33120. image: {
  33121. source: "./media/characters/owen/back.svg",
  33122. extra: 1796/1706,
  33123. bottom: 59/1855
  33124. }
  33125. },
  33126. maw: {
  33127. height: math.unit(1.76, "feet"),
  33128. name: "Maw",
  33129. image: {
  33130. source: "./media/characters/owen/maw.svg"
  33131. }
  33132. },
  33133. },
  33134. [
  33135. {
  33136. name: "Normal",
  33137. height: math.unit(8, "feet"),
  33138. default: true
  33139. },
  33140. ]
  33141. ))
  33142. characterMakers.push(() => makeCharacter(
  33143. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  33144. {
  33145. front: {
  33146. height: math.unit(4, "feet"),
  33147. weight: math.unit(400, "lb"),
  33148. name: "Front",
  33149. image: {
  33150. source: "./media/characters/ryth/front.svg",
  33151. extra: 1920/1748,
  33152. bottom: 42/1962
  33153. }
  33154. },
  33155. back: {
  33156. height: math.unit(4, "feet"),
  33157. weight: math.unit(400, "lb"),
  33158. name: "Back",
  33159. image: {
  33160. source: "./media/characters/ryth/back.svg",
  33161. extra: 1897/1690,
  33162. bottom: 89/1986
  33163. }
  33164. },
  33165. mouth: {
  33166. height: math.unit(1.39, "feet"),
  33167. name: "Mouth",
  33168. image: {
  33169. source: "./media/characters/ryth/mouth.svg"
  33170. }
  33171. },
  33172. tailmaw: {
  33173. height: math.unit(1.23, "feet"),
  33174. name: "Tailmaw",
  33175. image: {
  33176. source: "./media/characters/ryth/tailmaw.svg"
  33177. }
  33178. },
  33179. goia: {
  33180. height: math.unit(4, "meters"),
  33181. weight: math.unit(10800, "lb"),
  33182. name: "Goia",
  33183. image: {
  33184. source: "./media/characters/ryth/goia.svg",
  33185. extra: 745/640,
  33186. bottom: 107/852
  33187. }
  33188. },
  33189. goiaFront: {
  33190. height: math.unit(4, "meters"),
  33191. weight: math.unit(10800, "lb"),
  33192. name: "Goia (Front)",
  33193. image: {
  33194. source: "./media/characters/ryth/goia-front.svg",
  33195. extra: 750/586,
  33196. bottom: 114/864
  33197. }
  33198. },
  33199. goiaMaw: {
  33200. height: math.unit(5.55, "feet"),
  33201. name: "Goia Maw",
  33202. image: {
  33203. source: "./media/characters/ryth/goia-maw.svg"
  33204. }
  33205. },
  33206. goiaForepaw: {
  33207. height: math.unit(3.5, "feet"),
  33208. name: "Goia Forepaw",
  33209. image: {
  33210. source: "./media/characters/ryth/goia-forepaw.svg"
  33211. }
  33212. },
  33213. goiaHindpaw: {
  33214. height: math.unit(5.55, "feet"),
  33215. name: "Goia Hindpaw",
  33216. image: {
  33217. source: "./media/characters/ryth/goia-hindpaw.svg"
  33218. }
  33219. },
  33220. },
  33221. [
  33222. {
  33223. name: "Normal",
  33224. height: math.unit(4, "feet"),
  33225. default: true
  33226. },
  33227. ]
  33228. ))
  33229. characterMakers.push(() => makeCharacter(
  33230. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  33231. {
  33232. front: {
  33233. height: math.unit(7, "feet"),
  33234. weight: math.unit(180, "lb"),
  33235. name: "Front",
  33236. image: {
  33237. source: "./media/characters/necrolance/front.svg",
  33238. extra: 1062/947,
  33239. bottom: 41/1103
  33240. }
  33241. },
  33242. back: {
  33243. height: math.unit(7, "feet"),
  33244. weight: math.unit(180, "lb"),
  33245. name: "Back",
  33246. image: {
  33247. source: "./media/characters/necrolance/back.svg",
  33248. extra: 1045/984,
  33249. bottom: 14/1059
  33250. }
  33251. },
  33252. wing: {
  33253. height: math.unit(2.67, "feet"),
  33254. name: "Wing",
  33255. image: {
  33256. source: "./media/characters/necrolance/wing.svg"
  33257. }
  33258. },
  33259. },
  33260. [
  33261. {
  33262. name: "Normal",
  33263. height: math.unit(7, "feet"),
  33264. default: true
  33265. },
  33266. ]
  33267. ))
  33268. characterMakers.push(() => makeCharacter(
  33269. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  33270. {
  33271. front: {
  33272. height: math.unit(76, "meters"),
  33273. weight: math.unit(30000, "tons"),
  33274. name: "Front",
  33275. image: {
  33276. source: "./media/characters/tyler/front.svg",
  33277. extra: 1640/1640,
  33278. bottom: 114/1754
  33279. }
  33280. },
  33281. },
  33282. [
  33283. {
  33284. name: "Macro",
  33285. height: math.unit(76, "meters"),
  33286. default: true
  33287. },
  33288. ]
  33289. ))
  33290. characterMakers.push(() => makeCharacter(
  33291. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  33292. {
  33293. front: {
  33294. height: math.unit(4 + 11/12, "feet"),
  33295. weight: math.unit(132, "lb"),
  33296. name: "Front",
  33297. image: {
  33298. source: "./media/characters/icey/front.svg",
  33299. extra: 2750/2550,
  33300. bottom: 33/2783
  33301. }
  33302. },
  33303. back: {
  33304. height: math.unit(4 + 11/12, "feet"),
  33305. weight: math.unit(132, "lb"),
  33306. name: "Back",
  33307. image: {
  33308. source: "./media/characters/icey/back.svg",
  33309. extra: 2624/2481,
  33310. bottom: 35/2659
  33311. }
  33312. },
  33313. },
  33314. [
  33315. {
  33316. name: "Normal",
  33317. height: math.unit(4 + 11/12, "feet"),
  33318. default: true
  33319. },
  33320. ]
  33321. ))
  33322. characterMakers.push(() => makeCharacter(
  33323. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  33324. {
  33325. front: {
  33326. height: math.unit(100, "feet"),
  33327. weight: math.unit(0, "lb"),
  33328. name: "Front",
  33329. image: {
  33330. source: "./media/characters/smile/front.svg",
  33331. extra: 2983/2912,
  33332. bottom: 162/3145
  33333. }
  33334. },
  33335. back: {
  33336. height: math.unit(100, "feet"),
  33337. weight: math.unit(0, "lb"),
  33338. name: "Back",
  33339. image: {
  33340. source: "./media/characters/smile/back.svg",
  33341. extra: 3143/3031,
  33342. bottom: 91/3234
  33343. }
  33344. },
  33345. head: {
  33346. height: math.unit(26.3, "feet"),
  33347. weight: math.unit(0, "lb"),
  33348. name: "Head",
  33349. image: {
  33350. source: "./media/characters/smile/head.svg"
  33351. }
  33352. },
  33353. collar: {
  33354. height: math.unit(5.3, "feet"),
  33355. weight: math.unit(0, "lb"),
  33356. name: "Collar",
  33357. image: {
  33358. source: "./media/characters/smile/collar.svg"
  33359. }
  33360. },
  33361. },
  33362. [
  33363. {
  33364. name: "Macro",
  33365. height: math.unit(100, "feet"),
  33366. default: true
  33367. },
  33368. ]
  33369. ))
  33370. characterMakers.push(() => makeCharacter(
  33371. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  33372. {
  33373. dragon: {
  33374. height: math.unit(26, "feet"),
  33375. weight: math.unit(36, "tons"),
  33376. name: "Dragon",
  33377. image: {
  33378. source: "./media/characters/arimphae/dragon.svg",
  33379. extra: 1574/983,
  33380. bottom: 357/1931
  33381. }
  33382. },
  33383. drake: {
  33384. height: math.unit(9, "feet"),
  33385. weight: math.unit(1.5, "tons"),
  33386. name: "Drake",
  33387. image: {
  33388. source: "./media/characters/arimphae/drake.svg",
  33389. extra: 1120/925,
  33390. bottom: 435/1555
  33391. }
  33392. },
  33393. },
  33394. [
  33395. {
  33396. name: "Small",
  33397. height: math.unit(26*5/9, "feet")
  33398. },
  33399. {
  33400. name: "Normal",
  33401. height: math.unit(26, "feet"),
  33402. default: true
  33403. },
  33404. ]
  33405. ))
  33406. characterMakers.push(() => makeCharacter(
  33407. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  33408. {
  33409. front: {
  33410. height: math.unit(8 + 9/12, "feet"),
  33411. name: "Front",
  33412. image: {
  33413. source: "./media/characters/xander/front.svg",
  33414. extra: 1237/974,
  33415. bottom: 94/1331
  33416. }
  33417. },
  33418. },
  33419. [
  33420. {
  33421. name: "Normal",
  33422. height: math.unit(8 + 9/12, "feet"),
  33423. default: true
  33424. },
  33425. {
  33426. name: "Gaze Grabber",
  33427. height: math.unit(13 + 8/12, "feet")
  33428. },
  33429. {
  33430. name: "Jaw Dropper",
  33431. height: math.unit(27, "feet")
  33432. },
  33433. {
  33434. name: "Show Stopper",
  33435. height: math.unit(136, "feet")
  33436. },
  33437. {
  33438. name: "Superstar",
  33439. height: math.unit(1.9e6, "miles")
  33440. },
  33441. ]
  33442. ))
  33443. characterMakers.push(() => makeCharacter(
  33444. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  33445. {
  33446. side: {
  33447. height: math.unit(2100, "feet"),
  33448. name: "Side",
  33449. image: {
  33450. source: "./media/characters/osiris/side.svg",
  33451. extra: 1105/939,
  33452. bottom: 167/1272
  33453. }
  33454. },
  33455. },
  33456. [
  33457. {
  33458. name: "Macro",
  33459. height: math.unit(2100, "feet"),
  33460. default: true
  33461. },
  33462. ]
  33463. ))
  33464. characterMakers.push(() => makeCharacter(
  33465. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  33466. {
  33467. front: {
  33468. height: math.unit(6 + 8/12, "feet"),
  33469. weight: math.unit(225, "lb"),
  33470. name: "Front",
  33471. image: {
  33472. source: "./media/characters/rhys-londe/front.svg",
  33473. extra: 2258/2141,
  33474. bottom: 188/2446
  33475. }
  33476. },
  33477. back: {
  33478. height: math.unit(6 + 8/12, "feet"),
  33479. weight: math.unit(225, "lb"),
  33480. name: "Back",
  33481. image: {
  33482. source: "./media/characters/rhys-londe/back.svg",
  33483. extra: 2237/2137,
  33484. bottom: 63/2300
  33485. }
  33486. },
  33487. frontNsfw: {
  33488. height: math.unit(6 + 8/12, "feet"),
  33489. weight: math.unit(225, "lb"),
  33490. name: "Front (NSFW)",
  33491. image: {
  33492. source: "./media/characters/rhys-londe/front-nsfw.svg",
  33493. extra: 2258/2141,
  33494. bottom: 188/2446
  33495. }
  33496. },
  33497. backNsfw: {
  33498. height: math.unit(6 + 8/12, "feet"),
  33499. weight: math.unit(225, "lb"),
  33500. name: "Back (NSFW)",
  33501. image: {
  33502. source: "./media/characters/rhys-londe/back-nsfw.svg",
  33503. extra: 2237/2137,
  33504. bottom: 63/2300
  33505. }
  33506. },
  33507. dick: {
  33508. height: math.unit(30, "inches"),
  33509. name: "Dick",
  33510. image: {
  33511. source: "./media/characters/rhys-londe/dick.svg"
  33512. }
  33513. },
  33514. maw: {
  33515. height: math.unit(1.6, "feet"),
  33516. name: "Maw",
  33517. image: {
  33518. source: "./media/characters/rhys-londe/maw.svg"
  33519. }
  33520. },
  33521. },
  33522. [
  33523. {
  33524. name: "Normal",
  33525. height: math.unit(6 + 8/12, "feet"),
  33526. default: true
  33527. },
  33528. ]
  33529. ))
  33530. characterMakers.push(() => makeCharacter(
  33531. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  33532. {
  33533. front: {
  33534. height: math.unit(3 + 10/12, "feet"),
  33535. weight: math.unit(90, "lb"),
  33536. name: "Front",
  33537. image: {
  33538. source: "./media/characters/taivas-ensim/front.svg",
  33539. extra: 1327/1216,
  33540. bottom: 96/1423
  33541. }
  33542. },
  33543. back: {
  33544. height: math.unit(3 + 10/12, "feet"),
  33545. weight: math.unit(90, "lb"),
  33546. name: "Back",
  33547. image: {
  33548. source: "./media/characters/taivas-ensim/back.svg",
  33549. extra: 1355/1247,
  33550. bottom: 11/1366
  33551. }
  33552. },
  33553. frontNsfw: {
  33554. height: math.unit(3 + 10/12, "feet"),
  33555. weight: math.unit(90, "lb"),
  33556. name: "Front (NSFW)",
  33557. image: {
  33558. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  33559. extra: 1327/1216,
  33560. bottom: 96/1423
  33561. }
  33562. },
  33563. backNsfw: {
  33564. height: math.unit(3 + 10/12, "feet"),
  33565. weight: math.unit(90, "lb"),
  33566. name: "Back (NSFW)",
  33567. image: {
  33568. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  33569. extra: 1355/1247,
  33570. bottom: 11/1366
  33571. }
  33572. },
  33573. },
  33574. [
  33575. {
  33576. name: "Normal",
  33577. height: math.unit(3 + 10/12, "feet"),
  33578. default: true
  33579. },
  33580. ]
  33581. ))
  33582. characterMakers.push(() => makeCharacter(
  33583. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  33584. {
  33585. front: {
  33586. height: math.unit(9 + 6/12, "feet"),
  33587. weight: math.unit(940, "lb"),
  33588. name: "Front",
  33589. image: {
  33590. source: "./media/characters/byliss/front.svg",
  33591. extra: 1327/1290,
  33592. bottom: 82/1409
  33593. }
  33594. },
  33595. back: {
  33596. height: math.unit(9 + 6/12, "feet"),
  33597. weight: math.unit(940, "lb"),
  33598. name: "Back",
  33599. image: {
  33600. source: "./media/characters/byliss/back.svg",
  33601. extra: 1376/1349,
  33602. bottom: 9/1385
  33603. }
  33604. },
  33605. frontNsfw: {
  33606. height: math.unit(9 + 6/12, "feet"),
  33607. weight: math.unit(940, "lb"),
  33608. name: "Front (NSFW)",
  33609. image: {
  33610. source: "./media/characters/byliss/front-nsfw.svg",
  33611. extra: 1327/1290,
  33612. bottom: 82/1409
  33613. }
  33614. },
  33615. backNsfw: {
  33616. height: math.unit(9 + 6/12, "feet"),
  33617. weight: math.unit(940, "lb"),
  33618. name: "Back (NSFW)",
  33619. image: {
  33620. source: "./media/characters/byliss/back-nsfw.svg",
  33621. extra: 1376/1349,
  33622. bottom: 9/1385
  33623. }
  33624. },
  33625. },
  33626. [
  33627. {
  33628. name: "Normal",
  33629. height: math.unit(9 + 6/12, "feet"),
  33630. default: true
  33631. },
  33632. ]
  33633. ))
  33634. characterMakers.push(() => makeCharacter(
  33635. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  33636. {
  33637. front: {
  33638. height: math.unit(5 + 2/12, "feet"),
  33639. weight: math.unit(200, "lb"),
  33640. name: "Front",
  33641. image: {
  33642. source: "./media/characters/noraly/front.svg",
  33643. extra: 4985/4773,
  33644. bottom: 150/5135
  33645. }
  33646. },
  33647. full: {
  33648. height: math.unit(5 + 2/12, "feet"),
  33649. weight: math.unit(164, "lb"),
  33650. name: "Full",
  33651. image: {
  33652. source: "./media/characters/noraly/full.svg",
  33653. extra: 1114/1059,
  33654. bottom: 35/1149
  33655. }
  33656. },
  33657. fuller: {
  33658. height: math.unit(5 + 2/12, "feet"),
  33659. weight: math.unit(230, "lb"),
  33660. name: "Fuller",
  33661. image: {
  33662. source: "./media/characters/noraly/fuller.svg",
  33663. extra: 1114/1059,
  33664. bottom: 35/1149
  33665. }
  33666. },
  33667. fullest: {
  33668. height: math.unit(5 + 2/12, "feet"),
  33669. weight: math.unit(300, "lb"),
  33670. name: "Fullest",
  33671. image: {
  33672. source: "./media/characters/noraly/fullest.svg",
  33673. extra: 1114/1059,
  33674. bottom: 35/1149
  33675. }
  33676. },
  33677. },
  33678. [
  33679. {
  33680. name: "Normal",
  33681. height: math.unit(5 + 2/12, "feet"),
  33682. default: true
  33683. },
  33684. ]
  33685. ))
  33686. characterMakers.push(() => makeCharacter(
  33687. { name: "Pera", species: ["snake"], tags: ["naga"] },
  33688. {
  33689. front: {
  33690. height: math.unit(5 + 2/12, "feet"),
  33691. weight: math.unit(210, "lb"),
  33692. name: "Front",
  33693. image: {
  33694. source: "./media/characters/pera/front.svg",
  33695. extra: 1560/1531,
  33696. bottom: 165/1725
  33697. }
  33698. },
  33699. back: {
  33700. height: math.unit(5 + 2/12, "feet"),
  33701. weight: math.unit(210, "lb"),
  33702. name: "Back",
  33703. image: {
  33704. source: "./media/characters/pera/back.svg",
  33705. extra: 1523/1493,
  33706. bottom: 152/1675
  33707. }
  33708. },
  33709. dick: {
  33710. height: math.unit(2.4, "feet"),
  33711. name: "Dick",
  33712. image: {
  33713. source: "./media/characters/pera/dick.svg"
  33714. }
  33715. },
  33716. },
  33717. [
  33718. {
  33719. name: "Normal",
  33720. height: math.unit(5 + 2/12, "feet"),
  33721. default: true
  33722. },
  33723. ]
  33724. ))
  33725. characterMakers.push(() => makeCharacter(
  33726. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  33727. {
  33728. front: {
  33729. height: math.unit(12, "feet"),
  33730. weight: math.unit(3200, "lb"),
  33731. name: "Front",
  33732. image: {
  33733. source: "./media/characters/julian/front.svg",
  33734. extra: 2962/2701,
  33735. bottom: 184/3146
  33736. }
  33737. },
  33738. maw: {
  33739. height: math.unit(5.35, "feet"),
  33740. name: "Maw",
  33741. image: {
  33742. source: "./media/characters/julian/maw.svg"
  33743. }
  33744. },
  33745. paw: {
  33746. height: math.unit(3.07, "feet"),
  33747. name: "Paw",
  33748. image: {
  33749. source: "./media/characters/julian/paw.svg"
  33750. }
  33751. },
  33752. },
  33753. [
  33754. {
  33755. name: "Default",
  33756. height: math.unit(12, "feet"),
  33757. default: true
  33758. },
  33759. {
  33760. name: "Big",
  33761. height: math.unit(50, "feet")
  33762. },
  33763. {
  33764. name: "Really Big",
  33765. height: math.unit(1, "mile")
  33766. },
  33767. {
  33768. name: "Extremely Big",
  33769. height: math.unit(100, "miles")
  33770. },
  33771. {
  33772. name: "Planet Hugger",
  33773. height: math.unit(200, "megameters")
  33774. },
  33775. {
  33776. name: "Unreasonably Big",
  33777. height: math.unit(1e300, "meters")
  33778. },
  33779. ]
  33780. ))
  33781. characterMakers.push(() => makeCharacter(
  33782. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  33783. {
  33784. solgooleo: {
  33785. height: math.unit(4, "meters"),
  33786. weight: math.unit(6000*1.5, "kg"),
  33787. volume: math.unit(6000, "liters"),
  33788. name: "Solgooleo",
  33789. image: {
  33790. source: "./media/characters/pi/solgooleo.svg",
  33791. extra: 388/331,
  33792. bottom: 29/417
  33793. }
  33794. },
  33795. },
  33796. [
  33797. {
  33798. name: "Normal",
  33799. height: math.unit(4, "meters"),
  33800. default: true
  33801. },
  33802. ]
  33803. ))
  33804. characterMakers.push(() => makeCharacter(
  33805. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  33806. {
  33807. front: {
  33808. height: math.unit(8, "feet"),
  33809. weight: math.unit(4, "tons"),
  33810. name: "Front",
  33811. image: {
  33812. source: "./media/characters/shaun/front.svg",
  33813. extra: 503/495,
  33814. bottom: 20/523
  33815. }
  33816. },
  33817. back: {
  33818. height: math.unit(8, "feet"),
  33819. weight: math.unit(4, "tons"),
  33820. name: "Back",
  33821. image: {
  33822. source: "./media/characters/shaun/back.svg",
  33823. extra: 487/480,
  33824. bottom: 20/507
  33825. }
  33826. },
  33827. },
  33828. [
  33829. {
  33830. name: "Lorg",
  33831. height: math.unit(8, "feet"),
  33832. default: true
  33833. },
  33834. ]
  33835. ))
  33836. characterMakers.push(() => makeCharacter(
  33837. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  33838. {
  33839. frontAnthro: {
  33840. height: math.unit(7, "feet"),
  33841. name: "Front",
  33842. image: {
  33843. source: "./media/characters/sini/front-anthro.svg",
  33844. extra: 726/678,
  33845. bottom: 35/761
  33846. },
  33847. form: "anthro",
  33848. default: true
  33849. },
  33850. backAnthro: {
  33851. height: math.unit(7, "feet"),
  33852. name: "Back",
  33853. image: {
  33854. source: "./media/characters/sini/back-anthro.svg",
  33855. extra: 743/701,
  33856. bottom: 12/755
  33857. },
  33858. form: "anthro",
  33859. },
  33860. frontAnthroNsfw: {
  33861. height: math.unit(7, "feet"),
  33862. name: "Front (NSFW)",
  33863. image: {
  33864. source: "./media/characters/sini/front-anthro-nsfw.svg",
  33865. extra: 726/678,
  33866. bottom: 35/761
  33867. },
  33868. form: "anthro"
  33869. },
  33870. backAnthroNsfw: {
  33871. height: math.unit(7, "feet"),
  33872. name: "Back (NSFW)",
  33873. image: {
  33874. source: "./media/characters/sini/back-anthro-nsfw.svg",
  33875. extra: 743/701,
  33876. bottom: 12/755
  33877. },
  33878. form: "anthro",
  33879. },
  33880. mawAnthro: {
  33881. height: math.unit(2.14, "feet"),
  33882. name: "Maw",
  33883. image: {
  33884. source: "./media/characters/sini/maw-anthro.svg"
  33885. },
  33886. form: "anthro"
  33887. },
  33888. dick: {
  33889. height: math.unit(1.45, "feet"),
  33890. name: "Dick",
  33891. image: {
  33892. source: "./media/characters/sini/dick-anthro.svg"
  33893. },
  33894. form: "anthro"
  33895. },
  33896. feral: {
  33897. height: math.unit(16, "feet"),
  33898. name: "Feral",
  33899. image: {
  33900. source: "./media/characters/sini/feral.svg",
  33901. extra: 814/605,
  33902. bottom: 11/825
  33903. },
  33904. form: "feral",
  33905. default: true
  33906. },
  33907. feralNsfw: {
  33908. height: math.unit(16, "feet"),
  33909. name: "Feral (NSFW)",
  33910. image: {
  33911. source: "./media/characters/sini/feral-nsfw.svg",
  33912. extra: 814/605,
  33913. bottom: 11/825
  33914. },
  33915. form: "feral"
  33916. },
  33917. mawFeral: {
  33918. height: math.unit(5.66, "feet"),
  33919. name: "Maw",
  33920. image: {
  33921. source: "./media/characters/sini/maw-feral.svg"
  33922. },
  33923. form: "feral",
  33924. },
  33925. pawFeral: {
  33926. height: math.unit(5.17, "feet"),
  33927. name: "Paw",
  33928. image: {
  33929. source: "./media/characters/sini/paw-feral.svg"
  33930. },
  33931. form: "feral",
  33932. },
  33933. rumpFeral: {
  33934. height: math.unit(13.11, "feet"),
  33935. name: "Rump",
  33936. image: {
  33937. source: "./media/characters/sini/rump-feral.svg"
  33938. },
  33939. form: "feral",
  33940. },
  33941. dickFeral: {
  33942. height: math.unit(1, "feet"),
  33943. name: "Dick",
  33944. image: {
  33945. source: "./media/characters/sini/dick-feral.svg"
  33946. },
  33947. form: "feral",
  33948. },
  33949. eyeFeral: {
  33950. height: math.unit(1.23, "feet"),
  33951. name: "Eye",
  33952. image: {
  33953. source: "./media/characters/sini/eye-feral.svg"
  33954. },
  33955. form: "feral",
  33956. },
  33957. },
  33958. [
  33959. {
  33960. name: "Normal",
  33961. height: math.unit(7, "feet"),
  33962. default: true,
  33963. form: "anthro"
  33964. },
  33965. {
  33966. name: "Normal",
  33967. height: math.unit(16, "feet"),
  33968. default: true,
  33969. form: "feral"
  33970. },
  33971. ],
  33972. {
  33973. "anthro": {
  33974. name: "Anthro",
  33975. default: true
  33976. },
  33977. "feral": {
  33978. name: "Feral",
  33979. }
  33980. }
  33981. ))
  33982. characterMakers.push(() => makeCharacter(
  33983. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  33984. {
  33985. side: {
  33986. height: math.unit(47.2, "meters"),
  33987. weight: math.unit(10000, "tons"),
  33988. name: "Side",
  33989. image: {
  33990. source: "./media/characters/raylldo/side.svg",
  33991. extra: 2363/642,
  33992. bottom: 221/2584
  33993. }
  33994. },
  33995. top: {
  33996. height: math.unit(240, "meters"),
  33997. weight: math.unit(10000, "tons"),
  33998. name: "Top",
  33999. image: {
  34000. source: "./media/characters/raylldo/top.svg"
  34001. }
  34002. },
  34003. bottom: {
  34004. height: math.unit(240, "meters"),
  34005. weight: math.unit(10000, "tons"),
  34006. name: "Bottom",
  34007. image: {
  34008. source: "./media/characters/raylldo/bottom.svg"
  34009. }
  34010. },
  34011. head: {
  34012. height: math.unit(38.6, "meters"),
  34013. name: "Head",
  34014. image: {
  34015. source: "./media/characters/raylldo/head.svg",
  34016. extra: 1335/1112,
  34017. bottom: 0/1335
  34018. }
  34019. },
  34020. maw: {
  34021. height: math.unit(16.37, "meters"),
  34022. name: "Maw",
  34023. image: {
  34024. source: "./media/characters/raylldo/maw.svg",
  34025. extra: 883/660,
  34026. bottom: 0/883
  34027. },
  34028. extraAttributes: {
  34029. preyCapacity: {
  34030. name: "Capacity",
  34031. power: 3,
  34032. type: "volume",
  34033. base: math.unit(1000, "people")
  34034. },
  34035. tongueSize: {
  34036. name: "Tongue Size",
  34037. power: 2,
  34038. type: "area",
  34039. base: math.unit(21, "m^2")
  34040. }
  34041. }
  34042. },
  34043. forepaw: {
  34044. height: math.unit(18, "meters"),
  34045. name: "Forepaw",
  34046. image: {
  34047. source: "./media/characters/raylldo/forepaw.svg"
  34048. }
  34049. },
  34050. hindpaw: {
  34051. height: math.unit(23, "meters"),
  34052. name: "Hindpaw",
  34053. image: {
  34054. source: "./media/characters/raylldo/hindpaw.svg"
  34055. }
  34056. },
  34057. genitals: {
  34058. height: math.unit(42, "meters"),
  34059. name: "Genitals",
  34060. image: {
  34061. source: "./media/characters/raylldo/genitals.svg"
  34062. }
  34063. },
  34064. },
  34065. [
  34066. {
  34067. name: "Normal",
  34068. height: math.unit(47.2, "meters"),
  34069. default: true
  34070. },
  34071. ]
  34072. ))
  34073. characterMakers.push(() => makeCharacter(
  34074. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  34075. {
  34076. anthroFront: {
  34077. height: math.unit(9, "feet"),
  34078. weight: math.unit(600, "lb"),
  34079. name: "Anthro (Front)",
  34080. image: {
  34081. source: "./media/characters/glint/anthro-front.svg",
  34082. extra: 1097/1018,
  34083. bottom: 28/1125
  34084. }
  34085. },
  34086. anthroBack: {
  34087. height: math.unit(9, "feet"),
  34088. weight: math.unit(600, "lb"),
  34089. name: "Anthro (Back)",
  34090. image: {
  34091. source: "./media/characters/glint/anthro-back.svg",
  34092. extra: 1154/997,
  34093. bottom: 36/1190
  34094. }
  34095. },
  34096. feral: {
  34097. height: math.unit(11, "feet"),
  34098. weight: math.unit(50000, "lb"),
  34099. name: "Feral",
  34100. image: {
  34101. source: "./media/characters/glint/feral.svg",
  34102. extra: 3035/1585,
  34103. bottom: 1169/4204
  34104. }
  34105. },
  34106. dickAnthro: {
  34107. height: math.unit(0.7, "meters"),
  34108. name: "Dick (Anthro)",
  34109. image: {
  34110. source: "./media/characters/glint/dick-anthro.svg"
  34111. }
  34112. },
  34113. dickFeral: {
  34114. height: math.unit(2.65, "meters"),
  34115. name: "Dick (Feral)",
  34116. image: {
  34117. source: "./media/characters/glint/dick-feral.svg"
  34118. }
  34119. },
  34120. slitHidden: {
  34121. height: math.unit(5.85, "meters"),
  34122. name: "Slit (Hidden)",
  34123. image: {
  34124. source: "./media/characters/glint/slit-hidden.svg"
  34125. }
  34126. },
  34127. slitErect: {
  34128. height: math.unit(5.85, "meters"),
  34129. name: "Slit (Erect)",
  34130. image: {
  34131. source: "./media/characters/glint/slit-erect.svg"
  34132. }
  34133. },
  34134. mawAnthro: {
  34135. height: math.unit(0.63, "meters"),
  34136. name: "Maw (Anthro)",
  34137. image: {
  34138. source: "./media/characters/glint/maw.svg"
  34139. }
  34140. },
  34141. mawFeral: {
  34142. height: math.unit(2.89, "meters"),
  34143. name: "Maw (Feral)",
  34144. image: {
  34145. source: "./media/characters/glint/maw.svg"
  34146. }
  34147. },
  34148. },
  34149. [
  34150. {
  34151. name: "Normal",
  34152. height: math.unit(9, "feet"),
  34153. default: true
  34154. },
  34155. ]
  34156. ))
  34157. characterMakers.push(() => makeCharacter(
  34158. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  34159. {
  34160. side: {
  34161. height: math.unit(15, "feet"),
  34162. weight: math.unit(5000, "kg"),
  34163. name: "Side",
  34164. image: {
  34165. source: "./media/characters/kairne/side.svg",
  34166. extra: 979/811,
  34167. bottom: 13/992
  34168. }
  34169. },
  34170. front: {
  34171. height: math.unit(15, "feet"),
  34172. weight: math.unit(5000, "kg"),
  34173. name: "Front",
  34174. image: {
  34175. source: "./media/characters/kairne/front.svg",
  34176. extra: 908/814,
  34177. bottom: 26/934
  34178. }
  34179. },
  34180. sideNsfw: {
  34181. height: math.unit(15, "feet"),
  34182. weight: math.unit(5000, "kg"),
  34183. name: "Side (NSFW)",
  34184. image: {
  34185. source: "./media/characters/kairne/side-nsfw.svg",
  34186. extra: 979/811,
  34187. bottom: 13/992
  34188. }
  34189. },
  34190. frontNsfw: {
  34191. height: math.unit(15, "feet"),
  34192. weight: math.unit(5000, "kg"),
  34193. name: "Front (NSFW)",
  34194. image: {
  34195. source: "./media/characters/kairne/front-nsfw.svg",
  34196. extra: 908/814,
  34197. bottom: 26/934
  34198. }
  34199. },
  34200. dickCaged: {
  34201. height: math.unit(0.65, "meters"),
  34202. name: "Dick-caged",
  34203. image: {
  34204. source: "./media/characters/kairne/dick-caged.svg"
  34205. }
  34206. },
  34207. dick: {
  34208. height: math.unit(0.79, "meters"),
  34209. name: "Dick",
  34210. image: {
  34211. source: "./media/characters/kairne/dick.svg"
  34212. }
  34213. },
  34214. genitals: {
  34215. height: math.unit(1.29, "meters"),
  34216. name: "Genitals",
  34217. image: {
  34218. source: "./media/characters/kairne/genitals.svg"
  34219. }
  34220. },
  34221. maw: {
  34222. height: math.unit(1.73, "meters"),
  34223. name: "Maw",
  34224. image: {
  34225. source: "./media/characters/kairne/maw.svg"
  34226. }
  34227. },
  34228. },
  34229. [
  34230. {
  34231. name: "Normal",
  34232. height: math.unit(15, "feet"),
  34233. default: true
  34234. },
  34235. ]
  34236. ))
  34237. characterMakers.push(() => makeCharacter(
  34238. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  34239. {
  34240. front: {
  34241. height: math.unit(5 + 8/12, "feet"),
  34242. weight: math.unit(139, "lb"),
  34243. name: "Front",
  34244. image: {
  34245. source: "./media/characters/biscuit-jackal/front.svg",
  34246. extra: 2106/1961,
  34247. bottom: 58/2164
  34248. }
  34249. },
  34250. back: {
  34251. height: math.unit(5 + 8/12, "feet"),
  34252. weight: math.unit(139, "lb"),
  34253. name: "Back",
  34254. image: {
  34255. source: "./media/characters/biscuit-jackal/back.svg",
  34256. extra: 2132/1976,
  34257. bottom: 57/2189
  34258. }
  34259. },
  34260. werejackal: {
  34261. height: math.unit(6 + 3/12, "feet"),
  34262. weight: math.unit(188, "lb"),
  34263. name: "Werejackal",
  34264. image: {
  34265. source: "./media/characters/biscuit-jackal/werejackal.svg",
  34266. extra: 2373/2178,
  34267. bottom: 53/2426
  34268. }
  34269. },
  34270. },
  34271. [
  34272. {
  34273. name: "Normal",
  34274. height: math.unit(5 + 8/12, "feet"),
  34275. default: true
  34276. },
  34277. ]
  34278. ))
  34279. characterMakers.push(() => makeCharacter(
  34280. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  34281. {
  34282. front: {
  34283. height: math.unit(140, "cm"),
  34284. weight: math.unit(45, "kg"),
  34285. name: "Front",
  34286. image: {
  34287. source: "./media/characters/tayra-white/front.svg",
  34288. extra: 2229/2192,
  34289. bottom: 75/2304
  34290. }
  34291. },
  34292. },
  34293. [
  34294. {
  34295. name: "Normal",
  34296. height: math.unit(140, "cm"),
  34297. default: true
  34298. },
  34299. ]
  34300. ))
  34301. characterMakers.push(() => makeCharacter(
  34302. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  34303. {
  34304. front: {
  34305. height: math.unit(4 + 5/12, "feet"),
  34306. name: "Front",
  34307. image: {
  34308. source: "./media/characters/scoop/front.svg",
  34309. extra: 1257/1136,
  34310. bottom: 69/1326
  34311. }
  34312. },
  34313. back: {
  34314. height: math.unit(4 + 5/12, "feet"),
  34315. name: "Back",
  34316. image: {
  34317. source: "./media/characters/scoop/back.svg",
  34318. extra: 1321/1152,
  34319. bottom: 32/1353
  34320. }
  34321. },
  34322. maw: {
  34323. height: math.unit(0.68, "feet"),
  34324. name: "Maw",
  34325. image: {
  34326. source: "./media/characters/scoop/maw.svg"
  34327. }
  34328. },
  34329. },
  34330. [
  34331. {
  34332. name: "Really Small",
  34333. height: math.unit(1, "mm")
  34334. },
  34335. {
  34336. name: "Micro",
  34337. height: math.unit(1, "inch")
  34338. },
  34339. {
  34340. name: "Normal",
  34341. height: math.unit(4 + 5/12, "feet"),
  34342. default: true
  34343. },
  34344. {
  34345. name: "Macro",
  34346. height: math.unit(200, "feet")
  34347. },
  34348. {
  34349. name: "Megamacro",
  34350. height: math.unit(3240, "feet")
  34351. },
  34352. {
  34353. name: "Teramacro",
  34354. height: math.unit(2500, "miles")
  34355. },
  34356. ]
  34357. ))
  34358. characterMakers.push(() => makeCharacter(
  34359. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  34360. {
  34361. front: {
  34362. height: math.unit(15 + 7/12, "feet"),
  34363. weight: math.unit(1150, "tons"),
  34364. name: "Front",
  34365. image: {
  34366. source: "./media/characters/saphinara/front.svg",
  34367. extra: 1837/1643,
  34368. bottom: 84/1921
  34369. },
  34370. form: "normal",
  34371. default: true
  34372. },
  34373. side: {
  34374. height: math.unit(15 + 7/12, "feet"),
  34375. weight: math.unit(1150, "tons"),
  34376. name: "Side",
  34377. image: {
  34378. source: "./media/characters/saphinara/side.svg",
  34379. extra: 605/547,
  34380. bottom: 6/611
  34381. },
  34382. form: "normal"
  34383. },
  34384. back: {
  34385. height: math.unit(15 + 7/12, "feet"),
  34386. weight: math.unit(1150, "tons"),
  34387. name: "Back",
  34388. image: {
  34389. source: "./media/characters/saphinara/back.svg",
  34390. extra: 591/531,
  34391. bottom: 13/604
  34392. },
  34393. form: "normal"
  34394. },
  34395. frontTail: {
  34396. height: math.unit(15 + 7/12, "feet"),
  34397. weight: math.unit(1150, "tons"),
  34398. name: "Front (Full Tail)",
  34399. image: {
  34400. source: "./media/characters/saphinara/front-tail.svg",
  34401. extra: 2256/1630,
  34402. bottom: 261/2517
  34403. },
  34404. form: "normal"
  34405. },
  34406. insides: {
  34407. height: math.unit(11.92, "feet"),
  34408. name: "Insides",
  34409. image: {
  34410. source: "./media/characters/saphinara/insides.svg"
  34411. },
  34412. form: "normal"
  34413. },
  34414. head: {
  34415. height: math.unit(4.17, "feet"),
  34416. name: "Head",
  34417. image: {
  34418. source: "./media/characters/saphinara/head.svg"
  34419. },
  34420. form: "normal"
  34421. },
  34422. tongue: {
  34423. height: math.unit(4.60, "feet"),
  34424. name: "Tongue",
  34425. image: {
  34426. source: "./media/characters/saphinara/tongue.svg"
  34427. },
  34428. form: "normal"
  34429. },
  34430. headEnraged: {
  34431. height: math.unit(5.55, "feet"),
  34432. name: "Head (Enraged)",
  34433. image: {
  34434. source: "./media/characters/saphinara/head-enraged.svg"
  34435. },
  34436. form: "normal"
  34437. },
  34438. wings: {
  34439. height: math.unit(11.95, "feet"),
  34440. name: "Wings",
  34441. image: {
  34442. source: "./media/characters/saphinara/wings.svg"
  34443. },
  34444. form: "normal"
  34445. },
  34446. feathers: {
  34447. height: math.unit(8.92, "feet"),
  34448. name: "Feathers",
  34449. image: {
  34450. source: "./media/characters/saphinara/feathers.svg"
  34451. },
  34452. form: "normal"
  34453. },
  34454. shackles: {
  34455. height: math.unit(2, "feet"),
  34456. name: "Shackles",
  34457. image: {
  34458. source: "./media/characters/saphinara/shackles.svg"
  34459. },
  34460. form: "normal"
  34461. },
  34462. eyes: {
  34463. height: math.unit(1.331, "feet"),
  34464. name: "Eyes",
  34465. image: {
  34466. source: "./media/characters/saphinara/eyes.svg"
  34467. },
  34468. form: "normal"
  34469. },
  34470. eyesEnraged: {
  34471. height: math.unit(1.331, "feet"),
  34472. name: "Eyes (Enraged)",
  34473. image: {
  34474. source: "./media/characters/saphinara/eyes-enraged.svg"
  34475. },
  34476. form: "normal"
  34477. },
  34478. trueFormSide: {
  34479. height: math.unit(200, "feet"),
  34480. weight: math.unit(1e7, "tons"),
  34481. name: "Side",
  34482. image: {
  34483. source: "./media/characters/saphinara/true-form-side.svg",
  34484. extra: 1399/770,
  34485. bottom: 97/1496
  34486. },
  34487. form: "true-form",
  34488. default: true
  34489. },
  34490. trueFormMaw: {
  34491. height: math.unit(71.5, "feet"),
  34492. name: "Maw",
  34493. image: {
  34494. source: "./media/characters/saphinara/true-form-maw.svg",
  34495. extra: 2302/1453,
  34496. bottom: 0/2302
  34497. },
  34498. form: "true-form"
  34499. },
  34500. meowberusSide: {
  34501. height: math.unit(75, "feet"),
  34502. weight: math.unit(180000, "kg"),
  34503. preyCapacity: math.unit(50000, "people"),
  34504. name: "Side",
  34505. image: {
  34506. source: "./media/characters/saphinara/meowberus-side.svg",
  34507. extra: 1400/711,
  34508. bottom: 126/1526
  34509. },
  34510. form: "meowberus",
  34511. extraAttributes: {
  34512. "pawArea": {
  34513. name: "Paw Size",
  34514. power: 2,
  34515. type: "area",
  34516. base: math.unit(35, "m^2")
  34517. }
  34518. }
  34519. },
  34520. },
  34521. [
  34522. {
  34523. name: "Normal",
  34524. height: math.unit(15 + 7/12, "feet"),
  34525. default: true,
  34526. form: "normal"
  34527. },
  34528. {
  34529. name: "Angry",
  34530. height: math.unit(30 + 6/12, "feet"),
  34531. form: "normal"
  34532. },
  34533. {
  34534. name: "Enraged",
  34535. height: math.unit(102 + 1/12, "feet"),
  34536. form: "normal"
  34537. },
  34538. {
  34539. name: "True",
  34540. height: math.unit(200, "feet"),
  34541. default: true,
  34542. form: "true-form"
  34543. },
  34544. {
  34545. name: "Normal",
  34546. height: math.unit(75, "feet"),
  34547. default: true,
  34548. form: "meowberus"
  34549. },
  34550. ],
  34551. {
  34552. "normal": {
  34553. name: "Normal",
  34554. default: true
  34555. },
  34556. "true-form": {
  34557. name: "True Form"
  34558. },
  34559. "meowberus": {
  34560. name: "Meowberus",
  34561. },
  34562. }
  34563. ))
  34564. characterMakers.push(() => makeCharacter(
  34565. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  34566. {
  34567. front: {
  34568. height: math.unit(6 + 8/12, "feet"),
  34569. weight: math.unit(300, "lb"),
  34570. name: "Front",
  34571. image: {
  34572. source: "./media/characters/jrain/front.svg",
  34573. extra: 3039/2865,
  34574. bottom: 399/3438
  34575. }
  34576. },
  34577. back: {
  34578. height: math.unit(6 + 8/12, "feet"),
  34579. weight: math.unit(300, "lb"),
  34580. name: "Back",
  34581. image: {
  34582. source: "./media/characters/jrain/back.svg",
  34583. extra: 3089/2938,
  34584. bottom: 172/3261
  34585. }
  34586. },
  34587. head: {
  34588. height: math.unit(2.14, "feet"),
  34589. name: "Head",
  34590. image: {
  34591. source: "./media/characters/jrain/head.svg"
  34592. }
  34593. },
  34594. maw: {
  34595. height: math.unit(1.77, "feet"),
  34596. name: "Maw",
  34597. image: {
  34598. source: "./media/characters/jrain/maw.svg"
  34599. }
  34600. },
  34601. leftHand: {
  34602. height: math.unit(1.1, "feet"),
  34603. name: "Left Hand",
  34604. image: {
  34605. source: "./media/characters/jrain/left-hand.svg"
  34606. }
  34607. },
  34608. rightHand: {
  34609. height: math.unit(1.1, "feet"),
  34610. name: "Right Hand",
  34611. image: {
  34612. source: "./media/characters/jrain/right-hand.svg"
  34613. }
  34614. },
  34615. eye: {
  34616. height: math.unit(0.35, "feet"),
  34617. name: "Eye",
  34618. image: {
  34619. source: "./media/characters/jrain/eye.svg"
  34620. }
  34621. },
  34622. },
  34623. [
  34624. {
  34625. name: "Normal",
  34626. height: math.unit(6 + 8/12, "feet"),
  34627. default: true
  34628. },
  34629. {
  34630. name: "Casually Large",
  34631. height: math.unit(25, "feet")
  34632. },
  34633. {
  34634. name: "Giant",
  34635. height: math.unit(100, "feet")
  34636. },
  34637. {
  34638. name: "Kaiju",
  34639. height: math.unit(300, "feet")
  34640. },
  34641. ]
  34642. ))
  34643. characterMakers.push(() => makeCharacter(
  34644. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  34645. {
  34646. dragon: {
  34647. height: math.unit(5, "meters"),
  34648. name: "Dragon",
  34649. image: {
  34650. source: "./media/characters/sabrina/dragon.svg",
  34651. extra: 3670 / 2365,
  34652. bottom: 333 / 4003
  34653. }
  34654. },
  34655. gryphon: {
  34656. height: math.unit(3, "meters"),
  34657. name: "Gryphon",
  34658. image: {
  34659. source: "./media/characters/sabrina/gryphon.svg",
  34660. extra: 1576 / 945,
  34661. bottom: 71 / 1647
  34662. }
  34663. },
  34664. snake: {
  34665. height: math.unit(12, "meters"),
  34666. name: "Snake",
  34667. image: {
  34668. source: "./media/characters/sabrina/snake.svg",
  34669. extra: 1758 / 1320,
  34670. bottom: 186 / 1944
  34671. }
  34672. },
  34673. collar: {
  34674. height: math.unit(1.86, "meters"),
  34675. name: "Collar",
  34676. image: {
  34677. source: "./media/characters/sabrina/collar.svg"
  34678. }
  34679. },
  34680. eye: {
  34681. height: math.unit(0.53, "meters"),
  34682. name: "Eye",
  34683. image: {
  34684. source: "./media/characters/sabrina/eye.svg"
  34685. }
  34686. },
  34687. foot: {
  34688. height: math.unit(1.86, "meters"),
  34689. name: "Foot",
  34690. image: {
  34691. source: "./media/characters/sabrina/foot.svg"
  34692. }
  34693. },
  34694. hand: {
  34695. height: math.unit(1.32, "meters"),
  34696. name: "Hand",
  34697. image: {
  34698. source: "./media/characters/sabrina/hand.svg"
  34699. }
  34700. },
  34701. head: {
  34702. height: math.unit(2.44, "meters"),
  34703. name: "Head",
  34704. image: {
  34705. source: "./media/characters/sabrina/head.svg"
  34706. }
  34707. },
  34708. headAngry: {
  34709. height: math.unit(2.44, "meters"),
  34710. name: "Head (Angry))",
  34711. image: {
  34712. source: "./media/characters/sabrina/head-angry.svg"
  34713. }
  34714. },
  34715. maw: {
  34716. height: math.unit(1.65, "meters"),
  34717. name: "Maw",
  34718. image: {
  34719. source: "./media/characters/sabrina/maw.svg"
  34720. }
  34721. },
  34722. spikes: {
  34723. height: math.unit(1.69, "meters"),
  34724. name: "Spikes",
  34725. image: {
  34726. source: "./media/characters/sabrina/spikes.svg"
  34727. }
  34728. },
  34729. stomach: {
  34730. height: math.unit(1.15, "meters"),
  34731. name: "Stomach",
  34732. image: {
  34733. source: "./media/characters/sabrina/stomach.svg"
  34734. }
  34735. },
  34736. tongue: {
  34737. height: math.unit(1.27, "meters"),
  34738. name: "Tongue",
  34739. image: {
  34740. source: "./media/characters/sabrina/tongue.svg"
  34741. }
  34742. },
  34743. wingDorsal: {
  34744. height: math.unit(4.85, "meters"),
  34745. name: "Wing (Dorsal)",
  34746. image: {
  34747. source: "./media/characters/sabrina/wing-dorsal.svg"
  34748. }
  34749. },
  34750. wingVentral: {
  34751. height: math.unit(4.85, "meters"),
  34752. name: "Wing (Ventral)",
  34753. image: {
  34754. source: "./media/characters/sabrina/wing-ventral.svg"
  34755. }
  34756. },
  34757. },
  34758. [
  34759. {
  34760. name: "Normal",
  34761. height: math.unit(5, "meters"),
  34762. default: true
  34763. },
  34764. ]
  34765. ))
  34766. characterMakers.push(() => makeCharacter(
  34767. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  34768. {
  34769. frontMaid: {
  34770. height: math.unit(5 + 5/12, "feet"),
  34771. weight: math.unit(130, "lb"),
  34772. name: "Front (Maid)",
  34773. image: {
  34774. source: "./media/characters/midnight-tales/front-maid.svg",
  34775. extra: 489/454,
  34776. bottom: 61/550
  34777. }
  34778. },
  34779. frontFormal: {
  34780. height: math.unit(5 + 5/12, "feet"),
  34781. weight: math.unit(130, "lb"),
  34782. name: "Front (Formal)",
  34783. image: {
  34784. source: "./media/characters/midnight-tales/front-formal.svg",
  34785. extra: 489/454,
  34786. bottom: 61/550
  34787. }
  34788. },
  34789. back: {
  34790. height: math.unit(5 + 5/12, "feet"),
  34791. weight: math.unit(130, "lb"),
  34792. name: "Back",
  34793. image: {
  34794. source: "./media/characters/midnight-tales/back.svg",
  34795. extra: 498/456,
  34796. bottom: 33/531
  34797. }
  34798. },
  34799. frontBeast: {
  34800. height: math.unit(40, "feet"),
  34801. weight: math.unit(64000, "lb"),
  34802. name: "Front (Beast)",
  34803. image: {
  34804. source: "./media/characters/midnight-tales/front-beast.svg",
  34805. extra: 927/860,
  34806. bottom: 53/980
  34807. }
  34808. },
  34809. backBeast: {
  34810. height: math.unit(40, "feet"),
  34811. weight: math.unit(64000, "lb"),
  34812. name: "Back (Beast)",
  34813. image: {
  34814. source: "./media/characters/midnight-tales/back-beast.svg",
  34815. extra: 929/855,
  34816. bottom: 16/945
  34817. }
  34818. },
  34819. footBeast: {
  34820. height: math.unit(6.7, "feet"),
  34821. name: "Foot (Beast)",
  34822. image: {
  34823. source: "./media/characters/midnight-tales/foot-beast.svg"
  34824. }
  34825. },
  34826. headBeast: {
  34827. height: math.unit(8, "feet"),
  34828. name: "Head (Beast)",
  34829. image: {
  34830. source: "./media/characters/midnight-tales/head-beast.svg"
  34831. }
  34832. },
  34833. },
  34834. [
  34835. {
  34836. name: "Normal",
  34837. height: math.unit(5 + 5 / 12, "feet"),
  34838. default: true
  34839. },
  34840. {
  34841. name: "Macro",
  34842. height: math.unit(25, "feet")
  34843. },
  34844. ]
  34845. ))
  34846. characterMakers.push(() => makeCharacter(
  34847. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  34848. {
  34849. front: {
  34850. height: math.unit(5 + 10/12, "feet"),
  34851. name: "Front",
  34852. image: {
  34853. source: "./media/characters/argon/front.svg",
  34854. extra: 2009/1935,
  34855. bottom: 118/2127
  34856. }
  34857. },
  34858. back: {
  34859. height: math.unit(5 + 10/12, "feet"),
  34860. name: "Back",
  34861. image: {
  34862. source: "./media/characters/argon/back.svg",
  34863. extra: 2047/1992,
  34864. bottom: 20/2067
  34865. }
  34866. },
  34867. frontDressed: {
  34868. height: math.unit(5 + 10/12, "feet"),
  34869. name: "Front (Dressed)",
  34870. image: {
  34871. source: "./media/characters/argon/front-dressed.svg",
  34872. extra: 2009/1935,
  34873. bottom: 118/2127
  34874. }
  34875. },
  34876. },
  34877. [
  34878. {
  34879. name: "Normal",
  34880. height: math.unit(5 + 10/12, "feet"),
  34881. default: true
  34882. },
  34883. ]
  34884. ))
  34885. characterMakers.push(() => makeCharacter(
  34886. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  34887. {
  34888. front: {
  34889. height: math.unit(8 + 6/12, "feet"),
  34890. weight: math.unit(1150, "lb"),
  34891. name: "Front",
  34892. image: {
  34893. source: "./media/characters/kichi/front.svg",
  34894. extra: 1267/1164,
  34895. bottom: 61/1328
  34896. }
  34897. },
  34898. back: {
  34899. height: math.unit(8 + 6/12, "feet"),
  34900. weight: math.unit(1150, "lb"),
  34901. name: "Back",
  34902. image: {
  34903. source: "./media/characters/kichi/back.svg",
  34904. extra: 1273/1166,
  34905. bottom: 33/1306
  34906. }
  34907. },
  34908. },
  34909. [
  34910. {
  34911. name: "Normal",
  34912. height: math.unit(8 + 6/12, "feet"),
  34913. default: true
  34914. },
  34915. ]
  34916. ))
  34917. characterMakers.push(() => makeCharacter(
  34918. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  34919. {
  34920. front: {
  34921. height: math.unit(6, "feet"),
  34922. weight: math.unit(210, "lb"),
  34923. name: "Front",
  34924. image: {
  34925. source: "./media/characters/manetel-greyscale/front.svg",
  34926. extra: 350/312,
  34927. bottom: 8/358
  34928. }
  34929. },
  34930. },
  34931. [
  34932. {
  34933. name: "Micro",
  34934. height: math.unit(2, "inches")
  34935. },
  34936. {
  34937. name: "Normal",
  34938. height: math.unit(6, "feet"),
  34939. default: true
  34940. },
  34941. {
  34942. name: "Minimacro",
  34943. height: math.unit(17, "feet")
  34944. },
  34945. {
  34946. name: "Macro",
  34947. height: math.unit(117, "feet")
  34948. },
  34949. ]
  34950. ))
  34951. characterMakers.push(() => makeCharacter(
  34952. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  34953. {
  34954. side: {
  34955. height: math.unit(5 + 1/12, "feet"),
  34956. weight: math.unit(418, "lb"),
  34957. name: "Side",
  34958. image: {
  34959. source: "./media/characters/softpurr/side.svg",
  34960. extra: 1993/1945,
  34961. bottom: 134/2127
  34962. }
  34963. },
  34964. front: {
  34965. height: math.unit(5 + 1/12, "feet"),
  34966. weight: math.unit(418, "lb"),
  34967. name: "Front",
  34968. image: {
  34969. source: "./media/characters/softpurr/front.svg",
  34970. extra: 1950/1856,
  34971. bottom: 174/2124
  34972. }
  34973. },
  34974. paw: {
  34975. height: math.unit(1, "feet"),
  34976. name: "Paw",
  34977. image: {
  34978. source: "./media/characters/softpurr/paw.svg"
  34979. }
  34980. },
  34981. },
  34982. [
  34983. {
  34984. name: "Normal",
  34985. height: math.unit(5 + 1/12, "feet"),
  34986. default: true
  34987. },
  34988. ]
  34989. ))
  34990. characterMakers.push(() => makeCharacter(
  34991. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  34992. {
  34993. front: {
  34994. height: math.unit(260, "meters"),
  34995. name: "Front",
  34996. image: {
  34997. source: "./media/characters/anahita/front.svg",
  34998. extra: 665/635,
  34999. bottom: 89/754
  35000. }
  35001. },
  35002. },
  35003. [
  35004. {
  35005. name: "Macro",
  35006. height: math.unit(260, "meters"),
  35007. default: true
  35008. },
  35009. ]
  35010. ))
  35011. characterMakers.push(() => makeCharacter(
  35012. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  35013. {
  35014. front: {
  35015. height: math.unit(4 + 10/12, "feet"),
  35016. weight: math.unit(160, "lb"),
  35017. name: "Front",
  35018. image: {
  35019. source: "./media/characters/chip-mouse/front.svg",
  35020. extra: 3528/3408,
  35021. bottom: 0/3528
  35022. }
  35023. },
  35024. frontNsfw: {
  35025. height: math.unit(4 + 10/12, "feet"),
  35026. weight: math.unit(160, "lb"),
  35027. name: "Front (NSFW)",
  35028. image: {
  35029. source: "./media/characters/chip-mouse/front-nsfw.svg",
  35030. extra: 3528/3408,
  35031. bottom: 0/3528
  35032. }
  35033. },
  35034. },
  35035. [
  35036. {
  35037. name: "Normal",
  35038. height: math.unit(4 + 10/12, "feet"),
  35039. default: true
  35040. },
  35041. ]
  35042. ))
  35043. characterMakers.push(() => makeCharacter(
  35044. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  35045. {
  35046. side: {
  35047. height: math.unit(10, "feet"),
  35048. weight: math.unit(14000, "lb"),
  35049. name: "Side",
  35050. image: {
  35051. source: "./media/characters/kremm/side.svg",
  35052. extra: 1390/1053,
  35053. bottom: 90/1480
  35054. }
  35055. },
  35056. gut: {
  35057. height: math.unit(5.8, "feet"),
  35058. name: "Gut",
  35059. image: {
  35060. source: "./media/characters/kremm/gut.svg"
  35061. }
  35062. },
  35063. ass: {
  35064. height: math.unit(6.1, "feet"),
  35065. name: "Ass",
  35066. image: {
  35067. source: "./media/characters/kremm/ass.svg"
  35068. }
  35069. },
  35070. jaws: {
  35071. height: math.unit(2.2, "feet"),
  35072. name: "Jaws",
  35073. image: {
  35074. source: "./media/characters/kremm/jaws.svg"
  35075. }
  35076. },
  35077. dick: {
  35078. height: math.unit(4.26, "feet"),
  35079. name: "Dick",
  35080. image: {
  35081. source: "./media/characters/kremm/dick.svg"
  35082. }
  35083. },
  35084. },
  35085. [
  35086. {
  35087. name: "Normal",
  35088. height: math.unit(10, "feet"),
  35089. default: true
  35090. },
  35091. ]
  35092. ))
  35093. characterMakers.push(() => makeCharacter(
  35094. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  35095. {
  35096. front: {
  35097. height: math.unit(30, "stories"),
  35098. name: "Front",
  35099. image: {
  35100. source: "./media/characters/kai/front.svg",
  35101. extra: 1892/1718,
  35102. bottom: 162/2054
  35103. }
  35104. },
  35105. },
  35106. [
  35107. {
  35108. name: "Macro",
  35109. height: math.unit(30, "stories"),
  35110. default: true
  35111. },
  35112. ]
  35113. ))
  35114. characterMakers.push(() => makeCharacter(
  35115. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  35116. {
  35117. front: {
  35118. height: math.unit(6 + 4/12, "feet"),
  35119. weight: math.unit(145, "lb"),
  35120. name: "Front",
  35121. image: {
  35122. source: "./media/characters/sykes/front.svg",
  35123. extra: 1321 / 1187,
  35124. bottom: 66 / 1387
  35125. }
  35126. },
  35127. back: {
  35128. height: math.unit(6 + 4/12, "feet"),
  35129. weight: math.unit(145, "lb"),
  35130. name: "Back",
  35131. image: {
  35132. source: "./media/characters/sykes/back.svg",
  35133. extra: 1326/1181,
  35134. bottom: 31/1357
  35135. }
  35136. },
  35137. traditionalOutfit: {
  35138. height: math.unit(6 + 4/12, "feet"),
  35139. weight: math.unit(145, "lb"),
  35140. name: "Traditional Outfit",
  35141. image: {
  35142. source: "./media/characters/sykes/traditional-outfit.svg",
  35143. extra: 1321 / 1187,
  35144. bottom: 66 / 1387
  35145. }
  35146. },
  35147. adventureOutfit: {
  35148. height: math.unit(6 + 4/12, "feet"),
  35149. weight: math.unit(145, "lb"),
  35150. name: "Adventure Outfit",
  35151. image: {
  35152. source: "./media/characters/sykes/adventure-outfit.svg",
  35153. extra: 1321 / 1187,
  35154. bottom: 66 / 1387
  35155. }
  35156. },
  35157. handLeft: {
  35158. height: math.unit(0.9, "feet"),
  35159. name: "Hand (Left)",
  35160. image: {
  35161. source: "./media/characters/sykes/hand-left.svg"
  35162. }
  35163. },
  35164. handRight: {
  35165. height: math.unit(0.839, "feet"),
  35166. name: "Hand (Right)",
  35167. image: {
  35168. source: "./media/characters/sykes/hand-right.svg"
  35169. }
  35170. },
  35171. leftFoot: {
  35172. height: math.unit(1.2, "feet"),
  35173. name: "Foot (Left)",
  35174. image: {
  35175. source: "./media/characters/sykes/foot-left.svg"
  35176. }
  35177. },
  35178. rightFoot: {
  35179. height: math.unit(1.2, "feet"),
  35180. name: "Foot (Right)",
  35181. image: {
  35182. source: "./media/characters/sykes/foot-right.svg"
  35183. }
  35184. },
  35185. maw: {
  35186. height: math.unit(1.93, "feet"),
  35187. name: "Maw",
  35188. image: {
  35189. source: "./media/characters/sykes/maw.svg"
  35190. }
  35191. },
  35192. teeth: {
  35193. height: math.unit(0.51, "feet"),
  35194. name: "Teeth",
  35195. image: {
  35196. source: "./media/characters/sykes/teeth.svg"
  35197. }
  35198. },
  35199. tongue: {
  35200. height: math.unit(2.13, "feet"),
  35201. name: "Tongue",
  35202. image: {
  35203. source: "./media/characters/sykes/tongue.svg"
  35204. }
  35205. },
  35206. uvula: {
  35207. height: math.unit(0.16, "feet"),
  35208. name: "Uvula",
  35209. image: {
  35210. source: "./media/characters/sykes/uvula.svg"
  35211. }
  35212. },
  35213. collar: {
  35214. height: math.unit(0.287, "feet"),
  35215. name: "Collar",
  35216. image: {
  35217. source: "./media/characters/sykes/collar.svg"
  35218. }
  35219. },
  35220. tail: {
  35221. height: math.unit(3.8, "feet"),
  35222. name: "Tail",
  35223. image: {
  35224. source: "./media/characters/sykes/tail.svg"
  35225. }
  35226. },
  35227. },
  35228. [
  35229. {
  35230. name: "Shrunken",
  35231. height: math.unit(5, "inches")
  35232. },
  35233. {
  35234. name: "Normal",
  35235. height: math.unit(6 + 4 / 12, "feet"),
  35236. default: true
  35237. },
  35238. {
  35239. name: "Big",
  35240. height: math.unit(15, "feet")
  35241. },
  35242. ]
  35243. ))
  35244. characterMakers.push(() => makeCharacter(
  35245. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  35246. {
  35247. front: {
  35248. height: math.unit(5 + 8/12, "feet"),
  35249. weight: math.unit(190, "lb"),
  35250. name: "Front",
  35251. image: {
  35252. source: "./media/characters/oven-otter/front.svg",
  35253. extra: 1809/1740,
  35254. bottom: 181/1990
  35255. }
  35256. },
  35257. back: {
  35258. height: math.unit(5 + 8/12, "feet"),
  35259. weight: math.unit(190, "lb"),
  35260. name: "Back",
  35261. image: {
  35262. source: "./media/characters/oven-otter/back.svg",
  35263. extra: 1709/1635,
  35264. bottom: 118/1827
  35265. }
  35266. },
  35267. hand: {
  35268. height: math.unit(1.07, "feet"),
  35269. name: "Hand",
  35270. image: {
  35271. source: "./media/characters/oven-otter/hand.svg"
  35272. }
  35273. },
  35274. beans: {
  35275. height: math.unit(1.74, "feet"),
  35276. name: "Beans",
  35277. image: {
  35278. source: "./media/characters/oven-otter/beans.svg"
  35279. }
  35280. },
  35281. },
  35282. [
  35283. {
  35284. name: "Micro",
  35285. height: math.unit(0.5, "inches")
  35286. },
  35287. {
  35288. name: "Normal",
  35289. height: math.unit(5 + 8/12, "feet"),
  35290. default: true
  35291. },
  35292. {
  35293. name: "Macro",
  35294. height: math.unit(250, "feet")
  35295. },
  35296. {
  35297. name: "Really High",
  35298. height: math.unit(420, "feet")
  35299. },
  35300. ]
  35301. ))
  35302. characterMakers.push(() => makeCharacter(
  35303. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  35304. {
  35305. front: {
  35306. height: math.unit(5, "meters"),
  35307. weight: math.unit(292000000000000, "kg"),
  35308. name: "Front",
  35309. image: {
  35310. source: "./media/characters/devourer/front.svg",
  35311. extra: 1800/1733,
  35312. bottom: 211/2011
  35313. }
  35314. },
  35315. maw: {
  35316. height: math.unit(1.1, "meter"),
  35317. name: "Maw",
  35318. image: {
  35319. source: "./media/characters/devourer/maw.svg"
  35320. }
  35321. },
  35322. },
  35323. [
  35324. {
  35325. name: "Small",
  35326. height: math.unit(3, "meters")
  35327. },
  35328. {
  35329. name: "Large",
  35330. height: math.unit(5, "meters"),
  35331. default: true
  35332. },
  35333. ]
  35334. ))
  35335. characterMakers.push(() => makeCharacter(
  35336. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  35337. {
  35338. front: {
  35339. height: math.unit(6, "feet"),
  35340. weight: math.unit(400, "lb"),
  35341. name: "Front",
  35342. image: {
  35343. source: "./media/characters/ellarby/front.svg",
  35344. extra: 1909/1763,
  35345. bottom: 80/1989
  35346. }
  35347. },
  35348. back: {
  35349. height: math.unit(6, "feet"),
  35350. weight: math.unit(400, "lb"),
  35351. name: "Back",
  35352. image: {
  35353. source: "./media/characters/ellarby/back.svg",
  35354. extra: 1914/1784,
  35355. bottom: 172/2086
  35356. }
  35357. },
  35358. },
  35359. [
  35360. {
  35361. name: "Mischief",
  35362. height: math.unit(18, "inches")
  35363. },
  35364. {
  35365. name: "Trouble",
  35366. height: math.unit(12, "feet")
  35367. },
  35368. {
  35369. name: "Havoc",
  35370. height: math.unit(200, "feet"),
  35371. default: true
  35372. },
  35373. {
  35374. name: "Pandemonium",
  35375. height: math.unit(1, "mile")
  35376. },
  35377. {
  35378. name: "Catastrophe",
  35379. height: math.unit(100, "miles")
  35380. },
  35381. ]
  35382. ))
  35383. characterMakers.push(() => makeCharacter(
  35384. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  35385. {
  35386. front: {
  35387. height: math.unit(4.7, "meters"),
  35388. weight: math.unit(6500, "kg"),
  35389. name: "Front",
  35390. image: {
  35391. source: "./media/characters/vex/front.svg",
  35392. extra: 1288/1140,
  35393. bottom: 100/1388
  35394. }
  35395. },
  35396. },
  35397. [
  35398. {
  35399. name: "Normal",
  35400. height: math.unit(4.7, "meters"),
  35401. default: true
  35402. },
  35403. ]
  35404. ))
  35405. characterMakers.push(() => makeCharacter(
  35406. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  35407. {
  35408. normal: {
  35409. height: math.unit(6, "feet"),
  35410. weight: math.unit(350, "lb"),
  35411. name: "Normal",
  35412. image: {
  35413. source: "./media/characters/teshy/normal.svg",
  35414. extra: 1795/1735,
  35415. bottom: 16/1811
  35416. }
  35417. },
  35418. monsterFront: {
  35419. height: math.unit(12, "feet"),
  35420. weight: math.unit(4700, "lb"),
  35421. name: "Monster (Front)",
  35422. image: {
  35423. source: "./media/characters/teshy/monster-front.svg",
  35424. extra: 2042/2034,
  35425. bottom: 128/2170
  35426. }
  35427. },
  35428. monsterSide: {
  35429. height: math.unit(12, "feet"),
  35430. weight: math.unit(4700, "lb"),
  35431. name: "Monster (Side)",
  35432. image: {
  35433. source: "./media/characters/teshy/monster-side.svg",
  35434. extra: 2067/2056,
  35435. bottom: 70/2137
  35436. }
  35437. },
  35438. monsterBack: {
  35439. height: math.unit(12, "feet"),
  35440. weight: math.unit(4700, "lb"),
  35441. name: "Monster (Back)",
  35442. image: {
  35443. source: "./media/characters/teshy/monster-back.svg",
  35444. extra: 1921/1914,
  35445. bottom: 171/2092
  35446. }
  35447. },
  35448. },
  35449. [
  35450. {
  35451. name: "Normal",
  35452. height: math.unit(6, "feet"),
  35453. default: true
  35454. },
  35455. ]
  35456. ))
  35457. characterMakers.push(() => makeCharacter(
  35458. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  35459. {
  35460. front: {
  35461. height: math.unit(6, "feet"),
  35462. name: "Front",
  35463. image: {
  35464. source: "./media/characters/ramey/front.svg",
  35465. extra: 790/787,
  35466. bottom: 27/817
  35467. }
  35468. },
  35469. },
  35470. [
  35471. {
  35472. name: "Normal",
  35473. height: math.unit(6, "feet"),
  35474. default: true
  35475. },
  35476. ]
  35477. ))
  35478. characterMakers.push(() => makeCharacter(
  35479. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  35480. {
  35481. front: {
  35482. height: math.unit(5 + 5/12, "feet"),
  35483. weight: math.unit(120, "lb"),
  35484. name: "Front",
  35485. image: {
  35486. source: "./media/characters/phirae/front.svg",
  35487. extra: 2491/2436,
  35488. bottom: 38/2529
  35489. }
  35490. },
  35491. },
  35492. [
  35493. {
  35494. name: "Normal",
  35495. height: math.unit(5 + 5/12, "feet"),
  35496. default: true
  35497. },
  35498. ]
  35499. ))
  35500. characterMakers.push(() => makeCharacter(
  35501. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  35502. {
  35503. front: {
  35504. height: math.unit(5 + 3/12, "feet"),
  35505. name: "Front",
  35506. image: {
  35507. source: "./media/characters/stagglas/front.svg",
  35508. extra: 962/882,
  35509. bottom: 53/1015
  35510. }
  35511. },
  35512. feral: {
  35513. height: math.unit(335, "cm"),
  35514. name: "Feral",
  35515. image: {
  35516. source: "./media/characters/stagglas/feral.svg",
  35517. extra: 1732/1090,
  35518. bottom: 48/1780
  35519. }
  35520. },
  35521. },
  35522. [
  35523. {
  35524. name: "Normal",
  35525. height: math.unit(5 + 3/12, "feet"),
  35526. default: true
  35527. },
  35528. ]
  35529. ))
  35530. characterMakers.push(() => makeCharacter(
  35531. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  35532. {
  35533. front: {
  35534. height: math.unit(5 + 4/12, "feet"),
  35535. weight: math.unit(145, "lb"),
  35536. name: "Front",
  35537. image: {
  35538. source: "./media/characters/starra/front.svg",
  35539. extra: 1790/1691,
  35540. bottom: 91/1881
  35541. }
  35542. },
  35543. },
  35544. [
  35545. {
  35546. name: "Normal",
  35547. height: math.unit(5 + 4/12, "feet"),
  35548. default: true
  35549. },
  35550. ]
  35551. ))
  35552. characterMakers.push(() => makeCharacter(
  35553. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  35554. {
  35555. front: {
  35556. height: math.unit(2.2, "meters"),
  35557. name: "Front",
  35558. image: {
  35559. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  35560. extra: 1194/1005,
  35561. bottom: 25/1219
  35562. }
  35563. },
  35564. },
  35565. [
  35566. {
  35567. name: "Normal",
  35568. height: math.unit(2.2, "meters"),
  35569. default: true
  35570. },
  35571. ]
  35572. ))
  35573. characterMakers.push(() => makeCharacter(
  35574. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  35575. {
  35576. side: {
  35577. height: math.unit(8 + 2/12, "feet"),
  35578. weight: math.unit(1240, "lb"),
  35579. name: "Side",
  35580. image: {
  35581. source: "./media/characters/mika-valentine/side.svg",
  35582. extra: 2670/2501,
  35583. bottom: 250/2920
  35584. }
  35585. },
  35586. },
  35587. [
  35588. {
  35589. name: "Normal",
  35590. height: math.unit(8 + 2/12, "feet"),
  35591. default: true
  35592. },
  35593. ]
  35594. ))
  35595. characterMakers.push(() => makeCharacter(
  35596. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  35597. {
  35598. front: {
  35599. height: math.unit(7 + 2/12, "feet"),
  35600. name: "Front",
  35601. image: {
  35602. source: "./media/characters/xoltol/front.svg",
  35603. extra: 2212/2124,
  35604. bottom: 84/2296
  35605. }
  35606. },
  35607. side: {
  35608. height: math.unit(7 + 2/12, "feet"),
  35609. name: "Side",
  35610. image: {
  35611. source: "./media/characters/xoltol/side.svg",
  35612. extra: 2273/2197,
  35613. bottom: 26/2299
  35614. }
  35615. },
  35616. hand: {
  35617. height: math.unit(2.5, "feet"),
  35618. name: "Hand",
  35619. image: {
  35620. source: "./media/characters/xoltol/hand.svg"
  35621. }
  35622. },
  35623. },
  35624. [
  35625. {
  35626. name: "Small-ish",
  35627. height: math.unit(5 + 11/12, "feet")
  35628. },
  35629. {
  35630. name: "Normal",
  35631. height: math.unit(7 + 2/12, "feet")
  35632. },
  35633. {
  35634. name: "\"Macro\"",
  35635. height: math.unit(14 + 9/12, "feet"),
  35636. default: true
  35637. },
  35638. {
  35639. name: "Alternate Height",
  35640. height: math.unit(20, "feet")
  35641. },
  35642. {
  35643. name: "Actually Macro",
  35644. height: math.unit(100, "feet")
  35645. },
  35646. ]
  35647. ))
  35648. characterMakers.push(() => makeCharacter(
  35649. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  35650. {
  35651. front: {
  35652. height: math.unit(5 + 2/12, "feet"),
  35653. name: "Front",
  35654. image: {
  35655. source: "./media/characters/kotetsu-redwood/front.svg",
  35656. extra: 1053/942,
  35657. bottom: 60/1113
  35658. }
  35659. },
  35660. },
  35661. [
  35662. {
  35663. name: "Normal",
  35664. height: math.unit(5 + 2/12, "feet"),
  35665. default: true
  35666. },
  35667. ]
  35668. ))
  35669. characterMakers.push(() => makeCharacter(
  35670. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  35671. {
  35672. front: {
  35673. height: math.unit(2.4, "meters"),
  35674. weight: math.unit(125, "kg"),
  35675. name: "Front",
  35676. image: {
  35677. source: "./media/characters/lilith/front.svg",
  35678. extra: 1590/1513,
  35679. bottom: 203/1793
  35680. }
  35681. },
  35682. },
  35683. [
  35684. {
  35685. name: "Humanoid",
  35686. height: math.unit(2.4, "meters")
  35687. },
  35688. {
  35689. name: "Normal",
  35690. height: math.unit(6, "meters"),
  35691. default: true
  35692. },
  35693. {
  35694. name: "Largest",
  35695. height: math.unit(55, "meters")
  35696. },
  35697. ]
  35698. ))
  35699. characterMakers.push(() => makeCharacter(
  35700. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  35701. {
  35702. front: {
  35703. height: math.unit(8 + 4/12, "feet"),
  35704. weight: math.unit(535, "lb"),
  35705. name: "Front",
  35706. image: {
  35707. source: "./media/characters/beh'kah-bolger/front.svg",
  35708. extra: 1660/1603,
  35709. bottom: 37/1697
  35710. }
  35711. },
  35712. },
  35713. [
  35714. {
  35715. name: "Normal",
  35716. height: math.unit(8 + 4/12, "feet"),
  35717. default: true
  35718. },
  35719. {
  35720. name: "Kaiju",
  35721. height: math.unit(250, "feet")
  35722. },
  35723. {
  35724. name: "Still Growing",
  35725. height: math.unit(10, "miles")
  35726. },
  35727. {
  35728. name: "Continental",
  35729. height: math.unit(5000, "miles")
  35730. },
  35731. {
  35732. name: "Final Form",
  35733. height: math.unit(2500000, "miles")
  35734. },
  35735. ]
  35736. ))
  35737. characterMakers.push(() => makeCharacter(
  35738. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  35739. {
  35740. front: {
  35741. height: math.unit(7 + 2/12, "feet"),
  35742. weight: math.unit(230, "kg"),
  35743. name: "Front",
  35744. image: {
  35745. source: "./media/characters/tatyana-milewska/front.svg",
  35746. extra: 1199/1150,
  35747. bottom: 86/1285
  35748. }
  35749. },
  35750. },
  35751. [
  35752. {
  35753. name: "Normal",
  35754. height: math.unit(7 + 2/12, "feet"),
  35755. default: true
  35756. },
  35757. {
  35758. name: "Big",
  35759. height: math.unit(12, "feet")
  35760. },
  35761. {
  35762. name: "Minimacro",
  35763. height: math.unit(20, "feet")
  35764. },
  35765. {
  35766. name: "Macro",
  35767. height: math.unit(120, "feet")
  35768. },
  35769. ]
  35770. ))
  35771. characterMakers.push(() => makeCharacter(
  35772. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  35773. {
  35774. front: {
  35775. height: math.unit(7 + 8/12, "feet"),
  35776. weight: math.unit(152, "kg"),
  35777. name: "Front",
  35778. image: {
  35779. source: "./media/characters/helen-arri/front.svg",
  35780. extra: 440/423,
  35781. bottom: 14/454
  35782. }
  35783. },
  35784. back: {
  35785. height: math.unit(7 + 8/12, "feet"),
  35786. weight: math.unit(152, "kg"),
  35787. name: "Back",
  35788. image: {
  35789. source: "./media/characters/helen-arri/back.svg",
  35790. extra: 443/426,
  35791. bottom: 8/451
  35792. }
  35793. },
  35794. },
  35795. [
  35796. {
  35797. name: "Normal",
  35798. height: math.unit(7 + 8/12, "feet"),
  35799. default: true
  35800. },
  35801. {
  35802. name: "Big",
  35803. height: math.unit(14, "feet")
  35804. },
  35805. {
  35806. name: "Minimacro",
  35807. height: math.unit(24, "feet")
  35808. },
  35809. {
  35810. name: "Macro",
  35811. height: math.unit(140, "feet")
  35812. },
  35813. ]
  35814. ))
  35815. characterMakers.push(() => makeCharacter(
  35816. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  35817. {
  35818. front: {
  35819. height: math.unit(6, "meters"),
  35820. name: "Front",
  35821. image: {
  35822. source: "./media/characters/ehanu-rehu/front.svg",
  35823. extra: 1800/1800,
  35824. bottom: 59/1859
  35825. }
  35826. },
  35827. },
  35828. [
  35829. {
  35830. name: "Normal",
  35831. height: math.unit(6, "meters"),
  35832. default: true
  35833. },
  35834. ]
  35835. ))
  35836. characterMakers.push(() => makeCharacter(
  35837. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  35838. {
  35839. front: {
  35840. height: math.unit(7 + 3/12, "feet"),
  35841. name: "Front",
  35842. image: {
  35843. source: "./media/characters/renholder/front.svg",
  35844. extra: 3096/2960,
  35845. bottom: 250/3346
  35846. }
  35847. },
  35848. },
  35849. [
  35850. {
  35851. name: "Normal Bat",
  35852. height: math.unit(7 + 3/12, "feet"),
  35853. default: true
  35854. },
  35855. {
  35856. name: "Slightly Tall Bat",
  35857. height: math.unit(100, "feet")
  35858. },
  35859. {
  35860. name: "Big Bat",
  35861. height: math.unit(1000, "feet")
  35862. },
  35863. {
  35864. name: "City-Sized Bat",
  35865. height: math.unit(200000, "feet")
  35866. },
  35867. {
  35868. name: "Bigger Bat",
  35869. height: math.unit(10000, "miles")
  35870. },
  35871. {
  35872. name: "Solar Sized Bat",
  35873. height: math.unit(100, "AU")
  35874. },
  35875. {
  35876. name: "Galactic Bat",
  35877. height: math.unit(200000, "lightyears")
  35878. },
  35879. {
  35880. name: "Universally Known Bat",
  35881. height: math.unit(1, "universe")
  35882. },
  35883. ]
  35884. ))
  35885. characterMakers.push(() => makeCharacter(
  35886. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  35887. {
  35888. front: {
  35889. height: math.unit(6 + 11/12, "feet"),
  35890. weight: math.unit(250, "lb"),
  35891. name: "Front",
  35892. image: {
  35893. source: "./media/characters/cookiecat/front.svg",
  35894. extra: 893/827,
  35895. bottom: 14/907
  35896. }
  35897. },
  35898. },
  35899. [
  35900. {
  35901. name: "Micro",
  35902. height: math.unit(3, "inches")
  35903. },
  35904. {
  35905. name: "Normal",
  35906. height: math.unit(6 + 11/12, "feet"),
  35907. default: true
  35908. },
  35909. {
  35910. name: "Macro",
  35911. height: math.unit(100, "feet")
  35912. },
  35913. {
  35914. name: "Macro+",
  35915. height: math.unit(404, "feet")
  35916. },
  35917. {
  35918. name: "Megamacro",
  35919. height: math.unit(165, "miles")
  35920. },
  35921. {
  35922. name: "Planetary",
  35923. height: math.unit(4600, "miles")
  35924. },
  35925. ]
  35926. ))
  35927. characterMakers.push(() => makeCharacter(
  35928. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  35929. {
  35930. front: {
  35931. height: math.unit(10 + 3/12, "feet"),
  35932. weight: math.unit(1500, "lb"),
  35933. name: "Front",
  35934. image: {
  35935. source: "./media/characters/tux-kusanagi/front.svg",
  35936. extra: 944/840,
  35937. bottom: 39/983
  35938. }
  35939. },
  35940. back: {
  35941. height: math.unit(10 + 3/12, "feet"),
  35942. weight: math.unit(1500, "lb"),
  35943. name: "Back",
  35944. image: {
  35945. source: "./media/characters/tux-kusanagi/back.svg",
  35946. extra: 941/842,
  35947. bottom: 28/969
  35948. }
  35949. },
  35950. rump: {
  35951. height: math.unit(5.25, "feet"),
  35952. name: "Rump",
  35953. image: {
  35954. source: "./media/characters/tux-kusanagi/rump.svg"
  35955. }
  35956. },
  35957. beak: {
  35958. height: math.unit(1.54, "feet"),
  35959. name: "Beak",
  35960. image: {
  35961. source: "./media/characters/tux-kusanagi/beak.svg"
  35962. }
  35963. },
  35964. },
  35965. [
  35966. {
  35967. name: "Normal",
  35968. height: math.unit(10 + 3/12, "feet"),
  35969. default: true
  35970. },
  35971. ]
  35972. ))
  35973. characterMakers.push(() => makeCharacter(
  35974. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  35975. {
  35976. front: {
  35977. height: math.unit(58, "feet"),
  35978. weight: math.unit(200, "tons"),
  35979. name: "Front",
  35980. image: {
  35981. source: "./media/characters/uzarmazari/front.svg",
  35982. extra: 1575/1455,
  35983. bottom: 152/1727
  35984. }
  35985. },
  35986. back: {
  35987. height: math.unit(58, "feet"),
  35988. weight: math.unit(200, "tons"),
  35989. name: "Back",
  35990. image: {
  35991. source: "./media/characters/uzarmazari/back.svg",
  35992. extra: 1585/1510,
  35993. bottom: 157/1742
  35994. }
  35995. },
  35996. head: {
  35997. height: math.unit(26, "feet"),
  35998. name: "Head",
  35999. image: {
  36000. source: "./media/characters/uzarmazari/head.svg"
  36001. }
  36002. },
  36003. },
  36004. [
  36005. {
  36006. name: "Normal",
  36007. height: math.unit(58, "feet"),
  36008. default: true
  36009. },
  36010. ]
  36011. ))
  36012. characterMakers.push(() => makeCharacter(
  36013. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  36014. {
  36015. side: {
  36016. height: math.unit(15, "feet"),
  36017. name: "Side",
  36018. image: {
  36019. source: "./media/characters/akitu/side.svg",
  36020. extra: 1421/1321,
  36021. bottom: 157/1578
  36022. }
  36023. },
  36024. front: {
  36025. height: math.unit(15, "feet"),
  36026. name: "Front",
  36027. image: {
  36028. source: "./media/characters/akitu/front.svg",
  36029. extra: 1435/1326,
  36030. bottom: 232/1667
  36031. }
  36032. },
  36033. },
  36034. [
  36035. {
  36036. name: "Normal",
  36037. height: math.unit(15, "feet"),
  36038. default: true
  36039. },
  36040. ]
  36041. ))
  36042. characterMakers.push(() => makeCharacter(
  36043. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  36044. {
  36045. front: {
  36046. height: math.unit(10 + 8/12, "feet"),
  36047. name: "Front",
  36048. image: {
  36049. source: "./media/characters/azalie-croixland/front.svg",
  36050. extra: 1972/1856,
  36051. bottom: 31/2003
  36052. }
  36053. },
  36054. },
  36055. [
  36056. {
  36057. name: "Original Height",
  36058. height: math.unit(5 + 4/12, "feet")
  36059. },
  36060. {
  36061. name: "Normal Height",
  36062. height: math.unit(10 + 8/12, "feet"),
  36063. default: true
  36064. },
  36065. ]
  36066. ))
  36067. characterMakers.push(() => makeCharacter(
  36068. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  36069. {
  36070. side: {
  36071. height: math.unit(7 + 1/12, "feet"),
  36072. weight: math.unit(245, "lb"),
  36073. name: "Side",
  36074. image: {
  36075. source: "./media/characters/kavus-kazian/side.svg",
  36076. extra: 349/342,
  36077. bottom: 15/364
  36078. }
  36079. },
  36080. },
  36081. [
  36082. {
  36083. name: "Normal",
  36084. height: math.unit(7 + 1/12, "feet"),
  36085. default: true
  36086. },
  36087. ]
  36088. ))
  36089. characterMakers.push(() => makeCharacter(
  36090. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  36091. {
  36092. normalFront: {
  36093. height: math.unit(5 + 11/12, "feet"),
  36094. name: "Front",
  36095. image: {
  36096. source: "./media/characters/moonlight-rose/normal-front.svg",
  36097. extra: 1980/1825,
  36098. bottom: 18/1998
  36099. },
  36100. form: "normal",
  36101. default: true
  36102. },
  36103. normalBack: {
  36104. height: math.unit(5 + 11/12, "feet"),
  36105. name: "Back",
  36106. image: {
  36107. source: "./media/characters/moonlight-rose/normal-back.svg",
  36108. extra: 2010/1839,
  36109. bottom: 10/2020
  36110. },
  36111. form: "normal"
  36112. },
  36113. demonFront: {
  36114. height: math.unit(1.5, "earths"),
  36115. name: "Front",
  36116. image: {
  36117. source: "./media/characters/moonlight-rose/demon.svg",
  36118. extra: 1400/1294,
  36119. bottom: 45/1445
  36120. },
  36121. form: "demon",
  36122. default: true
  36123. },
  36124. terraFront: {
  36125. height: math.unit(1.5, "earths"),
  36126. name: "Front",
  36127. image: {
  36128. source: "./media/characters/moonlight-rose/terra.svg"
  36129. },
  36130. form: "terra",
  36131. default: true
  36132. },
  36133. jupiterFront: {
  36134. height: math.unit(69911*2, "km"),
  36135. name: "Front",
  36136. image: {
  36137. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  36138. extra: 1367/1286,
  36139. bottom: 55/1422
  36140. },
  36141. form: "jupiter",
  36142. default: true
  36143. },
  36144. neptuneFront: {
  36145. height: math.unit(24622*2, "feet"),
  36146. name: "Front",
  36147. image: {
  36148. source: "./media/characters/moonlight-rose/neptune-front.svg",
  36149. extra: 1851/1712,
  36150. bottom: 0/1851
  36151. },
  36152. form: "neptune",
  36153. default: true
  36154. },
  36155. },
  36156. [
  36157. {
  36158. name: "\"Natural\" Height",
  36159. height: math.unit(5 + 11/12, "feet"),
  36160. form: "normal"
  36161. },
  36162. {
  36163. name: "Smallest comfortable size",
  36164. height: math.unit(40, "meters"),
  36165. form: "normal"
  36166. },
  36167. {
  36168. name: "Common size",
  36169. height: math.unit(50, "km"),
  36170. form: "normal",
  36171. default: true
  36172. },
  36173. {
  36174. name: "Normal",
  36175. height: math.unit(1.5, "earths"),
  36176. form: "demon",
  36177. default: true
  36178. },
  36179. {
  36180. name: "Universal",
  36181. height: math.unit(15, "universes"),
  36182. form: "demon"
  36183. },
  36184. {
  36185. name: "Earth",
  36186. height: math.unit(1.5, "earths"),
  36187. form: "terra",
  36188. default: true
  36189. },
  36190. {
  36191. name: "Super Earth",
  36192. height: math.unit(67.5, "earths"),
  36193. form: "terra"
  36194. },
  36195. {
  36196. name: "Doesn't fit in a solar system...",
  36197. height: math.unit(1, "galaxy"),
  36198. form: "terra"
  36199. },
  36200. {
  36201. name: "Saturn",
  36202. height: math.unit(58232*2, "km"),
  36203. form: "jupiter"
  36204. },
  36205. {
  36206. name: "Jupiter",
  36207. height: math.unit(69911*2, "km"),
  36208. form: "jupiter",
  36209. default: true
  36210. },
  36211. {
  36212. name: "HD 100546 b",
  36213. height: math.unit(482938, "km"),
  36214. form: "jupiter"
  36215. },
  36216. {
  36217. name: "Enceladus",
  36218. height: math.unit(513*2, "km"),
  36219. form: "neptune"
  36220. },
  36221. {
  36222. name: "Europe",
  36223. height: math.unit(1560*2, "km"),
  36224. form: "neptune"
  36225. },
  36226. {
  36227. name: "Neptune",
  36228. height: math.unit(24622*2, "km"),
  36229. form: "neptune",
  36230. default: true
  36231. },
  36232. {
  36233. name: "CoRoT-9b",
  36234. height: math.unit(75067*2, "km"),
  36235. form: "neptune"
  36236. },
  36237. ],
  36238. {
  36239. "normal": {
  36240. name: "Normal",
  36241. default: true
  36242. },
  36243. "demon": {
  36244. name: "Demon"
  36245. },
  36246. "terra": {
  36247. name: "Terra"
  36248. },
  36249. "jupiter": {
  36250. name: "Jupiter"
  36251. },
  36252. "neptune": {
  36253. name: "Neptune"
  36254. }
  36255. }
  36256. ))
  36257. characterMakers.push(() => makeCharacter(
  36258. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  36259. {
  36260. front: {
  36261. height: math.unit(16, "feet"),
  36262. weight: math.unit(610, "kg"),
  36263. name: "Front",
  36264. image: {
  36265. source: "./media/characters/huckle/front.svg",
  36266. extra: 1731/1625,
  36267. bottom: 33/1764
  36268. }
  36269. },
  36270. back: {
  36271. height: math.unit(16, "feet"),
  36272. weight: math.unit(610, "kg"),
  36273. name: "Back",
  36274. image: {
  36275. source: "./media/characters/huckle/back.svg",
  36276. extra: 1738/1651,
  36277. bottom: 37/1775
  36278. }
  36279. },
  36280. laughing: {
  36281. height: math.unit(3.75, "feet"),
  36282. name: "Laughing",
  36283. image: {
  36284. source: "./media/characters/huckle/laughing.svg"
  36285. }
  36286. },
  36287. angry: {
  36288. height: math.unit(4.15, "feet"),
  36289. name: "Angry",
  36290. image: {
  36291. source: "./media/characters/huckle/angry.svg"
  36292. }
  36293. },
  36294. },
  36295. [
  36296. {
  36297. name: "Normal",
  36298. height: math.unit(16, "feet"),
  36299. default: true
  36300. },
  36301. {
  36302. name: "Mini Macro",
  36303. height: math.unit(463, "feet")
  36304. },
  36305. {
  36306. name: "Macro",
  36307. height: math.unit(1680, "meters")
  36308. },
  36309. {
  36310. name: "Mega Macro",
  36311. height: math.unit(175, "km")
  36312. },
  36313. {
  36314. name: "Terra Macro",
  36315. height: math.unit(32, "gigameters")
  36316. },
  36317. {
  36318. name: "Multiverse+",
  36319. height: math.unit(2.56e23, "yottameters")
  36320. },
  36321. ]
  36322. ))
  36323. characterMakers.push(() => makeCharacter(
  36324. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  36325. {
  36326. front: {
  36327. height: math.unit(6 + 9/12, "feet"),
  36328. weight: math.unit(280, "lb"),
  36329. name: "Front",
  36330. image: {
  36331. source: "./media/characters/candy/front.svg",
  36332. extra: 234/217,
  36333. bottom: 11/245
  36334. }
  36335. },
  36336. },
  36337. [
  36338. {
  36339. name: "Really Small",
  36340. height: math.unit(0.1, "nm")
  36341. },
  36342. {
  36343. name: "Micro",
  36344. height: math.unit(2, "inches")
  36345. },
  36346. {
  36347. name: "Normal",
  36348. height: math.unit(6 + 9/12, "feet"),
  36349. default: true
  36350. },
  36351. {
  36352. name: "Small Macro",
  36353. height: math.unit(69, "feet")
  36354. },
  36355. {
  36356. name: "Macro",
  36357. height: math.unit(160, "feet")
  36358. },
  36359. {
  36360. name: "Megamacro",
  36361. height: math.unit(22000, "miles")
  36362. },
  36363. {
  36364. name: "Gigamacro",
  36365. height: math.unit(50000, "miles")
  36366. },
  36367. ]
  36368. ))
  36369. characterMakers.push(() => makeCharacter(
  36370. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  36371. {
  36372. front: {
  36373. height: math.unit(4, "feet"),
  36374. weight: math.unit(90, "lb"),
  36375. name: "Front",
  36376. image: {
  36377. source: "./media/characters/joey-mcdonald/front.svg",
  36378. extra: 1059/852,
  36379. bottom: 33/1092
  36380. }
  36381. },
  36382. back: {
  36383. height: math.unit(4, "feet"),
  36384. weight: math.unit(90, "lb"),
  36385. name: "Back",
  36386. image: {
  36387. source: "./media/characters/joey-mcdonald/back.svg",
  36388. extra: 1077/879,
  36389. bottom: 5/1082
  36390. }
  36391. },
  36392. frontKobold: {
  36393. height: math.unit(4, "feet"),
  36394. weight: math.unit(100, "lb"),
  36395. name: "Front-kobold",
  36396. image: {
  36397. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  36398. extra: 1480/1367,
  36399. bottom: 0/1480
  36400. }
  36401. },
  36402. backKobold: {
  36403. height: math.unit(4, "feet"),
  36404. weight: math.unit(100, "lb"),
  36405. name: "Back-kobold",
  36406. image: {
  36407. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  36408. extra: 1449/1361,
  36409. bottom: 0/1449
  36410. }
  36411. },
  36412. },
  36413. [
  36414. {
  36415. name: "Normal",
  36416. height: math.unit(4, "feet"),
  36417. default: true
  36418. },
  36419. ]
  36420. ))
  36421. characterMakers.push(() => makeCharacter(
  36422. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  36423. {
  36424. front: {
  36425. height: math.unit(12 + 6/12, "feet"),
  36426. name: "Front",
  36427. image: {
  36428. source: "./media/characters/kass-lockheed/front.svg",
  36429. extra: 354/343,
  36430. bottom: 9/363
  36431. }
  36432. },
  36433. back: {
  36434. height: math.unit(12 + 6/12, "feet"),
  36435. name: "Back",
  36436. image: {
  36437. source: "./media/characters/kass-lockheed/back.svg",
  36438. extra: 364/352,
  36439. bottom: 3/367
  36440. }
  36441. },
  36442. dick: {
  36443. height: math.unit(3.12, "feet"),
  36444. name: "Dick",
  36445. image: {
  36446. source: "./media/characters/kass-lockheed/dick.svg"
  36447. }
  36448. },
  36449. head: {
  36450. height: math.unit(2.6, "feet"),
  36451. name: "Head",
  36452. image: {
  36453. source: "./media/characters/kass-lockheed/head.svg"
  36454. }
  36455. },
  36456. bleh: {
  36457. height: math.unit(2.85, "feet"),
  36458. name: "Bleh",
  36459. image: {
  36460. source: "./media/characters/kass-lockheed/bleh.svg"
  36461. }
  36462. },
  36463. smug: {
  36464. height: math.unit(2.85, "feet"),
  36465. name: "Smug",
  36466. image: {
  36467. source: "./media/characters/kass-lockheed/smug.svg"
  36468. }
  36469. },
  36470. },
  36471. [
  36472. {
  36473. name: "Normal",
  36474. height: math.unit(12 + 6/12, "feet"),
  36475. default: true
  36476. },
  36477. ]
  36478. ))
  36479. characterMakers.push(() => makeCharacter(
  36480. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  36481. {
  36482. front: {
  36483. height: math.unit(6 + 2/12, "feet"),
  36484. name: "Front",
  36485. image: {
  36486. source: "./media/characters/taylor/front.svg",
  36487. extra: 639/495,
  36488. bottom: 12/651
  36489. }
  36490. },
  36491. },
  36492. [
  36493. {
  36494. name: "Normal",
  36495. height: math.unit(6 + 2/12, "feet"),
  36496. default: true
  36497. },
  36498. {
  36499. name: "Big",
  36500. height: math.unit(15, "feet")
  36501. },
  36502. {
  36503. name: "Lorg",
  36504. height: math.unit(80, "feet")
  36505. },
  36506. {
  36507. name: "Too Lorg",
  36508. height: math.unit(120, "feet")
  36509. },
  36510. ]
  36511. ))
  36512. characterMakers.push(() => makeCharacter(
  36513. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  36514. {
  36515. front: {
  36516. height: math.unit(15, "feet"),
  36517. name: "Front",
  36518. image: {
  36519. source: "./media/characters/kaizer/front.svg",
  36520. extra: 1612/1436,
  36521. bottom: 43/1655
  36522. }
  36523. },
  36524. },
  36525. [
  36526. {
  36527. name: "Normal",
  36528. height: math.unit(15, "feet"),
  36529. default: true
  36530. },
  36531. ]
  36532. ))
  36533. characterMakers.push(() => makeCharacter(
  36534. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  36535. {
  36536. front: {
  36537. height: math.unit(2, "feet"),
  36538. weight: math.unit(30, "lb"),
  36539. name: "Front",
  36540. image: {
  36541. source: "./media/characters/sandy/front.svg",
  36542. extra: 1439/1307,
  36543. bottom: 194/1633
  36544. }
  36545. },
  36546. },
  36547. [
  36548. {
  36549. name: "Normal",
  36550. height: math.unit(2, "feet"),
  36551. default: true
  36552. },
  36553. ]
  36554. ))
  36555. characterMakers.push(() => makeCharacter(
  36556. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  36557. {
  36558. front: {
  36559. height: math.unit(3, "feet"),
  36560. name: "Front",
  36561. image: {
  36562. source: "./media/characters/mellvi/front.svg",
  36563. extra: 1831/1630,
  36564. bottom: 58/1889
  36565. }
  36566. },
  36567. },
  36568. [
  36569. {
  36570. name: "Normal",
  36571. height: math.unit(3, "feet"),
  36572. default: true
  36573. },
  36574. ]
  36575. ))
  36576. characterMakers.push(() => makeCharacter(
  36577. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  36578. {
  36579. front: {
  36580. height: math.unit(5 + 11/12, "feet"),
  36581. weight: math.unit(200, "lb"),
  36582. name: "Front",
  36583. image: {
  36584. source: "./media/characters/shirou/front.svg",
  36585. extra: 2491/2383,
  36586. bottom: 189/2680
  36587. }
  36588. },
  36589. back: {
  36590. height: math.unit(5 + 11/12, "feet"),
  36591. weight: math.unit(200, "lb"),
  36592. name: "Back",
  36593. image: {
  36594. source: "./media/characters/shirou/back.svg",
  36595. extra: 2554/2450,
  36596. bottom: 76/2630
  36597. }
  36598. },
  36599. },
  36600. [
  36601. {
  36602. name: "Normal",
  36603. height: math.unit(5 + 11/12, "feet"),
  36604. default: true
  36605. },
  36606. ]
  36607. ))
  36608. characterMakers.push(() => makeCharacter(
  36609. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  36610. {
  36611. front: {
  36612. height: math.unit(6 + 3/12, "feet"),
  36613. weight: math.unit(177, "lb"),
  36614. name: "Front",
  36615. image: {
  36616. source: "./media/characters/noryu/front.svg",
  36617. extra: 973/885,
  36618. bottom: 10/983
  36619. }
  36620. },
  36621. },
  36622. [
  36623. {
  36624. name: "Normal",
  36625. height: math.unit(6 + 3/12, "feet"),
  36626. default: true
  36627. },
  36628. ]
  36629. ))
  36630. characterMakers.push(() => makeCharacter(
  36631. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  36632. {
  36633. front: {
  36634. height: math.unit(5 + 6/12, "feet"),
  36635. weight: math.unit(170, "lb"),
  36636. name: "Front",
  36637. image: {
  36638. source: "./media/characters/mevolas-rubenido/front.svg",
  36639. extra: 2109/1901,
  36640. bottom: 96/2205
  36641. }
  36642. },
  36643. },
  36644. [
  36645. {
  36646. name: "Normal",
  36647. height: math.unit(5 + 6/12, "feet"),
  36648. default: true
  36649. },
  36650. ]
  36651. ))
  36652. characterMakers.push(() => makeCharacter(
  36653. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  36654. {
  36655. front: {
  36656. height: math.unit(100, "feet"),
  36657. name: "Front",
  36658. image: {
  36659. source: "./media/characters/dee/front.svg",
  36660. extra: 2153/2036,
  36661. bottom: 59/2212
  36662. }
  36663. },
  36664. back: {
  36665. height: math.unit(100, "feet"),
  36666. name: "Back",
  36667. image: {
  36668. source: "./media/characters/dee/back.svg",
  36669. extra: 2183/2058,
  36670. bottom: 75/2258
  36671. }
  36672. },
  36673. foot: {
  36674. height: math.unit(19.43, "feet"),
  36675. name: "Foot",
  36676. image: {
  36677. source: "./media/characters/dee/foot.svg"
  36678. }
  36679. },
  36680. hoof: {
  36681. height: math.unit(20.6, "feet"),
  36682. name: "Hoof",
  36683. image: {
  36684. source: "./media/characters/dee/hoof.svg"
  36685. }
  36686. },
  36687. },
  36688. [
  36689. {
  36690. name: "Macro",
  36691. height: math.unit(100, "feet"),
  36692. default: true
  36693. },
  36694. ]
  36695. ))
  36696. characterMakers.push(() => makeCharacter(
  36697. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  36698. {
  36699. front: {
  36700. height: math.unit(5 + 6/12, "feet"),
  36701. name: "Front",
  36702. image: {
  36703. source: "./media/characters/teh/front.svg",
  36704. extra: 1002/847,
  36705. bottom: 62/1064
  36706. }
  36707. },
  36708. },
  36709. [
  36710. {
  36711. name: "Normal",
  36712. height: math.unit(5 + 6/12, "feet"),
  36713. default: true
  36714. },
  36715. ]
  36716. ))
  36717. characterMakers.push(() => makeCharacter(
  36718. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  36719. {
  36720. side: {
  36721. height: math.unit(6 + 1/12, "feet"),
  36722. weight: math.unit(204, "lb"),
  36723. name: "Side",
  36724. image: {
  36725. source: "./media/characters/quicksilver-ayukoti/side.svg",
  36726. extra: 974/775,
  36727. bottom: 169/1143
  36728. }
  36729. },
  36730. sitting: {
  36731. height: math.unit(6 + 2/12, "feet"),
  36732. weight: math.unit(204, "lb"),
  36733. name: "Sitting",
  36734. image: {
  36735. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  36736. extra: 1175/964,
  36737. bottom: 378/1553
  36738. }
  36739. },
  36740. },
  36741. [
  36742. {
  36743. name: "Normal",
  36744. height: math.unit(6 + 1/12, "feet"),
  36745. default: true
  36746. },
  36747. ]
  36748. ))
  36749. characterMakers.push(() => makeCharacter(
  36750. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  36751. {
  36752. front: {
  36753. height: math.unit(6, "inches"),
  36754. name: "Front",
  36755. image: {
  36756. source: "./media/characters/tululi/front.svg",
  36757. extra: 1997/1876,
  36758. bottom: 20/2017
  36759. }
  36760. },
  36761. },
  36762. [
  36763. {
  36764. name: "Normal",
  36765. height: math.unit(6, "inches"),
  36766. default: true
  36767. },
  36768. ]
  36769. ))
  36770. characterMakers.push(() => makeCharacter(
  36771. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  36772. {
  36773. front: {
  36774. height: math.unit(4 + 1/12, "feet"),
  36775. name: "Front",
  36776. image: {
  36777. source: "./media/characters/star/front.svg",
  36778. extra: 1493/1189,
  36779. bottom: 48/1541
  36780. }
  36781. },
  36782. },
  36783. [
  36784. {
  36785. name: "Normal",
  36786. height: math.unit(4 + 1/12, "feet"),
  36787. default: true
  36788. },
  36789. ]
  36790. ))
  36791. characterMakers.push(() => makeCharacter(
  36792. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  36793. {
  36794. front: {
  36795. height: math.unit(6 + 3/12, "feet"),
  36796. name: "Front",
  36797. image: {
  36798. source: "./media/characters/comet/front.svg",
  36799. extra: 1681/1462,
  36800. bottom: 26/1707
  36801. }
  36802. },
  36803. },
  36804. [
  36805. {
  36806. name: "Normal",
  36807. height: math.unit(6 + 3/12, "feet"),
  36808. default: true
  36809. },
  36810. ]
  36811. ))
  36812. characterMakers.push(() => makeCharacter(
  36813. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  36814. {
  36815. front: {
  36816. height: math.unit(950, "feet"),
  36817. name: "Front",
  36818. image: {
  36819. source: "./media/characters/vortex/front.svg",
  36820. extra: 1497/1434,
  36821. bottom: 56/1553
  36822. }
  36823. },
  36824. maw: {
  36825. height: math.unit(285, "feet"),
  36826. name: "Maw",
  36827. image: {
  36828. source: "./media/characters/vortex/maw.svg"
  36829. }
  36830. },
  36831. },
  36832. [
  36833. {
  36834. name: "Macro",
  36835. height: math.unit(950, "feet"),
  36836. default: true
  36837. },
  36838. ]
  36839. ))
  36840. characterMakers.push(() => makeCharacter(
  36841. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  36842. {
  36843. front: {
  36844. height: math.unit(600, "feet"),
  36845. weight: math.unit(0.02, "grams"),
  36846. name: "Front",
  36847. image: {
  36848. source: "./media/characters/doodle/front.svg",
  36849. extra: 1578/1413,
  36850. bottom: 37/1615
  36851. }
  36852. },
  36853. },
  36854. [
  36855. {
  36856. name: "Macro",
  36857. height: math.unit(600, "feet"),
  36858. default: true
  36859. },
  36860. ]
  36861. ))
  36862. characterMakers.push(() => makeCharacter(
  36863. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  36864. {
  36865. front: {
  36866. height: math.unit(6 + 6/12, "feet"),
  36867. name: "Front",
  36868. image: {
  36869. source: "./media/characters/jai/front.svg",
  36870. extra: 1645/1534,
  36871. bottom: 115/1760
  36872. }
  36873. },
  36874. },
  36875. [
  36876. {
  36877. name: "Normal",
  36878. height: math.unit(6 + 6/12, "feet"),
  36879. default: true
  36880. },
  36881. ]
  36882. ))
  36883. characterMakers.push(() => makeCharacter(
  36884. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  36885. {
  36886. front: {
  36887. height: math.unit(6 + 8/12, "feet"),
  36888. name: "Front",
  36889. image: {
  36890. source: "./media/characters/pixel/front.svg",
  36891. extra: 1900/1735,
  36892. bottom: 63/1963
  36893. }
  36894. },
  36895. },
  36896. [
  36897. {
  36898. name: "Normal",
  36899. height: math.unit(6 + 8/12, "feet"),
  36900. default: true
  36901. },
  36902. ]
  36903. ))
  36904. characterMakers.push(() => makeCharacter(
  36905. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  36906. {
  36907. back: {
  36908. height: math.unit(4 + 1/12, "feet"),
  36909. weight: math.unit(75, "lb"),
  36910. name: "Back",
  36911. image: {
  36912. source: "./media/characters/rhett/back.svg",
  36913. extra: 930/878,
  36914. bottom: 25/955
  36915. }
  36916. },
  36917. front: {
  36918. height: math.unit(4 + 1/12, "feet"),
  36919. weight: math.unit(75, "lb"),
  36920. name: "Front",
  36921. image: {
  36922. source: "./media/characters/rhett/front.svg",
  36923. extra: 1682/1586,
  36924. bottom: 92/1774
  36925. }
  36926. },
  36927. },
  36928. [
  36929. {
  36930. name: "Micro",
  36931. height: math.unit(8, "inches")
  36932. },
  36933. {
  36934. name: "Tiny",
  36935. height: math.unit(2, "feet")
  36936. },
  36937. {
  36938. name: "Normal",
  36939. height: math.unit(4 + 1/12, "feet"),
  36940. default: true
  36941. },
  36942. ]
  36943. ))
  36944. characterMakers.push(() => makeCharacter(
  36945. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  36946. {
  36947. front: {
  36948. height: math.unit(3 + 3/12, "feet"),
  36949. name: "Front",
  36950. image: {
  36951. source: "./media/characters/penny/front.svg",
  36952. extra: 1406/1311,
  36953. bottom: 26/1432
  36954. }
  36955. },
  36956. },
  36957. [
  36958. {
  36959. name: "Normal",
  36960. height: math.unit(3 + 3/12, "feet"),
  36961. default: true
  36962. },
  36963. ]
  36964. ))
  36965. characterMakers.push(() => makeCharacter(
  36966. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  36967. {
  36968. front: {
  36969. height: math.unit(4 + 11/12, "feet"),
  36970. name: "Front",
  36971. image: {
  36972. source: "./media/characters/monty/front.svg",
  36973. extra: 1479/1209,
  36974. bottom: 0/1479
  36975. }
  36976. },
  36977. },
  36978. [
  36979. {
  36980. name: "Normal",
  36981. height: math.unit(4 + 11/12, "feet"),
  36982. default: true
  36983. },
  36984. ]
  36985. ))
  36986. characterMakers.push(() => makeCharacter(
  36987. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  36988. {
  36989. front: {
  36990. height: math.unit(8 + 4/12, "feet"),
  36991. name: "Front",
  36992. image: {
  36993. source: "./media/characters/sterling/front.svg",
  36994. extra: 1420/1236,
  36995. bottom: 27/1447
  36996. }
  36997. },
  36998. },
  36999. [
  37000. {
  37001. name: "Normal",
  37002. height: math.unit(8 + 4/12, "feet"),
  37003. default: true
  37004. },
  37005. ]
  37006. ))
  37007. characterMakers.push(() => makeCharacter(
  37008. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  37009. {
  37010. front: {
  37011. height: math.unit(15, "feet"),
  37012. name: "Front",
  37013. image: {
  37014. source: "./media/characters/marble/front.svg",
  37015. extra: 973/937,
  37016. bottom: 32/1005
  37017. }
  37018. },
  37019. },
  37020. [
  37021. {
  37022. name: "Normal",
  37023. height: math.unit(15, "feet"),
  37024. default: true
  37025. },
  37026. ]
  37027. ))
  37028. characterMakers.push(() => makeCharacter(
  37029. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  37030. {
  37031. front: {
  37032. height: math.unit(3, "inches"),
  37033. name: "Front",
  37034. image: {
  37035. source: "./media/characters/powder/front.svg",
  37036. extra: 1504/1334,
  37037. bottom: 518/2022
  37038. }
  37039. },
  37040. },
  37041. [
  37042. {
  37043. name: "Normal",
  37044. height: math.unit(3, "inches"),
  37045. default: true
  37046. },
  37047. ]
  37048. ))
  37049. characterMakers.push(() => makeCharacter(
  37050. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  37051. {
  37052. front: {
  37053. height: math.unit(4 + 5/12, "feet"),
  37054. name: "Front",
  37055. image: {
  37056. source: "./media/characters/joey-raccoon/front.svg",
  37057. extra: 1273/1197,
  37058. bottom: 0/1273
  37059. }
  37060. },
  37061. },
  37062. [
  37063. {
  37064. name: "Normal",
  37065. height: math.unit(4 + 5/12, "feet"),
  37066. default: true
  37067. },
  37068. ]
  37069. ))
  37070. characterMakers.push(() => makeCharacter(
  37071. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  37072. {
  37073. front: {
  37074. height: math.unit(8 + 4/12, "feet"),
  37075. name: "Front",
  37076. image: {
  37077. source: "./media/characters/vick/front.svg",
  37078. extra: 2187/2118,
  37079. bottom: 47/2234
  37080. }
  37081. },
  37082. },
  37083. [
  37084. {
  37085. name: "Normal",
  37086. height: math.unit(8 + 4/12, "feet"),
  37087. default: true
  37088. },
  37089. ]
  37090. ))
  37091. characterMakers.push(() => makeCharacter(
  37092. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  37093. {
  37094. front: {
  37095. height: math.unit(5 + 5/12, "feet"),
  37096. name: "Front",
  37097. image: {
  37098. source: "./media/characters/mitsy/front.svg",
  37099. extra: 1842/1695,
  37100. bottom: 0/1842
  37101. }
  37102. },
  37103. },
  37104. [
  37105. {
  37106. name: "Normal",
  37107. height: math.unit(5 + 5/12, "feet"),
  37108. default: true
  37109. },
  37110. ]
  37111. ))
  37112. characterMakers.push(() => makeCharacter(
  37113. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  37114. {
  37115. front: {
  37116. height: math.unit(6 + 3/12, "feet"),
  37117. name: "Front",
  37118. image: {
  37119. source: "./media/characters/silvy/front.svg",
  37120. extra: 1995/1836,
  37121. bottom: 225/2220
  37122. }
  37123. },
  37124. },
  37125. [
  37126. {
  37127. name: "Normal",
  37128. height: math.unit(6 + 3/12, "feet"),
  37129. default: true
  37130. },
  37131. ]
  37132. ))
  37133. characterMakers.push(() => makeCharacter(
  37134. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  37135. {
  37136. front: {
  37137. height: math.unit(3 + 8/12, "feet"),
  37138. name: "Front",
  37139. image: {
  37140. source: "./media/characters/rodney/front.svg",
  37141. extra: 1956/1747,
  37142. bottom: 31/1987
  37143. }
  37144. },
  37145. frontDressed: {
  37146. height: math.unit(2.9, "feet"),
  37147. name: "Front (Dressed)",
  37148. image: {
  37149. source: "./media/characters/rodney/front-dressed.svg",
  37150. extra: 1382/1241,
  37151. bottom: 385/1767
  37152. }
  37153. },
  37154. },
  37155. [
  37156. {
  37157. name: "Normal",
  37158. height: math.unit(3 + 8/12, "feet"),
  37159. default: true
  37160. },
  37161. ]
  37162. ))
  37163. characterMakers.push(() => makeCharacter(
  37164. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  37165. {
  37166. front: {
  37167. height: math.unit(5 + 9/12, "feet"),
  37168. weight: math.unit(194, "lbs"),
  37169. name: "Front",
  37170. image: {
  37171. source: "./media/characters/zakail-sudekai/front.svg",
  37172. extra: 2696/2533,
  37173. bottom: 248/2944
  37174. }
  37175. },
  37176. maw: {
  37177. height: math.unit(1.35, "feet"),
  37178. name: "Maw",
  37179. image: {
  37180. source: "./media/characters/zakail-sudekai/maw.svg"
  37181. }
  37182. },
  37183. },
  37184. [
  37185. {
  37186. name: "Normal",
  37187. height: math.unit(5 + 9/12, "feet"),
  37188. default: true
  37189. },
  37190. ]
  37191. ))
  37192. characterMakers.push(() => makeCharacter(
  37193. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  37194. {
  37195. front: {
  37196. height: math.unit(8 + 4/12, "feet"),
  37197. weight: math.unit(1200, "lb"),
  37198. name: "Front",
  37199. image: {
  37200. source: "./media/characters/eleanor/front.svg",
  37201. extra: 1226/1192,
  37202. bottom: 52/1278
  37203. }
  37204. },
  37205. back: {
  37206. height: math.unit(8 + 4/12, "feet"),
  37207. weight: math.unit(1200, "lb"),
  37208. name: "Back",
  37209. image: {
  37210. source: "./media/characters/eleanor/back.svg",
  37211. extra: 1242/1184,
  37212. bottom: 60/1302
  37213. }
  37214. },
  37215. head: {
  37216. height: math.unit(2.62, "feet"),
  37217. name: "Head",
  37218. image: {
  37219. source: "./media/characters/eleanor/head.svg"
  37220. }
  37221. },
  37222. },
  37223. [
  37224. {
  37225. name: "Normal",
  37226. height: math.unit(8 + 4/12, "feet"),
  37227. default: true
  37228. },
  37229. ]
  37230. ))
  37231. characterMakers.push(() => makeCharacter(
  37232. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  37233. {
  37234. front: {
  37235. height: math.unit(8 + 4/12, "feet"),
  37236. weight: math.unit(750, "lb"),
  37237. name: "Front",
  37238. image: {
  37239. source: "./media/characters/tanya/front.svg",
  37240. extra: 1749/1615,
  37241. bottom: 33/1782
  37242. }
  37243. },
  37244. },
  37245. [
  37246. {
  37247. name: "Normal",
  37248. height: math.unit(8 + 4/12, "feet"),
  37249. default: true
  37250. },
  37251. ]
  37252. ))
  37253. characterMakers.push(() => makeCharacter(
  37254. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  37255. {
  37256. front: {
  37257. height: math.unit(5, "feet"),
  37258. weight: math.unit(225, "lb"),
  37259. name: "Front",
  37260. image: {
  37261. source: "./media/characters/cindy/front.svg",
  37262. extra: 1320/1250,
  37263. bottom: 42/1362
  37264. }
  37265. },
  37266. frontDressed: {
  37267. height: math.unit(5, "feet"),
  37268. weight: math.unit(225, "lb"),
  37269. name: "Front (Dressed)",
  37270. image: {
  37271. source: "./media/characters/cindy/front-dressed.svg",
  37272. extra: 1320/1250,
  37273. bottom: 42/1362
  37274. }
  37275. },
  37276. back: {
  37277. height: math.unit(5, "feet"),
  37278. weight: math.unit(225, "lb"),
  37279. name: "Back",
  37280. image: {
  37281. source: "./media/characters/cindy/back.svg",
  37282. extra: 1384/1346,
  37283. bottom: 14/1398
  37284. }
  37285. },
  37286. },
  37287. [
  37288. {
  37289. name: "Normal",
  37290. height: math.unit(5, "feet"),
  37291. default: true
  37292. },
  37293. ]
  37294. ))
  37295. characterMakers.push(() => makeCharacter(
  37296. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  37297. {
  37298. front: {
  37299. height: math.unit(6 + 9/12, "feet"),
  37300. weight: math.unit(440, "lb"),
  37301. name: "Front",
  37302. image: {
  37303. source: "./media/characters/wilbur-owen/front.svg",
  37304. extra: 1575/1448,
  37305. bottom: 72/1647
  37306. }
  37307. },
  37308. back: {
  37309. height: math.unit(6 + 9/12, "feet"),
  37310. weight: math.unit(440, "lb"),
  37311. name: "Back",
  37312. image: {
  37313. source: "./media/characters/wilbur-owen/back.svg",
  37314. extra: 1578/1445,
  37315. bottom: 36/1614
  37316. }
  37317. },
  37318. },
  37319. [
  37320. {
  37321. name: "Normal",
  37322. height: math.unit(6 + 9/12, "feet"),
  37323. default: true
  37324. },
  37325. ]
  37326. ))
  37327. characterMakers.push(() => makeCharacter(
  37328. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  37329. {
  37330. front: {
  37331. height: math.unit(6 + 5/12, "feet"),
  37332. weight: math.unit(650, "lb"),
  37333. name: "Front",
  37334. image: {
  37335. source: "./media/characters/keegan/front.svg",
  37336. extra: 2387/2198,
  37337. bottom: 33/2420
  37338. }
  37339. },
  37340. side: {
  37341. height: math.unit(6 + 5/12, "feet"),
  37342. weight: math.unit(650, "lb"),
  37343. name: "Side",
  37344. image: {
  37345. source: "./media/characters/keegan/side.svg",
  37346. extra: 2390/2202,
  37347. bottom: 47/2437
  37348. }
  37349. },
  37350. back: {
  37351. height: math.unit(6 + 5/12, "feet"),
  37352. weight: math.unit(650, "lb"),
  37353. name: "Back",
  37354. image: {
  37355. source: "./media/characters/keegan/back.svg",
  37356. extra: 2418/2268,
  37357. bottom: 15/2433
  37358. }
  37359. },
  37360. frontSfw: {
  37361. height: math.unit(6 + 5/12, "feet"),
  37362. weight: math.unit(650, "lb"),
  37363. name: "Front (SFW)",
  37364. image: {
  37365. source: "./media/characters/keegan/front-sfw.svg",
  37366. extra: 2387/2198,
  37367. bottom: 33/2420
  37368. }
  37369. },
  37370. beans: {
  37371. height: math.unit(1.85, "feet"),
  37372. name: "Beans",
  37373. image: {
  37374. source: "./media/characters/keegan/beans.svg"
  37375. }
  37376. },
  37377. },
  37378. [
  37379. {
  37380. name: "Normal",
  37381. height: math.unit(6 + 5/12, "feet"),
  37382. default: true
  37383. },
  37384. ]
  37385. ))
  37386. characterMakers.push(() => makeCharacter(
  37387. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  37388. {
  37389. front: {
  37390. height: math.unit(9, "feet"),
  37391. name: "Front",
  37392. image: {
  37393. source: "./media/characters/colton/front.svg",
  37394. extra: 1589/1326,
  37395. bottom: 139/1728
  37396. }
  37397. },
  37398. },
  37399. [
  37400. {
  37401. name: "Normal",
  37402. height: math.unit(9, "feet"),
  37403. default: true
  37404. },
  37405. ]
  37406. ))
  37407. characterMakers.push(() => makeCharacter(
  37408. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  37409. {
  37410. front: {
  37411. height: math.unit(2 + 9/12, "feet"),
  37412. name: "Front",
  37413. image: {
  37414. source: "./media/characters/bora/front.svg",
  37415. extra: 1265/1250,
  37416. bottom: 24/1289
  37417. }
  37418. },
  37419. },
  37420. [
  37421. {
  37422. name: "Normal",
  37423. height: math.unit(2 + 9/12, "feet"),
  37424. default: true
  37425. },
  37426. ]
  37427. ))
  37428. characterMakers.push(() => makeCharacter(
  37429. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  37430. {
  37431. front: {
  37432. height: math.unit(8, "feet"),
  37433. name: "Front",
  37434. image: {
  37435. source: "./media/characters/myu-myu/front.svg",
  37436. extra: 1949/1857,
  37437. bottom: 90/2039
  37438. }
  37439. },
  37440. },
  37441. [
  37442. {
  37443. name: "Normal",
  37444. height: math.unit(8, "feet"),
  37445. default: true
  37446. },
  37447. {
  37448. name: "Big",
  37449. height: math.unit(15, "feet")
  37450. },
  37451. {
  37452. name: "BIG",
  37453. height: math.unit(25, "feet")
  37454. },
  37455. ]
  37456. ))
  37457. characterMakers.push(() => makeCharacter(
  37458. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  37459. {
  37460. side: {
  37461. height: math.unit(7 + 5/12, "feet"),
  37462. weight: math.unit(2800, "lb"),
  37463. name: "Side",
  37464. image: {
  37465. source: "./media/characters/haloren/side.svg",
  37466. extra: 1793/409,
  37467. bottom: 59/1852
  37468. }
  37469. },
  37470. frontPaw: {
  37471. height: math.unit(2.36, "feet"),
  37472. name: "Front paw",
  37473. image: {
  37474. source: "./media/characters/haloren/front-paw.svg"
  37475. }
  37476. },
  37477. hindPaw: {
  37478. height: math.unit(3.18, "feet"),
  37479. name: "Hind paw",
  37480. image: {
  37481. source: "./media/characters/haloren/hind-paw.svg"
  37482. }
  37483. },
  37484. maw: {
  37485. height: math.unit(5.05, "feet"),
  37486. name: "Maw",
  37487. image: {
  37488. source: "./media/characters/haloren/maw.svg"
  37489. }
  37490. },
  37491. dick: {
  37492. height: math.unit(2.90, "feet"),
  37493. name: "Dick",
  37494. image: {
  37495. source: "./media/characters/haloren/dick.svg"
  37496. }
  37497. },
  37498. },
  37499. [
  37500. {
  37501. name: "Normal",
  37502. height: math.unit(7 + 5/12, "feet"),
  37503. default: true
  37504. },
  37505. {
  37506. name: "Enhanced",
  37507. height: math.unit(14 + 3/12, "feet")
  37508. },
  37509. ]
  37510. ))
  37511. characterMakers.push(() => makeCharacter(
  37512. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  37513. {
  37514. front: {
  37515. height: math.unit(171, "cm"),
  37516. name: "Front",
  37517. image: {
  37518. source: "./media/characters/kimmy/front.svg",
  37519. extra: 1491/1435,
  37520. bottom: 53/1544
  37521. }
  37522. },
  37523. },
  37524. [
  37525. {
  37526. name: "Small",
  37527. height: math.unit(9, "cm")
  37528. },
  37529. {
  37530. name: "Normal",
  37531. height: math.unit(171, "cm"),
  37532. default: true
  37533. },
  37534. ]
  37535. ))
  37536. characterMakers.push(() => makeCharacter(
  37537. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  37538. {
  37539. front: {
  37540. height: math.unit(8, "feet"),
  37541. weight: math.unit(300, "lb"),
  37542. name: "Front",
  37543. image: {
  37544. source: "./media/characters/galeboomer/front.svg",
  37545. extra: 4651/4415,
  37546. bottom: 162/4813
  37547. }
  37548. },
  37549. back: {
  37550. height: math.unit(8, "feet"),
  37551. weight: math.unit(300, "lb"),
  37552. name: "Back",
  37553. image: {
  37554. source: "./media/characters/galeboomer/back.svg",
  37555. extra: 4544/4314,
  37556. bottom: 16/4560
  37557. }
  37558. },
  37559. frontAlt: {
  37560. height: math.unit(8, "feet"),
  37561. weight: math.unit(300, "lb"),
  37562. name: "Front (Alt)",
  37563. image: {
  37564. source: "./media/characters/galeboomer/front-alt.svg",
  37565. extra: 4458/4228,
  37566. bottom: 68/4526
  37567. }
  37568. },
  37569. maw: {
  37570. height: math.unit(1.2, "feet"),
  37571. name: "Maw",
  37572. image: {
  37573. source: "./media/characters/galeboomer/maw.svg"
  37574. }
  37575. },
  37576. },
  37577. [
  37578. {
  37579. name: "Normal",
  37580. height: math.unit(8, "feet"),
  37581. default: true
  37582. },
  37583. ]
  37584. ))
  37585. characterMakers.push(() => makeCharacter(
  37586. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  37587. {
  37588. front: {
  37589. height: math.unit(5 + 9/12, "feet"),
  37590. weight: math.unit(120, "lb"),
  37591. name: "Front",
  37592. image: {
  37593. source: "./media/characters/chyr/front.svg",
  37594. extra: 1323/1254,
  37595. bottom: 63/1386
  37596. }
  37597. },
  37598. back: {
  37599. height: math.unit(5 + 9/12, "feet"),
  37600. weight: math.unit(120, "lb"),
  37601. name: "Back",
  37602. image: {
  37603. source: "./media/characters/chyr/back.svg",
  37604. extra: 1323/1252,
  37605. bottom: 48/1371
  37606. }
  37607. },
  37608. },
  37609. [
  37610. {
  37611. name: "Normal",
  37612. height: math.unit(5 + 9/12, "feet"),
  37613. default: true
  37614. },
  37615. ]
  37616. ))
  37617. characterMakers.push(() => makeCharacter(
  37618. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  37619. {
  37620. front: {
  37621. height: math.unit(7, "feet"),
  37622. weight: math.unit(310, "lb"),
  37623. name: "Front",
  37624. image: {
  37625. source: "./media/characters/solarus/front.svg",
  37626. extra: 2415/2021,
  37627. bottom: 103/2518
  37628. }
  37629. },
  37630. back: {
  37631. height: math.unit(7, "feet"),
  37632. weight: math.unit(310, "lb"),
  37633. name: "Back",
  37634. image: {
  37635. source: "./media/characters/solarus/back.svg",
  37636. extra: 2463/2089,
  37637. bottom: 79/2542
  37638. }
  37639. },
  37640. },
  37641. [
  37642. {
  37643. name: "Normal",
  37644. height: math.unit(7, "feet"),
  37645. default: true
  37646. },
  37647. ]
  37648. ))
  37649. characterMakers.push(() => makeCharacter(
  37650. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  37651. {
  37652. front: {
  37653. height: math.unit(16, "feet"),
  37654. name: "Front",
  37655. image: {
  37656. source: "./media/characters/mutsuju-koizaemon/front.svg",
  37657. extra: 1844/1780,
  37658. bottom: 58/1902
  37659. }
  37660. },
  37661. winterCoat: {
  37662. height: math.unit(16, "feet"),
  37663. name: "Winter Coat",
  37664. image: {
  37665. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  37666. extra: 1807/1775,
  37667. bottom: 69/1876
  37668. }
  37669. },
  37670. },
  37671. [
  37672. {
  37673. name: "Normal",
  37674. height: math.unit(16, "feet"),
  37675. default: true
  37676. },
  37677. {
  37678. name: "Chicago Size",
  37679. height: math.unit(560, "feet")
  37680. },
  37681. ]
  37682. ))
  37683. characterMakers.push(() => makeCharacter(
  37684. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  37685. {
  37686. front: {
  37687. height: math.unit(11 + 6/12, "feet"),
  37688. weight: math.unit(1366, "lb"),
  37689. name: "Front",
  37690. image: {
  37691. source: "./media/characters/lexor/front.svg",
  37692. extra: 1560/1481,
  37693. bottom: 211/1771
  37694. }
  37695. },
  37696. back: {
  37697. height: math.unit(11 + 6/12, "feet"),
  37698. weight: math.unit(1366, "lb"),
  37699. name: "Back",
  37700. image: {
  37701. source: "./media/characters/lexor/back.svg",
  37702. extra: 1614/1533,
  37703. bottom: 76/1690
  37704. }
  37705. },
  37706. maw: {
  37707. height: math.unit(3, "feet"),
  37708. name: "Maw",
  37709. image: {
  37710. source: "./media/characters/lexor/maw.svg"
  37711. }
  37712. },
  37713. dick: {
  37714. height: math.unit(2.59, "feet"),
  37715. name: "Dick",
  37716. image: {
  37717. source: "./media/characters/lexor/dick.svg"
  37718. }
  37719. },
  37720. },
  37721. [
  37722. {
  37723. name: "Normal",
  37724. height: math.unit(11 + 6/12, "feet"),
  37725. default: true
  37726. },
  37727. ]
  37728. ))
  37729. characterMakers.push(() => makeCharacter(
  37730. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  37731. {
  37732. front: {
  37733. height: math.unit(5 + 8/12, "feet"),
  37734. name: "Front",
  37735. image: {
  37736. source: "./media/characters/magnum/front.svg",
  37737. extra: 942/855,
  37738. bottom: 26/968
  37739. }
  37740. },
  37741. },
  37742. [
  37743. {
  37744. name: "Normal",
  37745. height: math.unit(5 + 8/12, "feet"),
  37746. default: true
  37747. },
  37748. ]
  37749. ))
  37750. characterMakers.push(() => makeCharacter(
  37751. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  37752. {
  37753. front: {
  37754. height: math.unit(18 + 4/12, "feet"),
  37755. weight: math.unit(1500, "kg"),
  37756. name: "Front",
  37757. image: {
  37758. source: "./media/characters/solas-sharpsman/front.svg",
  37759. extra: 1698/1589,
  37760. bottom: 0/1698
  37761. }
  37762. },
  37763. },
  37764. [
  37765. {
  37766. name: "Normal",
  37767. height: math.unit(18 + 4/12, "feet"),
  37768. default: true
  37769. },
  37770. ]
  37771. ))
  37772. characterMakers.push(() => makeCharacter(
  37773. { name: "October", species: ["tiger"], tags: ["anthro"] },
  37774. {
  37775. front: {
  37776. height: math.unit(5 + 5/12, "feet"),
  37777. weight: math.unit(180, "lb"),
  37778. name: "Front",
  37779. image: {
  37780. source: "./media/characters/october/front.svg",
  37781. extra: 1800/1650,
  37782. bottom: 0/1800
  37783. }
  37784. },
  37785. frontNsfw: {
  37786. height: math.unit(5 + 5/12, "feet"),
  37787. weight: math.unit(180, "lb"),
  37788. name: "Front (NSFW)",
  37789. image: {
  37790. source: "./media/characters/october/front-nsfw.svg",
  37791. extra: 1392/1307,
  37792. bottom: 42/1434
  37793. }
  37794. },
  37795. },
  37796. [
  37797. {
  37798. name: "Normal",
  37799. height: math.unit(5 + 5/12, "feet"),
  37800. default: true
  37801. },
  37802. ]
  37803. ))
  37804. characterMakers.push(() => makeCharacter(
  37805. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  37806. {
  37807. front: {
  37808. height: math.unit(8 + 6/12, "feet"),
  37809. name: "Front",
  37810. image: {
  37811. source: "./media/characters/essynkardi/front.svg",
  37812. extra: 1914/1846,
  37813. bottom: 22/1936
  37814. }
  37815. },
  37816. },
  37817. [
  37818. {
  37819. name: "Normal",
  37820. height: math.unit(8 + 6/12, "feet"),
  37821. default: true
  37822. },
  37823. ]
  37824. ))
  37825. characterMakers.push(() => makeCharacter(
  37826. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  37827. {
  37828. front: {
  37829. height: math.unit(6 + 6/12, "feet"),
  37830. weight: math.unit(7, "lb"),
  37831. name: "Front",
  37832. image: {
  37833. source: "./media/characters/icky/front.svg",
  37834. extra: 813/782,
  37835. bottom: 66/879
  37836. }
  37837. },
  37838. back: {
  37839. height: math.unit(6 + 6/12, "feet"),
  37840. weight: math.unit(7, "lb"),
  37841. name: "Back",
  37842. image: {
  37843. source: "./media/characters/icky/back.svg",
  37844. extra: 754/735,
  37845. bottom: 56/810
  37846. }
  37847. },
  37848. },
  37849. [
  37850. {
  37851. name: "Normal",
  37852. height: math.unit(6 + 6/12, "feet"),
  37853. default: true
  37854. },
  37855. ]
  37856. ))
  37857. characterMakers.push(() => makeCharacter(
  37858. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  37859. {
  37860. front: {
  37861. height: math.unit(15, "feet"),
  37862. name: "Front",
  37863. image: {
  37864. source: "./media/characters/rojas/front.svg",
  37865. extra: 1462/1408,
  37866. bottom: 95/1557
  37867. }
  37868. },
  37869. back: {
  37870. height: math.unit(15, "feet"),
  37871. name: "Back",
  37872. image: {
  37873. source: "./media/characters/rojas/back.svg",
  37874. extra: 1023/954,
  37875. bottom: 28/1051
  37876. }
  37877. },
  37878. },
  37879. [
  37880. {
  37881. name: "Normal",
  37882. height: math.unit(15, "feet"),
  37883. default: true
  37884. },
  37885. ]
  37886. ))
  37887. characterMakers.push(() => makeCharacter(
  37888. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  37889. {
  37890. frontHuman: {
  37891. height: math.unit(5 + 7/12, "feet"),
  37892. name: "Front (Human)",
  37893. image: {
  37894. source: "./media/characters/alek-dryagan/front-human.svg",
  37895. extra: 1687/1667,
  37896. bottom: 69/1756
  37897. }
  37898. },
  37899. backHuman: {
  37900. height: math.unit(5 + 7/12, "feet"),
  37901. name: "Back (Human)",
  37902. image: {
  37903. source: "./media/characters/alek-dryagan/back-human.svg",
  37904. extra: 1670/1649,
  37905. bottom: 65/1735
  37906. }
  37907. },
  37908. frontDemi: {
  37909. height: math.unit(65, "feet"),
  37910. name: "Front (Demi)",
  37911. image: {
  37912. source: "./media/characters/alek-dryagan/front-demi.svg",
  37913. extra: 1669/1642,
  37914. bottom: 49/1718
  37915. }
  37916. },
  37917. backDemi: {
  37918. height: math.unit(65, "feet"),
  37919. name: "Back (Demi)",
  37920. image: {
  37921. source: "./media/characters/alek-dryagan/back-demi.svg",
  37922. extra: 1658/1637,
  37923. bottom: 40/1698
  37924. }
  37925. },
  37926. mawHuman: {
  37927. height: math.unit(0.3, "feet"),
  37928. name: "Maw (Human)",
  37929. image: {
  37930. source: "./media/characters/alek-dryagan/maw-human.svg"
  37931. }
  37932. },
  37933. mawDemi: {
  37934. height: math.unit(3.8, "feet"),
  37935. name: "Maw (Demi)",
  37936. image: {
  37937. source: "./media/characters/alek-dryagan/maw-demi.svg"
  37938. }
  37939. },
  37940. },
  37941. [
  37942. {
  37943. name: "Normal",
  37944. height: math.unit(5 + 7/12, "feet"),
  37945. default: true
  37946. },
  37947. ]
  37948. ))
  37949. characterMakers.push(() => makeCharacter(
  37950. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  37951. {
  37952. frontHuman: {
  37953. height: math.unit(5 + 2/12, "feet"),
  37954. name: "Front (Human)",
  37955. image: {
  37956. source: "./media/characters/gen/front-human.svg",
  37957. extra: 1627/1538,
  37958. bottom: 71/1698
  37959. }
  37960. },
  37961. backHuman: {
  37962. height: math.unit(5 + 2/12, "feet"),
  37963. name: "Back (Human)",
  37964. image: {
  37965. source: "./media/characters/gen/back-human.svg",
  37966. extra: 1638/1548,
  37967. bottom: 69/1707
  37968. }
  37969. },
  37970. frontDemi: {
  37971. height: math.unit(5 + 2/12, "feet"),
  37972. name: "Front (Demi)",
  37973. image: {
  37974. source: "./media/characters/gen/front-demi.svg",
  37975. extra: 1627/1538,
  37976. bottom: 71/1698
  37977. }
  37978. },
  37979. backDemi: {
  37980. height: math.unit(5 + 2/12, "feet"),
  37981. name: "Back (Demi)",
  37982. image: {
  37983. source: "./media/characters/gen/back-demi.svg",
  37984. extra: 1638/1548,
  37985. bottom: 69/1707
  37986. }
  37987. },
  37988. },
  37989. [
  37990. {
  37991. name: "Normal",
  37992. height: math.unit(5 + 2/12, "feet"),
  37993. default: true
  37994. },
  37995. ]
  37996. ))
  37997. characterMakers.push(() => makeCharacter(
  37998. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  37999. {
  38000. frontImp: {
  38001. height: math.unit(1 + 11/12, "feet"),
  38002. name: "Front (Imp)",
  38003. image: {
  38004. source: "./media/characters/max-kobold/front-imp.svg",
  38005. extra: 1238/1134,
  38006. bottom: 81/1319
  38007. }
  38008. },
  38009. backImp: {
  38010. height: math.unit(1 + 11/12, "feet"),
  38011. name: "Back (Imp)",
  38012. image: {
  38013. source: "./media/characters/max-kobold/back-imp.svg",
  38014. extra: 1334/1175,
  38015. bottom: 34/1368
  38016. }
  38017. },
  38018. frontDemi: {
  38019. height: math.unit(5 + 9/12, "feet"),
  38020. name: "Front (Demi)",
  38021. image: {
  38022. source: "./media/characters/max-kobold/front-demi.svg",
  38023. extra: 1715/1685,
  38024. bottom: 54/1769
  38025. }
  38026. },
  38027. backDemi: {
  38028. height: math.unit(5 + 9/12, "feet"),
  38029. name: "Back (Demi)",
  38030. image: {
  38031. source: "./media/characters/max-kobold/back-demi.svg",
  38032. extra: 1752/1729,
  38033. bottom: 41/1793
  38034. }
  38035. },
  38036. handImp: {
  38037. height: math.unit(0.45, "feet"),
  38038. name: "Hand (Imp)",
  38039. image: {
  38040. source: "./media/characters/max-kobold/hand.svg"
  38041. }
  38042. },
  38043. pawImp: {
  38044. height: math.unit(0.46, "feet"),
  38045. name: "Paw (Imp)",
  38046. image: {
  38047. source: "./media/characters/max-kobold/paw.svg"
  38048. }
  38049. },
  38050. handDemi: {
  38051. height: math.unit(0.80, "feet"),
  38052. name: "Hand (Demi)",
  38053. image: {
  38054. source: "./media/characters/max-kobold/hand.svg"
  38055. }
  38056. },
  38057. pawDemi: {
  38058. height: math.unit(1.1, "feet"),
  38059. name: "Paw (Demi)",
  38060. image: {
  38061. source: "./media/characters/max-kobold/paw.svg"
  38062. }
  38063. },
  38064. headImp: {
  38065. height: math.unit(1.33, "feet"),
  38066. name: "Head (Imp)",
  38067. image: {
  38068. source: "./media/characters/max-kobold/head-imp.svg"
  38069. }
  38070. },
  38071. mawImp: {
  38072. height: math.unit(0.75, "feet"),
  38073. name: "Maw (Imp)",
  38074. image: {
  38075. source: "./media/characters/max-kobold/maw-imp.svg"
  38076. }
  38077. },
  38078. mawDemi: {
  38079. height: math.unit(0.42, "feet"),
  38080. name: "Maw (Demi)",
  38081. image: {
  38082. source: "./media/characters/max-kobold/maw-demi.svg"
  38083. }
  38084. },
  38085. },
  38086. [
  38087. {
  38088. name: "Normal",
  38089. height: math.unit(1 + 11/12, "feet"),
  38090. default: true
  38091. },
  38092. ]
  38093. ))
  38094. characterMakers.push(() => makeCharacter(
  38095. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  38096. {
  38097. front: {
  38098. height: math.unit(7 + 5/12, "feet"),
  38099. name: "Front",
  38100. image: {
  38101. source: "./media/characters/carbon/front.svg",
  38102. extra: 1754/1689,
  38103. bottom: 65/1819
  38104. }
  38105. },
  38106. back: {
  38107. height: math.unit(7 + 5/12, "feet"),
  38108. name: "Back",
  38109. image: {
  38110. source: "./media/characters/carbon/back.svg",
  38111. extra: 1762/1695,
  38112. bottom: 24/1786
  38113. }
  38114. },
  38115. frontGigantamax: {
  38116. height: math.unit(150, "feet"),
  38117. name: "Front (Gigantamax)",
  38118. image: {
  38119. source: "./media/characters/carbon/front-gigantamax.svg",
  38120. extra: 1826/1669,
  38121. bottom: 59/1885
  38122. }
  38123. },
  38124. backGigantamax: {
  38125. height: math.unit(150, "feet"),
  38126. name: "Back (Gigantamax)",
  38127. image: {
  38128. source: "./media/characters/carbon/back-gigantamax.svg",
  38129. extra: 1796/1653,
  38130. bottom: 53/1849
  38131. }
  38132. },
  38133. maw: {
  38134. height: math.unit(0.48, "feet"),
  38135. name: "Maw",
  38136. image: {
  38137. source: "./media/characters/carbon/maw.svg"
  38138. }
  38139. },
  38140. mawGigantamax: {
  38141. height: math.unit(7.5, "feet"),
  38142. name: "Maw (Gigantamax)",
  38143. image: {
  38144. source: "./media/characters/carbon/maw-gigantamax.svg"
  38145. }
  38146. },
  38147. },
  38148. [
  38149. {
  38150. name: "Normal",
  38151. height: math.unit(7 + 5/12, "feet"),
  38152. default: true
  38153. },
  38154. ]
  38155. ))
  38156. characterMakers.push(() => makeCharacter(
  38157. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  38158. {
  38159. front: {
  38160. height: math.unit(6, "feet"),
  38161. name: "Front",
  38162. image: {
  38163. source: "./media/characters/maverick/front.svg",
  38164. extra: 1672/1661,
  38165. bottom: 85/1757
  38166. }
  38167. },
  38168. back: {
  38169. height: math.unit(6, "feet"),
  38170. name: "Back",
  38171. image: {
  38172. source: "./media/characters/maverick/back.svg",
  38173. extra: 1642/1631,
  38174. bottom: 38/1680
  38175. }
  38176. },
  38177. },
  38178. [
  38179. {
  38180. name: "Normal",
  38181. height: math.unit(6, "feet"),
  38182. default: true
  38183. },
  38184. ]
  38185. ))
  38186. characterMakers.push(() => makeCharacter(
  38187. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  38188. {
  38189. front: {
  38190. height: math.unit(15, "feet"),
  38191. weight: math.unit(615, "lb"),
  38192. name: "Front",
  38193. image: {
  38194. source: "./media/characters/grockle/front.svg",
  38195. extra: 1535/1427,
  38196. bottom: 56/1591
  38197. }
  38198. },
  38199. },
  38200. [
  38201. {
  38202. name: "Normal",
  38203. height: math.unit(15, "feet"),
  38204. default: true
  38205. },
  38206. {
  38207. name: "Large",
  38208. height: math.unit(150, "feet")
  38209. },
  38210. {
  38211. name: "Macro",
  38212. height: math.unit(1876, "feet")
  38213. },
  38214. {
  38215. name: "Mega Macro",
  38216. height: math.unit(121940, "feet")
  38217. },
  38218. {
  38219. name: "Giga Macro",
  38220. height: math.unit(750, "km")
  38221. },
  38222. {
  38223. name: "Tera Macro",
  38224. height: math.unit(750000, "km")
  38225. },
  38226. {
  38227. name: "Galactic",
  38228. height: math.unit(1.4e5, "km")
  38229. },
  38230. {
  38231. name: "Godlike",
  38232. height: math.unit(9.8e280, "galaxies")
  38233. },
  38234. ]
  38235. ))
  38236. characterMakers.push(() => makeCharacter(
  38237. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  38238. {
  38239. front: {
  38240. height: math.unit(11, "meters"),
  38241. weight: math.unit(20, "tonnes"),
  38242. name: "Front",
  38243. image: {
  38244. source: "./media/characters/alistair/front.svg",
  38245. extra: 1265/1009,
  38246. bottom: 93/1358
  38247. }
  38248. },
  38249. },
  38250. [
  38251. {
  38252. name: "Normal",
  38253. height: math.unit(11, "meters"),
  38254. default: true
  38255. },
  38256. ]
  38257. ))
  38258. characterMakers.push(() => makeCharacter(
  38259. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  38260. {
  38261. front: {
  38262. height: math.unit(5 + 8/12, "feet"),
  38263. name: "Front",
  38264. image: {
  38265. source: "./media/characters/haruka/front.svg",
  38266. extra: 2012/1952,
  38267. bottom: 0/2012
  38268. }
  38269. },
  38270. },
  38271. [
  38272. {
  38273. name: "Normal",
  38274. height: math.unit(5 + 8/12, "feet"),
  38275. default: true
  38276. },
  38277. ]
  38278. ))
  38279. characterMakers.push(() => makeCharacter(
  38280. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  38281. {
  38282. back: {
  38283. height: math.unit(9, "feet"),
  38284. name: "Back",
  38285. image: {
  38286. source: "./media/characters/vivian-sylveon/back.svg",
  38287. extra: 1853/1714,
  38288. bottom: 0/1853
  38289. }
  38290. },
  38291. },
  38292. [
  38293. {
  38294. name: "Normal",
  38295. height: math.unit(9, "feet"),
  38296. default: true
  38297. },
  38298. {
  38299. name: "Macro",
  38300. height: math.unit(500, "feet")
  38301. },
  38302. {
  38303. name: "Megamacro",
  38304. height: math.unit(600, "miles")
  38305. },
  38306. {
  38307. name: "Gigamacro",
  38308. height: math.unit(30000, "miles")
  38309. },
  38310. ]
  38311. ))
  38312. characterMakers.push(() => makeCharacter(
  38313. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  38314. {
  38315. anthro: {
  38316. height: math.unit(5 + 10/12, "feet"),
  38317. weight: math.unit(100, "lb"),
  38318. name: "Anthro",
  38319. image: {
  38320. source: "./media/characters/daiki/anthro.svg",
  38321. extra: 1115/1027,
  38322. bottom: 69/1184
  38323. }
  38324. },
  38325. feral: {
  38326. height: math.unit(200, "feet"),
  38327. name: "Feral",
  38328. image: {
  38329. source: "./media/characters/daiki/feral.svg",
  38330. extra: 1256/313,
  38331. bottom: 39/1295
  38332. }
  38333. },
  38334. feralHead: {
  38335. height: math.unit(171, "feet"),
  38336. name: "Feral Head",
  38337. image: {
  38338. source: "./media/characters/daiki/feral-head.svg"
  38339. }
  38340. },
  38341. manaDragon: {
  38342. height: math.unit(170, "meters"),
  38343. name: "Mana-dragon",
  38344. image: {
  38345. source: "./media/characters/daiki/mana-dragon.svg",
  38346. extra: 763/420,
  38347. bottom: 97/860
  38348. }
  38349. },
  38350. },
  38351. [
  38352. {
  38353. name: "Normal",
  38354. height: math.unit(5 + 10/12, "feet"),
  38355. default: true
  38356. },
  38357. ]
  38358. ))
  38359. characterMakers.push(() => makeCharacter(
  38360. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  38361. {
  38362. fullyEquippedFront: {
  38363. height: math.unit(3 + 1/12, "feet"),
  38364. weight: math.unit(24, "lb"),
  38365. name: "Fully Equipped (Front)",
  38366. image: {
  38367. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  38368. extra: 687/605,
  38369. bottom: 18/705
  38370. }
  38371. },
  38372. fullyEquippedBack: {
  38373. height: math.unit(3 + 1/12, "feet"),
  38374. weight: math.unit(24, "lb"),
  38375. name: "Fully Equipped (Back)",
  38376. image: {
  38377. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  38378. extra: 689/590,
  38379. bottom: 18/707
  38380. }
  38381. },
  38382. dailyWear: {
  38383. height: math.unit(3 + 1/12, "feet"),
  38384. weight: math.unit(24, "lb"),
  38385. name: "Daily Wear",
  38386. image: {
  38387. source: "./media/characters/tea-spot/daily-wear.svg",
  38388. extra: 701/620,
  38389. bottom: 21/722
  38390. }
  38391. },
  38392. maidWork: {
  38393. height: math.unit(3 + 1/12, "feet"),
  38394. weight: math.unit(24, "lb"),
  38395. name: "Maid Work",
  38396. image: {
  38397. source: "./media/characters/tea-spot/maid-work.svg",
  38398. extra: 693/609,
  38399. bottom: 15/708
  38400. }
  38401. },
  38402. },
  38403. [
  38404. {
  38405. name: "Normal",
  38406. height: math.unit(3 + 1/12, "feet"),
  38407. default: true
  38408. },
  38409. ]
  38410. ))
  38411. characterMakers.push(() => makeCharacter(
  38412. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  38413. {
  38414. front: {
  38415. height: math.unit(175, "cm"),
  38416. weight: math.unit(75, "kg"),
  38417. name: "Front",
  38418. image: {
  38419. source: "./media/characters/chee/front.svg",
  38420. extra: 1796/1740,
  38421. bottom: 40/1836
  38422. }
  38423. },
  38424. },
  38425. [
  38426. {
  38427. name: "Micro-Micro",
  38428. height: math.unit(1, "nm")
  38429. },
  38430. {
  38431. name: "Micro-erst",
  38432. height: math.unit(1, "micrometer")
  38433. },
  38434. {
  38435. name: "Micro-er",
  38436. height: math.unit(1, "cm")
  38437. },
  38438. {
  38439. name: "Normal",
  38440. height: math.unit(175, "cm"),
  38441. default: true
  38442. },
  38443. {
  38444. name: "Macro",
  38445. height: math.unit(100, "m")
  38446. },
  38447. {
  38448. name: "Macro-er",
  38449. height: math.unit(1, "km")
  38450. },
  38451. {
  38452. name: "Macro-erst",
  38453. height: math.unit(10, "km")
  38454. },
  38455. {
  38456. name: "Macro-Macro",
  38457. height: math.unit(100, "km")
  38458. },
  38459. ]
  38460. ))
  38461. characterMakers.push(() => makeCharacter(
  38462. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  38463. {
  38464. front: {
  38465. height: math.unit(11 + 9/12, "feet"),
  38466. weight: math.unit(935, "lb"),
  38467. name: "Front",
  38468. image: {
  38469. source: "./media/characters/kingsley/front.svg",
  38470. extra: 1803/1674,
  38471. bottom: 127/1930
  38472. }
  38473. },
  38474. frontNude: {
  38475. height: math.unit(11 + 9/12, "feet"),
  38476. weight: math.unit(935, "lb"),
  38477. name: "Front (Nude)",
  38478. image: {
  38479. source: "./media/characters/kingsley/front-nude.svg",
  38480. extra: 1803/1674,
  38481. bottom: 127/1930
  38482. }
  38483. },
  38484. },
  38485. [
  38486. {
  38487. name: "Normal",
  38488. height: math.unit(11 + 9/12, "feet"),
  38489. default: true
  38490. },
  38491. ]
  38492. ))
  38493. characterMakers.push(() => makeCharacter(
  38494. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  38495. {
  38496. side: {
  38497. height: math.unit(9, "feet"),
  38498. name: "Side",
  38499. image: {
  38500. source: "./media/characters/rymel/side.svg",
  38501. extra: 792/469,
  38502. bottom: 121/913
  38503. }
  38504. },
  38505. maw: {
  38506. height: math.unit(2.4, "meters"),
  38507. name: "Maw",
  38508. image: {
  38509. source: "./media/characters/rymel/maw.svg"
  38510. }
  38511. },
  38512. },
  38513. [
  38514. {
  38515. name: "House Drake",
  38516. height: math.unit(2, "feet")
  38517. },
  38518. {
  38519. name: "Reduced",
  38520. height: math.unit(4.5, "feet")
  38521. },
  38522. {
  38523. name: "Normal",
  38524. height: math.unit(9, "feet"),
  38525. default: true
  38526. },
  38527. ]
  38528. ))
  38529. characterMakers.push(() => makeCharacter(
  38530. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  38531. {
  38532. front: {
  38533. height: math.unit(1.74, "meters"),
  38534. weight: math.unit(55, "kg"),
  38535. name: "Front",
  38536. image: {
  38537. source: "./media/characters/rubus/front.svg",
  38538. extra: 1894/1742,
  38539. bottom: 44/1938
  38540. }
  38541. },
  38542. },
  38543. [
  38544. {
  38545. name: "Normal",
  38546. height: math.unit(1.74, "meters"),
  38547. default: true
  38548. },
  38549. ]
  38550. ))
  38551. characterMakers.push(() => makeCharacter(
  38552. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  38553. {
  38554. front: {
  38555. height: math.unit(5 + 2/12, "feet"),
  38556. weight: math.unit(112, "lb"),
  38557. name: "Front",
  38558. image: {
  38559. source: "./media/characters/cassie-kingston/front.svg",
  38560. extra: 1438/1390,
  38561. bottom: 47/1485
  38562. }
  38563. },
  38564. },
  38565. [
  38566. {
  38567. name: "Normal",
  38568. height: math.unit(5 + 2/12, "feet"),
  38569. default: true
  38570. },
  38571. {
  38572. name: "Macro",
  38573. height: math.unit(128, "feet")
  38574. },
  38575. {
  38576. name: "Megamacro",
  38577. height: math.unit(2.56, "miles")
  38578. },
  38579. ]
  38580. ))
  38581. characterMakers.push(() => makeCharacter(
  38582. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  38583. {
  38584. front: {
  38585. height: math.unit(7, "feet"),
  38586. name: "Front",
  38587. image: {
  38588. source: "./media/characters/fox/front.svg",
  38589. extra: 1798/1703,
  38590. bottom: 55/1853
  38591. }
  38592. },
  38593. back: {
  38594. height: math.unit(7, "feet"),
  38595. name: "Back",
  38596. image: {
  38597. source: "./media/characters/fox/back.svg",
  38598. extra: 1748/1649,
  38599. bottom: 32/1780
  38600. }
  38601. },
  38602. head: {
  38603. height: math.unit(1.95, "feet"),
  38604. name: "Head",
  38605. image: {
  38606. source: "./media/characters/fox/head.svg"
  38607. }
  38608. },
  38609. dick: {
  38610. height: math.unit(1.33, "feet"),
  38611. name: "Dick",
  38612. image: {
  38613. source: "./media/characters/fox/dick.svg"
  38614. }
  38615. },
  38616. foot: {
  38617. height: math.unit(1, "feet"),
  38618. name: "Foot",
  38619. image: {
  38620. source: "./media/characters/fox/foot.svg"
  38621. }
  38622. },
  38623. paw: {
  38624. height: math.unit(0.92, "feet"),
  38625. name: "Paw",
  38626. image: {
  38627. source: "./media/characters/fox/paw.svg"
  38628. }
  38629. },
  38630. },
  38631. [
  38632. {
  38633. name: "Small",
  38634. height: math.unit(3, "inches")
  38635. },
  38636. {
  38637. name: "\"Realistic\"",
  38638. height: math.unit(7, "feet")
  38639. },
  38640. {
  38641. name: "Normal",
  38642. height: math.unit(150, "feet"),
  38643. default: true
  38644. },
  38645. {
  38646. name: "BIG",
  38647. height: math.unit(1200, "feet")
  38648. },
  38649. {
  38650. name: "👀",
  38651. height: math.unit(5, "miles")
  38652. },
  38653. {
  38654. name: "👀👀👀",
  38655. height: math.unit(64, "miles")
  38656. },
  38657. ]
  38658. ))
  38659. characterMakers.push(() => makeCharacter(
  38660. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  38661. {
  38662. front: {
  38663. height: math.unit(625, "feet"),
  38664. name: "Front",
  38665. image: {
  38666. source: "./media/characters/asonja-rossa/front.svg",
  38667. extra: 1833/1686,
  38668. bottom: 24/1857
  38669. }
  38670. },
  38671. back: {
  38672. height: math.unit(625, "feet"),
  38673. name: "Back",
  38674. image: {
  38675. source: "./media/characters/asonja-rossa/back.svg",
  38676. extra: 1852/1753,
  38677. bottom: 26/1878
  38678. }
  38679. },
  38680. },
  38681. [
  38682. {
  38683. name: "Macro",
  38684. height: math.unit(625, "feet"),
  38685. default: true
  38686. },
  38687. ]
  38688. ))
  38689. characterMakers.push(() => makeCharacter(
  38690. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  38691. {
  38692. side: {
  38693. height: math.unit(8, "feet"),
  38694. name: "Side",
  38695. image: {
  38696. source: "./media/characters/rezukii/side.svg",
  38697. extra: 979/542,
  38698. bottom: 87/1066
  38699. }
  38700. },
  38701. sitting: {
  38702. height: math.unit(14.6, "feet"),
  38703. name: "Sitting",
  38704. image: {
  38705. source: "./media/characters/rezukii/sitting.svg",
  38706. extra: 1023/813,
  38707. bottom: 45/1068
  38708. }
  38709. },
  38710. },
  38711. [
  38712. {
  38713. name: "Tiny",
  38714. height: math.unit(2, "feet")
  38715. },
  38716. {
  38717. name: "Smol",
  38718. height: math.unit(4, "feet")
  38719. },
  38720. {
  38721. name: "Normal",
  38722. height: math.unit(8, "feet"),
  38723. default: true
  38724. },
  38725. {
  38726. name: "Big",
  38727. height: math.unit(12, "feet")
  38728. },
  38729. {
  38730. name: "Macro",
  38731. height: math.unit(30, "feet")
  38732. },
  38733. ]
  38734. ))
  38735. characterMakers.push(() => makeCharacter(
  38736. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  38737. {
  38738. front: {
  38739. height: math.unit(14, "feet"),
  38740. weight: math.unit(9.5, "tonnes"),
  38741. name: "Front",
  38742. image: {
  38743. source: "./media/characters/dawnheart/front.svg",
  38744. extra: 2792/2675,
  38745. bottom: 64/2856
  38746. }
  38747. },
  38748. },
  38749. [
  38750. {
  38751. name: "Normal",
  38752. height: math.unit(14, "feet"),
  38753. default: true
  38754. },
  38755. ]
  38756. ))
  38757. characterMakers.push(() => makeCharacter(
  38758. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  38759. {
  38760. front: {
  38761. height: math.unit(1.7, "m"),
  38762. name: "Front",
  38763. image: {
  38764. source: "./media/characters/gladi/front.svg",
  38765. extra: 1460/1362,
  38766. bottom: 19/1479
  38767. }
  38768. },
  38769. back: {
  38770. height: math.unit(1.7, "m"),
  38771. name: "Back",
  38772. image: {
  38773. source: "./media/characters/gladi/back.svg",
  38774. extra: 1459/1357,
  38775. bottom: 12/1471
  38776. }
  38777. },
  38778. feral: {
  38779. height: math.unit(2.05, "m"),
  38780. name: "Feral",
  38781. image: {
  38782. source: "./media/characters/gladi/feral.svg",
  38783. extra: 821/557,
  38784. bottom: 91/912
  38785. }
  38786. },
  38787. },
  38788. [
  38789. {
  38790. name: "Shortest",
  38791. height: math.unit(70, "cm")
  38792. },
  38793. {
  38794. name: "Normal",
  38795. height: math.unit(1.7, "m")
  38796. },
  38797. {
  38798. name: "Macro",
  38799. height: math.unit(10, "m"),
  38800. default: true
  38801. },
  38802. {
  38803. name: "Tallest",
  38804. height: math.unit(200, "m")
  38805. },
  38806. ]
  38807. ))
  38808. characterMakers.push(() => makeCharacter(
  38809. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  38810. {
  38811. front: {
  38812. height: math.unit(5 + 7/12, "feet"),
  38813. weight: math.unit(2, "tons"),
  38814. name: "Front",
  38815. image: {
  38816. source: "./media/characters/erdno/front.svg",
  38817. extra: 1234/1129,
  38818. bottom: 35/1269
  38819. }
  38820. },
  38821. angled: {
  38822. height: math.unit(5 + 7/12, "feet"),
  38823. weight: math.unit(2, "tons"),
  38824. name: "Angled",
  38825. image: {
  38826. source: "./media/characters/erdno/angled.svg",
  38827. extra: 1185/1139,
  38828. bottom: 36/1221
  38829. }
  38830. },
  38831. side: {
  38832. height: math.unit(5 + 7/12, "feet"),
  38833. weight: math.unit(2, "tons"),
  38834. name: "Side",
  38835. image: {
  38836. source: "./media/characters/erdno/side.svg",
  38837. extra: 1191/1144,
  38838. bottom: 40/1231
  38839. }
  38840. },
  38841. back: {
  38842. height: math.unit(5 + 7/12, "feet"),
  38843. weight: math.unit(2, "tons"),
  38844. name: "Back",
  38845. image: {
  38846. source: "./media/characters/erdno/back.svg",
  38847. extra: 1202/1146,
  38848. bottom: 17/1219
  38849. }
  38850. },
  38851. frontNsfw: {
  38852. height: math.unit(5 + 7/12, "feet"),
  38853. weight: math.unit(2, "tons"),
  38854. name: "Front (NSFW)",
  38855. image: {
  38856. source: "./media/characters/erdno/front-nsfw.svg",
  38857. extra: 1234/1129,
  38858. bottom: 35/1269
  38859. }
  38860. },
  38861. angledNsfw: {
  38862. height: math.unit(5 + 7/12, "feet"),
  38863. weight: math.unit(2, "tons"),
  38864. name: "Angled (NSFW)",
  38865. image: {
  38866. source: "./media/characters/erdno/angled-nsfw.svg",
  38867. extra: 1185/1139,
  38868. bottom: 36/1221
  38869. }
  38870. },
  38871. sideNsfw: {
  38872. height: math.unit(5 + 7/12, "feet"),
  38873. weight: math.unit(2, "tons"),
  38874. name: "Side (NSFW)",
  38875. image: {
  38876. source: "./media/characters/erdno/side-nsfw.svg",
  38877. extra: 1191/1144,
  38878. bottom: 40/1231
  38879. }
  38880. },
  38881. backNsfw: {
  38882. height: math.unit(5 + 7/12, "feet"),
  38883. weight: math.unit(2, "tons"),
  38884. name: "Back (NSFW)",
  38885. image: {
  38886. source: "./media/characters/erdno/back-nsfw.svg",
  38887. extra: 1202/1146,
  38888. bottom: 17/1219
  38889. }
  38890. },
  38891. frontHyper: {
  38892. height: math.unit(5 + 7/12, "feet"),
  38893. weight: math.unit(2, "tons"),
  38894. name: "Front (Hyper)",
  38895. image: {
  38896. source: "./media/characters/erdno/front-hyper.svg",
  38897. extra: 1298/1136,
  38898. bottom: 35/1333
  38899. }
  38900. },
  38901. },
  38902. [
  38903. {
  38904. name: "Normal",
  38905. height: math.unit(5 + 7/12, "feet"),
  38906. default: true
  38907. },
  38908. {
  38909. name: "Big",
  38910. height: math.unit(5.7, "meters")
  38911. },
  38912. {
  38913. name: "Macro",
  38914. height: math.unit(5.7, "kilometers")
  38915. },
  38916. {
  38917. name: "Megamacro",
  38918. height: math.unit(5.7, "earths")
  38919. },
  38920. ]
  38921. ))
  38922. characterMakers.push(() => makeCharacter(
  38923. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  38924. {
  38925. front: {
  38926. height: math.unit(5 + 10/12, "feet"),
  38927. weight: math.unit(150, "lb"),
  38928. name: "Front",
  38929. image: {
  38930. source: "./media/characters/jamie/front.svg",
  38931. extra: 1908/1768,
  38932. bottom: 19/1927
  38933. }
  38934. },
  38935. },
  38936. [
  38937. {
  38938. name: "Minimum",
  38939. height: math.unit(2, "cm")
  38940. },
  38941. {
  38942. name: "Micro",
  38943. height: math.unit(3, "inches")
  38944. },
  38945. {
  38946. name: "Normal",
  38947. height: math.unit(5 + 10/12, "feet"),
  38948. default: true
  38949. },
  38950. {
  38951. name: "Macro",
  38952. height: math.unit(150, "feet")
  38953. },
  38954. {
  38955. name: "Megamacro",
  38956. height: math.unit(10000, "m")
  38957. },
  38958. ]
  38959. ))
  38960. characterMakers.push(() => makeCharacter(
  38961. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  38962. {
  38963. front: {
  38964. height: math.unit(2, "meters"),
  38965. weight: math.unit(100, "kg"),
  38966. name: "Front",
  38967. image: {
  38968. source: "./media/characters/shiron/front.svg",
  38969. extra: 2103/1985,
  38970. bottom: 98/2201
  38971. }
  38972. },
  38973. back: {
  38974. height: math.unit(2, "meters"),
  38975. weight: math.unit(100, "kg"),
  38976. name: "Back",
  38977. image: {
  38978. source: "./media/characters/shiron/back.svg",
  38979. extra: 2110/2015,
  38980. bottom: 89/2199
  38981. }
  38982. },
  38983. hand: {
  38984. height: math.unit(0.96, "feet"),
  38985. name: "Hand",
  38986. image: {
  38987. source: "./media/characters/shiron/hand.svg"
  38988. }
  38989. },
  38990. foot: {
  38991. height: math.unit(1.464, "feet"),
  38992. name: "Foot",
  38993. image: {
  38994. source: "./media/characters/shiron/foot.svg"
  38995. }
  38996. },
  38997. },
  38998. [
  38999. {
  39000. name: "Normal",
  39001. height: math.unit(2, "meters")
  39002. },
  39003. {
  39004. name: "Macro",
  39005. height: math.unit(500, "meters"),
  39006. default: true
  39007. },
  39008. {
  39009. name: "Megamacro",
  39010. height: math.unit(20, "km")
  39011. },
  39012. ]
  39013. ))
  39014. characterMakers.push(() => makeCharacter(
  39015. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  39016. {
  39017. front: {
  39018. height: math.unit(6, "feet"),
  39019. name: "Front",
  39020. image: {
  39021. source: "./media/characters/sam/front.svg",
  39022. extra: 849/826,
  39023. bottom: 19/868
  39024. }
  39025. },
  39026. },
  39027. [
  39028. {
  39029. name: "Normal",
  39030. height: math.unit(6, "feet"),
  39031. default: true
  39032. },
  39033. ]
  39034. ))
  39035. characterMakers.push(() => makeCharacter(
  39036. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  39037. {
  39038. front: {
  39039. height: math.unit(8 + 4/12, "feet"),
  39040. weight: math.unit(122, "kg"),
  39041. name: "Front",
  39042. image: {
  39043. source: "./media/characters/namori-kurogawa/front.svg",
  39044. extra: 1894/1576,
  39045. bottom: 34/1928
  39046. }
  39047. },
  39048. },
  39049. [
  39050. {
  39051. name: "Normal",
  39052. height: math.unit(8 + 4/12, "feet"),
  39053. default: true
  39054. },
  39055. ]
  39056. ))
  39057. characterMakers.push(() => makeCharacter(
  39058. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  39059. {
  39060. front: {
  39061. height: math.unit(9, "feet"),
  39062. weight: math.unit(621, "lb"),
  39063. name: "Front",
  39064. image: {
  39065. source: "./media/characters/unmru/front.svg",
  39066. extra: 1853/1747,
  39067. bottom: 73/1926
  39068. }
  39069. },
  39070. side: {
  39071. height: math.unit(9, "feet"),
  39072. weight: math.unit(621, "lb"),
  39073. name: "Side",
  39074. image: {
  39075. source: "./media/characters/unmru/side.svg",
  39076. extra: 1781/1671,
  39077. bottom: 127/1908
  39078. }
  39079. },
  39080. back: {
  39081. height: math.unit(9, "feet"),
  39082. weight: math.unit(621, "lb"),
  39083. name: "Back",
  39084. image: {
  39085. source: "./media/characters/unmru/back.svg",
  39086. extra: 1894/1765,
  39087. bottom: 75/1969
  39088. }
  39089. },
  39090. dick: {
  39091. height: math.unit(3, "feet"),
  39092. weight: math.unit(35, "lb"),
  39093. name: "Dick",
  39094. image: {
  39095. source: "./media/characters/unmru/dick.svg"
  39096. }
  39097. },
  39098. },
  39099. [
  39100. {
  39101. name: "Normal",
  39102. height: math.unit(9, "feet")
  39103. },
  39104. {
  39105. name: "Natural",
  39106. height: math.unit(27, "feet"),
  39107. default: true
  39108. },
  39109. {
  39110. name: "Giant",
  39111. height: math.unit(90, "feet")
  39112. },
  39113. {
  39114. name: "Kaiju",
  39115. height: math.unit(270, "feet")
  39116. },
  39117. {
  39118. name: "Macro",
  39119. height: math.unit(900, "feet")
  39120. },
  39121. {
  39122. name: "Macro+",
  39123. height: math.unit(2700, "feet")
  39124. },
  39125. {
  39126. name: "Megamacro",
  39127. height: math.unit(9000, "feet")
  39128. },
  39129. {
  39130. name: "City-Crushing",
  39131. height: math.unit(27000, "feet")
  39132. },
  39133. {
  39134. name: "Mountain-Mashing",
  39135. height: math.unit(90000, "feet")
  39136. },
  39137. {
  39138. name: "Earth-Eclipsing",
  39139. height: math.unit(2.7e8, "feet")
  39140. },
  39141. {
  39142. name: "Sol-Swallowing",
  39143. height: math.unit(9e10, "feet")
  39144. },
  39145. {
  39146. name: "Majoris-Munching",
  39147. height: math.unit(2.7e13, "feet")
  39148. },
  39149. ]
  39150. ))
  39151. characterMakers.push(() => makeCharacter(
  39152. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  39153. {
  39154. front: {
  39155. height: math.unit(1, "inch"),
  39156. name: "Front",
  39157. image: {
  39158. source: "./media/characters/squeaks-mouse/front.svg",
  39159. extra: 352/308,
  39160. bottom: 25/377
  39161. }
  39162. },
  39163. },
  39164. [
  39165. {
  39166. name: "Micro",
  39167. height: math.unit(1, "inch"),
  39168. default: true
  39169. },
  39170. ]
  39171. ))
  39172. characterMakers.push(() => makeCharacter(
  39173. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  39174. {
  39175. side: {
  39176. height: math.unit(35, "feet"),
  39177. name: "Side",
  39178. image: {
  39179. source: "./media/characters/sayko/side.svg",
  39180. extra: 1697/1021,
  39181. bottom: 82/1779
  39182. }
  39183. },
  39184. head: {
  39185. height: math.unit(16, "feet"),
  39186. name: "Head",
  39187. image: {
  39188. source: "./media/characters/sayko/head.svg"
  39189. }
  39190. },
  39191. forepaw: {
  39192. height: math.unit(7.85, "feet"),
  39193. name: "Forepaw",
  39194. image: {
  39195. source: "./media/characters/sayko/forepaw.svg"
  39196. }
  39197. },
  39198. hindpaw: {
  39199. height: math.unit(8.8, "feet"),
  39200. name: "Hindpaw",
  39201. image: {
  39202. source: "./media/characters/sayko/hindpaw.svg"
  39203. }
  39204. },
  39205. },
  39206. [
  39207. {
  39208. name: "Normal",
  39209. height: math.unit(35, "feet"),
  39210. default: true
  39211. },
  39212. {
  39213. name: "Colossus",
  39214. height: math.unit(100, "meters")
  39215. },
  39216. {
  39217. name: "\"Small\" Deity",
  39218. height: math.unit(1, "km")
  39219. },
  39220. {
  39221. name: "\"Large\" Deity",
  39222. height: math.unit(15, "km")
  39223. },
  39224. ]
  39225. ))
  39226. characterMakers.push(() => makeCharacter(
  39227. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  39228. {
  39229. front: {
  39230. height: math.unit(6, "feet"),
  39231. weight: math.unit(250, "lb"),
  39232. name: "Front",
  39233. image: {
  39234. source: "./media/characters/mukiro/front.svg",
  39235. extra: 1368/1310,
  39236. bottom: 34/1402
  39237. }
  39238. },
  39239. },
  39240. [
  39241. {
  39242. name: "Normal",
  39243. height: math.unit(6, "feet"),
  39244. default: true
  39245. },
  39246. ]
  39247. ))
  39248. characterMakers.push(() => makeCharacter(
  39249. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  39250. {
  39251. front: {
  39252. height: math.unit(12 + 4/12, "feet"),
  39253. name: "Front",
  39254. image: {
  39255. source: "./media/characters/zeph-the-tiger-god/front.svg",
  39256. extra: 1346/1311,
  39257. bottom: 65/1411
  39258. }
  39259. },
  39260. },
  39261. [
  39262. {
  39263. name: "Base",
  39264. height: math.unit(12 + 4/12, "feet"),
  39265. default: true
  39266. },
  39267. {
  39268. name: "Macro",
  39269. height: math.unit(150, "feet")
  39270. },
  39271. {
  39272. name: "Mega",
  39273. height: math.unit(2, "miles")
  39274. },
  39275. {
  39276. name: "Demi God",
  39277. height: math.unit(4, "AU")
  39278. },
  39279. {
  39280. name: "God Size",
  39281. height: math.unit(1, "universe")
  39282. },
  39283. ]
  39284. ))
  39285. characterMakers.push(() => makeCharacter(
  39286. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  39287. {
  39288. front: {
  39289. height: math.unit(3 + 3/12, "feet"),
  39290. weight: math.unit(88, "lb"),
  39291. name: "Front",
  39292. image: {
  39293. source: "./media/characters/trey/front.svg",
  39294. extra: 1815/1509,
  39295. bottom: 60/1875
  39296. }
  39297. },
  39298. },
  39299. [
  39300. {
  39301. name: "Normal",
  39302. height: math.unit(3 + 3/12, "feet"),
  39303. default: true
  39304. },
  39305. ]
  39306. ))
  39307. characterMakers.push(() => makeCharacter(
  39308. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  39309. {
  39310. front: {
  39311. height: math.unit(4, "meters"),
  39312. name: "Front",
  39313. image: {
  39314. source: "./media/characters/adelonda/front.svg",
  39315. extra: 1077/982,
  39316. bottom: 39/1116
  39317. }
  39318. },
  39319. back: {
  39320. height: math.unit(4, "meters"),
  39321. name: "Back",
  39322. image: {
  39323. source: "./media/characters/adelonda/back.svg",
  39324. extra: 1105/1003,
  39325. bottom: 25/1130
  39326. }
  39327. },
  39328. feral: {
  39329. height: math.unit(40/1.5, "meters"),
  39330. name: "Feral",
  39331. image: {
  39332. source: "./media/characters/adelonda/feral.svg",
  39333. extra: 597/271,
  39334. bottom: 387/984
  39335. }
  39336. },
  39337. },
  39338. [
  39339. {
  39340. name: "Normal",
  39341. height: math.unit(4, "meters"),
  39342. default: true
  39343. },
  39344. ]
  39345. ))
  39346. characterMakers.push(() => makeCharacter(
  39347. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  39348. {
  39349. front: {
  39350. height: math.unit(8 + 4/12, "feet"),
  39351. weight: math.unit(670, "lb"),
  39352. name: "Front",
  39353. image: {
  39354. source: "./media/characters/acadiel/front.svg",
  39355. extra: 1901/1595,
  39356. bottom: 142/2043
  39357. }
  39358. },
  39359. },
  39360. [
  39361. {
  39362. name: "Normal",
  39363. height: math.unit(8 + 4/12, "feet"),
  39364. default: true
  39365. },
  39366. {
  39367. name: "Macro",
  39368. height: math.unit(200, "feet")
  39369. },
  39370. ]
  39371. ))
  39372. characterMakers.push(() => makeCharacter(
  39373. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  39374. {
  39375. front: {
  39376. height: math.unit(6 + 2/12, "feet"),
  39377. weight: math.unit(185, "lb"),
  39378. name: "Front",
  39379. image: {
  39380. source: "./media/characters/kayne-ein/front.svg",
  39381. extra: 1780/1560,
  39382. bottom: 81/1861
  39383. }
  39384. },
  39385. },
  39386. [
  39387. {
  39388. name: "Normal",
  39389. height: math.unit(6 + 2/12, "feet"),
  39390. default: true
  39391. },
  39392. {
  39393. name: "Transformation Stage",
  39394. height: math.unit(15, "feet")
  39395. },
  39396. {
  39397. name: "Macro",
  39398. height: math.unit(150, "feet")
  39399. },
  39400. {
  39401. name: "Earth's Shadow",
  39402. height: math.unit(6200, "miles")
  39403. },
  39404. {
  39405. name: "Universal Demon",
  39406. height: math.unit(28e9, "parsecs")
  39407. },
  39408. {
  39409. name: "Multiverse God",
  39410. height: math.unit(3, "multiverses")
  39411. },
  39412. ]
  39413. ))
  39414. characterMakers.push(() => makeCharacter(
  39415. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  39416. {
  39417. front: {
  39418. height: math.unit(5 + 5/12, "feet"),
  39419. name: "Front",
  39420. image: {
  39421. source: "./media/characters/fawn/front.svg",
  39422. extra: 1873/1731,
  39423. bottom: 95/1968
  39424. }
  39425. },
  39426. back: {
  39427. height: math.unit(5 + 5/12, "feet"),
  39428. name: "Back",
  39429. image: {
  39430. source: "./media/characters/fawn/back.svg",
  39431. extra: 1813/1700,
  39432. bottom: 14/1827
  39433. }
  39434. },
  39435. hoof: {
  39436. height: math.unit(1.45, "feet"),
  39437. name: "Hoof",
  39438. image: {
  39439. source: "./media/characters/fawn/hoof.svg"
  39440. }
  39441. },
  39442. },
  39443. [
  39444. {
  39445. name: "Normal",
  39446. height: math.unit(5 + 5/12, "feet"),
  39447. default: true
  39448. },
  39449. ]
  39450. ))
  39451. characterMakers.push(() => makeCharacter(
  39452. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  39453. {
  39454. front: {
  39455. height: math.unit(2 + 5/12, "feet"),
  39456. name: "Front",
  39457. image: {
  39458. source: "./media/characters/orion/front.svg",
  39459. extra: 1366/1304,
  39460. bottom: 43/1409
  39461. }
  39462. },
  39463. paw: {
  39464. height: math.unit(0.52, "feet"),
  39465. name: "Paw",
  39466. image: {
  39467. source: "./media/characters/orion/paw.svg"
  39468. }
  39469. },
  39470. },
  39471. [
  39472. {
  39473. name: "Normal",
  39474. height: math.unit(2 + 5/12, "feet"),
  39475. default: true
  39476. },
  39477. ]
  39478. ))
  39479. characterMakers.push(() => makeCharacter(
  39480. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  39481. {
  39482. front: {
  39483. height: math.unit(5 + 10/12, "feet"),
  39484. name: "Front",
  39485. image: {
  39486. source: "./media/characters/vera/front.svg",
  39487. extra: 1680/1575,
  39488. bottom: 49/1729
  39489. }
  39490. },
  39491. back: {
  39492. height: math.unit(5 + 10/12, "feet"),
  39493. name: "Back",
  39494. image: {
  39495. source: "./media/characters/vera/back.svg",
  39496. extra: 1700/1588,
  39497. bottom: 18/1718
  39498. }
  39499. },
  39500. arcanine: {
  39501. height: math.unit(6 + 8/12, "feet"),
  39502. name: "Arcanine",
  39503. image: {
  39504. source: "./media/characters/vera/arcanine.svg",
  39505. extra: 1590/1511,
  39506. bottom: 71/1661
  39507. }
  39508. },
  39509. maw: {
  39510. height: math.unit(0.82, "feet"),
  39511. name: "Maw",
  39512. image: {
  39513. source: "./media/characters/vera/maw.svg"
  39514. }
  39515. },
  39516. mawArcanine: {
  39517. height: math.unit(0.97, "feet"),
  39518. name: "Maw (Arcanine)",
  39519. image: {
  39520. source: "./media/characters/vera/maw-arcanine.svg"
  39521. }
  39522. },
  39523. paw: {
  39524. height: math.unit(0.75, "feet"),
  39525. name: "Paw",
  39526. image: {
  39527. source: "./media/characters/vera/paw.svg"
  39528. }
  39529. },
  39530. pawprint: {
  39531. height: math.unit(0.52, "feet"),
  39532. name: "Pawprint",
  39533. image: {
  39534. source: "./media/characters/vera/pawprint.svg"
  39535. }
  39536. },
  39537. },
  39538. [
  39539. {
  39540. name: "Normal",
  39541. height: math.unit(5 + 10/12, "feet"),
  39542. default: true
  39543. },
  39544. {
  39545. name: "Macro",
  39546. height: math.unit(75, "feet")
  39547. },
  39548. ]
  39549. ))
  39550. characterMakers.push(() => makeCharacter(
  39551. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  39552. {
  39553. front: {
  39554. height: math.unit(4, "feet"),
  39555. weight: math.unit(40, "lb"),
  39556. name: "Front",
  39557. image: {
  39558. source: "./media/characters/orvan-rabbit/front.svg",
  39559. extra: 1896/1642,
  39560. bottom: 29/1925
  39561. }
  39562. },
  39563. },
  39564. [
  39565. {
  39566. name: "Normal",
  39567. height: math.unit(4, "feet"),
  39568. default: true
  39569. },
  39570. ]
  39571. ))
  39572. characterMakers.push(() => makeCharacter(
  39573. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  39574. {
  39575. front: {
  39576. height: math.unit(6, "feet"),
  39577. weight: math.unit(168, "lb"),
  39578. name: "Front",
  39579. image: {
  39580. source: "./media/characters/lisa/front.svg",
  39581. extra: 2065/1867,
  39582. bottom: 46/2111
  39583. }
  39584. },
  39585. back: {
  39586. height: math.unit(6, "feet"),
  39587. weight: math.unit(168, "lb"),
  39588. name: "Back",
  39589. image: {
  39590. source: "./media/characters/lisa/back.svg",
  39591. extra: 1982/1838,
  39592. bottom: 29/2011
  39593. }
  39594. },
  39595. maw: {
  39596. height: math.unit(0.81, "feet"),
  39597. name: "Maw",
  39598. image: {
  39599. source: "./media/characters/lisa/maw.svg"
  39600. }
  39601. },
  39602. paw: {
  39603. height: math.unit(0.9, "feet"),
  39604. name: "Paw",
  39605. image: {
  39606. source: "./media/characters/lisa/paw.svg"
  39607. }
  39608. },
  39609. caribousune: {
  39610. height: math.unit(7 + 2/12, "feet"),
  39611. weight: math.unit(268, "lb"),
  39612. name: "Caribousune",
  39613. image: {
  39614. source: "./media/characters/lisa/caribousune.svg",
  39615. extra: 1843/1633,
  39616. bottom: 29/1872
  39617. }
  39618. },
  39619. frontCaribousune: {
  39620. height: math.unit(7 + 2/12, "feet"),
  39621. weight: math.unit(268, "lb"),
  39622. name: "Front (Caribousune)",
  39623. image: {
  39624. source: "./media/characters/lisa/front-caribousune.svg",
  39625. extra: 1818/1638,
  39626. bottom: 52/1870
  39627. }
  39628. },
  39629. sideCaribousune: {
  39630. height: math.unit(7 + 2/12, "feet"),
  39631. weight: math.unit(268, "lb"),
  39632. name: "Side (Caribousune)",
  39633. image: {
  39634. source: "./media/characters/lisa/side-caribousune.svg",
  39635. extra: 1851/1635,
  39636. bottom: 16/1867
  39637. }
  39638. },
  39639. backCaribousune: {
  39640. height: math.unit(7 + 2/12, "feet"),
  39641. weight: math.unit(268, "lb"),
  39642. name: "Back (Caribousune)",
  39643. image: {
  39644. source: "./media/characters/lisa/back-caribousune.svg",
  39645. extra: 1801/1604,
  39646. bottom: 44/1845
  39647. }
  39648. },
  39649. caribou: {
  39650. height: math.unit(7 + 2/12, "feet"),
  39651. weight: math.unit(268, "lb"),
  39652. name: "Caribou",
  39653. image: {
  39654. source: "./media/characters/lisa/caribou.svg",
  39655. extra: 1843/1633,
  39656. bottom: 29/1872
  39657. }
  39658. },
  39659. frontCaribou: {
  39660. height: math.unit(7 + 2/12, "feet"),
  39661. weight: math.unit(268, "lb"),
  39662. name: "Front (Caribou)",
  39663. image: {
  39664. source: "./media/characters/lisa/front-caribou.svg",
  39665. extra: 1818/1638,
  39666. bottom: 52/1870
  39667. }
  39668. },
  39669. sideCaribou: {
  39670. height: math.unit(7 + 2/12, "feet"),
  39671. weight: math.unit(268, "lb"),
  39672. name: "Side (Caribou)",
  39673. image: {
  39674. source: "./media/characters/lisa/side-caribou.svg",
  39675. extra: 1851/1635,
  39676. bottom: 16/1867
  39677. }
  39678. },
  39679. backCaribou: {
  39680. height: math.unit(7 + 2/12, "feet"),
  39681. weight: math.unit(268, "lb"),
  39682. name: "Back (Caribou)",
  39683. image: {
  39684. source: "./media/characters/lisa/back-caribou.svg",
  39685. extra: 1801/1604,
  39686. bottom: 44/1845
  39687. }
  39688. },
  39689. mawCaribou: {
  39690. height: math.unit(1.45, "feet"),
  39691. name: "Maw (Caribou)",
  39692. image: {
  39693. source: "./media/characters/lisa/maw-caribou.svg"
  39694. }
  39695. },
  39696. mawCaribousune: {
  39697. height: math.unit(1.45, "feet"),
  39698. name: "Maw (Caribousune)",
  39699. image: {
  39700. source: "./media/characters/lisa/maw-caribousune.svg"
  39701. }
  39702. },
  39703. pawCaribousune: {
  39704. height: math.unit(1.61, "feet"),
  39705. name: "Paw (Caribou)",
  39706. image: {
  39707. source: "./media/characters/lisa/paw-caribousune.svg"
  39708. }
  39709. },
  39710. },
  39711. [
  39712. {
  39713. name: "Normal",
  39714. height: math.unit(6, "feet")
  39715. },
  39716. {
  39717. name: "God Size",
  39718. height: math.unit(72, "feet"),
  39719. default: true
  39720. },
  39721. {
  39722. name: "Towering",
  39723. height: math.unit(288, "feet")
  39724. },
  39725. {
  39726. name: "City Size",
  39727. height: math.unit(48384, "feet")
  39728. },
  39729. {
  39730. name: "Continental",
  39731. height: math.unit(4200, "miles")
  39732. },
  39733. {
  39734. name: "Planet Eater",
  39735. height: math.unit(42, "earths")
  39736. },
  39737. {
  39738. name: "Star Swallower",
  39739. height: math.unit(42, "solarradii")
  39740. },
  39741. {
  39742. name: "System Swallower",
  39743. height: math.unit(84000, "AU")
  39744. },
  39745. {
  39746. name: "Galaxy Gobbler",
  39747. height: math.unit(42, "galaxies")
  39748. },
  39749. {
  39750. name: "Universe Devourer",
  39751. height: math.unit(42, "universes")
  39752. },
  39753. {
  39754. name: "Multiverse Muncher",
  39755. height: math.unit(42, "multiverses")
  39756. },
  39757. ]
  39758. ))
  39759. characterMakers.push(() => makeCharacter(
  39760. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  39761. {
  39762. front: {
  39763. height: math.unit(36, "feet"),
  39764. name: "Front",
  39765. image: {
  39766. source: "./media/characters/shadow-rat/front.svg",
  39767. extra: 1845/1758,
  39768. bottom: 83/1928
  39769. }
  39770. },
  39771. },
  39772. [
  39773. {
  39774. name: "Macro",
  39775. height: math.unit(36, "feet"),
  39776. default: true
  39777. },
  39778. ]
  39779. ))
  39780. characterMakers.push(() => makeCharacter(
  39781. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  39782. {
  39783. side: {
  39784. height: math.unit(8, "feet"),
  39785. weight: math.unit(2630, "lb"),
  39786. name: "Side",
  39787. image: {
  39788. source: "./media/characters/torallia/side.svg",
  39789. extra: 2164/2021,
  39790. bottom: 371/2535
  39791. }
  39792. },
  39793. },
  39794. [
  39795. {
  39796. name: "Mortal Interaction",
  39797. height: math.unit(8, "feet")
  39798. },
  39799. {
  39800. name: "Natural",
  39801. height: math.unit(24, "feet"),
  39802. default: true
  39803. },
  39804. {
  39805. name: "Giant",
  39806. height: math.unit(80, "feet")
  39807. },
  39808. {
  39809. name: "Kaiju",
  39810. height: math.unit(240, "feet")
  39811. },
  39812. {
  39813. name: "Macro",
  39814. height: math.unit(800, "feet")
  39815. },
  39816. {
  39817. name: "Macro+",
  39818. height: math.unit(2400, "feet")
  39819. },
  39820. {
  39821. name: "Macro++",
  39822. height: math.unit(8000, "feet")
  39823. },
  39824. {
  39825. name: "City-Crushing",
  39826. height: math.unit(24000, "feet")
  39827. },
  39828. {
  39829. name: "Mountain-Mashing",
  39830. height: math.unit(80000, "feet")
  39831. },
  39832. {
  39833. name: "District Demolisher",
  39834. height: math.unit(240000, "feet")
  39835. },
  39836. {
  39837. name: "Tri-County Terror",
  39838. height: math.unit(800000, "feet")
  39839. },
  39840. {
  39841. name: "State Smasher",
  39842. height: math.unit(2.4e6, "feet")
  39843. },
  39844. {
  39845. name: "Nation Nemesis",
  39846. height: math.unit(8e6, "feet")
  39847. },
  39848. {
  39849. name: "Continent Cracker",
  39850. height: math.unit(2.4e7, "feet")
  39851. },
  39852. {
  39853. name: "Planet-Pillaging",
  39854. height: math.unit(8e7, "feet")
  39855. },
  39856. {
  39857. name: "Earth-Eclipsing",
  39858. height: math.unit(2.4e8, "feet")
  39859. },
  39860. {
  39861. name: "Jovian-Jostling",
  39862. height: math.unit(8e8, "feet")
  39863. },
  39864. {
  39865. name: "Gas Giant Gulper",
  39866. height: math.unit(2.4e9, "feet")
  39867. },
  39868. {
  39869. name: "Astral Annihilator",
  39870. height: math.unit(8e9, "feet")
  39871. },
  39872. {
  39873. name: "Celestial Conqueror",
  39874. height: math.unit(2.4e10, "feet")
  39875. },
  39876. {
  39877. name: "Sol-Swallowing",
  39878. height: math.unit(8e10, "feet")
  39879. },
  39880. {
  39881. name: "Hunter of the Heavens",
  39882. height: math.unit(2.4e13, "feet")
  39883. },
  39884. ]
  39885. ))
  39886. characterMakers.push(() => makeCharacter(
  39887. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  39888. {
  39889. front: {
  39890. height: math.unit(6 + 8/12, "feet"),
  39891. weight: math.unit(250, "kilograms"),
  39892. volume: math.unit(28, "liters"),
  39893. name: "Front",
  39894. image: {
  39895. source: "./media/characters/rebecca-pawlson/front.svg",
  39896. extra: 1737/1596,
  39897. bottom: 107/1844
  39898. }
  39899. },
  39900. back: {
  39901. height: math.unit(6 + 8/12, "feet"),
  39902. weight: math.unit(250, "kilograms"),
  39903. volume: math.unit(28, "liters"),
  39904. name: "Back",
  39905. image: {
  39906. source: "./media/characters/rebecca-pawlson/back.svg",
  39907. extra: 1702/1523,
  39908. bottom: 86/1788
  39909. }
  39910. },
  39911. },
  39912. [
  39913. {
  39914. name: "Normal",
  39915. height: math.unit(6 + 8/12, "feet")
  39916. },
  39917. {
  39918. name: "Mini Macro",
  39919. height: math.unit(10, "feet"),
  39920. default: true
  39921. },
  39922. {
  39923. name: "Macro",
  39924. height: math.unit(100, "feet")
  39925. },
  39926. {
  39927. name: "Mega Macro",
  39928. height: math.unit(2500, "feet")
  39929. },
  39930. {
  39931. name: "Giga Macro",
  39932. height: math.unit(50, "miles")
  39933. },
  39934. ]
  39935. ))
  39936. characterMakers.push(() => makeCharacter(
  39937. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  39938. {
  39939. front: {
  39940. height: math.unit(7 + 6/12, "feet"),
  39941. weight: math.unit(600, "lb"),
  39942. name: "Front",
  39943. image: {
  39944. source: "./media/characters/moxie-nova/front.svg",
  39945. extra: 1734/1652,
  39946. bottom: 41/1775
  39947. }
  39948. },
  39949. },
  39950. [
  39951. {
  39952. name: "Normal",
  39953. height: math.unit(7 + 6/12, "feet"),
  39954. default: true
  39955. },
  39956. ]
  39957. ))
  39958. characterMakers.push(() => makeCharacter(
  39959. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  39960. {
  39961. goat: {
  39962. height: math.unit(4, "feet"),
  39963. weight: math.unit(180, "lb"),
  39964. name: "Goat",
  39965. image: {
  39966. source: "./media/characters/tiffany/goat.svg",
  39967. extra: 1845/1595,
  39968. bottom: 106/1951
  39969. }
  39970. },
  39971. front: {
  39972. height: math.unit(5, "feet"),
  39973. weight: math.unit(150, "lb"),
  39974. name: "Foxcoon",
  39975. image: {
  39976. source: "./media/characters/tiffany/foxcoon.svg",
  39977. extra: 1941/1845,
  39978. bottom: 58/1999
  39979. }
  39980. },
  39981. },
  39982. [
  39983. {
  39984. name: "Normal",
  39985. height: math.unit(5, "feet"),
  39986. default: true
  39987. },
  39988. ]
  39989. ))
  39990. characterMakers.push(() => makeCharacter(
  39991. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  39992. {
  39993. front: {
  39994. height: math.unit(8, "feet"),
  39995. weight: math.unit(300, "lb"),
  39996. name: "Front",
  39997. image: {
  39998. source: "./media/characters/raxinath/front.svg",
  39999. extra: 1407/1309,
  40000. bottom: 39/1446
  40001. }
  40002. },
  40003. back: {
  40004. height: math.unit(8, "feet"),
  40005. weight: math.unit(300, "lb"),
  40006. name: "Back",
  40007. image: {
  40008. source: "./media/characters/raxinath/back.svg",
  40009. extra: 1405/1315,
  40010. bottom: 9/1414
  40011. }
  40012. },
  40013. },
  40014. [
  40015. {
  40016. name: "Speck",
  40017. height: math.unit(0.5, "nm")
  40018. },
  40019. {
  40020. name: "Micro",
  40021. height: math.unit(3, "inches")
  40022. },
  40023. {
  40024. name: "Kobold",
  40025. height: math.unit(3, "feet")
  40026. },
  40027. {
  40028. name: "Normal",
  40029. height: math.unit(8, "feet"),
  40030. default: true
  40031. },
  40032. {
  40033. name: "Giant",
  40034. height: math.unit(50, "feet")
  40035. },
  40036. {
  40037. name: "Macro",
  40038. height: math.unit(1000, "feet")
  40039. },
  40040. {
  40041. name: "Megamacro",
  40042. height: math.unit(1, "mile")
  40043. },
  40044. ]
  40045. ))
  40046. characterMakers.push(() => makeCharacter(
  40047. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  40048. {
  40049. front: {
  40050. height: math.unit(10, "feet"),
  40051. weight: math.unit(1442, "lb"),
  40052. name: "Front",
  40053. image: {
  40054. source: "./media/characters/mal-dragon/front.svg",
  40055. extra: 1515/1444,
  40056. bottom: 113/1628
  40057. }
  40058. },
  40059. back: {
  40060. height: math.unit(10, "feet"),
  40061. weight: math.unit(1442, "lb"),
  40062. name: "Back",
  40063. image: {
  40064. source: "./media/characters/mal-dragon/back.svg",
  40065. extra: 1527/1434,
  40066. bottom: 25/1552
  40067. }
  40068. },
  40069. },
  40070. [
  40071. {
  40072. name: "Mortal Interaction",
  40073. height: math.unit(10, "feet"),
  40074. default: true
  40075. },
  40076. {
  40077. name: "Large",
  40078. height: math.unit(30, "feet")
  40079. },
  40080. {
  40081. name: "Kaiju",
  40082. height: math.unit(300, "feet")
  40083. },
  40084. {
  40085. name: "Megamacro",
  40086. height: math.unit(10000, "feet")
  40087. },
  40088. {
  40089. name: "Continent Cracker",
  40090. height: math.unit(30000000, "feet")
  40091. },
  40092. {
  40093. name: "Sol-Swallowing",
  40094. height: math.unit(1e11, "feet")
  40095. },
  40096. {
  40097. name: "Light Universal",
  40098. height: math.unit(5, "universes")
  40099. },
  40100. {
  40101. name: "Universe Atoms",
  40102. height: math.unit(1.829e9, "universes")
  40103. },
  40104. {
  40105. name: "Light Multiversal",
  40106. height: math.unit(5, "multiverses")
  40107. },
  40108. {
  40109. name: "Multiverse Atoms",
  40110. height: math.unit(1.829e9, "multiverses")
  40111. },
  40112. {
  40113. name: "Fabric of Time",
  40114. height: math.unit(1e262, "multiverses")
  40115. },
  40116. ]
  40117. ))
  40118. characterMakers.push(() => makeCharacter(
  40119. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  40120. {
  40121. front: {
  40122. height: math.unit(9, "feet"),
  40123. weight: math.unit(1050, "lb"),
  40124. name: "Front",
  40125. image: {
  40126. source: "./media/characters/tabitha/front.svg",
  40127. extra: 2083/1994,
  40128. bottom: 68/2151
  40129. }
  40130. },
  40131. },
  40132. [
  40133. {
  40134. name: "Baseline",
  40135. height: math.unit(9, "feet"),
  40136. default: true
  40137. },
  40138. {
  40139. name: "Giant",
  40140. height: math.unit(90, "feet")
  40141. },
  40142. {
  40143. name: "Macro",
  40144. height: math.unit(900, "feet")
  40145. },
  40146. {
  40147. name: "Megamacro",
  40148. height: math.unit(9000, "feet")
  40149. },
  40150. {
  40151. name: "City-Crushing",
  40152. height: math.unit(27000, "feet")
  40153. },
  40154. {
  40155. name: "Mountain-Mashing",
  40156. height: math.unit(90000, "feet")
  40157. },
  40158. {
  40159. name: "Nation Nemesis",
  40160. height: math.unit(9e6, "feet")
  40161. },
  40162. {
  40163. name: "Continent Cracker",
  40164. height: math.unit(27e6, "feet")
  40165. },
  40166. {
  40167. name: "Earth-Eclipsing",
  40168. height: math.unit(2.7e8, "feet")
  40169. },
  40170. {
  40171. name: "Gas Giant Gulper",
  40172. height: math.unit(2.7e9, "feet")
  40173. },
  40174. {
  40175. name: "Sol-Swallowing",
  40176. height: math.unit(9e10, "feet")
  40177. },
  40178. {
  40179. name: "Galaxy Gulper",
  40180. height: math.unit(9, "galaxies")
  40181. },
  40182. {
  40183. name: "Cosmos Churner",
  40184. height: math.unit(9, "universes")
  40185. },
  40186. ]
  40187. ))
  40188. characterMakers.push(() => makeCharacter(
  40189. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  40190. {
  40191. front: {
  40192. height: math.unit(160, "cm"),
  40193. weight: math.unit(55, "kg"),
  40194. name: "Front",
  40195. image: {
  40196. source: "./media/characters/tow/front.svg",
  40197. extra: 1751/1722,
  40198. bottom: 74/1825
  40199. }
  40200. },
  40201. },
  40202. [
  40203. {
  40204. name: "Norm",
  40205. height: math.unit(160, "cm")
  40206. },
  40207. {
  40208. name: "Casual",
  40209. height: math.unit(3200, "m"),
  40210. default: true
  40211. },
  40212. {
  40213. name: "Show-Off",
  40214. height: math.unit(160, "km")
  40215. },
  40216. ]
  40217. ))
  40218. characterMakers.push(() => makeCharacter(
  40219. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  40220. {
  40221. front: {
  40222. height: math.unit(7 + 11/12, "feet"),
  40223. weight: math.unit(342.8, "lb"),
  40224. name: "Front",
  40225. image: {
  40226. source: "./media/characters/vivian-orca-dragon/front.svg",
  40227. extra: 1890/1865,
  40228. bottom: 28/1918
  40229. }
  40230. },
  40231. },
  40232. [
  40233. {
  40234. name: "Micro",
  40235. height: math.unit(5, "inches")
  40236. },
  40237. {
  40238. name: "Normal",
  40239. height: math.unit(7 + 11/12, "feet"),
  40240. default: true
  40241. },
  40242. {
  40243. name: "Macro",
  40244. height: math.unit(395 + 7/12, "feet")
  40245. },
  40246. ]
  40247. ))
  40248. characterMakers.push(() => makeCharacter(
  40249. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  40250. {
  40251. side: {
  40252. height: math.unit(10, "feet"),
  40253. weight: math.unit(1442, "lb"),
  40254. name: "Side",
  40255. image: {
  40256. source: "./media/characters/lotherakon/side.svg",
  40257. extra: 1604/1497,
  40258. bottom: 89/1693
  40259. }
  40260. },
  40261. },
  40262. [
  40263. {
  40264. name: "Mortal Interaction",
  40265. height: math.unit(10, "feet")
  40266. },
  40267. {
  40268. name: "Large",
  40269. height: math.unit(30, "feet"),
  40270. default: true
  40271. },
  40272. {
  40273. name: "Giant",
  40274. height: math.unit(100, "feet")
  40275. },
  40276. {
  40277. name: "Kaiju",
  40278. height: math.unit(300, "feet")
  40279. },
  40280. {
  40281. name: "Macro",
  40282. height: math.unit(1000, "feet")
  40283. },
  40284. {
  40285. name: "Macro+",
  40286. height: math.unit(3000, "feet")
  40287. },
  40288. {
  40289. name: "Megamacro",
  40290. height: math.unit(10000, "feet")
  40291. },
  40292. {
  40293. name: "City-Crushing",
  40294. height: math.unit(30000, "feet")
  40295. },
  40296. {
  40297. name: "Continent Cracker",
  40298. height: math.unit(30e6, "feet")
  40299. },
  40300. {
  40301. name: "Earth Eclipsing",
  40302. height: math.unit(3e8, "feet")
  40303. },
  40304. {
  40305. name: "Gas Giant Gulper",
  40306. height: math.unit(3e9, "feet")
  40307. },
  40308. {
  40309. name: "Sol-Swallowing",
  40310. height: math.unit(1e11, "feet")
  40311. },
  40312. {
  40313. name: "System Swallower",
  40314. height: math.unit(3e14, "feet")
  40315. },
  40316. {
  40317. name: "Galaxy Gulper",
  40318. height: math.unit(10, "galaxies")
  40319. },
  40320. {
  40321. name: "Light Universal",
  40322. height: math.unit(5, "universes")
  40323. },
  40324. {
  40325. name: "Universe Palm",
  40326. height: math.unit(20, "universes")
  40327. },
  40328. {
  40329. name: "Light Multiversal",
  40330. height: math.unit(5, "multiverses")
  40331. },
  40332. {
  40333. name: "Multiverse Palm",
  40334. height: math.unit(20, "multiverses")
  40335. },
  40336. {
  40337. name: "Inferno Incarnate",
  40338. height: math.unit(1e7, "multiverses")
  40339. },
  40340. ]
  40341. ))
  40342. characterMakers.push(() => makeCharacter(
  40343. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  40344. {
  40345. front: {
  40346. height: math.unit(8, "feet"),
  40347. weight: math.unit(1200, "lb"),
  40348. name: "Front",
  40349. image: {
  40350. source: "./media/characters/malithee/front.svg",
  40351. extra: 1675/1640,
  40352. bottom: 162/1837
  40353. }
  40354. },
  40355. },
  40356. [
  40357. {
  40358. name: "Mortal Interaction",
  40359. height: math.unit(8, "feet"),
  40360. default: true
  40361. },
  40362. {
  40363. name: "Large",
  40364. height: math.unit(24, "feet")
  40365. },
  40366. {
  40367. name: "Kaiju",
  40368. height: math.unit(240, "feet")
  40369. },
  40370. {
  40371. name: "Megamacro",
  40372. height: math.unit(8000, "feet")
  40373. },
  40374. {
  40375. name: "Continent Cracker",
  40376. height: math.unit(24e6, "feet")
  40377. },
  40378. {
  40379. name: "Earth-Eclipsing",
  40380. height: math.unit(2.4e8, "feet")
  40381. },
  40382. {
  40383. name: "Sol-Swallowing",
  40384. height: math.unit(8e10, "feet")
  40385. },
  40386. {
  40387. name: "Galaxy Gulper",
  40388. height: math.unit(8, "galaxies")
  40389. },
  40390. {
  40391. name: "Light Universal",
  40392. height: math.unit(4, "universes")
  40393. },
  40394. {
  40395. name: "Universe Atoms",
  40396. height: math.unit(1.829e9, "universes")
  40397. },
  40398. {
  40399. name: "Light Multiversal",
  40400. height: math.unit(4, "multiverses")
  40401. },
  40402. {
  40403. name: "Multiverse Atoms",
  40404. height: math.unit(1.829e9, "multiverses")
  40405. },
  40406. {
  40407. name: "Nigh-Omnipresence",
  40408. height: math.unit(8e261, "multiverses")
  40409. },
  40410. ]
  40411. ))
  40412. characterMakers.push(() => makeCharacter(
  40413. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  40414. {
  40415. front: {
  40416. height: math.unit(10, "feet"),
  40417. weight: math.unit(1500, "lb"),
  40418. name: "Front",
  40419. image: {
  40420. source: "./media/characters/miles-thestia/front.svg",
  40421. extra: 1812/1727,
  40422. bottom: 86/1898
  40423. }
  40424. },
  40425. back: {
  40426. height: math.unit(10, "feet"),
  40427. weight: math.unit(1500, "lb"),
  40428. name: "Back",
  40429. image: {
  40430. source: "./media/characters/miles-thestia/back.svg",
  40431. extra: 1799/1690,
  40432. bottom: 47/1846
  40433. }
  40434. },
  40435. frontNsfw: {
  40436. height: math.unit(10, "feet"),
  40437. weight: math.unit(1500, "lb"),
  40438. name: "Front (NSFW)",
  40439. image: {
  40440. source: "./media/characters/miles-thestia/front-nsfw.svg",
  40441. extra: 1812/1727,
  40442. bottom: 86/1898
  40443. }
  40444. },
  40445. },
  40446. [
  40447. {
  40448. name: "Mini-Macro",
  40449. height: math.unit(10, "feet"),
  40450. default: true
  40451. },
  40452. ]
  40453. ))
  40454. characterMakers.push(() => makeCharacter(
  40455. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  40456. {
  40457. front: {
  40458. height: math.unit(25, "feet"),
  40459. name: "Front",
  40460. image: {
  40461. source: "./media/characters/titan-s-wulf/front.svg",
  40462. extra: 1560/1484,
  40463. bottom: 76/1636
  40464. }
  40465. },
  40466. },
  40467. [
  40468. {
  40469. name: "Smallest",
  40470. height: math.unit(25, "feet"),
  40471. default: true
  40472. },
  40473. {
  40474. name: "Normal",
  40475. height: math.unit(200, "feet")
  40476. },
  40477. {
  40478. name: "Macro",
  40479. height: math.unit(200000, "feet")
  40480. },
  40481. {
  40482. name: "Multiversal Original",
  40483. height: math.unit(10000, "multiverses")
  40484. },
  40485. ]
  40486. ))
  40487. characterMakers.push(() => makeCharacter(
  40488. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  40489. {
  40490. front: {
  40491. height: math.unit(8, "feet"),
  40492. weight: math.unit(553, "lb"),
  40493. name: "Front",
  40494. image: {
  40495. source: "./media/characters/tawendeh/front.svg",
  40496. extra: 2365/2268,
  40497. bottom: 83/2448
  40498. }
  40499. },
  40500. frontClothed: {
  40501. height: math.unit(8, "feet"),
  40502. weight: math.unit(553, "lb"),
  40503. name: "Front (Clothed)",
  40504. image: {
  40505. source: "./media/characters/tawendeh/front-clothed.svg",
  40506. extra: 2365/2268,
  40507. bottom: 83/2448
  40508. }
  40509. },
  40510. back: {
  40511. height: math.unit(8, "feet"),
  40512. weight: math.unit(553, "lb"),
  40513. name: "Back",
  40514. image: {
  40515. source: "./media/characters/tawendeh/back.svg",
  40516. extra: 2397/2294,
  40517. bottom: 42/2439
  40518. }
  40519. },
  40520. },
  40521. [
  40522. {
  40523. name: "Mortal Interaction",
  40524. height: math.unit(8, "feet"),
  40525. default: true
  40526. },
  40527. {
  40528. name: "Giant",
  40529. height: math.unit(80, "feet")
  40530. },
  40531. {
  40532. name: "Macro",
  40533. height: math.unit(800, "feet")
  40534. },
  40535. {
  40536. name: "Megamacro",
  40537. height: math.unit(8000, "feet")
  40538. },
  40539. {
  40540. name: "City-Crushing",
  40541. height: math.unit(24000, "feet")
  40542. },
  40543. {
  40544. name: "Mountain-Mashing",
  40545. height: math.unit(80000, "feet")
  40546. },
  40547. {
  40548. name: "Nation Nemesis",
  40549. height: math.unit(8e6, "feet")
  40550. },
  40551. {
  40552. name: "Continent Cracker",
  40553. height: math.unit(24e6, "feet")
  40554. },
  40555. {
  40556. name: "Earth-Eclipsing",
  40557. height: math.unit(2.4e8, "feet")
  40558. },
  40559. {
  40560. name: "Gas Giant Gulper",
  40561. height: math.unit(2.4e9, "feet")
  40562. },
  40563. {
  40564. name: "Sol-Swallowing",
  40565. height: math.unit(8e10, "feet")
  40566. },
  40567. {
  40568. name: "Galaxy Gulper",
  40569. height: math.unit(8, "galaxies")
  40570. },
  40571. {
  40572. name: "Cosmos Churner",
  40573. height: math.unit(8, "universes")
  40574. },
  40575. {
  40576. name: "Omnipotent Otter",
  40577. height: math.unit(80, "universes")
  40578. },
  40579. ]
  40580. ))
  40581. characterMakers.push(() => makeCharacter(
  40582. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  40583. {
  40584. front: {
  40585. height: math.unit(2.6, "meters"),
  40586. weight: math.unit(900, "kg"),
  40587. name: "Front",
  40588. image: {
  40589. source: "./media/characters/neesha/front.svg",
  40590. extra: 1803/1653,
  40591. bottom: 128/1931
  40592. }
  40593. },
  40594. },
  40595. [
  40596. {
  40597. name: "Normal",
  40598. height: math.unit(2.6, "meters"),
  40599. default: true
  40600. },
  40601. {
  40602. name: "Macro",
  40603. height: math.unit(50, "meters")
  40604. },
  40605. ]
  40606. ))
  40607. characterMakers.push(() => makeCharacter(
  40608. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  40609. {
  40610. front: {
  40611. height: math.unit(5, "feet"),
  40612. weight: math.unit(185, "lb"),
  40613. name: "Front",
  40614. image: {
  40615. source: "./media/characters/kyera/front.svg",
  40616. extra: 1875/1790,
  40617. bottom: 96/1971
  40618. }
  40619. },
  40620. },
  40621. [
  40622. {
  40623. name: "Normal",
  40624. height: math.unit(5, "feet"),
  40625. default: true
  40626. },
  40627. ]
  40628. ))
  40629. characterMakers.push(() => makeCharacter(
  40630. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  40631. {
  40632. front: {
  40633. height: math.unit(7 + 6/12, "feet"),
  40634. weight: math.unit(540, "lb"),
  40635. name: "Front",
  40636. image: {
  40637. source: "./media/characters/yuko/front.svg",
  40638. extra: 1282/1222,
  40639. bottom: 101/1383
  40640. }
  40641. },
  40642. frontClothed: {
  40643. height: math.unit(7 + 6/12, "feet"),
  40644. weight: math.unit(540, "lb"),
  40645. name: "Front (Clothed)",
  40646. image: {
  40647. source: "./media/characters/yuko/front-clothed.svg",
  40648. extra: 1282/1222,
  40649. bottom: 101/1383
  40650. }
  40651. },
  40652. },
  40653. [
  40654. {
  40655. name: "Normal",
  40656. height: math.unit(7 + 6/12, "feet"),
  40657. default: true
  40658. },
  40659. {
  40660. name: "Macro",
  40661. height: math.unit(26 + 9/12, "feet")
  40662. },
  40663. {
  40664. name: "Megamacro",
  40665. height: math.unit(300, "feet")
  40666. },
  40667. {
  40668. name: "Gigamacro",
  40669. height: math.unit(5000, "feet")
  40670. },
  40671. {
  40672. name: "Planetary",
  40673. height: math.unit(10000, "miles")
  40674. },
  40675. ]
  40676. ))
  40677. characterMakers.push(() => makeCharacter(
  40678. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  40679. {
  40680. front: {
  40681. height: math.unit(8 + 2/12, "feet"),
  40682. weight: math.unit(600, "lb"),
  40683. name: "Front",
  40684. image: {
  40685. source: "./media/characters/deam-nitrel/front.svg",
  40686. extra: 1308/1234,
  40687. bottom: 125/1433
  40688. }
  40689. },
  40690. },
  40691. [
  40692. {
  40693. name: "Normal",
  40694. height: math.unit(8 + 2/12, "feet"),
  40695. default: true
  40696. },
  40697. ]
  40698. ))
  40699. characterMakers.push(() => makeCharacter(
  40700. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  40701. {
  40702. front: {
  40703. height: math.unit(6.1, "feet"),
  40704. weight: math.unit(180, "lb"),
  40705. name: "Front",
  40706. image: {
  40707. source: "./media/characters/skyress/front.svg",
  40708. extra: 1045/915,
  40709. bottom: 28/1073
  40710. }
  40711. },
  40712. maw: {
  40713. height: math.unit(1, "feet"),
  40714. name: "Maw",
  40715. image: {
  40716. source: "./media/characters/skyress/maw.svg"
  40717. }
  40718. },
  40719. },
  40720. [
  40721. {
  40722. name: "Normal",
  40723. height: math.unit(6.1, "feet"),
  40724. default: true
  40725. },
  40726. {
  40727. name: "Macro",
  40728. height: math.unit(200, "feet")
  40729. },
  40730. ]
  40731. ))
  40732. characterMakers.push(() => makeCharacter(
  40733. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  40734. {
  40735. front: {
  40736. height: math.unit(4 + 2/12, "feet"),
  40737. weight: math.unit(40, "kg"),
  40738. name: "Front",
  40739. image: {
  40740. source: "./media/characters/amethyst-jones/front.svg",
  40741. extra: 1220/1150,
  40742. bottom: 101/1321
  40743. }
  40744. },
  40745. },
  40746. [
  40747. {
  40748. name: "Normal",
  40749. height: math.unit(4 + 2/12, "feet"),
  40750. default: true
  40751. },
  40752. ]
  40753. ))
  40754. characterMakers.push(() => makeCharacter(
  40755. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  40756. {
  40757. front: {
  40758. height: math.unit(1.7, "m"),
  40759. weight: math.unit(135, "lb"),
  40760. name: "Front",
  40761. image: {
  40762. source: "./media/characters/jade/front.svg",
  40763. extra: 1818/1767,
  40764. bottom: 32/1850
  40765. }
  40766. },
  40767. back: {
  40768. height: math.unit(1.7, "m"),
  40769. weight: math.unit(135, "lb"),
  40770. name: "Back",
  40771. image: {
  40772. source: "./media/characters/jade/back.svg",
  40773. extra: 1869/1809,
  40774. bottom: 35/1904
  40775. }
  40776. },
  40777. hand: {
  40778. height: math.unit(0.24, "m"),
  40779. name: "Hand",
  40780. image: {
  40781. source: "./media/characters/jade/hand.svg"
  40782. }
  40783. },
  40784. foot: {
  40785. height: math.unit(0.263, "m"),
  40786. name: "Foot",
  40787. image: {
  40788. source: "./media/characters/jade/foot.svg"
  40789. }
  40790. },
  40791. dick: {
  40792. height: math.unit(0.47, "m"),
  40793. name: "Dick",
  40794. image: {
  40795. source: "./media/characters/jade/dick.svg"
  40796. }
  40797. },
  40798. },
  40799. [
  40800. {
  40801. name: "Micro",
  40802. height: math.unit(22, "cm")
  40803. },
  40804. {
  40805. name: "Normal",
  40806. height: math.unit(1.7, "m"),
  40807. default: true
  40808. },
  40809. {
  40810. name: "Macro",
  40811. height: math.unit(152, "m")
  40812. },
  40813. ]
  40814. ))
  40815. characterMakers.push(() => makeCharacter(
  40816. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  40817. {
  40818. front: {
  40819. height: math.unit(100, "miles"),
  40820. weight: math.unit(20000, "tons"),
  40821. name: "Front",
  40822. image: {
  40823. source: "./media/characters/cookie/front.svg",
  40824. extra: 1125/1070,
  40825. bottom: 30/1155
  40826. }
  40827. },
  40828. },
  40829. [
  40830. {
  40831. name: "Big",
  40832. height: math.unit(50, "feet")
  40833. },
  40834. {
  40835. name: "Macro",
  40836. height: math.unit(100, "miles"),
  40837. default: true
  40838. },
  40839. {
  40840. name: "Megamacro",
  40841. height: math.unit(90000, "miles")
  40842. },
  40843. ]
  40844. ))
  40845. characterMakers.push(() => makeCharacter(
  40846. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  40847. {
  40848. front: {
  40849. height: math.unit(6, "feet"),
  40850. weight: math.unit(145, "lb"),
  40851. name: "Front",
  40852. image: {
  40853. source: "./media/characters/farzian/front.svg",
  40854. extra: 1902/1693,
  40855. bottom: 108/2010
  40856. }
  40857. },
  40858. },
  40859. [
  40860. {
  40861. name: "Macro",
  40862. height: math.unit(500, "feet"),
  40863. default: true
  40864. },
  40865. ]
  40866. ))
  40867. characterMakers.push(() => makeCharacter(
  40868. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  40869. {
  40870. front: {
  40871. height: math.unit(3 + 6/12, "feet"),
  40872. weight: math.unit(50, "lb"),
  40873. name: "Front",
  40874. image: {
  40875. source: "./media/characters/kimberly-tilson/front.svg",
  40876. extra: 1400/1322,
  40877. bottom: 36/1436
  40878. }
  40879. },
  40880. back: {
  40881. height: math.unit(3 + 6/12, "feet"),
  40882. weight: math.unit(50, "lb"),
  40883. name: "Back",
  40884. image: {
  40885. source: "./media/characters/kimberly-tilson/back.svg",
  40886. extra: 1370/1307,
  40887. bottom: 20/1390
  40888. }
  40889. },
  40890. },
  40891. [
  40892. {
  40893. name: "Normal",
  40894. height: math.unit(3 + 6/12, "feet"),
  40895. default: true
  40896. },
  40897. ]
  40898. ))
  40899. characterMakers.push(() => makeCharacter(
  40900. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  40901. {
  40902. front: {
  40903. height: math.unit(1148, "feet"),
  40904. weight: math.unit(34057, "lb"),
  40905. name: "Front",
  40906. image: {
  40907. source: "./media/characters/harthos/front.svg",
  40908. extra: 1391/1339,
  40909. bottom: 13/1404
  40910. }
  40911. },
  40912. },
  40913. [
  40914. {
  40915. name: "Macro",
  40916. height: math.unit(1148, "feet"),
  40917. default: true
  40918. },
  40919. ]
  40920. ))
  40921. characterMakers.push(() => makeCharacter(
  40922. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  40923. {
  40924. front: {
  40925. height: math.unit(15, "feet"),
  40926. name: "Front",
  40927. image: {
  40928. source: "./media/characters/hypatia/front.svg",
  40929. extra: 1653/1591,
  40930. bottom: 79/1732
  40931. }
  40932. },
  40933. },
  40934. [
  40935. {
  40936. name: "Normal",
  40937. height: math.unit(15, "feet")
  40938. },
  40939. {
  40940. name: "Small",
  40941. height: math.unit(300, "feet")
  40942. },
  40943. {
  40944. name: "Macro",
  40945. height: math.unit(2500, "feet"),
  40946. default: true
  40947. },
  40948. {
  40949. name: "Mega Macro",
  40950. height: math.unit(1500, "miles")
  40951. },
  40952. {
  40953. name: "Giga Macro",
  40954. height: math.unit(1.5e6, "miles")
  40955. },
  40956. ]
  40957. ))
  40958. characterMakers.push(() => makeCharacter(
  40959. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  40960. {
  40961. front: {
  40962. height: math.unit(6, "feet"),
  40963. weight: math.unit(200, "lb"),
  40964. name: "Front",
  40965. image: {
  40966. source: "./media/characters/wulver/front.svg",
  40967. extra: 1724/1632,
  40968. bottom: 130/1854
  40969. }
  40970. },
  40971. frontNsfw: {
  40972. height: math.unit(6, "feet"),
  40973. weight: math.unit(200, "lb"),
  40974. name: "Front (NSFW)",
  40975. image: {
  40976. source: "./media/characters/wulver/front-nsfw.svg",
  40977. extra: 1724/1632,
  40978. bottom: 130/1854
  40979. }
  40980. },
  40981. },
  40982. [
  40983. {
  40984. name: "Human-Sized",
  40985. height: math.unit(6, "feet")
  40986. },
  40987. {
  40988. name: "Normal",
  40989. height: math.unit(4, "meters"),
  40990. default: true
  40991. },
  40992. {
  40993. name: "Large",
  40994. height: math.unit(6, "m")
  40995. },
  40996. ]
  40997. ))
  40998. characterMakers.push(() => makeCharacter(
  40999. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  41000. {
  41001. front: {
  41002. height: math.unit(7, "feet"),
  41003. name: "Front",
  41004. image: {
  41005. source: "./media/characters/maru/front.svg",
  41006. extra: 1595/1570,
  41007. bottom: 0/1595
  41008. }
  41009. },
  41010. },
  41011. [
  41012. {
  41013. name: "Normal",
  41014. height: math.unit(7, "feet"),
  41015. default: true
  41016. },
  41017. {
  41018. name: "Macro",
  41019. height: math.unit(700, "feet")
  41020. },
  41021. {
  41022. name: "Mega Macro",
  41023. height: math.unit(25, "miles")
  41024. },
  41025. ]
  41026. ))
  41027. characterMakers.push(() => makeCharacter(
  41028. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  41029. {
  41030. front: {
  41031. height: math.unit(6, "feet"),
  41032. weight: math.unit(170, "lb"),
  41033. name: "Front",
  41034. image: {
  41035. source: "./media/characters/xenon/front.svg",
  41036. extra: 1376/1305,
  41037. bottom: 56/1432
  41038. }
  41039. },
  41040. back: {
  41041. height: math.unit(6, "feet"),
  41042. weight: math.unit(170, "lb"),
  41043. name: "Back",
  41044. image: {
  41045. source: "./media/characters/xenon/back.svg",
  41046. extra: 1328/1259,
  41047. bottom: 95/1423
  41048. }
  41049. },
  41050. maw: {
  41051. height: math.unit(0.52, "feet"),
  41052. name: "Maw",
  41053. image: {
  41054. source: "./media/characters/xenon/maw.svg"
  41055. }
  41056. },
  41057. hand: {
  41058. height: math.unit(0.82, "feet"),
  41059. name: "Hand",
  41060. image: {
  41061. source: "./media/characters/xenon/hand.svg"
  41062. }
  41063. },
  41064. foot: {
  41065. height: math.unit(1.13, "feet"),
  41066. name: "Foot",
  41067. image: {
  41068. source: "./media/characters/xenon/foot.svg"
  41069. }
  41070. },
  41071. },
  41072. [
  41073. {
  41074. name: "Micro",
  41075. height: math.unit(0.8, "inches")
  41076. },
  41077. {
  41078. name: "Normal",
  41079. height: math.unit(6, "feet")
  41080. },
  41081. {
  41082. name: "Macro",
  41083. height: math.unit(50, "feet"),
  41084. default: true
  41085. },
  41086. {
  41087. name: "Macro+",
  41088. height: math.unit(250, "feet")
  41089. },
  41090. {
  41091. name: "Megamacro",
  41092. height: math.unit(1500, "feet")
  41093. },
  41094. ]
  41095. ))
  41096. characterMakers.push(() => makeCharacter(
  41097. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  41098. {
  41099. front: {
  41100. height: math.unit(7 + 5/12, "feet"),
  41101. name: "Front",
  41102. image: {
  41103. source: "./media/characters/zane/front.svg",
  41104. extra: 1260/1203,
  41105. bottom: 94/1354
  41106. }
  41107. },
  41108. back: {
  41109. height: math.unit(5.05, "feet"),
  41110. name: "Back",
  41111. image: {
  41112. source: "./media/characters/zane/back.svg",
  41113. extra: 893/829,
  41114. bottom: 30/923
  41115. }
  41116. },
  41117. werewolf: {
  41118. height: math.unit(11, "feet"),
  41119. name: "Werewolf",
  41120. image: {
  41121. source: "./media/characters/zane/werewolf.svg",
  41122. extra: 1383/1323,
  41123. bottom: 89/1472
  41124. }
  41125. },
  41126. foot: {
  41127. height: math.unit(1.46, "feet"),
  41128. name: "Foot",
  41129. image: {
  41130. source: "./media/characters/zane/foot.svg"
  41131. }
  41132. },
  41133. footFront: {
  41134. height: math.unit(0.784, "feet"),
  41135. name: "Foot (Front)",
  41136. image: {
  41137. source: "./media/characters/zane/foot-front.svg"
  41138. }
  41139. },
  41140. dick: {
  41141. height: math.unit(1.95, "feet"),
  41142. name: "Dick",
  41143. image: {
  41144. source: "./media/characters/zane/dick.svg"
  41145. }
  41146. },
  41147. dickWerewolf: {
  41148. height: math.unit(3.77, "feet"),
  41149. name: "Dick (Werewolf)",
  41150. image: {
  41151. source: "./media/characters/zane/dick.svg"
  41152. }
  41153. },
  41154. },
  41155. [
  41156. {
  41157. name: "Normal",
  41158. height: math.unit(7 + 5/12, "feet"),
  41159. default: true
  41160. },
  41161. ]
  41162. ))
  41163. characterMakers.push(() => makeCharacter(
  41164. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  41165. {
  41166. front: {
  41167. height: math.unit(6 + 2/12, "feet"),
  41168. weight: math.unit(284, "lb"),
  41169. name: "Front",
  41170. image: {
  41171. source: "./media/characters/benni-desparque/front.svg",
  41172. extra: 1353/1126,
  41173. bottom: 69/1422
  41174. }
  41175. },
  41176. },
  41177. [
  41178. {
  41179. name: "Civilian",
  41180. height: math.unit(6 + 2/12, "feet")
  41181. },
  41182. {
  41183. name: "Normal",
  41184. height: math.unit(98, "feet"),
  41185. default: true
  41186. },
  41187. {
  41188. name: "Kaiju Fighter",
  41189. height: math.unit(268, "feet")
  41190. },
  41191. ]
  41192. ))
  41193. characterMakers.push(() => makeCharacter(
  41194. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  41195. {
  41196. front: {
  41197. height: math.unit(5, "feet"),
  41198. weight: math.unit(105, "lb"),
  41199. name: "Front",
  41200. image: {
  41201. source: "./media/characters/maxine/front.svg",
  41202. extra: 1386/1250,
  41203. bottom: 71/1457
  41204. }
  41205. },
  41206. },
  41207. [
  41208. {
  41209. name: "Normal",
  41210. height: math.unit(5, "feet"),
  41211. default: true
  41212. },
  41213. ]
  41214. ))
  41215. characterMakers.push(() => makeCharacter(
  41216. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  41217. {
  41218. front: {
  41219. height: math.unit(11 + 7/12, "feet"),
  41220. weight: math.unit(9576, "lb"),
  41221. name: "Front",
  41222. image: {
  41223. source: "./media/characters/scaly/front.svg",
  41224. extra: 888/867,
  41225. bottom: 36/924
  41226. }
  41227. },
  41228. },
  41229. [
  41230. {
  41231. name: "Normal",
  41232. height: math.unit(11 + 7/12, "feet"),
  41233. default: true
  41234. },
  41235. ]
  41236. ))
  41237. characterMakers.push(() => makeCharacter(
  41238. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  41239. {
  41240. front: {
  41241. height: math.unit(6 + 3/12, "feet"),
  41242. name: "Front",
  41243. image: {
  41244. source: "./media/characters/saelria/front.svg",
  41245. extra: 1243/1138,
  41246. bottom: 46/1289
  41247. }
  41248. },
  41249. },
  41250. [
  41251. {
  41252. name: "Micro",
  41253. height: math.unit(6, "inches"),
  41254. },
  41255. {
  41256. name: "Normal",
  41257. height: math.unit(6 + 3/12, "feet"),
  41258. default: true
  41259. },
  41260. {
  41261. name: "Macro",
  41262. height: math.unit(25, "feet")
  41263. },
  41264. ]
  41265. ))
  41266. characterMakers.push(() => makeCharacter(
  41267. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  41268. {
  41269. front: {
  41270. height: math.unit(80, "meters"),
  41271. weight: math.unit(7000, "tonnes"),
  41272. name: "Front",
  41273. image: {
  41274. source: "./media/characters/tef/front.svg",
  41275. extra: 2036/1991,
  41276. bottom: 54/2090
  41277. }
  41278. },
  41279. back: {
  41280. height: math.unit(80, "meters"),
  41281. weight: math.unit(7000, "tonnes"),
  41282. name: "Back",
  41283. image: {
  41284. source: "./media/characters/tef/back.svg",
  41285. extra: 2036/1991,
  41286. bottom: 54/2090
  41287. }
  41288. },
  41289. },
  41290. [
  41291. {
  41292. name: "Macro",
  41293. height: math.unit(80, "meters"),
  41294. default: true
  41295. },
  41296. ]
  41297. ))
  41298. characterMakers.push(() => makeCharacter(
  41299. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  41300. {
  41301. front: {
  41302. height: math.unit(13, "feet"),
  41303. weight: math.unit(6, "tons"),
  41304. name: "Front",
  41305. image: {
  41306. source: "./media/characters/rover/front.svg",
  41307. extra: 1233/1156,
  41308. bottom: 50/1283
  41309. }
  41310. },
  41311. back: {
  41312. height: math.unit(13, "feet"),
  41313. weight: math.unit(6, "tons"),
  41314. name: "Back",
  41315. image: {
  41316. source: "./media/characters/rover/back.svg",
  41317. extra: 1327/1258,
  41318. bottom: 39/1366
  41319. }
  41320. },
  41321. },
  41322. [
  41323. {
  41324. name: "Normal",
  41325. height: math.unit(13, "feet"),
  41326. default: true
  41327. },
  41328. {
  41329. name: "Macro",
  41330. height: math.unit(1300, "feet")
  41331. },
  41332. {
  41333. name: "Megamacro",
  41334. height: math.unit(1300, "miles")
  41335. },
  41336. {
  41337. name: "Gigamacro",
  41338. height: math.unit(1300000, "miles")
  41339. },
  41340. ]
  41341. ))
  41342. characterMakers.push(() => makeCharacter(
  41343. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  41344. {
  41345. front: {
  41346. height: math.unit(6, "feet"),
  41347. weight: math.unit(150, "lb"),
  41348. name: "Front",
  41349. image: {
  41350. source: "./media/characters/ariz/front.svg",
  41351. extra: 1401/1346,
  41352. bottom: 5/1406
  41353. }
  41354. },
  41355. },
  41356. [
  41357. {
  41358. name: "Normal",
  41359. height: math.unit(10, "feet"),
  41360. default: true
  41361. },
  41362. ]
  41363. ))
  41364. characterMakers.push(() => makeCharacter(
  41365. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  41366. {
  41367. front: {
  41368. height: math.unit(6, "feet"),
  41369. weight: math.unit(140, "lb"),
  41370. name: "Front",
  41371. image: {
  41372. source: "./media/characters/sigrun/front.svg",
  41373. extra: 1418/1359,
  41374. bottom: 27/1445
  41375. }
  41376. },
  41377. },
  41378. [
  41379. {
  41380. name: "Macro",
  41381. height: math.unit(35, "feet"),
  41382. default: true
  41383. },
  41384. ]
  41385. ))
  41386. characterMakers.push(() => makeCharacter(
  41387. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  41388. {
  41389. front: {
  41390. height: math.unit(6, "feet"),
  41391. weight: math.unit(150, "lb"),
  41392. name: "Front",
  41393. image: {
  41394. source: "./media/characters/numin/front.svg",
  41395. extra: 1433/1388,
  41396. bottom: 12/1445
  41397. }
  41398. },
  41399. },
  41400. [
  41401. {
  41402. name: "Macro",
  41403. height: math.unit(21.5, "km"),
  41404. default: true
  41405. },
  41406. ]
  41407. ))
  41408. characterMakers.push(() => makeCharacter(
  41409. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  41410. {
  41411. front: {
  41412. height: math.unit(6, "feet"),
  41413. weight: math.unit(463, "lb"),
  41414. name: "Front",
  41415. image: {
  41416. source: "./media/characters/melwa/front.svg",
  41417. extra: 1307/1248,
  41418. bottom: 93/1400
  41419. }
  41420. },
  41421. },
  41422. [
  41423. {
  41424. name: "Macro",
  41425. height: math.unit(50, "meters"),
  41426. default: true
  41427. },
  41428. ]
  41429. ))
  41430. characterMakers.push(() => makeCharacter(
  41431. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  41432. {
  41433. front: {
  41434. height: math.unit(325, "feet"),
  41435. name: "Front",
  41436. image: {
  41437. source: "./media/characters/zorkaiju/front.svg",
  41438. extra: 1955/1814,
  41439. bottom: 40/1995
  41440. }
  41441. },
  41442. frontExtended: {
  41443. height: math.unit(325, "feet"),
  41444. name: "Front (Extended)",
  41445. image: {
  41446. source: "./media/characters/zorkaiju/front-extended.svg",
  41447. extra: 1955/1814,
  41448. bottom: 40/1995
  41449. }
  41450. },
  41451. side: {
  41452. height: math.unit(325, "feet"),
  41453. name: "Side",
  41454. image: {
  41455. source: "./media/characters/zorkaiju/side.svg",
  41456. extra: 1495/1396,
  41457. bottom: 17/1512
  41458. }
  41459. },
  41460. sideExtended: {
  41461. height: math.unit(325, "feet"),
  41462. name: "Side (Extended)",
  41463. image: {
  41464. source: "./media/characters/zorkaiju/side-extended.svg",
  41465. extra: 1495/1396,
  41466. bottom: 17/1512
  41467. }
  41468. },
  41469. back: {
  41470. height: math.unit(325, "feet"),
  41471. name: "Back",
  41472. image: {
  41473. source: "./media/characters/zorkaiju/back.svg",
  41474. extra: 1959/1821,
  41475. bottom: 31/1990
  41476. }
  41477. },
  41478. backExtended: {
  41479. height: math.unit(325, "feet"),
  41480. name: "Back (Extended)",
  41481. image: {
  41482. source: "./media/characters/zorkaiju/back-extended.svg",
  41483. extra: 1959/1821,
  41484. bottom: 31/1990
  41485. }
  41486. },
  41487. hand: {
  41488. height: math.unit(58.4, "feet"),
  41489. name: "Hand",
  41490. image: {
  41491. source: "./media/characters/zorkaiju/hand.svg"
  41492. }
  41493. },
  41494. handExtended: {
  41495. height: math.unit(61.4, "feet"),
  41496. name: "Hand (Extended)",
  41497. image: {
  41498. source: "./media/characters/zorkaiju/hand-extended.svg"
  41499. }
  41500. },
  41501. foot: {
  41502. height: math.unit(95, "feet"),
  41503. name: "Foot",
  41504. image: {
  41505. source: "./media/characters/zorkaiju/foot.svg"
  41506. }
  41507. },
  41508. leftArm: {
  41509. height: math.unit(59, "feet"),
  41510. name: "Left Arm",
  41511. image: {
  41512. source: "./media/characters/zorkaiju/left-arm.svg"
  41513. }
  41514. },
  41515. rightArm: {
  41516. height: math.unit(59, "feet"),
  41517. name: "Right Arm",
  41518. image: {
  41519. source: "./media/characters/zorkaiju/right-arm.svg"
  41520. }
  41521. },
  41522. tail: {
  41523. height: math.unit(104, "feet"),
  41524. name: "Tail",
  41525. image: {
  41526. source: "./media/characters/zorkaiju/tail.svg"
  41527. }
  41528. },
  41529. tailExtended: {
  41530. height: math.unit(104, "feet"),
  41531. name: "Tail (Extended)",
  41532. image: {
  41533. source: "./media/characters/zorkaiju/tail-extended.svg"
  41534. }
  41535. },
  41536. tailBottom: {
  41537. height: math.unit(104, "feet"),
  41538. name: "Tail Bottom",
  41539. image: {
  41540. source: "./media/characters/zorkaiju/tail-bottom.svg"
  41541. }
  41542. },
  41543. crystal: {
  41544. height: math.unit(27.54, "feet"),
  41545. name: "Crystal",
  41546. image: {
  41547. source: "./media/characters/zorkaiju/crystal.svg"
  41548. }
  41549. },
  41550. },
  41551. [
  41552. {
  41553. name: "Kaiju",
  41554. height: math.unit(325, "feet"),
  41555. default: true
  41556. },
  41557. ]
  41558. ))
  41559. characterMakers.push(() => makeCharacter(
  41560. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  41561. {
  41562. front: {
  41563. height: math.unit(6 + 1/12, "feet"),
  41564. weight: math.unit(115, "lb"),
  41565. name: "Front",
  41566. image: {
  41567. source: "./media/characters/bailey-belfry/front.svg",
  41568. extra: 1240/1121,
  41569. bottom: 101/1341
  41570. }
  41571. },
  41572. },
  41573. [
  41574. {
  41575. name: "Normal",
  41576. height: math.unit(6 + 1/12, "feet"),
  41577. default: true
  41578. },
  41579. ]
  41580. ))
  41581. characterMakers.push(() => makeCharacter(
  41582. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  41583. {
  41584. side: {
  41585. height: math.unit(4, "meters"),
  41586. weight: math.unit(250, "kg"),
  41587. name: "Side",
  41588. image: {
  41589. source: "./media/characters/blacky/side.svg",
  41590. extra: 1027/919,
  41591. bottom: 43/1070
  41592. }
  41593. },
  41594. maw: {
  41595. height: math.unit(1, "meters"),
  41596. name: "Maw",
  41597. image: {
  41598. source: "./media/characters/blacky/maw.svg"
  41599. }
  41600. },
  41601. paw: {
  41602. height: math.unit(1, "meters"),
  41603. name: "Paw",
  41604. image: {
  41605. source: "./media/characters/blacky/paw.svg"
  41606. }
  41607. },
  41608. },
  41609. [
  41610. {
  41611. name: "Normal",
  41612. height: math.unit(4, "meters"),
  41613. default: true
  41614. },
  41615. ]
  41616. ))
  41617. characterMakers.push(() => makeCharacter(
  41618. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  41619. {
  41620. front: {
  41621. height: math.unit(170, "cm"),
  41622. weight: math.unit(66, "kg"),
  41623. name: "Front",
  41624. image: {
  41625. source: "./media/characters/thux-ei/front.svg",
  41626. extra: 1109/1011,
  41627. bottom: 8/1117
  41628. }
  41629. },
  41630. },
  41631. [
  41632. {
  41633. name: "Normal",
  41634. height: math.unit(170, "cm"),
  41635. default: true
  41636. },
  41637. ]
  41638. ))
  41639. characterMakers.push(() => makeCharacter(
  41640. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  41641. {
  41642. front: {
  41643. height: math.unit(5, "feet"),
  41644. weight: math.unit(120, "lb"),
  41645. name: "Front",
  41646. image: {
  41647. source: "./media/characters/roxanne-voltaire/front.svg",
  41648. extra: 1901/1779,
  41649. bottom: 53/1954
  41650. }
  41651. },
  41652. },
  41653. [
  41654. {
  41655. name: "Normal",
  41656. height: math.unit(5, "feet"),
  41657. default: true
  41658. },
  41659. {
  41660. name: "Giant",
  41661. height: math.unit(50, "feet")
  41662. },
  41663. {
  41664. name: "Titan",
  41665. height: math.unit(500, "feet")
  41666. },
  41667. {
  41668. name: "Macro",
  41669. height: math.unit(5000, "feet")
  41670. },
  41671. {
  41672. name: "Megamacro",
  41673. height: math.unit(50000, "feet")
  41674. },
  41675. {
  41676. name: "Gigamacro",
  41677. height: math.unit(500000, "feet")
  41678. },
  41679. {
  41680. name: "Teramacro",
  41681. height: math.unit(5e6, "feet")
  41682. },
  41683. ]
  41684. ))
  41685. characterMakers.push(() => makeCharacter(
  41686. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  41687. {
  41688. front: {
  41689. height: math.unit(6 + 2/12, "feet"),
  41690. name: "Front",
  41691. image: {
  41692. source: "./media/characters/squeaks/front.svg",
  41693. extra: 1823/1768,
  41694. bottom: 138/1961
  41695. }
  41696. },
  41697. },
  41698. [
  41699. {
  41700. name: "Micro",
  41701. height: math.unit(0.5, "inches")
  41702. },
  41703. {
  41704. name: "Normal",
  41705. height: math.unit(6 + 2/12, "feet"),
  41706. default: true
  41707. },
  41708. {
  41709. name: "Macro",
  41710. height: math.unit(600, "feet")
  41711. },
  41712. ]
  41713. ))
  41714. characterMakers.push(() => makeCharacter(
  41715. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  41716. {
  41717. front: {
  41718. height: math.unit(1.72, "meters"),
  41719. name: "Front",
  41720. image: {
  41721. source: "./media/characters/archinger/front.svg",
  41722. extra: 1861/1675,
  41723. bottom: 125/1986
  41724. }
  41725. },
  41726. back: {
  41727. height: math.unit(1.72, "meters"),
  41728. name: "Back",
  41729. image: {
  41730. source: "./media/characters/archinger/back.svg",
  41731. extra: 1844/1701,
  41732. bottom: 104/1948
  41733. }
  41734. },
  41735. cock: {
  41736. height: math.unit(0.59, "feet"),
  41737. name: "Cock",
  41738. image: {
  41739. source: "./media/characters/archinger/cock.svg"
  41740. }
  41741. },
  41742. },
  41743. [
  41744. {
  41745. name: "Normal",
  41746. height: math.unit(1.72, "meters"),
  41747. default: true
  41748. },
  41749. {
  41750. name: "Macro",
  41751. height: math.unit(84, "meters")
  41752. },
  41753. {
  41754. name: "Macro+",
  41755. height: math.unit(112, "meters")
  41756. },
  41757. {
  41758. name: "Macro++",
  41759. height: math.unit(960, "meters")
  41760. },
  41761. {
  41762. name: "Macro+++",
  41763. height: math.unit(4, "km")
  41764. },
  41765. {
  41766. name: "Macro++++",
  41767. height: math.unit(48, "km")
  41768. },
  41769. {
  41770. name: "Macro+++++",
  41771. height: math.unit(4500, "km")
  41772. },
  41773. ]
  41774. ))
  41775. characterMakers.push(() => makeCharacter(
  41776. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  41777. {
  41778. front: {
  41779. height: math.unit(5 + 5/12, "feet"),
  41780. name: "Front",
  41781. image: {
  41782. source: "./media/characters/alsnapz/front.svg",
  41783. extra: 1157/1065,
  41784. bottom: 42/1199
  41785. }
  41786. },
  41787. },
  41788. [
  41789. {
  41790. name: "Normal",
  41791. height: math.unit(5 + 5/12, "feet"),
  41792. default: true
  41793. },
  41794. ]
  41795. ))
  41796. characterMakers.push(() => makeCharacter(
  41797. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  41798. {
  41799. side: {
  41800. height: math.unit(3.2, "earths"),
  41801. name: "Side",
  41802. image: {
  41803. source: "./media/characters/mag/side.svg",
  41804. extra: 1331/1008,
  41805. bottom: 52/1383
  41806. }
  41807. },
  41808. wing: {
  41809. height: math.unit(1.94, "earths"),
  41810. name: "Wing",
  41811. image: {
  41812. source: "./media/characters/mag/wing.svg"
  41813. }
  41814. },
  41815. dick: {
  41816. height: math.unit(1.8, "earths"),
  41817. name: "Dick",
  41818. image: {
  41819. source: "./media/characters/mag/dick.svg"
  41820. }
  41821. },
  41822. ass: {
  41823. height: math.unit(1.33, "earths"),
  41824. name: "Ass",
  41825. image: {
  41826. source: "./media/characters/mag/ass.svg"
  41827. }
  41828. },
  41829. head: {
  41830. height: math.unit(1.1, "earths"),
  41831. name: "Head",
  41832. image: {
  41833. source: "./media/characters/mag/head.svg"
  41834. }
  41835. },
  41836. maw: {
  41837. height: math.unit(1.62, "earths"),
  41838. name: "Maw",
  41839. image: {
  41840. source: "./media/characters/mag/maw.svg"
  41841. }
  41842. },
  41843. },
  41844. [
  41845. {
  41846. name: "Small",
  41847. height: math.unit(162, "feet")
  41848. },
  41849. {
  41850. name: "Normal",
  41851. height: math.unit(3.2, "earths"),
  41852. default: true
  41853. },
  41854. ]
  41855. ))
  41856. characterMakers.push(() => makeCharacter(
  41857. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  41858. {
  41859. front: {
  41860. height: math.unit(512, "feet"),
  41861. weight: math.unit(63509, "tonnes"),
  41862. name: "Front",
  41863. image: {
  41864. source: "./media/characters/vorrel-harroc/front.svg",
  41865. extra: 1075/1063,
  41866. bottom: 62/1137
  41867. }
  41868. },
  41869. },
  41870. [
  41871. {
  41872. name: "Normal",
  41873. height: math.unit(10, "feet")
  41874. },
  41875. {
  41876. name: "Macro",
  41877. height: math.unit(512, "feet"),
  41878. default: true
  41879. },
  41880. {
  41881. name: "Megamacro",
  41882. height: math.unit(256, "miles")
  41883. },
  41884. {
  41885. name: "Gigamacro",
  41886. height: math.unit(4096, "miles")
  41887. },
  41888. ]
  41889. ))
  41890. characterMakers.push(() => makeCharacter(
  41891. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  41892. {
  41893. side: {
  41894. height: math.unit(50, "feet"),
  41895. name: "Side",
  41896. image: {
  41897. source: "./media/characters/froimar/side.svg",
  41898. extra: 855/638,
  41899. bottom: 99/954
  41900. }
  41901. },
  41902. },
  41903. [
  41904. {
  41905. name: "Macro",
  41906. height: math.unit(50, "feet"),
  41907. default: true
  41908. },
  41909. ]
  41910. ))
  41911. characterMakers.push(() => makeCharacter(
  41912. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  41913. {
  41914. front: {
  41915. height: math.unit(210, "miles"),
  41916. name: "Front",
  41917. image: {
  41918. source: "./media/characters/timothy/front.svg",
  41919. extra: 1007/943,
  41920. bottom: 62/1069
  41921. }
  41922. },
  41923. frontSkirt: {
  41924. height: math.unit(210, "miles"),
  41925. name: "Front (Skirt)",
  41926. image: {
  41927. source: "./media/characters/timothy/front-skirt.svg",
  41928. extra: 1007/943,
  41929. bottom: 62/1069
  41930. }
  41931. },
  41932. frontCoat: {
  41933. height: math.unit(210, "miles"),
  41934. name: "Front (Coat)",
  41935. image: {
  41936. source: "./media/characters/timothy/front-coat.svg",
  41937. extra: 1007/943,
  41938. bottom: 62/1069
  41939. }
  41940. },
  41941. },
  41942. [
  41943. {
  41944. name: "Macro",
  41945. height: math.unit(210, "miles"),
  41946. default: true
  41947. },
  41948. {
  41949. name: "Megamacro",
  41950. height: math.unit(210000, "miles")
  41951. },
  41952. ]
  41953. ))
  41954. characterMakers.push(() => makeCharacter(
  41955. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  41956. {
  41957. front: {
  41958. height: math.unit(188, "feet"),
  41959. name: "Front",
  41960. image: {
  41961. source: "./media/characters/pyotr/front.svg",
  41962. extra: 1912/1826,
  41963. bottom: 18/1930
  41964. }
  41965. },
  41966. },
  41967. [
  41968. {
  41969. name: "Macro",
  41970. height: math.unit(188, "feet"),
  41971. default: true
  41972. },
  41973. {
  41974. name: "Megamacro",
  41975. height: math.unit(8, "miles")
  41976. },
  41977. ]
  41978. ))
  41979. characterMakers.push(() => makeCharacter(
  41980. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  41981. {
  41982. side: {
  41983. height: math.unit(10, "feet"),
  41984. weight: math.unit(4500, "lb"),
  41985. name: "Side",
  41986. image: {
  41987. source: "./media/characters/ackart/side.svg",
  41988. extra: 1776/1668,
  41989. bottom: 116/1892
  41990. }
  41991. },
  41992. },
  41993. [
  41994. {
  41995. name: "Normal",
  41996. height: math.unit(10, "feet"),
  41997. default: true
  41998. },
  41999. ]
  42000. ))
  42001. characterMakers.push(() => makeCharacter(
  42002. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  42003. {
  42004. side: {
  42005. height: math.unit(21, "feet"),
  42006. name: "Side",
  42007. image: {
  42008. source: "./media/characters/nolow/side.svg",
  42009. extra: 1484/1434,
  42010. bottom: 85/1569
  42011. }
  42012. },
  42013. sideErect: {
  42014. height: math.unit(21, "feet"),
  42015. name: "Side-erect",
  42016. image: {
  42017. source: "./media/characters/nolow/side-erect.svg",
  42018. extra: 1484/1434,
  42019. bottom: 85/1569
  42020. }
  42021. },
  42022. },
  42023. [
  42024. {
  42025. name: "Regular",
  42026. height: math.unit(12, "feet")
  42027. },
  42028. {
  42029. name: "Big Chee",
  42030. height: math.unit(21, "feet"),
  42031. default: true
  42032. },
  42033. ]
  42034. ))
  42035. characterMakers.push(() => makeCharacter(
  42036. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  42037. {
  42038. front: {
  42039. height: math.unit(7, "feet"),
  42040. weight: math.unit(250, "lb"),
  42041. name: "Front",
  42042. image: {
  42043. source: "./media/characters/nines/front.svg",
  42044. extra: 1741/1607,
  42045. bottom: 41/1782
  42046. }
  42047. },
  42048. side: {
  42049. height: math.unit(7, "feet"),
  42050. weight: math.unit(250, "lb"),
  42051. name: "Side",
  42052. image: {
  42053. source: "./media/characters/nines/side.svg",
  42054. extra: 1854/1735,
  42055. bottom: 93/1947
  42056. }
  42057. },
  42058. back: {
  42059. height: math.unit(7, "feet"),
  42060. weight: math.unit(250, "lb"),
  42061. name: "Back",
  42062. image: {
  42063. source: "./media/characters/nines/back.svg",
  42064. extra: 1748/1615,
  42065. bottom: 20/1768
  42066. }
  42067. },
  42068. },
  42069. [
  42070. {
  42071. name: "Megamacro",
  42072. height: math.unit(99, "km"),
  42073. default: true
  42074. },
  42075. ]
  42076. ))
  42077. characterMakers.push(() => makeCharacter(
  42078. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  42079. {
  42080. front: {
  42081. height: math.unit(5 + 10/12, "feet"),
  42082. weight: math.unit(210, "lb"),
  42083. name: "Front",
  42084. image: {
  42085. source: "./media/characters/zenith/front.svg",
  42086. extra: 1531/1452,
  42087. bottom: 198/1729
  42088. }
  42089. },
  42090. back: {
  42091. height: math.unit(5 + 10/12, "feet"),
  42092. weight: math.unit(210, "lb"),
  42093. name: "Back",
  42094. image: {
  42095. source: "./media/characters/zenith/back.svg",
  42096. extra: 1571/1487,
  42097. bottom: 75/1646
  42098. }
  42099. },
  42100. },
  42101. [
  42102. {
  42103. name: "Normal",
  42104. height: math.unit(5 + 10/12, "feet"),
  42105. default: true
  42106. }
  42107. ]
  42108. ))
  42109. characterMakers.push(() => makeCharacter(
  42110. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  42111. {
  42112. front: {
  42113. height: math.unit(4, "feet"),
  42114. weight: math.unit(60, "lb"),
  42115. name: "Front",
  42116. image: {
  42117. source: "./media/characters/jasper/front.svg",
  42118. extra: 1450/1379,
  42119. bottom: 19/1469
  42120. }
  42121. },
  42122. },
  42123. [
  42124. {
  42125. name: "Normal",
  42126. height: math.unit(4, "feet"),
  42127. default: true
  42128. },
  42129. ]
  42130. ))
  42131. characterMakers.push(() => makeCharacter(
  42132. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  42133. {
  42134. front: {
  42135. height: math.unit(6 + 5/12, "feet"),
  42136. weight: math.unit(290, "lb"),
  42137. name: "Front",
  42138. image: {
  42139. source: "./media/characters/tiberius-thyben/front.svg",
  42140. extra: 757/739,
  42141. bottom: 39/796
  42142. }
  42143. },
  42144. },
  42145. [
  42146. {
  42147. name: "Micro",
  42148. height: math.unit(1.5, "inches")
  42149. },
  42150. {
  42151. name: "Normal",
  42152. height: math.unit(6 + 5/12, "feet"),
  42153. default: true
  42154. },
  42155. {
  42156. name: "Macro",
  42157. height: math.unit(300, "feet")
  42158. },
  42159. ]
  42160. ))
  42161. characterMakers.push(() => makeCharacter(
  42162. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  42163. {
  42164. front: {
  42165. height: math.unit(5 + 6/12, "feet"),
  42166. weight: math.unit(60, "kg"),
  42167. name: "Front",
  42168. image: {
  42169. source: "./media/characters/sabre/front.svg",
  42170. extra: 738/671,
  42171. bottom: 27/765
  42172. }
  42173. },
  42174. },
  42175. [
  42176. {
  42177. name: "Teeny",
  42178. height: math.unit(2, "inches")
  42179. },
  42180. {
  42181. name: "Smol",
  42182. height: math.unit(8, "inches")
  42183. },
  42184. {
  42185. name: "Normal",
  42186. height: math.unit(5 + 6/12, "feet"),
  42187. default: true
  42188. },
  42189. {
  42190. name: "Mini-Macro",
  42191. height: math.unit(15, "feet")
  42192. },
  42193. {
  42194. name: "Macro",
  42195. height: math.unit(50, "feet")
  42196. },
  42197. ]
  42198. ))
  42199. characterMakers.push(() => makeCharacter(
  42200. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  42201. {
  42202. front: {
  42203. height: math.unit(6 + 4/12, "feet"),
  42204. weight: math.unit(170, "lb"),
  42205. name: "Front",
  42206. image: {
  42207. source: "./media/characters/charlie/front.svg",
  42208. extra: 1348/1228,
  42209. bottom: 15/1363
  42210. }
  42211. },
  42212. },
  42213. [
  42214. {
  42215. name: "Macro",
  42216. height: math.unit(1700, "meters"),
  42217. default: true
  42218. },
  42219. {
  42220. name: "MegaMacro",
  42221. height: math.unit(20400, "meters")
  42222. },
  42223. ]
  42224. ))
  42225. characterMakers.push(() => makeCharacter(
  42226. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  42227. {
  42228. front: {
  42229. height: math.unit(6 + 3/12, "feet"),
  42230. weight: math.unit(185, "lb"),
  42231. name: "Front",
  42232. image: {
  42233. source: "./media/characters/susan-grant/front.svg",
  42234. extra: 1351/1327,
  42235. bottom: 26/1377
  42236. }
  42237. },
  42238. },
  42239. [
  42240. {
  42241. name: "Normal",
  42242. height: math.unit(6 + 3/12, "feet"),
  42243. default: true
  42244. },
  42245. {
  42246. name: "Macro",
  42247. height: math.unit(225, "feet")
  42248. },
  42249. {
  42250. name: "Macro+",
  42251. height: math.unit(900, "feet")
  42252. },
  42253. {
  42254. name: "MegaMacro",
  42255. height: math.unit(14400, "feet")
  42256. },
  42257. ]
  42258. ))
  42259. characterMakers.push(() => makeCharacter(
  42260. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  42261. {
  42262. front: {
  42263. height: math.unit(5 + 4/12, "feet"),
  42264. weight: math.unit(110, "lb"),
  42265. name: "Front",
  42266. image: {
  42267. source: "./media/characters/axel-isanov/front.svg",
  42268. extra: 1096/1065,
  42269. bottom: 13/1109
  42270. }
  42271. },
  42272. },
  42273. [
  42274. {
  42275. name: "Normal",
  42276. height: math.unit(5 + 4/12, "feet"),
  42277. default: true
  42278. },
  42279. ]
  42280. ))
  42281. characterMakers.push(() => makeCharacter(
  42282. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  42283. {
  42284. front: {
  42285. height: math.unit(9, "feet"),
  42286. weight: math.unit(467, "lb"),
  42287. name: "Front",
  42288. image: {
  42289. source: "./media/characters/necahual/front.svg",
  42290. extra: 920/873,
  42291. bottom: 26/946
  42292. }
  42293. },
  42294. back: {
  42295. height: math.unit(9, "feet"),
  42296. weight: math.unit(467, "lb"),
  42297. name: "Back",
  42298. image: {
  42299. source: "./media/characters/necahual/back.svg",
  42300. extra: 930/884,
  42301. bottom: 16/946
  42302. }
  42303. },
  42304. frontUnderwear: {
  42305. height: math.unit(9, "feet"),
  42306. weight: math.unit(467, "lb"),
  42307. name: "Front (Underwear)",
  42308. image: {
  42309. source: "./media/characters/necahual/front-underwear.svg",
  42310. extra: 920/873,
  42311. bottom: 26/946
  42312. }
  42313. },
  42314. frontDressed: {
  42315. height: math.unit(9, "feet"),
  42316. weight: math.unit(467, "lb"),
  42317. name: "Front (Dressed)",
  42318. image: {
  42319. source: "./media/characters/necahual/front-dressed.svg",
  42320. extra: 920/873,
  42321. bottom: 26/946
  42322. }
  42323. },
  42324. },
  42325. [
  42326. {
  42327. name: "Comprsesed",
  42328. height: math.unit(9, "feet")
  42329. },
  42330. {
  42331. name: "Natural",
  42332. height: math.unit(15, "feet"),
  42333. default: true
  42334. },
  42335. {
  42336. name: "Boosted",
  42337. height: math.unit(50, "feet")
  42338. },
  42339. {
  42340. name: "Boosted+",
  42341. height: math.unit(150, "feet")
  42342. },
  42343. {
  42344. name: "Max",
  42345. height: math.unit(500, "feet")
  42346. },
  42347. ]
  42348. ))
  42349. characterMakers.push(() => makeCharacter(
  42350. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  42351. {
  42352. front: {
  42353. height: math.unit(22 + 1/12, "feet"),
  42354. weight: math.unit(3200, "lb"),
  42355. name: "Front",
  42356. image: {
  42357. source: "./media/characters/theo-acacia/front.svg",
  42358. extra: 1796/1741,
  42359. bottom: 83/1879
  42360. }
  42361. },
  42362. frontUnderwear: {
  42363. height: math.unit(22 + 1/12, "feet"),
  42364. weight: math.unit(3200, "lb"),
  42365. name: "Front (Underwear)",
  42366. image: {
  42367. source: "./media/characters/theo-acacia/front-underwear.svg",
  42368. extra: 1796/1741,
  42369. bottom: 83/1879
  42370. }
  42371. },
  42372. frontNude: {
  42373. height: math.unit(22 + 1/12, "feet"),
  42374. weight: math.unit(3200, "lb"),
  42375. name: "Front (Nude)",
  42376. image: {
  42377. source: "./media/characters/theo-acacia/front-nude.svg",
  42378. extra: 1796/1741,
  42379. bottom: 83/1879
  42380. }
  42381. },
  42382. },
  42383. [
  42384. {
  42385. name: "Normal",
  42386. height: math.unit(22 + 1/12, "feet"),
  42387. default: true
  42388. },
  42389. ]
  42390. ))
  42391. characterMakers.push(() => makeCharacter(
  42392. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  42393. {
  42394. front: {
  42395. height: math.unit(20, "feet"),
  42396. name: "Front",
  42397. image: {
  42398. source: "./media/characters/astra/front.svg",
  42399. extra: 1850/1714,
  42400. bottom: 106/1956
  42401. }
  42402. },
  42403. frontUndressed: {
  42404. height: math.unit(20, "feet"),
  42405. name: "Front (Undressed)",
  42406. image: {
  42407. source: "./media/characters/astra/front-undressed.svg",
  42408. extra: 1926/1749,
  42409. bottom: 0/1926
  42410. }
  42411. },
  42412. hand: {
  42413. height: math.unit(1.53, "feet"),
  42414. name: "Hand",
  42415. image: {
  42416. source: "./media/characters/astra/hand.svg"
  42417. }
  42418. },
  42419. paw: {
  42420. height: math.unit(1.53, "feet"),
  42421. name: "Paw",
  42422. image: {
  42423. source: "./media/characters/astra/paw.svg"
  42424. }
  42425. },
  42426. },
  42427. [
  42428. {
  42429. name: "Smallest",
  42430. height: math.unit(20, "feet")
  42431. },
  42432. {
  42433. name: "Normal",
  42434. height: math.unit(1e9, "miles"),
  42435. default: true
  42436. },
  42437. {
  42438. name: "Larger",
  42439. height: math.unit(5, "multiverses")
  42440. },
  42441. {
  42442. name: "Largest",
  42443. height: math.unit(1e9, "multiverses")
  42444. },
  42445. ]
  42446. ))
  42447. characterMakers.push(() => makeCharacter(
  42448. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  42449. {
  42450. front: {
  42451. height: math.unit(8, "feet"),
  42452. name: "Front",
  42453. image: {
  42454. source: "./media/characters/breanna/front.svg",
  42455. extra: 1912/1632,
  42456. bottom: 33/1945
  42457. }
  42458. },
  42459. },
  42460. [
  42461. {
  42462. name: "Smallest",
  42463. height: math.unit(8, "feet")
  42464. },
  42465. {
  42466. name: "Normal",
  42467. height: math.unit(1, "mile"),
  42468. default: true
  42469. },
  42470. {
  42471. name: "Maximum",
  42472. height: math.unit(1500000000000, "lightyears")
  42473. },
  42474. ]
  42475. ))
  42476. characterMakers.push(() => makeCharacter(
  42477. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  42478. {
  42479. front: {
  42480. height: math.unit(5 + 11/12, "feet"),
  42481. weight: math.unit(155, "lb"),
  42482. name: "Front",
  42483. image: {
  42484. source: "./media/characters/cai/front.svg",
  42485. extra: 1823/1702,
  42486. bottom: 32/1855
  42487. }
  42488. },
  42489. back: {
  42490. height: math.unit(5 + 11/12, "feet"),
  42491. weight: math.unit(155, "lb"),
  42492. name: "Back",
  42493. image: {
  42494. source: "./media/characters/cai/back.svg",
  42495. extra: 1809/1708,
  42496. bottom: 31/1840
  42497. }
  42498. },
  42499. },
  42500. [
  42501. {
  42502. name: "Normal",
  42503. height: math.unit(5 + 11/12, "feet"),
  42504. default: true
  42505. },
  42506. {
  42507. name: "Big",
  42508. height: math.unit(15, "feet")
  42509. },
  42510. {
  42511. name: "Macro",
  42512. height: math.unit(200, "feet")
  42513. },
  42514. ]
  42515. ))
  42516. characterMakers.push(() => makeCharacter(
  42517. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  42518. {
  42519. front: {
  42520. height: math.unit(5 + 6/12, "feet"),
  42521. weight: math.unit(160, "lb"),
  42522. name: "Front",
  42523. image: {
  42524. source: "./media/characters/zanna-virtuedòttir/front.svg",
  42525. extra: 1227/1174,
  42526. bottom: 37/1264
  42527. }
  42528. },
  42529. },
  42530. [
  42531. {
  42532. name: "Macro",
  42533. height: math.unit(444, "meters"),
  42534. default: true
  42535. },
  42536. ]
  42537. ))
  42538. characterMakers.push(() => makeCharacter(
  42539. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  42540. {
  42541. front: {
  42542. height: math.unit(18 + 7/12, "feet"),
  42543. name: "Front",
  42544. image: {
  42545. source: "./media/characters/rex/front.svg",
  42546. extra: 1941/1807,
  42547. bottom: 66/2007
  42548. }
  42549. },
  42550. back: {
  42551. height: math.unit(18 + 7/12, "feet"),
  42552. name: "Back",
  42553. image: {
  42554. source: "./media/characters/rex/back.svg",
  42555. extra: 1937/1822,
  42556. bottom: 42/1979
  42557. }
  42558. },
  42559. boot: {
  42560. height: math.unit(3.45, "feet"),
  42561. name: "Boot",
  42562. image: {
  42563. source: "./media/characters/rex/boot.svg"
  42564. }
  42565. },
  42566. paw: {
  42567. height: math.unit(4.17, "feet"),
  42568. name: "Paw",
  42569. image: {
  42570. source: "./media/characters/rex/paw.svg"
  42571. }
  42572. },
  42573. head: {
  42574. height: math.unit(6.728, "feet"),
  42575. name: "Head",
  42576. image: {
  42577. source: "./media/characters/rex/head.svg"
  42578. }
  42579. },
  42580. },
  42581. [
  42582. {
  42583. name: "Nano",
  42584. height: math.unit(18 + 7/12, "feet")
  42585. },
  42586. {
  42587. name: "Micro",
  42588. height: math.unit(1.5, "megameters")
  42589. },
  42590. {
  42591. name: "Normal",
  42592. height: math.unit(440, "megameters"),
  42593. default: true
  42594. },
  42595. {
  42596. name: "Macro",
  42597. height: math.unit(2.5, "gigameters")
  42598. },
  42599. {
  42600. name: "Gigamacro",
  42601. height: math.unit(2, "galaxies")
  42602. },
  42603. ]
  42604. ))
  42605. characterMakers.push(() => makeCharacter(
  42606. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  42607. {
  42608. side: {
  42609. height: math.unit(32, "feet"),
  42610. weight: math.unit(250000, "lb"),
  42611. name: "Side",
  42612. image: {
  42613. source: "./media/characters/silverwing/side.svg",
  42614. extra: 1100/1019,
  42615. bottom: 204/1304
  42616. }
  42617. },
  42618. },
  42619. [
  42620. {
  42621. name: "Normal",
  42622. height: math.unit(32, "feet"),
  42623. default: true
  42624. },
  42625. ]
  42626. ))
  42627. characterMakers.push(() => makeCharacter(
  42628. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  42629. {
  42630. front: {
  42631. height: math.unit(6 + 6/12, "feet"),
  42632. weight: math.unit(350, "lb"),
  42633. name: "Front",
  42634. image: {
  42635. source: "./media/characters/tristan-hawthorne/front.svg",
  42636. extra: 1159/1124,
  42637. bottom: 37/1196
  42638. },
  42639. form: "labrador",
  42640. default: true
  42641. },
  42642. skunkFront: {
  42643. height: math.unit(4 + 6/12, "feet"),
  42644. weight: math.unit(120, "lb"),
  42645. name: "Front",
  42646. image: {
  42647. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  42648. extra: 1609/1551,
  42649. bottom: 169/1778
  42650. },
  42651. form: "skunk",
  42652. default: true
  42653. },
  42654. },
  42655. [
  42656. {
  42657. name: "Normal",
  42658. height: math.unit(6 + 6/12, "feet"),
  42659. form: "labrador",
  42660. default: true
  42661. },
  42662. {
  42663. name: "Normal",
  42664. height: math.unit(4 + 6/12, "feet"),
  42665. form: "skunk",
  42666. default: true
  42667. },
  42668. ],
  42669. {
  42670. "labrador": {
  42671. name: "Labrador",
  42672. default: true
  42673. },
  42674. "skunk": {
  42675. name: "Skunk"
  42676. }
  42677. }
  42678. ))
  42679. characterMakers.push(() => makeCharacter(
  42680. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  42681. {
  42682. front: {
  42683. height: math.unit(5 + 11/12, "feet"),
  42684. weight: math.unit(190, "lb"),
  42685. name: "Front",
  42686. image: {
  42687. source: "./media/characters/mizu/front.svg",
  42688. extra: 1988/1788,
  42689. bottom: 14/2002
  42690. }
  42691. },
  42692. },
  42693. [
  42694. {
  42695. name: "Normal",
  42696. height: math.unit(5 + 11/12, "feet"),
  42697. default: true
  42698. },
  42699. ]
  42700. ))
  42701. characterMakers.push(() => makeCharacter(
  42702. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  42703. {
  42704. front: {
  42705. height: math.unit(1.7, "feet"),
  42706. weight: math.unit(50, "lb"),
  42707. name: "Front",
  42708. image: {
  42709. source: "./media/characters/dechroma/front.svg",
  42710. extra: 1095/859,
  42711. bottom: 64/1159
  42712. }
  42713. },
  42714. },
  42715. [
  42716. {
  42717. name: "Normal",
  42718. height: math.unit(1.7, "feet"),
  42719. default: true
  42720. },
  42721. ]
  42722. ))
  42723. characterMakers.push(() => makeCharacter(
  42724. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  42725. {
  42726. side: {
  42727. height: math.unit(30, "feet"),
  42728. name: "Side",
  42729. image: {
  42730. source: "./media/characters/veluren-thanazel/side.svg",
  42731. extra: 1611/633,
  42732. bottom: 118/1729
  42733. }
  42734. },
  42735. front: {
  42736. height: math.unit(30, "feet"),
  42737. name: "Front",
  42738. image: {
  42739. source: "./media/characters/veluren-thanazel/front.svg",
  42740. extra: 1486/636,
  42741. bottom: 238/1724
  42742. }
  42743. },
  42744. head: {
  42745. height: math.unit(21.4, "feet"),
  42746. name: "Head",
  42747. image: {
  42748. source: "./media/characters/veluren-thanazel/head.svg"
  42749. }
  42750. },
  42751. genitals: {
  42752. height: math.unit(19.4, "feet"),
  42753. name: "Genitals",
  42754. image: {
  42755. source: "./media/characters/veluren-thanazel/genitals.svg"
  42756. }
  42757. },
  42758. },
  42759. [
  42760. {
  42761. name: "Social",
  42762. height: math.unit(6, "feet")
  42763. },
  42764. {
  42765. name: "Play",
  42766. height: math.unit(12, "feet")
  42767. },
  42768. {
  42769. name: "True",
  42770. height: math.unit(30, "feet"),
  42771. default: true
  42772. },
  42773. ]
  42774. ))
  42775. characterMakers.push(() => makeCharacter(
  42776. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  42777. {
  42778. front: {
  42779. height: math.unit(7 + 6/12, "feet"),
  42780. weight: math.unit(500, "kg"),
  42781. name: "Front",
  42782. image: {
  42783. source: "./media/characters/arcturas/front.svg",
  42784. extra: 1700/1500,
  42785. bottom: 145/1845
  42786. }
  42787. },
  42788. },
  42789. [
  42790. {
  42791. name: "Normal",
  42792. height: math.unit(7 + 6/12, "feet"),
  42793. default: true
  42794. },
  42795. ]
  42796. ))
  42797. characterMakers.push(() => makeCharacter(
  42798. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  42799. {
  42800. side: {
  42801. height: math.unit(6, "feet"),
  42802. weight: math.unit(2, "tons"),
  42803. name: "Side",
  42804. image: {
  42805. source: "./media/characters/vitaen/side.svg",
  42806. extra: 1157/617,
  42807. bottom: 122/1279
  42808. }
  42809. },
  42810. },
  42811. [
  42812. {
  42813. name: "Normal",
  42814. height: math.unit(6, "feet"),
  42815. default: true
  42816. },
  42817. ]
  42818. ))
  42819. characterMakers.push(() => makeCharacter(
  42820. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  42821. {
  42822. front: {
  42823. height: math.unit(19, "feet"),
  42824. name: "Front",
  42825. image: {
  42826. source: "./media/characters/fia-dreamweaver/front.svg",
  42827. extra: 1630/1504,
  42828. bottom: 25/1655
  42829. }
  42830. },
  42831. },
  42832. [
  42833. {
  42834. name: "Normal",
  42835. height: math.unit(19, "feet"),
  42836. default: true
  42837. },
  42838. ]
  42839. ))
  42840. characterMakers.push(() => makeCharacter(
  42841. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  42842. {
  42843. front: {
  42844. height: math.unit(5 + 4/12, "feet"),
  42845. name: "Front",
  42846. image: {
  42847. source: "./media/characters/artan/front.svg",
  42848. extra: 1618/1535,
  42849. bottom: 46/1664
  42850. }
  42851. },
  42852. back: {
  42853. height: math.unit(5 + 4/12, "feet"),
  42854. name: "Back",
  42855. image: {
  42856. source: "./media/characters/artan/back.svg",
  42857. extra: 1618/1543,
  42858. bottom: 31/1649
  42859. }
  42860. },
  42861. },
  42862. [
  42863. {
  42864. name: "Normal",
  42865. height: math.unit(5 + 4/12, "feet"),
  42866. default: true
  42867. },
  42868. ]
  42869. ))
  42870. characterMakers.push(() => makeCharacter(
  42871. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  42872. {
  42873. side: {
  42874. height: math.unit(182, "cm"),
  42875. weight: math.unit(1000, "lb"),
  42876. name: "Side",
  42877. image: {
  42878. source: "./media/characters/silver-dragon/side.svg",
  42879. extra: 710/287,
  42880. bottom: 88/798
  42881. }
  42882. },
  42883. },
  42884. [
  42885. {
  42886. name: "Normal",
  42887. height: math.unit(182, "cm"),
  42888. default: true
  42889. },
  42890. ]
  42891. ))
  42892. characterMakers.push(() => makeCharacter(
  42893. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  42894. {
  42895. side: {
  42896. height: math.unit(6 + 6/12, "feet"),
  42897. weight: math.unit(1.5, "tons"),
  42898. name: "Side",
  42899. image: {
  42900. source: "./media/characters/zephyr/side.svg",
  42901. extra: 1433/586,
  42902. bottom: 109/1542
  42903. }
  42904. },
  42905. },
  42906. [
  42907. {
  42908. name: "Normal",
  42909. height: math.unit(6 + 6/12, "feet"),
  42910. default: true
  42911. },
  42912. ]
  42913. ))
  42914. characterMakers.push(() => makeCharacter(
  42915. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  42916. {
  42917. side: {
  42918. height: math.unit(1, "feet"),
  42919. name: "Side",
  42920. image: {
  42921. source: "./media/characters/vixye/side.svg",
  42922. extra: 632/541,
  42923. bottom: 0/632
  42924. }
  42925. },
  42926. },
  42927. [
  42928. {
  42929. name: "Normal",
  42930. height: math.unit(1, "feet"),
  42931. default: true
  42932. },
  42933. {
  42934. name: "True",
  42935. height: math.unit(1e15, "multiverses")
  42936. },
  42937. ]
  42938. ))
  42939. characterMakers.push(() => makeCharacter(
  42940. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  42941. {
  42942. front: {
  42943. height: math.unit(8 + 2/12, "feet"),
  42944. weight: math.unit(650, "lb"),
  42945. name: "Front",
  42946. image: {
  42947. source: "./media/characters/darla-mac-lochlainn/front.svg",
  42948. extra: 1174/1137,
  42949. bottom: 82/1256
  42950. }
  42951. },
  42952. back: {
  42953. height: math.unit(8 + 2/12, "feet"),
  42954. weight: math.unit(650, "lb"),
  42955. name: "Back",
  42956. image: {
  42957. source: "./media/characters/darla-mac-lochlainn/back.svg",
  42958. extra: 1204/1157,
  42959. bottom: 46/1250
  42960. }
  42961. },
  42962. },
  42963. [
  42964. {
  42965. name: "Wildform",
  42966. height: math.unit(8 + 2/12, "feet"),
  42967. default: true
  42968. },
  42969. ]
  42970. ))
  42971. characterMakers.push(() => makeCharacter(
  42972. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  42973. {
  42974. front: {
  42975. height: math.unit(18, "feet"),
  42976. name: "Front",
  42977. image: {
  42978. source: "./media/characters/cyphin/front.svg",
  42979. extra: 970/886,
  42980. bottom: 42/1012
  42981. }
  42982. },
  42983. back: {
  42984. height: math.unit(18, "feet"),
  42985. name: "Back",
  42986. image: {
  42987. source: "./media/characters/cyphin/back.svg",
  42988. extra: 1009/894,
  42989. bottom: 24/1033
  42990. }
  42991. },
  42992. head: {
  42993. height: math.unit(5.05, "feet"),
  42994. name: "Head",
  42995. image: {
  42996. source: "./media/characters/cyphin/head.svg"
  42997. }
  42998. },
  42999. tailbud: {
  43000. height: math.unit(5, "feet"),
  43001. name: "Tailbud",
  43002. image: {
  43003. source: "./media/characters/cyphin/tailbud.svg"
  43004. }
  43005. },
  43006. },
  43007. [
  43008. ]
  43009. ))
  43010. characterMakers.push(() => makeCharacter(
  43011. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  43012. {
  43013. side: {
  43014. height: math.unit(10, "feet"),
  43015. weight: math.unit(6, "tons"),
  43016. name: "Side",
  43017. image: {
  43018. source: "./media/characters/raijin/side.svg",
  43019. extra: 1529/613,
  43020. bottom: 337/1866
  43021. }
  43022. },
  43023. },
  43024. [
  43025. {
  43026. name: "Normal",
  43027. height: math.unit(10, "feet"),
  43028. default: true
  43029. },
  43030. ]
  43031. ))
  43032. characterMakers.push(() => makeCharacter(
  43033. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  43034. {
  43035. side: {
  43036. height: math.unit(9, "feet"),
  43037. name: "Side",
  43038. image: {
  43039. source: "./media/characters/nilghais/side.svg",
  43040. extra: 1047/744,
  43041. bottom: 91/1138
  43042. }
  43043. },
  43044. head: {
  43045. height: math.unit(3.14, "feet"),
  43046. name: "Head",
  43047. image: {
  43048. source: "./media/characters/nilghais/head.svg"
  43049. }
  43050. },
  43051. mouth: {
  43052. height: math.unit(4.6, "feet"),
  43053. name: "Mouth",
  43054. image: {
  43055. source: "./media/characters/nilghais/mouth.svg"
  43056. }
  43057. },
  43058. wings: {
  43059. height: math.unit(24, "feet"),
  43060. name: "Wings",
  43061. image: {
  43062. source: "./media/characters/nilghais/wings.svg"
  43063. }
  43064. },
  43065. ass: {
  43066. height: math.unit(6.12, "feet"),
  43067. name: "Ass",
  43068. image: {
  43069. source: "./media/characters/nilghais/ass.svg"
  43070. }
  43071. },
  43072. },
  43073. [
  43074. {
  43075. name: "Normal",
  43076. height: math.unit(9, "feet"),
  43077. default: true
  43078. },
  43079. ]
  43080. ))
  43081. characterMakers.push(() => makeCharacter(
  43082. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  43083. {
  43084. regular: {
  43085. height: math.unit(16 + 2/12, "feet"),
  43086. weight: math.unit(2300, "lb"),
  43087. name: "Regular",
  43088. image: {
  43089. source: "./media/characters/zolgar/regular.svg",
  43090. extra: 1246/1004,
  43091. bottom: 124/1370
  43092. }
  43093. },
  43094. boxers: {
  43095. height: math.unit(16 + 2/12, "feet"),
  43096. weight: math.unit(2300, "lb"),
  43097. name: "Boxers",
  43098. image: {
  43099. source: "./media/characters/zolgar/boxers.svg",
  43100. extra: 1246/1004,
  43101. bottom: 124/1370
  43102. }
  43103. },
  43104. armored: {
  43105. height: math.unit(16 + 2/12, "feet"),
  43106. weight: math.unit(2300, "lb"),
  43107. name: "Armored",
  43108. image: {
  43109. source: "./media/characters/zolgar/armored.svg",
  43110. extra: 1246/1004,
  43111. bottom: 124/1370
  43112. }
  43113. },
  43114. goth: {
  43115. height: math.unit(16 + 2/12, "feet"),
  43116. weight: math.unit(2300, "lb"),
  43117. name: "Goth",
  43118. image: {
  43119. source: "./media/characters/zolgar/goth.svg",
  43120. extra: 1246/1004,
  43121. bottom: 124/1370
  43122. }
  43123. },
  43124. },
  43125. [
  43126. {
  43127. name: "Shrunken Down",
  43128. height: math.unit(9 + 2/12, "feet")
  43129. },
  43130. {
  43131. name: "Normal",
  43132. height: math.unit(16 + 2/12, "feet"),
  43133. default: true
  43134. },
  43135. ]
  43136. ))
  43137. characterMakers.push(() => makeCharacter(
  43138. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  43139. {
  43140. front: {
  43141. height: math.unit(6, "feet"),
  43142. weight: math.unit(168, "lb"),
  43143. name: "Front",
  43144. image: {
  43145. source: "./media/characters/luca/front.svg",
  43146. extra: 841/667,
  43147. bottom: 102/943
  43148. }
  43149. },
  43150. },
  43151. [
  43152. {
  43153. name: "Normal",
  43154. height: math.unit(6, "feet"),
  43155. default: true
  43156. },
  43157. ]
  43158. ))
  43159. characterMakers.push(() => makeCharacter(
  43160. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  43161. {
  43162. side: {
  43163. height: math.unit(7 + 3/12, "feet"),
  43164. weight: math.unit(312, "lb"),
  43165. name: "Side",
  43166. image: {
  43167. source: "./media/characters/zezo/side.svg",
  43168. extra: 1192/1067,
  43169. bottom: 63/1255
  43170. }
  43171. },
  43172. },
  43173. [
  43174. {
  43175. name: "Normal",
  43176. height: math.unit(7 + 3/12, "feet"),
  43177. default: true
  43178. },
  43179. ]
  43180. ))
  43181. characterMakers.push(() => makeCharacter(
  43182. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  43183. {
  43184. front: {
  43185. height: math.unit(5 + 5/12, "feet"),
  43186. weight: math.unit(170, "lb"),
  43187. name: "Front",
  43188. image: {
  43189. source: "./media/characters/mayso/front.svg",
  43190. extra: 1215/1108,
  43191. bottom: 16/1231
  43192. }
  43193. },
  43194. },
  43195. [
  43196. {
  43197. name: "Normal",
  43198. height: math.unit(5 + 5/12, "feet"),
  43199. default: true
  43200. },
  43201. ]
  43202. ))
  43203. characterMakers.push(() => makeCharacter(
  43204. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  43205. {
  43206. front: {
  43207. height: math.unit(4 + 3/12, "feet"),
  43208. weight: math.unit(80, "lb"),
  43209. name: "Front",
  43210. image: {
  43211. source: "./media/characters/hess/front.svg",
  43212. extra: 1200/1123,
  43213. bottom: 16/1216
  43214. }
  43215. },
  43216. },
  43217. [
  43218. {
  43219. name: "Normal",
  43220. height: math.unit(4 + 3/12, "feet"),
  43221. default: true
  43222. },
  43223. ]
  43224. ))
  43225. characterMakers.push(() => makeCharacter(
  43226. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  43227. {
  43228. front: {
  43229. height: math.unit(1.9, "meters"),
  43230. name: "Front",
  43231. image: {
  43232. source: "./media/characters/ashgar/front.svg",
  43233. extra: 1177/1146,
  43234. bottom: 99/1276
  43235. }
  43236. },
  43237. back: {
  43238. height: math.unit(1.9, "meters"),
  43239. name: "Back",
  43240. image: {
  43241. source: "./media/characters/ashgar/back.svg",
  43242. extra: 1201/1183,
  43243. bottom: 53/1254
  43244. }
  43245. },
  43246. feral: {
  43247. height: math.unit(1.4, "meters"),
  43248. name: "Feral",
  43249. image: {
  43250. source: "./media/characters/ashgar/feral.svg",
  43251. extra: 370/345,
  43252. bottom: 45/415
  43253. }
  43254. },
  43255. },
  43256. [
  43257. {
  43258. name: "Normal",
  43259. height: math.unit(1.9, "meters"),
  43260. default: true
  43261. },
  43262. ]
  43263. ))
  43264. characterMakers.push(() => makeCharacter(
  43265. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  43266. {
  43267. regular: {
  43268. height: math.unit(6, "feet"),
  43269. weight: math.unit(220, "lb"),
  43270. name: "Regular",
  43271. image: {
  43272. source: "./media/characters/phillip/regular.svg",
  43273. extra: 1373/1277,
  43274. bottom: 75/1448
  43275. }
  43276. },
  43277. dressed: {
  43278. height: math.unit(6, "feet"),
  43279. weight: math.unit(220, "lb"),
  43280. name: "Dressed",
  43281. image: {
  43282. source: "./media/characters/phillip/dressed.svg",
  43283. extra: 1373/1277,
  43284. bottom: 75/1448
  43285. }
  43286. },
  43287. paw: {
  43288. height: math.unit(1.44, "feet"),
  43289. name: "Paw",
  43290. image: {
  43291. source: "./media/characters/phillip/paw.svg"
  43292. }
  43293. },
  43294. },
  43295. [
  43296. {
  43297. name: "Normal",
  43298. height: math.unit(6, "feet"),
  43299. default: true
  43300. },
  43301. ]
  43302. ))
  43303. characterMakers.push(() => makeCharacter(
  43304. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  43305. {
  43306. side: {
  43307. height: math.unit(42, "feet"),
  43308. name: "Side",
  43309. image: {
  43310. source: "./media/characters/uvula/side.svg",
  43311. extra: 683/586,
  43312. bottom: 60/743
  43313. }
  43314. },
  43315. front: {
  43316. height: math.unit(42, "feet"),
  43317. name: "Front",
  43318. image: {
  43319. source: "./media/characters/uvula/front.svg",
  43320. extra: 705/613,
  43321. bottom: 54/759
  43322. }
  43323. },
  43324. maw: {
  43325. height: math.unit(23.5, "feet"),
  43326. name: "Maw",
  43327. image: {
  43328. source: "./media/characters/uvula/maw.svg"
  43329. }
  43330. },
  43331. },
  43332. [
  43333. {
  43334. name: "Original Size",
  43335. height: math.unit(14, "inches")
  43336. },
  43337. {
  43338. name: "Human Size",
  43339. height: math.unit(6, "feet")
  43340. },
  43341. {
  43342. name: "Big",
  43343. height: math.unit(42, "feet"),
  43344. default: true
  43345. },
  43346. {
  43347. name: "Bigger",
  43348. height: math.unit(100, "feet")
  43349. },
  43350. ]
  43351. ))
  43352. characterMakers.push(() => makeCharacter(
  43353. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  43354. {
  43355. front: {
  43356. height: math.unit(5 + 11/12, "feet"),
  43357. name: "Front",
  43358. image: {
  43359. source: "./media/characters/lannah/front.svg",
  43360. extra: 1208/1113,
  43361. bottom: 97/1305
  43362. }
  43363. },
  43364. },
  43365. [
  43366. {
  43367. name: "Normal",
  43368. height: math.unit(5 + 11/12, "feet"),
  43369. default: true
  43370. },
  43371. ]
  43372. ))
  43373. characterMakers.push(() => makeCharacter(
  43374. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  43375. {
  43376. front: {
  43377. height: math.unit(6 + 3/12, "feet"),
  43378. weight: math.unit(3.5, "tons"),
  43379. name: "Front",
  43380. image: {
  43381. source: "./media/characters/emberflame/front.svg",
  43382. extra: 1198/672,
  43383. bottom: 82/1280
  43384. }
  43385. },
  43386. side: {
  43387. height: math.unit(6 + 3/12, "feet"),
  43388. weight: math.unit(3.5, "tons"),
  43389. name: "Side",
  43390. image: {
  43391. source: "./media/characters/emberflame/side.svg",
  43392. extra: 938/527,
  43393. bottom: 56/994
  43394. }
  43395. },
  43396. },
  43397. [
  43398. {
  43399. name: "Normal",
  43400. height: math.unit(6 + 3/12, "feet"),
  43401. default: true
  43402. },
  43403. ]
  43404. ))
  43405. characterMakers.push(() => makeCharacter(
  43406. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  43407. {
  43408. side: {
  43409. height: math.unit(17.5, "feet"),
  43410. weight: math.unit(35, "tons"),
  43411. name: "Side",
  43412. image: {
  43413. source: "./media/characters/sophie-ambrose/side.svg",
  43414. extra: 1573/1242,
  43415. bottom: 71/1644
  43416. }
  43417. },
  43418. maw: {
  43419. height: math.unit(7.4, "feet"),
  43420. name: "Maw",
  43421. image: {
  43422. source: "./media/characters/sophie-ambrose/maw.svg"
  43423. }
  43424. },
  43425. },
  43426. [
  43427. {
  43428. name: "Normal",
  43429. height: math.unit(17.5, "feet"),
  43430. default: true
  43431. },
  43432. ]
  43433. ))
  43434. characterMakers.push(() => makeCharacter(
  43435. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  43436. {
  43437. front: {
  43438. height: math.unit(280, "feet"),
  43439. weight: math.unit(550, "tons"),
  43440. name: "Front",
  43441. image: {
  43442. source: "./media/characters/king-mugi/front.svg",
  43443. extra: 1102/947,
  43444. bottom: 104/1206
  43445. }
  43446. },
  43447. },
  43448. [
  43449. {
  43450. name: "King Mugi",
  43451. height: math.unit(280, "feet"),
  43452. default: true
  43453. },
  43454. ]
  43455. ))
  43456. characterMakers.push(() => makeCharacter(
  43457. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  43458. {
  43459. front: {
  43460. height: math.unit(64, "meters"),
  43461. name: "Front",
  43462. image: {
  43463. source: "./media/characters/nova-fox/front.svg",
  43464. extra: 1310/1246,
  43465. bottom: 65/1375
  43466. }
  43467. },
  43468. },
  43469. [
  43470. {
  43471. name: "Macro",
  43472. height: math.unit(64, "meters"),
  43473. default: true
  43474. },
  43475. ]
  43476. ))
  43477. characterMakers.push(() => makeCharacter(
  43478. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  43479. {
  43480. front: {
  43481. height: math.unit(6 + 3/12, "feet"),
  43482. weight: math.unit(170, "lb"),
  43483. name: "Front",
  43484. image: {
  43485. source: "./media/characters/sam-bat/front.svg",
  43486. extra: 1601/1411,
  43487. bottom: 125/1726
  43488. }
  43489. },
  43490. back: {
  43491. height: math.unit(6 + 3/12, "feet"),
  43492. weight: math.unit(170, "lb"),
  43493. name: "Back",
  43494. image: {
  43495. source: "./media/characters/sam-bat/back.svg",
  43496. extra: 1577/1405,
  43497. bottom: 58/1635
  43498. }
  43499. },
  43500. },
  43501. [
  43502. {
  43503. name: "Normal",
  43504. height: math.unit(6 + 3/12, "feet"),
  43505. default: true
  43506. },
  43507. ]
  43508. ))
  43509. characterMakers.push(() => makeCharacter(
  43510. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  43511. {
  43512. front: {
  43513. height: math.unit(59, "feet"),
  43514. weight: math.unit(40000, "lb"),
  43515. name: "Front",
  43516. image: {
  43517. source: "./media/characters/inari/front.svg",
  43518. extra: 1884/1350,
  43519. bottom: 95/1979
  43520. }
  43521. },
  43522. },
  43523. [
  43524. {
  43525. name: "Gigantamax",
  43526. height: math.unit(59, "feet"),
  43527. default: true
  43528. },
  43529. ]
  43530. ))
  43531. characterMakers.push(() => makeCharacter(
  43532. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  43533. {
  43534. front: {
  43535. height: math.unit(5 + 8/12, "feet"),
  43536. name: "Front",
  43537. image: {
  43538. source: "./media/characters/elizabeth/front.svg",
  43539. extra: 1395/1298,
  43540. bottom: 54/1449
  43541. }
  43542. },
  43543. mouth: {
  43544. height: math.unit(1.97, "feet"),
  43545. name: "Mouth",
  43546. image: {
  43547. source: "./media/characters/elizabeth/mouth.svg"
  43548. }
  43549. },
  43550. foot: {
  43551. height: math.unit(1.17, "feet"),
  43552. name: "Foot",
  43553. image: {
  43554. source: "./media/characters/elizabeth/foot.svg"
  43555. }
  43556. },
  43557. },
  43558. [
  43559. {
  43560. name: "Normal",
  43561. height: math.unit(5 + 8/12, "feet"),
  43562. default: true
  43563. },
  43564. {
  43565. name: "Minimacro",
  43566. height: math.unit(18, "feet")
  43567. },
  43568. {
  43569. name: "Macro",
  43570. height: math.unit(180, "feet")
  43571. },
  43572. ]
  43573. ))
  43574. characterMakers.push(() => makeCharacter(
  43575. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  43576. {
  43577. front: {
  43578. height: math.unit(5 + 2/12, "feet"),
  43579. name: "Front",
  43580. image: {
  43581. source: "./media/characters/october-gossamer/front.svg",
  43582. extra: 505/454,
  43583. bottom: 7/512
  43584. }
  43585. },
  43586. back: {
  43587. height: math.unit(5 + 2/12, "feet"),
  43588. name: "Back",
  43589. image: {
  43590. source: "./media/characters/october-gossamer/back.svg",
  43591. extra: 501/454,
  43592. bottom: 11/512
  43593. }
  43594. },
  43595. },
  43596. [
  43597. {
  43598. name: "Normal",
  43599. height: math.unit(5 + 2/12, "feet"),
  43600. default: true
  43601. },
  43602. ]
  43603. ))
  43604. characterMakers.push(() => makeCharacter(
  43605. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  43606. {
  43607. front: {
  43608. height: math.unit(5, "feet"),
  43609. name: "Front",
  43610. image: {
  43611. source: "./media/characters/epiglottis/front.svg",
  43612. extra: 923/849,
  43613. bottom: 17/940
  43614. }
  43615. },
  43616. },
  43617. [
  43618. {
  43619. name: "Original Size",
  43620. height: math.unit(10, "inches")
  43621. },
  43622. {
  43623. name: "Human Size",
  43624. height: math.unit(5, "feet"),
  43625. default: true
  43626. },
  43627. {
  43628. name: "Big",
  43629. height: math.unit(25, "feet")
  43630. },
  43631. {
  43632. name: "Bigger",
  43633. height: math.unit(50, "feet")
  43634. },
  43635. {
  43636. name: "oh lawd",
  43637. height: math.unit(75, "feet")
  43638. },
  43639. ]
  43640. ))
  43641. characterMakers.push(() => makeCharacter(
  43642. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  43643. {
  43644. front: {
  43645. height: math.unit(2 + 4/12, "feet"),
  43646. weight: math.unit(60, "lb"),
  43647. name: "Front",
  43648. image: {
  43649. source: "./media/characters/lerm/front.svg",
  43650. extra: 796/790,
  43651. bottom: 79/875
  43652. }
  43653. },
  43654. },
  43655. [
  43656. {
  43657. name: "Normal",
  43658. height: math.unit(2 + 4/12, "feet"),
  43659. default: true
  43660. },
  43661. ]
  43662. ))
  43663. characterMakers.push(() => makeCharacter(
  43664. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  43665. {
  43666. front: {
  43667. height: math.unit(5.5, "feet"),
  43668. weight: math.unit(130, "lb"),
  43669. name: "Front",
  43670. image: {
  43671. source: "./media/characters/xena-nebadon/front.svg",
  43672. extra: 1828/1730,
  43673. bottom: 79/1907
  43674. }
  43675. },
  43676. },
  43677. [
  43678. {
  43679. name: "Tiny Puppy",
  43680. height: math.unit(3, "inches")
  43681. },
  43682. {
  43683. name: "Normal",
  43684. height: math.unit(5.5, "feet"),
  43685. default: true
  43686. },
  43687. {
  43688. name: "Lotta Lady",
  43689. height: math.unit(12, "feet")
  43690. },
  43691. {
  43692. name: "Pretty Big",
  43693. height: math.unit(100, "feet")
  43694. },
  43695. {
  43696. name: "Big",
  43697. height: math.unit(500, "feet")
  43698. },
  43699. {
  43700. name: "Skyscraper Toys",
  43701. height: math.unit(2500, "feet")
  43702. },
  43703. {
  43704. name: "Plane Catcher",
  43705. height: math.unit(8, "miles")
  43706. },
  43707. {
  43708. name: "Planet Toys",
  43709. height: math.unit(15, "earths")
  43710. },
  43711. {
  43712. name: "Stardust",
  43713. height: math.unit(0.25, "galaxies")
  43714. },
  43715. {
  43716. name: "Snacks",
  43717. height: math.unit(70, "universes")
  43718. },
  43719. ]
  43720. ))
  43721. characterMakers.push(() => makeCharacter(
  43722. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  43723. {
  43724. front: {
  43725. height: math.unit(1.6, "meters"),
  43726. weight: math.unit(60, "kg"),
  43727. name: "Front",
  43728. image: {
  43729. source: "./media/characters/bounty/front.svg",
  43730. extra: 1426/1308,
  43731. bottom: 15/1441
  43732. }
  43733. },
  43734. back: {
  43735. height: math.unit(1.6, "meters"),
  43736. weight: math.unit(60, "kg"),
  43737. name: "Back",
  43738. image: {
  43739. source: "./media/characters/bounty/back.svg",
  43740. extra: 1417/1307,
  43741. bottom: 8/1425
  43742. }
  43743. },
  43744. },
  43745. [
  43746. {
  43747. name: "Normal",
  43748. height: math.unit(1.6, "meters"),
  43749. default: true
  43750. },
  43751. {
  43752. name: "Macro",
  43753. height: math.unit(300, "meters")
  43754. },
  43755. ]
  43756. ))
  43757. characterMakers.push(() => makeCharacter(
  43758. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  43759. {
  43760. front: {
  43761. height: math.unit(2 + 8/12, "feet"),
  43762. weight: math.unit(15, "lb"),
  43763. name: "Front",
  43764. image: {
  43765. source: "./media/characters/mochi/front.svg",
  43766. extra: 1022/852,
  43767. bottom: 435/1457
  43768. }
  43769. },
  43770. back: {
  43771. height: math.unit(2 + 8/12, "feet"),
  43772. weight: math.unit(15, "lb"),
  43773. name: "Back",
  43774. image: {
  43775. source: "./media/characters/mochi/back.svg",
  43776. extra: 1335/1119,
  43777. bottom: 39/1374
  43778. }
  43779. },
  43780. bird: {
  43781. height: math.unit(2 + 8/12, "feet"),
  43782. weight: math.unit(15, "lb"),
  43783. name: "Bird",
  43784. image: {
  43785. source: "./media/characters/mochi/bird.svg",
  43786. extra: 1251/1113,
  43787. bottom: 178/1429
  43788. }
  43789. },
  43790. kaiju: {
  43791. height: math.unit(154, "feet"),
  43792. weight: math.unit(1e7, "lb"),
  43793. name: "Kaiju",
  43794. image: {
  43795. source: "./media/characters/mochi/kaiju.svg",
  43796. extra: 460/324,
  43797. bottom: 40/500
  43798. }
  43799. },
  43800. head: {
  43801. height: math.unit(1.21, "feet"),
  43802. name: "Head",
  43803. image: {
  43804. source: "./media/characters/mochi/head.svg"
  43805. }
  43806. },
  43807. alternateTail: {
  43808. height: math.unit(2 + 8/12, "feet"),
  43809. weight: math.unit(45, "lb"),
  43810. name: "Alternate Tail",
  43811. image: {
  43812. source: "./media/characters/mochi/alternate-tail.svg",
  43813. extra: 139/76,
  43814. bottom: 45/184
  43815. }
  43816. },
  43817. },
  43818. [
  43819. {
  43820. name: "Micro",
  43821. height: math.unit(2, "inches")
  43822. },
  43823. {
  43824. name: "Normal",
  43825. height: math.unit(2 + 8/12, "feet"),
  43826. default: true
  43827. },
  43828. {
  43829. name: "Macro",
  43830. height: math.unit(106, "feet")
  43831. },
  43832. ]
  43833. ))
  43834. characterMakers.push(() => makeCharacter(
  43835. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  43836. {
  43837. front: {
  43838. height: math.unit(5.67, "feet"),
  43839. weight: math.unit(135, "lb"),
  43840. name: "Front",
  43841. image: {
  43842. source: "./media/characters/sarel/front.svg",
  43843. extra: 865/788,
  43844. bottom: 97/962
  43845. }
  43846. },
  43847. back: {
  43848. height: math.unit(5.67, "feet"),
  43849. weight: math.unit(135, "lb"),
  43850. name: "Back",
  43851. image: {
  43852. source: "./media/characters/sarel/back.svg",
  43853. extra: 857/777,
  43854. bottom: 32/889
  43855. }
  43856. },
  43857. chozoan: {
  43858. height: math.unit(5.67, "feet"),
  43859. weight: math.unit(135, "lb"),
  43860. name: "Chozoan",
  43861. image: {
  43862. source: "./media/characters/sarel/chozoan.svg",
  43863. extra: 865/788,
  43864. bottom: 97/962
  43865. }
  43866. },
  43867. current: {
  43868. height: math.unit(5.67, "feet"),
  43869. weight: math.unit(135, "lb"),
  43870. name: "Current",
  43871. image: {
  43872. source: "./media/characters/sarel/current.svg",
  43873. extra: 865/788,
  43874. bottom: 97/962
  43875. }
  43876. },
  43877. head: {
  43878. height: math.unit(1.77, "feet"),
  43879. name: "Head",
  43880. image: {
  43881. source: "./media/characters/sarel/head.svg"
  43882. }
  43883. },
  43884. claws: {
  43885. height: math.unit(1.8, "feet"),
  43886. name: "Claws",
  43887. image: {
  43888. source: "./media/characters/sarel/claws.svg"
  43889. }
  43890. },
  43891. clawsAlt: {
  43892. height: math.unit(1.8, "feet"),
  43893. name: "Claws-alt",
  43894. image: {
  43895. source: "./media/characters/sarel/claws-alt.svg"
  43896. }
  43897. },
  43898. },
  43899. [
  43900. {
  43901. name: "Normal",
  43902. height: math.unit(5.67, "feet"),
  43903. default: true
  43904. },
  43905. ]
  43906. ))
  43907. characterMakers.push(() => makeCharacter(
  43908. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  43909. {
  43910. front: {
  43911. height: math.unit(5500, "feet"),
  43912. name: "Front",
  43913. image: {
  43914. source: "./media/characters/alyonia/front.svg",
  43915. extra: 1200/1135,
  43916. bottom: 29/1229
  43917. }
  43918. },
  43919. back: {
  43920. height: math.unit(5500, "feet"),
  43921. name: "Back",
  43922. image: {
  43923. source: "./media/characters/alyonia/back.svg",
  43924. extra: 1205/1138,
  43925. bottom: 10/1215
  43926. }
  43927. },
  43928. },
  43929. [
  43930. {
  43931. name: "Small",
  43932. height: math.unit(10, "feet")
  43933. },
  43934. {
  43935. name: "Macro",
  43936. height: math.unit(500, "feet")
  43937. },
  43938. {
  43939. name: "Mega Macro",
  43940. height: math.unit(5500, "feet"),
  43941. default: true
  43942. },
  43943. {
  43944. name: "Mega Macro+",
  43945. height: math.unit(500000, "feet")
  43946. },
  43947. {
  43948. name: "Giga Macro",
  43949. height: math.unit(3000, "miles")
  43950. },
  43951. {
  43952. name: "Tera Macro",
  43953. height: math.unit(2.8e6, "miles")
  43954. },
  43955. {
  43956. name: "Galactic",
  43957. height: math.unit(120000, "lightyears")
  43958. },
  43959. ]
  43960. ))
  43961. characterMakers.push(() => makeCharacter(
  43962. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  43963. {
  43964. werewolf: {
  43965. height: math.unit(8, "feet"),
  43966. weight: math.unit(425, "lb"),
  43967. name: "Werewolf",
  43968. image: {
  43969. source: "./media/characters/autumn/werewolf.svg",
  43970. extra: 2154/2031,
  43971. bottom: 160/2314
  43972. }
  43973. },
  43974. human: {
  43975. height: math.unit(5 + 8/12, "feet"),
  43976. weight: math.unit(150, "lb"),
  43977. name: "Human",
  43978. image: {
  43979. source: "./media/characters/autumn/human.svg",
  43980. extra: 1200/1149,
  43981. bottom: 30/1230
  43982. }
  43983. },
  43984. },
  43985. [
  43986. {
  43987. name: "Normal",
  43988. height: math.unit(8, "feet"),
  43989. default: true
  43990. },
  43991. ]
  43992. ))
  43993. characterMakers.push(() => makeCharacter(
  43994. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  43995. {
  43996. front: {
  43997. height: math.unit(8 + 5/12, "feet"),
  43998. weight: math.unit(825, "lb"),
  43999. name: "Front",
  44000. image: {
  44001. source: "./media/characters/cobalt-charizard/front.svg",
  44002. extra: 1268/1155,
  44003. bottom: 122/1390
  44004. }
  44005. },
  44006. side: {
  44007. height: math.unit(8 + 5/12, "feet"),
  44008. weight: math.unit(825, "lb"),
  44009. name: "Side",
  44010. image: {
  44011. source: "./media/characters/cobalt-charizard/side.svg",
  44012. extra: 1348/1257,
  44013. bottom: 58/1406
  44014. }
  44015. },
  44016. gMax: {
  44017. height: math.unit(134 + 11/12, "feet"),
  44018. name: "G-Max",
  44019. image: {
  44020. source: "./media/characters/cobalt-charizard/g-max.svg",
  44021. extra: 1835/1541,
  44022. bottom: 151/1986
  44023. }
  44024. },
  44025. },
  44026. [
  44027. {
  44028. name: "Normal",
  44029. height: math.unit(8 + 5/12, "feet"),
  44030. default: true
  44031. },
  44032. ]
  44033. ))
  44034. characterMakers.push(() => makeCharacter(
  44035. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  44036. {
  44037. front: {
  44038. height: math.unit(6 + 3/12, "feet"),
  44039. weight: math.unit(210, "lb"),
  44040. name: "Front",
  44041. image: {
  44042. source: "./media/characters/stella/front.svg",
  44043. extra: 3549/3335,
  44044. bottom: 51/3600
  44045. }
  44046. },
  44047. },
  44048. [
  44049. {
  44050. name: "Normal",
  44051. height: math.unit(6 + 3/12, "feet"),
  44052. default: true
  44053. },
  44054. ]
  44055. ))
  44056. characterMakers.push(() => makeCharacter(
  44057. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  44058. {
  44059. front: {
  44060. height: math.unit(5, "feet"),
  44061. weight: math.unit(90, "lb"),
  44062. name: "Front",
  44063. image: {
  44064. source: "./media/characters/riley-bishop/front.svg",
  44065. extra: 1450/1428,
  44066. bottom: 152/1602
  44067. }
  44068. },
  44069. },
  44070. [
  44071. {
  44072. name: "Normal",
  44073. height: math.unit(5, "feet"),
  44074. default: true
  44075. },
  44076. ]
  44077. ))
  44078. characterMakers.push(() => makeCharacter(
  44079. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  44080. {
  44081. side: {
  44082. height: math.unit(8 + 2/12, "feet"),
  44083. weight: math.unit(500, "kg"),
  44084. name: "Side",
  44085. image: {
  44086. source: "./media/characters/theo-arcanine/side.svg",
  44087. extra: 1342/1074,
  44088. bottom: 111/1453
  44089. }
  44090. },
  44091. },
  44092. [
  44093. {
  44094. name: "Normal",
  44095. height: math.unit(8 + 2/12, "feet"),
  44096. default: true
  44097. },
  44098. ]
  44099. ))
  44100. characterMakers.push(() => makeCharacter(
  44101. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  44102. {
  44103. front: {
  44104. height: math.unit(4, "feet"),
  44105. name: "Front",
  44106. image: {
  44107. source: "./media/characters/kali/front.svg",
  44108. extra: 1921/1357,
  44109. bottom: 70/1991
  44110. }
  44111. },
  44112. },
  44113. [
  44114. {
  44115. name: "Normal",
  44116. height: math.unit(4, "feet"),
  44117. default: true
  44118. },
  44119. {
  44120. name: "Macro",
  44121. height: math.unit(32, "meters")
  44122. },
  44123. {
  44124. name: "Macro+",
  44125. height: math.unit(150, "meters")
  44126. },
  44127. {
  44128. name: "Megamacro",
  44129. height: math.unit(7500, "meters")
  44130. },
  44131. {
  44132. name: "Megamacro+",
  44133. height: math.unit(80, "kilometers")
  44134. },
  44135. ]
  44136. ))
  44137. characterMakers.push(() => makeCharacter(
  44138. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  44139. {
  44140. side: {
  44141. height: math.unit(5 + 11/12, "feet"),
  44142. weight: math.unit(236, "lb"),
  44143. name: "Side",
  44144. image: {
  44145. source: "./media/characters/gapp/side.svg",
  44146. extra: 775/340,
  44147. bottom: 58/833
  44148. }
  44149. },
  44150. mouth: {
  44151. height: math.unit(2.98, "feet"),
  44152. name: "Mouth",
  44153. image: {
  44154. source: "./media/characters/gapp/mouth.svg"
  44155. }
  44156. },
  44157. },
  44158. [
  44159. {
  44160. name: "Normal",
  44161. height: math.unit(5 + 1/12, "feet"),
  44162. default: true
  44163. },
  44164. ]
  44165. ))
  44166. characterMakers.push(() => makeCharacter(
  44167. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  44168. {
  44169. front: {
  44170. height: math.unit(6, "feet"),
  44171. name: "Front",
  44172. image: {
  44173. source: "./media/characters/persephone/front.svg",
  44174. extra: 1895/1717,
  44175. bottom: 96/1991
  44176. }
  44177. },
  44178. back: {
  44179. height: math.unit(6, "feet"),
  44180. name: "Back",
  44181. image: {
  44182. source: "./media/characters/persephone/back.svg",
  44183. extra: 1868/1679,
  44184. bottom: 26/1894
  44185. }
  44186. },
  44187. casual: {
  44188. height: math.unit(6, "feet"),
  44189. name: "Casual",
  44190. image: {
  44191. source: "./media/characters/persephone/casual.svg",
  44192. extra: 1713/1541,
  44193. bottom: 76/1789
  44194. }
  44195. },
  44196. },
  44197. [
  44198. {
  44199. name: "Human Size",
  44200. height: math.unit(6, "feet")
  44201. },
  44202. {
  44203. name: "Big Steppy",
  44204. height: math.unit(600, "meters"),
  44205. default: true
  44206. },
  44207. {
  44208. name: "Galaxy Brain",
  44209. height: math.unit(1, "zettameter")
  44210. },
  44211. ]
  44212. ))
  44213. characterMakers.push(() => makeCharacter(
  44214. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  44215. {
  44216. front: {
  44217. height: math.unit(1.85, "meters"),
  44218. name: "Front",
  44219. image: {
  44220. source: "./media/characters/riley-foxthing/front.svg",
  44221. extra: 1495/1354,
  44222. bottom: 122/1617
  44223. }
  44224. },
  44225. frontAlt: {
  44226. height: math.unit(1.85, "meters"),
  44227. name: "Front (Alt)",
  44228. image: {
  44229. source: "./media/characters/riley-foxthing/front-alt.svg",
  44230. extra: 1572/1389,
  44231. bottom: 116/1688
  44232. }
  44233. },
  44234. },
  44235. [
  44236. {
  44237. name: "Normal Sized",
  44238. height: math.unit(1.85, "meters"),
  44239. default: true
  44240. },
  44241. {
  44242. name: "Quite Sizable",
  44243. height: math.unit(5, "meters")
  44244. },
  44245. {
  44246. name: "Rather Large",
  44247. height: math.unit(20, "meters")
  44248. },
  44249. {
  44250. name: "Macro",
  44251. height: math.unit(450, "meters")
  44252. },
  44253. {
  44254. name: "Giga",
  44255. height: math.unit(5, "km")
  44256. },
  44257. ]
  44258. ))
  44259. characterMakers.push(() => makeCharacter(
  44260. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  44261. {
  44262. front: {
  44263. height: math.unit(6, "feet"),
  44264. weight: math.unit(200, "lb"),
  44265. name: "Front",
  44266. image: {
  44267. source: "./media/characters/blizzard/front.svg",
  44268. extra: 1136/990,
  44269. bottom: 136/1272
  44270. }
  44271. },
  44272. back: {
  44273. height: math.unit(6, "feet"),
  44274. weight: math.unit(200, "lb"),
  44275. name: "Back",
  44276. image: {
  44277. source: "./media/characters/blizzard/back.svg",
  44278. extra: 1175/1034,
  44279. bottom: 97/1272
  44280. }
  44281. },
  44282. sitting: {
  44283. height: math.unit(3.725, "feet"),
  44284. weight: math.unit(200, "lb"),
  44285. name: "Sitting",
  44286. image: {
  44287. source: "./media/characters/blizzard/sitting.svg",
  44288. extra: 581/485,
  44289. bottom: 90/671
  44290. }
  44291. },
  44292. frontWizard: {
  44293. height: math.unit(7.9, "feet"),
  44294. weight: math.unit(200, "lb"),
  44295. name: "Front (Wizard)",
  44296. image: {
  44297. source: "./media/characters/blizzard/front-wizard.svg"
  44298. }
  44299. },
  44300. backWizard: {
  44301. height: math.unit(7.9, "feet"),
  44302. weight: math.unit(200, "lb"),
  44303. name: "Back (Wizard)",
  44304. image: {
  44305. source: "./media/characters/blizzard/back-wizard.svg"
  44306. }
  44307. },
  44308. frontNsfw: {
  44309. height: math.unit(6, "feet"),
  44310. weight: math.unit(200, "lb"),
  44311. name: "Front (NSFW)",
  44312. image: {
  44313. source: "./media/characters/blizzard/front-nsfw.svg",
  44314. extra: 1136/990,
  44315. bottom: 136/1272
  44316. }
  44317. },
  44318. backNsfw: {
  44319. height: math.unit(6, "feet"),
  44320. weight: math.unit(200, "lb"),
  44321. name: "Back (NSFW)",
  44322. image: {
  44323. source: "./media/characters/blizzard/back-nsfw.svg",
  44324. extra: 1175/1034,
  44325. bottom: 97/1272
  44326. }
  44327. },
  44328. sittingNsfw: {
  44329. height: math.unit(3.725, "feet"),
  44330. weight: math.unit(200, "lb"),
  44331. name: "Sitting (NSFW)",
  44332. image: {
  44333. source: "./media/characters/blizzard/sitting-nsfw.svg",
  44334. extra: 581/485,
  44335. bottom: 90/671
  44336. }
  44337. },
  44338. wizardFrontNsfw: {
  44339. height: math.unit(7.9, "feet"),
  44340. weight: math.unit(200, "lb"),
  44341. name: "Wizard (Front, NSFW)",
  44342. image: {
  44343. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  44344. }
  44345. },
  44346. },
  44347. [
  44348. {
  44349. name: "Normal",
  44350. height: math.unit(6, "feet"),
  44351. default: true
  44352. },
  44353. ]
  44354. ))
  44355. characterMakers.push(() => makeCharacter(
  44356. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  44357. {
  44358. front: {
  44359. height: math.unit(5 + 2/12, "feet"),
  44360. name: "Front",
  44361. image: {
  44362. source: "./media/characters/lumi/front.svg",
  44363. extra: 1328/1268,
  44364. bottom: 103/1431
  44365. }
  44366. },
  44367. back: {
  44368. height: math.unit(5 + 2/12, "feet"),
  44369. name: "Back",
  44370. image: {
  44371. source: "./media/characters/lumi/back.svg",
  44372. extra: 1381/1327,
  44373. bottom: 43/1424
  44374. }
  44375. },
  44376. },
  44377. [
  44378. {
  44379. name: "Normal",
  44380. height: math.unit(5 + 2/12, "feet"),
  44381. default: true
  44382. },
  44383. ]
  44384. ))
  44385. characterMakers.push(() => makeCharacter(
  44386. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  44387. {
  44388. front: {
  44389. height: math.unit(5 + 9/12, "feet"),
  44390. name: "Front",
  44391. image: {
  44392. source: "./media/characters/aliya-cotton/front.svg",
  44393. extra: 577/564,
  44394. bottom: 29/606
  44395. }
  44396. },
  44397. },
  44398. [
  44399. {
  44400. name: "Normal",
  44401. height: math.unit(5 + 9/12, "feet"),
  44402. default: true
  44403. },
  44404. ]
  44405. ))
  44406. characterMakers.push(() => makeCharacter(
  44407. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  44408. {
  44409. front: {
  44410. height: math.unit(2.7, "meters"),
  44411. weight: math.unit(25000, "lb"),
  44412. name: "Front",
  44413. image: {
  44414. source: "./media/characters/noah-luxray/front.svg",
  44415. extra: 1644/825,
  44416. bottom: 339/1983
  44417. }
  44418. },
  44419. side: {
  44420. height: math.unit(2.97, "meters"),
  44421. weight: math.unit(25000, "lb"),
  44422. name: "Side",
  44423. image: {
  44424. source: "./media/characters/noah-luxray/side.svg",
  44425. extra: 1319/650,
  44426. bottom: 163/1482
  44427. }
  44428. },
  44429. dick: {
  44430. height: math.unit(7.4, "feet"),
  44431. weight: math.unit(2500, "lb"),
  44432. name: "Dick",
  44433. image: {
  44434. source: "./media/characters/noah-luxray/dick.svg"
  44435. }
  44436. },
  44437. dickAlt: {
  44438. height: math.unit(10.83, "feet"),
  44439. weight: math.unit(2500, "lb"),
  44440. name: "Dick-alt",
  44441. image: {
  44442. source: "./media/characters/noah-luxray/dick-alt.svg"
  44443. }
  44444. },
  44445. },
  44446. [
  44447. {
  44448. name: "BIG",
  44449. height: math.unit(2.7, "meters"),
  44450. default: true
  44451. },
  44452. ]
  44453. ))
  44454. characterMakers.push(() => makeCharacter(
  44455. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  44456. {
  44457. standing: {
  44458. height: math.unit(183, "cm"),
  44459. weight: math.unit(68, "kg"),
  44460. name: "Standing",
  44461. image: {
  44462. source: "./media/characters/arion/standing.svg",
  44463. extra: 1869/1807,
  44464. bottom: 93/1962
  44465. }
  44466. },
  44467. reclining: {
  44468. height: math.unit(70.5, "cm"),
  44469. weight: math.unit(68, "lb"),
  44470. name: "Reclining",
  44471. image: {
  44472. source: "./media/characters/arion/reclining.svg",
  44473. extra: 937/870,
  44474. bottom: 63/1000
  44475. }
  44476. },
  44477. },
  44478. [
  44479. {
  44480. name: "Colossus Size, Low",
  44481. height: math.unit(33, "meters"),
  44482. default: true
  44483. },
  44484. {
  44485. name: "Colossus Size, Mid",
  44486. height: math.unit(52, "meters")
  44487. },
  44488. {
  44489. name: "Colossus Size, High",
  44490. height: math.unit(60, "meters")
  44491. },
  44492. {
  44493. name: "Titan Size, Low",
  44494. height: math.unit(91, "meters"),
  44495. },
  44496. {
  44497. name: "Titan Size, Mid",
  44498. height: math.unit(122, "meters")
  44499. },
  44500. {
  44501. name: "Titan Size, High",
  44502. height: math.unit(162, "meters")
  44503. },
  44504. ]
  44505. ))
  44506. characterMakers.push(() => makeCharacter(
  44507. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  44508. {
  44509. front: {
  44510. height: math.unit(53, "meters"),
  44511. name: "Front",
  44512. image: {
  44513. source: "./media/characters/stellar-marbey/front.svg",
  44514. extra: 1913/1805,
  44515. bottom: 92/2005
  44516. }
  44517. },
  44518. back: {
  44519. height: math.unit(53, "meters"),
  44520. name: "Back",
  44521. image: {
  44522. source: "./media/characters/stellar-marbey/back.svg",
  44523. extra: 1960/1851,
  44524. bottom: 28/1988
  44525. }
  44526. },
  44527. mouth: {
  44528. height: math.unit(3.5, "meters"),
  44529. name: "Mouth",
  44530. image: {
  44531. source: "./media/characters/stellar-marbey/mouth.svg"
  44532. }
  44533. },
  44534. },
  44535. [
  44536. {
  44537. name: "Macro",
  44538. height: math.unit(53, "meters"),
  44539. default: true
  44540. },
  44541. ]
  44542. ))
  44543. characterMakers.push(() => makeCharacter(
  44544. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  44545. {
  44546. front: {
  44547. height: math.unit(8 + 1/12, "feet"),
  44548. weight: math.unit(233, "lb"),
  44549. name: "Front",
  44550. image: {
  44551. source: "./media/characters/matsu/front.svg",
  44552. extra: 832/772,
  44553. bottom: 40/872
  44554. }
  44555. },
  44556. back: {
  44557. height: math.unit(8 + 1/12, "feet"),
  44558. weight: math.unit(233, "lb"),
  44559. name: "Back",
  44560. image: {
  44561. source: "./media/characters/matsu/back.svg",
  44562. extra: 839/780,
  44563. bottom: 47/886
  44564. }
  44565. },
  44566. },
  44567. [
  44568. {
  44569. name: "Normal",
  44570. height: math.unit(8 + 1/12, "feet"),
  44571. default: true
  44572. },
  44573. ]
  44574. ))
  44575. characterMakers.push(() => makeCharacter(
  44576. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  44577. {
  44578. front: {
  44579. height: math.unit(4, "feet"),
  44580. weight: math.unit(148, "lb"),
  44581. name: "Front",
  44582. image: {
  44583. source: "./media/characters/thiz/front.svg",
  44584. extra: 1913/1748,
  44585. bottom: 62/1975
  44586. }
  44587. },
  44588. },
  44589. [
  44590. {
  44591. name: "Normal",
  44592. height: math.unit(4, "feet"),
  44593. default: true
  44594. },
  44595. ]
  44596. ))
  44597. characterMakers.push(() => makeCharacter(
  44598. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  44599. {
  44600. front: {
  44601. height: math.unit(7 + 6/12, "feet"),
  44602. weight: math.unit(267, "lb"),
  44603. name: "Front",
  44604. image: {
  44605. source: "./media/characters/marcel/front.svg",
  44606. extra: 1221/1096,
  44607. bottom: 76/1297
  44608. }
  44609. },
  44610. },
  44611. [
  44612. {
  44613. name: "Normal",
  44614. height: math.unit(7 + 6/12, "feet"),
  44615. default: true
  44616. },
  44617. ]
  44618. ))
  44619. characterMakers.push(() => makeCharacter(
  44620. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  44621. {
  44622. side: {
  44623. height: math.unit(42, "meters"),
  44624. name: "Side",
  44625. image: {
  44626. source: "./media/characters/flake/side.svg",
  44627. extra: 1525/1306,
  44628. bottom: 209/1734
  44629. }
  44630. },
  44631. },
  44632. [
  44633. {
  44634. name: "Normal",
  44635. height: math.unit(42, "meters"),
  44636. default: true
  44637. },
  44638. ]
  44639. ))
  44640. characterMakers.push(() => makeCharacter(
  44641. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  44642. {
  44643. dressed: {
  44644. height: math.unit(6 + 4/12, "feet"),
  44645. weight: math.unit(520, "lb"),
  44646. name: "Dressed",
  44647. image: {
  44648. source: "./media/characters/someonne/dressed.svg",
  44649. extra: 1020/1010,
  44650. bottom: 178/1198
  44651. }
  44652. },
  44653. undressed: {
  44654. height: math.unit(6 + 4/12, "feet"),
  44655. weight: math.unit(520, "lb"),
  44656. name: "Undressed",
  44657. image: {
  44658. source: "./media/characters/someonne/undressed.svg",
  44659. extra: 1019/1014,
  44660. bottom: 169/1188
  44661. }
  44662. },
  44663. },
  44664. [
  44665. {
  44666. name: "Normal",
  44667. height: math.unit(6 + 4/12, "feet"),
  44668. default: true
  44669. },
  44670. ]
  44671. ))
  44672. characterMakers.push(() => makeCharacter(
  44673. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  44674. {
  44675. front: {
  44676. height: math.unit(3, "feet"),
  44677. weight: math.unit(30, "lb"),
  44678. name: "Front",
  44679. image: {
  44680. source: "./media/characters/till/front.svg",
  44681. extra: 892/823,
  44682. bottom: 55/947
  44683. }
  44684. },
  44685. },
  44686. [
  44687. {
  44688. name: "Normal",
  44689. height: math.unit(3, "feet"),
  44690. default: true
  44691. },
  44692. ]
  44693. ))
  44694. characterMakers.push(() => makeCharacter(
  44695. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  44696. {
  44697. front: {
  44698. height: math.unit(9 + 8/12, "feet"),
  44699. weight: math.unit(800, "lb"),
  44700. name: "Front",
  44701. image: {
  44702. source: "./media/characters/sydney-heki/front.svg",
  44703. extra: 1360/1300,
  44704. bottom: 22/1382
  44705. }
  44706. },
  44707. back: {
  44708. height: math.unit(9 + 8/12, "feet"),
  44709. weight: math.unit(800, "lb"),
  44710. name: "Back",
  44711. image: {
  44712. source: "./media/characters/sydney-heki/back.svg",
  44713. extra: 1356/1293,
  44714. bottom: 12/1368
  44715. }
  44716. },
  44717. frontDressed: {
  44718. height: math.unit(9 + 8/12, "feet"),
  44719. weight: math.unit(800, "lb"),
  44720. name: "Front-dressed",
  44721. image: {
  44722. source: "./media/characters/sydney-heki/front-dressed.svg",
  44723. extra: 1360/1300,
  44724. bottom: 22/1382
  44725. }
  44726. },
  44727. },
  44728. [
  44729. {
  44730. name: "Normal",
  44731. height: math.unit(9 + 8/12, "feet"),
  44732. default: true
  44733. },
  44734. {
  44735. name: "Macro",
  44736. height: math.unit(500, "feet")
  44737. },
  44738. {
  44739. name: "Megamacro",
  44740. height: math.unit(3.6, "miles")
  44741. },
  44742. ]
  44743. ))
  44744. characterMakers.push(() => makeCharacter(
  44745. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  44746. {
  44747. front: {
  44748. height: math.unit(200, "cm"),
  44749. weight: math.unit(250, "lb"),
  44750. name: "Front",
  44751. image: {
  44752. source: "./media/characters/fowler-karlsson/front.svg",
  44753. extra: 897/845,
  44754. bottom: 123/1020
  44755. }
  44756. },
  44757. back: {
  44758. height: math.unit(200, "cm"),
  44759. weight: math.unit(250, "lb"),
  44760. name: "Back",
  44761. image: {
  44762. source: "./media/characters/fowler-karlsson/back.svg",
  44763. extra: 999/944,
  44764. bottom: 26/1025
  44765. }
  44766. },
  44767. dick: {
  44768. height: math.unit(1.92, "feet"),
  44769. weight: math.unit(150, "lb"),
  44770. name: "Dick",
  44771. image: {
  44772. source: "./media/characters/fowler-karlsson/dick.svg"
  44773. }
  44774. },
  44775. },
  44776. [
  44777. {
  44778. name: "Normal",
  44779. height: math.unit(200, "cm"),
  44780. default: true
  44781. },
  44782. {
  44783. name: "Smaller Macro",
  44784. height: math.unit(90, "m")
  44785. },
  44786. {
  44787. name: "Macro",
  44788. height: math.unit(150, "m")
  44789. },
  44790. {
  44791. name: "Bigger Macro",
  44792. height: math.unit(300, "m")
  44793. },
  44794. ]
  44795. ))
  44796. characterMakers.push(() => makeCharacter(
  44797. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  44798. {
  44799. side: {
  44800. height: math.unit(8 + 2/12, "feet"),
  44801. weight: math.unit(1, "tonne"),
  44802. name: "Side",
  44803. image: {
  44804. source: "./media/characters/rylide/side.svg",
  44805. extra: 1318/1034,
  44806. bottom: 106/1424
  44807. }
  44808. },
  44809. sitting: {
  44810. height: math.unit(303, "cm"),
  44811. weight: math.unit(1, "tonne"),
  44812. name: "Sitting",
  44813. image: {
  44814. source: "./media/characters/rylide/sitting.svg",
  44815. extra: 1303/1103,
  44816. bottom: 36/1339
  44817. }
  44818. },
  44819. },
  44820. [
  44821. {
  44822. name: "Normal",
  44823. height: math.unit(8 + 2/12, "feet"),
  44824. default: true
  44825. },
  44826. ]
  44827. ))
  44828. characterMakers.push(() => makeCharacter(
  44829. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  44830. {
  44831. front: {
  44832. height: math.unit(5 + 10/12, "feet"),
  44833. weight: math.unit(160, "lb"),
  44834. name: "Front",
  44835. image: {
  44836. source: "./media/characters/pudask/front.svg",
  44837. extra: 1616/1590,
  44838. bottom: 161/1777
  44839. }
  44840. },
  44841. },
  44842. [
  44843. {
  44844. name: "Ferret Height",
  44845. height: math.unit(2 + 5/12, "feet")
  44846. },
  44847. {
  44848. name: "Canon Height",
  44849. height: math.unit(5 + 10/12, "feet"),
  44850. default: true
  44851. },
  44852. ]
  44853. ))
  44854. characterMakers.push(() => makeCharacter(
  44855. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  44856. {
  44857. front: {
  44858. height: math.unit(3 + 6/12, "feet"),
  44859. weight: math.unit(60, "lb"),
  44860. name: "Front",
  44861. image: {
  44862. source: "./media/characters/ramita/front.svg",
  44863. extra: 1402/1232,
  44864. bottom: 62/1464
  44865. }
  44866. },
  44867. dressed: {
  44868. height: math.unit(3 + 6/12, "feet"),
  44869. weight: math.unit(60, "lb"),
  44870. name: "Dressed",
  44871. image: {
  44872. source: "./media/characters/ramita/dressed.svg",
  44873. extra: 1534/1249,
  44874. bottom: 50/1584
  44875. }
  44876. },
  44877. },
  44878. [
  44879. {
  44880. name: "Normal",
  44881. height: math.unit(3 + 6/12, "feet"),
  44882. default: true
  44883. },
  44884. ]
  44885. ))
  44886. characterMakers.push(() => makeCharacter(
  44887. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  44888. {
  44889. front: {
  44890. height: math.unit(8, "feet"),
  44891. name: "Front",
  44892. image: {
  44893. source: "./media/characters/ark/front.svg",
  44894. extra: 772/693,
  44895. bottom: 45/817
  44896. }
  44897. },
  44898. },
  44899. [
  44900. {
  44901. name: "Normal",
  44902. height: math.unit(8, "feet"),
  44903. default: true
  44904. },
  44905. ]
  44906. ))
  44907. characterMakers.push(() => makeCharacter(
  44908. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  44909. {
  44910. front: {
  44911. height: math.unit(6, "feet"),
  44912. weight: math.unit(250, "lb"),
  44913. volume: math.unit(5/8, "gallons"),
  44914. name: "Front",
  44915. image: {
  44916. source: "./media/characters/ludwig-horn/front.svg",
  44917. extra: 1782/1635,
  44918. bottom: 96/1878
  44919. }
  44920. },
  44921. back: {
  44922. height: math.unit(6, "feet"),
  44923. weight: math.unit(250, "lb"),
  44924. volume: math.unit(5/8, "gallons"),
  44925. name: "Back",
  44926. image: {
  44927. source: "./media/characters/ludwig-horn/back.svg",
  44928. extra: 1874/1729,
  44929. bottom: 27/1901
  44930. }
  44931. },
  44932. dick: {
  44933. height: math.unit(1.05, "feet"),
  44934. weight: math.unit(15, "lb"),
  44935. volume: math.unit(5/8, "gallons"),
  44936. name: "Dick",
  44937. image: {
  44938. source: "./media/characters/ludwig-horn/dick.svg"
  44939. }
  44940. },
  44941. },
  44942. [
  44943. {
  44944. name: "Small",
  44945. height: math.unit(6, "feet")
  44946. },
  44947. {
  44948. name: "Typical",
  44949. height: math.unit(12, "feet"),
  44950. default: true
  44951. },
  44952. {
  44953. name: "Building",
  44954. height: math.unit(80, "feet")
  44955. },
  44956. {
  44957. name: "Town",
  44958. height: math.unit(800, "feet")
  44959. },
  44960. {
  44961. name: "Kingdom",
  44962. height: math.unit(80000, "feet")
  44963. },
  44964. {
  44965. name: "Planet",
  44966. height: math.unit(8000000, "feet")
  44967. },
  44968. {
  44969. name: "Universe",
  44970. height: math.unit(8000000000, "feet")
  44971. },
  44972. {
  44973. name: "Transcended",
  44974. height: math.unit(8e27, "feet")
  44975. },
  44976. ]
  44977. ))
  44978. characterMakers.push(() => makeCharacter(
  44979. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  44980. {
  44981. front: {
  44982. height: math.unit(5, "feet"),
  44983. weight: math.unit(50, "kg"),
  44984. name: "Front",
  44985. image: {
  44986. source: "./media/characters/biot-avery/front.svg",
  44987. extra: 1295/1232,
  44988. bottom: 86/1381
  44989. }
  44990. },
  44991. },
  44992. [
  44993. {
  44994. name: "Normal",
  44995. height: math.unit(5, "feet"),
  44996. default: true
  44997. },
  44998. ]
  44999. ))
  45000. characterMakers.push(() => makeCharacter(
  45001. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  45002. {
  45003. front: {
  45004. height: math.unit(6, "feet"),
  45005. name: "Front",
  45006. image: {
  45007. source: "./media/characters/kitsune-kiro/front.svg",
  45008. extra: 1270/1158,
  45009. bottom: 42/1312
  45010. }
  45011. },
  45012. frontAlt: {
  45013. height: math.unit(6, "feet"),
  45014. name: "Front-alt",
  45015. image: {
  45016. source: "./media/characters/kitsune-kiro/front-alt.svg",
  45017. extra: 1130/1081,
  45018. bottom: 36/1166
  45019. }
  45020. },
  45021. },
  45022. [
  45023. {
  45024. name: "Smol",
  45025. height: math.unit(3, "feet")
  45026. },
  45027. {
  45028. name: "Normal",
  45029. height: math.unit(6, "feet"),
  45030. default: true
  45031. },
  45032. ]
  45033. ))
  45034. characterMakers.push(() => makeCharacter(
  45035. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  45036. {
  45037. front: {
  45038. height: math.unit(6, "feet"),
  45039. weight: math.unit(125, "lb"),
  45040. name: "Front",
  45041. image: {
  45042. source: "./media/characters/jack-thatcher/front.svg",
  45043. extra: 1474/1370,
  45044. bottom: 26/1500
  45045. }
  45046. },
  45047. back: {
  45048. height: math.unit(6, "feet"),
  45049. weight: math.unit(125, "lb"),
  45050. name: "Back",
  45051. image: {
  45052. source: "./media/characters/jack-thatcher/back.svg",
  45053. extra: 1489/1384,
  45054. bottom: 18/1507
  45055. }
  45056. },
  45057. },
  45058. [
  45059. {
  45060. name: "Normal",
  45061. height: math.unit(6, "feet"),
  45062. default: true
  45063. },
  45064. {
  45065. name: "Macro",
  45066. height: math.unit(75, "feet")
  45067. },
  45068. {
  45069. name: "Macro-er",
  45070. height: math.unit(250, "feet")
  45071. },
  45072. ]
  45073. ))
  45074. characterMakers.push(() => makeCharacter(
  45075. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  45076. {
  45077. front: {
  45078. height: math.unit(7, "feet"),
  45079. weight: math.unit(110, "kg"),
  45080. name: "Front",
  45081. image: {
  45082. source: "./media/characters/max-hyper/front.svg",
  45083. extra: 1969/1881,
  45084. bottom: 49/2018
  45085. }
  45086. },
  45087. },
  45088. [
  45089. {
  45090. name: "Normal",
  45091. height: math.unit(7, "feet"),
  45092. default: true
  45093. },
  45094. ]
  45095. ))
  45096. characterMakers.push(() => makeCharacter(
  45097. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  45098. {
  45099. front: {
  45100. height: math.unit(5 + 5/12, "feet"),
  45101. weight: math.unit(160, "lb"),
  45102. name: "Front",
  45103. image: {
  45104. source: "./media/characters/spook/front.svg",
  45105. extra: 794/791,
  45106. bottom: 54/848
  45107. }
  45108. },
  45109. back: {
  45110. height: math.unit(5 + 5/12, "feet"),
  45111. weight: math.unit(160, "lb"),
  45112. name: "Back",
  45113. image: {
  45114. source: "./media/characters/spook/back.svg",
  45115. extra: 812/798,
  45116. bottom: 32/844
  45117. }
  45118. },
  45119. },
  45120. [
  45121. {
  45122. name: "Normal",
  45123. height: math.unit(5 + 5/12, "feet"),
  45124. default: true
  45125. },
  45126. ]
  45127. ))
  45128. characterMakers.push(() => makeCharacter(
  45129. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  45130. {
  45131. front: {
  45132. height: math.unit(18, "feet"),
  45133. name: "Front",
  45134. image: {
  45135. source: "./media/characters/xeaduulix/front.svg",
  45136. extra: 1380/1166,
  45137. bottom: 110/1490
  45138. }
  45139. },
  45140. back: {
  45141. height: math.unit(18, "feet"),
  45142. name: "Back",
  45143. image: {
  45144. source: "./media/characters/xeaduulix/back.svg",
  45145. extra: 1592/1170,
  45146. bottom: 128/1720
  45147. }
  45148. },
  45149. frontNsfw: {
  45150. height: math.unit(18, "feet"),
  45151. name: "Front (NSFW)",
  45152. image: {
  45153. source: "./media/characters/xeaduulix/front-nsfw.svg",
  45154. extra: 1380/1166,
  45155. bottom: 110/1490
  45156. }
  45157. },
  45158. backNsfw: {
  45159. height: math.unit(18, "feet"),
  45160. name: "Back (NSFW)",
  45161. image: {
  45162. source: "./media/characters/xeaduulix/back-nsfw.svg",
  45163. extra: 1592/1170,
  45164. bottom: 128/1720
  45165. }
  45166. },
  45167. },
  45168. [
  45169. {
  45170. name: "Normal",
  45171. height: math.unit(18, "feet"),
  45172. default: true
  45173. },
  45174. ]
  45175. ))
  45176. characterMakers.push(() => makeCharacter(
  45177. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  45178. {
  45179. spreadWings: {
  45180. height: math.unit(20, "feet"),
  45181. name: "Spread Wings",
  45182. image: {
  45183. source: "./media/characters/fledge/spread-wings.svg",
  45184. extra: 693/635,
  45185. bottom: 26/719
  45186. }
  45187. },
  45188. front: {
  45189. height: math.unit(20, "feet"),
  45190. name: "Front",
  45191. image: {
  45192. source: "./media/characters/fledge/front.svg",
  45193. extra: 684/637,
  45194. bottom: 18/702
  45195. }
  45196. },
  45197. frontAlt: {
  45198. height: math.unit(20, "feet"),
  45199. name: "Front (Alt)",
  45200. image: {
  45201. source: "./media/characters/fledge/front-alt.svg",
  45202. extra: 708/664,
  45203. bottom: 13/721
  45204. }
  45205. },
  45206. back: {
  45207. height: math.unit(20, "feet"),
  45208. name: "Back",
  45209. image: {
  45210. source: "./media/characters/fledge/back.svg",
  45211. extra: 718/634,
  45212. bottom: 22/740
  45213. }
  45214. },
  45215. head: {
  45216. height: math.unit(5.55, "feet"),
  45217. name: "Head",
  45218. image: {
  45219. source: "./media/characters/fledge/head.svg"
  45220. }
  45221. },
  45222. headAlt: {
  45223. height: math.unit(5.1, "feet"),
  45224. name: "Head (Alt)",
  45225. image: {
  45226. source: "./media/characters/fledge/head-alt.svg"
  45227. }
  45228. },
  45229. },
  45230. [
  45231. {
  45232. name: "Small",
  45233. height: math.unit(6 + 2/12, "feet")
  45234. },
  45235. {
  45236. name: "Big",
  45237. height: math.unit(20, "feet"),
  45238. default: true
  45239. },
  45240. {
  45241. name: "Giant",
  45242. height: math.unit(100, "feet")
  45243. },
  45244. {
  45245. name: "Macro",
  45246. height: math.unit(200, "feet")
  45247. },
  45248. ]
  45249. ))
  45250. characterMakers.push(() => makeCharacter(
  45251. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  45252. {
  45253. front: {
  45254. height: math.unit(1, "meter"),
  45255. name: "Front",
  45256. image: {
  45257. source: "./media/characters/atlas-morenai/front.svg",
  45258. extra: 1275/1043,
  45259. bottom: 19/1294
  45260. }
  45261. },
  45262. back: {
  45263. height: math.unit(1, "meter"),
  45264. name: "Back",
  45265. image: {
  45266. source: "./media/characters/atlas-morenai/back.svg",
  45267. extra: 1141/1001,
  45268. bottom: 25/1166
  45269. }
  45270. },
  45271. },
  45272. [
  45273. {
  45274. name: "Normal",
  45275. height: math.unit(1, "meter"),
  45276. default: true
  45277. },
  45278. {
  45279. name: "Magic-Infused",
  45280. height: math.unit(5, "meters")
  45281. },
  45282. ]
  45283. ))
  45284. characterMakers.push(() => makeCharacter(
  45285. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  45286. {
  45287. front: {
  45288. height: math.unit(5, "meters"),
  45289. name: "Front",
  45290. image: {
  45291. source: "./media/characters/cintia/front.svg",
  45292. extra: 1312/1228,
  45293. bottom: 38/1350
  45294. }
  45295. },
  45296. back: {
  45297. height: math.unit(5, "meters"),
  45298. name: "Back",
  45299. image: {
  45300. source: "./media/characters/cintia/back.svg",
  45301. extra: 1260/1166,
  45302. bottom: 98/1358
  45303. }
  45304. },
  45305. frontDick: {
  45306. height: math.unit(5, "meters"),
  45307. name: "Front (Dick)",
  45308. image: {
  45309. source: "./media/characters/cintia/front-dick.svg",
  45310. extra: 1312/1228,
  45311. bottom: 38/1350
  45312. }
  45313. },
  45314. backDick: {
  45315. height: math.unit(5, "meters"),
  45316. name: "Back (Dick)",
  45317. image: {
  45318. source: "./media/characters/cintia/back-dick.svg",
  45319. extra: 1260/1166,
  45320. bottom: 98/1358
  45321. }
  45322. },
  45323. bust: {
  45324. height: math.unit(1.97, "meters"),
  45325. name: "Bust",
  45326. image: {
  45327. source: "./media/characters/cintia/bust.svg",
  45328. extra: 617/565,
  45329. bottom: 0/617
  45330. }
  45331. },
  45332. },
  45333. [
  45334. {
  45335. name: "Normal",
  45336. height: math.unit(5, "meters"),
  45337. default: true
  45338. },
  45339. ]
  45340. ))
  45341. characterMakers.push(() => makeCharacter(
  45342. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  45343. {
  45344. side: {
  45345. height: math.unit(100, "feet"),
  45346. name: "Side",
  45347. image: {
  45348. source: "./media/characters/denora/side.svg",
  45349. extra: 875/803,
  45350. bottom: 9/884
  45351. }
  45352. },
  45353. },
  45354. [
  45355. {
  45356. name: "Standard",
  45357. height: math.unit(100, "feet"),
  45358. default: true
  45359. },
  45360. {
  45361. name: "Grand",
  45362. height: math.unit(1000, "feet")
  45363. },
  45364. {
  45365. name: "Conquering",
  45366. height: math.unit(10000, "feet")
  45367. },
  45368. ]
  45369. ))
  45370. characterMakers.push(() => makeCharacter(
  45371. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  45372. {
  45373. dressed: {
  45374. height: math.unit(8 + 5/12, "feet"),
  45375. weight: math.unit(700, "lb"),
  45376. name: "Dressed",
  45377. image: {
  45378. source: "./media/characters/kiva/dressed.svg",
  45379. extra: 1102/1055,
  45380. bottom: 60/1162
  45381. }
  45382. },
  45383. nude: {
  45384. height: math.unit(8 + 5/12, "feet"),
  45385. weight: math.unit(700, "lb"),
  45386. name: "Nude",
  45387. image: {
  45388. source: "./media/characters/kiva/nude.svg",
  45389. extra: 1102/1055,
  45390. bottom: 60/1162
  45391. }
  45392. },
  45393. },
  45394. [
  45395. {
  45396. name: "Base Height",
  45397. height: math.unit(8 + 5/12, "feet"),
  45398. default: true
  45399. },
  45400. {
  45401. name: "Macro",
  45402. height: math.unit(100, "feet")
  45403. },
  45404. {
  45405. name: "Max",
  45406. height: math.unit(3280, "feet")
  45407. },
  45408. ]
  45409. ))
  45410. characterMakers.push(() => makeCharacter(
  45411. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  45412. {
  45413. front: {
  45414. height: math.unit(6 + 8/12, "feet"),
  45415. weight: math.unit(250, "lb"),
  45416. name: "Front",
  45417. image: {
  45418. source: "./media/characters/ztragon/front.svg",
  45419. extra: 1825/1684,
  45420. bottom: 98/1923
  45421. }
  45422. },
  45423. },
  45424. [
  45425. {
  45426. name: "Normal",
  45427. height: math.unit(6 + 8/12, "feet"),
  45428. default: true
  45429. },
  45430. {
  45431. name: "Macro",
  45432. height: math.unit(80, "feet")
  45433. },
  45434. ]
  45435. ))
  45436. characterMakers.push(() => makeCharacter(
  45437. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  45438. {
  45439. front: {
  45440. height: math.unit(10.4, "feet"),
  45441. weight: math.unit(2, "tons"),
  45442. name: "Front",
  45443. image: {
  45444. source: "./media/characters/yesenia/front.svg",
  45445. extra: 1479/1474,
  45446. bottom: 233/1712
  45447. }
  45448. },
  45449. },
  45450. [
  45451. {
  45452. name: "Normal",
  45453. height: math.unit(10.4, "feet"),
  45454. default: true
  45455. },
  45456. ]
  45457. ))
  45458. characterMakers.push(() => makeCharacter(
  45459. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  45460. {
  45461. normal: {
  45462. height: math.unit(6 + 1/12, "feet"),
  45463. weight: math.unit(180, "lb"),
  45464. name: "Normal",
  45465. image: {
  45466. source: "./media/characters/leanne-lycheborne/normal.svg",
  45467. extra: 1748/1660,
  45468. bottom: 98/1846
  45469. }
  45470. },
  45471. were: {
  45472. height: math.unit(12, "feet"),
  45473. weight: math.unit(1600, "lb"),
  45474. name: "Were",
  45475. image: {
  45476. source: "./media/characters/leanne-lycheborne/were.svg",
  45477. extra: 1485/1432,
  45478. bottom: 66/1551
  45479. }
  45480. },
  45481. },
  45482. [
  45483. {
  45484. name: "Normal",
  45485. height: math.unit(6 + 1/12, "feet"),
  45486. default: true
  45487. },
  45488. ]
  45489. ))
  45490. characterMakers.push(() => makeCharacter(
  45491. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  45492. {
  45493. side: {
  45494. height: math.unit(13, "feet"),
  45495. name: "Side",
  45496. image: {
  45497. source: "./media/characters/kira-tyler/side.svg",
  45498. extra: 693/393,
  45499. bottom: 58/751
  45500. }
  45501. },
  45502. },
  45503. [
  45504. {
  45505. name: "Normal",
  45506. height: math.unit(13, "feet"),
  45507. default: true
  45508. },
  45509. ]
  45510. ))
  45511. characterMakers.push(() => makeCharacter(
  45512. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  45513. {
  45514. front: {
  45515. height: math.unit(10.3, "feet"),
  45516. weight: math.unit(150, "lb"),
  45517. name: "Front",
  45518. image: {
  45519. source: "./media/characters/blaze/front.svg",
  45520. extra: 1378/1286,
  45521. bottom: 172/1550
  45522. }
  45523. },
  45524. },
  45525. [
  45526. {
  45527. name: "Normal",
  45528. height: math.unit(10.3, "feet"),
  45529. default: true
  45530. },
  45531. ]
  45532. ))
  45533. characterMakers.push(() => makeCharacter(
  45534. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  45535. {
  45536. side: {
  45537. height: math.unit(2, "meters"),
  45538. weight: math.unit(400, "kg"),
  45539. name: "Side",
  45540. image: {
  45541. source: "./media/characters/anu/side.svg",
  45542. extra: 506/394,
  45543. bottom: 18/524
  45544. }
  45545. },
  45546. },
  45547. [
  45548. {
  45549. name: "Humanoid",
  45550. height: math.unit(2, "meters")
  45551. },
  45552. {
  45553. name: "Normal",
  45554. height: math.unit(5, "meters"),
  45555. default: true
  45556. },
  45557. ]
  45558. ))
  45559. characterMakers.push(() => makeCharacter(
  45560. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  45561. {
  45562. front: {
  45563. height: math.unit(5 + 5/12, "feet"),
  45564. weight: math.unit(170, "lb"),
  45565. name: "Front",
  45566. image: {
  45567. source: "./media/characters/synx-the-lynx/front.svg",
  45568. extra: 1893/1745,
  45569. bottom: 17/1910
  45570. }
  45571. },
  45572. side: {
  45573. height: math.unit(5 + 5/12, "feet"),
  45574. weight: math.unit(170, "lb"),
  45575. name: "Side",
  45576. image: {
  45577. source: "./media/characters/synx-the-lynx/side.svg",
  45578. extra: 1884/1740,
  45579. bottom: 39/1923
  45580. }
  45581. },
  45582. back: {
  45583. height: math.unit(5 + 5/12, "feet"),
  45584. weight: math.unit(170, "lb"),
  45585. name: "Back",
  45586. image: {
  45587. source: "./media/characters/synx-the-lynx/back.svg",
  45588. extra: 1903/1755,
  45589. bottom: 14/1917
  45590. }
  45591. },
  45592. },
  45593. [
  45594. {
  45595. name: "Normal",
  45596. height: math.unit(5 + 5/12, "feet"),
  45597. default: true
  45598. },
  45599. ]
  45600. ))
  45601. characterMakers.push(() => makeCharacter(
  45602. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  45603. {
  45604. back: {
  45605. height: math.unit(15, "feet"),
  45606. name: "Back",
  45607. image: {
  45608. source: "./media/characters/nadezda-fex/back.svg",
  45609. extra: 1695/1481,
  45610. bottom: 25/1720
  45611. }
  45612. },
  45613. },
  45614. [
  45615. {
  45616. name: "Normal",
  45617. height: math.unit(15, "feet"),
  45618. default: true
  45619. },
  45620. {
  45621. name: "Macro",
  45622. height: math.unit(2.5, "miles")
  45623. },
  45624. {
  45625. name: "Goddess",
  45626. height: math.unit(2, "multiverses")
  45627. },
  45628. ]
  45629. ))
  45630. characterMakers.push(() => makeCharacter(
  45631. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  45632. {
  45633. front: {
  45634. height: math.unit(216, "cm"),
  45635. name: "Front",
  45636. image: {
  45637. source: "./media/characters/lev/front.svg",
  45638. extra: 1728/1670,
  45639. bottom: 82/1810
  45640. }
  45641. },
  45642. back: {
  45643. height: math.unit(216, "cm"),
  45644. name: "Back",
  45645. image: {
  45646. source: "./media/characters/lev/back.svg",
  45647. extra: 1738/1675,
  45648. bottom: 24/1762
  45649. }
  45650. },
  45651. dressed: {
  45652. height: math.unit(216, "cm"),
  45653. name: "Dressed",
  45654. image: {
  45655. source: "./media/characters/lev/dressed.svg",
  45656. extra: 1397/1351,
  45657. bottom: 73/1470
  45658. }
  45659. },
  45660. head: {
  45661. height: math.unit(0.51, "meter"),
  45662. name: "Head",
  45663. image: {
  45664. source: "./media/characters/lev/head.svg"
  45665. }
  45666. },
  45667. },
  45668. [
  45669. {
  45670. name: "Normal",
  45671. height: math.unit(216, "cm"),
  45672. default: true
  45673. },
  45674. {
  45675. name: "Relatively Macro",
  45676. height: math.unit(80, "meters")
  45677. },
  45678. {
  45679. name: "Megamacro",
  45680. height: math.unit(21600, "meters")
  45681. },
  45682. {
  45683. name: "Megamacro+",
  45684. height: math.unit(64800, "meters")
  45685. },
  45686. ]
  45687. ))
  45688. characterMakers.push(() => makeCharacter(
  45689. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  45690. {
  45691. front: {
  45692. height: math.unit(2, "meters"),
  45693. weight: math.unit(80, "kg"),
  45694. name: "Front",
  45695. image: {
  45696. source: "./media/characters/moka/front.svg",
  45697. extra: 1337/1255,
  45698. bottom: 58/1395
  45699. }
  45700. },
  45701. },
  45702. [
  45703. {
  45704. name: "Micro",
  45705. height: math.unit(15, "cm")
  45706. },
  45707. {
  45708. name: "Normal",
  45709. height: math.unit(2, "meters"),
  45710. default: true
  45711. },
  45712. {
  45713. name: "Macro",
  45714. height: math.unit(20, "meters"),
  45715. },
  45716. ]
  45717. ))
  45718. characterMakers.push(() => makeCharacter(
  45719. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  45720. {
  45721. front: {
  45722. height: math.unit(9, "feet"),
  45723. weight: math.unit(240, "lb"),
  45724. name: "Front",
  45725. image: {
  45726. source: "./media/characters/kuzco/front.svg",
  45727. extra: 1593/1487,
  45728. bottom: 32/1625
  45729. }
  45730. },
  45731. side: {
  45732. height: math.unit(9, "feet"),
  45733. weight: math.unit(240, "lb"),
  45734. name: "Side",
  45735. image: {
  45736. source: "./media/characters/kuzco/side.svg",
  45737. extra: 1575/1485,
  45738. bottom: 30/1605
  45739. }
  45740. },
  45741. back: {
  45742. height: math.unit(9, "feet"),
  45743. weight: math.unit(240, "lb"),
  45744. name: "Back",
  45745. image: {
  45746. source: "./media/characters/kuzco/back.svg",
  45747. extra: 1603/1514,
  45748. bottom: 14/1617
  45749. }
  45750. },
  45751. },
  45752. [
  45753. {
  45754. name: "Normal",
  45755. height: math.unit(9, "feet"),
  45756. default: true
  45757. },
  45758. ]
  45759. ))
  45760. characterMakers.push(() => makeCharacter(
  45761. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  45762. {
  45763. side: {
  45764. height: math.unit(2, "meters"),
  45765. weight: math.unit(300, "kg"),
  45766. name: "Side",
  45767. image: {
  45768. source: "./media/characters/ceruleus/side.svg",
  45769. extra: 1068/974,
  45770. bottom: 126/1194
  45771. }
  45772. },
  45773. },
  45774. [
  45775. {
  45776. name: "Normal",
  45777. height: math.unit(16, "meters"),
  45778. default: true
  45779. },
  45780. ]
  45781. ))
  45782. characterMakers.push(() => makeCharacter(
  45783. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  45784. {
  45785. front: {
  45786. height: math.unit(9, "feet"),
  45787. weight: math.unit(500, "kg"),
  45788. name: "Front",
  45789. image: {
  45790. source: "./media/characters/acouya/front.svg",
  45791. extra: 1660/1473,
  45792. bottom: 28/1688
  45793. }
  45794. },
  45795. },
  45796. [
  45797. {
  45798. name: "Normal",
  45799. height: math.unit(9, "feet"),
  45800. default: true
  45801. },
  45802. ]
  45803. ))
  45804. characterMakers.push(() => makeCharacter(
  45805. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  45806. {
  45807. front: {
  45808. height: math.unit(5 + 6/12, "feet"),
  45809. weight: math.unit(195, "lb"),
  45810. name: "Front",
  45811. image: {
  45812. source: "./media/characters/vant/front.svg",
  45813. extra: 1396/1320,
  45814. bottom: 20/1416
  45815. }
  45816. },
  45817. back: {
  45818. height: math.unit(5 + 6/12, "feet"),
  45819. weight: math.unit(195, "lb"),
  45820. name: "Back",
  45821. image: {
  45822. source: "./media/characters/vant/back.svg",
  45823. extra: 1396/1320,
  45824. bottom: 20/1416
  45825. }
  45826. },
  45827. maw: {
  45828. height: math.unit(0.75, "feet"),
  45829. name: "Maw",
  45830. image: {
  45831. source: "./media/characters/vant/maw.svg"
  45832. }
  45833. },
  45834. paw: {
  45835. height: math.unit(1.07, "feet"),
  45836. name: "Paw",
  45837. image: {
  45838. source: "./media/characters/vant/paw.svg"
  45839. }
  45840. },
  45841. },
  45842. [
  45843. {
  45844. name: "Micro",
  45845. height: math.unit(0.25, "inches")
  45846. },
  45847. {
  45848. name: "Normal",
  45849. height: math.unit(5 + 6/12, "feet"),
  45850. default: true
  45851. },
  45852. {
  45853. name: "Macro",
  45854. height: math.unit(75, "feet")
  45855. },
  45856. ]
  45857. ))
  45858. characterMakers.push(() => makeCharacter(
  45859. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  45860. {
  45861. front: {
  45862. height: math.unit(30, "meters"),
  45863. weight: math.unit(363, "tons"),
  45864. name: "Front",
  45865. image: {
  45866. source: "./media/characters/ahra/front.svg",
  45867. extra: 1914/1814,
  45868. bottom: 46/1960
  45869. }
  45870. },
  45871. },
  45872. [
  45873. {
  45874. name: "Macro",
  45875. height: math.unit(30, "meters"),
  45876. default: true
  45877. },
  45878. ]
  45879. ))
  45880. characterMakers.push(() => makeCharacter(
  45881. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  45882. {
  45883. undressed: {
  45884. height: math.unit(2, "m"),
  45885. weight: math.unit(250, "kg"),
  45886. name: "Undressed",
  45887. image: {
  45888. source: "./media/characters/coriander/undressed.svg",
  45889. extra: 1757/1606,
  45890. bottom: 107/1864
  45891. }
  45892. },
  45893. dressed: {
  45894. height: math.unit(2, "m"),
  45895. weight: math.unit(250, "kg"),
  45896. name: "Dressed",
  45897. image: {
  45898. source: "./media/characters/coriander/dressed.svg",
  45899. extra: 1757/1606,
  45900. bottom: 107/1864
  45901. }
  45902. },
  45903. },
  45904. [
  45905. {
  45906. name: "Normal",
  45907. height: math.unit(4, "meters"),
  45908. default: true
  45909. },
  45910. {
  45911. name: "XL",
  45912. height: math.unit(6, "meters")
  45913. },
  45914. {
  45915. name: "XXL",
  45916. height: math.unit(8, "meters")
  45917. },
  45918. ]
  45919. ))
  45920. characterMakers.push(() => makeCharacter(
  45921. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  45922. {
  45923. front: {
  45924. height: math.unit(6, "feet"),
  45925. name: "Front",
  45926. image: {
  45927. source: "./media/characters/syrinx/front.svg",
  45928. extra: 1557/1259,
  45929. bottom: 171/1728
  45930. }
  45931. },
  45932. },
  45933. [
  45934. {
  45935. name: "Normal",
  45936. height: math.unit(6 + 3/12, "feet"),
  45937. default: true
  45938. },
  45939. ]
  45940. ))
  45941. characterMakers.push(() => makeCharacter(
  45942. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  45943. {
  45944. front: {
  45945. height: math.unit(11 + 6/12, "feet"),
  45946. weight: math.unit(1.5, "tons"),
  45947. name: "Front",
  45948. image: {
  45949. source: "./media/characters/bor/front.svg",
  45950. extra: 1189/1109,
  45951. bottom: 170/1359
  45952. }
  45953. },
  45954. },
  45955. [
  45956. {
  45957. name: "Normal",
  45958. height: math.unit(11 + 6/12, "feet"),
  45959. default: true
  45960. },
  45961. {
  45962. name: "Macro",
  45963. height: math.unit(32 + 9/12, "feet")
  45964. },
  45965. ]
  45966. ))
  45967. characterMakers.push(() => makeCharacter(
  45968. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  45969. {
  45970. anthro: {
  45971. height: math.unit(9, "feet"),
  45972. weight: math.unit(2076, "lb"),
  45973. name: "Anthro",
  45974. image: {
  45975. source: "./media/characters/abacus/anthro.svg",
  45976. extra: 1540/1494,
  45977. bottom: 233/1773
  45978. }
  45979. },
  45980. pigeon: {
  45981. height: math.unit(1, "feet"),
  45982. name: "Pigeon",
  45983. image: {
  45984. source: "./media/characters/abacus/pigeon.svg",
  45985. extra: 528/525,
  45986. bottom: 46/574
  45987. }
  45988. },
  45989. },
  45990. [
  45991. {
  45992. name: "Normal",
  45993. height: math.unit(9, "feet"),
  45994. default: true
  45995. },
  45996. ]
  45997. ))
  45998. characterMakers.push(() => makeCharacter(
  45999. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  46000. {
  46001. side: {
  46002. height: math.unit(6, "feet"),
  46003. name: "Side",
  46004. image: {
  46005. source: "./media/characters/delkhan/side.svg",
  46006. extra: 1884/1786,
  46007. bottom: 308/2192
  46008. }
  46009. },
  46010. head: {
  46011. height: math.unit(3.38, "feet"),
  46012. name: "Head",
  46013. image: {
  46014. source: "./media/characters/delkhan/head.svg"
  46015. }
  46016. },
  46017. },
  46018. [
  46019. {
  46020. name: "Normal",
  46021. height: math.unit(72, "feet"),
  46022. default: true
  46023. },
  46024. {
  46025. name: "Giant",
  46026. height: math.unit(172, "feet")
  46027. },
  46028. ]
  46029. ))
  46030. characterMakers.push(() => makeCharacter(
  46031. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  46032. {
  46033. standing: {
  46034. height: math.unit(6, "feet"),
  46035. name: "Standing",
  46036. image: {
  46037. source: "./media/characters/euchidat/standing.svg",
  46038. extra: 1612/1553,
  46039. bottom: 116/1728
  46040. }
  46041. },
  46042. leaning: {
  46043. height: math.unit(6, "feet"),
  46044. name: "Leaning",
  46045. image: {
  46046. source: "./media/characters/euchidat/leaning.svg",
  46047. extra: 1719/1674,
  46048. bottom: 27/1746
  46049. }
  46050. },
  46051. },
  46052. [
  46053. {
  46054. name: "Normal",
  46055. height: math.unit(175, "feet"),
  46056. default: true
  46057. },
  46058. {
  46059. name: "Megamacro",
  46060. height: math.unit(190, "miles")
  46061. },
  46062. {
  46063. name: "Gigamacro",
  46064. height: math.unit(190000, "miles")
  46065. },
  46066. ]
  46067. ))
  46068. characterMakers.push(() => makeCharacter(
  46069. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  46070. {
  46071. front: {
  46072. height: math.unit(6, "feet"),
  46073. weight: math.unit(150, "lb"),
  46074. name: "Front",
  46075. image: {
  46076. source: "./media/characters/rebecca-stack/front.svg",
  46077. extra: 1256/1201,
  46078. bottom: 18/1274
  46079. }
  46080. },
  46081. },
  46082. [
  46083. {
  46084. name: "Normal",
  46085. height: math.unit(5 + 8/12, "feet"),
  46086. default: true
  46087. },
  46088. {
  46089. name: "Demolitionist",
  46090. height: math.unit(200, "feet")
  46091. },
  46092. {
  46093. name: "Out of Control",
  46094. height: math.unit(2, "miles")
  46095. },
  46096. {
  46097. name: "Giga",
  46098. height: math.unit(7200, "miles")
  46099. },
  46100. ]
  46101. ))
  46102. characterMakers.push(() => makeCharacter(
  46103. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  46104. {
  46105. front: {
  46106. height: math.unit(6, "feet"),
  46107. weight: math.unit(150, "lb"),
  46108. name: "Front",
  46109. image: {
  46110. source: "./media/characters/jenny-cartwright/front.svg",
  46111. extra: 1384/1376,
  46112. bottom: 58/1442
  46113. }
  46114. },
  46115. },
  46116. [
  46117. {
  46118. name: "Normal",
  46119. height: math.unit(6 + 7/12, "feet"),
  46120. default: true
  46121. },
  46122. {
  46123. name: "Librarian",
  46124. height: math.unit(55, "feet")
  46125. },
  46126. {
  46127. name: "Sightseer",
  46128. height: math.unit(50, "miles")
  46129. },
  46130. {
  46131. name: "Giga",
  46132. height: math.unit(30000, "miles")
  46133. },
  46134. ]
  46135. ))
  46136. characterMakers.push(() => makeCharacter(
  46137. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  46138. {
  46139. nude: {
  46140. height: math.unit(8, "feet"),
  46141. weight: math.unit(225, "lb"),
  46142. name: "Nude",
  46143. image: {
  46144. source: "./media/characters/marvy/nude.svg",
  46145. extra: 1900/1683,
  46146. bottom: 89/1989
  46147. }
  46148. },
  46149. dressed: {
  46150. height: math.unit(8, "feet"),
  46151. weight: math.unit(225, "lb"),
  46152. name: "Dressed",
  46153. image: {
  46154. source: "./media/characters/marvy/dressed.svg",
  46155. extra: 1900/1683,
  46156. bottom: 89/1989
  46157. }
  46158. },
  46159. head: {
  46160. height: math.unit(2.85, "feet"),
  46161. name: "Head",
  46162. image: {
  46163. source: "./media/characters/marvy/head.svg"
  46164. }
  46165. },
  46166. },
  46167. [
  46168. {
  46169. name: "Normal",
  46170. height: math.unit(8, "feet"),
  46171. default: true
  46172. },
  46173. ]
  46174. ))
  46175. characterMakers.push(() => makeCharacter(
  46176. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  46177. {
  46178. front: {
  46179. height: math.unit(8, "feet"),
  46180. weight: math.unit(250, "lb"),
  46181. name: "Front",
  46182. image: {
  46183. source: "./media/characters/leah/front.svg",
  46184. extra: 1257/1149,
  46185. bottom: 109/1366
  46186. }
  46187. },
  46188. },
  46189. [
  46190. {
  46191. name: "Normal",
  46192. height: math.unit(8, "feet"),
  46193. default: true
  46194. },
  46195. {
  46196. name: "Minimacro",
  46197. height: math.unit(40, "feet")
  46198. },
  46199. {
  46200. name: "Macro",
  46201. height: math.unit(124, "feet")
  46202. },
  46203. {
  46204. name: "Megamacro",
  46205. height: math.unit(850, "feet")
  46206. },
  46207. ]
  46208. ))
  46209. characterMakers.push(() => makeCharacter(
  46210. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  46211. {
  46212. side: {
  46213. height: math.unit(13 + 6/12, "feet"),
  46214. weight: math.unit(3200, "lb"),
  46215. name: "Side",
  46216. image: {
  46217. source: "./media/characters/alvir/side.svg",
  46218. extra: 896/589,
  46219. bottom: 26/922
  46220. }
  46221. },
  46222. },
  46223. [
  46224. {
  46225. name: "Normal",
  46226. height: math.unit(13 + 6/12, "feet"),
  46227. default: true
  46228. },
  46229. ]
  46230. ))
  46231. characterMakers.push(() => makeCharacter(
  46232. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  46233. {
  46234. front: {
  46235. height: math.unit(5 + 4/12, "feet"),
  46236. weight: math.unit(236, "lb"),
  46237. name: "Front",
  46238. image: {
  46239. source: "./media/characters/zaina-khalil/front.svg",
  46240. extra: 1533/1485,
  46241. bottom: 94/1627
  46242. }
  46243. },
  46244. side: {
  46245. height: math.unit(5 + 4/12, "feet"),
  46246. weight: math.unit(236, "lb"),
  46247. name: "Side",
  46248. image: {
  46249. source: "./media/characters/zaina-khalil/side.svg",
  46250. extra: 1537/1498,
  46251. bottom: 66/1603
  46252. }
  46253. },
  46254. back: {
  46255. height: math.unit(5 + 4/12, "feet"),
  46256. weight: math.unit(236, "lb"),
  46257. name: "Back",
  46258. image: {
  46259. source: "./media/characters/zaina-khalil/back.svg",
  46260. extra: 1546/1494,
  46261. bottom: 89/1635
  46262. }
  46263. },
  46264. },
  46265. [
  46266. {
  46267. name: "Normal",
  46268. height: math.unit(5 + 4/12, "feet"),
  46269. default: true
  46270. },
  46271. ]
  46272. ))
  46273. characterMakers.push(() => makeCharacter(
  46274. { name: "Terry", species: ["husky"], tags: ["taur"] },
  46275. {
  46276. side: {
  46277. height: math.unit(12, "feet"),
  46278. weight: math.unit(4000, "lb"),
  46279. name: "Side",
  46280. image: {
  46281. source: "./media/characters/terry/side.svg",
  46282. extra: 1518/1439,
  46283. bottom: 149/1667
  46284. }
  46285. },
  46286. },
  46287. [
  46288. {
  46289. name: "Normal",
  46290. height: math.unit(12, "feet"),
  46291. default: true
  46292. },
  46293. ]
  46294. ))
  46295. characterMakers.push(() => makeCharacter(
  46296. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  46297. {
  46298. front: {
  46299. height: math.unit(12, "feet"),
  46300. weight: math.unit(1500, "lb"),
  46301. name: "Front",
  46302. image: {
  46303. source: "./media/characters/kahea/front.svg",
  46304. extra: 1722/1617,
  46305. bottom: 179/1901
  46306. }
  46307. },
  46308. },
  46309. [
  46310. {
  46311. name: "Normal",
  46312. height: math.unit(12, "feet"),
  46313. default: true
  46314. },
  46315. ]
  46316. ))
  46317. characterMakers.push(() => makeCharacter(
  46318. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  46319. {
  46320. demonFront: {
  46321. height: math.unit(36, "feet"),
  46322. name: "Front",
  46323. image: {
  46324. source: "./media/characters/alex-xuria/demon-front.svg",
  46325. extra: 1705/1673,
  46326. bottom: 198/1903
  46327. },
  46328. form: "demon",
  46329. default: true
  46330. },
  46331. demonBack: {
  46332. height: math.unit(36, "feet"),
  46333. name: "Back",
  46334. image: {
  46335. source: "./media/characters/alex-xuria/demon-back.svg",
  46336. extra: 1725/1693,
  46337. bottom: 70/1795
  46338. },
  46339. form: "demon"
  46340. },
  46341. demonHead: {
  46342. height: math.unit(2.14, "meters"),
  46343. name: "Head",
  46344. image: {
  46345. source: "./media/characters/alex-xuria/demon-head.svg"
  46346. },
  46347. form: "demon"
  46348. },
  46349. demonHand: {
  46350. height: math.unit(1.61, "meters"),
  46351. name: "Hand",
  46352. image: {
  46353. source: "./media/characters/alex-xuria/demon-hand.svg"
  46354. },
  46355. form: "demon"
  46356. },
  46357. demonPaw: {
  46358. height: math.unit(1.35, "meters"),
  46359. name: "Paw",
  46360. image: {
  46361. source: "./media/characters/alex-xuria/demon-paw.svg"
  46362. },
  46363. form: "demon"
  46364. },
  46365. demonFoot: {
  46366. height: math.unit(2.2, "meters"),
  46367. name: "Foot",
  46368. image: {
  46369. source: "./media/characters/alex-xuria/demon-foot.svg"
  46370. },
  46371. form: "demon"
  46372. },
  46373. demonCock: {
  46374. height: math.unit(1.74, "meters"),
  46375. name: "Cock",
  46376. image: {
  46377. source: "./media/characters/alex-xuria/demon-cock.svg"
  46378. },
  46379. form: "demon"
  46380. },
  46381. demonTailClosed: {
  46382. height: math.unit(1.47, "meters"),
  46383. name: "Tail (Closed)",
  46384. image: {
  46385. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  46386. },
  46387. form: "demon"
  46388. },
  46389. demonTailOpen: {
  46390. height: math.unit(2.85, "meters"),
  46391. name: "Tail (Open)",
  46392. image: {
  46393. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  46394. },
  46395. form: "demon"
  46396. },
  46397. incubusFront: {
  46398. height: math.unit(12, "feet"),
  46399. name: "Front",
  46400. image: {
  46401. source: "./media/characters/alex-xuria/incubus-front.svg",
  46402. extra: 1754/1677,
  46403. bottom: 125/1879
  46404. },
  46405. form: "incubus",
  46406. default: true
  46407. },
  46408. incubusBack: {
  46409. height: math.unit(12, "feet"),
  46410. name: "Back",
  46411. image: {
  46412. source: "./media/characters/alex-xuria/incubus-back.svg",
  46413. extra: 1702/1647,
  46414. bottom: 30/1732
  46415. },
  46416. form: "incubus"
  46417. },
  46418. incubusHead: {
  46419. height: math.unit(3.45, "feet"),
  46420. name: "Head",
  46421. image: {
  46422. source: "./media/characters/alex-xuria/incubus-head.svg"
  46423. },
  46424. form: "incubus"
  46425. },
  46426. rabbitFront: {
  46427. height: math.unit(6, "feet"),
  46428. name: "Front",
  46429. image: {
  46430. source: "./media/characters/alex-xuria/rabbit-front.svg",
  46431. extra: 1369/1349,
  46432. bottom: 45/1414
  46433. },
  46434. form: "rabbit",
  46435. default: true
  46436. },
  46437. rabbitSide: {
  46438. height: math.unit(6, "feet"),
  46439. name: "Side",
  46440. image: {
  46441. source: "./media/characters/alex-xuria/rabbit-side.svg",
  46442. extra: 1370/1356,
  46443. bottom: 37/1407
  46444. },
  46445. form: "rabbit"
  46446. },
  46447. rabbitBack: {
  46448. height: math.unit(6, "feet"),
  46449. name: "Back",
  46450. image: {
  46451. source: "./media/characters/alex-xuria/rabbit-back.svg",
  46452. extra: 1375/1358,
  46453. bottom: 43/1418
  46454. },
  46455. form: "rabbit"
  46456. },
  46457. },
  46458. [
  46459. {
  46460. name: "Normal",
  46461. height: math.unit(6, "feet"),
  46462. default: true,
  46463. form: "rabbit"
  46464. },
  46465. {
  46466. name: "Incubus",
  46467. height: math.unit(12, "feet"),
  46468. default: true,
  46469. form: "incubus"
  46470. },
  46471. {
  46472. name: "Demon",
  46473. height: math.unit(36, "feet"),
  46474. default: true,
  46475. form: "demon"
  46476. }
  46477. ],
  46478. {
  46479. "demon": {
  46480. name: "Demon",
  46481. default: true
  46482. },
  46483. "incubus": {
  46484. name: "Incubus",
  46485. },
  46486. "rabbit": {
  46487. name: "Rabbit"
  46488. }
  46489. }
  46490. ))
  46491. characterMakers.push(() => makeCharacter(
  46492. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  46493. {
  46494. front: {
  46495. height: math.unit(7 + 5/12, "feet"),
  46496. weight: math.unit(510, "lb"),
  46497. name: "Front",
  46498. image: {
  46499. source: "./media/characters/syrup/front.svg",
  46500. extra: 932/916,
  46501. bottom: 26/958
  46502. }
  46503. },
  46504. },
  46505. [
  46506. {
  46507. name: "Normal",
  46508. height: math.unit(7 + 5/12, "feet"),
  46509. default: true
  46510. },
  46511. {
  46512. name: "Big",
  46513. height: math.unit(50, "feet")
  46514. },
  46515. {
  46516. name: "Macro",
  46517. height: math.unit(300, "feet")
  46518. },
  46519. {
  46520. name: "Megamacro",
  46521. height: math.unit(1, "mile")
  46522. },
  46523. ]
  46524. ))
  46525. characterMakers.push(() => makeCharacter(
  46526. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  46527. {
  46528. front: {
  46529. height: math.unit(6 + 9/12, "feet"),
  46530. name: "Front",
  46531. image: {
  46532. source: "./media/characters/zeimne/front.svg",
  46533. extra: 1969/1806,
  46534. bottom: 53/2022
  46535. }
  46536. },
  46537. },
  46538. [
  46539. {
  46540. name: "Normal",
  46541. height: math.unit(6 + 9/12, "feet"),
  46542. default: true
  46543. },
  46544. {
  46545. name: "Giant",
  46546. height: math.unit(550, "feet")
  46547. },
  46548. {
  46549. name: "Mega",
  46550. height: math.unit(3, "miles")
  46551. },
  46552. {
  46553. name: "Giga",
  46554. height: math.unit(250, "miles")
  46555. },
  46556. {
  46557. name: "Tera",
  46558. height: math.unit(1, "AU")
  46559. },
  46560. ]
  46561. ))
  46562. characterMakers.push(() => makeCharacter(
  46563. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  46564. {
  46565. front: {
  46566. height: math.unit(5 + 2/12, "feet"),
  46567. name: "Front",
  46568. image: {
  46569. source: "./media/characters/grar/front.svg",
  46570. extra: 1331/1119,
  46571. bottom: 60/1391
  46572. }
  46573. },
  46574. back: {
  46575. height: math.unit(5 + 2/12, "feet"),
  46576. name: "Back",
  46577. image: {
  46578. source: "./media/characters/grar/back.svg",
  46579. extra: 1385/1169,
  46580. bottom: 23/1408
  46581. }
  46582. },
  46583. },
  46584. [
  46585. {
  46586. name: "Normal",
  46587. height: math.unit(5 + 2/12, "feet"),
  46588. default: true
  46589. },
  46590. ]
  46591. ))
  46592. characterMakers.push(() => makeCharacter(
  46593. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  46594. {
  46595. front: {
  46596. height: math.unit(13 + 7/12, "feet"),
  46597. weight: math.unit(2200, "lb"),
  46598. name: "Front",
  46599. image: {
  46600. source: "./media/characters/endraya/front.svg",
  46601. extra: 1289/1215,
  46602. bottom: 50/1339
  46603. }
  46604. },
  46605. nude: {
  46606. height: math.unit(13 + 7/12, "feet"),
  46607. weight: math.unit(2200, "lb"),
  46608. name: "Nude",
  46609. image: {
  46610. source: "./media/characters/endraya/nude.svg",
  46611. extra: 1247/1171,
  46612. bottom: 40/1287
  46613. }
  46614. },
  46615. head: {
  46616. height: math.unit(2.6, "feet"),
  46617. name: "Head",
  46618. image: {
  46619. source: "./media/characters/endraya/head.svg"
  46620. }
  46621. },
  46622. slit: {
  46623. height: math.unit(3.4, "feet"),
  46624. name: "Slit",
  46625. image: {
  46626. source: "./media/characters/endraya/slit.svg"
  46627. }
  46628. },
  46629. },
  46630. [
  46631. {
  46632. name: "Normal",
  46633. height: math.unit(13 + 7/12, "feet"),
  46634. default: true
  46635. },
  46636. {
  46637. name: "Macro",
  46638. height: math.unit(200, "feet")
  46639. },
  46640. ]
  46641. ))
  46642. characterMakers.push(() => makeCharacter(
  46643. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  46644. {
  46645. front: {
  46646. height: math.unit(1.81, "meters"),
  46647. weight: math.unit(69, "kg"),
  46648. name: "Front",
  46649. image: {
  46650. source: "./media/characters/rodryana/front.svg",
  46651. extra: 2002/1921,
  46652. bottom: 53/2055
  46653. }
  46654. },
  46655. back: {
  46656. height: math.unit(1.81, "meters"),
  46657. weight: math.unit(69, "kg"),
  46658. name: "Back",
  46659. image: {
  46660. source: "./media/characters/rodryana/back.svg",
  46661. extra: 1993/1926,
  46662. bottom: 48/2041
  46663. }
  46664. },
  46665. maw: {
  46666. height: math.unit(0.19769417475, "meters"),
  46667. name: "Maw",
  46668. image: {
  46669. source: "./media/characters/rodryana/maw.svg"
  46670. }
  46671. },
  46672. slit: {
  46673. height: math.unit(0.31631067961, "meters"),
  46674. name: "Slit",
  46675. image: {
  46676. source: "./media/characters/rodryana/slit.svg"
  46677. }
  46678. },
  46679. },
  46680. [
  46681. {
  46682. name: "Normal",
  46683. height: math.unit(1.81, "meters")
  46684. },
  46685. {
  46686. name: "Mini Macro",
  46687. height: math.unit(181, "meters")
  46688. },
  46689. {
  46690. name: "Macro",
  46691. height: math.unit(452, "meters"),
  46692. default: true
  46693. },
  46694. {
  46695. name: "Mega Macro",
  46696. height: math.unit(1.375, "km")
  46697. },
  46698. {
  46699. name: "Giga Macro",
  46700. height: math.unit(13.575, "km")
  46701. },
  46702. ]
  46703. ))
  46704. characterMakers.push(() => makeCharacter(
  46705. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  46706. {
  46707. front: {
  46708. height: math.unit(6, "feet"),
  46709. weight: math.unit(1000, "lb"),
  46710. name: "Front",
  46711. image: {
  46712. source: "./media/characters/asaya/front.svg",
  46713. extra: 1460/1200,
  46714. bottom: 71/1531
  46715. }
  46716. },
  46717. },
  46718. [
  46719. {
  46720. name: "Normal",
  46721. height: math.unit(8, "km"),
  46722. default: true
  46723. },
  46724. ]
  46725. ))
  46726. characterMakers.push(() => makeCharacter(
  46727. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  46728. {
  46729. front: {
  46730. height: math.unit(3.5, "meters"),
  46731. name: "Front",
  46732. image: {
  46733. source: "./media/characters/sarzu-and-israz/front.svg",
  46734. extra: 1570/1558,
  46735. bottom: 150/1720
  46736. },
  46737. },
  46738. back: {
  46739. height: math.unit(3.5, "meters"),
  46740. name: "Back",
  46741. image: {
  46742. source: "./media/characters/sarzu-and-israz/back.svg",
  46743. extra: 1523/1509,
  46744. bottom: 132/1655
  46745. },
  46746. },
  46747. frontFemale: {
  46748. height: math.unit(3.5, "meters"),
  46749. name: "Front (Female)",
  46750. image: {
  46751. source: "./media/characters/sarzu-and-israz/front-female.svg",
  46752. extra: 1570/1558,
  46753. bottom: 150/1720
  46754. },
  46755. },
  46756. frontHerm: {
  46757. height: math.unit(3.5, "meters"),
  46758. name: "Front (Herm)",
  46759. image: {
  46760. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  46761. extra: 1570/1558,
  46762. bottom: 150/1720
  46763. },
  46764. },
  46765. },
  46766. [
  46767. {
  46768. name: "Normal",
  46769. height: math.unit(3.5, "meters"),
  46770. default: true,
  46771. },
  46772. {
  46773. name: "Macro",
  46774. height: math.unit(65.5, "meters"),
  46775. },
  46776. ],
  46777. ))
  46778. characterMakers.push(() => makeCharacter(
  46779. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  46780. {
  46781. front: {
  46782. height: math.unit(6, "feet"),
  46783. weight: math.unit(250, "lb"),
  46784. name: "Front",
  46785. image: {
  46786. source: "./media/characters/zenimma/front.svg",
  46787. extra: 1346/1320,
  46788. bottom: 58/1404
  46789. }
  46790. },
  46791. back: {
  46792. height: math.unit(6, "feet"),
  46793. weight: math.unit(250, "lb"),
  46794. name: "Back",
  46795. image: {
  46796. source: "./media/characters/zenimma/back.svg",
  46797. extra: 1324/1308,
  46798. bottom: 44/1368
  46799. }
  46800. },
  46801. dick: {
  46802. height: math.unit(1.44, "feet"),
  46803. name: "Dick",
  46804. image: {
  46805. source: "./media/characters/zenimma/dick.svg"
  46806. }
  46807. },
  46808. },
  46809. [
  46810. {
  46811. name: "Canon Height",
  46812. height: math.unit(66, "miles"),
  46813. default: true
  46814. },
  46815. ]
  46816. ))
  46817. characterMakers.push(() => makeCharacter(
  46818. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  46819. {
  46820. nude: {
  46821. height: math.unit(6, "feet"),
  46822. weight: math.unit(150, "lb"),
  46823. name: "Nude",
  46824. image: {
  46825. source: "./media/characters/shavon/nude.svg",
  46826. extra: 1242/1096,
  46827. bottom: 98/1340
  46828. }
  46829. },
  46830. dressed: {
  46831. height: math.unit(6, "feet"),
  46832. weight: math.unit(150, "lb"),
  46833. name: "Dressed",
  46834. image: {
  46835. source: "./media/characters/shavon/dressed.svg",
  46836. extra: 1242/1096,
  46837. bottom: 98/1340
  46838. }
  46839. },
  46840. },
  46841. [
  46842. {
  46843. name: "Macro",
  46844. height: math.unit(255, "feet"),
  46845. default: true
  46846. },
  46847. ]
  46848. ))
  46849. characterMakers.push(() => makeCharacter(
  46850. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  46851. {
  46852. front: {
  46853. height: math.unit(6, "feet"),
  46854. name: "Front",
  46855. image: {
  46856. source: "./media/characters/steph/front.svg",
  46857. extra: 1430/1330,
  46858. bottom: 54/1484
  46859. }
  46860. },
  46861. },
  46862. [
  46863. {
  46864. name: "Normal",
  46865. height: math.unit(6, "feet"),
  46866. default: true
  46867. },
  46868. ]
  46869. ))
  46870. characterMakers.push(() => makeCharacter(
  46871. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  46872. {
  46873. front: {
  46874. height: math.unit(9, "feet"),
  46875. weight: math.unit(400, "lb"),
  46876. name: "Front",
  46877. image: {
  46878. source: "./media/characters/kil'aman/front.svg",
  46879. extra: 1210/1159,
  46880. bottom: 109/1319
  46881. }
  46882. },
  46883. head: {
  46884. height: math.unit(2.14, "feet"),
  46885. name: "Head",
  46886. image: {
  46887. source: "./media/characters/kil'aman/head.svg"
  46888. }
  46889. },
  46890. maw: {
  46891. height: math.unit(1.21, "feet"),
  46892. name: "Maw",
  46893. image: {
  46894. source: "./media/characters/kil'aman/maw.svg"
  46895. }
  46896. },
  46897. foot: {
  46898. height: math.unit(1.7, "feet"),
  46899. name: "Foot",
  46900. image: {
  46901. source: "./media/characters/kil'aman/foot.svg"
  46902. }
  46903. },
  46904. dick: {
  46905. height: math.unit(2.1, "feet"),
  46906. name: "Dick",
  46907. image: {
  46908. source: "./media/characters/kil'aman/dick.svg"
  46909. }
  46910. },
  46911. },
  46912. [
  46913. {
  46914. name: "Normal",
  46915. height: math.unit(9, "feet")
  46916. },
  46917. {
  46918. name: "Canon Height",
  46919. height: math.unit(10, "miles"),
  46920. default: true
  46921. },
  46922. {
  46923. name: "Maximum",
  46924. height: math.unit(6e9, "miles")
  46925. },
  46926. ]
  46927. ))
  46928. characterMakers.push(() => makeCharacter(
  46929. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  46930. {
  46931. front: {
  46932. height: math.unit(90, "feet"),
  46933. weight: math.unit(675000, "lb"),
  46934. name: "Front",
  46935. image: {
  46936. source: "./media/characters/qadan/front.svg",
  46937. extra: 1012/1004,
  46938. bottom: 78/1090
  46939. }
  46940. },
  46941. back: {
  46942. height: math.unit(90, "feet"),
  46943. weight: math.unit(675000, "lb"),
  46944. name: "Back",
  46945. image: {
  46946. source: "./media/characters/qadan/back.svg",
  46947. extra: 1042/1031,
  46948. bottom: 55/1097
  46949. }
  46950. },
  46951. armored: {
  46952. height: math.unit(90, "feet"),
  46953. weight: math.unit(675000, "lb"),
  46954. name: "Armored",
  46955. image: {
  46956. source: "./media/characters/qadan/armored.svg",
  46957. extra: 1047/1037,
  46958. bottom: 48/1095
  46959. }
  46960. },
  46961. },
  46962. [
  46963. {
  46964. name: "Normal",
  46965. height: math.unit(90, "feet"),
  46966. default: true
  46967. },
  46968. ]
  46969. ))
  46970. characterMakers.push(() => makeCharacter(
  46971. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  46972. {
  46973. front: {
  46974. height: math.unit(6, "feet"),
  46975. weight: math.unit(225, "lb"),
  46976. name: "Front",
  46977. image: {
  46978. source: "./media/characters/brooke/front.svg",
  46979. extra: 1050/1010,
  46980. bottom: 66/1116
  46981. }
  46982. },
  46983. back: {
  46984. height: math.unit(6, "feet"),
  46985. weight: math.unit(225, "lb"),
  46986. name: "Back",
  46987. image: {
  46988. source: "./media/characters/brooke/back.svg",
  46989. extra: 1053/1013,
  46990. bottom: 41/1094
  46991. }
  46992. },
  46993. dressed: {
  46994. height: math.unit(6, "feet"),
  46995. weight: math.unit(225, "lb"),
  46996. name: "Dressed",
  46997. image: {
  46998. source: "./media/characters/brooke/dressed.svg",
  46999. extra: 1050/1010,
  47000. bottom: 66/1116
  47001. }
  47002. },
  47003. },
  47004. [
  47005. {
  47006. name: "Canon Height",
  47007. height: math.unit(500, "miles"),
  47008. default: true
  47009. },
  47010. ]
  47011. ))
  47012. characterMakers.push(() => makeCharacter(
  47013. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  47014. {
  47015. front: {
  47016. height: math.unit(6 + 2/12, "feet"),
  47017. weight: math.unit(210, "lb"),
  47018. name: "Front",
  47019. image: {
  47020. source: "./media/characters/wubs/front.svg",
  47021. extra: 1345/1325,
  47022. bottom: 70/1415
  47023. }
  47024. },
  47025. back: {
  47026. height: math.unit(6 + 2/12, "feet"),
  47027. weight: math.unit(210, "lb"),
  47028. name: "Back",
  47029. image: {
  47030. source: "./media/characters/wubs/back.svg",
  47031. extra: 1296/1275,
  47032. bottom: 58/1354
  47033. }
  47034. },
  47035. },
  47036. [
  47037. {
  47038. name: "Normal",
  47039. height: math.unit(6 + 2/12, "feet"),
  47040. default: true
  47041. },
  47042. {
  47043. name: "Macro",
  47044. height: math.unit(1000, "feet")
  47045. },
  47046. {
  47047. name: "Megamacro",
  47048. height: math.unit(1, "mile")
  47049. },
  47050. ]
  47051. ))
  47052. characterMakers.push(() => makeCharacter(
  47053. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  47054. {
  47055. front: {
  47056. height: math.unit(4, "feet"),
  47057. weight: math.unit(120, "lb"),
  47058. name: "Front",
  47059. image: {
  47060. source: "./media/characters/blue/front.svg",
  47061. extra: 1636/1525,
  47062. bottom: 43/1679
  47063. }
  47064. },
  47065. back: {
  47066. height: math.unit(4, "feet"),
  47067. weight: math.unit(120, "lb"),
  47068. name: "Back",
  47069. image: {
  47070. source: "./media/characters/blue/back.svg",
  47071. extra: 1660/1560,
  47072. bottom: 57/1717
  47073. }
  47074. },
  47075. paws: {
  47076. height: math.unit(0.826, "feet"),
  47077. name: "Paws",
  47078. image: {
  47079. source: "./media/characters/blue/paws.svg"
  47080. }
  47081. },
  47082. },
  47083. [
  47084. {
  47085. name: "Micro",
  47086. height: math.unit(3, "inches")
  47087. },
  47088. {
  47089. name: "Normal",
  47090. height: math.unit(4, "feet"),
  47091. default: true
  47092. },
  47093. {
  47094. name: "Femenine Form",
  47095. height: math.unit(14, "feet")
  47096. },
  47097. {
  47098. name: "Werebat Form",
  47099. height: math.unit(18, "feet")
  47100. },
  47101. ]
  47102. ))
  47103. characterMakers.push(() => makeCharacter(
  47104. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  47105. {
  47106. female: {
  47107. height: math.unit(7 + 4/12, "feet"),
  47108. weight: math.unit(243, "lb"),
  47109. name: "Female",
  47110. image: {
  47111. source: "./media/characters/kaya/female.svg",
  47112. extra: 975/898,
  47113. bottom: 34/1009
  47114. }
  47115. },
  47116. herm: {
  47117. height: math.unit(7 + 4/12, "feet"),
  47118. weight: math.unit(243, "lb"),
  47119. name: "Herm",
  47120. image: {
  47121. source: "./media/characters/kaya/herm.svg",
  47122. extra: 975/898,
  47123. bottom: 34/1009
  47124. }
  47125. },
  47126. },
  47127. [
  47128. {
  47129. name: "Normal",
  47130. height: math.unit(7 + 4/12, "feet"),
  47131. default: true
  47132. },
  47133. ]
  47134. ))
  47135. characterMakers.push(() => makeCharacter(
  47136. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  47137. {
  47138. female: {
  47139. height: math.unit(9 + 4/12, "feet"),
  47140. weight: math.unit(398, "lb"),
  47141. name: "Female",
  47142. image: {
  47143. source: "./media/characters/kassandra/female.svg",
  47144. extra: 908/839,
  47145. bottom: 61/969
  47146. }
  47147. },
  47148. intersex: {
  47149. height: math.unit(9 + 4/12, "feet"),
  47150. weight: math.unit(398, "lb"),
  47151. name: "Intersex",
  47152. image: {
  47153. source: "./media/characters/kassandra/intersex.svg",
  47154. extra: 908/839,
  47155. bottom: 61/969
  47156. }
  47157. },
  47158. },
  47159. [
  47160. {
  47161. name: "Normal",
  47162. height: math.unit(9 + 4/12, "feet"),
  47163. default: true
  47164. },
  47165. ]
  47166. ))
  47167. characterMakers.push(() => makeCharacter(
  47168. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  47169. {
  47170. front: {
  47171. height: math.unit(3, "meters"),
  47172. name: "Front",
  47173. image: {
  47174. source: "./media/characters/amy/front.svg",
  47175. extra: 1380/1343,
  47176. bottom: 70/1450
  47177. }
  47178. },
  47179. back: {
  47180. height: math.unit(3, "meters"),
  47181. name: "Back",
  47182. image: {
  47183. source: "./media/characters/amy/back.svg",
  47184. extra: 1380/1347,
  47185. bottom: 66/1446
  47186. }
  47187. },
  47188. },
  47189. [
  47190. {
  47191. name: "Normal",
  47192. height: math.unit(3, "meters"),
  47193. default: true
  47194. },
  47195. ]
  47196. ))
  47197. characterMakers.push(() => makeCharacter(
  47198. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  47199. {
  47200. side: {
  47201. height: math.unit(47, "cm"),
  47202. weight: math.unit(10.8, "kg"),
  47203. name: "Side",
  47204. image: {
  47205. source: "./media/characters/alphaschakal/side.svg",
  47206. extra: 1058/568,
  47207. bottom: 62/1120
  47208. }
  47209. },
  47210. back: {
  47211. height: math.unit(78, "cm"),
  47212. weight: math.unit(10.8, "kg"),
  47213. name: "Back",
  47214. image: {
  47215. source: "./media/characters/alphaschakal/back.svg",
  47216. extra: 1102/942,
  47217. bottom: 185/1287
  47218. }
  47219. },
  47220. head: {
  47221. height: math.unit(28, "cm"),
  47222. name: "Head",
  47223. image: {
  47224. source: "./media/characters/alphaschakal/head.svg",
  47225. extra: 696/508,
  47226. bottom: 0/696
  47227. }
  47228. },
  47229. paw: {
  47230. height: math.unit(16, "cm"),
  47231. name: "Paw",
  47232. image: {
  47233. source: "./media/characters/alphaschakal/paw.svg"
  47234. }
  47235. },
  47236. },
  47237. [
  47238. {
  47239. name: "Normal",
  47240. height: math.unit(47, "cm"),
  47241. default: true
  47242. },
  47243. {
  47244. name: "Macro",
  47245. height: math.unit(340, "cm")
  47246. },
  47247. ]
  47248. ))
  47249. characterMakers.push(() => makeCharacter(
  47250. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  47251. {
  47252. front: {
  47253. height: math.unit(36, "earths"),
  47254. name: "Front",
  47255. image: {
  47256. source: "./media/characters/ecobyss/front.svg",
  47257. extra: 1282/1215,
  47258. bottom: 11/1293
  47259. }
  47260. },
  47261. back: {
  47262. height: math.unit(36, "earths"),
  47263. name: "Back",
  47264. image: {
  47265. source: "./media/characters/ecobyss/back.svg",
  47266. extra: 1291/1222,
  47267. bottom: 8/1299
  47268. }
  47269. },
  47270. },
  47271. [
  47272. {
  47273. name: "Normal",
  47274. height: math.unit(36, "earths"),
  47275. default: true
  47276. },
  47277. ]
  47278. ))
  47279. characterMakers.push(() => makeCharacter(
  47280. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  47281. {
  47282. front: {
  47283. height: math.unit(12, "feet"),
  47284. name: "Front",
  47285. image: {
  47286. source: "./media/characters/vasuk/front.svg",
  47287. extra: 1326/1207,
  47288. bottom: 64/1390
  47289. }
  47290. },
  47291. },
  47292. [
  47293. {
  47294. name: "Normal",
  47295. height: math.unit(12, "feet"),
  47296. default: true
  47297. },
  47298. ]
  47299. ))
  47300. characterMakers.push(() => makeCharacter(
  47301. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  47302. {
  47303. side: {
  47304. height: math.unit(100, "feet"),
  47305. name: "Side",
  47306. image: {
  47307. source: "./media/characters/linneaus/side.svg",
  47308. extra: 987/807,
  47309. bottom: 47/1034
  47310. }
  47311. },
  47312. },
  47313. [
  47314. {
  47315. name: "Macro",
  47316. height: math.unit(100, "feet"),
  47317. default: true
  47318. },
  47319. ]
  47320. ))
  47321. characterMakers.push(() => makeCharacter(
  47322. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  47323. {
  47324. front: {
  47325. height: math.unit(8, "feet"),
  47326. weight: math.unit(1200, "lb"),
  47327. name: "Front",
  47328. image: {
  47329. source: "./media/characters/nyterious-daligdig/front.svg",
  47330. extra: 1284/1094,
  47331. bottom: 84/1368
  47332. }
  47333. },
  47334. back: {
  47335. height: math.unit(8, "feet"),
  47336. weight: math.unit(1200, "lb"),
  47337. name: "Back",
  47338. image: {
  47339. source: "./media/characters/nyterious-daligdig/back.svg",
  47340. extra: 1301/1121,
  47341. bottom: 129/1430
  47342. }
  47343. },
  47344. mouth: {
  47345. height: math.unit(1.464, "feet"),
  47346. name: "Mouth",
  47347. image: {
  47348. source: "./media/characters/nyterious-daligdig/mouth.svg"
  47349. }
  47350. },
  47351. },
  47352. [
  47353. {
  47354. name: "Small",
  47355. height: math.unit(8, "feet"),
  47356. default: true
  47357. },
  47358. {
  47359. name: "Normal",
  47360. height: math.unit(15, "feet")
  47361. },
  47362. {
  47363. name: "Macro",
  47364. height: math.unit(90, "feet")
  47365. },
  47366. ]
  47367. ))
  47368. characterMakers.push(() => makeCharacter(
  47369. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  47370. {
  47371. front: {
  47372. height: math.unit(7 + 4/12, "feet"),
  47373. weight: math.unit(252, "lb"),
  47374. name: "Front",
  47375. image: {
  47376. source: "./media/characters/bandel/front.svg",
  47377. extra: 1946/1775,
  47378. bottom: 26/1972
  47379. }
  47380. },
  47381. back: {
  47382. height: math.unit(7 + 4/12, "feet"),
  47383. weight: math.unit(252, "lb"),
  47384. name: "Back",
  47385. image: {
  47386. source: "./media/characters/bandel/back.svg",
  47387. extra: 1940/1770,
  47388. bottom: 25/1965
  47389. }
  47390. },
  47391. maw: {
  47392. height: math.unit(2.15, "feet"),
  47393. name: "Maw",
  47394. image: {
  47395. source: "./media/characters/bandel/maw.svg"
  47396. }
  47397. },
  47398. stomach: {
  47399. height: math.unit(1.95, "feet"),
  47400. name: "Stomach",
  47401. image: {
  47402. source: "./media/characters/bandel/stomach.svg"
  47403. }
  47404. },
  47405. },
  47406. [
  47407. {
  47408. name: "Normal",
  47409. height: math.unit(7 + 4/12, "feet"),
  47410. default: true
  47411. },
  47412. ]
  47413. ))
  47414. characterMakers.push(() => makeCharacter(
  47415. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  47416. {
  47417. front: {
  47418. height: math.unit(10 + 5/12, "feet"),
  47419. weight: math.unit(773.5, "kg"),
  47420. name: "Front",
  47421. image: {
  47422. source: "./media/characters/zed/front.svg",
  47423. extra: 987/941,
  47424. bottom: 52/1039
  47425. }
  47426. },
  47427. },
  47428. [
  47429. {
  47430. name: "Short",
  47431. height: math.unit(5 + 4/12, "feet")
  47432. },
  47433. {
  47434. name: "Average",
  47435. height: math.unit(10 + 5/12, "feet"),
  47436. default: true
  47437. },
  47438. {
  47439. name: "Mini-Macro",
  47440. height: math.unit(24 + 9/12, "feet")
  47441. },
  47442. {
  47443. name: "Macro",
  47444. height: math.unit(249, "feet")
  47445. },
  47446. {
  47447. name: "Mega-Macro",
  47448. height: math.unit(12490, "feet")
  47449. },
  47450. {
  47451. name: "Giga-Macro",
  47452. height: math.unit(24.9, "miles")
  47453. },
  47454. {
  47455. name: "Tera-Macro",
  47456. height: math.unit(24900, "miles")
  47457. },
  47458. {
  47459. name: "Cosmic Scale",
  47460. height: math.unit(38.9, "lightyears")
  47461. },
  47462. {
  47463. name: "Universal Scale",
  47464. height: math.unit(138e12, "lightyears")
  47465. },
  47466. ]
  47467. ))
  47468. characterMakers.push(() => makeCharacter(
  47469. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  47470. {
  47471. front: {
  47472. height: math.unit(1561, "inches"),
  47473. name: "Front",
  47474. image: {
  47475. source: "./media/characters/ivan/front.svg",
  47476. extra: 1126/1071,
  47477. bottom: 26/1152
  47478. }
  47479. },
  47480. back: {
  47481. height: math.unit(1561, "inches"),
  47482. name: "Back",
  47483. image: {
  47484. source: "./media/characters/ivan/back.svg",
  47485. extra: 1134/1079,
  47486. bottom: 30/1164
  47487. }
  47488. },
  47489. },
  47490. [
  47491. {
  47492. name: "Normal",
  47493. height: math.unit(1561, "inches"),
  47494. default: true
  47495. },
  47496. ]
  47497. ))
  47498. characterMakers.push(() => makeCharacter(
  47499. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  47500. {
  47501. front: {
  47502. height: math.unit(5 + 7/12, "feet"),
  47503. weight: math.unit(150, "lb"),
  47504. name: "Front",
  47505. image: {
  47506. source: "./media/characters/robin-arctic-hare/front.svg",
  47507. extra: 1148/974,
  47508. bottom: 20/1168
  47509. }
  47510. },
  47511. },
  47512. [
  47513. {
  47514. name: "Normal",
  47515. height: math.unit(5 + 7/12, "feet"),
  47516. default: true
  47517. },
  47518. ]
  47519. ))
  47520. characterMakers.push(() => makeCharacter(
  47521. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  47522. {
  47523. side: {
  47524. height: math.unit(5, "feet"),
  47525. name: "Side",
  47526. image: {
  47527. source: "./media/characters/birch/side.svg",
  47528. extra: 985/796,
  47529. bottom: 111/1096
  47530. }
  47531. },
  47532. },
  47533. [
  47534. {
  47535. name: "Normal",
  47536. height: math.unit(5, "feet"),
  47537. default: true
  47538. },
  47539. ]
  47540. ))
  47541. characterMakers.push(() => makeCharacter(
  47542. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  47543. {
  47544. front: {
  47545. height: math.unit(4, "feet"),
  47546. name: "Front",
  47547. image: {
  47548. source: "./media/characters/rasp/front.svg",
  47549. extra: 561/478,
  47550. bottom: 74/635
  47551. }
  47552. },
  47553. },
  47554. [
  47555. {
  47556. name: "Normal",
  47557. height: math.unit(4, "feet"),
  47558. default: true
  47559. },
  47560. ]
  47561. ))
  47562. characterMakers.push(() => makeCharacter(
  47563. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  47564. {
  47565. front: {
  47566. height: math.unit(4 + 6/12, "feet"),
  47567. name: "Front",
  47568. image: {
  47569. source: "./media/characters/agatha/front.svg",
  47570. extra: 947/933,
  47571. bottom: 42/989
  47572. }
  47573. },
  47574. back: {
  47575. height: math.unit(4 + 6/12, "feet"),
  47576. name: "Back",
  47577. image: {
  47578. source: "./media/characters/agatha/back.svg",
  47579. extra: 935/922,
  47580. bottom: 48/983
  47581. }
  47582. },
  47583. },
  47584. [
  47585. {
  47586. name: "Normal",
  47587. height: math.unit(4 + 6 /12, "feet"),
  47588. default: true
  47589. },
  47590. {
  47591. name: "Max Size",
  47592. height: math.unit(500, "feet")
  47593. },
  47594. ]
  47595. ))
  47596. characterMakers.push(() => makeCharacter(
  47597. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  47598. {
  47599. side: {
  47600. height: math.unit(30, "feet"),
  47601. name: "Side",
  47602. image: {
  47603. source: "./media/characters/roggy/side.svg",
  47604. extra: 909/643,
  47605. bottom: 63/972
  47606. }
  47607. },
  47608. lounging: {
  47609. height: math.unit(20, "feet"),
  47610. name: "Lounging",
  47611. image: {
  47612. source: "./media/characters/roggy/lounging.svg",
  47613. extra: 643/479,
  47614. bottom: 145/788
  47615. }
  47616. },
  47617. handpaw: {
  47618. height: math.unit(13.1, "feet"),
  47619. name: "Handpaw",
  47620. image: {
  47621. source: "./media/characters/roggy/handpaw.svg"
  47622. }
  47623. },
  47624. footpaw: {
  47625. height: math.unit(15.8, "feet"),
  47626. name: "Footpaw",
  47627. image: {
  47628. source: "./media/characters/roggy/footpaw.svg"
  47629. }
  47630. },
  47631. },
  47632. [
  47633. {
  47634. name: "Menacing",
  47635. height: math.unit(30, "feet"),
  47636. default: true
  47637. },
  47638. ]
  47639. ))
  47640. characterMakers.push(() => makeCharacter(
  47641. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  47642. {
  47643. front: {
  47644. height: math.unit(5 + 7/12, "feet"),
  47645. weight: math.unit(135, "lb"),
  47646. name: "Front",
  47647. image: {
  47648. source: "./media/characters/naomi/front.svg",
  47649. extra: 1209/1154,
  47650. bottom: 129/1338
  47651. }
  47652. },
  47653. back: {
  47654. height: math.unit(5 + 7/12, "feet"),
  47655. weight: math.unit(135, "lb"),
  47656. name: "Back",
  47657. image: {
  47658. source: "./media/characters/naomi/back.svg",
  47659. extra: 1252/1190,
  47660. bottom: 23/1275
  47661. }
  47662. },
  47663. },
  47664. [
  47665. {
  47666. name: "Normal",
  47667. height: math.unit(5 + 7 /12, "feet"),
  47668. default: true
  47669. },
  47670. ]
  47671. ))
  47672. characterMakers.push(() => makeCharacter(
  47673. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  47674. {
  47675. side: {
  47676. height: math.unit(35, "meters"),
  47677. name: "Side",
  47678. image: {
  47679. source: "./media/characters/kimpi/side.svg",
  47680. extra: 419/382,
  47681. bottom: 63/482
  47682. }
  47683. },
  47684. hand: {
  47685. height: math.unit(8.96, "meters"),
  47686. name: "Hand",
  47687. image: {
  47688. source: "./media/characters/kimpi/hand.svg"
  47689. }
  47690. },
  47691. },
  47692. [
  47693. {
  47694. name: "Normal",
  47695. height: math.unit(35, "meters"),
  47696. default: true
  47697. },
  47698. ]
  47699. ))
  47700. characterMakers.push(() => makeCharacter(
  47701. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  47702. {
  47703. front: {
  47704. height: math.unit(4 + 4/12, "feet"),
  47705. name: "Front",
  47706. image: {
  47707. source: "./media/characters/pepper-purrloin/front.svg",
  47708. extra: 1141/1024,
  47709. bottom: 21/1162
  47710. }
  47711. },
  47712. },
  47713. [
  47714. {
  47715. name: "Normal",
  47716. height: math.unit(4 + 4/12, "feet"),
  47717. default: true
  47718. },
  47719. ]
  47720. ))
  47721. characterMakers.push(() => makeCharacter(
  47722. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  47723. {
  47724. front: {
  47725. height: math.unit(6 + 2/12, "feet"),
  47726. name: "Front",
  47727. image: {
  47728. source: "./media/characters/raphael/front.svg",
  47729. extra: 1101/962,
  47730. bottom: 59/1160
  47731. }
  47732. },
  47733. },
  47734. [
  47735. {
  47736. name: "Normal",
  47737. height: math.unit(6 + 2/12, "feet"),
  47738. default: true
  47739. },
  47740. ]
  47741. ))
  47742. characterMakers.push(() => makeCharacter(
  47743. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  47744. {
  47745. front: {
  47746. height: math.unit(6, "feet"),
  47747. weight: math.unit(150, "lb"),
  47748. name: "Front",
  47749. image: {
  47750. source: "./media/characters/victor-williams/front.svg",
  47751. extra: 1894/1825,
  47752. bottom: 67/1961
  47753. }
  47754. },
  47755. },
  47756. [
  47757. {
  47758. name: "Normal",
  47759. height: math.unit(6, "feet"),
  47760. default: true
  47761. },
  47762. ]
  47763. ))
  47764. characterMakers.push(() => makeCharacter(
  47765. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  47766. {
  47767. front: {
  47768. height: math.unit(5 + 8/12, "feet"),
  47769. weight: math.unit(150, "lb"),
  47770. name: "Front",
  47771. image: {
  47772. source: "./media/characters/rachel/front.svg",
  47773. extra: 1902/1787,
  47774. bottom: 46/1948
  47775. }
  47776. },
  47777. },
  47778. [
  47779. {
  47780. name: "Base Height",
  47781. height: math.unit(5 + 8/12, "feet"),
  47782. default: true
  47783. },
  47784. {
  47785. name: "Macro",
  47786. height: math.unit(200, "feet")
  47787. },
  47788. {
  47789. name: "Mega Macro",
  47790. height: math.unit(1, "mile")
  47791. },
  47792. {
  47793. name: "Giga Macro",
  47794. height: math.unit(1500, "miles")
  47795. },
  47796. {
  47797. name: "Tera Macro",
  47798. height: math.unit(8000, "miles")
  47799. },
  47800. {
  47801. name: "Tera Macro+",
  47802. height: math.unit(2e5, "miles")
  47803. },
  47804. ]
  47805. ))
  47806. characterMakers.push(() => makeCharacter(
  47807. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  47808. {
  47809. front: {
  47810. height: math.unit(6.5, "feet"),
  47811. name: "Front",
  47812. image: {
  47813. source: "./media/characters/svetlana-rozovskaya/front.svg",
  47814. extra: 860/819,
  47815. bottom: 307/1167
  47816. }
  47817. },
  47818. back: {
  47819. height: math.unit(6.5, "feet"),
  47820. name: "Back",
  47821. image: {
  47822. source: "./media/characters/svetlana-rozovskaya/back.svg",
  47823. extra: 880/837,
  47824. bottom: 395/1275
  47825. }
  47826. },
  47827. sleeping: {
  47828. height: math.unit(2.79, "feet"),
  47829. name: "Sleeping",
  47830. image: {
  47831. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  47832. extra: 465/383,
  47833. bottom: 263/728
  47834. }
  47835. },
  47836. maw: {
  47837. height: math.unit(2.52, "feet"),
  47838. name: "Maw",
  47839. image: {
  47840. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  47841. }
  47842. },
  47843. },
  47844. [
  47845. {
  47846. name: "Normal",
  47847. height: math.unit(6.5, "feet"),
  47848. default: true
  47849. },
  47850. ]
  47851. ))
  47852. characterMakers.push(() => makeCharacter(
  47853. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  47854. {
  47855. front: {
  47856. height: math.unit(5, "feet"),
  47857. name: "Front",
  47858. image: {
  47859. source: "./media/characters/nova-nerium/front.svg",
  47860. extra: 1548/1392,
  47861. bottom: 374/1922
  47862. }
  47863. },
  47864. back: {
  47865. height: math.unit(5, "feet"),
  47866. name: "Back",
  47867. image: {
  47868. source: "./media/characters/nova-nerium/back.svg",
  47869. extra: 1658/1468,
  47870. bottom: 257/1915
  47871. }
  47872. },
  47873. },
  47874. [
  47875. {
  47876. name: "Normal",
  47877. height: math.unit(5, "feet"),
  47878. default: true
  47879. },
  47880. ]
  47881. ))
  47882. characterMakers.push(() => makeCharacter(
  47883. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  47884. {
  47885. front: {
  47886. height: math.unit(5 + 4/12, "feet"),
  47887. name: "Front",
  47888. image: {
  47889. source: "./media/characters/ashe-pyriph/front.svg",
  47890. extra: 1935/1747,
  47891. bottom: 60/1995
  47892. }
  47893. },
  47894. },
  47895. [
  47896. {
  47897. name: "Normal",
  47898. height: math.unit(5 + 4/12, "feet"),
  47899. default: true
  47900. },
  47901. ]
  47902. ))
  47903. characterMakers.push(() => makeCharacter(
  47904. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  47905. {
  47906. front: {
  47907. height: math.unit(8.7, "feet"),
  47908. name: "Front",
  47909. image: {
  47910. source: "./media/characters/flicker-wisp/front.svg",
  47911. extra: 1835/1613,
  47912. bottom: 449/2284
  47913. }
  47914. },
  47915. side: {
  47916. height: math.unit(8.7, "feet"),
  47917. name: "Side",
  47918. image: {
  47919. source: "./media/characters/flicker-wisp/side.svg",
  47920. extra: 1841/1642,
  47921. bottom: 336/2177
  47922. },
  47923. default: true
  47924. },
  47925. maw: {
  47926. height: math.unit(3.35, "feet"),
  47927. name: "Maw",
  47928. image: {
  47929. source: "./media/characters/flicker-wisp/maw.svg",
  47930. extra: 2338/1506,
  47931. bottom: 0/2338
  47932. }
  47933. },
  47934. ovipositor: {
  47935. height: math.unit(4.95, "feet"),
  47936. name: "Ovipositor",
  47937. image: {
  47938. source: "./media/characters/flicker-wisp/ovipositor.svg"
  47939. }
  47940. },
  47941. egg: {
  47942. height: math.unit(0.385, "feet"),
  47943. weight: math.unit(2, "lb"),
  47944. name: "Egg",
  47945. image: {
  47946. source: "./media/characters/flicker-wisp/egg.svg"
  47947. }
  47948. },
  47949. },
  47950. [
  47951. {
  47952. name: "Normal",
  47953. height: math.unit(8.7, "feet"),
  47954. default: true
  47955. },
  47956. ]
  47957. ))
  47958. characterMakers.push(() => makeCharacter(
  47959. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  47960. {
  47961. side: {
  47962. height: math.unit(11, "feet"),
  47963. name: "Side",
  47964. image: {
  47965. source: "./media/characters/faefnul/side.svg",
  47966. extra: 1100/1007,
  47967. bottom: 0/1100
  47968. }
  47969. },
  47970. },
  47971. [
  47972. {
  47973. name: "Normal",
  47974. height: math.unit(11, "feet"),
  47975. default: true
  47976. },
  47977. ]
  47978. ))
  47979. characterMakers.push(() => makeCharacter(
  47980. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  47981. {
  47982. front: {
  47983. height: math.unit(6 + 2/12, "feet"),
  47984. name: "Front",
  47985. image: {
  47986. source: "./media/characters/shady/front.svg",
  47987. extra: 502/461,
  47988. bottom: 9/511
  47989. }
  47990. },
  47991. kneeling: {
  47992. height: math.unit(4.6, "feet"),
  47993. name: "Kneeling",
  47994. image: {
  47995. source: "./media/characters/shady/kneeling.svg",
  47996. extra: 1328/1219,
  47997. bottom: 117/1445
  47998. }
  47999. },
  48000. maw: {
  48001. height: math.unit(2, "feet"),
  48002. name: "Maw",
  48003. image: {
  48004. source: "./media/characters/shady/maw.svg"
  48005. }
  48006. },
  48007. },
  48008. [
  48009. {
  48010. name: "Nano",
  48011. height: math.unit(1, "mm")
  48012. },
  48013. {
  48014. name: "Micro",
  48015. height: math.unit(12, "mm")
  48016. },
  48017. {
  48018. name: "Tiny",
  48019. height: math.unit(3, "inches")
  48020. },
  48021. {
  48022. name: "Normal",
  48023. height: math.unit(6 + 2/12, "feet"),
  48024. default: true
  48025. },
  48026. {
  48027. name: "Big",
  48028. height: math.unit(15, "feet")
  48029. },
  48030. {
  48031. name: "Macro",
  48032. height: math.unit(150, "feet")
  48033. },
  48034. {
  48035. name: "Titanic",
  48036. height: math.unit(500, "feet")
  48037. },
  48038. ]
  48039. ))
  48040. characterMakers.push(() => makeCharacter(
  48041. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  48042. {
  48043. front: {
  48044. height: math.unit(12, "feet"),
  48045. name: "Front",
  48046. image: {
  48047. source: "./media/characters/fenrir/front.svg",
  48048. extra: 968/875,
  48049. bottom: 22/990
  48050. }
  48051. },
  48052. },
  48053. [
  48054. {
  48055. name: "Big",
  48056. height: math.unit(12, "feet"),
  48057. default: true
  48058. },
  48059. ]
  48060. ))
  48061. characterMakers.push(() => makeCharacter(
  48062. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  48063. {
  48064. front: {
  48065. height: math.unit(5 + 4/12, "feet"),
  48066. name: "Front",
  48067. image: {
  48068. source: "./media/characters/makar/front.svg",
  48069. extra: 1181/1112,
  48070. bottom: 78/1259
  48071. }
  48072. },
  48073. },
  48074. [
  48075. {
  48076. name: "Normal",
  48077. height: math.unit(5 + 4/12, "feet"),
  48078. default: true
  48079. },
  48080. ]
  48081. ))
  48082. characterMakers.push(() => makeCharacter(
  48083. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  48084. {
  48085. front: {
  48086. height: math.unit(5 + 7/12, "feet"),
  48087. name: "Front",
  48088. image: {
  48089. source: "./media/characters/callow/front.svg",
  48090. extra: 1482/1304,
  48091. bottom: 23/1505
  48092. }
  48093. },
  48094. back: {
  48095. height: math.unit(5 + 7/12, "feet"),
  48096. name: "Back",
  48097. image: {
  48098. source: "./media/characters/callow/back.svg",
  48099. extra: 1484/1296,
  48100. bottom: 25/1509
  48101. }
  48102. },
  48103. },
  48104. [
  48105. {
  48106. name: "Micro",
  48107. height: math.unit(3, "inches"),
  48108. default: true
  48109. },
  48110. {
  48111. name: "Normal",
  48112. height: math.unit(5 + 7/12, "feet")
  48113. },
  48114. ]
  48115. ))
  48116. characterMakers.push(() => makeCharacter(
  48117. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  48118. {
  48119. front: {
  48120. height: math.unit(6 + 2/12, "feet"),
  48121. name: "Front",
  48122. image: {
  48123. source: "./media/characters/natel/front.svg",
  48124. extra: 1833/1692,
  48125. bottom: 166/1999
  48126. }
  48127. },
  48128. },
  48129. [
  48130. {
  48131. name: "Normal",
  48132. height: math.unit(6 + 2/12, "feet"),
  48133. default: true
  48134. },
  48135. ]
  48136. ))
  48137. characterMakers.push(() => makeCharacter(
  48138. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  48139. {
  48140. front: {
  48141. height: math.unit(1.75, "meters"),
  48142. name: "Front",
  48143. image: {
  48144. source: "./media/characters/misu/front.svg",
  48145. extra: 1690/1558,
  48146. bottom: 234/1924
  48147. }
  48148. },
  48149. back: {
  48150. height: math.unit(1.75, "meters"),
  48151. name: "Back",
  48152. image: {
  48153. source: "./media/characters/misu/back.svg",
  48154. extra: 1762/1618,
  48155. bottom: 146/1908
  48156. }
  48157. },
  48158. frontNude: {
  48159. height: math.unit(1.75, "meters"),
  48160. name: "Front (Nude)",
  48161. image: {
  48162. source: "./media/characters/misu/front-nude.svg",
  48163. extra: 1690/1558,
  48164. bottom: 234/1924
  48165. }
  48166. },
  48167. backNude: {
  48168. height: math.unit(1.75, "meters"),
  48169. name: "Back (Nude)",
  48170. image: {
  48171. source: "./media/characters/misu/back-nude.svg",
  48172. extra: 1762/1618,
  48173. bottom: 146/1908
  48174. }
  48175. },
  48176. frontErect: {
  48177. height: math.unit(1.75, "meters"),
  48178. name: "Front (Erect)",
  48179. image: {
  48180. source: "./media/characters/misu/front-erect.svg",
  48181. extra: 1690/1558,
  48182. bottom: 234/1924
  48183. }
  48184. },
  48185. maw: {
  48186. height: math.unit(0.47, "meters"),
  48187. name: "Maw",
  48188. image: {
  48189. source: "./media/characters/misu/maw.svg"
  48190. }
  48191. },
  48192. head: {
  48193. height: math.unit(0.35, "meters"),
  48194. name: "Head",
  48195. image: {
  48196. source: "./media/characters/misu/head.svg"
  48197. }
  48198. },
  48199. rear: {
  48200. height: math.unit(0.47, "meters"),
  48201. name: "Rear",
  48202. image: {
  48203. source: "./media/characters/misu/rear.svg"
  48204. }
  48205. },
  48206. },
  48207. [
  48208. {
  48209. name: "Normal",
  48210. height: math.unit(1.75, "meters")
  48211. },
  48212. {
  48213. name: "Not good for the people",
  48214. height: math.unit(42, "meters")
  48215. },
  48216. {
  48217. name: "Not good for the neighborhood",
  48218. height: math.unit(135, "meters")
  48219. },
  48220. {
  48221. name: "Bit bigger problem",
  48222. height: math.unit(380, "meters"),
  48223. default: true
  48224. },
  48225. {
  48226. name: "Not good for the city",
  48227. height: math.unit(1.5, "km")
  48228. },
  48229. {
  48230. name: "Not good for the county",
  48231. height: math.unit(5.5, "km")
  48232. },
  48233. {
  48234. name: "Not good for the state",
  48235. height: math.unit(25, "km")
  48236. },
  48237. {
  48238. name: "Not good for the country",
  48239. height: math.unit(125, "km")
  48240. },
  48241. {
  48242. name: "Not good for the continent",
  48243. height: math.unit(2100, "km")
  48244. },
  48245. {
  48246. name: "Not good for the planet",
  48247. height: math.unit(35000, "km")
  48248. },
  48249. {
  48250. name: "Just no",
  48251. height: math.unit(8.5e18, "km")
  48252. },
  48253. ]
  48254. ))
  48255. characterMakers.push(() => makeCharacter(
  48256. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  48257. {
  48258. front: {
  48259. height: math.unit(6.5, "feet"),
  48260. name: "Front",
  48261. image: {
  48262. source: "./media/characters/poppy/front.svg",
  48263. extra: 1878/1812,
  48264. bottom: 43/1921
  48265. }
  48266. },
  48267. feet: {
  48268. height: math.unit(1.06, "feet"),
  48269. name: "Feet",
  48270. image: {
  48271. source: "./media/characters/poppy/feet.svg",
  48272. extra: 1083/1083,
  48273. bottom: 87/1170
  48274. }
  48275. },
  48276. },
  48277. [
  48278. {
  48279. name: "Human",
  48280. height: math.unit(6.5, "feet")
  48281. },
  48282. {
  48283. name: "Default",
  48284. height: math.unit(300, "feet"),
  48285. default: true
  48286. },
  48287. {
  48288. name: "Huge",
  48289. height: math.unit(850, "feet")
  48290. },
  48291. {
  48292. name: "Mega",
  48293. height: math.unit(8000, "feet")
  48294. },
  48295. {
  48296. name: "Giga",
  48297. height: math.unit(300, "miles")
  48298. },
  48299. ]
  48300. ))
  48301. characterMakers.push(() => makeCharacter(
  48302. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  48303. {
  48304. bipedal: {
  48305. height: math.unit(7, "feet"),
  48306. name: "Bipedal",
  48307. image: {
  48308. source: "./media/characters/zener/bipedal.svg",
  48309. extra: 874/805,
  48310. bottom: 109/983
  48311. }
  48312. },
  48313. quadrupedal: {
  48314. height: math.unit(4.64, "feet"),
  48315. name: "Quadrupedal",
  48316. image: {
  48317. source: "./media/characters/zener/quadrupedal.svg",
  48318. extra: 638/507,
  48319. bottom: 190/828
  48320. }
  48321. },
  48322. cock: {
  48323. height: math.unit(18, "inches"),
  48324. name: "Cock",
  48325. image: {
  48326. source: "./media/characters/zener/cock.svg"
  48327. }
  48328. },
  48329. },
  48330. [
  48331. {
  48332. name: "Normal",
  48333. height: math.unit(7, "feet"),
  48334. default: true
  48335. },
  48336. ]
  48337. ))
  48338. characterMakers.push(() => makeCharacter(
  48339. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  48340. {
  48341. nude: {
  48342. height: math.unit(5 + 6/12, "feet"),
  48343. name: "Nude",
  48344. image: {
  48345. source: "./media/characters/charlie-dog/nude.svg",
  48346. extra: 768/734,
  48347. bottom: 26/794
  48348. }
  48349. },
  48350. dressed: {
  48351. height: math.unit(5 + 6/12, "feet"),
  48352. name: "Dressed",
  48353. image: {
  48354. source: "./media/characters/charlie-dog/dressed.svg",
  48355. extra: 768/734,
  48356. bottom: 26/794
  48357. }
  48358. },
  48359. },
  48360. [
  48361. {
  48362. name: "Normal",
  48363. height: math.unit(5 + 6/12, "feet"),
  48364. default: true
  48365. },
  48366. ]
  48367. ))
  48368. characterMakers.push(() => makeCharacter(
  48369. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  48370. {
  48371. front: {
  48372. height: math.unit(6 + 4/12, "feet"),
  48373. name: "Front",
  48374. image: {
  48375. source: "./media/characters/ir'istrasz/front.svg",
  48376. extra: 1014/977,
  48377. bottom: 65/1079
  48378. }
  48379. },
  48380. back: {
  48381. height: math.unit(6 + 4/12, "feet"),
  48382. name: "Back",
  48383. image: {
  48384. source: "./media/characters/ir'istrasz/back.svg",
  48385. extra: 1024/992,
  48386. bottom: 34/1058
  48387. }
  48388. },
  48389. },
  48390. [
  48391. {
  48392. name: "Normal",
  48393. height: math.unit(6 + 4/12, "feet"),
  48394. default: true
  48395. },
  48396. ]
  48397. ))
  48398. characterMakers.push(() => makeCharacter(
  48399. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  48400. {
  48401. front: {
  48402. height: math.unit(5 + 8/12, "feet"),
  48403. name: "Front",
  48404. image: {
  48405. source: "./media/characters/dee-ditto/front.svg",
  48406. extra: 1874/1785,
  48407. bottom: 68/1942
  48408. }
  48409. },
  48410. back: {
  48411. height: math.unit(5 + 8/12, "feet"),
  48412. name: "Back",
  48413. image: {
  48414. source: "./media/characters/dee-ditto/back.svg",
  48415. extra: 1870/1783,
  48416. bottom: 77/1947
  48417. }
  48418. },
  48419. },
  48420. [
  48421. {
  48422. name: "Normal",
  48423. height: math.unit(5 + 8/12, "feet"),
  48424. default: true
  48425. },
  48426. ]
  48427. ))
  48428. characterMakers.push(() => makeCharacter(
  48429. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  48430. {
  48431. front: {
  48432. height: math.unit(7 + 6/12, "feet"),
  48433. name: "Front",
  48434. image: {
  48435. source: "./media/characters/fey/front.svg",
  48436. extra: 995/979,
  48437. bottom: 30/1025
  48438. }
  48439. },
  48440. back: {
  48441. height: math.unit(7 + 6/12, "feet"),
  48442. name: "Back",
  48443. image: {
  48444. source: "./media/characters/fey/back.svg",
  48445. extra: 1079/1008,
  48446. bottom: 5/1084
  48447. }
  48448. },
  48449. dressed: {
  48450. height: math.unit(7 + 6/12, "feet"),
  48451. name: "Dressed",
  48452. image: {
  48453. source: "./media/characters/fey/dressed.svg",
  48454. extra: 995/979,
  48455. bottom: 30/1025
  48456. }
  48457. },
  48458. },
  48459. [
  48460. {
  48461. name: "Normal",
  48462. height: math.unit(7 + 6/12, "feet"),
  48463. default: true
  48464. },
  48465. ]
  48466. ))
  48467. characterMakers.push(() => makeCharacter(
  48468. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  48469. {
  48470. standing: {
  48471. height: math.unit(17, "feet"),
  48472. name: "Standing",
  48473. image: {
  48474. source: "./media/characters/aster/standing.svg",
  48475. extra: 1798/1598,
  48476. bottom: 117/1915
  48477. }
  48478. },
  48479. },
  48480. [
  48481. {
  48482. name: "Normal",
  48483. height: math.unit(17, "feet"),
  48484. default: true
  48485. },
  48486. {
  48487. name: "Homewrecker",
  48488. height: math.unit(95, "feet")
  48489. },
  48490. {
  48491. name: "Planet Devourer",
  48492. height: math.unit(1008000, "miles")
  48493. },
  48494. ]
  48495. ))
  48496. characterMakers.push(() => makeCharacter(
  48497. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  48498. {
  48499. front: {
  48500. height: math.unit(6 + 5/12, "feet"),
  48501. weight: math.unit(265, "lb"),
  48502. name: "Front",
  48503. image: {
  48504. source: "./media/characters/devon-childs/front.svg",
  48505. extra: 1795/1721,
  48506. bottom: 41/1836
  48507. }
  48508. },
  48509. side: {
  48510. height: math.unit(6 + 5/12, "feet"),
  48511. weight: math.unit(265, "lb"),
  48512. name: "Side",
  48513. image: {
  48514. source: "./media/characters/devon-childs/side.svg",
  48515. extra: 1812/1738,
  48516. bottom: 30/1842
  48517. }
  48518. },
  48519. back: {
  48520. height: math.unit(6 + 5/12, "feet"),
  48521. weight: math.unit(265, "lb"),
  48522. name: "Back",
  48523. image: {
  48524. source: "./media/characters/devon-childs/back.svg",
  48525. extra: 1808/1735,
  48526. bottom: 23/1831
  48527. }
  48528. },
  48529. hand: {
  48530. height: math.unit(1.464, "feet"),
  48531. name: "Hand",
  48532. image: {
  48533. source: "./media/characters/devon-childs/hand.svg"
  48534. }
  48535. },
  48536. foot: {
  48537. height: math.unit(1.6, "feet"),
  48538. name: "Foot",
  48539. image: {
  48540. source: "./media/characters/devon-childs/foot.svg"
  48541. }
  48542. },
  48543. },
  48544. [
  48545. {
  48546. name: "Micro",
  48547. height: math.unit(7, "cm")
  48548. },
  48549. {
  48550. name: "Normal",
  48551. height: math.unit(6 + 5/12, "feet"),
  48552. default: true
  48553. },
  48554. {
  48555. name: "Macro",
  48556. height: math.unit(154, "feet")
  48557. },
  48558. ]
  48559. ))
  48560. characterMakers.push(() => makeCharacter(
  48561. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  48562. {
  48563. front: {
  48564. height: math.unit(6, "feet"),
  48565. weight: math.unit(180, "lb"),
  48566. name: "Front",
  48567. image: {
  48568. source: "./media/characters/lydemox-vir/front.svg",
  48569. extra: 1632/1435,
  48570. bottom: 58/1690
  48571. }
  48572. },
  48573. frontSFW: {
  48574. height: math.unit(6, "feet"),
  48575. weight: math.unit(180, "lb"),
  48576. name: "Front (SFW)",
  48577. image: {
  48578. source: "./media/characters/lydemox-vir/front-sfw.svg",
  48579. extra: 1632/1435,
  48580. bottom: 58/1690
  48581. }
  48582. },
  48583. back: {
  48584. height: math.unit(6, "feet"),
  48585. weight: math.unit(180, "lb"),
  48586. name: "Back",
  48587. image: {
  48588. source: "./media/characters/lydemox-vir/back.svg",
  48589. extra: 1593/1408,
  48590. bottom: 31/1624
  48591. }
  48592. },
  48593. paw: {
  48594. height: math.unit(1.85, "feet"),
  48595. name: "Paw",
  48596. image: {
  48597. source: "./media/characters/lydemox-vir/paw.svg"
  48598. }
  48599. },
  48600. dick: {
  48601. height: math.unit(1.8, "feet"),
  48602. name: "Dick",
  48603. image: {
  48604. source: "./media/characters/lydemox-vir/dick.svg"
  48605. }
  48606. },
  48607. },
  48608. [
  48609. {
  48610. name: "Macro",
  48611. height: math.unit(100, "feet"),
  48612. default: true
  48613. },
  48614. {
  48615. name: "Teramacro",
  48616. height: math.unit(1, "earth")
  48617. },
  48618. {
  48619. name: "Planetary",
  48620. height: math.unit(20, "earths")
  48621. },
  48622. ]
  48623. ))
  48624. characterMakers.push(() => makeCharacter(
  48625. { name: "Mia", species: ["panda"], tags: ["anthro"] },
  48626. {
  48627. front: {
  48628. height: math.unit(15 + 8/12, "feet"),
  48629. weight: math.unit(1237, "kg"),
  48630. name: "Front",
  48631. image: {
  48632. source: "./media/characters/mia/front.svg",
  48633. extra: 1573/1446,
  48634. bottom: 58/1631
  48635. }
  48636. },
  48637. },
  48638. [
  48639. {
  48640. name: "Small",
  48641. height: math.unit(9 + 5/12, "feet")
  48642. },
  48643. {
  48644. name: "Normal",
  48645. height: math.unit(15 + 8/12, "feet"),
  48646. default: true
  48647. },
  48648. ]
  48649. ))
  48650. characterMakers.push(() => makeCharacter(
  48651. { name: "Mr. Graves", species: ["wolf"], tags: ["anthro"] },
  48652. {
  48653. front: {
  48654. height: math.unit(10 + 6/12, "feet"),
  48655. weight: math.unit(1.3, "tons"),
  48656. name: "Front",
  48657. image: {
  48658. source: "./media/characters/mr-graves/front.svg",
  48659. extra: 1779/1695,
  48660. bottom: 198/1977
  48661. }
  48662. },
  48663. },
  48664. [
  48665. {
  48666. name: "Normal",
  48667. height: math.unit(10 + 6 /12, "feet"),
  48668. default: true
  48669. },
  48670. ]
  48671. ))
  48672. characterMakers.push(() => makeCharacter(
  48673. { name: "Jess", species: ["human"], tags: ["anthro"] },
  48674. {
  48675. dressedFront: {
  48676. height: math.unit(5 + 8/12, "feet"),
  48677. weight: math.unit(125, "lb"),
  48678. name: "Dressed (Front)",
  48679. image: {
  48680. source: "./media/characters/jess/dressed-front.svg",
  48681. extra: 1176/1152,
  48682. bottom: 42/1218
  48683. }
  48684. },
  48685. dressedSide: {
  48686. height: math.unit(5 + 8/12, "feet"),
  48687. weight: math.unit(125, "lb"),
  48688. name: "Dressed (Side)",
  48689. image: {
  48690. source: "./media/characters/jess/dressed-side.svg",
  48691. extra: 1204/1190,
  48692. bottom: 6/1210
  48693. }
  48694. },
  48695. nudeFront: {
  48696. height: math.unit(5 + 8/12, "feet"),
  48697. weight: math.unit(125, "lb"),
  48698. name: "Nude (Front)",
  48699. image: {
  48700. source: "./media/characters/jess/nude-front.svg",
  48701. extra: 1176/1152,
  48702. bottom: 42/1218
  48703. }
  48704. },
  48705. nudeSide: {
  48706. height: math.unit(5 + 8/12, "feet"),
  48707. weight: math.unit(125, "lb"),
  48708. name: "Nude (Side)",
  48709. image: {
  48710. source: "./media/characters/jess/nude-side.svg",
  48711. extra: 1204/1190,
  48712. bottom: 6/1210
  48713. }
  48714. },
  48715. organsFront: {
  48716. height: math.unit(2.83799342105, "feet"),
  48717. name: "Organs (Front)",
  48718. image: {
  48719. source: "./media/characters/jess/organs-front.svg"
  48720. }
  48721. },
  48722. organsSide: {
  48723. height: math.unit(2.64225290474, "feet"),
  48724. name: "Organs (Side)",
  48725. image: {
  48726. source: "./media/characters/jess/organs-side.svg"
  48727. }
  48728. },
  48729. digestiveTractFront: {
  48730. height: math.unit(2.8106580871, "feet"),
  48731. name: "Digestive Tract (Front)",
  48732. image: {
  48733. source: "./media/characters/jess/digestive-tract-front.svg"
  48734. }
  48735. },
  48736. digestiveTractSide: {
  48737. height: math.unit(2.54365045014, "feet"),
  48738. name: "Digestive Tract (Side)",
  48739. image: {
  48740. source: "./media/characters/jess/digestive-tract-side.svg"
  48741. }
  48742. },
  48743. respiratorySystemFront: {
  48744. height: math.unit(1.11196233456, "feet"),
  48745. name: "Respiratory System (Front)",
  48746. image: {
  48747. source: "./media/characters/jess/respiratory-system-front.svg"
  48748. }
  48749. },
  48750. respiratorySystemSide: {
  48751. height: math.unit(0.89327966297, "feet"),
  48752. name: "Respiratory System (Side)",
  48753. image: {
  48754. source: "./media/characters/jess/respiratory-system-side.svg"
  48755. }
  48756. },
  48757. urinaryTractFront: {
  48758. height: math.unit(1.16126356186, "feet"),
  48759. name: "Urinary Tract (Front)",
  48760. image: {
  48761. source: "./media/characters/jess/urinary-tract-front.svg"
  48762. }
  48763. },
  48764. urinaryTractSide: {
  48765. height: math.unit(1.20910039627, "feet"),
  48766. name: "Urinary Tract (Side)",
  48767. image: {
  48768. source: "./media/characters/jess/urinary-tract-side.svg"
  48769. }
  48770. },
  48771. reproductiveOrgansFront: {
  48772. height: math.unit(0.48422591566, "feet"),
  48773. name: "Reproductive Organs (Front)",
  48774. image: {
  48775. source: "./media/characters/jess/reproductive-organs-front.svg"
  48776. }
  48777. },
  48778. reproductiveOrgansSide: {
  48779. height: math.unit(0.61553314481, "feet"),
  48780. name: "Reproductive Organs (Side)",
  48781. image: {
  48782. source: "./media/characters/jess/reproductive-organs-side.svg"
  48783. }
  48784. },
  48785. breastsFront: {
  48786. height: math.unit(0.47690395121, "feet"),
  48787. name: "Breasts (Front)",
  48788. image: {
  48789. source: "./media/characters/jess/breasts-front.svg"
  48790. }
  48791. },
  48792. breastsSide: {
  48793. height: math.unit(0.30556998307, "feet"),
  48794. name: "Breasts (Side)",
  48795. image: {
  48796. source: "./media/characters/jess/breasts-side.svg"
  48797. }
  48798. },
  48799. heartFront: {
  48800. height: math.unit(0.53011022622, "feet"),
  48801. name: "Heart (Front)",
  48802. image: {
  48803. source: "./media/characters/jess/heart-front.svg"
  48804. }
  48805. },
  48806. heartSide: {
  48807. height: math.unit(0.51790695213, "feet"),
  48808. name: "Heart (Side)",
  48809. image: {
  48810. source: "./media/characters/jess/heart-side.svg"
  48811. }
  48812. },
  48813. earsAndNoseFront: {
  48814. height: math.unit(0.29385483995, "feet"),
  48815. name: "Ears and Nose (Front)",
  48816. image: {
  48817. source: "./media/characters/jess/ears-and-nose-front.svg"
  48818. }
  48819. },
  48820. earsAndNoseSide: {
  48821. height: math.unit(0.18109658741, "feet"),
  48822. name: "Ears and Nose (Side)",
  48823. image: {
  48824. source: "./media/characters/jess/ears-and-nose-side.svg"
  48825. }
  48826. },
  48827. },
  48828. [
  48829. {
  48830. name: "Normal",
  48831. height: math.unit(5 + 8/12, "feet"),
  48832. default: true
  48833. },
  48834. ]
  48835. ))
  48836. characterMakers.push(() => makeCharacter(
  48837. { name: "Wimpering", species: ["human"], tags: ["anthro"] },
  48838. {
  48839. front: {
  48840. height: math.unit(6, "feet"),
  48841. weight: math.unit(6.64467e-7, "grams"),
  48842. name: "Front",
  48843. image: {
  48844. source: "./media/characters/wimpering/front.svg",
  48845. extra: 597/587,
  48846. bottom: 34/631
  48847. }
  48848. },
  48849. },
  48850. [
  48851. {
  48852. name: "Micro",
  48853. height: math.unit(0.4, "mm"),
  48854. default: true
  48855. },
  48856. ]
  48857. ))
  48858. characterMakers.push(() => makeCharacter(
  48859. { name: "Keltre", species: ["dog"], tags: ["anthro"] },
  48860. {
  48861. front: {
  48862. height: math.unit(5 + 2/12, "feet"),
  48863. weight: math.unit(110, "lb"),
  48864. name: "Front",
  48865. image: {
  48866. source: "./media/characters/keltre/front.svg",
  48867. extra: 1099/1057,
  48868. bottom: 22/1121
  48869. }
  48870. },
  48871. back: {
  48872. height: math.unit(5 + 2/12, "feet"),
  48873. weight: math.unit(110, "lb"),
  48874. name: "Back",
  48875. image: {
  48876. source: "./media/characters/keltre/back.svg",
  48877. extra: 1095/1053,
  48878. bottom: 17/1112
  48879. }
  48880. },
  48881. dressed: {
  48882. height: math.unit(5 + 2/12, "feet"),
  48883. weight: math.unit(110, "lb"),
  48884. name: "Dressed",
  48885. image: {
  48886. source: "./media/characters/keltre/dressed.svg",
  48887. extra: 1099/1057,
  48888. bottom: 22/1121
  48889. }
  48890. },
  48891. winter: {
  48892. height: math.unit(5 + 2/12, "feet"),
  48893. weight: math.unit(110, "lb"),
  48894. name: "Winter",
  48895. image: {
  48896. source: "./media/characters/keltre/winter.svg",
  48897. extra: 1099/1057,
  48898. bottom: 22/1121
  48899. }
  48900. },
  48901. head: {
  48902. height: math.unit(1.61 * 0.86, "feet"),
  48903. name: "Head",
  48904. image: {
  48905. source: "./media/characters/keltre/head.svg",
  48906. extra: 534/421,
  48907. bottom: 0/534
  48908. }
  48909. },
  48910. hand: {
  48911. height: math.unit(1.3 * 0.86, "feet"),
  48912. name: "Hand",
  48913. image: {
  48914. source: "./media/characters/keltre/hand.svg"
  48915. }
  48916. },
  48917. foot: {
  48918. height: math.unit(1.8 * 0.86, "feet"),
  48919. name: "Foot",
  48920. image: {
  48921. source: "./media/characters/keltre/foot.svg"
  48922. }
  48923. },
  48924. },
  48925. [
  48926. {
  48927. name: "Fine",
  48928. height: math.unit(1, "inch")
  48929. },
  48930. {
  48931. name: "Dimnutive",
  48932. height: math.unit(4, "inches")
  48933. },
  48934. {
  48935. name: "Tiny",
  48936. height: math.unit(1, "foot")
  48937. },
  48938. {
  48939. name: "Small",
  48940. height: math.unit(3, "feet")
  48941. },
  48942. {
  48943. name: "Normal",
  48944. height: math.unit(5 + 2/12, "feet"),
  48945. default: true
  48946. },
  48947. ]
  48948. ))
  48949. characterMakers.push(() => makeCharacter(
  48950. { name: "Nox", species: ["cat"], tags: ["anthro"] },
  48951. {
  48952. front: {
  48953. height: math.unit(6 + 2/12, "feet"),
  48954. name: "Front",
  48955. image: {
  48956. source: "./media/characters/nox/front.svg",
  48957. extra: 1917/1830,
  48958. bottom: 74/1991
  48959. }
  48960. },
  48961. back: {
  48962. height: math.unit(6 + 2/12, "feet"),
  48963. name: "Back",
  48964. image: {
  48965. source: "./media/characters/nox/back.svg",
  48966. extra: 1896/1815,
  48967. bottom: 21/1917
  48968. }
  48969. },
  48970. head: {
  48971. height: math.unit(1.1, "feet"),
  48972. name: "Head",
  48973. image: {
  48974. source: "./media/characters/nox/head.svg",
  48975. extra: 874/704,
  48976. bottom: 0/874
  48977. }
  48978. },
  48979. tattoo: {
  48980. height: math.unit(0.729, "feet"),
  48981. name: "Tattoo",
  48982. image: {
  48983. source: "./media/characters/nox/tattoo.svg"
  48984. }
  48985. },
  48986. },
  48987. [
  48988. {
  48989. name: "Normal",
  48990. height: math.unit(6 + 2/12, "feet")
  48991. },
  48992. {
  48993. name: "Gigamacro",
  48994. height: math.unit(2, "earths"),
  48995. default: true
  48996. },
  48997. {
  48998. name: "Cosmic",
  48999. height: math.unit(867, "yottameters")
  49000. },
  49001. ]
  49002. ))
  49003. characterMakers.push(() => makeCharacter(
  49004. { name: "Caspian", species: ["ferret"], tags: ["anthro"] },
  49005. {
  49006. front: {
  49007. height: math.unit(6, "feet"),
  49008. weight: math.unit(150, "lb"),
  49009. name: "Front",
  49010. image: {
  49011. source: "./media/characters/caspian/front.svg",
  49012. extra: 1443/1359,
  49013. bottom: 0/1443
  49014. }
  49015. },
  49016. back: {
  49017. height: math.unit(6, "feet"),
  49018. weight: math.unit(150, "lb"),
  49019. name: "Back",
  49020. image: {
  49021. source: "./media/characters/caspian/back.svg",
  49022. extra: 1379/1309,
  49023. bottom: 0/1379
  49024. }
  49025. },
  49026. head: {
  49027. height: math.unit(0.9, "feet"),
  49028. name: "Head",
  49029. image: {
  49030. source: "./media/characters/caspian/head.svg",
  49031. extra: 692/492,
  49032. bottom: 0/692
  49033. }
  49034. },
  49035. headAlt: {
  49036. height: math.unit(0.95, "feet"),
  49037. name: "Head (Alt)",
  49038. image: {
  49039. source: "./media/characters/caspian/head-alt.svg",
  49040. extra: 668/508,
  49041. bottom: 0/668
  49042. }
  49043. },
  49044. hand: {
  49045. height: math.unit(0.8, "feet"),
  49046. name: "Hand",
  49047. image: {
  49048. source: "./media/characters/caspian/hand.svg"
  49049. }
  49050. },
  49051. paw: {
  49052. height: math.unit(0.95, "feet"),
  49053. name: "Paw",
  49054. image: {
  49055. source: "./media/characters/caspian/paw.svg"
  49056. }
  49057. },
  49058. },
  49059. [
  49060. {
  49061. name: "Normal",
  49062. height: math.unit(162, "feet"),
  49063. default: true
  49064. },
  49065. ]
  49066. ))
  49067. characterMakers.push(() => makeCharacter(
  49068. { name: "Myra Aisling", species: ["coyote"], tags: ["anthro"] },
  49069. {
  49070. front: {
  49071. height: math.unit(6, "feet"),
  49072. name: "Front",
  49073. image: {
  49074. source: "./media/characters/myra-aisling/front.svg",
  49075. extra: 1268/1166,
  49076. bottom: 73/1341
  49077. }
  49078. },
  49079. back: {
  49080. height: math.unit(6, "feet"),
  49081. name: "Back",
  49082. image: {
  49083. source: "./media/characters/myra-aisling/back.svg",
  49084. extra: 1249/1149,
  49085. bottom: 79/1328
  49086. }
  49087. },
  49088. dressed: {
  49089. height: math.unit(6, "feet"),
  49090. name: "Dressed",
  49091. image: {
  49092. source: "./media/characters/myra-aisling/dressed.svg",
  49093. extra: 1290/1189,
  49094. bottom: 47/1337
  49095. }
  49096. },
  49097. hand: {
  49098. height: math.unit(1.1, "feet"),
  49099. name: "Hand",
  49100. image: {
  49101. source: "./media/characters/myra-aisling/hand.svg"
  49102. }
  49103. },
  49104. paw: {
  49105. height: math.unit(1.23, "feet"),
  49106. name: "Paw",
  49107. image: {
  49108. source: "./media/characters/myra-aisling/paw.svg"
  49109. }
  49110. },
  49111. },
  49112. [
  49113. {
  49114. name: "Normal",
  49115. height: math.unit(160, "feet"),
  49116. default: true
  49117. },
  49118. ]
  49119. ))
  49120. characterMakers.push(() => makeCharacter(
  49121. { name: "Tenley Sidero", species: ["lycanroc"], tags: ["anthro"] },
  49122. {
  49123. front: {
  49124. height: math.unit(6, "feet"),
  49125. name: "Front",
  49126. image: {
  49127. source: "./media/characters/tenley-sidero/front.svg",
  49128. extra: 1365/1276,
  49129. bottom: 47/1412
  49130. }
  49131. },
  49132. back: {
  49133. height: math.unit(6, "feet"),
  49134. name: "Back",
  49135. image: {
  49136. source: "./media/characters/tenley-sidero/back.svg",
  49137. extra: 1383/1283,
  49138. bottom: 35/1418
  49139. }
  49140. },
  49141. dressed: {
  49142. height: math.unit(6, "feet"),
  49143. name: "Dressed",
  49144. image: {
  49145. source: "./media/characters/tenley-sidero/dressed.svg",
  49146. extra: 1364/1275,
  49147. bottom: 42/1406
  49148. }
  49149. },
  49150. head: {
  49151. height: math.unit(1.47, "feet"),
  49152. name: "Head",
  49153. image: {
  49154. source: "./media/characters/tenley-sidero/head.svg",
  49155. extra: 610/490,
  49156. bottom: 0/610
  49157. }
  49158. },
  49159. },
  49160. [
  49161. {
  49162. name: "Normal",
  49163. height: math.unit(154, "feet"),
  49164. default: true
  49165. },
  49166. ]
  49167. ))
  49168. characterMakers.push(() => makeCharacter(
  49169. { name: "Mallory", species: ["rabbit"], tags: ["anthro"] },
  49170. {
  49171. front: {
  49172. height: math.unit(5, "inches"),
  49173. name: "Front",
  49174. image: {
  49175. source: "./media/characters/mallory/front.svg",
  49176. extra: 1919/1678,
  49177. bottom: 29/1948
  49178. }
  49179. },
  49180. hand: {
  49181. height: math.unit(0.73, "inches"),
  49182. name: "Hand",
  49183. image: {
  49184. source: "./media/characters/mallory/hand.svg"
  49185. }
  49186. },
  49187. paw: {
  49188. height: math.unit(0.68, "inches"),
  49189. name: "Paw",
  49190. image: {
  49191. source: "./media/characters/mallory/paw.svg"
  49192. }
  49193. },
  49194. },
  49195. [
  49196. {
  49197. name: "Small",
  49198. height: math.unit(5, "inches"),
  49199. default: true
  49200. },
  49201. ]
  49202. ))
  49203. characterMakers.push(() => makeCharacter(
  49204. { name: "Mab", species: ["opossum"], tags: ["anthro"] },
  49205. {
  49206. naked: {
  49207. height: math.unit(6, "feet"),
  49208. name: "Naked",
  49209. image: {
  49210. source: "./media/characters/mab/naked.svg",
  49211. extra: 1855/1757,
  49212. bottom: 208/2063
  49213. }
  49214. },
  49215. outside: {
  49216. height: math.unit(6, "feet"),
  49217. name: "Outside",
  49218. image: {
  49219. source: "./media/characters/mab/outside.svg",
  49220. extra: 1855/1757,
  49221. bottom: 208/2063
  49222. }
  49223. },
  49224. party: {
  49225. height: math.unit(6, "feet"),
  49226. name: "Party",
  49227. image: {
  49228. source: "./media/characters/mab/party.svg",
  49229. extra: 1855/1757,
  49230. bottom: 208/2063
  49231. }
  49232. },
  49233. },
  49234. [
  49235. {
  49236. name: "Normal",
  49237. height: math.unit(165, "feet"),
  49238. default: true
  49239. },
  49240. ]
  49241. ))
  49242. characterMakers.push(() => makeCharacter(
  49243. { name: "Winter", species: ["arcanine"], tags: ["feral"] },
  49244. {
  49245. front: {
  49246. height: math.unit(12, "feet"),
  49247. weight: math.unit(4000, "lb"),
  49248. name: "Front",
  49249. image: {
  49250. source: "./media/characters/winter/front.svg",
  49251. extra: 1286/943,
  49252. bottom: 112/1398
  49253. }
  49254. },
  49255. frontNsfw: {
  49256. height: math.unit(12, "feet"),
  49257. weight: math.unit(4000, "lb"),
  49258. name: "Front (NSFW)",
  49259. image: {
  49260. source: "./media/characters/winter/front-nsfw.svg",
  49261. extra: 1286/943,
  49262. bottom: 112/1398
  49263. }
  49264. },
  49265. dick: {
  49266. height: math.unit(3.79, "feet"),
  49267. name: "Dick",
  49268. image: {
  49269. source: "./media/characters/winter/dick.svg"
  49270. }
  49271. },
  49272. },
  49273. [
  49274. {
  49275. name: "Big",
  49276. height: math.unit(12, "feet"),
  49277. default: true
  49278. },
  49279. ]
  49280. ))
  49281. characterMakers.push(() => makeCharacter(
  49282. { name: "Alto", species: ["mouse", "chinchilla"], tags: ["anthro"] },
  49283. {
  49284. front: {
  49285. height: math.unit(4.1, "inches"),
  49286. name: "Front",
  49287. image: {
  49288. source: "./media/characters/alto/front.svg",
  49289. extra: 736/627,
  49290. bottom: 90/826
  49291. }
  49292. },
  49293. },
  49294. [
  49295. {
  49296. name: "Normal",
  49297. height: math.unit(4.1, "inches"),
  49298. default: true
  49299. },
  49300. ]
  49301. ))
  49302. characterMakers.push(() => makeCharacter(
  49303. { name: "Ratstrid V", species: ["opossum"], tags: ["anthro"] },
  49304. {
  49305. sitting: {
  49306. height: math.unit(3, "feet"),
  49307. name: "Sitting",
  49308. image: {
  49309. source: "./media/characters/ratstrid-v/sitting.svg",
  49310. extra: 355/310,
  49311. bottom: 136/491
  49312. }
  49313. },
  49314. },
  49315. [
  49316. {
  49317. name: "Normal",
  49318. height: math.unit(3, "feet"),
  49319. default: true
  49320. },
  49321. ]
  49322. ))
  49323. characterMakers.push(() => makeCharacter(
  49324. { name: "Siz", species: ["cinderace"], tags: ["anthro"] },
  49325. {
  49326. back: {
  49327. height: math.unit(6, "feet"),
  49328. weight: math.unit(350, "lb"),
  49329. name: "Back",
  49330. image: {
  49331. source: "./media/characters/siz/back.svg",
  49332. extra: 1449/1274,
  49333. bottom: 13/1462
  49334. }
  49335. },
  49336. },
  49337. [
  49338. {
  49339. name: "Over-Overcompressed",
  49340. height: math.unit(8, "feet")
  49341. },
  49342. {
  49343. name: "Overcompressed",
  49344. height: math.unit(32, "feet")
  49345. },
  49346. {
  49347. name: "Compressed",
  49348. height: math.unit(128, "feet"),
  49349. default: true
  49350. },
  49351. {
  49352. name: "Half-Compressed",
  49353. height: math.unit(512, "feet")
  49354. },
  49355. {
  49356. name: "Quarter-Compressed",
  49357. height: math.unit(2048, "feet")
  49358. },
  49359. {
  49360. name: "Uncompressed?",
  49361. height: math.unit(8192, "feet")
  49362. },
  49363. ]
  49364. ))
  49365. characterMakers.push(() => makeCharacter(
  49366. { name: "Ven", species: ["raven"], tags: ["anthro"] },
  49367. {
  49368. front: {
  49369. height: math.unit(5 + 9/12, "feet"),
  49370. weight: math.unit(150, "lb"),
  49371. name: "Front",
  49372. image: {
  49373. source: "./media/characters/ven/front.svg",
  49374. extra: 1372/1320,
  49375. bottom: 73/1445
  49376. }
  49377. },
  49378. side: {
  49379. height: math.unit(5 + 9/12, "feet"),
  49380. weight: math.unit(1150, "lb"),
  49381. name: "Side",
  49382. image: {
  49383. source: "./media/characters/ven/side.svg",
  49384. extra: 1119/1070,
  49385. bottom: 42/1161
  49386. },
  49387. default: true
  49388. },
  49389. },
  49390. [
  49391. {
  49392. name: "Normal",
  49393. height: math.unit(5 + 9/12, "feet"),
  49394. default: true
  49395. },
  49396. ]
  49397. ))
  49398. characterMakers.push(() => makeCharacter(
  49399. { name: "Maple", species: ["caudin"], tags: ["anthro"] },
  49400. {
  49401. front: {
  49402. height: math.unit(12, "feet"),
  49403. weight: math.unit(1000, "kg"),
  49404. name: "Front",
  49405. image: {
  49406. source: "./media/characters/maple/front.svg",
  49407. extra: 1193/1081,
  49408. bottom: 22/1215
  49409. }
  49410. },
  49411. },
  49412. [
  49413. {
  49414. name: "Compressed",
  49415. height: math.unit(7, "feet")
  49416. },
  49417. {
  49418. name: "Normal",
  49419. height: math.unit(12, "feet"),
  49420. default: true
  49421. },
  49422. ]
  49423. ))
  49424. characterMakers.push(() => makeCharacter(
  49425. { name: "Nora", species: ["blaziken"], tags: ["anthro"] },
  49426. {
  49427. front: {
  49428. height: math.unit(9, "feet"),
  49429. weight: math.unit(1500, "lb"),
  49430. name: "Front",
  49431. image: {
  49432. source: "./media/characters/nora/front.svg",
  49433. extra: 1348/1286,
  49434. bottom: 218/1566
  49435. }
  49436. },
  49437. erect: {
  49438. height: math.unit(9, "feet"),
  49439. weight: math.unit(11500, "lb"),
  49440. name: "Erect",
  49441. image: {
  49442. source: "./media/characters/nora/erect.svg",
  49443. extra: 1488/1433,
  49444. bottom: 133/1621
  49445. }
  49446. },
  49447. },
  49448. [
  49449. {
  49450. name: "Normal",
  49451. height: math.unit(9, "feet"),
  49452. default: true
  49453. },
  49454. ]
  49455. ))
  49456. characterMakers.push(() => makeCharacter(
  49457. { name: "North (Caudin)", species: ["caudin"], tags: ["anthro"] },
  49458. {
  49459. front: {
  49460. height: math.unit(25, "feet"),
  49461. weight: math.unit(27500, "lb"),
  49462. name: "Front",
  49463. image: {
  49464. source: "./media/characters/north-caudin/front.svg",
  49465. extra: 1184/1082,
  49466. bottom: 23/1207
  49467. }
  49468. },
  49469. },
  49470. [
  49471. {
  49472. name: "Compressed",
  49473. height: math.unit(10, "feet")
  49474. },
  49475. {
  49476. name: "Normal",
  49477. height: math.unit(25, "feet"),
  49478. default: true
  49479. },
  49480. ]
  49481. ))
  49482. characterMakers.push(() => makeCharacter(
  49483. { name: "Merrian", species: ["caudin", "avian"], tags: ["anthro"] },
  49484. {
  49485. front: {
  49486. height: math.unit(9, "feet"),
  49487. weight: math.unit(1250, "lb"),
  49488. name: "Front",
  49489. image: {
  49490. source: "./media/characters/merrian/front.svg",
  49491. extra: 2393/2304,
  49492. bottom: 40/2433
  49493. }
  49494. },
  49495. },
  49496. [
  49497. {
  49498. name: "Normal",
  49499. height: math.unit(9, "feet"),
  49500. default: true
  49501. },
  49502. ]
  49503. ))
  49504. characterMakers.push(() => makeCharacter(
  49505. { name: "Hazel", species: ["red-winged-blackbird"], tags: ["anthro"] },
  49506. {
  49507. front: {
  49508. height: math.unit(9, "feet"),
  49509. weight: math.unit(1000, "lb"),
  49510. name: "Front",
  49511. image: {
  49512. source: "./media/characters/hazel/front.svg",
  49513. extra: 2351/2298,
  49514. bottom: 38/2389
  49515. }
  49516. },
  49517. },
  49518. [
  49519. {
  49520. name: "Normal",
  49521. height: math.unit(9, "feet"),
  49522. default: true
  49523. },
  49524. ]
  49525. ))
  49526. characterMakers.push(() => makeCharacter(
  49527. { name: "Emma", species: ["caudin"], tags: ["anthro"] },
  49528. {
  49529. front: {
  49530. height: math.unit(13, "feet"),
  49531. weight: math.unit(3200, "lb"),
  49532. name: "Front",
  49533. image: {
  49534. source: "./media/characters/emma/front.svg",
  49535. extra: 2263/2029,
  49536. bottom: 68/2331
  49537. }
  49538. },
  49539. },
  49540. [
  49541. {
  49542. name: "Normal",
  49543. height: math.unit(13, "feet"),
  49544. default: true
  49545. },
  49546. ]
  49547. ))
  49548. characterMakers.push(() => makeCharacter(
  49549. { name: "Ilumina", species: ["hooded-wheater"], tags: ["anthro"] },
  49550. {
  49551. front: {
  49552. height: math.unit(11 + 9/12, "feet"),
  49553. weight: math.unit(2500, "lb"),
  49554. name: "Front",
  49555. image: {
  49556. source: "./media/characters/ilumina/front.svg",
  49557. extra: 2248/2209,
  49558. bottom: 164/2412
  49559. }
  49560. },
  49561. },
  49562. [
  49563. {
  49564. name: "Normal",
  49565. height: math.unit(11 + 9/12, "feet"),
  49566. default: true
  49567. },
  49568. ]
  49569. ))
  49570. characterMakers.push(() => makeCharacter(
  49571. { name: "Moonshine", species: ["caudin"], tags: ["anthro"] },
  49572. {
  49573. front: {
  49574. height: math.unit(8 + 10/12, "feet"),
  49575. weight: math.unit(1350, "lb"),
  49576. name: "Front",
  49577. image: {
  49578. source: "./media/characters/moonshine/front.svg",
  49579. extra: 2395/2288,
  49580. bottom: 40/2435
  49581. }
  49582. },
  49583. },
  49584. [
  49585. {
  49586. name: "Normal",
  49587. height: math.unit(8 + 10/12, "feet"),
  49588. default: true
  49589. },
  49590. ]
  49591. ))
  49592. characterMakers.push(() => makeCharacter(
  49593. { name: "Aletia", species: ["caudin"], tags: ["anthro"] },
  49594. {
  49595. front: {
  49596. height: math.unit(14, "feet"),
  49597. weight: math.unit(3400, "lb"),
  49598. name: "Front",
  49599. image: {
  49600. source: "./media/characters/aletia/front.svg",
  49601. extra: 1185/1052,
  49602. bottom: 21/1206
  49603. }
  49604. },
  49605. },
  49606. [
  49607. {
  49608. name: "Compressed",
  49609. height: math.unit(8, "feet")
  49610. },
  49611. {
  49612. name: "Normal",
  49613. height: math.unit(14, "feet"),
  49614. default: true
  49615. },
  49616. ]
  49617. ))
  49618. characterMakers.push(() => makeCharacter(
  49619. { name: "Deidra", species: ["caudin"], tags: ["anthro"] },
  49620. {
  49621. front: {
  49622. height: math.unit(17, "feet"),
  49623. weight: math.unit(6500, "lb"),
  49624. name: "Front",
  49625. image: {
  49626. source: "./media/characters/deidra/front.svg",
  49627. extra: 1201/1081,
  49628. bottom: 16/1217
  49629. }
  49630. },
  49631. },
  49632. [
  49633. {
  49634. name: "Compressed",
  49635. height: math.unit(9 + 6/12, "feet")
  49636. },
  49637. {
  49638. name: "Normal",
  49639. height: math.unit(17, "feet"),
  49640. default: true
  49641. },
  49642. ]
  49643. ))
  49644. characterMakers.push(() => makeCharacter(
  49645. { name: "Freki Yrmori", species: ["folf"], tags: ["anthro"] },
  49646. {
  49647. front: {
  49648. height: math.unit(7 + 4/12, "feet"),
  49649. weight: math.unit(280, "lb"),
  49650. name: "Front",
  49651. image: {
  49652. source: "./media/characters/freki-yrmori/front.svg",
  49653. extra: 1286/1182,
  49654. bottom: 29/1315
  49655. }
  49656. },
  49657. maw: {
  49658. height: math.unit(0.9, "feet"),
  49659. name: "Maw",
  49660. image: {
  49661. source: "./media/characters/freki-yrmori/maw.svg"
  49662. }
  49663. },
  49664. },
  49665. [
  49666. {
  49667. name: "Normal",
  49668. height: math.unit(7 + 4/12, "feet"),
  49669. default: true
  49670. },
  49671. {
  49672. name: "Macro",
  49673. height: math.unit(38.5, "meters")
  49674. },
  49675. ]
  49676. ))
  49677. characterMakers.push(() => makeCharacter(
  49678. { name: "Aetherios", species: ["dragon"], tags: ["feral"] },
  49679. {
  49680. side: {
  49681. height: math.unit(47.2, "meters"),
  49682. weight: math.unit(10000, "tons"),
  49683. name: "Side",
  49684. image: {
  49685. source: "./media/characters/aetherios/side.svg",
  49686. extra: 2363/642,
  49687. bottom: 221/2584
  49688. }
  49689. },
  49690. top: {
  49691. height: math.unit(240, "meters"),
  49692. weight: math.unit(10000, "tons"),
  49693. name: "Top",
  49694. image: {
  49695. source: "./media/characters/aetherios/top.svg"
  49696. }
  49697. },
  49698. bottom: {
  49699. height: math.unit(240, "meters"),
  49700. weight: math.unit(10000, "tons"),
  49701. name: "Bottom",
  49702. image: {
  49703. source: "./media/characters/aetherios/bottom.svg"
  49704. }
  49705. },
  49706. head: {
  49707. height: math.unit(38.6, "meters"),
  49708. name: "Head",
  49709. image: {
  49710. source: "./media/characters/aetherios/head.svg",
  49711. extra: 1335/1112,
  49712. bottom: 0/1335
  49713. }
  49714. },
  49715. front: {
  49716. height: math.unit(29, "meters"),
  49717. name: "Front",
  49718. image: {
  49719. source: "./media/characters/aetherios/front.svg",
  49720. extra: 1266/953,
  49721. bottom: 158/1424
  49722. }
  49723. },
  49724. maw: {
  49725. height: math.unit(16.37, "meters"),
  49726. name: "Maw",
  49727. image: {
  49728. source: "./media/characters/aetherios/maw.svg",
  49729. extra: 748/637,
  49730. bottom: 0/748
  49731. },
  49732. extraAttributes: {
  49733. preyCapacity: {
  49734. name: "Capacity",
  49735. power: 3,
  49736. type: "volume",
  49737. base: math.unit(1000, "people")
  49738. },
  49739. tongueSize: {
  49740. name: "Tongue Size",
  49741. power: 2,
  49742. type: "area",
  49743. base: math.unit(21, "m^2")
  49744. }
  49745. }
  49746. },
  49747. forepaw: {
  49748. height: math.unit(18, "meters"),
  49749. name: "Forepaw",
  49750. image: {
  49751. source: "./media/characters/aetherios/forepaw.svg"
  49752. }
  49753. },
  49754. hindpaw: {
  49755. height: math.unit(23, "meters"),
  49756. name: "Hindpaw",
  49757. image: {
  49758. source: "./media/characters/aetherios/hindpaw.svg"
  49759. }
  49760. },
  49761. genitals: {
  49762. height: math.unit(42, "meters"),
  49763. name: "Genitals",
  49764. image: {
  49765. source: "./media/characters/aetherios/genitals.svg"
  49766. }
  49767. },
  49768. },
  49769. [
  49770. {
  49771. name: "Normal",
  49772. height: math.unit(47.2, "meters"),
  49773. default: true
  49774. },
  49775. {
  49776. name: "Macro",
  49777. height: math.unit(160, "meters")
  49778. },
  49779. {
  49780. name: "Mega",
  49781. height: math.unit(1.87, "km")
  49782. },
  49783. {
  49784. name: "Giga",
  49785. height: math.unit(40000, "km")
  49786. },
  49787. {
  49788. name: "Stellar",
  49789. height: math.unit(158000000, "km")
  49790. },
  49791. {
  49792. name: "Cosmic",
  49793. height: math.unit(9.46e12, "km")
  49794. },
  49795. ]
  49796. ))
  49797. characterMakers.push(() => makeCharacter(
  49798. { name: "Mizu (Gieeg)", species: ["gieeg"], tags: ["anthro"] },
  49799. {
  49800. front: {
  49801. height: math.unit(5 + 4/12, "feet"),
  49802. weight: math.unit(80, "lb"),
  49803. name: "Front",
  49804. image: {
  49805. source: "./media/characters/mizu-gieeg/front.svg",
  49806. extra: 850/709,
  49807. bottom: 52/902
  49808. }
  49809. },
  49810. back: {
  49811. height: math.unit(5 + 4/12, "feet"),
  49812. weight: math.unit(80, "lb"),
  49813. name: "Back",
  49814. image: {
  49815. source: "./media/characters/mizu-gieeg/back.svg",
  49816. extra: 882/745,
  49817. bottom: 25/907
  49818. }
  49819. },
  49820. },
  49821. [
  49822. {
  49823. name: "Normal",
  49824. height: math.unit(5 + 4/12, "feet"),
  49825. default: true
  49826. },
  49827. ]
  49828. ))
  49829. characterMakers.push(() => makeCharacter(
  49830. { name: "Roselle St. Papier", species: ["ringtail"], tags: ["anthro"] },
  49831. {
  49832. front: {
  49833. height: math.unit(6, "feet"),
  49834. name: "Front",
  49835. image: {
  49836. source: "./media/characters/roselle-st-papier/front.svg",
  49837. extra: 1430/1280,
  49838. bottom: 37/1467
  49839. }
  49840. },
  49841. back: {
  49842. height: math.unit(6, "feet"),
  49843. name: "Back",
  49844. image: {
  49845. source: "./media/characters/roselle-st-papier/back.svg",
  49846. extra: 1491/1296,
  49847. bottom: 23/1514
  49848. }
  49849. },
  49850. ear: {
  49851. height: math.unit(1.26, "feet"),
  49852. name: "Ear",
  49853. image: {
  49854. source: "./media/characters/roselle-st-papier/ear.svg"
  49855. }
  49856. },
  49857. },
  49858. [
  49859. {
  49860. name: "Normal",
  49861. height: math.unit(150, "feet"),
  49862. default: true
  49863. },
  49864. ]
  49865. ))
  49866. characterMakers.push(() => makeCharacter(
  49867. { name: "Valargent", species: ["fox"], tags: ["anthro"] },
  49868. {
  49869. front: {
  49870. height: math.unit(1, "inches"),
  49871. name: "Front",
  49872. image: {
  49873. source: "./media/characters/valargent/front.svg",
  49874. extra: 1825/1694,
  49875. bottom: 62/1887
  49876. }
  49877. },
  49878. back: {
  49879. height: math.unit(1, "inches"),
  49880. name: "Back",
  49881. image: {
  49882. source: "./media/characters/valargent/back.svg",
  49883. extra: 1775/1682,
  49884. bottom: 88/1863
  49885. }
  49886. },
  49887. },
  49888. [
  49889. {
  49890. name: "Micro",
  49891. height: math.unit(1, "inch"),
  49892. default: true
  49893. },
  49894. ]
  49895. ))
  49896. characterMakers.push(() => makeCharacter(
  49897. { name: "Zarina", species: ["hisuian-zoroark"], tags: ["anthro"] },
  49898. {
  49899. front: {
  49900. height: math.unit(3.4, "meters"),
  49901. name: "Front",
  49902. image: {
  49903. source: "./media/characters/zarina/front.svg",
  49904. extra: 1733/1425,
  49905. bottom: 93/1826
  49906. }
  49907. },
  49908. squatting: {
  49909. height: math.unit(2.14, "meters"),
  49910. name: "Squatting",
  49911. image: {
  49912. source: "./media/characters/zarina/squatting.svg",
  49913. extra: 1073/788,
  49914. bottom: 63/1136
  49915. }
  49916. },
  49917. back: {
  49918. height: math.unit(2.14, "meters"),
  49919. name: "Back",
  49920. image: {
  49921. source: "./media/characters/zarina/back.svg",
  49922. extra: 1128/885,
  49923. bottom: 0/1128
  49924. }
  49925. },
  49926. },
  49927. [
  49928. {
  49929. name: "Normal",
  49930. height: math.unit(3.4, "meters"),
  49931. default: true
  49932. },
  49933. {
  49934. name: "Big",
  49935. height: math.unit(5, "meters")
  49936. },
  49937. {
  49938. name: "Macro",
  49939. height: math.unit(110, "meters")
  49940. },
  49941. ]
  49942. ))
  49943. characterMakers.push(() => makeCharacter(
  49944. { name: "VentusAstroFox", species: ["fox"], tags: ["anthro"] },
  49945. {
  49946. front: {
  49947. height: math.unit(7, "feet"),
  49948. name: "Front",
  49949. image: {
  49950. source: "./media/characters/ventus-astro-fox/front.svg",
  49951. extra: 1792/1623,
  49952. bottom: 28/1820
  49953. }
  49954. },
  49955. back: {
  49956. height: math.unit(7, "feet"),
  49957. name: "Back",
  49958. image: {
  49959. source: "./media/characters/ventus-astro-fox/back.svg",
  49960. extra: 1789/1620,
  49961. bottom: 31/1820
  49962. }
  49963. },
  49964. outfit: {
  49965. height: math.unit(7, "feet"),
  49966. name: "Outfit",
  49967. image: {
  49968. source: "./media/characters/ventus-astro-fox/outfit.svg",
  49969. extra: 1054/925,
  49970. bottom: 15/1069
  49971. }
  49972. },
  49973. head: {
  49974. height: math.unit(1.12, "feet"),
  49975. name: "Head",
  49976. image: {
  49977. source: "./media/characters/ventus-astro-fox/head.svg",
  49978. extra: 866/504,
  49979. bottom: 0/866
  49980. }
  49981. },
  49982. hand: {
  49983. height: math.unit(1, "feet"),
  49984. name: "Hand",
  49985. image: {
  49986. source: "./media/characters/ventus-astro-fox/hand.svg"
  49987. }
  49988. },
  49989. paw: {
  49990. height: math.unit(1.5, "feet"),
  49991. name: "Paw",
  49992. image: {
  49993. source: "./media/characters/ventus-astro-fox/paw.svg"
  49994. }
  49995. },
  49996. },
  49997. [
  49998. {
  49999. name: "Normal",
  50000. height: math.unit(7, "feet"),
  50001. default: true
  50002. },
  50003. {
  50004. name: "Macro",
  50005. height: math.unit(200, "feet")
  50006. },
  50007. {
  50008. name: "Cosmic",
  50009. height: math.unit(3, "universes")
  50010. },
  50011. ]
  50012. ))
  50013. characterMakers.push(() => makeCharacter(
  50014. { name: "CORE-T", species: ["cybeast"], tags: ["anthro"] },
  50015. {
  50016. front: {
  50017. height: math.unit(3, "meters"),
  50018. weight: math.unit(7000, "lb"),
  50019. name: "Front",
  50020. image: {
  50021. source: "./media/characters/core-t/front.svg",
  50022. extra: 5729/4941,
  50023. bottom: 1129/6858
  50024. }
  50025. },
  50026. },
  50027. [
  50028. {
  50029. name: "Big",
  50030. height: math.unit(3, "meters"),
  50031. default: true
  50032. },
  50033. ]
  50034. ))
  50035. characterMakers.push(() => makeCharacter(
  50036. { name: "Cadbunny", species: ["cinderace"], tags: ["anthro"] },
  50037. {
  50038. normal: {
  50039. height: math.unit(6 + 6/12, "feet"),
  50040. weight: math.unit(275, "lb"),
  50041. name: "Front",
  50042. image: {
  50043. source: "./media/characters/cadbunny/normal.svg",
  50044. extra: 1129/947,
  50045. bottom: 93/1222
  50046. },
  50047. default: true,
  50048. form: "normal"
  50049. },
  50050. gigantamax: {
  50051. height: math.unit(26, "feet"),
  50052. weight: math.unit(16000, "lb"),
  50053. name: "Front",
  50054. image: {
  50055. source: "./media/characters/cadbunny/gigantamax.svg",
  50056. extra: 1133/944,
  50057. bottom: 90/1223
  50058. },
  50059. default: true,
  50060. form: "gigantamax"
  50061. },
  50062. },
  50063. [
  50064. {
  50065. name: "Normal",
  50066. height: math.unit(6 + 6/12, "feet"),
  50067. default: true,
  50068. form: "normal"
  50069. },
  50070. {
  50071. name: "Small",
  50072. height: math.unit(26, "feet"),
  50073. default: true,
  50074. form: "gigantamax"
  50075. },
  50076. {
  50077. name: "Large",
  50078. height: math.unit(78, "feet"),
  50079. form: "gigantamax"
  50080. },
  50081. ],
  50082. {
  50083. "normal": {
  50084. name: "Normal",
  50085. default: true
  50086. },
  50087. "gigantamax": {
  50088. name: "Gigantamax"
  50089. }
  50090. }
  50091. ))
  50092. characterMakers.push(() => makeCharacter(
  50093. { name: "Blitz Dunkelheit", species: ["wolf"], tags: ["anthro", "feral"] },
  50094. {
  50095. anthroFront: {
  50096. height: math.unit(8, "feet"),
  50097. weight: math.unit(300, "lb"),
  50098. name: "Front",
  50099. image: {
  50100. source: "./media/characters/blitz-dunkelheit/anthro-front.svg",
  50101. extra: 1272/1176,
  50102. bottom: 53/1325
  50103. },
  50104. form: "anthro",
  50105. default: true
  50106. },
  50107. feralSide: {
  50108. height: math.unit(4, "feet"),
  50109. weight: math.unit(250, "lb"),
  50110. name: "Side",
  50111. image: {
  50112. source: "./media/characters/blitz-dunkelheit/feral-side.svg",
  50113. extra: 731/621,
  50114. bottom: 0/731
  50115. },
  50116. form: "feral",
  50117. default: true
  50118. },
  50119. },
  50120. [
  50121. {
  50122. name: "Regular",
  50123. height: math.unit(8, "feet"),
  50124. form: "anthro"
  50125. },
  50126. {
  50127. name: "Macro",
  50128. height: math.unit(250, "feet"),
  50129. form: "anthro",
  50130. default: true
  50131. },
  50132. {
  50133. name: "Regular",
  50134. height: math.unit(4, "feet"),
  50135. form: "feral"
  50136. },
  50137. {
  50138. name: "Macro",
  50139. height: math.unit(125, "feet"),
  50140. form: "feral",
  50141. default: true
  50142. },
  50143. ],
  50144. {
  50145. "anthro": {
  50146. name: "Anthro",
  50147. default: true
  50148. },
  50149. "feral": {
  50150. name: "Feral",
  50151. },
  50152. }
  50153. ))
  50154. characterMakers.push(() => makeCharacter(
  50155. { name: "Maple (Javira Dragon)", species: ["javira-dragon"], tags: ["feral"] },
  50156. {
  50157. front: {
  50158. height: math.unit(11 + 10/12, "feet"),
  50159. weight: math.unit(1587, "kg"),
  50160. name: "Front",
  50161. image: {
  50162. source: "./media/characters/maple-javira-dragon/front.svg",
  50163. extra: 1136/744,
  50164. bottom: 73/1209
  50165. }
  50166. },
  50167. side: {
  50168. height: math.unit(11 + 10/12, "feet"),
  50169. weight: math.unit(1587, "kg"),
  50170. name: "Side",
  50171. image: {
  50172. source: "./media/characters/maple-javira-dragon/side.svg",
  50173. extra: 712/505,
  50174. bottom: 17/729
  50175. }
  50176. },
  50177. head: {
  50178. height: math.unit(8.05, "feet"),
  50179. name: "Head",
  50180. image: {
  50181. source: "./media/characters/maple-javira-dragon/head.svg",
  50182. extra: 1420/1344,
  50183. bottom: 0/1420
  50184. }
  50185. },
  50186. },
  50187. [
  50188. {
  50189. name: "Normal",
  50190. height: math.unit(11 + 10/12, "feet"),
  50191. default: true
  50192. },
  50193. ]
  50194. ))
  50195. characterMakers.push(() => makeCharacter(
  50196. { name: "Sonia Wyverntail", species: ["kobold"], tags: ["anthro"] },
  50197. {
  50198. front: {
  50199. height: math.unit(117, "cm"),
  50200. weight: math.unit(50, "kg"),
  50201. name: "Front",
  50202. image: {
  50203. source: "./media/characters/sonia-wyverntail/front.svg",
  50204. extra: 708/592,
  50205. bottom: 25/733
  50206. }
  50207. },
  50208. },
  50209. [
  50210. {
  50211. name: "Normal",
  50212. height: math.unit(117, "cm"),
  50213. default: true
  50214. },
  50215. ]
  50216. ))
  50217. characterMakers.push(() => makeCharacter(
  50218. { name: "Micah", species: ["moth"], tags: ["anthro"] },
  50219. {
  50220. front: {
  50221. height: math.unit(6 + 5/12, "feet"),
  50222. name: "Front",
  50223. image: {
  50224. source: "./media/characters/micah/front.svg",
  50225. extra: 1758/1546,
  50226. bottom: 214/1972
  50227. }
  50228. },
  50229. },
  50230. [
  50231. {
  50232. name: "Normal",
  50233. height: math.unit(6 + 5/12, "feet"),
  50234. default: true
  50235. },
  50236. ]
  50237. ))
  50238. characterMakers.push(() => makeCharacter(
  50239. { name: "Zarya", species: ["raccoon"], tags: ["anthro"] },
  50240. {
  50241. front: {
  50242. height: math.unit(5 + 10/12, "feet"),
  50243. weight: math.unit(220, "lb"),
  50244. name: "Front",
  50245. image: {
  50246. source: "./media/characters/zarya/front.svg",
  50247. extra: 593/572,
  50248. bottom: 50/643
  50249. }
  50250. },
  50251. back: {
  50252. height: math.unit(5 + 10/12, "feet"),
  50253. weight: math.unit(220, "lb"),
  50254. name: "Back",
  50255. image: {
  50256. source: "./media/characters/zarya/back.svg",
  50257. extra: 603/582,
  50258. bottom: 38/641
  50259. }
  50260. },
  50261. },
  50262. [
  50263. {
  50264. name: "Normal",
  50265. height: math.unit(5 + 10/12, "feet"),
  50266. default: true
  50267. },
  50268. ]
  50269. ))
  50270. characterMakers.push(() => makeCharacter(
  50271. { name: "Sven Hatisson", species: ["wolf"], tags: ["anthro"] },
  50272. {
  50273. front: {
  50274. height: math.unit(7.5, "feet"),
  50275. name: "Front",
  50276. image: {
  50277. source: "./media/characters/sven-hatisson/front.svg",
  50278. extra: 917/857,
  50279. bottom: 42/959
  50280. }
  50281. },
  50282. back: {
  50283. height: math.unit(7.5, "feet"),
  50284. name: "Back",
  50285. image: {
  50286. source: "./media/characters/sven-hatisson/back.svg",
  50287. extra: 903/856,
  50288. bottom: 15/918
  50289. }
  50290. },
  50291. },
  50292. [
  50293. {
  50294. name: "Base Height",
  50295. height: math.unit(7.5, "feet")
  50296. },
  50297. {
  50298. name: "Usual Height",
  50299. height: math.unit(13.5, "feet"),
  50300. default: true
  50301. },
  50302. {
  50303. name: "Smaller Macro",
  50304. height: math.unit(85, "feet")
  50305. },
  50306. {
  50307. name: "Moderate Macro",
  50308. height: math.unit(320, "feet")
  50309. },
  50310. {
  50311. name: "Large Macro",
  50312. height: math.unit(1000, "feet")
  50313. },
  50314. {
  50315. name: "Largest Size",
  50316. height: math.unit(2, "miles")
  50317. },
  50318. ]
  50319. ))
  50320. characterMakers.push(() => makeCharacter(
  50321. { name: "Terra", species: ["dragon", "otter"], tags: ["feral"] },
  50322. {
  50323. side: {
  50324. height: math.unit(1.8, "meters"),
  50325. weight: math.unit(275, "kg"),
  50326. name: "Side",
  50327. image: {
  50328. source: "./media/characters/terra/side.svg",
  50329. extra: 1273/1147,
  50330. bottom: 0/1273
  50331. }
  50332. },
  50333. },
  50334. [
  50335. {
  50336. name: "Normal",
  50337. height: math.unit(16.2, "meters"),
  50338. default: true
  50339. },
  50340. ]
  50341. ))
  50342. characterMakers.push(() => makeCharacter(
  50343. { name: "Rae", species: ["borzoi", "werewolf"], tags: ["anthro"] },
  50344. {
  50345. borzoiFront: {
  50346. height: math.unit(6 + 9/12, "feet"),
  50347. name: "Front",
  50348. image: {
  50349. source: "./media/characters/rae/borzoi-front.svg",
  50350. extra: 1161/1098,
  50351. bottom: 31/1192
  50352. },
  50353. form: "borzoi",
  50354. default: true
  50355. },
  50356. werewolfFront: {
  50357. height: math.unit(8 + 7/12, "feet"),
  50358. name: "Front",
  50359. image: {
  50360. source: "./media/characters/rae/werewolf-front.svg",
  50361. extra: 1411/1334,
  50362. bottom: 127/1538
  50363. },
  50364. form: "werewolf",
  50365. default: true
  50366. },
  50367. },
  50368. [
  50369. {
  50370. name: "Normal",
  50371. height: math.unit(6 + 9/12, "feet"),
  50372. default: true,
  50373. form: "borzoi"
  50374. },
  50375. {
  50376. name: "Normal",
  50377. height: math.unit(8 + 7/12, "feet"),
  50378. default: true,
  50379. form: "werewolf"
  50380. },
  50381. ],
  50382. {
  50383. "borzoi": {
  50384. name: "Borzoi",
  50385. default: true
  50386. },
  50387. "werewolf": {
  50388. name: "Werewolf",
  50389. },
  50390. }
  50391. ))
  50392. characterMakers.push(() => makeCharacter(
  50393. { name: "Kit", species: ["kitsune"], tags: ["anthro"] },
  50394. {
  50395. front: {
  50396. height: math.unit(8 + 7/12, "feet"),
  50397. weight: math.unit(482, "lb"),
  50398. name: "Front",
  50399. image: {
  50400. source: "./media/characters/kit/front.svg",
  50401. extra: 1247/1103,
  50402. bottom: 41/1288
  50403. }
  50404. },
  50405. back: {
  50406. height: math.unit(8 + 7/12, "feet"),
  50407. weight: math.unit(482, "lb"),
  50408. name: "Back",
  50409. image: {
  50410. source: "./media/characters/kit/back.svg",
  50411. extra: 1252/1123,
  50412. bottom: 21/1273
  50413. }
  50414. },
  50415. paw: {
  50416. height: math.unit(1.46, "feet"),
  50417. name: "Paw",
  50418. image: {
  50419. source: "./media/characters/kit/paw.svg"
  50420. }
  50421. },
  50422. },
  50423. [
  50424. {
  50425. name: "Normal",
  50426. height: math.unit(8 + 7/12, "feet"),
  50427. default: true
  50428. },
  50429. {
  50430. name: "Tall",
  50431. height: math.unit(7.8, "meters")
  50432. },
  50433. {
  50434. name: "Very Tall",
  50435. height: math.unit(17.9, "meters")
  50436. },
  50437. {
  50438. name: "Semi-Macro",
  50439. height: math.unit(45.8, "meters")
  50440. },
  50441. {
  50442. name: "Macro",
  50443. height: math.unit(86.1, "meters")
  50444. },
  50445. {
  50446. name: "Godlike",
  50447. height: math.unit(749.9, "meters")
  50448. },
  50449. {
  50450. name: "Second Form",
  50451. height: math.unit(92183.9, "meters")
  50452. },
  50453. {
  50454. name: "Third Form",
  50455. height: math.unit(164665.7, "meters")
  50456. },
  50457. {
  50458. name: "Fourth Form",
  50459. height: math.unit(745112.2, "meters")
  50460. },
  50461. {
  50462. name: "Final Form",
  50463. height: math.unit(9.14e144, "meters")
  50464. },
  50465. ]
  50466. ))
  50467. characterMakers.push(() => makeCharacter(
  50468. { name: "Celeste", species: ["raptor", "alien"], tags: ["feral"] },
  50469. {
  50470. side: {
  50471. height: math.unit(0.6, "meters"),
  50472. weight: math.unit(24, "kg"),
  50473. name: "Side",
  50474. image: {
  50475. source: "./media/characters/celeste/side.svg",
  50476. extra: 810/517,
  50477. bottom: 53/863
  50478. }
  50479. },
  50480. },
  50481. [
  50482. {
  50483. name: "Velociraptor",
  50484. height: math.unit(0.6, "meters"),
  50485. default: true
  50486. },
  50487. {
  50488. name: "Utahraptor",
  50489. height: math.unit(1.8, "meters")
  50490. },
  50491. {
  50492. name: "Gallimimus",
  50493. height: math.unit(4.0, "meters")
  50494. },
  50495. {
  50496. name: "Large",
  50497. height: math.unit(20, "meters")
  50498. },
  50499. {
  50500. name: "Planetary",
  50501. height: math.unit(50, "megameters")
  50502. },
  50503. {
  50504. name: "Stellar",
  50505. height: math.unit(1.5, "gigameters")
  50506. },
  50507. {
  50508. name: "Galactic",
  50509. height: math.unit(100, "exameters")
  50510. },
  50511. ]
  50512. ))
  50513. characterMakers.push(() => makeCharacter(
  50514. { name: "Glacia", species: ["koopew"], tags: ["anthro"] },
  50515. {
  50516. front: {
  50517. height: math.unit(6, "feet"),
  50518. weight: math.unit(210, "lb"),
  50519. name: "Front",
  50520. image: {
  50521. source: "./media/characters/glacia/front.svg",
  50522. extra: 958/901,
  50523. bottom: 45/1003
  50524. }
  50525. },
  50526. },
  50527. [
  50528. {
  50529. name: "Macro",
  50530. height: math.unit(1000, "meters"),
  50531. default: true
  50532. },
  50533. ]
  50534. ))
  50535. characterMakers.push(() => makeCharacter(
  50536. { name: "Giri", species: ["giraffe"], tags: ["anthro"] },
  50537. {
  50538. front: {
  50539. height: math.unit(4, "meters"),
  50540. name: "Front",
  50541. image: {
  50542. source: "./media/characters/giri/front.svg",
  50543. extra: 966/894,
  50544. bottom: 21/987
  50545. }
  50546. },
  50547. },
  50548. [
  50549. {
  50550. name: "Normal",
  50551. height: math.unit(4, "meters"),
  50552. default: true
  50553. },
  50554. ]
  50555. ))
  50556. characterMakers.push(() => makeCharacter(
  50557. { name: "Tin", species: ["nevrean"], tags: ["anthro"] },
  50558. {
  50559. back: {
  50560. height: math.unit(4, "feet"),
  50561. weight: math.unit(37, "lb"),
  50562. name: "Back",
  50563. image: {
  50564. source: "./media/characters/tin/back.svg",
  50565. extra: 845/780,
  50566. bottom: 28/873
  50567. }
  50568. },
  50569. },
  50570. [
  50571. {
  50572. name: "Normal",
  50573. height: math.unit(4, "feet"),
  50574. default: true
  50575. },
  50576. ]
  50577. ))
  50578. characterMakers.push(() => makeCharacter(
  50579. { name: "Cadenza Vivace", species: ["titanoboa"], tags: ["feral"] },
  50580. {
  50581. front: {
  50582. height: math.unit(25, "feet"),
  50583. name: "Front",
  50584. image: {
  50585. source: "./media/characters/cadenza-vivace/front.svg",
  50586. extra: 1842/1578,
  50587. bottom: 30/1872
  50588. }
  50589. },
  50590. },
  50591. [
  50592. {
  50593. name: "Macro",
  50594. height: math.unit(25, "feet"),
  50595. default: true
  50596. },
  50597. ]
  50598. ))
  50599. //characters
  50600. function makeCharacters() {
  50601. const results = [];
  50602. characterMakers.forEach(character => {
  50603. results.push(character());
  50604. });
  50605. return results;
  50606. }