less copy protection, more size visualization
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 

51349 строки
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.energyNeed) {
  46. views[key].attributes.capacity = {
  47. name: "Food Intake",
  48. power: 3,
  49. type: "energy",
  50. base: value.energyNeed
  51. }
  52. }
  53. if (value.extraAttributes) {
  54. Object.entries(value.extraAttributes).forEach(([attrKey, attrValue]) => {
  55. views[key].attributes[attrKey] = attrValue
  56. })
  57. }
  58. });
  59. return createEntityMaker(info, views, defaultSizes, forms);
  60. }
  61. const speciesData = {
  62. animal: {
  63. name: "Animal"
  64. },
  65. dog: {
  66. name: "Dog",
  67. parents: [
  68. "canine"
  69. ]
  70. },
  71. canine: {
  72. name: "Canine",
  73. parents: [
  74. "mammal"
  75. ]
  76. },
  77. crux: {
  78. name: "Crux",
  79. parents: [
  80. "mammal"
  81. ]
  82. },
  83. mammal: {
  84. name: "Mammal",
  85. parents: [
  86. "animal"
  87. ]
  88. },
  89. "rough-collie": {
  90. name: "Rough Collie",
  91. parents: [
  92. "dog"
  93. ]
  94. },
  95. dragon: {
  96. name: "Dragon",
  97. parents: [
  98. "reptile"
  99. ]
  100. },
  101. reptile: {
  102. name: "Reptile",
  103. parents: [
  104. "animal"
  105. ]
  106. },
  107. woodpecker: {
  108. name: "Woodpecker",
  109. parents: [
  110. "avian"
  111. ]
  112. },
  113. avian: {
  114. name: "Avian",
  115. parents: [
  116. "animal"
  117. ]
  118. },
  119. kitsune: {
  120. name: "Kitsune",
  121. parents: [
  122. "fox"
  123. ]
  124. },
  125. fox: {
  126. name: "Fox",
  127. parents: [
  128. "mammal"
  129. ]
  130. },
  131. pokemon: {
  132. name: "Pokemon",
  133. },
  134. tiger: {
  135. name: "Tiger",
  136. parents: [
  137. "cat"
  138. ]
  139. },
  140. cat: {
  141. name: "Cat",
  142. parents: [
  143. "feliform"
  144. ]
  145. },
  146. "blue-jay": {
  147. name: "Blue Jay",
  148. parents: [
  149. "avian"
  150. ]
  151. },
  152. wolf: {
  153. name: "Wolf",
  154. parents: [
  155. "mammal"
  156. ]
  157. },
  158. coyote: {
  159. name: "Coyote",
  160. parents: [
  161. "mammal"
  162. ]
  163. },
  164. raccoon: {
  165. name: "Raccoon",
  166. parents: [
  167. "mammal"
  168. ]
  169. },
  170. weasel: {
  171. name: "Weasel",
  172. parents: [
  173. "mustelid"
  174. ]
  175. },
  176. "red-panda": {
  177. name: "Red Panda",
  178. parents: [
  179. "mammal"
  180. ]
  181. },
  182. dolphin: {
  183. name: "Dolphin",
  184. parents: [
  185. "mammal"
  186. ]
  187. },
  188. "african-wild-dog": {
  189. name: "African Wild Dog",
  190. parents: [
  191. "canine"
  192. ]
  193. },
  194. "hyena": {
  195. name: "Hyena",
  196. parents: [
  197. "feliform"
  198. ]
  199. },
  200. "carbuncle": {
  201. name: "Carbuncle",
  202. parents: [
  203. "animal"
  204. ]
  205. },
  206. bat: {
  207. name: "Bat",
  208. parents: [
  209. "mammal"
  210. ]
  211. },
  212. "leaf-nosed-bat": {
  213. name: "Leaf-Nosed Bat",
  214. parents: [
  215. "bat"
  216. ]
  217. },
  218. "fish": {
  219. name: "Fish",
  220. parents: [
  221. "animal"
  222. ]
  223. },
  224. "ram": {
  225. name: "Ram",
  226. parents: [
  227. "mammal"
  228. ]
  229. },
  230. "demon": {
  231. name: "Demon",
  232. parents: [
  233. "supernatural"
  234. ]
  235. },
  236. "cougar": {
  237. name: "Cougar",
  238. parents: [
  239. "cat"
  240. ]
  241. },
  242. "goat": {
  243. name: "Goat",
  244. parents: [
  245. "mammal"
  246. ]
  247. },
  248. "lion": {
  249. name: "Lion",
  250. parents: [
  251. "cat"
  252. ]
  253. },
  254. "harpy-eager": {
  255. name: "Harpy Eagle",
  256. parents: [
  257. "avian"
  258. ]
  259. },
  260. "deer": {
  261. name: "Deer",
  262. parents: [
  263. "mammal"
  264. ]
  265. },
  266. "phoenix": {
  267. name: "Phoenix",
  268. parents: [
  269. "avian"
  270. ]
  271. },
  272. "aeromorph": {
  273. name: "Aeromorph",
  274. parents: [
  275. "machine"
  276. ]
  277. },
  278. "machine": {
  279. name: "Machine",
  280. },
  281. "android": {
  282. name: "Android",
  283. parents: [
  284. "machine"
  285. ]
  286. },
  287. "jackal": {
  288. name: "Jackal",
  289. parents: [
  290. "canine"
  291. ]
  292. },
  293. "corvid": {
  294. name: "Corvid",
  295. parents: [
  296. "avian"
  297. ]
  298. },
  299. "pharaoh-hound": {
  300. name: "Pharaoh Hound",
  301. parents: [
  302. "dog"
  303. ]
  304. },
  305. "skunk": {
  306. name: "Skunk",
  307. parents: [
  308. "mammal"
  309. ]
  310. },
  311. "shark": {
  312. name: "Shark",
  313. parents: [
  314. "fish"
  315. ]
  316. },
  317. "black-panther": {
  318. name: "Black Panther",
  319. parents: [
  320. "cat"
  321. ]
  322. },
  323. "umbra": {
  324. name: "Umbra",
  325. parents: [
  326. "animal"
  327. ]
  328. },
  329. "raven": {
  330. name: "Raven",
  331. parents: [
  332. "corvid"
  333. ]
  334. },
  335. "snow-leopard": {
  336. name: "Snow Leopard",
  337. parents: [
  338. "cat"
  339. ]
  340. },
  341. "barbary-lion": {
  342. name: "Barbary Lion",
  343. parents: [
  344. "lion"
  345. ]
  346. },
  347. "dra'gal": {
  348. name: "Dra'Gal",
  349. parents: [
  350. "mammal"
  351. ]
  352. },
  353. "german-shepherd": {
  354. name: "German Shepherd",
  355. parents: [
  356. "dog"
  357. ]
  358. },
  359. "bayleef": {
  360. name: "Bayleef",
  361. parents: [
  362. "pokemon",
  363. "plant",
  364. "animal"
  365. ]
  366. },
  367. "mouse": {
  368. name: "Mouse",
  369. parents: [
  370. "rodent"
  371. ]
  372. },
  373. "rat": {
  374. name: "Rat",
  375. parents: [
  376. "mammal"
  377. ]
  378. },
  379. "hoshiko-beast": {
  380. name: "Hoshiko Beast",
  381. parents: ["animal"]
  382. },
  383. "snow-jugani": {
  384. name: "Snow Jugani",
  385. parents: ["cat"]
  386. },
  387. "patamon": {
  388. name: "Patamon",
  389. parents: ["digimon", "guinea-pig"]
  390. },
  391. "digimon": {
  392. name: "Digimon",
  393. },
  394. "jugani": {
  395. name: "Jugani",
  396. parents: ["cat"]
  397. },
  398. "luxray": {
  399. name: "Luxray",
  400. parents: ["pokemon", "lion"]
  401. },
  402. "mech": {
  403. name: "Mech",
  404. parents: ["machine"]
  405. },
  406. "zoid": {
  407. name: "Zoid",
  408. parents: ["mech"]
  409. },
  410. "monster": {
  411. name: "Monster",
  412. parents: ["animal"]
  413. },
  414. "foo-dog": {
  415. name: "Foo Dog",
  416. parents: ["mammal"]
  417. },
  418. "elephant": {
  419. name: "Elephant",
  420. parents: ["mammal"]
  421. },
  422. "eagle": {
  423. name: "Eagle",
  424. parents: ["avian"]
  425. },
  426. "cow": {
  427. name: "Cow",
  428. parents: ["mammal"]
  429. },
  430. "crocodile": {
  431. name: "Crocodile",
  432. parents: ["reptile"]
  433. },
  434. "borzoi": {
  435. name: "Borzoi",
  436. parents: ["dog"]
  437. },
  438. "snake": {
  439. name: "Snake",
  440. parents: ["reptile"]
  441. },
  442. "horned-bush-viper": {
  443. name: "Horned Bush Viper",
  444. parents: ["viper"]
  445. },
  446. "cobra": {
  447. name: "Cobra",
  448. parents: ["snake"]
  449. },
  450. "harpy-eagle": {
  451. name: "Harpy Eagle",
  452. parents: ["eagle"]
  453. },
  454. "raptor": {
  455. name: "Raptor",
  456. parents: ["dinosaur"]
  457. },
  458. "dinosaur": {
  459. name: "Dinosaur",
  460. parents: ["reptile"]
  461. },
  462. "veilhound": {
  463. name: "Veilhound",
  464. parents: ["hellhound"]
  465. },
  466. "hellhound": {
  467. name: "Hellhound",
  468. parents: ["canine", "demon"]
  469. },
  470. "insect": {
  471. name: "Insect",
  472. parents: ["animal"]
  473. },
  474. "beetle": {
  475. name: "Beetle",
  476. parents: ["insect"]
  477. },
  478. "moth": {
  479. name: "Moth",
  480. parents: ["insect"]
  481. },
  482. "eastern-dragon": {
  483. name: "Eastern Dragon",
  484. parents: ["dragon"]
  485. },
  486. "jaguar": {
  487. name: "Jaguar",
  488. parents: ["cat"]
  489. },
  490. "horse": {
  491. name: "Horse",
  492. parents: ["mammal"]
  493. },
  494. "sergal": {
  495. name: "Sergal",
  496. parents: ["mammal"]
  497. },
  498. "gryphon": {
  499. name: "Gryphon",
  500. parents: ["lion", "eagle"]
  501. },
  502. "robot": {
  503. name: "Robot",
  504. parents: ["machine"]
  505. },
  506. "medihound": {
  507. name: "Medihound",
  508. parents: ["robot", "dog"]
  509. },
  510. "sylveon": {
  511. name: "Sylveon",
  512. parents: ["pokemon"]
  513. },
  514. "catgirl": {
  515. name: "Catgirl",
  516. parents: ["mammal"]
  517. },
  518. "cowgirl": {
  519. name: "Cowgirl",
  520. parents: ["mammal"]
  521. },
  522. "pony": {
  523. name: "Pony",
  524. parents: ["horse"]
  525. },
  526. "rabbit": {
  527. name: "Rabbit",
  528. parents: ["leporidae"]
  529. },
  530. "fennec-fox": {
  531. name: "Fennec Fox",
  532. parents: ["fox"]
  533. },
  534. "azodian": {
  535. name: "Azodian",
  536. parents: ["mouse"]
  537. },
  538. "shiba-inu": {
  539. name: "Shiba Inu",
  540. parents: ["dog"]
  541. },
  542. "changeling": {
  543. name: "Changeling",
  544. parents: ["insect"]
  545. },
  546. "cheetah": {
  547. name: "Cheetah",
  548. parents: ["cat"]
  549. },
  550. "golden-jackal": {
  551. name: "Golden Jackal",
  552. parents: ["jackal"]
  553. },
  554. "manectric": {
  555. name: "Manectric",
  556. parents: ["pokemon", "wolf"]
  557. },
  558. "rat": {
  559. name: "Rat",
  560. parents: ["rodent"]
  561. },
  562. "rodent": {
  563. name: "Rodent",
  564. parents: ["mammal"]
  565. },
  566. "octocoon": {
  567. name: "Octocoon",
  568. parents: ["raccoon", "octopus"]
  569. },
  570. "octopus": {
  571. name: "Octopus",
  572. parents: ["fish"]
  573. },
  574. "werewolf": {
  575. name: "Werewolf",
  576. parents: ["wolf", "werebeast"]
  577. },
  578. "werebeast": {
  579. name: "Werebeast",
  580. parents: ["monster"]
  581. },
  582. "meerkat": {
  583. name: "Meerkat",
  584. parents: ["mammal"]
  585. },
  586. "human": {
  587. name: "Human",
  588. parents: ["mammal"]
  589. },
  590. "geth": {
  591. name: "Geth",
  592. parents: ["android"]
  593. },
  594. "husky": {
  595. name: "Husky",
  596. parents: ["dog"]
  597. },
  598. "long-eared-bat": {
  599. name: "Long Eared Bat",
  600. parents: ["bat"]
  601. },
  602. "lizard": {
  603. name: "Lizard",
  604. parents: ["reptile"]
  605. },
  606. "salamander": {
  607. name: "Salamander",
  608. parents: ["lizard"]
  609. },
  610. "chameleon": {
  611. name: "Chameleon",
  612. parents: ["lizard"]
  613. },
  614. "gecko": {
  615. name: "Gecko",
  616. parents: ["lizard"]
  617. },
  618. "kobold": {
  619. name: "Kobold",
  620. parents: ["reptile"]
  621. },
  622. "charizard": {
  623. name: "Charizard",
  624. parents: ["pokemon", "dragon"]
  625. },
  626. "lugia": {
  627. name: "Lugia",
  628. parents: ["pokemon", "avian"]
  629. },
  630. "cerberus": {
  631. name: "Cerberus",
  632. parents: ["dog"]
  633. },
  634. "tyrantrum": {
  635. name: "Tyrantrum",
  636. parents: ["pokemon"]
  637. },
  638. "lemur": {
  639. name: "Lemur",
  640. parents: ["mammal"]
  641. },
  642. "kelpie": {
  643. name: "Kelpie",
  644. parents: ["horse", "monster"]
  645. },
  646. "labrador": {
  647. name: "Labrador",
  648. parents: ["dog"]
  649. },
  650. "sylveon": {
  651. name: "Sylveon",
  652. parents: ["eeveelution"]
  653. },
  654. "eeveelution": {
  655. name: "Eeveelution",
  656. parents: ["pokemon", "cat"]
  657. },
  658. "polar-bear": {
  659. name: "Polar Bear",
  660. parents: ["bear"]
  661. },
  662. "bear": {
  663. name: "Bear",
  664. parents: ["mammal"]
  665. },
  666. "absol": {
  667. name: "Absol",
  668. parents: ["pokemon", "cat"]
  669. },
  670. "wolver": {
  671. name: "Wolver",
  672. parents: ["mammal"]
  673. },
  674. "rottweiler": {
  675. name: "Rottweiler",
  676. parents: ["dog"]
  677. },
  678. "zebra": {
  679. name: "Zebra",
  680. parents: ["horse"]
  681. },
  682. "yoshi": {
  683. name: "Yoshi",
  684. parents: ["lizard"]
  685. },
  686. "lynx": {
  687. name: "Lynx",
  688. parents: ["cat"]
  689. },
  690. "unknown": {
  691. name: "Unknown",
  692. parents: []
  693. },
  694. "thylacine": {
  695. name: "Thylacine",
  696. parents: ["mammal"]
  697. },
  698. "gabumon": {
  699. name: "Gabumon",
  700. parents: ["digimon"]
  701. },
  702. "border-collie": {
  703. name: "Border Collie",
  704. parents: ["dog"]
  705. },
  706. "imp": {
  707. name: "Imp",
  708. parents: ["demon"]
  709. },
  710. "kangaroo": {
  711. name: "Kangaroo",
  712. parents: ["marsupial"]
  713. },
  714. "renamon": {
  715. name: "Renamon",
  716. parents: ["digimon", "fox"]
  717. },
  718. "candy-orca-dragon": {
  719. name: "Candy Orca Dragon",
  720. parents: ["fish", "dragon", "candy"]
  721. },
  722. "sabertooth-tiger": {
  723. name: "Sabertooth Tiger",
  724. parents: ["cat"]
  725. },
  726. "espurr": {
  727. name: "Espurr",
  728. parents: ["pokemon", "cat"]
  729. },
  730. "otter": {
  731. name: "Otter",
  732. parents: ["mustelid"]
  733. },
  734. "elemental": {
  735. name: "Elemental",
  736. parents: ["mammal"]
  737. },
  738. "mew": {
  739. name: "Mew",
  740. parents: ["pokemon"]
  741. },
  742. "goodra": {
  743. name: "Goodra",
  744. parents: ["pokemon"]
  745. },
  746. "fairy": {
  747. name: "Fairy",
  748. parents: ["magical"]
  749. },
  750. "typhlosion": {
  751. name: "Typhlosion",
  752. parents: ["pokemon"]
  753. },
  754. "magical": {
  755. name: "Magical",
  756. parents: []
  757. },
  758. "xenomorph": {
  759. name: "Xenomorph",
  760. parents: ["monster", "alien"]
  761. },
  762. "charr": {
  763. name: "Charr",
  764. parents: ["cat"]
  765. },
  766. "siberian-husky": {
  767. name: "Siberian Husky",
  768. parents: ["husky"]
  769. },
  770. "alligator": {
  771. name: "Alligator",
  772. parents: ["reptile"]
  773. },
  774. "bernese-mountain-dog": {
  775. name: "Bernese Mountain Dog",
  776. parents: ["dog"]
  777. },
  778. "reshiram": {
  779. name: "Reshiram",
  780. parents: ["pokemon", "dragon"]
  781. },
  782. "grizzly-bear": {
  783. name: "Grizzly Bear",
  784. parents: ["bear"]
  785. },
  786. "water-monitor": {
  787. name: "Water Monitor",
  788. parents: ["lizard"]
  789. },
  790. "banchofossa": {
  791. name: "Banchofossa",
  792. parents: ["mammal"]
  793. },
  794. "kirin": {
  795. name: "Kirin",
  796. parents: ["monster"]
  797. },
  798. "quilava": {
  799. name: "Quilava",
  800. parents: ["pokemon"]
  801. },
  802. "seviper": {
  803. name: "Seviper",
  804. parents: ["pokemon", "viper"]
  805. },
  806. "flying-fox": {
  807. name: "Flying Fox",
  808. parents: ["bat"]
  809. },
  810. "keynain": {
  811. name: "Keynain",
  812. parents: ["avian"]
  813. },
  814. "lucario": {
  815. name: "Lucario",
  816. parents: ["pokemon", "jackal"]
  817. },
  818. "siamese-cat": {
  819. name: "Siamese Cat",
  820. parents: ["cat"]
  821. },
  822. "spider": {
  823. name: "Spider",
  824. parents: ["insect"]
  825. },
  826. "samurott": {
  827. name: "Samurott",
  828. parents: ["pokemon", "otter"]
  829. },
  830. "megalodon": {
  831. name: "Megalodon",
  832. parents: ["shark"]
  833. },
  834. "unicorn": {
  835. name: "Unicorn",
  836. parents: ["horse"]
  837. },
  838. "greninja": {
  839. name: "Greninja",
  840. parents: ["pokemon", "frog"]
  841. },
  842. "water-dragon": {
  843. name: "Water Dragon",
  844. parents: ["dragon"]
  845. },
  846. "cross-fox": {
  847. name: "Cross Fox",
  848. parents: ["fox"]
  849. },
  850. "synth": {
  851. name: "Synth",
  852. parents: ["machine"]
  853. },
  854. "construct": {
  855. name: "Construct",
  856. parents: []
  857. },
  858. "mexican-wolf": {
  859. name: "Mexican Wolf",
  860. parents: ["wolf"]
  861. },
  862. "leopard": {
  863. name: "Leopard",
  864. parents: ["cat"]
  865. },
  866. "pig": {
  867. name: "Pig",
  868. parents: ["mammal"]
  869. },
  870. "ampharos": {
  871. name: "Ampharos",
  872. parents: ["pokemon", "sheep"]
  873. },
  874. "orca": {
  875. name: "Orca",
  876. parents: ["fish"]
  877. },
  878. "lycanroc": {
  879. name: "Lycanroc",
  880. parents: ["pokemon", "wolf"]
  881. },
  882. "surkanu": {
  883. name: "Surkanu",
  884. parents: ["monster"]
  885. },
  886. "seal": {
  887. name: "Seal",
  888. parents: ["mammal"]
  889. },
  890. "keldeo": {
  891. name: "Keldeo",
  892. parents: ["pokemon"]
  893. },
  894. "great-dane": {
  895. name: "Great Dane",
  896. parents: ["dog"]
  897. },
  898. "black-backed-jackal": {
  899. name: "Black Backed Jackal",
  900. parents: ["jackal"]
  901. },
  902. "sheep": {
  903. name: "Sheep",
  904. parents: ["mammal"]
  905. },
  906. "leopard-seal": {
  907. name: "Leopard Seal",
  908. parents: ["seal"]
  909. },
  910. "zoroark": {
  911. name: "Zoroark",
  912. parents: ["pokemon", "fox"]
  913. },
  914. "maned-wolf": {
  915. name: "Maned Wolf",
  916. parents: ["canine"]
  917. },
  918. "dracha": {
  919. name: "Dracha",
  920. parents: ["dragon"]
  921. },
  922. "wolxi": {
  923. name: "Wolxi",
  924. parents: ["mammal", "alien"]
  925. },
  926. "dratini": {
  927. name: "Dratini",
  928. parents: ["pokemon", "dragon"]
  929. },
  930. "skaven": {
  931. name: "Skaven",
  932. parents: ["rat"]
  933. },
  934. "mongoose": {
  935. name: "Mongoose",
  936. parents: ["mammal"]
  937. },
  938. "lopunny": {
  939. name: "Lopunny",
  940. parents: ["pokemon", "rabbit"]
  941. },
  942. "feraligatr": {
  943. name: "Feraligatr",
  944. parents: ["pokemon", "alligator"]
  945. },
  946. "houndoom": {
  947. name: "Houndoom",
  948. parents: ["pokemon", "dog"]
  949. },
  950. "protogen": {
  951. name: "Protogen",
  952. parents: ["machine"]
  953. },
  954. "saint-bernard": {
  955. name: "Saint Bernard",
  956. parents: ["dog"]
  957. },
  958. "crow": {
  959. name: "Crow",
  960. parents: ["corvid"]
  961. },
  962. "delphox": {
  963. name: "Delphox",
  964. parents: ["pokemon", "fox"]
  965. },
  966. "moose": {
  967. name: "Moose",
  968. parents: ["mammal"]
  969. },
  970. "joraxian": {
  971. name: "Joraxian",
  972. parents: ["monster", "canine", "demon"]
  973. },
  974. "nimbat": {
  975. name: "Nimbat",
  976. parents: ["mammal"]
  977. },
  978. "aardwolf": {
  979. name: "Aardwolf",
  980. parents: ["canine"]
  981. },
  982. "fluudrani": {
  983. name: "Fluudrani",
  984. parents: ["animal"]
  985. },
  986. "arcanine": {
  987. name: "Arcanine",
  988. parents: ["pokemon", "dog"]
  989. },
  990. "inteleon": {
  991. name: "Inteleon",
  992. parents: ["pokemon", "fish"]
  993. },
  994. "ninetales": {
  995. name: "Ninetales",
  996. parents: ["pokemon", "kitsune"]
  997. },
  998. "tigrex": {
  999. name: "Tigrex",
  1000. parents: ["tiger"]
  1001. },
  1002. "zorua": {
  1003. name: "Zorua",
  1004. parents: ["pokemon", "fox"]
  1005. },
  1006. "vulpix": {
  1007. name: "Vulpix",
  1008. parents: ["pokemon", "fox"]
  1009. },
  1010. "barghest": {
  1011. name: "Barghest",
  1012. parents: ["monster"]
  1013. },
  1014. "gray-wolf": {
  1015. name: "Gray Wolf",
  1016. parents: ["wolf"]
  1017. },
  1018. "ruppells-fox": {
  1019. name: "Rüppell's Fox",
  1020. parents: ["fox"]
  1021. },
  1022. "bull-terrier": {
  1023. name: "Bull Terrier",
  1024. parents: ["dog"]
  1025. },
  1026. "european-honey-buzzard": {
  1027. name: "European Honey Buzzard",
  1028. parents: ["avian"]
  1029. },
  1030. "t-rex": {
  1031. name: "Tyrannosaurus Rex",
  1032. parents: ["dinosaur"]
  1033. },
  1034. "mactarian": {
  1035. name: "Mactarian",
  1036. parents: ["shark", "monster"]
  1037. },
  1038. "mewtwo-y": {
  1039. name: "Mewtwo Y",
  1040. parents: ["mewtwo"]
  1041. },
  1042. "mewtwo": {
  1043. name: "Mewtwo",
  1044. parents: ["pokemon"]
  1045. },
  1046. "eevee": {
  1047. name: "Eevee",
  1048. parents: ["eeveelution"]
  1049. },
  1050. "mienshao": {
  1051. name: "Mienshao",
  1052. parents: ["pokemon"]
  1053. },
  1054. "sugar-glider": {
  1055. name: "Sugar Glider",
  1056. parents: ["opossum"]
  1057. },
  1058. "spectral-bat": {
  1059. name: "Spectral Bat",
  1060. parents: ["bat"]
  1061. },
  1062. "scolipede": {
  1063. name: "Scolipede",
  1064. parents: ["pokemon", "insect"]
  1065. },
  1066. "jackalope": {
  1067. name: "Jackalope",
  1068. parents: ["rabbit", "antelope"]
  1069. },
  1070. "caracal": {
  1071. name: "Caracal",
  1072. parents: ["cat"]
  1073. },
  1074. "stoat": {
  1075. name: "Stoat",
  1076. parents: ["mammal"]
  1077. },
  1078. "african-golden-cat": {
  1079. name: "African Golden Cat",
  1080. parents: ["cat"]
  1081. },
  1082. "gigantosaurus": {
  1083. name: "Gigantosaurus",
  1084. parents: ["dinosaur"]
  1085. },
  1086. "zorgoia": {
  1087. name: "Zorgoia",
  1088. parents: ["mammal"]
  1089. },
  1090. "monitor-lizard": {
  1091. name: "Monitor Lizard",
  1092. parents: ["lizard"]
  1093. },
  1094. "ziralkia": {
  1095. name: "Ziralkia",
  1096. parents: ["mammal"]
  1097. },
  1098. "kiiasi": {
  1099. name: "Kiiasi",
  1100. parents: ["animal"]
  1101. },
  1102. "synx": {
  1103. name: "Synx",
  1104. parents: ["monster"]
  1105. },
  1106. "panther": {
  1107. name: "Panther",
  1108. parents: ["cat"]
  1109. },
  1110. "azumarill": {
  1111. name: "Azumarill",
  1112. parents: ["pokemon"]
  1113. },
  1114. "river-snaptail": {
  1115. name: "River Snaptail",
  1116. parents: ["otter", "crocodile"]
  1117. },
  1118. "great-blue-heron": {
  1119. name: "Great Blue Heron",
  1120. parents: ["avian"]
  1121. },
  1122. "smeargle": {
  1123. name: "Smeargle",
  1124. parents: ["pokemon"]
  1125. },
  1126. "vendeilen": {
  1127. name: "Vendeilen",
  1128. parents: ["monster"]
  1129. },
  1130. "ventura": {
  1131. name: "Ventura",
  1132. parents: ["canine"]
  1133. },
  1134. "clouded-leopard": {
  1135. name: "Clouded Leopard",
  1136. parents: ["leopard"]
  1137. },
  1138. "argonian": {
  1139. name: "Argonian",
  1140. parents: ["lizard"]
  1141. },
  1142. "salazzle": {
  1143. name: "Salazzle",
  1144. parents: ["pokemon", "lizard"]
  1145. },
  1146. "je-stoff-drachen": {
  1147. name: "Je-Stoff Drachen",
  1148. parents: ["dragon"]
  1149. },
  1150. "finnish-spitz-dog": {
  1151. name: "Finnish Spitz Dog",
  1152. parents: ["dog"]
  1153. },
  1154. "gray-fox": {
  1155. name: "Gray Fox",
  1156. parents: ["fox"]
  1157. },
  1158. "opossum": {
  1159. name: "Opossum",
  1160. parents: ["mammal"]
  1161. },
  1162. "antelope": {
  1163. name: "Antelope",
  1164. parents: ["mammal"]
  1165. },
  1166. "weavile": {
  1167. name: "Weavile",
  1168. parents: ["pokemon"]
  1169. },
  1170. "pikachu": {
  1171. name: "Pikachu",
  1172. parents: ["pokemon", "mouse"]
  1173. },
  1174. "grovyle": {
  1175. name: "Grovyle",
  1176. parents: ["pokemon", "plant"]
  1177. },
  1178. "sthara": {
  1179. name: "Sthara",
  1180. parents: ["snow-leopard", "reptile"]
  1181. },
  1182. "star-warrior": {
  1183. name: "Star Warrior",
  1184. parents: ["magical"]
  1185. },
  1186. "dragonoid": {
  1187. name: "Dragonoid",
  1188. parents: ["dragon"]
  1189. },
  1190. "suicune": {
  1191. name: "Suicune",
  1192. parents: ["pokemon"]
  1193. },
  1194. "vole": {
  1195. name: "Vole",
  1196. parents: ["mammal"]
  1197. },
  1198. "blaziken": {
  1199. name: "Blaziken",
  1200. parents: ["pokemon", "avian"]
  1201. },
  1202. "buizel": {
  1203. name: "Buizel",
  1204. parents: ["pokemon", "fish"]
  1205. },
  1206. "floatzel": {
  1207. name: "Floatzel",
  1208. parents: ["pokemon", "fish"]
  1209. },
  1210. "umok": {
  1211. name: "Umok",
  1212. parents: ["avian"]
  1213. },
  1214. "sea-monster": {
  1215. name: "Sea Monster",
  1216. parents: ["monster", "fish"]
  1217. },
  1218. "egyptian-vulture": {
  1219. name: "Egyptian Vulture",
  1220. parents: ["avian"]
  1221. },
  1222. "doberman": {
  1223. name: "Doberman",
  1224. parents: ["dog"]
  1225. },
  1226. "zangoose": {
  1227. name: "Zangoose",
  1228. parents: ["pokemon", "mongoose"]
  1229. },
  1230. "mongoose": {
  1231. name: "Mongoose",
  1232. parents: ["mammal"]
  1233. },
  1234. "wickerbeast": {
  1235. name: "Wickerbeast",
  1236. parents: ["monster"]
  1237. },
  1238. "zenari": {
  1239. name: "Zenari",
  1240. parents: ["lizard"]
  1241. },
  1242. "plant": {
  1243. name: "Plant",
  1244. parents: []
  1245. },
  1246. "raskatox": {
  1247. name: "Raskatox",
  1248. parents: ["raccoon", "skunk", "cat", "fox"]
  1249. },
  1250. "mikromare": {
  1251. name: "mikromare",
  1252. parents: ["alien"]
  1253. },
  1254. "alien": {
  1255. name: "Alien",
  1256. parents: ["animal"]
  1257. },
  1258. "deity": {
  1259. name: "Deity",
  1260. parents: []
  1261. },
  1262. "skarlan": {
  1263. name: "Skarlan",
  1264. parents: ["slug", "dragon"]
  1265. },
  1266. "slug": {
  1267. name: "Slug",
  1268. parents: ["mollusk"]
  1269. },
  1270. "mollusk": {
  1271. name: "Mollusk",
  1272. parents: ["animal"]
  1273. },
  1274. "chimera": {
  1275. name: "Chimera",
  1276. parents: ["monster"]
  1277. },
  1278. "gestalt": {
  1279. name: "Gestalt",
  1280. parents: ["construct"]
  1281. },
  1282. "mimic": {
  1283. name: "Mimic",
  1284. parents: ["monster"]
  1285. },
  1286. "calico-rat": {
  1287. name: "Calico Rat",
  1288. parents: ["rat"]
  1289. },
  1290. "panda": {
  1291. name: "Panda",
  1292. parents: ["mammal"]
  1293. },
  1294. "oni": {
  1295. name: "Oni",
  1296. parents: ["monster"]
  1297. },
  1298. "pegasus": {
  1299. name: "Pegasus",
  1300. parents: ["horse"]
  1301. },
  1302. "vulpera": {
  1303. name: "Vulpera",
  1304. parents: ["fennec-fox"]
  1305. },
  1306. "ceratosaurus": {
  1307. name: "Ceratosaurus",
  1308. parents: ["dinosaur"]
  1309. },
  1310. "nykur": {
  1311. name: "Nykur",
  1312. parents: ["horse", "monster"]
  1313. },
  1314. "giraffe": {
  1315. name: "Giraffe",
  1316. parents: ["mammal"]
  1317. },
  1318. "tauren": {
  1319. name: "Tauren",
  1320. parents: ["cow"]
  1321. },
  1322. "draconi": {
  1323. name: "Draconi",
  1324. parents: ["alien", "cat", "cyborg"]
  1325. },
  1326. "dire-wolf": {
  1327. name: "Dire Wolf",
  1328. parents: ["wolf"]
  1329. },
  1330. "ferromorph": {
  1331. name: "Ferromorph",
  1332. parents: ["construct"]
  1333. },
  1334. "meowth": {
  1335. name: "Meowth",
  1336. parents: ["cat", "pokemon"]
  1337. },
  1338. "pavodragon": {
  1339. name: "Pavodragon",
  1340. parents: ["dragon"]
  1341. },
  1342. "aaltranae": {
  1343. name: "Aaltranae",
  1344. parents: ["dragon"]
  1345. },
  1346. "cyborg": {
  1347. name: "Cyborg",
  1348. parents: ["machine"]
  1349. },
  1350. "draptor": {
  1351. name: "Draptor",
  1352. parents: ["dragon"]
  1353. },
  1354. "candy": {
  1355. name: "Candy",
  1356. parents: []
  1357. },
  1358. "drenath": {
  1359. name: "Drenath",
  1360. parents: ["dragon", "snake", "rabbit"]
  1361. },
  1362. "coyju": {
  1363. name: "Coyju",
  1364. parents: ["coyote", "kaiju"]
  1365. },
  1366. "kaiju": {
  1367. name: "Kaiju",
  1368. parents: ["monster"]
  1369. },
  1370. "nickit": {
  1371. name: "Nickit",
  1372. parents: ["pokemon", "cat"]
  1373. },
  1374. "lopunny": {
  1375. name: "Lopunny",
  1376. parents: ["pokemon", "rabbit"]
  1377. },
  1378. "korean-jindo-dog": {
  1379. name: "Korean Jindo Dog",
  1380. parents: ["dog"]
  1381. },
  1382. "naga": {
  1383. name: "Naga",
  1384. parents: ["snake", "monster"]
  1385. },
  1386. "undead": {
  1387. name: "Undead",
  1388. parents: ["monster"]
  1389. },
  1390. "whale": {
  1391. name: "Whale",
  1392. parents: ["fish"]
  1393. },
  1394. "gelato-bee": {
  1395. name: "Gelato Bee",
  1396. parents: ["bee"]
  1397. },
  1398. "bee": {
  1399. name: "Bee",
  1400. parents: ["insect"]
  1401. },
  1402. "gardevoir": {
  1403. name: "Gardevoir",
  1404. parents: ["pokemon"]
  1405. },
  1406. "ant": {
  1407. name: "Ant",
  1408. parents: ["insect"]
  1409. },
  1410. "frog": {
  1411. name: "Frog",
  1412. parents: ["amphibian"]
  1413. },
  1414. "amphibian": {
  1415. name: "Amphibian",
  1416. parents: ["animal"]
  1417. },
  1418. "pangolin": {
  1419. name: "Pangolin",
  1420. parents: ["mammal"]
  1421. },
  1422. "uragi'viidorn": {
  1423. name: "Uragi'viidorn",
  1424. parents: ["avian", "bear"]
  1425. },
  1426. "gryphdelphais": {
  1427. name: "Gryphdelphais",
  1428. parents: ["dolphin", "gryphon"]
  1429. },
  1430. "plush": {
  1431. name: "Plush",
  1432. parents: ["construct"]
  1433. },
  1434. "draiger": {
  1435. name: "Draiger",
  1436. parents: ["dragon","tiger"]
  1437. },
  1438. "foxsky": {
  1439. name: "Foxsky",
  1440. parents: ["fox", "husky"]
  1441. },
  1442. "umbreon": {
  1443. name: "Umbreon",
  1444. parents: ["eeveelution"]
  1445. },
  1446. "slime-dragon": {
  1447. name: "Slime Dragon",
  1448. parents: ["dragon", "goo"]
  1449. },
  1450. "enderman": {
  1451. name: "Enderman",
  1452. parents: ["monster"]
  1453. },
  1454. "gremlin": {
  1455. name: "Gremlin",
  1456. parents: ["monster"]
  1457. },
  1458. "dragonsune": {
  1459. name: "Dragonsune",
  1460. parents: ["dragon", "kitsune"]
  1461. },
  1462. "ghost": {
  1463. name: "Ghost",
  1464. parents: ["supernatural"]
  1465. },
  1466. "false-vampire-bat": {
  1467. name: "False Vampire Bat",
  1468. parents: ["bat"]
  1469. },
  1470. "succubus": {
  1471. name: "Succubus",
  1472. parents: ["demon"]
  1473. },
  1474. "mia": {
  1475. name: "Mia",
  1476. parents: ["canine"]
  1477. },
  1478. "rainbow": {
  1479. name: "Rainbow",
  1480. parents: ["monster"]
  1481. },
  1482. "solgaleo": {
  1483. name: "Solgaleo",
  1484. parents: ["pokemon"]
  1485. },
  1486. "lucent-nargacuga": {
  1487. name: "Lucent Nargacuga",
  1488. parents: ["monster-hunter"]
  1489. },
  1490. "monster-hunter": {
  1491. name: "Monster Hunter",
  1492. parents: ["monster"]
  1493. },
  1494. "leviathan": {
  1495. "name": "Leviathan",
  1496. "url": "sea-monster"
  1497. },
  1498. "bull": {
  1499. name: "Bull",
  1500. parents: ["mammal"]
  1501. },
  1502. "tanuki": {
  1503. name: "Tanuki",
  1504. parents: ["monster"]
  1505. },
  1506. "chakat": {
  1507. name: "Chakat",
  1508. parents: ["cat"]
  1509. },
  1510. "hydra": {
  1511. name: "Hydra",
  1512. parents: ["monster"]
  1513. },
  1514. "zigzagoon": {
  1515. name: "Zigzagoon",
  1516. parents: ["raccoon", "pokemon"]
  1517. },
  1518. "vulture": {
  1519. name: "Vulture",
  1520. parents: ["avian"]
  1521. },
  1522. "eastern-dragon": {
  1523. name: "Eastern Dragon",
  1524. parents: ["dragon"]
  1525. },
  1526. "gryffon": {
  1527. name: "Gryffon",
  1528. parents: ["phoenix", "red-panda"]
  1529. },
  1530. "amtsvane": {
  1531. name: "Amtsvane",
  1532. parents: ["reptile"]
  1533. },
  1534. "kigavi": {
  1535. name: "Kigavi",
  1536. parents: ["avian"]
  1537. },
  1538. "turian": {
  1539. name: "Turian",
  1540. parents: ["avian"]
  1541. },
  1542. "zeraora": {
  1543. name: "Zeraora",
  1544. parents: ["pokemon", "cat"]
  1545. },
  1546. "sandshrew": {
  1547. name: "Sandshrew",
  1548. parents: ["pokemon", "pangolin"]
  1549. },
  1550. "valais-blacknose-sheep": {
  1551. name: "Valais Blacknose Sheep",
  1552. parents: ["sheep"]
  1553. },
  1554. "novaleit": {
  1555. name: "Novaleit",
  1556. parents: ["mammal"]
  1557. },
  1558. "dunnoh": {
  1559. name: "Dunnoh",
  1560. parents: ["mammal"]
  1561. },
  1562. "lunaral-dragon": {
  1563. name: "Lunaral Dragon",
  1564. parents: ["dragon"]
  1565. },
  1566. "arctic-wolf": {
  1567. name: "Arctic Wolf",
  1568. parents: ["wolf"]
  1569. },
  1570. "donkey": {
  1571. name: "Donkey",
  1572. parents: ["horse"]
  1573. },
  1574. "chinchilla": {
  1575. name: "Chinchilla",
  1576. parents: ["rodent"]
  1577. },
  1578. "felkin": {
  1579. name: "Felkin",
  1580. parents: ["dragon"]
  1581. },
  1582. "tykeriel": {
  1583. name: "Tykeriel",
  1584. parents: ["avian"]
  1585. },
  1586. "folf": {
  1587. name: "Folf",
  1588. parents: ["fox", "wolf"]
  1589. },
  1590. "pooltoy": {
  1591. name: "Pooltoy",
  1592. parents: ["construct"]
  1593. },
  1594. "demi": {
  1595. name: "Demi",
  1596. parents: ["human"]
  1597. },
  1598. "stegosaurus": {
  1599. name: "Stegosaurus",
  1600. parents: ["dinosaur"]
  1601. },
  1602. "computer-virus": {
  1603. name: "Computer Virus",
  1604. parents: ["program"]
  1605. },
  1606. "program": {
  1607. name: "Program",
  1608. parents: ["construct"]
  1609. },
  1610. "space-springhare": {
  1611. name: "Space Springhare",
  1612. parents: ["hare"]
  1613. },
  1614. "river-drake": {
  1615. name: "River Drake",
  1616. parents: ["dragon"]
  1617. },
  1618. "djinn": {
  1619. "name": "Djinn",
  1620. "url": "supernatural"
  1621. },
  1622. "supernatural": {
  1623. name: "Supernatural",
  1624. parents: ["monster"]
  1625. },
  1626. "grasshopper-mouse": {
  1627. name: "Grasshopper Mouse",
  1628. parents: ["mouse"]
  1629. },
  1630. "somali-cat": {
  1631. name: "Somali Cat",
  1632. parents: ["cat"]
  1633. },
  1634. "minccino": {
  1635. name: "Minccino",
  1636. parents: ["pokemon", "chinchilla"]
  1637. },
  1638. "pine-marten": {
  1639. name: "Pine Marten",
  1640. parents: ["marten"]
  1641. },
  1642. "marten": {
  1643. name: "Marten",
  1644. parents: ["mustelid"]
  1645. },
  1646. "mustelid": {
  1647. name: "Mustelid",
  1648. parents: ["mammal"]
  1649. },
  1650. "caribou": {
  1651. name: "Caribou",
  1652. parents: ["deer"]
  1653. },
  1654. "gnoll": {
  1655. name: "Gnoll",
  1656. parents: ["hyena", "monster"]
  1657. },
  1658. "peacekeeper": {
  1659. name: "Peacekeeper",
  1660. parents: ["human"]
  1661. },
  1662. "river-otter": {
  1663. name: "River Otter",
  1664. parents: ["otter"]
  1665. },
  1666. "dhole": {
  1667. name: "Dhole",
  1668. parents: ["canine"]
  1669. },
  1670. "springbok": {
  1671. name: "Springbok",
  1672. parents: ["antelope"]
  1673. },
  1674. "marsupial": {
  1675. name: "Marsupial",
  1676. parents: ["mammal"]
  1677. },
  1678. "townsend-big-eared-bat": {
  1679. name: "Townsend Big-eared Bat",
  1680. parents: ["bat"]
  1681. },
  1682. "squirrel": {
  1683. name: "Squirrel",
  1684. parents: ["rodent"]
  1685. },
  1686. "magpie": {
  1687. name: "Magpie",
  1688. parents: ["corvid"]
  1689. },
  1690. "civet": {
  1691. name: "Civet",
  1692. parents: ["feliform"]
  1693. },
  1694. "feliform": {
  1695. name: "Feliform",
  1696. parents: ["mammal"]
  1697. },
  1698. "tiefling": {
  1699. name: "Tiefling",
  1700. parents: ["devil"]
  1701. },
  1702. "devil": {
  1703. name: "Devil",
  1704. parents: ["supernatural"]
  1705. },
  1706. "sika-deer": {
  1707. name: "Sika Deer",
  1708. parents: ["deer"]
  1709. },
  1710. "vaporeon": {
  1711. name: "Vaporeon",
  1712. parents: ["eeveelution"]
  1713. },
  1714. "leafeon": {
  1715. name: "Leafeon",
  1716. parents: ["eeveelution"]
  1717. },
  1718. "jolteon": {
  1719. name: "Jolteon",
  1720. parents: ["eeveelution"]
  1721. },
  1722. "spireborn": {
  1723. name: "Spireborn",
  1724. parents: ["zorgoia"]
  1725. },
  1726. "vampire": {
  1727. name: "Vampire",
  1728. parents: ["monster"]
  1729. },
  1730. "extraplanar": {
  1731. name: "Extraplanar",
  1732. parents: []
  1733. },
  1734. "goo": {
  1735. name: "Goo",
  1736. parents: []
  1737. },
  1738. "skink": {
  1739. name: "Skink",
  1740. parents: ["lizard"]
  1741. },
  1742. "bat-eared-fox": {
  1743. name: "Bat-eared Fox",
  1744. parents: ["fox"]
  1745. },
  1746. "belted-kingfisher": {
  1747. name: "Belted Kingfisher",
  1748. parents: ["avian"]
  1749. },
  1750. "omnifalcon": {
  1751. name: "Omnifalcon",
  1752. parents: ["gryphon", "falcon", "harpy-eagle"]
  1753. },
  1754. "falcon": {
  1755. name: "Falcon",
  1756. parents: ["avian"]
  1757. },
  1758. "avali": {
  1759. name: "Avali",
  1760. parents: ["avian", "alien"]
  1761. },
  1762. "arctic-fox": {
  1763. name: "Arctic Fox",
  1764. parents: ["fox"]
  1765. },
  1766. "snow-tiger": {
  1767. name: "Snow Tiger",
  1768. parents: ["tiger"]
  1769. },
  1770. "marble-fox": {
  1771. name: "Marble Fox",
  1772. parents: ["fox"]
  1773. },
  1774. "king-wickerbeast": {
  1775. name: "King Wickerbeast",
  1776. parents: ["wickerbeast"]
  1777. },
  1778. "wickerbeast": {
  1779. name: "Wickerbeast",
  1780. parents: ["mammal"]
  1781. },
  1782. "european-polecat": {
  1783. name: "European Polecat",
  1784. parents: ["mustelid"]
  1785. },
  1786. "teshari": {
  1787. name: "Teshari",
  1788. parents: ["avian", "raptor"]
  1789. },
  1790. "alicorn": {
  1791. name: "Alicorn",
  1792. parents: ["horse"]
  1793. },
  1794. "atlas-moth": {
  1795. name: "Atlas Moth",
  1796. parents: ["moth"]
  1797. },
  1798. "owlbear": {
  1799. name: "Owlbear",
  1800. parents: ["owl", "bear", "monster"]
  1801. },
  1802. "owl": {
  1803. name: "Owl",
  1804. parents: ["avian"]
  1805. },
  1806. "silvertongue": {
  1807. name: "Silvertongue",
  1808. parents: ["reptile"]
  1809. },
  1810. "ahuizotl": {
  1811. name: "Ahuizotl",
  1812. parents: ["monster"]
  1813. },
  1814. "ender-dragon": {
  1815. name: "Ender Dragon",
  1816. parents: ["dragon"]
  1817. },
  1818. "bruhathkayosaurus": {
  1819. name: "Bruhathkayosaurus",
  1820. parents: ["sauropod"]
  1821. },
  1822. "sauropod": {
  1823. name: "Sauropod",
  1824. parents: ["dinosaur"]
  1825. },
  1826. "black-sable-antelope": {
  1827. name: "Black Sable Antelope",
  1828. parents: ["antelope"]
  1829. },
  1830. "slime": {
  1831. name: "Slime",
  1832. parents: ["goo"]
  1833. },
  1834. "utahraptor": {
  1835. name: "Utahraptor",
  1836. parents: ["raptor"]
  1837. },
  1838. "indian-giant-squirrel": {
  1839. name: "Indian Giant Squirrel",
  1840. parents: ["squirrel"]
  1841. },
  1842. "golden-retriever": {
  1843. name: "Golden Retriever",
  1844. parents: ["dog"]
  1845. },
  1846. "triceratops": {
  1847. name: "Triceratops",
  1848. parents: ["dinosaur"]
  1849. },
  1850. "drake": {
  1851. name: "Drake",
  1852. parents: ["dragon"]
  1853. },
  1854. "okapi": {
  1855. name: "Okapi",
  1856. parents: ["giraffe"]
  1857. },
  1858. "arctic-hare": {
  1859. name: "Arctic Hare",
  1860. parents: ["hare"]
  1861. },
  1862. "hare": {
  1863. name: "Hare",
  1864. parents: ["leporidae"]
  1865. },
  1866. "leporidae": {
  1867. name: "Leporidae",
  1868. parents: ["mammal"]
  1869. },
  1870. "leopard-gecko": {
  1871. name: "Leopard Gecko",
  1872. parents: ["gecko"]
  1873. },
  1874. "dreamspawn": {
  1875. name: "Dreamspawn",
  1876. parents: ["illusion"]
  1877. },
  1878. "illusion": {
  1879. name: "Illusion",
  1880. parents: []
  1881. },
  1882. "purrloin": {
  1883. name: "Purrloin",
  1884. parents: ["cat", "pokemon"]
  1885. },
  1886. "noivern": {
  1887. name: "Noivern",
  1888. parents: ["bat", "dragon", "pokemon"]
  1889. },
  1890. "hedgehog": {
  1891. name: "Hedgehog",
  1892. parents: ["mammal"]
  1893. },
  1894. "liger": {
  1895. name: "Liger",
  1896. parents: ["lion", "tiger", "hybrid"]
  1897. },
  1898. "hybrid": {
  1899. name: "Hybrid",
  1900. parents: []
  1901. },
  1902. "drider": {
  1903. name: "Drider",
  1904. parents: ["spider"]
  1905. },
  1906. "sabresune": {
  1907. name: "Sabresune",
  1908. parents: ["kitsune", "sabertooth-tiger"]
  1909. },
  1910. "ditto": {
  1911. name: "Ditto",
  1912. parents: ["pokemon", "goo"]
  1913. },
  1914. "amogus": {
  1915. name: "Amogus",
  1916. parents: ["deity"]
  1917. },
  1918. "ferret": {
  1919. name: "Ferret",
  1920. parents: ["mustelid"]
  1921. },
  1922. "guinea-pig": {
  1923. name: "Guinea Pig",
  1924. parents: ["rodent"]
  1925. },
  1926. "viper": {
  1927. name: "Viper",
  1928. parents: ["snake"]
  1929. },
  1930. "cinderace": {
  1931. name: "Cinderace",
  1932. parents: ["pokemon", "rabbit"]
  1933. },
  1934. "caudin": {
  1935. name: "Caudin",
  1936. parents: ["dragon"]
  1937. },
  1938. "red-winged-blackbird": {
  1939. name: "Red-Winged Blackbird",
  1940. parents: ["avian"]
  1941. },
  1942. "hooded-wheater": {
  1943. name: "Hooded Wheater",
  1944. parents: ["passerine"]
  1945. },
  1946. "passerine": {
  1947. name: "Passerine",
  1948. parents: ["avian"]
  1949. },
  1950. "gieeg": {
  1951. name: "Gieeg",
  1952. parents: ["alien"]
  1953. },
  1954. "ringtail": {
  1955. name: "Ringtail",
  1956. parents: ["raccoon"]
  1957. },
  1958. "hisuian-zoroark": {
  1959. name: "Hisuian Zoroark",
  1960. parents: ["zoroark", "hisuian"]
  1961. },
  1962. "hisuian": {
  1963. name: "Hisuian",
  1964. parents: ["regional-pokemon"]
  1965. },
  1966. "regional-pokemon": {
  1967. name: "Regional Pokemon",
  1968. parents: ["pokemon"]
  1969. },
  1970. "cybeast": {
  1971. name: "Cybeast",
  1972. parents: ["computer-virus"]
  1973. },
  1974. "javira-dragon": {
  1975. name: "Javira Dragon",
  1976. parents: ["dragon"]
  1977. },
  1978. }
  1979. //species
  1980. function getSpeciesInfo(speciesList) {
  1981. let result = new Set();
  1982. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1983. result.add(entry)
  1984. });
  1985. return Array.from(result);
  1986. };
  1987. function getSpeciesInfoHelper(species) {
  1988. if (!speciesData[species]) {
  1989. console.warn(species + " doesn't exist");
  1990. return [];
  1991. }
  1992. if (speciesData[species].parents) {
  1993. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1994. } else {
  1995. return [species];
  1996. }
  1997. }
  1998. characterMakers.push(() => makeCharacter(
  1999. {
  2000. name: "Fen",
  2001. species: ["crux"],
  2002. description: {
  2003. title: "Bio",
  2004. text: "Very furry. Sheds on everything."
  2005. },
  2006. tags: [
  2007. "anthro",
  2008. "goo"
  2009. ]
  2010. },
  2011. {
  2012. front: {
  2013. height: math.unit(12, "feet"),
  2014. weight: math.unit(2400, "lb"),
  2015. name: "Front",
  2016. image: {
  2017. source: "./media/characters/fen/front.svg",
  2018. extra: 1804/1562,
  2019. bottom: 205/2009
  2020. }
  2021. },
  2022. diving: {
  2023. height: math.unit(4.9, "meters"),
  2024. weight: math.unit(2400, "lb"),
  2025. name: "Diving",
  2026. image: {
  2027. source: "./media/characters/fen/diving.svg"
  2028. }
  2029. },
  2030. goo: {
  2031. height: math.unit(12, "feet"),
  2032. weight: math.unit(3600, "lb"),
  2033. volume: math.unit(1000, "liters"),
  2034. capacity: math.unit(6, "people"),
  2035. name: "Goo",
  2036. image: {
  2037. source: "./media/characters/fen/goo.svg",
  2038. extra: 1307/1071,
  2039. bottom: 134/1441
  2040. }
  2041. },
  2042. maw: {
  2043. height: math.unit(5.03, "feet"),
  2044. name: "Maw",
  2045. image: {
  2046. source: "./media/characters/fen/maw.svg"
  2047. }
  2048. },
  2049. gooCeiling: {
  2050. height: math.unit(6.6, "feet"),
  2051. weight: math.unit(3000, "lb"),
  2052. volume: math.unit(1000, "liters"),
  2053. capacity: math.unit(6, "people"),
  2054. name: "Goo (Ceiling)",
  2055. image: {
  2056. source: "./media/characters/fen/goo-ceiling.svg"
  2057. }
  2058. },
  2059. back: {
  2060. height: math.unit(12, "feet"),
  2061. weight: math.unit(2400, "lb"),
  2062. name: "Back",
  2063. image: {
  2064. source: "./media/characters/fen/back.svg",
  2065. },
  2066. info: {
  2067. description: {
  2068. mode: "append",
  2069. text: "\n\nHe is not currently looking at you."
  2070. }
  2071. }
  2072. },
  2073. full: {
  2074. height: math.unit(1.85, "meter"),
  2075. weight: math.unit(3200, "lb"),
  2076. name: "Full",
  2077. image: {
  2078. source: "./media/characters/fen/full.svg",
  2079. extra: 1133/859,
  2080. bottom: 145/1278
  2081. },
  2082. info: {
  2083. description: {
  2084. mode: "append",
  2085. text: "\n\nMunch."
  2086. }
  2087. }
  2088. },
  2089. gooLounging: {
  2090. height: math.unit(4.53, "feet"),
  2091. weight: math.unit(3000, "lb"),
  2092. capacity: math.unit(6, "people"),
  2093. name: "Goo (Lounging)",
  2094. image: {
  2095. source: "./media/characters/fen/goo-lounging.svg",
  2096. bottom: 116 / 613
  2097. }
  2098. },
  2099. lounging: {
  2100. height: math.unit(10.52, "feet"),
  2101. weight: math.unit(2400, "lb"),
  2102. name: "Lounging",
  2103. image: {
  2104. source: "./media/characters/fen/lounging.svg"
  2105. }
  2106. },
  2107. },
  2108. [
  2109. {
  2110. name: "Small",
  2111. height: math.unit(2.2428, "meter")
  2112. },
  2113. {
  2114. name: "Normal",
  2115. height: math.unit(12, "feet"),
  2116. default: true,
  2117. },
  2118. {
  2119. name: "Big",
  2120. height: math.unit(20, "feet")
  2121. },
  2122. {
  2123. name: "Minimacro",
  2124. height: math.unit(40, "feet"),
  2125. info: {
  2126. description: {
  2127. mode: "append",
  2128. text: "\n\nTOO DAMN BIG"
  2129. }
  2130. }
  2131. },
  2132. {
  2133. name: "Macro",
  2134. height: math.unit(100, "feet"),
  2135. info: {
  2136. description: {
  2137. mode: "append",
  2138. text: "\n\nTOO DAMN BIG"
  2139. }
  2140. }
  2141. },
  2142. {
  2143. name: "Megamacro",
  2144. height: math.unit(2, "miles")
  2145. },
  2146. {
  2147. name: "Gigamacro",
  2148. height: math.unit(10, "earths")
  2149. },
  2150. ]
  2151. ))
  2152. characterMakers.push(() => makeCharacter(
  2153. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2154. {
  2155. front: {
  2156. height: math.unit(183, "cm"),
  2157. weight: math.unit(80, "kg"),
  2158. name: "Front",
  2159. image: {
  2160. source: "./media/characters/sofia-fluttertail/front.svg",
  2161. bottom: 0.01,
  2162. extra: 2154 / 2081
  2163. }
  2164. },
  2165. frontAlt: {
  2166. height: math.unit(183, "cm"),
  2167. weight: math.unit(80, "kg"),
  2168. name: "Front (alt)",
  2169. image: {
  2170. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2171. }
  2172. },
  2173. back: {
  2174. height: math.unit(183, "cm"),
  2175. weight: math.unit(80, "kg"),
  2176. name: "Back",
  2177. image: {
  2178. source: "./media/characters/sofia-fluttertail/back.svg"
  2179. }
  2180. },
  2181. kneeling: {
  2182. height: math.unit(125, "cm"),
  2183. weight: math.unit(80, "kg"),
  2184. name: "Kneeling",
  2185. image: {
  2186. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2187. extra: 1033 / 977,
  2188. bottom: 23.7 / 1057
  2189. }
  2190. },
  2191. maw: {
  2192. height: math.unit(183 / 5, "cm"),
  2193. name: "Maw",
  2194. image: {
  2195. source: "./media/characters/sofia-fluttertail/maw.svg"
  2196. }
  2197. },
  2198. mawcloseup: {
  2199. height: math.unit(183 / 5 * 0.41, "cm"),
  2200. name: "Maw (Closeup)",
  2201. image: {
  2202. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2203. }
  2204. },
  2205. paws: {
  2206. height: math.unit(1.17, "feet"),
  2207. name: "Paws",
  2208. image: {
  2209. source: "./media/characters/sofia-fluttertail/paws.svg",
  2210. extra: 851 / 851,
  2211. bottom: 17 / 868
  2212. }
  2213. },
  2214. },
  2215. [
  2216. {
  2217. name: "Normal",
  2218. height: math.unit(1.83, "meter")
  2219. },
  2220. {
  2221. name: "Size Thief",
  2222. height: math.unit(18, "feet")
  2223. },
  2224. {
  2225. name: "50 Foot Collie",
  2226. height: math.unit(50, "feet")
  2227. },
  2228. {
  2229. name: "Macro",
  2230. height: math.unit(96, "feet"),
  2231. default: true
  2232. },
  2233. {
  2234. name: "Megamerger",
  2235. height: math.unit(650, "feet")
  2236. },
  2237. ]
  2238. ))
  2239. characterMakers.push(() => makeCharacter(
  2240. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2241. {
  2242. front: {
  2243. height: math.unit(7, "feet"),
  2244. weight: math.unit(100, "kg"),
  2245. name: "Front",
  2246. image: {
  2247. source: "./media/characters/march/front.svg",
  2248. extra: 1992/1851,
  2249. bottom: 39/2031
  2250. }
  2251. },
  2252. foot: {
  2253. height: math.unit(0.9, "feet"),
  2254. name: "Foot",
  2255. image: {
  2256. source: "./media/characters/march/foot.svg"
  2257. }
  2258. },
  2259. },
  2260. [
  2261. {
  2262. name: "Normal",
  2263. height: math.unit(7.9, "feet")
  2264. },
  2265. {
  2266. name: "Macro",
  2267. height: math.unit(220, "meters")
  2268. },
  2269. {
  2270. name: "Megamacro",
  2271. height: math.unit(2.98, "km"),
  2272. default: true
  2273. },
  2274. {
  2275. name: "Gigamacro",
  2276. height: math.unit(15963, "km")
  2277. },
  2278. {
  2279. name: "Teramacro",
  2280. height: math.unit(2980000000, "km")
  2281. },
  2282. {
  2283. name: "Examacro",
  2284. height: math.unit(250, "parsecs")
  2285. },
  2286. ]
  2287. ))
  2288. characterMakers.push(() => makeCharacter(
  2289. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2290. {
  2291. front: {
  2292. height: math.unit(6, "feet"),
  2293. weight: math.unit(60, "kg"),
  2294. name: "Front",
  2295. image: {
  2296. source: "./media/characters/noir/front.svg",
  2297. extra: 1,
  2298. bottom: 0.032
  2299. }
  2300. },
  2301. },
  2302. [
  2303. {
  2304. name: "Normal",
  2305. height: math.unit(6.6, "feet")
  2306. },
  2307. {
  2308. name: "Macro",
  2309. height: math.unit(500, "feet")
  2310. },
  2311. {
  2312. name: "Megamacro",
  2313. height: math.unit(2.5, "km"),
  2314. default: true
  2315. },
  2316. {
  2317. name: "Gigamacro",
  2318. height: math.unit(22500, "km")
  2319. },
  2320. {
  2321. name: "Teramacro",
  2322. height: math.unit(2500000000, "km")
  2323. },
  2324. {
  2325. name: "Examacro",
  2326. height: math.unit(200, "parsecs")
  2327. },
  2328. ]
  2329. ))
  2330. characterMakers.push(() => makeCharacter(
  2331. { name: "Okuri", species: ["sabresune"], tags: ["anthro"] },
  2332. {
  2333. front: {
  2334. height: math.unit(7, "feet"),
  2335. weight: math.unit(100, "kg"),
  2336. name: "Front",
  2337. image: {
  2338. source: "./media/characters/okuri/front.svg",
  2339. extra: 739/665,
  2340. bottom: 39/778
  2341. }
  2342. },
  2343. back: {
  2344. height: math.unit(7, "feet"),
  2345. weight: math.unit(100, "kg"),
  2346. name: "Back",
  2347. image: {
  2348. source: "./media/characters/okuri/back.svg",
  2349. extra: 734/653,
  2350. bottom: 13/747
  2351. }
  2352. },
  2353. sitting: {
  2354. height: math.unit(2.95, "feet"),
  2355. weight: math.unit(100, "kg"),
  2356. name: "Sitting",
  2357. image: {
  2358. source: "./media/characters/okuri/sitting.svg",
  2359. extra: 370/318,
  2360. bottom: 99/469
  2361. }
  2362. },
  2363. },
  2364. [
  2365. {
  2366. name: "Smallest",
  2367. height: math.unit(5 + 2/12, "feet")
  2368. },
  2369. {
  2370. name: "Smaller",
  2371. height: math.unit(300, "feet")
  2372. },
  2373. {
  2374. name: "Small",
  2375. height: math.unit(1000, "feet")
  2376. },
  2377. {
  2378. name: "Macro",
  2379. height: math.unit(1, "mile")
  2380. },
  2381. {
  2382. name: "Mega Macro (Small)",
  2383. height: math.unit(20, "km")
  2384. },
  2385. {
  2386. name: "Mega Macro (Large)",
  2387. height: math.unit(600, "km")
  2388. },
  2389. {
  2390. name: "Giga Macro",
  2391. height: math.unit(10000, "km")
  2392. },
  2393. {
  2394. name: "Normal",
  2395. height: math.unit(577560, "km"),
  2396. default: true
  2397. },
  2398. {
  2399. name: "Large",
  2400. height: math.unit(4, "galaxies")
  2401. },
  2402. {
  2403. name: "Largest",
  2404. height: math.unit(15, "multiverses")
  2405. },
  2406. ]
  2407. ))
  2408. characterMakers.push(() => makeCharacter(
  2409. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2410. {
  2411. front: {
  2412. height: math.unit(7, "feet"),
  2413. weight: math.unit(100, "kg"),
  2414. name: "Front",
  2415. image: {
  2416. source: "./media/characters/manny/front.svg",
  2417. extra: 1,
  2418. bottom: 0.06
  2419. }
  2420. },
  2421. back: {
  2422. height: math.unit(7, "feet"),
  2423. weight: math.unit(100, "kg"),
  2424. name: "Back",
  2425. image: {
  2426. source: "./media/characters/manny/back.svg",
  2427. extra: 1,
  2428. bottom: 0.014
  2429. }
  2430. },
  2431. },
  2432. [
  2433. {
  2434. name: "Normal",
  2435. height: math.unit(7, "feet"),
  2436. },
  2437. {
  2438. name: "Macro",
  2439. height: math.unit(78, "feet"),
  2440. default: true
  2441. },
  2442. {
  2443. name: "Macro+",
  2444. height: math.unit(300, "meters")
  2445. },
  2446. {
  2447. name: "Macro++",
  2448. height: math.unit(2400, "meters")
  2449. },
  2450. {
  2451. name: "Megamacro",
  2452. height: math.unit(5167, "meters")
  2453. },
  2454. {
  2455. name: "Gigamacro",
  2456. height: math.unit(41769, "miles")
  2457. },
  2458. ]
  2459. ))
  2460. characterMakers.push(() => makeCharacter(
  2461. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2462. {
  2463. front: {
  2464. height: math.unit(7, "feet"),
  2465. weight: math.unit(100, "kg"),
  2466. name: "Front",
  2467. image: {
  2468. source: "./media/characters/adake/front-1.svg"
  2469. }
  2470. },
  2471. frontAlt: {
  2472. height: math.unit(7, "feet"),
  2473. weight: math.unit(100, "kg"),
  2474. name: "Front (Alt)",
  2475. image: {
  2476. source: "./media/characters/adake/front-2.svg",
  2477. extra: 1,
  2478. bottom: 0.01
  2479. }
  2480. },
  2481. back: {
  2482. height: math.unit(7, "feet"),
  2483. weight: math.unit(100, "kg"),
  2484. name: "Back",
  2485. image: {
  2486. source: "./media/characters/adake/back.svg",
  2487. }
  2488. },
  2489. kneel: {
  2490. height: math.unit(5.385, "feet"),
  2491. weight: math.unit(100, "kg"),
  2492. name: "Kneeling",
  2493. image: {
  2494. source: "./media/characters/adake/kneel.svg",
  2495. bottom: 0.052
  2496. }
  2497. },
  2498. },
  2499. [
  2500. {
  2501. name: "Normal",
  2502. height: math.unit(7, "feet"),
  2503. },
  2504. {
  2505. name: "Macro",
  2506. height: math.unit(78, "feet"),
  2507. default: true
  2508. },
  2509. {
  2510. name: "Macro+",
  2511. height: math.unit(300, "meters")
  2512. },
  2513. {
  2514. name: "Macro++",
  2515. height: math.unit(2400, "meters")
  2516. },
  2517. {
  2518. name: "Megamacro",
  2519. height: math.unit(5167, "meters")
  2520. },
  2521. {
  2522. name: "Gigamacro",
  2523. height: math.unit(41769, "miles")
  2524. },
  2525. ]
  2526. ))
  2527. characterMakers.push(() => makeCharacter(
  2528. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2529. {
  2530. front: {
  2531. height: math.unit(1.65, "meters"),
  2532. weight: math.unit(50, "kg"),
  2533. name: "Front",
  2534. image: {
  2535. source: "./media/characters/elijah/front.svg",
  2536. extra: 858 / 830,
  2537. bottom: 95.5 / 953.8559
  2538. }
  2539. },
  2540. back: {
  2541. height: math.unit(1.65, "meters"),
  2542. weight: math.unit(50, "kg"),
  2543. name: "Back",
  2544. image: {
  2545. source: "./media/characters/elijah/back.svg",
  2546. extra: 895 / 850,
  2547. bottom: 5.3 / 897.956
  2548. }
  2549. },
  2550. frontNsfw: {
  2551. height: math.unit(1.65, "meters"),
  2552. weight: math.unit(50, "kg"),
  2553. name: "Front (NSFW)",
  2554. image: {
  2555. source: "./media/characters/elijah/front-nsfw.svg",
  2556. extra: 858 / 830,
  2557. bottom: 95.5 / 953.8559
  2558. }
  2559. },
  2560. backNsfw: {
  2561. height: math.unit(1.65, "meters"),
  2562. weight: math.unit(50, "kg"),
  2563. name: "Back (NSFW)",
  2564. image: {
  2565. source: "./media/characters/elijah/back-nsfw.svg",
  2566. extra: 895 / 850,
  2567. bottom: 5.3 / 897.956
  2568. }
  2569. },
  2570. dick: {
  2571. height: math.unit(1, "feet"),
  2572. name: "Dick",
  2573. image: {
  2574. source: "./media/characters/elijah/dick.svg"
  2575. }
  2576. },
  2577. beakOpen: {
  2578. height: math.unit(1.25, "feet"),
  2579. name: "Beak (Open)",
  2580. image: {
  2581. source: "./media/characters/elijah/beak-open.svg"
  2582. }
  2583. },
  2584. beakShut: {
  2585. height: math.unit(1.25, "feet"),
  2586. name: "Beak (Shut)",
  2587. image: {
  2588. source: "./media/characters/elijah/beak-shut.svg"
  2589. }
  2590. },
  2591. footFlexing: {
  2592. height: math.unit(1.61, "feet"),
  2593. name: "Foot (Flexing)",
  2594. image: {
  2595. source: "./media/characters/elijah/foot-flexing.svg"
  2596. }
  2597. },
  2598. footStepping: {
  2599. height: math.unit(1.44, "feet"),
  2600. name: "Foot (Stepping)",
  2601. image: {
  2602. source: "./media/characters/elijah/foot-stepping.svg"
  2603. }
  2604. },
  2605. plantigradeLeg: {
  2606. height: math.unit(2.34, "feet"),
  2607. name: "Plantigrade Leg",
  2608. image: {
  2609. source: "./media/characters/elijah/plantigrade-leg.svg"
  2610. }
  2611. },
  2612. plantigradeFootLeft: {
  2613. height: math.unit(0.9, "feet"),
  2614. name: "Plantigrade Foot (Left)",
  2615. image: {
  2616. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2617. }
  2618. },
  2619. plantigradeFootRight: {
  2620. height: math.unit(0.9, "feet"),
  2621. name: "Plantigrade Foot (Right)",
  2622. image: {
  2623. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2624. }
  2625. },
  2626. },
  2627. [
  2628. {
  2629. name: "Normal",
  2630. height: math.unit(1.65, "meters")
  2631. },
  2632. {
  2633. name: "Macro",
  2634. height: math.unit(55, "meters"),
  2635. default: true
  2636. },
  2637. {
  2638. name: "Macro+",
  2639. height: math.unit(105, "meters")
  2640. },
  2641. ]
  2642. ))
  2643. characterMakers.push(() => makeCharacter(
  2644. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2645. {
  2646. front: {
  2647. height: math.unit(7 + 2/12, "feet"),
  2648. weight: math.unit(320, "kg"),
  2649. name: "Front",
  2650. image: {
  2651. source: "./media/characters/rai/front.svg",
  2652. extra: 1802/1696,
  2653. bottom: 68/1870
  2654. }
  2655. },
  2656. frontDressed: {
  2657. height: math.unit(7 + 2/12, "feet"),
  2658. weight: math.unit(320, "kg"),
  2659. name: "Front (Dressed)",
  2660. image: {
  2661. source: "./media/characters/rai/front-dressed.svg",
  2662. extra: 1802/1696,
  2663. bottom: 68/1870
  2664. }
  2665. },
  2666. side: {
  2667. height: math.unit(7 + 2/12, "feet"),
  2668. weight: math.unit(320, "kg"),
  2669. name: "Side",
  2670. image: {
  2671. source: "./media/characters/rai/side.svg",
  2672. extra: 1789/1710,
  2673. bottom: 115/1904
  2674. }
  2675. },
  2676. back: {
  2677. height: math.unit(7 + 2/12, "feet"),
  2678. weight: math.unit(320, "kg"),
  2679. name: "Back",
  2680. image: {
  2681. source: "./media/characters/rai/back.svg",
  2682. extra: 1770/1707,
  2683. bottom: 28/1798
  2684. }
  2685. },
  2686. feral: {
  2687. height: math.unit(9.5, "feet"),
  2688. weight: math.unit(640, "kg"),
  2689. name: "Feral",
  2690. image: {
  2691. source: "./media/characters/rai/feral.svg",
  2692. extra: 945/553,
  2693. bottom: 176/1121
  2694. }
  2695. },
  2696. dragon: {
  2697. height: math.unit(23, "feet"),
  2698. weight: math.unit(50000, "lb"),
  2699. name: "Dragon",
  2700. image: {
  2701. source: "./media/characters/rai/dragon.svg",
  2702. extra: 2498 / 2030,
  2703. bottom: 85.2 / 2584
  2704. }
  2705. },
  2706. maw: {
  2707. height: math.unit(1.69, "feet"),
  2708. name: "Maw",
  2709. image: {
  2710. source: "./media/characters/rai/maw.svg"
  2711. }
  2712. },
  2713. },
  2714. [
  2715. {
  2716. name: "Normal",
  2717. height: math.unit(7 + 2/12, "feet")
  2718. },
  2719. {
  2720. name: "Big",
  2721. height: math.unit(11, "feet")
  2722. },
  2723. {
  2724. name: "Macro",
  2725. height: math.unit(302, "feet"),
  2726. default: true
  2727. },
  2728. ]
  2729. ))
  2730. characterMakers.push(() => makeCharacter(
  2731. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2732. {
  2733. frontDressed: {
  2734. height: math.unit(216, "feet"),
  2735. weight: math.unit(7000000, "lb"),
  2736. name: "Front (Dressed)",
  2737. image: {
  2738. source: "./media/characters/jazzy/front-dressed.svg",
  2739. extra: 2738 / 2651,
  2740. bottom: 41.8 / 2786
  2741. }
  2742. },
  2743. backDressed: {
  2744. height: math.unit(216, "feet"),
  2745. weight: math.unit(7000000, "lb"),
  2746. name: "Back (Dressed)",
  2747. image: {
  2748. source: "./media/characters/jazzy/back-dressed.svg",
  2749. extra: 2775 / 2673,
  2750. bottom: 36.8 / 2817
  2751. }
  2752. },
  2753. front: {
  2754. height: math.unit(216, "feet"),
  2755. weight: math.unit(7000000, "lb"),
  2756. name: "Front",
  2757. image: {
  2758. source: "./media/characters/jazzy/front.svg",
  2759. extra: 2738 / 2651,
  2760. bottom: 41.8 / 2786
  2761. }
  2762. },
  2763. back: {
  2764. height: math.unit(216, "feet"),
  2765. weight: math.unit(7000000, "lb"),
  2766. name: "Back",
  2767. image: {
  2768. source: "./media/characters/jazzy/back.svg",
  2769. extra: 2775 / 2673,
  2770. bottom: 36.8 / 2817
  2771. }
  2772. },
  2773. maw: {
  2774. height: math.unit(20, "feet"),
  2775. name: "Maw",
  2776. image: {
  2777. source: "./media/characters/jazzy/maw.svg"
  2778. }
  2779. },
  2780. paws: {
  2781. height: math.unit(27.5, "feet"),
  2782. name: "Paws",
  2783. image: {
  2784. source: "./media/characters/jazzy/paws.svg"
  2785. }
  2786. },
  2787. eye: {
  2788. height: math.unit(4.4, "feet"),
  2789. name: "Eye",
  2790. image: {
  2791. source: "./media/characters/jazzy/eye.svg"
  2792. }
  2793. },
  2794. droneOffense: {
  2795. height: math.unit(9.5, "inches"),
  2796. name: "Drone (Offense)",
  2797. image: {
  2798. source: "./media/characters/jazzy/drone-offense.svg"
  2799. }
  2800. },
  2801. droneRecon: {
  2802. height: math.unit(9.5, "inches"),
  2803. name: "Drone (Recon)",
  2804. image: {
  2805. source: "./media/characters/jazzy/drone-recon.svg"
  2806. }
  2807. },
  2808. droneDefense: {
  2809. height: math.unit(9.5, "inches"),
  2810. name: "Drone (Defense)",
  2811. image: {
  2812. source: "./media/characters/jazzy/drone-defense.svg"
  2813. }
  2814. },
  2815. },
  2816. [
  2817. {
  2818. name: "Macro",
  2819. height: math.unit(216, "feet"),
  2820. default: true
  2821. },
  2822. ]
  2823. ))
  2824. characterMakers.push(() => makeCharacter(
  2825. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2826. {
  2827. front: {
  2828. height: math.unit(9 + 6/12, "feet"),
  2829. weight: math.unit(700, "lb"),
  2830. name: "Front",
  2831. image: {
  2832. source: "./media/characters/flamm/front.svg",
  2833. extra: 1751/1632,
  2834. bottom: 46/1797
  2835. }
  2836. },
  2837. buff: {
  2838. height: math.unit(9 + 6/12, "feet"),
  2839. weight: math.unit(950, "lb"),
  2840. name: "Buff",
  2841. image: {
  2842. source: "./media/characters/flamm/buff.svg",
  2843. extra: 3018/2874,
  2844. bottom: 221/3239
  2845. }
  2846. },
  2847. },
  2848. [
  2849. {
  2850. name: "Normal",
  2851. height: math.unit(9.5, "feet")
  2852. },
  2853. {
  2854. name: "Macro",
  2855. height: math.unit(200, "feet"),
  2856. default: true
  2857. },
  2858. ]
  2859. ))
  2860. characterMakers.push(() => makeCharacter(
  2861. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2862. {
  2863. front: {
  2864. height: math.unit(5 + 3/12, "feet"),
  2865. weight: math.unit(60, "kg"),
  2866. name: "Front",
  2867. image: {
  2868. source: "./media/characters/zephiro/front.svg",
  2869. extra: 2309 / 2162,
  2870. bottom: 0.069
  2871. }
  2872. },
  2873. side: {
  2874. height: math.unit(5 + 3/12, "feet"),
  2875. weight: math.unit(60, "kg"),
  2876. name: "Side",
  2877. image: {
  2878. source: "./media/characters/zephiro/side.svg",
  2879. extra: 2403 / 2279,
  2880. bottom: 0.015
  2881. }
  2882. },
  2883. back: {
  2884. height: math.unit(5 + 3/12, "feet"),
  2885. weight: math.unit(60, "kg"),
  2886. name: "Back",
  2887. image: {
  2888. source: "./media/characters/zephiro/back.svg",
  2889. extra: 2373 / 2244,
  2890. bottom: 0.013
  2891. }
  2892. },
  2893. hand: {
  2894. height: math.unit(0.68, "feet"),
  2895. name: "Hand",
  2896. image: {
  2897. source: "./media/characters/zephiro/hand.svg"
  2898. }
  2899. },
  2900. paw: {
  2901. height: math.unit(1, "feet"),
  2902. name: "Paw",
  2903. image: {
  2904. source: "./media/characters/zephiro/paw.svg"
  2905. }
  2906. },
  2907. beans: {
  2908. height: math.unit(0.93, "feet"),
  2909. name: "Beans",
  2910. image: {
  2911. source: "./media/characters/zephiro/beans.svg"
  2912. }
  2913. },
  2914. },
  2915. [
  2916. {
  2917. name: "Micro",
  2918. height: math.unit(3, "inches")
  2919. },
  2920. {
  2921. name: "Normal",
  2922. height: math.unit(5 + 3 / 12, "feet"),
  2923. default: true
  2924. },
  2925. {
  2926. name: "Macro",
  2927. height: math.unit(118, "feet")
  2928. },
  2929. ]
  2930. ))
  2931. characterMakers.push(() => makeCharacter(
  2932. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2933. {
  2934. front: {
  2935. height: math.unit(5, "feet"),
  2936. weight: math.unit(90, "kg"),
  2937. name: "Front",
  2938. image: {
  2939. source: "./media/characters/fory/front.svg",
  2940. extra: 2862 / 2674,
  2941. bottom: 180 / 3043.8
  2942. }
  2943. },
  2944. back: {
  2945. height: math.unit(5, "feet"),
  2946. weight: math.unit(90, "kg"),
  2947. name: "Back",
  2948. image: {
  2949. source: "./media/characters/fory/back.svg",
  2950. extra: 2962 / 2791,
  2951. bottom: 106 / 3071.8
  2952. }
  2953. },
  2954. foot: {
  2955. height: math.unit(2.14, "feet"),
  2956. name: "Foot",
  2957. image: {
  2958. source: "./media/characters/fory/foot.svg"
  2959. }
  2960. },
  2961. },
  2962. [
  2963. {
  2964. name: "Normal",
  2965. height: math.unit(5, "feet")
  2966. },
  2967. {
  2968. name: "Macro",
  2969. height: math.unit(50, "feet"),
  2970. default: true
  2971. },
  2972. {
  2973. name: "Megamacro",
  2974. height: math.unit(10, "miles")
  2975. },
  2976. {
  2977. name: "Gigamacro",
  2978. height: math.unit(5, "earths")
  2979. },
  2980. ]
  2981. ))
  2982. characterMakers.push(() => makeCharacter(
  2983. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2984. {
  2985. front: {
  2986. height: math.unit(7, "feet"),
  2987. weight: math.unit(90, "kg"),
  2988. name: "Front",
  2989. image: {
  2990. source: "./media/characters/kurrikage/front.svg",
  2991. extra: 1845/1733,
  2992. bottom: 119/1964
  2993. }
  2994. },
  2995. back: {
  2996. height: math.unit(7, "feet"),
  2997. weight: math.unit(90, "kg"),
  2998. name: "Back",
  2999. image: {
  3000. source: "./media/characters/kurrikage/back.svg",
  3001. extra: 1790/1677,
  3002. bottom: 61/1851
  3003. }
  3004. },
  3005. dressed: {
  3006. height: math.unit(7, "feet"),
  3007. weight: math.unit(90, "kg"),
  3008. name: "Dressed",
  3009. image: {
  3010. source: "./media/characters/kurrikage/dressed.svg",
  3011. extra: 1845/1733,
  3012. bottom: 119/1964
  3013. }
  3014. },
  3015. foot: {
  3016. height: math.unit(1.5, "feet"),
  3017. name: "Foot",
  3018. image: {
  3019. source: "./media/characters/kurrikage/foot.svg"
  3020. }
  3021. },
  3022. staff: {
  3023. height: math.unit(6.7, "feet"),
  3024. name: "Staff",
  3025. image: {
  3026. source: "./media/characters/kurrikage/staff.svg"
  3027. }
  3028. },
  3029. peek: {
  3030. height: math.unit(1.05, "feet"),
  3031. name: "Peeking",
  3032. image: {
  3033. source: "./media/characters/kurrikage/peek.svg",
  3034. bottom: 0.08
  3035. }
  3036. },
  3037. },
  3038. [
  3039. {
  3040. name: "Normal",
  3041. height: math.unit(12, "feet"),
  3042. default: true
  3043. },
  3044. {
  3045. name: "Big",
  3046. height: math.unit(20, "feet")
  3047. },
  3048. {
  3049. name: "Macro",
  3050. height: math.unit(500, "feet")
  3051. },
  3052. {
  3053. name: "Megamacro",
  3054. height: math.unit(20, "miles")
  3055. },
  3056. ]
  3057. ))
  3058. characterMakers.push(() => makeCharacter(
  3059. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  3060. {
  3061. front: {
  3062. height: math.unit(6, "feet"),
  3063. weight: math.unit(75, "kg"),
  3064. name: "Front",
  3065. image: {
  3066. source: "./media/characters/shingo/front.svg",
  3067. extra: 1900/1825,
  3068. bottom: 82/1982
  3069. }
  3070. },
  3071. side: {
  3072. height: math.unit(6, "feet"),
  3073. weight: math.unit(75, "kg"),
  3074. name: "Side",
  3075. image: {
  3076. source: "./media/characters/shingo/side.svg",
  3077. extra: 1930/1865,
  3078. bottom: 16/1946
  3079. }
  3080. },
  3081. back: {
  3082. height: math.unit(6, "feet"),
  3083. weight: math.unit(75, "kg"),
  3084. name: "Back",
  3085. image: {
  3086. source: "./media/characters/shingo/back.svg",
  3087. extra: 1922/1852,
  3088. bottom: 16/1938
  3089. }
  3090. },
  3091. frontDressed: {
  3092. height: math.unit(6, "feet"),
  3093. weight: math.unit(150, "lb"),
  3094. name: "Front-dressed",
  3095. image: {
  3096. source: "./media/characters/shingo/front-dressed.svg",
  3097. extra: 1900/1825,
  3098. bottom: 82/1982
  3099. }
  3100. },
  3101. paw: {
  3102. height: math.unit(1.29, "feet"),
  3103. name: "Paw",
  3104. image: {
  3105. source: "./media/characters/shingo/paw.svg"
  3106. }
  3107. },
  3108. hand: {
  3109. height: math.unit(1.07, "feet"),
  3110. name: "Hand",
  3111. image: {
  3112. source: "./media/characters/shingo/hand.svg"
  3113. }
  3114. },
  3115. frontAlt: {
  3116. height: math.unit(6, "feet"),
  3117. weight: math.unit(75, "kg"),
  3118. name: "Front (Alt)",
  3119. image: {
  3120. source: "./media/characters/shingo/front-alt.svg",
  3121. extra: 3511 / 3338,
  3122. bottom: 0.005
  3123. }
  3124. },
  3125. frontAlt2: {
  3126. height: math.unit(6, "feet"),
  3127. weight: math.unit(75, "kg"),
  3128. name: "Front (Alt 2)",
  3129. image: {
  3130. source: "./media/characters/shingo/front-alt-2.svg",
  3131. extra: 706/681,
  3132. bottom: 11/717
  3133. }
  3134. },
  3135. pawAlt: {
  3136. height: math.unit(1, "feet"),
  3137. name: "Paw (Alt)",
  3138. image: {
  3139. source: "./media/characters/shingo/paw-alt.svg"
  3140. }
  3141. },
  3142. },
  3143. [
  3144. {
  3145. name: "Micro",
  3146. height: math.unit(4, "inches")
  3147. },
  3148. {
  3149. name: "Normal",
  3150. height: math.unit(6, "feet"),
  3151. default: true
  3152. },
  3153. {
  3154. name: "Macro",
  3155. height: math.unit(108, "feet")
  3156. },
  3157. {
  3158. name: "Macro+",
  3159. height: math.unit(1500, "feet")
  3160. },
  3161. ]
  3162. ))
  3163. characterMakers.push(() => makeCharacter(
  3164. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3165. {
  3166. side: {
  3167. height: math.unit(6, "feet"),
  3168. weight: math.unit(75, "kg"),
  3169. name: "Side",
  3170. image: {
  3171. source: "./media/characters/aigey/side.svg"
  3172. }
  3173. },
  3174. },
  3175. [
  3176. {
  3177. name: "Macro",
  3178. height: math.unit(200, "feet"),
  3179. default: true
  3180. },
  3181. {
  3182. name: "Megamacro",
  3183. height: math.unit(100, "miles")
  3184. },
  3185. ]
  3186. )
  3187. )
  3188. characterMakers.push(() => makeCharacter(
  3189. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3190. {
  3191. front: {
  3192. height: math.unit(5 + 5 / 12, "feet"),
  3193. weight: math.unit(75, "kg"),
  3194. name: "Front",
  3195. image: {
  3196. source: "./media/characters/natasha/front.svg",
  3197. extra: 859 / 824,
  3198. bottom: 23 / 879.6
  3199. }
  3200. },
  3201. frontNsfw: {
  3202. height: math.unit(5 + 5 / 12, "feet"),
  3203. weight: math.unit(75, "kg"),
  3204. name: "Front (NSFW)",
  3205. image: {
  3206. source: "./media/characters/natasha/front-nsfw.svg",
  3207. extra: 859 / 824,
  3208. bottom: 23 / 879.6
  3209. }
  3210. },
  3211. frontErect: {
  3212. height: math.unit(5 + 5 / 12, "feet"),
  3213. weight: math.unit(75, "kg"),
  3214. name: "Front (Erect)",
  3215. image: {
  3216. source: "./media/characters/natasha/front-erect.svg",
  3217. extra: 859 / 824,
  3218. bottom: 23 / 879.6
  3219. }
  3220. },
  3221. back: {
  3222. height: math.unit(5 + 5 / 12, "feet"),
  3223. weight: math.unit(75, "kg"),
  3224. name: "Back",
  3225. image: {
  3226. source: "./media/characters/natasha/back.svg",
  3227. extra: 887.9 / 852.6,
  3228. bottom: 9.7 / 896.4
  3229. }
  3230. },
  3231. backAlt: {
  3232. height: math.unit(5 + 5 / 12, "feet"),
  3233. weight: math.unit(75, "kg"),
  3234. name: "Back (Alt)",
  3235. image: {
  3236. source: "./media/characters/natasha/back-alt.svg",
  3237. extra: 1236.7 / 1192,
  3238. bottom: 22.3 / 1258.2
  3239. }
  3240. },
  3241. dick: {
  3242. height: math.unit(1.772, "feet"),
  3243. name: "Dick",
  3244. image: {
  3245. source: "./media/characters/natasha/dick.svg"
  3246. }
  3247. },
  3248. paw: {
  3249. height: math.unit(0.250, "meters"),
  3250. name: "Paw",
  3251. image: {
  3252. source: "./media/characters/natasha/paw.svg"
  3253. }
  3254. },
  3255. },
  3256. [
  3257. {
  3258. name: "Normal",
  3259. height: math.unit(5 + 5 / 12, "feet")
  3260. },
  3261. {
  3262. name: "Large",
  3263. height: math.unit(12, "feet")
  3264. },
  3265. {
  3266. name: "Macro",
  3267. height: math.unit(100, "feet"),
  3268. default: true
  3269. },
  3270. {
  3271. name: "Macro+",
  3272. height: math.unit(260, "feet")
  3273. },
  3274. {
  3275. name: "Macro++",
  3276. height: math.unit(1, "mile")
  3277. },
  3278. ]
  3279. ))
  3280. characterMakers.push(() => makeCharacter(
  3281. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3282. {
  3283. front: {
  3284. height: math.unit(6, "feet"),
  3285. weight: math.unit(75, "kg"),
  3286. name: "Front",
  3287. image: {
  3288. source: "./media/characters/malik/front.svg"
  3289. }
  3290. },
  3291. side: {
  3292. height: math.unit(6, "feet"),
  3293. weight: math.unit(75, "kg"),
  3294. name: "Side",
  3295. image: {
  3296. source: "./media/characters/malik/side.svg",
  3297. extra: 1.1539
  3298. }
  3299. },
  3300. back: {
  3301. height: math.unit(6, "feet"),
  3302. weight: math.unit(75, "kg"),
  3303. name: "Back",
  3304. image: {
  3305. source: "./media/characters/malik/back.svg"
  3306. }
  3307. },
  3308. },
  3309. [
  3310. {
  3311. name: "Macro",
  3312. height: math.unit(156, "feet"),
  3313. default: true
  3314. },
  3315. {
  3316. name: "Macro+",
  3317. height: math.unit(1188, "feet")
  3318. },
  3319. ]
  3320. ))
  3321. characterMakers.push(() => makeCharacter(
  3322. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3323. {
  3324. front: {
  3325. height: math.unit(6, "feet"),
  3326. weight: math.unit(75, "kg"),
  3327. name: "Front",
  3328. image: {
  3329. source: "./media/characters/sefer/front.svg",
  3330. extra: 848 / 659,
  3331. bottom: 28.3 / 876.442
  3332. }
  3333. },
  3334. back: {
  3335. height: math.unit(6, "feet"),
  3336. weight: math.unit(75, "kg"),
  3337. name: "Back",
  3338. image: {
  3339. source: "./media/characters/sefer/back.svg",
  3340. extra: 864 / 695,
  3341. bottom: 10 / 871
  3342. }
  3343. },
  3344. frontDressed: {
  3345. height: math.unit(6, "feet"),
  3346. weight: math.unit(75, "kg"),
  3347. name: "Front (Dressed)",
  3348. image: {
  3349. source: "./media/characters/sefer/front-dressed.svg",
  3350. extra: 839 / 653,
  3351. bottom: 37.6 / 878
  3352. }
  3353. },
  3354. },
  3355. [
  3356. {
  3357. name: "Normal",
  3358. height: math.unit(6, "feet"),
  3359. default: true
  3360. },
  3361. ]
  3362. ))
  3363. characterMakers.push(() => makeCharacter(
  3364. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3365. {
  3366. body: {
  3367. height: math.unit(2.2428, "meter"),
  3368. weight: math.unit(124.738, "kg"),
  3369. name: "Body",
  3370. image: {
  3371. extra: 1225 / 1050,
  3372. source: "./media/characters/north/front.svg"
  3373. }
  3374. }
  3375. },
  3376. [
  3377. {
  3378. name: "Micro",
  3379. height: math.unit(4, "inches")
  3380. },
  3381. {
  3382. name: "Macro",
  3383. height: math.unit(63, "meters")
  3384. },
  3385. {
  3386. name: "Megamacro",
  3387. height: math.unit(101, "miles"),
  3388. default: true
  3389. }
  3390. ]
  3391. ))
  3392. characterMakers.push(() => makeCharacter(
  3393. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3394. {
  3395. angled: {
  3396. height: math.unit(4, "meter"),
  3397. weight: math.unit(150, "kg"),
  3398. name: "Angled",
  3399. image: {
  3400. source: "./media/characters/talan/angled-sfw.svg",
  3401. bottom: 29 / 3734
  3402. }
  3403. },
  3404. angledNsfw: {
  3405. height: math.unit(4, "meter"),
  3406. weight: math.unit(150, "kg"),
  3407. name: "Angled (NSFW)",
  3408. image: {
  3409. source: "./media/characters/talan/angled-nsfw.svg",
  3410. bottom: 29 / 3734
  3411. }
  3412. },
  3413. frontNsfw: {
  3414. height: math.unit(4, "meter"),
  3415. weight: math.unit(150, "kg"),
  3416. name: "Front (NSFW)",
  3417. image: {
  3418. source: "./media/characters/talan/front-nsfw.svg",
  3419. bottom: 29 / 3734
  3420. }
  3421. },
  3422. sideNsfw: {
  3423. height: math.unit(4, "meter"),
  3424. weight: math.unit(150, "kg"),
  3425. name: "Side (NSFW)",
  3426. image: {
  3427. source: "./media/characters/talan/side-nsfw.svg",
  3428. bottom: 29 / 3734
  3429. }
  3430. },
  3431. back: {
  3432. height: math.unit(4, "meter"),
  3433. weight: math.unit(150, "kg"),
  3434. name: "Back",
  3435. image: {
  3436. source: "./media/characters/talan/back.svg"
  3437. }
  3438. },
  3439. dickBottom: {
  3440. height: math.unit(0.621, "meter"),
  3441. name: "Dick (Bottom)",
  3442. image: {
  3443. source: "./media/characters/talan/dick-bottom.svg"
  3444. }
  3445. },
  3446. dickTop: {
  3447. height: math.unit(0.621, "meter"),
  3448. name: "Dick (Top)",
  3449. image: {
  3450. source: "./media/characters/talan/dick-top.svg"
  3451. }
  3452. },
  3453. dickSide: {
  3454. height: math.unit(0.305, "meter"),
  3455. name: "Dick (Side)",
  3456. image: {
  3457. source: "./media/characters/talan/dick-side.svg"
  3458. }
  3459. },
  3460. dickFront: {
  3461. height: math.unit(0.305, "meter"),
  3462. name: "Dick (Front)",
  3463. image: {
  3464. source: "./media/characters/talan/dick-front.svg"
  3465. }
  3466. },
  3467. },
  3468. [
  3469. {
  3470. name: "Normal",
  3471. height: math.unit(4, "meters")
  3472. },
  3473. {
  3474. name: "Macro",
  3475. height: math.unit(100, "meters")
  3476. },
  3477. {
  3478. name: "Megamacro",
  3479. height: math.unit(2, "miles"),
  3480. default: true
  3481. },
  3482. {
  3483. name: "Gigamacro",
  3484. height: math.unit(5000, "miles")
  3485. },
  3486. {
  3487. name: "Teramacro",
  3488. height: math.unit(100, "parsecs")
  3489. }
  3490. ]
  3491. ))
  3492. characterMakers.push(() => makeCharacter(
  3493. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3494. {
  3495. front: {
  3496. height: math.unit(2, "meter"),
  3497. weight: math.unit(90, "kg"),
  3498. name: "Front",
  3499. image: {
  3500. source: "./media/characters/gael'rathus/front.svg"
  3501. }
  3502. },
  3503. frontAlt: {
  3504. height: math.unit(2, "meter"),
  3505. weight: math.unit(90, "kg"),
  3506. name: "Front (alt)",
  3507. image: {
  3508. source: "./media/characters/gael'rathus/front-alt.svg"
  3509. }
  3510. },
  3511. frontAlt2: {
  3512. height: math.unit(2, "meter"),
  3513. weight: math.unit(90, "kg"),
  3514. name: "Front (alt 2)",
  3515. image: {
  3516. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3517. }
  3518. }
  3519. },
  3520. [
  3521. {
  3522. name: "Normal",
  3523. height: math.unit(9, "feet"),
  3524. default: true
  3525. },
  3526. {
  3527. name: "Large",
  3528. height: math.unit(25, "feet")
  3529. },
  3530. {
  3531. name: "Macro",
  3532. height: math.unit(0.25, "miles")
  3533. },
  3534. {
  3535. name: "Megamacro",
  3536. height: math.unit(10, "miles")
  3537. }
  3538. ]
  3539. ))
  3540. characterMakers.push(() => makeCharacter(
  3541. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3542. {
  3543. side: {
  3544. height: math.unit(2, "meter"),
  3545. weight: math.unit(140, "kg"),
  3546. name: "Side",
  3547. image: {
  3548. source: "./media/characters/sosha/side.svg",
  3549. bottom: 0.042
  3550. }
  3551. },
  3552. },
  3553. [
  3554. {
  3555. name: "Normal",
  3556. height: math.unit(12, "feet"),
  3557. default: true
  3558. }
  3559. ]
  3560. ))
  3561. characterMakers.push(() => makeCharacter(
  3562. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3563. {
  3564. side: {
  3565. height: math.unit(5 + 5 / 12, "feet"),
  3566. weight: math.unit(170, "kg"),
  3567. name: "Side",
  3568. image: {
  3569. source: "./media/characters/runnola/side.svg",
  3570. extra: 741 / 448,
  3571. bottom: 0.05
  3572. }
  3573. },
  3574. },
  3575. [
  3576. {
  3577. name: "Small",
  3578. height: math.unit(3, "feet")
  3579. },
  3580. {
  3581. name: "Normal",
  3582. height: math.unit(5 + 5 / 12, "feet"),
  3583. default: true
  3584. },
  3585. {
  3586. name: "Big",
  3587. height: math.unit(10, "feet")
  3588. },
  3589. ]
  3590. ))
  3591. characterMakers.push(() => makeCharacter(
  3592. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3593. {
  3594. front: {
  3595. height: math.unit(2, "meter"),
  3596. weight: math.unit(50, "kg"),
  3597. name: "Front",
  3598. image: {
  3599. source: "./media/characters/kurribird/front.svg",
  3600. bottom: 0.015
  3601. }
  3602. },
  3603. frontAlt: {
  3604. height: math.unit(1.5, "meter"),
  3605. weight: math.unit(50, "kg"),
  3606. name: "Front (Alt)",
  3607. image: {
  3608. source: "./media/characters/kurribird/front-alt.svg",
  3609. extra: 1.45
  3610. }
  3611. },
  3612. },
  3613. [
  3614. {
  3615. name: "Normal",
  3616. height: math.unit(7, "feet")
  3617. },
  3618. {
  3619. name: "Big",
  3620. height: math.unit(12, "feet"),
  3621. default: true
  3622. },
  3623. {
  3624. name: "Macro",
  3625. height: math.unit(1500, "feet")
  3626. },
  3627. {
  3628. name: "Megamacro",
  3629. height: math.unit(2, "miles")
  3630. }
  3631. ]
  3632. ))
  3633. characterMakers.push(() => makeCharacter(
  3634. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3635. {
  3636. front: {
  3637. height: math.unit(2, "meter"),
  3638. weight: math.unit(80, "kg"),
  3639. name: "Front",
  3640. image: {
  3641. source: "./media/characters/elbial/front.svg",
  3642. extra: 1643 / 1556,
  3643. bottom: 60.2 / 1696
  3644. }
  3645. },
  3646. side: {
  3647. height: math.unit(2, "meter"),
  3648. weight: math.unit(80, "kg"),
  3649. name: "Side",
  3650. image: {
  3651. source: "./media/characters/elbial/side.svg",
  3652. extra: 1601/1528,
  3653. bottom: 97/1698
  3654. }
  3655. },
  3656. back: {
  3657. height: math.unit(2, "meter"),
  3658. weight: math.unit(80, "kg"),
  3659. name: "Back",
  3660. image: {
  3661. source: "./media/characters/elbial/back.svg",
  3662. extra: 1653/1569,
  3663. bottom: 20/1673
  3664. }
  3665. },
  3666. frontDressed: {
  3667. height: math.unit(2, "meter"),
  3668. weight: math.unit(80, "kg"),
  3669. name: "Front (Dressed)",
  3670. image: {
  3671. source: "./media/characters/elbial/front-dressed.svg",
  3672. extra: 1638/1569,
  3673. bottom: 70/1708
  3674. }
  3675. },
  3676. genitals: {
  3677. height: math.unit(2 / 3.367, "meter"),
  3678. name: "Genitals",
  3679. image: {
  3680. source: "./media/characters/elbial/genitals.svg"
  3681. }
  3682. },
  3683. },
  3684. [
  3685. {
  3686. name: "Large",
  3687. height: math.unit(100, "feet")
  3688. },
  3689. {
  3690. name: "Macro",
  3691. height: math.unit(500, "feet"),
  3692. default: true
  3693. },
  3694. {
  3695. name: "Megamacro",
  3696. height: math.unit(10, "miles")
  3697. },
  3698. {
  3699. name: "Gigamacro",
  3700. height: math.unit(25000, "miles")
  3701. },
  3702. {
  3703. name: "Full-Size",
  3704. height: math.unit(8000000, "gigaparsecs")
  3705. }
  3706. ]
  3707. ))
  3708. characterMakers.push(() => makeCharacter(
  3709. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3710. {
  3711. front: {
  3712. height: math.unit(2, "meter"),
  3713. weight: math.unit(60, "kg"),
  3714. name: "Front",
  3715. image: {
  3716. source: "./media/characters/noah/front.svg"
  3717. }
  3718. },
  3719. talons: {
  3720. height: math.unit(0.315, "meter"),
  3721. name: "Talons",
  3722. image: {
  3723. source: "./media/characters/noah/talons.svg"
  3724. }
  3725. }
  3726. },
  3727. [
  3728. {
  3729. name: "Large",
  3730. height: math.unit(50, "feet")
  3731. },
  3732. {
  3733. name: "Macro",
  3734. height: math.unit(750, "feet"),
  3735. default: true
  3736. },
  3737. {
  3738. name: "Megamacro",
  3739. height: math.unit(50, "miles")
  3740. },
  3741. {
  3742. name: "Gigamacro",
  3743. height: math.unit(100000, "miles")
  3744. },
  3745. {
  3746. name: "Full-Size",
  3747. height: math.unit(3000000000, "miles")
  3748. }
  3749. ]
  3750. ))
  3751. characterMakers.push(() => makeCharacter(
  3752. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3753. {
  3754. front: {
  3755. height: math.unit(2, "meter"),
  3756. weight: math.unit(80, "kg"),
  3757. name: "Front",
  3758. image: {
  3759. source: "./media/characters/natalya/front.svg"
  3760. }
  3761. },
  3762. back: {
  3763. height: math.unit(2, "meter"),
  3764. weight: math.unit(80, "kg"),
  3765. name: "Back",
  3766. image: {
  3767. source: "./media/characters/natalya/back.svg"
  3768. }
  3769. }
  3770. },
  3771. [
  3772. {
  3773. name: "Normal",
  3774. height: math.unit(150, "feet"),
  3775. default: true
  3776. },
  3777. {
  3778. name: "Megamacro",
  3779. height: math.unit(5, "miles")
  3780. },
  3781. {
  3782. name: "Full-Size",
  3783. height: math.unit(600, "kiloparsecs")
  3784. }
  3785. ]
  3786. ))
  3787. characterMakers.push(() => makeCharacter(
  3788. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3789. {
  3790. front: {
  3791. height: math.unit(2, "meter"),
  3792. weight: math.unit(50, "kg"),
  3793. name: "Front",
  3794. image: {
  3795. source: "./media/characters/erestrebah/front.svg",
  3796. extra: 1262/1162,
  3797. bottom: 96/1358
  3798. }
  3799. },
  3800. back: {
  3801. height: math.unit(2, "meter"),
  3802. weight: math.unit(50, "kg"),
  3803. name: "Back",
  3804. image: {
  3805. source: "./media/characters/erestrebah/back.svg",
  3806. extra: 1257/1139,
  3807. bottom: 13/1270
  3808. }
  3809. },
  3810. wing: {
  3811. height: math.unit(2, "meter"),
  3812. weight: math.unit(50, "kg"),
  3813. name: "Wing",
  3814. image: {
  3815. source: "./media/characters/erestrebah/wing.svg",
  3816. extra: 1262/1162,
  3817. bottom: 96/1358
  3818. }
  3819. },
  3820. mouth: {
  3821. height: math.unit(0.39, "feet"),
  3822. name: "Mouth",
  3823. image: {
  3824. source: "./media/characters/erestrebah/mouth.svg"
  3825. }
  3826. }
  3827. },
  3828. [
  3829. {
  3830. name: "Normal",
  3831. height: math.unit(10, "feet")
  3832. },
  3833. {
  3834. name: "Large",
  3835. height: math.unit(50, "feet"),
  3836. default: true
  3837. },
  3838. {
  3839. name: "Macro",
  3840. height: math.unit(300, "feet")
  3841. },
  3842. {
  3843. name: "Macro+",
  3844. height: math.unit(750, "feet")
  3845. },
  3846. {
  3847. name: "Megamacro",
  3848. height: math.unit(3, "miles")
  3849. }
  3850. ]
  3851. ))
  3852. characterMakers.push(() => makeCharacter(
  3853. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3854. {
  3855. front: {
  3856. height: math.unit(2, "meter"),
  3857. weight: math.unit(80, "kg"),
  3858. name: "Front",
  3859. image: {
  3860. source: "./media/characters/jennifer/front.svg",
  3861. bottom: 0.11,
  3862. extra: 1.16
  3863. }
  3864. },
  3865. frontAlt: {
  3866. height: math.unit(2, "meter"),
  3867. weight: math.unit(80, "kg"),
  3868. name: "Front (Alt)",
  3869. image: {
  3870. source: "./media/characters/jennifer/front-alt.svg"
  3871. }
  3872. }
  3873. },
  3874. [
  3875. {
  3876. name: "Canon Height",
  3877. height: math.unit(120, "feet"),
  3878. default: true
  3879. },
  3880. {
  3881. name: "Macro+",
  3882. height: math.unit(300, "feet")
  3883. },
  3884. {
  3885. name: "Megamacro",
  3886. height: math.unit(20000, "feet")
  3887. }
  3888. ]
  3889. ))
  3890. characterMakers.push(() => makeCharacter(
  3891. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3892. {
  3893. front: {
  3894. height: math.unit(2, "meter"),
  3895. weight: math.unit(50, "kg"),
  3896. name: "Front",
  3897. image: {
  3898. source: "./media/characters/kalista/front.svg",
  3899. extra: 1314/1145,
  3900. bottom: 101/1415
  3901. }
  3902. },
  3903. back: {
  3904. height: math.unit(2, "meter"),
  3905. weight: math.unit(50, "kg"),
  3906. name: "Back",
  3907. image: {
  3908. source: "./media/characters/kalista/back.svg",
  3909. extra: 1366 / 1156,
  3910. bottom: 33.9 / 1362.78
  3911. }
  3912. }
  3913. },
  3914. [
  3915. {
  3916. name: "Uncomfortably Small",
  3917. height: math.unit(10, "feet")
  3918. },
  3919. {
  3920. name: "Small",
  3921. height: math.unit(30, "feet")
  3922. },
  3923. {
  3924. name: "Macro",
  3925. height: math.unit(100, "feet"),
  3926. default: true
  3927. },
  3928. {
  3929. name: "Macro+",
  3930. height: math.unit(2000, "feet")
  3931. },
  3932. {
  3933. name: "True Form",
  3934. height: math.unit(8924, "miles")
  3935. }
  3936. ]
  3937. ))
  3938. characterMakers.push(() => makeCharacter(
  3939. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3940. {
  3941. front: {
  3942. height: math.unit(2, "meter"),
  3943. weight: math.unit(120, "kg"),
  3944. name: "Front",
  3945. image: {
  3946. source: "./media/characters/ggv/front.svg"
  3947. }
  3948. },
  3949. side: {
  3950. height: math.unit(2, "meter"),
  3951. weight: math.unit(120, "kg"),
  3952. name: "Side",
  3953. image: {
  3954. source: "./media/characters/ggv/side.svg"
  3955. }
  3956. }
  3957. },
  3958. [
  3959. {
  3960. name: "Extremely Puny",
  3961. height: math.unit(9 + 5 / 12, "feet")
  3962. },
  3963. {
  3964. name: "Horribly Small",
  3965. height: math.unit(47.7, "miles"),
  3966. default: true
  3967. },
  3968. {
  3969. name: "Reasonably Sized",
  3970. height: math.unit(25000, "parsecs")
  3971. },
  3972. {
  3973. name: "Slightly Uncompressed",
  3974. height: math.unit(7.77e31, "parsecs")
  3975. },
  3976. {
  3977. name: "Omniversal",
  3978. height: math.unit(1e300, "meters")
  3979. },
  3980. ]
  3981. ))
  3982. characterMakers.push(() => makeCharacter(
  3983. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3984. {
  3985. front: {
  3986. height: math.unit(2, "meter"),
  3987. weight: math.unit(75, "lb"),
  3988. name: "Front",
  3989. image: {
  3990. source: "./media/characters/napalm/front.svg"
  3991. }
  3992. },
  3993. back: {
  3994. height: math.unit(2, "meter"),
  3995. weight: math.unit(75, "lb"),
  3996. name: "Back",
  3997. image: {
  3998. source: "./media/characters/napalm/back.svg"
  3999. }
  4000. }
  4001. },
  4002. [
  4003. {
  4004. name: "Standard",
  4005. height: math.unit(55, "feet"),
  4006. default: true
  4007. }
  4008. ]
  4009. ))
  4010. characterMakers.push(() => makeCharacter(
  4011. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  4012. {
  4013. front: {
  4014. height: math.unit(7 + 5 / 6, "feet"),
  4015. weight: math.unit(325, "lb"),
  4016. name: "Front",
  4017. image: {
  4018. source: "./media/characters/asana/front.svg",
  4019. extra: 1133 / 1060,
  4020. bottom: 15.2 / 1148.6
  4021. }
  4022. },
  4023. back: {
  4024. height: math.unit(7 + 5 / 6, "feet"),
  4025. weight: math.unit(325, "lb"),
  4026. name: "Back",
  4027. image: {
  4028. source: "./media/characters/asana/back.svg",
  4029. extra: 1114 / 1043,
  4030. bottom: 5 / 1120
  4031. }
  4032. },
  4033. dressedDark: {
  4034. height: math.unit(7 + 5 / 6, "feet"),
  4035. weight: math.unit(325, "lb"),
  4036. name: "Dressed (Dark)",
  4037. image: {
  4038. source: "./media/characters/asana/dressed-dark.svg",
  4039. extra: 1133 / 1060,
  4040. bottom: 15.2 / 1148.6
  4041. }
  4042. },
  4043. dressedLight: {
  4044. height: math.unit(7 + 5 / 6, "feet"),
  4045. weight: math.unit(325, "lb"),
  4046. name: "Dressed (Light)",
  4047. image: {
  4048. source: "./media/characters/asana/dressed-light.svg",
  4049. extra: 1133 / 1060,
  4050. bottom: 15.2 / 1148.6
  4051. }
  4052. },
  4053. },
  4054. [
  4055. {
  4056. name: "Standard",
  4057. height: math.unit(7 + 5 / 6, "feet"),
  4058. default: true
  4059. },
  4060. {
  4061. name: "Large",
  4062. height: math.unit(10, "meters")
  4063. },
  4064. {
  4065. name: "Macro",
  4066. height: math.unit(2500, "meters")
  4067. },
  4068. {
  4069. name: "Megamacro",
  4070. height: math.unit(5e6, "meters")
  4071. },
  4072. {
  4073. name: "Examacro",
  4074. height: math.unit(5e12, "lightyears")
  4075. },
  4076. {
  4077. name: "Max Size",
  4078. height: math.unit(1e31, "lightyears")
  4079. }
  4080. ]
  4081. ))
  4082. characterMakers.push(() => makeCharacter(
  4083. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  4084. {
  4085. front: {
  4086. height: math.unit(2, "meter"),
  4087. weight: math.unit(60, "kg"),
  4088. name: "Front",
  4089. image: {
  4090. source: "./media/characters/ebony/front.svg",
  4091. bottom: 0.03,
  4092. extra: 1045 / 810 + 0.03
  4093. }
  4094. },
  4095. side: {
  4096. height: math.unit(2, "meter"),
  4097. weight: math.unit(60, "kg"),
  4098. name: "Side",
  4099. image: {
  4100. source: "./media/characters/ebony/side.svg",
  4101. bottom: 0.03,
  4102. extra: 1045 / 810 + 0.03
  4103. }
  4104. },
  4105. back: {
  4106. height: math.unit(2, "meter"),
  4107. weight: math.unit(60, "kg"),
  4108. name: "Back",
  4109. image: {
  4110. source: "./media/characters/ebony/back.svg",
  4111. bottom: 0.01,
  4112. extra: 1045 / 810 + 0.01
  4113. }
  4114. },
  4115. },
  4116. [
  4117. // TODO check why I did this lol
  4118. {
  4119. name: "Standard",
  4120. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  4121. default: true
  4122. },
  4123. {
  4124. name: "Macro",
  4125. height: math.unit(200, "feet")
  4126. },
  4127. {
  4128. name: "Gigamacro",
  4129. height: math.unit(13000, "km")
  4130. }
  4131. ]
  4132. ))
  4133. characterMakers.push(() => makeCharacter(
  4134. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4135. {
  4136. front: {
  4137. height: math.unit(6, "feet"),
  4138. weight: math.unit(175, "lb"),
  4139. name: "Front",
  4140. image: {
  4141. source: "./media/characters/mountain/front.svg",
  4142. extra: 972 / 955,
  4143. bottom: 64 / 1036.6
  4144. }
  4145. },
  4146. back: {
  4147. height: math.unit(6, "feet"),
  4148. weight: math.unit(175, "lb"),
  4149. name: "Back",
  4150. image: {
  4151. source: "./media/characters/mountain/back.svg",
  4152. extra: 970 / 950,
  4153. bottom: 28.25 / 999
  4154. }
  4155. },
  4156. },
  4157. [
  4158. {
  4159. name: "Large",
  4160. height: math.unit(20, "meters")
  4161. },
  4162. {
  4163. name: "Macro",
  4164. height: math.unit(300, "meters")
  4165. },
  4166. {
  4167. name: "Gigamacro",
  4168. height: math.unit(10000, "km"),
  4169. default: true
  4170. },
  4171. {
  4172. name: "Examacro",
  4173. height: math.unit(10e9, "lightyears")
  4174. }
  4175. ]
  4176. ))
  4177. characterMakers.push(() => makeCharacter(
  4178. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4179. {
  4180. front: {
  4181. height: math.unit(8, "feet"),
  4182. weight: math.unit(500, "lb"),
  4183. name: "Front",
  4184. image: {
  4185. source: "./media/characters/rick/front.svg"
  4186. }
  4187. }
  4188. },
  4189. [
  4190. {
  4191. name: "Normal",
  4192. height: math.unit(8, "feet"),
  4193. default: true
  4194. },
  4195. {
  4196. name: "Macro",
  4197. height: math.unit(5, "km")
  4198. }
  4199. ]
  4200. ))
  4201. characterMakers.push(() => makeCharacter(
  4202. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4203. {
  4204. front: {
  4205. height: math.unit(8, "feet"),
  4206. weight: math.unit(120, "lb"),
  4207. name: "Front",
  4208. image: {
  4209. source: "./media/characters/ona/front.svg"
  4210. }
  4211. },
  4212. frontAlt: {
  4213. height: math.unit(8, "feet"),
  4214. weight: math.unit(120, "lb"),
  4215. name: "Front (Alt)",
  4216. image: {
  4217. source: "./media/characters/ona/front-alt.svg"
  4218. }
  4219. },
  4220. back: {
  4221. height: math.unit(8, "feet"),
  4222. weight: math.unit(120, "lb"),
  4223. name: "Back",
  4224. image: {
  4225. source: "./media/characters/ona/back.svg"
  4226. }
  4227. },
  4228. foot: {
  4229. height: math.unit(1.1, "feet"),
  4230. name: "Foot",
  4231. image: {
  4232. source: "./media/characters/ona/foot.svg"
  4233. }
  4234. }
  4235. },
  4236. [
  4237. {
  4238. name: "Megamacro",
  4239. height: math.unit(70, "km"),
  4240. default: true
  4241. },
  4242. {
  4243. name: "Gigamacro",
  4244. height: math.unit(681818, "miles")
  4245. },
  4246. {
  4247. name: "Examacro",
  4248. height: math.unit(3800000, "lightyears")
  4249. },
  4250. ]
  4251. ))
  4252. characterMakers.push(() => makeCharacter(
  4253. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  4254. {
  4255. front: {
  4256. height: math.unit(12, "feet"),
  4257. weight: math.unit(3000, "lb"),
  4258. name: "Front",
  4259. image: {
  4260. source: "./media/characters/mech/front.svg",
  4261. extra: 2900 / 2770,
  4262. bottom: 110 / 3010
  4263. }
  4264. },
  4265. back: {
  4266. height: math.unit(12, "feet"),
  4267. weight: math.unit(3000, "lb"),
  4268. name: "Back",
  4269. image: {
  4270. source: "./media/characters/mech/back.svg",
  4271. extra: 3011 / 2890,
  4272. bottom: 94 / 3105
  4273. }
  4274. },
  4275. maw: {
  4276. height: math.unit(3.07, "feet"),
  4277. name: "Maw",
  4278. image: {
  4279. source: "./media/characters/mech/maw.svg"
  4280. }
  4281. },
  4282. head: {
  4283. height: math.unit(2.82, "feet"),
  4284. name: "Head",
  4285. image: {
  4286. source: "./media/characters/mech/head.svg"
  4287. }
  4288. },
  4289. dick: {
  4290. height: math.unit(1.43, "feet"),
  4291. name: "Dick",
  4292. image: {
  4293. source: "./media/characters/mech/dick.svg"
  4294. }
  4295. },
  4296. },
  4297. [
  4298. {
  4299. name: "Normal",
  4300. height: math.unit(12, "feet")
  4301. },
  4302. {
  4303. name: "Macro",
  4304. height: math.unit(300, "feet"),
  4305. default: true
  4306. },
  4307. {
  4308. name: "Macro+",
  4309. height: math.unit(1500, "feet")
  4310. },
  4311. ]
  4312. ))
  4313. characterMakers.push(() => makeCharacter(
  4314. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  4315. {
  4316. front: {
  4317. height: math.unit(1.3, "meter"),
  4318. weight: math.unit(30, "kg"),
  4319. name: "Front",
  4320. image: {
  4321. source: "./media/characters/gregory/front.svg",
  4322. }
  4323. }
  4324. },
  4325. [
  4326. {
  4327. name: "Normal",
  4328. height: math.unit(1.3, "meter"),
  4329. default: true
  4330. },
  4331. {
  4332. name: "Macro",
  4333. height: math.unit(20, "meter")
  4334. }
  4335. ]
  4336. ))
  4337. characterMakers.push(() => makeCharacter(
  4338. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  4339. {
  4340. front: {
  4341. height: math.unit(2.8, "meter"),
  4342. weight: math.unit(200, "kg"),
  4343. name: "Front",
  4344. image: {
  4345. source: "./media/characters/elory/front.svg",
  4346. }
  4347. }
  4348. },
  4349. [
  4350. {
  4351. name: "Normal",
  4352. height: math.unit(2.8, "meter"),
  4353. default: true
  4354. },
  4355. {
  4356. name: "Macro",
  4357. height: math.unit(38, "meter")
  4358. }
  4359. ]
  4360. ))
  4361. characterMakers.push(() => makeCharacter(
  4362. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4363. {
  4364. front: {
  4365. height: math.unit(470, "feet"),
  4366. weight: math.unit(924, "tons"),
  4367. name: "Front",
  4368. image: {
  4369. source: "./media/characters/angelpatamon/front.svg",
  4370. }
  4371. }
  4372. },
  4373. [
  4374. {
  4375. name: "Normal",
  4376. height: math.unit(470, "feet"),
  4377. default: true
  4378. },
  4379. {
  4380. name: "Deity Size I",
  4381. height: math.unit(28651.2, "km")
  4382. },
  4383. {
  4384. name: "Deity Size II",
  4385. height: math.unit(171907.2, "km")
  4386. }
  4387. ]
  4388. ))
  4389. characterMakers.push(() => makeCharacter(
  4390. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4391. {
  4392. side: {
  4393. height: math.unit(7.2, "meter"),
  4394. weight: math.unit(8.2, "tons"),
  4395. name: "Side",
  4396. image: {
  4397. source: "./media/characters/cryae/side.svg",
  4398. extra: 3500 / 1500
  4399. }
  4400. }
  4401. },
  4402. [
  4403. {
  4404. name: "Normal",
  4405. height: math.unit(7.2, "meter"),
  4406. default: true
  4407. }
  4408. ]
  4409. ))
  4410. characterMakers.push(() => makeCharacter(
  4411. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4412. {
  4413. front: {
  4414. height: math.unit(6, "feet"),
  4415. weight: math.unit(175, "lb"),
  4416. name: "Front",
  4417. image: {
  4418. source: "./media/characters/xera/front.svg",
  4419. extra: 2377 / 1972,
  4420. bottom: 75.5 / 2452
  4421. }
  4422. },
  4423. side: {
  4424. height: math.unit(6, "feet"),
  4425. weight: math.unit(175, "lb"),
  4426. name: "Side",
  4427. image: {
  4428. source: "./media/characters/xera/side.svg",
  4429. extra: 2345 / 2019,
  4430. bottom: 39.7 / 2384
  4431. }
  4432. },
  4433. back: {
  4434. height: math.unit(6, "feet"),
  4435. weight: math.unit(175, "lb"),
  4436. name: "Back",
  4437. image: {
  4438. source: "./media/characters/xera/back.svg",
  4439. extra: 2095 / 1984,
  4440. bottom: 67 / 2166
  4441. }
  4442. },
  4443. },
  4444. [
  4445. {
  4446. name: "Small",
  4447. height: math.unit(10, "feet")
  4448. },
  4449. {
  4450. name: "Macro",
  4451. height: math.unit(500, "meters"),
  4452. default: true
  4453. },
  4454. {
  4455. name: "Macro+",
  4456. height: math.unit(10, "km")
  4457. },
  4458. {
  4459. name: "Gigamacro",
  4460. height: math.unit(25000, "km")
  4461. },
  4462. {
  4463. name: "Teramacro",
  4464. height: math.unit(3e6, "km")
  4465. }
  4466. ]
  4467. ))
  4468. characterMakers.push(() => makeCharacter(
  4469. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4470. {
  4471. front: {
  4472. height: math.unit(6, "feet"),
  4473. weight: math.unit(175, "lb"),
  4474. name: "Front",
  4475. image: {
  4476. source: "./media/characters/nebula/front.svg",
  4477. extra: 2566 / 2362,
  4478. bottom: 81 / 2644
  4479. }
  4480. }
  4481. },
  4482. [
  4483. {
  4484. name: "Small",
  4485. height: math.unit(4.5, "meters")
  4486. },
  4487. {
  4488. name: "Macro",
  4489. height: math.unit(1500, "meters"),
  4490. default: true
  4491. },
  4492. {
  4493. name: "Megamacro",
  4494. height: math.unit(150, "km")
  4495. },
  4496. {
  4497. name: "Gigamacro",
  4498. height: math.unit(27000, "km")
  4499. }
  4500. ]
  4501. ))
  4502. characterMakers.push(() => makeCharacter(
  4503. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4504. {
  4505. front: {
  4506. height: math.unit(6, "feet"),
  4507. weight: math.unit(225, "lb"),
  4508. name: "Front",
  4509. image: {
  4510. source: "./media/characters/abysgar/front.svg",
  4511. extra: 1739/1614,
  4512. bottom: 71/1810
  4513. }
  4514. },
  4515. frontNsfw: {
  4516. height: math.unit(6, "feet"),
  4517. weight: math.unit(225, "lb"),
  4518. name: "Front (NSFW)",
  4519. image: {
  4520. source: "./media/characters/abysgar/front-nsfw.svg",
  4521. extra: 1739/1614,
  4522. bottom: 71/1810
  4523. }
  4524. },
  4525. back: {
  4526. height: math.unit(4.6, "feet"),
  4527. weight: math.unit(225, "lb"),
  4528. name: "Back",
  4529. image: {
  4530. source: "./media/characters/abysgar/back.svg",
  4531. extra: 1384/1327,
  4532. bottom: 0/1384
  4533. }
  4534. },
  4535. head: {
  4536. height: math.unit(1.25, "feet"),
  4537. name: "Head",
  4538. image: {
  4539. source: "./media/characters/abysgar/head.svg",
  4540. extra: 669/569,
  4541. bottom: 0/669
  4542. }
  4543. },
  4544. },
  4545. [
  4546. {
  4547. name: "Small",
  4548. height: math.unit(4.5, "meters")
  4549. },
  4550. {
  4551. name: "Macro",
  4552. height: math.unit(1250, "meters"),
  4553. default: true
  4554. },
  4555. {
  4556. name: "Megamacro",
  4557. height: math.unit(125, "km")
  4558. },
  4559. {
  4560. name: "Gigamacro",
  4561. height: math.unit(26000, "km")
  4562. }
  4563. ]
  4564. ))
  4565. characterMakers.push(() => makeCharacter(
  4566. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  4567. {
  4568. front: {
  4569. height: math.unit(6, "feet"),
  4570. weight: math.unit(180, "lb"),
  4571. name: "Front",
  4572. image: {
  4573. source: "./media/characters/yakuz/front.svg"
  4574. }
  4575. }
  4576. },
  4577. [
  4578. {
  4579. name: "Small",
  4580. height: math.unit(5, "meters")
  4581. },
  4582. {
  4583. name: "Macro",
  4584. height: math.unit(1500, "meters"),
  4585. default: true
  4586. },
  4587. {
  4588. name: "Megamacro",
  4589. height: math.unit(200, "km")
  4590. },
  4591. {
  4592. name: "Gigamacro",
  4593. height: math.unit(100000, "km")
  4594. }
  4595. ]
  4596. ))
  4597. characterMakers.push(() => makeCharacter(
  4598. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4599. {
  4600. front: {
  4601. height: math.unit(6, "feet"),
  4602. weight: math.unit(175, "lb"),
  4603. name: "Front",
  4604. image: {
  4605. source: "./media/characters/mirova/front.svg",
  4606. extra: 3334 / 3071,
  4607. bottom: 42 / 3375.6
  4608. }
  4609. }
  4610. },
  4611. [
  4612. {
  4613. name: "Small",
  4614. height: math.unit(5, "meters")
  4615. },
  4616. {
  4617. name: "Macro",
  4618. height: math.unit(900, "meters"),
  4619. default: true
  4620. },
  4621. {
  4622. name: "Megamacro",
  4623. height: math.unit(135, "km")
  4624. },
  4625. {
  4626. name: "Gigamacro",
  4627. height: math.unit(20000, "km")
  4628. }
  4629. ]
  4630. ))
  4631. characterMakers.push(() => makeCharacter(
  4632. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4633. {
  4634. side: {
  4635. height: math.unit(28.35, "feet"),
  4636. weight: math.unit(99.75, "tons"),
  4637. name: "Side",
  4638. image: {
  4639. source: "./media/characters/asana-mech/side.svg",
  4640. extra: 923 / 699,
  4641. bottom: 50 / 975
  4642. }
  4643. },
  4644. chaingun: {
  4645. height: math.unit(7, "feet"),
  4646. weight: math.unit(2400, "lb"),
  4647. name: "Chaingun",
  4648. image: {
  4649. source: "./media/characters/asana-mech/chaingun.svg"
  4650. }
  4651. },
  4652. laser: {
  4653. height: math.unit(7.12, "feet"),
  4654. weight: math.unit(2000, "lb"),
  4655. name: "Laser",
  4656. image: {
  4657. source: "./media/characters/asana-mech/laser.svg"
  4658. }
  4659. },
  4660. },
  4661. [
  4662. {
  4663. name: "Normal",
  4664. height: math.unit(28.35, "feet"),
  4665. default: true
  4666. },
  4667. {
  4668. name: "Macro",
  4669. height: math.unit(2500, "feet")
  4670. },
  4671. {
  4672. name: "Megamacro",
  4673. height: math.unit(25, "miles")
  4674. },
  4675. {
  4676. name: "Examacro",
  4677. height: math.unit(6e8, "lightyears")
  4678. },
  4679. ]
  4680. ))
  4681. characterMakers.push(() => makeCharacter(
  4682. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4683. {
  4684. front: {
  4685. height: math.unit(5, "meters"),
  4686. weight: math.unit(1000, "kg"),
  4687. name: "Front",
  4688. image: {
  4689. source: "./media/characters/asche/front.svg",
  4690. extra: 1258 / 1190,
  4691. bottom: 47 / 1305
  4692. }
  4693. },
  4694. frontUnderwear: {
  4695. height: math.unit(5, "meters"),
  4696. weight: math.unit(1000, "kg"),
  4697. name: "Front (Underwear)",
  4698. image: {
  4699. source: "./media/characters/asche/front-underwear.svg",
  4700. extra: 1258 / 1190,
  4701. bottom: 47 / 1305
  4702. }
  4703. },
  4704. frontDressed: {
  4705. height: math.unit(5, "meters"),
  4706. weight: math.unit(1000, "kg"),
  4707. name: "Front (Dressed)",
  4708. image: {
  4709. source: "./media/characters/asche/front-dressed.svg",
  4710. extra: 1258 / 1190,
  4711. bottom: 47 / 1305
  4712. }
  4713. },
  4714. frontArmor: {
  4715. height: math.unit(5, "meters"),
  4716. weight: math.unit(1000, "kg"),
  4717. name: "Front (Armored)",
  4718. image: {
  4719. source: "./media/characters/asche/front-armored.svg",
  4720. extra: 1374 / 1308,
  4721. bottom: 23 / 1397
  4722. }
  4723. },
  4724. mp724: {
  4725. height: math.unit(0.96, "meters"),
  4726. weight: math.unit(38, "kg"),
  4727. name: "H&K MP724",
  4728. image: {
  4729. source: "./media/characters/asche/h&k-mp724.svg"
  4730. }
  4731. },
  4732. side: {
  4733. height: math.unit(5, "meters"),
  4734. weight: math.unit(1000, "kg"),
  4735. name: "Side",
  4736. image: {
  4737. source: "./media/characters/asche/side.svg",
  4738. extra: 1717 / 1609,
  4739. bottom: 0.005
  4740. }
  4741. },
  4742. back: {
  4743. height: math.unit(5, "meters"),
  4744. weight: math.unit(1000, "kg"),
  4745. name: "Back",
  4746. image: {
  4747. source: "./media/characters/asche/back.svg",
  4748. extra: 1570 / 1501
  4749. }
  4750. },
  4751. },
  4752. [
  4753. {
  4754. name: "DEFCON 5",
  4755. height: math.unit(5, "meters")
  4756. },
  4757. {
  4758. name: "DEFCON 4",
  4759. height: math.unit(500, "meters"),
  4760. default: true
  4761. },
  4762. {
  4763. name: "DEFCON 3",
  4764. height: math.unit(5, "km")
  4765. },
  4766. {
  4767. name: "DEFCON 2",
  4768. height: math.unit(500, "km")
  4769. },
  4770. {
  4771. name: "DEFCON 1",
  4772. height: math.unit(500000, "km")
  4773. },
  4774. {
  4775. name: "DEFCON 0",
  4776. height: math.unit(3, "gigaparsecs")
  4777. },
  4778. ]
  4779. ))
  4780. characterMakers.push(() => makeCharacter(
  4781. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4782. {
  4783. front: {
  4784. height: math.unit(2, "meters"),
  4785. weight: math.unit(76, "kg"),
  4786. name: "Front",
  4787. image: {
  4788. source: "./media/characters/gale/front.svg"
  4789. }
  4790. },
  4791. frontAlt1: {
  4792. height: math.unit(2, "meters"),
  4793. weight: math.unit(76, "kg"),
  4794. name: "Front (Alt 1)",
  4795. image: {
  4796. source: "./media/characters/gale/front-alt-1.svg"
  4797. }
  4798. },
  4799. frontAlt2: {
  4800. height: math.unit(2, "meters"),
  4801. weight: math.unit(76, "kg"),
  4802. name: "Front (Alt 2)",
  4803. image: {
  4804. source: "./media/characters/gale/front-alt-2.svg"
  4805. }
  4806. },
  4807. },
  4808. [
  4809. {
  4810. name: "Normal",
  4811. height: math.unit(7, "feet")
  4812. },
  4813. {
  4814. name: "Macro",
  4815. height: math.unit(150, "feet"),
  4816. default: true
  4817. },
  4818. {
  4819. name: "Macro+",
  4820. height: math.unit(300, "feet")
  4821. },
  4822. ]
  4823. ))
  4824. characterMakers.push(() => makeCharacter(
  4825. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4826. {
  4827. front: {
  4828. height: math.unit(5 + 10/12, "feet"),
  4829. weight: math.unit(67, "kg"),
  4830. name: "Front",
  4831. image: {
  4832. source: "./media/characters/draylen/front.svg",
  4833. extra: 832/777,
  4834. bottom: 85/917
  4835. }
  4836. }
  4837. },
  4838. [
  4839. {
  4840. name: "Normal",
  4841. height: math.unit(5 + 10/12, "feet")
  4842. },
  4843. {
  4844. name: "Macro",
  4845. height: math.unit(150, "feet"),
  4846. default: true
  4847. }
  4848. ]
  4849. ))
  4850. characterMakers.push(() => makeCharacter(
  4851. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4852. {
  4853. front: {
  4854. height: math.unit(7 + 9 / 12, "feet"),
  4855. weight: math.unit(379, "lbs"),
  4856. name: "Front",
  4857. image: {
  4858. source: "./media/characters/chez/front.svg"
  4859. }
  4860. },
  4861. side: {
  4862. height: math.unit(7 + 9 / 12, "feet"),
  4863. weight: math.unit(379, "lbs"),
  4864. name: "Side",
  4865. image: {
  4866. source: "./media/characters/chez/side.svg"
  4867. }
  4868. }
  4869. },
  4870. [
  4871. {
  4872. name: "Normal",
  4873. height: math.unit(7 + 9 / 12, "feet"),
  4874. default: true
  4875. },
  4876. {
  4877. name: "God King",
  4878. height: math.unit(9750000, "meters")
  4879. }
  4880. ]
  4881. ))
  4882. characterMakers.push(() => makeCharacter(
  4883. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4884. {
  4885. front: {
  4886. height: math.unit(6, "feet"),
  4887. weight: math.unit(275, "lbs"),
  4888. name: "Front",
  4889. image: {
  4890. source: "./media/characters/kaylum/front.svg",
  4891. bottom: 0.01,
  4892. extra: 1166 / 1031
  4893. }
  4894. },
  4895. frontWingless: {
  4896. height: math.unit(6, "feet"),
  4897. weight: math.unit(275, "lbs"),
  4898. name: "Front (Wingless)",
  4899. image: {
  4900. source: "./media/characters/kaylum/front-wingless.svg",
  4901. bottom: 0.01,
  4902. extra: 1117 / 1031
  4903. }
  4904. }
  4905. },
  4906. [
  4907. {
  4908. name: "Normal",
  4909. height: math.unit(3.05, "meters")
  4910. },
  4911. {
  4912. name: "Master",
  4913. height: math.unit(5.5, "meters")
  4914. },
  4915. {
  4916. name: "Rampage",
  4917. height: math.unit(19, "meters")
  4918. },
  4919. {
  4920. name: "Macro Lite",
  4921. height: math.unit(37, "meters")
  4922. },
  4923. {
  4924. name: "Hyper Predator",
  4925. height: math.unit(61, "meters")
  4926. },
  4927. {
  4928. name: "Macro",
  4929. height: math.unit(138, "meters"),
  4930. default: true
  4931. }
  4932. ]
  4933. ))
  4934. characterMakers.push(() => makeCharacter(
  4935. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4936. {
  4937. front: {
  4938. height: math.unit(5 + 5 / 12, "feet"),
  4939. weight: math.unit(120, "lbs"),
  4940. name: "Front",
  4941. image: {
  4942. source: "./media/characters/geta/front.svg",
  4943. extra: 1003/933,
  4944. bottom: 21/1024
  4945. }
  4946. },
  4947. paw: {
  4948. height: math.unit(0.35, "feet"),
  4949. name: "Paw",
  4950. image: {
  4951. source: "./media/characters/geta/paw.svg"
  4952. }
  4953. },
  4954. },
  4955. [
  4956. {
  4957. name: "Micro",
  4958. height: math.unit(3, "inches"),
  4959. default: true
  4960. },
  4961. {
  4962. name: "Normal",
  4963. height: math.unit(5 + 5 / 12, "feet")
  4964. }
  4965. ]
  4966. ))
  4967. characterMakers.push(() => makeCharacter(
  4968. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4969. {
  4970. front: {
  4971. height: math.unit(6, "feet"),
  4972. weight: math.unit(300, "lbs"),
  4973. name: "Front",
  4974. image: {
  4975. source: "./media/characters/tyrnn/front.svg"
  4976. }
  4977. }
  4978. },
  4979. [
  4980. {
  4981. name: "Main Height",
  4982. height: math.unit(355, "feet"),
  4983. default: true
  4984. },
  4985. {
  4986. name: "Fave. Height",
  4987. height: math.unit(2400, "feet")
  4988. }
  4989. ]
  4990. ))
  4991. characterMakers.push(() => makeCharacter(
  4992. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4993. {
  4994. front: {
  4995. height: math.unit(6, "feet"),
  4996. weight: math.unit(300, "lbs"),
  4997. name: "Front",
  4998. image: {
  4999. source: "./media/characters/appledectomy/front.svg"
  5000. }
  5001. }
  5002. },
  5003. [
  5004. {
  5005. name: "Macro",
  5006. height: math.unit(2500, "feet")
  5007. },
  5008. {
  5009. name: "Megamacro",
  5010. height: math.unit(50, "miles"),
  5011. default: true
  5012. },
  5013. {
  5014. name: "Gigamacro",
  5015. height: math.unit(5000, "miles")
  5016. },
  5017. {
  5018. name: "Teramacro",
  5019. height: math.unit(250000, "miles")
  5020. },
  5021. ]
  5022. ))
  5023. characterMakers.push(() => makeCharacter(
  5024. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  5025. {
  5026. front: {
  5027. height: math.unit(6, "feet"),
  5028. weight: math.unit(200, "lbs"),
  5029. name: "Front",
  5030. image: {
  5031. source: "./media/characters/vulpes/front.svg",
  5032. extra: 573 / 543,
  5033. bottom: 0.033
  5034. }
  5035. },
  5036. side: {
  5037. height: math.unit(6, "feet"),
  5038. weight: math.unit(200, "lbs"),
  5039. name: "Side",
  5040. image: {
  5041. source: "./media/characters/vulpes/side.svg",
  5042. extra: 577 / 549,
  5043. bottom: 11 / 588
  5044. }
  5045. },
  5046. back: {
  5047. height: math.unit(6, "feet"),
  5048. weight: math.unit(200, "lbs"),
  5049. name: "Back",
  5050. image: {
  5051. source: "./media/characters/vulpes/back.svg",
  5052. extra: 573 / 549,
  5053. bottom: 20 / 593
  5054. }
  5055. },
  5056. feet: {
  5057. height: math.unit(1.276, "feet"),
  5058. name: "Feet",
  5059. image: {
  5060. source: "./media/characters/vulpes/feet.svg"
  5061. }
  5062. },
  5063. maw: {
  5064. height: math.unit(1.18, "feet"),
  5065. name: "Maw",
  5066. image: {
  5067. source: "./media/characters/vulpes/maw.svg"
  5068. }
  5069. },
  5070. },
  5071. [
  5072. {
  5073. name: "Micro",
  5074. height: math.unit(2, "inches")
  5075. },
  5076. {
  5077. name: "Normal",
  5078. height: math.unit(6.3, "feet")
  5079. },
  5080. {
  5081. name: "Macro",
  5082. height: math.unit(850, "feet")
  5083. },
  5084. {
  5085. name: "Megamacro",
  5086. height: math.unit(7500, "feet"),
  5087. default: true
  5088. },
  5089. {
  5090. name: "Gigamacro",
  5091. height: math.unit(570000, "miles")
  5092. }
  5093. ]
  5094. ))
  5095. characterMakers.push(() => makeCharacter(
  5096. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  5097. {
  5098. front: {
  5099. height: math.unit(6, "feet"),
  5100. weight: math.unit(210, "lbs"),
  5101. name: "Front",
  5102. image: {
  5103. source: "./media/characters/rain-fallen/front.svg"
  5104. }
  5105. },
  5106. side: {
  5107. height: math.unit(6, "feet"),
  5108. weight: math.unit(210, "lbs"),
  5109. name: "Side",
  5110. image: {
  5111. source: "./media/characters/rain-fallen/side.svg"
  5112. }
  5113. },
  5114. back: {
  5115. height: math.unit(6, "feet"),
  5116. weight: math.unit(210, "lbs"),
  5117. name: "Back",
  5118. image: {
  5119. source: "./media/characters/rain-fallen/back.svg"
  5120. }
  5121. },
  5122. feral: {
  5123. height: math.unit(9, "feet"),
  5124. weight: math.unit(700, "lbs"),
  5125. name: "Feral",
  5126. image: {
  5127. source: "./media/characters/rain-fallen/feral.svg"
  5128. }
  5129. },
  5130. },
  5131. [
  5132. {
  5133. name: "Meddling with Mortals",
  5134. height: math.unit(8 + 8/12, "feet")
  5135. },
  5136. {
  5137. name: "Normal",
  5138. height: math.unit(5, "meter")
  5139. },
  5140. {
  5141. name: "Macro",
  5142. height: math.unit(150, "meter"),
  5143. default: true
  5144. },
  5145. {
  5146. name: "Megamacro",
  5147. height: math.unit(278e6, "meter")
  5148. },
  5149. {
  5150. name: "Gigamacro",
  5151. height: math.unit(2e9, "meter")
  5152. },
  5153. {
  5154. name: "Teramacro",
  5155. height: math.unit(8e12, "meter")
  5156. },
  5157. {
  5158. name: "Devourer",
  5159. height: math.unit(14, "zettameters")
  5160. },
  5161. {
  5162. name: "Scarlet King",
  5163. height: math.unit(18, "yottameters")
  5164. },
  5165. {
  5166. name: "Void",
  5167. height: math.unit(1e88, "yottameters")
  5168. }
  5169. ]
  5170. ))
  5171. characterMakers.push(() => makeCharacter(
  5172. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  5173. {
  5174. standing: {
  5175. height: math.unit(6, "feet"),
  5176. weight: math.unit(180, "lbs"),
  5177. name: "Standing",
  5178. image: {
  5179. source: "./media/characters/zaakira/standing.svg",
  5180. extra: 1599/1504,
  5181. bottom: 39/1638
  5182. }
  5183. },
  5184. laying: {
  5185. height: math.unit(3.3, "feet"),
  5186. weight: math.unit(180, "lbs"),
  5187. name: "Laying",
  5188. image: {
  5189. source: "./media/characters/zaakira/laying.svg"
  5190. }
  5191. },
  5192. },
  5193. [
  5194. {
  5195. name: "Normal",
  5196. height: math.unit(12, "feet")
  5197. },
  5198. {
  5199. name: "Macro",
  5200. height: math.unit(279, "feet"),
  5201. default: true
  5202. }
  5203. ]
  5204. ))
  5205. characterMakers.push(() => makeCharacter(
  5206. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  5207. {
  5208. femSfw: {
  5209. height: math.unit(8, "feet"),
  5210. weight: math.unit(350, "lb"),
  5211. name: "Fem",
  5212. image: {
  5213. source: "./media/characters/sigvald/fem-sfw.svg",
  5214. extra: 182 / 164,
  5215. bottom: 8.7 / 190.5
  5216. }
  5217. },
  5218. femNsfw: {
  5219. height: math.unit(8, "feet"),
  5220. weight: math.unit(350, "lb"),
  5221. name: "Fem (NSFW)",
  5222. image: {
  5223. source: "./media/characters/sigvald/fem-nsfw.svg",
  5224. extra: 182 / 164,
  5225. bottom: 8.7 / 190.5
  5226. }
  5227. },
  5228. maleNsfw: {
  5229. height: math.unit(8, "feet"),
  5230. weight: math.unit(350, "lb"),
  5231. name: "Male (NSFW)",
  5232. image: {
  5233. source: "./media/characters/sigvald/male-nsfw.svg",
  5234. extra: 182 / 164,
  5235. bottom: 8.7 / 190.5
  5236. }
  5237. },
  5238. hermNsfw: {
  5239. height: math.unit(8, "feet"),
  5240. weight: math.unit(350, "lb"),
  5241. name: "Herm (NSFW)",
  5242. image: {
  5243. source: "./media/characters/sigvald/herm-nsfw.svg",
  5244. extra: 182 / 164,
  5245. bottom: 8.7 / 190.5
  5246. }
  5247. },
  5248. dick: {
  5249. height: math.unit(2.36, "feet"),
  5250. name: "Dick",
  5251. image: {
  5252. source: "./media/characters/sigvald/dick.svg"
  5253. }
  5254. },
  5255. eye: {
  5256. height: math.unit(0.31, "feet"),
  5257. name: "Eye",
  5258. image: {
  5259. source: "./media/characters/sigvald/eye.svg"
  5260. }
  5261. },
  5262. mouth: {
  5263. height: math.unit(0.92, "feet"),
  5264. name: "Mouth",
  5265. image: {
  5266. source: "./media/characters/sigvald/mouth.svg"
  5267. }
  5268. },
  5269. paws: {
  5270. height: math.unit(2.2, "feet"),
  5271. name: "Paws",
  5272. image: {
  5273. source: "./media/characters/sigvald/paws.svg"
  5274. }
  5275. }
  5276. },
  5277. [
  5278. {
  5279. name: "Normal",
  5280. height: math.unit(8, "feet")
  5281. },
  5282. {
  5283. name: "Large",
  5284. height: math.unit(12, "feet")
  5285. },
  5286. {
  5287. name: "Larger",
  5288. height: math.unit(20, "feet")
  5289. },
  5290. {
  5291. name: "Macro",
  5292. height: math.unit(150, "feet")
  5293. },
  5294. {
  5295. name: "Macro+",
  5296. height: math.unit(200, "feet"),
  5297. default: true
  5298. },
  5299. ]
  5300. ))
  5301. characterMakers.push(() => makeCharacter(
  5302. { name: "Scott", species: ["fox"], tags: ["taur"] },
  5303. {
  5304. side: {
  5305. height: math.unit(12, "feet"),
  5306. weight: math.unit(2000, "kg"),
  5307. name: "Side",
  5308. image: {
  5309. source: "./media/characters/scott/side.svg",
  5310. extra: 754 / 724,
  5311. bottom: 0.069
  5312. }
  5313. },
  5314. upright: {
  5315. height: math.unit(12, "feet"),
  5316. weight: math.unit(2000, "kg"),
  5317. name: "Upright",
  5318. image: {
  5319. source: "./media/characters/scott/upright.svg",
  5320. extra: 3881 / 3722,
  5321. bottom: 0.05
  5322. }
  5323. },
  5324. },
  5325. [
  5326. {
  5327. name: "Normal",
  5328. height: math.unit(12, "feet"),
  5329. default: true
  5330. },
  5331. ]
  5332. ))
  5333. characterMakers.push(() => makeCharacter(
  5334. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  5335. {
  5336. side: {
  5337. height: math.unit(8, "meters"),
  5338. weight: math.unit(84755, "lbs"),
  5339. name: "Side",
  5340. image: {
  5341. source: "./media/characters/tobias/side.svg",
  5342. extra: 1474 / 1096,
  5343. bottom: 38.9 / 1513.1235
  5344. }
  5345. },
  5346. },
  5347. [
  5348. {
  5349. name: "Normal",
  5350. height: math.unit(8, "meters"),
  5351. default: true
  5352. },
  5353. ]
  5354. ))
  5355. characterMakers.push(() => makeCharacter(
  5356. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  5357. {
  5358. front: {
  5359. height: math.unit(5.5, "feet"),
  5360. weight: math.unit(400, "lbs"),
  5361. name: "Front",
  5362. image: {
  5363. source: "./media/characters/kieran/front.svg",
  5364. extra: 2694 / 2364,
  5365. bottom: 217 / 2908
  5366. }
  5367. },
  5368. side: {
  5369. height: math.unit(5.5, "feet"),
  5370. weight: math.unit(400, "lbs"),
  5371. name: "Side",
  5372. image: {
  5373. source: "./media/characters/kieran/side.svg",
  5374. extra: 875 / 777,
  5375. bottom: 84.6 / 959
  5376. }
  5377. },
  5378. },
  5379. [
  5380. {
  5381. name: "Normal",
  5382. height: math.unit(5.5, "feet"),
  5383. default: true
  5384. },
  5385. ]
  5386. ))
  5387. characterMakers.push(() => makeCharacter(
  5388. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  5389. {
  5390. side: {
  5391. height: math.unit(2, "meters"),
  5392. weight: math.unit(70, "kg"),
  5393. name: "Side",
  5394. image: {
  5395. source: "./media/characters/sanya/side.svg",
  5396. bottom: 0.02,
  5397. extra: 1.02
  5398. }
  5399. },
  5400. },
  5401. [
  5402. {
  5403. name: "Small",
  5404. height: math.unit(2, "meters")
  5405. },
  5406. {
  5407. name: "Normal",
  5408. height: math.unit(3, "meters")
  5409. },
  5410. {
  5411. name: "Macro",
  5412. height: math.unit(16, "meters"),
  5413. default: true
  5414. },
  5415. ]
  5416. ))
  5417. characterMakers.push(() => makeCharacter(
  5418. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  5419. {
  5420. front: {
  5421. height: math.unit(2, "meters"),
  5422. weight: math.unit(120, "kg"),
  5423. name: "Front",
  5424. image: {
  5425. source: "./media/characters/miranda/front.svg",
  5426. extra: 195 / 185,
  5427. bottom: 10.9 / 206.5
  5428. }
  5429. },
  5430. back: {
  5431. height: math.unit(2, "meters"),
  5432. weight: math.unit(120, "kg"),
  5433. name: "Back",
  5434. image: {
  5435. source: "./media/characters/miranda/back.svg",
  5436. extra: 201 / 193,
  5437. bottom: 2.3 / 203.7
  5438. }
  5439. },
  5440. },
  5441. [
  5442. {
  5443. name: "Normal",
  5444. height: math.unit(10, "feet"),
  5445. default: true
  5446. }
  5447. ]
  5448. ))
  5449. characterMakers.push(() => makeCharacter(
  5450. { name: "James", species: ["deer"], tags: ["anthro"] },
  5451. {
  5452. side: {
  5453. height: math.unit(2, "meters"),
  5454. weight: math.unit(100, "kg"),
  5455. name: "Front",
  5456. image: {
  5457. source: "./media/characters/james/front.svg",
  5458. extra: 10 / 8.5
  5459. }
  5460. },
  5461. },
  5462. [
  5463. {
  5464. name: "Normal",
  5465. height: math.unit(8.5, "feet"),
  5466. default: true
  5467. }
  5468. ]
  5469. ))
  5470. characterMakers.push(() => makeCharacter(
  5471. { name: "Heather", species: ["cow"], tags: ["taur"] },
  5472. {
  5473. side: {
  5474. height: math.unit(9.5, "feet"),
  5475. weight: math.unit(2500, "lbs"),
  5476. name: "Side",
  5477. image: {
  5478. source: "./media/characters/heather/side.svg"
  5479. }
  5480. },
  5481. },
  5482. [
  5483. {
  5484. name: "Normal",
  5485. height: math.unit(9.5, "feet"),
  5486. default: true
  5487. }
  5488. ]
  5489. ))
  5490. characterMakers.push(() => makeCharacter(
  5491. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  5492. {
  5493. side: {
  5494. height: math.unit(6.5, "feet"),
  5495. weight: math.unit(400, "lbs"),
  5496. name: "Side",
  5497. image: {
  5498. source: "./media/characters/lukas/side.svg",
  5499. extra: 7.25 / 6.5
  5500. }
  5501. },
  5502. },
  5503. [
  5504. {
  5505. name: "Normal",
  5506. height: math.unit(6.5, "feet"),
  5507. default: true
  5508. }
  5509. ]
  5510. ))
  5511. characterMakers.push(() => makeCharacter(
  5512. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  5513. {
  5514. side: {
  5515. height: math.unit(5, "feet"),
  5516. weight: math.unit(3000, "lbs"),
  5517. name: "Side",
  5518. image: {
  5519. source: "./media/characters/louise/side.svg"
  5520. }
  5521. },
  5522. },
  5523. [
  5524. {
  5525. name: "Normal",
  5526. height: math.unit(5, "feet"),
  5527. default: true
  5528. }
  5529. ]
  5530. ))
  5531. characterMakers.push(() => makeCharacter(
  5532. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  5533. {
  5534. side: {
  5535. height: math.unit(6, "feet"),
  5536. weight: math.unit(150, "lbs"),
  5537. name: "Side",
  5538. image: {
  5539. source: "./media/characters/ramona/side.svg",
  5540. extra: 871/854,
  5541. bottom: 41/912
  5542. }
  5543. },
  5544. },
  5545. [
  5546. {
  5547. name: "Normal",
  5548. height: math.unit(5.3, "meters"),
  5549. default: true
  5550. },
  5551. {
  5552. name: "Macro",
  5553. height: math.unit(20, "stories")
  5554. },
  5555. {
  5556. name: "Macro+",
  5557. height: math.unit(50, "stories")
  5558. },
  5559. ]
  5560. ))
  5561. characterMakers.push(() => makeCharacter(
  5562. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  5563. {
  5564. standing: {
  5565. height: math.unit(5.75, "feet"),
  5566. weight: math.unit(160, "lbs"),
  5567. name: "Standing",
  5568. image: {
  5569. source: "./media/characters/deerpuff/standing.svg",
  5570. extra: 682 / 624
  5571. }
  5572. },
  5573. sitting: {
  5574. height: math.unit(5.75 / 1.79, "feet"),
  5575. weight: math.unit(160, "lbs"),
  5576. name: "Sitting",
  5577. image: {
  5578. source: "./media/characters/deerpuff/sitting.svg",
  5579. bottom: 44 / 400,
  5580. extra: 1
  5581. }
  5582. },
  5583. taurLaying: {
  5584. height: math.unit(6, "feet"),
  5585. weight: math.unit(400, "lbs"),
  5586. name: "Taur (Laying)",
  5587. image: {
  5588. source: "./media/characters/deerpuff/taur-laying.svg"
  5589. }
  5590. },
  5591. },
  5592. [
  5593. {
  5594. name: "Puffball",
  5595. height: math.unit(6, "inches")
  5596. },
  5597. {
  5598. name: "Normalpuff",
  5599. height: math.unit(5.75, "feet")
  5600. },
  5601. {
  5602. name: "Macropuff",
  5603. height: math.unit(1500, "feet"),
  5604. default: true
  5605. },
  5606. {
  5607. name: "Megapuff",
  5608. height: math.unit(500, "miles")
  5609. },
  5610. {
  5611. name: "Gigapuff",
  5612. height: math.unit(250000, "miles")
  5613. },
  5614. {
  5615. name: "Omegapuff",
  5616. height: math.unit(1000, "lightyears")
  5617. },
  5618. ]
  5619. ))
  5620. characterMakers.push(() => makeCharacter(
  5621. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5622. {
  5623. stomping: {
  5624. height: math.unit(6, "feet"),
  5625. weight: math.unit(170, "lbs"),
  5626. name: "Stomping",
  5627. image: {
  5628. source: "./media/characters/vivian/stomping.svg"
  5629. }
  5630. },
  5631. sitting: {
  5632. height: math.unit(6 / 1.75, "feet"),
  5633. weight: math.unit(170, "lbs"),
  5634. name: "Sitting",
  5635. image: {
  5636. source: "./media/characters/vivian/sitting.svg",
  5637. bottom: 1 / 6.4,
  5638. extra: 1,
  5639. }
  5640. },
  5641. },
  5642. [
  5643. {
  5644. name: "Normal",
  5645. height: math.unit(7, "feet"),
  5646. default: true
  5647. },
  5648. {
  5649. name: "Macro",
  5650. height: math.unit(10, "stories")
  5651. },
  5652. {
  5653. name: "Macro+",
  5654. height: math.unit(30, "stories")
  5655. },
  5656. {
  5657. name: "Megamacro",
  5658. height: math.unit(10, "miles")
  5659. },
  5660. {
  5661. name: "Megamacro+",
  5662. height: math.unit(2750000, "meters")
  5663. },
  5664. ]
  5665. ))
  5666. characterMakers.push(() => makeCharacter(
  5667. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5668. {
  5669. front: {
  5670. height: math.unit(6, "feet"),
  5671. weight: math.unit(160, "lbs"),
  5672. name: "Front",
  5673. image: {
  5674. source: "./media/characters/prince/front.svg",
  5675. extra: 3400 / 3000
  5676. }
  5677. },
  5678. jumping: {
  5679. height: math.unit(6, "feet"),
  5680. weight: math.unit(160, "lbs"),
  5681. name: "Jumping",
  5682. image: {
  5683. source: "./media/characters/prince/jump.svg",
  5684. extra: 2555 / 2134
  5685. }
  5686. },
  5687. },
  5688. [
  5689. {
  5690. name: "Normal",
  5691. height: math.unit(7.75, "feet"),
  5692. default: true
  5693. },
  5694. {
  5695. name: "Not cute",
  5696. height: math.unit(17, "feet")
  5697. },
  5698. {
  5699. name: "I said NOT",
  5700. height: math.unit(91, "feet")
  5701. },
  5702. {
  5703. name: "Please stop",
  5704. height: math.unit(560, "feet")
  5705. },
  5706. {
  5707. name: "What have you done",
  5708. height: math.unit(2200, "feet")
  5709. },
  5710. {
  5711. name: "Deer God",
  5712. height: math.unit(3.6, "miles")
  5713. },
  5714. ]
  5715. ))
  5716. characterMakers.push(() => makeCharacter(
  5717. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5718. {
  5719. standing: {
  5720. height: math.unit(6, "feet"),
  5721. weight: math.unit(300, "lbs"),
  5722. name: "Standing",
  5723. image: {
  5724. source: "./media/characters/psymon/standing.svg",
  5725. extra: 1888 / 1810,
  5726. bottom: 0.05
  5727. }
  5728. },
  5729. slithering: {
  5730. height: math.unit(6, "feet"),
  5731. weight: math.unit(300, "lbs"),
  5732. name: "Slithering",
  5733. image: {
  5734. source: "./media/characters/psymon/slithering.svg",
  5735. extra: 1330 / 1224
  5736. }
  5737. },
  5738. slitheringAlt: {
  5739. height: math.unit(6, "feet"),
  5740. weight: math.unit(300, "lbs"),
  5741. name: "Slithering (Alt)",
  5742. image: {
  5743. source: "./media/characters/psymon/slithering-alt.svg",
  5744. extra: 1330 / 1224
  5745. }
  5746. },
  5747. },
  5748. [
  5749. {
  5750. name: "Normal",
  5751. height: math.unit(11.25, "feet"),
  5752. default: true
  5753. },
  5754. {
  5755. name: "Large",
  5756. height: math.unit(27, "feet")
  5757. },
  5758. {
  5759. name: "Giant",
  5760. height: math.unit(87, "feet")
  5761. },
  5762. {
  5763. name: "Macro",
  5764. height: math.unit(365, "feet")
  5765. },
  5766. {
  5767. name: "Megamacro",
  5768. height: math.unit(3, "miles")
  5769. },
  5770. {
  5771. name: "World Serpent",
  5772. height: math.unit(8000, "miles")
  5773. },
  5774. ]
  5775. ))
  5776. characterMakers.push(() => makeCharacter(
  5777. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5778. {
  5779. front: {
  5780. height: math.unit(6, "feet"),
  5781. weight: math.unit(180, "lbs"),
  5782. name: "Front",
  5783. image: {
  5784. source: "./media/characters/daimos/front.svg",
  5785. extra: 4160 / 3897,
  5786. bottom: 0.021
  5787. }
  5788. }
  5789. },
  5790. [
  5791. {
  5792. name: "Normal",
  5793. height: math.unit(8, "feet"),
  5794. default: true
  5795. },
  5796. {
  5797. name: "Big Dog",
  5798. height: math.unit(22, "feet")
  5799. },
  5800. {
  5801. name: "Macro",
  5802. height: math.unit(127, "feet")
  5803. },
  5804. {
  5805. name: "Megamacro",
  5806. height: math.unit(3600, "feet")
  5807. },
  5808. ]
  5809. ))
  5810. characterMakers.push(() => makeCharacter(
  5811. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5812. {
  5813. side: {
  5814. height: math.unit(6, "feet"),
  5815. weight: math.unit(180, "lbs"),
  5816. name: "Side",
  5817. image: {
  5818. source: "./media/characters/blake/side.svg",
  5819. extra: 1212 / 1120,
  5820. bottom: 0.05
  5821. }
  5822. },
  5823. crouched: {
  5824. height: math.unit(6 * 0.57, "feet"),
  5825. weight: math.unit(180, "lbs"),
  5826. name: "Crouched",
  5827. image: {
  5828. source: "./media/characters/blake/crouched.svg",
  5829. extra: 840 / 587,
  5830. bottom: 0.04
  5831. }
  5832. },
  5833. bent: {
  5834. height: math.unit(6 * 0.75, "feet"),
  5835. weight: math.unit(180, "lbs"),
  5836. name: "Bent",
  5837. image: {
  5838. source: "./media/characters/blake/bent.svg",
  5839. extra: 592 / 544,
  5840. bottom: 0.035
  5841. }
  5842. },
  5843. },
  5844. [
  5845. {
  5846. name: "Normal",
  5847. height: math.unit(8 + 1 / 6, "feet"),
  5848. default: true
  5849. },
  5850. {
  5851. name: "Big Backside",
  5852. height: math.unit(37, "feet")
  5853. },
  5854. {
  5855. name: "Subway Shredder",
  5856. height: math.unit(72, "feet")
  5857. },
  5858. {
  5859. name: "City Carver",
  5860. height: math.unit(1675, "feet")
  5861. },
  5862. {
  5863. name: "Tectonic Tweaker",
  5864. height: math.unit(2300, "miles")
  5865. },
  5866. ]
  5867. ))
  5868. characterMakers.push(() => makeCharacter(
  5869. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5870. {
  5871. front: {
  5872. height: math.unit(6, "feet"),
  5873. weight: math.unit(180, "lbs"),
  5874. name: "Front",
  5875. image: {
  5876. source: "./media/characters/guisetto/front.svg",
  5877. extra: 856 / 817,
  5878. bottom: 0.06
  5879. }
  5880. },
  5881. airborne: {
  5882. height: math.unit(6, "feet"),
  5883. weight: math.unit(180, "lbs"),
  5884. name: "Airborne",
  5885. image: {
  5886. source: "./media/characters/guisetto/airborne.svg",
  5887. extra: 584 / 525
  5888. }
  5889. },
  5890. },
  5891. [
  5892. {
  5893. name: "Normal",
  5894. height: math.unit(10 + 11 / 12, "feet"),
  5895. default: true
  5896. },
  5897. {
  5898. name: "Large",
  5899. height: math.unit(35, "feet")
  5900. },
  5901. {
  5902. name: "Macro",
  5903. height: math.unit(475, "feet")
  5904. },
  5905. ]
  5906. ))
  5907. characterMakers.push(() => makeCharacter(
  5908. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5909. {
  5910. front: {
  5911. height: math.unit(6, "feet"),
  5912. weight: math.unit(180, "lbs"),
  5913. name: "Front",
  5914. image: {
  5915. source: "./media/characters/luxor/front.svg",
  5916. extra: 2940 / 2152
  5917. }
  5918. },
  5919. back: {
  5920. height: math.unit(6, "feet"),
  5921. weight: math.unit(180, "lbs"),
  5922. name: "Back",
  5923. image: {
  5924. source: "./media/characters/luxor/back.svg",
  5925. extra: 1083 / 960
  5926. }
  5927. },
  5928. },
  5929. [
  5930. {
  5931. name: "Normal",
  5932. height: math.unit(5 + 5 / 6, "feet"),
  5933. default: true
  5934. },
  5935. {
  5936. name: "Lamp",
  5937. height: math.unit(50, "feet")
  5938. },
  5939. {
  5940. name: "Lämp",
  5941. height: math.unit(300, "feet")
  5942. },
  5943. {
  5944. name: "The sun is a lamp",
  5945. height: math.unit(250000, "miles")
  5946. },
  5947. ]
  5948. ))
  5949. characterMakers.push(() => makeCharacter(
  5950. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5951. {
  5952. front: {
  5953. height: math.unit(6, "feet"),
  5954. weight: math.unit(50, "lbs"),
  5955. name: "Front",
  5956. image: {
  5957. source: "./media/characters/huoyan/front.svg"
  5958. }
  5959. },
  5960. side: {
  5961. height: math.unit(6, "feet"),
  5962. weight: math.unit(180, "lbs"),
  5963. name: "Side",
  5964. image: {
  5965. source: "./media/characters/huoyan/side.svg"
  5966. }
  5967. },
  5968. },
  5969. [
  5970. {
  5971. name: "Chef",
  5972. height: math.unit(9, "feet")
  5973. },
  5974. {
  5975. name: "Normal",
  5976. height: math.unit(65, "feet"),
  5977. default: true
  5978. },
  5979. {
  5980. name: "Macro",
  5981. height: math.unit(780, "feet")
  5982. },
  5983. {
  5984. name: "Flaming Mountain",
  5985. height: math.unit(4.8, "miles")
  5986. },
  5987. {
  5988. name: "Celestial",
  5989. height: math.unit(765000, "miles")
  5990. },
  5991. ]
  5992. ))
  5993. characterMakers.push(() => makeCharacter(
  5994. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5995. {
  5996. front: {
  5997. height: math.unit(5 + 3 / 4, "feet"),
  5998. weight: math.unit(120, "lbs"),
  5999. name: "Front",
  6000. image: {
  6001. source: "./media/characters/tails/front.svg"
  6002. }
  6003. }
  6004. },
  6005. [
  6006. {
  6007. name: "Normal",
  6008. height: math.unit(5 + 3 / 4, "feet"),
  6009. default: true
  6010. }
  6011. ]
  6012. ))
  6013. characterMakers.push(() => makeCharacter(
  6014. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  6015. {
  6016. front: {
  6017. height: math.unit(4, "feet"),
  6018. weight: math.unit(50, "lbs"),
  6019. name: "Front",
  6020. image: {
  6021. source: "./media/characters/rainy/front.svg"
  6022. }
  6023. }
  6024. },
  6025. [
  6026. {
  6027. name: "Macro",
  6028. height: math.unit(800, "feet"),
  6029. default: true
  6030. }
  6031. ]
  6032. ))
  6033. characterMakers.push(() => makeCharacter(
  6034. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  6035. {
  6036. front: {
  6037. height: math.unit(6, "feet"),
  6038. weight: math.unit(150, "lbs"),
  6039. name: "Front",
  6040. image: {
  6041. source: "./media/characters/rainier/front.svg"
  6042. }
  6043. }
  6044. },
  6045. [
  6046. {
  6047. name: "Micro",
  6048. height: math.unit(2, "mm"),
  6049. default: true
  6050. }
  6051. ]
  6052. ))
  6053. characterMakers.push(() => makeCharacter(
  6054. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  6055. {
  6056. front: {
  6057. height: math.unit(8 + 4/12, "feet"),
  6058. weight: math.unit(450, "kilograms"),
  6059. volume: math.unit(5, "cups"),
  6060. name: "Front",
  6061. image: {
  6062. source: "./media/characters/andy-renard/front.svg",
  6063. extra: 1839/1726,
  6064. bottom: 134/1973
  6065. }
  6066. },
  6067. back: {
  6068. height: math.unit(8 + 4/12, "feet"),
  6069. weight: math.unit(450, "kilograms"),
  6070. volume: math.unit(5, "cups"),
  6071. name: "Back",
  6072. image: {
  6073. source: "./media/characters/andy-renard/back.svg",
  6074. extra: 1838/1710,
  6075. bottom: 105/1943
  6076. }
  6077. },
  6078. },
  6079. [
  6080. {
  6081. name: "Tall",
  6082. height: math.unit(8 + 4/12, "feet")
  6083. },
  6084. {
  6085. name: "Mini Macro",
  6086. height: math.unit(15, "feet"),
  6087. default: true
  6088. },
  6089. {
  6090. name: "Macro",
  6091. height: math.unit(100, "feet")
  6092. },
  6093. {
  6094. name: "Mega Macro",
  6095. height: math.unit(1000, "feet")
  6096. },
  6097. {
  6098. name: "Giga Macro",
  6099. height: math.unit(10, "miles")
  6100. },
  6101. {
  6102. name: "God Macro",
  6103. height: math.unit(1, "multiverse")
  6104. },
  6105. ]
  6106. ))
  6107. characterMakers.push(() => makeCharacter(
  6108. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  6109. {
  6110. front: {
  6111. height: math.unit(6, "feet"),
  6112. weight: math.unit(210, "lbs"),
  6113. name: "Front",
  6114. image: {
  6115. source: "./media/characters/cimmaron/front-sfw.svg",
  6116. extra: 701 / 676,
  6117. bottom: 0.046
  6118. }
  6119. },
  6120. back: {
  6121. height: math.unit(6, "feet"),
  6122. weight: math.unit(210, "lbs"),
  6123. name: "Back",
  6124. image: {
  6125. source: "./media/characters/cimmaron/back-sfw.svg",
  6126. extra: 701 / 676,
  6127. bottom: 0.046
  6128. }
  6129. },
  6130. frontNsfw: {
  6131. height: math.unit(6, "feet"),
  6132. weight: math.unit(210, "lbs"),
  6133. name: "Front (NSFW)",
  6134. image: {
  6135. source: "./media/characters/cimmaron/front-nsfw.svg",
  6136. extra: 701 / 676,
  6137. bottom: 0.046
  6138. }
  6139. },
  6140. backNsfw: {
  6141. height: math.unit(6, "feet"),
  6142. weight: math.unit(210, "lbs"),
  6143. name: "Back (NSFW)",
  6144. image: {
  6145. source: "./media/characters/cimmaron/back-nsfw.svg",
  6146. extra: 701 / 676,
  6147. bottom: 0.046
  6148. }
  6149. },
  6150. dick: {
  6151. height: math.unit(1.714, "feet"),
  6152. name: "Dick",
  6153. image: {
  6154. source: "./media/characters/cimmaron/dick.svg"
  6155. }
  6156. },
  6157. },
  6158. [
  6159. {
  6160. name: "Normal",
  6161. height: math.unit(6, "feet"),
  6162. default: true
  6163. },
  6164. {
  6165. name: "Macro Mayor",
  6166. height: math.unit(350, "meters")
  6167. },
  6168. ]
  6169. ))
  6170. characterMakers.push(() => makeCharacter(
  6171. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  6172. {
  6173. front: {
  6174. height: math.unit(6, "feet"),
  6175. weight: math.unit(200, "lbs"),
  6176. name: "Front",
  6177. image: {
  6178. source: "./media/characters/akari/front.svg",
  6179. extra: 962 / 901,
  6180. bottom: 0.04
  6181. }
  6182. }
  6183. },
  6184. [
  6185. {
  6186. name: "Micro",
  6187. height: math.unit(5, "inches"),
  6188. default: true
  6189. },
  6190. {
  6191. name: "Normal",
  6192. height: math.unit(7, "feet")
  6193. },
  6194. ]
  6195. ))
  6196. characterMakers.push(() => makeCharacter(
  6197. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  6198. {
  6199. front: {
  6200. height: math.unit(6, "feet"),
  6201. weight: math.unit(140, "lbs"),
  6202. name: "Front",
  6203. image: {
  6204. source: "./media/characters/cynosura/front.svg",
  6205. extra: 896 / 847
  6206. }
  6207. },
  6208. back: {
  6209. height: math.unit(6, "feet"),
  6210. weight: math.unit(140, "lbs"),
  6211. name: "Back",
  6212. image: {
  6213. source: "./media/characters/cynosura/back.svg",
  6214. extra: 1365 / 1250
  6215. }
  6216. },
  6217. },
  6218. [
  6219. {
  6220. name: "Micro",
  6221. height: math.unit(4, "inches")
  6222. },
  6223. {
  6224. name: "Normal",
  6225. height: math.unit(5.75, "feet"),
  6226. default: true
  6227. },
  6228. {
  6229. name: "Tall",
  6230. height: math.unit(10, "feet")
  6231. },
  6232. {
  6233. name: "Big",
  6234. height: math.unit(20, "feet")
  6235. },
  6236. {
  6237. name: "Macro",
  6238. height: math.unit(50, "feet")
  6239. },
  6240. ]
  6241. ))
  6242. characterMakers.push(() => makeCharacter(
  6243. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  6244. {
  6245. front: {
  6246. height: math.unit(13 + 2/12, "feet"),
  6247. weight: math.unit(800, "kg"),
  6248. name: "Front",
  6249. image: {
  6250. source: "./media/characters/gin/front.svg",
  6251. extra: 1312/1191,
  6252. bottom: 45/1357
  6253. }
  6254. },
  6255. mouth: {
  6256. height: math.unit(2.39 * 1.8, "feet"),
  6257. name: "Mouth",
  6258. image: {
  6259. source: "./media/characters/gin/mouth.svg"
  6260. }
  6261. },
  6262. hand: {
  6263. height: math.unit(1.57 * 2.19, "feet"),
  6264. name: "Hand",
  6265. image: {
  6266. source: "./media/characters/gin/hand.svg"
  6267. }
  6268. },
  6269. foot: {
  6270. height: math.unit(6 / 4.25 * 2.19, "feet"),
  6271. name: "Foot",
  6272. image: {
  6273. source: "./media/characters/gin/foot.svg"
  6274. }
  6275. },
  6276. sole: {
  6277. height: math.unit(6 / 4.40 * 2.19, "feet"),
  6278. name: "Sole",
  6279. image: {
  6280. source: "./media/characters/gin/sole.svg"
  6281. }
  6282. },
  6283. },
  6284. [
  6285. {
  6286. name: "Very Small",
  6287. height: math.unit(13 + 2 / 12, "feet")
  6288. },
  6289. {
  6290. name: "Micro",
  6291. height: math.unit(600, "miles")
  6292. },
  6293. {
  6294. name: "Regular",
  6295. height: math.unit(20, "earths"),
  6296. default: true
  6297. },
  6298. {
  6299. name: "Macro",
  6300. height: math.unit(2.2, "solarradii")
  6301. },
  6302. {
  6303. name: "Teramacro",
  6304. height: math.unit(1.2, "galaxies")
  6305. },
  6306. {
  6307. name: "Omegamacro",
  6308. height: math.unit(200, "universes")
  6309. },
  6310. ]
  6311. ))
  6312. characterMakers.push(() => makeCharacter(
  6313. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  6314. {
  6315. front: {
  6316. height: math.unit(6 + 1 / 6, "feet"),
  6317. weight: math.unit(178, "lbs"),
  6318. name: "Front",
  6319. image: {
  6320. source: "./media/characters/guy/front.svg"
  6321. }
  6322. }
  6323. },
  6324. [
  6325. {
  6326. name: "Normal",
  6327. height: math.unit(6 + 1 / 6, "feet"),
  6328. default: true
  6329. },
  6330. {
  6331. name: "Large",
  6332. height: math.unit(25 + 7 / 12, "feet")
  6333. },
  6334. {
  6335. name: "Macro",
  6336. height: math.unit(60 + 9 / 12, "feet")
  6337. },
  6338. {
  6339. name: "Macro+",
  6340. height: math.unit(246, "feet")
  6341. },
  6342. {
  6343. name: "Macro++",
  6344. height: math.unit(878, "feet")
  6345. }
  6346. ]
  6347. ))
  6348. characterMakers.push(() => makeCharacter(
  6349. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  6350. {
  6351. front: {
  6352. height: math.unit(9, "feet"),
  6353. weight: math.unit(800, "lbs"),
  6354. name: "Front",
  6355. image: {
  6356. source: "./media/characters/tiberius/front.svg",
  6357. extra: 2295 / 2071
  6358. }
  6359. },
  6360. back: {
  6361. height: math.unit(9, "feet"),
  6362. weight: math.unit(800, "lbs"),
  6363. name: "Back",
  6364. image: {
  6365. source: "./media/characters/tiberius/back.svg",
  6366. extra: 2373 / 2160
  6367. }
  6368. },
  6369. },
  6370. [
  6371. {
  6372. name: "Normal",
  6373. height: math.unit(9, "feet"),
  6374. default: true
  6375. }
  6376. ]
  6377. ))
  6378. characterMakers.push(() => makeCharacter(
  6379. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  6380. {
  6381. front: {
  6382. height: math.unit(6, "feet"),
  6383. weight: math.unit(600, "lbs"),
  6384. name: "Front",
  6385. image: {
  6386. source: "./media/characters/surgo/front.svg",
  6387. extra: 3591 / 2227
  6388. }
  6389. },
  6390. back: {
  6391. height: math.unit(6, "feet"),
  6392. weight: math.unit(600, "lbs"),
  6393. name: "Back",
  6394. image: {
  6395. source: "./media/characters/surgo/back.svg",
  6396. extra: 3557 / 2228
  6397. }
  6398. },
  6399. laying: {
  6400. height: math.unit(6 * 0.85, "feet"),
  6401. weight: math.unit(600, "lbs"),
  6402. name: "Laying",
  6403. image: {
  6404. source: "./media/characters/surgo/laying.svg"
  6405. }
  6406. },
  6407. },
  6408. [
  6409. {
  6410. name: "Normal",
  6411. height: math.unit(6, "feet"),
  6412. default: true
  6413. }
  6414. ]
  6415. ))
  6416. characterMakers.push(() => makeCharacter(
  6417. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  6418. {
  6419. side: {
  6420. height: math.unit(6, "feet"),
  6421. weight: math.unit(150, "lbs"),
  6422. name: "Side",
  6423. image: {
  6424. source: "./media/characters/cibus/side.svg",
  6425. extra: 800 / 400
  6426. }
  6427. },
  6428. },
  6429. [
  6430. {
  6431. name: "Normal",
  6432. height: math.unit(6, "feet"),
  6433. default: true
  6434. }
  6435. ]
  6436. ))
  6437. characterMakers.push(() => makeCharacter(
  6438. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  6439. {
  6440. front: {
  6441. height: math.unit(6, "feet"),
  6442. weight: math.unit(240, "lbs"),
  6443. name: "Front",
  6444. image: {
  6445. source: "./media/characters/nibbles/front.svg"
  6446. }
  6447. },
  6448. side: {
  6449. height: math.unit(6, "feet"),
  6450. weight: math.unit(240, "lbs"),
  6451. name: "Side",
  6452. image: {
  6453. source: "./media/characters/nibbles/side.svg"
  6454. }
  6455. },
  6456. },
  6457. [
  6458. {
  6459. name: "Normal",
  6460. height: math.unit(9, "feet"),
  6461. default: true
  6462. }
  6463. ]
  6464. ))
  6465. characterMakers.push(() => makeCharacter(
  6466. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  6467. {
  6468. side: {
  6469. height: math.unit(5 + 1 / 6, "feet"),
  6470. weight: math.unit(130, "lbs"),
  6471. name: "Side",
  6472. image: {
  6473. source: "./media/characters/rikky/side.svg",
  6474. extra: 851 / 801
  6475. }
  6476. },
  6477. },
  6478. [
  6479. {
  6480. name: "Normal",
  6481. height: math.unit(5 + 1 / 6, "feet")
  6482. },
  6483. {
  6484. name: "Macro",
  6485. height: math.unit(152, "feet"),
  6486. default: true
  6487. },
  6488. {
  6489. name: "Megamacro",
  6490. height: math.unit(7, "miles")
  6491. }
  6492. ]
  6493. ))
  6494. characterMakers.push(() => makeCharacter(
  6495. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  6496. {
  6497. side: {
  6498. height: math.unit(370, "cm"),
  6499. weight: math.unit(350, "lbs"),
  6500. name: "Side",
  6501. image: {
  6502. source: "./media/characters/malfressa/side.svg"
  6503. }
  6504. },
  6505. walking: {
  6506. height: math.unit(370, "cm"),
  6507. weight: math.unit(350, "lbs"),
  6508. name: "Walking",
  6509. image: {
  6510. source: "./media/characters/malfressa/walking.svg"
  6511. }
  6512. },
  6513. feral: {
  6514. height: math.unit(2500, "cm"),
  6515. weight: math.unit(100000, "lbs"),
  6516. name: "Feral",
  6517. image: {
  6518. source: "./media/characters/malfressa/feral.svg",
  6519. extra: 2108 / 837,
  6520. bottom: 0.02
  6521. }
  6522. },
  6523. },
  6524. [
  6525. {
  6526. name: "Normal",
  6527. height: math.unit(370, "cm")
  6528. },
  6529. {
  6530. name: "Macro",
  6531. height: math.unit(300, "meters"),
  6532. default: true
  6533. }
  6534. ]
  6535. ))
  6536. characterMakers.push(() => makeCharacter(
  6537. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  6538. {
  6539. front: {
  6540. height: math.unit(6, "feet"),
  6541. weight: math.unit(60, "kg"),
  6542. name: "Front",
  6543. image: {
  6544. source: "./media/characters/jaro/front.svg",
  6545. extra: 845/817,
  6546. bottom: 45/890
  6547. }
  6548. },
  6549. back: {
  6550. height: math.unit(6, "feet"),
  6551. weight: math.unit(60, "kg"),
  6552. name: "Back",
  6553. image: {
  6554. source: "./media/characters/jaro/back.svg",
  6555. extra: 847/817,
  6556. bottom: 34/881
  6557. }
  6558. },
  6559. },
  6560. [
  6561. {
  6562. name: "Micro",
  6563. height: math.unit(7, "inches")
  6564. },
  6565. {
  6566. name: "Normal",
  6567. height: math.unit(5.5, "feet"),
  6568. default: true
  6569. },
  6570. {
  6571. name: "Minimacro",
  6572. height: math.unit(20, "feet")
  6573. },
  6574. {
  6575. name: "Macro",
  6576. height: math.unit(200, "meters")
  6577. }
  6578. ]
  6579. ))
  6580. characterMakers.push(() => makeCharacter(
  6581. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  6582. {
  6583. front: {
  6584. height: math.unit(6, "feet"),
  6585. weight: math.unit(195, "lb"),
  6586. name: "Front",
  6587. image: {
  6588. source: "./media/characters/rogue/front.svg"
  6589. }
  6590. },
  6591. },
  6592. [
  6593. {
  6594. name: "Macro",
  6595. height: math.unit(90, "feet"),
  6596. default: true
  6597. },
  6598. ]
  6599. ))
  6600. characterMakers.push(() => makeCharacter(
  6601. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  6602. {
  6603. standing: {
  6604. height: math.unit(5 + 8 / 12, "feet"),
  6605. weight: math.unit(140, "lb"),
  6606. name: "Standing",
  6607. image: {
  6608. source: "./media/characters/piper/standing.svg",
  6609. extra: 1440/1284,
  6610. bottom: 66/1506
  6611. }
  6612. },
  6613. running: {
  6614. height: math.unit(5 + 8 / 12, "feet"),
  6615. weight: math.unit(140, "lb"),
  6616. name: "Running",
  6617. image: {
  6618. source: "./media/characters/piper/running.svg",
  6619. extra: 3948/3655,
  6620. bottom: 0/3948
  6621. }
  6622. },
  6623. sole: {
  6624. height: math.unit(0.81, "feet"),
  6625. weight: math.unit(2, "kg"),
  6626. name: "Sole",
  6627. image: {
  6628. source: "./media/characters/piper/sole.svg"
  6629. }
  6630. },
  6631. nipple: {
  6632. height: math.unit(0.25, "feet"),
  6633. weight: math.unit(1.5, "lb"),
  6634. name: "Nipple",
  6635. image: {
  6636. source: "./media/characters/piper/nipple.svg"
  6637. }
  6638. },
  6639. head: {
  6640. height: math.unit(1.1, "feet"),
  6641. name: "Head",
  6642. image: {
  6643. source: "./media/characters/piper/head.svg"
  6644. }
  6645. },
  6646. },
  6647. [
  6648. {
  6649. name: "Micro",
  6650. height: math.unit(2, "inches")
  6651. },
  6652. {
  6653. name: "Normal",
  6654. height: math.unit(5 + 8 / 12, "feet")
  6655. },
  6656. {
  6657. name: "Macro",
  6658. height: math.unit(250, "feet"),
  6659. default: true
  6660. },
  6661. {
  6662. name: "Megamacro",
  6663. height: math.unit(7, "miles")
  6664. },
  6665. ]
  6666. ))
  6667. characterMakers.push(() => makeCharacter(
  6668. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  6669. {
  6670. front: {
  6671. height: math.unit(6, "feet"),
  6672. weight: math.unit(220, "lb"),
  6673. name: "Front",
  6674. image: {
  6675. source: "./media/characters/gemini/front.svg"
  6676. }
  6677. },
  6678. back: {
  6679. height: math.unit(6, "feet"),
  6680. weight: math.unit(220, "lb"),
  6681. name: "Back",
  6682. image: {
  6683. source: "./media/characters/gemini/back.svg"
  6684. }
  6685. },
  6686. kneeling: {
  6687. height: math.unit(6 / 1.5, "feet"),
  6688. weight: math.unit(220, "lb"),
  6689. name: "Kneeling",
  6690. image: {
  6691. source: "./media/characters/gemini/kneeling.svg",
  6692. bottom: 0.02
  6693. }
  6694. },
  6695. },
  6696. [
  6697. {
  6698. name: "Macro",
  6699. height: math.unit(300, "meters"),
  6700. default: true
  6701. },
  6702. {
  6703. name: "Megamacro",
  6704. height: math.unit(6900, "meters")
  6705. },
  6706. ]
  6707. ))
  6708. characterMakers.push(() => makeCharacter(
  6709. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6710. {
  6711. anthro: {
  6712. height: math.unit(2.35, "meters"),
  6713. weight: math.unit(73, "kg"),
  6714. name: "Anthro",
  6715. image: {
  6716. source: "./media/characters/alicia/anthro.svg",
  6717. extra: 2571 / 2385,
  6718. bottom: 75 / 2648
  6719. }
  6720. },
  6721. paw: {
  6722. height: math.unit(1.32, "feet"),
  6723. name: "Paw",
  6724. image: {
  6725. source: "./media/characters/alicia/paw.svg"
  6726. }
  6727. },
  6728. feral: {
  6729. height: math.unit(1.69, "meters"),
  6730. weight: math.unit(73, "kg"),
  6731. name: "Feral",
  6732. image: {
  6733. source: "./media/characters/alicia/feral.svg",
  6734. extra: 2123 / 1715,
  6735. bottom: 222 / 2349
  6736. }
  6737. },
  6738. },
  6739. [
  6740. {
  6741. name: "Normal",
  6742. height: math.unit(2.35, "meters")
  6743. },
  6744. {
  6745. name: "Macro",
  6746. height: math.unit(60, "meters"),
  6747. default: true
  6748. },
  6749. {
  6750. name: "Megamacro",
  6751. height: math.unit(10000, "kilometers")
  6752. },
  6753. ]
  6754. ))
  6755. characterMakers.push(() => makeCharacter(
  6756. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6757. {
  6758. front: {
  6759. height: math.unit(7, "feet"),
  6760. weight: math.unit(250, "lbs"),
  6761. name: "Front",
  6762. image: {
  6763. source: "./media/characters/archy/front.svg"
  6764. }
  6765. }
  6766. },
  6767. [
  6768. {
  6769. name: "Micro",
  6770. height: math.unit(1, "inch")
  6771. },
  6772. {
  6773. name: "Shorty",
  6774. height: math.unit(5, "feet")
  6775. },
  6776. {
  6777. name: "Normal",
  6778. height: math.unit(7, "feet")
  6779. },
  6780. {
  6781. name: "Macro",
  6782. height: math.unit(600, "meters"),
  6783. default: true
  6784. },
  6785. {
  6786. name: "Megamacro",
  6787. height: math.unit(1, "mile")
  6788. },
  6789. ]
  6790. ))
  6791. characterMakers.push(() => makeCharacter(
  6792. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6793. {
  6794. front: {
  6795. height: math.unit(1.65, "meters"),
  6796. weight: math.unit(74, "kg"),
  6797. name: "Front",
  6798. image: {
  6799. source: "./media/characters/berri/front.svg",
  6800. extra: 857 / 837,
  6801. bottom: 18 / 877
  6802. }
  6803. },
  6804. bum: {
  6805. height: math.unit(1.46, "feet"),
  6806. name: "Bum",
  6807. image: {
  6808. source: "./media/characters/berri/bum.svg"
  6809. }
  6810. },
  6811. mouth: {
  6812. height: math.unit(0.44, "feet"),
  6813. name: "Mouth",
  6814. image: {
  6815. source: "./media/characters/berri/mouth.svg"
  6816. }
  6817. },
  6818. paw: {
  6819. height: math.unit(0.826, "feet"),
  6820. name: "Paw",
  6821. image: {
  6822. source: "./media/characters/berri/paw.svg"
  6823. }
  6824. },
  6825. },
  6826. [
  6827. {
  6828. name: "Normal",
  6829. height: math.unit(1.65, "meters")
  6830. },
  6831. {
  6832. name: "Macro",
  6833. height: math.unit(60, "m"),
  6834. default: true
  6835. },
  6836. {
  6837. name: "Megamacro",
  6838. height: math.unit(9.213, "km")
  6839. },
  6840. {
  6841. name: "Planet Eater",
  6842. height: math.unit(489, "megameters")
  6843. },
  6844. {
  6845. name: "Teramacro",
  6846. height: math.unit(2471635000000, "meters")
  6847. },
  6848. {
  6849. name: "Examacro",
  6850. height: math.unit(8.0624e+26, "meters")
  6851. }
  6852. ]
  6853. ))
  6854. characterMakers.push(() => makeCharacter(
  6855. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  6856. {
  6857. front: {
  6858. height: math.unit(1.72, "meters"),
  6859. weight: math.unit(68, "kg"),
  6860. name: "Front",
  6861. image: {
  6862. source: "./media/characters/lexi/front.svg"
  6863. }
  6864. }
  6865. },
  6866. [
  6867. {
  6868. name: "Very Smol",
  6869. height: math.unit(10, "mm")
  6870. },
  6871. {
  6872. name: "Micro",
  6873. height: math.unit(6.8, "cm"),
  6874. default: true
  6875. },
  6876. {
  6877. name: "Normal",
  6878. height: math.unit(1.72, "m")
  6879. }
  6880. ]
  6881. ))
  6882. characterMakers.push(() => makeCharacter(
  6883. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  6884. {
  6885. front: {
  6886. height: math.unit(1.69, "meters"),
  6887. weight: math.unit(68, "kg"),
  6888. name: "Front",
  6889. image: {
  6890. source: "./media/characters/martin/front.svg",
  6891. extra: 596 / 581
  6892. }
  6893. }
  6894. },
  6895. [
  6896. {
  6897. name: "Micro",
  6898. height: math.unit(6.85, "cm"),
  6899. default: true
  6900. },
  6901. {
  6902. name: "Normal",
  6903. height: math.unit(1.69, "m")
  6904. }
  6905. ]
  6906. ))
  6907. characterMakers.push(() => makeCharacter(
  6908. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6909. {
  6910. front: {
  6911. height: math.unit(1.69, "meters"),
  6912. weight: math.unit(68, "kg"),
  6913. name: "Front",
  6914. image: {
  6915. source: "./media/characters/juno/front.svg"
  6916. }
  6917. }
  6918. },
  6919. [
  6920. {
  6921. name: "Micro",
  6922. height: math.unit(7, "cm")
  6923. },
  6924. {
  6925. name: "Normal",
  6926. height: math.unit(1.89, "m")
  6927. },
  6928. {
  6929. name: "Macro",
  6930. height: math.unit(353, "meters"),
  6931. default: true
  6932. }
  6933. ]
  6934. ))
  6935. characterMakers.push(() => makeCharacter(
  6936. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6937. {
  6938. front: {
  6939. height: math.unit(1.93, "meters"),
  6940. weight: math.unit(83, "kg"),
  6941. name: "Front",
  6942. image: {
  6943. source: "./media/characters/samantha/front.svg"
  6944. }
  6945. },
  6946. frontClothed: {
  6947. height: math.unit(1.93, "meters"),
  6948. weight: math.unit(83, "kg"),
  6949. name: "Front (Clothed)",
  6950. image: {
  6951. source: "./media/characters/samantha/front-clothed.svg"
  6952. }
  6953. },
  6954. back: {
  6955. height: math.unit(1.93, "meters"),
  6956. weight: math.unit(83, "kg"),
  6957. name: "Back",
  6958. image: {
  6959. source: "./media/characters/samantha/back.svg"
  6960. }
  6961. },
  6962. },
  6963. [
  6964. {
  6965. name: "Normal",
  6966. height: math.unit(1.93, "m")
  6967. },
  6968. {
  6969. name: "Macro",
  6970. height: math.unit(74, "meters"),
  6971. default: true
  6972. },
  6973. {
  6974. name: "Macro+",
  6975. height: math.unit(223, "meters"),
  6976. },
  6977. {
  6978. name: "Megamacro",
  6979. height: math.unit(8381, "meters"),
  6980. },
  6981. {
  6982. name: "Megamacro+",
  6983. height: math.unit(12000, "kilometers")
  6984. },
  6985. ]
  6986. ))
  6987. characterMakers.push(() => makeCharacter(
  6988. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6989. {
  6990. front: {
  6991. height: math.unit(1.92, "meters"),
  6992. weight: math.unit(80, "kg"),
  6993. name: "Front",
  6994. image: {
  6995. source: "./media/characters/dr-clay/front.svg"
  6996. }
  6997. },
  6998. frontClothed: {
  6999. height: math.unit(1.92, "meters"),
  7000. weight: math.unit(80, "kg"),
  7001. name: "Front (Clothed)",
  7002. image: {
  7003. source: "./media/characters/dr-clay/front-clothed.svg"
  7004. }
  7005. }
  7006. },
  7007. [
  7008. {
  7009. name: "Normal",
  7010. height: math.unit(1.92, "m")
  7011. },
  7012. {
  7013. name: "Macro",
  7014. height: math.unit(214, "meters"),
  7015. default: true
  7016. },
  7017. {
  7018. name: "Macro+",
  7019. height: math.unit(12.237, "meters"),
  7020. },
  7021. {
  7022. name: "Megamacro",
  7023. height: math.unit(557, "megameters"),
  7024. },
  7025. {
  7026. name: "Unimaginable",
  7027. height: math.unit(120e9, "lightyears")
  7028. },
  7029. ]
  7030. ))
  7031. characterMakers.push(() => makeCharacter(
  7032. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  7033. {
  7034. front: {
  7035. height: math.unit(2, "meters"),
  7036. weight: math.unit(80, "kg"),
  7037. name: "Front",
  7038. image: {
  7039. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  7040. }
  7041. }
  7042. },
  7043. [
  7044. {
  7045. name: "Teramacro",
  7046. height: math.unit(500000, "lightyears"),
  7047. default: true
  7048. },
  7049. ]
  7050. ))
  7051. characterMakers.push(() => makeCharacter(
  7052. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  7053. {
  7054. crux: {
  7055. height: math.unit(2, "meters"),
  7056. weight: math.unit(150, "kg"),
  7057. name: "Crux",
  7058. image: {
  7059. source: "./media/characters/vemus/crux.svg",
  7060. extra: 1074/936,
  7061. bottom: 23/1097
  7062. }
  7063. },
  7064. skunkTanuki: {
  7065. height: math.unit(2, "meters"),
  7066. weight: math.unit(150, "kg"),
  7067. name: "Skunk-Tanuki",
  7068. image: {
  7069. source: "./media/characters/vemus/skunk-tanuki.svg",
  7070. extra: 926/893,
  7071. bottom: 20/946
  7072. }
  7073. },
  7074. },
  7075. [
  7076. {
  7077. name: "Normal",
  7078. height: math.unit(3.75, "meters"),
  7079. default: true
  7080. },
  7081. {
  7082. name: "Big",
  7083. height: math.unit(8, "meters")
  7084. },
  7085. {
  7086. name: "Macro",
  7087. height: math.unit(100, "meters")
  7088. },
  7089. {
  7090. name: "Macro+",
  7091. height: math.unit(1500, "meters")
  7092. },
  7093. {
  7094. name: "Stellar",
  7095. height: math.unit(14e8, "meters")
  7096. },
  7097. ]
  7098. ))
  7099. characterMakers.push(() => makeCharacter(
  7100. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  7101. {
  7102. front: {
  7103. height: math.unit(2, "meters"),
  7104. weight: math.unit(70, "kg"),
  7105. name: "Front",
  7106. image: {
  7107. source: "./media/characters/beherit/front.svg",
  7108. extra: 1234/1109,
  7109. bottom: 55/1289
  7110. }
  7111. }
  7112. },
  7113. [
  7114. {
  7115. name: "Normal",
  7116. height: math.unit(6, "feet")
  7117. },
  7118. {
  7119. name: "Lorg",
  7120. height: math.unit(25, "feet"),
  7121. default: true
  7122. },
  7123. {
  7124. name: "Lorger",
  7125. height: math.unit(75, "feet")
  7126. },
  7127. {
  7128. name: "Macro",
  7129. height: math.unit(200, "meters")
  7130. },
  7131. ]
  7132. ))
  7133. characterMakers.push(() => makeCharacter(
  7134. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  7135. {
  7136. front: {
  7137. height: math.unit(2, "meters"),
  7138. weight: math.unit(150, "kg"),
  7139. name: "Front",
  7140. image: {
  7141. source: "./media/characters/everett/front.svg",
  7142. extra: 1017/866,
  7143. bottom: 86/1103
  7144. }
  7145. },
  7146. paw: {
  7147. height: math.unit(2 / 3.6, "meters"),
  7148. name: "Paw",
  7149. image: {
  7150. source: "./media/characters/everett/paw.svg"
  7151. }
  7152. },
  7153. },
  7154. [
  7155. {
  7156. name: "Normal",
  7157. height: math.unit(15, "feet"),
  7158. default: true
  7159. },
  7160. {
  7161. name: "Lorg",
  7162. height: math.unit(70, "feet"),
  7163. default: true
  7164. },
  7165. {
  7166. name: "Lorger",
  7167. height: math.unit(250, "feet")
  7168. },
  7169. {
  7170. name: "Macro",
  7171. height: math.unit(500, "meters")
  7172. },
  7173. ]
  7174. ))
  7175. characterMakers.push(() => makeCharacter(
  7176. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  7177. {
  7178. front: {
  7179. height: math.unit(2, "meters"),
  7180. weight: math.unit(86, "kg"),
  7181. name: "Front",
  7182. image: {
  7183. source: "./media/characters/rose/front.svg",
  7184. extra: 1785/1636,
  7185. bottom: 30/1815
  7186. },
  7187. form: "liom",
  7188. default: true
  7189. },
  7190. frontSporty: {
  7191. height: math.unit(2, "meters"),
  7192. weight: math.unit(86, "kg"),
  7193. name: "Front (Sporty)",
  7194. image: {
  7195. source: "./media/characters/rose/front-sporty.svg",
  7196. extra: 350/335,
  7197. bottom: 10/360
  7198. },
  7199. form: "liom"
  7200. },
  7201. frontAlt: {
  7202. height: math.unit(1.6, "meters"),
  7203. weight: math.unit(86, "kg"),
  7204. name: "Front (Alt)",
  7205. image: {
  7206. source: "./media/characters/rose/front-alt.svg",
  7207. extra: 299/283,
  7208. bottom: 3/302
  7209. },
  7210. form: "liom"
  7211. },
  7212. plush: {
  7213. height: math.unit(2, "meters"),
  7214. weight: math.unit(86/3, "kg"),
  7215. name: "Plush",
  7216. image: {
  7217. source: "./media/characters/rose/plush.svg",
  7218. extra: 361/337,
  7219. bottom: 11/372
  7220. },
  7221. form: "plush",
  7222. default: true
  7223. },
  7224. faeStanding: {
  7225. height: math.unit(10, "cm"),
  7226. weight: math.unit(10, "grams"),
  7227. name: "Standing",
  7228. image: {
  7229. source: "./media/characters/rose/fae-standing.svg",
  7230. extra: 1189/1060,
  7231. bottom: 27/1216
  7232. },
  7233. form: "fae",
  7234. default: true
  7235. },
  7236. faeSitting: {
  7237. height: math.unit(5, "cm"),
  7238. weight: math.unit(10, "grams"),
  7239. name: "Sitting",
  7240. image: {
  7241. source: "./media/characters/rose/fae-sitting.svg",
  7242. extra: 737/577,
  7243. bottom: 356/1093
  7244. },
  7245. form: "fae"
  7246. },
  7247. faePaw: {
  7248. height: math.unit(1.35, "cm"),
  7249. name: "Paw",
  7250. image: {
  7251. source: "./media/characters/rose/fae-paw.svg"
  7252. },
  7253. form: "fae"
  7254. },
  7255. },
  7256. [
  7257. {
  7258. name: "True Micro",
  7259. height: math.unit(9, "cm"),
  7260. form: "liom"
  7261. },
  7262. {
  7263. name: "Micro",
  7264. height: math.unit(16, "cm"),
  7265. form: "liom"
  7266. },
  7267. {
  7268. name: "Normal",
  7269. height: math.unit(1.85, "meters"),
  7270. default: true,
  7271. form: "liom"
  7272. },
  7273. {
  7274. name: "Mini-Macro",
  7275. height: math.unit(5, "meters"),
  7276. form: "liom"
  7277. },
  7278. {
  7279. name: "Macro",
  7280. height: math.unit(15, "meters"),
  7281. form: "liom"
  7282. },
  7283. {
  7284. name: "True Macro",
  7285. height: math.unit(40, "meters"),
  7286. form: "liom"
  7287. },
  7288. {
  7289. name: "City Scale",
  7290. height: math.unit(1, "km"),
  7291. form: "liom"
  7292. },
  7293. {
  7294. name: "Plushie",
  7295. height: math.unit(9, "cm"),
  7296. form: "plush",
  7297. default: true
  7298. },
  7299. {
  7300. name: "Fae",
  7301. height: math.unit(10, "cm"),
  7302. form: "fae",
  7303. default: true
  7304. },
  7305. ],
  7306. {
  7307. "liom": {
  7308. name: "Liom"
  7309. },
  7310. "plush": {
  7311. name: "Plush"
  7312. },
  7313. "fae": {
  7314. name: "Fae Fox",
  7315. default: true
  7316. }
  7317. }
  7318. ))
  7319. characterMakers.push(() => makeCharacter(
  7320. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  7321. {
  7322. front: {
  7323. height: math.unit(2, "meters"),
  7324. weight: math.unit(350, "lbs"),
  7325. name: "Front",
  7326. image: {
  7327. source: "./media/characters/regal/front.svg"
  7328. }
  7329. },
  7330. back: {
  7331. height: math.unit(2, "meters"),
  7332. weight: math.unit(350, "lbs"),
  7333. name: "Back",
  7334. image: {
  7335. source: "./media/characters/regal/back.svg"
  7336. }
  7337. },
  7338. },
  7339. [
  7340. {
  7341. name: "Macro",
  7342. height: math.unit(350, "feet"),
  7343. default: true
  7344. }
  7345. ]
  7346. ))
  7347. characterMakers.push(() => makeCharacter(
  7348. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  7349. {
  7350. front: {
  7351. height: math.unit(4 + 11 / 12, "feet"),
  7352. weight: math.unit(100, "lbs"),
  7353. name: "Front",
  7354. image: {
  7355. source: "./media/characters/opal/front.svg"
  7356. }
  7357. },
  7358. frontAlt: {
  7359. height: math.unit(4 + 11 / 12, "feet"),
  7360. weight: math.unit(100, "lbs"),
  7361. name: "Front (Alt)",
  7362. image: {
  7363. source: "./media/characters/opal/front-alt.svg"
  7364. }
  7365. },
  7366. },
  7367. [
  7368. {
  7369. name: "Small",
  7370. height: math.unit(4 + 11 / 12, "feet")
  7371. },
  7372. {
  7373. name: "Normal",
  7374. height: math.unit(20, "feet"),
  7375. default: true
  7376. },
  7377. {
  7378. name: "Macro",
  7379. height: math.unit(120, "feet")
  7380. },
  7381. {
  7382. name: "Megamacro",
  7383. height: math.unit(80, "miles")
  7384. },
  7385. {
  7386. name: "True Size",
  7387. height: math.unit(100000, "lightyears")
  7388. },
  7389. ]
  7390. ))
  7391. characterMakers.push(() => makeCharacter(
  7392. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  7393. {
  7394. front: {
  7395. height: math.unit(6, "feet"),
  7396. weight: math.unit(200, "lbs"),
  7397. name: "Front",
  7398. image: {
  7399. source: "./media/characters/vector-wuff/front.svg"
  7400. }
  7401. }
  7402. },
  7403. [
  7404. {
  7405. name: "Normal",
  7406. height: math.unit(2.8, "meters")
  7407. },
  7408. {
  7409. name: "Macro",
  7410. height: math.unit(450, "meters"),
  7411. default: true
  7412. },
  7413. {
  7414. name: "Megamacro",
  7415. height: math.unit(15, "kilometers")
  7416. }
  7417. ]
  7418. ))
  7419. characterMakers.push(() => makeCharacter(
  7420. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  7421. {
  7422. front: {
  7423. height: math.unit(6, "feet"),
  7424. weight: math.unit(256, "lbs"),
  7425. name: "Front",
  7426. image: {
  7427. source: "./media/characters/dannik/front.svg"
  7428. }
  7429. }
  7430. },
  7431. [
  7432. {
  7433. name: "Macro",
  7434. height: math.unit(69.57, "meters"),
  7435. default: true
  7436. },
  7437. ]
  7438. ))
  7439. characterMakers.push(() => makeCharacter(
  7440. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  7441. {
  7442. front: {
  7443. height: math.unit(6, "feet"),
  7444. weight: math.unit(120, "lbs"),
  7445. name: "Front",
  7446. image: {
  7447. source: "./media/characters/azura-saharah/front.svg"
  7448. }
  7449. },
  7450. back: {
  7451. height: math.unit(6, "feet"),
  7452. weight: math.unit(120, "lbs"),
  7453. name: "Back",
  7454. image: {
  7455. source: "./media/characters/azura-saharah/back.svg"
  7456. }
  7457. },
  7458. },
  7459. [
  7460. {
  7461. name: "Macro",
  7462. height: math.unit(100, "feet"),
  7463. default: true
  7464. },
  7465. ]
  7466. ))
  7467. characterMakers.push(() => makeCharacter(
  7468. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  7469. {
  7470. side: {
  7471. height: math.unit(5 + 4 / 12, "feet"),
  7472. weight: math.unit(163, "lbs"),
  7473. name: "Side",
  7474. image: {
  7475. source: "./media/characters/kennedy/side.svg"
  7476. }
  7477. }
  7478. },
  7479. [
  7480. {
  7481. name: "Standard Doggo",
  7482. height: math.unit(5 + 4 / 12, "feet")
  7483. },
  7484. {
  7485. name: "Big Doggo",
  7486. height: math.unit(25 + 3 / 12, "feet"),
  7487. default: true
  7488. },
  7489. ]
  7490. ))
  7491. characterMakers.push(() => makeCharacter(
  7492. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  7493. {
  7494. front: {
  7495. height: math.unit(5 + 5/12, "feet"),
  7496. weight: math.unit(100, "lbs"),
  7497. name: "Front",
  7498. image: {
  7499. source: "./media/characters/odios-de-lunar/front.svg",
  7500. extra: 1468/1323,
  7501. bottom: 22/1490
  7502. }
  7503. }
  7504. },
  7505. [
  7506. {
  7507. name: "Micro",
  7508. height: math.unit(3, "inches")
  7509. },
  7510. {
  7511. name: "Normal",
  7512. height: math.unit(5.5, "feet"),
  7513. default: true
  7514. },
  7515. {
  7516. name: "Macro",
  7517. height: math.unit(100, "feet")
  7518. },
  7519. ]
  7520. ))
  7521. characterMakers.push(() => makeCharacter(
  7522. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  7523. {
  7524. back: {
  7525. height: math.unit(6, "feet"),
  7526. weight: math.unit(220, "lbs"),
  7527. name: "Back",
  7528. image: {
  7529. source: "./media/characters/mandake/back.svg"
  7530. }
  7531. }
  7532. },
  7533. [
  7534. {
  7535. name: "Normal",
  7536. height: math.unit(7, "feet"),
  7537. default: true
  7538. },
  7539. {
  7540. name: "Macro",
  7541. height: math.unit(78, "feet")
  7542. },
  7543. {
  7544. name: "Macro+",
  7545. height: math.unit(300, "meters")
  7546. },
  7547. {
  7548. name: "Macro++",
  7549. height: math.unit(2400, "feet")
  7550. },
  7551. {
  7552. name: "Megamacro",
  7553. height: math.unit(5167, "meters")
  7554. },
  7555. {
  7556. name: "Gigamacro",
  7557. height: math.unit(41769, "miles")
  7558. },
  7559. ]
  7560. ))
  7561. characterMakers.push(() => makeCharacter(
  7562. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  7563. {
  7564. front: {
  7565. height: math.unit(6, "feet"),
  7566. weight: math.unit(120, "lbs"),
  7567. name: "Front",
  7568. image: {
  7569. source: "./media/characters/yozey/front.svg"
  7570. }
  7571. },
  7572. frontAlt: {
  7573. height: math.unit(6, "feet"),
  7574. weight: math.unit(120, "lbs"),
  7575. name: "Front (Alt)",
  7576. image: {
  7577. source: "./media/characters/yozey/front-alt.svg"
  7578. }
  7579. },
  7580. side: {
  7581. height: math.unit(6, "feet"),
  7582. weight: math.unit(120, "lbs"),
  7583. name: "Side",
  7584. image: {
  7585. source: "./media/characters/yozey/side.svg"
  7586. }
  7587. },
  7588. },
  7589. [
  7590. {
  7591. name: "Micro",
  7592. height: math.unit(3, "inches"),
  7593. default: true
  7594. },
  7595. {
  7596. name: "Normal",
  7597. height: math.unit(6, "feet")
  7598. }
  7599. ]
  7600. ))
  7601. characterMakers.push(() => makeCharacter(
  7602. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  7603. {
  7604. front: {
  7605. height: math.unit(6, "feet"),
  7606. weight: math.unit(103, "lbs"),
  7607. name: "Front",
  7608. image: {
  7609. source: "./media/characters/valeska-voss/front.svg"
  7610. }
  7611. }
  7612. },
  7613. [
  7614. {
  7615. name: "Mini-Sized Sub",
  7616. height: math.unit(3.1, "inches")
  7617. },
  7618. {
  7619. name: "Mid-Sized Sub",
  7620. height: math.unit(6.2, "inches")
  7621. },
  7622. {
  7623. name: "Full-Sized Sub",
  7624. height: math.unit(9.3, "inches")
  7625. },
  7626. {
  7627. name: "Normal",
  7628. height: math.unit(5 + 2 / 12, "foot"),
  7629. default: true
  7630. },
  7631. ]
  7632. ))
  7633. characterMakers.push(() => makeCharacter(
  7634. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  7635. {
  7636. front: {
  7637. height: math.unit(6, "feet"),
  7638. weight: math.unit(160, "lbs"),
  7639. name: "Front",
  7640. image: {
  7641. source: "./media/characters/gene-zeta/front.svg",
  7642. extra: 3006 / 2826,
  7643. bottom: 182 / 3188
  7644. }
  7645. }
  7646. },
  7647. [
  7648. {
  7649. name: "Micro",
  7650. height: math.unit(6, "inches")
  7651. },
  7652. {
  7653. name: "Normal",
  7654. height: math.unit(5 + 11 / 12, "foot"),
  7655. default: true
  7656. },
  7657. {
  7658. name: "Macro",
  7659. height: math.unit(140, "feet")
  7660. },
  7661. {
  7662. name: "Supercharged",
  7663. height: math.unit(2500, "feet")
  7664. },
  7665. ]
  7666. ))
  7667. characterMakers.push(() => makeCharacter(
  7668. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  7669. {
  7670. front: {
  7671. height: math.unit(6, "feet"),
  7672. weight: math.unit(350, "lbs"),
  7673. name: "Front",
  7674. image: {
  7675. source: "./media/characters/razinox/front.svg",
  7676. extra: 1686 / 1548,
  7677. bottom: 28.2 / 1868
  7678. }
  7679. },
  7680. back: {
  7681. height: math.unit(6, "feet"),
  7682. weight: math.unit(350, "lbs"),
  7683. name: "Back",
  7684. image: {
  7685. source: "./media/characters/razinox/back.svg",
  7686. extra: 1660 / 1590,
  7687. bottom: 15 / 1665
  7688. }
  7689. },
  7690. },
  7691. [
  7692. {
  7693. name: "Normal",
  7694. height: math.unit(10 + 8 / 12, "foot")
  7695. },
  7696. {
  7697. name: "Minimacro",
  7698. height: math.unit(15, "foot")
  7699. },
  7700. {
  7701. name: "Macro",
  7702. height: math.unit(60, "foot"),
  7703. default: true
  7704. },
  7705. {
  7706. name: "Megamacro",
  7707. height: math.unit(5, "miles")
  7708. },
  7709. {
  7710. name: "Gigamacro",
  7711. height: math.unit(6000, "miles")
  7712. },
  7713. ]
  7714. ))
  7715. characterMakers.push(() => makeCharacter(
  7716. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  7717. {
  7718. front: {
  7719. height: math.unit(6, "feet"),
  7720. weight: math.unit(150, "lbs"),
  7721. name: "Front",
  7722. image: {
  7723. source: "./media/characters/cobalt/front.svg"
  7724. }
  7725. }
  7726. },
  7727. [
  7728. {
  7729. name: "Normal",
  7730. height: math.unit(8 + 1 / 12, "foot")
  7731. },
  7732. {
  7733. name: "Macro",
  7734. height: math.unit(111, "foot"),
  7735. default: true
  7736. },
  7737. {
  7738. name: "Supracosmic",
  7739. height: math.unit(1e42, "feet")
  7740. },
  7741. ]
  7742. ))
  7743. characterMakers.push(() => makeCharacter(
  7744. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  7745. {
  7746. front: {
  7747. height: math.unit(5, "inches"),
  7748. name: "Front",
  7749. image: {
  7750. source: "./media/characters/amanda/front.svg",
  7751. extra: 926/791,
  7752. bottom: 38/964
  7753. }
  7754. },
  7755. back: {
  7756. height: math.unit(5, "inches"),
  7757. name: "Back",
  7758. image: {
  7759. source: "./media/characters/amanda/back.svg",
  7760. extra: 909/805,
  7761. bottom: 43/952
  7762. }
  7763. },
  7764. },
  7765. [
  7766. {
  7767. name: "Micro",
  7768. height: math.unit(5, "inches"),
  7769. default: true
  7770. },
  7771. ]
  7772. ))
  7773. characterMakers.push(() => makeCharacter(
  7774. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  7775. {
  7776. front: {
  7777. height: math.unit(2.75, "meters"),
  7778. weight: math.unit(1200, "lb"),
  7779. name: "Front",
  7780. image: {
  7781. source: "./media/characters/teal/front.svg",
  7782. extra: 2463 / 2320,
  7783. bottom: 166 / 2629
  7784. }
  7785. },
  7786. back: {
  7787. height: math.unit(2.75, "meters"),
  7788. weight: math.unit(1200, "lb"),
  7789. name: "Back",
  7790. image: {
  7791. source: "./media/characters/teal/back.svg",
  7792. extra: 2580 / 2489,
  7793. bottom: 151 / 2731
  7794. }
  7795. },
  7796. sitting: {
  7797. height: math.unit(1.9, "meters"),
  7798. weight: math.unit(1200, "lb"),
  7799. name: "Sitting",
  7800. image: {
  7801. source: "./media/characters/teal/sitting.svg",
  7802. extra: 623 / 590,
  7803. bottom: 121 / 744
  7804. }
  7805. },
  7806. standing: {
  7807. height: math.unit(2.75, "meters"),
  7808. weight: math.unit(1200, "lb"),
  7809. name: "Standing",
  7810. image: {
  7811. source: "./media/characters/teal/standing.svg",
  7812. extra: 923 / 893,
  7813. bottom: 60 / 983
  7814. }
  7815. },
  7816. stretching: {
  7817. height: math.unit(3.65, "meters"),
  7818. weight: math.unit(1200, "lb"),
  7819. name: "Stretching",
  7820. image: {
  7821. source: "./media/characters/teal/stretching.svg",
  7822. extra: 1276 / 1244,
  7823. bottom: 0 / 1276
  7824. }
  7825. },
  7826. legged: {
  7827. height: math.unit(1.3, "meters"),
  7828. weight: math.unit(100, "lb"),
  7829. name: "Legged",
  7830. image: {
  7831. source: "./media/characters/teal/legged.svg",
  7832. extra: 462 / 437,
  7833. bottom: 24 / 486
  7834. }
  7835. },
  7836. naga: {
  7837. height: math.unit(5.4, "meters"),
  7838. weight: math.unit(4000, "lb"),
  7839. name: "Naga",
  7840. image: {
  7841. source: "./media/characters/teal/naga.svg",
  7842. extra: 1902 / 1858,
  7843. bottom: 0 / 1902
  7844. }
  7845. },
  7846. hand: {
  7847. height: math.unit(0.52, "meters"),
  7848. name: "Hand",
  7849. image: {
  7850. source: "./media/characters/teal/hand.svg"
  7851. }
  7852. },
  7853. maw: {
  7854. height: math.unit(0.43, "meters"),
  7855. name: "Maw",
  7856. image: {
  7857. source: "./media/characters/teal/maw.svg"
  7858. }
  7859. },
  7860. slit: {
  7861. height: math.unit(0.25, "meters"),
  7862. name: "Slit",
  7863. image: {
  7864. source: "./media/characters/teal/slit.svg"
  7865. }
  7866. },
  7867. },
  7868. [
  7869. {
  7870. name: "Normal",
  7871. height: math.unit(2.75, "meters"),
  7872. default: true
  7873. },
  7874. {
  7875. name: "Macro",
  7876. height: math.unit(300, "feet")
  7877. },
  7878. {
  7879. name: "Macro+",
  7880. height: math.unit(2000, "feet")
  7881. },
  7882. ]
  7883. ))
  7884. characterMakers.push(() => makeCharacter(
  7885. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  7886. {
  7887. frontCat: {
  7888. height: math.unit(6, "feet"),
  7889. weight: math.unit(180, "lbs"),
  7890. name: "Front (Cat)",
  7891. image: {
  7892. source: "./media/characters/ravin-amulet/front-cat.svg"
  7893. }
  7894. },
  7895. frontCatAlt: {
  7896. height: math.unit(6, "feet"),
  7897. weight: math.unit(180, "lbs"),
  7898. name: "Front (Alt, Cat)",
  7899. image: {
  7900. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  7901. }
  7902. },
  7903. frontWerewolf: {
  7904. height: math.unit(6 * 1.2, "feet"),
  7905. weight: math.unit(225, "lbs"),
  7906. name: "Front (Werewolf)",
  7907. image: {
  7908. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  7909. }
  7910. },
  7911. backWerewolf: {
  7912. height: math.unit(6 * 1.2, "feet"),
  7913. weight: math.unit(225, "lbs"),
  7914. name: "Back (Werewolf)",
  7915. image: {
  7916. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  7917. }
  7918. },
  7919. },
  7920. [
  7921. {
  7922. name: "Nano",
  7923. height: math.unit(1, "micrometer")
  7924. },
  7925. {
  7926. name: "Micro",
  7927. height: math.unit(1, "inch")
  7928. },
  7929. {
  7930. name: "Normal",
  7931. height: math.unit(6, "feet"),
  7932. default: true
  7933. },
  7934. {
  7935. name: "Macro",
  7936. height: math.unit(60, "feet")
  7937. }
  7938. ]
  7939. ))
  7940. characterMakers.push(() => makeCharacter(
  7941. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  7942. {
  7943. front: {
  7944. height: math.unit(6, "feet"),
  7945. weight: math.unit(165, "lbs"),
  7946. name: "Front",
  7947. image: {
  7948. source: "./media/characters/fluoresce/front.svg"
  7949. }
  7950. }
  7951. },
  7952. [
  7953. {
  7954. name: "Micro",
  7955. height: math.unit(6, "cm")
  7956. },
  7957. {
  7958. name: "Normal",
  7959. height: math.unit(5 + 7 / 12, "feet"),
  7960. default: true
  7961. },
  7962. {
  7963. name: "Macro",
  7964. height: math.unit(56, "feet")
  7965. },
  7966. {
  7967. name: "Megamacro",
  7968. height: math.unit(1.9, "miles")
  7969. },
  7970. ]
  7971. ))
  7972. characterMakers.push(() => makeCharacter(
  7973. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  7974. {
  7975. front: {
  7976. height: math.unit(9 + 6 / 12, "feet"),
  7977. weight: math.unit(523, "lbs"),
  7978. name: "Side",
  7979. image: {
  7980. source: "./media/characters/aurora/side.svg"
  7981. }
  7982. }
  7983. },
  7984. [
  7985. {
  7986. name: "Normal",
  7987. height: math.unit(9 + 6 / 12, "feet")
  7988. },
  7989. {
  7990. name: "Macro",
  7991. height: math.unit(96, "feet"),
  7992. default: true
  7993. },
  7994. {
  7995. name: "Macro+",
  7996. height: math.unit(243, "feet")
  7997. },
  7998. ]
  7999. ))
  8000. characterMakers.push(() => makeCharacter(
  8001. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  8002. {
  8003. front: {
  8004. height: math.unit(194, "cm"),
  8005. weight: math.unit(90, "kg"),
  8006. name: "Front",
  8007. image: {
  8008. source: "./media/characters/ranek/front.svg",
  8009. extra: 1862/1791,
  8010. bottom: 80/1942
  8011. }
  8012. },
  8013. back: {
  8014. height: math.unit(194, "cm"),
  8015. weight: math.unit(90, "kg"),
  8016. name: "Back",
  8017. image: {
  8018. source: "./media/characters/ranek/back.svg",
  8019. extra: 1853/1787,
  8020. bottom: 74/1927
  8021. }
  8022. },
  8023. feral: {
  8024. height: math.unit(30, "cm"),
  8025. weight: math.unit(1.6, "lbs"),
  8026. name: "Feral",
  8027. image: {
  8028. source: "./media/characters/ranek/feral.svg",
  8029. extra: 990/631,
  8030. bottom: 29/1019
  8031. }
  8032. },
  8033. },
  8034. [
  8035. {
  8036. name: "Normal",
  8037. height: math.unit(194, "cm"),
  8038. default: true
  8039. },
  8040. {
  8041. name: "Macro",
  8042. height: math.unit(100, "meters")
  8043. },
  8044. ]
  8045. ))
  8046. characterMakers.push(() => makeCharacter(
  8047. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  8048. {
  8049. front: {
  8050. height: math.unit(5 + 6 / 12, "feet"),
  8051. weight: math.unit(153, "lbs"),
  8052. name: "Front",
  8053. image: {
  8054. source: "./media/characters/andrew-cooper/front.svg"
  8055. }
  8056. },
  8057. },
  8058. [
  8059. {
  8060. name: "Nano",
  8061. height: math.unit(1, "mm")
  8062. },
  8063. {
  8064. name: "Micro",
  8065. height: math.unit(2, "inches")
  8066. },
  8067. {
  8068. name: "Normal",
  8069. height: math.unit(5 + 6 / 12, "feet"),
  8070. default: true
  8071. }
  8072. ]
  8073. ))
  8074. characterMakers.push(() => makeCharacter(
  8075. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  8076. {
  8077. front: {
  8078. height: math.unit(6, "feet"),
  8079. weight: math.unit(180, "lbs"),
  8080. name: "Front",
  8081. image: {
  8082. source: "./media/characters/akane-sato/front.svg",
  8083. extra: 1219 / 1140
  8084. }
  8085. },
  8086. back: {
  8087. height: math.unit(6, "feet"),
  8088. weight: math.unit(180, "lbs"),
  8089. name: "Back",
  8090. image: {
  8091. source: "./media/characters/akane-sato/back.svg",
  8092. extra: 1219 / 1170
  8093. }
  8094. },
  8095. },
  8096. [
  8097. {
  8098. name: "Normal",
  8099. height: math.unit(2.5, "meters")
  8100. },
  8101. {
  8102. name: "Macro",
  8103. height: math.unit(250, "meters"),
  8104. default: true
  8105. },
  8106. {
  8107. name: "Megamacro",
  8108. height: math.unit(25, "km")
  8109. },
  8110. ]
  8111. ))
  8112. characterMakers.push(() => makeCharacter(
  8113. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  8114. {
  8115. front: {
  8116. height: math.unit(6, "feet"),
  8117. weight: math.unit(65, "kg"),
  8118. name: "Front",
  8119. image: {
  8120. source: "./media/characters/rook/front.svg",
  8121. extra: 960 / 950
  8122. }
  8123. }
  8124. },
  8125. [
  8126. {
  8127. name: "Normal",
  8128. height: math.unit(8.8, "feet")
  8129. },
  8130. {
  8131. name: "Macro",
  8132. height: math.unit(88, "feet"),
  8133. default: true
  8134. },
  8135. {
  8136. name: "Megamacro",
  8137. height: math.unit(8, "miles")
  8138. },
  8139. ]
  8140. ))
  8141. characterMakers.push(() => makeCharacter(
  8142. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  8143. {
  8144. front: {
  8145. height: math.unit(12 + 2 / 12, "feet"),
  8146. weight: math.unit(808, "lbs"),
  8147. name: "Front",
  8148. image: {
  8149. source: "./media/characters/prodigy/front.svg"
  8150. }
  8151. }
  8152. },
  8153. [
  8154. {
  8155. name: "Normal",
  8156. height: math.unit(12 + 2 / 12, "feet"),
  8157. default: true
  8158. },
  8159. {
  8160. name: "Macro",
  8161. height: math.unit(143, "feet")
  8162. },
  8163. {
  8164. name: "Macro+",
  8165. height: math.unit(400, "feet")
  8166. },
  8167. ]
  8168. ))
  8169. characterMakers.push(() => makeCharacter(
  8170. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  8171. {
  8172. front: {
  8173. height: math.unit(6, "feet"),
  8174. weight: math.unit(225, "lbs"),
  8175. name: "Front",
  8176. image: {
  8177. source: "./media/characters/daniel/front.svg"
  8178. }
  8179. },
  8180. leaning: {
  8181. height: math.unit(6, "feet"),
  8182. weight: math.unit(225, "lbs"),
  8183. name: "Leaning",
  8184. image: {
  8185. source: "./media/characters/daniel/leaning.svg"
  8186. }
  8187. },
  8188. },
  8189. [
  8190. {
  8191. name: "Macro",
  8192. height: math.unit(1000, "feet"),
  8193. default: true
  8194. },
  8195. ]
  8196. ))
  8197. characterMakers.push(() => makeCharacter(
  8198. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  8199. {
  8200. front: {
  8201. height: math.unit(6, "feet"),
  8202. weight: math.unit(88, "lbs"),
  8203. name: "Front",
  8204. image: {
  8205. source: "./media/characters/chiros/front.svg",
  8206. extra: 306 / 226
  8207. }
  8208. },
  8209. side: {
  8210. height: math.unit(6, "feet"),
  8211. weight: math.unit(88, "lbs"),
  8212. name: "Side",
  8213. image: {
  8214. source: "./media/characters/chiros/side.svg",
  8215. extra: 306 / 226
  8216. }
  8217. },
  8218. },
  8219. [
  8220. {
  8221. name: "Normal",
  8222. height: math.unit(6, "cm"),
  8223. default: true
  8224. },
  8225. ]
  8226. ))
  8227. characterMakers.push(() => makeCharacter(
  8228. { name: "Selka", species: ["snake"], tags: ["naga"] },
  8229. {
  8230. front: {
  8231. height: math.unit(6, "feet"),
  8232. weight: math.unit(100, "lbs"),
  8233. name: "Front",
  8234. image: {
  8235. source: "./media/characters/selka/front.svg",
  8236. extra: 947 / 887
  8237. }
  8238. }
  8239. },
  8240. [
  8241. {
  8242. name: "Normal",
  8243. height: math.unit(5, "cm"),
  8244. default: true
  8245. },
  8246. ]
  8247. ))
  8248. characterMakers.push(() => makeCharacter(
  8249. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  8250. {
  8251. front: {
  8252. height: math.unit(8 + 3 / 12, "feet"),
  8253. weight: math.unit(424, "lbs"),
  8254. name: "Front",
  8255. image: {
  8256. source: "./media/characters/verin/front.svg",
  8257. extra: 1845 / 1550
  8258. }
  8259. },
  8260. frontArmored: {
  8261. height: math.unit(8 + 3 / 12, "feet"),
  8262. weight: math.unit(424, "lbs"),
  8263. name: "Front (Armored)",
  8264. image: {
  8265. source: "./media/characters/verin/front-armor.svg",
  8266. extra: 1845 / 1550,
  8267. bottom: 0.01
  8268. }
  8269. },
  8270. back: {
  8271. height: math.unit(8 + 3 / 12, "feet"),
  8272. weight: math.unit(424, "lbs"),
  8273. name: "Back",
  8274. image: {
  8275. source: "./media/characters/verin/back.svg",
  8276. bottom: 0.1,
  8277. extra: 1
  8278. }
  8279. },
  8280. foot: {
  8281. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  8282. name: "Foot",
  8283. image: {
  8284. source: "./media/characters/verin/foot.svg"
  8285. }
  8286. },
  8287. },
  8288. [
  8289. {
  8290. name: "Normal",
  8291. height: math.unit(8 + 3 / 12, "feet")
  8292. },
  8293. {
  8294. name: "Minimacro",
  8295. height: math.unit(21, "feet"),
  8296. default: true
  8297. },
  8298. {
  8299. name: "Macro",
  8300. height: math.unit(626, "feet")
  8301. },
  8302. ]
  8303. ))
  8304. characterMakers.push(() => makeCharacter(
  8305. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  8306. {
  8307. front: {
  8308. height: math.unit(2.718, "meters"),
  8309. weight: math.unit(150, "lbs"),
  8310. name: "Front",
  8311. image: {
  8312. source: "./media/characters/sovrim-terraquian/front.svg",
  8313. extra: 1752/1689,
  8314. bottom: 36/1788
  8315. }
  8316. },
  8317. back: {
  8318. height: math.unit(2.718, "meters"),
  8319. weight: math.unit(150, "lbs"),
  8320. name: "Back",
  8321. image: {
  8322. source: "./media/characters/sovrim-terraquian/back.svg",
  8323. extra: 1698/1657,
  8324. bottom: 58/1756
  8325. }
  8326. },
  8327. tongue: {
  8328. height: math.unit(2.865, "feet"),
  8329. name: "Tongue",
  8330. image: {
  8331. source: "./media/characters/sovrim-terraquian/tongue.svg"
  8332. }
  8333. },
  8334. hand: {
  8335. height: math.unit(1.61, "feet"),
  8336. name: "Hand",
  8337. image: {
  8338. source: "./media/characters/sovrim-terraquian/hand.svg"
  8339. }
  8340. },
  8341. foot: {
  8342. height: math.unit(1.05, "feet"),
  8343. name: "Foot",
  8344. image: {
  8345. source: "./media/characters/sovrim-terraquian/foot.svg"
  8346. }
  8347. },
  8348. footAlt: {
  8349. height: math.unit(0.88, "feet"),
  8350. name: "Foot (Alt)",
  8351. image: {
  8352. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  8353. }
  8354. },
  8355. },
  8356. [
  8357. {
  8358. name: "Micro",
  8359. height: math.unit(2, "inches")
  8360. },
  8361. {
  8362. name: "Small",
  8363. height: math.unit(1, "meter")
  8364. },
  8365. {
  8366. name: "Normal",
  8367. height: math.unit(Math.E, "meters"),
  8368. default: true
  8369. },
  8370. {
  8371. name: "Macro",
  8372. height: math.unit(20, "meters")
  8373. },
  8374. {
  8375. name: "Macro+",
  8376. height: math.unit(400, "meters")
  8377. },
  8378. ]
  8379. ))
  8380. characterMakers.push(() => makeCharacter(
  8381. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  8382. {
  8383. front: {
  8384. height: math.unit(7, "feet"),
  8385. weight: math.unit(489, "lbs"),
  8386. name: "Front",
  8387. image: {
  8388. source: "./media/characters/reece-silvermane/front.svg",
  8389. bottom: 0.02,
  8390. extra: 1
  8391. }
  8392. },
  8393. },
  8394. [
  8395. {
  8396. name: "Macro",
  8397. height: math.unit(1.5, "miles"),
  8398. default: true
  8399. },
  8400. ]
  8401. ))
  8402. characterMakers.push(() => makeCharacter(
  8403. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  8404. {
  8405. front: {
  8406. height: math.unit(6, "feet"),
  8407. weight: math.unit(78, "kg"),
  8408. name: "Front",
  8409. image: {
  8410. source: "./media/characters/kane/front.svg",
  8411. extra: 978 / 899
  8412. }
  8413. },
  8414. },
  8415. [
  8416. {
  8417. name: "Normal",
  8418. height: math.unit(2.1, "m"),
  8419. },
  8420. {
  8421. name: "Macro",
  8422. height: math.unit(1, "km"),
  8423. default: true
  8424. },
  8425. ]
  8426. ))
  8427. characterMakers.push(() => makeCharacter(
  8428. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  8429. {
  8430. front: {
  8431. height: math.unit(6, "feet"),
  8432. weight: math.unit(200, "kg"),
  8433. name: "Front",
  8434. image: {
  8435. source: "./media/characters/tegon/front.svg",
  8436. bottom: 0.01,
  8437. extra: 1
  8438. }
  8439. },
  8440. },
  8441. [
  8442. {
  8443. name: "Micro",
  8444. height: math.unit(1, "inch")
  8445. },
  8446. {
  8447. name: "Normal",
  8448. height: math.unit(6 + 3 / 12, "feet"),
  8449. default: true
  8450. },
  8451. {
  8452. name: "Macro",
  8453. height: math.unit(300, "feet")
  8454. },
  8455. {
  8456. name: "Megamacro",
  8457. height: math.unit(69, "miles")
  8458. },
  8459. ]
  8460. ))
  8461. characterMakers.push(() => makeCharacter(
  8462. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  8463. {
  8464. side: {
  8465. height: math.unit(6, "feet"),
  8466. weight: math.unit(2304, "lbs"),
  8467. name: "Side",
  8468. image: {
  8469. source: "./media/characters/arcturax/side.svg",
  8470. extra: 790 / 376,
  8471. bottom: 0.01
  8472. }
  8473. },
  8474. },
  8475. [
  8476. {
  8477. name: "Micro",
  8478. height: math.unit(2, "inch")
  8479. },
  8480. {
  8481. name: "Normal",
  8482. height: math.unit(6, "feet")
  8483. },
  8484. {
  8485. name: "Macro",
  8486. height: math.unit(39, "feet"),
  8487. default: true
  8488. },
  8489. {
  8490. name: "Megamacro",
  8491. height: math.unit(7, "miles")
  8492. },
  8493. ]
  8494. ))
  8495. characterMakers.push(() => makeCharacter(
  8496. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  8497. {
  8498. front: {
  8499. height: math.unit(6, "feet"),
  8500. weight: math.unit(50, "lbs"),
  8501. name: "Front",
  8502. image: {
  8503. source: "./media/characters/sentri/front.svg",
  8504. extra: 1750 / 1570,
  8505. bottom: 0.025
  8506. }
  8507. },
  8508. frontAlt: {
  8509. height: math.unit(6, "feet"),
  8510. weight: math.unit(50, "lbs"),
  8511. name: "Front (Alt)",
  8512. image: {
  8513. source: "./media/characters/sentri/front-alt.svg",
  8514. extra: 1750 / 1570,
  8515. bottom: 0.025
  8516. }
  8517. },
  8518. },
  8519. [
  8520. {
  8521. name: "Normal",
  8522. height: math.unit(15, "feet"),
  8523. default: true
  8524. },
  8525. {
  8526. name: "Macro",
  8527. height: math.unit(2500, "feet")
  8528. }
  8529. ]
  8530. ))
  8531. characterMakers.push(() => makeCharacter(
  8532. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  8533. {
  8534. front: {
  8535. height: math.unit(5 + 8 / 12, "feet"),
  8536. weight: math.unit(130, "lbs"),
  8537. name: "Front",
  8538. image: {
  8539. source: "./media/characters/corvin/front.svg",
  8540. extra: 1803 / 1629
  8541. }
  8542. },
  8543. frontShirt: {
  8544. height: math.unit(5 + 8 / 12, "feet"),
  8545. weight: math.unit(130, "lbs"),
  8546. name: "Front (Shirt)",
  8547. image: {
  8548. source: "./media/characters/corvin/front-shirt.svg",
  8549. extra: 1803 / 1629
  8550. }
  8551. },
  8552. frontPoncho: {
  8553. height: math.unit(5 + 8 / 12, "feet"),
  8554. weight: math.unit(130, "lbs"),
  8555. name: "Front (Poncho)",
  8556. image: {
  8557. source: "./media/characters/corvin/front-poncho.svg",
  8558. extra: 1803 / 1629
  8559. }
  8560. },
  8561. side: {
  8562. height: math.unit(5 + 8 / 12, "feet"),
  8563. weight: math.unit(130, "lbs"),
  8564. name: "Side",
  8565. image: {
  8566. source: "./media/characters/corvin/side.svg",
  8567. extra: 1012 / 945
  8568. }
  8569. },
  8570. back: {
  8571. height: math.unit(5 + 8 / 12, "feet"),
  8572. weight: math.unit(130, "lbs"),
  8573. name: "Back",
  8574. image: {
  8575. source: "./media/characters/corvin/back.svg",
  8576. extra: 1803 / 1629
  8577. }
  8578. },
  8579. },
  8580. [
  8581. {
  8582. name: "Micro",
  8583. height: math.unit(3, "inches")
  8584. },
  8585. {
  8586. name: "Normal",
  8587. height: math.unit(5 + 8 / 12, "feet")
  8588. },
  8589. {
  8590. name: "Macro",
  8591. height: math.unit(300, "feet"),
  8592. default: true
  8593. },
  8594. {
  8595. name: "Megamacro",
  8596. height: math.unit(500, "miles")
  8597. }
  8598. ]
  8599. ))
  8600. characterMakers.push(() => makeCharacter(
  8601. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  8602. {
  8603. front: {
  8604. height: math.unit(6, "feet"),
  8605. weight: math.unit(135, "lbs"),
  8606. name: "Front",
  8607. image: {
  8608. source: "./media/characters/q/front.svg",
  8609. extra: 854 / 752,
  8610. bottom: 0.005
  8611. }
  8612. },
  8613. back: {
  8614. height: math.unit(6, "feet"),
  8615. weight: math.unit(130, "lbs"),
  8616. name: "Back",
  8617. image: {
  8618. source: "./media/characters/q/back.svg",
  8619. extra: 854 / 752
  8620. }
  8621. },
  8622. },
  8623. [
  8624. {
  8625. name: "Macro",
  8626. height: math.unit(90, "feet"),
  8627. default: true
  8628. },
  8629. {
  8630. name: "Extra Macro",
  8631. height: math.unit(300, "feet"),
  8632. },
  8633. {
  8634. name: "BIG WALF",
  8635. height: math.unit(750, "feet"),
  8636. },
  8637. ]
  8638. ))
  8639. characterMakers.push(() => makeCharacter(
  8640. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  8641. {
  8642. front: {
  8643. height: math.unit(6, "feet"),
  8644. weight: math.unit(150, "lbs"),
  8645. name: "Front",
  8646. image: {
  8647. source: "./media/characters/carley/front.svg",
  8648. extra: 3927 / 3540,
  8649. bottom: 29.2 / 735
  8650. }
  8651. }
  8652. },
  8653. [
  8654. {
  8655. name: "Normal",
  8656. height: math.unit(6 + 3 / 12, "feet")
  8657. },
  8658. {
  8659. name: "Macro",
  8660. height: math.unit(185, "feet"),
  8661. default: true
  8662. },
  8663. {
  8664. name: "Megamacro",
  8665. height: math.unit(8, "miles"),
  8666. },
  8667. ]
  8668. ))
  8669. characterMakers.push(() => makeCharacter(
  8670. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  8671. {
  8672. front: {
  8673. height: math.unit(3, "feet"),
  8674. weight: math.unit(28, "lbs"),
  8675. name: "Front",
  8676. image: {
  8677. source: "./media/characters/citrine/front.svg"
  8678. }
  8679. }
  8680. },
  8681. [
  8682. {
  8683. name: "Normal",
  8684. height: math.unit(3, "feet"),
  8685. default: true
  8686. }
  8687. ]
  8688. ))
  8689. characterMakers.push(() => makeCharacter(
  8690. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  8691. {
  8692. front: {
  8693. height: math.unit(14, "feet"),
  8694. weight: math.unit(1450, "kg"),
  8695. capacity: math.unit(15, "people"),
  8696. name: "Front",
  8697. image: {
  8698. source: "./media/characters/aura-starwind/front.svg",
  8699. extra: 1440/1327,
  8700. bottom: 11/1451
  8701. }
  8702. },
  8703. side: {
  8704. height: math.unit(14, "feet"),
  8705. weight: math.unit(1450, "kg"),
  8706. capacity: math.unit(15, "people"),
  8707. name: "Side",
  8708. image: {
  8709. source: "./media/characters/aura-starwind/side.svg",
  8710. extra: 1654 / 1497
  8711. }
  8712. },
  8713. taur: {
  8714. height: math.unit(18, "feet"),
  8715. weight: math.unit(5500, "kg"),
  8716. capacity: math.unit(50, "people"),
  8717. name: "Taur",
  8718. image: {
  8719. source: "./media/characters/aura-starwind/taur.svg",
  8720. extra: 1760 / 1650
  8721. }
  8722. },
  8723. feral: {
  8724. height: math.unit(46, "feet"),
  8725. weight: math.unit(25000, "kg"),
  8726. capacity: math.unit(120, "people"),
  8727. name: "Feral",
  8728. image: {
  8729. source: "./media/characters/aura-starwind/feral.svg"
  8730. }
  8731. },
  8732. },
  8733. [
  8734. {
  8735. name: "Normal",
  8736. height: math.unit(14, "feet"),
  8737. default: true
  8738. },
  8739. {
  8740. name: "Macro",
  8741. height: math.unit(50, "meters")
  8742. },
  8743. {
  8744. name: "Megamacro",
  8745. height: math.unit(5000, "meters")
  8746. },
  8747. {
  8748. name: "Gigamacro",
  8749. height: math.unit(100000, "kilometers")
  8750. },
  8751. ]
  8752. ))
  8753. characterMakers.push(() => makeCharacter(
  8754. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  8755. {
  8756. front: {
  8757. height: math.unit(2 + 7 / 12, "feet"),
  8758. weight: math.unit(32, "lbs"),
  8759. name: "Front",
  8760. image: {
  8761. source: "./media/characters/rivet/front.svg",
  8762. extra: 1716 / 1658,
  8763. bottom: 0.03
  8764. }
  8765. },
  8766. foot: {
  8767. height: math.unit(0.551, "feet"),
  8768. name: "Rivet's Foot",
  8769. image: {
  8770. source: "./media/characters/rivet/foot.svg"
  8771. },
  8772. rename: true
  8773. }
  8774. },
  8775. [
  8776. {
  8777. name: "Micro",
  8778. height: math.unit(1.5, "inches"),
  8779. },
  8780. {
  8781. name: "Normal",
  8782. height: math.unit(2 + 7 / 12, "feet"),
  8783. default: true
  8784. },
  8785. {
  8786. name: "Macro",
  8787. height: math.unit(85, "feet")
  8788. },
  8789. {
  8790. name: "Megamacro",
  8791. height: math.unit(2.2, "km")
  8792. }
  8793. ]
  8794. ))
  8795. characterMakers.push(() => makeCharacter(
  8796. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  8797. {
  8798. front: {
  8799. height: math.unit(5 + 9 / 12, "feet"),
  8800. weight: math.unit(150, "lbs"),
  8801. name: "Front",
  8802. image: {
  8803. source: "./media/characters/coffee/front.svg",
  8804. extra: 3666 / 3032,
  8805. bottom: 0.04
  8806. }
  8807. },
  8808. foot: {
  8809. height: math.unit(1.29, "feet"),
  8810. name: "Foot",
  8811. image: {
  8812. source: "./media/characters/coffee/foot.svg"
  8813. }
  8814. },
  8815. },
  8816. [
  8817. {
  8818. name: "Micro",
  8819. height: math.unit(2, "inches"),
  8820. },
  8821. {
  8822. name: "Normal",
  8823. height: math.unit(5 + 9 / 12, "feet"),
  8824. default: true
  8825. },
  8826. {
  8827. name: "Macro",
  8828. height: math.unit(800, "feet")
  8829. },
  8830. {
  8831. name: "Megamacro",
  8832. height: math.unit(25, "miles")
  8833. }
  8834. ]
  8835. ))
  8836. characterMakers.push(() => makeCharacter(
  8837. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  8838. {
  8839. front: {
  8840. height: math.unit(6, "feet"),
  8841. weight: math.unit(200, "lbs"),
  8842. name: "Front",
  8843. image: {
  8844. source: "./media/characters/chari-gal/front.svg",
  8845. extra: 1568 / 1385,
  8846. bottom: 0.047
  8847. }
  8848. },
  8849. gigantamax: {
  8850. height: math.unit(6 * 16, "feet"),
  8851. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  8852. name: "Gigantamax",
  8853. image: {
  8854. source: "./media/characters/chari-gal/gigantamax.svg",
  8855. extra: 1124 / 888,
  8856. bottom: 0.03
  8857. }
  8858. },
  8859. },
  8860. [
  8861. {
  8862. name: "Normal",
  8863. height: math.unit(5 + 7 / 12, "feet")
  8864. },
  8865. {
  8866. name: "Macro",
  8867. height: math.unit(200, "feet"),
  8868. default: true
  8869. }
  8870. ]
  8871. ))
  8872. characterMakers.push(() => makeCharacter(
  8873. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  8874. {
  8875. front: {
  8876. height: math.unit(6, "feet"),
  8877. weight: math.unit(150, "lbs"),
  8878. name: "Front",
  8879. image: {
  8880. source: "./media/characters/nova/front.svg",
  8881. extra: 5000 / 4722,
  8882. bottom: 0.02
  8883. }
  8884. }
  8885. },
  8886. [
  8887. {
  8888. name: "Micro-",
  8889. height: math.unit(0.8, "inches")
  8890. },
  8891. {
  8892. name: "Micro",
  8893. height: math.unit(2, "inches"),
  8894. default: true
  8895. },
  8896. ]
  8897. ))
  8898. characterMakers.push(() => makeCharacter(
  8899. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  8900. {
  8901. front: {
  8902. height: math.unit(3 + 1 / 12, "feet"),
  8903. weight: math.unit(21.7, "lbs"),
  8904. name: "Front",
  8905. image: {
  8906. source: "./media/characters/argent/front.svg",
  8907. extra: 1471 / 1331,
  8908. bottom: 100.8 / 1575.5
  8909. }
  8910. }
  8911. },
  8912. [
  8913. {
  8914. name: "Micro",
  8915. height: math.unit(2, "inches")
  8916. },
  8917. {
  8918. name: "Normal",
  8919. height: math.unit(3 + 1 / 12, "feet"),
  8920. default: true
  8921. },
  8922. {
  8923. name: "Macro",
  8924. height: math.unit(120, "feet")
  8925. },
  8926. ]
  8927. ))
  8928. characterMakers.push(() => makeCharacter(
  8929. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  8930. {
  8931. lamp: {
  8932. height: math.unit(7 * 1559 / 989, "feet"),
  8933. name: "Magic Lamp",
  8934. image: {
  8935. source: "./media/characters/mira-al-cul/lamp.svg",
  8936. extra: 1617 / 1559
  8937. }
  8938. },
  8939. front: {
  8940. height: math.unit(7, "feet"),
  8941. name: "Front",
  8942. image: {
  8943. source: "./media/characters/mira-al-cul/front.svg",
  8944. extra: 1044 / 990
  8945. }
  8946. },
  8947. },
  8948. [
  8949. {
  8950. name: "Heavily Restricted",
  8951. height: math.unit(7 * 1559 / 989, "feet")
  8952. },
  8953. {
  8954. name: "Freshly Freed",
  8955. height: math.unit(50 * 1559 / 989, "feet")
  8956. },
  8957. {
  8958. name: "World Encompassing",
  8959. height: math.unit(10000 * 1559 / 989, "miles")
  8960. },
  8961. {
  8962. name: "Galactic",
  8963. height: math.unit(1.433 * 1559 / 989, "zettameters")
  8964. },
  8965. {
  8966. name: "Palmed Universe",
  8967. height: math.unit(6000 * 1559 / 989, "yottameters"),
  8968. default: true
  8969. },
  8970. {
  8971. name: "Multiversal Matriarch",
  8972. height: math.unit(8.87e10, "yottameters")
  8973. },
  8974. {
  8975. name: "Void Mother",
  8976. height: math.unit(3.14e110, "yottaparsecs")
  8977. },
  8978. {
  8979. name: "Toying with Transcendence",
  8980. height: math.unit(1e307, "meters")
  8981. },
  8982. ]
  8983. ))
  8984. characterMakers.push(() => makeCharacter(
  8985. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  8986. {
  8987. front: {
  8988. height: math.unit(17 + 1 / 12, "feet"),
  8989. weight: math.unit(476.2 * 5, "lbs"),
  8990. name: "Front",
  8991. image: {
  8992. source: "./media/characters/kuro-shi-uchū/front.svg",
  8993. extra: 2329 / 1835,
  8994. bottom: 0.02
  8995. }
  8996. },
  8997. },
  8998. [
  8999. {
  9000. name: "Micro",
  9001. height: math.unit(2, "inches")
  9002. },
  9003. {
  9004. name: "Normal",
  9005. height: math.unit(12, "meters")
  9006. },
  9007. {
  9008. name: "Planetary",
  9009. height: math.unit(0.00929, "AU"),
  9010. default: true
  9011. },
  9012. {
  9013. name: "Universal",
  9014. height: math.unit(20, "gigaparsecs")
  9015. },
  9016. ]
  9017. ))
  9018. characterMakers.push(() => makeCharacter(
  9019. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  9020. {
  9021. front: {
  9022. height: math.unit(5 + 2 / 12, "feet"),
  9023. weight: math.unit(120, "lbs"),
  9024. name: "Front",
  9025. image: {
  9026. source: "./media/characters/katherine/front.svg",
  9027. extra: 2075 / 1969
  9028. }
  9029. },
  9030. dress: {
  9031. height: math.unit(5 + 2 / 12, "feet"),
  9032. weight: math.unit(120, "lbs"),
  9033. name: "Dress",
  9034. image: {
  9035. source: "./media/characters/katherine/dress.svg",
  9036. extra: 2258 / 2064
  9037. }
  9038. },
  9039. },
  9040. [
  9041. {
  9042. name: "Micro",
  9043. height: math.unit(1, "inches"),
  9044. default: true
  9045. },
  9046. {
  9047. name: "Normal",
  9048. height: math.unit(5 + 2 / 12, "feet")
  9049. },
  9050. {
  9051. name: "Macro",
  9052. height: math.unit(100, "meters")
  9053. },
  9054. {
  9055. name: "Megamacro",
  9056. height: math.unit(80, "miles")
  9057. },
  9058. ]
  9059. ))
  9060. characterMakers.push(() => makeCharacter(
  9061. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  9062. {
  9063. front: {
  9064. height: math.unit(7 + 8 / 12, "feet"),
  9065. weight: math.unit(250, "lbs"),
  9066. name: "Front",
  9067. image: {
  9068. source: "./media/characters/yevis/front.svg",
  9069. extra: 1938 / 1755
  9070. }
  9071. }
  9072. },
  9073. [
  9074. {
  9075. name: "Mortal",
  9076. height: math.unit(7 + 8 / 12, "feet")
  9077. },
  9078. {
  9079. name: "Battle",
  9080. height: math.unit(25 + 11 / 12, "feet")
  9081. },
  9082. {
  9083. name: "Wrath",
  9084. height: math.unit(1654 + 11 / 12, "feet")
  9085. },
  9086. {
  9087. name: "Planet Destroyer",
  9088. height: math.unit(12000, "miles")
  9089. },
  9090. {
  9091. name: "Galaxy Conqueror",
  9092. height: math.unit(1.45, "zettameters"),
  9093. default: true
  9094. },
  9095. {
  9096. name: "Universal War",
  9097. height: math.unit(184, "gigaparsecs")
  9098. },
  9099. {
  9100. name: "Eternity War",
  9101. height: math.unit(1.98e55, "yottaparsecs")
  9102. },
  9103. ]
  9104. ))
  9105. characterMakers.push(() => makeCharacter(
  9106. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  9107. {
  9108. front: {
  9109. height: math.unit(5 + 8 / 12, "feet"),
  9110. weight: math.unit(63, "kg"),
  9111. name: "Front",
  9112. image: {
  9113. source: "./media/characters/xavier/front.svg",
  9114. extra: 944 / 883
  9115. }
  9116. },
  9117. frontStretch: {
  9118. height: math.unit(5 + 8 / 12, "feet"),
  9119. weight: math.unit(63, "kg"),
  9120. name: "Stretching",
  9121. image: {
  9122. source: "./media/characters/xavier/front-stretch.svg",
  9123. extra: 962 / 820
  9124. }
  9125. },
  9126. },
  9127. [
  9128. {
  9129. name: "Normal",
  9130. height: math.unit(5 + 8 / 12, "feet")
  9131. },
  9132. {
  9133. name: "Macro",
  9134. height: math.unit(100, "meters"),
  9135. default: true
  9136. },
  9137. {
  9138. name: "McLargeHuge",
  9139. height: math.unit(10, "miles")
  9140. },
  9141. ]
  9142. ))
  9143. characterMakers.push(() => makeCharacter(
  9144. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  9145. {
  9146. front: {
  9147. height: math.unit(5 + 5 / 12, "feet"),
  9148. weight: math.unit(150, "lb"),
  9149. name: "Front",
  9150. image: {
  9151. source: "./media/characters/joshii/front.svg",
  9152. extra: 765 / 653,
  9153. bottom: 51 / 816
  9154. }
  9155. },
  9156. foot: {
  9157. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  9158. name: "Foot",
  9159. image: {
  9160. source: "./media/characters/joshii/foot.svg"
  9161. }
  9162. },
  9163. },
  9164. [
  9165. {
  9166. name: "Micro",
  9167. height: math.unit(2, "inches"),
  9168. default: true
  9169. },
  9170. {
  9171. name: "Normal",
  9172. height: math.unit(5 + 5 / 12, "feet")
  9173. },
  9174. {
  9175. name: "Macro",
  9176. height: math.unit(785, "feet")
  9177. },
  9178. {
  9179. name: "Megamacro",
  9180. height: math.unit(24.5, "miles")
  9181. },
  9182. ]
  9183. ))
  9184. characterMakers.push(() => makeCharacter(
  9185. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  9186. {
  9187. front: {
  9188. height: math.unit(6, "feet"),
  9189. weight: math.unit(150, "lb"),
  9190. name: "Front",
  9191. image: {
  9192. source: "./media/characters/goddess-elizabeth/front.svg",
  9193. extra: 1800 / 1525,
  9194. bottom: 0.005
  9195. }
  9196. },
  9197. foot: {
  9198. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  9199. name: "Foot",
  9200. image: {
  9201. source: "./media/characters/goddess-elizabeth/foot.svg"
  9202. }
  9203. },
  9204. mouth: {
  9205. height: math.unit(6, "feet"),
  9206. name: "Mouth",
  9207. image: {
  9208. source: "./media/characters/goddess-elizabeth/mouth.svg"
  9209. }
  9210. },
  9211. },
  9212. [
  9213. {
  9214. name: "Micro",
  9215. height: math.unit(12, "feet")
  9216. },
  9217. {
  9218. name: "Normal",
  9219. height: math.unit(80, "miles"),
  9220. default: true
  9221. },
  9222. {
  9223. name: "Macro",
  9224. height: math.unit(15000, "parsecs")
  9225. },
  9226. ]
  9227. ))
  9228. characterMakers.push(() => makeCharacter(
  9229. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  9230. {
  9231. front: {
  9232. height: math.unit(5 + 9 / 12, "feet"),
  9233. weight: math.unit(144, "lb"),
  9234. name: "Front",
  9235. image: {
  9236. source: "./media/characters/kara/front.svg"
  9237. }
  9238. },
  9239. feet: {
  9240. height: math.unit(6 / 6.765, "feet"),
  9241. name: "Kara's Feet",
  9242. rename: true,
  9243. image: {
  9244. source: "./media/characters/kara/feet.svg"
  9245. }
  9246. },
  9247. },
  9248. [
  9249. {
  9250. name: "Normal",
  9251. height: math.unit(5 + 9 / 12, "feet")
  9252. },
  9253. {
  9254. name: "Macro",
  9255. height: math.unit(174, "feet"),
  9256. default: true
  9257. },
  9258. ]
  9259. ))
  9260. characterMakers.push(() => makeCharacter(
  9261. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  9262. {
  9263. front: {
  9264. height: math.unit(18, "feet"),
  9265. weight: math.unit(4050, "lb"),
  9266. name: "Front",
  9267. image: {
  9268. source: "./media/characters/tyrone/front.svg",
  9269. extra: 2405 / 2270,
  9270. bottom: 182 / 2587
  9271. }
  9272. },
  9273. },
  9274. [
  9275. {
  9276. name: "Normal",
  9277. height: math.unit(18, "feet"),
  9278. default: true
  9279. },
  9280. {
  9281. name: "Macro",
  9282. height: math.unit(300, "feet")
  9283. },
  9284. {
  9285. name: "Megamacro",
  9286. height: math.unit(15, "km")
  9287. },
  9288. {
  9289. name: "Gigamacro",
  9290. height: math.unit(500, "km")
  9291. },
  9292. {
  9293. name: "Teramacro",
  9294. height: math.unit(0.5, "gigameters")
  9295. },
  9296. {
  9297. name: "Omnimacro",
  9298. height: math.unit(1e252, "yottauniverse")
  9299. },
  9300. ]
  9301. ))
  9302. characterMakers.push(() => makeCharacter(
  9303. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  9304. {
  9305. front: {
  9306. height: math.unit(7 + 8 / 12, "feet"),
  9307. weight: math.unit(120, "lb"),
  9308. name: "Front",
  9309. image: {
  9310. source: "./media/characters/danny/front.svg",
  9311. extra: 1490 / 1350
  9312. }
  9313. },
  9314. back: {
  9315. height: math.unit(7 + 8 / 12, "feet"),
  9316. weight: math.unit(120, "lb"),
  9317. name: "Back",
  9318. image: {
  9319. source: "./media/characters/danny/back.svg",
  9320. extra: 1490 / 1350
  9321. }
  9322. },
  9323. },
  9324. [
  9325. {
  9326. name: "Normal",
  9327. height: math.unit(7 + 8 / 12, "feet"),
  9328. default: true
  9329. },
  9330. ]
  9331. ))
  9332. characterMakers.push(() => makeCharacter(
  9333. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  9334. {
  9335. front: {
  9336. height: math.unit(3.5, "inches"),
  9337. weight: math.unit(19, "grams"),
  9338. name: "Front",
  9339. image: {
  9340. source: "./media/characters/mallow/front.svg",
  9341. extra: 471 / 431
  9342. }
  9343. },
  9344. back: {
  9345. height: math.unit(3.5, "inches"),
  9346. weight: math.unit(19, "grams"),
  9347. name: "Back",
  9348. image: {
  9349. source: "./media/characters/mallow/back.svg",
  9350. extra: 471 / 431
  9351. }
  9352. },
  9353. },
  9354. [
  9355. {
  9356. name: "Normal",
  9357. height: math.unit(3.5, "inches"),
  9358. default: true
  9359. },
  9360. ]
  9361. ))
  9362. characterMakers.push(() => makeCharacter(
  9363. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  9364. {
  9365. front: {
  9366. height: math.unit(9, "feet"),
  9367. weight: math.unit(230, "kg"),
  9368. name: "Front",
  9369. image: {
  9370. source: "./media/characters/starry-aqua/front.svg"
  9371. }
  9372. },
  9373. back: {
  9374. height: math.unit(9, "feet"),
  9375. weight: math.unit(230, "kg"),
  9376. name: "Back",
  9377. image: {
  9378. source: "./media/characters/starry-aqua/back.svg"
  9379. }
  9380. },
  9381. hand: {
  9382. height: math.unit(9 * 0.1168, "feet"),
  9383. name: "Hand",
  9384. image: {
  9385. source: "./media/characters/starry-aqua/hand.svg"
  9386. }
  9387. },
  9388. foot: {
  9389. height: math.unit(9 * 0.18, "feet"),
  9390. name: "Foot",
  9391. image: {
  9392. source: "./media/characters/starry-aqua/foot.svg"
  9393. }
  9394. }
  9395. },
  9396. [
  9397. {
  9398. name: "Micro",
  9399. height: math.unit(3, "inches")
  9400. },
  9401. {
  9402. name: "Normal",
  9403. height: math.unit(9, "feet")
  9404. },
  9405. {
  9406. name: "Macro",
  9407. height: math.unit(300, "feet"),
  9408. default: true
  9409. },
  9410. {
  9411. name: "Megamacro",
  9412. height: math.unit(3200, "feet")
  9413. }
  9414. ]
  9415. ))
  9416. characterMakers.push(() => makeCharacter(
  9417. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  9418. {
  9419. front: {
  9420. height: math.unit(15, "feet"),
  9421. weight: math.unit(5026, "lb"),
  9422. name: "Front",
  9423. image: {
  9424. source: "./media/characters/luka-towers/front.svg",
  9425. extra: 1269/1133,
  9426. bottom: 51/1320
  9427. }
  9428. },
  9429. },
  9430. [
  9431. {
  9432. name: "Normal",
  9433. height: math.unit(15, "feet"),
  9434. default: true
  9435. },
  9436. {
  9437. name: "Minimacro",
  9438. height: math.unit(25, "feet")
  9439. },
  9440. {
  9441. name: "Macro",
  9442. height: math.unit(320, "feet")
  9443. },
  9444. {
  9445. name: "Megamacro",
  9446. height: math.unit(35000, "feet")
  9447. },
  9448. {
  9449. name: "Gigamacro",
  9450. height: math.unit(4000, "miles")
  9451. },
  9452. {
  9453. name: "Teramacro",
  9454. height: math.unit(15000, "miles")
  9455. },
  9456. ]
  9457. ))
  9458. characterMakers.push(() => makeCharacter(
  9459. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  9460. {
  9461. front: {
  9462. height: math.unit(6, "feet"),
  9463. weight: math.unit(150, "lb"),
  9464. name: "Front",
  9465. image: {
  9466. source: "./media/characters/natalie-nightring/front.svg",
  9467. extra: 1,
  9468. bottom: 0.06
  9469. }
  9470. },
  9471. },
  9472. [
  9473. {
  9474. name: "Uh Oh",
  9475. height: math.unit(0.1, "mm")
  9476. },
  9477. {
  9478. name: "Small",
  9479. height: math.unit(3, "inches")
  9480. },
  9481. {
  9482. name: "Human Scale",
  9483. height: math.unit(6, "feet")
  9484. },
  9485. {
  9486. name: "Librarian",
  9487. height: math.unit(50, "feet"),
  9488. default: true
  9489. },
  9490. {
  9491. name: "Immense",
  9492. height: math.unit(200, "miles")
  9493. },
  9494. ]
  9495. ))
  9496. characterMakers.push(() => makeCharacter(
  9497. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  9498. {
  9499. front: {
  9500. height: math.unit(6, "feet"),
  9501. weight: math.unit(180, "lbs"),
  9502. name: "Front",
  9503. image: {
  9504. source: "./media/characters/danni-rosie/front.svg",
  9505. extra: 1260 / 1128,
  9506. bottom: 0.022
  9507. }
  9508. },
  9509. },
  9510. [
  9511. {
  9512. name: "Micro",
  9513. height: math.unit(2, "inches"),
  9514. default: true
  9515. },
  9516. ]
  9517. ))
  9518. characterMakers.push(() => makeCharacter(
  9519. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  9520. {
  9521. front: {
  9522. height: math.unit(5 + 9 / 12, "feet"),
  9523. weight: math.unit(220, "lb"),
  9524. name: "Front",
  9525. image: {
  9526. source: "./media/characters/samantha-kruse/front.svg",
  9527. extra: (985 / 935),
  9528. bottom: 0.03
  9529. }
  9530. },
  9531. frontUndressed: {
  9532. height: math.unit(5 + 9 / 12, "feet"),
  9533. weight: math.unit(220, "lb"),
  9534. name: "Front (Undressed)",
  9535. image: {
  9536. source: "./media/characters/samantha-kruse/front-undressed.svg",
  9537. extra: (973 / 923),
  9538. bottom: 0.025
  9539. }
  9540. },
  9541. fat: {
  9542. height: math.unit(5 + 9 / 12, "feet"),
  9543. weight: math.unit(900, "lb"),
  9544. name: "Front (Fat)",
  9545. image: {
  9546. source: "./media/characters/samantha-kruse/fat.svg",
  9547. extra: 2688 / 2561
  9548. }
  9549. },
  9550. },
  9551. [
  9552. {
  9553. name: "Normal",
  9554. height: math.unit(5 + 9 / 12, "feet"),
  9555. default: true
  9556. }
  9557. ]
  9558. ))
  9559. characterMakers.push(() => makeCharacter(
  9560. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  9561. {
  9562. back: {
  9563. height: math.unit(5 + 4 / 12, "feet"),
  9564. weight: math.unit(4963, "lb"),
  9565. name: "Back",
  9566. image: {
  9567. source: "./media/characters/amelia-rosie/back.svg",
  9568. extra: 1113 / 963,
  9569. bottom: 0.01
  9570. }
  9571. },
  9572. },
  9573. [
  9574. {
  9575. name: "Level 0",
  9576. height: math.unit(5 + 4 / 12, "feet")
  9577. },
  9578. {
  9579. name: "Level 1",
  9580. height: math.unit(164597, "feet"),
  9581. default: true
  9582. },
  9583. {
  9584. name: "Level 2",
  9585. height: math.unit(956243, "miles")
  9586. },
  9587. {
  9588. name: "Level 3",
  9589. height: math.unit(29421709423, "miles")
  9590. },
  9591. {
  9592. name: "Level 4",
  9593. height: math.unit(154, "lightyears")
  9594. },
  9595. {
  9596. name: "Level 5",
  9597. height: math.unit(4738272, "lightyears")
  9598. },
  9599. {
  9600. name: "Level 6",
  9601. height: math.unit(145787152896, "lightyears")
  9602. },
  9603. ]
  9604. ))
  9605. characterMakers.push(() => makeCharacter(
  9606. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  9607. {
  9608. front: {
  9609. height: math.unit(5 + 11 / 12, "feet"),
  9610. weight: math.unit(65, "kg"),
  9611. name: "Front",
  9612. image: {
  9613. source: "./media/characters/rook-kitara/front.svg",
  9614. extra: 1347 / 1274,
  9615. bottom: 0.005
  9616. }
  9617. },
  9618. },
  9619. [
  9620. {
  9621. name: "Totally Unfair",
  9622. height: math.unit(1.8, "mm")
  9623. },
  9624. {
  9625. name: "Lap Rookie",
  9626. height: math.unit(1.4, "feet")
  9627. },
  9628. {
  9629. name: "Normal",
  9630. height: math.unit(5 + 11 / 12, "feet"),
  9631. default: true
  9632. },
  9633. {
  9634. name: "How Did This Happen",
  9635. height: math.unit(80, "miles")
  9636. }
  9637. ]
  9638. ))
  9639. characterMakers.push(() => makeCharacter(
  9640. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  9641. {
  9642. front: {
  9643. height: math.unit(7, "feet"),
  9644. weight: math.unit(300, "lb"),
  9645. name: "Front",
  9646. image: {
  9647. source: "./media/characters/pisces/front.svg",
  9648. extra: 2255 / 2115,
  9649. bottom: 0.03
  9650. }
  9651. },
  9652. back: {
  9653. height: math.unit(7, "feet"),
  9654. weight: math.unit(300, "lb"),
  9655. name: "Back",
  9656. image: {
  9657. source: "./media/characters/pisces/back.svg",
  9658. extra: 2146 / 2055,
  9659. bottom: 0.04
  9660. }
  9661. },
  9662. },
  9663. [
  9664. {
  9665. name: "Normal",
  9666. height: math.unit(7, "feet"),
  9667. default: true
  9668. },
  9669. {
  9670. name: "Swimming Pool",
  9671. height: math.unit(12.2, "meters")
  9672. },
  9673. {
  9674. name: "Olympic Swimming Pool",
  9675. height: math.unit(56.3, "meters")
  9676. },
  9677. {
  9678. name: "Lake Superior",
  9679. height: math.unit(93900, "meters")
  9680. },
  9681. {
  9682. name: "Mediterranean Sea",
  9683. height: math.unit(644457, "meters")
  9684. },
  9685. {
  9686. name: "World's Oceans",
  9687. height: math.unit(4567491, "meters")
  9688. },
  9689. ]
  9690. ))
  9691. characterMakers.push(() => makeCharacter(
  9692. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  9693. {
  9694. front: {
  9695. height: math.unit(2.3, "meters"),
  9696. weight: math.unit(120, "kg"),
  9697. name: "Front",
  9698. image: {
  9699. source: "./media/characters/zelas/front.svg"
  9700. }
  9701. },
  9702. side: {
  9703. height: math.unit(2.3, "meters"),
  9704. weight: math.unit(120, "kg"),
  9705. name: "Side",
  9706. image: {
  9707. source: "./media/characters/zelas/side.svg"
  9708. }
  9709. },
  9710. back: {
  9711. height: math.unit(2.3, "meters"),
  9712. weight: math.unit(120, "kg"),
  9713. name: "Back",
  9714. image: {
  9715. source: "./media/characters/zelas/back.svg"
  9716. }
  9717. },
  9718. foot: {
  9719. height: math.unit(1.116, "feet"),
  9720. name: "Foot",
  9721. image: {
  9722. source: "./media/characters/zelas/foot.svg"
  9723. }
  9724. },
  9725. },
  9726. [
  9727. {
  9728. name: "Normal",
  9729. height: math.unit(2.3, "meters")
  9730. },
  9731. {
  9732. name: "Macro",
  9733. height: math.unit(30, "meters"),
  9734. default: true
  9735. },
  9736. ]
  9737. ))
  9738. characterMakers.push(() => makeCharacter(
  9739. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  9740. {
  9741. front: {
  9742. height: math.unit(1, "inch"),
  9743. weight: math.unit(0.21, "grams"),
  9744. name: "Front",
  9745. image: {
  9746. source: "./media/characters/talbot/front.svg",
  9747. extra: 594 / 544
  9748. }
  9749. },
  9750. },
  9751. [
  9752. {
  9753. name: "Micro",
  9754. height: math.unit(1, "inch"),
  9755. default: true
  9756. },
  9757. ]
  9758. ))
  9759. characterMakers.push(() => makeCharacter(
  9760. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  9761. {
  9762. front: {
  9763. height: math.unit(3 + 3 / 12, "feet"),
  9764. weight: math.unit(51.8, "lb"),
  9765. name: "Front",
  9766. image: {
  9767. source: "./media/characters/fliss/front.svg",
  9768. extra: 840 / 640
  9769. }
  9770. },
  9771. },
  9772. [
  9773. {
  9774. name: "Teeny Tiny",
  9775. height: math.unit(1, "mm")
  9776. },
  9777. {
  9778. name: "Small",
  9779. height: math.unit(1, "inch"),
  9780. default: true
  9781. },
  9782. {
  9783. name: "Standard Sylveon",
  9784. height: math.unit(3 + 3 / 12, "feet")
  9785. },
  9786. {
  9787. name: "Large Nuisance",
  9788. height: math.unit(33, "feet")
  9789. },
  9790. {
  9791. name: "City Filler",
  9792. height: math.unit(3000, "feet")
  9793. },
  9794. {
  9795. name: "New Horizon",
  9796. height: math.unit(6000, "miles")
  9797. },
  9798. ]
  9799. ))
  9800. characterMakers.push(() => makeCharacter(
  9801. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  9802. {
  9803. front: {
  9804. height: math.unit(5, "cm"),
  9805. weight: math.unit(1.94, "g"),
  9806. name: "Front",
  9807. image: {
  9808. source: "./media/characters/fleta/front.svg",
  9809. extra: 835 / 803
  9810. }
  9811. },
  9812. back: {
  9813. height: math.unit(5, "cm"),
  9814. weight: math.unit(1.94, "g"),
  9815. name: "Back",
  9816. image: {
  9817. source: "./media/characters/fleta/back.svg",
  9818. extra: 835 / 803
  9819. }
  9820. },
  9821. },
  9822. [
  9823. {
  9824. name: "Micro",
  9825. height: math.unit(5, "cm"),
  9826. default: true
  9827. },
  9828. ]
  9829. ))
  9830. characterMakers.push(() => makeCharacter(
  9831. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  9832. {
  9833. front: {
  9834. height: math.unit(6, "feet"),
  9835. weight: math.unit(225, "lb"),
  9836. name: "Front",
  9837. image: {
  9838. source: "./media/characters/dominic/front.svg",
  9839. extra: 1770 / 1620,
  9840. bottom: 0.025
  9841. }
  9842. },
  9843. back: {
  9844. height: math.unit(6, "feet"),
  9845. weight: math.unit(225, "lb"),
  9846. name: "Back",
  9847. image: {
  9848. source: "./media/characters/dominic/back.svg",
  9849. extra: 1745 / 1620,
  9850. bottom: 0.065
  9851. }
  9852. },
  9853. },
  9854. [
  9855. {
  9856. name: "Nano",
  9857. height: math.unit(0.1, "mm")
  9858. },
  9859. {
  9860. name: "Micro-",
  9861. height: math.unit(1, "mm")
  9862. },
  9863. {
  9864. name: "Micro",
  9865. height: math.unit(4, "inches")
  9866. },
  9867. {
  9868. name: "Normal",
  9869. height: math.unit(6 + 4 / 12, "feet"),
  9870. default: true
  9871. },
  9872. {
  9873. name: "Macro",
  9874. height: math.unit(115, "feet")
  9875. },
  9876. {
  9877. name: "Macro+",
  9878. height: math.unit(955, "feet")
  9879. },
  9880. {
  9881. name: "Megamacro",
  9882. height: math.unit(8990, "feet")
  9883. },
  9884. {
  9885. name: "Gigmacro",
  9886. height: math.unit(9310, "miles")
  9887. },
  9888. {
  9889. name: "Teramacro",
  9890. height: math.unit(1567005010, "miles")
  9891. },
  9892. {
  9893. name: "Examacro",
  9894. height: math.unit(1425, "parsecs")
  9895. },
  9896. ]
  9897. ))
  9898. characterMakers.push(() => makeCharacter(
  9899. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  9900. {
  9901. front: {
  9902. height: math.unit(400, "feet"),
  9903. weight: math.unit(44444444, "lb"),
  9904. name: "Front",
  9905. image: {
  9906. source: "./media/characters/major-colonel/front.svg"
  9907. }
  9908. },
  9909. back: {
  9910. height: math.unit(400, "feet"),
  9911. weight: math.unit(44444444, "lb"),
  9912. name: "Back",
  9913. image: {
  9914. source: "./media/characters/major-colonel/back.svg"
  9915. }
  9916. },
  9917. },
  9918. [
  9919. {
  9920. name: "Macro",
  9921. height: math.unit(400, "feet"),
  9922. default: true
  9923. },
  9924. ]
  9925. ))
  9926. characterMakers.push(() => makeCharacter(
  9927. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  9928. {
  9929. catFront: {
  9930. height: math.unit(6, "feet"),
  9931. weight: math.unit(120, "lb"),
  9932. name: "Front (Cat Side)",
  9933. image: {
  9934. source: "./media/characters/axel-lycan/cat-front.svg",
  9935. extra: 430 / 402,
  9936. bottom: 43 / 472.35
  9937. }
  9938. },
  9939. catBack: {
  9940. height: math.unit(6, "feet"),
  9941. weight: math.unit(120, "lb"),
  9942. name: "Back (Cat Side)",
  9943. image: {
  9944. source: "./media/characters/axel-lycan/cat-back.svg",
  9945. extra: 447 / 419,
  9946. bottom: 23.3 / 469
  9947. }
  9948. },
  9949. wolfFront: {
  9950. height: math.unit(6, "feet"),
  9951. weight: math.unit(120, "lb"),
  9952. name: "Front (Wolf Side)",
  9953. image: {
  9954. source: "./media/characters/axel-lycan/wolf-front.svg",
  9955. extra: 485 / 456,
  9956. bottom: 19 / 504
  9957. }
  9958. },
  9959. wolfBack: {
  9960. height: math.unit(6, "feet"),
  9961. weight: math.unit(120, "lb"),
  9962. name: "Back (Wolf Side)",
  9963. image: {
  9964. source: "./media/characters/axel-lycan/wolf-back.svg",
  9965. extra: 475 / 438,
  9966. bottom: 39.2 / 514
  9967. }
  9968. },
  9969. },
  9970. [
  9971. {
  9972. name: "Macro",
  9973. height: math.unit(1, "km"),
  9974. default: true
  9975. },
  9976. ]
  9977. ))
  9978. characterMakers.push(() => makeCharacter(
  9979. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  9980. {
  9981. front: {
  9982. height: math.unit(5 + 9 / 12, "feet"),
  9983. weight: math.unit(175, "lb"),
  9984. name: "Front",
  9985. image: {
  9986. source: "./media/characters/vanrel-hyena/front.svg",
  9987. extra: 1086 / 1010,
  9988. bottom: 0.04
  9989. }
  9990. },
  9991. },
  9992. [
  9993. {
  9994. name: "Normal",
  9995. height: math.unit(5 + 9 / 12, "feet"),
  9996. default: true
  9997. },
  9998. ]
  9999. ))
  10000. characterMakers.push(() => makeCharacter(
  10001. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  10002. {
  10003. front: {
  10004. height: math.unit(6, "feet"),
  10005. weight: math.unit(103, "lb"),
  10006. name: "Front",
  10007. image: {
  10008. source: "./media/characters/abbott-absol/front.svg",
  10009. extra: 2010 / 1842
  10010. }
  10011. },
  10012. },
  10013. [
  10014. {
  10015. name: "Megamicro",
  10016. height: math.unit(0.1, "mm")
  10017. },
  10018. {
  10019. name: "Micro",
  10020. height: math.unit(1, "inch")
  10021. },
  10022. {
  10023. name: "Normal",
  10024. height: math.unit(6, "feet"),
  10025. default: true
  10026. },
  10027. ]
  10028. ))
  10029. characterMakers.push(() => makeCharacter(
  10030. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  10031. {
  10032. front: {
  10033. height: math.unit(6, "feet"),
  10034. weight: math.unit(264, "lb"),
  10035. name: "Front",
  10036. image: {
  10037. source: "./media/characters/hector/front.svg",
  10038. extra: 2280 / 2130,
  10039. bottom: 0.07
  10040. }
  10041. },
  10042. },
  10043. [
  10044. {
  10045. name: "Normal",
  10046. height: math.unit(12.25, "foot"),
  10047. default: true
  10048. },
  10049. {
  10050. name: "Macro",
  10051. height: math.unit(160, "feet")
  10052. },
  10053. ]
  10054. ))
  10055. characterMakers.push(() => makeCharacter(
  10056. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  10057. {
  10058. front: {
  10059. height: math.unit(6, "feet"),
  10060. weight: math.unit(150, "lb"),
  10061. name: "Front",
  10062. image: {
  10063. source: "./media/characters/sal/front.svg",
  10064. extra: 1846 / 1699,
  10065. bottom: 0.04
  10066. }
  10067. },
  10068. },
  10069. [
  10070. {
  10071. name: "Megamacro",
  10072. height: math.unit(10, "miles"),
  10073. default: true
  10074. },
  10075. ]
  10076. ))
  10077. characterMakers.push(() => makeCharacter(
  10078. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  10079. {
  10080. front: {
  10081. height: math.unit(3, "meters"),
  10082. weight: math.unit(450, "kg"),
  10083. name: "front",
  10084. image: {
  10085. source: "./media/characters/ranger/front.svg",
  10086. extra: 2401 / 2243,
  10087. bottom: 0.05
  10088. }
  10089. },
  10090. },
  10091. [
  10092. {
  10093. name: "Normal",
  10094. height: math.unit(3, "meters"),
  10095. default: true
  10096. },
  10097. ]
  10098. ))
  10099. characterMakers.push(() => makeCharacter(
  10100. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  10101. {
  10102. front: {
  10103. height: math.unit(14, "feet"),
  10104. weight: math.unit(800, "kg"),
  10105. name: "Front",
  10106. image: {
  10107. source: "./media/characters/theresa/front.svg",
  10108. extra: 3575 / 3346,
  10109. bottom: 0.03
  10110. }
  10111. },
  10112. },
  10113. [
  10114. {
  10115. name: "Normal",
  10116. height: math.unit(14, "feet"),
  10117. default: true
  10118. },
  10119. ]
  10120. ))
  10121. characterMakers.push(() => makeCharacter(
  10122. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  10123. {
  10124. front: {
  10125. height: math.unit(6, "feet"),
  10126. weight: math.unit(3, "kg"),
  10127. name: "Front",
  10128. image: {
  10129. source: "./media/characters/ine/front.svg",
  10130. extra: 678 / 539,
  10131. bottom: 0.023
  10132. }
  10133. },
  10134. },
  10135. [
  10136. {
  10137. name: "Normal",
  10138. height: math.unit(2.265, "feet"),
  10139. default: true
  10140. },
  10141. ]
  10142. ))
  10143. characterMakers.push(() => makeCharacter(
  10144. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  10145. {
  10146. front: {
  10147. height: math.unit(5, "feet"),
  10148. weight: math.unit(30, "kg"),
  10149. name: "Front",
  10150. image: {
  10151. source: "./media/characters/vial/front.svg",
  10152. extra: 1365 / 1277,
  10153. bottom: 0.04
  10154. }
  10155. },
  10156. },
  10157. [
  10158. {
  10159. name: "Normal",
  10160. height: math.unit(5, "feet"),
  10161. default: true
  10162. },
  10163. ]
  10164. ))
  10165. characterMakers.push(() => makeCharacter(
  10166. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  10167. {
  10168. side: {
  10169. height: math.unit(3.4, "meters"),
  10170. weight: math.unit(1000, "lb"),
  10171. name: "Side",
  10172. image: {
  10173. source: "./media/characters/rovoska/side.svg",
  10174. extra: 4403 / 1515
  10175. }
  10176. },
  10177. },
  10178. [
  10179. {
  10180. name: "Normal",
  10181. height: math.unit(3.4, "meters"),
  10182. default: true
  10183. },
  10184. ]
  10185. ))
  10186. characterMakers.push(() => makeCharacter(
  10187. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  10188. {
  10189. front: {
  10190. height: math.unit(8, "feet"),
  10191. weight: math.unit(315, "lb"),
  10192. name: "Front",
  10193. image: {
  10194. source: "./media/characters/gunner-rotthbauer/front.svg"
  10195. }
  10196. },
  10197. back: {
  10198. height: math.unit(8, "feet"),
  10199. weight: math.unit(315, "lb"),
  10200. name: "Back",
  10201. image: {
  10202. source: "./media/characters/gunner-rotthbauer/back.svg"
  10203. }
  10204. },
  10205. },
  10206. [
  10207. {
  10208. name: "Micro",
  10209. height: math.unit(3.5, "inches")
  10210. },
  10211. {
  10212. name: "Normal",
  10213. height: math.unit(8, "feet"),
  10214. default: true
  10215. },
  10216. {
  10217. name: "Macro",
  10218. height: math.unit(250, "feet")
  10219. },
  10220. {
  10221. name: "Megamacro",
  10222. height: math.unit(1, "AU")
  10223. },
  10224. ]
  10225. ))
  10226. characterMakers.push(() => makeCharacter(
  10227. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  10228. {
  10229. front: {
  10230. height: math.unit(5 + 5 / 12, "feet"),
  10231. weight: math.unit(140, "lb"),
  10232. name: "Front",
  10233. image: {
  10234. source: "./media/characters/allatia/front.svg",
  10235. extra: 1227 / 1180,
  10236. bottom: 0.027
  10237. }
  10238. },
  10239. },
  10240. [
  10241. {
  10242. name: "Normal",
  10243. height: math.unit(5 + 5 / 12, "feet")
  10244. },
  10245. {
  10246. name: "Macro",
  10247. height: math.unit(250, "feet"),
  10248. default: true
  10249. },
  10250. {
  10251. name: "Megamacro",
  10252. height: math.unit(8, "miles")
  10253. }
  10254. ]
  10255. ))
  10256. characterMakers.push(() => makeCharacter(
  10257. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  10258. {
  10259. front: {
  10260. height: math.unit(6, "feet"),
  10261. weight: math.unit(120, "lb"),
  10262. name: "Front",
  10263. image: {
  10264. source: "./media/characters/tene/front.svg",
  10265. extra: 814/750,
  10266. bottom: 36/850
  10267. }
  10268. },
  10269. stomping: {
  10270. height: math.unit(2.025, "meters"),
  10271. weight: math.unit(120, "lb"),
  10272. name: "Stomping",
  10273. image: {
  10274. source: "./media/characters/tene/stomping.svg",
  10275. extra: 885/821,
  10276. bottom: 15/900
  10277. }
  10278. },
  10279. sitting: {
  10280. height: math.unit(1, "meter"),
  10281. weight: math.unit(120, "lb"),
  10282. name: "Sitting",
  10283. image: {
  10284. source: "./media/characters/tene/sitting.svg",
  10285. extra: 396/366,
  10286. bottom: 79/475
  10287. }
  10288. },
  10289. smiling: {
  10290. height: math.unit(1.2, "feet"),
  10291. name: "Smiling",
  10292. image: {
  10293. source: "./media/characters/tene/smiling.svg",
  10294. extra: 1364/1071,
  10295. bottom: 0/1364
  10296. }
  10297. },
  10298. smug: {
  10299. height: math.unit(1.3, "feet"),
  10300. name: "Smug",
  10301. image: {
  10302. source: "./media/characters/tene/smug.svg",
  10303. extra: 1323/1082,
  10304. bottom: 0/1323
  10305. }
  10306. },
  10307. feral: {
  10308. height: math.unit(3.9, "feet"),
  10309. weight: math.unit(250, "lb"),
  10310. name: "Feral",
  10311. image: {
  10312. source: "./media/characters/tene/feral.svg",
  10313. extra: 717 / 458,
  10314. bottom: 0.179
  10315. }
  10316. },
  10317. },
  10318. [
  10319. {
  10320. name: "Normal",
  10321. height: math.unit(6, "feet")
  10322. },
  10323. {
  10324. name: "Macro",
  10325. height: math.unit(300, "feet"),
  10326. default: true
  10327. },
  10328. {
  10329. name: "Megamacro",
  10330. height: math.unit(5, "miles")
  10331. },
  10332. ]
  10333. ))
  10334. characterMakers.push(() => makeCharacter(
  10335. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  10336. {
  10337. side: {
  10338. height: math.unit(6, "feet"),
  10339. name: "Side",
  10340. image: {
  10341. source: "./media/characters/evander/side.svg",
  10342. extra: 877 / 477
  10343. }
  10344. },
  10345. },
  10346. [
  10347. {
  10348. name: "Normal",
  10349. height: math.unit(0.83, "meters"),
  10350. default: true
  10351. },
  10352. ]
  10353. ))
  10354. characterMakers.push(() => makeCharacter(
  10355. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  10356. {
  10357. front: {
  10358. height: math.unit(12, "feet"),
  10359. weight: math.unit(1000, "lb"),
  10360. name: "Front",
  10361. image: {
  10362. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  10363. extra: 1762 / 1611
  10364. }
  10365. },
  10366. back: {
  10367. height: math.unit(12, "feet"),
  10368. weight: math.unit(1000, "lb"),
  10369. name: "Back",
  10370. image: {
  10371. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  10372. extra: 1762 / 1611
  10373. }
  10374. },
  10375. },
  10376. [
  10377. {
  10378. name: "Normal",
  10379. height: math.unit(12, "feet"),
  10380. default: true
  10381. },
  10382. {
  10383. name: "Kaiju",
  10384. height: math.unit(150, "feet")
  10385. },
  10386. ]
  10387. ))
  10388. characterMakers.push(() => makeCharacter(
  10389. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  10390. {
  10391. front: {
  10392. height: math.unit(6, "feet"),
  10393. weight: math.unit(150, "lb"),
  10394. name: "Front",
  10395. image: {
  10396. source: "./media/characters/zero-alurus/front.svg"
  10397. }
  10398. },
  10399. back: {
  10400. height: math.unit(6, "feet"),
  10401. weight: math.unit(150, "lb"),
  10402. name: "Back",
  10403. image: {
  10404. source: "./media/characters/zero-alurus/back.svg"
  10405. }
  10406. },
  10407. },
  10408. [
  10409. {
  10410. name: "Normal",
  10411. height: math.unit(5 + 10 / 12, "feet")
  10412. },
  10413. {
  10414. name: "Macro",
  10415. height: math.unit(60, "feet"),
  10416. default: true
  10417. },
  10418. {
  10419. name: "Macro+",
  10420. height: math.unit(450, "feet")
  10421. },
  10422. ]
  10423. ))
  10424. characterMakers.push(() => makeCharacter(
  10425. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  10426. {
  10427. front: {
  10428. height: math.unit(6, "feet"),
  10429. weight: math.unit(200, "lb"),
  10430. name: "Front",
  10431. image: {
  10432. source: "./media/characters/mega-shi/front.svg",
  10433. extra: 1279 / 1250,
  10434. bottom: 0.02
  10435. }
  10436. },
  10437. back: {
  10438. height: math.unit(6, "feet"),
  10439. weight: math.unit(200, "lb"),
  10440. name: "Back",
  10441. image: {
  10442. source: "./media/characters/mega-shi/back.svg",
  10443. extra: 1279 / 1250,
  10444. bottom: 0.02
  10445. }
  10446. },
  10447. },
  10448. [
  10449. {
  10450. name: "Micro",
  10451. height: math.unit(16 + 6 / 12, "feet")
  10452. },
  10453. {
  10454. name: "Third Dimension",
  10455. height: math.unit(40, "meters")
  10456. },
  10457. {
  10458. name: "Normal",
  10459. height: math.unit(660, "feet"),
  10460. default: true
  10461. },
  10462. {
  10463. name: "Megamacro",
  10464. height: math.unit(10, "miles")
  10465. },
  10466. {
  10467. name: "Planetary Launch",
  10468. height: math.unit(500, "miles")
  10469. },
  10470. {
  10471. name: "Interstellar",
  10472. height: math.unit(1e9, "miles")
  10473. },
  10474. {
  10475. name: "Leaving the Universe",
  10476. height: math.unit(1, "gigaparsec")
  10477. },
  10478. {
  10479. name: "Travelling Universes",
  10480. height: math.unit(30e15, "parsecs")
  10481. },
  10482. ]
  10483. ))
  10484. characterMakers.push(() => makeCharacter(
  10485. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  10486. {
  10487. front: {
  10488. height: math.unit(5 + 4/12, "feet"),
  10489. weight: math.unit(120, "lb"),
  10490. name: "Front",
  10491. image: {
  10492. source: "./media/characters/odyssey/front.svg",
  10493. extra: 1747/1571,
  10494. bottom: 47/1794
  10495. }
  10496. },
  10497. side: {
  10498. height: math.unit(5.1, "feet"),
  10499. weight: math.unit(120, "lb"),
  10500. name: "Side",
  10501. image: {
  10502. source: "./media/characters/odyssey/side.svg",
  10503. extra: 1847/1619,
  10504. bottom: 47/1894
  10505. }
  10506. },
  10507. lounging: {
  10508. height: math.unit(1.464, "feet"),
  10509. weight: math.unit(120, "lb"),
  10510. name: "Lounging",
  10511. image: {
  10512. source: "./media/characters/odyssey/lounging.svg",
  10513. extra: 1235/837,
  10514. bottom: 551/1786
  10515. }
  10516. },
  10517. },
  10518. [
  10519. {
  10520. name: "Normal",
  10521. height: math.unit(5 + 4 / 12, "feet")
  10522. },
  10523. {
  10524. name: "Macro",
  10525. height: math.unit(1, "km")
  10526. },
  10527. {
  10528. name: "Megamacro",
  10529. height: math.unit(3000, "km")
  10530. },
  10531. {
  10532. name: "Gigamacro",
  10533. height: math.unit(1, "AU"),
  10534. default: true
  10535. },
  10536. {
  10537. name: "Omniversal",
  10538. height: math.unit(100e14, "lightyears")
  10539. },
  10540. ]
  10541. ))
  10542. characterMakers.push(() => makeCharacter(
  10543. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  10544. {
  10545. front: {
  10546. height: math.unit(6, "feet"),
  10547. weight: math.unit(300, "lb"),
  10548. name: "Front",
  10549. image: {
  10550. source: "./media/characters/mekuto/front.svg",
  10551. extra: 921 / 832,
  10552. bottom: 0.03
  10553. }
  10554. },
  10555. hand: {
  10556. height: math.unit(6 / 10.24, "feet"),
  10557. name: "Hand",
  10558. image: {
  10559. source: "./media/characters/mekuto/hand.svg"
  10560. }
  10561. },
  10562. foot: {
  10563. height: math.unit(6 / 5.05, "feet"),
  10564. name: "Foot",
  10565. image: {
  10566. source: "./media/characters/mekuto/foot.svg"
  10567. }
  10568. },
  10569. },
  10570. [
  10571. {
  10572. name: "Minimicro",
  10573. height: math.unit(0.2, "inches")
  10574. },
  10575. {
  10576. name: "Micro",
  10577. height: math.unit(1.5, "inches")
  10578. },
  10579. {
  10580. name: "Normal",
  10581. height: math.unit(5 + 11 / 12, "feet"),
  10582. default: true
  10583. },
  10584. {
  10585. name: "Minimacro",
  10586. height: math.unit(17 + 9 / 12, "feet")
  10587. },
  10588. {
  10589. name: "Macro",
  10590. height: math.unit(177.5, "feet")
  10591. },
  10592. {
  10593. name: "Megamacro",
  10594. height: math.unit(152, "miles")
  10595. },
  10596. ]
  10597. ))
  10598. characterMakers.push(() => makeCharacter(
  10599. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  10600. {
  10601. front: {
  10602. height: math.unit(6.5, "inches"),
  10603. weight: math.unit(13, "oz"),
  10604. name: "Front",
  10605. image: {
  10606. source: "./media/characters/dafydd-tomos/front.svg",
  10607. extra: 2990 / 2603,
  10608. bottom: 0.03
  10609. }
  10610. },
  10611. },
  10612. [
  10613. {
  10614. name: "Micro",
  10615. height: math.unit(6.5, "inches"),
  10616. default: true
  10617. },
  10618. ]
  10619. ))
  10620. characterMakers.push(() => makeCharacter(
  10621. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  10622. {
  10623. front: {
  10624. height: math.unit(6, "feet"),
  10625. weight: math.unit(150, "lb"),
  10626. name: "Front",
  10627. image: {
  10628. source: "./media/characters/splinter/front.svg",
  10629. extra: 2990 / 2882,
  10630. bottom: 0.04
  10631. }
  10632. },
  10633. back: {
  10634. height: math.unit(6, "feet"),
  10635. weight: math.unit(150, "lb"),
  10636. name: "Back",
  10637. image: {
  10638. source: "./media/characters/splinter/back.svg",
  10639. extra: 2990 / 2882,
  10640. bottom: 0.04
  10641. }
  10642. },
  10643. },
  10644. [
  10645. {
  10646. name: "Normal",
  10647. height: math.unit(6, "feet")
  10648. },
  10649. {
  10650. name: "Macro",
  10651. height: math.unit(230, "meters"),
  10652. default: true
  10653. },
  10654. ]
  10655. ))
  10656. characterMakers.push(() => makeCharacter(
  10657. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  10658. {
  10659. front: {
  10660. height: math.unit(4 + 10 / 12, "feet"),
  10661. weight: math.unit(480, "lb"),
  10662. name: "Front",
  10663. image: {
  10664. source: "./media/characters/snow-gabumon/front.svg",
  10665. extra: 1140 / 963,
  10666. bottom: 0.058
  10667. }
  10668. },
  10669. back: {
  10670. height: math.unit(4 + 10 / 12, "feet"),
  10671. weight: math.unit(480, "lb"),
  10672. name: "Back",
  10673. image: {
  10674. source: "./media/characters/snow-gabumon/back.svg",
  10675. extra: 1115 / 962,
  10676. bottom: 0.041
  10677. }
  10678. },
  10679. frontUndresed: {
  10680. height: math.unit(4 + 10 / 12, "feet"),
  10681. weight: math.unit(480, "lb"),
  10682. name: "Front (Undressed)",
  10683. image: {
  10684. source: "./media/characters/snow-gabumon/front-undressed.svg",
  10685. extra: 1061 / 960,
  10686. bottom: 0.045
  10687. }
  10688. },
  10689. },
  10690. [
  10691. {
  10692. name: "Micro",
  10693. height: math.unit(1, "inch")
  10694. },
  10695. {
  10696. name: "Normal",
  10697. height: math.unit(4 + 10 / 12, "feet"),
  10698. default: true
  10699. },
  10700. {
  10701. name: "Macro",
  10702. height: math.unit(200, "feet")
  10703. },
  10704. {
  10705. name: "Megamacro",
  10706. height: math.unit(120, "miles")
  10707. },
  10708. {
  10709. name: "Gigamacro",
  10710. height: math.unit(9800, "miles")
  10711. },
  10712. ]
  10713. ))
  10714. characterMakers.push(() => makeCharacter(
  10715. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  10716. {
  10717. front: {
  10718. height: math.unit(1.7, "meters"),
  10719. weight: math.unit(140, "lb"),
  10720. name: "Front",
  10721. image: {
  10722. source: "./media/characters/moody/front.svg",
  10723. extra: 3226 / 3007,
  10724. bottom: 0.087
  10725. }
  10726. },
  10727. },
  10728. [
  10729. {
  10730. name: "Micro",
  10731. height: math.unit(1, "mm")
  10732. },
  10733. {
  10734. name: "Normal",
  10735. height: math.unit(1.7, "meters"),
  10736. default: true
  10737. },
  10738. {
  10739. name: "Macro",
  10740. height: math.unit(80, "meters")
  10741. },
  10742. {
  10743. name: "Macro+",
  10744. height: math.unit(500, "meters")
  10745. },
  10746. ]
  10747. ))
  10748. characterMakers.push(() => makeCharacter(
  10749. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  10750. {
  10751. front: {
  10752. height: math.unit(6, "feet"),
  10753. weight: math.unit(150, "lb"),
  10754. name: "Front",
  10755. image: {
  10756. source: "./media/characters/zyas/front.svg",
  10757. extra: 1180 / 1120,
  10758. bottom: 0.045
  10759. }
  10760. },
  10761. },
  10762. [
  10763. {
  10764. name: "Normal",
  10765. height: math.unit(10, "feet"),
  10766. default: true
  10767. },
  10768. {
  10769. name: "Macro",
  10770. height: math.unit(500, "feet")
  10771. },
  10772. {
  10773. name: "Megamacro",
  10774. height: math.unit(5, "miles")
  10775. },
  10776. {
  10777. name: "Teramacro",
  10778. height: math.unit(150000, "miles")
  10779. },
  10780. ]
  10781. ))
  10782. characterMakers.push(() => makeCharacter(
  10783. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  10784. {
  10785. front: {
  10786. height: math.unit(6, "feet"),
  10787. weight: math.unit(150, "lb"),
  10788. name: "Front",
  10789. image: {
  10790. source: "./media/characters/cuon/front.svg",
  10791. extra: 1390 / 1320,
  10792. bottom: 0.008
  10793. }
  10794. },
  10795. },
  10796. [
  10797. {
  10798. name: "Micro",
  10799. height: math.unit(3, "inches")
  10800. },
  10801. {
  10802. name: "Normal",
  10803. height: math.unit(18 + 9 / 12, "feet"),
  10804. default: true
  10805. },
  10806. {
  10807. name: "Macro",
  10808. height: math.unit(360, "feet")
  10809. },
  10810. {
  10811. name: "Megamacro",
  10812. height: math.unit(360, "miles")
  10813. },
  10814. ]
  10815. ))
  10816. characterMakers.push(() => makeCharacter(
  10817. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  10818. {
  10819. front: {
  10820. height: math.unit(2.4, "meters"),
  10821. weight: math.unit(70, "kg"),
  10822. name: "Front",
  10823. image: {
  10824. source: "./media/characters/nyanuxk/front.svg",
  10825. extra: 1172 / 1084,
  10826. bottom: 0.065
  10827. }
  10828. },
  10829. side: {
  10830. height: math.unit(2.4, "meters"),
  10831. weight: math.unit(70, "kg"),
  10832. name: "Side",
  10833. image: {
  10834. source: "./media/characters/nyanuxk/side.svg",
  10835. extra: 1190 / 1132,
  10836. bottom: 0.007
  10837. }
  10838. },
  10839. back: {
  10840. height: math.unit(2.4, "meters"),
  10841. weight: math.unit(70, "kg"),
  10842. name: "Back",
  10843. image: {
  10844. source: "./media/characters/nyanuxk/back.svg",
  10845. extra: 1200 / 1141,
  10846. bottom: 0.015
  10847. }
  10848. },
  10849. foot: {
  10850. height: math.unit(0.52, "meters"),
  10851. name: "Foot",
  10852. image: {
  10853. source: "./media/characters/nyanuxk/foot.svg"
  10854. }
  10855. },
  10856. },
  10857. [
  10858. {
  10859. name: "Micro",
  10860. height: math.unit(2, "cm")
  10861. },
  10862. {
  10863. name: "Normal",
  10864. height: math.unit(2.4, "meters"),
  10865. default: true
  10866. },
  10867. {
  10868. name: "Smaller Macro",
  10869. height: math.unit(120, "meters")
  10870. },
  10871. {
  10872. name: "Bigger Macro",
  10873. height: math.unit(1.2, "km")
  10874. },
  10875. {
  10876. name: "Megamacro",
  10877. height: math.unit(15, "kilometers")
  10878. },
  10879. {
  10880. name: "Gigamacro",
  10881. height: math.unit(2000, "km")
  10882. },
  10883. {
  10884. name: "Teramacro",
  10885. height: math.unit(500000, "km")
  10886. },
  10887. ]
  10888. ))
  10889. characterMakers.push(() => makeCharacter(
  10890. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  10891. {
  10892. side: {
  10893. height: math.unit(6, "feet"),
  10894. name: "Side",
  10895. image: {
  10896. source: "./media/characters/ailbhe/side.svg",
  10897. extra: 757 / 464,
  10898. bottom: 0.041
  10899. }
  10900. },
  10901. },
  10902. [
  10903. {
  10904. name: "Normal",
  10905. height: math.unit(1.07, "meters"),
  10906. default: true
  10907. },
  10908. ]
  10909. ))
  10910. characterMakers.push(() => makeCharacter(
  10911. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  10912. {
  10913. front: {
  10914. height: math.unit(6, "feet"),
  10915. weight: math.unit(120, "kg"),
  10916. name: "Front",
  10917. image: {
  10918. source: "./media/characters/zevulfius/front.svg",
  10919. extra: 965 / 903
  10920. }
  10921. },
  10922. side: {
  10923. height: math.unit(6, "feet"),
  10924. weight: math.unit(120, "kg"),
  10925. name: "Side",
  10926. image: {
  10927. source: "./media/characters/zevulfius/side.svg",
  10928. extra: 939 / 900
  10929. }
  10930. },
  10931. back: {
  10932. height: math.unit(6, "feet"),
  10933. weight: math.unit(120, "kg"),
  10934. name: "Back",
  10935. image: {
  10936. source: "./media/characters/zevulfius/back.svg",
  10937. extra: 918 / 854,
  10938. bottom: 0.005
  10939. }
  10940. },
  10941. foot: {
  10942. height: math.unit(6 / 3.72, "feet"),
  10943. name: "Foot",
  10944. image: {
  10945. source: "./media/characters/zevulfius/foot.svg"
  10946. }
  10947. },
  10948. },
  10949. [
  10950. {
  10951. name: "Macro",
  10952. height: math.unit(750, "meters")
  10953. },
  10954. {
  10955. name: "Megamacro",
  10956. height: math.unit(20, "km"),
  10957. default: true
  10958. },
  10959. {
  10960. name: "Gigamacro",
  10961. height: math.unit(2000, "km")
  10962. },
  10963. {
  10964. name: "Teramacro",
  10965. height: math.unit(250000, "km")
  10966. },
  10967. ]
  10968. ))
  10969. characterMakers.push(() => makeCharacter(
  10970. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  10971. {
  10972. front: {
  10973. height: math.unit(100, "feet"),
  10974. weight: math.unit(350, "kg"),
  10975. name: "Front",
  10976. image: {
  10977. source: "./media/characters/rikes/front.svg",
  10978. extra: 1565 / 1483,
  10979. bottom: 0.017
  10980. }
  10981. },
  10982. },
  10983. [
  10984. {
  10985. name: "Macro",
  10986. height: math.unit(100, "feet"),
  10987. default: true
  10988. },
  10989. ]
  10990. ))
  10991. characterMakers.push(() => makeCharacter(
  10992. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  10993. {
  10994. front: {
  10995. height: math.unit(8, "feet"),
  10996. weight: math.unit(356, "lb"),
  10997. name: "Front",
  10998. image: {
  10999. source: "./media/characters/adam-silver-mane/front.svg",
  11000. extra: 1036/937,
  11001. bottom: 63/1099
  11002. }
  11003. },
  11004. side: {
  11005. height: math.unit(8, "feet"),
  11006. weight: math.unit(356, "lb"),
  11007. name: "Side",
  11008. image: {
  11009. source: "./media/characters/adam-silver-mane/side.svg",
  11010. extra: 997/901,
  11011. bottom: 59/1056
  11012. }
  11013. },
  11014. frontNsfw: {
  11015. height: math.unit(8, "feet"),
  11016. weight: math.unit(356, "lb"),
  11017. name: "Front (NSFW)",
  11018. image: {
  11019. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  11020. extra: 1036/937,
  11021. bottom: 63/1099
  11022. }
  11023. },
  11024. sideNsfw: {
  11025. height: math.unit(8, "feet"),
  11026. weight: math.unit(356, "lb"),
  11027. name: "Side (NSFW)",
  11028. image: {
  11029. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  11030. extra: 997/901,
  11031. bottom: 59/1056
  11032. }
  11033. },
  11034. dick: {
  11035. height: math.unit(2.1, "feet"),
  11036. name: "Dick",
  11037. image: {
  11038. source: "./media/characters/adam-silver-mane/dick.svg"
  11039. }
  11040. },
  11041. taur: {
  11042. height: math.unit(16, "feet"),
  11043. weight: math.unit(1500, "kg"),
  11044. name: "Taur",
  11045. image: {
  11046. source: "./media/characters/adam-silver-mane/taur.svg",
  11047. extra: 1713 / 1571,
  11048. bottom: 0.01
  11049. }
  11050. },
  11051. },
  11052. [
  11053. {
  11054. name: "Normal",
  11055. height: math.unit(8, "feet")
  11056. },
  11057. {
  11058. name: "Minimacro",
  11059. height: math.unit(80, "feet")
  11060. },
  11061. {
  11062. name: "MDA",
  11063. height: math.unit(80, "meters")
  11064. },
  11065. {
  11066. name: "Macro",
  11067. height: math.unit(800, "feet"),
  11068. default: true
  11069. },
  11070. {
  11071. name: "Megamacro",
  11072. height: math.unit(8000, "feet")
  11073. },
  11074. {
  11075. name: "Gigamacro",
  11076. height: math.unit(800, "miles")
  11077. },
  11078. {
  11079. name: "Teramacro",
  11080. height: math.unit(80000, "miles")
  11081. },
  11082. {
  11083. name: "Celestial",
  11084. height: math.unit(8e6, "miles")
  11085. },
  11086. {
  11087. name: "Star Dragon",
  11088. height: math.unit(800000, "parsecs")
  11089. },
  11090. {
  11091. name: "Godly",
  11092. height: math.unit(800, "teraparsecs")
  11093. },
  11094. ]
  11095. ))
  11096. characterMakers.push(() => makeCharacter(
  11097. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  11098. {
  11099. front: {
  11100. height: math.unit(6, "feet"),
  11101. weight: math.unit(150, "lb"),
  11102. name: "Front",
  11103. image: {
  11104. source: "./media/characters/ky'owin/front.svg",
  11105. extra: 3888 / 3068,
  11106. bottom: 0.015
  11107. }
  11108. },
  11109. },
  11110. [
  11111. {
  11112. name: "Normal",
  11113. height: math.unit(6 + 8 / 12, "feet")
  11114. },
  11115. {
  11116. name: "Large",
  11117. height: math.unit(68, "feet")
  11118. },
  11119. {
  11120. name: "Macro",
  11121. height: math.unit(132, "feet")
  11122. },
  11123. {
  11124. name: "Macro+",
  11125. height: math.unit(340, "feet")
  11126. },
  11127. {
  11128. name: "Macro++",
  11129. height: math.unit(680, "feet"),
  11130. default: true
  11131. },
  11132. {
  11133. name: "Megamacro",
  11134. height: math.unit(1, "mile")
  11135. },
  11136. {
  11137. name: "Megamacro+",
  11138. height: math.unit(10, "miles")
  11139. },
  11140. ]
  11141. ))
  11142. characterMakers.push(() => makeCharacter(
  11143. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  11144. {
  11145. front: {
  11146. height: math.unit(4, "feet"),
  11147. weight: math.unit(50, "lb"),
  11148. name: "Front",
  11149. image: {
  11150. source: "./media/characters/mal/front.svg",
  11151. extra: 785 / 724,
  11152. bottom: 0.07
  11153. }
  11154. },
  11155. },
  11156. [
  11157. {
  11158. name: "Micro",
  11159. height: math.unit(4, "inches")
  11160. },
  11161. {
  11162. name: "Normal",
  11163. height: math.unit(4, "feet"),
  11164. default: true
  11165. },
  11166. {
  11167. name: "Macro",
  11168. height: math.unit(200, "feet")
  11169. },
  11170. ]
  11171. ))
  11172. characterMakers.push(() => makeCharacter(
  11173. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  11174. {
  11175. front: {
  11176. height: math.unit(6, "feet"),
  11177. weight: math.unit(150, "lb"),
  11178. name: "Front",
  11179. image: {
  11180. source: "./media/characters/jordan-deware/front.svg",
  11181. extra: 1191 / 1012
  11182. }
  11183. },
  11184. },
  11185. [
  11186. {
  11187. name: "Nano",
  11188. height: math.unit(0.01, "mm")
  11189. },
  11190. {
  11191. name: "Minimicro",
  11192. height: math.unit(1, "mm")
  11193. },
  11194. {
  11195. name: "Micro",
  11196. height: math.unit(0.5, "inches")
  11197. },
  11198. {
  11199. name: "Normal",
  11200. height: math.unit(4, "feet"),
  11201. default: true
  11202. },
  11203. {
  11204. name: "Minimacro",
  11205. height: math.unit(40, "meters")
  11206. },
  11207. {
  11208. name: "Small Macro",
  11209. height: math.unit(400, "meters")
  11210. },
  11211. {
  11212. name: "Macro",
  11213. height: math.unit(4, "miles")
  11214. },
  11215. {
  11216. name: "Megamacro",
  11217. height: math.unit(40, "miles")
  11218. },
  11219. {
  11220. name: "Megamacro+",
  11221. height: math.unit(400, "miles")
  11222. },
  11223. {
  11224. name: "Gigamacro",
  11225. height: math.unit(400000, "miles")
  11226. },
  11227. ]
  11228. ))
  11229. characterMakers.push(() => makeCharacter(
  11230. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  11231. {
  11232. side: {
  11233. height: math.unit(6, "feet"),
  11234. weight: math.unit(150, "lb"),
  11235. name: "Side",
  11236. image: {
  11237. source: "./media/characters/kimiko/side.svg",
  11238. extra: 600 / 358
  11239. }
  11240. },
  11241. },
  11242. [
  11243. {
  11244. name: "Normal",
  11245. height: math.unit(15, "feet"),
  11246. default: true
  11247. },
  11248. {
  11249. name: "Macro",
  11250. height: math.unit(220, "feet")
  11251. },
  11252. {
  11253. name: "Macro+",
  11254. height: math.unit(1450, "feet")
  11255. },
  11256. {
  11257. name: "Megamacro",
  11258. height: math.unit(11500, "feet")
  11259. },
  11260. {
  11261. name: "Gigamacro",
  11262. height: math.unit(9500, "miles")
  11263. },
  11264. {
  11265. name: "Teramacro",
  11266. height: math.unit(2208005005, "miles")
  11267. },
  11268. {
  11269. name: "Examacro",
  11270. height: math.unit(2750, "parsecs")
  11271. },
  11272. {
  11273. name: "Zettamacro",
  11274. height: math.unit(101500, "parsecs")
  11275. },
  11276. ]
  11277. ))
  11278. characterMakers.push(() => makeCharacter(
  11279. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  11280. {
  11281. front: {
  11282. height: math.unit(6, "feet"),
  11283. weight: math.unit(70, "kg"),
  11284. name: "Front",
  11285. image: {
  11286. source: "./media/characters/andrew-sleepy/front.svg"
  11287. }
  11288. },
  11289. side: {
  11290. height: math.unit(6, "feet"),
  11291. weight: math.unit(70, "kg"),
  11292. name: "Side",
  11293. image: {
  11294. source: "./media/characters/andrew-sleepy/side.svg"
  11295. }
  11296. },
  11297. },
  11298. [
  11299. {
  11300. name: "Micro",
  11301. height: math.unit(1, "mm"),
  11302. default: true
  11303. },
  11304. ]
  11305. ))
  11306. characterMakers.push(() => makeCharacter(
  11307. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  11308. {
  11309. front: {
  11310. height: math.unit(6, "feet"),
  11311. weight: math.unit(150, "lb"),
  11312. name: "Front",
  11313. image: {
  11314. source: "./media/characters/judio/front.svg",
  11315. extra: 1258 / 1110
  11316. }
  11317. },
  11318. },
  11319. [
  11320. {
  11321. name: "Normal",
  11322. height: math.unit(5 + 6 / 12, "feet")
  11323. },
  11324. {
  11325. name: "Macro",
  11326. height: math.unit(1000, "feet"),
  11327. default: true
  11328. },
  11329. {
  11330. name: "Megamacro",
  11331. height: math.unit(10, "miles")
  11332. },
  11333. ]
  11334. ))
  11335. characterMakers.push(() => makeCharacter(
  11336. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  11337. {
  11338. frontDressed: {
  11339. height: math.unit(6, "feet"),
  11340. weight: math.unit(68, "kg"),
  11341. name: "Front (Dressed)",
  11342. image: {
  11343. source: "./media/characters/nomaxice/front-dressed.svg",
  11344. extra: 1137/824,
  11345. bottom: 74/1211
  11346. }
  11347. },
  11348. frontShorts: {
  11349. height: math.unit(6, "feet"),
  11350. weight: math.unit(68, "kg"),
  11351. name: "Front (Shorts)",
  11352. image: {
  11353. source: "./media/characters/nomaxice/front-shorts.svg",
  11354. extra: 1137/824,
  11355. bottom: 74/1211
  11356. }
  11357. },
  11358. back: {
  11359. height: math.unit(6, "feet"),
  11360. weight: math.unit(68, "kg"),
  11361. name: "Back",
  11362. image: {
  11363. source: "./media/characters/nomaxice/back.svg",
  11364. extra: 822/786,
  11365. bottom: 39/861
  11366. }
  11367. },
  11368. hand: {
  11369. height: math.unit(0.565, "feet"),
  11370. name: "Hand",
  11371. image: {
  11372. source: "./media/characters/nomaxice/hand.svg"
  11373. }
  11374. },
  11375. foot: {
  11376. height: math.unit(1, "feet"),
  11377. name: "Foot",
  11378. image: {
  11379. source: "./media/characters/nomaxice/foot.svg"
  11380. }
  11381. },
  11382. },
  11383. [
  11384. {
  11385. name: "Micro",
  11386. height: math.unit(8, "cm")
  11387. },
  11388. {
  11389. name: "Norm",
  11390. height: math.unit(1.82, "m")
  11391. },
  11392. {
  11393. name: "Norm+",
  11394. height: math.unit(8.8, "feet"),
  11395. default: true
  11396. },
  11397. {
  11398. name: "Big",
  11399. height: math.unit(8, "meters")
  11400. },
  11401. {
  11402. name: "Macro",
  11403. height: math.unit(18, "meters")
  11404. },
  11405. {
  11406. name: "Macro+",
  11407. height: math.unit(88, "meters")
  11408. },
  11409. ]
  11410. ))
  11411. characterMakers.push(() => makeCharacter(
  11412. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  11413. {
  11414. front: {
  11415. height: math.unit(12, "feet"),
  11416. weight: math.unit(1.5, "tons"),
  11417. name: "Front",
  11418. image: {
  11419. source: "./media/characters/dydros/front.svg",
  11420. extra: 863 / 800,
  11421. bottom: 0.015
  11422. }
  11423. },
  11424. back: {
  11425. height: math.unit(12, "feet"),
  11426. weight: math.unit(1.5, "tons"),
  11427. name: "Back",
  11428. image: {
  11429. source: "./media/characters/dydros/back.svg",
  11430. extra: 900 / 843,
  11431. bottom: 0.005
  11432. }
  11433. },
  11434. },
  11435. [
  11436. {
  11437. name: "Normal",
  11438. height: math.unit(12, "feet"),
  11439. default: true
  11440. },
  11441. ]
  11442. ))
  11443. characterMakers.push(() => makeCharacter(
  11444. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  11445. {
  11446. front: {
  11447. height: math.unit(6, "feet"),
  11448. weight: math.unit(100, "kg"),
  11449. name: "Front",
  11450. image: {
  11451. source: "./media/characters/riggi/front.svg",
  11452. extra: 5787 / 5303
  11453. }
  11454. },
  11455. hyper: {
  11456. height: math.unit(6 * 5 / 3, "feet"),
  11457. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  11458. name: "Hyper",
  11459. image: {
  11460. source: "./media/characters/riggi/hyper.svg",
  11461. extra: 3595 / 3485
  11462. }
  11463. },
  11464. },
  11465. [
  11466. {
  11467. name: "Small Macro",
  11468. height: math.unit(50, "feet")
  11469. },
  11470. {
  11471. name: "Default",
  11472. height: math.unit(200, "feet"),
  11473. default: true
  11474. },
  11475. {
  11476. name: "Loom",
  11477. height: math.unit(10000, "feet")
  11478. },
  11479. {
  11480. name: "Cruising Altitude",
  11481. height: math.unit(30000, "feet")
  11482. },
  11483. {
  11484. name: "Megamacro",
  11485. height: math.unit(100, "miles")
  11486. },
  11487. {
  11488. name: "Continent Sized",
  11489. height: math.unit(2800, "miles")
  11490. },
  11491. {
  11492. name: "Earth Sized",
  11493. height: math.unit(8000, "miles")
  11494. },
  11495. ]
  11496. ))
  11497. characterMakers.push(() => makeCharacter(
  11498. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  11499. {
  11500. front: {
  11501. height: math.unit(6, "feet"),
  11502. weight: math.unit(250, "lb"),
  11503. name: "Front",
  11504. image: {
  11505. source: "./media/characters/alexi/front.svg",
  11506. extra: 3483 / 3291,
  11507. bottom: 0.04
  11508. }
  11509. },
  11510. back: {
  11511. height: math.unit(6, "feet"),
  11512. weight: math.unit(250, "lb"),
  11513. name: "Back",
  11514. image: {
  11515. source: "./media/characters/alexi/back.svg",
  11516. extra: 3533 / 3356,
  11517. bottom: 0.021
  11518. }
  11519. },
  11520. frontTransforming: {
  11521. height: math.unit(8.58, "feet"),
  11522. weight: math.unit(1300, "lb"),
  11523. name: "Transforming",
  11524. image: {
  11525. source: "./media/characters/alexi/front-transforming.svg",
  11526. extra: 437 / 409,
  11527. bottom: 19 / 458.66
  11528. }
  11529. },
  11530. frontTransformed: {
  11531. height: math.unit(12.5, "feet"),
  11532. weight: math.unit(4000, "lb"),
  11533. name: "Transformed",
  11534. image: {
  11535. source: "./media/characters/alexi/front-transformed.svg",
  11536. extra: 639 / 614,
  11537. bottom: 30.55 / 671
  11538. }
  11539. },
  11540. },
  11541. [
  11542. {
  11543. name: "Normal",
  11544. height: math.unit(14, "feet"),
  11545. default: true
  11546. },
  11547. {
  11548. name: "Minimacro",
  11549. height: math.unit(30, "meters")
  11550. },
  11551. {
  11552. name: "Macro",
  11553. height: math.unit(500, "meters")
  11554. },
  11555. {
  11556. name: "Megamacro",
  11557. height: math.unit(9000, "km")
  11558. },
  11559. {
  11560. name: "Teramacro",
  11561. height: math.unit(384000, "km")
  11562. },
  11563. ]
  11564. ))
  11565. characterMakers.push(() => makeCharacter(
  11566. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  11567. {
  11568. front: {
  11569. height: math.unit(6, "feet"),
  11570. weight: math.unit(150, "lb"),
  11571. name: "Front",
  11572. image: {
  11573. source: "./media/characters/kayroo/front.svg",
  11574. extra: 1153 / 1038,
  11575. bottom: 0.06
  11576. }
  11577. },
  11578. foot: {
  11579. height: math.unit(6, "feet"),
  11580. weight: math.unit(150, "lb"),
  11581. name: "Foot",
  11582. image: {
  11583. source: "./media/characters/kayroo/foot.svg"
  11584. }
  11585. },
  11586. },
  11587. [
  11588. {
  11589. name: "Normal",
  11590. height: math.unit(8, "feet"),
  11591. default: true
  11592. },
  11593. {
  11594. name: "Minimacro",
  11595. height: math.unit(250, "feet")
  11596. },
  11597. {
  11598. name: "Macro",
  11599. height: math.unit(2800, "feet")
  11600. },
  11601. {
  11602. name: "Megamacro",
  11603. height: math.unit(5200, "feet")
  11604. },
  11605. {
  11606. name: "Gigamacro",
  11607. height: math.unit(27000, "feet")
  11608. },
  11609. {
  11610. name: "Omega",
  11611. height: math.unit(45000, "feet")
  11612. },
  11613. ]
  11614. ))
  11615. characterMakers.push(() => makeCharacter(
  11616. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  11617. {
  11618. front: {
  11619. height: math.unit(18, "feet"),
  11620. weight: math.unit(5800, "lb"),
  11621. name: "Front",
  11622. image: {
  11623. source: "./media/characters/rhys/front.svg",
  11624. extra: 3386 / 3090,
  11625. bottom: 0.07
  11626. }
  11627. },
  11628. },
  11629. [
  11630. {
  11631. name: "Normal",
  11632. height: math.unit(18, "feet"),
  11633. default: true
  11634. },
  11635. {
  11636. name: "Working Size",
  11637. height: math.unit(200, "feet")
  11638. },
  11639. {
  11640. name: "Demolition Size",
  11641. height: math.unit(2000, "feet")
  11642. },
  11643. {
  11644. name: "Maximum Licensed Size",
  11645. height: math.unit(5, "miles")
  11646. },
  11647. {
  11648. name: "Maximum Observed Size",
  11649. height: math.unit(10, "yottameters")
  11650. },
  11651. ]
  11652. ))
  11653. characterMakers.push(() => makeCharacter(
  11654. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  11655. {
  11656. front: {
  11657. height: math.unit(6, "feet"),
  11658. weight: math.unit(250, "lb"),
  11659. name: "Front",
  11660. image: {
  11661. source: "./media/characters/toto/front.svg",
  11662. extra: 527 / 479,
  11663. bottom: 0.05
  11664. }
  11665. },
  11666. },
  11667. [
  11668. {
  11669. name: "Micro",
  11670. height: math.unit(3, "feet")
  11671. },
  11672. {
  11673. name: "Normal",
  11674. height: math.unit(10, "feet")
  11675. },
  11676. {
  11677. name: "Macro",
  11678. height: math.unit(150, "feet"),
  11679. default: true
  11680. },
  11681. {
  11682. name: "Megamacro",
  11683. height: math.unit(1200, "feet")
  11684. },
  11685. ]
  11686. ))
  11687. characterMakers.push(() => makeCharacter(
  11688. { name: "King", species: ["lion"], tags: ["anthro"] },
  11689. {
  11690. back: {
  11691. height: math.unit(6, "feet"),
  11692. weight: math.unit(150, "lb"),
  11693. name: "Back",
  11694. image: {
  11695. source: "./media/characters/king/back.svg"
  11696. }
  11697. },
  11698. },
  11699. [
  11700. {
  11701. name: "Micro",
  11702. height: math.unit(2, "inches")
  11703. },
  11704. {
  11705. name: "Normal",
  11706. height: math.unit(8, "feet")
  11707. },
  11708. {
  11709. name: "Macro",
  11710. height: math.unit(200, "feet"),
  11711. default: true
  11712. },
  11713. {
  11714. name: "Megamacro",
  11715. height: math.unit(50, "miles")
  11716. },
  11717. ]
  11718. ))
  11719. characterMakers.push(() => makeCharacter(
  11720. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  11721. {
  11722. front: {
  11723. height: math.unit(11, "feet"),
  11724. weight: math.unit(1400, "lb"),
  11725. name: "Front",
  11726. image: {
  11727. source: "./media/characters/cordite/front.svg",
  11728. extra: 1919/1827,
  11729. bottom: 40/1959
  11730. }
  11731. },
  11732. side: {
  11733. height: math.unit(11, "feet"),
  11734. weight: math.unit(1400, "lb"),
  11735. name: "Side",
  11736. image: {
  11737. source: "./media/characters/cordite/side.svg",
  11738. extra: 1908/1793,
  11739. bottom: 38/1946
  11740. }
  11741. },
  11742. back: {
  11743. height: math.unit(11, "feet"),
  11744. weight: math.unit(1400, "lb"),
  11745. name: "Back",
  11746. image: {
  11747. source: "./media/characters/cordite/back.svg",
  11748. extra: 1938/1837,
  11749. bottom: 10/1948
  11750. }
  11751. },
  11752. feral: {
  11753. height: math.unit(2, "feet"),
  11754. weight: math.unit(90, "lb"),
  11755. name: "Feral",
  11756. image: {
  11757. source: "./media/characters/cordite/feral.svg",
  11758. extra: 1260 / 755,
  11759. bottom: 0.05
  11760. }
  11761. },
  11762. },
  11763. [
  11764. {
  11765. name: "Normal",
  11766. height: math.unit(11, "feet"),
  11767. default: true
  11768. },
  11769. ]
  11770. ))
  11771. characterMakers.push(() => makeCharacter(
  11772. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  11773. {
  11774. front: {
  11775. height: math.unit(6, "feet"),
  11776. weight: math.unit(150, "lb"),
  11777. name: "Front",
  11778. image: {
  11779. source: "./media/characters/pianostrong/front.svg",
  11780. extra: 6577 / 6254,
  11781. bottom: 0.02
  11782. }
  11783. },
  11784. side: {
  11785. height: math.unit(6, "feet"),
  11786. weight: math.unit(150, "lb"),
  11787. name: "Side",
  11788. image: {
  11789. source: "./media/characters/pianostrong/side.svg",
  11790. extra: 6106 / 5730
  11791. }
  11792. },
  11793. back: {
  11794. height: math.unit(6, "feet"),
  11795. weight: math.unit(150, "lb"),
  11796. name: "Back",
  11797. image: {
  11798. source: "./media/characters/pianostrong/back.svg",
  11799. extra: 6085 / 5733,
  11800. bottom: 0.01
  11801. }
  11802. },
  11803. },
  11804. [
  11805. {
  11806. name: "Macro",
  11807. height: math.unit(100, "feet")
  11808. },
  11809. {
  11810. name: "Macro+",
  11811. height: math.unit(300, "feet"),
  11812. default: true
  11813. },
  11814. {
  11815. name: "Macro++",
  11816. height: math.unit(1000, "feet")
  11817. },
  11818. ]
  11819. ))
  11820. characterMakers.push(() => makeCharacter(
  11821. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  11822. {
  11823. front: {
  11824. height: math.unit(6, "feet"),
  11825. weight: math.unit(150, "lb"),
  11826. name: "Front",
  11827. image: {
  11828. source: "./media/characters/kona/front.svg",
  11829. extra: 2960 / 2629,
  11830. bottom: 0.005
  11831. }
  11832. },
  11833. },
  11834. [
  11835. {
  11836. name: "Normal",
  11837. height: math.unit(11 + 8 / 12, "feet")
  11838. },
  11839. {
  11840. name: "Macro",
  11841. height: math.unit(850, "feet"),
  11842. default: true
  11843. },
  11844. {
  11845. name: "Macro+",
  11846. height: math.unit(1.5, "km"),
  11847. default: true
  11848. },
  11849. {
  11850. name: "Megamacro",
  11851. height: math.unit(80, "miles")
  11852. },
  11853. {
  11854. name: "Gigamacro",
  11855. height: math.unit(3500, "miles")
  11856. },
  11857. ]
  11858. ))
  11859. characterMakers.push(() => makeCharacter(
  11860. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  11861. {
  11862. side: {
  11863. height: math.unit(1.9, "meters"),
  11864. weight: math.unit(326, "kg"),
  11865. name: "Side",
  11866. image: {
  11867. source: "./media/characters/levi/side.svg",
  11868. extra: 1704 / 1334,
  11869. bottom: 0.02
  11870. }
  11871. },
  11872. },
  11873. [
  11874. {
  11875. name: "Normal",
  11876. height: math.unit(1.9, "meters"),
  11877. default: true
  11878. },
  11879. {
  11880. name: "Macro",
  11881. height: math.unit(20, "meters")
  11882. },
  11883. {
  11884. name: "Macro+",
  11885. height: math.unit(200, "meters")
  11886. },
  11887. {
  11888. name: "Megamacro",
  11889. height: math.unit(2, "km")
  11890. },
  11891. {
  11892. name: "Megamacro+",
  11893. height: math.unit(20, "km")
  11894. },
  11895. {
  11896. name: "Gigamacro",
  11897. height: math.unit(2500, "km")
  11898. },
  11899. {
  11900. name: "Gigamacro+",
  11901. height: math.unit(120000, "km")
  11902. },
  11903. {
  11904. name: "Teramacro",
  11905. height: math.unit(7.77e6, "km")
  11906. },
  11907. ]
  11908. ))
  11909. characterMakers.push(() => makeCharacter(
  11910. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  11911. {
  11912. front: {
  11913. height: math.unit(6 + 4/12, "feet"),
  11914. weight: math.unit(190, "lb"),
  11915. name: "Front",
  11916. image: {
  11917. source: "./media/characters/bmc/front.svg",
  11918. extra: 1626/1472,
  11919. bottom: 79/1705
  11920. }
  11921. },
  11922. back: {
  11923. height: math.unit(6 + 4/12, "feet"),
  11924. weight: math.unit(190, "lb"),
  11925. name: "Back",
  11926. image: {
  11927. source: "./media/characters/bmc/back.svg",
  11928. extra: 1640/1479,
  11929. bottom: 45/1685
  11930. }
  11931. },
  11932. frontArmor: {
  11933. height: math.unit(6 + 4/12, "feet"),
  11934. weight: math.unit(190, "lb"),
  11935. name: "Front-armor",
  11936. image: {
  11937. source: "./media/characters/bmc/front-armor.svg",
  11938. extra: 1538/1468,
  11939. bottom: 79/1617
  11940. }
  11941. },
  11942. },
  11943. [
  11944. {
  11945. name: "Human-sized",
  11946. height: math.unit(6 + 4 / 12, "feet")
  11947. },
  11948. {
  11949. name: "Interactive Size",
  11950. height: math.unit(25, "feet")
  11951. },
  11952. {
  11953. name: "Small",
  11954. height: math.unit(250, "feet")
  11955. },
  11956. {
  11957. name: "Normal",
  11958. height: math.unit(1250, "feet"),
  11959. default: true
  11960. },
  11961. {
  11962. name: "Good Day",
  11963. height: math.unit(88, "miles")
  11964. },
  11965. {
  11966. name: "Largest Measured Size",
  11967. height: math.unit(105.960, "galaxies")
  11968. },
  11969. ]
  11970. ))
  11971. characterMakers.push(() => makeCharacter(
  11972. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  11973. {
  11974. front: {
  11975. height: math.unit(20, "feet"),
  11976. weight: math.unit(2016, "kg"),
  11977. name: "Front",
  11978. image: {
  11979. source: "./media/characters/sven-the-kaiju/front.svg",
  11980. extra: 1277/1250,
  11981. bottom: 35/1312
  11982. }
  11983. },
  11984. mouth: {
  11985. height: math.unit(1.85, "feet"),
  11986. name: "Mouth",
  11987. image: {
  11988. source: "./media/characters/sven-the-kaiju/mouth.svg"
  11989. }
  11990. },
  11991. },
  11992. [
  11993. {
  11994. name: "Fairy",
  11995. height: math.unit(6, "inches")
  11996. },
  11997. {
  11998. name: "Normal",
  11999. height: math.unit(20, "feet"),
  12000. default: true
  12001. },
  12002. {
  12003. name: "Rampage",
  12004. height: math.unit(200, "feet")
  12005. },
  12006. {
  12007. name: "Archfey Forest Guardian",
  12008. height: math.unit(1, "mile")
  12009. },
  12010. ]
  12011. ))
  12012. characterMakers.push(() => makeCharacter(
  12013. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  12014. {
  12015. front: {
  12016. height: math.unit(4, "meters"),
  12017. weight: math.unit(2, "tons"),
  12018. name: "Front",
  12019. image: {
  12020. source: "./media/characters/marik/front.svg",
  12021. extra: 1057 / 1003,
  12022. bottom: 0.08
  12023. }
  12024. },
  12025. },
  12026. [
  12027. {
  12028. name: "Normal",
  12029. height: math.unit(4, "meters"),
  12030. default: true
  12031. },
  12032. {
  12033. name: "Macro",
  12034. height: math.unit(20, "meters")
  12035. },
  12036. {
  12037. name: "Megamacro",
  12038. height: math.unit(50, "km")
  12039. },
  12040. {
  12041. name: "Gigamacro",
  12042. height: math.unit(100, "km")
  12043. },
  12044. {
  12045. name: "Alpha Macro",
  12046. height: math.unit(7.88e7, "yottameters")
  12047. },
  12048. ]
  12049. ))
  12050. characterMakers.push(() => makeCharacter(
  12051. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  12052. {
  12053. front: {
  12054. height: math.unit(6, "feet"),
  12055. weight: math.unit(110, "lb"),
  12056. name: "Front",
  12057. image: {
  12058. source: "./media/characters/mel/front.svg",
  12059. extra: 736 / 617,
  12060. bottom: 0.017
  12061. }
  12062. },
  12063. },
  12064. [
  12065. {
  12066. name: "Pico",
  12067. height: math.unit(3, "pm")
  12068. },
  12069. {
  12070. name: "Nano",
  12071. height: math.unit(3, "nm")
  12072. },
  12073. {
  12074. name: "Micro",
  12075. height: math.unit(0.3, "mm"),
  12076. default: true
  12077. },
  12078. {
  12079. name: "Micro+",
  12080. height: math.unit(3, "mm")
  12081. },
  12082. {
  12083. name: "Normal",
  12084. height: math.unit(5 + 10.5 / 12, "feet")
  12085. },
  12086. ]
  12087. ))
  12088. characterMakers.push(() => makeCharacter(
  12089. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  12090. {
  12091. kaiju: {
  12092. height: math.unit(1.75, "meters"),
  12093. weight: math.unit(55, "kg"),
  12094. name: "Kaiju",
  12095. image: {
  12096. source: "./media/characters/lykonous/kaiju.svg",
  12097. extra: 1055 / 946,
  12098. bottom: 0.135
  12099. }
  12100. },
  12101. },
  12102. [
  12103. {
  12104. name: "Normal",
  12105. height: math.unit(2.5, "meters"),
  12106. default: true
  12107. },
  12108. {
  12109. name: "Kaiju Dragon",
  12110. height: math.unit(60, "meters")
  12111. },
  12112. {
  12113. name: "Mega Kaiju",
  12114. height: math.unit(120, "km")
  12115. },
  12116. {
  12117. name: "Giga Kaiju",
  12118. height: math.unit(200, "megameters")
  12119. },
  12120. {
  12121. name: "Terra Kaiju",
  12122. height: math.unit(400, "gigameters")
  12123. },
  12124. {
  12125. name: "Kaiju Dragon God",
  12126. height: math.unit(13000, "exaparsecs")
  12127. },
  12128. ]
  12129. ))
  12130. characterMakers.push(() => makeCharacter(
  12131. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  12132. {
  12133. front: {
  12134. height: math.unit(6, "feet"),
  12135. weight: math.unit(150, "lb"),
  12136. name: "Front",
  12137. image: {
  12138. source: "./media/characters/blü/front.svg",
  12139. extra: 1883 / 1564,
  12140. bottom: 0.031
  12141. }
  12142. },
  12143. },
  12144. [
  12145. {
  12146. name: "Normal",
  12147. height: math.unit(13, "feet"),
  12148. default: true
  12149. },
  12150. {
  12151. name: "Big Boi",
  12152. height: math.unit(150, "meters")
  12153. },
  12154. {
  12155. name: "Mini Stomper",
  12156. height: math.unit(300, "meters")
  12157. },
  12158. {
  12159. name: "Macro",
  12160. height: math.unit(1000, "meters")
  12161. },
  12162. {
  12163. name: "Megamacro",
  12164. height: math.unit(11000, "meters")
  12165. },
  12166. {
  12167. name: "Gigamacro",
  12168. height: math.unit(11000, "km")
  12169. },
  12170. {
  12171. name: "Teramacro",
  12172. height: math.unit(420000, "km")
  12173. },
  12174. {
  12175. name: "Examacro",
  12176. height: math.unit(120, "parsecs")
  12177. },
  12178. {
  12179. name: "God Tho",
  12180. height: math.unit(98000000000, "parsecs")
  12181. },
  12182. ]
  12183. ))
  12184. characterMakers.push(() => makeCharacter(
  12185. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  12186. {
  12187. taurFront: {
  12188. height: math.unit(6, "feet"),
  12189. weight: math.unit(200, "lb"),
  12190. name: "Taur (Front)",
  12191. image: {
  12192. source: "./media/characters/scales/taur-front.svg",
  12193. extra: 1,
  12194. bottom: 0.05
  12195. }
  12196. },
  12197. taurBack: {
  12198. height: math.unit(6, "feet"),
  12199. weight: math.unit(200, "lb"),
  12200. name: "Taur (Back)",
  12201. image: {
  12202. source: "./media/characters/scales/taur-back.svg",
  12203. extra: 1,
  12204. bottom: 0.08
  12205. }
  12206. },
  12207. anthro: {
  12208. height: math.unit(6 * 7 / 12, "feet"),
  12209. weight: math.unit(100, "lb"),
  12210. name: "Anthro",
  12211. image: {
  12212. source: "./media/characters/scales/anthro.svg",
  12213. extra: 1,
  12214. bottom: 0.06
  12215. }
  12216. },
  12217. },
  12218. [
  12219. {
  12220. name: "Normal",
  12221. height: math.unit(12, "feet"),
  12222. default: true
  12223. },
  12224. ]
  12225. ))
  12226. characterMakers.push(() => makeCharacter(
  12227. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  12228. {
  12229. front: {
  12230. height: math.unit(6, "feet"),
  12231. weight: math.unit(150, "lb"),
  12232. name: "Front",
  12233. image: {
  12234. source: "./media/characters/koragos/front.svg",
  12235. extra: 841 / 794,
  12236. bottom: 0.035
  12237. }
  12238. },
  12239. back: {
  12240. height: math.unit(6, "feet"),
  12241. weight: math.unit(150, "lb"),
  12242. name: "Back",
  12243. image: {
  12244. source: "./media/characters/koragos/back.svg",
  12245. extra: 841 / 810,
  12246. bottom: 0.022
  12247. }
  12248. },
  12249. },
  12250. [
  12251. {
  12252. name: "Normal",
  12253. height: math.unit(6 + 11 / 12, "feet"),
  12254. default: true
  12255. },
  12256. {
  12257. name: "Macro",
  12258. height: math.unit(490, "feet")
  12259. },
  12260. {
  12261. name: "Megamacro",
  12262. height: math.unit(10, "miles")
  12263. },
  12264. {
  12265. name: "Gigamacro",
  12266. height: math.unit(50, "miles")
  12267. },
  12268. ]
  12269. ))
  12270. characterMakers.push(() => makeCharacter(
  12271. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  12272. {
  12273. front: {
  12274. height: math.unit(6, "feet"),
  12275. weight: math.unit(250, "lb"),
  12276. name: "Front",
  12277. image: {
  12278. source: "./media/characters/xylrem/front.svg",
  12279. extra: 3323 / 3050,
  12280. bottom: 0.065
  12281. }
  12282. },
  12283. },
  12284. [
  12285. {
  12286. name: "Micro",
  12287. height: math.unit(4, "feet")
  12288. },
  12289. {
  12290. name: "Normal",
  12291. height: math.unit(16, "feet"),
  12292. default: true
  12293. },
  12294. {
  12295. name: "Macro",
  12296. height: math.unit(2720, "feet")
  12297. },
  12298. {
  12299. name: "Megamacro",
  12300. height: math.unit(25000, "miles")
  12301. },
  12302. ]
  12303. ))
  12304. characterMakers.push(() => makeCharacter(
  12305. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  12306. {
  12307. front: {
  12308. height: math.unit(8, "feet"),
  12309. weight: math.unit(250, "kg"),
  12310. name: "Front",
  12311. image: {
  12312. source: "./media/characters/ikideru/front.svg",
  12313. extra: 930 / 870,
  12314. bottom: 0.087
  12315. }
  12316. },
  12317. back: {
  12318. height: math.unit(8, "feet"),
  12319. weight: math.unit(250, "kg"),
  12320. name: "Back",
  12321. image: {
  12322. source: "./media/characters/ikideru/back.svg",
  12323. extra: 919 / 852,
  12324. bottom: 0.055
  12325. }
  12326. },
  12327. },
  12328. [
  12329. {
  12330. name: "Rare",
  12331. height: math.unit(8, "feet"),
  12332. default: true
  12333. },
  12334. {
  12335. name: "Playful Loom",
  12336. height: math.unit(80, "feet")
  12337. },
  12338. {
  12339. name: "City Leaner",
  12340. height: math.unit(230, "feet")
  12341. },
  12342. {
  12343. name: "Megamacro",
  12344. height: math.unit(2500, "feet")
  12345. },
  12346. {
  12347. name: "Gigamacro",
  12348. height: math.unit(26400, "feet")
  12349. },
  12350. {
  12351. name: "Tectonic Shifter",
  12352. height: math.unit(1.7, "megameters")
  12353. },
  12354. {
  12355. name: "Planet Carer",
  12356. height: math.unit(21, "megameters")
  12357. },
  12358. {
  12359. name: "God",
  12360. height: math.unit(11157.22, "parsecs")
  12361. },
  12362. ]
  12363. ))
  12364. characterMakers.push(() => makeCharacter(
  12365. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  12366. {
  12367. front: {
  12368. height: math.unit(6, "feet"),
  12369. weight: math.unit(120, "lb"),
  12370. name: "Front",
  12371. image: {
  12372. source: "./media/characters/neo/front.svg"
  12373. }
  12374. },
  12375. },
  12376. [
  12377. {
  12378. name: "Micro",
  12379. height: math.unit(2, "inches"),
  12380. default: true
  12381. },
  12382. {
  12383. name: "Human Size",
  12384. height: math.unit(5 + 8 / 12, "feet")
  12385. },
  12386. ]
  12387. ))
  12388. characterMakers.push(() => makeCharacter(
  12389. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  12390. {
  12391. front: {
  12392. height: math.unit(13 + 10 / 12, "feet"),
  12393. weight: math.unit(5320, "lb"),
  12394. name: "Front",
  12395. image: {
  12396. source: "./media/characters/chauncey-chantz/front.svg",
  12397. extra: 1587 / 1435,
  12398. bottom: 0.02
  12399. }
  12400. },
  12401. },
  12402. [
  12403. {
  12404. name: "Normal",
  12405. height: math.unit(13 + 10 / 12, "feet"),
  12406. default: true
  12407. },
  12408. {
  12409. name: "Macro",
  12410. height: math.unit(45, "feet")
  12411. },
  12412. {
  12413. name: "Megamacro",
  12414. height: math.unit(250, "miles")
  12415. },
  12416. {
  12417. name: "Planetary",
  12418. height: math.unit(10000, "miles")
  12419. },
  12420. {
  12421. name: "Galactic",
  12422. height: math.unit(40000, "parsecs")
  12423. },
  12424. {
  12425. name: "Universal",
  12426. height: math.unit(1, "yottameter")
  12427. },
  12428. ]
  12429. ))
  12430. characterMakers.push(() => makeCharacter(
  12431. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  12432. {
  12433. front: {
  12434. height: math.unit(6, "feet"),
  12435. weight: math.unit(150, "lb"),
  12436. name: "Front",
  12437. image: {
  12438. source: "./media/characters/epifox/front.svg",
  12439. extra: 1,
  12440. bottom: 0.075
  12441. }
  12442. },
  12443. },
  12444. [
  12445. {
  12446. name: "Micro",
  12447. height: math.unit(6, "inches")
  12448. },
  12449. {
  12450. name: "Normal",
  12451. height: math.unit(12, "feet"),
  12452. default: true
  12453. },
  12454. {
  12455. name: "Macro",
  12456. height: math.unit(3810, "feet")
  12457. },
  12458. {
  12459. name: "Megamacro",
  12460. height: math.unit(500, "miles")
  12461. },
  12462. ]
  12463. ))
  12464. characterMakers.push(() => makeCharacter(
  12465. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  12466. {
  12467. front: {
  12468. height: math.unit(1.8796, "m"),
  12469. weight: math.unit(230, "lb"),
  12470. name: "Front",
  12471. image: {
  12472. source: "./media/characters/colin-t/front.svg",
  12473. extra: 1272 / 1193,
  12474. bottom: 0.07
  12475. }
  12476. },
  12477. },
  12478. [
  12479. {
  12480. name: "Micro",
  12481. height: math.unit(0.571, "meters")
  12482. },
  12483. {
  12484. name: "Normal",
  12485. height: math.unit(1.8796, "meters"),
  12486. default: true
  12487. },
  12488. {
  12489. name: "Tall",
  12490. height: math.unit(4, "meters")
  12491. },
  12492. {
  12493. name: "Macro",
  12494. height: math.unit(67.241, "meters")
  12495. },
  12496. {
  12497. name: "Megamacro",
  12498. height: math.unit(371.856, "meters")
  12499. },
  12500. {
  12501. name: "Planetary",
  12502. height: math.unit(12631.5689, "km")
  12503. },
  12504. ]
  12505. ))
  12506. characterMakers.push(() => makeCharacter(
  12507. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  12508. {
  12509. front: {
  12510. height: math.unit(1.85, "meters"),
  12511. weight: math.unit(80, "kg"),
  12512. name: "Front",
  12513. image: {
  12514. source: "./media/characters/matvei/front.svg",
  12515. extra: 614 / 594,
  12516. bottom: 0.01
  12517. }
  12518. },
  12519. },
  12520. [
  12521. {
  12522. name: "Normal",
  12523. height: math.unit(1.85, "meters"),
  12524. default: true
  12525. },
  12526. ]
  12527. ))
  12528. characterMakers.push(() => makeCharacter(
  12529. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  12530. {
  12531. front: {
  12532. height: math.unit(5 + 9 / 12, "feet"),
  12533. weight: math.unit(70, "lb"),
  12534. name: "Front",
  12535. image: {
  12536. source: "./media/characters/quincy/front.svg",
  12537. extra: 3041 / 2751
  12538. }
  12539. },
  12540. back: {
  12541. height: math.unit(5 + 9 / 12, "feet"),
  12542. weight: math.unit(70, "lb"),
  12543. name: "Back",
  12544. image: {
  12545. source: "./media/characters/quincy/back.svg",
  12546. extra: 3041 / 2751
  12547. }
  12548. },
  12549. flying: {
  12550. height: math.unit(5 + 4 / 12, "feet"),
  12551. weight: math.unit(70, "lb"),
  12552. name: "Flying",
  12553. image: {
  12554. source: "./media/characters/quincy/flying.svg",
  12555. extra: 1044 / 930
  12556. }
  12557. },
  12558. },
  12559. [
  12560. {
  12561. name: "Micro",
  12562. height: math.unit(3, "cm")
  12563. },
  12564. {
  12565. name: "Normal",
  12566. height: math.unit(5 + 9 / 12, "feet")
  12567. },
  12568. {
  12569. name: "Macro",
  12570. height: math.unit(200, "meters"),
  12571. default: true
  12572. },
  12573. {
  12574. name: "Megamacro",
  12575. height: math.unit(1000, "meters")
  12576. },
  12577. ]
  12578. ))
  12579. characterMakers.push(() => makeCharacter(
  12580. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  12581. {
  12582. front: {
  12583. height: math.unit(3 + 11/12, "feet"),
  12584. weight: math.unit(50, "lb"),
  12585. name: "Front",
  12586. image: {
  12587. source: "./media/characters/vanrel/front.svg",
  12588. extra: 1104/949,
  12589. bottom: 52/1156
  12590. }
  12591. },
  12592. back: {
  12593. height: math.unit(3 + 11/12, "feet"),
  12594. weight: math.unit(50, "lb"),
  12595. name: "Back",
  12596. image: {
  12597. source: "./media/characters/vanrel/back.svg",
  12598. extra: 1119/976,
  12599. bottom: 37/1156
  12600. }
  12601. },
  12602. tome: {
  12603. height: math.unit(1.35, "feet"),
  12604. weight: math.unit(10, "lb"),
  12605. name: "Vanrel's Tome",
  12606. rename: true,
  12607. image: {
  12608. source: "./media/characters/vanrel/tome.svg"
  12609. }
  12610. },
  12611. beans: {
  12612. height: math.unit(0.89, "feet"),
  12613. name: "Beans",
  12614. image: {
  12615. source: "./media/characters/vanrel/beans.svg"
  12616. }
  12617. },
  12618. },
  12619. [
  12620. {
  12621. name: "Normal",
  12622. height: math.unit(3 + 11/12, "feet"),
  12623. default: true
  12624. },
  12625. ]
  12626. ))
  12627. characterMakers.push(() => makeCharacter(
  12628. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  12629. {
  12630. front: {
  12631. height: math.unit(7 + 5 / 12, "feet"),
  12632. name: "Front",
  12633. image: {
  12634. source: "./media/characters/kuiper-vanrel/front.svg",
  12635. extra: 1219/1169,
  12636. bottom: 69/1288
  12637. }
  12638. },
  12639. back: {
  12640. height: math.unit(7 + 5 / 12, "feet"),
  12641. name: "Back",
  12642. image: {
  12643. source: "./media/characters/kuiper-vanrel/back.svg",
  12644. extra: 1236/1193,
  12645. bottom: 27/1263
  12646. }
  12647. },
  12648. foot: {
  12649. height: math.unit(0.55, "meters"),
  12650. name: "Foot",
  12651. image: {
  12652. source: "./media/characters/kuiper-vanrel/foot.svg",
  12653. }
  12654. },
  12655. battle: {
  12656. height: math.unit(6.824, "feet"),
  12657. name: "Battle",
  12658. image: {
  12659. source: "./media/characters/kuiper-vanrel/battle.svg",
  12660. extra: 1466 / 1327,
  12661. bottom: 29 / 1492.5
  12662. }
  12663. },
  12664. meerkui: {
  12665. height: math.unit(18, "inches"),
  12666. name: "Meerkui",
  12667. image: {
  12668. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  12669. extra: 1354/1289,
  12670. bottom: 69/1423
  12671. }
  12672. },
  12673. },
  12674. [
  12675. {
  12676. name: "Normal",
  12677. height: math.unit(7 + 5 / 12, "feet"),
  12678. default: true
  12679. },
  12680. ]
  12681. ))
  12682. characterMakers.push(() => makeCharacter(
  12683. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  12684. {
  12685. front: {
  12686. height: math.unit(8 + 5 / 12, "feet"),
  12687. name: "Front",
  12688. image: {
  12689. source: "./media/characters/keset-vanrel/front.svg",
  12690. extra: 1231/1148,
  12691. bottom: 82/1313
  12692. }
  12693. },
  12694. back: {
  12695. height: math.unit(8 + 5 / 12, "feet"),
  12696. name: "Back",
  12697. image: {
  12698. source: "./media/characters/keset-vanrel/back.svg",
  12699. extra: 1240/1174,
  12700. bottom: 33/1273
  12701. }
  12702. },
  12703. hand: {
  12704. height: math.unit(0.6, "meters"),
  12705. name: "Hand",
  12706. image: {
  12707. source: "./media/characters/keset-vanrel/hand.svg"
  12708. }
  12709. },
  12710. foot: {
  12711. height: math.unit(0.94978, "meters"),
  12712. name: "Foot",
  12713. image: {
  12714. source: "./media/characters/keset-vanrel/foot.svg"
  12715. }
  12716. },
  12717. battle: {
  12718. height: math.unit(7.408, "feet"),
  12719. name: "Battle",
  12720. image: {
  12721. source: "./media/characters/keset-vanrel/battle.svg",
  12722. extra: 1890 / 1386,
  12723. bottom: 73.28 / 1970
  12724. }
  12725. },
  12726. },
  12727. [
  12728. {
  12729. name: "Normal",
  12730. height: math.unit(8 + 5 / 12, "feet"),
  12731. default: true
  12732. },
  12733. ]
  12734. ))
  12735. characterMakers.push(() => makeCharacter(
  12736. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  12737. {
  12738. front: {
  12739. height: math.unit(6, "feet"),
  12740. weight: math.unit(150, "lb"),
  12741. name: "Front",
  12742. image: {
  12743. source: "./media/characters/neos/front.svg",
  12744. extra: 1696 / 992,
  12745. bottom: 0.14
  12746. }
  12747. },
  12748. },
  12749. [
  12750. {
  12751. name: "Normal",
  12752. height: math.unit(54, "cm"),
  12753. default: true
  12754. },
  12755. {
  12756. name: "Macro",
  12757. height: math.unit(100, "m")
  12758. },
  12759. {
  12760. name: "Megamacro",
  12761. height: math.unit(10, "km")
  12762. },
  12763. {
  12764. name: "Megamacro+",
  12765. height: math.unit(100, "km")
  12766. },
  12767. {
  12768. name: "Gigamacro",
  12769. height: math.unit(100, "Mm")
  12770. },
  12771. {
  12772. name: "Teramacro",
  12773. height: math.unit(100, "Gm")
  12774. },
  12775. {
  12776. name: "Examacro",
  12777. height: math.unit(100, "Em")
  12778. },
  12779. {
  12780. name: "Godly",
  12781. height: math.unit(10000, "Ym")
  12782. },
  12783. {
  12784. name: "Beyond Godly",
  12785. height: math.unit(25, "multiverses")
  12786. },
  12787. ]
  12788. ))
  12789. characterMakers.push(() => makeCharacter(
  12790. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  12791. {
  12792. feminine: {
  12793. height: math.unit(5, "feet"),
  12794. weight: math.unit(100, "lb"),
  12795. name: "Feminine",
  12796. image: {
  12797. source: "./media/characters/sammy-mouse/feminine.svg",
  12798. extra: 2526 / 2425,
  12799. bottom: 0.123
  12800. }
  12801. },
  12802. masculine: {
  12803. height: math.unit(5, "feet"),
  12804. weight: math.unit(100, "lb"),
  12805. name: "Masculine",
  12806. image: {
  12807. source: "./media/characters/sammy-mouse/masculine.svg",
  12808. extra: 2526 / 2425,
  12809. bottom: 0.123
  12810. }
  12811. },
  12812. },
  12813. [
  12814. {
  12815. name: "Micro",
  12816. height: math.unit(5, "inches")
  12817. },
  12818. {
  12819. name: "Normal",
  12820. height: math.unit(5, "feet"),
  12821. default: true
  12822. },
  12823. {
  12824. name: "Macro",
  12825. height: math.unit(60, "feet")
  12826. },
  12827. ]
  12828. ))
  12829. characterMakers.push(() => makeCharacter(
  12830. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  12831. {
  12832. front: {
  12833. height: math.unit(4, "feet"),
  12834. weight: math.unit(50, "lb"),
  12835. name: "Front",
  12836. image: {
  12837. source: "./media/characters/kole/front.svg",
  12838. extra: 1423 / 1303,
  12839. bottom: 0.025
  12840. }
  12841. },
  12842. back: {
  12843. height: math.unit(4, "feet"),
  12844. weight: math.unit(50, "lb"),
  12845. name: "Back",
  12846. image: {
  12847. source: "./media/characters/kole/back.svg",
  12848. extra: 1426 / 1280,
  12849. bottom: 0.02
  12850. }
  12851. },
  12852. },
  12853. [
  12854. {
  12855. name: "Normal",
  12856. height: math.unit(4, "feet"),
  12857. default: true
  12858. },
  12859. ]
  12860. ))
  12861. characterMakers.push(() => makeCharacter(
  12862. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  12863. {
  12864. front: {
  12865. height: math.unit(2.5, "feet"),
  12866. weight: math.unit(32, "lb"),
  12867. name: "Front",
  12868. image: {
  12869. source: "./media/characters/rufran/front.svg",
  12870. extra: 1313/885,
  12871. bottom: 94/1407
  12872. }
  12873. },
  12874. side: {
  12875. height: math.unit(2.5, "feet"),
  12876. weight: math.unit(32, "lb"),
  12877. name: "Side",
  12878. image: {
  12879. source: "./media/characters/rufran/side.svg",
  12880. extra: 1109/852,
  12881. bottom: 118/1227
  12882. }
  12883. },
  12884. back: {
  12885. height: math.unit(2.5, "feet"),
  12886. weight: math.unit(32, "lb"),
  12887. name: "Back",
  12888. image: {
  12889. source: "./media/characters/rufran/back.svg",
  12890. extra: 1280/878,
  12891. bottom: 131/1411
  12892. }
  12893. },
  12894. mouth: {
  12895. height: math.unit(1.13, "feet"),
  12896. name: "Mouth",
  12897. image: {
  12898. source: "./media/characters/rufran/mouth.svg"
  12899. }
  12900. },
  12901. foot: {
  12902. height: math.unit(1.33, "feet"),
  12903. name: "Foot",
  12904. image: {
  12905. source: "./media/characters/rufran/foot.svg"
  12906. }
  12907. },
  12908. koboldFront: {
  12909. height: math.unit(2 + 6 / 12, "feet"),
  12910. weight: math.unit(20, "lb"),
  12911. name: "Front (Kobold)",
  12912. image: {
  12913. source: "./media/characters/rufran/kobold-front.svg",
  12914. extra: 2041 / 1839,
  12915. bottom: 0.055
  12916. }
  12917. },
  12918. koboldBack: {
  12919. height: math.unit(2 + 6 / 12, "feet"),
  12920. weight: math.unit(20, "lb"),
  12921. name: "Back (Kobold)",
  12922. image: {
  12923. source: "./media/characters/rufran/kobold-back.svg",
  12924. extra: 2054 / 1839,
  12925. bottom: 0.01
  12926. }
  12927. },
  12928. koboldHand: {
  12929. height: math.unit(0.2166, "meters"),
  12930. name: "Hand (Kobold)",
  12931. image: {
  12932. source: "./media/characters/rufran/kobold-hand.svg"
  12933. }
  12934. },
  12935. koboldFoot: {
  12936. height: math.unit(0.185, "meters"),
  12937. name: "Foot (Kobold)",
  12938. image: {
  12939. source: "./media/characters/rufran/kobold-foot.svg"
  12940. }
  12941. },
  12942. },
  12943. [
  12944. {
  12945. name: "Micro",
  12946. height: math.unit(1, "inch")
  12947. },
  12948. {
  12949. name: "Normal",
  12950. height: math.unit(2 + 6 / 12, "feet"),
  12951. default: true
  12952. },
  12953. {
  12954. name: "Big",
  12955. height: math.unit(60, "feet")
  12956. },
  12957. {
  12958. name: "Macro",
  12959. height: math.unit(325, "feet")
  12960. },
  12961. ]
  12962. ))
  12963. characterMakers.push(() => makeCharacter(
  12964. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  12965. {
  12966. front: {
  12967. height: math.unit(0.3, "meters"),
  12968. weight: math.unit(3.5, "kg"),
  12969. name: "Front",
  12970. image: {
  12971. source: "./media/characters/chip/front.svg",
  12972. extra: 748 / 674
  12973. }
  12974. },
  12975. },
  12976. [
  12977. {
  12978. name: "Micro",
  12979. height: math.unit(1, "inch"),
  12980. default: true
  12981. },
  12982. ]
  12983. ))
  12984. characterMakers.push(() => makeCharacter(
  12985. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  12986. {
  12987. side: {
  12988. height: math.unit(2.3, "meters"),
  12989. weight: math.unit(3500, "lb"),
  12990. name: "Side",
  12991. image: {
  12992. source: "./media/characters/torvid/side.svg",
  12993. extra: 1972 / 722,
  12994. bottom: 0.035
  12995. }
  12996. },
  12997. },
  12998. [
  12999. {
  13000. name: "Normal",
  13001. height: math.unit(2.3, "meters"),
  13002. default: true
  13003. },
  13004. ]
  13005. ))
  13006. characterMakers.push(() => makeCharacter(
  13007. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  13008. {
  13009. front: {
  13010. height: math.unit(2, "meters"),
  13011. weight: math.unit(150.5, "kg"),
  13012. name: "Front",
  13013. image: {
  13014. source: "./media/characters/susan/front.svg",
  13015. extra: 693 / 635,
  13016. bottom: 0.05
  13017. }
  13018. },
  13019. },
  13020. [
  13021. {
  13022. name: "Megamacro",
  13023. height: math.unit(505, "miles"),
  13024. default: true
  13025. },
  13026. ]
  13027. ))
  13028. characterMakers.push(() => makeCharacter(
  13029. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  13030. {
  13031. front: {
  13032. height: math.unit(6, "feet"),
  13033. weight: math.unit(150, "lb"),
  13034. name: "Front",
  13035. image: {
  13036. source: "./media/characters/raindrops/front.svg",
  13037. extra: 2655 / 2461,
  13038. bottom: 49 / 2705
  13039. }
  13040. },
  13041. back: {
  13042. height: math.unit(6, "feet"),
  13043. weight: math.unit(150, "lb"),
  13044. name: "Back",
  13045. image: {
  13046. source: "./media/characters/raindrops/back.svg",
  13047. extra: 2574 / 2400,
  13048. bottom: 65 / 2634
  13049. }
  13050. },
  13051. },
  13052. [
  13053. {
  13054. name: "Micro",
  13055. height: math.unit(6, "inches")
  13056. },
  13057. {
  13058. name: "Normal",
  13059. height: math.unit(6 + 2 / 12, "feet")
  13060. },
  13061. {
  13062. name: "Macro",
  13063. height: math.unit(131, "feet"),
  13064. default: true
  13065. },
  13066. {
  13067. name: "Megamacro",
  13068. height: math.unit(15, "miles")
  13069. },
  13070. {
  13071. name: "Gigamacro",
  13072. height: math.unit(4000, "miles")
  13073. },
  13074. {
  13075. name: "Teramacro",
  13076. height: math.unit(315000, "miles")
  13077. },
  13078. ]
  13079. ))
  13080. characterMakers.push(() => makeCharacter(
  13081. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  13082. {
  13083. front: {
  13084. height: math.unit(2.794, "meters"),
  13085. weight: math.unit(325, "kg"),
  13086. name: "Front",
  13087. image: {
  13088. source: "./media/characters/tezwa/front.svg",
  13089. extra: 2083 / 1906,
  13090. bottom: 0.031
  13091. }
  13092. },
  13093. foot: {
  13094. height: math.unit(0.687, "meters"),
  13095. name: "Foot",
  13096. image: {
  13097. source: "./media/characters/tezwa/foot.svg"
  13098. }
  13099. },
  13100. },
  13101. [
  13102. {
  13103. name: "Normal",
  13104. height: math.unit(9 + 2 / 12, "feet"),
  13105. default: true
  13106. },
  13107. ]
  13108. ))
  13109. characterMakers.push(() => makeCharacter(
  13110. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  13111. {
  13112. front: {
  13113. height: math.unit(58, "feet"),
  13114. weight: math.unit(89000, "lb"),
  13115. name: "Front",
  13116. image: {
  13117. source: "./media/characters/typhus/front.svg",
  13118. extra: 816 / 800,
  13119. bottom: 0.065
  13120. }
  13121. },
  13122. },
  13123. [
  13124. {
  13125. name: "Macro",
  13126. height: math.unit(58, "feet"),
  13127. default: true
  13128. },
  13129. ]
  13130. ))
  13131. characterMakers.push(() => makeCharacter(
  13132. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  13133. {
  13134. front: {
  13135. height: math.unit(12, "feet"),
  13136. weight: math.unit(6, "tonnes"),
  13137. name: "Front",
  13138. image: {
  13139. source: "./media/characters/lyra-von-wulf/front.svg",
  13140. extra: 1,
  13141. bottom: 0.10
  13142. }
  13143. },
  13144. frontMecha: {
  13145. height: math.unit(12, "feet"),
  13146. weight: math.unit(12, "tonnes"),
  13147. name: "Front (Mecha)",
  13148. image: {
  13149. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  13150. extra: 1,
  13151. bottom: 0.042
  13152. }
  13153. },
  13154. maw: {
  13155. height: math.unit(2.2, "feet"),
  13156. name: "Maw",
  13157. image: {
  13158. source: "./media/characters/lyra-von-wulf/maw.svg"
  13159. }
  13160. },
  13161. },
  13162. [
  13163. {
  13164. name: "Normal",
  13165. height: math.unit(12, "feet"),
  13166. default: true
  13167. },
  13168. {
  13169. name: "Classic",
  13170. height: math.unit(50, "feet")
  13171. },
  13172. {
  13173. name: "Macro",
  13174. height: math.unit(500, "feet")
  13175. },
  13176. {
  13177. name: "Megamacro",
  13178. height: math.unit(1, "mile")
  13179. },
  13180. {
  13181. name: "Gigamacro",
  13182. height: math.unit(400, "miles")
  13183. },
  13184. {
  13185. name: "Teramacro",
  13186. height: math.unit(22000, "miles")
  13187. },
  13188. {
  13189. name: "Solarmacro",
  13190. height: math.unit(8600000, "miles")
  13191. },
  13192. {
  13193. name: "Galactic",
  13194. height: math.unit(1057000, "lightyears")
  13195. },
  13196. ]
  13197. ))
  13198. characterMakers.push(() => makeCharacter(
  13199. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  13200. {
  13201. front: {
  13202. height: math.unit(6 + 10 / 12, "feet"),
  13203. weight: math.unit(150, "lb"),
  13204. name: "Front",
  13205. image: {
  13206. source: "./media/characters/dixon/front.svg",
  13207. extra: 3361 / 3209,
  13208. bottom: 0.01
  13209. }
  13210. },
  13211. },
  13212. [
  13213. {
  13214. name: "Normal",
  13215. height: math.unit(6 + 10 / 12, "feet"),
  13216. default: true
  13217. },
  13218. {
  13219. name: "Big",
  13220. height: math.unit(12, "meters")
  13221. },
  13222. {
  13223. name: "Macro",
  13224. height: math.unit(500, "meters")
  13225. },
  13226. {
  13227. name: "Megamacro",
  13228. height: math.unit(2, "km")
  13229. },
  13230. ]
  13231. ))
  13232. characterMakers.push(() => makeCharacter(
  13233. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  13234. {
  13235. front: {
  13236. height: math.unit(185, "cm"),
  13237. weight: math.unit(68, "kg"),
  13238. name: "Front",
  13239. image: {
  13240. source: "./media/characters/kauko/front.svg",
  13241. extra: 1455 / 1421,
  13242. bottom: 0.03
  13243. }
  13244. },
  13245. back: {
  13246. height: math.unit(185, "cm"),
  13247. weight: math.unit(68, "kg"),
  13248. name: "Back",
  13249. image: {
  13250. source: "./media/characters/kauko/back.svg",
  13251. extra: 1455 / 1421,
  13252. bottom: 0.004
  13253. }
  13254. },
  13255. },
  13256. [
  13257. {
  13258. name: "Normal",
  13259. height: math.unit(185, "cm"),
  13260. default: true
  13261. },
  13262. ]
  13263. ))
  13264. characterMakers.push(() => makeCharacter(
  13265. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  13266. {
  13267. front: {
  13268. height: math.unit(6, "feet"),
  13269. weight: math.unit(150, "kg"),
  13270. name: "Front",
  13271. image: {
  13272. source: "./media/characters/varg/front.svg",
  13273. extra: 1108 / 1018,
  13274. bottom: 0.0375
  13275. }
  13276. },
  13277. },
  13278. [
  13279. {
  13280. name: "Normal",
  13281. height: math.unit(5, "meters")
  13282. },
  13283. {
  13284. name: "Macro",
  13285. height: math.unit(200, "meters")
  13286. },
  13287. {
  13288. name: "Megamacro",
  13289. height: math.unit(20, "kilometers")
  13290. },
  13291. {
  13292. name: "True Size",
  13293. height: math.unit(211, "km"),
  13294. default: true
  13295. },
  13296. {
  13297. name: "Gigamacro",
  13298. height: math.unit(1000, "km")
  13299. },
  13300. {
  13301. name: "Gigamacro+",
  13302. height: math.unit(8000, "km")
  13303. },
  13304. {
  13305. name: "Teramacro",
  13306. height: math.unit(1000000, "km")
  13307. },
  13308. ]
  13309. ))
  13310. characterMakers.push(() => makeCharacter(
  13311. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  13312. {
  13313. front: {
  13314. height: math.unit(7 + 7 / 12, "feet"),
  13315. weight: math.unit(267, "lb"),
  13316. name: "Front",
  13317. image: {
  13318. source: "./media/characters/dayza/front.svg",
  13319. extra: 1262 / 1200,
  13320. bottom: 0.035
  13321. }
  13322. },
  13323. side: {
  13324. height: math.unit(7 + 7 / 12, "feet"),
  13325. weight: math.unit(267, "lb"),
  13326. name: "Side",
  13327. image: {
  13328. source: "./media/characters/dayza/side.svg",
  13329. extra: 1295 / 1245,
  13330. bottom: 0.05
  13331. }
  13332. },
  13333. back: {
  13334. height: math.unit(7 + 7 / 12, "feet"),
  13335. weight: math.unit(267, "lb"),
  13336. name: "Back",
  13337. image: {
  13338. source: "./media/characters/dayza/back.svg",
  13339. extra: 1241 / 1170
  13340. }
  13341. },
  13342. },
  13343. [
  13344. {
  13345. name: "Normal",
  13346. height: math.unit(7 + 7 / 12, "feet"),
  13347. default: true
  13348. },
  13349. {
  13350. name: "Macro",
  13351. height: math.unit(155, "feet")
  13352. },
  13353. ]
  13354. ))
  13355. characterMakers.push(() => makeCharacter(
  13356. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  13357. {
  13358. front: {
  13359. height: math.unit(6 + 5 / 12, "feet"),
  13360. weight: math.unit(160, "lb"),
  13361. name: "Front",
  13362. image: {
  13363. source: "./media/characters/xanthos/front.svg",
  13364. extra: 1,
  13365. bottom: 0.04
  13366. }
  13367. },
  13368. back: {
  13369. height: math.unit(6 + 5 / 12, "feet"),
  13370. weight: math.unit(160, "lb"),
  13371. name: "Back",
  13372. image: {
  13373. source: "./media/characters/xanthos/back.svg",
  13374. extra: 1,
  13375. bottom: 0.03
  13376. }
  13377. },
  13378. hand: {
  13379. height: math.unit(0.928, "feet"),
  13380. name: "Hand",
  13381. image: {
  13382. source: "./media/characters/xanthos/hand.svg"
  13383. }
  13384. },
  13385. foot: {
  13386. height: math.unit(1.286, "feet"),
  13387. name: "Foot",
  13388. image: {
  13389. source: "./media/characters/xanthos/foot.svg"
  13390. }
  13391. },
  13392. },
  13393. [
  13394. {
  13395. name: "Normal",
  13396. height: math.unit(6 + 5 / 12, "feet"),
  13397. default: true
  13398. },
  13399. {
  13400. name: "Normal+",
  13401. height: math.unit(6, "meters")
  13402. },
  13403. {
  13404. name: "Macro",
  13405. height: math.unit(40, "feet")
  13406. },
  13407. {
  13408. name: "Macro+",
  13409. height: math.unit(200, "meters")
  13410. },
  13411. {
  13412. name: "Megamacro",
  13413. height: math.unit(20, "km")
  13414. },
  13415. {
  13416. name: "Megamacro+",
  13417. height: math.unit(100, "km")
  13418. },
  13419. {
  13420. name: "Gigamacro",
  13421. height: math.unit(200, "megameters")
  13422. },
  13423. {
  13424. name: "Gigamacro+",
  13425. height: math.unit(1.5, "gigameters")
  13426. },
  13427. ]
  13428. ))
  13429. characterMakers.push(() => makeCharacter(
  13430. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  13431. {
  13432. front: {
  13433. height: math.unit(6 + 3 / 12, "feet"),
  13434. weight: math.unit(215, "lb"),
  13435. name: "Front",
  13436. image: {
  13437. source: "./media/characters/grynn/front.svg",
  13438. extra: 4627 / 4209,
  13439. bottom: 0.047
  13440. }
  13441. },
  13442. },
  13443. [
  13444. {
  13445. name: "Micro",
  13446. height: math.unit(6, "inches")
  13447. },
  13448. {
  13449. name: "Normal",
  13450. height: math.unit(6 + 3 / 12, "feet"),
  13451. default: true
  13452. },
  13453. {
  13454. name: "Big",
  13455. height: math.unit(104, "feet")
  13456. },
  13457. {
  13458. name: "Macro",
  13459. height: math.unit(944, "feet")
  13460. },
  13461. {
  13462. name: "Macro+",
  13463. height: math.unit(9480, "feet")
  13464. },
  13465. {
  13466. name: "Megamacro",
  13467. height: math.unit(78752, "feet")
  13468. },
  13469. {
  13470. name: "Megamacro+",
  13471. height: math.unit(630128, "feet")
  13472. },
  13473. {
  13474. name: "Megamacro++",
  13475. height: math.unit(3150695, "feet")
  13476. },
  13477. ]
  13478. ))
  13479. characterMakers.push(() => makeCharacter(
  13480. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  13481. {
  13482. front: {
  13483. height: math.unit(7 + 5 / 12, "feet"),
  13484. weight: math.unit(450, "lb"),
  13485. name: "Front",
  13486. image: {
  13487. source: "./media/characters/mocha-aura/front.svg",
  13488. extra: 1907 / 1817,
  13489. bottom: 0.04
  13490. }
  13491. },
  13492. back: {
  13493. height: math.unit(7 + 5 / 12, "feet"),
  13494. weight: math.unit(450, "lb"),
  13495. name: "Back",
  13496. image: {
  13497. source: "./media/characters/mocha-aura/back.svg",
  13498. extra: 1900 / 1825,
  13499. bottom: 0.045
  13500. }
  13501. },
  13502. },
  13503. [
  13504. {
  13505. name: "Nano",
  13506. height: math.unit(1, "nm")
  13507. },
  13508. {
  13509. name: "Megamicro",
  13510. height: math.unit(1, "mm")
  13511. },
  13512. {
  13513. name: "Micro",
  13514. height: math.unit(3, "inches")
  13515. },
  13516. {
  13517. name: "Normal",
  13518. height: math.unit(7 + 5 / 12, "feet"),
  13519. default: true
  13520. },
  13521. {
  13522. name: "Macro",
  13523. height: math.unit(30, "feet")
  13524. },
  13525. {
  13526. name: "Megamacro",
  13527. height: math.unit(3500, "feet")
  13528. },
  13529. {
  13530. name: "Teramacro",
  13531. height: math.unit(500000, "miles")
  13532. },
  13533. {
  13534. name: "Petamacro",
  13535. height: math.unit(50000000000000000, "parsecs")
  13536. },
  13537. ]
  13538. ))
  13539. characterMakers.push(() => makeCharacter(
  13540. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  13541. {
  13542. front: {
  13543. height: math.unit(6, "feet"),
  13544. weight: math.unit(150, "lb"),
  13545. name: "Front",
  13546. image: {
  13547. source: "./media/characters/ilisha-devya/front.svg",
  13548. extra: 1053/1049,
  13549. bottom: 270/1323
  13550. }
  13551. },
  13552. back: {
  13553. height: math.unit(6, "feet"),
  13554. weight: math.unit(150, "lb"),
  13555. name: "Back",
  13556. image: {
  13557. source: "./media/characters/ilisha-devya/back.svg",
  13558. extra: 1131/1128,
  13559. bottom: 39/1170
  13560. }
  13561. },
  13562. },
  13563. [
  13564. {
  13565. name: "Macro",
  13566. height: math.unit(500, "feet"),
  13567. default: true
  13568. },
  13569. {
  13570. name: "Megamacro",
  13571. height: math.unit(10, "miles")
  13572. },
  13573. {
  13574. name: "Gigamacro",
  13575. height: math.unit(100000, "miles")
  13576. },
  13577. {
  13578. name: "Examacro",
  13579. height: math.unit(1e9, "lightyears")
  13580. },
  13581. {
  13582. name: "Omniversal",
  13583. height: math.unit(1e33, "lightyears")
  13584. },
  13585. {
  13586. name: "Beyond Infinite",
  13587. height: math.unit(1e100, "lightyears")
  13588. },
  13589. ]
  13590. ))
  13591. characterMakers.push(() => makeCharacter(
  13592. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  13593. {
  13594. Side: {
  13595. height: math.unit(6, "feet"),
  13596. weight: math.unit(150, "lb"),
  13597. name: "Side",
  13598. image: {
  13599. source: "./media/characters/mira/side.svg",
  13600. extra: 900 / 799,
  13601. bottom: 0.02
  13602. }
  13603. },
  13604. },
  13605. [
  13606. {
  13607. name: "Human Size",
  13608. height: math.unit(6, "feet")
  13609. },
  13610. {
  13611. name: "Macro",
  13612. height: math.unit(100, "feet"),
  13613. default: true
  13614. },
  13615. {
  13616. name: "Megamacro",
  13617. height: math.unit(10, "miles")
  13618. },
  13619. {
  13620. name: "Gigamacro",
  13621. height: math.unit(25000, "miles")
  13622. },
  13623. {
  13624. name: "Teramacro",
  13625. height: math.unit(300, "AU")
  13626. },
  13627. {
  13628. name: "Full Size",
  13629. height: math.unit(4.5e10, "lightyears")
  13630. },
  13631. ]
  13632. ))
  13633. characterMakers.push(() => makeCharacter(
  13634. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  13635. {
  13636. front: {
  13637. height: math.unit(6, "feet"),
  13638. weight: math.unit(150, "lb"),
  13639. name: "Front",
  13640. image: {
  13641. source: "./media/characters/holly/front.svg",
  13642. extra: 639 / 606
  13643. }
  13644. },
  13645. back: {
  13646. height: math.unit(6, "feet"),
  13647. weight: math.unit(150, "lb"),
  13648. name: "Back",
  13649. image: {
  13650. source: "./media/characters/holly/back.svg",
  13651. extra: 623 / 598
  13652. }
  13653. },
  13654. frontWorking: {
  13655. height: math.unit(6, "feet"),
  13656. weight: math.unit(150, "lb"),
  13657. name: "Front (Working)",
  13658. image: {
  13659. source: "./media/characters/holly/front-working.svg",
  13660. extra: 607 / 577,
  13661. bottom: 0.048
  13662. }
  13663. },
  13664. },
  13665. [
  13666. {
  13667. name: "Normal",
  13668. height: math.unit(12 + 3 / 12, "feet"),
  13669. default: true
  13670. },
  13671. ]
  13672. ))
  13673. characterMakers.push(() => makeCharacter(
  13674. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  13675. {
  13676. front: {
  13677. height: math.unit(6, "feet"),
  13678. weight: math.unit(150, "lb"),
  13679. name: "Front",
  13680. image: {
  13681. source: "./media/characters/porter/front.svg",
  13682. extra: 1,
  13683. bottom: 0.01
  13684. }
  13685. },
  13686. frontRobes: {
  13687. height: math.unit(6, "feet"),
  13688. weight: math.unit(150, "lb"),
  13689. name: "Front (Robes)",
  13690. image: {
  13691. source: "./media/characters/porter/front-robes.svg",
  13692. extra: 1.01,
  13693. bottom: 0.01
  13694. }
  13695. },
  13696. },
  13697. [
  13698. {
  13699. name: "Normal",
  13700. height: math.unit(11 + 9 / 12, "feet"),
  13701. default: true
  13702. },
  13703. ]
  13704. ))
  13705. characterMakers.push(() => makeCharacter(
  13706. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  13707. {
  13708. legendary: {
  13709. height: math.unit(6, "feet"),
  13710. weight: math.unit(150, "lb"),
  13711. name: "Legendary",
  13712. image: {
  13713. source: "./media/characters/lucy/legendary.svg",
  13714. extra: 1355 / 1100,
  13715. bottom: 0.045
  13716. }
  13717. },
  13718. },
  13719. [
  13720. {
  13721. name: "Legendary",
  13722. height: math.unit(86882 * 2, "miles"),
  13723. default: true
  13724. },
  13725. ]
  13726. ))
  13727. characterMakers.push(() => makeCharacter(
  13728. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  13729. {
  13730. front: {
  13731. height: math.unit(6, "feet"),
  13732. weight: math.unit(150, "lb"),
  13733. name: "Front",
  13734. image: {
  13735. source: "./media/characters/drusilla/front.svg",
  13736. extra: 678 / 635,
  13737. bottom: 0.03
  13738. }
  13739. },
  13740. back: {
  13741. height: math.unit(6, "feet"),
  13742. weight: math.unit(150, "lb"),
  13743. name: "Back",
  13744. image: {
  13745. source: "./media/characters/drusilla/back.svg",
  13746. extra: 678 / 635,
  13747. bottom: 0.005
  13748. }
  13749. },
  13750. },
  13751. [
  13752. {
  13753. name: "Macro",
  13754. height: math.unit(100, "feet")
  13755. },
  13756. {
  13757. name: "Canon Height",
  13758. height: math.unit(2000, "feet"),
  13759. default: true
  13760. },
  13761. ]
  13762. ))
  13763. characterMakers.push(() => makeCharacter(
  13764. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  13765. {
  13766. front: {
  13767. height: math.unit(6, "feet"),
  13768. weight: math.unit(180, "lb"),
  13769. name: "Front",
  13770. image: {
  13771. source: "./media/characters/renard-thatch/front.svg",
  13772. extra: 2411 / 2275,
  13773. bottom: 0.01
  13774. }
  13775. },
  13776. frontPosing: {
  13777. height: math.unit(6, "feet"),
  13778. weight: math.unit(180, "lb"),
  13779. name: "Front (Posing)",
  13780. image: {
  13781. source: "./media/characters/renard-thatch/front-posing.svg",
  13782. extra: 2381 / 2261,
  13783. bottom: 0.01
  13784. }
  13785. },
  13786. back: {
  13787. height: math.unit(6, "feet"),
  13788. weight: math.unit(180, "lb"),
  13789. name: "Back",
  13790. image: {
  13791. source: "./media/characters/renard-thatch/back.svg",
  13792. extra: 2428 / 2288
  13793. }
  13794. },
  13795. },
  13796. [
  13797. {
  13798. name: "Micro",
  13799. height: math.unit(3, "inches")
  13800. },
  13801. {
  13802. name: "Default",
  13803. height: math.unit(6, "feet"),
  13804. default: true
  13805. },
  13806. {
  13807. name: "Macro",
  13808. height: math.unit(75, "feet")
  13809. },
  13810. ]
  13811. ))
  13812. characterMakers.push(() => makeCharacter(
  13813. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  13814. {
  13815. front: {
  13816. height: math.unit(1450, "feet"),
  13817. weight: math.unit(1.21e6, "tons"),
  13818. name: "Front",
  13819. image: {
  13820. source: "./media/characters/sekvra/front.svg",
  13821. extra: 1193/1190,
  13822. bottom: 78/1271
  13823. }
  13824. },
  13825. side: {
  13826. height: math.unit(1450, "feet"),
  13827. weight: math.unit(1.21e6, "tons"),
  13828. name: "Side",
  13829. image: {
  13830. source: "./media/characters/sekvra/side.svg",
  13831. extra: 1193/1190,
  13832. bottom: 52/1245
  13833. }
  13834. },
  13835. back: {
  13836. height: math.unit(1450, "feet"),
  13837. weight: math.unit(1.21e6, "tons"),
  13838. name: "Back",
  13839. image: {
  13840. source: "./media/characters/sekvra/back.svg",
  13841. extra: 1219/1216,
  13842. bottom: 21/1240
  13843. }
  13844. },
  13845. frontClothed: {
  13846. height: math.unit(1450, "feet"),
  13847. weight: math.unit(1.21e6, "tons"),
  13848. name: "Front (Clothed)",
  13849. image: {
  13850. source: "./media/characters/sekvra/front-clothed.svg",
  13851. extra: 1192/1189,
  13852. bottom: 79/1271
  13853. }
  13854. },
  13855. },
  13856. [
  13857. {
  13858. name: "Macro",
  13859. height: math.unit(1450, "feet"),
  13860. default: true
  13861. },
  13862. {
  13863. name: "Megamacro",
  13864. height: math.unit(15000, "feet")
  13865. },
  13866. ]
  13867. ))
  13868. characterMakers.push(() => makeCharacter(
  13869. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  13870. {
  13871. front: {
  13872. height: math.unit(6, "feet"),
  13873. weight: math.unit(150, "lb"),
  13874. name: "Front",
  13875. image: {
  13876. source: "./media/characters/carmine/front.svg",
  13877. extra: 1,
  13878. bottom: 0.035
  13879. }
  13880. },
  13881. frontArmor: {
  13882. height: math.unit(6, "feet"),
  13883. weight: math.unit(150, "lb"),
  13884. name: "Front (Armor)",
  13885. image: {
  13886. source: "./media/characters/carmine/front-armor.svg",
  13887. extra: 1,
  13888. bottom: 0.035
  13889. }
  13890. },
  13891. },
  13892. [
  13893. {
  13894. name: "Large",
  13895. height: math.unit(1, "mile")
  13896. },
  13897. {
  13898. name: "Huge",
  13899. height: math.unit(40, "miles"),
  13900. default: true
  13901. },
  13902. {
  13903. name: "Colossal",
  13904. height: math.unit(2500, "miles")
  13905. },
  13906. ]
  13907. ))
  13908. characterMakers.push(() => makeCharacter(
  13909. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  13910. {
  13911. front: {
  13912. height: math.unit(6, "feet"),
  13913. weight: math.unit(150, "lb"),
  13914. name: "Front",
  13915. image: {
  13916. source: "./media/characters/elyssia/front.svg",
  13917. extra: 2201 / 2035,
  13918. bottom: 0.05
  13919. }
  13920. },
  13921. frontClothed: {
  13922. height: math.unit(6, "feet"),
  13923. weight: math.unit(150, "lb"),
  13924. name: "Front (Clothed)",
  13925. image: {
  13926. source: "./media/characters/elyssia/front-clothed.svg",
  13927. extra: 2201 / 2035,
  13928. bottom: 0.05
  13929. }
  13930. },
  13931. back: {
  13932. height: math.unit(6, "feet"),
  13933. weight: math.unit(150, "lb"),
  13934. name: "Back",
  13935. image: {
  13936. source: "./media/characters/elyssia/back.svg",
  13937. extra: 2201 / 2035,
  13938. bottom: 0.013
  13939. }
  13940. },
  13941. },
  13942. [
  13943. {
  13944. name: "Smaller",
  13945. height: math.unit(150, "feet")
  13946. },
  13947. {
  13948. name: "Standard",
  13949. height: math.unit(1400, "feet"),
  13950. default: true
  13951. },
  13952. {
  13953. name: "Distracted",
  13954. height: math.unit(15000, "feet")
  13955. },
  13956. ]
  13957. ))
  13958. characterMakers.push(() => makeCharacter(
  13959. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  13960. {
  13961. front: {
  13962. height: math.unit(7 + 4/12, "feet"),
  13963. weight: math.unit(690, "lb"),
  13964. name: "Front",
  13965. image: {
  13966. source: "./media/characters/geno-maxwell/front.svg",
  13967. extra: 984/856,
  13968. bottom: 87/1071
  13969. }
  13970. },
  13971. back: {
  13972. height: math.unit(7 + 4/12, "feet"),
  13973. weight: math.unit(690, "lb"),
  13974. name: "Back",
  13975. image: {
  13976. source: "./media/characters/geno-maxwell/back.svg",
  13977. extra: 981/854,
  13978. bottom: 57/1038
  13979. }
  13980. },
  13981. frontCostume: {
  13982. height: math.unit(7 + 4/12, "feet"),
  13983. weight: math.unit(690, "lb"),
  13984. name: "Front (Costume)",
  13985. image: {
  13986. source: "./media/characters/geno-maxwell/front-costume.svg",
  13987. extra: 984/856,
  13988. bottom: 87/1071
  13989. }
  13990. },
  13991. backcostume: {
  13992. height: math.unit(7 + 4/12, "feet"),
  13993. weight: math.unit(690, "lb"),
  13994. name: "Back (Costume)",
  13995. image: {
  13996. source: "./media/characters/geno-maxwell/back-costume.svg",
  13997. extra: 981/854,
  13998. bottom: 57/1038
  13999. }
  14000. },
  14001. },
  14002. [
  14003. {
  14004. name: "Micro",
  14005. height: math.unit(3, "inches")
  14006. },
  14007. {
  14008. name: "Normal",
  14009. height: math.unit(7 + 4 / 12, "feet"),
  14010. default: true
  14011. },
  14012. {
  14013. name: "Macro",
  14014. height: math.unit(220, "feet")
  14015. },
  14016. {
  14017. name: "Megamacro",
  14018. height: math.unit(11, "miles")
  14019. },
  14020. ]
  14021. ))
  14022. characterMakers.push(() => makeCharacter(
  14023. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  14024. {
  14025. front: {
  14026. height: math.unit(7 + 4/12, "feet"),
  14027. weight: math.unit(750, "lb"),
  14028. name: "Front",
  14029. image: {
  14030. source: "./media/characters/regena-maxwell/front.svg",
  14031. extra: 984/856,
  14032. bottom: 87/1071
  14033. }
  14034. },
  14035. back: {
  14036. height: math.unit(7 + 4/12, "feet"),
  14037. weight: math.unit(750, "lb"),
  14038. name: "Back",
  14039. image: {
  14040. source: "./media/characters/regena-maxwell/back.svg",
  14041. extra: 981/854,
  14042. bottom: 57/1038
  14043. }
  14044. },
  14045. frontCostume: {
  14046. height: math.unit(7 + 4/12, "feet"),
  14047. weight: math.unit(750, "lb"),
  14048. name: "Front (Costume)",
  14049. image: {
  14050. source: "./media/characters/regena-maxwell/front-costume.svg",
  14051. extra: 984/856,
  14052. bottom: 87/1071
  14053. }
  14054. },
  14055. backcostume: {
  14056. height: math.unit(7 + 4/12, "feet"),
  14057. weight: math.unit(750, "lb"),
  14058. name: "Back (Costume)",
  14059. image: {
  14060. source: "./media/characters/regena-maxwell/back-costume.svg",
  14061. extra: 981/854,
  14062. bottom: 57/1038
  14063. }
  14064. },
  14065. },
  14066. [
  14067. {
  14068. name: "Normal",
  14069. height: math.unit(7 + 4 / 12, "feet"),
  14070. default: true
  14071. },
  14072. {
  14073. name: "Macro",
  14074. height: math.unit(220, "feet")
  14075. },
  14076. {
  14077. name: "Megamacro",
  14078. height: math.unit(11, "miles")
  14079. },
  14080. ]
  14081. ))
  14082. characterMakers.push(() => makeCharacter(
  14083. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  14084. {
  14085. front: {
  14086. height: math.unit(6, "feet"),
  14087. weight: math.unit(150, "lb"),
  14088. name: "Front",
  14089. image: {
  14090. source: "./media/characters/x-gliding-dragon-x/front.svg",
  14091. extra: 860 / 690,
  14092. bottom: 0.03
  14093. }
  14094. },
  14095. },
  14096. [
  14097. {
  14098. name: "Normal",
  14099. height: math.unit(1.7, "meters"),
  14100. default: true
  14101. },
  14102. ]
  14103. ))
  14104. characterMakers.push(() => makeCharacter(
  14105. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  14106. {
  14107. front: {
  14108. height: math.unit(6, "feet"),
  14109. weight: math.unit(150, "lb"),
  14110. name: "Front",
  14111. image: {
  14112. source: "./media/characters/quilly/front.svg",
  14113. extra: 890 / 776
  14114. }
  14115. },
  14116. },
  14117. [
  14118. {
  14119. name: "Gigamacro",
  14120. height: math.unit(404090, "miles"),
  14121. default: true
  14122. },
  14123. ]
  14124. ))
  14125. characterMakers.push(() => makeCharacter(
  14126. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  14127. {
  14128. front: {
  14129. height: math.unit(7 + 8 / 12, "feet"),
  14130. weight: math.unit(350, "lb"),
  14131. name: "Front",
  14132. image: {
  14133. source: "./media/characters/tempest/front.svg",
  14134. extra: 1175 / 1086,
  14135. bottom: 0.02
  14136. }
  14137. },
  14138. },
  14139. [
  14140. {
  14141. name: "Normal",
  14142. height: math.unit(7 + 8 / 12, "feet"),
  14143. default: true
  14144. },
  14145. ]
  14146. ))
  14147. characterMakers.push(() => makeCharacter(
  14148. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  14149. {
  14150. side: {
  14151. height: math.unit(4 + 5 / 12, "feet"),
  14152. weight: math.unit(80, "lb"),
  14153. name: "Side",
  14154. image: {
  14155. source: "./media/characters/rodger/side.svg",
  14156. extra: 1235 / 1118
  14157. }
  14158. },
  14159. },
  14160. [
  14161. {
  14162. name: "Micro",
  14163. height: math.unit(1, "inch")
  14164. },
  14165. {
  14166. name: "Normal",
  14167. height: math.unit(4 + 5 / 12, "feet"),
  14168. default: true
  14169. },
  14170. {
  14171. name: "Macro",
  14172. height: math.unit(120, "feet")
  14173. },
  14174. ]
  14175. ))
  14176. characterMakers.push(() => makeCharacter(
  14177. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  14178. {
  14179. front: {
  14180. height: math.unit(6, "feet"),
  14181. weight: math.unit(150, "lb"),
  14182. name: "Front",
  14183. image: {
  14184. source: "./media/characters/danyel/front.svg",
  14185. extra: 1185 / 1123,
  14186. bottom: 0.05
  14187. }
  14188. },
  14189. },
  14190. [
  14191. {
  14192. name: "Shrunken",
  14193. height: math.unit(0.5, "mm")
  14194. },
  14195. {
  14196. name: "Micro",
  14197. height: math.unit(1, "mm"),
  14198. default: true
  14199. },
  14200. {
  14201. name: "Upsized",
  14202. height: math.unit(5 + 5 / 12, "feet")
  14203. },
  14204. ]
  14205. ))
  14206. characterMakers.push(() => makeCharacter(
  14207. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  14208. {
  14209. front: {
  14210. height: math.unit(5 + 6 / 12, "feet"),
  14211. weight: math.unit(200, "lb"),
  14212. name: "Front",
  14213. image: {
  14214. source: "./media/characters/vivian-bijoux/front.svg",
  14215. extra: 1217/1209,
  14216. bottom: 76/1293
  14217. }
  14218. },
  14219. back: {
  14220. height: math.unit(5 + 6 / 12, "feet"),
  14221. weight: math.unit(200, "lb"),
  14222. name: "Back",
  14223. image: {
  14224. source: "./media/characters/vivian-bijoux/back.svg",
  14225. extra: 1214/1208,
  14226. bottom: 51/1265
  14227. }
  14228. },
  14229. dressed: {
  14230. height: math.unit(5 + 6 / 12, "feet"),
  14231. weight: math.unit(200, "lb"),
  14232. name: "Dressed",
  14233. image: {
  14234. source: "./media/characters/vivian-bijoux/dressed.svg",
  14235. extra: 1217/1209,
  14236. bottom: 76/1293
  14237. }
  14238. },
  14239. },
  14240. [
  14241. {
  14242. name: "Normal",
  14243. height: math.unit(5 + 6 / 12, "feet"),
  14244. default: true
  14245. },
  14246. {
  14247. name: "Bad Dream",
  14248. height: math.unit(500, "feet")
  14249. },
  14250. {
  14251. name: "Nightmare",
  14252. height: math.unit(500, "miles")
  14253. },
  14254. ]
  14255. ))
  14256. characterMakers.push(() => makeCharacter(
  14257. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  14258. {
  14259. front: {
  14260. height: math.unit(6 + 1 / 12, "feet"),
  14261. weight: math.unit(260, "lb"),
  14262. name: "Front",
  14263. image: {
  14264. source: "./media/characters/zeta/front.svg",
  14265. extra: 1968 / 1889,
  14266. bottom: 0.06
  14267. }
  14268. },
  14269. back: {
  14270. height: math.unit(6 + 1 / 12, "feet"),
  14271. weight: math.unit(260, "lb"),
  14272. name: "Back",
  14273. image: {
  14274. source: "./media/characters/zeta/back.svg",
  14275. extra: 1944 / 1858,
  14276. bottom: 0.03
  14277. }
  14278. },
  14279. hand: {
  14280. height: math.unit(1.112, "feet"),
  14281. name: "Hand",
  14282. image: {
  14283. source: "./media/characters/zeta/hand.svg"
  14284. }
  14285. },
  14286. foot: {
  14287. height: math.unit(1.48, "feet"),
  14288. name: "Foot",
  14289. image: {
  14290. source: "./media/characters/zeta/foot.svg"
  14291. }
  14292. },
  14293. },
  14294. [
  14295. {
  14296. name: "Micro",
  14297. height: math.unit(6, "inches")
  14298. },
  14299. {
  14300. name: "Normal",
  14301. height: math.unit(6 + 1 / 12, "feet"),
  14302. default: true
  14303. },
  14304. {
  14305. name: "Macro",
  14306. height: math.unit(20, "feet")
  14307. },
  14308. ]
  14309. ))
  14310. characterMakers.push(() => makeCharacter(
  14311. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  14312. {
  14313. front: {
  14314. height: math.unit(6, "feet"),
  14315. weight: math.unit(150, "lb"),
  14316. name: "Front",
  14317. image: {
  14318. source: "./media/characters/jamie-larsen/front.svg",
  14319. extra: 962 / 933,
  14320. bottom: 0.02
  14321. }
  14322. },
  14323. back: {
  14324. height: math.unit(6, "feet"),
  14325. weight: math.unit(150, "lb"),
  14326. name: "Back",
  14327. image: {
  14328. source: "./media/characters/jamie-larsen/back.svg",
  14329. extra: 997 / 946
  14330. }
  14331. },
  14332. },
  14333. [
  14334. {
  14335. name: "Macro",
  14336. height: math.unit(28 + 7 / 12, "feet"),
  14337. default: true
  14338. },
  14339. {
  14340. name: "Macro+",
  14341. height: math.unit(180, "feet")
  14342. },
  14343. {
  14344. name: "Megamacro",
  14345. height: math.unit(10, "miles")
  14346. },
  14347. {
  14348. name: "Gigamacro",
  14349. height: math.unit(200000, "miles")
  14350. },
  14351. ]
  14352. ))
  14353. characterMakers.push(() => makeCharacter(
  14354. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  14355. {
  14356. front: {
  14357. height: math.unit(6, "feet"),
  14358. weight: math.unit(120, "lb"),
  14359. name: "Front",
  14360. image: {
  14361. source: "./media/characters/vance/front.svg",
  14362. extra: 1980 / 1890,
  14363. bottom: 0.09
  14364. }
  14365. },
  14366. back: {
  14367. height: math.unit(6, "feet"),
  14368. weight: math.unit(120, "lb"),
  14369. name: "Back",
  14370. image: {
  14371. source: "./media/characters/vance/back.svg",
  14372. extra: 2081 / 1994,
  14373. bottom: 0.014
  14374. }
  14375. },
  14376. hand: {
  14377. height: math.unit(0.88, "feet"),
  14378. name: "Hand",
  14379. image: {
  14380. source: "./media/characters/vance/hand.svg"
  14381. }
  14382. },
  14383. foot: {
  14384. height: math.unit(0.64, "feet"),
  14385. name: "Foot",
  14386. image: {
  14387. source: "./media/characters/vance/foot.svg"
  14388. }
  14389. },
  14390. },
  14391. [
  14392. {
  14393. name: "Small",
  14394. height: math.unit(90, "feet"),
  14395. default: true
  14396. },
  14397. {
  14398. name: "Macro",
  14399. height: math.unit(100, "meters")
  14400. },
  14401. {
  14402. name: "Megamacro",
  14403. height: math.unit(15, "miles")
  14404. },
  14405. ]
  14406. ))
  14407. characterMakers.push(() => makeCharacter(
  14408. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  14409. {
  14410. front: {
  14411. height: math.unit(6, "feet"),
  14412. weight: math.unit(180, "lb"),
  14413. name: "Front",
  14414. image: {
  14415. source: "./media/characters/xochitl/front.svg",
  14416. extra: 2297 / 2261,
  14417. bottom: 0.065
  14418. }
  14419. },
  14420. back: {
  14421. height: math.unit(6, "feet"),
  14422. weight: math.unit(180, "lb"),
  14423. name: "Back",
  14424. image: {
  14425. source: "./media/characters/xochitl/back.svg",
  14426. extra: 2386 / 2354,
  14427. bottom: 0.01
  14428. }
  14429. },
  14430. foot: {
  14431. height: math.unit(6 / 5 * 1.15, "feet"),
  14432. weight: math.unit(150, "lb"),
  14433. name: "Foot",
  14434. image: {
  14435. source: "./media/characters/xochitl/foot.svg"
  14436. }
  14437. },
  14438. },
  14439. [
  14440. {
  14441. name: "Macro",
  14442. height: math.unit(80, "feet")
  14443. },
  14444. {
  14445. name: "Macro+",
  14446. height: math.unit(400, "feet"),
  14447. default: true
  14448. },
  14449. {
  14450. name: "Gigamacro",
  14451. height: math.unit(80000, "miles")
  14452. },
  14453. {
  14454. name: "Gigamacro+",
  14455. height: math.unit(400000, "miles")
  14456. },
  14457. {
  14458. name: "Teramacro",
  14459. height: math.unit(300, "AU")
  14460. },
  14461. ]
  14462. ))
  14463. characterMakers.push(() => makeCharacter(
  14464. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  14465. {
  14466. front: {
  14467. height: math.unit(6, "feet"),
  14468. weight: math.unit(150, "lb"),
  14469. name: "Front",
  14470. image: {
  14471. source: "./media/characters/vincent/front.svg",
  14472. extra: 1130 / 1080,
  14473. bottom: 0.055
  14474. }
  14475. },
  14476. beak: {
  14477. height: math.unit(6 * 0.1, "feet"),
  14478. name: "Beak",
  14479. image: {
  14480. source: "./media/characters/vincent/beak.svg"
  14481. }
  14482. },
  14483. hand: {
  14484. height: math.unit(6 * 0.85, "feet"),
  14485. weight: math.unit(150, "lb"),
  14486. name: "Hand",
  14487. image: {
  14488. source: "./media/characters/vincent/hand.svg"
  14489. }
  14490. },
  14491. foot: {
  14492. height: math.unit(6 * 0.19, "feet"),
  14493. weight: math.unit(150, "lb"),
  14494. name: "Foot",
  14495. image: {
  14496. source: "./media/characters/vincent/foot.svg"
  14497. }
  14498. },
  14499. },
  14500. [
  14501. {
  14502. name: "Base",
  14503. height: math.unit(6 + 5 / 12, "feet"),
  14504. default: true
  14505. },
  14506. {
  14507. name: "Macro",
  14508. height: math.unit(300, "feet")
  14509. },
  14510. {
  14511. name: "Megamacro",
  14512. height: math.unit(2, "miles")
  14513. },
  14514. {
  14515. name: "Gigamacro",
  14516. height: math.unit(1000, "miles")
  14517. },
  14518. ]
  14519. ))
  14520. characterMakers.push(() => makeCharacter(
  14521. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  14522. {
  14523. front: {
  14524. height: math.unit(2, "meters"),
  14525. weight: math.unit(500, "kg"),
  14526. name: "Front",
  14527. image: {
  14528. source: "./media/characters/coatl/front.svg",
  14529. extra: 3948 / 3500,
  14530. bottom: 0.082
  14531. }
  14532. },
  14533. },
  14534. [
  14535. {
  14536. name: "Normal",
  14537. height: math.unit(4, "meters")
  14538. },
  14539. {
  14540. name: "Macro",
  14541. height: math.unit(100, "meters"),
  14542. default: true
  14543. },
  14544. {
  14545. name: "Macro+",
  14546. height: math.unit(300, "meters")
  14547. },
  14548. {
  14549. name: "Megamacro",
  14550. height: math.unit(3, "gigameters")
  14551. },
  14552. {
  14553. name: "Megamacro+",
  14554. height: math.unit(300, "terameters")
  14555. },
  14556. {
  14557. name: "Megamacro++",
  14558. height: math.unit(3, "lightyears")
  14559. },
  14560. ]
  14561. ))
  14562. characterMakers.push(() => makeCharacter(
  14563. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  14564. {
  14565. front: {
  14566. height: math.unit(6, "feet"),
  14567. weight: math.unit(50, "kg"),
  14568. name: "front",
  14569. image: {
  14570. source: "./media/characters/shiroryu/front.svg",
  14571. extra: 1990 / 1935
  14572. }
  14573. },
  14574. },
  14575. [
  14576. {
  14577. name: "Mortal Mingling",
  14578. height: math.unit(3, "meters")
  14579. },
  14580. {
  14581. name: "Kaiju-ish",
  14582. height: math.unit(250, "meters")
  14583. },
  14584. {
  14585. name: "Somewhat Godly",
  14586. height: math.unit(400, "km"),
  14587. default: true
  14588. },
  14589. {
  14590. name: "Planetary",
  14591. height: math.unit(300, "megameters")
  14592. },
  14593. {
  14594. name: "Galaxy-dwarfing",
  14595. height: math.unit(450, "kiloparsecs")
  14596. },
  14597. {
  14598. name: "Universe Eater",
  14599. height: math.unit(150, "gigaparsecs")
  14600. },
  14601. {
  14602. name: "Almost Immeasurable",
  14603. height: math.unit(1.3e266, "yottaparsecs")
  14604. },
  14605. ]
  14606. ))
  14607. characterMakers.push(() => makeCharacter(
  14608. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  14609. {
  14610. front: {
  14611. height: math.unit(6, "feet"),
  14612. weight: math.unit(150, "lb"),
  14613. name: "Front",
  14614. image: {
  14615. source: "./media/characters/umeko/front.svg",
  14616. extra: 1,
  14617. bottom: 0.019
  14618. }
  14619. },
  14620. frontArmored: {
  14621. height: math.unit(6, "feet"),
  14622. weight: math.unit(150, "lb"),
  14623. name: "Front (Armored)",
  14624. image: {
  14625. source: "./media/characters/umeko/front-armored.svg",
  14626. extra: 1,
  14627. bottom: 0.021
  14628. }
  14629. },
  14630. },
  14631. [
  14632. {
  14633. name: "Macro",
  14634. height: math.unit(220, "feet"),
  14635. default: true
  14636. },
  14637. {
  14638. name: "Guardian Dragon",
  14639. height: math.unit(50, "miles")
  14640. },
  14641. {
  14642. name: "Cosmic",
  14643. height: math.unit(800000, "miles")
  14644. },
  14645. ]
  14646. ))
  14647. characterMakers.push(() => makeCharacter(
  14648. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  14649. {
  14650. front: {
  14651. height: math.unit(6, "feet"),
  14652. weight: math.unit(150, "lb"),
  14653. name: "Front",
  14654. image: {
  14655. source: "./media/characters/cassidy/front.svg",
  14656. extra: 810/808,
  14657. bottom: 41/851
  14658. }
  14659. },
  14660. },
  14661. [
  14662. {
  14663. name: "Canon Height",
  14664. height: math.unit(120, "feet"),
  14665. default: true
  14666. },
  14667. {
  14668. name: "Macro+",
  14669. height: math.unit(400, "feet")
  14670. },
  14671. {
  14672. name: "Macro++",
  14673. height: math.unit(4000, "feet")
  14674. },
  14675. {
  14676. name: "Megamacro",
  14677. height: math.unit(3, "miles")
  14678. },
  14679. ]
  14680. ))
  14681. characterMakers.push(() => makeCharacter(
  14682. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  14683. {
  14684. front: {
  14685. height: math.unit(6, "feet"),
  14686. weight: math.unit(150, "lb"),
  14687. name: "Front",
  14688. image: {
  14689. source: "./media/characters/isaac/front.svg",
  14690. extra: 896 / 815,
  14691. bottom: 0.11
  14692. }
  14693. },
  14694. },
  14695. [
  14696. {
  14697. name: "Human Size",
  14698. height: math.unit(8, "feet"),
  14699. default: true
  14700. },
  14701. {
  14702. name: "Macro",
  14703. height: math.unit(400, "feet")
  14704. },
  14705. {
  14706. name: "Megamacro",
  14707. height: math.unit(50, "miles")
  14708. },
  14709. {
  14710. name: "Canon Height",
  14711. height: math.unit(200, "AU")
  14712. },
  14713. ]
  14714. ))
  14715. characterMakers.push(() => makeCharacter(
  14716. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  14717. {
  14718. front: {
  14719. height: math.unit(6, "feet"),
  14720. weight: math.unit(72, "kg"),
  14721. name: "Front",
  14722. image: {
  14723. source: "./media/characters/sleekit/front.svg",
  14724. extra: 4693 / 4487,
  14725. bottom: 0.012
  14726. }
  14727. },
  14728. },
  14729. [
  14730. {
  14731. name: "Minimum Height",
  14732. height: math.unit(10, "meters")
  14733. },
  14734. {
  14735. name: "Smaller",
  14736. height: math.unit(25, "meters")
  14737. },
  14738. {
  14739. name: "Larger",
  14740. height: math.unit(38, "meters"),
  14741. default: true
  14742. },
  14743. {
  14744. name: "Maximum height",
  14745. height: math.unit(100, "meters")
  14746. },
  14747. ]
  14748. ))
  14749. characterMakers.push(() => makeCharacter(
  14750. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  14751. {
  14752. front: {
  14753. height: math.unit(6, "feet"),
  14754. weight: math.unit(150, "lb"),
  14755. name: "Front",
  14756. image: {
  14757. source: "./media/characters/nillia/front.svg",
  14758. extra: 2195 / 2037,
  14759. bottom: 0.005
  14760. }
  14761. },
  14762. back: {
  14763. height: math.unit(6, "feet"),
  14764. weight: math.unit(150, "lb"),
  14765. name: "Back",
  14766. image: {
  14767. source: "./media/characters/nillia/back.svg",
  14768. extra: 2195 / 2037,
  14769. bottom: 0.005
  14770. }
  14771. },
  14772. },
  14773. [
  14774. {
  14775. name: "Canon Height",
  14776. height: math.unit(489, "feet"),
  14777. default: true
  14778. }
  14779. ]
  14780. ))
  14781. characterMakers.push(() => makeCharacter(
  14782. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  14783. {
  14784. front: {
  14785. height: math.unit(6, "feet"),
  14786. weight: math.unit(150, "lb"),
  14787. name: "Front",
  14788. image: {
  14789. source: "./media/characters/mesmyriza/front.svg",
  14790. extra: 2067 / 1784,
  14791. bottom: 0.035
  14792. }
  14793. },
  14794. foot: {
  14795. height: math.unit(6 / (250 / 35), "feet"),
  14796. name: "Foot",
  14797. image: {
  14798. source: "./media/characters/mesmyriza/foot.svg"
  14799. }
  14800. },
  14801. },
  14802. [
  14803. {
  14804. name: "Macro",
  14805. height: math.unit(457, "meters"),
  14806. default: true
  14807. },
  14808. {
  14809. name: "Megamacro",
  14810. height: math.unit(8, "megameters")
  14811. },
  14812. ]
  14813. ))
  14814. characterMakers.push(() => makeCharacter(
  14815. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  14816. {
  14817. front: {
  14818. height: math.unit(6, "feet"),
  14819. weight: math.unit(250, "lb"),
  14820. name: "Front",
  14821. image: {
  14822. source: "./media/characters/saudade/front.svg",
  14823. extra: 1172 / 1139,
  14824. bottom: 0.035
  14825. }
  14826. },
  14827. },
  14828. [
  14829. {
  14830. name: "Micro",
  14831. height: math.unit(3, "inches")
  14832. },
  14833. {
  14834. name: "Normal",
  14835. height: math.unit(6, "feet"),
  14836. default: true
  14837. },
  14838. {
  14839. name: "Macro",
  14840. height: math.unit(50, "feet")
  14841. },
  14842. {
  14843. name: "Megamacro",
  14844. height: math.unit(2800, "feet")
  14845. },
  14846. ]
  14847. ))
  14848. characterMakers.push(() => makeCharacter(
  14849. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  14850. {
  14851. front: {
  14852. height: math.unit(5 + 4 / 12, "feet"),
  14853. weight: math.unit(100, "lb"),
  14854. name: "Front",
  14855. image: {
  14856. source: "./media/characters/keireer/front.svg",
  14857. extra: 716 / 666,
  14858. bottom: 0.05
  14859. }
  14860. },
  14861. },
  14862. [
  14863. {
  14864. name: "Normal",
  14865. height: math.unit(5 + 4 / 12, "feet"),
  14866. default: true
  14867. },
  14868. ]
  14869. ))
  14870. characterMakers.push(() => makeCharacter(
  14871. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  14872. {
  14873. front: {
  14874. height: math.unit(6, "feet"),
  14875. weight: math.unit(90, "kg"),
  14876. name: "Front",
  14877. image: {
  14878. source: "./media/characters/mirja/front.svg",
  14879. extra: 1789 / 1683,
  14880. bottom: 0.05
  14881. }
  14882. },
  14883. frontDressed: {
  14884. height: math.unit(6, "feet"),
  14885. weight: math.unit(90, "lb"),
  14886. name: "Front (Dressed)",
  14887. image: {
  14888. source: "./media/characters/mirja/front-dressed.svg",
  14889. extra: 1789 / 1683,
  14890. bottom: 0.05
  14891. }
  14892. },
  14893. back: {
  14894. height: math.unit(6, "feet"),
  14895. weight: math.unit(90, "lb"),
  14896. name: "Back",
  14897. image: {
  14898. source: "./media/characters/mirja/back.svg",
  14899. extra: 953 / 917,
  14900. bottom: 0.017
  14901. }
  14902. },
  14903. },
  14904. [
  14905. {
  14906. name: "\"Incognito\"",
  14907. height: math.unit(3, "meters")
  14908. },
  14909. {
  14910. name: "Strolling Size",
  14911. height: math.unit(15, "km")
  14912. },
  14913. {
  14914. name: "Larger Strolling Size",
  14915. height: math.unit(400, "km")
  14916. },
  14917. {
  14918. name: "Preferred Size",
  14919. height: math.unit(5000, "km")
  14920. },
  14921. {
  14922. name: "True Size",
  14923. height: math.unit(30657809462086840000000000000000, "parsecs"),
  14924. default: true
  14925. },
  14926. ]
  14927. ))
  14928. characterMakers.push(() => makeCharacter(
  14929. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  14930. {
  14931. front: {
  14932. height: math.unit(15, "feet"),
  14933. weight: math.unit(880, "kg"),
  14934. name: "Front",
  14935. image: {
  14936. source: "./media/characters/nightraver/front.svg",
  14937. extra: 2444 / 2160,
  14938. bottom: 0.027
  14939. }
  14940. },
  14941. back: {
  14942. height: math.unit(15, "feet"),
  14943. weight: math.unit(880, "kg"),
  14944. name: "Back",
  14945. image: {
  14946. source: "./media/characters/nightraver/back.svg",
  14947. extra: 2309 / 2180,
  14948. bottom: 0.005
  14949. }
  14950. },
  14951. sole: {
  14952. height: math.unit(2.878, "feet"),
  14953. name: "Sole",
  14954. image: {
  14955. source: "./media/characters/nightraver/sole.svg"
  14956. }
  14957. },
  14958. foot: {
  14959. height: math.unit(2.285, "feet"),
  14960. name: "Foot",
  14961. image: {
  14962. source: "./media/characters/nightraver/foot.svg"
  14963. }
  14964. },
  14965. maw: {
  14966. height: math.unit(2.67, "feet"),
  14967. name: "Maw",
  14968. image: {
  14969. source: "./media/characters/nightraver/maw.svg"
  14970. }
  14971. },
  14972. },
  14973. [
  14974. {
  14975. name: "Micro",
  14976. height: math.unit(1, "cm")
  14977. },
  14978. {
  14979. name: "Normal",
  14980. height: math.unit(15, "feet"),
  14981. default: true
  14982. },
  14983. {
  14984. name: "Macro",
  14985. height: math.unit(300, "feet")
  14986. },
  14987. {
  14988. name: "Megamacro",
  14989. height: math.unit(300, "miles")
  14990. },
  14991. {
  14992. name: "Gigamacro",
  14993. height: math.unit(10000, "miles")
  14994. },
  14995. ]
  14996. ))
  14997. characterMakers.push(() => makeCharacter(
  14998. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  14999. {
  15000. side: {
  15001. height: math.unit(2, "inches"),
  15002. weight: math.unit(5, "grams"),
  15003. name: "Side",
  15004. image: {
  15005. source: "./media/characters/arc/side.svg"
  15006. }
  15007. },
  15008. },
  15009. [
  15010. {
  15011. name: "Micro",
  15012. height: math.unit(2, "inches"),
  15013. default: true
  15014. },
  15015. ]
  15016. ))
  15017. characterMakers.push(() => makeCharacter(
  15018. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  15019. {
  15020. front: {
  15021. height: math.unit(1.1938, "meters"),
  15022. weight: math.unit(54, "kg"),
  15023. name: "Front",
  15024. image: {
  15025. source: "./media/characters/nebula-shahar/front.svg",
  15026. extra: 1642 / 1436,
  15027. bottom: 0.06
  15028. }
  15029. },
  15030. },
  15031. [
  15032. {
  15033. name: "Megamicro",
  15034. height: math.unit(0.3, "mm")
  15035. },
  15036. {
  15037. name: "Micro",
  15038. height: math.unit(3, "cm")
  15039. },
  15040. {
  15041. name: "Normal",
  15042. height: math.unit(138, "cm"),
  15043. default: true
  15044. },
  15045. {
  15046. name: "Macro",
  15047. height: math.unit(30, "m")
  15048. },
  15049. ]
  15050. ))
  15051. characterMakers.push(() => makeCharacter(
  15052. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  15053. {
  15054. front: {
  15055. height: math.unit(5.24, "feet"),
  15056. weight: math.unit(150, "lb"),
  15057. name: "Front",
  15058. image: {
  15059. source: "./media/characters/shayla/front.svg",
  15060. extra: 1512 / 1414,
  15061. bottom: 0.01
  15062. }
  15063. },
  15064. back: {
  15065. height: math.unit(5.24, "feet"),
  15066. weight: math.unit(150, "lb"),
  15067. name: "Back",
  15068. image: {
  15069. source: "./media/characters/shayla/back.svg",
  15070. extra: 1512 / 1414
  15071. }
  15072. },
  15073. hand: {
  15074. height: math.unit(0.7781496062992126, "feet"),
  15075. name: "Hand",
  15076. image: {
  15077. source: "./media/characters/shayla/hand.svg"
  15078. }
  15079. },
  15080. foot: {
  15081. height: math.unit(1.4206036745406823, "feet"),
  15082. name: "Foot",
  15083. image: {
  15084. source: "./media/characters/shayla/foot.svg"
  15085. }
  15086. },
  15087. },
  15088. [
  15089. {
  15090. name: "Micro",
  15091. height: math.unit(0.32, "feet")
  15092. },
  15093. {
  15094. name: "Normal",
  15095. height: math.unit(5.24, "feet"),
  15096. default: true
  15097. },
  15098. {
  15099. name: "Macro",
  15100. height: math.unit(492.12, "feet")
  15101. },
  15102. {
  15103. name: "Megamacro",
  15104. height: math.unit(186.41, "miles")
  15105. },
  15106. ]
  15107. ))
  15108. characterMakers.push(() => makeCharacter(
  15109. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  15110. {
  15111. front: {
  15112. height: math.unit(2.2, "m"),
  15113. weight: math.unit(120, "kg"),
  15114. name: "Front",
  15115. image: {
  15116. source: "./media/characters/pia-jr/front.svg",
  15117. extra: 1000 / 970,
  15118. bottom: 0.035
  15119. }
  15120. },
  15121. hand: {
  15122. height: math.unit(0.759 * 7.21 / 6, "feet"),
  15123. name: "Hand",
  15124. image: {
  15125. source: "./media/characters/pia-jr/hand.svg"
  15126. }
  15127. },
  15128. paw: {
  15129. height: math.unit(1.185 * 7.21 / 6, "feet"),
  15130. name: "Paw",
  15131. image: {
  15132. source: "./media/characters/pia-jr/paw.svg"
  15133. }
  15134. },
  15135. },
  15136. [
  15137. {
  15138. name: "Micro",
  15139. height: math.unit(1.2, "cm")
  15140. },
  15141. {
  15142. name: "Normal",
  15143. height: math.unit(2.2, "m"),
  15144. default: true
  15145. },
  15146. {
  15147. name: "Macro",
  15148. height: math.unit(180, "m")
  15149. },
  15150. {
  15151. name: "Megamacro",
  15152. height: math.unit(420, "km")
  15153. },
  15154. ]
  15155. ))
  15156. characterMakers.push(() => makeCharacter(
  15157. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  15158. {
  15159. front: {
  15160. height: math.unit(2, "m"),
  15161. weight: math.unit(115, "kg"),
  15162. name: "Front",
  15163. image: {
  15164. source: "./media/characters/pia-sr/front.svg",
  15165. extra: 760 / 730,
  15166. bottom: 0.015
  15167. }
  15168. },
  15169. back: {
  15170. height: math.unit(2, "m"),
  15171. weight: math.unit(115, "kg"),
  15172. name: "Back",
  15173. image: {
  15174. source: "./media/characters/pia-sr/back.svg",
  15175. extra: 760 / 730,
  15176. bottom: 0.01
  15177. }
  15178. },
  15179. hand: {
  15180. height: math.unit(0.89 * 6.56 / 6, "feet"),
  15181. name: "Hand",
  15182. image: {
  15183. source: "./media/characters/pia-sr/hand.svg"
  15184. }
  15185. },
  15186. foot: {
  15187. height: math.unit(1.83, "feet"),
  15188. name: "Foot",
  15189. image: {
  15190. source: "./media/characters/pia-sr/foot.svg"
  15191. }
  15192. },
  15193. },
  15194. [
  15195. {
  15196. name: "Micro",
  15197. height: math.unit(88, "mm")
  15198. },
  15199. {
  15200. name: "Normal",
  15201. height: math.unit(2, "m"),
  15202. default: true
  15203. },
  15204. {
  15205. name: "Macro",
  15206. height: math.unit(200, "m")
  15207. },
  15208. {
  15209. name: "Megamacro",
  15210. height: math.unit(420, "km")
  15211. },
  15212. ]
  15213. ))
  15214. characterMakers.push(() => makeCharacter(
  15215. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  15216. {
  15217. front: {
  15218. height: math.unit(8 + 2 / 12, "feet"),
  15219. weight: math.unit(300, "lb"),
  15220. name: "Front",
  15221. image: {
  15222. source: "./media/characters/kibibyte/front.svg",
  15223. extra: 2221 / 2098,
  15224. bottom: 0.04
  15225. }
  15226. },
  15227. },
  15228. [
  15229. {
  15230. name: "Normal",
  15231. height: math.unit(8 + 2 / 12, "feet"),
  15232. default: true
  15233. },
  15234. {
  15235. name: "Socialable Macro",
  15236. height: math.unit(50, "feet")
  15237. },
  15238. {
  15239. name: "Macro",
  15240. height: math.unit(300, "feet")
  15241. },
  15242. {
  15243. name: "Megamacro",
  15244. height: math.unit(500, "miles")
  15245. },
  15246. ]
  15247. ))
  15248. characterMakers.push(() => makeCharacter(
  15249. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  15250. {
  15251. front: {
  15252. height: math.unit(6, "feet"),
  15253. weight: math.unit(150, "lb"),
  15254. name: "Front",
  15255. image: {
  15256. source: "./media/characters/felix/front.svg",
  15257. extra: 762 / 722,
  15258. bottom: 0.02
  15259. }
  15260. },
  15261. frontClothed: {
  15262. height: math.unit(6, "feet"),
  15263. weight: math.unit(150, "lb"),
  15264. name: "Front (Clothed)",
  15265. image: {
  15266. source: "./media/characters/felix/front-clothed.svg",
  15267. extra: 762 / 722,
  15268. bottom: 0.02
  15269. }
  15270. },
  15271. },
  15272. [
  15273. {
  15274. name: "Normal",
  15275. height: math.unit(6 + 8 / 12, "feet"),
  15276. default: true
  15277. },
  15278. {
  15279. name: "Macro",
  15280. height: math.unit(2600, "feet")
  15281. },
  15282. {
  15283. name: "Megamacro",
  15284. height: math.unit(450, "miles")
  15285. },
  15286. ]
  15287. ))
  15288. characterMakers.push(() => makeCharacter(
  15289. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  15290. {
  15291. front: {
  15292. height: math.unit(6 + 1 / 12, "feet"),
  15293. weight: math.unit(250, "lb"),
  15294. name: "Front",
  15295. image: {
  15296. source: "./media/characters/tobo/front.svg",
  15297. extra: 608 / 586,
  15298. bottom: 0.023
  15299. }
  15300. },
  15301. back: {
  15302. height: math.unit(6 + 1 / 12, "feet"),
  15303. weight: math.unit(250, "lb"),
  15304. name: "Back",
  15305. image: {
  15306. source: "./media/characters/tobo/back.svg",
  15307. extra: 608 / 586
  15308. }
  15309. },
  15310. },
  15311. [
  15312. {
  15313. name: "Nano",
  15314. height: math.unit(2, "nm")
  15315. },
  15316. {
  15317. name: "Megamicro",
  15318. height: math.unit(0.1, "mm")
  15319. },
  15320. {
  15321. name: "Micro",
  15322. height: math.unit(1, "inch"),
  15323. default: true
  15324. },
  15325. {
  15326. name: "Human-sized",
  15327. height: math.unit(6 + 1 / 12, "feet")
  15328. },
  15329. {
  15330. name: "Macro",
  15331. height: math.unit(250, "feet")
  15332. },
  15333. {
  15334. name: "Megamacro",
  15335. height: math.unit(75, "miles")
  15336. },
  15337. {
  15338. name: "Texas-sized",
  15339. height: math.unit(750, "miles")
  15340. },
  15341. {
  15342. name: "Teramacro",
  15343. height: math.unit(50000, "miles")
  15344. },
  15345. ]
  15346. ))
  15347. characterMakers.push(() => makeCharacter(
  15348. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  15349. {
  15350. front: {
  15351. height: math.unit(6, "feet"),
  15352. weight: math.unit(269, "lb"),
  15353. name: "Front",
  15354. image: {
  15355. source: "./media/characters/danny-kapowsky/front.svg",
  15356. extra: 766 / 736,
  15357. bottom: 0.044
  15358. }
  15359. },
  15360. back: {
  15361. height: math.unit(6, "feet"),
  15362. weight: math.unit(269, "lb"),
  15363. name: "Back",
  15364. image: {
  15365. source: "./media/characters/danny-kapowsky/back.svg",
  15366. extra: 797 / 760,
  15367. bottom: 0.025
  15368. }
  15369. },
  15370. },
  15371. [
  15372. {
  15373. name: "Macro",
  15374. height: math.unit(150, "feet"),
  15375. default: true
  15376. },
  15377. {
  15378. name: "Macro+",
  15379. height: math.unit(200, "feet")
  15380. },
  15381. {
  15382. name: "Macro++",
  15383. height: math.unit(300, "feet")
  15384. },
  15385. {
  15386. name: "Macro+++",
  15387. height: math.unit(400, "feet")
  15388. },
  15389. ]
  15390. ))
  15391. characterMakers.push(() => makeCharacter(
  15392. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  15393. {
  15394. side: {
  15395. height: math.unit(6, "feet"),
  15396. weight: math.unit(170, "lb"),
  15397. name: "Side",
  15398. image: {
  15399. source: "./media/characters/finn/side.svg",
  15400. extra: 1953 / 1807,
  15401. bottom: 0.057
  15402. }
  15403. },
  15404. },
  15405. [
  15406. {
  15407. name: "Megamacro",
  15408. height: math.unit(14445, "feet"),
  15409. default: true
  15410. },
  15411. ]
  15412. ))
  15413. characterMakers.push(() => makeCharacter(
  15414. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  15415. {
  15416. front: {
  15417. height: math.unit(5 + 6 / 12, "feet"),
  15418. weight: math.unit(125, "lb"),
  15419. name: "Front",
  15420. image: {
  15421. source: "./media/characters/roy/front.svg",
  15422. extra: 1,
  15423. bottom: 0.11
  15424. }
  15425. },
  15426. },
  15427. [
  15428. {
  15429. name: "Micro",
  15430. height: math.unit(3, "inches"),
  15431. default: true
  15432. },
  15433. {
  15434. name: "Normal",
  15435. height: math.unit(5 + 6 / 12, "feet")
  15436. },
  15437. {
  15438. name: "Lesser Macro",
  15439. height: math.unit(60, "feet")
  15440. },
  15441. {
  15442. name: "Greater Macro",
  15443. height: math.unit(120, "feet")
  15444. },
  15445. ]
  15446. ))
  15447. characterMakers.push(() => makeCharacter(
  15448. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  15449. {
  15450. front: {
  15451. height: math.unit(6, "feet"),
  15452. weight: math.unit(100, "lb"),
  15453. name: "Front",
  15454. image: {
  15455. source: "./media/characters/aevsivs/front.svg",
  15456. extra: 1,
  15457. bottom: 0.03
  15458. }
  15459. },
  15460. back: {
  15461. height: math.unit(6, "feet"),
  15462. weight: math.unit(100, "lb"),
  15463. name: "Back",
  15464. image: {
  15465. source: "./media/characters/aevsivs/back.svg"
  15466. }
  15467. },
  15468. },
  15469. [
  15470. {
  15471. name: "Micro",
  15472. height: math.unit(2, "inches"),
  15473. default: true
  15474. },
  15475. {
  15476. name: "Normal",
  15477. height: math.unit(5, "feet")
  15478. },
  15479. ]
  15480. ))
  15481. characterMakers.push(() => makeCharacter(
  15482. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  15483. {
  15484. front: {
  15485. height: math.unit(5 + 7 / 12, "feet"),
  15486. weight: math.unit(159, "lb"),
  15487. name: "Front",
  15488. image: {
  15489. source: "./media/characters/hildegard/front.svg",
  15490. extra: 289 / 269,
  15491. bottom: 7.63 / 297.8
  15492. }
  15493. },
  15494. back: {
  15495. height: math.unit(5 + 7 / 12, "feet"),
  15496. weight: math.unit(159, "lb"),
  15497. name: "Back",
  15498. image: {
  15499. source: "./media/characters/hildegard/back.svg",
  15500. extra: 280 / 260,
  15501. bottom: 2.3 / 282
  15502. }
  15503. },
  15504. },
  15505. [
  15506. {
  15507. name: "Normal",
  15508. height: math.unit(5 + 7 / 12, "feet"),
  15509. default: true
  15510. },
  15511. ]
  15512. ))
  15513. characterMakers.push(() => makeCharacter(
  15514. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  15515. {
  15516. bernard: {
  15517. height: math.unit(2 + 7 / 12, "feet"),
  15518. weight: math.unit(66, "lb"),
  15519. name: "Bernard",
  15520. rename: true,
  15521. image: {
  15522. source: "./media/characters/bernard-wilder/bernard.svg",
  15523. extra: 192 / 128,
  15524. bottom: 0.05
  15525. }
  15526. },
  15527. wilder: {
  15528. height: math.unit(5 + 8 / 12, "feet"),
  15529. weight: math.unit(143, "lb"),
  15530. name: "Wilder",
  15531. rename: true,
  15532. image: {
  15533. source: "./media/characters/bernard-wilder/wilder.svg",
  15534. extra: 361 / 312,
  15535. bottom: 0.02
  15536. }
  15537. },
  15538. },
  15539. [
  15540. {
  15541. name: "Normal",
  15542. height: math.unit(2 + 7 / 12, "feet"),
  15543. default: true
  15544. },
  15545. ]
  15546. ))
  15547. characterMakers.push(() => makeCharacter(
  15548. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  15549. {
  15550. anthro: {
  15551. height: math.unit(6 + 1 / 12, "feet"),
  15552. weight: math.unit(155, "lb"),
  15553. name: "Anthro",
  15554. image: {
  15555. source: "./media/characters/hearth/anthro.svg",
  15556. extra: 1178/1136,
  15557. bottom: 28/1206
  15558. }
  15559. },
  15560. feral: {
  15561. height: math.unit(3.78, "feet"),
  15562. weight: math.unit(35, "kg"),
  15563. name: "Feral",
  15564. image: {
  15565. source: "./media/characters/hearth/feral.svg",
  15566. extra: 153 / 135,
  15567. bottom: 0.03
  15568. }
  15569. },
  15570. },
  15571. [
  15572. {
  15573. name: "Normal",
  15574. height: math.unit(6 + 1 / 12, "feet"),
  15575. default: true
  15576. },
  15577. ]
  15578. ))
  15579. characterMakers.push(() => makeCharacter(
  15580. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  15581. {
  15582. front: {
  15583. height: math.unit(6, "feet"),
  15584. weight: math.unit(182, "lb"),
  15585. name: "Front",
  15586. image: {
  15587. source: "./media/characters/ingrid/front.svg",
  15588. extra: 294 / 268,
  15589. bottom: 0.027
  15590. }
  15591. },
  15592. },
  15593. [
  15594. {
  15595. name: "Normal",
  15596. height: math.unit(6, "feet"),
  15597. default: true
  15598. },
  15599. ]
  15600. ))
  15601. characterMakers.push(() => makeCharacter(
  15602. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  15603. {
  15604. eevee: {
  15605. height: math.unit(2 + 10 / 12, "feet"),
  15606. weight: math.unit(86, "lb"),
  15607. name: "Malgam",
  15608. image: {
  15609. source: "./media/characters/malgam/eevee.svg",
  15610. extra: 952/784,
  15611. bottom: 38/990
  15612. }
  15613. },
  15614. sylveon: {
  15615. height: math.unit(4, "feet"),
  15616. weight: math.unit(101, "lb"),
  15617. name: "Future Malgam",
  15618. rename: true,
  15619. image: {
  15620. source: "./media/characters/malgam/sylveon.svg",
  15621. extra: 371 / 325,
  15622. bottom: 0.015
  15623. }
  15624. },
  15625. gigantamax: {
  15626. height: math.unit(50, "feet"),
  15627. name: "Gigantamax Malgam",
  15628. rename: true,
  15629. image: {
  15630. source: "./media/characters/malgam/gigantamax.svg"
  15631. }
  15632. },
  15633. },
  15634. [
  15635. {
  15636. name: "Normal",
  15637. height: math.unit(2 + 10 / 12, "feet"),
  15638. default: true
  15639. },
  15640. ]
  15641. ))
  15642. characterMakers.push(() => makeCharacter(
  15643. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  15644. {
  15645. front: {
  15646. height: math.unit(5 + 11 / 12, "feet"),
  15647. weight: math.unit(188, "lb"),
  15648. name: "Front",
  15649. image: {
  15650. source: "./media/characters/fleur/front.svg",
  15651. extra: 309 / 283,
  15652. bottom: 0.007
  15653. }
  15654. },
  15655. },
  15656. [
  15657. {
  15658. name: "Normal",
  15659. height: math.unit(5 + 11 / 12, "feet"),
  15660. default: true
  15661. },
  15662. ]
  15663. ))
  15664. characterMakers.push(() => makeCharacter(
  15665. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  15666. {
  15667. front: {
  15668. height: math.unit(5 + 4 / 12, "feet"),
  15669. weight: math.unit(122, "lb"),
  15670. name: "Front",
  15671. image: {
  15672. source: "./media/characters/jude/front.svg",
  15673. extra: 288 / 273,
  15674. bottom: 0.03
  15675. }
  15676. },
  15677. },
  15678. [
  15679. {
  15680. name: "Normal",
  15681. height: math.unit(5 + 4 / 12, "feet"),
  15682. default: true
  15683. },
  15684. ]
  15685. ))
  15686. characterMakers.push(() => makeCharacter(
  15687. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  15688. {
  15689. front: {
  15690. height: math.unit(5 + 11 / 12, "feet"),
  15691. weight: math.unit(190, "lb"),
  15692. name: "Front",
  15693. image: {
  15694. source: "./media/characters/seara/front.svg",
  15695. extra: 1,
  15696. bottom: 0.05
  15697. }
  15698. },
  15699. },
  15700. [
  15701. {
  15702. name: "Normal",
  15703. height: math.unit(5 + 11 / 12, "feet"),
  15704. default: true
  15705. },
  15706. ]
  15707. ))
  15708. characterMakers.push(() => makeCharacter(
  15709. { name: "Caspian (Lugia)", species: ["lugia"], tags: ["anthro"] },
  15710. {
  15711. front: {
  15712. height: math.unit(16 + 5 / 12, "feet"),
  15713. weight: math.unit(524, "lb"),
  15714. name: "Front",
  15715. image: {
  15716. source: "./media/characters/caspian-lugia/front.svg",
  15717. extra: 1,
  15718. bottom: 0.04
  15719. }
  15720. },
  15721. },
  15722. [
  15723. {
  15724. name: "Normal",
  15725. height: math.unit(16 + 5 / 12, "feet"),
  15726. default: true
  15727. },
  15728. ]
  15729. ))
  15730. characterMakers.push(() => makeCharacter(
  15731. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  15732. {
  15733. front: {
  15734. height: math.unit(5 + 7 / 12, "feet"),
  15735. weight: math.unit(170, "lb"),
  15736. name: "Front",
  15737. image: {
  15738. source: "./media/characters/mika/front.svg",
  15739. extra: 1,
  15740. bottom: 0.016
  15741. }
  15742. },
  15743. },
  15744. [
  15745. {
  15746. name: "Normal",
  15747. height: math.unit(5 + 7 / 12, "feet"),
  15748. default: true
  15749. },
  15750. ]
  15751. ))
  15752. characterMakers.push(() => makeCharacter(
  15753. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  15754. {
  15755. front: {
  15756. height: math.unit(6 + 2 / 12, "feet"),
  15757. weight: math.unit(268, "lb"),
  15758. name: "Front",
  15759. image: {
  15760. source: "./media/characters/sol/front.svg",
  15761. extra: 247 / 231,
  15762. bottom: 0.05
  15763. }
  15764. },
  15765. },
  15766. [
  15767. {
  15768. name: "Normal",
  15769. height: math.unit(6 + 2 / 12, "feet"),
  15770. default: true
  15771. },
  15772. ]
  15773. ))
  15774. characterMakers.push(() => makeCharacter(
  15775. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  15776. {
  15777. buizel: {
  15778. height: math.unit(2 + 5 / 12, "feet"),
  15779. weight: math.unit(87, "lb"),
  15780. name: "Front",
  15781. image: {
  15782. source: "./media/characters/umiko/buizel.svg",
  15783. extra: 172 / 157,
  15784. bottom: 0.01
  15785. },
  15786. form: "buizel",
  15787. default: true
  15788. },
  15789. floatzel: {
  15790. height: math.unit(5 + 9 / 12, "feet"),
  15791. weight: math.unit(250, "lb"),
  15792. name: "Front",
  15793. image: {
  15794. source: "./media/characters/umiko/floatzel.svg",
  15795. extra: 1076/1006,
  15796. bottom: 15/1091
  15797. },
  15798. form: "floatzel",
  15799. default: true
  15800. },
  15801. },
  15802. [
  15803. {
  15804. name: "Normal",
  15805. height: math.unit(2 + 5 / 12, "feet"),
  15806. form: "buizel",
  15807. default: true
  15808. },
  15809. {
  15810. name: "Normal",
  15811. height: math.unit(5 + 9 / 12, "feet"),
  15812. form: "floatzel",
  15813. default: true
  15814. },
  15815. ],
  15816. {
  15817. "buizel": {
  15818. name: "Buizel"
  15819. },
  15820. "floatzel": {
  15821. name: "Floatzel",
  15822. default: true
  15823. }
  15824. }
  15825. ))
  15826. characterMakers.push(() => makeCharacter(
  15827. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  15828. {
  15829. front: {
  15830. height: math.unit(6 + 2 / 12, "feet"),
  15831. weight: math.unit(146, "lb"),
  15832. name: "Front",
  15833. image: {
  15834. source: "./media/characters/iliac/front.svg",
  15835. extra: 389 / 365,
  15836. bottom: 0.035
  15837. }
  15838. },
  15839. },
  15840. [
  15841. {
  15842. name: "Normal",
  15843. height: math.unit(6 + 2 / 12, "feet"),
  15844. default: true
  15845. },
  15846. ]
  15847. ))
  15848. characterMakers.push(() => makeCharacter(
  15849. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  15850. {
  15851. front: {
  15852. height: math.unit(6, "feet"),
  15853. weight: math.unit(170, "lb"),
  15854. name: "Front",
  15855. image: {
  15856. source: "./media/characters/topaz/front.svg",
  15857. extra: 317 / 303,
  15858. bottom: 0.055
  15859. }
  15860. },
  15861. },
  15862. [
  15863. {
  15864. name: "Normal",
  15865. height: math.unit(6, "feet"),
  15866. default: true
  15867. },
  15868. ]
  15869. ))
  15870. characterMakers.push(() => makeCharacter(
  15871. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  15872. {
  15873. front: {
  15874. height: math.unit(5 + 11 / 12, "feet"),
  15875. weight: math.unit(144, "lb"),
  15876. name: "Front",
  15877. image: {
  15878. source: "./media/characters/gabriel/front.svg",
  15879. extra: 285 / 262,
  15880. bottom: 0.004
  15881. }
  15882. },
  15883. },
  15884. [
  15885. {
  15886. name: "Normal",
  15887. height: math.unit(5 + 11 / 12, "feet"),
  15888. default: true
  15889. },
  15890. ]
  15891. ))
  15892. characterMakers.push(() => makeCharacter(
  15893. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  15894. {
  15895. side: {
  15896. height: math.unit(6 + 5 / 12, "feet"),
  15897. weight: math.unit(300, "lb"),
  15898. name: "Side",
  15899. image: {
  15900. source: "./media/characters/tempest-suicune/side.svg",
  15901. extra: 195 / 154,
  15902. bottom: 0.04
  15903. }
  15904. },
  15905. },
  15906. [
  15907. {
  15908. name: "Normal",
  15909. height: math.unit(6 + 5 / 12, "feet"),
  15910. default: true
  15911. },
  15912. ]
  15913. ))
  15914. characterMakers.push(() => makeCharacter(
  15915. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  15916. {
  15917. front: {
  15918. height: math.unit(7 + 2 / 12, "feet"),
  15919. weight: math.unit(322, "lb"),
  15920. name: "Front",
  15921. image: {
  15922. source: "./media/characters/vulcan/front.svg",
  15923. extra: 154 / 147,
  15924. bottom: 0.04
  15925. }
  15926. },
  15927. },
  15928. [
  15929. {
  15930. name: "Normal",
  15931. height: math.unit(7 + 2 / 12, "feet"),
  15932. default: true
  15933. },
  15934. ]
  15935. ))
  15936. characterMakers.push(() => makeCharacter(
  15937. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  15938. {
  15939. front: {
  15940. height: math.unit(5 + 10 / 12, "feet"),
  15941. weight: math.unit(264, "lb"),
  15942. name: "Front",
  15943. image: {
  15944. source: "./media/characters/gault/front.svg",
  15945. extra: 161 / 140,
  15946. bottom: 0.028
  15947. }
  15948. },
  15949. },
  15950. [
  15951. {
  15952. name: "Normal",
  15953. height: math.unit(5 + 10 / 12, "feet"),
  15954. default: true
  15955. },
  15956. ]
  15957. ))
  15958. characterMakers.push(() => makeCharacter(
  15959. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  15960. {
  15961. front: {
  15962. height: math.unit(6, "feet"),
  15963. weight: math.unit(150, "lb"),
  15964. name: "Front",
  15965. image: {
  15966. source: "./media/characters/shard/front.svg",
  15967. extra: 273 / 238,
  15968. bottom: 0.02
  15969. }
  15970. },
  15971. },
  15972. [
  15973. {
  15974. name: "Normal",
  15975. height: math.unit(3 + 6 / 12, "feet"),
  15976. default: true
  15977. },
  15978. ]
  15979. ))
  15980. characterMakers.push(() => makeCharacter(
  15981. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  15982. {
  15983. front: {
  15984. height: math.unit(5 + 11 / 12, "feet"),
  15985. weight: math.unit(146, "lb"),
  15986. name: "Front",
  15987. image: {
  15988. source: "./media/characters/ashe/front.svg",
  15989. extra: 400 / 373,
  15990. bottom: 0.01
  15991. }
  15992. },
  15993. },
  15994. [
  15995. {
  15996. name: "Normal",
  15997. height: math.unit(5 + 11 / 12, "feet"),
  15998. default: true
  15999. },
  16000. ]
  16001. ))
  16002. characterMakers.push(() => makeCharacter(
  16003. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  16004. {
  16005. front: {
  16006. height: math.unit(5 + 5 / 12, "feet"),
  16007. weight: math.unit(135, "lb"),
  16008. name: "Front",
  16009. image: {
  16010. source: "./media/characters/beatrix/front.svg",
  16011. extra: 392 / 379,
  16012. bottom: 0.01
  16013. }
  16014. },
  16015. },
  16016. [
  16017. {
  16018. name: "Normal",
  16019. height: math.unit(6, "feet"),
  16020. default: true
  16021. },
  16022. ]
  16023. ))
  16024. characterMakers.push(() => makeCharacter(
  16025. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  16026. {
  16027. front: {
  16028. height: math.unit(6 + 2/12, "feet"),
  16029. weight: math.unit(135, "lb"),
  16030. name: "Front",
  16031. image: {
  16032. source: "./media/characters/ignatius/front.svg",
  16033. extra: 1380/1259,
  16034. bottom: 27/1407
  16035. }
  16036. },
  16037. },
  16038. [
  16039. {
  16040. name: "Normal",
  16041. height: math.unit(6 + 2/12, "feet"),
  16042. default: true
  16043. },
  16044. ]
  16045. ))
  16046. characterMakers.push(() => makeCharacter(
  16047. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  16048. {
  16049. front: {
  16050. height: math.unit(6 + 2 / 12, "feet"),
  16051. weight: math.unit(138, "lb"),
  16052. name: "Front",
  16053. image: {
  16054. source: "./media/characters/mei-li/front.svg",
  16055. extra: 237 / 229,
  16056. bottom: 0.03
  16057. }
  16058. },
  16059. },
  16060. [
  16061. {
  16062. name: "Normal",
  16063. height: math.unit(6 + 2 / 12, "feet"),
  16064. default: true
  16065. },
  16066. ]
  16067. ))
  16068. characterMakers.push(() => makeCharacter(
  16069. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  16070. {
  16071. front: {
  16072. height: math.unit(2 + 4 / 12, "feet"),
  16073. weight: math.unit(62, "lb"),
  16074. name: "Front",
  16075. image: {
  16076. source: "./media/characters/puru/front.svg",
  16077. extra: 206 / 149,
  16078. bottom: 0.06
  16079. }
  16080. },
  16081. },
  16082. [
  16083. {
  16084. name: "Normal",
  16085. height: math.unit(2 + 4 / 12, "feet"),
  16086. default: true
  16087. },
  16088. ]
  16089. ))
  16090. characterMakers.push(() => makeCharacter(
  16091. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  16092. {
  16093. anthro: {
  16094. height: math.unit(5 + 8/12, "feet"),
  16095. weight: math.unit(200, "lb"),
  16096. energyNeed: math.unit(2000, "kcal"),
  16097. name: "Anthro",
  16098. image: {
  16099. source: "./media/characters/kee/anthro.svg",
  16100. extra: 3251/3184,
  16101. bottom: 250/3501
  16102. }
  16103. },
  16104. taur: {
  16105. height: math.unit(11, "feet"),
  16106. weight: math.unit(500, "lb"),
  16107. energyNeed: math.unit(5000, "kcal"),
  16108. name: "Taur",
  16109. image: {
  16110. source: "./media/characters/kee/taur.svg",
  16111. extra: 1362/1320,
  16112. bottom: 83/1445
  16113. }
  16114. },
  16115. },
  16116. [
  16117. {
  16118. name: "Normal",
  16119. height: math.unit(5 + 8/12, "feet"),
  16120. default: true
  16121. },
  16122. {
  16123. name: "Macro",
  16124. height: math.unit(35, "feet")
  16125. },
  16126. ]
  16127. ))
  16128. characterMakers.push(() => makeCharacter(
  16129. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  16130. {
  16131. anthro: {
  16132. height: math.unit(7, "feet"),
  16133. weight: math.unit(190, "lb"),
  16134. name: "Anthro",
  16135. image: {
  16136. source: "./media/characters/cobalt-dracha/anthro.svg",
  16137. extra: 231 / 225,
  16138. bottom: 0.04
  16139. }
  16140. },
  16141. feral: {
  16142. height: math.unit(9 + 7 / 12, "feet"),
  16143. weight: math.unit(294, "lb"),
  16144. name: "Feral",
  16145. image: {
  16146. source: "./media/characters/cobalt-dracha/feral.svg",
  16147. extra: 692 / 633,
  16148. bottom: 0.05
  16149. }
  16150. },
  16151. },
  16152. [
  16153. {
  16154. name: "Normal",
  16155. height: math.unit(7, "feet"),
  16156. default: true
  16157. },
  16158. ]
  16159. ))
  16160. characterMakers.push(() => makeCharacter(
  16161. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  16162. {
  16163. fallen: {
  16164. height: math.unit(11 + 8 / 12, "feet"),
  16165. weight: math.unit(485, "lb"),
  16166. name: "Java (Fallen)",
  16167. rename: true,
  16168. image: {
  16169. source: "./media/characters/java/fallen.svg",
  16170. extra: 226 / 208,
  16171. bottom: 0.005
  16172. }
  16173. },
  16174. godkin: {
  16175. height: math.unit(10 + 6 / 12, "feet"),
  16176. weight: math.unit(328, "lb"),
  16177. name: "Java (Godkin)",
  16178. rename: true,
  16179. image: {
  16180. source: "./media/characters/java/godkin.svg",
  16181. extra: 1104/1068,
  16182. bottom: 36/1140
  16183. }
  16184. },
  16185. },
  16186. [
  16187. {
  16188. name: "Normal",
  16189. height: math.unit(11 + 8 / 12, "feet"),
  16190. default: true
  16191. },
  16192. ]
  16193. ))
  16194. characterMakers.push(() => makeCharacter(
  16195. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  16196. {
  16197. front: {
  16198. height: math.unit(5 + 9 / 12, "feet"),
  16199. weight: math.unit(170, "lb"),
  16200. name: "Front",
  16201. image: {
  16202. source: "./media/characters/purna/front.svg",
  16203. extra: 239 / 229,
  16204. bottom: 0.01
  16205. }
  16206. },
  16207. },
  16208. [
  16209. {
  16210. name: "Normal",
  16211. height: math.unit(5 + 9 / 12, "feet"),
  16212. default: true
  16213. },
  16214. ]
  16215. ))
  16216. characterMakers.push(() => makeCharacter(
  16217. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  16218. {
  16219. front: {
  16220. height: math.unit(5 + 9 / 12, "feet"),
  16221. weight: math.unit(142, "lb"),
  16222. name: "Front",
  16223. image: {
  16224. source: "./media/characters/kuva/front.svg",
  16225. extra: 281 / 271,
  16226. bottom: 0.006
  16227. }
  16228. },
  16229. },
  16230. [
  16231. {
  16232. name: "Normal",
  16233. height: math.unit(5 + 9 / 12, "feet"),
  16234. default: true
  16235. },
  16236. ]
  16237. ))
  16238. characterMakers.push(() => makeCharacter(
  16239. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  16240. {
  16241. anthro: {
  16242. height: math.unit(9 + 2 / 12, "feet"),
  16243. weight: math.unit(270, "lb"),
  16244. name: "Anthro",
  16245. image: {
  16246. source: "./media/characters/embra/anthro.svg",
  16247. extra: 200 / 187,
  16248. bottom: 0.02
  16249. }
  16250. },
  16251. feral: {
  16252. height: math.unit(18 + 8 / 12, "feet"),
  16253. weight: math.unit(576, "lb"),
  16254. name: "Feral",
  16255. image: {
  16256. source: "./media/characters/embra/feral.svg",
  16257. extra: 152 / 137,
  16258. bottom: 0.037
  16259. }
  16260. },
  16261. },
  16262. [
  16263. {
  16264. name: "Normal",
  16265. height: math.unit(9 + 2 / 12, "feet"),
  16266. default: true
  16267. },
  16268. ]
  16269. ))
  16270. characterMakers.push(() => makeCharacter(
  16271. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  16272. {
  16273. anthro: {
  16274. height: math.unit(10 + 9 / 12, "feet"),
  16275. weight: math.unit(224, "lb"),
  16276. name: "Anthro",
  16277. image: {
  16278. source: "./media/characters/grottos/anthro.svg",
  16279. extra: 350 / 332,
  16280. bottom: 0.045
  16281. }
  16282. },
  16283. feral: {
  16284. height: math.unit(20 + 7 / 12, "feet"),
  16285. weight: math.unit(629, "lb"),
  16286. name: "Feral",
  16287. image: {
  16288. source: "./media/characters/grottos/feral.svg",
  16289. extra: 207 / 190,
  16290. bottom: 0.05
  16291. }
  16292. },
  16293. },
  16294. [
  16295. {
  16296. name: "Normal",
  16297. height: math.unit(10 + 9 / 12, "feet"),
  16298. default: true
  16299. },
  16300. ]
  16301. ))
  16302. characterMakers.push(() => makeCharacter(
  16303. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  16304. {
  16305. anthro: {
  16306. height: math.unit(9 + 6 / 12, "feet"),
  16307. weight: math.unit(298, "lb"),
  16308. name: "Anthro",
  16309. image: {
  16310. source: "./media/characters/frifna/anthro.svg",
  16311. extra: 282 / 269,
  16312. bottom: 0.015
  16313. }
  16314. },
  16315. feral: {
  16316. height: math.unit(16 + 2 / 12, "feet"),
  16317. weight: math.unit(624, "lb"),
  16318. name: "Feral",
  16319. image: {
  16320. source: "./media/characters/frifna/feral.svg"
  16321. }
  16322. },
  16323. },
  16324. [
  16325. {
  16326. name: "Normal",
  16327. height: math.unit(9 + 6 / 12, "feet"),
  16328. default: true
  16329. },
  16330. ]
  16331. ))
  16332. characterMakers.push(() => makeCharacter(
  16333. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  16334. {
  16335. front: {
  16336. height: math.unit(6 + 2 / 12, "feet"),
  16337. weight: math.unit(168, "lb"),
  16338. name: "Front",
  16339. image: {
  16340. source: "./media/characters/elise/front.svg",
  16341. extra: 276 / 271
  16342. }
  16343. },
  16344. },
  16345. [
  16346. {
  16347. name: "Normal",
  16348. height: math.unit(6 + 2 / 12, "feet"),
  16349. default: true
  16350. },
  16351. ]
  16352. ))
  16353. characterMakers.push(() => makeCharacter(
  16354. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  16355. {
  16356. front: {
  16357. height: math.unit(5 + 10 / 12, "feet"),
  16358. weight: math.unit(210, "lb"),
  16359. name: "Front",
  16360. image: {
  16361. source: "./media/characters/glade/front.svg",
  16362. extra: 258 / 247,
  16363. bottom: 0.008
  16364. }
  16365. },
  16366. },
  16367. [
  16368. {
  16369. name: "Normal",
  16370. height: math.unit(5 + 10 / 12, "feet"),
  16371. default: true
  16372. },
  16373. ]
  16374. ))
  16375. characterMakers.push(() => makeCharacter(
  16376. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  16377. {
  16378. front: {
  16379. height: math.unit(5 + 10 / 12, "feet"),
  16380. weight: math.unit(129, "lb"),
  16381. name: "Front",
  16382. image: {
  16383. source: "./media/characters/rina/front.svg",
  16384. extra: 266 / 255,
  16385. bottom: 0.005
  16386. }
  16387. },
  16388. },
  16389. [
  16390. {
  16391. name: "Normal",
  16392. height: math.unit(5 + 10 / 12, "feet"),
  16393. default: true
  16394. },
  16395. ]
  16396. ))
  16397. characterMakers.push(() => makeCharacter(
  16398. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  16399. {
  16400. front: {
  16401. height: math.unit(6 + 1 / 12, "feet"),
  16402. weight: math.unit(192, "lb"),
  16403. name: "Front",
  16404. image: {
  16405. source: "./media/characters/veronica/front.svg",
  16406. extra: 319 / 309,
  16407. bottom: 0.005
  16408. }
  16409. },
  16410. },
  16411. [
  16412. {
  16413. name: "Normal",
  16414. height: math.unit(6 + 1 / 12, "feet"),
  16415. default: true
  16416. },
  16417. ]
  16418. ))
  16419. characterMakers.push(() => makeCharacter(
  16420. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  16421. {
  16422. front: {
  16423. height: math.unit(9 + 3 / 12, "feet"),
  16424. weight: math.unit(1100, "lb"),
  16425. name: "Front",
  16426. image: {
  16427. source: "./media/characters/braxton/front.svg",
  16428. extra: 1057 / 984,
  16429. bottom: 0.05
  16430. }
  16431. },
  16432. },
  16433. [
  16434. {
  16435. name: "Normal",
  16436. height: math.unit(9 + 3 / 12, "feet")
  16437. },
  16438. {
  16439. name: "Giant",
  16440. height: math.unit(300, "feet"),
  16441. default: true
  16442. },
  16443. {
  16444. name: "Macro",
  16445. height: math.unit(700, "feet")
  16446. },
  16447. {
  16448. name: "Megamacro",
  16449. height: math.unit(6000, "feet")
  16450. },
  16451. ]
  16452. ))
  16453. characterMakers.push(() => makeCharacter(
  16454. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  16455. {
  16456. front: {
  16457. height: math.unit(6 + 7 / 12, "feet"),
  16458. weight: math.unit(150, "lb"),
  16459. name: "Front",
  16460. image: {
  16461. source: "./media/characters/blue-feyonics/front.svg",
  16462. extra: 1403 / 1306,
  16463. bottom: 0.047
  16464. }
  16465. },
  16466. },
  16467. [
  16468. {
  16469. name: "Normal",
  16470. height: math.unit(6 + 7 / 12, "feet"),
  16471. default: true
  16472. },
  16473. ]
  16474. ))
  16475. characterMakers.push(() => makeCharacter(
  16476. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  16477. {
  16478. front: {
  16479. height: math.unit(1.8, "meters"),
  16480. weight: math.unit(60, "kg"),
  16481. name: "Front",
  16482. image: {
  16483. source: "./media/characters/maxwell/front.svg",
  16484. extra: 2060 / 1873
  16485. }
  16486. },
  16487. },
  16488. [
  16489. {
  16490. name: "Micro",
  16491. height: math.unit(1, "mm")
  16492. },
  16493. {
  16494. name: "Normal",
  16495. height: math.unit(1.8, "meter"),
  16496. default: true
  16497. },
  16498. {
  16499. name: "Macro",
  16500. height: math.unit(30, "meters")
  16501. },
  16502. {
  16503. name: "Megamacro",
  16504. height: math.unit(10, "km")
  16505. },
  16506. ]
  16507. ))
  16508. characterMakers.push(() => makeCharacter(
  16509. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  16510. {
  16511. front: {
  16512. height: math.unit(6, "feet"),
  16513. weight: math.unit(150, "lb"),
  16514. name: "Front",
  16515. image: {
  16516. source: "./media/characters/jack/front.svg",
  16517. extra: 1754 / 1640,
  16518. bottom: 0.01
  16519. }
  16520. },
  16521. },
  16522. [
  16523. {
  16524. name: "Normal",
  16525. height: math.unit(80000, "feet"),
  16526. default: true
  16527. },
  16528. {
  16529. name: "Max size",
  16530. height: math.unit(10, "lightyears")
  16531. },
  16532. ]
  16533. ))
  16534. characterMakers.push(() => makeCharacter(
  16535. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  16536. {
  16537. urban: {
  16538. height: math.unit(5, "feet"),
  16539. weight: math.unit(240, "lb"),
  16540. name: "Urban",
  16541. image: {
  16542. source: "./media/characters/cafat/urban.svg",
  16543. extra: 1223/1126,
  16544. bottom: 205/1428
  16545. }
  16546. },
  16547. summer: {
  16548. height: math.unit(5, "feet"),
  16549. weight: math.unit(240, "lb"),
  16550. name: "Summer",
  16551. image: {
  16552. source: "./media/characters/cafat/summer.svg",
  16553. extra: 1223/1126,
  16554. bottom: 205/1428
  16555. }
  16556. },
  16557. winter: {
  16558. height: math.unit(5, "feet"),
  16559. weight: math.unit(240, "lb"),
  16560. name: "Winter",
  16561. image: {
  16562. source: "./media/characters/cafat/winter.svg",
  16563. extra: 1223/1126,
  16564. bottom: 205/1428
  16565. }
  16566. },
  16567. lingerie: {
  16568. height: math.unit(5, "feet"),
  16569. weight: math.unit(240, "lb"),
  16570. name: "Lingerie",
  16571. image: {
  16572. source: "./media/characters/cafat/lingerie.svg",
  16573. extra: 1223/1126,
  16574. bottom: 205/1428
  16575. }
  16576. },
  16577. upright: {
  16578. height: math.unit(6.3, "feet"),
  16579. weight: math.unit(240, "lb"),
  16580. name: "Upright",
  16581. image: {
  16582. source: "./media/characters/cafat/upright.svg",
  16583. bottom: 0.01
  16584. }
  16585. },
  16586. uprightFull: {
  16587. height: math.unit(6.3, "feet"),
  16588. weight: math.unit(240, "lb"),
  16589. name: "Upright (Full)",
  16590. image: {
  16591. source: "./media/characters/cafat/upright-full.svg",
  16592. bottom: 0.01
  16593. }
  16594. },
  16595. },
  16596. [
  16597. {
  16598. name: "Small",
  16599. height: math.unit(5, "feet"),
  16600. default: true
  16601. },
  16602. {
  16603. name: "Large",
  16604. height: math.unit(13, "feet")
  16605. },
  16606. ]
  16607. ))
  16608. characterMakers.push(() => makeCharacter(
  16609. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  16610. {
  16611. front: {
  16612. height: math.unit(6, "feet"),
  16613. weight: math.unit(150, "lb"),
  16614. name: "Front",
  16615. image: {
  16616. source: "./media/characters/verin-raharra/front.svg",
  16617. extra: 5019 / 4835,
  16618. bottom: 0.023
  16619. }
  16620. },
  16621. },
  16622. [
  16623. {
  16624. name: "Normal",
  16625. height: math.unit(7 + 5 / 12, "feet"),
  16626. default: true
  16627. },
  16628. {
  16629. name: "Upsized",
  16630. height: math.unit(20, "feet")
  16631. },
  16632. ]
  16633. ))
  16634. characterMakers.push(() => makeCharacter(
  16635. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  16636. {
  16637. front: {
  16638. height: math.unit(7, "feet"),
  16639. weight: math.unit(230, "lb"),
  16640. name: "Front",
  16641. image: {
  16642. source: "./media/characters/nakata/front.svg",
  16643. extra: 1.005,
  16644. bottom: 0.01
  16645. }
  16646. },
  16647. },
  16648. [
  16649. {
  16650. name: "Normal",
  16651. height: math.unit(7, "feet"),
  16652. default: true
  16653. },
  16654. {
  16655. name: "Big",
  16656. height: math.unit(14, "feet")
  16657. },
  16658. {
  16659. name: "Macro",
  16660. height: math.unit(400, "feet")
  16661. },
  16662. ]
  16663. ))
  16664. characterMakers.push(() => makeCharacter(
  16665. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  16666. {
  16667. front: {
  16668. height: math.unit(4.91, "feet"),
  16669. weight: math.unit(100, "lb"),
  16670. name: "Front",
  16671. image: {
  16672. source: "./media/characters/lily/front.svg",
  16673. extra: 1585 / 1415,
  16674. bottom: 0.02
  16675. }
  16676. },
  16677. },
  16678. [
  16679. {
  16680. name: "Normal",
  16681. height: math.unit(4.91, "feet"),
  16682. default: true
  16683. },
  16684. ]
  16685. ))
  16686. characterMakers.push(() => makeCharacter(
  16687. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  16688. {
  16689. laying: {
  16690. height: math.unit(4 + 4 / 12, "feet"),
  16691. weight: math.unit(600, "lb"),
  16692. name: "Laying",
  16693. image: {
  16694. source: "./media/characters/sheila/laying.svg",
  16695. extra: 1333 / 1265,
  16696. bottom: 0.16
  16697. }
  16698. },
  16699. },
  16700. [
  16701. {
  16702. name: "Normal",
  16703. height: math.unit(4 + 4 / 12, "feet"),
  16704. default: true
  16705. },
  16706. ]
  16707. ))
  16708. characterMakers.push(() => makeCharacter(
  16709. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  16710. {
  16711. front: {
  16712. height: math.unit(6, "feet"),
  16713. weight: math.unit(190, "lb"),
  16714. name: "Front",
  16715. image: {
  16716. source: "./media/characters/sax/front.svg",
  16717. extra: 1187 / 973,
  16718. bottom: 0.042
  16719. }
  16720. },
  16721. },
  16722. [
  16723. {
  16724. name: "Micro",
  16725. height: math.unit(4, "inches"),
  16726. default: true
  16727. },
  16728. ]
  16729. ))
  16730. characterMakers.push(() => makeCharacter(
  16731. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  16732. {
  16733. front: {
  16734. height: math.unit(6, "feet"),
  16735. weight: math.unit(150, "lb"),
  16736. name: "Front",
  16737. image: {
  16738. source: "./media/characters/pandora/front.svg",
  16739. extra: 2720 / 2556,
  16740. bottom: 0.015
  16741. }
  16742. },
  16743. back: {
  16744. height: math.unit(6, "feet"),
  16745. weight: math.unit(150, "lb"),
  16746. name: "Back",
  16747. image: {
  16748. source: "./media/characters/pandora/back.svg",
  16749. extra: 2720 / 2556,
  16750. bottom: 0.01
  16751. }
  16752. },
  16753. beans: {
  16754. height: math.unit(6 / 8, "feet"),
  16755. name: "Beans",
  16756. image: {
  16757. source: "./media/characters/pandora/beans.svg"
  16758. }
  16759. },
  16760. collar: {
  16761. height: math.unit(0.31, "feet"),
  16762. name: "Collar",
  16763. image: {
  16764. source: "./media/characters/pandora/collar.svg"
  16765. }
  16766. },
  16767. skirt: {
  16768. height: math.unit(6, "feet"),
  16769. weight: math.unit(150, "lb"),
  16770. name: "Skirt",
  16771. image: {
  16772. source: "./media/characters/pandora/skirt.svg",
  16773. extra: 1622 / 1525,
  16774. bottom: 0.015
  16775. }
  16776. },
  16777. hoodie: {
  16778. height: math.unit(6, "feet"),
  16779. weight: math.unit(150, "lb"),
  16780. name: "Hoodie",
  16781. image: {
  16782. source: "./media/characters/pandora/hoodie.svg",
  16783. extra: 1622 / 1525,
  16784. bottom: 0.015
  16785. }
  16786. },
  16787. casual: {
  16788. height: math.unit(6, "feet"),
  16789. weight: math.unit(150, "lb"),
  16790. name: "Casual",
  16791. image: {
  16792. source: "./media/characters/pandora/casual.svg",
  16793. extra: 1622 / 1525,
  16794. bottom: 0.015
  16795. }
  16796. },
  16797. },
  16798. [
  16799. {
  16800. name: "Normal",
  16801. height: math.unit(6, "feet")
  16802. },
  16803. {
  16804. name: "Big Steppy",
  16805. height: math.unit(1, "km"),
  16806. default: true
  16807. },
  16808. {
  16809. name: "Galactic Steppy",
  16810. height: math.unit(2, "gigameters")
  16811. },
  16812. ]
  16813. ))
  16814. characterMakers.push(() => makeCharacter(
  16815. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  16816. {
  16817. side: {
  16818. height: math.unit(10, "feet"),
  16819. weight: math.unit(800, "kg"),
  16820. name: "Side",
  16821. image: {
  16822. source: "./media/characters/venio-darcony/side.svg",
  16823. extra: 1373 / 1003,
  16824. bottom: 0.037
  16825. }
  16826. },
  16827. front: {
  16828. height: math.unit(19, "feet"),
  16829. weight: math.unit(800, "kg"),
  16830. name: "Front",
  16831. image: {
  16832. source: "./media/characters/venio-darcony/front.svg"
  16833. }
  16834. },
  16835. back: {
  16836. height: math.unit(19, "feet"),
  16837. weight: math.unit(800, "kg"),
  16838. name: "Back",
  16839. image: {
  16840. source: "./media/characters/venio-darcony/back.svg"
  16841. }
  16842. },
  16843. sideNsfw: {
  16844. height: math.unit(10, "feet"),
  16845. weight: math.unit(800, "kg"),
  16846. name: "Side (NSFW)",
  16847. image: {
  16848. source: "./media/characters/venio-darcony/side-nsfw.svg",
  16849. extra: 1373 / 1003,
  16850. bottom: 0.037
  16851. }
  16852. },
  16853. frontNsfw: {
  16854. height: math.unit(19, "feet"),
  16855. weight: math.unit(800, "kg"),
  16856. name: "Front (NSFW)",
  16857. image: {
  16858. source: "./media/characters/venio-darcony/front-nsfw.svg"
  16859. }
  16860. },
  16861. backNsfw: {
  16862. height: math.unit(19, "feet"),
  16863. weight: math.unit(800, "kg"),
  16864. name: "Back (NSFW)",
  16865. image: {
  16866. source: "./media/characters/venio-darcony/back-nsfw.svg"
  16867. }
  16868. },
  16869. sideArmored: {
  16870. height: math.unit(10, "feet"),
  16871. weight: math.unit(800, "kg"),
  16872. name: "Side (Armored)",
  16873. image: {
  16874. source: "./media/characters/venio-darcony/side-armored.svg",
  16875. extra: 1373 / 1003,
  16876. bottom: 0.037
  16877. }
  16878. },
  16879. frontArmored: {
  16880. height: math.unit(19, "feet"),
  16881. weight: math.unit(900, "kg"),
  16882. name: "Front (Armored)",
  16883. image: {
  16884. source: "./media/characters/venio-darcony/front-armored.svg"
  16885. }
  16886. },
  16887. backArmored: {
  16888. height: math.unit(19, "feet"),
  16889. weight: math.unit(900, "kg"),
  16890. name: "Back (Armored)",
  16891. image: {
  16892. source: "./media/characters/venio-darcony/back-armored.svg"
  16893. }
  16894. },
  16895. sword: {
  16896. height: math.unit(10, "feet"),
  16897. weight: math.unit(50, "lb"),
  16898. name: "Sword",
  16899. image: {
  16900. source: "./media/characters/venio-darcony/sword.svg"
  16901. }
  16902. },
  16903. },
  16904. [
  16905. {
  16906. name: "Normal",
  16907. height: math.unit(10, "feet")
  16908. },
  16909. {
  16910. name: "Macro",
  16911. height: math.unit(130, "feet"),
  16912. default: true
  16913. },
  16914. {
  16915. name: "Macro+",
  16916. height: math.unit(240, "feet")
  16917. },
  16918. ]
  16919. ))
  16920. characterMakers.push(() => makeCharacter(
  16921. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  16922. {
  16923. front: {
  16924. height: math.unit(6, "feet"),
  16925. weight: math.unit(150, "lb"),
  16926. name: "Front",
  16927. image: {
  16928. source: "./media/characters/veski/front.svg",
  16929. extra: 1299 / 1225,
  16930. bottom: 0.04
  16931. }
  16932. },
  16933. back: {
  16934. height: math.unit(6, "feet"),
  16935. weight: math.unit(150, "lb"),
  16936. name: "Back",
  16937. image: {
  16938. source: "./media/characters/veski/back.svg",
  16939. extra: 1299 / 1225,
  16940. bottom: 0.008
  16941. }
  16942. },
  16943. maw: {
  16944. height: math.unit(1.5 * 1.21, "feet"),
  16945. name: "Maw",
  16946. image: {
  16947. source: "./media/characters/veski/maw.svg"
  16948. }
  16949. },
  16950. },
  16951. [
  16952. {
  16953. name: "Macro",
  16954. height: math.unit(2, "km"),
  16955. default: true
  16956. },
  16957. ]
  16958. ))
  16959. characterMakers.push(() => makeCharacter(
  16960. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  16961. {
  16962. front: {
  16963. height: math.unit(5 + 7 / 12, "feet"),
  16964. name: "Front",
  16965. image: {
  16966. source: "./media/characters/isabelle/front.svg",
  16967. extra: 2130 / 1976,
  16968. bottom: 0.05
  16969. }
  16970. },
  16971. },
  16972. [
  16973. {
  16974. name: "Supermicro",
  16975. height: math.unit(10, "micrometers")
  16976. },
  16977. {
  16978. name: "Micro",
  16979. height: math.unit(1, "inch")
  16980. },
  16981. {
  16982. name: "Tiny",
  16983. height: math.unit(5, "inches")
  16984. },
  16985. {
  16986. name: "Standard",
  16987. height: math.unit(5 + 7 / 12, "inches")
  16988. },
  16989. {
  16990. name: "Macro",
  16991. height: math.unit(80, "meters"),
  16992. default: true
  16993. },
  16994. {
  16995. name: "Megamacro",
  16996. height: math.unit(250, "meters")
  16997. },
  16998. {
  16999. name: "Gigamacro",
  17000. height: math.unit(5, "km")
  17001. },
  17002. {
  17003. name: "Cosmic",
  17004. height: math.unit(2.5e6, "miles")
  17005. },
  17006. ]
  17007. ))
  17008. characterMakers.push(() => makeCharacter(
  17009. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  17010. {
  17011. front: {
  17012. height: math.unit(6, "feet"),
  17013. weight: math.unit(150, "lb"),
  17014. name: "Front",
  17015. image: {
  17016. source: "./media/characters/hanzo/front.svg",
  17017. extra: 374 / 344,
  17018. bottom: 0.02
  17019. }
  17020. },
  17021. },
  17022. [
  17023. {
  17024. name: "Normal",
  17025. height: math.unit(8, "feet"),
  17026. default: true
  17027. },
  17028. ]
  17029. ))
  17030. characterMakers.push(() => makeCharacter(
  17031. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  17032. {
  17033. front: {
  17034. height: math.unit(7, "feet"),
  17035. weight: math.unit(130, "lb"),
  17036. name: "Front",
  17037. image: {
  17038. source: "./media/characters/anna/front.svg",
  17039. extra: 169 / 145,
  17040. bottom: 0.06
  17041. }
  17042. },
  17043. full: {
  17044. height: math.unit(4.96, "feet"),
  17045. weight: math.unit(220, "lb"),
  17046. name: "Full",
  17047. image: {
  17048. source: "./media/characters/anna/full.svg",
  17049. extra: 138 / 114,
  17050. bottom: 0.15
  17051. }
  17052. },
  17053. tongue: {
  17054. height: math.unit(2.53, "feet"),
  17055. name: "Tongue",
  17056. image: {
  17057. source: "./media/characters/anna/tongue.svg"
  17058. }
  17059. },
  17060. },
  17061. [
  17062. {
  17063. name: "Normal",
  17064. height: math.unit(7, "feet"),
  17065. default: true
  17066. },
  17067. ]
  17068. ))
  17069. characterMakers.push(() => makeCharacter(
  17070. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  17071. {
  17072. front: {
  17073. height: math.unit(7, "feet"),
  17074. weight: math.unit(150, "lb"),
  17075. name: "Front",
  17076. image: {
  17077. source: "./media/characters/ian-corvid/front.svg",
  17078. extra: 150 / 142,
  17079. bottom: 0.02
  17080. }
  17081. },
  17082. back: {
  17083. height: math.unit(7, "feet"),
  17084. weight: math.unit(150, "lb"),
  17085. name: "Back",
  17086. image: {
  17087. source: "./media/characters/ian-corvid/back.svg",
  17088. extra: 150 / 143,
  17089. bottom: 0.01
  17090. }
  17091. },
  17092. stomping: {
  17093. height: math.unit(7, "feet"),
  17094. weight: math.unit(150, "lb"),
  17095. name: "Stomping",
  17096. image: {
  17097. source: "./media/characters/ian-corvid/stomping.svg",
  17098. extra: 76 / 72
  17099. }
  17100. },
  17101. sitting: {
  17102. height: math.unit(7 / 1.8, "feet"),
  17103. weight: math.unit(150, "lb"),
  17104. name: "Sitting",
  17105. image: {
  17106. source: "./media/characters/ian-corvid/sitting.svg",
  17107. extra: 1400 / 1269,
  17108. bottom: 0.15
  17109. }
  17110. },
  17111. },
  17112. [
  17113. {
  17114. name: "Tiny Microw",
  17115. height: math.unit(1, "inch")
  17116. },
  17117. {
  17118. name: "Microw",
  17119. height: math.unit(6, "inches")
  17120. },
  17121. {
  17122. name: "Crow",
  17123. height: math.unit(7 + 1 / 12, "feet"),
  17124. default: true
  17125. },
  17126. {
  17127. name: "Macrow",
  17128. height: math.unit(176, "feet")
  17129. },
  17130. ]
  17131. ))
  17132. characterMakers.push(() => makeCharacter(
  17133. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  17134. {
  17135. front: {
  17136. height: math.unit(5 + 7 / 12, "feet"),
  17137. weight: math.unit(147, "lb"),
  17138. name: "Front",
  17139. image: {
  17140. source: "./media/characters/natalie-kellon/front.svg",
  17141. extra: 1214 / 1141,
  17142. bottom: 0.02
  17143. }
  17144. },
  17145. },
  17146. [
  17147. {
  17148. name: "Micro",
  17149. height: math.unit(1 / 16, "inch")
  17150. },
  17151. {
  17152. name: "Tiny",
  17153. height: math.unit(4, "inches")
  17154. },
  17155. {
  17156. name: "Normal",
  17157. height: math.unit(5 + 7 / 12, "feet"),
  17158. default: true
  17159. },
  17160. {
  17161. name: "Amazon",
  17162. height: math.unit(12, "feet")
  17163. },
  17164. {
  17165. name: "Giantess",
  17166. height: math.unit(160, "meters")
  17167. },
  17168. {
  17169. name: "Titaness",
  17170. height: math.unit(800, "meters")
  17171. },
  17172. ]
  17173. ))
  17174. characterMakers.push(() => makeCharacter(
  17175. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  17176. {
  17177. front: {
  17178. height: math.unit(6, "feet"),
  17179. weight: math.unit(150, "lb"),
  17180. name: "Front",
  17181. image: {
  17182. source: "./media/characters/alluria/front.svg",
  17183. extra: 806 / 738,
  17184. bottom: 0.01
  17185. }
  17186. },
  17187. side: {
  17188. height: math.unit(6, "feet"),
  17189. weight: math.unit(150, "lb"),
  17190. name: "Side",
  17191. image: {
  17192. source: "./media/characters/alluria/side.svg",
  17193. extra: 800 / 750,
  17194. }
  17195. },
  17196. back: {
  17197. height: math.unit(6, "feet"),
  17198. weight: math.unit(150, "lb"),
  17199. name: "Back",
  17200. image: {
  17201. source: "./media/characters/alluria/back.svg",
  17202. extra: 806 / 738,
  17203. }
  17204. },
  17205. frontMaid: {
  17206. height: math.unit(6, "feet"),
  17207. weight: math.unit(150, "lb"),
  17208. name: "Front (Maid)",
  17209. image: {
  17210. source: "./media/characters/alluria/front-maid.svg",
  17211. extra: 806 / 738,
  17212. bottom: 0.01
  17213. }
  17214. },
  17215. sideMaid: {
  17216. height: math.unit(6, "feet"),
  17217. weight: math.unit(150, "lb"),
  17218. name: "Side (Maid)",
  17219. image: {
  17220. source: "./media/characters/alluria/side-maid.svg",
  17221. extra: 800 / 750,
  17222. bottom: 0.005
  17223. }
  17224. },
  17225. backMaid: {
  17226. height: math.unit(6, "feet"),
  17227. weight: math.unit(150, "lb"),
  17228. name: "Back (Maid)",
  17229. image: {
  17230. source: "./media/characters/alluria/back-maid.svg",
  17231. extra: 806 / 738,
  17232. }
  17233. },
  17234. },
  17235. [
  17236. {
  17237. name: "Micro",
  17238. height: math.unit(6, "inches"),
  17239. default: true
  17240. },
  17241. ]
  17242. ))
  17243. characterMakers.push(() => makeCharacter(
  17244. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  17245. {
  17246. front: {
  17247. height: math.unit(6, "feet"),
  17248. weight: math.unit(150, "lb"),
  17249. name: "Front",
  17250. image: {
  17251. source: "./media/characters/kyle/front.svg",
  17252. extra: 1069 / 962,
  17253. bottom: 77.228 / 1727.45
  17254. }
  17255. },
  17256. },
  17257. [
  17258. {
  17259. name: "Macro",
  17260. height: math.unit(150, "feet"),
  17261. default: true
  17262. },
  17263. ]
  17264. ))
  17265. characterMakers.push(() => makeCharacter(
  17266. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  17267. {
  17268. front: {
  17269. height: math.unit(6, "feet"),
  17270. weight: math.unit(300, "lb"),
  17271. name: "Front",
  17272. image: {
  17273. source: "./media/characters/duncan/front.svg",
  17274. extra: 1650 / 1482,
  17275. bottom: 0.05
  17276. }
  17277. },
  17278. },
  17279. [
  17280. {
  17281. name: "Macro",
  17282. height: math.unit(100, "feet"),
  17283. default: true
  17284. },
  17285. ]
  17286. ))
  17287. characterMakers.push(() => makeCharacter(
  17288. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  17289. {
  17290. front: {
  17291. height: math.unit(5 + 4 / 12, "feet"),
  17292. weight: math.unit(220, "lb"),
  17293. name: "Front",
  17294. image: {
  17295. source: "./media/characters/memory/front.svg",
  17296. extra: 3641 / 3545,
  17297. bottom: 0.03
  17298. }
  17299. },
  17300. back: {
  17301. height: math.unit(5 + 4 / 12, "feet"),
  17302. weight: math.unit(220, "lb"),
  17303. name: "Back",
  17304. image: {
  17305. source: "./media/characters/memory/back.svg",
  17306. extra: 3641 / 3545,
  17307. bottom: 0.025
  17308. }
  17309. },
  17310. frontSkirt: {
  17311. height: math.unit(5 + 4 / 12, "feet"),
  17312. weight: math.unit(220, "lb"),
  17313. name: "Front (Skirt)",
  17314. image: {
  17315. source: "./media/characters/memory/front-skirt.svg",
  17316. extra: 3641 / 3545,
  17317. bottom: 0.03
  17318. }
  17319. },
  17320. frontDress: {
  17321. height: math.unit(5 + 4 / 12, "feet"),
  17322. weight: math.unit(220, "lb"),
  17323. name: "Front (Dress)",
  17324. image: {
  17325. source: "./media/characters/memory/front-dress.svg",
  17326. extra: 3641 / 3545,
  17327. bottom: 0.03
  17328. }
  17329. },
  17330. },
  17331. [
  17332. {
  17333. name: "Micro",
  17334. height: math.unit(6, "inches"),
  17335. default: true
  17336. },
  17337. {
  17338. name: "Normal",
  17339. height: math.unit(5 + 4 / 12, "feet")
  17340. },
  17341. ]
  17342. ))
  17343. characterMakers.push(() => makeCharacter(
  17344. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  17345. {
  17346. front: {
  17347. height: math.unit(4 + 11 / 12, "feet"),
  17348. weight: math.unit(100, "lb"),
  17349. name: "Front",
  17350. image: {
  17351. source: "./media/characters/luno/front.svg",
  17352. extra: 1535 / 1487,
  17353. bottom: 0.03
  17354. }
  17355. },
  17356. },
  17357. [
  17358. {
  17359. name: "Micro",
  17360. height: math.unit(3, "inches")
  17361. },
  17362. {
  17363. name: "Normal",
  17364. height: math.unit(4 + 11 / 12, "feet"),
  17365. default: true
  17366. },
  17367. {
  17368. name: "Macro",
  17369. height: math.unit(300, "feet")
  17370. },
  17371. {
  17372. name: "Megamacro",
  17373. height: math.unit(700, "miles")
  17374. },
  17375. ]
  17376. ))
  17377. characterMakers.push(() => makeCharacter(
  17378. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  17379. {
  17380. front: {
  17381. height: math.unit(6 + 2 / 12, "feet"),
  17382. weight: math.unit(170, "lb"),
  17383. name: "Front",
  17384. image: {
  17385. source: "./media/characters/jamesy/front.svg",
  17386. extra: 440 / 382,
  17387. bottom: 0.005
  17388. }
  17389. },
  17390. },
  17391. [
  17392. {
  17393. name: "Micro",
  17394. height: math.unit(3, "inches")
  17395. },
  17396. {
  17397. name: "Normal",
  17398. height: math.unit(6 + 2 / 12, "feet"),
  17399. default: true
  17400. },
  17401. {
  17402. name: "Macro",
  17403. height: math.unit(300, "feet")
  17404. },
  17405. {
  17406. name: "Megamacro",
  17407. height: math.unit(700, "miles")
  17408. },
  17409. ]
  17410. ))
  17411. characterMakers.push(() => makeCharacter(
  17412. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  17413. {
  17414. front: {
  17415. height: math.unit(6, "feet"),
  17416. weight: math.unit(160, "lb"),
  17417. name: "Front",
  17418. image: {
  17419. source: "./media/characters/mark/front.svg",
  17420. extra: 3300 / 3100,
  17421. bottom: 136.42 / 3440.47
  17422. }
  17423. },
  17424. },
  17425. [
  17426. {
  17427. name: "Macro",
  17428. height: math.unit(120, "meters")
  17429. },
  17430. {
  17431. name: "Bigger Macro",
  17432. height: math.unit(350, "meters")
  17433. },
  17434. {
  17435. name: "Megamacro",
  17436. height: math.unit(8, "km"),
  17437. default: true
  17438. },
  17439. {
  17440. name: "Continental",
  17441. height: math.unit(4550, "km")
  17442. },
  17443. {
  17444. name: "Planetary",
  17445. height: math.unit(65000, "km")
  17446. },
  17447. ]
  17448. ))
  17449. characterMakers.push(() => makeCharacter(
  17450. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  17451. {
  17452. front: {
  17453. height: math.unit(6, "feet"),
  17454. weight: math.unit(400, "lb"),
  17455. name: "Front",
  17456. image: {
  17457. source: "./media/characters/mac/front.svg",
  17458. extra: 1048 / 987.7,
  17459. bottom: 60 / 1107.6,
  17460. }
  17461. },
  17462. },
  17463. [
  17464. {
  17465. name: "Macro",
  17466. height: math.unit(500, "feet"),
  17467. default: true
  17468. },
  17469. ]
  17470. ))
  17471. characterMakers.push(() => makeCharacter(
  17472. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  17473. {
  17474. front: {
  17475. height: math.unit(5 + 2 / 12, "feet"),
  17476. weight: math.unit(190, "lb"),
  17477. name: "Front",
  17478. image: {
  17479. source: "./media/characters/bari/front.svg",
  17480. extra: 3156 / 2880,
  17481. bottom: 0.03
  17482. }
  17483. },
  17484. back: {
  17485. height: math.unit(5 + 2 / 12, "feet"),
  17486. weight: math.unit(190, "lb"),
  17487. name: "Back",
  17488. image: {
  17489. source: "./media/characters/bari/back.svg",
  17490. extra: 3260 / 2834,
  17491. bottom: 0.025
  17492. }
  17493. },
  17494. frontPlush: {
  17495. height: math.unit(5 + 2 / 12, "feet"),
  17496. weight: math.unit(190, "lb"),
  17497. name: "Front (Plush)",
  17498. image: {
  17499. source: "./media/characters/bari/front-plush.svg",
  17500. extra: 1112 / 1061,
  17501. bottom: 0.002
  17502. }
  17503. },
  17504. },
  17505. [
  17506. {
  17507. name: "Micro",
  17508. height: math.unit(3, "inches")
  17509. },
  17510. {
  17511. name: "Normal",
  17512. height: math.unit(5 + 2 / 12, "feet"),
  17513. default: true
  17514. },
  17515. {
  17516. name: "Macro",
  17517. height: math.unit(20, "feet")
  17518. },
  17519. ]
  17520. ))
  17521. characterMakers.push(() => makeCharacter(
  17522. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  17523. {
  17524. front: {
  17525. height: math.unit(6 + 1 / 12, "feet"),
  17526. weight: math.unit(275, "lb"),
  17527. name: "Front",
  17528. image: {
  17529. source: "./media/characters/hunter-misha-raven/front.svg"
  17530. }
  17531. },
  17532. },
  17533. [
  17534. {
  17535. name: "Mortal",
  17536. height: math.unit(6 + 1 / 12, "feet")
  17537. },
  17538. {
  17539. name: "Divine",
  17540. height: math.unit(1.12134e34, "parsecs"),
  17541. default: true
  17542. },
  17543. ]
  17544. ))
  17545. characterMakers.push(() => makeCharacter(
  17546. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  17547. {
  17548. front: {
  17549. height: math.unit(6 + 3 / 12, "feet"),
  17550. weight: math.unit(220, "lb"),
  17551. name: "Front",
  17552. image: {
  17553. source: "./media/characters/max-calore/front.svg",
  17554. extra: 1700 / 1648,
  17555. bottom: 0.01
  17556. }
  17557. },
  17558. back: {
  17559. height: math.unit(6 + 3 / 12, "feet"),
  17560. weight: math.unit(220, "lb"),
  17561. name: "Back",
  17562. image: {
  17563. source: "./media/characters/max-calore/back.svg",
  17564. extra: 1700 / 1648,
  17565. bottom: 0.01
  17566. }
  17567. },
  17568. },
  17569. [
  17570. {
  17571. name: "Normal",
  17572. height: math.unit(6 + 3 / 12, "feet"),
  17573. default: true
  17574. },
  17575. ]
  17576. ))
  17577. characterMakers.push(() => makeCharacter(
  17578. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  17579. {
  17580. side: {
  17581. height: math.unit(2 + 8 / 12, "feet"),
  17582. weight: math.unit(99, "lb"),
  17583. name: "Side",
  17584. image: {
  17585. source: "./media/characters/aspen/side.svg",
  17586. extra: 152 / 138,
  17587. bottom: 0.032
  17588. }
  17589. },
  17590. },
  17591. [
  17592. {
  17593. name: "Normal",
  17594. height: math.unit(2 + 8 / 12, "feet"),
  17595. default: true
  17596. },
  17597. ]
  17598. ))
  17599. characterMakers.push(() => makeCharacter(
  17600. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  17601. {
  17602. side: {
  17603. height: math.unit(3 + 2 / 12, "feet"),
  17604. weight: math.unit(224, "lb"),
  17605. name: "Side",
  17606. image: {
  17607. source: "./media/characters/sheila-feral-wolf/side.svg",
  17608. extra: 179 / 166,
  17609. bottom: 0.03
  17610. }
  17611. },
  17612. },
  17613. [
  17614. {
  17615. name: "Normal",
  17616. height: math.unit(3 + 2 / 12, "feet"),
  17617. default: true
  17618. },
  17619. ]
  17620. ))
  17621. characterMakers.push(() => makeCharacter(
  17622. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  17623. {
  17624. side: {
  17625. height: math.unit(1 + 9 / 12, "feet"),
  17626. weight: math.unit(38, "lb"),
  17627. name: "Side",
  17628. image: {
  17629. source: "./media/characters/michelle/side.svg",
  17630. extra: 147 / 136.7,
  17631. bottom: 0.03
  17632. }
  17633. },
  17634. },
  17635. [
  17636. {
  17637. name: "Normal",
  17638. height: math.unit(1 + 9 / 12, "feet"),
  17639. default: true
  17640. },
  17641. ]
  17642. ))
  17643. characterMakers.push(() => makeCharacter(
  17644. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  17645. {
  17646. front: {
  17647. height: math.unit(1.54, "feet"),
  17648. weight: math.unit(50, "lb"),
  17649. name: "Front",
  17650. image: {
  17651. source: "./media/characters/nino/front.svg"
  17652. }
  17653. },
  17654. },
  17655. [
  17656. {
  17657. name: "Normal",
  17658. height: math.unit(1.54, "feet"),
  17659. default: true
  17660. },
  17661. ]
  17662. ))
  17663. characterMakers.push(() => makeCharacter(
  17664. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  17665. {
  17666. front: {
  17667. height: math.unit(1.49, "feet"),
  17668. weight: math.unit(45, "lb"),
  17669. name: "Front",
  17670. image: {
  17671. source: "./media/characters/viola/front.svg"
  17672. }
  17673. },
  17674. },
  17675. [
  17676. {
  17677. name: "Normal",
  17678. height: math.unit(1.49, "feet"),
  17679. default: true
  17680. },
  17681. ]
  17682. ))
  17683. characterMakers.push(() => makeCharacter(
  17684. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  17685. {
  17686. front: {
  17687. height: math.unit(6 + 5 / 12, "feet"),
  17688. weight: math.unit(580, "lb"),
  17689. name: "Front",
  17690. image: {
  17691. source: "./media/characters/atlas/front.svg",
  17692. extra: 298.5 / 290,
  17693. bottom: 0.015
  17694. }
  17695. },
  17696. },
  17697. [
  17698. {
  17699. name: "Normal",
  17700. height: math.unit(6 + 5 / 12, "feet"),
  17701. default: true
  17702. },
  17703. ]
  17704. ))
  17705. characterMakers.push(() => makeCharacter(
  17706. { name: "Davy", species: ["cat"], tags: ["feral"] },
  17707. {
  17708. side: {
  17709. height: math.unit(15.6, "inches"),
  17710. weight: math.unit(10, "lb"),
  17711. name: "Side",
  17712. image: {
  17713. source: "./media/characters/davy/side.svg",
  17714. extra: 200 / 170,
  17715. bottom: 0.01
  17716. }
  17717. },
  17718. },
  17719. [
  17720. {
  17721. name: "Normal",
  17722. height: math.unit(15.6, "inches"),
  17723. default: true
  17724. },
  17725. ]
  17726. ))
  17727. characterMakers.push(() => makeCharacter(
  17728. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  17729. {
  17730. side: {
  17731. height: math.unit(4 + 8 / 12, "feet"),
  17732. weight: math.unit(166, "lb"),
  17733. name: "Side",
  17734. image: {
  17735. source: "./media/characters/fiona/side.svg",
  17736. extra: 232 / 220,
  17737. bottom: 0.03
  17738. }
  17739. },
  17740. },
  17741. [
  17742. {
  17743. name: "Normal",
  17744. height: math.unit(4 + 8 / 12, "feet"),
  17745. default: true
  17746. },
  17747. ]
  17748. ))
  17749. characterMakers.push(() => makeCharacter(
  17750. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  17751. {
  17752. front: {
  17753. height: math.unit(26, "inches"),
  17754. weight: math.unit(35, "lb"),
  17755. name: "Front",
  17756. image: {
  17757. source: "./media/characters/lyla/front.svg",
  17758. bottom: 0.1
  17759. }
  17760. },
  17761. },
  17762. [
  17763. {
  17764. name: "Normal",
  17765. height: math.unit(3, "feet"),
  17766. default: true
  17767. },
  17768. ]
  17769. ))
  17770. characterMakers.push(() => makeCharacter(
  17771. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  17772. {
  17773. side: {
  17774. height: math.unit(1.8, "feet"),
  17775. weight: math.unit(44, "lb"),
  17776. name: "Side",
  17777. image: {
  17778. source: "./media/characters/perseus/side.svg",
  17779. bottom: 0.21
  17780. }
  17781. },
  17782. },
  17783. [
  17784. {
  17785. name: "Normal",
  17786. height: math.unit(1.8, "feet"),
  17787. default: true
  17788. },
  17789. ]
  17790. ))
  17791. characterMakers.push(() => makeCharacter(
  17792. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  17793. {
  17794. side: {
  17795. height: math.unit(4 + 2 / 12, "feet"),
  17796. weight: math.unit(20, "lb"),
  17797. name: "Side",
  17798. image: {
  17799. source: "./media/characters/remus/side.svg"
  17800. }
  17801. },
  17802. },
  17803. [
  17804. {
  17805. name: "Normal",
  17806. height: math.unit(4 + 2 / 12, "feet"),
  17807. default: true
  17808. },
  17809. ]
  17810. ))
  17811. characterMakers.push(() => makeCharacter(
  17812. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  17813. {
  17814. front: {
  17815. height: math.unit(4 + 11 / 12, "feet"),
  17816. weight: math.unit(114, "lb"),
  17817. name: "Front",
  17818. image: {
  17819. source: "./media/characters/raf/front.svg",
  17820. extra: 1504/1339,
  17821. bottom: 26/1530
  17822. }
  17823. },
  17824. side: {
  17825. height: math.unit(4 + 11 / 12, "feet"),
  17826. weight: math.unit(114, "lb"),
  17827. name: "Side",
  17828. image: {
  17829. source: "./media/characters/raf/side.svg",
  17830. extra: 1466/1316,
  17831. bottom: 29/1495
  17832. }
  17833. },
  17834. },
  17835. [
  17836. {
  17837. name: "Micro",
  17838. height: math.unit(2, "inches")
  17839. },
  17840. {
  17841. name: "Normal",
  17842. height: math.unit(4 + 11 / 12, "feet"),
  17843. default: true
  17844. },
  17845. {
  17846. name: "Macro",
  17847. height: math.unit(70, "feet")
  17848. },
  17849. ]
  17850. ))
  17851. characterMakers.push(() => makeCharacter(
  17852. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  17853. {
  17854. front: {
  17855. height: math.unit(1.5, "meters"),
  17856. weight: math.unit(68, "kg"),
  17857. name: "Front",
  17858. image: {
  17859. source: "./media/characters/liam-einarr/front.svg",
  17860. extra: 2822 / 2666
  17861. }
  17862. },
  17863. back: {
  17864. height: math.unit(1.5, "meters"),
  17865. weight: math.unit(68, "kg"),
  17866. name: "Back",
  17867. image: {
  17868. source: "./media/characters/liam-einarr/back.svg",
  17869. extra: 2822 / 2666,
  17870. bottom: 0.015
  17871. }
  17872. },
  17873. },
  17874. [
  17875. {
  17876. name: "Normal",
  17877. height: math.unit(1.5, "meters"),
  17878. default: true
  17879. },
  17880. {
  17881. name: "Macro",
  17882. height: math.unit(150, "meters")
  17883. },
  17884. {
  17885. name: "Megamacro",
  17886. height: math.unit(35, "km")
  17887. },
  17888. ]
  17889. ))
  17890. characterMakers.push(() => makeCharacter(
  17891. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  17892. {
  17893. front: {
  17894. height: math.unit(6, "feet"),
  17895. weight: math.unit(75, "kg"),
  17896. name: "Front",
  17897. image: {
  17898. source: "./media/characters/linda/front.svg",
  17899. extra: 930 / 874,
  17900. bottom: 0.004
  17901. }
  17902. },
  17903. },
  17904. [
  17905. {
  17906. name: "Normal",
  17907. height: math.unit(6, "feet"),
  17908. default: true
  17909. },
  17910. ]
  17911. ))
  17912. characterMakers.push(() => makeCharacter(
  17913. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  17914. {
  17915. front: {
  17916. height: math.unit(6 + 8 / 12, "feet"),
  17917. weight: math.unit(220, "lb"),
  17918. name: "Front",
  17919. image: {
  17920. source: "./media/characters/caylex/front.svg",
  17921. extra: 821 / 772,
  17922. bottom: 0.07
  17923. }
  17924. },
  17925. back: {
  17926. height: math.unit(6 + 8 / 12, "feet"),
  17927. weight: math.unit(220, "lb"),
  17928. name: "Back",
  17929. image: {
  17930. source: "./media/characters/caylex/back.svg",
  17931. extra: 821 / 772,
  17932. bottom: 0.022
  17933. }
  17934. },
  17935. hand: {
  17936. height: math.unit(1.25, "feet"),
  17937. name: "Hand",
  17938. image: {
  17939. source: "./media/characters/caylex/hand.svg"
  17940. }
  17941. },
  17942. foot: {
  17943. height: math.unit(1.6, "feet"),
  17944. name: "Foot",
  17945. image: {
  17946. source: "./media/characters/caylex/foot.svg"
  17947. }
  17948. },
  17949. armored: {
  17950. height: math.unit(6 + 8 / 12, "feet"),
  17951. weight: math.unit(250, "lb"),
  17952. name: "Armored",
  17953. image: {
  17954. source: "./media/characters/caylex/armored.svg",
  17955. extra: 1420 / 1310,
  17956. bottom: 0.045
  17957. }
  17958. },
  17959. },
  17960. [
  17961. {
  17962. name: "Normal",
  17963. height: math.unit(6 + 8 / 12, "feet"),
  17964. default: true
  17965. },
  17966. {
  17967. name: "Normal+",
  17968. height: math.unit(12, "feet")
  17969. },
  17970. ]
  17971. ))
  17972. characterMakers.push(() => makeCharacter(
  17973. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  17974. {
  17975. front: {
  17976. height: math.unit(7 + 6 / 12, "feet"),
  17977. weight: math.unit(288, "lb"),
  17978. name: "Front",
  17979. image: {
  17980. source: "./media/characters/alana/front.svg",
  17981. extra: 679 / 653,
  17982. bottom: 22.5 / 701
  17983. }
  17984. },
  17985. },
  17986. [
  17987. {
  17988. name: "Normal",
  17989. height: math.unit(7 + 6 / 12, "feet")
  17990. },
  17991. {
  17992. name: "Large",
  17993. height: math.unit(50, "feet")
  17994. },
  17995. {
  17996. name: "Macro",
  17997. height: math.unit(100, "feet"),
  17998. default: true
  17999. },
  18000. {
  18001. name: "Macro+",
  18002. height: math.unit(200, "feet")
  18003. },
  18004. ]
  18005. ))
  18006. characterMakers.push(() => makeCharacter(
  18007. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  18008. {
  18009. front: {
  18010. height: math.unit(6 + 1 / 12, "feet"),
  18011. weight: math.unit(210, "lb"),
  18012. name: "Front",
  18013. image: {
  18014. source: "./media/characters/hasani/front.svg",
  18015. extra: 244 / 232,
  18016. bottom: 0.01
  18017. }
  18018. },
  18019. back: {
  18020. height: math.unit(6 + 1 / 12, "feet"),
  18021. weight: math.unit(210, "lb"),
  18022. name: "Back",
  18023. image: {
  18024. source: "./media/characters/hasani/back.svg",
  18025. extra: 244 / 232,
  18026. bottom: 0.01
  18027. }
  18028. },
  18029. },
  18030. [
  18031. {
  18032. name: "Normal",
  18033. height: math.unit(6 + 1 / 12, "feet")
  18034. },
  18035. {
  18036. name: "Macro",
  18037. height: math.unit(175, "feet"),
  18038. default: true
  18039. },
  18040. ]
  18041. ))
  18042. characterMakers.push(() => makeCharacter(
  18043. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  18044. {
  18045. front: {
  18046. height: math.unit(1.82, "meters"),
  18047. weight: math.unit(140, "lb"),
  18048. name: "Front",
  18049. image: {
  18050. source: "./media/characters/nita/front.svg",
  18051. extra: 2473 / 2363,
  18052. bottom: 0.01
  18053. }
  18054. },
  18055. },
  18056. [
  18057. {
  18058. name: "Normal",
  18059. height: math.unit(1.82, "m")
  18060. },
  18061. {
  18062. name: "Macro",
  18063. height: math.unit(300, "m")
  18064. },
  18065. {
  18066. name: "Mistake Canon",
  18067. height: math.unit(0.5, "miles"),
  18068. default: true
  18069. },
  18070. {
  18071. name: "Big Mistake",
  18072. height: math.unit(13, "miles")
  18073. },
  18074. {
  18075. name: "Playing God",
  18076. height: math.unit(2450, "miles")
  18077. },
  18078. ]
  18079. ))
  18080. characterMakers.push(() => makeCharacter(
  18081. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  18082. {
  18083. front: {
  18084. height: math.unit(4, "feet"),
  18085. weight: math.unit(120, "lb"),
  18086. name: "Front",
  18087. image: {
  18088. source: "./media/characters/shiriko/front.svg",
  18089. extra: 970/934,
  18090. bottom: 5/975
  18091. }
  18092. },
  18093. },
  18094. [
  18095. {
  18096. name: "Normal",
  18097. height: math.unit(4, "feet"),
  18098. default: true
  18099. },
  18100. ]
  18101. ))
  18102. characterMakers.push(() => makeCharacter(
  18103. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  18104. {
  18105. front: {
  18106. height: math.unit(6, "feet"),
  18107. name: "front",
  18108. image: {
  18109. source: "./media/characters/deja/front.svg",
  18110. extra: 926 / 840,
  18111. bottom: 0.07
  18112. }
  18113. },
  18114. },
  18115. [
  18116. {
  18117. name: "Planck Length",
  18118. height: math.unit(1.6e-35, "meters")
  18119. },
  18120. {
  18121. name: "Normal",
  18122. height: math.unit(30.48, "meters"),
  18123. default: true
  18124. },
  18125. {
  18126. name: "Universal",
  18127. height: math.unit(8.8e26, "meters")
  18128. },
  18129. ]
  18130. ))
  18131. characterMakers.push(() => makeCharacter(
  18132. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  18133. {
  18134. side: {
  18135. height: math.unit(8, "feet"),
  18136. weight: math.unit(6300, "lb"),
  18137. name: "Side",
  18138. image: {
  18139. source: "./media/characters/anima/side.svg",
  18140. bottom: 0.035
  18141. }
  18142. },
  18143. },
  18144. [
  18145. {
  18146. name: "Normal",
  18147. height: math.unit(8, "feet"),
  18148. default: true
  18149. },
  18150. ]
  18151. ))
  18152. characterMakers.push(() => makeCharacter(
  18153. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  18154. {
  18155. front: {
  18156. height: math.unit(8, "feet"),
  18157. weight: math.unit(350, "lb"),
  18158. name: "Front",
  18159. image: {
  18160. source: "./media/characters/bianca/front.svg",
  18161. extra: 234 / 225,
  18162. bottom: 0.03
  18163. }
  18164. },
  18165. },
  18166. [
  18167. {
  18168. name: "Normal",
  18169. height: math.unit(8, "feet"),
  18170. default: true
  18171. },
  18172. ]
  18173. ))
  18174. characterMakers.push(() => makeCharacter(
  18175. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  18176. {
  18177. front: {
  18178. height: math.unit(6, "feet"),
  18179. weight: math.unit(150, "lb"),
  18180. name: "Front",
  18181. image: {
  18182. source: "./media/characters/adinia/front.svg",
  18183. extra: 1845 / 1672,
  18184. bottom: 0.02
  18185. }
  18186. },
  18187. back: {
  18188. height: math.unit(6, "feet"),
  18189. weight: math.unit(150, "lb"),
  18190. name: "Back",
  18191. image: {
  18192. source: "./media/characters/adinia/back.svg",
  18193. extra: 1845 / 1672,
  18194. bottom: 0.002
  18195. }
  18196. },
  18197. },
  18198. [
  18199. {
  18200. name: "Normal",
  18201. height: math.unit(11 + 5 / 12, "feet"),
  18202. default: true
  18203. },
  18204. ]
  18205. ))
  18206. characterMakers.push(() => makeCharacter(
  18207. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  18208. {
  18209. front: {
  18210. height: math.unit(3, "meters"),
  18211. weight: math.unit(200, "kg"),
  18212. name: "Front",
  18213. image: {
  18214. source: "./media/characters/lykasa/front.svg",
  18215. extra: 1076 / 976,
  18216. bottom: 0.06
  18217. }
  18218. },
  18219. },
  18220. [
  18221. {
  18222. name: "Normal",
  18223. height: math.unit(3, "meters")
  18224. },
  18225. {
  18226. name: "Kaiju",
  18227. height: math.unit(120, "meters"),
  18228. default: true
  18229. },
  18230. {
  18231. name: "Mega Kaiju",
  18232. height: math.unit(240, "km")
  18233. },
  18234. {
  18235. name: "Giga Kaiju",
  18236. height: math.unit(400, "megameters")
  18237. },
  18238. {
  18239. name: "Tera Kaiju",
  18240. height: math.unit(800, "gigameters")
  18241. },
  18242. {
  18243. name: "Kaiju Dragon Goddess",
  18244. height: math.unit(26, "zettaparsecs")
  18245. },
  18246. ]
  18247. ))
  18248. characterMakers.push(() => makeCharacter(
  18249. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  18250. {
  18251. side: {
  18252. height: math.unit(283 / 124 * 6, "feet"),
  18253. weight: math.unit(35000, "lb"),
  18254. name: "Side",
  18255. image: {
  18256. source: "./media/characters/malfaren/side.svg",
  18257. extra: 1310/529,
  18258. bottom: 24/1334
  18259. }
  18260. },
  18261. front: {
  18262. height: math.unit(22.36, "feet"),
  18263. weight: math.unit(35000, "lb"),
  18264. name: "Front",
  18265. image: {
  18266. source: "./media/characters/malfaren/front.svg",
  18267. extra: 1237/1115,
  18268. bottom: 32/1269
  18269. }
  18270. },
  18271. maw: {
  18272. height: math.unit(6.9, "feet"),
  18273. name: "Maw",
  18274. image: {
  18275. source: "./media/characters/malfaren/maw.svg"
  18276. }
  18277. },
  18278. dick: {
  18279. height: math.unit(6.19, "feet"),
  18280. name: "Dick",
  18281. image: {
  18282. source: "./media/characters/malfaren/dick.svg"
  18283. }
  18284. },
  18285. eye: {
  18286. height: math.unit(0.69, "feet"),
  18287. name: "Eye",
  18288. image: {
  18289. source: "./media/characters/malfaren/eye.svg"
  18290. }
  18291. },
  18292. },
  18293. [
  18294. {
  18295. name: "Big",
  18296. height: math.unit(283 / 162 * 6, "feet"),
  18297. },
  18298. {
  18299. name: "Bigger",
  18300. height: math.unit(283 / 124 * 6, "feet")
  18301. },
  18302. {
  18303. name: "Massive",
  18304. height: math.unit(283 / 92 * 6, "feet"),
  18305. default: true
  18306. },
  18307. {
  18308. name: "👀💦",
  18309. height: math.unit(283 / 73 * 6, "feet"),
  18310. },
  18311. ]
  18312. ))
  18313. characterMakers.push(() => makeCharacter(
  18314. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  18315. {
  18316. front: {
  18317. height: math.unit(1.7, "m"),
  18318. weight: math.unit(70, "kg"),
  18319. name: "Front",
  18320. image: {
  18321. source: "./media/characters/kernel/front.svg",
  18322. extra: 222 / 210,
  18323. bottom: 0.007
  18324. }
  18325. },
  18326. },
  18327. [
  18328. {
  18329. name: "Nano",
  18330. height: math.unit(17, "micrometers")
  18331. },
  18332. {
  18333. name: "Micro",
  18334. height: math.unit(1.7, "mm")
  18335. },
  18336. {
  18337. name: "Small",
  18338. height: math.unit(1.7, "cm")
  18339. },
  18340. {
  18341. name: "Normal",
  18342. height: math.unit(1.7, "m"),
  18343. default: true
  18344. },
  18345. ]
  18346. ))
  18347. characterMakers.push(() => makeCharacter(
  18348. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  18349. {
  18350. front: {
  18351. height: math.unit(1.75, "meters"),
  18352. weight: math.unit(65, "kg"),
  18353. name: "Front",
  18354. image: {
  18355. source: "./media/characters/jayne-folest/front.svg",
  18356. extra: 2115 / 2007,
  18357. bottom: 0.02
  18358. }
  18359. },
  18360. back: {
  18361. height: math.unit(1.75, "meters"),
  18362. weight: math.unit(65, "kg"),
  18363. name: "Back",
  18364. image: {
  18365. source: "./media/characters/jayne-folest/back.svg",
  18366. extra: 2115 / 2007,
  18367. bottom: 0.005
  18368. }
  18369. },
  18370. frontClothed: {
  18371. height: math.unit(1.75, "meters"),
  18372. weight: math.unit(65, "kg"),
  18373. name: "Front (Clothed)",
  18374. image: {
  18375. source: "./media/characters/jayne-folest/front-clothed.svg",
  18376. extra: 2115 / 2007,
  18377. bottom: 0.035
  18378. }
  18379. },
  18380. hand: {
  18381. height: math.unit(1 / 1.260, "feet"),
  18382. name: "Hand",
  18383. image: {
  18384. source: "./media/characters/jayne-folest/hand.svg"
  18385. }
  18386. },
  18387. foot: {
  18388. height: math.unit(1 / 0.918, "feet"),
  18389. name: "Foot",
  18390. image: {
  18391. source: "./media/characters/jayne-folest/foot.svg"
  18392. }
  18393. },
  18394. },
  18395. [
  18396. {
  18397. name: "Micro",
  18398. height: math.unit(4, "cm")
  18399. },
  18400. {
  18401. name: "Normal",
  18402. height: math.unit(1.75, "meters")
  18403. },
  18404. {
  18405. name: "Macro",
  18406. height: math.unit(47.5, "meters"),
  18407. default: true
  18408. },
  18409. ]
  18410. ))
  18411. characterMakers.push(() => makeCharacter(
  18412. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  18413. {
  18414. front: {
  18415. height: math.unit(180, "cm"),
  18416. weight: math.unit(70, "kg"),
  18417. name: "Front",
  18418. image: {
  18419. source: "./media/characters/algier/front.svg",
  18420. extra: 596 / 572,
  18421. bottom: 0.04
  18422. }
  18423. },
  18424. back: {
  18425. height: math.unit(180, "cm"),
  18426. weight: math.unit(70, "kg"),
  18427. name: "Back",
  18428. image: {
  18429. source: "./media/characters/algier/back.svg",
  18430. extra: 596 / 572,
  18431. bottom: 0.025
  18432. }
  18433. },
  18434. frontdressed: {
  18435. height: math.unit(180, "cm"),
  18436. weight: math.unit(150, "kg"),
  18437. name: "Front-dressed",
  18438. image: {
  18439. source: "./media/characters/algier/front-dressed.svg",
  18440. extra: 596 / 572,
  18441. bottom: 0.038
  18442. }
  18443. },
  18444. },
  18445. [
  18446. {
  18447. name: "Micro",
  18448. height: math.unit(5, "cm")
  18449. },
  18450. {
  18451. name: "Normal",
  18452. height: math.unit(180, "cm"),
  18453. default: true
  18454. },
  18455. {
  18456. name: "Macro",
  18457. height: math.unit(64, "m")
  18458. },
  18459. ]
  18460. ))
  18461. characterMakers.push(() => makeCharacter(
  18462. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  18463. {
  18464. upright: {
  18465. height: math.unit(7, "feet"),
  18466. weight: math.unit(300, "lb"),
  18467. name: "Upright",
  18468. image: {
  18469. source: "./media/characters/pretzel/upright.svg",
  18470. extra: 534 / 522,
  18471. bottom: 0.065
  18472. }
  18473. },
  18474. sprawling: {
  18475. height: math.unit(3.75, "feet"),
  18476. weight: math.unit(300, "lb"),
  18477. name: "Sprawling",
  18478. image: {
  18479. source: "./media/characters/pretzel/sprawling.svg",
  18480. extra: 314 / 281,
  18481. bottom: 0.1
  18482. }
  18483. },
  18484. tongue: {
  18485. height: math.unit(2, "feet"),
  18486. name: "Tongue",
  18487. image: {
  18488. source: "./media/characters/pretzel/tongue.svg"
  18489. }
  18490. },
  18491. },
  18492. [
  18493. {
  18494. name: "Normal",
  18495. height: math.unit(7, "feet"),
  18496. default: true
  18497. },
  18498. {
  18499. name: "Oversized",
  18500. height: math.unit(15, "feet")
  18501. },
  18502. {
  18503. name: "Huge",
  18504. height: math.unit(30, "feet")
  18505. },
  18506. {
  18507. name: "Macro",
  18508. height: math.unit(250, "feet")
  18509. },
  18510. ]
  18511. ))
  18512. characterMakers.push(() => makeCharacter(
  18513. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  18514. {
  18515. sideFront: {
  18516. height: math.unit(5 + 2 / 12, "feet"),
  18517. weight: math.unit(120, "lb"),
  18518. name: "Front Side",
  18519. image: {
  18520. source: "./media/characters/roxi/side-front.svg",
  18521. extra: 2924 / 2717,
  18522. bottom: 0.08
  18523. }
  18524. },
  18525. sideBack: {
  18526. height: math.unit(5 + 2 / 12, "feet"),
  18527. weight: math.unit(120, "lb"),
  18528. name: "Back Side",
  18529. image: {
  18530. source: "./media/characters/roxi/side-back.svg",
  18531. extra: 2904 / 2693,
  18532. bottom: 0.06
  18533. }
  18534. },
  18535. front: {
  18536. height: math.unit(5 + 2 / 12, "feet"),
  18537. weight: math.unit(120, "lb"),
  18538. name: "Front",
  18539. image: {
  18540. source: "./media/characters/roxi/front.svg",
  18541. extra: 2028 / 1907,
  18542. bottom: 0.01
  18543. }
  18544. },
  18545. frontAlt: {
  18546. height: math.unit(5 + 2 / 12, "feet"),
  18547. weight: math.unit(120, "lb"),
  18548. name: "Front (Alt)",
  18549. image: {
  18550. source: "./media/characters/roxi/front-alt.svg",
  18551. extra: 1828 / 1798,
  18552. bottom: 0.01
  18553. }
  18554. },
  18555. sitting: {
  18556. height: math.unit(2.8, "feet"),
  18557. weight: math.unit(120, "lb"),
  18558. name: "Sitting",
  18559. image: {
  18560. source: "./media/characters/roxi/sitting.svg",
  18561. extra: 2660 / 2462,
  18562. bottom: 0.1
  18563. }
  18564. },
  18565. },
  18566. [
  18567. {
  18568. name: "Normal",
  18569. height: math.unit(5 + 2 / 12, "feet"),
  18570. default: true
  18571. },
  18572. ]
  18573. ))
  18574. characterMakers.push(() => makeCharacter(
  18575. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  18576. {
  18577. side: {
  18578. height: math.unit(55, "feet"),
  18579. weight: math.unit(153, "tons"),
  18580. name: "Side",
  18581. image: {
  18582. source: "./media/characters/shadow/side.svg",
  18583. extra: 701 / 628,
  18584. bottom: 0.02
  18585. }
  18586. },
  18587. flying: {
  18588. height: math.unit(145, "feet"),
  18589. weight: math.unit(153, "tons"),
  18590. name: "Flying",
  18591. image: {
  18592. source: "./media/characters/shadow/flying.svg"
  18593. }
  18594. },
  18595. },
  18596. [
  18597. {
  18598. name: "Normal",
  18599. height: math.unit(55, "feet"),
  18600. default: true
  18601. },
  18602. ]
  18603. ))
  18604. characterMakers.push(() => makeCharacter(
  18605. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  18606. {
  18607. front: {
  18608. height: math.unit(6, "feet"),
  18609. weight: math.unit(200, "lb"),
  18610. name: "Front",
  18611. image: {
  18612. source: "./media/characters/marcie/front.svg",
  18613. extra: 960 / 876,
  18614. bottom: 58 / 1017.87
  18615. }
  18616. },
  18617. },
  18618. [
  18619. {
  18620. name: "Macro",
  18621. height: math.unit(1, "mile"),
  18622. default: true
  18623. },
  18624. ]
  18625. ))
  18626. characterMakers.push(() => makeCharacter(
  18627. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  18628. {
  18629. front: {
  18630. height: math.unit(7, "feet"),
  18631. weight: math.unit(200, "lb"),
  18632. name: "Front",
  18633. image: {
  18634. source: "./media/characters/kachina/front.svg",
  18635. extra: 1290.68 / 1119,
  18636. bottom: 36.5 / 1327.18
  18637. }
  18638. },
  18639. },
  18640. [
  18641. {
  18642. name: "Normal",
  18643. height: math.unit(7, "feet"),
  18644. default: true
  18645. },
  18646. ]
  18647. ))
  18648. characterMakers.push(() => makeCharacter(
  18649. { name: "Kash", species: ["canine"], tags: ["feral"] },
  18650. {
  18651. looking: {
  18652. height: math.unit(2, "meters"),
  18653. weight: math.unit(300, "kg"),
  18654. name: "Looking",
  18655. image: {
  18656. source: "./media/characters/kash/looking.svg",
  18657. extra: 474 / 344,
  18658. bottom: 0.03
  18659. }
  18660. },
  18661. side: {
  18662. height: math.unit(2, "meters"),
  18663. weight: math.unit(300, "kg"),
  18664. name: "Side",
  18665. image: {
  18666. source: "./media/characters/kash/side.svg",
  18667. extra: 302 / 251,
  18668. bottom: 0.03
  18669. }
  18670. },
  18671. front: {
  18672. height: math.unit(2, "meters"),
  18673. weight: math.unit(300, "kg"),
  18674. name: "Front",
  18675. image: {
  18676. source: "./media/characters/kash/front.svg",
  18677. extra: 495 / 360,
  18678. bottom: 0.015
  18679. }
  18680. },
  18681. },
  18682. [
  18683. {
  18684. name: "Normal",
  18685. height: math.unit(2, "meters"),
  18686. default: true
  18687. },
  18688. {
  18689. name: "Big",
  18690. height: math.unit(3, "meters")
  18691. },
  18692. {
  18693. name: "Large",
  18694. height: math.unit(5, "meters")
  18695. },
  18696. ]
  18697. ))
  18698. characterMakers.push(() => makeCharacter(
  18699. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  18700. {
  18701. feeding: {
  18702. height: math.unit(6.7, "feet"),
  18703. weight: math.unit(350, "lb"),
  18704. name: "Feeding",
  18705. image: {
  18706. source: "./media/characters/lalim/feeding.svg",
  18707. }
  18708. },
  18709. },
  18710. [
  18711. {
  18712. name: "Normal",
  18713. height: math.unit(6.7, "feet"),
  18714. default: true
  18715. },
  18716. ]
  18717. ))
  18718. characterMakers.push(() => makeCharacter(
  18719. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  18720. {
  18721. front: {
  18722. height: math.unit(9.5, "feet"),
  18723. weight: math.unit(600, "lb"),
  18724. name: "Front",
  18725. image: {
  18726. source: "./media/characters/de'vout/front.svg",
  18727. extra: 1443 / 1328,
  18728. bottom: 0.025
  18729. }
  18730. },
  18731. back: {
  18732. height: math.unit(9.5, "feet"),
  18733. weight: math.unit(600, "lb"),
  18734. name: "Back",
  18735. image: {
  18736. source: "./media/characters/de'vout/back.svg",
  18737. extra: 1443 / 1328
  18738. }
  18739. },
  18740. frontDressed: {
  18741. height: math.unit(9.5, "feet"),
  18742. weight: math.unit(600, "lb"),
  18743. name: "Front (Dressed",
  18744. image: {
  18745. source: "./media/characters/de'vout/front-dressed.svg",
  18746. extra: 1443 / 1328,
  18747. bottom: 0.025
  18748. }
  18749. },
  18750. backDressed: {
  18751. height: math.unit(9.5, "feet"),
  18752. weight: math.unit(600, "lb"),
  18753. name: "Back (Dressed",
  18754. image: {
  18755. source: "./media/characters/de'vout/back-dressed.svg",
  18756. extra: 1443 / 1328
  18757. }
  18758. },
  18759. },
  18760. [
  18761. {
  18762. name: "Normal",
  18763. height: math.unit(9.5, "feet"),
  18764. default: true
  18765. },
  18766. ]
  18767. ))
  18768. characterMakers.push(() => makeCharacter(
  18769. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  18770. {
  18771. front: {
  18772. height: math.unit(8, "feet"),
  18773. weight: math.unit(225, "lb"),
  18774. name: "Front",
  18775. image: {
  18776. source: "./media/characters/talana/front.svg",
  18777. extra: 1410 / 1300,
  18778. bottom: 0.015
  18779. }
  18780. },
  18781. frontDressed: {
  18782. height: math.unit(8, "feet"),
  18783. weight: math.unit(225, "lb"),
  18784. name: "Front (Dressed",
  18785. image: {
  18786. source: "./media/characters/talana/front-dressed.svg",
  18787. extra: 1410 / 1300,
  18788. bottom: 0.015
  18789. }
  18790. },
  18791. },
  18792. [
  18793. {
  18794. name: "Normal",
  18795. height: math.unit(8, "feet"),
  18796. default: true
  18797. },
  18798. ]
  18799. ))
  18800. characterMakers.push(() => makeCharacter(
  18801. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  18802. {
  18803. side: {
  18804. height: math.unit(7.2, "feet"),
  18805. weight: math.unit(150, "lb"),
  18806. name: "Side",
  18807. image: {
  18808. source: "./media/characters/xeauvok/side.svg",
  18809. extra: 1975 / 1523,
  18810. bottom: 0.07
  18811. }
  18812. },
  18813. },
  18814. [
  18815. {
  18816. name: "Normal",
  18817. height: math.unit(7.2, "feet"),
  18818. default: true
  18819. },
  18820. ]
  18821. ))
  18822. characterMakers.push(() => makeCharacter(
  18823. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  18824. {
  18825. side: {
  18826. height: math.unit(10, "feet"),
  18827. weight: math.unit(900, "kg"),
  18828. name: "Side",
  18829. image: {
  18830. source: "./media/characters/zara/side.svg",
  18831. extra: 504 / 498
  18832. }
  18833. },
  18834. },
  18835. [
  18836. {
  18837. name: "Normal",
  18838. height: math.unit(10, "feet"),
  18839. default: true
  18840. },
  18841. ]
  18842. ))
  18843. characterMakers.push(() => makeCharacter(
  18844. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  18845. {
  18846. side: {
  18847. height: math.unit(6, "feet"),
  18848. weight: math.unit(150, "lb"),
  18849. name: "Side",
  18850. image: {
  18851. source: "./media/characters/richard-dragon/side.svg",
  18852. extra: 845 / 340,
  18853. bottom: 0.017
  18854. }
  18855. },
  18856. maw: {
  18857. height: math.unit(2.97, "feet"),
  18858. name: "Maw",
  18859. image: {
  18860. source: "./media/characters/richard-dragon/maw.svg"
  18861. }
  18862. },
  18863. },
  18864. [
  18865. ]
  18866. ))
  18867. characterMakers.push(() => makeCharacter(
  18868. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  18869. {
  18870. front: {
  18871. height: math.unit(4, "feet"),
  18872. weight: math.unit(100, "lb"),
  18873. name: "Front",
  18874. image: {
  18875. source: "./media/characters/richard-smeargle/front.svg",
  18876. extra: 2952 / 2820,
  18877. bottom: 0.028
  18878. }
  18879. },
  18880. },
  18881. [
  18882. {
  18883. name: "Normal",
  18884. height: math.unit(4, "feet"),
  18885. default: true
  18886. },
  18887. {
  18888. name: "Dynamax",
  18889. height: math.unit(20, "meters")
  18890. },
  18891. ]
  18892. ))
  18893. characterMakers.push(() => makeCharacter(
  18894. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  18895. {
  18896. front: {
  18897. height: math.unit(6, "feet"),
  18898. weight: math.unit(110, "lb"),
  18899. name: "Front",
  18900. image: {
  18901. source: "./media/characters/klay/front.svg",
  18902. extra: 962 / 883,
  18903. bottom: 0.04
  18904. }
  18905. },
  18906. back: {
  18907. height: math.unit(6, "feet"),
  18908. weight: math.unit(110, "lb"),
  18909. name: "Back",
  18910. image: {
  18911. source: "./media/characters/klay/back.svg",
  18912. extra: 962 / 883
  18913. }
  18914. },
  18915. beans: {
  18916. height: math.unit(1.15, "feet"),
  18917. name: "Beans",
  18918. image: {
  18919. source: "./media/characters/klay/beans.svg"
  18920. }
  18921. },
  18922. },
  18923. [
  18924. {
  18925. name: "Micro",
  18926. height: math.unit(6, "inches")
  18927. },
  18928. {
  18929. name: "Mini",
  18930. height: math.unit(3, "feet")
  18931. },
  18932. {
  18933. name: "Normal",
  18934. height: math.unit(6, "feet"),
  18935. default: true
  18936. },
  18937. {
  18938. name: "Big",
  18939. height: math.unit(25, "feet")
  18940. },
  18941. {
  18942. name: "Macro",
  18943. height: math.unit(100, "feet")
  18944. },
  18945. {
  18946. name: "Megamacro",
  18947. height: math.unit(400, "feet")
  18948. },
  18949. ]
  18950. ))
  18951. characterMakers.push(() => makeCharacter(
  18952. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  18953. {
  18954. front: {
  18955. height: math.unit(6, "feet"),
  18956. weight: math.unit(160, "lb"),
  18957. name: "Front",
  18958. image: {
  18959. source: "./media/characters/marcus/front.svg",
  18960. extra: 734 / 676,
  18961. bottom: 0.03
  18962. }
  18963. },
  18964. },
  18965. [
  18966. {
  18967. name: "Little",
  18968. height: math.unit(6, "feet")
  18969. },
  18970. {
  18971. name: "Normal",
  18972. height: math.unit(110, "feet"),
  18973. default: true
  18974. },
  18975. {
  18976. name: "Macro",
  18977. height: math.unit(250, "feet")
  18978. },
  18979. {
  18980. name: "Megamacro",
  18981. height: math.unit(1000, "feet")
  18982. },
  18983. ]
  18984. ))
  18985. characterMakers.push(() => makeCharacter(
  18986. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  18987. {
  18988. front: {
  18989. height: math.unit(7, "feet"),
  18990. weight: math.unit(275, "lb"),
  18991. name: "Front",
  18992. image: {
  18993. source: "./media/characters/claude-delroute/front.svg",
  18994. extra: 902/827,
  18995. bottom: 26/928
  18996. }
  18997. },
  18998. side: {
  18999. height: math.unit(7, "feet"),
  19000. weight: math.unit(275, "lb"),
  19001. name: "Side",
  19002. image: {
  19003. source: "./media/characters/claude-delroute/side.svg",
  19004. extra: 908/853,
  19005. bottom: 16/924
  19006. }
  19007. },
  19008. back: {
  19009. height: math.unit(7, "feet"),
  19010. weight: math.unit(275, "lb"),
  19011. name: "Back",
  19012. image: {
  19013. source: "./media/characters/claude-delroute/back.svg",
  19014. extra: 911/829,
  19015. bottom: 18/929
  19016. }
  19017. },
  19018. maw: {
  19019. height: math.unit(0.6407, "meters"),
  19020. name: "Maw",
  19021. image: {
  19022. source: "./media/characters/claude-delroute/maw.svg"
  19023. }
  19024. },
  19025. },
  19026. [
  19027. {
  19028. name: "Normal",
  19029. height: math.unit(7, "feet"),
  19030. default: true
  19031. },
  19032. {
  19033. name: "Lorge",
  19034. height: math.unit(20, "feet")
  19035. },
  19036. ]
  19037. ))
  19038. characterMakers.push(() => makeCharacter(
  19039. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  19040. {
  19041. front: {
  19042. height: math.unit(8 + 4 / 12, "feet"),
  19043. weight: math.unit(600, "lb"),
  19044. name: "Front",
  19045. image: {
  19046. source: "./media/characters/dragonien/front.svg",
  19047. extra: 100 / 94,
  19048. bottom: 3.3 / 103.3445
  19049. }
  19050. },
  19051. back: {
  19052. height: math.unit(8 + 4 / 12, "feet"),
  19053. weight: math.unit(600, "lb"),
  19054. name: "Back",
  19055. image: {
  19056. source: "./media/characters/dragonien/back.svg",
  19057. extra: 776 / 746,
  19058. bottom: 6.4 / 782.0616
  19059. }
  19060. },
  19061. foot: {
  19062. height: math.unit(1.54, "feet"),
  19063. name: "Foot",
  19064. image: {
  19065. source: "./media/characters/dragonien/foot.svg",
  19066. }
  19067. },
  19068. },
  19069. [
  19070. {
  19071. name: "Normal",
  19072. height: math.unit(8 + 4 / 12, "feet"),
  19073. default: true
  19074. },
  19075. {
  19076. name: "Macro",
  19077. height: math.unit(200, "feet")
  19078. },
  19079. {
  19080. name: "Megamacro",
  19081. height: math.unit(1, "mile")
  19082. },
  19083. {
  19084. name: "Gigamacro",
  19085. height: math.unit(1000, "miles")
  19086. },
  19087. ]
  19088. ))
  19089. characterMakers.push(() => makeCharacter(
  19090. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  19091. {
  19092. front: {
  19093. height: math.unit(5 + 2 / 12, "feet"),
  19094. weight: math.unit(110, "lb"),
  19095. name: "Front",
  19096. image: {
  19097. source: "./media/characters/desta/front.svg",
  19098. extra: 767 / 726,
  19099. bottom: 11.7 / 779
  19100. }
  19101. },
  19102. back: {
  19103. height: math.unit(5 + 2 / 12, "feet"),
  19104. weight: math.unit(110, "lb"),
  19105. name: "Back",
  19106. image: {
  19107. source: "./media/characters/desta/back.svg",
  19108. extra: 777 / 728,
  19109. bottom: 6 / 784
  19110. }
  19111. },
  19112. frontAlt: {
  19113. height: math.unit(5 + 2 / 12, "feet"),
  19114. weight: math.unit(110, "lb"),
  19115. name: "Front",
  19116. image: {
  19117. source: "./media/characters/desta/front-alt.svg",
  19118. extra: 1482 / 1417
  19119. }
  19120. },
  19121. side: {
  19122. height: math.unit(5 + 2 / 12, "feet"),
  19123. weight: math.unit(110, "lb"),
  19124. name: "Side",
  19125. image: {
  19126. source: "./media/characters/desta/side.svg",
  19127. extra: 2579 / 2491,
  19128. bottom: 0.053
  19129. }
  19130. },
  19131. },
  19132. [
  19133. {
  19134. name: "Micro",
  19135. height: math.unit(6, "inches")
  19136. },
  19137. {
  19138. name: "Normal",
  19139. height: math.unit(5 + 2 / 12, "feet"),
  19140. default: true
  19141. },
  19142. {
  19143. name: "Macro",
  19144. height: math.unit(62, "feet")
  19145. },
  19146. {
  19147. name: "Megamacro",
  19148. height: math.unit(1800, "feet")
  19149. },
  19150. ]
  19151. ))
  19152. characterMakers.push(() => makeCharacter(
  19153. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  19154. {
  19155. front: {
  19156. height: math.unit(10, "feet"),
  19157. weight: math.unit(700, "lb"),
  19158. name: "Front",
  19159. image: {
  19160. source: "./media/characters/storm-alystar/front.svg",
  19161. extra: 2112 / 1898,
  19162. bottom: 0.034
  19163. }
  19164. },
  19165. },
  19166. [
  19167. {
  19168. name: "Micro",
  19169. height: math.unit(3.5, "inches")
  19170. },
  19171. {
  19172. name: "Normal",
  19173. height: math.unit(10, "feet"),
  19174. default: true
  19175. },
  19176. {
  19177. name: "Macro",
  19178. height: math.unit(400, "feet")
  19179. },
  19180. {
  19181. name: "Deific",
  19182. height: math.unit(60, "miles")
  19183. },
  19184. ]
  19185. ))
  19186. characterMakers.push(() => makeCharacter(
  19187. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  19188. {
  19189. front: {
  19190. height: math.unit(2.35, "meters"),
  19191. weight: math.unit(119, "kg"),
  19192. name: "Front",
  19193. image: {
  19194. source: "./media/characters/ilia/front.svg",
  19195. extra: 1285 / 1255,
  19196. bottom: 0.06
  19197. }
  19198. },
  19199. },
  19200. [
  19201. {
  19202. name: "Normal",
  19203. height: math.unit(2.35, "meters")
  19204. },
  19205. {
  19206. name: "Macro",
  19207. height: math.unit(140, "meters"),
  19208. default: true
  19209. },
  19210. {
  19211. name: "Megamacro",
  19212. height: math.unit(100, "miles")
  19213. },
  19214. ]
  19215. ))
  19216. characterMakers.push(() => makeCharacter(
  19217. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  19218. {
  19219. front: {
  19220. height: math.unit(6 + 5 / 12, "feet"),
  19221. weight: math.unit(190, "lb"),
  19222. name: "Front",
  19223. image: {
  19224. source: "./media/characters/kingdead/front.svg",
  19225. extra: 1228 / 1177
  19226. }
  19227. },
  19228. },
  19229. [
  19230. {
  19231. name: "Micro",
  19232. height: math.unit(7, "inches")
  19233. },
  19234. {
  19235. name: "Normal",
  19236. height: math.unit(6 + 5 / 12, "feet")
  19237. },
  19238. {
  19239. name: "Macro",
  19240. height: math.unit(150, "feet"),
  19241. default: true
  19242. },
  19243. {
  19244. name: "Megamacro",
  19245. height: math.unit(200, "miles")
  19246. },
  19247. ]
  19248. ))
  19249. characterMakers.push(() => makeCharacter(
  19250. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  19251. {
  19252. front: {
  19253. height: math.unit(8, "feet"),
  19254. weight: math.unit(600, "lb"),
  19255. name: "Front",
  19256. image: {
  19257. source: "./media/characters/kyrehx/front.svg",
  19258. extra: 1195 / 1095,
  19259. bottom: 0.034
  19260. }
  19261. },
  19262. },
  19263. [
  19264. {
  19265. name: "Micro",
  19266. height: math.unit(2, "inches")
  19267. },
  19268. {
  19269. name: "Normal",
  19270. height: math.unit(8, "feet"),
  19271. default: true
  19272. },
  19273. {
  19274. name: "Macro",
  19275. height: math.unit(255, "feet")
  19276. },
  19277. ]
  19278. ))
  19279. characterMakers.push(() => makeCharacter(
  19280. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  19281. {
  19282. front: {
  19283. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  19284. weight: math.unit(184, "lb"),
  19285. name: "Front",
  19286. image: {
  19287. source: "./media/characters/xang/front.svg",
  19288. extra: 845 / 755
  19289. }
  19290. },
  19291. },
  19292. [
  19293. {
  19294. name: "Normal",
  19295. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  19296. default: true
  19297. },
  19298. {
  19299. name: "Macro",
  19300. height: math.unit(0.935 * 146, "feet")
  19301. },
  19302. {
  19303. name: "Megamacro",
  19304. height: math.unit(0.935 * 3, "miles")
  19305. },
  19306. ]
  19307. ))
  19308. characterMakers.push(() => makeCharacter(
  19309. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  19310. {
  19311. frontDressed: {
  19312. height: math.unit(5 + 7 / 12, "feet"),
  19313. weight: math.unit(140, "lb"),
  19314. name: "Front (Dressed)",
  19315. image: {
  19316. source: "./media/characters/doc-weardno/front-dressed.svg",
  19317. extra: 263 / 234
  19318. }
  19319. },
  19320. backDressed: {
  19321. height: math.unit(5 + 7 / 12, "feet"),
  19322. weight: math.unit(140, "lb"),
  19323. name: "Back (Dressed)",
  19324. image: {
  19325. source: "./media/characters/doc-weardno/back-dressed.svg",
  19326. extra: 266 / 238
  19327. }
  19328. },
  19329. front: {
  19330. height: math.unit(5 + 7 / 12, "feet"),
  19331. weight: math.unit(140, "lb"),
  19332. name: "Front",
  19333. image: {
  19334. source: "./media/characters/doc-weardno/front.svg",
  19335. extra: 254 / 233
  19336. }
  19337. },
  19338. },
  19339. [
  19340. {
  19341. name: "Micro",
  19342. height: math.unit(3, "inches")
  19343. },
  19344. {
  19345. name: "Normal",
  19346. height: math.unit(5 + 7 / 12, "feet"),
  19347. default: true
  19348. },
  19349. {
  19350. name: "Macro",
  19351. height: math.unit(25, "feet")
  19352. },
  19353. {
  19354. name: "Megamacro",
  19355. height: math.unit(2, "miles")
  19356. },
  19357. ]
  19358. ))
  19359. characterMakers.push(() => makeCharacter(
  19360. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  19361. {
  19362. front: {
  19363. height: math.unit(6 + 2 / 12, "feet"),
  19364. weight: math.unit(153, "lb"),
  19365. name: "Front",
  19366. image: {
  19367. source: "./media/characters/seth-whilst/front.svg",
  19368. bottom: 0.07
  19369. }
  19370. },
  19371. },
  19372. [
  19373. {
  19374. name: "Micro",
  19375. height: math.unit(5, "inches")
  19376. },
  19377. {
  19378. name: "Normal",
  19379. height: math.unit(6 + 2 / 12, "feet"),
  19380. default: true
  19381. },
  19382. ]
  19383. ))
  19384. characterMakers.push(() => makeCharacter(
  19385. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  19386. {
  19387. front: {
  19388. height: math.unit(3, "inches"),
  19389. weight: math.unit(8, "grams"),
  19390. name: "Front",
  19391. image: {
  19392. source: "./media/characters/pocket-jabari/front.svg",
  19393. extra: 1024 / 974,
  19394. bottom: 0.039
  19395. }
  19396. },
  19397. },
  19398. [
  19399. {
  19400. name: "Minimicro",
  19401. height: math.unit(8, "mm")
  19402. },
  19403. {
  19404. name: "Micro",
  19405. height: math.unit(3, "inches"),
  19406. default: true
  19407. },
  19408. {
  19409. name: "Normal",
  19410. height: math.unit(3, "feet")
  19411. },
  19412. ]
  19413. ))
  19414. characterMakers.push(() => makeCharacter(
  19415. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  19416. {
  19417. frontDressed: {
  19418. height: math.unit(15, "feet"),
  19419. weight: math.unit(3280, "lb"),
  19420. name: "Front (Dressed)",
  19421. image: {
  19422. source: "./media/characters/sapphy/front-dressed.svg",
  19423. extra: 1951/1654,
  19424. bottom: 194/2145
  19425. },
  19426. form: "anthro",
  19427. default: true
  19428. },
  19429. backDressed: {
  19430. height: math.unit(15, "feet"),
  19431. weight: math.unit(3280, "lb"),
  19432. name: "Back (Dressed)",
  19433. image: {
  19434. source: "./media/characters/sapphy/back-dressed.svg",
  19435. extra: 2058/1918,
  19436. bottom: 125/2183
  19437. },
  19438. form: "anthro"
  19439. },
  19440. frontNude: {
  19441. height: math.unit(15, "feet"),
  19442. weight: math.unit(3280, "lb"),
  19443. name: "Front (Nude)",
  19444. image: {
  19445. source: "./media/characters/sapphy/front-nude.svg",
  19446. extra: 1951/1654,
  19447. bottom: 194/2145
  19448. },
  19449. form: "anthro"
  19450. },
  19451. backNude: {
  19452. height: math.unit(15, "feet"),
  19453. weight: math.unit(3280, "lb"),
  19454. name: "Back (Nude)",
  19455. image: {
  19456. source: "./media/characters/sapphy/back-nude.svg",
  19457. extra: 2058/1918,
  19458. bottom: 125/2183
  19459. },
  19460. form: "anthro"
  19461. },
  19462. full: {
  19463. height: math.unit(15, "feet"),
  19464. weight: math.unit(3280, "lb"),
  19465. name: "Full",
  19466. image: {
  19467. source: "./media/characters/sapphy/full.svg",
  19468. extra: 1396/1317,
  19469. bottom: 44/1440
  19470. },
  19471. form: "anthro"
  19472. },
  19473. dick: {
  19474. height: math.unit(3.8, "feet"),
  19475. name: "Dick",
  19476. image: {
  19477. source: "./media/characters/sapphy/dick.svg"
  19478. },
  19479. form: "anthro"
  19480. },
  19481. feral: {
  19482. height: math.unit(35, "feet"),
  19483. weight: math.unit(160, "tons"),
  19484. name: "Feral",
  19485. image: {
  19486. source: "./media/characters/sapphy/feral.svg",
  19487. extra: 1050/573,
  19488. bottom: 60/1110
  19489. },
  19490. form: "feral",
  19491. default: true
  19492. },
  19493. },
  19494. [
  19495. {
  19496. name: "Normal",
  19497. height: math.unit(15, "feet"),
  19498. form: "anthro"
  19499. },
  19500. {
  19501. name: "Casual Macro",
  19502. height: math.unit(120, "feet"),
  19503. form: "anthro"
  19504. },
  19505. {
  19506. name: "Macro",
  19507. height: math.unit(2150, "feet"),
  19508. default: true,
  19509. form: "anthro"
  19510. },
  19511. {
  19512. name: "Megamacro",
  19513. height: math.unit(8, "miles"),
  19514. form: "anthro"
  19515. },
  19516. {
  19517. name: "Galaxy Mom",
  19518. height: math.unit(6, "megalightyears"),
  19519. form: "anthro"
  19520. },
  19521. {
  19522. name: "Normal",
  19523. height: math.unit(35, "feet"),
  19524. form: "feral",
  19525. default: true
  19526. },
  19527. {
  19528. name: "Macro",
  19529. height: math.unit(300, "feet"),
  19530. form: "feral"
  19531. },
  19532. {
  19533. name: "Galaxy Mom",
  19534. height: math.unit(10, "megalightyears"),
  19535. form: "feral"
  19536. },
  19537. ],
  19538. {
  19539. "anthro": {
  19540. name: "Anthro",
  19541. default: true
  19542. },
  19543. "feral": {
  19544. name: "Feral"
  19545. }
  19546. }
  19547. ))
  19548. characterMakers.push(() => makeCharacter(
  19549. { name: "Kiro", species: ["folf"], tags: ["anthro"] },
  19550. {
  19551. front: {
  19552. height: math.unit(6, "feet"),
  19553. weight: math.unit(170, "lb"),
  19554. name: "Front",
  19555. image: {
  19556. source: "./media/characters/kiro/front.svg",
  19557. extra: 1064 / 1012,
  19558. bottom: 0.052
  19559. }
  19560. },
  19561. },
  19562. [
  19563. {
  19564. name: "Micro",
  19565. height: math.unit(6, "inches")
  19566. },
  19567. {
  19568. name: "Normal",
  19569. height: math.unit(6, "feet"),
  19570. default: true
  19571. },
  19572. {
  19573. name: "Macro",
  19574. height: math.unit(72, "feet")
  19575. },
  19576. ]
  19577. ))
  19578. characterMakers.push(() => makeCharacter(
  19579. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  19580. {
  19581. front: {
  19582. height: math.unit(5 + 9 / 12, "feet"),
  19583. weight: math.unit(175, "lb"),
  19584. name: "Front",
  19585. image: {
  19586. source: "./media/characters/irishfox/front.svg",
  19587. extra: 1912 / 1680,
  19588. bottom: 0.02
  19589. }
  19590. },
  19591. },
  19592. [
  19593. {
  19594. name: "Nano",
  19595. height: math.unit(1, "mm")
  19596. },
  19597. {
  19598. name: "Micro",
  19599. height: math.unit(2, "inches")
  19600. },
  19601. {
  19602. name: "Normal",
  19603. height: math.unit(5 + 9 / 12, "feet"),
  19604. default: true
  19605. },
  19606. {
  19607. name: "Macro",
  19608. height: math.unit(45, "feet")
  19609. },
  19610. ]
  19611. ))
  19612. characterMakers.push(() => makeCharacter(
  19613. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  19614. {
  19615. front: {
  19616. height: math.unit(6 + 1 / 12, "feet"),
  19617. weight: math.unit(75, "lb"),
  19618. name: "Front",
  19619. image: {
  19620. source: "./media/characters/aronai-sieyes/front.svg",
  19621. extra: 1532/1450,
  19622. bottom: 42/1574
  19623. }
  19624. },
  19625. side: {
  19626. height: math.unit(6 + 1 / 12, "feet"),
  19627. weight: math.unit(75, "lb"),
  19628. name: "Side",
  19629. image: {
  19630. source: "./media/characters/aronai-sieyes/side.svg",
  19631. extra: 1422/1365,
  19632. bottom: 148/1570
  19633. }
  19634. },
  19635. back: {
  19636. height: math.unit(6 + 1 / 12, "feet"),
  19637. weight: math.unit(75, "lb"),
  19638. name: "Back",
  19639. image: {
  19640. source: "./media/characters/aronai-sieyes/back.svg",
  19641. extra: 1526/1464,
  19642. bottom: 51/1577
  19643. }
  19644. },
  19645. dressed: {
  19646. height: math.unit(6 + 1 / 12, "feet"),
  19647. weight: math.unit(75, "lb"),
  19648. name: "Dressed",
  19649. image: {
  19650. source: "./media/characters/aronai-sieyes/dressed.svg",
  19651. extra: 1559/1483,
  19652. bottom: 39/1598
  19653. }
  19654. },
  19655. slit: {
  19656. height: math.unit(1.3, "feet"),
  19657. name: "Slit",
  19658. image: {
  19659. source: "./media/characters/aronai-sieyes/slit.svg"
  19660. }
  19661. },
  19662. slitSpread: {
  19663. height: math.unit(0.9, "feet"),
  19664. name: "Slit (Spread)",
  19665. image: {
  19666. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  19667. }
  19668. },
  19669. rump: {
  19670. height: math.unit(1.3, "feet"),
  19671. name: "Rump",
  19672. image: {
  19673. source: "./media/characters/aronai-sieyes/rump.svg"
  19674. }
  19675. },
  19676. maw: {
  19677. height: math.unit(1.25, "feet"),
  19678. name: "Maw",
  19679. image: {
  19680. source: "./media/characters/aronai-sieyes/maw.svg"
  19681. }
  19682. },
  19683. feral: {
  19684. height: math.unit(18, "feet"),
  19685. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  19686. name: "Feral",
  19687. image: {
  19688. source: "./media/characters/aronai-sieyes/feral.svg",
  19689. extra: 1530 / 1240,
  19690. bottom: 0.035
  19691. }
  19692. },
  19693. },
  19694. [
  19695. {
  19696. name: "Micro",
  19697. height: math.unit(2, "inches")
  19698. },
  19699. {
  19700. name: "Normal",
  19701. height: math.unit(6 + 1 / 12, "feet"),
  19702. default: true
  19703. }
  19704. ]
  19705. ))
  19706. characterMakers.push(() => makeCharacter(
  19707. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  19708. {
  19709. front: {
  19710. height: math.unit(12, "feet"),
  19711. weight: math.unit(410, "kg"),
  19712. name: "Front",
  19713. image: {
  19714. source: "./media/characters/xuna/front.svg",
  19715. extra: 2184 / 1980
  19716. }
  19717. },
  19718. side: {
  19719. height: math.unit(12, "feet"),
  19720. weight: math.unit(410, "kg"),
  19721. name: "Side",
  19722. image: {
  19723. source: "./media/characters/xuna/side.svg",
  19724. extra: 2184 / 1980
  19725. }
  19726. },
  19727. back: {
  19728. height: math.unit(12, "feet"),
  19729. weight: math.unit(410, "kg"),
  19730. name: "Back",
  19731. image: {
  19732. source: "./media/characters/xuna/back.svg",
  19733. extra: 2184 / 1980
  19734. }
  19735. },
  19736. },
  19737. [
  19738. {
  19739. name: "Nano glow",
  19740. height: math.unit(10, "nm")
  19741. },
  19742. {
  19743. name: "Micro floof",
  19744. height: math.unit(0.3, "m")
  19745. },
  19746. {
  19747. name: "Huggable softy boi",
  19748. height: math.unit(3.6576, "m"),
  19749. default: true
  19750. },
  19751. {
  19752. name: "Admirable floof",
  19753. height: math.unit(80, "meters")
  19754. },
  19755. {
  19756. name: "Gentle macro",
  19757. height: math.unit(300, "meters")
  19758. },
  19759. {
  19760. name: "Very careful floof",
  19761. height: math.unit(3200, "meters")
  19762. },
  19763. {
  19764. name: "The mega floof",
  19765. height: math.unit(36000, "meters")
  19766. },
  19767. {
  19768. name: "Giga-fur-Wicker",
  19769. height: math.unit(4800000, "meters")
  19770. },
  19771. {
  19772. name: "Licky world",
  19773. height: math.unit(20000000, "meters")
  19774. },
  19775. {
  19776. name: "Floofy cyan sun",
  19777. height: math.unit(1500000000, "meters")
  19778. },
  19779. {
  19780. name: "Milky Wicker",
  19781. height: math.unit(1000000000000000000000, "meters")
  19782. },
  19783. {
  19784. name: "The observing Wicker",
  19785. height: math.unit(999999999999999999999999999, "meters")
  19786. },
  19787. ]
  19788. ))
  19789. characterMakers.push(() => makeCharacter(
  19790. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19791. {
  19792. front: {
  19793. height: math.unit(5 + 9 / 12, "feet"),
  19794. weight: math.unit(150, "lb"),
  19795. name: "Front",
  19796. image: {
  19797. source: "./media/characters/arokha-sieyes/front.svg",
  19798. extra: 1425 / 1284,
  19799. bottom: 0.05
  19800. }
  19801. },
  19802. },
  19803. [
  19804. {
  19805. name: "Normal",
  19806. height: math.unit(5 + 9 / 12, "feet")
  19807. },
  19808. {
  19809. name: "Macro",
  19810. height: math.unit(30, "meters"),
  19811. default: true
  19812. },
  19813. ]
  19814. ))
  19815. characterMakers.push(() => makeCharacter(
  19816. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19817. {
  19818. front: {
  19819. height: math.unit(6, "feet"),
  19820. weight: math.unit(180, "lb"),
  19821. name: "Front",
  19822. image: {
  19823. source: "./media/characters/arokh-sieyes/front.svg",
  19824. extra: 1830 / 1769,
  19825. bottom: 0.01
  19826. }
  19827. },
  19828. },
  19829. [
  19830. {
  19831. name: "Normal",
  19832. height: math.unit(6, "feet")
  19833. },
  19834. {
  19835. name: "Macro",
  19836. height: math.unit(30, "meters"),
  19837. default: true
  19838. },
  19839. ]
  19840. ))
  19841. characterMakers.push(() => makeCharacter(
  19842. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  19843. {
  19844. side: {
  19845. height: math.unit(13 + 1 / 12, "feet"),
  19846. weight: math.unit(8.5, "tonnes"),
  19847. name: "Side",
  19848. image: {
  19849. source: "./media/characters/goldeneye/side.svg",
  19850. extra: 1182 / 778,
  19851. bottom: 0.067
  19852. }
  19853. },
  19854. paw: {
  19855. height: math.unit(3.4, "feet"),
  19856. name: "Paw",
  19857. image: {
  19858. source: "./media/characters/goldeneye/paw.svg"
  19859. }
  19860. },
  19861. },
  19862. [
  19863. {
  19864. name: "Normal",
  19865. height: math.unit(13 + 1 / 12, "feet"),
  19866. default: true
  19867. },
  19868. ]
  19869. ))
  19870. characterMakers.push(() => makeCharacter(
  19871. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  19872. {
  19873. front: {
  19874. height: math.unit(6 + 1 / 12, "feet"),
  19875. weight: math.unit(210, "lb"),
  19876. name: "Front",
  19877. image: {
  19878. source: "./media/characters/leonardo-lycheborne/front.svg",
  19879. extra: 776/723,
  19880. bottom: 34/810
  19881. }
  19882. },
  19883. side: {
  19884. height: math.unit(6 + 1 / 12, "feet"),
  19885. weight: math.unit(210, "lb"),
  19886. name: "Side",
  19887. image: {
  19888. source: "./media/characters/leonardo-lycheborne/side.svg",
  19889. extra: 780/728,
  19890. bottom: 12/792
  19891. }
  19892. },
  19893. back: {
  19894. height: math.unit(6 + 1 / 12, "feet"),
  19895. weight: math.unit(210, "lb"),
  19896. name: "Back",
  19897. image: {
  19898. source: "./media/characters/leonardo-lycheborne/back.svg",
  19899. extra: 775/721,
  19900. bottom: 17/792
  19901. }
  19902. },
  19903. hand: {
  19904. height: math.unit(1.08, "feet"),
  19905. name: "Hand",
  19906. image: {
  19907. source: "./media/characters/leonardo-lycheborne/hand.svg"
  19908. }
  19909. },
  19910. foot: {
  19911. height: math.unit(1.32, "feet"),
  19912. name: "Foot",
  19913. image: {
  19914. source: "./media/characters/leonardo-lycheborne/foot.svg"
  19915. }
  19916. },
  19917. maw: {
  19918. height: math.unit(1, "feet"),
  19919. name: "Maw",
  19920. image: {
  19921. source: "./media/characters/leonardo-lycheborne/maw.svg"
  19922. }
  19923. },
  19924. were: {
  19925. height: math.unit(20, "feet"),
  19926. weight: math.unit(7800, "lb"),
  19927. name: "Were",
  19928. image: {
  19929. source: "./media/characters/leonardo-lycheborne/were.svg",
  19930. extra: 1224/1165,
  19931. bottom: 72/1296
  19932. }
  19933. },
  19934. feral: {
  19935. height: math.unit(7.5, "feet"),
  19936. weight: math.unit(600, "lb"),
  19937. name: "Feral",
  19938. image: {
  19939. source: "./media/characters/leonardo-lycheborne/feral.svg",
  19940. extra: 797/702,
  19941. bottom: 139/936
  19942. }
  19943. },
  19944. taur: {
  19945. height: math.unit(11, "feet"),
  19946. weight: math.unit(3300, "lb"),
  19947. name: "Taur",
  19948. image: {
  19949. source: "./media/characters/leonardo-lycheborne/taur.svg",
  19950. extra: 1271/1197,
  19951. bottom: 47/1318
  19952. }
  19953. },
  19954. barghest: {
  19955. height: math.unit(11, "feet"),
  19956. weight: math.unit(1300, "lb"),
  19957. name: "Barghest",
  19958. image: {
  19959. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  19960. extra: 1291/1204,
  19961. bottom: 37/1328
  19962. }
  19963. },
  19964. dick: {
  19965. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  19966. name: "Dick",
  19967. image: {
  19968. source: "./media/characters/leonardo-lycheborne/dick.svg"
  19969. }
  19970. },
  19971. dickWere: {
  19972. height: math.unit((20) / 3.8, "feet"),
  19973. name: "Dick (Were)",
  19974. image: {
  19975. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  19976. }
  19977. },
  19978. },
  19979. [
  19980. {
  19981. name: "Normal",
  19982. height: math.unit(6 + 1 / 12, "feet"),
  19983. default: true
  19984. },
  19985. ]
  19986. ))
  19987. characterMakers.push(() => makeCharacter(
  19988. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  19989. {
  19990. front: {
  19991. height: math.unit(10, "feet"),
  19992. weight: math.unit(350, "lb"),
  19993. name: "Front",
  19994. image: {
  19995. source: "./media/characters/jet/front.svg",
  19996. extra: 2050 / 1980,
  19997. bottom: 0.013
  19998. }
  19999. },
  20000. back: {
  20001. height: math.unit(10, "feet"),
  20002. weight: math.unit(350, "lb"),
  20003. name: "Back",
  20004. image: {
  20005. source: "./media/characters/jet/back.svg",
  20006. extra: 2050 / 1980,
  20007. bottom: 0.013
  20008. }
  20009. },
  20010. },
  20011. [
  20012. {
  20013. name: "Micro",
  20014. height: math.unit(6, "inches")
  20015. },
  20016. {
  20017. name: "Normal",
  20018. height: math.unit(10, "feet"),
  20019. default: true
  20020. },
  20021. {
  20022. name: "Macro",
  20023. height: math.unit(100, "feet")
  20024. },
  20025. ]
  20026. ))
  20027. characterMakers.push(() => makeCharacter(
  20028. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  20029. {
  20030. front: {
  20031. height: math.unit(15, "feet"),
  20032. weight: math.unit(2800, "lb"),
  20033. name: "Front",
  20034. image: {
  20035. source: "./media/characters/tanarath/front.svg",
  20036. extra: 2392 / 2220,
  20037. bottom: 0.03
  20038. }
  20039. },
  20040. back: {
  20041. height: math.unit(15, "feet"),
  20042. weight: math.unit(2800, "lb"),
  20043. name: "Back",
  20044. image: {
  20045. source: "./media/characters/tanarath/back.svg",
  20046. extra: 2392 / 2220,
  20047. bottom: 0.03
  20048. }
  20049. },
  20050. },
  20051. [
  20052. {
  20053. name: "Normal",
  20054. height: math.unit(15, "feet"),
  20055. default: true
  20056. },
  20057. ]
  20058. ))
  20059. characterMakers.push(() => makeCharacter(
  20060. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  20061. {
  20062. front: {
  20063. height: math.unit(7 + 1 / 12, "feet"),
  20064. weight: math.unit(175, "lb"),
  20065. name: "Front",
  20066. image: {
  20067. source: "./media/characters/patty-cattybatty/front.svg",
  20068. extra: 908 / 874,
  20069. bottom: 0.025
  20070. }
  20071. },
  20072. },
  20073. [
  20074. {
  20075. name: "Micro",
  20076. height: math.unit(1, "inch")
  20077. },
  20078. {
  20079. name: "Normal",
  20080. height: math.unit(7 + 1 / 12, "feet")
  20081. },
  20082. {
  20083. name: "Mini Macro",
  20084. height: math.unit(155, "feet")
  20085. },
  20086. {
  20087. name: "Macro",
  20088. height: math.unit(1077, "feet")
  20089. },
  20090. {
  20091. name: "Mega Macro",
  20092. height: math.unit(47650, "feet"),
  20093. default: true
  20094. },
  20095. {
  20096. name: "Giga Macro",
  20097. height: math.unit(440, "miles")
  20098. },
  20099. {
  20100. name: "Tera Macro",
  20101. height: math.unit(8700, "miles")
  20102. },
  20103. {
  20104. name: "Planetary Macro",
  20105. height: math.unit(32700, "miles")
  20106. },
  20107. {
  20108. name: "Solar Macro",
  20109. height: math.unit(550000, "miles")
  20110. },
  20111. {
  20112. name: "Celestial Macro",
  20113. height: math.unit(2.5, "AU")
  20114. },
  20115. ]
  20116. ))
  20117. characterMakers.push(() => makeCharacter(
  20118. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  20119. {
  20120. front: {
  20121. height: math.unit(4 + 5 / 12, "feet"),
  20122. weight: math.unit(90, "lb"),
  20123. name: "Front",
  20124. image: {
  20125. source: "./media/characters/cappu/front.svg",
  20126. extra: 1247 / 1152,
  20127. bottom: 0.012
  20128. }
  20129. },
  20130. },
  20131. [
  20132. {
  20133. name: "Normal",
  20134. height: math.unit(4 + 5 / 12, "feet"),
  20135. default: true
  20136. },
  20137. ]
  20138. ))
  20139. characterMakers.push(() => makeCharacter(
  20140. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  20141. {
  20142. frontDressed: {
  20143. height: math.unit(70, "cm"),
  20144. weight: math.unit(6, "kg"),
  20145. name: "Front (Dressed)",
  20146. image: {
  20147. source: "./media/characters/sebi/front-dressed.svg",
  20148. extra: 713.5 / 686.5,
  20149. bottom: 0.003
  20150. }
  20151. },
  20152. front: {
  20153. height: math.unit(70, "cm"),
  20154. weight: math.unit(5, "kg"),
  20155. name: "Front",
  20156. image: {
  20157. source: "./media/characters/sebi/front.svg",
  20158. extra: 713.5 / 686.5,
  20159. bottom: 0.003
  20160. }
  20161. }
  20162. },
  20163. [
  20164. {
  20165. name: "Normal",
  20166. height: math.unit(70, "cm"),
  20167. default: true
  20168. },
  20169. {
  20170. name: "Macro",
  20171. height: math.unit(8, "meters")
  20172. },
  20173. ]
  20174. ))
  20175. characterMakers.push(() => makeCharacter(
  20176. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  20177. {
  20178. front: {
  20179. height: math.unit(6, "feet"),
  20180. weight: math.unit(150, "lb"),
  20181. name: "Front",
  20182. image: {
  20183. source: "./media/characters/typhek/front.svg",
  20184. extra: 1948 / 1929,
  20185. bottom: 0.025
  20186. }
  20187. },
  20188. side: {
  20189. height: math.unit(6, "feet"),
  20190. weight: math.unit(150, "lb"),
  20191. name: "Side",
  20192. image: {
  20193. source: "./media/characters/typhek/side.svg",
  20194. extra: 2034 / 2010,
  20195. bottom: 0.003
  20196. }
  20197. },
  20198. back: {
  20199. height: math.unit(6, "feet"),
  20200. weight: math.unit(150, "lb"),
  20201. name: "Back",
  20202. image: {
  20203. source: "./media/characters/typhek/back.svg",
  20204. extra: 2005 / 1978,
  20205. bottom: 0.004
  20206. }
  20207. },
  20208. palm: {
  20209. height: math.unit(1.2, "feet"),
  20210. name: "Palm",
  20211. image: {
  20212. source: "./media/characters/typhek/palm.svg"
  20213. }
  20214. },
  20215. fist: {
  20216. height: math.unit(1.1, "feet"),
  20217. name: "Fist",
  20218. image: {
  20219. source: "./media/characters/typhek/fist.svg"
  20220. }
  20221. },
  20222. foot: {
  20223. height: math.unit(1.57, "feet"),
  20224. name: "Foot",
  20225. image: {
  20226. source: "./media/characters/typhek/foot.svg"
  20227. }
  20228. },
  20229. sole: {
  20230. height: math.unit(2.05, "feet"),
  20231. name: "Sole",
  20232. image: {
  20233. source: "./media/characters/typhek/sole.svg"
  20234. }
  20235. },
  20236. },
  20237. [
  20238. {
  20239. name: "Macro",
  20240. height: math.unit(40, "stories"),
  20241. default: true
  20242. },
  20243. {
  20244. name: "Megamacro",
  20245. height: math.unit(1, "mile")
  20246. },
  20247. {
  20248. name: "Gigamacro",
  20249. height: math.unit(4000, "solarradii")
  20250. },
  20251. {
  20252. name: "Universal",
  20253. height: math.unit(1.1, "universes")
  20254. }
  20255. ]
  20256. ))
  20257. characterMakers.push(() => makeCharacter(
  20258. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  20259. {
  20260. side: {
  20261. height: math.unit(5 + 7 / 12, "feet"),
  20262. weight: math.unit(150, "lb"),
  20263. name: "Side",
  20264. image: {
  20265. source: "./media/characters/kassy/side.svg",
  20266. extra: 1280 / 1225,
  20267. bottom: 0.002
  20268. }
  20269. },
  20270. front: {
  20271. height: math.unit(5 + 7 / 12, "feet"),
  20272. weight: math.unit(150, "lb"),
  20273. name: "Front",
  20274. image: {
  20275. source: "./media/characters/kassy/front.svg",
  20276. extra: 1280 / 1225,
  20277. bottom: 0.025
  20278. }
  20279. },
  20280. back: {
  20281. height: math.unit(5 + 7 / 12, "feet"),
  20282. weight: math.unit(150, "lb"),
  20283. name: "Back",
  20284. image: {
  20285. source: "./media/characters/kassy/back.svg",
  20286. extra: 1280 / 1225,
  20287. bottom: 0.002
  20288. }
  20289. },
  20290. foot: {
  20291. height: math.unit(1.266, "feet"),
  20292. name: "Foot",
  20293. image: {
  20294. source: "./media/characters/kassy/foot.svg"
  20295. }
  20296. },
  20297. },
  20298. [
  20299. {
  20300. name: "Normal",
  20301. height: math.unit(5 + 7 / 12, "feet")
  20302. },
  20303. {
  20304. name: "Macro",
  20305. height: math.unit(137, "feet"),
  20306. default: true
  20307. },
  20308. {
  20309. name: "Megamacro",
  20310. height: math.unit(1, "mile")
  20311. },
  20312. ]
  20313. ))
  20314. characterMakers.push(() => makeCharacter(
  20315. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  20316. {
  20317. front: {
  20318. height: math.unit(6 + 1 / 12, "feet"),
  20319. weight: math.unit(200, "lb"),
  20320. name: "Front",
  20321. image: {
  20322. source: "./media/characters/neil/front.svg",
  20323. extra: 1326 / 1250,
  20324. bottom: 0.023
  20325. }
  20326. },
  20327. },
  20328. [
  20329. {
  20330. name: "Normal",
  20331. height: math.unit(6 + 1 / 12, "feet"),
  20332. default: true
  20333. },
  20334. {
  20335. name: "Macro",
  20336. height: math.unit(200, "feet")
  20337. },
  20338. ]
  20339. ))
  20340. characterMakers.push(() => makeCharacter(
  20341. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  20342. {
  20343. front: {
  20344. height: math.unit(5 + 9 / 12, "feet"),
  20345. weight: math.unit(190, "lb"),
  20346. name: "Front",
  20347. image: {
  20348. source: "./media/characters/atticus/front.svg",
  20349. extra: 2934 / 2785,
  20350. bottom: 0.025
  20351. }
  20352. },
  20353. },
  20354. [
  20355. {
  20356. name: "Normal",
  20357. height: math.unit(5 + 9 / 12, "feet"),
  20358. default: true
  20359. },
  20360. {
  20361. name: "Macro",
  20362. height: math.unit(180, "feet")
  20363. },
  20364. ]
  20365. ))
  20366. characterMakers.push(() => makeCharacter(
  20367. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  20368. {
  20369. side: {
  20370. height: math.unit(9, "feet"),
  20371. weight: math.unit(650, "lb"),
  20372. name: "Side",
  20373. image: {
  20374. source: "./media/characters/milo/side.svg",
  20375. extra: 2644 / 2310,
  20376. bottom: 0.032
  20377. }
  20378. },
  20379. },
  20380. [
  20381. {
  20382. name: "Normal",
  20383. height: math.unit(9, "feet"),
  20384. default: true
  20385. },
  20386. {
  20387. name: "Macro",
  20388. height: math.unit(300, "feet")
  20389. },
  20390. ]
  20391. ))
  20392. characterMakers.push(() => makeCharacter(
  20393. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  20394. {
  20395. side: {
  20396. height: math.unit(8, "meters"),
  20397. weight: math.unit(90000, "kg"),
  20398. name: "Side",
  20399. image: {
  20400. source: "./media/characters/ijzer/side.svg",
  20401. extra: 2756 / 1600,
  20402. bottom: 0.01
  20403. }
  20404. },
  20405. },
  20406. [
  20407. {
  20408. name: "Small",
  20409. height: math.unit(3, "meters")
  20410. },
  20411. {
  20412. name: "Normal",
  20413. height: math.unit(8, "meters"),
  20414. default: true
  20415. },
  20416. {
  20417. name: "Normal+",
  20418. height: math.unit(10, "meters")
  20419. },
  20420. {
  20421. name: "Bigger",
  20422. height: math.unit(24, "meters")
  20423. },
  20424. {
  20425. name: "Huge",
  20426. height: math.unit(80, "meters")
  20427. },
  20428. ]
  20429. ))
  20430. characterMakers.push(() => makeCharacter(
  20431. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  20432. {
  20433. front: {
  20434. height: math.unit(6 + 2 / 12, "feet"),
  20435. weight: math.unit(153, "lb"),
  20436. name: "Front",
  20437. image: {
  20438. source: "./media/characters/luca-cervicum/front.svg",
  20439. extra: 370 / 327,
  20440. bottom: 0.015
  20441. }
  20442. },
  20443. back: {
  20444. height: math.unit(6 + 2 / 12, "feet"),
  20445. weight: math.unit(153, "lb"),
  20446. name: "Back",
  20447. image: {
  20448. source: "./media/characters/luca-cervicum/back.svg",
  20449. extra: 367 / 333,
  20450. bottom: 0.005
  20451. }
  20452. },
  20453. frontGear: {
  20454. height: math.unit(6 + 2 / 12, "feet"),
  20455. weight: math.unit(173, "lb"),
  20456. name: "Front (Gear)",
  20457. image: {
  20458. source: "./media/characters/luca-cervicum/front-gear.svg",
  20459. extra: 377 / 333,
  20460. bottom: 0.006
  20461. }
  20462. },
  20463. },
  20464. [
  20465. {
  20466. name: "Normal",
  20467. height: math.unit(6 + 2 / 12, "feet"),
  20468. default: true
  20469. },
  20470. ]
  20471. ))
  20472. characterMakers.push(() => makeCharacter(
  20473. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  20474. {
  20475. front: {
  20476. height: math.unit(6 + 1 / 12, "feet"),
  20477. weight: math.unit(304, "lb"),
  20478. name: "Front",
  20479. image: {
  20480. source: "./media/characters/oliver/front.svg",
  20481. extra: 157 / 143,
  20482. bottom: 0.08
  20483. }
  20484. },
  20485. },
  20486. [
  20487. {
  20488. name: "Normal",
  20489. height: math.unit(6 + 1 / 12, "feet"),
  20490. default: true
  20491. },
  20492. ]
  20493. ))
  20494. characterMakers.push(() => makeCharacter(
  20495. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  20496. {
  20497. front: {
  20498. height: math.unit(5 + 7 / 12, "feet"),
  20499. weight: math.unit(140, "lb"),
  20500. name: "Front",
  20501. image: {
  20502. source: "./media/characters/shane/front.svg",
  20503. extra: 304 / 289,
  20504. bottom: 0.005
  20505. }
  20506. },
  20507. },
  20508. [
  20509. {
  20510. name: "Normal",
  20511. height: math.unit(5 + 7 / 12, "feet"),
  20512. default: true
  20513. },
  20514. ]
  20515. ))
  20516. characterMakers.push(() => makeCharacter(
  20517. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  20518. {
  20519. front: {
  20520. height: math.unit(5 + 9 / 12, "feet"),
  20521. weight: math.unit(178, "lb"),
  20522. name: "Front",
  20523. image: {
  20524. source: "./media/characters/shin/front.svg",
  20525. extra: 159 / 151,
  20526. bottom: 0.015
  20527. }
  20528. },
  20529. },
  20530. [
  20531. {
  20532. name: "Normal",
  20533. height: math.unit(5 + 9 / 12, "feet"),
  20534. default: true
  20535. },
  20536. ]
  20537. ))
  20538. characterMakers.push(() => makeCharacter(
  20539. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  20540. {
  20541. front: {
  20542. height: math.unit(5 + 10 / 12, "feet"),
  20543. weight: math.unit(168, "lb"),
  20544. name: "Front",
  20545. image: {
  20546. source: "./media/characters/xerxes/front.svg",
  20547. extra: 282 / 260,
  20548. bottom: 0.045
  20549. }
  20550. },
  20551. },
  20552. [
  20553. {
  20554. name: "Normal",
  20555. height: math.unit(5 + 10 / 12, "feet"),
  20556. default: true
  20557. },
  20558. ]
  20559. ))
  20560. characterMakers.push(() => makeCharacter(
  20561. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  20562. {
  20563. front: {
  20564. height: math.unit(6 + 7 / 12, "feet"),
  20565. weight: math.unit(208, "lb"),
  20566. name: "Front",
  20567. image: {
  20568. source: "./media/characters/chaska/front.svg",
  20569. extra: 332 / 319,
  20570. bottom: 0.015
  20571. }
  20572. },
  20573. },
  20574. [
  20575. {
  20576. name: "Normal",
  20577. height: math.unit(6 + 7 / 12, "feet"),
  20578. default: true
  20579. },
  20580. ]
  20581. ))
  20582. characterMakers.push(() => makeCharacter(
  20583. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  20584. {
  20585. front: {
  20586. height: math.unit(5 + 8 / 12, "feet"),
  20587. weight: math.unit(208, "lb"),
  20588. name: "Front",
  20589. image: {
  20590. source: "./media/characters/enuk/front.svg",
  20591. extra: 437 / 406,
  20592. bottom: 0.02
  20593. }
  20594. },
  20595. },
  20596. [
  20597. {
  20598. name: "Normal",
  20599. height: math.unit(5 + 8 / 12, "feet"),
  20600. default: true
  20601. },
  20602. ]
  20603. ))
  20604. characterMakers.push(() => makeCharacter(
  20605. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  20606. {
  20607. front: {
  20608. height: math.unit(5 + 10 / 12, "feet"),
  20609. weight: math.unit(252, "lb"),
  20610. name: "Front",
  20611. image: {
  20612. source: "./media/characters/bruun/front.svg",
  20613. extra: 197 / 187,
  20614. bottom: 0.012
  20615. }
  20616. },
  20617. },
  20618. [
  20619. {
  20620. name: "Normal",
  20621. height: math.unit(5 + 10 / 12, "feet"),
  20622. default: true
  20623. },
  20624. ]
  20625. ))
  20626. characterMakers.push(() => makeCharacter(
  20627. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  20628. {
  20629. front: {
  20630. height: math.unit(6 + 10 / 12, "feet"),
  20631. weight: math.unit(255, "lb"),
  20632. name: "Front",
  20633. image: {
  20634. source: "./media/characters/alexeev/front.svg",
  20635. extra: 213 / 200,
  20636. bottom: 0.05
  20637. }
  20638. },
  20639. },
  20640. [
  20641. {
  20642. name: "Normal",
  20643. height: math.unit(6 + 10 / 12, "feet"),
  20644. default: true
  20645. },
  20646. ]
  20647. ))
  20648. characterMakers.push(() => makeCharacter(
  20649. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  20650. {
  20651. front: {
  20652. height: math.unit(2 + 8 / 12, "feet"),
  20653. weight: math.unit(22, "lb"),
  20654. name: "Front",
  20655. image: {
  20656. source: "./media/characters/evelyn/front.svg",
  20657. extra: 208 / 180
  20658. }
  20659. },
  20660. },
  20661. [
  20662. {
  20663. name: "Normal",
  20664. height: math.unit(2 + 8 / 12, "feet"),
  20665. default: true
  20666. },
  20667. ]
  20668. ))
  20669. characterMakers.push(() => makeCharacter(
  20670. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  20671. {
  20672. front: {
  20673. height: math.unit(5 + 9 / 12, "feet"),
  20674. weight: math.unit(139, "lb"),
  20675. name: "Front",
  20676. image: {
  20677. source: "./media/characters/inca/front.svg",
  20678. extra: 294 / 291,
  20679. bottom: 0.03
  20680. }
  20681. },
  20682. },
  20683. [
  20684. {
  20685. name: "Normal",
  20686. height: math.unit(5 + 9 / 12, "feet"),
  20687. default: true
  20688. },
  20689. ]
  20690. ))
  20691. characterMakers.push(() => makeCharacter(
  20692. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  20693. {
  20694. front: {
  20695. height: math.unit(6 + 3 / 12, "feet"),
  20696. weight: math.unit(185, "lb"),
  20697. name: "Front",
  20698. image: {
  20699. source: "./media/characters/mera/front.svg",
  20700. extra: 291 / 277,
  20701. bottom: 0.03
  20702. }
  20703. },
  20704. },
  20705. [
  20706. {
  20707. name: "Normal",
  20708. height: math.unit(6 + 3 / 12, "feet"),
  20709. default: true
  20710. },
  20711. ]
  20712. ))
  20713. characterMakers.push(() => makeCharacter(
  20714. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  20715. {
  20716. front: {
  20717. height: math.unit(6 + 7 / 12, "feet"),
  20718. weight: math.unit(160, "lb"),
  20719. name: "Front",
  20720. image: {
  20721. source: "./media/characters/ceres/front.svg",
  20722. extra: 1023 / 950,
  20723. bottom: 0.027
  20724. }
  20725. },
  20726. back: {
  20727. height: math.unit(6 + 7 / 12, "feet"),
  20728. weight: math.unit(160, "lb"),
  20729. name: "Back",
  20730. image: {
  20731. source: "./media/characters/ceres/back.svg",
  20732. extra: 1023 / 950
  20733. }
  20734. },
  20735. },
  20736. [
  20737. {
  20738. name: "Normal",
  20739. height: math.unit(6 + 7 / 12, "feet"),
  20740. default: true
  20741. },
  20742. ]
  20743. ))
  20744. characterMakers.push(() => makeCharacter(
  20745. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  20746. {
  20747. front: {
  20748. height: math.unit(5 + 10 / 12, "feet"),
  20749. weight: math.unit(150, "lb"),
  20750. name: "Front",
  20751. image: {
  20752. source: "./media/characters/kris/front.svg",
  20753. extra: 885 / 803,
  20754. bottom: 0.03
  20755. }
  20756. },
  20757. },
  20758. [
  20759. {
  20760. name: "Normal",
  20761. height: math.unit(5 + 10 / 12, "feet"),
  20762. default: true
  20763. },
  20764. ]
  20765. ))
  20766. characterMakers.push(() => makeCharacter(
  20767. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  20768. {
  20769. front: {
  20770. height: math.unit(7, "feet"),
  20771. weight: math.unit(120, "kg"),
  20772. name: "Front",
  20773. image: {
  20774. source: "./media/characters/taluthus/front.svg",
  20775. extra: 903 / 833,
  20776. bottom: 0.015
  20777. }
  20778. },
  20779. },
  20780. [
  20781. {
  20782. name: "Normal",
  20783. height: math.unit(7, "feet"),
  20784. default: true
  20785. },
  20786. {
  20787. name: "Macro",
  20788. height: math.unit(300, "feet")
  20789. },
  20790. ]
  20791. ))
  20792. characterMakers.push(() => makeCharacter(
  20793. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  20794. {
  20795. front: {
  20796. height: math.unit(5 + 9 / 12, "feet"),
  20797. weight: math.unit(145, "lb"),
  20798. name: "Front",
  20799. image: {
  20800. source: "./media/characters/dawn/front.svg",
  20801. extra: 2094 / 2016,
  20802. bottom: 0.025
  20803. }
  20804. },
  20805. back: {
  20806. height: math.unit(5 + 9 / 12, "feet"),
  20807. weight: math.unit(160, "lb"),
  20808. name: "Back",
  20809. image: {
  20810. source: "./media/characters/dawn/back.svg",
  20811. extra: 2112 / 2080,
  20812. bottom: 0.005
  20813. }
  20814. },
  20815. },
  20816. [
  20817. {
  20818. name: "Normal",
  20819. height: math.unit(6 + 7 / 12, "feet"),
  20820. default: true
  20821. },
  20822. ]
  20823. ))
  20824. characterMakers.push(() => makeCharacter(
  20825. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  20826. {
  20827. anthro: {
  20828. height: math.unit(8 + 3 / 12, "feet"),
  20829. weight: math.unit(450, "lb"),
  20830. name: "Anthro",
  20831. image: {
  20832. source: "./media/characters/arador/anthro.svg",
  20833. extra: 1835 / 1718,
  20834. bottom: 0.025
  20835. }
  20836. },
  20837. feral: {
  20838. height: math.unit(4, "feet"),
  20839. weight: math.unit(200, "lb"),
  20840. name: "Feral",
  20841. image: {
  20842. source: "./media/characters/arador/feral.svg",
  20843. extra: 1683 / 1514,
  20844. bottom: 0.07
  20845. }
  20846. },
  20847. },
  20848. [
  20849. {
  20850. name: "Normal",
  20851. height: math.unit(8 + 3 / 12, "feet")
  20852. },
  20853. {
  20854. name: "Macro",
  20855. height: math.unit(82.5, "feet"),
  20856. default: true
  20857. },
  20858. ]
  20859. ))
  20860. characterMakers.push(() => makeCharacter(
  20861. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  20862. {
  20863. front: {
  20864. height: math.unit(5 + 10 / 12, "feet"),
  20865. weight: math.unit(125, "lb"),
  20866. name: "Front",
  20867. image: {
  20868. source: "./media/characters/dharsi/front.svg",
  20869. extra: 716 / 630,
  20870. bottom: 0.035
  20871. }
  20872. },
  20873. },
  20874. [
  20875. {
  20876. name: "Nano",
  20877. height: math.unit(100, "nm")
  20878. },
  20879. {
  20880. name: "Micro",
  20881. height: math.unit(2, "inches")
  20882. },
  20883. {
  20884. name: "Normal",
  20885. height: math.unit(5 + 10 / 12, "feet"),
  20886. default: true
  20887. },
  20888. {
  20889. name: "Macro",
  20890. height: math.unit(1000, "feet")
  20891. },
  20892. {
  20893. name: "Megamacro",
  20894. height: math.unit(10, "miles")
  20895. },
  20896. {
  20897. name: "Gigamacro",
  20898. height: math.unit(3000, "miles")
  20899. },
  20900. {
  20901. name: "Teramacro",
  20902. height: math.unit(500000, "miles")
  20903. },
  20904. {
  20905. name: "Teramacro+",
  20906. height: math.unit(30, "galaxies")
  20907. },
  20908. ]
  20909. ))
  20910. characterMakers.push(() => makeCharacter(
  20911. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  20912. {
  20913. front: {
  20914. height: math.unit(6, "feet"),
  20915. weight: math.unit(150, "lb"),
  20916. name: "Front",
  20917. image: {
  20918. source: "./media/characters/deathy/front.svg",
  20919. extra: 1552 / 1463,
  20920. bottom: 0.025
  20921. }
  20922. },
  20923. side: {
  20924. height: math.unit(6, "feet"),
  20925. weight: math.unit(150, "lb"),
  20926. name: "Side",
  20927. image: {
  20928. source: "./media/characters/deathy/side.svg",
  20929. extra: 1604 / 1455,
  20930. bottom: 0.025
  20931. }
  20932. },
  20933. back: {
  20934. height: math.unit(6, "feet"),
  20935. weight: math.unit(150, "lb"),
  20936. name: "Back",
  20937. image: {
  20938. source: "./media/characters/deathy/back.svg",
  20939. extra: 1580 / 1463,
  20940. bottom: 0.005
  20941. }
  20942. },
  20943. },
  20944. [
  20945. {
  20946. name: "Micro",
  20947. height: math.unit(5, "millimeters")
  20948. },
  20949. {
  20950. name: "Normal",
  20951. height: math.unit(6 + 5 / 12, "feet"),
  20952. default: true
  20953. },
  20954. ]
  20955. ))
  20956. characterMakers.push(() => makeCharacter(
  20957. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  20958. {
  20959. front: {
  20960. height: math.unit(16, "feet"),
  20961. weight: math.unit(4000, "lb"),
  20962. name: "Front",
  20963. image: {
  20964. source: "./media/characters/juniper/front.svg",
  20965. bottom: 0.04
  20966. }
  20967. },
  20968. },
  20969. [
  20970. {
  20971. name: "Normal",
  20972. height: math.unit(16, "feet"),
  20973. default: true
  20974. },
  20975. ]
  20976. ))
  20977. characterMakers.push(() => makeCharacter(
  20978. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  20979. {
  20980. front: {
  20981. height: math.unit(6, "feet"),
  20982. weight: math.unit(150, "lb"),
  20983. name: "Front",
  20984. image: {
  20985. source: "./media/characters/hipster/front.svg",
  20986. extra: 1312 / 1209,
  20987. bottom: 0.025
  20988. }
  20989. },
  20990. back: {
  20991. height: math.unit(6, "feet"),
  20992. weight: math.unit(150, "lb"),
  20993. name: "Back",
  20994. image: {
  20995. source: "./media/characters/hipster/back.svg",
  20996. extra: 1281 / 1196,
  20997. bottom: 0.01
  20998. }
  20999. },
  21000. },
  21001. [
  21002. {
  21003. name: "Micro",
  21004. height: math.unit(1, "mm")
  21005. },
  21006. {
  21007. name: "Normal",
  21008. height: math.unit(4, "inches"),
  21009. default: true
  21010. },
  21011. {
  21012. name: "Macro",
  21013. height: math.unit(500, "feet")
  21014. },
  21015. {
  21016. name: "Megamacro",
  21017. height: math.unit(1000, "miles")
  21018. },
  21019. ]
  21020. ))
  21021. characterMakers.push(() => makeCharacter(
  21022. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  21023. {
  21024. front: {
  21025. height: math.unit(6, "feet"),
  21026. weight: math.unit(150, "lb"),
  21027. name: "Front",
  21028. image: {
  21029. source: "./media/characters/tendirmuldr/front.svg",
  21030. extra: 1878 / 1772,
  21031. bottom: 0.015
  21032. }
  21033. },
  21034. },
  21035. [
  21036. {
  21037. name: "Megamacro",
  21038. height: math.unit(1500, "miles"),
  21039. default: true
  21040. },
  21041. ]
  21042. ))
  21043. characterMakers.push(() => makeCharacter(
  21044. { name: "Mort", species: ["demon"], tags: ["feral"] },
  21045. {
  21046. front: {
  21047. height: math.unit(14, "feet"),
  21048. weight: math.unit(12000, "lb"),
  21049. name: "Front",
  21050. image: {
  21051. source: "./media/characters/mort/front.svg",
  21052. extra: 365 / 318,
  21053. bottom: 0.01
  21054. }
  21055. },
  21056. side: {
  21057. height: math.unit(14, "feet"),
  21058. weight: math.unit(12000, "lb"),
  21059. name: "Side",
  21060. image: {
  21061. source: "./media/characters/mort/side.svg",
  21062. extra: 365 / 318,
  21063. bottom: 0.052
  21064. },
  21065. default: true
  21066. },
  21067. back: {
  21068. height: math.unit(14, "feet"),
  21069. weight: math.unit(12000, "lb"),
  21070. name: "Back",
  21071. image: {
  21072. source: "./media/characters/mort/back.svg",
  21073. extra: 371 / 332,
  21074. bottom: 0.18
  21075. }
  21076. },
  21077. },
  21078. [
  21079. {
  21080. name: "Normal",
  21081. height: math.unit(14, "feet"),
  21082. default: true
  21083. },
  21084. ]
  21085. ))
  21086. characterMakers.push(() => makeCharacter(
  21087. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  21088. {
  21089. front: {
  21090. height: math.unit(8, "feet"),
  21091. weight: math.unit(1, "ton"),
  21092. name: "Front",
  21093. image: {
  21094. source: "./media/characters/lycoa/front.svg",
  21095. extra: 1836/1728,
  21096. bottom: 81/1917
  21097. }
  21098. },
  21099. back: {
  21100. height: math.unit(8, "feet"),
  21101. weight: math.unit(1, "ton"),
  21102. name: "Back",
  21103. image: {
  21104. source: "./media/characters/lycoa/back.svg",
  21105. extra: 1785/1720,
  21106. bottom: 91/1876
  21107. }
  21108. },
  21109. head: {
  21110. height: math.unit(1.6243, "feet"),
  21111. name: "Head",
  21112. image: {
  21113. source: "./media/characters/lycoa/head.svg",
  21114. extra: 1011/782,
  21115. bottom: 0/1011
  21116. }
  21117. },
  21118. tailmaw: {
  21119. height: math.unit(1.9, "feet"),
  21120. name: "Tailmaw",
  21121. image: {
  21122. source: "./media/characters/lycoa/tailmaw.svg"
  21123. }
  21124. },
  21125. tentacles: {
  21126. height: math.unit(2.1, "feet"),
  21127. name: "Tentacles",
  21128. image: {
  21129. source: "./media/characters/lycoa/tentacles.svg"
  21130. }
  21131. },
  21132. dick: {
  21133. height: math.unit(1.73, "feet"),
  21134. name: "Dick",
  21135. image: {
  21136. source: "./media/characters/lycoa/dick.svg"
  21137. }
  21138. },
  21139. },
  21140. [
  21141. {
  21142. name: "Normal",
  21143. height: math.unit(8, "feet"),
  21144. default: true
  21145. },
  21146. {
  21147. name: "Macro",
  21148. height: math.unit(30, "feet")
  21149. },
  21150. ]
  21151. ))
  21152. characterMakers.push(() => makeCharacter(
  21153. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  21154. {
  21155. front: {
  21156. height: math.unit(4 + 2 / 12, "feet"),
  21157. weight: math.unit(70, "lb"),
  21158. name: "Front",
  21159. image: {
  21160. source: "./media/characters/naldara/front.svg",
  21161. extra: 1664/1387,
  21162. bottom: 81/1745
  21163. },
  21164. form: "anthro",
  21165. default: true
  21166. },
  21167. naga: {
  21168. height: math.unit(20, "feet"),
  21169. weight: math.unit(15000, "kg"),
  21170. name: "Front",
  21171. image: {
  21172. source: "./media/characters/naldara/naga.svg",
  21173. extra: 1590/1396,
  21174. bottom: 285/1875
  21175. },
  21176. form: "naga",
  21177. default: true
  21178. },
  21179. },
  21180. [
  21181. {
  21182. name: "Normal",
  21183. height: math.unit(4 + 2 / 12, "feet"),
  21184. form: "anthro",
  21185. default: true
  21186. },
  21187. {
  21188. name: "Normal",
  21189. height: math.unit(20, "feet"),
  21190. form: "naga",
  21191. default: true
  21192. },
  21193. ],
  21194. {
  21195. "anthro": {
  21196. name: "Anthro",
  21197. default: true
  21198. },
  21199. "naga": {
  21200. name: "Naga"
  21201. }
  21202. }
  21203. ))
  21204. characterMakers.push(() => makeCharacter(
  21205. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  21206. {
  21207. front: {
  21208. height: math.unit(13 + 7 / 12, "feet"),
  21209. weight: math.unit(1500, "lb"),
  21210. name: "Front",
  21211. image: {
  21212. source: "./media/characters/briar/front.svg",
  21213. extra: 1223/1157,
  21214. bottom: 123/1346
  21215. }
  21216. },
  21217. },
  21218. [
  21219. {
  21220. name: "Normal",
  21221. height: math.unit(13 + 7 / 12, "feet"),
  21222. default: true
  21223. },
  21224. ]
  21225. ))
  21226. characterMakers.push(() => makeCharacter(
  21227. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  21228. {
  21229. side: {
  21230. height: math.unit(16, "feet"),
  21231. weight: math.unit(500, "lb"),
  21232. name: "Side",
  21233. image: {
  21234. source: "./media/characters/vanguard/side.svg",
  21235. extra: 1022/914,
  21236. bottom: 30/1052
  21237. }
  21238. },
  21239. sideAlt: {
  21240. height: math.unit(10, "feet"),
  21241. weight: math.unit(500, "lb"),
  21242. name: "Side (Alt)",
  21243. image: {
  21244. source: "./media/characters/vanguard/side-alt.svg",
  21245. extra: 502 / 425,
  21246. bottom: 0.087
  21247. }
  21248. },
  21249. },
  21250. [
  21251. {
  21252. name: "Normal",
  21253. height: math.unit(17.71, "feet"),
  21254. default: true
  21255. },
  21256. ]
  21257. ))
  21258. characterMakers.push(() => makeCharacter(
  21259. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  21260. {
  21261. front: {
  21262. height: math.unit(7.5, "feet"),
  21263. weight: math.unit(2, "lb"),
  21264. name: "Front",
  21265. image: {
  21266. source: "./media/characters/artemis/work-safe-front.svg",
  21267. extra: 1192 / 1075,
  21268. bottom: 0.07
  21269. },
  21270. form: "work-safe",
  21271. default: true
  21272. },
  21273. frontNsfw: {
  21274. height: math.unit(7.5, "feet"),
  21275. weight: math.unit(2, "lb"),
  21276. name: "Front",
  21277. image: {
  21278. source: "./media/characters/artemis/calibrating-front.svg",
  21279. extra: 1192 / 1075,
  21280. bottom: 0.07
  21281. },
  21282. form: "calibrating",
  21283. default: true
  21284. },
  21285. frontNsfwer: {
  21286. height: math.unit(7.5, "feet"),
  21287. weight: math.unit(2, "lb"),
  21288. name: "Front",
  21289. image: {
  21290. source: "./media/characters/artemis/oversize-load-front.svg",
  21291. extra: 1192 / 1075,
  21292. bottom: 0.07
  21293. },
  21294. form: "oversize-load",
  21295. default: true
  21296. },
  21297. side: {
  21298. height: math.unit(7.5, "feet"),
  21299. weight: math.unit(2, "lb"),
  21300. name: "Side",
  21301. image: {
  21302. source: "./media/characters/artemis/work-safe-side.svg",
  21303. extra: 1192 / 1075,
  21304. bottom: 0.07
  21305. },
  21306. form: "work-safe"
  21307. },
  21308. sideNsfw: {
  21309. height: math.unit(7.5, "feet"),
  21310. weight: math.unit(2, "lb"),
  21311. name: "Side",
  21312. image: {
  21313. source: "./media/characters/artemis/calibrating-side.svg",
  21314. extra: 1192 / 1075,
  21315. bottom: 0.07
  21316. },
  21317. form: "calibrating"
  21318. },
  21319. sideNsfwer: {
  21320. height: math.unit(7.5, "feet"),
  21321. weight: math.unit(2, "lb"),
  21322. name: "Side",
  21323. image: {
  21324. source: "./media/characters/artemis/oversize-load-side.svg",
  21325. extra: 1192 / 1075,
  21326. bottom: 0.07
  21327. },
  21328. form: "oversize-load"
  21329. },
  21330. maw: {
  21331. height: math.unit(1.1, "feet"),
  21332. name: "Maw",
  21333. image: {
  21334. source: "./media/characters/artemis/maw.svg"
  21335. },
  21336. form: "work-safe"
  21337. },
  21338. stomach: {
  21339. height: math.unit(0.95, "feet"),
  21340. name: "Stomach",
  21341. image: {
  21342. source: "./media/characters/artemis/stomach.svg"
  21343. },
  21344. form: "work-safe"
  21345. },
  21346. dickCanine: {
  21347. height: math.unit(1, "feet"),
  21348. name: "Dick (Canine)",
  21349. image: {
  21350. source: "./media/characters/artemis/dick-canine.svg"
  21351. },
  21352. form: "calibrating"
  21353. },
  21354. dickEquine: {
  21355. height: math.unit(0.85, "feet"),
  21356. name: "Dick (Equine)",
  21357. image: {
  21358. source: "./media/characters/artemis/dick-equine.svg"
  21359. },
  21360. form: "calibrating"
  21361. },
  21362. dickExotic: {
  21363. height: math.unit(0.85, "feet"),
  21364. name: "Dick (Exotic)",
  21365. image: {
  21366. source: "./media/characters/artemis/dick-exotic.svg"
  21367. },
  21368. form: "calibrating"
  21369. },
  21370. dickCanineBigger: {
  21371. height: math.unit(1 * 1.33, "feet"),
  21372. name: "Dick (Canine)",
  21373. image: {
  21374. source: "./media/characters/artemis/dick-canine.svg"
  21375. },
  21376. form: "oversize-load"
  21377. },
  21378. dickEquineBigger: {
  21379. height: math.unit(0.85 * 1.33, "feet"),
  21380. name: "Dick (Equine)",
  21381. image: {
  21382. source: "./media/characters/artemis/dick-equine.svg"
  21383. },
  21384. form: "oversize-load"
  21385. },
  21386. dickExoticBigger: {
  21387. height: math.unit(0.85 * 1.33, "feet"),
  21388. name: "Dick (Exotic)",
  21389. image: {
  21390. source: "./media/characters/artemis/dick-exotic.svg"
  21391. },
  21392. form: "oversize-load"
  21393. },
  21394. },
  21395. [
  21396. {
  21397. name: "Normal",
  21398. height: math.unit(7.5, "feet"),
  21399. form: "work-safe",
  21400. default: true
  21401. },
  21402. {
  21403. name: "Normal",
  21404. height: math.unit(7.5, "feet"),
  21405. form: "calibrating",
  21406. default: true
  21407. },
  21408. {
  21409. name: "Normal",
  21410. height: math.unit(7.5, "feet"),
  21411. form: "oversize-load",
  21412. default: true
  21413. },
  21414. {
  21415. name: "Enlarged",
  21416. height: math.unit(12, "feet"),
  21417. form: "work-safe",
  21418. },
  21419. {
  21420. name: "Enlarged",
  21421. height: math.unit(12, "feet"),
  21422. form: "calibrating",
  21423. },
  21424. {
  21425. name: "Enlarged",
  21426. height: math.unit(12, "feet"),
  21427. form: "oversize-load",
  21428. },
  21429. ],
  21430. {
  21431. "work-safe": {
  21432. name: "Work-Safe",
  21433. default: true
  21434. },
  21435. "calibrating": {
  21436. name: "Calibrating"
  21437. },
  21438. "oversize-load": {
  21439. name: "Oversize Load"
  21440. }
  21441. }
  21442. ))
  21443. characterMakers.push(() => makeCharacter(
  21444. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  21445. {
  21446. front: {
  21447. height: math.unit(5 + 3 / 12, "feet"),
  21448. weight: math.unit(160, "lb"),
  21449. name: "Front",
  21450. image: {
  21451. source: "./media/characters/kira/front.svg",
  21452. extra: 906 / 786,
  21453. bottom: 0.01
  21454. }
  21455. },
  21456. back: {
  21457. height: math.unit(5 + 3 / 12, "feet"),
  21458. weight: math.unit(160, "lb"),
  21459. name: "Back",
  21460. image: {
  21461. source: "./media/characters/kira/back.svg",
  21462. extra: 882 / 757,
  21463. bottom: 0.005
  21464. }
  21465. },
  21466. frontDressed: {
  21467. height: math.unit(5 + 3 / 12, "feet"),
  21468. weight: math.unit(160, "lb"),
  21469. name: "Front (Dressed)",
  21470. image: {
  21471. source: "./media/characters/kira/front-dressed.svg",
  21472. extra: 906 / 786,
  21473. bottom: 0.01
  21474. }
  21475. },
  21476. beans: {
  21477. height: math.unit(0.92, "feet"),
  21478. name: "Beans",
  21479. image: {
  21480. source: "./media/characters/kira/beans.svg"
  21481. }
  21482. },
  21483. },
  21484. [
  21485. {
  21486. name: "Normal",
  21487. height: math.unit(5 + 3 / 12, "feet"),
  21488. default: true
  21489. },
  21490. ]
  21491. ))
  21492. characterMakers.push(() => makeCharacter(
  21493. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  21494. {
  21495. front: {
  21496. height: math.unit(5 + 4 / 12, "feet"),
  21497. weight: math.unit(145, "lb"),
  21498. name: "Front",
  21499. image: {
  21500. source: "./media/characters/scramble/front.svg",
  21501. extra: 763 / 727,
  21502. bottom: 0.05
  21503. }
  21504. },
  21505. back: {
  21506. height: math.unit(5 + 4 / 12, "feet"),
  21507. weight: math.unit(145, "lb"),
  21508. name: "Back",
  21509. image: {
  21510. source: "./media/characters/scramble/back.svg",
  21511. extra: 826 / 737,
  21512. bottom: 0.002
  21513. }
  21514. },
  21515. },
  21516. [
  21517. {
  21518. name: "Normal",
  21519. height: math.unit(5 + 4 / 12, "feet"),
  21520. default: true
  21521. },
  21522. ]
  21523. ))
  21524. characterMakers.push(() => makeCharacter(
  21525. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  21526. {
  21527. side: {
  21528. height: math.unit(6 + 2 / 12, "feet"),
  21529. weight: math.unit(190, "lb"),
  21530. name: "Side",
  21531. image: {
  21532. source: "./media/characters/biscuit/side.svg",
  21533. extra: 858 / 791,
  21534. bottom: 0.044
  21535. }
  21536. },
  21537. },
  21538. [
  21539. {
  21540. name: "Normal",
  21541. height: math.unit(6 + 2 / 12, "feet"),
  21542. default: true
  21543. },
  21544. ]
  21545. ))
  21546. characterMakers.push(() => makeCharacter(
  21547. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  21548. {
  21549. front: {
  21550. height: math.unit(5 + 2 / 12, "feet"),
  21551. weight: math.unit(120, "lb"),
  21552. name: "Front",
  21553. image: {
  21554. source: "./media/characters/poffin/front.svg",
  21555. extra: 786 / 680,
  21556. bottom: 0.005
  21557. }
  21558. },
  21559. },
  21560. [
  21561. {
  21562. name: "Normal",
  21563. height: math.unit(5 + 2 / 12, "feet"),
  21564. default: true
  21565. },
  21566. ]
  21567. ))
  21568. characterMakers.push(() => makeCharacter(
  21569. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  21570. {
  21571. front: {
  21572. height: math.unit(6 + 3 / 12, "feet"),
  21573. weight: math.unit(519, "lb"),
  21574. name: "Front",
  21575. image: {
  21576. source: "./media/characters/dhari/front.svg",
  21577. extra: 1048 / 946,
  21578. bottom: 0.015
  21579. }
  21580. },
  21581. back: {
  21582. height: math.unit(6 + 3 / 12, "feet"),
  21583. weight: math.unit(519, "lb"),
  21584. name: "Back",
  21585. image: {
  21586. source: "./media/characters/dhari/back.svg",
  21587. extra: 1048 / 931,
  21588. bottom: 0.005
  21589. }
  21590. },
  21591. frontDressed: {
  21592. height: math.unit(6 + 3 / 12, "feet"),
  21593. weight: math.unit(519, "lb"),
  21594. name: "Front (Dressed)",
  21595. image: {
  21596. source: "./media/characters/dhari/front-dressed.svg",
  21597. extra: 1713 / 1546,
  21598. bottom: 0.02
  21599. }
  21600. },
  21601. backDressed: {
  21602. height: math.unit(6 + 3 / 12, "feet"),
  21603. weight: math.unit(519, "lb"),
  21604. name: "Back (Dressed)",
  21605. image: {
  21606. source: "./media/characters/dhari/back-dressed.svg",
  21607. extra: 1699 / 1537,
  21608. bottom: 0.01
  21609. }
  21610. },
  21611. maw: {
  21612. height: math.unit(0.95, "feet"),
  21613. name: "Maw",
  21614. image: {
  21615. source: "./media/characters/dhari/maw.svg"
  21616. }
  21617. },
  21618. wereFront: {
  21619. height: math.unit(12 + 8 / 12, "feet"),
  21620. weight: math.unit(4000, "lb"),
  21621. name: "Front (Were)",
  21622. image: {
  21623. source: "./media/characters/dhari/were-front.svg",
  21624. extra: 1065 / 969,
  21625. bottom: 0.015
  21626. }
  21627. },
  21628. wereBack: {
  21629. height: math.unit(12 + 8 / 12, "feet"),
  21630. weight: math.unit(4000, "lb"),
  21631. name: "Back (Were)",
  21632. image: {
  21633. source: "./media/characters/dhari/were-back.svg",
  21634. extra: 1065 / 969,
  21635. bottom: 0.012
  21636. }
  21637. },
  21638. wereMaw: {
  21639. height: math.unit(0.625, "meters"),
  21640. name: "Maw (Were)",
  21641. image: {
  21642. source: "./media/characters/dhari/were-maw.svg"
  21643. }
  21644. },
  21645. },
  21646. [
  21647. {
  21648. name: "Normal",
  21649. height: math.unit(6 + 3 / 12, "feet"),
  21650. default: true
  21651. },
  21652. ]
  21653. ))
  21654. characterMakers.push(() => makeCharacter(
  21655. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  21656. {
  21657. anthro: {
  21658. height: math.unit(5 + 7 / 12, "feet"),
  21659. weight: math.unit(175, "lb"),
  21660. name: "Anthro",
  21661. image: {
  21662. source: "./media/characters/rena-dyne/anthro.svg",
  21663. extra: 1849 / 1785,
  21664. bottom: 0.005
  21665. }
  21666. },
  21667. taur: {
  21668. height: math.unit(15 + 6 / 12, "feet"),
  21669. weight: math.unit(8000, "lb"),
  21670. name: "Taur",
  21671. image: {
  21672. source: "./media/characters/rena-dyne/taur.svg",
  21673. extra: 2315 / 2234,
  21674. bottom: 0.033
  21675. }
  21676. },
  21677. },
  21678. [
  21679. {
  21680. name: "Normal",
  21681. height: math.unit(5 + 7 / 12, "feet"),
  21682. default: true
  21683. },
  21684. ]
  21685. ))
  21686. characterMakers.push(() => makeCharacter(
  21687. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  21688. {
  21689. front: {
  21690. height: math.unit(8, "feet"),
  21691. weight: math.unit(600, "lb"),
  21692. name: "Front",
  21693. image: {
  21694. source: "./media/characters/weremeep/front.svg",
  21695. extra: 967 / 862,
  21696. bottom: 0.01
  21697. }
  21698. },
  21699. },
  21700. [
  21701. {
  21702. name: "Normal",
  21703. height: math.unit(8, "feet"),
  21704. default: true
  21705. },
  21706. {
  21707. name: "Lorg",
  21708. height: math.unit(12, "feet")
  21709. },
  21710. {
  21711. name: "Oh Lawd She Comin'",
  21712. height: math.unit(20, "feet")
  21713. },
  21714. ]
  21715. ))
  21716. characterMakers.push(() => makeCharacter(
  21717. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  21718. {
  21719. front: {
  21720. height: math.unit(4, "feet"),
  21721. weight: math.unit(90, "lb"),
  21722. name: "Front",
  21723. image: {
  21724. source: "./media/characters/reza/front.svg",
  21725. extra: 1183 / 1111,
  21726. bottom: 0.017
  21727. }
  21728. },
  21729. back: {
  21730. height: math.unit(4, "feet"),
  21731. weight: math.unit(90, "lb"),
  21732. name: "Back",
  21733. image: {
  21734. source: "./media/characters/reza/back.svg",
  21735. extra: 1183 / 1111,
  21736. bottom: 0.01
  21737. }
  21738. },
  21739. drake: {
  21740. height: math.unit(30, "feet"),
  21741. weight: math.unit(246960, "lb"),
  21742. name: "Drake",
  21743. image: {
  21744. source: "./media/characters/reza/drake.svg",
  21745. extra: 2350 / 2024,
  21746. bottom: 60.7 / 2403
  21747. }
  21748. },
  21749. },
  21750. [
  21751. {
  21752. name: "Normal",
  21753. height: math.unit(4, "feet"),
  21754. default: true
  21755. },
  21756. ]
  21757. ))
  21758. characterMakers.push(() => makeCharacter(
  21759. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  21760. {
  21761. side: {
  21762. height: math.unit(15, "feet"),
  21763. weight: math.unit(14, "tons"),
  21764. name: "Side",
  21765. image: {
  21766. source: "./media/characters/athea/side.svg",
  21767. extra: 960 / 540,
  21768. bottom: 0.003
  21769. }
  21770. },
  21771. sitting: {
  21772. height: math.unit(6 * 2.85, "feet"),
  21773. weight: math.unit(14, "tons"),
  21774. name: "Sitting",
  21775. image: {
  21776. source: "./media/characters/athea/sitting.svg",
  21777. extra: 621 / 581,
  21778. bottom: 0.075
  21779. }
  21780. },
  21781. maw: {
  21782. height: math.unit(7.59498031496063, "feet"),
  21783. name: "Maw",
  21784. image: {
  21785. source: "./media/characters/athea/maw.svg"
  21786. }
  21787. },
  21788. },
  21789. [
  21790. {
  21791. name: "Lap Cat",
  21792. height: math.unit(2.5, "feet")
  21793. },
  21794. {
  21795. name: "Minimacro",
  21796. height: math.unit(15, "feet"),
  21797. default: true
  21798. },
  21799. {
  21800. name: "Macro",
  21801. height: math.unit(120, "feet")
  21802. },
  21803. {
  21804. name: "Macro+",
  21805. height: math.unit(640, "feet")
  21806. },
  21807. {
  21808. name: "Colossus",
  21809. height: math.unit(2.2, "miles")
  21810. },
  21811. ]
  21812. ))
  21813. characterMakers.push(() => makeCharacter(
  21814. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  21815. {
  21816. front: {
  21817. height: math.unit(8 + 8 / 12, "feet"),
  21818. weight: math.unit(130, "kg"),
  21819. name: "Front",
  21820. image: {
  21821. source: "./media/characters/seroko/front.svg",
  21822. extra: 1385 / 1280,
  21823. bottom: 0.025
  21824. }
  21825. },
  21826. back: {
  21827. height: math.unit(8 + 8 / 12, "feet"),
  21828. weight: math.unit(130, "kg"),
  21829. name: "Back",
  21830. image: {
  21831. source: "./media/characters/seroko/back.svg",
  21832. extra: 1369 / 1238,
  21833. bottom: 0.018
  21834. }
  21835. },
  21836. frontDressed: {
  21837. height: math.unit(8 + 8 / 12, "feet"),
  21838. weight: math.unit(130, "kg"),
  21839. name: "Front (Dressed)",
  21840. image: {
  21841. source: "./media/characters/seroko/front-dressed.svg",
  21842. extra: 1366 / 1275,
  21843. bottom: 0.03
  21844. }
  21845. },
  21846. },
  21847. [
  21848. {
  21849. name: "Normal",
  21850. height: math.unit(8 + 8 / 12, "feet"),
  21851. default: true
  21852. },
  21853. ]
  21854. ))
  21855. characterMakers.push(() => makeCharacter(
  21856. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  21857. {
  21858. front: {
  21859. height: math.unit(5.5, "feet"),
  21860. weight: math.unit(160, "lb"),
  21861. name: "Front",
  21862. image: {
  21863. source: "./media/characters/quatzi/front.svg",
  21864. extra: 2346 / 2242,
  21865. bottom: 0.015
  21866. }
  21867. },
  21868. },
  21869. [
  21870. {
  21871. name: "Normal",
  21872. height: math.unit(5.5, "feet"),
  21873. default: true
  21874. },
  21875. {
  21876. name: "Big",
  21877. height: math.unit(7.7, "feet")
  21878. },
  21879. ]
  21880. ))
  21881. characterMakers.push(() => makeCharacter(
  21882. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  21883. {
  21884. front: {
  21885. height: math.unit(5 + 11 / 12, "feet"),
  21886. weight: math.unit(180, "lb"),
  21887. name: "Front",
  21888. image: {
  21889. source: "./media/characters/sen/front.svg",
  21890. extra: 1321 / 1254,
  21891. bottom: 0.015
  21892. }
  21893. },
  21894. side: {
  21895. height: math.unit(5 + 11 / 12, "feet"),
  21896. weight: math.unit(180, "lb"),
  21897. name: "Side",
  21898. image: {
  21899. source: "./media/characters/sen/side.svg",
  21900. extra: 1321 / 1254,
  21901. bottom: 0.007
  21902. }
  21903. },
  21904. back: {
  21905. height: math.unit(5 + 11 / 12, "feet"),
  21906. weight: math.unit(180, "lb"),
  21907. name: "Back",
  21908. image: {
  21909. source: "./media/characters/sen/back.svg",
  21910. extra: 1321 / 1254
  21911. }
  21912. },
  21913. },
  21914. [
  21915. {
  21916. name: "Normal",
  21917. height: math.unit(5 + 11 / 12, "feet"),
  21918. default: true
  21919. },
  21920. ]
  21921. ))
  21922. characterMakers.push(() => makeCharacter(
  21923. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  21924. {
  21925. front: {
  21926. height: math.unit(166.6, "cm"),
  21927. weight: math.unit(66.6, "kg"),
  21928. name: "Front",
  21929. image: {
  21930. source: "./media/characters/fruity/front.svg",
  21931. extra: 1510 / 1386,
  21932. bottom: 0.04
  21933. }
  21934. },
  21935. back: {
  21936. height: math.unit(166.6, "cm"),
  21937. weight: math.unit(66.6, "lb"),
  21938. name: "Back",
  21939. image: {
  21940. source: "./media/characters/fruity/back.svg",
  21941. extra: 1563 / 1435,
  21942. bottom: 0.005
  21943. }
  21944. },
  21945. },
  21946. [
  21947. {
  21948. name: "Normal",
  21949. height: math.unit(166.6, "cm"),
  21950. default: true
  21951. },
  21952. {
  21953. name: "Demonic",
  21954. height: math.unit(166.6, "feet")
  21955. },
  21956. ]
  21957. ))
  21958. characterMakers.push(() => makeCharacter(
  21959. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  21960. {
  21961. side: {
  21962. height: math.unit(10, "feet"),
  21963. weight: math.unit(500, "lb"),
  21964. name: "Side",
  21965. image: {
  21966. source: "./media/characters/zost/side.svg",
  21967. extra: 2870/2533,
  21968. bottom: 252/3122
  21969. }
  21970. },
  21971. mawFront: {
  21972. height: math.unit(1.08, "meters"),
  21973. name: "Maw (Front)",
  21974. image: {
  21975. source: "./media/characters/zost/maw-front.svg"
  21976. }
  21977. },
  21978. mawSide: {
  21979. height: math.unit(2.66, "feet"),
  21980. name: "Maw (Side)",
  21981. image: {
  21982. source: "./media/characters/zost/maw-side.svg"
  21983. }
  21984. },
  21985. wingspan: {
  21986. height: math.unit(7.4, "feet"),
  21987. name: "Wingspan",
  21988. image: {
  21989. source: "./media/characters/zost/wingspan.svg"
  21990. }
  21991. },
  21992. },
  21993. [
  21994. {
  21995. name: "Normal",
  21996. height: math.unit(10, "feet"),
  21997. default: true
  21998. },
  21999. ]
  22000. ))
  22001. characterMakers.push(() => makeCharacter(
  22002. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  22003. {
  22004. front: {
  22005. height: math.unit(5 + 4 / 12, "feet"),
  22006. weight: math.unit(120, "lb"),
  22007. name: "Front",
  22008. image: {
  22009. source: "./media/characters/luci/front.svg",
  22010. extra: 1985 / 1884,
  22011. bottom: 0.04
  22012. }
  22013. },
  22014. back: {
  22015. height: math.unit(5 + 4 / 12, "feet"),
  22016. weight: math.unit(120, "lb"),
  22017. name: "Back",
  22018. image: {
  22019. source: "./media/characters/luci/back.svg",
  22020. extra: 1892 / 1791,
  22021. bottom: 0.002
  22022. }
  22023. },
  22024. },
  22025. [
  22026. {
  22027. name: "Normal",
  22028. height: math.unit(5 + 4 / 12, "feet"),
  22029. default: true
  22030. },
  22031. ]
  22032. ))
  22033. characterMakers.push(() => makeCharacter(
  22034. { name: "2th", species: ["monster"], tags: ["anthro"] },
  22035. {
  22036. front: {
  22037. height: math.unit(1500, "feet"),
  22038. weight: math.unit(3.8e6, "tons"),
  22039. name: "Front",
  22040. image: {
  22041. source: "./media/characters/2th/front.svg",
  22042. extra: 3489 / 3350,
  22043. bottom: 0.1
  22044. }
  22045. },
  22046. foot: {
  22047. height: math.unit(461, "feet"),
  22048. name: "Foot",
  22049. image: {
  22050. source: "./media/characters/2th/foot.svg"
  22051. }
  22052. },
  22053. },
  22054. [
  22055. {
  22056. name: "\"Micro\"",
  22057. height: math.unit(15 + 7 / 12, "feet")
  22058. },
  22059. {
  22060. name: "Normal",
  22061. height: math.unit(1500, "feet"),
  22062. default: true
  22063. },
  22064. {
  22065. name: "Macro",
  22066. height: math.unit(5000, "feet")
  22067. },
  22068. {
  22069. name: "Megamacro",
  22070. height: math.unit(15, "miles")
  22071. },
  22072. {
  22073. name: "Gigamacro",
  22074. height: math.unit(4000, "miles")
  22075. },
  22076. {
  22077. name: "Galactic",
  22078. height: math.unit(50, "AU")
  22079. },
  22080. ]
  22081. ))
  22082. characterMakers.push(() => makeCharacter(
  22083. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  22084. {
  22085. front: {
  22086. height: math.unit(5 + 6 / 12, "feet"),
  22087. weight: math.unit(220, "lb"),
  22088. name: "Front",
  22089. image: {
  22090. source: "./media/characters/amethyst/front.svg",
  22091. extra: 2078 / 2040,
  22092. bottom: 0.045
  22093. }
  22094. },
  22095. back: {
  22096. height: math.unit(5 + 6 / 12, "feet"),
  22097. weight: math.unit(220, "lb"),
  22098. name: "Back",
  22099. image: {
  22100. source: "./media/characters/amethyst/back.svg",
  22101. extra: 2021 / 1989,
  22102. bottom: 0.02
  22103. }
  22104. },
  22105. },
  22106. [
  22107. {
  22108. name: "Normal",
  22109. height: math.unit(5 + 6 / 12, "feet"),
  22110. default: true
  22111. },
  22112. ]
  22113. ))
  22114. characterMakers.push(() => makeCharacter(
  22115. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  22116. {
  22117. front: {
  22118. height: math.unit(4 + 11 / 12, "feet"),
  22119. weight: math.unit(120, "lb"),
  22120. name: "Front",
  22121. image: {
  22122. source: "./media/characters/yumi-akiyama/front.svg",
  22123. extra: 1327 / 1235,
  22124. bottom: 0.02
  22125. }
  22126. },
  22127. back: {
  22128. height: math.unit(4 + 11 / 12, "feet"),
  22129. weight: math.unit(120, "lb"),
  22130. name: "Back",
  22131. image: {
  22132. source: "./media/characters/yumi-akiyama/back.svg",
  22133. extra: 1287 / 1245,
  22134. bottom: 0.002
  22135. }
  22136. },
  22137. },
  22138. [
  22139. {
  22140. name: "Galactic",
  22141. height: math.unit(50, "galaxies"),
  22142. default: true
  22143. },
  22144. {
  22145. name: "Universal",
  22146. height: math.unit(100, "universes")
  22147. },
  22148. ]
  22149. ))
  22150. characterMakers.push(() => makeCharacter(
  22151. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  22152. {
  22153. front: {
  22154. height: math.unit(8, "feet"),
  22155. weight: math.unit(500, "lb"),
  22156. name: "Front",
  22157. image: {
  22158. source: "./media/characters/rifter-yrmori/front.svg",
  22159. extra: 1180 / 1125,
  22160. bottom: 0.02
  22161. }
  22162. },
  22163. back: {
  22164. height: math.unit(8, "feet"),
  22165. weight: math.unit(500, "lb"),
  22166. name: "Back",
  22167. image: {
  22168. source: "./media/characters/rifter-yrmori/back.svg",
  22169. extra: 1190 / 1145,
  22170. bottom: 0.001
  22171. }
  22172. },
  22173. wings: {
  22174. height: math.unit(7.75, "feet"),
  22175. weight: math.unit(500, "lb"),
  22176. name: "Wings",
  22177. image: {
  22178. source: "./media/characters/rifter-yrmori/wings.svg",
  22179. extra: 1357 / 1285
  22180. }
  22181. },
  22182. maw: {
  22183. height: math.unit(0.8, "feet"),
  22184. name: "Maw",
  22185. image: {
  22186. source: "./media/characters/rifter-yrmori/maw.svg"
  22187. }
  22188. },
  22189. mawfront: {
  22190. height: math.unit(1.45, "feet"),
  22191. name: "Maw (Front)",
  22192. image: {
  22193. source: "./media/characters/rifter-yrmori/maw-front.svg"
  22194. }
  22195. },
  22196. },
  22197. [
  22198. {
  22199. name: "Normal",
  22200. height: math.unit(8, "feet"),
  22201. default: true
  22202. },
  22203. {
  22204. name: "Macro",
  22205. height: math.unit(42, "meters")
  22206. },
  22207. ]
  22208. ))
  22209. characterMakers.push(() => makeCharacter(
  22210. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  22211. {
  22212. were: {
  22213. height: math.unit(25 + 6 / 12, "feet"),
  22214. weight: math.unit(10000, "lb"),
  22215. name: "Were",
  22216. image: {
  22217. source: "./media/characters/tahajin/were.svg",
  22218. extra: 801 / 770,
  22219. bottom: 0.042
  22220. }
  22221. },
  22222. aquatic: {
  22223. height: math.unit(6 + 4 / 12, "feet"),
  22224. weight: math.unit(160, "lb"),
  22225. name: "Aquatic",
  22226. image: {
  22227. source: "./media/characters/tahajin/aquatic.svg",
  22228. extra: 572 / 542,
  22229. bottom: 0.04
  22230. }
  22231. },
  22232. chow: {
  22233. height: math.unit(8 + 11 / 12, "feet"),
  22234. weight: math.unit(450, "lb"),
  22235. name: "Chow",
  22236. image: {
  22237. source: "./media/characters/tahajin/chow.svg",
  22238. extra: 660 / 640,
  22239. bottom: 0.015
  22240. }
  22241. },
  22242. demiNaga: {
  22243. height: math.unit(6 + 8 / 12, "feet"),
  22244. weight: math.unit(300, "lb"),
  22245. name: "Demi Naga",
  22246. image: {
  22247. source: "./media/characters/tahajin/demi-naga.svg",
  22248. extra: 643 / 615,
  22249. bottom: 0.1
  22250. }
  22251. },
  22252. data: {
  22253. height: math.unit(5, "inches"),
  22254. weight: math.unit(0.1, "lb"),
  22255. name: "Data",
  22256. image: {
  22257. source: "./media/characters/tahajin/data.svg"
  22258. }
  22259. },
  22260. fluu: {
  22261. height: math.unit(5 + 7 / 12, "feet"),
  22262. weight: math.unit(140, "lb"),
  22263. name: "Fluu",
  22264. image: {
  22265. source: "./media/characters/tahajin/fluu.svg",
  22266. extra: 628 / 592,
  22267. bottom: 0.02
  22268. }
  22269. },
  22270. starWarrior: {
  22271. height: math.unit(4 + 5 / 12, "feet"),
  22272. weight: math.unit(50, "lb"),
  22273. name: "Star Warrior",
  22274. image: {
  22275. source: "./media/characters/tahajin/star-warrior.svg"
  22276. }
  22277. },
  22278. },
  22279. [
  22280. {
  22281. name: "Normal",
  22282. height: math.unit(25 + 6 / 12, "feet"),
  22283. default: true
  22284. },
  22285. ]
  22286. ))
  22287. characterMakers.push(() => makeCharacter(
  22288. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  22289. {
  22290. front: {
  22291. height: math.unit(8, "feet"),
  22292. weight: math.unit(350, "lb"),
  22293. name: "Front",
  22294. image: {
  22295. source: "./media/characters/gabira/front.svg",
  22296. extra: 608 / 580,
  22297. bottom: 0.03
  22298. }
  22299. },
  22300. back: {
  22301. height: math.unit(8, "feet"),
  22302. weight: math.unit(350, "lb"),
  22303. name: "Back",
  22304. image: {
  22305. source: "./media/characters/gabira/back.svg",
  22306. extra: 608 / 580,
  22307. bottom: 0.03
  22308. }
  22309. },
  22310. },
  22311. [
  22312. {
  22313. name: "Normal",
  22314. height: math.unit(8, "feet"),
  22315. default: true
  22316. },
  22317. ]
  22318. ))
  22319. characterMakers.push(() => makeCharacter(
  22320. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  22321. {
  22322. front: {
  22323. height: math.unit(5 + 3 / 12, "feet"),
  22324. weight: math.unit(137, "lb"),
  22325. name: "Front",
  22326. image: {
  22327. source: "./media/characters/sasha-katraine/front.svg",
  22328. extra: 1745/1694,
  22329. bottom: 37/1782
  22330. }
  22331. },
  22332. back: {
  22333. height: math.unit(5 + 3 / 12, "feet"),
  22334. weight: math.unit(137, "lb"),
  22335. name: "Back",
  22336. image: {
  22337. source: "./media/characters/sasha-katraine/back.svg",
  22338. extra: 1776/1699,
  22339. bottom: 26/1802
  22340. }
  22341. },
  22342. },
  22343. [
  22344. {
  22345. name: "Micro",
  22346. height: math.unit(5, "inches")
  22347. },
  22348. {
  22349. name: "Normal",
  22350. height: math.unit(5 + 3 / 12, "feet"),
  22351. default: true
  22352. },
  22353. ]
  22354. ))
  22355. characterMakers.push(() => makeCharacter(
  22356. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  22357. {
  22358. side: {
  22359. height: math.unit(4, "inches"),
  22360. weight: math.unit(200, "grams"),
  22361. name: "Side",
  22362. image: {
  22363. source: "./media/characters/der/side.svg",
  22364. extra: 719 / 400,
  22365. bottom: 30.6 / 749.9187
  22366. }
  22367. },
  22368. },
  22369. [
  22370. {
  22371. name: "Micro",
  22372. height: math.unit(4, "inches"),
  22373. default: true
  22374. },
  22375. ]
  22376. ))
  22377. characterMakers.push(() => makeCharacter(
  22378. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  22379. {
  22380. side: {
  22381. height: math.unit(30, "meters"),
  22382. weight: math.unit(700, "tonnes"),
  22383. name: "Side",
  22384. image: {
  22385. source: "./media/characters/fixerdragon/side.svg",
  22386. extra: (1293.0514 - 116.03) / 1106.86,
  22387. bottom: 116.03 / 1293.0514
  22388. }
  22389. },
  22390. },
  22391. [
  22392. {
  22393. name: "Planck",
  22394. height: math.unit(1.6e-35, "meters")
  22395. },
  22396. {
  22397. name: "Micro",
  22398. height: math.unit(0.4, "meters")
  22399. },
  22400. {
  22401. name: "Normal",
  22402. height: math.unit(30, "meters"),
  22403. default: true
  22404. },
  22405. {
  22406. name: "Megamacro",
  22407. height: math.unit(1.2, "megameters")
  22408. },
  22409. {
  22410. name: "Teramacro",
  22411. height: math.unit(130, "terameters")
  22412. },
  22413. {
  22414. name: "Yottamacro",
  22415. height: math.unit(6200, "yottameters")
  22416. },
  22417. ]
  22418. ));
  22419. characterMakers.push(() => makeCharacter(
  22420. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  22421. {
  22422. front: {
  22423. height: math.unit(8, "feet"),
  22424. weight: math.unit(250, "lb"),
  22425. name: "Front",
  22426. image: {
  22427. source: "./media/characters/kite/front.svg",
  22428. extra: 2796 / 2659,
  22429. bottom: 0.002
  22430. }
  22431. },
  22432. },
  22433. [
  22434. {
  22435. name: "Normal",
  22436. height: math.unit(8, "feet"),
  22437. default: true
  22438. },
  22439. {
  22440. name: "Macro",
  22441. height: math.unit(360, "feet")
  22442. },
  22443. {
  22444. name: "Megamacro",
  22445. height: math.unit(1500, "feet")
  22446. },
  22447. ]
  22448. ))
  22449. characterMakers.push(() => makeCharacter(
  22450. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  22451. {
  22452. front: {
  22453. height: math.unit(5 + 11/12, "feet"),
  22454. weight: math.unit(170, "lb"),
  22455. name: "Front",
  22456. image: {
  22457. source: "./media/characters/poojawa-vynar/front.svg",
  22458. extra: 1735/1585,
  22459. bottom: 96/1831
  22460. }
  22461. },
  22462. back: {
  22463. height: math.unit(5 + 11/12, "feet"),
  22464. weight: math.unit(170, "lb"),
  22465. name: "Back",
  22466. image: {
  22467. source: "./media/characters/poojawa-vynar/back.svg",
  22468. extra: 1749/1607,
  22469. bottom: 28/1777
  22470. }
  22471. },
  22472. male: {
  22473. height: math.unit(5 + 11/12, "feet"),
  22474. weight: math.unit(170, "lb"),
  22475. name: "Male",
  22476. image: {
  22477. source: "./media/characters/poojawa-vynar/male.svg",
  22478. extra: 1855/1713,
  22479. bottom: 63/1918
  22480. }
  22481. },
  22482. taur: {
  22483. height: math.unit(5 + 11/12, "feet"),
  22484. weight: math.unit(170, "lb"),
  22485. name: "Taur",
  22486. image: {
  22487. source: "./media/characters/poojawa-vynar/taur.svg",
  22488. extra: 1151/1059,
  22489. bottom: 356/1507
  22490. }
  22491. },
  22492. frontDressed: {
  22493. height: math.unit(5 + 11/12, "feet"),
  22494. weight: math.unit(170, "lb"),
  22495. name: "Front (Dressed)",
  22496. image: {
  22497. source: "./media/characters/poojawa-vynar/front-dressed.svg",
  22498. extra: 1735/1585,
  22499. bottom: 96/1831
  22500. }
  22501. },
  22502. backDressed: {
  22503. height: math.unit(5 + 11/12, "feet"),
  22504. weight: math.unit(170, "lb"),
  22505. name: "Back (Dressed)",
  22506. image: {
  22507. source: "./media/characters/poojawa-vynar/back-dressed.svg",
  22508. extra: 1749/1607,
  22509. bottom: 28/1777
  22510. }
  22511. },
  22512. maleDressed: {
  22513. height: math.unit(5 + 11/12, "feet"),
  22514. weight: math.unit(170, "lb"),
  22515. name: "Male (Dressed)",
  22516. image: {
  22517. source: "./media/characters/poojawa-vynar/male-dressed.svg",
  22518. extra: 1855/1713,
  22519. bottom: 63/1918
  22520. }
  22521. },
  22522. taurDressed: {
  22523. height: math.unit(5 + 11/12, "feet"),
  22524. weight: math.unit(170, "lb"),
  22525. name: "Taur (Dressed)",
  22526. image: {
  22527. source: "./media/characters/poojawa-vynar/taur-dressed.svg",
  22528. extra: 1151/1059,
  22529. bottom: 356/1507
  22530. }
  22531. },
  22532. maw: {
  22533. height: math.unit(1.46, "feet"),
  22534. name: "Maw",
  22535. image: {
  22536. source: "./media/characters/poojawa-vynar/maw.svg"
  22537. }
  22538. },
  22539. head: {
  22540. height: math.unit(2.34, "feet"),
  22541. name: "Head",
  22542. image: {
  22543. source: "./media/characters/poojawa-vynar/head.svg"
  22544. }
  22545. },
  22546. paw: {
  22547. height: math.unit(1.61, "feet"),
  22548. name: "Paw",
  22549. image: {
  22550. source: "./media/characters/poojawa-vynar/paw.svg"
  22551. }
  22552. },
  22553. pawToering: {
  22554. height: math.unit(1.72, "feet"),
  22555. name: "Paw (Toering)",
  22556. image: {
  22557. source: "./media/characters/poojawa-vynar/paw-toering.svg"
  22558. }
  22559. },
  22560. toering: {
  22561. height: math.unit(2.9, "inches"),
  22562. name: "Toering",
  22563. image: {
  22564. source: "./media/characters/poojawa-vynar/toering.svg"
  22565. }
  22566. },
  22567. shaft: {
  22568. height: math.unit(0.625, "feet"),
  22569. name: "Shaft",
  22570. image: {
  22571. source: "./media/characters/poojawa-vynar/shaft.svg"
  22572. }
  22573. },
  22574. spade: {
  22575. height: math.unit(0.42, "feet"),
  22576. name: "Spade",
  22577. image: {
  22578. source: "./media/characters/poojawa-vynar/spade.svg"
  22579. }
  22580. },
  22581. },
  22582. [
  22583. {
  22584. name: "Shortstack",
  22585. height: math.unit(4, "feet")
  22586. },
  22587. {
  22588. name: "Normal",
  22589. height: math.unit(5 + 11 / 12, "feet"),
  22590. default: true
  22591. },
  22592. {
  22593. name: "Tauric",
  22594. height: math.unit(4, "meters")
  22595. },
  22596. ]
  22597. ))
  22598. characterMakers.push(() => makeCharacter(
  22599. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  22600. {
  22601. front: {
  22602. height: math.unit(293, "meters"),
  22603. weight: math.unit(70400, "tons"),
  22604. name: "Front",
  22605. image: {
  22606. source: "./media/characters/violette/front.svg",
  22607. extra: 1227 / 1180,
  22608. bottom: 0.005
  22609. }
  22610. },
  22611. back: {
  22612. height: math.unit(293, "meters"),
  22613. weight: math.unit(70400, "tons"),
  22614. name: "Back",
  22615. image: {
  22616. source: "./media/characters/violette/back.svg",
  22617. extra: 1227 / 1180,
  22618. bottom: 0.005
  22619. }
  22620. },
  22621. },
  22622. [
  22623. {
  22624. name: "Macro",
  22625. height: math.unit(293, "meters"),
  22626. default: true
  22627. },
  22628. ]
  22629. ))
  22630. characterMakers.push(() => makeCharacter(
  22631. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  22632. {
  22633. front: {
  22634. height: math.unit(1050, "feet"),
  22635. weight: math.unit(200000, "tons"),
  22636. name: "Front",
  22637. image: {
  22638. source: "./media/characters/alessandra/front.svg",
  22639. extra: 960 / 912,
  22640. bottom: 0.06
  22641. }
  22642. },
  22643. },
  22644. [
  22645. {
  22646. name: "Macro",
  22647. height: math.unit(1050, "feet")
  22648. },
  22649. {
  22650. name: "Macro+",
  22651. height: math.unit(900, "meters"),
  22652. default: true
  22653. },
  22654. ]
  22655. ))
  22656. characterMakers.push(() => makeCharacter(
  22657. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  22658. {
  22659. front: {
  22660. height: math.unit(5, "feet"),
  22661. weight: math.unit(187, "lb"),
  22662. name: "Front",
  22663. image: {
  22664. source: "./media/characters/person/front.svg",
  22665. extra: 3087 / 2945,
  22666. bottom: 91 / 3181
  22667. }
  22668. },
  22669. },
  22670. [
  22671. {
  22672. name: "Micro",
  22673. height: math.unit(3, "inches")
  22674. },
  22675. {
  22676. name: "Normal",
  22677. height: math.unit(5, "feet"),
  22678. default: true
  22679. },
  22680. {
  22681. name: "Macro",
  22682. height: math.unit(90, "feet")
  22683. },
  22684. {
  22685. name: "Max Size",
  22686. height: math.unit(280, "feet")
  22687. },
  22688. ]
  22689. ))
  22690. characterMakers.push(() => makeCharacter(
  22691. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  22692. {
  22693. front: {
  22694. height: math.unit(4.5, "meters"),
  22695. weight: math.unit(3200, "lb"),
  22696. name: "Front",
  22697. image: {
  22698. source: "./media/characters/ty/front.svg",
  22699. extra: 1038 / 960,
  22700. bottom: 31.156 / 1068
  22701. }
  22702. },
  22703. back: {
  22704. height: math.unit(4.5, "meters"),
  22705. weight: math.unit(3200, "lb"),
  22706. name: "Back",
  22707. image: {
  22708. source: "./media/characters/ty/back.svg",
  22709. extra: 1044 / 966,
  22710. bottom: 7.48 / 1049
  22711. }
  22712. },
  22713. },
  22714. [
  22715. {
  22716. name: "Normal",
  22717. height: math.unit(4.5, "meters"),
  22718. default: true
  22719. },
  22720. ]
  22721. ))
  22722. characterMakers.push(() => makeCharacter(
  22723. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  22724. {
  22725. front: {
  22726. height: math.unit(5 + 4 / 12, "feet"),
  22727. weight: math.unit(115, "lb"),
  22728. name: "Front",
  22729. image: {
  22730. source: "./media/characters/rocky/front.svg",
  22731. extra: 1012 / 975,
  22732. bottom: 54 / 1066
  22733. }
  22734. },
  22735. },
  22736. [
  22737. {
  22738. name: "Normal",
  22739. height: math.unit(5 + 4 / 12, "feet"),
  22740. default: true
  22741. },
  22742. ]
  22743. ))
  22744. characterMakers.push(() => makeCharacter(
  22745. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  22746. {
  22747. upright: {
  22748. height: math.unit(6, "meters"),
  22749. weight: math.unit(4000, "kg"),
  22750. name: "Upright",
  22751. image: {
  22752. source: "./media/characters/ruin/upright.svg",
  22753. extra: 668 / 661,
  22754. bottom: 42 / 799.8396
  22755. }
  22756. },
  22757. },
  22758. [
  22759. {
  22760. name: "Normal",
  22761. height: math.unit(6, "meters"),
  22762. default: true
  22763. },
  22764. ]
  22765. ))
  22766. characterMakers.push(() => makeCharacter(
  22767. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  22768. {
  22769. front: {
  22770. height: math.unit(5, "feet"),
  22771. weight: math.unit(106, "lb"),
  22772. name: "Front",
  22773. image: {
  22774. source: "./media/characters/robin/front.svg",
  22775. extra: 862 / 799,
  22776. bottom: 42.4 / 914.8856
  22777. }
  22778. },
  22779. },
  22780. [
  22781. {
  22782. name: "Normal",
  22783. height: math.unit(5, "feet"),
  22784. default: true
  22785. },
  22786. ]
  22787. ))
  22788. characterMakers.push(() => makeCharacter(
  22789. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  22790. {
  22791. side: {
  22792. height: math.unit(3, "feet"),
  22793. weight: math.unit(225, "lb"),
  22794. name: "Side",
  22795. image: {
  22796. source: "./media/characters/saian/side.svg",
  22797. extra: 566 / 356,
  22798. bottom: 79.7 / 643
  22799. }
  22800. },
  22801. maw: {
  22802. height: math.unit(2.85, "feet"),
  22803. name: "Maw",
  22804. image: {
  22805. source: "./media/characters/saian/maw.svg"
  22806. }
  22807. },
  22808. },
  22809. [
  22810. {
  22811. name: "Normal",
  22812. height: math.unit(3, "feet"),
  22813. default: true
  22814. },
  22815. ]
  22816. ))
  22817. characterMakers.push(() => makeCharacter(
  22818. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  22819. {
  22820. side: {
  22821. height: math.unit(8, "feet"),
  22822. weight: math.unit(300, "lb"),
  22823. name: "Side",
  22824. image: {
  22825. source: "./media/characters/equus-silvermane/side.svg",
  22826. extra: 2176 / 2050,
  22827. bottom: 65.7 / 2245
  22828. }
  22829. },
  22830. front: {
  22831. height: math.unit(8, "feet"),
  22832. weight: math.unit(300, "lb"),
  22833. name: "Front",
  22834. image: {
  22835. source: "./media/characters/equus-silvermane/front.svg",
  22836. extra: 4633 / 4400,
  22837. bottom: 71.3 / 4706.915
  22838. }
  22839. },
  22840. sideStepping: {
  22841. height: math.unit(8, "feet"),
  22842. weight: math.unit(300, "lb"),
  22843. name: "Side (Stepping)",
  22844. image: {
  22845. source: "./media/characters/equus-silvermane/side-stepping.svg",
  22846. extra: 1968 / 1860,
  22847. bottom: 16.4 / 1989
  22848. }
  22849. },
  22850. },
  22851. [
  22852. {
  22853. name: "Normal",
  22854. height: math.unit(8, "feet")
  22855. },
  22856. {
  22857. name: "Minimacro",
  22858. height: math.unit(75, "feet"),
  22859. default: true
  22860. },
  22861. {
  22862. name: "Macro",
  22863. height: math.unit(150, "feet")
  22864. },
  22865. {
  22866. name: "Macro+",
  22867. height: math.unit(1000, "feet")
  22868. },
  22869. {
  22870. name: "Megamacro",
  22871. height: math.unit(1, "mile")
  22872. },
  22873. ]
  22874. ))
  22875. characterMakers.push(() => makeCharacter(
  22876. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  22877. {
  22878. side: {
  22879. height: math.unit(20, "feet"),
  22880. weight: math.unit(30000, "kg"),
  22881. name: "Side",
  22882. image: {
  22883. source: "./media/characters/windar/side.svg",
  22884. extra: 1491 / 1248,
  22885. bottom: 82.56 / 1568
  22886. }
  22887. },
  22888. },
  22889. [
  22890. {
  22891. name: "Normal",
  22892. height: math.unit(20, "feet"),
  22893. default: true
  22894. },
  22895. ]
  22896. ))
  22897. characterMakers.push(() => makeCharacter(
  22898. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  22899. {
  22900. side: {
  22901. height: math.unit(15.66, "feet"),
  22902. weight: math.unit(150, "lb"),
  22903. name: "Side",
  22904. image: {
  22905. source: "./media/characters/melody/side.svg",
  22906. extra: 1097 / 944,
  22907. bottom: 11.8 / 1109
  22908. }
  22909. },
  22910. sideOutfit: {
  22911. height: math.unit(15.66, "feet"),
  22912. weight: math.unit(150, "lb"),
  22913. name: "Side (Outfit)",
  22914. image: {
  22915. source: "./media/characters/melody/side-outfit.svg",
  22916. extra: 1097 / 944,
  22917. bottom: 11.8 / 1109
  22918. }
  22919. },
  22920. },
  22921. [
  22922. {
  22923. name: "Normal",
  22924. height: math.unit(15.66, "feet"),
  22925. default: true
  22926. },
  22927. ]
  22928. ))
  22929. characterMakers.push(() => makeCharacter(
  22930. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  22931. {
  22932. front: {
  22933. height: math.unit(8, "feet"),
  22934. weight: math.unit(325, "lb"),
  22935. name: "Front",
  22936. image: {
  22937. source: "./media/characters/windera/front.svg",
  22938. extra: 3180 / 2845,
  22939. bottom: 178 / 3365
  22940. }
  22941. },
  22942. },
  22943. [
  22944. {
  22945. name: "Normal",
  22946. height: math.unit(8, "feet"),
  22947. default: true
  22948. },
  22949. ]
  22950. ))
  22951. characterMakers.push(() => makeCharacter(
  22952. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  22953. {
  22954. front: {
  22955. height: math.unit(28.75, "feet"),
  22956. weight: math.unit(2000, "kg"),
  22957. name: "Front",
  22958. image: {
  22959. source: "./media/characters/sonear/front.svg",
  22960. extra: 1041.1 / 964.9,
  22961. bottom: 53.7 / 1096.6
  22962. }
  22963. },
  22964. },
  22965. [
  22966. {
  22967. name: "Normal",
  22968. height: math.unit(28.75, "feet"),
  22969. default: true
  22970. },
  22971. ]
  22972. ))
  22973. characterMakers.push(() => makeCharacter(
  22974. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  22975. {
  22976. side: {
  22977. height: math.unit(25.5, "feet"),
  22978. weight: math.unit(23000, "kg"),
  22979. name: "Side",
  22980. image: {
  22981. source: "./media/characters/kanara/side.svg"
  22982. }
  22983. },
  22984. },
  22985. [
  22986. {
  22987. name: "Normal",
  22988. height: math.unit(25.5, "feet"),
  22989. default: true
  22990. },
  22991. ]
  22992. ))
  22993. characterMakers.push(() => makeCharacter(
  22994. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  22995. {
  22996. side: {
  22997. height: math.unit(10, "feet"),
  22998. weight: math.unit(1000, "kg"),
  22999. name: "Side",
  23000. image: {
  23001. source: "./media/characters/ereus/side.svg",
  23002. extra: 1157 / 959,
  23003. bottom: 153 / 1312.5
  23004. }
  23005. },
  23006. },
  23007. [
  23008. {
  23009. name: "Normal",
  23010. height: math.unit(10, "feet"),
  23011. default: true
  23012. },
  23013. ]
  23014. ))
  23015. characterMakers.push(() => makeCharacter(
  23016. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  23017. {
  23018. side: {
  23019. height: math.unit(4.5, "feet"),
  23020. weight: math.unit(500, "lb"),
  23021. name: "Side",
  23022. image: {
  23023. source: "./media/characters/e-ter/side.svg",
  23024. extra: 1550 / 1248,
  23025. bottom: 146 / 1694
  23026. }
  23027. },
  23028. },
  23029. [
  23030. {
  23031. name: "Normal",
  23032. height: math.unit(4.5, "feet"),
  23033. default: true
  23034. },
  23035. ]
  23036. ))
  23037. characterMakers.push(() => makeCharacter(
  23038. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  23039. {
  23040. side: {
  23041. height: math.unit(9.7, "feet"),
  23042. weight: math.unit(4000, "kg"),
  23043. name: "Side",
  23044. image: {
  23045. source: "./media/characters/yamie/side.svg"
  23046. }
  23047. },
  23048. },
  23049. [
  23050. {
  23051. name: "Normal",
  23052. height: math.unit(9.7, "feet"),
  23053. default: true
  23054. },
  23055. ]
  23056. ))
  23057. characterMakers.push(() => makeCharacter(
  23058. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  23059. {
  23060. front: {
  23061. height: math.unit(50, "feet"),
  23062. weight: math.unit(50000, "kg"),
  23063. name: "Front",
  23064. image: {
  23065. source: "./media/characters/anders/front.svg",
  23066. extra: 570 / 539,
  23067. bottom: 14.7 / 586.7
  23068. }
  23069. },
  23070. },
  23071. [
  23072. {
  23073. name: "Large",
  23074. height: math.unit(50, "feet")
  23075. },
  23076. {
  23077. name: "Macro",
  23078. height: math.unit(2000, "feet"),
  23079. default: true
  23080. },
  23081. {
  23082. name: "Megamacro",
  23083. height: math.unit(12, "miles")
  23084. },
  23085. ]
  23086. ))
  23087. characterMakers.push(() => makeCharacter(
  23088. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  23089. {
  23090. front: {
  23091. height: math.unit(7 + 2 / 12, "feet"),
  23092. weight: math.unit(300, "lb"),
  23093. name: "Front",
  23094. image: {
  23095. source: "./media/characters/reban/front.svg",
  23096. extra: 1287/1212,
  23097. bottom: 148/1435
  23098. }
  23099. },
  23100. head: {
  23101. height: math.unit(1.95, "feet"),
  23102. name: "Head",
  23103. image: {
  23104. source: "./media/characters/reban/head.svg"
  23105. }
  23106. },
  23107. maw: {
  23108. height: math.unit(0.95, "feet"),
  23109. name: "Maw",
  23110. image: {
  23111. source: "./media/characters/reban/maw.svg"
  23112. }
  23113. },
  23114. foot: {
  23115. height: math.unit(1.65, "feet"),
  23116. name: "Foot",
  23117. image: {
  23118. source: "./media/characters/reban/foot.svg"
  23119. }
  23120. },
  23121. dick: {
  23122. height: math.unit(7 / 5, "feet"),
  23123. name: "Dick",
  23124. image: {
  23125. source: "./media/characters/reban/dick.svg"
  23126. }
  23127. },
  23128. },
  23129. [
  23130. {
  23131. name: "Natural Height",
  23132. height: math.unit(7 + 2 / 12, "feet")
  23133. },
  23134. {
  23135. name: "Macro",
  23136. height: math.unit(500, "feet"),
  23137. default: true
  23138. },
  23139. {
  23140. name: "Canon Height",
  23141. height: math.unit(50, "AU")
  23142. },
  23143. ]
  23144. ))
  23145. characterMakers.push(() => makeCharacter(
  23146. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  23147. {
  23148. front: {
  23149. height: math.unit(6, "feet"),
  23150. weight: math.unit(150, "lb"),
  23151. name: "Front",
  23152. image: {
  23153. source: "./media/characters/terrance-keayes/front.svg",
  23154. extra: 1.005,
  23155. bottom: 151 / 1615
  23156. }
  23157. },
  23158. side: {
  23159. height: math.unit(6, "feet"),
  23160. weight: math.unit(150, "lb"),
  23161. name: "Side",
  23162. image: {
  23163. source: "./media/characters/terrance-keayes/side.svg",
  23164. extra: 1.005,
  23165. bottom: 129.4 / 1544
  23166. }
  23167. },
  23168. back: {
  23169. height: math.unit(6, "feet"),
  23170. weight: math.unit(150, "lb"),
  23171. name: "Back",
  23172. image: {
  23173. source: "./media/characters/terrance-keayes/back.svg",
  23174. extra: 1.005,
  23175. bottom: 58.4 / 1557.3
  23176. }
  23177. },
  23178. dick: {
  23179. height: math.unit(6 * 0.208, "feet"),
  23180. name: "Dick",
  23181. image: {
  23182. source: "./media/characters/terrance-keayes/dick.svg"
  23183. }
  23184. },
  23185. },
  23186. [
  23187. {
  23188. name: "Canon Height",
  23189. height: math.unit(35, "miles"),
  23190. default: true
  23191. },
  23192. ]
  23193. ))
  23194. characterMakers.push(() => makeCharacter(
  23195. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  23196. {
  23197. front: {
  23198. height: math.unit(6, "feet"),
  23199. weight: math.unit(150, "lb"),
  23200. name: "Front",
  23201. image: {
  23202. source: "./media/characters/ofelia/front.svg",
  23203. extra: 1130/1117,
  23204. bottom: 91/1221
  23205. }
  23206. },
  23207. back: {
  23208. height: math.unit(6, "feet"),
  23209. weight: math.unit(150, "lb"),
  23210. name: "Back",
  23211. image: {
  23212. source: "./media/characters/ofelia/back.svg",
  23213. extra: 1172/1159,
  23214. bottom: 28/1200
  23215. }
  23216. },
  23217. maw: {
  23218. height: math.unit(1, "feet"),
  23219. name: "Maw",
  23220. image: {
  23221. source: "./media/characters/ofelia/maw.svg"
  23222. }
  23223. },
  23224. foot: {
  23225. height: math.unit(1.949, "feet"),
  23226. name: "Foot",
  23227. image: {
  23228. source: "./media/characters/ofelia/foot.svg"
  23229. }
  23230. },
  23231. },
  23232. [
  23233. {
  23234. name: "Canon Height",
  23235. height: math.unit(2000, "miles"),
  23236. default: true
  23237. },
  23238. ]
  23239. ))
  23240. characterMakers.push(() => makeCharacter(
  23241. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  23242. {
  23243. front: {
  23244. height: math.unit(6, "feet"),
  23245. weight: math.unit(150, "lb"),
  23246. name: "Front",
  23247. image: {
  23248. source: "./media/characters/samuel/front.svg",
  23249. extra: 265 / 258,
  23250. bottom: 2 / 266.1566
  23251. }
  23252. },
  23253. },
  23254. [
  23255. {
  23256. name: "Macro",
  23257. height: math.unit(100, "feet"),
  23258. default: true
  23259. },
  23260. {
  23261. name: "Full Size",
  23262. height: math.unit(1000, "miles")
  23263. },
  23264. ]
  23265. ))
  23266. characterMakers.push(() => makeCharacter(
  23267. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  23268. {
  23269. front: {
  23270. height: math.unit(6, "feet"),
  23271. weight: math.unit(300, "lb"),
  23272. name: "Front",
  23273. image: {
  23274. source: "./media/characters/beishir-kiel/front.svg",
  23275. extra: 569 / 547,
  23276. bottom: 41.9 / 609
  23277. }
  23278. },
  23279. maw: {
  23280. height: math.unit(6 * 0.202, "feet"),
  23281. name: "Maw",
  23282. image: {
  23283. source: "./media/characters/beishir-kiel/maw.svg"
  23284. }
  23285. },
  23286. },
  23287. [
  23288. {
  23289. name: "Macro",
  23290. height: math.unit(300, "feet"),
  23291. default: true
  23292. },
  23293. ]
  23294. ))
  23295. characterMakers.push(() => makeCharacter(
  23296. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  23297. {
  23298. front: {
  23299. height: math.unit(5 + 7/12, "feet"),
  23300. weight: math.unit(120, "lb"),
  23301. name: "Front",
  23302. image: {
  23303. source: "./media/characters/logan-grey/front.svg",
  23304. extra: 1836/1738,
  23305. bottom: 108/1944
  23306. }
  23307. },
  23308. back: {
  23309. height: math.unit(5 + 7/12, "feet"),
  23310. weight: math.unit(120, "lb"),
  23311. name: "Back",
  23312. image: {
  23313. source: "./media/characters/logan-grey/back.svg",
  23314. extra: 1880/1794,
  23315. bottom: 24/1904
  23316. }
  23317. },
  23318. frontSfw: {
  23319. height: math.unit(5 + 7/12, "feet"),
  23320. weight: math.unit(120, "lb"),
  23321. name: "Front (SFW)",
  23322. image: {
  23323. source: "./media/characters/logan-grey/front-sfw.svg",
  23324. extra: 1836/1738,
  23325. bottom: 108/1944
  23326. }
  23327. },
  23328. backSfw: {
  23329. height: math.unit(5 + 7/12, "feet"),
  23330. weight: math.unit(120, "lb"),
  23331. name: "Back (SFW)",
  23332. image: {
  23333. source: "./media/characters/logan-grey/back-sfw.svg",
  23334. extra: 1880/1794,
  23335. bottom: 24/1904
  23336. }
  23337. },
  23338. hands: {
  23339. height: math.unit(0.84, "feet"),
  23340. name: "Hands",
  23341. image: {
  23342. source: "./media/characters/logan-grey/hands.svg"
  23343. }
  23344. },
  23345. paws: {
  23346. height: math.unit(0.72, "feet"),
  23347. name: "Paws",
  23348. image: {
  23349. source: "./media/characters/logan-grey/paws.svg"
  23350. }
  23351. },
  23352. cock: {
  23353. height: math.unit(1.45, "feet"),
  23354. name: "Cock",
  23355. image: {
  23356. source: "./media/characters/logan-grey/cock.svg"
  23357. }
  23358. },
  23359. cockAlt: {
  23360. height: math.unit(1.437, "feet"),
  23361. name: "Cock (alt)",
  23362. image: {
  23363. source: "./media/characters/logan-grey/cock-alt.svg"
  23364. }
  23365. },
  23366. },
  23367. [
  23368. {
  23369. name: "Normal",
  23370. height: math.unit(5 + 8 / 12, "feet")
  23371. },
  23372. {
  23373. name: "The 500 Foot Femboy",
  23374. height: math.unit(500, "feet"),
  23375. default: true
  23376. },
  23377. {
  23378. name: "Megmacro",
  23379. height: math.unit(20, "miles")
  23380. },
  23381. ]
  23382. ))
  23383. characterMakers.push(() => makeCharacter(
  23384. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  23385. {
  23386. front: {
  23387. height: math.unit(8 + 2 / 12, "feet"),
  23388. weight: math.unit(275, "lb"),
  23389. name: "Front",
  23390. image: {
  23391. source: "./media/characters/draganta/front.svg",
  23392. extra: 1177 / 1135,
  23393. bottom: 33.46 / 1212.1
  23394. }
  23395. },
  23396. },
  23397. [
  23398. {
  23399. name: "Normal",
  23400. height: math.unit(8 + 6 / 12, "feet"),
  23401. default: true
  23402. },
  23403. {
  23404. name: "Macro",
  23405. height: math.unit(150, "feet")
  23406. },
  23407. {
  23408. name: "Megamacro",
  23409. height: math.unit(1000, "miles")
  23410. },
  23411. ]
  23412. ))
  23413. characterMakers.push(() => makeCharacter(
  23414. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  23415. {
  23416. front: {
  23417. height: math.unit(1.72, "m"),
  23418. weight: math.unit(80, "lb"),
  23419. name: "Front",
  23420. image: {
  23421. source: "./media/characters/voski/front.svg",
  23422. extra: 2076.22 / 2022.4,
  23423. bottom: 102.7 / 2177.3866
  23424. }
  23425. },
  23426. frontFlaccid: {
  23427. height: math.unit(1.72, "m"),
  23428. weight: math.unit(80, "lb"),
  23429. name: "Front (Flaccid)",
  23430. image: {
  23431. source: "./media/characters/voski/front-flaccid.svg",
  23432. extra: 2076.22 / 2022.4,
  23433. bottom: 102.7 / 2177.3866
  23434. }
  23435. },
  23436. frontErect: {
  23437. height: math.unit(1.72, "m"),
  23438. weight: math.unit(80, "lb"),
  23439. name: "Front (Erect)",
  23440. image: {
  23441. source: "./media/characters/voski/front-erect.svg",
  23442. extra: 2076.22 / 2022.4,
  23443. bottom: 102.7 / 2177.3866
  23444. }
  23445. },
  23446. back: {
  23447. height: math.unit(1.72, "m"),
  23448. weight: math.unit(80, "lb"),
  23449. name: "Back",
  23450. image: {
  23451. source: "./media/characters/voski/back.svg",
  23452. extra: 2104 / 2051,
  23453. bottom: 10.45 / 2113.63
  23454. }
  23455. },
  23456. },
  23457. [
  23458. {
  23459. name: "Normal",
  23460. height: math.unit(1.72, "m")
  23461. },
  23462. {
  23463. name: "Macro",
  23464. height: math.unit(55, "m"),
  23465. default: true
  23466. },
  23467. {
  23468. name: "Macro+",
  23469. height: math.unit(300, "m")
  23470. },
  23471. {
  23472. name: "Macro++",
  23473. height: math.unit(700, "m")
  23474. },
  23475. {
  23476. name: "Macro+++",
  23477. height: math.unit(4500, "m")
  23478. },
  23479. {
  23480. name: "Macro++++",
  23481. height: math.unit(45, "km")
  23482. },
  23483. {
  23484. name: "Macro+++++",
  23485. height: math.unit(1220, "km")
  23486. },
  23487. ]
  23488. ))
  23489. characterMakers.push(() => makeCharacter(
  23490. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  23491. {
  23492. front: {
  23493. height: math.unit(2.3, "m"),
  23494. weight: math.unit(304, "kg"),
  23495. name: "Front",
  23496. image: {
  23497. source: "./media/characters/icowom-lee/front.svg",
  23498. extra: 985 / 955,
  23499. bottom: 25.4 / 1012
  23500. }
  23501. },
  23502. fronttentacles: {
  23503. height: math.unit(2.3, "m"),
  23504. weight: math.unit(304, "kg"),
  23505. name: "Front-tentacles",
  23506. image: {
  23507. source: "./media/characters/icowom-lee/front-tentacles.svg",
  23508. extra: 985 / 955,
  23509. bottom: 25.4 / 1012
  23510. }
  23511. },
  23512. back: {
  23513. height: math.unit(2.3, "m"),
  23514. weight: math.unit(304, "kg"),
  23515. name: "Back",
  23516. image: {
  23517. source: "./media/characters/icowom-lee/back.svg",
  23518. extra: 975 / 954,
  23519. bottom: 9.5 / 985
  23520. }
  23521. },
  23522. backtentacles: {
  23523. height: math.unit(2.3, "m"),
  23524. weight: math.unit(304, "kg"),
  23525. name: "Back-tentacles",
  23526. image: {
  23527. source: "./media/characters/icowom-lee/back-tentacles.svg",
  23528. extra: 975 / 954,
  23529. bottom: 9.5 / 985
  23530. }
  23531. },
  23532. frontDressed: {
  23533. height: math.unit(2.3, "m"),
  23534. weight: math.unit(304, "kg"),
  23535. name: "Front (Dressed)",
  23536. image: {
  23537. source: "./media/characters/icowom-lee/front-dressed.svg",
  23538. extra: 3076 / 2933,
  23539. bottom: 51.4 / 3125.1889
  23540. }
  23541. },
  23542. rump: {
  23543. height: math.unit(0.776, "meters"),
  23544. name: "Rump",
  23545. image: {
  23546. source: "./media/characters/icowom-lee/rump.svg"
  23547. }
  23548. },
  23549. genitals: {
  23550. height: math.unit(0.78, "meters"),
  23551. name: "Genitals",
  23552. image: {
  23553. source: "./media/characters/icowom-lee/genitals.svg"
  23554. }
  23555. },
  23556. },
  23557. [
  23558. {
  23559. name: "Normal",
  23560. height: math.unit(2.3, "meters"),
  23561. default: true
  23562. },
  23563. {
  23564. name: "Macro",
  23565. height: math.unit(94, "meters"),
  23566. default: true
  23567. },
  23568. ]
  23569. ))
  23570. characterMakers.push(() => makeCharacter(
  23571. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  23572. {
  23573. front: {
  23574. height: math.unit(22, "meters"),
  23575. weight: math.unit(21000, "kg"),
  23576. name: "Front",
  23577. image: {
  23578. source: "./media/characters/shock-diamond/front.svg",
  23579. extra: 2204 / 2053,
  23580. bottom: 65 / 2239.47
  23581. }
  23582. },
  23583. frontNude: {
  23584. height: math.unit(22, "meters"),
  23585. weight: math.unit(21000, "kg"),
  23586. name: "Front (Nude)",
  23587. image: {
  23588. source: "./media/characters/shock-diamond/front-nude.svg",
  23589. extra: 2514 / 2285,
  23590. bottom: 13 / 2527.56
  23591. }
  23592. },
  23593. },
  23594. [
  23595. {
  23596. name: "Normal",
  23597. height: math.unit(3, "meters")
  23598. },
  23599. {
  23600. name: "Macro",
  23601. height: math.unit(22, "meters"),
  23602. default: true
  23603. },
  23604. ]
  23605. ))
  23606. characterMakers.push(() => makeCharacter(
  23607. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  23608. {
  23609. front: {
  23610. height: math.unit(5 + 4 / 12, "feet"),
  23611. weight: math.unit(120, "lb"),
  23612. name: "Front",
  23613. image: {
  23614. source: "./media/characters/rory/front.svg",
  23615. extra: 1318/1241,
  23616. bottom: 42/1360
  23617. }
  23618. },
  23619. back: {
  23620. height: math.unit(5 + 4 / 12, "feet"),
  23621. weight: math.unit(120, "lb"),
  23622. name: "Back",
  23623. image: {
  23624. source: "./media/characters/rory/back.svg",
  23625. extra: 1318/1241,
  23626. bottom: 42/1360
  23627. }
  23628. },
  23629. butt: {
  23630. height: math.unit(1.74, "feet"),
  23631. name: "Butt",
  23632. image: {
  23633. source: "./media/characters/rory/butt.svg"
  23634. }
  23635. },
  23636. dick: {
  23637. height: math.unit(1.02, "feet"),
  23638. name: "Dick",
  23639. image: {
  23640. source: "./media/characters/rory/dick.svg"
  23641. }
  23642. },
  23643. paws: {
  23644. height: math.unit(1, "feet"),
  23645. name: "Paws",
  23646. image: {
  23647. source: "./media/characters/rory/paws.svg"
  23648. }
  23649. },
  23650. frontAlt: {
  23651. height: math.unit(5 + 4 / 12, "feet"),
  23652. weight: math.unit(120, "lb"),
  23653. name: "Front (Alt)",
  23654. image: {
  23655. source: "./media/characters/rory/front-alt.svg",
  23656. extra: 589 / 556,
  23657. bottom: 45.7 / 635.76
  23658. }
  23659. },
  23660. frontAltNude: {
  23661. height: math.unit(5 + 4 / 12, "feet"),
  23662. weight: math.unit(120, "lb"),
  23663. name: "Front (Alt, Nude)",
  23664. image: {
  23665. source: "./media/characters/rory/front-alt-nude.svg",
  23666. extra: 589 / 556,
  23667. bottom: 45.7 / 635.76
  23668. }
  23669. },
  23670. side: {
  23671. height: math.unit(5 + 4 / 12, "feet"),
  23672. weight: math.unit(120, "lb"),
  23673. name: "Side",
  23674. image: {
  23675. source: "./media/characters/rory/side.svg",
  23676. extra: 597 / 564,
  23677. bottom: 55 / 653
  23678. }
  23679. },
  23680. backAlt: {
  23681. height: math.unit(5 + 4 / 12, "feet"),
  23682. weight: math.unit(120, "lb"),
  23683. name: "Back (Alt)",
  23684. image: {
  23685. source: "./media/characters/rory/back-alt.svg",
  23686. extra: 620 / 585,
  23687. bottom: 8.86 / 630.43
  23688. }
  23689. },
  23690. dickAlt: {
  23691. height: math.unit(0.86, "feet"),
  23692. name: "Dick (Alt)",
  23693. image: {
  23694. source: "./media/characters/rory/dick-alt.svg"
  23695. }
  23696. },
  23697. },
  23698. [
  23699. {
  23700. name: "Normal",
  23701. height: math.unit(5 + 4 / 12, "feet"),
  23702. default: true
  23703. },
  23704. {
  23705. name: "Macro",
  23706. height: math.unit(100, "feet")
  23707. },
  23708. {
  23709. name: "Macro+",
  23710. height: math.unit(140, "feet")
  23711. },
  23712. {
  23713. name: "Macro++",
  23714. height: math.unit(300, "feet")
  23715. },
  23716. ]
  23717. ))
  23718. characterMakers.push(() => makeCharacter(
  23719. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  23720. {
  23721. front: {
  23722. height: math.unit(5 + 9 / 12, "feet"),
  23723. weight: math.unit(190, "lb"),
  23724. name: "Front",
  23725. image: {
  23726. source: "./media/characters/sprisk/front.svg",
  23727. extra: 1225 / 1180,
  23728. bottom: 42.7 / 1266.4
  23729. }
  23730. },
  23731. frontNsfw: {
  23732. height: math.unit(5 + 9 / 12, "feet"),
  23733. weight: math.unit(190, "lb"),
  23734. name: "Front (NSFW)",
  23735. image: {
  23736. source: "./media/characters/sprisk/front-nsfw.svg",
  23737. extra: 1225 / 1180,
  23738. bottom: 42.7 / 1266.4
  23739. }
  23740. },
  23741. back: {
  23742. height: math.unit(5 + 9 / 12, "feet"),
  23743. weight: math.unit(190, "lb"),
  23744. name: "Back",
  23745. image: {
  23746. source: "./media/characters/sprisk/back.svg",
  23747. extra: 1247 / 1200,
  23748. bottom: 5.6 / 1253.04
  23749. }
  23750. },
  23751. },
  23752. [
  23753. {
  23754. name: "Tiny",
  23755. height: math.unit(2, "inches")
  23756. },
  23757. {
  23758. name: "Normal",
  23759. height: math.unit(5 + 9 / 12, "feet"),
  23760. default: true
  23761. },
  23762. {
  23763. name: "Mini Macro",
  23764. height: math.unit(18, "feet")
  23765. },
  23766. {
  23767. name: "Macro",
  23768. height: math.unit(100, "feet")
  23769. },
  23770. {
  23771. name: "MACRO",
  23772. height: math.unit(50, "miles")
  23773. },
  23774. {
  23775. name: "M A C R O",
  23776. height: math.unit(300, "miles")
  23777. },
  23778. ]
  23779. ))
  23780. characterMakers.push(() => makeCharacter(
  23781. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  23782. {
  23783. side: {
  23784. height: math.unit(15.6, "meters"),
  23785. weight: math.unit(700000, "kg"),
  23786. name: "Side",
  23787. image: {
  23788. source: "./media/characters/bunsen/side.svg",
  23789. extra: 1644 / 358
  23790. }
  23791. },
  23792. foot: {
  23793. height: math.unit(1.611 * 1644 / 358, "meter"),
  23794. name: "Foot",
  23795. image: {
  23796. source: "./media/characters/bunsen/foot.svg"
  23797. }
  23798. },
  23799. },
  23800. [
  23801. {
  23802. name: "Small",
  23803. height: math.unit(10, "feet")
  23804. },
  23805. {
  23806. name: "Normal",
  23807. height: math.unit(15.6, "meters"),
  23808. default: true
  23809. },
  23810. ]
  23811. ))
  23812. characterMakers.push(() => makeCharacter(
  23813. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  23814. {
  23815. front: {
  23816. height: math.unit(4 + 11 / 12, "feet"),
  23817. weight: math.unit(140, "lb"),
  23818. name: "Front",
  23819. image: {
  23820. source: "./media/characters/sesh/front.svg",
  23821. extra: 3420 / 3231,
  23822. bottom: 72 / 3949.5
  23823. }
  23824. },
  23825. },
  23826. [
  23827. {
  23828. name: "Normal",
  23829. height: math.unit(4 + 11 / 12, "feet")
  23830. },
  23831. {
  23832. name: "Grown",
  23833. height: math.unit(15, "feet"),
  23834. default: true
  23835. },
  23836. {
  23837. name: "Macro",
  23838. height: math.unit(1500, "feet")
  23839. },
  23840. {
  23841. name: "Megamacro",
  23842. height: math.unit(30, "miles")
  23843. },
  23844. {
  23845. name: "Continental",
  23846. height: math.unit(3000, "miles")
  23847. },
  23848. {
  23849. name: "Gravity Mass",
  23850. height: math.unit(300000, "miles")
  23851. },
  23852. {
  23853. name: "Planet Buster",
  23854. height: math.unit(30000000, "miles")
  23855. },
  23856. {
  23857. name: "Big",
  23858. height: math.unit(3000000000, "miles")
  23859. },
  23860. ]
  23861. ))
  23862. characterMakers.push(() => makeCharacter(
  23863. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  23864. {
  23865. front: {
  23866. height: math.unit(9, "feet"),
  23867. weight: math.unit(350, "lb"),
  23868. name: "Front",
  23869. image: {
  23870. source: "./media/characters/pepper/front.svg",
  23871. extra: 1448 / 1312,
  23872. bottom: 9.4 / 1457.88
  23873. }
  23874. },
  23875. back: {
  23876. height: math.unit(9, "feet"),
  23877. weight: math.unit(350, "lb"),
  23878. name: "Back",
  23879. image: {
  23880. source: "./media/characters/pepper/back.svg",
  23881. extra: 1423 / 1300,
  23882. bottom: 4.6 / 1429
  23883. }
  23884. },
  23885. maw: {
  23886. height: math.unit(0.932, "feet"),
  23887. name: "Maw",
  23888. image: {
  23889. source: "./media/characters/pepper/maw.svg"
  23890. }
  23891. },
  23892. },
  23893. [
  23894. {
  23895. name: "Normal",
  23896. height: math.unit(9, "feet"),
  23897. default: true
  23898. },
  23899. ]
  23900. ))
  23901. characterMakers.push(() => makeCharacter(
  23902. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  23903. {
  23904. front: {
  23905. height: math.unit(6, "feet"),
  23906. weight: math.unit(150, "lb"),
  23907. name: "Front",
  23908. image: {
  23909. source: "./media/characters/maelstrom/front.svg",
  23910. extra: 2100 / 1883,
  23911. bottom: 94 / 2196.7
  23912. }
  23913. },
  23914. },
  23915. [
  23916. {
  23917. name: "Less Kaiju",
  23918. height: math.unit(200, "feet")
  23919. },
  23920. {
  23921. name: "Kaiju",
  23922. height: math.unit(400, "feet"),
  23923. default: true
  23924. },
  23925. {
  23926. name: "Kaiju-er",
  23927. height: math.unit(600, "feet")
  23928. },
  23929. ]
  23930. ))
  23931. characterMakers.push(() => makeCharacter(
  23932. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  23933. {
  23934. front: {
  23935. height: math.unit(6 + 5 / 12, "feet"),
  23936. weight: math.unit(180, "lb"),
  23937. name: "Front",
  23938. image: {
  23939. source: "./media/characters/lexir/front.svg",
  23940. extra: 180 / 172,
  23941. bottom: 12 / 192
  23942. }
  23943. },
  23944. back: {
  23945. height: math.unit(6 + 5 / 12, "feet"),
  23946. weight: math.unit(180, "lb"),
  23947. name: "Back",
  23948. image: {
  23949. source: "./media/characters/lexir/back.svg",
  23950. extra: 1273/1201,
  23951. bottom: 39/1312
  23952. }
  23953. },
  23954. },
  23955. [
  23956. {
  23957. name: "Very Smal",
  23958. height: math.unit(1, "nm")
  23959. },
  23960. {
  23961. name: "Normal",
  23962. height: math.unit(6 + 5 / 12, "feet"),
  23963. default: true
  23964. },
  23965. {
  23966. name: "Macro",
  23967. height: math.unit(1, "mile")
  23968. },
  23969. {
  23970. name: "Megamacro",
  23971. height: math.unit(50, "miles")
  23972. },
  23973. ]
  23974. ))
  23975. characterMakers.push(() => makeCharacter(
  23976. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  23977. {
  23978. front: {
  23979. height: math.unit(1.5, "meters"),
  23980. weight: math.unit(100, "lb"),
  23981. name: "Front",
  23982. image: {
  23983. source: "./media/characters/maksio/front.svg",
  23984. extra: 1549 / 1531,
  23985. bottom: 123.7 / 1674.5429
  23986. }
  23987. },
  23988. back: {
  23989. height: math.unit(1.5, "meters"),
  23990. weight: math.unit(100, "lb"),
  23991. name: "Back",
  23992. image: {
  23993. source: "./media/characters/maksio/back.svg",
  23994. extra: 1541 / 1509,
  23995. bottom: 97 / 1639
  23996. }
  23997. },
  23998. hand: {
  23999. height: math.unit(0.621, "feet"),
  24000. name: "Hand",
  24001. image: {
  24002. source: "./media/characters/maksio/hand.svg"
  24003. }
  24004. },
  24005. foot: {
  24006. height: math.unit(1.611, "feet"),
  24007. name: "Foot",
  24008. image: {
  24009. source: "./media/characters/maksio/foot.svg"
  24010. }
  24011. },
  24012. },
  24013. [
  24014. {
  24015. name: "Shrunken",
  24016. height: math.unit(10, "cm")
  24017. },
  24018. {
  24019. name: "Normal",
  24020. height: math.unit(150, "cm"),
  24021. default: true
  24022. },
  24023. ]
  24024. ))
  24025. characterMakers.push(() => makeCharacter(
  24026. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  24027. {
  24028. front: {
  24029. height: math.unit(100, "feet"),
  24030. name: "Front",
  24031. image: {
  24032. source: "./media/characters/erza-bear/front.svg",
  24033. extra: 2449 / 2390,
  24034. bottom: 46 / 2494
  24035. }
  24036. },
  24037. back: {
  24038. height: math.unit(100, "feet"),
  24039. name: "Back",
  24040. image: {
  24041. source: "./media/characters/erza-bear/back.svg",
  24042. extra: 2489 / 2430,
  24043. bottom: 85.4 / 2480
  24044. }
  24045. },
  24046. tail: {
  24047. height: math.unit(42, "feet"),
  24048. name: "Tail",
  24049. image: {
  24050. source: "./media/characters/erza-bear/tail.svg"
  24051. }
  24052. },
  24053. tongue: {
  24054. height: math.unit(8, "feet"),
  24055. name: "Tongue",
  24056. image: {
  24057. source: "./media/characters/erza-bear/tongue.svg"
  24058. }
  24059. },
  24060. dick: {
  24061. height: math.unit(10.5, "feet"),
  24062. name: "Dick",
  24063. image: {
  24064. source: "./media/characters/erza-bear/dick.svg"
  24065. }
  24066. },
  24067. dickVertical: {
  24068. height: math.unit(16.9, "feet"),
  24069. name: "Dick (Vertical)",
  24070. image: {
  24071. source: "./media/characters/erza-bear/dick-vertical.svg"
  24072. }
  24073. },
  24074. },
  24075. [
  24076. {
  24077. name: "Macro",
  24078. height: math.unit(100, "feet"),
  24079. default: true
  24080. },
  24081. ]
  24082. ))
  24083. characterMakers.push(() => makeCharacter(
  24084. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  24085. {
  24086. front: {
  24087. height: math.unit(172, "cm"),
  24088. weight: math.unit(73, "kg"),
  24089. name: "Front",
  24090. image: {
  24091. source: "./media/characters/violet-flor/front.svg",
  24092. extra: 1530 / 1442,
  24093. bottom: 61.9 / 1588.8
  24094. }
  24095. },
  24096. back: {
  24097. height: math.unit(180, "cm"),
  24098. weight: math.unit(73, "kg"),
  24099. name: "Back",
  24100. image: {
  24101. source: "./media/characters/violet-flor/back.svg",
  24102. extra: 1692 / 1630,
  24103. bottom: 20 / 1712
  24104. }
  24105. },
  24106. },
  24107. [
  24108. {
  24109. name: "Normal",
  24110. height: math.unit(172, "cm"),
  24111. default: true
  24112. },
  24113. ]
  24114. ))
  24115. characterMakers.push(() => makeCharacter(
  24116. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  24117. {
  24118. front: {
  24119. height: math.unit(6, "feet"),
  24120. weight: math.unit(220, "lb"),
  24121. name: "Front",
  24122. image: {
  24123. source: "./media/characters/lynn-rhea/front.svg",
  24124. extra: 310 / 273
  24125. }
  24126. },
  24127. back: {
  24128. height: math.unit(6, "feet"),
  24129. weight: math.unit(220, "lb"),
  24130. name: "Back",
  24131. image: {
  24132. source: "./media/characters/lynn-rhea/back.svg",
  24133. extra: 310 / 273
  24134. }
  24135. },
  24136. dicks: {
  24137. height: math.unit(0.9, "feet"),
  24138. name: "Dicks",
  24139. image: {
  24140. source: "./media/characters/lynn-rhea/dicks.svg"
  24141. }
  24142. },
  24143. slit: {
  24144. height: math.unit(0.4, "feet"),
  24145. name: "Slit",
  24146. image: {
  24147. source: "./media/characters/lynn-rhea/slit.svg"
  24148. }
  24149. },
  24150. },
  24151. [
  24152. {
  24153. name: "Micro",
  24154. height: math.unit(1, "inch")
  24155. },
  24156. {
  24157. name: "Macro",
  24158. height: math.unit(60, "feet"),
  24159. default: true
  24160. },
  24161. {
  24162. name: "Megamacro",
  24163. height: math.unit(2, "miles")
  24164. },
  24165. {
  24166. name: "Gigamacro",
  24167. height: math.unit(3, "earths")
  24168. },
  24169. {
  24170. name: "Galactic",
  24171. height: math.unit(0.8, "galaxies")
  24172. },
  24173. ]
  24174. ))
  24175. characterMakers.push(() => makeCharacter(
  24176. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  24177. {
  24178. front: {
  24179. height: math.unit(1600, "feet"),
  24180. weight: math.unit(85758785169, "kg"),
  24181. name: "Front",
  24182. image: {
  24183. source: "./media/characters/valathos/front.svg",
  24184. extra: 1451 / 1339
  24185. }
  24186. },
  24187. },
  24188. [
  24189. {
  24190. name: "Macro",
  24191. height: math.unit(1600, "feet"),
  24192. default: true
  24193. },
  24194. ]
  24195. ))
  24196. characterMakers.push(() => makeCharacter(
  24197. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  24198. {
  24199. front: {
  24200. height: math.unit(7 + 5 / 12, "feet"),
  24201. weight: math.unit(300, "lb"),
  24202. name: "Front",
  24203. image: {
  24204. source: "./media/characters/azula/front.svg",
  24205. extra: 3208 / 2880,
  24206. bottom: 80.2 / 3277
  24207. }
  24208. },
  24209. back: {
  24210. height: math.unit(7 + 5 / 12, "feet"),
  24211. weight: math.unit(300, "lb"),
  24212. name: "Back",
  24213. image: {
  24214. source: "./media/characters/azula/back.svg",
  24215. extra: 3169 / 2822,
  24216. bottom: 150.6 / 3321
  24217. }
  24218. },
  24219. },
  24220. [
  24221. {
  24222. name: "Normal",
  24223. height: math.unit(7 + 5 / 12, "feet"),
  24224. default: true
  24225. },
  24226. {
  24227. name: "Big",
  24228. height: math.unit(20, "feet")
  24229. },
  24230. ]
  24231. ))
  24232. characterMakers.push(() => makeCharacter(
  24233. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  24234. {
  24235. front: {
  24236. height: math.unit(5 + 1 / 12, "feet"),
  24237. weight: math.unit(110, "lb"),
  24238. name: "Front",
  24239. image: {
  24240. source: "./media/characters/rupert/front.svg",
  24241. extra: 1549 / 1495,
  24242. bottom: 54.2 / 1604.4
  24243. }
  24244. },
  24245. },
  24246. [
  24247. {
  24248. name: "Normal",
  24249. height: math.unit(5 + 1 / 12, "feet"),
  24250. default: true
  24251. },
  24252. ]
  24253. ))
  24254. characterMakers.push(() => makeCharacter(
  24255. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  24256. {
  24257. front: {
  24258. height: math.unit(8 + 4 / 12, "feet"),
  24259. weight: math.unit(350, "lb"),
  24260. name: "Front",
  24261. image: {
  24262. source: "./media/characters/sheera-castellar/front.svg",
  24263. extra: 1957 / 1894,
  24264. bottom: 26.97 / 1975.017
  24265. }
  24266. },
  24267. side: {
  24268. height: math.unit(8 + 4 / 12, "feet"),
  24269. weight: math.unit(350, "lb"),
  24270. name: "Side",
  24271. image: {
  24272. source: "./media/characters/sheera-castellar/side.svg",
  24273. extra: 1957 / 1894
  24274. }
  24275. },
  24276. back: {
  24277. height: math.unit(8 + 4 / 12, "feet"),
  24278. weight: math.unit(350, "lb"),
  24279. name: "Back",
  24280. image: {
  24281. source: "./media/characters/sheera-castellar/back.svg",
  24282. extra: 1957 / 1894
  24283. }
  24284. },
  24285. angled: {
  24286. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  24287. weight: math.unit(350, "lb"),
  24288. name: "Angled",
  24289. image: {
  24290. source: "./media/characters/sheera-castellar/angled.svg",
  24291. extra: 1807 / 1707,
  24292. bottom: 68 / 1875
  24293. }
  24294. },
  24295. genitals: {
  24296. height: math.unit(2.2, "feet"),
  24297. name: "Genitals",
  24298. image: {
  24299. source: "./media/characters/sheera-castellar/genitals.svg"
  24300. }
  24301. },
  24302. taur: {
  24303. height: math.unit(10 + 6/12, "feet"),
  24304. name: "Taur",
  24305. image: {
  24306. source: "./media/characters/sheera-castellar/taur.svg",
  24307. extra: 2017/1909,
  24308. bottom: 185/2202
  24309. }
  24310. },
  24311. },
  24312. [
  24313. {
  24314. name: "Normal",
  24315. height: math.unit(8 + 4 / 12, "feet")
  24316. },
  24317. {
  24318. name: "Macro",
  24319. height: math.unit(150, "feet"),
  24320. default: true
  24321. },
  24322. {
  24323. name: "Macro+",
  24324. height: math.unit(800, "feet")
  24325. },
  24326. ]
  24327. ))
  24328. characterMakers.push(() => makeCharacter(
  24329. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  24330. {
  24331. front: {
  24332. height: math.unit(6, "feet"),
  24333. weight: math.unit(150, "lb"),
  24334. name: "Front",
  24335. image: {
  24336. source: "./media/characters/jaipur/front.svg",
  24337. extra: 3860 / 3731,
  24338. bottom: 287 / 4140
  24339. }
  24340. },
  24341. back: {
  24342. height: math.unit(6, "feet"),
  24343. weight: math.unit(150, "lb"),
  24344. name: "Back",
  24345. image: {
  24346. source: "./media/characters/jaipur/back.svg",
  24347. extra: 1637/1561,
  24348. bottom: 154/1791
  24349. }
  24350. },
  24351. },
  24352. [
  24353. {
  24354. name: "Normal",
  24355. height: math.unit(1.85, "meters"),
  24356. default: true
  24357. },
  24358. {
  24359. name: "Macro",
  24360. height: math.unit(150, "meters")
  24361. },
  24362. {
  24363. name: "Macro+",
  24364. height: math.unit(0.5, "miles")
  24365. },
  24366. {
  24367. name: "Macro++",
  24368. height: math.unit(2.5, "miles")
  24369. },
  24370. {
  24371. name: "Macro+++",
  24372. height: math.unit(12, "miles")
  24373. },
  24374. {
  24375. name: "Macro++++",
  24376. height: math.unit(120, "miles")
  24377. },
  24378. {
  24379. name: "Macro+++++",
  24380. height: math.unit(1200, "miles")
  24381. },
  24382. ]
  24383. ))
  24384. characterMakers.push(() => makeCharacter(
  24385. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  24386. {
  24387. front: {
  24388. height: math.unit(6, "feet"),
  24389. weight: math.unit(150, "lb"),
  24390. name: "Front",
  24391. image: {
  24392. source: "./media/characters/sheila-wolf/front.svg",
  24393. extra: 1931 / 1808,
  24394. bottom: 29.5 / 1960
  24395. }
  24396. },
  24397. dick: {
  24398. height: math.unit(1.464, "feet"),
  24399. name: "Dick",
  24400. image: {
  24401. source: "./media/characters/sheila-wolf/dick.svg"
  24402. }
  24403. },
  24404. muzzle: {
  24405. height: math.unit(0.513, "feet"),
  24406. name: "Muzzle",
  24407. image: {
  24408. source: "./media/characters/sheila-wolf/muzzle.svg"
  24409. }
  24410. },
  24411. },
  24412. [
  24413. {
  24414. name: "Macro",
  24415. height: math.unit(70, "feet"),
  24416. default: true
  24417. },
  24418. ]
  24419. ))
  24420. characterMakers.push(() => makeCharacter(
  24421. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  24422. {
  24423. front: {
  24424. height: math.unit(32, "meters"),
  24425. weight: math.unit(300000, "kg"),
  24426. name: "Front",
  24427. image: {
  24428. source: "./media/characters/almor/front.svg",
  24429. extra: 1408 / 1322,
  24430. bottom: 94.6 / 1506.5
  24431. }
  24432. },
  24433. },
  24434. [
  24435. {
  24436. name: "Macro",
  24437. height: math.unit(32, "meters"),
  24438. default: true
  24439. },
  24440. ]
  24441. ))
  24442. characterMakers.push(() => makeCharacter(
  24443. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  24444. {
  24445. front: {
  24446. height: math.unit(7, "feet"),
  24447. weight: math.unit(200, "lb"),
  24448. name: "Front",
  24449. image: {
  24450. source: "./media/characters/silver/front.svg",
  24451. extra: 472.1 / 450.5,
  24452. bottom: 26.5 / 499.424
  24453. }
  24454. },
  24455. },
  24456. [
  24457. {
  24458. name: "Normal",
  24459. height: math.unit(7, "feet"),
  24460. default: true
  24461. },
  24462. {
  24463. name: "Macro",
  24464. height: math.unit(800, "feet")
  24465. },
  24466. {
  24467. name: "Megamacro",
  24468. height: math.unit(250, "miles")
  24469. },
  24470. ]
  24471. ))
  24472. characterMakers.push(() => makeCharacter(
  24473. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  24474. {
  24475. front: {
  24476. height: math.unit(6, "feet"),
  24477. weight: math.unit(150, "lb"),
  24478. name: "Front",
  24479. image: {
  24480. source: "./media/characters/pliskin/front.svg",
  24481. extra: 1469 / 1359,
  24482. bottom: 70 / 1540
  24483. }
  24484. },
  24485. },
  24486. [
  24487. {
  24488. name: "Micro",
  24489. height: math.unit(3, "inches")
  24490. },
  24491. {
  24492. name: "Normal",
  24493. height: math.unit(5 + 11 / 12, "feet"),
  24494. default: true
  24495. },
  24496. {
  24497. name: "Macro",
  24498. height: math.unit(120, "feet")
  24499. },
  24500. ]
  24501. ))
  24502. characterMakers.push(() => makeCharacter(
  24503. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  24504. {
  24505. front: {
  24506. height: math.unit(6, "feet"),
  24507. weight: math.unit(150, "lb"),
  24508. name: "Front",
  24509. image: {
  24510. source: "./media/characters/sammy/front.svg",
  24511. extra: 1193 / 1089,
  24512. bottom: 30.5 / 1226
  24513. }
  24514. },
  24515. },
  24516. [
  24517. {
  24518. name: "Macro",
  24519. height: math.unit(1700, "feet"),
  24520. default: true
  24521. },
  24522. {
  24523. name: "Examacro",
  24524. height: math.unit(2.5e9, "lightyears")
  24525. },
  24526. ]
  24527. ))
  24528. characterMakers.push(() => makeCharacter(
  24529. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  24530. {
  24531. front: {
  24532. height: math.unit(21, "meters"),
  24533. weight: math.unit(12, "tonnes"),
  24534. name: "Front",
  24535. image: {
  24536. source: "./media/characters/kuru/front.svg",
  24537. extra: 4301 / 3785,
  24538. bottom: 371.3 / 4691
  24539. }
  24540. },
  24541. },
  24542. [
  24543. {
  24544. name: "Macro",
  24545. height: math.unit(21, "meters"),
  24546. default: true
  24547. },
  24548. ]
  24549. ))
  24550. characterMakers.push(() => makeCharacter(
  24551. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  24552. {
  24553. front: {
  24554. height: math.unit(23, "meters"),
  24555. weight: math.unit(12.2, "tonnes"),
  24556. name: "Front",
  24557. image: {
  24558. source: "./media/characters/rakka/front.svg",
  24559. extra: 4670 / 4169,
  24560. bottom: 301 / 4968.7
  24561. }
  24562. },
  24563. },
  24564. [
  24565. {
  24566. name: "Macro",
  24567. height: math.unit(23, "meters"),
  24568. default: true
  24569. },
  24570. ]
  24571. ))
  24572. characterMakers.push(() => makeCharacter(
  24573. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  24574. {
  24575. front: {
  24576. height: math.unit(6, "feet"),
  24577. weight: math.unit(150, "lb"),
  24578. name: "Front",
  24579. image: {
  24580. source: "./media/characters/rhys-feline/front.svg",
  24581. extra: 2488 / 2308,
  24582. bottom: 35.67 / 2519.19
  24583. }
  24584. },
  24585. },
  24586. [
  24587. {
  24588. name: "Really Small",
  24589. height: math.unit(1, "nm")
  24590. },
  24591. {
  24592. name: "Micro",
  24593. height: math.unit(4, "inches")
  24594. },
  24595. {
  24596. name: "Normal",
  24597. height: math.unit(4 + 10 / 12, "feet"),
  24598. default: true
  24599. },
  24600. {
  24601. name: "Macro",
  24602. height: math.unit(100, "feet")
  24603. },
  24604. {
  24605. name: "Megamacto",
  24606. height: math.unit(50, "miles")
  24607. },
  24608. ]
  24609. ))
  24610. characterMakers.push(() => makeCharacter(
  24611. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  24612. {
  24613. side: {
  24614. height: math.unit(30, "feet"),
  24615. weight: math.unit(35000, "kg"),
  24616. name: "Side",
  24617. image: {
  24618. source: "./media/characters/alydar/side.svg",
  24619. extra: 234 / 222,
  24620. bottom: 6.5 / 241
  24621. }
  24622. },
  24623. front: {
  24624. height: math.unit(30, "feet"),
  24625. weight: math.unit(35000, "kg"),
  24626. name: "Front",
  24627. image: {
  24628. source: "./media/characters/alydar/front.svg",
  24629. extra: 223.37 / 210.2,
  24630. bottom: 22.3 / 246.76
  24631. }
  24632. },
  24633. top: {
  24634. height: math.unit(64.54, "feet"),
  24635. weight: math.unit(35000, "kg"),
  24636. name: "Top",
  24637. image: {
  24638. source: "./media/characters/alydar/top.svg"
  24639. }
  24640. },
  24641. anthro: {
  24642. height: math.unit(30, "feet"),
  24643. weight: math.unit(9000, "kg"),
  24644. name: "Anthro",
  24645. image: {
  24646. source: "./media/characters/alydar/anthro.svg",
  24647. extra: 432 / 421,
  24648. bottom: 7.18 / 440
  24649. }
  24650. },
  24651. maw: {
  24652. height: math.unit(11.693, "feet"),
  24653. name: "Maw",
  24654. image: {
  24655. source: "./media/characters/alydar/maw.svg"
  24656. }
  24657. },
  24658. head: {
  24659. height: math.unit(11.693, "feet"),
  24660. name: "Head",
  24661. image: {
  24662. source: "./media/characters/alydar/head.svg"
  24663. }
  24664. },
  24665. headAlt: {
  24666. height: math.unit(12.861, "feet"),
  24667. name: "Head (Alt)",
  24668. image: {
  24669. source: "./media/characters/alydar/head-alt.svg"
  24670. }
  24671. },
  24672. wing: {
  24673. height: math.unit(20.712, "feet"),
  24674. name: "Wing",
  24675. image: {
  24676. source: "./media/characters/alydar/wing.svg"
  24677. }
  24678. },
  24679. wingFeather: {
  24680. height: math.unit(9.662, "feet"),
  24681. name: "Wing Feather",
  24682. image: {
  24683. source: "./media/characters/alydar/wing-feather.svg"
  24684. }
  24685. },
  24686. countourFeather: {
  24687. height: math.unit(4.154, "feet"),
  24688. name: "Contour Feather",
  24689. image: {
  24690. source: "./media/characters/alydar/contour-feather.svg"
  24691. }
  24692. },
  24693. },
  24694. [
  24695. {
  24696. name: "Diplomatic",
  24697. height: math.unit(13, "feet"),
  24698. default: true
  24699. },
  24700. {
  24701. name: "Small",
  24702. height: math.unit(30, "feet")
  24703. },
  24704. {
  24705. name: "Normal",
  24706. height: math.unit(95, "feet"),
  24707. default: true
  24708. },
  24709. {
  24710. name: "Large",
  24711. height: math.unit(285, "feet")
  24712. },
  24713. {
  24714. name: "Incomprehensible",
  24715. height: math.unit(450, "megameters")
  24716. },
  24717. ]
  24718. ))
  24719. characterMakers.push(() => makeCharacter(
  24720. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  24721. {
  24722. side: {
  24723. height: math.unit(11, "feet"),
  24724. weight: math.unit(1750, "kg"),
  24725. name: "Side",
  24726. image: {
  24727. source: "./media/characters/selicia/side.svg",
  24728. extra: 440 / 396,
  24729. bottom: 24.8 / 465.979
  24730. }
  24731. },
  24732. maw: {
  24733. height: math.unit(4.665, "feet"),
  24734. name: "Maw",
  24735. image: {
  24736. source: "./media/characters/selicia/maw.svg"
  24737. }
  24738. },
  24739. },
  24740. [
  24741. {
  24742. name: "Normal",
  24743. height: math.unit(11, "feet"),
  24744. default: true
  24745. },
  24746. ]
  24747. ))
  24748. characterMakers.push(() => makeCharacter(
  24749. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  24750. {
  24751. side: {
  24752. height: math.unit(2 + 6 / 12, "feet"),
  24753. weight: math.unit(30, "lb"),
  24754. name: "Side",
  24755. image: {
  24756. source: "./media/characters/layla/side.svg",
  24757. extra: 244 / 188,
  24758. bottom: 18.2 / 262.1
  24759. }
  24760. },
  24761. back: {
  24762. height: math.unit(2 + 6 / 12, "feet"),
  24763. weight: math.unit(30, "lb"),
  24764. name: "Back",
  24765. image: {
  24766. source: "./media/characters/layla/back.svg",
  24767. extra: 308 / 241.5,
  24768. bottom: 8.9 / 316.8
  24769. }
  24770. },
  24771. cumming: {
  24772. height: math.unit(2 + 6 / 12, "feet"),
  24773. weight: math.unit(30, "lb"),
  24774. name: "Cumming",
  24775. image: {
  24776. source: "./media/characters/layla/cumming.svg",
  24777. extra: 342 / 279,
  24778. bottom: 595 / 938
  24779. }
  24780. },
  24781. dickFlaccid: {
  24782. height: math.unit(2.595, "feet"),
  24783. name: "Flaccid Genitals",
  24784. image: {
  24785. source: "./media/characters/layla/dick-flaccid.svg"
  24786. }
  24787. },
  24788. dickErect: {
  24789. height: math.unit(2.359, "feet"),
  24790. name: "Erect Genitals",
  24791. image: {
  24792. source: "./media/characters/layla/dick-erect.svg"
  24793. }
  24794. },
  24795. dragon: {
  24796. height: math.unit(40, "feet"),
  24797. name: "Dragon",
  24798. image: {
  24799. source: "./media/characters/layla/dragon.svg",
  24800. extra: 610/535,
  24801. bottom: 367/977
  24802. }
  24803. },
  24804. taur: {
  24805. height: math.unit(30, "feet"),
  24806. name: "Taur",
  24807. image: {
  24808. source: "./media/characters/layla/taur.svg",
  24809. extra: 1268/1199,
  24810. bottom: 112/1380
  24811. }
  24812. },
  24813. },
  24814. [
  24815. {
  24816. name: "Micro",
  24817. height: math.unit(1, "inch")
  24818. },
  24819. {
  24820. name: "Small",
  24821. height: math.unit(1, "foot")
  24822. },
  24823. {
  24824. name: "Normal",
  24825. height: math.unit(2 + 6 / 12, "feet"),
  24826. default: true
  24827. },
  24828. {
  24829. name: "Macro",
  24830. height: math.unit(200, "feet")
  24831. },
  24832. {
  24833. name: "Megamacro",
  24834. height: math.unit(1000, "miles")
  24835. },
  24836. {
  24837. name: "Planetary",
  24838. height: math.unit(8000, "miles")
  24839. },
  24840. {
  24841. name: "True Layla",
  24842. height: math.unit(200000 * 7, "multiverses")
  24843. },
  24844. ]
  24845. ))
  24846. characterMakers.push(() => makeCharacter(
  24847. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  24848. {
  24849. back: {
  24850. height: math.unit(10.5, "feet"),
  24851. weight: math.unit(800, "lb"),
  24852. name: "Back",
  24853. image: {
  24854. source: "./media/characters/knox/back.svg",
  24855. extra: 1486 / 1089,
  24856. bottom: 107 / 1601.4
  24857. }
  24858. },
  24859. side: {
  24860. height: math.unit(10.5, "feet"),
  24861. weight: math.unit(800, "lb"),
  24862. name: "Side",
  24863. image: {
  24864. source: "./media/characters/knox/side.svg",
  24865. extra: 244 / 218,
  24866. bottom: 14 / 260
  24867. }
  24868. },
  24869. },
  24870. [
  24871. {
  24872. name: "Compact",
  24873. height: math.unit(10.5, "feet"),
  24874. default: true
  24875. },
  24876. {
  24877. name: "Dynamax",
  24878. height: math.unit(210, "feet")
  24879. },
  24880. {
  24881. name: "Full Macro",
  24882. height: math.unit(850, "feet")
  24883. },
  24884. ]
  24885. ))
  24886. characterMakers.push(() => makeCharacter(
  24887. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  24888. {
  24889. front: {
  24890. height: math.unit(28, "feet"),
  24891. weight: math.unit(10500, "lb"),
  24892. name: "Front",
  24893. image: {
  24894. source: "./media/characters/kayda/front.svg",
  24895. extra: 1536 / 1428,
  24896. bottom: 68.7 / 1603
  24897. }
  24898. },
  24899. back: {
  24900. height: math.unit(28, "feet"),
  24901. weight: math.unit(10500, "lb"),
  24902. name: "Back",
  24903. image: {
  24904. source: "./media/characters/kayda/back.svg",
  24905. extra: 1557 / 1464,
  24906. bottom: 39.5 / 1597.49
  24907. }
  24908. },
  24909. dick: {
  24910. height: math.unit(3.858, "feet"),
  24911. name: "Dick",
  24912. image: {
  24913. source: "./media/characters/kayda/dick.svg"
  24914. }
  24915. },
  24916. },
  24917. [
  24918. {
  24919. name: "Macro",
  24920. height: math.unit(28, "feet"),
  24921. default: true
  24922. },
  24923. ]
  24924. ))
  24925. characterMakers.push(() => makeCharacter(
  24926. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  24927. {
  24928. front: {
  24929. height: math.unit(10 + 11 / 12, "feet"),
  24930. weight: math.unit(1400, "lb"),
  24931. name: "Front",
  24932. image: {
  24933. source: "./media/characters/brian/front.svg",
  24934. extra: 737 / 692,
  24935. bottom: 55.4 / 785
  24936. }
  24937. },
  24938. },
  24939. [
  24940. {
  24941. name: "Normal",
  24942. height: math.unit(10 + 11 / 12, "feet"),
  24943. default: true
  24944. },
  24945. ]
  24946. ))
  24947. characterMakers.push(() => makeCharacter(
  24948. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  24949. {
  24950. front: {
  24951. height: math.unit(5 + 8 / 12, "feet"),
  24952. weight: math.unit(140, "lb"),
  24953. name: "Front",
  24954. image: {
  24955. source: "./media/characters/khemri/front.svg",
  24956. extra: 4780 / 4059,
  24957. bottom: 80.1 / 4859.25
  24958. }
  24959. },
  24960. },
  24961. [
  24962. {
  24963. name: "Micro",
  24964. height: math.unit(6, "inches")
  24965. },
  24966. {
  24967. name: "Normal",
  24968. height: math.unit(5 + 8 / 12, "feet"),
  24969. default: true
  24970. },
  24971. ]
  24972. ))
  24973. characterMakers.push(() => makeCharacter(
  24974. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  24975. {
  24976. front: {
  24977. height: math.unit(13, "feet"),
  24978. weight: math.unit(1700, "lb"),
  24979. name: "Front",
  24980. image: {
  24981. source: "./media/characters/felix-braveheart/front.svg",
  24982. extra: 1222 / 1157,
  24983. bottom: 53.2 / 1280
  24984. }
  24985. },
  24986. back: {
  24987. height: math.unit(13, "feet"),
  24988. weight: math.unit(1700, "lb"),
  24989. name: "Back",
  24990. image: {
  24991. source: "./media/characters/felix-braveheart/back.svg",
  24992. extra: 1277 / 1203,
  24993. bottom: 50.2 / 1327
  24994. }
  24995. },
  24996. feral: {
  24997. height: math.unit(6, "feet"),
  24998. weight: math.unit(400, "lb"),
  24999. name: "Feral",
  25000. image: {
  25001. source: "./media/characters/felix-braveheart/feral.svg",
  25002. extra: 682 / 625,
  25003. bottom: 6.9 / 688
  25004. }
  25005. },
  25006. },
  25007. [
  25008. {
  25009. name: "Normal",
  25010. height: math.unit(13, "feet"),
  25011. default: true
  25012. },
  25013. ]
  25014. ))
  25015. characterMakers.push(() => makeCharacter(
  25016. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  25017. {
  25018. side: {
  25019. height: math.unit(5 + 11 / 12, "feet"),
  25020. weight: math.unit(1400, "lb"),
  25021. name: "Side",
  25022. image: {
  25023. source: "./media/characters/shadow-blade/side.svg",
  25024. extra: 1726 / 1267,
  25025. bottom: 58.4 / 1785
  25026. }
  25027. },
  25028. },
  25029. [
  25030. {
  25031. name: "Normal",
  25032. height: math.unit(5 + 11 / 12, "feet"),
  25033. default: true
  25034. },
  25035. ]
  25036. ))
  25037. characterMakers.push(() => makeCharacter(
  25038. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  25039. {
  25040. front: {
  25041. height: math.unit(1 + 6 / 12, "feet"),
  25042. weight: math.unit(25, "lb"),
  25043. name: "Front",
  25044. image: {
  25045. source: "./media/characters/karla-halldor/front.svg",
  25046. extra: 1459 / 1383,
  25047. bottom: 12 / 1472
  25048. }
  25049. },
  25050. },
  25051. [
  25052. {
  25053. name: "Normal",
  25054. height: math.unit(1 + 6 / 12, "feet"),
  25055. default: true
  25056. },
  25057. ]
  25058. ))
  25059. characterMakers.push(() => makeCharacter(
  25060. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  25061. {
  25062. front: {
  25063. height: math.unit(6 + 2 / 12, "feet"),
  25064. weight: math.unit(160, "lb"),
  25065. name: "Front",
  25066. image: {
  25067. source: "./media/characters/ariam/front.svg",
  25068. extra: 1073/976,
  25069. bottom: 52/1125
  25070. }
  25071. },
  25072. back: {
  25073. height: math.unit(6 + 2/12, "feet"),
  25074. weight: math.unit(160, "lb"),
  25075. name: "Back",
  25076. image: {
  25077. source: "./media/characters/ariam/back.svg",
  25078. extra: 1103/1023,
  25079. bottom: 9/1112
  25080. }
  25081. },
  25082. dressed: {
  25083. height: math.unit(6 + 2/12, "feet"),
  25084. weight: math.unit(160, "lb"),
  25085. name: "Dressed",
  25086. image: {
  25087. source: "./media/characters/ariam/dressed.svg",
  25088. extra: 1099/1009,
  25089. bottom: 25/1124
  25090. }
  25091. },
  25092. squatting: {
  25093. height: math.unit(4.1, "feet"),
  25094. weight: math.unit(160, "lb"),
  25095. name: "Squatting",
  25096. image: {
  25097. source: "./media/characters/ariam/squatting.svg",
  25098. extra: 2617 / 2112,
  25099. bottom: 61.2 / 2681,
  25100. }
  25101. },
  25102. },
  25103. [
  25104. {
  25105. name: "Normal",
  25106. height: math.unit(6 + 2 / 12, "feet"),
  25107. default: true
  25108. },
  25109. {
  25110. name: "Normal+",
  25111. height: math.unit(4, "meters")
  25112. },
  25113. {
  25114. name: "Macro",
  25115. height: math.unit(50, "meters")
  25116. },
  25117. {
  25118. name: "Macro+",
  25119. height: math.unit(100, "meters")
  25120. },
  25121. {
  25122. name: "Megamacro",
  25123. height: math.unit(20, "km")
  25124. },
  25125. {
  25126. name: "Caretaker",
  25127. height: math.unit(444, "megameters")
  25128. },
  25129. ]
  25130. ))
  25131. characterMakers.push(() => makeCharacter(
  25132. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  25133. {
  25134. front: {
  25135. height: math.unit(1.67, "meters"),
  25136. weight: math.unit(140, "lb"),
  25137. name: "Front",
  25138. image: {
  25139. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  25140. extra: 438 / 410,
  25141. bottom: 0.75 / 439
  25142. }
  25143. },
  25144. },
  25145. [
  25146. {
  25147. name: "Shrunken",
  25148. height: math.unit(7.6, "cm")
  25149. },
  25150. {
  25151. name: "Human Scale",
  25152. height: math.unit(1.67, "meters")
  25153. },
  25154. {
  25155. name: "Wolxi Scale",
  25156. height: math.unit(36.7, "meters"),
  25157. default: true
  25158. },
  25159. ]
  25160. ))
  25161. characterMakers.push(() => makeCharacter(
  25162. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  25163. {
  25164. front: {
  25165. height: math.unit(1.73, "meters"),
  25166. weight: math.unit(240, "lb"),
  25167. name: "Front",
  25168. image: {
  25169. source: "./media/characters/izue-two-mothers/front.svg",
  25170. extra: 469 / 437,
  25171. bottom: 1.24 / 470.6
  25172. }
  25173. },
  25174. },
  25175. [
  25176. {
  25177. name: "Shrunken",
  25178. height: math.unit(7.86, "cm")
  25179. },
  25180. {
  25181. name: "Human Scale",
  25182. height: math.unit(1.73, "meters")
  25183. },
  25184. {
  25185. name: "Wolxi Scale",
  25186. height: math.unit(38, "meters"),
  25187. default: true
  25188. },
  25189. ]
  25190. ))
  25191. characterMakers.push(() => makeCharacter(
  25192. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  25193. {
  25194. front: {
  25195. height: math.unit(1.55, "meters"),
  25196. weight: math.unit(120, "lb"),
  25197. name: "Front",
  25198. image: {
  25199. source: "./media/characters/teeku-love-shack/front.svg",
  25200. extra: 387 / 362,
  25201. bottom: 1.51 / 388
  25202. }
  25203. },
  25204. },
  25205. [
  25206. {
  25207. name: "Shrunken",
  25208. height: math.unit(7, "cm")
  25209. },
  25210. {
  25211. name: "Human Scale",
  25212. height: math.unit(1.55, "meters")
  25213. },
  25214. {
  25215. name: "Wolxi Scale",
  25216. height: math.unit(34.1, "meters"),
  25217. default: true
  25218. },
  25219. ]
  25220. ))
  25221. characterMakers.push(() => makeCharacter(
  25222. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  25223. {
  25224. front: {
  25225. height: math.unit(1.83, "meters"),
  25226. weight: math.unit(135, "lb"),
  25227. name: "Front",
  25228. image: {
  25229. source: "./media/characters/dejma-the-red/front.svg",
  25230. extra: 480 / 458,
  25231. bottom: 1.8 / 482
  25232. }
  25233. },
  25234. },
  25235. [
  25236. {
  25237. name: "Shrunken",
  25238. height: math.unit(8.3, "cm")
  25239. },
  25240. {
  25241. name: "Human Scale",
  25242. height: math.unit(1.83, "meters")
  25243. },
  25244. {
  25245. name: "Wolxi Scale",
  25246. height: math.unit(40, "meters"),
  25247. default: true
  25248. },
  25249. ]
  25250. ))
  25251. characterMakers.push(() => makeCharacter(
  25252. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  25253. {
  25254. front: {
  25255. height: math.unit(1.78, "meters"),
  25256. weight: math.unit(65, "kg"),
  25257. name: "Front",
  25258. image: {
  25259. source: "./media/characters/aki/front.svg",
  25260. extra: 452 / 415
  25261. }
  25262. },
  25263. frontNsfw: {
  25264. height: math.unit(1.78, "meters"),
  25265. weight: math.unit(65, "kg"),
  25266. name: "Front (NSFW)",
  25267. image: {
  25268. source: "./media/characters/aki/front-nsfw.svg",
  25269. extra: 452 / 415
  25270. }
  25271. },
  25272. back: {
  25273. height: math.unit(1.78, "meters"),
  25274. weight: math.unit(65, "kg"),
  25275. name: "Back",
  25276. image: {
  25277. source: "./media/characters/aki/back.svg",
  25278. extra: 452 / 415
  25279. }
  25280. },
  25281. rump: {
  25282. height: math.unit(2.05, "feet"),
  25283. name: "Rump",
  25284. image: {
  25285. source: "./media/characters/aki/rump.svg"
  25286. }
  25287. },
  25288. dick: {
  25289. height: math.unit(0.95, "feet"),
  25290. name: "Dick",
  25291. image: {
  25292. source: "./media/characters/aki/dick.svg"
  25293. }
  25294. },
  25295. },
  25296. [
  25297. {
  25298. name: "Micro",
  25299. height: math.unit(15, "cm")
  25300. },
  25301. {
  25302. name: "Normal",
  25303. height: math.unit(178, "cm"),
  25304. default: true
  25305. },
  25306. {
  25307. name: "Macro",
  25308. height: math.unit(214, "m")
  25309. },
  25310. {
  25311. name: "Macro+",
  25312. height: math.unit(534, "m")
  25313. },
  25314. ]
  25315. ))
  25316. characterMakers.push(() => makeCharacter(
  25317. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  25318. {
  25319. front: {
  25320. height: math.unit(5 + 5 / 12, "feet"),
  25321. weight: math.unit(120, "lb"),
  25322. name: "Front",
  25323. image: {
  25324. source: "./media/characters/ari/front.svg",
  25325. extra: 1550/1471,
  25326. bottom: 39/1589
  25327. }
  25328. },
  25329. },
  25330. [
  25331. {
  25332. name: "Normal",
  25333. height: math.unit(5 + 5 / 12, "feet")
  25334. },
  25335. {
  25336. name: "Macro",
  25337. height: math.unit(100, "feet"),
  25338. default: true
  25339. },
  25340. {
  25341. name: "Megamacro",
  25342. height: math.unit(100, "miles")
  25343. },
  25344. {
  25345. name: "Gigamacro",
  25346. height: math.unit(80000, "miles")
  25347. },
  25348. ]
  25349. ))
  25350. characterMakers.push(() => makeCharacter(
  25351. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  25352. {
  25353. side: {
  25354. height: math.unit(9, "feet"),
  25355. weight: math.unit(400, "kg"),
  25356. name: "Side",
  25357. image: {
  25358. source: "./media/characters/bolt/side.svg",
  25359. extra: 1126 / 896,
  25360. bottom: 60 / 1187.3,
  25361. }
  25362. },
  25363. },
  25364. [
  25365. {
  25366. name: "Micro",
  25367. height: math.unit(5, "inches")
  25368. },
  25369. {
  25370. name: "Normal",
  25371. height: math.unit(9, "feet"),
  25372. default: true
  25373. },
  25374. {
  25375. name: "Macro",
  25376. height: math.unit(700, "feet")
  25377. },
  25378. {
  25379. name: "Max Size",
  25380. height: math.unit(1.52e22, "yottameters")
  25381. },
  25382. ]
  25383. ))
  25384. characterMakers.push(() => makeCharacter(
  25385. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  25386. {
  25387. front: {
  25388. height: math.unit(4.3, "meters"),
  25389. weight: math.unit(3, "tons"),
  25390. name: "Front",
  25391. image: {
  25392. source: "./media/characters/draekon-sylviar/front.svg",
  25393. extra: 2072/1512,
  25394. bottom: 74/2146
  25395. }
  25396. },
  25397. back: {
  25398. height: math.unit(4.3, "meters"),
  25399. weight: math.unit(3, "tons"),
  25400. name: "Back",
  25401. image: {
  25402. source: "./media/characters/draekon-sylviar/back.svg",
  25403. extra: 1639/1483,
  25404. bottom: 41/1680
  25405. }
  25406. },
  25407. feral: {
  25408. height: math.unit(1.15, "meters"),
  25409. weight: math.unit(3, "tons"),
  25410. name: "Feral",
  25411. image: {
  25412. source: "./media/characters/draekon-sylviar/feral.svg",
  25413. extra: 1033/395,
  25414. bottom: 130/1163
  25415. }
  25416. },
  25417. maw: {
  25418. height: math.unit(1.3, "meters"),
  25419. name: "Maw",
  25420. image: {
  25421. source: "./media/characters/draekon-sylviar/maw.svg"
  25422. }
  25423. },
  25424. mawSeparated: {
  25425. height: math.unit(1.53, "meters"),
  25426. name: "Separated Maw",
  25427. image: {
  25428. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  25429. }
  25430. },
  25431. tail: {
  25432. height: math.unit(1.15, "meters"),
  25433. name: "Tail",
  25434. image: {
  25435. source: "./media/characters/draekon-sylviar/tail.svg"
  25436. }
  25437. },
  25438. tailDick: {
  25439. height: math.unit(1.15, "meters"),
  25440. name: "Tail (Dick)",
  25441. image: {
  25442. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  25443. }
  25444. },
  25445. tailDickSeparated: {
  25446. height: math.unit(1.19, "meters"),
  25447. name: "Tail (Separated Dick)",
  25448. image: {
  25449. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  25450. }
  25451. },
  25452. slit: {
  25453. height: math.unit(1, "meters"),
  25454. name: "Slit",
  25455. image: {
  25456. source: "./media/characters/draekon-sylviar/slit.svg"
  25457. }
  25458. },
  25459. dick: {
  25460. height: math.unit(1.15, "meters"),
  25461. name: "Dick",
  25462. image: {
  25463. source: "./media/characters/draekon-sylviar/dick.svg"
  25464. }
  25465. },
  25466. dickSeparated: {
  25467. height: math.unit(1.1, "meters"),
  25468. name: "Separated Dick",
  25469. image: {
  25470. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  25471. }
  25472. },
  25473. sheath: {
  25474. height: math.unit(1.15, "meters"),
  25475. name: "Sheath",
  25476. image: {
  25477. source: "./media/characters/draekon-sylviar/sheath.svg"
  25478. }
  25479. },
  25480. },
  25481. [
  25482. {
  25483. name: "Small",
  25484. height: math.unit(4.53 / 2, "meters"),
  25485. default: true
  25486. },
  25487. {
  25488. name: "Normal",
  25489. height: math.unit(4.53, "meters"),
  25490. default: true
  25491. },
  25492. {
  25493. name: "Large",
  25494. height: math.unit(4.53 * 2, "meters"),
  25495. },
  25496. ]
  25497. ))
  25498. characterMakers.push(() => makeCharacter(
  25499. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  25500. {
  25501. front: {
  25502. height: math.unit(6 + 2 / 12, "feet"),
  25503. weight: math.unit(180, "lb"),
  25504. name: "Front",
  25505. image: {
  25506. source: "./media/characters/brawler/front.svg",
  25507. extra: 3301 / 3027,
  25508. bottom: 138 / 3439
  25509. }
  25510. },
  25511. },
  25512. [
  25513. {
  25514. name: "Normal",
  25515. height: math.unit(6 + 2 / 12, "feet"),
  25516. default: true
  25517. },
  25518. ]
  25519. ))
  25520. characterMakers.push(() => makeCharacter(
  25521. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  25522. {
  25523. front: {
  25524. height: math.unit(11, "feet"),
  25525. weight: math.unit(1000, "lb"),
  25526. name: "Front",
  25527. image: {
  25528. source: "./media/characters/alex/front.svg",
  25529. bottom: 44.5 / 620
  25530. }
  25531. },
  25532. },
  25533. [
  25534. {
  25535. name: "Micro",
  25536. height: math.unit(5, "inches")
  25537. },
  25538. {
  25539. name: "Normal",
  25540. height: math.unit(11, "feet"),
  25541. default: true
  25542. },
  25543. {
  25544. name: "Macro",
  25545. height: math.unit(9.5e9, "feet")
  25546. },
  25547. {
  25548. name: "Max Size",
  25549. height: math.unit(1.4e283, "yottameters")
  25550. },
  25551. ]
  25552. ))
  25553. characterMakers.push(() => makeCharacter(
  25554. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  25555. {
  25556. female: {
  25557. height: math.unit(29.9, "m"),
  25558. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  25559. name: "Female",
  25560. image: {
  25561. source: "./media/characters/zenari/female.svg",
  25562. extra: 3281.6 / 3217,
  25563. bottom: 72.2 / 3353
  25564. }
  25565. },
  25566. male: {
  25567. height: math.unit(27.7, "m"),
  25568. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  25569. name: "Male",
  25570. image: {
  25571. source: "./media/characters/zenari/male.svg",
  25572. extra: 3008 / 2991,
  25573. bottom: 54.6 / 3069
  25574. }
  25575. },
  25576. },
  25577. [
  25578. {
  25579. name: "Macro",
  25580. height: math.unit(29.7, "meters"),
  25581. default: true
  25582. },
  25583. ]
  25584. ))
  25585. characterMakers.push(() => makeCharacter(
  25586. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  25587. {
  25588. female: {
  25589. height: math.unit(23.8, "m"),
  25590. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  25591. name: "Female",
  25592. image: {
  25593. source: "./media/characters/mactarian/female.svg",
  25594. extra: 2662 / 2569,
  25595. bottom: 73 / 2736
  25596. }
  25597. },
  25598. male: {
  25599. height: math.unit(23.8, "m"),
  25600. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  25601. name: "Male",
  25602. image: {
  25603. source: "./media/characters/mactarian/male.svg",
  25604. extra: 2673 / 2600,
  25605. bottom: 76 / 2750
  25606. }
  25607. },
  25608. },
  25609. [
  25610. {
  25611. name: "Macro",
  25612. height: math.unit(23.8, "meters"),
  25613. default: true
  25614. },
  25615. ]
  25616. ))
  25617. characterMakers.push(() => makeCharacter(
  25618. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  25619. {
  25620. female: {
  25621. height: math.unit(19.3, "m"),
  25622. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  25623. name: "Female",
  25624. image: {
  25625. source: "./media/characters/umok/female.svg",
  25626. extra: 2186 / 2078,
  25627. bottom: 87 / 2277
  25628. }
  25629. },
  25630. male: {
  25631. height: math.unit(19.5, "m"),
  25632. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  25633. name: "Male",
  25634. image: {
  25635. source: "./media/characters/umok/male.svg",
  25636. extra: 2233 / 2140,
  25637. bottom: 24.4 / 2258
  25638. }
  25639. },
  25640. },
  25641. [
  25642. {
  25643. name: "Macro",
  25644. height: math.unit(19.3, "meters"),
  25645. default: true
  25646. },
  25647. ]
  25648. ))
  25649. characterMakers.push(() => makeCharacter(
  25650. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  25651. {
  25652. female: {
  25653. height: math.unit(26.15, "m"),
  25654. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  25655. name: "Female",
  25656. image: {
  25657. source: "./media/characters/joraxian/female.svg",
  25658. extra: 2912 / 2824,
  25659. bottom: 36 / 2956
  25660. }
  25661. },
  25662. male: {
  25663. height: math.unit(25.4, "m"),
  25664. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  25665. name: "Male",
  25666. image: {
  25667. source: "./media/characters/joraxian/male.svg",
  25668. extra: 2877 / 2721,
  25669. bottom: 82 / 2967
  25670. }
  25671. },
  25672. },
  25673. [
  25674. {
  25675. name: "Macro",
  25676. height: math.unit(26.15, "meters"),
  25677. default: true
  25678. },
  25679. ]
  25680. ))
  25681. characterMakers.push(() => makeCharacter(
  25682. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  25683. {
  25684. female: {
  25685. height: math.unit(21.6, "m"),
  25686. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  25687. name: "Female",
  25688. image: {
  25689. source: "./media/characters/sthara/female.svg",
  25690. extra: 2516 / 2347,
  25691. bottom: 21.5 / 2537
  25692. }
  25693. },
  25694. male: {
  25695. height: math.unit(24, "m"),
  25696. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  25697. name: "Male",
  25698. image: {
  25699. source: "./media/characters/sthara/male.svg",
  25700. extra: 2732 / 2607,
  25701. bottom: 23 / 2732
  25702. }
  25703. },
  25704. },
  25705. [
  25706. {
  25707. name: "Macro",
  25708. height: math.unit(21.6, "meters"),
  25709. default: true
  25710. },
  25711. ]
  25712. ))
  25713. characterMakers.push(() => makeCharacter(
  25714. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  25715. {
  25716. front: {
  25717. height: math.unit(6 + 4 / 12, "feet"),
  25718. weight: math.unit(175, "lb"),
  25719. name: "Front",
  25720. image: {
  25721. source: "./media/characters/luka-bryzant/front.svg",
  25722. extra: 311 / 289,
  25723. bottom: 4 / 315
  25724. }
  25725. },
  25726. back: {
  25727. height: math.unit(6 + 4 / 12, "feet"),
  25728. weight: math.unit(175, "lb"),
  25729. name: "Back",
  25730. image: {
  25731. source: "./media/characters/luka-bryzant/back.svg",
  25732. extra: 311 / 289,
  25733. bottom: 3.8 / 313.7
  25734. }
  25735. },
  25736. },
  25737. [
  25738. {
  25739. name: "Micro",
  25740. height: math.unit(10, "inches")
  25741. },
  25742. {
  25743. name: "Normal",
  25744. height: math.unit(6 + 4 / 12, "feet"),
  25745. default: true
  25746. },
  25747. {
  25748. name: "Large",
  25749. height: math.unit(12, "feet")
  25750. },
  25751. ]
  25752. ))
  25753. characterMakers.push(() => makeCharacter(
  25754. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  25755. {
  25756. front: {
  25757. height: math.unit(5 + 7 / 12, "feet"),
  25758. weight: math.unit(185, "lb"),
  25759. name: "Front",
  25760. image: {
  25761. source: "./media/characters/aman-aquila/front.svg",
  25762. extra: 1013 / 976,
  25763. bottom: 45.6 / 1057
  25764. }
  25765. },
  25766. side: {
  25767. height: math.unit(5 + 7 / 12, "feet"),
  25768. weight: math.unit(185, "lb"),
  25769. name: "Side",
  25770. image: {
  25771. source: "./media/characters/aman-aquila/side.svg",
  25772. extra: 1054 / 1011,
  25773. bottom: 15 / 1070
  25774. }
  25775. },
  25776. back: {
  25777. height: math.unit(5 + 7 / 12, "feet"),
  25778. weight: math.unit(185, "lb"),
  25779. name: "Back",
  25780. image: {
  25781. source: "./media/characters/aman-aquila/back.svg",
  25782. extra: 1026 / 970,
  25783. bottom: 12 / 1039
  25784. }
  25785. },
  25786. head: {
  25787. height: math.unit(1.211, "feet"),
  25788. name: "Head",
  25789. image: {
  25790. source: "./media/characters/aman-aquila/head.svg",
  25791. }
  25792. },
  25793. },
  25794. [
  25795. {
  25796. name: "Minimicro",
  25797. height: math.unit(0.057, "inches")
  25798. },
  25799. {
  25800. name: "Micro",
  25801. height: math.unit(7, "inches")
  25802. },
  25803. {
  25804. name: "Mini",
  25805. height: math.unit(3 + 7 / 12, "feet")
  25806. },
  25807. {
  25808. name: "Normal",
  25809. height: math.unit(5 + 7 / 12, "feet"),
  25810. default: true
  25811. },
  25812. {
  25813. name: "Macro",
  25814. height: math.unit(157 + 7 / 12, "feet")
  25815. },
  25816. {
  25817. name: "Megamacro",
  25818. height: math.unit(1557 + 7 / 12, "feet")
  25819. },
  25820. {
  25821. name: "Gigamacro",
  25822. height: math.unit(15557 + 7 / 12, "feet")
  25823. },
  25824. ]
  25825. ))
  25826. characterMakers.push(() => makeCharacter(
  25827. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  25828. {
  25829. front: {
  25830. height: math.unit(3 + 2 / 12, "inches"),
  25831. weight: math.unit(0.3, "ounces"),
  25832. name: "Front",
  25833. image: {
  25834. source: "./media/characters/hiphae/front.svg",
  25835. extra: 1931 / 1683,
  25836. bottom: 24 / 1955
  25837. }
  25838. },
  25839. },
  25840. [
  25841. {
  25842. name: "Normal",
  25843. height: math.unit(3 + 1 / 2, "inches"),
  25844. default: true
  25845. },
  25846. ]
  25847. ))
  25848. characterMakers.push(() => makeCharacter(
  25849. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  25850. {
  25851. front: {
  25852. height: math.unit(5 + 10 / 12, "feet"),
  25853. weight: math.unit(165, "lb"),
  25854. name: "Front",
  25855. image: {
  25856. source: "./media/characters/nicky/front.svg",
  25857. extra: 3144 / 2886,
  25858. bottom: 45.6 / 3192
  25859. }
  25860. },
  25861. back: {
  25862. height: math.unit(5 + 10 / 12, "feet"),
  25863. weight: math.unit(165, "lb"),
  25864. name: "Back",
  25865. image: {
  25866. source: "./media/characters/nicky/back.svg",
  25867. extra: 3055 / 2804,
  25868. bottom: 28.4 / 3087
  25869. }
  25870. },
  25871. frontclothed: {
  25872. height: math.unit(5 + 10 / 12, "feet"),
  25873. weight: math.unit(165, "lb"),
  25874. name: "Front-clothed",
  25875. image: {
  25876. source: "./media/characters/nicky/front-clothed.svg",
  25877. extra: 3184.9 / 2926.9,
  25878. bottom: 86.5 / 3239.9
  25879. }
  25880. },
  25881. foot: {
  25882. height: math.unit(1.16, "feet"),
  25883. name: "Foot",
  25884. image: {
  25885. source: "./media/characters/nicky/foot.svg"
  25886. }
  25887. },
  25888. feet: {
  25889. height: math.unit(1.34, "feet"),
  25890. name: "Feet",
  25891. image: {
  25892. source: "./media/characters/nicky/feet.svg"
  25893. }
  25894. },
  25895. maw: {
  25896. height: math.unit(0.9, "feet"),
  25897. name: "Maw",
  25898. image: {
  25899. source: "./media/characters/nicky/maw.svg"
  25900. }
  25901. },
  25902. },
  25903. [
  25904. {
  25905. name: "Normal",
  25906. height: math.unit(5 + 10 / 12, "feet"),
  25907. default: true
  25908. },
  25909. {
  25910. name: "Macro",
  25911. height: math.unit(60, "feet")
  25912. },
  25913. {
  25914. name: "Megamacro",
  25915. height: math.unit(1, "mile")
  25916. },
  25917. ]
  25918. ))
  25919. characterMakers.push(() => makeCharacter(
  25920. { name: "Blair", species: ["seal"], tags: ["taur"] },
  25921. {
  25922. side: {
  25923. height: math.unit(10, "feet"),
  25924. weight: math.unit(600, "lb"),
  25925. name: "Side",
  25926. image: {
  25927. source: "./media/characters/blair/side.svg",
  25928. bottom: 16.6 / 475,
  25929. extra: 458 / 431
  25930. }
  25931. },
  25932. },
  25933. [
  25934. {
  25935. name: "Micro",
  25936. height: math.unit(8, "inches")
  25937. },
  25938. {
  25939. name: "Normal",
  25940. height: math.unit(10, "feet"),
  25941. default: true
  25942. },
  25943. {
  25944. name: "Macro",
  25945. height: math.unit(180, "feet")
  25946. },
  25947. ]
  25948. ))
  25949. characterMakers.push(() => makeCharacter(
  25950. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  25951. {
  25952. front: {
  25953. height: math.unit(5 + 4 / 12, "feet"),
  25954. weight: math.unit(125, "lb"),
  25955. name: "Front",
  25956. image: {
  25957. source: "./media/characters/fisher/front.svg",
  25958. extra: 444 / 390,
  25959. bottom: 2 / 444.8
  25960. }
  25961. },
  25962. },
  25963. [
  25964. {
  25965. name: "Micro",
  25966. height: math.unit(4, "inches")
  25967. },
  25968. {
  25969. name: "Normal",
  25970. height: math.unit(5 + 4 / 12, "feet"),
  25971. default: true
  25972. },
  25973. {
  25974. name: "Macro",
  25975. height: math.unit(100, "feet")
  25976. },
  25977. ]
  25978. ))
  25979. characterMakers.push(() => makeCharacter(
  25980. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  25981. {
  25982. front: {
  25983. height: math.unit(6.71, "feet"),
  25984. weight: math.unit(200, "lb"),
  25985. capacity: math.unit(1000000, "people"),
  25986. name: "Front",
  25987. image: {
  25988. source: "./media/characters/gliss/front.svg",
  25989. extra: 2347 / 2231,
  25990. bottom: 113 / 2462
  25991. }
  25992. },
  25993. hammerspaceSize: {
  25994. height: math.unit(6.71 * 717, "feet"),
  25995. weight: math.unit(200, "lb"),
  25996. capacity: math.unit(1000000, "people"),
  25997. name: "Hammerspace Size",
  25998. image: {
  25999. source: "./media/characters/gliss/front.svg",
  26000. extra: 2347 / 2231,
  26001. bottom: 113 / 2462
  26002. }
  26003. },
  26004. },
  26005. [
  26006. {
  26007. name: "Normal",
  26008. height: math.unit(6.71, "feet"),
  26009. default: true
  26010. },
  26011. ]
  26012. ))
  26013. characterMakers.push(() => makeCharacter(
  26014. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  26015. {
  26016. side: {
  26017. height: math.unit(1.44, "m"),
  26018. weight: math.unit(80, "kg"),
  26019. name: "Side",
  26020. image: {
  26021. source: "./media/characters/dune-anderson/side.svg",
  26022. bottom: 49 / 1426
  26023. }
  26024. },
  26025. },
  26026. [
  26027. {
  26028. name: "Wolf-sized",
  26029. height: math.unit(1.44, "meters")
  26030. },
  26031. {
  26032. name: "Normal",
  26033. height: math.unit(5.05, "meters"),
  26034. default: true
  26035. },
  26036. {
  26037. name: "Big",
  26038. height: math.unit(14.4, "meters")
  26039. },
  26040. {
  26041. name: "Huge",
  26042. height: math.unit(144, "meters")
  26043. },
  26044. ]
  26045. ))
  26046. characterMakers.push(() => makeCharacter(
  26047. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  26048. {
  26049. front: {
  26050. height: math.unit(7, "feet"),
  26051. weight: math.unit(425, "lb"),
  26052. name: "Front",
  26053. image: {
  26054. source: "./media/characters/hind/front.svg",
  26055. extra: 2091 / 1860,
  26056. bottom: 129 / 2220
  26057. }
  26058. },
  26059. back: {
  26060. height: math.unit(7, "feet"),
  26061. weight: math.unit(425, "lb"),
  26062. name: "Back",
  26063. image: {
  26064. source: "./media/characters/hind/back.svg",
  26065. extra: 2091 / 1860,
  26066. bottom: 24.6 / 2309
  26067. }
  26068. },
  26069. tail: {
  26070. height: math.unit(2.8, "feet"),
  26071. name: "Tail",
  26072. image: {
  26073. source: "./media/characters/hind/tail.svg"
  26074. }
  26075. },
  26076. head: {
  26077. height: math.unit(2.55, "feet"),
  26078. name: "Head",
  26079. image: {
  26080. source: "./media/characters/hind/head.svg"
  26081. }
  26082. },
  26083. },
  26084. [
  26085. {
  26086. name: "XS",
  26087. height: math.unit(0.7, "feet")
  26088. },
  26089. {
  26090. name: "Normal",
  26091. height: math.unit(7, "feet"),
  26092. default: true
  26093. },
  26094. {
  26095. name: "XL",
  26096. height: math.unit(70, "feet")
  26097. },
  26098. ]
  26099. ))
  26100. characterMakers.push(() => makeCharacter(
  26101. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  26102. {
  26103. front: {
  26104. height: math.unit(2.1, "meters"),
  26105. weight: math.unit(150, "lb"),
  26106. name: "Front",
  26107. image: {
  26108. source: "./media/characters/tharquench-sizestealer/front.svg",
  26109. extra: 1605/1470,
  26110. bottom: 36/1641
  26111. }
  26112. },
  26113. frontAlt: {
  26114. height: math.unit(2.1, "meters"),
  26115. weight: math.unit(150, "lb"),
  26116. name: "Front (Alt)",
  26117. image: {
  26118. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  26119. extra: 2318 / 2063,
  26120. bottom: 93.4 / 2410
  26121. }
  26122. },
  26123. },
  26124. [
  26125. {
  26126. name: "Nano",
  26127. height: math.unit(1, "mm")
  26128. },
  26129. {
  26130. name: "Micro",
  26131. height: math.unit(1, "cm")
  26132. },
  26133. {
  26134. name: "Normal",
  26135. height: math.unit(2.1, "meters"),
  26136. default: true
  26137. },
  26138. ]
  26139. ))
  26140. characterMakers.push(() => makeCharacter(
  26141. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  26142. {
  26143. front: {
  26144. height: math.unit(7 + 5 / 12, "feet"),
  26145. weight: math.unit(357, "lb"),
  26146. name: "Front",
  26147. image: {
  26148. source: "./media/characters/solex-draconov/front.svg",
  26149. extra: 1993 / 1865,
  26150. bottom: 117 / 2111
  26151. }
  26152. },
  26153. },
  26154. [
  26155. {
  26156. name: "Natural Height",
  26157. height: math.unit(7 + 5 / 12, "feet"),
  26158. default: true
  26159. },
  26160. {
  26161. name: "Macro",
  26162. height: math.unit(350, "feet")
  26163. },
  26164. {
  26165. name: "Macro+",
  26166. height: math.unit(1000, "feet")
  26167. },
  26168. {
  26169. name: "Megamacro",
  26170. height: math.unit(20, "km")
  26171. },
  26172. {
  26173. name: "Megamacro+",
  26174. height: math.unit(1000, "km")
  26175. },
  26176. {
  26177. name: "Gigamacro",
  26178. height: math.unit(2.5, "Gm")
  26179. },
  26180. {
  26181. name: "Teramacro",
  26182. height: math.unit(15, "Tm")
  26183. },
  26184. {
  26185. name: "Galactic",
  26186. height: math.unit(30, "Zm")
  26187. },
  26188. {
  26189. name: "Universal",
  26190. height: math.unit(21000, "Ym")
  26191. },
  26192. {
  26193. name: "Omniversal",
  26194. height: math.unit(9.861e50, "Ym")
  26195. },
  26196. {
  26197. name: "Existential",
  26198. height: math.unit(1e300, "meters")
  26199. },
  26200. ]
  26201. ))
  26202. characterMakers.push(() => makeCharacter(
  26203. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  26204. {
  26205. side: {
  26206. height: math.unit(25, "feet"),
  26207. weight: math.unit(90000, "lb"),
  26208. name: "Side",
  26209. image: {
  26210. source: "./media/characters/mandarax/side.svg",
  26211. extra: 614 / 332,
  26212. bottom: 55 / 630
  26213. }
  26214. },
  26215. lounging: {
  26216. height: math.unit(15.4, "feet"),
  26217. weight: math.unit(90000, "lb"),
  26218. name: "Lounging",
  26219. image: {
  26220. source: "./media/characters/mandarax/lounging.svg",
  26221. extra: 817/609,
  26222. bottom: 685/1502
  26223. }
  26224. },
  26225. head: {
  26226. height: math.unit(11.4, "feet"),
  26227. name: "Head",
  26228. image: {
  26229. source: "./media/characters/mandarax/head.svg"
  26230. }
  26231. },
  26232. belly: {
  26233. height: math.unit(33, "feet"),
  26234. name: "Belly",
  26235. capacity: math.unit(500, "people"),
  26236. image: {
  26237. source: "./media/characters/mandarax/belly.svg"
  26238. }
  26239. },
  26240. dick: {
  26241. height: math.unit(8.46, "feet"),
  26242. name: "Dick",
  26243. image: {
  26244. source: "./media/characters/mandarax/dick.svg"
  26245. }
  26246. },
  26247. top: {
  26248. height: math.unit(28, "meters"),
  26249. name: "Top",
  26250. image: {
  26251. source: "./media/characters/mandarax/top.svg"
  26252. }
  26253. },
  26254. },
  26255. [
  26256. {
  26257. name: "Normal",
  26258. height: math.unit(25, "feet"),
  26259. default: true
  26260. },
  26261. ]
  26262. ))
  26263. characterMakers.push(() => makeCharacter(
  26264. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  26265. {
  26266. front: {
  26267. height: math.unit(5, "feet"),
  26268. weight: math.unit(90, "lb"),
  26269. name: "Front",
  26270. image: {
  26271. source: "./media/characters/pixil/front.svg",
  26272. extra: 2000 / 1618,
  26273. bottom: 12.3 / 2011
  26274. }
  26275. },
  26276. },
  26277. [
  26278. {
  26279. name: "Normal",
  26280. height: math.unit(5, "feet"),
  26281. default: true
  26282. },
  26283. {
  26284. name: "Megamacro",
  26285. height: math.unit(10, "miles"),
  26286. },
  26287. ]
  26288. ))
  26289. characterMakers.push(() => makeCharacter(
  26290. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  26291. {
  26292. front: {
  26293. height: math.unit(7 + 2 / 12, "feet"),
  26294. weight: math.unit(200, "lb"),
  26295. name: "Front",
  26296. image: {
  26297. source: "./media/characters/angel/front.svg",
  26298. extra: 1830 / 1737,
  26299. bottom: 22.6 / 1854,
  26300. }
  26301. },
  26302. },
  26303. [
  26304. {
  26305. name: "Normal",
  26306. height: math.unit(7 + 2 / 12, "feet"),
  26307. default: true
  26308. },
  26309. {
  26310. name: "Macro",
  26311. height: math.unit(1000, "feet")
  26312. },
  26313. {
  26314. name: "Megamacro",
  26315. height: math.unit(2, "miles")
  26316. },
  26317. {
  26318. name: "Gigamacro",
  26319. height: math.unit(20, "earths")
  26320. },
  26321. ]
  26322. ))
  26323. characterMakers.push(() => makeCharacter(
  26324. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  26325. {
  26326. front: {
  26327. height: math.unit(5, "feet"),
  26328. weight: math.unit(180, "lb"),
  26329. name: "Front",
  26330. image: {
  26331. source: "./media/characters/mekana/front.svg",
  26332. extra: 1671 / 1605,
  26333. bottom: 3.5 / 1691
  26334. }
  26335. },
  26336. side: {
  26337. height: math.unit(5, "feet"),
  26338. weight: math.unit(180, "lb"),
  26339. name: "Side",
  26340. image: {
  26341. source: "./media/characters/mekana/side.svg",
  26342. extra: 1671 / 1605,
  26343. bottom: 3.5 / 1691
  26344. }
  26345. },
  26346. back: {
  26347. height: math.unit(5, "feet"),
  26348. weight: math.unit(180, "lb"),
  26349. name: "Back",
  26350. image: {
  26351. source: "./media/characters/mekana/back.svg",
  26352. extra: 1671 / 1605,
  26353. bottom: 3.5 / 1691
  26354. }
  26355. },
  26356. },
  26357. [
  26358. {
  26359. name: "Normal",
  26360. height: math.unit(5, "feet"),
  26361. default: true
  26362. },
  26363. ]
  26364. ))
  26365. characterMakers.push(() => makeCharacter(
  26366. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  26367. {
  26368. front: {
  26369. height: math.unit(4 + 6 / 12, "feet"),
  26370. weight: math.unit(80, "lb"),
  26371. name: "Front",
  26372. image: {
  26373. source: "./media/characters/pixie/front.svg",
  26374. extra: 1924 / 1825,
  26375. bottom: 22.4 / 1946
  26376. }
  26377. },
  26378. },
  26379. [
  26380. {
  26381. name: "Normal",
  26382. height: math.unit(4 + 6 / 12, "feet"),
  26383. default: true
  26384. },
  26385. {
  26386. name: "Macro",
  26387. height: math.unit(40, "feet")
  26388. },
  26389. ]
  26390. ))
  26391. characterMakers.push(() => makeCharacter(
  26392. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  26393. {
  26394. front: {
  26395. height: math.unit(2.1, "meters"),
  26396. weight: math.unit(200, "lb"),
  26397. name: "Front",
  26398. image: {
  26399. source: "./media/characters/the-lascivious/front.svg",
  26400. extra: 1 / 0.893,
  26401. bottom: 3.5 / 573.7
  26402. }
  26403. },
  26404. },
  26405. [
  26406. {
  26407. name: "Human Scale",
  26408. height: math.unit(2.1, "meters")
  26409. },
  26410. {
  26411. name: "Wolxi Scale",
  26412. height: math.unit(46.2, "m"),
  26413. default: true
  26414. },
  26415. {
  26416. name: "Boinker of Buildings",
  26417. height: math.unit(10, "km")
  26418. },
  26419. {
  26420. name: "Shagger of Skyscrapers",
  26421. height: math.unit(40, "km")
  26422. },
  26423. {
  26424. name: "Banger of Boroughs",
  26425. height: math.unit(4000, "km")
  26426. },
  26427. {
  26428. name: "Screwer of States",
  26429. height: math.unit(100000, "km")
  26430. },
  26431. {
  26432. name: "Pounder of Planets",
  26433. height: math.unit(2000000, "km")
  26434. },
  26435. ]
  26436. ))
  26437. characterMakers.push(() => makeCharacter(
  26438. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  26439. {
  26440. front: {
  26441. height: math.unit(6, "feet"),
  26442. weight: math.unit(150, "lb"),
  26443. name: "Front",
  26444. image: {
  26445. source: "./media/characters/aj/front.svg",
  26446. extra: 2039 / 1562,
  26447. bottom: 40 / 2079
  26448. }
  26449. },
  26450. },
  26451. [
  26452. {
  26453. name: "Normal",
  26454. height: math.unit(11 + 6 / 12, "feet"),
  26455. default: true
  26456. },
  26457. {
  26458. name: "Megamacro",
  26459. height: math.unit(60, "megameters")
  26460. },
  26461. ]
  26462. ))
  26463. characterMakers.push(() => makeCharacter(
  26464. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  26465. {
  26466. side: {
  26467. height: math.unit(31 + 8 / 12, "feet"),
  26468. weight: math.unit(75000, "kg"),
  26469. name: "Side",
  26470. image: {
  26471. source: "./media/characters/koros/side.svg",
  26472. extra: 1442 / 1297,
  26473. bottom: 122.7 / 1562
  26474. }
  26475. },
  26476. dicksKingsCrown: {
  26477. height: math.unit(6, "feet"),
  26478. name: "Dicks (King's Crown)",
  26479. image: {
  26480. source: "./media/characters/koros/dicks-kings-crown.svg"
  26481. }
  26482. },
  26483. dicksTailSet: {
  26484. height: math.unit(3, "feet"),
  26485. name: "Dicks (Tail Set)",
  26486. image: {
  26487. source: "./media/characters/koros/dicks-tail-set.svg"
  26488. }
  26489. },
  26490. dickCumming: {
  26491. height: math.unit(7.98, "feet"),
  26492. name: "Dick (Cumming)",
  26493. image: {
  26494. source: "./media/characters/koros/dick-cumming.svg"
  26495. }
  26496. },
  26497. dicksBack: {
  26498. height: math.unit(5.9, "feet"),
  26499. name: "Dicks (Back)",
  26500. image: {
  26501. source: "./media/characters/koros/dicks-back.svg"
  26502. }
  26503. },
  26504. dicksFront: {
  26505. height: math.unit(3.72, "feet"),
  26506. name: "Dicks (Front)",
  26507. image: {
  26508. source: "./media/characters/koros/dicks-front.svg"
  26509. }
  26510. },
  26511. dicksPeeking: {
  26512. height: math.unit(3.0, "feet"),
  26513. name: "Dicks (Peeking)",
  26514. image: {
  26515. source: "./media/characters/koros/dicks-peeking.svg"
  26516. }
  26517. },
  26518. eye: {
  26519. height: math.unit(1.7, "feet"),
  26520. name: "Eye",
  26521. image: {
  26522. source: "./media/characters/koros/eye.svg"
  26523. }
  26524. },
  26525. headFront: {
  26526. height: math.unit(11.69, "feet"),
  26527. name: "Head (Front)",
  26528. image: {
  26529. source: "./media/characters/koros/head-front.svg"
  26530. }
  26531. },
  26532. headSide: {
  26533. height: math.unit(14, "feet"),
  26534. name: "Head (Side)",
  26535. image: {
  26536. source: "./media/characters/koros/head-side.svg"
  26537. }
  26538. },
  26539. leg: {
  26540. height: math.unit(17, "feet"),
  26541. name: "Leg",
  26542. image: {
  26543. source: "./media/characters/koros/leg.svg"
  26544. }
  26545. },
  26546. mawSide: {
  26547. height: math.unit(12.8, "feet"),
  26548. name: "Maw (Side)",
  26549. image: {
  26550. source: "./media/characters/koros/maw-side.svg"
  26551. }
  26552. },
  26553. mawSpitting: {
  26554. height: math.unit(17, "feet"),
  26555. name: "Maw (Spitting)",
  26556. image: {
  26557. source: "./media/characters/koros/maw-spitting.svg"
  26558. }
  26559. },
  26560. slit: {
  26561. height: math.unit(2.8, "feet"),
  26562. name: "Slit",
  26563. image: {
  26564. source: "./media/characters/koros/slit.svg"
  26565. }
  26566. },
  26567. stomach: {
  26568. height: math.unit(6.8, "feet"),
  26569. capacity: math.unit(20, "people"),
  26570. name: "Stomach",
  26571. image: {
  26572. source: "./media/characters/koros/stomach.svg"
  26573. }
  26574. },
  26575. wingspanBottom: {
  26576. height: math.unit(114, "feet"),
  26577. name: "Wingspan (Bottom)",
  26578. image: {
  26579. source: "./media/characters/koros/wingspan-bottom.svg"
  26580. }
  26581. },
  26582. wingspanTop: {
  26583. height: math.unit(104, "feet"),
  26584. name: "Wingspan (Top)",
  26585. image: {
  26586. source: "./media/characters/koros/wingspan-top.svg"
  26587. }
  26588. },
  26589. },
  26590. [
  26591. {
  26592. name: "Normal",
  26593. height: math.unit(31 + 8 / 12, "feet"),
  26594. default: true
  26595. },
  26596. ]
  26597. ))
  26598. characterMakers.push(() => makeCharacter(
  26599. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  26600. {
  26601. front: {
  26602. height: math.unit(18 + 5 / 12, "feet"),
  26603. weight: math.unit(3750, "kg"),
  26604. name: "Front",
  26605. image: {
  26606. source: "./media/characters/vexx/front.svg",
  26607. extra: 426 / 396,
  26608. bottom: 31.5 / 458
  26609. }
  26610. },
  26611. maw: {
  26612. height: math.unit(6, "feet"),
  26613. name: "Maw",
  26614. image: {
  26615. source: "./media/characters/vexx/maw.svg"
  26616. }
  26617. },
  26618. },
  26619. [
  26620. {
  26621. name: "Normal",
  26622. height: math.unit(18 + 5 / 12, "feet"),
  26623. default: true
  26624. },
  26625. ]
  26626. ))
  26627. characterMakers.push(() => makeCharacter(
  26628. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  26629. {
  26630. front: {
  26631. height: math.unit(17 + 6 / 12, "feet"),
  26632. weight: math.unit(150, "lb"),
  26633. name: "Front",
  26634. image: {
  26635. source: "./media/characters/baadra/front.svg",
  26636. extra: 1694/1553,
  26637. bottom: 179/1873
  26638. }
  26639. },
  26640. frontAlt: {
  26641. height: math.unit(17 + 6 / 12, "feet"),
  26642. weight: math.unit(150, "lb"),
  26643. name: "Front (Alt)",
  26644. image: {
  26645. source: "./media/characters/baadra/front-alt.svg",
  26646. extra: 3137 / 2890,
  26647. bottom: 168.4 / 3305
  26648. }
  26649. },
  26650. back: {
  26651. height: math.unit(17 + 6 / 12, "feet"),
  26652. weight: math.unit(150, "lb"),
  26653. name: "Back",
  26654. image: {
  26655. source: "./media/characters/baadra/back.svg",
  26656. extra: 3142 / 2890,
  26657. bottom: 220 / 3371
  26658. }
  26659. },
  26660. head: {
  26661. height: math.unit(5.45, "feet"),
  26662. name: "Head",
  26663. image: {
  26664. source: "./media/characters/baadra/head.svg"
  26665. }
  26666. },
  26667. headAngry: {
  26668. height: math.unit(4.95, "feet"),
  26669. name: "Head (Angry)",
  26670. image: {
  26671. source: "./media/characters/baadra/head-angry.svg"
  26672. }
  26673. },
  26674. headOpen: {
  26675. height: math.unit(6, "feet"),
  26676. name: "Head (Open)",
  26677. image: {
  26678. source: "./media/characters/baadra/head-open.svg"
  26679. }
  26680. },
  26681. },
  26682. [
  26683. {
  26684. name: "Normal",
  26685. height: math.unit(17 + 6 / 12, "feet"),
  26686. default: true
  26687. },
  26688. ]
  26689. ))
  26690. characterMakers.push(() => makeCharacter(
  26691. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  26692. {
  26693. front: {
  26694. height: math.unit(7 + 3 / 12, "feet"),
  26695. weight: math.unit(180, "lb"),
  26696. name: "Front",
  26697. image: {
  26698. source: "./media/characters/juri/front.svg",
  26699. extra: 1401 / 1237,
  26700. bottom: 18.5 / 1418
  26701. }
  26702. },
  26703. side: {
  26704. height: math.unit(7 + 3 / 12, "feet"),
  26705. weight: math.unit(180, "lb"),
  26706. name: "Side",
  26707. image: {
  26708. source: "./media/characters/juri/side.svg",
  26709. extra: 1424 / 1242,
  26710. bottom: 18.5 / 1447
  26711. }
  26712. },
  26713. sitting: {
  26714. height: math.unit(6, "feet"),
  26715. weight: math.unit(180, "lb"),
  26716. name: "Sitting",
  26717. image: {
  26718. source: "./media/characters/juri/sitting.svg",
  26719. extra: 1270 / 1143,
  26720. bottom: 100 / 1343
  26721. }
  26722. },
  26723. back: {
  26724. height: math.unit(7 + 3 / 12, "feet"),
  26725. weight: math.unit(180, "lb"),
  26726. name: "Back",
  26727. image: {
  26728. source: "./media/characters/juri/back.svg",
  26729. extra: 1377 / 1240,
  26730. bottom: 23.7 / 1405
  26731. }
  26732. },
  26733. maw: {
  26734. height: math.unit(2.8, "feet"),
  26735. name: "Maw",
  26736. image: {
  26737. source: "./media/characters/juri/maw.svg"
  26738. }
  26739. },
  26740. stomach: {
  26741. height: math.unit(0.89, "feet"),
  26742. capacity: math.unit(4, "liters"),
  26743. name: "Stomach",
  26744. image: {
  26745. source: "./media/characters/juri/stomach.svg"
  26746. }
  26747. },
  26748. },
  26749. [
  26750. {
  26751. name: "Normal",
  26752. height: math.unit(7 + 3 / 12, "feet"),
  26753. default: true
  26754. },
  26755. ]
  26756. ))
  26757. characterMakers.push(() => makeCharacter(
  26758. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  26759. {
  26760. fox: {
  26761. height: math.unit(5 + 6 / 12, "feet"),
  26762. weight: math.unit(140, "lb"),
  26763. name: "Fox",
  26764. image: {
  26765. source: "./media/characters/maxene-sita/fox.svg",
  26766. extra: 146 / 138,
  26767. bottom: 2.1 / 148.19
  26768. }
  26769. },
  26770. foxLaying: {
  26771. height: math.unit(1.70, "feet"),
  26772. weight: math.unit(140, "lb"),
  26773. name: "Fox (Laying)",
  26774. image: {
  26775. source: "./media/characters/maxene-sita/fox-laying.svg",
  26776. extra: 910 / 572,
  26777. bottom: 71 / 981
  26778. }
  26779. },
  26780. kitsune: {
  26781. height: math.unit(10, "feet"),
  26782. weight: math.unit(800, "lb"),
  26783. name: "Kitsune",
  26784. image: {
  26785. source: "./media/characters/maxene-sita/kitsune.svg",
  26786. extra: 185 / 176,
  26787. bottom: 4.7 / 189.9
  26788. }
  26789. },
  26790. hellhound: {
  26791. height: math.unit(10, "feet"),
  26792. weight: math.unit(700, "lb"),
  26793. name: "Hellhound",
  26794. image: {
  26795. source: "./media/characters/maxene-sita/hellhound.svg",
  26796. extra: 1600 / 1545,
  26797. bottom: 81 / 1681
  26798. }
  26799. },
  26800. },
  26801. [
  26802. {
  26803. name: "Normal",
  26804. height: math.unit(5 + 6 / 12, "feet"),
  26805. default: true
  26806. },
  26807. ]
  26808. ))
  26809. characterMakers.push(() => makeCharacter(
  26810. { name: "Maia", species: ["mew"], tags: ["feral"] },
  26811. {
  26812. front: {
  26813. height: math.unit(3 + 4 / 12, "feet"),
  26814. weight: math.unit(70, "lb"),
  26815. name: "Front",
  26816. image: {
  26817. source: "./media/characters/maia/front.svg",
  26818. extra: 227 / 219.5,
  26819. bottom: 40 / 267
  26820. }
  26821. },
  26822. back: {
  26823. height: math.unit(3 + 4 / 12, "feet"),
  26824. weight: math.unit(70, "lb"),
  26825. name: "Back",
  26826. image: {
  26827. source: "./media/characters/maia/back.svg",
  26828. extra: 237 / 225
  26829. }
  26830. },
  26831. },
  26832. [
  26833. {
  26834. name: "Normal",
  26835. height: math.unit(3 + 4 / 12, "feet"),
  26836. default: true
  26837. },
  26838. ]
  26839. ))
  26840. characterMakers.push(() => makeCharacter(
  26841. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  26842. {
  26843. front: {
  26844. height: math.unit(5 + 10 / 12, "feet"),
  26845. weight: math.unit(197, "lb"),
  26846. name: "Front",
  26847. image: {
  26848. source: "./media/characters/jabaro/front.svg",
  26849. extra: 225 / 216,
  26850. bottom: 5.06 / 230
  26851. }
  26852. },
  26853. back: {
  26854. height: math.unit(5 + 10 / 12, "feet"),
  26855. weight: math.unit(197, "lb"),
  26856. name: "Back",
  26857. image: {
  26858. source: "./media/characters/jabaro/back.svg",
  26859. extra: 225 / 219,
  26860. bottom: 1.9 / 227
  26861. }
  26862. },
  26863. },
  26864. [
  26865. {
  26866. name: "Normal",
  26867. height: math.unit(5 + 10 / 12, "feet"),
  26868. default: true
  26869. },
  26870. ]
  26871. ))
  26872. characterMakers.push(() => makeCharacter(
  26873. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  26874. {
  26875. front: {
  26876. height: math.unit(5 + 8 / 12, "feet"),
  26877. weight: math.unit(139, "lb"),
  26878. name: "Front",
  26879. image: {
  26880. source: "./media/characters/risa/front.svg",
  26881. extra: 270 / 260,
  26882. bottom: 11.2 / 282
  26883. }
  26884. },
  26885. back: {
  26886. height: math.unit(5 + 8 / 12, "feet"),
  26887. weight: math.unit(139, "lb"),
  26888. name: "Back",
  26889. image: {
  26890. source: "./media/characters/risa/back.svg",
  26891. extra: 264 / 255,
  26892. bottom: 4 / 268
  26893. }
  26894. },
  26895. },
  26896. [
  26897. {
  26898. name: "Normal",
  26899. height: math.unit(5 + 8 / 12, "feet"),
  26900. default: true
  26901. },
  26902. ]
  26903. ))
  26904. characterMakers.push(() => makeCharacter(
  26905. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  26906. {
  26907. front: {
  26908. height: math.unit(2 + 11 / 12, "feet"),
  26909. weight: math.unit(30, "lb"),
  26910. name: "Front",
  26911. image: {
  26912. source: "./media/characters/weatley/front.svg",
  26913. bottom: 10.7 / 414,
  26914. extra: 403.5 / 362
  26915. }
  26916. },
  26917. back: {
  26918. height: math.unit(2 + 11 / 12, "feet"),
  26919. weight: math.unit(30, "lb"),
  26920. name: "Back",
  26921. image: {
  26922. source: "./media/characters/weatley/back.svg",
  26923. bottom: 10.7 / 414,
  26924. extra: 403.5 / 362
  26925. }
  26926. },
  26927. },
  26928. [
  26929. {
  26930. name: "Normal",
  26931. height: math.unit(2 + 11 / 12, "feet"),
  26932. default: true
  26933. },
  26934. ]
  26935. ))
  26936. characterMakers.push(() => makeCharacter(
  26937. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  26938. {
  26939. front: {
  26940. height: math.unit(5 + 2 / 12, "feet"),
  26941. weight: math.unit(50, "kg"),
  26942. name: "Front",
  26943. image: {
  26944. source: "./media/characters/mercury-crescent/front.svg",
  26945. extra: 1088 / 1033,
  26946. bottom: 18.9 / 1109
  26947. }
  26948. },
  26949. },
  26950. [
  26951. {
  26952. name: "Normal",
  26953. height: math.unit(5 + 2 / 12, "feet"),
  26954. default: true
  26955. },
  26956. ]
  26957. ))
  26958. characterMakers.push(() => makeCharacter(
  26959. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  26960. {
  26961. front: {
  26962. height: math.unit(2, "feet"),
  26963. weight: math.unit(15, "kg"),
  26964. name: "Front",
  26965. image: {
  26966. source: "./media/characters/diamond-jones/front.svg",
  26967. extra: 727/723,
  26968. bottom: 46/773
  26969. }
  26970. },
  26971. },
  26972. [
  26973. {
  26974. name: "Normal",
  26975. height: math.unit(2, "feet"),
  26976. default: true
  26977. },
  26978. ]
  26979. ))
  26980. characterMakers.push(() => makeCharacter(
  26981. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  26982. {
  26983. front: {
  26984. height: math.unit(3, "feet"),
  26985. weight: math.unit(30, "kg"),
  26986. name: "Front",
  26987. image: {
  26988. source: "./media/characters/sweet-bit/front.svg",
  26989. extra: 675 / 567,
  26990. bottom: 27.7 / 703
  26991. }
  26992. },
  26993. },
  26994. [
  26995. {
  26996. name: "Normal",
  26997. height: math.unit(3, "feet"),
  26998. default: true
  26999. },
  27000. ]
  27001. ))
  27002. characterMakers.push(() => makeCharacter(
  27003. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  27004. {
  27005. side: {
  27006. height: math.unit(9.178, "feet"),
  27007. weight: math.unit(500, "lb"),
  27008. name: "Side",
  27009. image: {
  27010. source: "./media/characters/umbrazen/side.svg",
  27011. extra: 1730 / 1473,
  27012. bottom: 34.6 / 1765
  27013. }
  27014. },
  27015. },
  27016. [
  27017. {
  27018. name: "Normal",
  27019. height: math.unit(9.178, "feet"),
  27020. default: true
  27021. },
  27022. ]
  27023. ))
  27024. characterMakers.push(() => makeCharacter(
  27025. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  27026. {
  27027. front: {
  27028. height: math.unit(10, "feet"),
  27029. weight: math.unit(750, "lb"),
  27030. name: "Front",
  27031. image: {
  27032. source: "./media/characters/arlist/front.svg",
  27033. extra: 961 / 778,
  27034. bottom: 6.2 / 986
  27035. }
  27036. },
  27037. },
  27038. [
  27039. {
  27040. name: "Normal",
  27041. height: math.unit(10, "feet"),
  27042. default: true
  27043. },
  27044. ]
  27045. ))
  27046. characterMakers.push(() => makeCharacter(
  27047. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  27048. {
  27049. front: {
  27050. height: math.unit(5 + 1 / 12, "feet"),
  27051. weight: math.unit(110, "lb"),
  27052. name: "Front",
  27053. image: {
  27054. source: "./media/characters/aradel/front.svg",
  27055. extra: 324 / 303,
  27056. bottom: 3.6 / 329.4
  27057. }
  27058. },
  27059. },
  27060. [
  27061. {
  27062. name: "Normal",
  27063. height: math.unit(5 + 1 / 12, "feet"),
  27064. default: true
  27065. },
  27066. ]
  27067. ))
  27068. characterMakers.push(() => makeCharacter(
  27069. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  27070. {
  27071. dressed: {
  27072. height: math.unit(3 + 8 / 12, "feet"),
  27073. weight: math.unit(50, "lb"),
  27074. name: "Dressed",
  27075. image: {
  27076. source: "./media/characters/serryn/dressed.svg",
  27077. extra: 1792 / 1656,
  27078. bottom: 43.5 / 1840
  27079. }
  27080. },
  27081. nude: {
  27082. height: math.unit(3 + 8 / 12, "feet"),
  27083. weight: math.unit(50, "lb"),
  27084. name: "Nude",
  27085. image: {
  27086. source: "./media/characters/serryn/nude.svg",
  27087. extra: 1792 / 1656,
  27088. bottom: 43.5 / 1840
  27089. }
  27090. },
  27091. },
  27092. [
  27093. {
  27094. name: "Normal",
  27095. height: math.unit(3 + 8 / 12, "feet"),
  27096. default: true
  27097. },
  27098. ]
  27099. ))
  27100. characterMakers.push(() => makeCharacter(
  27101. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  27102. {
  27103. front: {
  27104. height: math.unit(7 + 10 / 12, "feet"),
  27105. weight: math.unit(255, "lb"),
  27106. name: "Front",
  27107. image: {
  27108. source: "./media/characters/xavier-thyme/front.svg",
  27109. extra: 3733 / 3642,
  27110. bottom: 131 / 3869
  27111. }
  27112. },
  27113. frontRaven: {
  27114. height: math.unit(7 + 10 / 12, "feet"),
  27115. weight: math.unit(255, "lb"),
  27116. name: "Front (Raven)",
  27117. image: {
  27118. source: "./media/characters/xavier-thyme/front-raven.svg",
  27119. extra: 4385 / 3642,
  27120. bottom: 131 / 4517
  27121. }
  27122. },
  27123. },
  27124. [
  27125. {
  27126. name: "Normal",
  27127. height: math.unit(7 + 10 / 12, "feet"),
  27128. default: true
  27129. },
  27130. ]
  27131. ))
  27132. characterMakers.push(() => makeCharacter(
  27133. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  27134. {
  27135. front: {
  27136. height: math.unit(1.6, "m"),
  27137. weight: math.unit(50, "kg"),
  27138. name: "Front",
  27139. image: {
  27140. source: "./media/characters/kiki/front.svg",
  27141. extra: 4682 / 3610,
  27142. bottom: 115 / 4777
  27143. }
  27144. },
  27145. },
  27146. [
  27147. {
  27148. name: "Normal",
  27149. height: math.unit(1.6, "meters"),
  27150. default: true
  27151. },
  27152. ]
  27153. ))
  27154. characterMakers.push(() => makeCharacter(
  27155. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  27156. {
  27157. front: {
  27158. height: math.unit(50, "m"),
  27159. weight: math.unit(500, "tonnes"),
  27160. name: "Front",
  27161. image: {
  27162. source: "./media/characters/ryoko/front.svg",
  27163. extra: 4632 / 3926,
  27164. bottom: 193 / 4823
  27165. }
  27166. },
  27167. },
  27168. [
  27169. {
  27170. name: "Normal",
  27171. height: math.unit(50, "meters"),
  27172. default: true
  27173. },
  27174. ]
  27175. ))
  27176. characterMakers.push(() => makeCharacter(
  27177. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  27178. {
  27179. front: {
  27180. height: math.unit(30, "m"),
  27181. weight: math.unit(22, "tonnes"),
  27182. name: "Front",
  27183. image: {
  27184. source: "./media/characters/elio/front.svg",
  27185. extra: 4582 / 3720,
  27186. bottom: 236 / 4828
  27187. }
  27188. },
  27189. },
  27190. [
  27191. {
  27192. name: "Normal",
  27193. height: math.unit(30, "meters"),
  27194. default: true
  27195. },
  27196. ]
  27197. ))
  27198. characterMakers.push(() => makeCharacter(
  27199. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  27200. {
  27201. front: {
  27202. height: math.unit(6 + 3 / 12, "feet"),
  27203. weight: math.unit(120, "lb"),
  27204. name: "Front",
  27205. image: {
  27206. source: "./media/characters/azura/front.svg",
  27207. extra: 1149 / 1135,
  27208. bottom: 45 / 1194
  27209. }
  27210. },
  27211. frontClothed: {
  27212. height: math.unit(6 + 3 / 12, "feet"),
  27213. weight: math.unit(120, "lb"),
  27214. name: "Front (Clothed)",
  27215. image: {
  27216. source: "./media/characters/azura/front-clothed.svg",
  27217. extra: 1149 / 1135,
  27218. bottom: 45 / 1194
  27219. }
  27220. },
  27221. },
  27222. [
  27223. {
  27224. name: "Normal",
  27225. height: math.unit(6 + 3 / 12, "feet"),
  27226. default: true
  27227. },
  27228. {
  27229. name: "Macro",
  27230. height: math.unit(20 + 6 / 12, "feet")
  27231. },
  27232. {
  27233. name: "Megamacro",
  27234. height: math.unit(12, "miles")
  27235. },
  27236. {
  27237. name: "Gigamacro",
  27238. height: math.unit(10000, "miles")
  27239. },
  27240. {
  27241. name: "Teramacro",
  27242. height: math.unit(900000, "miles")
  27243. },
  27244. ]
  27245. ))
  27246. characterMakers.push(() => makeCharacter(
  27247. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  27248. {
  27249. front: {
  27250. height: math.unit(12, "feet"),
  27251. weight: math.unit(1, "ton"),
  27252. capacity: math.unit(660000, "gallons"),
  27253. name: "Front",
  27254. image: {
  27255. source: "./media/characters/zeus/front.svg",
  27256. extra: 5005 / 4717,
  27257. bottom: 363 / 5388
  27258. }
  27259. },
  27260. },
  27261. [
  27262. {
  27263. name: "Normal",
  27264. height: math.unit(12, "feet")
  27265. },
  27266. {
  27267. name: "Preferred Size",
  27268. height: math.unit(0.5, "miles"),
  27269. default: true
  27270. },
  27271. {
  27272. name: "Giga Horse",
  27273. height: math.unit(300, "miles")
  27274. },
  27275. {
  27276. name: "Riding Planets",
  27277. height: math.unit(30, "megameters")
  27278. },
  27279. {
  27280. name: "Cosmic Giant",
  27281. height: math.unit(3, "zettameters")
  27282. },
  27283. {
  27284. name: "Breeding God",
  27285. height: math.unit(9.92e22, "yottameters")
  27286. },
  27287. ]
  27288. ))
  27289. characterMakers.push(() => makeCharacter(
  27290. { name: "Fang", species: ["monster"], tags: ["feral"] },
  27291. {
  27292. side: {
  27293. height: math.unit(9, "feet"),
  27294. weight: math.unit(1500, "kg"),
  27295. name: "Side",
  27296. image: {
  27297. source: "./media/characters/fang/side.svg",
  27298. extra: 924 / 866,
  27299. bottom: 47.5 / 972.3
  27300. }
  27301. },
  27302. },
  27303. [
  27304. {
  27305. name: "Normal",
  27306. height: math.unit(9, "feet"),
  27307. default: true
  27308. },
  27309. {
  27310. name: "Macro",
  27311. height: math.unit(75 + 6 / 12, "feet")
  27312. },
  27313. {
  27314. name: "Teramacro",
  27315. height: math.unit(50000, "miles")
  27316. },
  27317. ]
  27318. ))
  27319. characterMakers.push(() => makeCharacter(
  27320. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  27321. {
  27322. front: {
  27323. height: math.unit(10, "feet"),
  27324. weight: math.unit(2, "tons"),
  27325. name: "Front",
  27326. image: {
  27327. source: "./media/characters/rekhit/front.svg",
  27328. extra: 2796 / 2590,
  27329. bottom: 225 / 3022
  27330. }
  27331. },
  27332. },
  27333. [
  27334. {
  27335. name: "Normal",
  27336. height: math.unit(10, "feet"),
  27337. default: true
  27338. },
  27339. {
  27340. name: "Macro",
  27341. height: math.unit(500, "feet")
  27342. },
  27343. ]
  27344. ))
  27345. characterMakers.push(() => makeCharacter(
  27346. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  27347. {
  27348. front: {
  27349. height: math.unit(7 + 6.451 / 12, "feet"),
  27350. weight: math.unit(310, "lb"),
  27351. name: "Front",
  27352. image: {
  27353. source: "./media/characters/dahlia-verrick/front.svg",
  27354. extra: 1488 / 1365,
  27355. bottom: 6.2 / 1495
  27356. }
  27357. },
  27358. back: {
  27359. height: math.unit(7 + 6.451 / 12, "feet"),
  27360. weight: math.unit(310, "lb"),
  27361. name: "Back",
  27362. image: {
  27363. source: "./media/characters/dahlia-verrick/back.svg",
  27364. extra: 1472 / 1351,
  27365. bottom: 5.28 / 1477
  27366. }
  27367. },
  27368. frontBusiness: {
  27369. height: math.unit(7 + 6.451 / 12, "feet"),
  27370. weight: math.unit(200, "lb"),
  27371. name: "Front (Business)",
  27372. image: {
  27373. source: "./media/characters/dahlia-verrick/front-business.svg",
  27374. extra: 1478 / 1381,
  27375. bottom: 5.5 / 1484
  27376. }
  27377. },
  27378. frontCasual: {
  27379. height: math.unit(7 + 6.451 / 12, "feet"),
  27380. weight: math.unit(200, "lb"),
  27381. name: "Front (Casual)",
  27382. image: {
  27383. source: "./media/characters/dahlia-verrick/front-casual.svg",
  27384. extra: 1478 / 1381,
  27385. bottom: 5.5 / 1484
  27386. }
  27387. },
  27388. },
  27389. [
  27390. {
  27391. name: "Travel-Sized",
  27392. height: math.unit(7.45, "inches")
  27393. },
  27394. {
  27395. name: "Normal",
  27396. height: math.unit(7 + 6.451 / 12, "feet"),
  27397. default: true
  27398. },
  27399. {
  27400. name: "Hitting the Town",
  27401. height: math.unit(37 + 8 / 12, "feet")
  27402. },
  27403. {
  27404. name: "Stomp in the Suburbs",
  27405. height: math.unit(964 + 9.728 / 12, "feet")
  27406. },
  27407. {
  27408. name: "Sit on the City",
  27409. height: math.unit(61747 + 10.592 / 12, "feet")
  27410. },
  27411. {
  27412. name: "Glomp the Globe",
  27413. height: math.unit(252919327 + 4.832 / 12, "feet")
  27414. },
  27415. ]
  27416. ))
  27417. characterMakers.push(() => makeCharacter(
  27418. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  27419. {
  27420. front: {
  27421. height: math.unit(6 + 4 / 12, "feet"),
  27422. weight: math.unit(320, "lb"),
  27423. name: "Front",
  27424. image: {
  27425. source: "./media/characters/balina-mahigan/front.svg",
  27426. extra: 447 / 428,
  27427. bottom: 18 / 466
  27428. }
  27429. },
  27430. back: {
  27431. height: math.unit(6 + 4 / 12, "feet"),
  27432. weight: math.unit(320, "lb"),
  27433. name: "Back",
  27434. image: {
  27435. source: "./media/characters/balina-mahigan/back.svg",
  27436. extra: 445 / 428,
  27437. bottom: 4.07 / 448
  27438. }
  27439. },
  27440. arm: {
  27441. height: math.unit(1.88, "feet"),
  27442. name: "Arm",
  27443. image: {
  27444. source: "./media/characters/balina-mahigan/arm.svg"
  27445. }
  27446. },
  27447. backPort: {
  27448. height: math.unit(0.685, "feet"),
  27449. name: "Back Port",
  27450. image: {
  27451. source: "./media/characters/balina-mahigan/back-port.svg"
  27452. }
  27453. },
  27454. hoofpaw: {
  27455. height: math.unit(1.41, "feet"),
  27456. name: "Hoofpaw",
  27457. image: {
  27458. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  27459. }
  27460. },
  27461. leftHandBack: {
  27462. height: math.unit(0.938, "feet"),
  27463. name: "Left Hand (Back)",
  27464. image: {
  27465. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  27466. }
  27467. },
  27468. leftHandFront: {
  27469. height: math.unit(0.938, "feet"),
  27470. name: "Left Hand (Front)",
  27471. image: {
  27472. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  27473. }
  27474. },
  27475. rightHandBack: {
  27476. height: math.unit(0.95, "feet"),
  27477. name: "Right Hand (Back)",
  27478. image: {
  27479. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  27480. }
  27481. },
  27482. rightHandFront: {
  27483. height: math.unit(0.95, "feet"),
  27484. name: "Right Hand (Front)",
  27485. image: {
  27486. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  27487. }
  27488. },
  27489. },
  27490. [
  27491. {
  27492. name: "Normal",
  27493. height: math.unit(6 + 4 / 12, "feet"),
  27494. default: true
  27495. },
  27496. ]
  27497. ))
  27498. characterMakers.push(() => makeCharacter(
  27499. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  27500. {
  27501. front: {
  27502. height: math.unit(6, "feet"),
  27503. weight: math.unit(320, "lb"),
  27504. name: "Front",
  27505. image: {
  27506. source: "./media/characters/balina-mejeri/front.svg",
  27507. extra: 517 / 488,
  27508. bottom: 44.2 / 561
  27509. }
  27510. },
  27511. },
  27512. [
  27513. {
  27514. name: "Normal",
  27515. height: math.unit(6 + 4 / 12, "feet")
  27516. },
  27517. {
  27518. name: "Business",
  27519. height: math.unit(155, "feet"),
  27520. default: true
  27521. },
  27522. ]
  27523. ))
  27524. characterMakers.push(() => makeCharacter(
  27525. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  27526. {
  27527. kneeling: {
  27528. height: math.unit(6 + 4 / 12, "feet"),
  27529. weight: math.unit(300 * 20, "lb"),
  27530. name: "Kneeling",
  27531. image: {
  27532. source: "./media/characters/balbarian/kneeling.svg",
  27533. extra: 922 / 862,
  27534. bottom: 42.4 / 965
  27535. }
  27536. },
  27537. },
  27538. [
  27539. {
  27540. name: "Normal",
  27541. height: math.unit(6 + 4 / 12, "feet")
  27542. },
  27543. {
  27544. name: "Treasured",
  27545. height: math.unit(18 + 9 / 12, "feet"),
  27546. default: true
  27547. },
  27548. {
  27549. name: "Macro",
  27550. height: math.unit(900, "feet")
  27551. },
  27552. ]
  27553. ))
  27554. characterMakers.push(() => makeCharacter(
  27555. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  27556. {
  27557. front: {
  27558. height: math.unit(6 + 4 / 12, "feet"),
  27559. weight: math.unit(325, "lb"),
  27560. name: "Front",
  27561. image: {
  27562. source: "./media/characters/balina-amarini/front.svg",
  27563. extra: 415 / 403,
  27564. bottom: 19 / 433.4
  27565. }
  27566. },
  27567. back: {
  27568. height: math.unit(6 + 4 / 12, "feet"),
  27569. weight: math.unit(325, "lb"),
  27570. name: "Back",
  27571. image: {
  27572. source: "./media/characters/balina-amarini/back.svg",
  27573. extra: 415 / 403,
  27574. bottom: 13.5 / 432
  27575. }
  27576. },
  27577. overdrive: {
  27578. height: math.unit(6 + 4 / 12, "feet"),
  27579. weight: math.unit(400, "lb"),
  27580. name: "Overdrive",
  27581. image: {
  27582. source: "./media/characters/balina-amarini/overdrive.svg",
  27583. extra: 269 / 259,
  27584. bottom: 12 / 282
  27585. }
  27586. },
  27587. },
  27588. [
  27589. {
  27590. name: "Boom",
  27591. height: math.unit(9 + 10 / 12, "feet"),
  27592. default: true
  27593. },
  27594. {
  27595. name: "Macro",
  27596. height: math.unit(280, "feet")
  27597. },
  27598. ]
  27599. ))
  27600. characterMakers.push(() => makeCharacter(
  27601. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  27602. {
  27603. goddess: {
  27604. height: math.unit(600, "feet"),
  27605. weight: math.unit(2000000, "tons"),
  27606. name: "Goddess",
  27607. image: {
  27608. source: "./media/characters/lady-kubwa/goddess.svg",
  27609. extra: 1240.5 / 1223,
  27610. bottom: 22 / 1263
  27611. }
  27612. },
  27613. goddesser: {
  27614. height: math.unit(900, "feet"),
  27615. weight: math.unit(20000000, "lb"),
  27616. name: "Goddess-er",
  27617. image: {
  27618. source: "./media/characters/lady-kubwa/goddess-er.svg",
  27619. extra: 899 / 888,
  27620. bottom: 12.6 / 912
  27621. }
  27622. },
  27623. },
  27624. [
  27625. {
  27626. name: "Macro",
  27627. height: math.unit(600, "feet"),
  27628. default: true
  27629. },
  27630. {
  27631. name: "Megamacro",
  27632. height: math.unit(250, "miles")
  27633. },
  27634. ]
  27635. ))
  27636. characterMakers.push(() => makeCharacter(
  27637. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  27638. {
  27639. front: {
  27640. height: math.unit(7 + 7 / 12, "feet"),
  27641. weight: math.unit(250, "lb"),
  27642. name: "Front",
  27643. image: {
  27644. source: "./media/characters/tala-grovehorn/front.svg",
  27645. extra: 2636 / 2525,
  27646. bottom: 147 / 2781
  27647. }
  27648. },
  27649. back: {
  27650. height: math.unit(7 + 7 / 12, "feet"),
  27651. weight: math.unit(250, "lb"),
  27652. name: "Back",
  27653. image: {
  27654. source: "./media/characters/tala-grovehorn/back.svg",
  27655. extra: 2635 / 2539,
  27656. bottom: 100 / 2732.8
  27657. }
  27658. },
  27659. mouth: {
  27660. height: math.unit(1.15, "feet"),
  27661. name: "Mouth",
  27662. image: {
  27663. source: "./media/characters/tala-grovehorn/mouth.svg"
  27664. }
  27665. },
  27666. dick: {
  27667. height: math.unit(2.36, "feet"),
  27668. name: "Dick",
  27669. image: {
  27670. source: "./media/characters/tala-grovehorn/dick.svg"
  27671. }
  27672. },
  27673. slit: {
  27674. height: math.unit(0.61, "feet"),
  27675. name: "Slit",
  27676. image: {
  27677. source: "./media/characters/tala-grovehorn/slit.svg"
  27678. }
  27679. },
  27680. },
  27681. [
  27682. ]
  27683. ))
  27684. characterMakers.push(() => makeCharacter(
  27685. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  27686. {
  27687. front: {
  27688. height: math.unit(7 + 7 / 12, "feet"),
  27689. weight: math.unit(225, "lb"),
  27690. name: "Front",
  27691. image: {
  27692. source: "./media/characters/epona/front.svg",
  27693. extra: 2445 / 2290,
  27694. bottom: 251 / 2696
  27695. }
  27696. },
  27697. back: {
  27698. height: math.unit(7 + 7 / 12, "feet"),
  27699. weight: math.unit(225, "lb"),
  27700. name: "Back",
  27701. image: {
  27702. source: "./media/characters/epona/back.svg",
  27703. extra: 2546 / 2408,
  27704. bottom: 44 / 2589
  27705. }
  27706. },
  27707. genitals: {
  27708. height: math.unit(1.5, "feet"),
  27709. name: "Genitals",
  27710. image: {
  27711. source: "./media/characters/epona/genitals.svg"
  27712. }
  27713. },
  27714. },
  27715. [
  27716. {
  27717. name: "Normal",
  27718. height: math.unit(7 + 7 / 12, "feet"),
  27719. default: true
  27720. },
  27721. ]
  27722. ))
  27723. characterMakers.push(() => makeCharacter(
  27724. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  27725. {
  27726. front: {
  27727. height: math.unit(7, "feet"),
  27728. weight: math.unit(518, "lb"),
  27729. name: "Front",
  27730. image: {
  27731. source: "./media/characters/avia-bloodbourn/front.svg",
  27732. extra: 1466 / 1350,
  27733. bottom: 65 / 1527
  27734. }
  27735. },
  27736. },
  27737. [
  27738. ]
  27739. ))
  27740. characterMakers.push(() => makeCharacter(
  27741. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  27742. {
  27743. front: {
  27744. height: math.unit(9.35, "feet"),
  27745. weight: math.unit(600, "lb"),
  27746. name: "Front",
  27747. image: {
  27748. source: "./media/characters/amera/front.svg",
  27749. extra: 891 / 818,
  27750. bottom: 30 / 922.7
  27751. }
  27752. },
  27753. back: {
  27754. height: math.unit(9.35, "feet"),
  27755. weight: math.unit(600, "lb"),
  27756. name: "Back",
  27757. image: {
  27758. source: "./media/characters/amera/back.svg",
  27759. extra: 876 / 824,
  27760. bottom: 6.8 / 884
  27761. }
  27762. },
  27763. dick: {
  27764. height: math.unit(2.14, "feet"),
  27765. name: "Dick",
  27766. image: {
  27767. source: "./media/characters/amera/dick.svg"
  27768. }
  27769. },
  27770. },
  27771. [
  27772. {
  27773. name: "Normal",
  27774. height: math.unit(9.35, "feet"),
  27775. default: true
  27776. },
  27777. ]
  27778. ))
  27779. characterMakers.push(() => makeCharacter(
  27780. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  27781. {
  27782. kneeling: {
  27783. height: math.unit(3 + 4 / 12, "feet"),
  27784. weight: math.unit(90, "lb"),
  27785. name: "Kneeling",
  27786. image: {
  27787. source: "./media/characters/rosewen/kneeling.svg",
  27788. extra: 1835 / 1571,
  27789. bottom: 27.7 / 1862
  27790. }
  27791. },
  27792. },
  27793. [
  27794. {
  27795. name: "Normal",
  27796. height: math.unit(3 + 4 / 12, "feet"),
  27797. default: true
  27798. },
  27799. ]
  27800. ))
  27801. characterMakers.push(() => makeCharacter(
  27802. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  27803. {
  27804. front: {
  27805. height: math.unit(5 + 10 / 12, "feet"),
  27806. weight: math.unit(200, "lb"),
  27807. name: "Front",
  27808. image: {
  27809. source: "./media/characters/sabah/front.svg",
  27810. extra: 849 / 763,
  27811. bottom: 33.9 / 881
  27812. }
  27813. },
  27814. },
  27815. [
  27816. {
  27817. name: "Normal",
  27818. height: math.unit(5 + 10 / 12, "feet"),
  27819. default: true
  27820. },
  27821. ]
  27822. ))
  27823. characterMakers.push(() => makeCharacter(
  27824. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  27825. {
  27826. front: {
  27827. height: math.unit(3 + 5 / 12, "feet"),
  27828. weight: math.unit(40, "kg"),
  27829. name: "Front",
  27830. image: {
  27831. source: "./media/characters/purple-flame/front.svg",
  27832. extra: 1577 / 1412,
  27833. bottom: 97 / 1694
  27834. }
  27835. },
  27836. frontDressed: {
  27837. height: math.unit(3 + 5 / 12, "feet"),
  27838. weight: math.unit(40, "kg"),
  27839. name: "Front (Dressed)",
  27840. image: {
  27841. source: "./media/characters/purple-flame/front-dressed.svg",
  27842. extra: 1577 / 1412,
  27843. bottom: 97 / 1694
  27844. }
  27845. },
  27846. headphones: {
  27847. height: math.unit(0.85, "feet"),
  27848. name: "Headphones",
  27849. image: {
  27850. source: "./media/characters/purple-flame/headphones.svg"
  27851. }
  27852. },
  27853. },
  27854. [
  27855. {
  27856. name: "Really Small",
  27857. height: math.unit(5, "cm")
  27858. },
  27859. {
  27860. name: "Micro",
  27861. height: math.unit(1 + 5 / 12, "feet")
  27862. },
  27863. {
  27864. name: "Normal",
  27865. height: math.unit(3 + 5 / 12, "feet"),
  27866. default: true
  27867. },
  27868. {
  27869. name: "Minimacro",
  27870. height: math.unit(125, "feet")
  27871. },
  27872. {
  27873. name: "Macro",
  27874. height: math.unit(0.5, "miles")
  27875. },
  27876. {
  27877. name: "Megamacro",
  27878. height: math.unit(50, "miles")
  27879. },
  27880. {
  27881. name: "Gigantic",
  27882. height: math.unit(750, "miles")
  27883. },
  27884. {
  27885. name: "Planetary",
  27886. height: math.unit(15000, "miles")
  27887. },
  27888. ]
  27889. ))
  27890. characterMakers.push(() => makeCharacter(
  27891. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  27892. {
  27893. front: {
  27894. height: math.unit(14, "feet"),
  27895. weight: math.unit(959, "lb"),
  27896. name: "Front",
  27897. image: {
  27898. source: "./media/characters/arsenal/front.svg",
  27899. extra: 2357 / 2157,
  27900. bottom: 93 / 2458
  27901. }
  27902. },
  27903. },
  27904. [
  27905. {
  27906. name: "Normal",
  27907. height: math.unit(14, "feet"),
  27908. default: true
  27909. },
  27910. ]
  27911. ))
  27912. characterMakers.push(() => makeCharacter(
  27913. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  27914. {
  27915. front: {
  27916. height: math.unit(6, "feet"),
  27917. weight: math.unit(150, "lb"),
  27918. name: "Front",
  27919. image: {
  27920. source: "./media/characters/adira/front.svg",
  27921. extra: 1078 / 1029,
  27922. bottom: 87 / 1166
  27923. }
  27924. },
  27925. },
  27926. [
  27927. {
  27928. name: "Micro",
  27929. height: math.unit(4, "inches"),
  27930. default: true
  27931. },
  27932. {
  27933. name: "Macro",
  27934. height: math.unit(50, "feet")
  27935. },
  27936. ]
  27937. ))
  27938. characterMakers.push(() => makeCharacter(
  27939. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  27940. {
  27941. front: {
  27942. height: math.unit(16, "feet"),
  27943. weight: math.unit(1000, "lb"),
  27944. name: "Front",
  27945. image: {
  27946. source: "./media/characters/grim/front.svg",
  27947. extra: 622 / 614,
  27948. bottom: 18.1 / 642
  27949. }
  27950. },
  27951. back: {
  27952. height: math.unit(16, "feet"),
  27953. weight: math.unit(1000, "lb"),
  27954. name: "Back",
  27955. image: {
  27956. source: "./media/characters/grim/back.svg",
  27957. extra: 610.6 / 602,
  27958. bottom: 40.8 / 652
  27959. }
  27960. },
  27961. hunched: {
  27962. height: math.unit(9.75, "feet"),
  27963. weight: math.unit(1000, "lb"),
  27964. name: "Hunched",
  27965. image: {
  27966. source: "./media/characters/grim/hunched.svg",
  27967. extra: 304 / 297,
  27968. bottom: 35.4 / 394
  27969. }
  27970. },
  27971. },
  27972. [
  27973. {
  27974. name: "Normal",
  27975. height: math.unit(16, "feet"),
  27976. default: true
  27977. },
  27978. ]
  27979. ))
  27980. characterMakers.push(() => makeCharacter(
  27981. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  27982. {
  27983. front: {
  27984. height: math.unit(2.3, "meters"),
  27985. weight: math.unit(300, "lb"),
  27986. name: "Front",
  27987. image: {
  27988. source: "./media/characters/sinja/front-sfw.svg",
  27989. extra: 1393 / 1294,
  27990. bottom: 70 / 1463
  27991. }
  27992. },
  27993. frontNsfw: {
  27994. height: math.unit(2.3, "meters"),
  27995. weight: math.unit(300, "lb"),
  27996. name: "Front (NSFW)",
  27997. image: {
  27998. source: "./media/characters/sinja/front-nsfw.svg",
  27999. extra: 1393 / 1294,
  28000. bottom: 70 / 1463
  28001. }
  28002. },
  28003. back: {
  28004. height: math.unit(2.3, "meters"),
  28005. weight: math.unit(300, "lb"),
  28006. name: "Back",
  28007. image: {
  28008. source: "./media/characters/sinja/back.svg",
  28009. extra: 1393 / 1294,
  28010. bottom: 70 / 1463
  28011. }
  28012. },
  28013. head: {
  28014. height: math.unit(1.771, "feet"),
  28015. name: "Head",
  28016. image: {
  28017. source: "./media/characters/sinja/head.svg"
  28018. }
  28019. },
  28020. slit: {
  28021. height: math.unit(0.8, "feet"),
  28022. name: "Slit",
  28023. image: {
  28024. source: "./media/characters/sinja/slit.svg"
  28025. }
  28026. },
  28027. },
  28028. [
  28029. {
  28030. name: "Normal",
  28031. height: math.unit(2.3, "meters")
  28032. },
  28033. {
  28034. name: "Macro",
  28035. height: math.unit(91, "meters"),
  28036. default: true
  28037. },
  28038. {
  28039. name: "Megamacro",
  28040. height: math.unit(91440, "meters")
  28041. },
  28042. {
  28043. name: "Gigamacro",
  28044. height: math.unit(60960000, "meters")
  28045. },
  28046. {
  28047. name: "Teramacro",
  28048. height: math.unit(9144000000, "meters")
  28049. },
  28050. ]
  28051. ))
  28052. characterMakers.push(() => makeCharacter(
  28053. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  28054. {
  28055. front: {
  28056. height: math.unit(1.7, "meters"),
  28057. weight: math.unit(130, "lb"),
  28058. name: "Front",
  28059. image: {
  28060. source: "./media/characters/kyu/front.svg",
  28061. extra: 415 / 395,
  28062. bottom: 5 / 420
  28063. }
  28064. },
  28065. head: {
  28066. height: math.unit(1.75, "feet"),
  28067. name: "Head",
  28068. image: {
  28069. source: "./media/characters/kyu/head.svg"
  28070. }
  28071. },
  28072. foot: {
  28073. height: math.unit(0.81, "feet"),
  28074. name: "Foot",
  28075. image: {
  28076. source: "./media/characters/kyu/foot.svg"
  28077. }
  28078. },
  28079. },
  28080. [
  28081. {
  28082. name: "Normal",
  28083. height: math.unit(1.7, "meters")
  28084. },
  28085. {
  28086. name: "Macro",
  28087. height: math.unit(131, "feet"),
  28088. default: true
  28089. },
  28090. {
  28091. name: "Megamacro",
  28092. height: math.unit(91440, "meters")
  28093. },
  28094. {
  28095. name: "Gigamacro",
  28096. height: math.unit(60960000, "meters")
  28097. },
  28098. {
  28099. name: "Teramacro",
  28100. height: math.unit(9144000000, "meters")
  28101. },
  28102. ]
  28103. ))
  28104. characterMakers.push(() => makeCharacter(
  28105. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  28106. {
  28107. front: {
  28108. height: math.unit(7 + 1 / 12, "feet"),
  28109. weight: math.unit(250, "lb"),
  28110. name: "Front",
  28111. image: {
  28112. source: "./media/characters/joey/front.svg",
  28113. extra: 1791 / 1537,
  28114. bottom: 28 / 1816
  28115. }
  28116. },
  28117. },
  28118. [
  28119. {
  28120. name: "Micro",
  28121. height: math.unit(3, "inches")
  28122. },
  28123. {
  28124. name: "Normal",
  28125. height: math.unit(7 + 1 / 12, "feet"),
  28126. default: true
  28127. },
  28128. ]
  28129. ))
  28130. characterMakers.push(() => makeCharacter(
  28131. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  28132. {
  28133. front: {
  28134. height: math.unit(165, "cm"),
  28135. weight: math.unit(140, "lb"),
  28136. name: "Front",
  28137. image: {
  28138. source: "./media/characters/sam-evans/front.svg",
  28139. extra: 3417 / 3230,
  28140. bottom: 41.3 / 3417
  28141. }
  28142. },
  28143. frontSixTails: {
  28144. height: math.unit(165, "cm"),
  28145. weight: math.unit(140, "lb"),
  28146. name: "Front-six-tails",
  28147. image: {
  28148. source: "./media/characters/sam-evans/front-six-tails.svg",
  28149. extra: 3417 / 3230,
  28150. bottom: 41.3 / 3417
  28151. }
  28152. },
  28153. back: {
  28154. height: math.unit(165, "cm"),
  28155. weight: math.unit(140, "lb"),
  28156. name: "Back",
  28157. image: {
  28158. source: "./media/characters/sam-evans/back.svg",
  28159. extra: 3227 / 3032,
  28160. bottom: 6.8 / 3234
  28161. }
  28162. },
  28163. face: {
  28164. height: math.unit(0.68, "feet"),
  28165. name: "Face",
  28166. image: {
  28167. source: "./media/characters/sam-evans/face.svg"
  28168. }
  28169. },
  28170. },
  28171. [
  28172. {
  28173. name: "Normal",
  28174. height: math.unit(165, "cm"),
  28175. default: true
  28176. },
  28177. {
  28178. name: "Macro",
  28179. height: math.unit(100, "meters")
  28180. },
  28181. {
  28182. name: "Macro+",
  28183. height: math.unit(800, "meters")
  28184. },
  28185. {
  28186. name: "Macro++",
  28187. height: math.unit(3, "km")
  28188. },
  28189. {
  28190. name: "Macro+++",
  28191. height: math.unit(30, "km")
  28192. },
  28193. ]
  28194. ))
  28195. characterMakers.push(() => makeCharacter(
  28196. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  28197. {
  28198. front: {
  28199. height: math.unit(10, "feet"),
  28200. weight: math.unit(750, "lb"),
  28201. name: "Front",
  28202. image: {
  28203. source: "./media/characters/juliet-a/front.svg",
  28204. extra: 1766 / 1720,
  28205. bottom: 43 / 1809
  28206. }
  28207. },
  28208. back: {
  28209. height: math.unit(10, "feet"),
  28210. weight: math.unit(750, "lb"),
  28211. name: "Back",
  28212. image: {
  28213. source: "./media/characters/juliet-a/back.svg",
  28214. extra: 1781 / 1734,
  28215. bottom: 35 / 1810,
  28216. }
  28217. },
  28218. },
  28219. [
  28220. {
  28221. name: "Normal",
  28222. height: math.unit(10, "feet"),
  28223. default: true
  28224. },
  28225. {
  28226. name: "Dragon Form",
  28227. height: math.unit(250, "feet")
  28228. },
  28229. {
  28230. name: "Macro",
  28231. height: math.unit(1000, "feet")
  28232. },
  28233. {
  28234. name: "Megamacro",
  28235. height: math.unit(10000, "feet")
  28236. }
  28237. ]
  28238. ))
  28239. characterMakers.push(() => makeCharacter(
  28240. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  28241. {
  28242. regular: {
  28243. height: math.unit(7 + 3 / 12, "feet"),
  28244. weight: math.unit(260, "lb"),
  28245. name: "Regular",
  28246. image: {
  28247. source: "./media/characters/wild/regular.svg",
  28248. extra: 97.45 / 92,
  28249. bottom: 6.8 / 104.3
  28250. }
  28251. },
  28252. biggums: {
  28253. height: math.unit(8 + 6 / 12, "feet"),
  28254. weight: math.unit(425, "lb"),
  28255. name: "Biggums",
  28256. image: {
  28257. source: "./media/characters/wild/biggums.svg",
  28258. extra: 97.45 / 92,
  28259. bottom: 7.5 / 132.34
  28260. }
  28261. },
  28262. mawRegular: {
  28263. height: math.unit(1.24, "feet"),
  28264. name: "Maw (Regular)",
  28265. image: {
  28266. source: "./media/characters/wild/maw.svg"
  28267. }
  28268. },
  28269. mawBiggums: {
  28270. height: math.unit(1.47, "feet"),
  28271. name: "Maw (Biggums)",
  28272. image: {
  28273. source: "./media/characters/wild/maw.svg"
  28274. }
  28275. },
  28276. },
  28277. [
  28278. {
  28279. name: "Normal",
  28280. height: math.unit(7 + 3 / 12, "feet"),
  28281. default: true
  28282. },
  28283. ]
  28284. ))
  28285. characterMakers.push(() => makeCharacter(
  28286. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  28287. {
  28288. front: {
  28289. height: math.unit(2.5, "meters"),
  28290. weight: math.unit(200, "kg"),
  28291. name: "Front",
  28292. image: {
  28293. source: "./media/characters/vidar/front.svg",
  28294. extra: 2994 / 2795,
  28295. bottom: 56 / 3061
  28296. }
  28297. },
  28298. back: {
  28299. height: math.unit(2.5, "meters"),
  28300. weight: math.unit(200, "kg"),
  28301. name: "Back",
  28302. image: {
  28303. source: "./media/characters/vidar/back.svg",
  28304. extra: 3131 / 2928,
  28305. bottom: 13.5 / 3141.5
  28306. }
  28307. },
  28308. feral: {
  28309. height: math.unit(2.5, "meters"),
  28310. weight: math.unit(2000, "kg"),
  28311. name: "Feral",
  28312. image: {
  28313. source: "./media/characters/vidar/feral.svg",
  28314. extra: 2790 / 1765,
  28315. bottom: 6 / 2796
  28316. }
  28317. },
  28318. },
  28319. [
  28320. {
  28321. name: "Normal",
  28322. height: math.unit(2.5, "meters"),
  28323. default: true
  28324. },
  28325. {
  28326. name: "Macro",
  28327. height: math.unit(100, "meters")
  28328. },
  28329. ]
  28330. ))
  28331. characterMakers.push(() => makeCharacter(
  28332. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  28333. {
  28334. front: {
  28335. height: math.unit(5 + 9 / 12, "feet"),
  28336. weight: math.unit(120, "lb"),
  28337. name: "Front",
  28338. image: {
  28339. source: "./media/characters/ash/front.svg",
  28340. extra: 2189 / 1961,
  28341. bottom: 5.2 / 2194
  28342. }
  28343. },
  28344. },
  28345. [
  28346. {
  28347. name: "Normal",
  28348. height: math.unit(5 + 9 / 12, "feet"),
  28349. default: true
  28350. },
  28351. ]
  28352. ))
  28353. characterMakers.push(() => makeCharacter(
  28354. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  28355. {
  28356. front: {
  28357. height: math.unit(9, "feet"),
  28358. weight: math.unit(10000, "lb"),
  28359. name: "Front",
  28360. image: {
  28361. source: "./media/characters/gygabite/front.svg",
  28362. bottom: 31.7 / 537.8,
  28363. extra: 505 / 370
  28364. }
  28365. },
  28366. },
  28367. [
  28368. {
  28369. name: "Normal",
  28370. height: math.unit(9, "feet"),
  28371. default: true
  28372. },
  28373. ]
  28374. ))
  28375. characterMakers.push(() => makeCharacter(
  28376. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  28377. {
  28378. front: {
  28379. height: math.unit(12, "feet"),
  28380. weight: math.unit(35000, "lb"),
  28381. name: "Front",
  28382. image: {
  28383. source: "./media/characters/p0tat0/front.svg",
  28384. extra: 1065 / 921,
  28385. bottom: 55.7 / 1121.25
  28386. }
  28387. },
  28388. },
  28389. [
  28390. {
  28391. name: "Normal",
  28392. height: math.unit(12, "feet"),
  28393. default: true
  28394. },
  28395. ]
  28396. ))
  28397. characterMakers.push(() => makeCharacter(
  28398. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  28399. {
  28400. side: {
  28401. height: math.unit(6.5, "feet"),
  28402. weight: math.unit(800, "lb"),
  28403. name: "Side",
  28404. image: {
  28405. source: "./media/characters/dusk/side.svg",
  28406. extra: 615 / 373,
  28407. bottom: 53 / 664
  28408. }
  28409. },
  28410. sitting: {
  28411. height: math.unit(7, "feet"),
  28412. weight: math.unit(800, "lb"),
  28413. name: "Sitting",
  28414. image: {
  28415. source: "./media/characters/dusk/sitting.svg",
  28416. extra: 753 / 425,
  28417. bottom: 33 / 774
  28418. }
  28419. },
  28420. head: {
  28421. height: math.unit(6.1, "feet"),
  28422. name: "Head",
  28423. image: {
  28424. source: "./media/characters/dusk/head.svg"
  28425. }
  28426. },
  28427. },
  28428. [
  28429. {
  28430. name: "Normal",
  28431. height: math.unit(7, "feet"),
  28432. default: true
  28433. },
  28434. ]
  28435. ))
  28436. characterMakers.push(() => makeCharacter(
  28437. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  28438. {
  28439. front: {
  28440. height: math.unit(15, "feet"),
  28441. weight: math.unit(7000, "lb"),
  28442. name: "Front",
  28443. image: {
  28444. source: "./media/characters/jay-direwolf/front.svg",
  28445. extra: 1810 / 1732,
  28446. bottom: 66 / 1892
  28447. }
  28448. },
  28449. },
  28450. [
  28451. {
  28452. name: "Normal",
  28453. height: math.unit(15, "feet"),
  28454. default: true
  28455. },
  28456. ]
  28457. ))
  28458. characterMakers.push(() => makeCharacter(
  28459. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  28460. {
  28461. front: {
  28462. height: math.unit(4 + 9 / 12, "feet"),
  28463. weight: math.unit(130, "lb"),
  28464. name: "Front",
  28465. image: {
  28466. source: "./media/characters/anchovie/front.svg",
  28467. extra: 382 / 350,
  28468. bottom: 25 / 409
  28469. }
  28470. },
  28471. back: {
  28472. height: math.unit(4 + 9 / 12, "feet"),
  28473. weight: math.unit(130, "lb"),
  28474. name: "Back",
  28475. image: {
  28476. source: "./media/characters/anchovie/back.svg",
  28477. extra: 385 / 352,
  28478. bottom: 16.6 / 402
  28479. }
  28480. },
  28481. frontDressed: {
  28482. height: math.unit(4 + 9 / 12, "feet"),
  28483. weight: math.unit(130, "lb"),
  28484. name: "Front (Dressed)",
  28485. image: {
  28486. source: "./media/characters/anchovie/front-dressed.svg",
  28487. extra: 382 / 350,
  28488. bottom: 25 / 409
  28489. }
  28490. },
  28491. backDressed: {
  28492. height: math.unit(4 + 9 / 12, "feet"),
  28493. weight: math.unit(130, "lb"),
  28494. name: "Back (Dressed)",
  28495. image: {
  28496. source: "./media/characters/anchovie/back-dressed.svg",
  28497. extra: 385 / 352,
  28498. bottom: 16.6 / 402
  28499. }
  28500. },
  28501. },
  28502. [
  28503. {
  28504. name: "Micro",
  28505. height: math.unit(6.4, "inches")
  28506. },
  28507. {
  28508. name: "Normal",
  28509. height: math.unit(4 + 9 / 12, "feet"),
  28510. default: true
  28511. },
  28512. ]
  28513. ))
  28514. characterMakers.push(() => makeCharacter(
  28515. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  28516. {
  28517. front: {
  28518. height: math.unit(2, "meters"),
  28519. weight: math.unit(180, "lb"),
  28520. name: "Front",
  28521. image: {
  28522. source: "./media/characters/acidrenamon/front.svg",
  28523. extra: 987 / 890,
  28524. bottom: 22.8 / 1009
  28525. }
  28526. },
  28527. back: {
  28528. height: math.unit(2, "meters"),
  28529. weight: math.unit(180, "lb"),
  28530. name: "Back",
  28531. image: {
  28532. source: "./media/characters/acidrenamon/back.svg",
  28533. extra: 983 / 891,
  28534. bottom: 8.4 / 992
  28535. }
  28536. },
  28537. head: {
  28538. height: math.unit(1.92, "feet"),
  28539. name: "Head",
  28540. image: {
  28541. source: "./media/characters/acidrenamon/head.svg"
  28542. }
  28543. },
  28544. rump: {
  28545. height: math.unit(1.72, "feet"),
  28546. name: "Rump",
  28547. image: {
  28548. source: "./media/characters/acidrenamon/rump.svg"
  28549. }
  28550. },
  28551. tail: {
  28552. height: math.unit(4.2, "feet"),
  28553. name: "Tail",
  28554. image: {
  28555. source: "./media/characters/acidrenamon/tail.svg"
  28556. }
  28557. },
  28558. },
  28559. [
  28560. {
  28561. name: "Normal",
  28562. height: math.unit(2, "meters"),
  28563. default: true
  28564. },
  28565. {
  28566. name: "Minimacro",
  28567. height: math.unit(7, "meters")
  28568. },
  28569. {
  28570. name: "Macro",
  28571. height: math.unit(200, "meters")
  28572. },
  28573. {
  28574. name: "Gigamacro",
  28575. height: math.unit(0.2, "earths")
  28576. },
  28577. ]
  28578. ))
  28579. characterMakers.push(() => makeCharacter(
  28580. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  28581. {
  28582. front: {
  28583. height: math.unit(152, "feet"),
  28584. name: "Front",
  28585. image: {
  28586. source: "./media/characters/kenzie-lee/front.svg",
  28587. extra: 1869/1774,
  28588. bottom: 128/1997
  28589. }
  28590. },
  28591. side: {
  28592. height: math.unit(86, "feet"),
  28593. name: "Side",
  28594. image: {
  28595. source: "./media/characters/kenzie-lee/side.svg",
  28596. extra: 930/815,
  28597. bottom: 177/1107
  28598. }
  28599. },
  28600. paw: {
  28601. height: math.unit(15, "feet"),
  28602. name: "Paw",
  28603. image: {
  28604. source: "./media/characters/kenzie-lee/paw.svg"
  28605. }
  28606. },
  28607. },
  28608. [
  28609. {
  28610. name: "Kenzie Flea",
  28611. height: math.unit(2, "mm"),
  28612. default: true
  28613. },
  28614. {
  28615. name: "Micro",
  28616. height: math.unit(2, "inches")
  28617. },
  28618. {
  28619. name: "Normal",
  28620. height: math.unit(152, "feet")
  28621. },
  28622. {
  28623. name: "Megamacro",
  28624. height: math.unit(7, "miles")
  28625. },
  28626. {
  28627. name: "Gigamacro",
  28628. height: math.unit(8000, "miles")
  28629. },
  28630. ]
  28631. ))
  28632. characterMakers.push(() => makeCharacter(
  28633. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  28634. {
  28635. front: {
  28636. height: math.unit(6, "feet"),
  28637. name: "Front",
  28638. image: {
  28639. source: "./media/characters/withers/front.svg",
  28640. extra: 1935/1760,
  28641. bottom: 72/2007
  28642. }
  28643. },
  28644. back: {
  28645. height: math.unit(6, "feet"),
  28646. name: "Back",
  28647. image: {
  28648. source: "./media/characters/withers/back.svg",
  28649. extra: 1944/1792,
  28650. bottom: 12/1956
  28651. }
  28652. },
  28653. dressed: {
  28654. height: math.unit(6, "feet"),
  28655. name: "Dressed",
  28656. image: {
  28657. source: "./media/characters/withers/dressed.svg",
  28658. extra: 1937/1765,
  28659. bottom: 73/2010
  28660. }
  28661. },
  28662. phase1: {
  28663. height: math.unit(1.1, "feet"),
  28664. name: "Phase 1",
  28665. image: {
  28666. source: "./media/characters/withers/phase-1.svg",
  28667. extra: 1885/1232,
  28668. bottom: 0/1885
  28669. }
  28670. },
  28671. phase2: {
  28672. height: math.unit(1.05, "feet"),
  28673. name: "Phase 2",
  28674. image: {
  28675. source: "./media/characters/withers/phase-2.svg",
  28676. extra: 1792/1090,
  28677. bottom: 0/1792
  28678. }
  28679. },
  28680. partyWipe: {
  28681. height: math.unit(1.1, "feet"),
  28682. name: "Party Wipe",
  28683. image: {
  28684. source: "./media/characters/withers/party-wipe.svg",
  28685. extra: 1864/1207,
  28686. bottom: 0/1864
  28687. }
  28688. },
  28689. },
  28690. [
  28691. {
  28692. name: "Macro",
  28693. height: math.unit(167, "feet"),
  28694. default: true
  28695. },
  28696. {
  28697. name: "Megamacro",
  28698. height: math.unit(15, "miles")
  28699. }
  28700. ]
  28701. ))
  28702. characterMakers.push(() => makeCharacter(
  28703. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  28704. {
  28705. front: {
  28706. height: math.unit(6 + 7 / 12, "feet"),
  28707. weight: math.unit(250, "lb"),
  28708. name: "Front",
  28709. image: {
  28710. source: "./media/characters/nemoskii/front.svg",
  28711. extra: 2270 / 1734,
  28712. bottom: 86 / 2354
  28713. }
  28714. },
  28715. back: {
  28716. height: math.unit(6 + 7 / 12, "feet"),
  28717. weight: math.unit(250, "lb"),
  28718. name: "Back",
  28719. image: {
  28720. source: "./media/characters/nemoskii/back.svg",
  28721. extra: 1845 / 1788,
  28722. bottom: 10.5 / 1852
  28723. }
  28724. },
  28725. head: {
  28726. height: math.unit(1.31, "feet"),
  28727. name: "Head",
  28728. image: {
  28729. source: "./media/characters/nemoskii/head.svg"
  28730. }
  28731. },
  28732. },
  28733. [
  28734. {
  28735. name: "Micro",
  28736. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  28737. },
  28738. {
  28739. name: "Normal",
  28740. height: math.unit(6 + 7 / 12, "feet"),
  28741. default: true
  28742. },
  28743. {
  28744. name: "Macro",
  28745. height: math.unit((6 + 7 / 12) * 150, "feet")
  28746. },
  28747. {
  28748. name: "Macro+",
  28749. height: math.unit((6 + 7 / 12) * 500, "feet")
  28750. },
  28751. {
  28752. name: "Megamacro",
  28753. height: math.unit((6 + 7 / 12) * 100000, "feet")
  28754. },
  28755. ]
  28756. ))
  28757. characterMakers.push(() => makeCharacter(
  28758. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  28759. {
  28760. front: {
  28761. height: math.unit(1, "mile"),
  28762. weight: math.unit(265261.9, "lb"),
  28763. name: "Front",
  28764. image: {
  28765. source: "./media/characters/shui/front.svg",
  28766. extra: 1633 / 1564,
  28767. bottom: 91.5 / 1726
  28768. }
  28769. },
  28770. },
  28771. [
  28772. {
  28773. name: "Macro",
  28774. height: math.unit(1, "mile"),
  28775. default: true
  28776. },
  28777. ]
  28778. ))
  28779. characterMakers.push(() => makeCharacter(
  28780. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  28781. {
  28782. front: {
  28783. height: math.unit(12 + 6 / 12, "feet"),
  28784. weight: math.unit(1342, "lb"),
  28785. name: "Front",
  28786. image: {
  28787. source: "./media/characters/arokh-takakura/front.svg",
  28788. extra: 1089 / 1043,
  28789. bottom: 77.4 / 1176.7
  28790. }
  28791. },
  28792. back: {
  28793. height: math.unit(12 + 6 / 12, "feet"),
  28794. weight: math.unit(1342, "lb"),
  28795. name: "Back",
  28796. image: {
  28797. source: "./media/characters/arokh-takakura/back.svg",
  28798. extra: 1046 / 1019,
  28799. bottom: 102 / 1150
  28800. }
  28801. },
  28802. },
  28803. [
  28804. {
  28805. name: "Big",
  28806. height: math.unit(12 + 6 / 12, "feet"),
  28807. default: true
  28808. },
  28809. ]
  28810. ))
  28811. characterMakers.push(() => makeCharacter(
  28812. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  28813. {
  28814. front: {
  28815. height: math.unit(5 + 6 / 12, "feet"),
  28816. weight: math.unit(150, "lb"),
  28817. name: "Front",
  28818. image: {
  28819. source: "./media/characters/theo/front.svg",
  28820. extra: 1184 / 1131,
  28821. bottom: 7.4 / 1191
  28822. }
  28823. },
  28824. },
  28825. [
  28826. {
  28827. name: "Micro",
  28828. height: math.unit(5, "inches")
  28829. },
  28830. {
  28831. name: "Normal",
  28832. height: math.unit(5 + 6 / 12, "feet"),
  28833. default: true
  28834. },
  28835. ]
  28836. ))
  28837. characterMakers.push(() => makeCharacter(
  28838. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  28839. {
  28840. front: {
  28841. height: math.unit(5 + 9 / 12, "feet"),
  28842. weight: math.unit(130, "lb"),
  28843. name: "Front",
  28844. image: {
  28845. source: "./media/characters/cecelia-swift/front.svg",
  28846. extra: 502 / 484,
  28847. bottom: 23 / 523
  28848. }
  28849. },
  28850. back: {
  28851. height: math.unit(5 + 9 / 12, "feet"),
  28852. weight: math.unit(130, "lb"),
  28853. name: "Back",
  28854. image: {
  28855. source: "./media/characters/cecelia-swift/back.svg",
  28856. extra: 499 / 485,
  28857. bottom: 12 / 511
  28858. }
  28859. },
  28860. head: {
  28861. height: math.unit(0.90, "feet"),
  28862. name: "Head",
  28863. image: {
  28864. source: "./media/characters/cecelia-swift/head.svg"
  28865. }
  28866. },
  28867. rump: {
  28868. height: math.unit(1.75, "feet"),
  28869. name: "Rump",
  28870. image: {
  28871. source: "./media/characters/cecelia-swift/rump.svg"
  28872. }
  28873. },
  28874. },
  28875. [
  28876. {
  28877. name: "Normal",
  28878. height: math.unit(5 + 9 / 12, "feet"),
  28879. default: true
  28880. },
  28881. {
  28882. name: "Big",
  28883. height: math.unit(50, "feet")
  28884. },
  28885. {
  28886. name: "Macro",
  28887. height: math.unit(100, "feet")
  28888. },
  28889. {
  28890. name: "Macro+",
  28891. height: math.unit(500, "feet")
  28892. },
  28893. {
  28894. name: "Macro++",
  28895. height: math.unit(1000, "feet")
  28896. },
  28897. ]
  28898. ))
  28899. characterMakers.push(() => makeCharacter(
  28900. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  28901. {
  28902. front: {
  28903. height: math.unit(6, "feet"),
  28904. weight: math.unit(150, "lb"),
  28905. name: "Front",
  28906. image: {
  28907. source: "./media/characters/kaunan/front.svg",
  28908. extra: 2890 / 2523,
  28909. bottom: 49 / 2939
  28910. }
  28911. },
  28912. },
  28913. [
  28914. {
  28915. name: "Macro",
  28916. height: math.unit(150, "feet"),
  28917. default: true
  28918. },
  28919. ]
  28920. ))
  28921. characterMakers.push(() => makeCharacter(
  28922. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  28923. {
  28924. front: {
  28925. height: math.unit(175, "cm"),
  28926. weight: math.unit(60, "kg"),
  28927. name: "Front",
  28928. image: {
  28929. source: "./media/characters/fei/front.svg",
  28930. extra: 1873/1723,
  28931. bottom: 53/1926
  28932. }
  28933. },
  28934. },
  28935. [
  28936. {
  28937. name: "Mortal",
  28938. height: math.unit(175, "cm")
  28939. },
  28940. {
  28941. name: "Normal",
  28942. height: math.unit(3500, "m"),
  28943. default: true
  28944. },
  28945. {
  28946. name: "Stroll",
  28947. height: math.unit(17.5, "km")
  28948. },
  28949. {
  28950. name: "Showoff",
  28951. height: math.unit(175, "km")
  28952. },
  28953. ]
  28954. ))
  28955. characterMakers.push(() => makeCharacter(
  28956. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  28957. {
  28958. front: {
  28959. height: math.unit(7, "feet"),
  28960. weight: math.unit(1000, "kg"),
  28961. name: "Front",
  28962. image: {
  28963. source: "./media/characters/edrax/front.svg",
  28964. extra: 2838 / 2550,
  28965. bottom: 130 / 2968
  28966. }
  28967. },
  28968. },
  28969. [
  28970. {
  28971. name: "Small",
  28972. height: math.unit(7, "feet")
  28973. },
  28974. {
  28975. name: "Normal",
  28976. height: math.unit(1500, "meters")
  28977. },
  28978. {
  28979. name: "Mega",
  28980. height: math.unit(12000000, "km"),
  28981. default: true
  28982. },
  28983. {
  28984. name: "Megamacro",
  28985. height: math.unit(10600000, "lightyears")
  28986. },
  28987. {
  28988. name: "Hypermacro",
  28989. height: math.unit(256, "yottameters")
  28990. },
  28991. ]
  28992. ))
  28993. characterMakers.push(() => makeCharacter(
  28994. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  28995. {
  28996. front: {
  28997. height: math.unit(10, "feet"),
  28998. weight: math.unit(750, "lb"),
  28999. name: "Front",
  29000. image: {
  29001. source: "./media/characters/clove/front.svg",
  29002. extra: 1918/1751,
  29003. bottom: 52/1970
  29004. }
  29005. },
  29006. back: {
  29007. height: math.unit(10, "feet"),
  29008. weight: math.unit(750, "lb"),
  29009. name: "Back",
  29010. image: {
  29011. source: "./media/characters/clove/back.svg",
  29012. extra: 1912/1747,
  29013. bottom: 50/1962
  29014. }
  29015. },
  29016. },
  29017. [
  29018. {
  29019. name: "Normal",
  29020. height: math.unit(10, "feet"),
  29021. default: true
  29022. },
  29023. ]
  29024. ))
  29025. characterMakers.push(() => makeCharacter(
  29026. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  29027. {
  29028. front: {
  29029. height: math.unit(4, "feet"),
  29030. weight: math.unit(50, "lb"),
  29031. name: "Front",
  29032. image: {
  29033. source: "./media/characters/alex-rabbit/front.svg",
  29034. extra: 507 / 458,
  29035. bottom: 18.5 / 527
  29036. }
  29037. },
  29038. back: {
  29039. height: math.unit(4, "feet"),
  29040. weight: math.unit(50, "lb"),
  29041. name: "Back",
  29042. image: {
  29043. source: "./media/characters/alex-rabbit/back.svg",
  29044. extra: 502 / 460,
  29045. bottom: 18.9 / 521
  29046. }
  29047. },
  29048. },
  29049. [
  29050. {
  29051. name: "Normal",
  29052. height: math.unit(4, "feet"),
  29053. default: true
  29054. },
  29055. ]
  29056. ))
  29057. characterMakers.push(() => makeCharacter(
  29058. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  29059. {
  29060. front: {
  29061. height: math.unit(1 + 3 / 12, "feet"),
  29062. weight: math.unit(80, "lb"),
  29063. name: "Front",
  29064. image: {
  29065. source: "./media/characters/zander-rose/front.svg",
  29066. extra: 916 / 797,
  29067. bottom: 17 / 933
  29068. }
  29069. },
  29070. back: {
  29071. height: math.unit(1 + 3 / 12, "feet"),
  29072. weight: math.unit(80, "lb"),
  29073. name: "Back",
  29074. image: {
  29075. source: "./media/characters/zander-rose/back.svg",
  29076. extra: 903 / 779,
  29077. bottom: 31 / 934
  29078. }
  29079. },
  29080. },
  29081. [
  29082. {
  29083. name: "Normal",
  29084. height: math.unit(1 + 3 / 12, "feet"),
  29085. default: true
  29086. },
  29087. ]
  29088. ))
  29089. characterMakers.push(() => makeCharacter(
  29090. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  29091. {
  29092. anthro: {
  29093. height: math.unit(6, "feet"),
  29094. weight: math.unit(150, "lb"),
  29095. name: "Anthro",
  29096. image: {
  29097. source: "./media/characters/razz/anthro.svg",
  29098. extra: 1437 / 1343,
  29099. bottom: 48 / 1485
  29100. }
  29101. },
  29102. feral: {
  29103. height: math.unit(6, "feet"),
  29104. weight: math.unit(150, "lb"),
  29105. name: "Feral",
  29106. image: {
  29107. source: "./media/characters/razz/feral.svg",
  29108. extra: 2569 / 1385,
  29109. bottom: 95 / 2664
  29110. }
  29111. },
  29112. },
  29113. [
  29114. {
  29115. name: "Normal",
  29116. height: math.unit(6, "feet"),
  29117. default: true
  29118. },
  29119. ]
  29120. ))
  29121. characterMakers.push(() => makeCharacter(
  29122. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  29123. {
  29124. front: {
  29125. height: math.unit(9 + 4 / 12, "feet"),
  29126. weight: math.unit(500, "lb"),
  29127. name: "Front",
  29128. image: {
  29129. source: "./media/characters/morrigan/front.svg",
  29130. extra: 2707 / 2579,
  29131. bottom: 156 / 2863
  29132. }
  29133. },
  29134. },
  29135. [
  29136. {
  29137. name: "Normal",
  29138. height: math.unit(9 + 4 / 12, "feet"),
  29139. default: true
  29140. },
  29141. ]
  29142. ))
  29143. characterMakers.push(() => makeCharacter(
  29144. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  29145. {
  29146. front: {
  29147. height: math.unit(5, "stories"),
  29148. weight: math.unit(4000, "lb"),
  29149. name: "Front",
  29150. image: {
  29151. source: "./media/characters/jenene/front.svg",
  29152. extra: 1780 / 1710,
  29153. bottom: 57 / 1837
  29154. }
  29155. },
  29156. },
  29157. [
  29158. {
  29159. name: "Normal",
  29160. height: math.unit(5, "stories"),
  29161. default: true
  29162. },
  29163. ]
  29164. ))
  29165. characterMakers.push(() => makeCharacter(
  29166. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  29167. {
  29168. taurSfw: {
  29169. height: math.unit(10, "meters"),
  29170. weight: math.unit(17500, "kg"),
  29171. name: "Taur",
  29172. image: {
  29173. source: "./media/characters/faey/taur-sfw.svg",
  29174. extra: 1200 / 968,
  29175. bottom: 41 / 1241
  29176. }
  29177. },
  29178. chestmaw: {
  29179. height: math.unit(2.01, "meters"),
  29180. name: "Chestmaw",
  29181. image: {
  29182. source: "./media/characters/faey/chestmaw.svg"
  29183. }
  29184. },
  29185. foot: {
  29186. height: math.unit(2.43, "meters"),
  29187. name: "Foot",
  29188. image: {
  29189. source: "./media/characters/faey/foot.svg"
  29190. }
  29191. },
  29192. jaws: {
  29193. height: math.unit(1.66, "meters"),
  29194. name: "Jaws",
  29195. image: {
  29196. source: "./media/characters/faey/jaws.svg"
  29197. }
  29198. },
  29199. tongues: {
  29200. height: math.unit(2.01, "meters"),
  29201. name: "Tongues",
  29202. image: {
  29203. source: "./media/characters/faey/tongues.svg"
  29204. }
  29205. },
  29206. },
  29207. [
  29208. {
  29209. name: "Small",
  29210. height: math.unit(10, "meters"),
  29211. default: true
  29212. },
  29213. {
  29214. name: "Big",
  29215. height: math.unit(500000, "km")
  29216. },
  29217. ]
  29218. ))
  29219. characterMakers.push(() => makeCharacter(
  29220. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  29221. {
  29222. front: {
  29223. height: math.unit(7, "feet"),
  29224. weight: math.unit(275, "lb"),
  29225. name: "Front",
  29226. image: {
  29227. source: "./media/characters/roku/front.svg",
  29228. extra: 903 / 878,
  29229. bottom: 37 / 940
  29230. }
  29231. },
  29232. },
  29233. [
  29234. {
  29235. name: "Normal",
  29236. height: math.unit(7, "feet"),
  29237. default: true
  29238. },
  29239. {
  29240. name: "Macro",
  29241. height: math.unit(500, "feet")
  29242. },
  29243. {
  29244. name: "Megamacro",
  29245. height: math.unit(200, "miles")
  29246. },
  29247. ]
  29248. ))
  29249. characterMakers.push(() => makeCharacter(
  29250. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  29251. {
  29252. front: {
  29253. height: math.unit(6 + 2 / 12, "feet"),
  29254. weight: math.unit(150, "lb"),
  29255. name: "Front",
  29256. image: {
  29257. source: "./media/characters/lira/front.svg",
  29258. extra: 1727 / 1605,
  29259. bottom: 26 / 1753
  29260. }
  29261. },
  29262. back: {
  29263. height: math.unit(6 + 2 / 12, "feet"),
  29264. weight: math.unit(150, "lb"),
  29265. name: "Back",
  29266. image: {
  29267. source: "./media/characters/lira/back.svg",
  29268. extra: 1713/1621,
  29269. bottom: 20/1733
  29270. }
  29271. },
  29272. hand: {
  29273. height: math.unit(0.75, "feet"),
  29274. name: "Hand",
  29275. image: {
  29276. source: "./media/characters/lira/hand.svg"
  29277. }
  29278. },
  29279. maw: {
  29280. height: math.unit(0.65, "feet"),
  29281. name: "Maw",
  29282. image: {
  29283. source: "./media/characters/lira/maw.svg"
  29284. }
  29285. },
  29286. pawDigi: {
  29287. height: math.unit(1.6, "feet"),
  29288. name: "Paw Digi",
  29289. image: {
  29290. source: "./media/characters/lira/paw-digi.svg"
  29291. }
  29292. },
  29293. pawPlanti: {
  29294. height: math.unit(1.4, "feet"),
  29295. name: "Paw Planti",
  29296. image: {
  29297. source: "./media/characters/lira/paw-planti.svg"
  29298. }
  29299. },
  29300. },
  29301. [
  29302. {
  29303. name: "Normal",
  29304. height: math.unit(6 + 2 / 12, "feet"),
  29305. default: true
  29306. },
  29307. {
  29308. name: "Macro",
  29309. height: math.unit(100, "feet")
  29310. },
  29311. {
  29312. name: "Macro²",
  29313. height: math.unit(1600, "feet")
  29314. },
  29315. {
  29316. name: "Planetary",
  29317. height: math.unit(20, "earths")
  29318. },
  29319. ]
  29320. ))
  29321. characterMakers.push(() => makeCharacter(
  29322. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  29323. {
  29324. front: {
  29325. height: math.unit(6, "feet"),
  29326. weight: math.unit(150, "lb"),
  29327. name: "Front",
  29328. image: {
  29329. source: "./media/characters/hadjet/front.svg",
  29330. extra: 1480 / 1346,
  29331. bottom: 26 / 1506
  29332. }
  29333. },
  29334. frontNsfw: {
  29335. height: math.unit(6, "feet"),
  29336. weight: math.unit(150, "lb"),
  29337. name: "Front (NSFW)",
  29338. image: {
  29339. source: "./media/characters/hadjet/front-nsfw.svg",
  29340. extra: 1440 / 1358,
  29341. bottom: 52 / 1492
  29342. }
  29343. },
  29344. },
  29345. [
  29346. {
  29347. name: "Macro",
  29348. height: math.unit(10, "stories"),
  29349. default: true
  29350. },
  29351. {
  29352. name: "Megamacro",
  29353. height: math.unit(1.5, "miles")
  29354. },
  29355. {
  29356. name: "Megamacro+",
  29357. height: math.unit(5, "miles")
  29358. },
  29359. ]
  29360. ))
  29361. characterMakers.push(() => makeCharacter(
  29362. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  29363. {
  29364. side: {
  29365. height: math.unit(106, "feet"),
  29366. weight: math.unit(500, "tonnes"),
  29367. name: "Side",
  29368. image: {
  29369. source: "./media/characters/kodran/side.svg",
  29370. extra: 553 / 480,
  29371. bottom: 33 / 586
  29372. }
  29373. },
  29374. front: {
  29375. height: math.unit(132, "feet"),
  29376. weight: math.unit(500, "tonnes"),
  29377. name: "Front",
  29378. image: {
  29379. source: "./media/characters/kodran/front.svg",
  29380. extra: 667 / 643,
  29381. bottom: 42 / 709
  29382. }
  29383. },
  29384. flying: {
  29385. height: math.unit(350, "feet"),
  29386. weight: math.unit(500, "tonnes"),
  29387. name: "Flying",
  29388. image: {
  29389. source: "./media/characters/kodran/flying.svg"
  29390. }
  29391. },
  29392. foot: {
  29393. height: math.unit(33, "feet"),
  29394. name: "Foot",
  29395. image: {
  29396. source: "./media/characters/kodran/foot.svg"
  29397. }
  29398. },
  29399. footFront: {
  29400. height: math.unit(19, "feet"),
  29401. name: "Foot (Front)",
  29402. image: {
  29403. source: "./media/characters/kodran/foot-front.svg",
  29404. extra: 261 / 261,
  29405. bottom: 91 / 352
  29406. }
  29407. },
  29408. headFront: {
  29409. height: math.unit(53, "feet"),
  29410. name: "Head (Front)",
  29411. image: {
  29412. source: "./media/characters/kodran/head-front.svg"
  29413. }
  29414. },
  29415. headSide: {
  29416. height: math.unit(65, "feet"),
  29417. name: "Head (Side)",
  29418. image: {
  29419. source: "./media/characters/kodran/head-side.svg"
  29420. }
  29421. },
  29422. throat: {
  29423. height: math.unit(79, "feet"),
  29424. name: "Throat",
  29425. image: {
  29426. source: "./media/characters/kodran/throat.svg"
  29427. }
  29428. },
  29429. },
  29430. [
  29431. {
  29432. name: "Large",
  29433. height: math.unit(106, "feet"),
  29434. default: true
  29435. },
  29436. ]
  29437. ))
  29438. characterMakers.push(() => makeCharacter(
  29439. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  29440. {
  29441. side: {
  29442. height: math.unit(11, "feet"),
  29443. weight: math.unit(150, "lb"),
  29444. name: "Side",
  29445. image: {
  29446. source: "./media/characters/pyxaron/side.svg",
  29447. extra: 305 / 195,
  29448. bottom: 17 / 322
  29449. }
  29450. },
  29451. },
  29452. [
  29453. {
  29454. name: "Normal",
  29455. height: math.unit(11, "feet"),
  29456. default: true
  29457. },
  29458. ]
  29459. ))
  29460. characterMakers.push(() => makeCharacter(
  29461. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  29462. {
  29463. front: {
  29464. height: math.unit(6, "feet"),
  29465. weight: math.unit(150, "lb"),
  29466. name: "Front",
  29467. image: {
  29468. source: "./media/characters/meep/front.svg",
  29469. extra: 88 / 80,
  29470. bottom: 6 / 94
  29471. }
  29472. },
  29473. },
  29474. [
  29475. {
  29476. name: "Fun Sized",
  29477. height: math.unit(2, "inches"),
  29478. default: true
  29479. },
  29480. {
  29481. name: "Friend Sized",
  29482. height: math.unit(8, "inches")
  29483. },
  29484. ]
  29485. ))
  29486. characterMakers.push(() => makeCharacter(
  29487. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  29488. {
  29489. front: {
  29490. height: math.unit(15, "feet"),
  29491. weight: math.unit(2500, "lb"),
  29492. name: "Front",
  29493. image: {
  29494. source: "./media/characters/holly-rabbit/front.svg",
  29495. extra: 1433 / 1233,
  29496. bottom: 125 / 1558
  29497. }
  29498. },
  29499. dick: {
  29500. height: math.unit(4.6, "feet"),
  29501. name: "Dick",
  29502. image: {
  29503. source: "./media/characters/holly-rabbit/dick.svg"
  29504. }
  29505. },
  29506. },
  29507. [
  29508. {
  29509. name: "Normal",
  29510. height: math.unit(15, "feet"),
  29511. default: true
  29512. },
  29513. {
  29514. name: "Macro",
  29515. height: math.unit(250, "feet")
  29516. },
  29517. {
  29518. name: "Macro+",
  29519. height: math.unit(2500, "feet")
  29520. },
  29521. ]
  29522. ))
  29523. characterMakers.push(() => makeCharacter(
  29524. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  29525. {
  29526. front: {
  29527. height: math.unit(3.02, "meters"),
  29528. weight: math.unit(500, "kg"),
  29529. name: "Front",
  29530. image: {
  29531. source: "./media/characters/drena/front.svg",
  29532. extra: 282 / 243,
  29533. bottom: 8 / 290
  29534. }
  29535. },
  29536. side: {
  29537. height: math.unit(3.02, "meters"),
  29538. weight: math.unit(500, "kg"),
  29539. name: "Side",
  29540. image: {
  29541. source: "./media/characters/drena/side.svg",
  29542. extra: 280 / 245,
  29543. bottom: 10 / 290
  29544. }
  29545. },
  29546. back: {
  29547. height: math.unit(3.02, "meters"),
  29548. weight: math.unit(500, "kg"),
  29549. name: "Back",
  29550. image: {
  29551. source: "./media/characters/drena/back.svg",
  29552. extra: 278 / 243,
  29553. bottom: 2 / 280
  29554. }
  29555. },
  29556. foot: {
  29557. height: math.unit(0.75, "meters"),
  29558. name: "Foot",
  29559. image: {
  29560. source: "./media/characters/drena/foot.svg"
  29561. }
  29562. },
  29563. maw: {
  29564. height: math.unit(0.82, "meters"),
  29565. name: "Maw",
  29566. image: {
  29567. source: "./media/characters/drena/maw.svg"
  29568. }
  29569. },
  29570. eating: {
  29571. height: math.unit(0.75, "meters"),
  29572. name: "Eating",
  29573. image: {
  29574. source: "./media/characters/drena/eating.svg"
  29575. }
  29576. },
  29577. rump: {
  29578. height: math.unit(0.93, "meters"),
  29579. name: "Rump",
  29580. image: {
  29581. source: "./media/characters/drena/rump.svg"
  29582. }
  29583. },
  29584. },
  29585. [
  29586. {
  29587. name: "Normal",
  29588. height: math.unit(3.02, "meters"),
  29589. default: true
  29590. },
  29591. ]
  29592. ))
  29593. characterMakers.push(() => makeCharacter(
  29594. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  29595. {
  29596. front: {
  29597. height: math.unit(6 + 4 / 12, "feet"),
  29598. weight: math.unit(250, "lb"),
  29599. name: "Front",
  29600. image: {
  29601. source: "./media/characters/remmyzilla/front.svg",
  29602. extra: 4033 / 3588,
  29603. bottom: 123 / 4156
  29604. }
  29605. },
  29606. back: {
  29607. height: math.unit(6 + 4 / 12, "feet"),
  29608. weight: math.unit(250, "lb"),
  29609. name: "Back",
  29610. image: {
  29611. source: "./media/characters/remmyzilla/back.svg",
  29612. extra: 2687 / 2555,
  29613. bottom: 48 / 2735
  29614. }
  29615. },
  29616. paw: {
  29617. height: math.unit(1.73, "feet"),
  29618. name: "Paw",
  29619. image: {
  29620. source: "./media/characters/remmyzilla/paw.svg"
  29621. }
  29622. },
  29623. maw: {
  29624. height: math.unit(1.73, "feet"),
  29625. name: "Maw",
  29626. image: {
  29627. source: "./media/characters/remmyzilla/maw.svg"
  29628. }
  29629. },
  29630. },
  29631. [
  29632. {
  29633. name: "Normal",
  29634. height: math.unit(6 + 4 / 12, "feet")
  29635. },
  29636. {
  29637. name: "Minimacro",
  29638. height: math.unit(12 + 8 / 12, "feet")
  29639. },
  29640. {
  29641. name: "Normal",
  29642. height: math.unit(640, "feet"),
  29643. default: true
  29644. },
  29645. {
  29646. name: "Megamacro",
  29647. height: math.unit(6400, "feet")
  29648. },
  29649. {
  29650. name: "Gigamacro",
  29651. height: math.unit(64000, "miles")
  29652. },
  29653. ]
  29654. ))
  29655. characterMakers.push(() => makeCharacter(
  29656. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  29657. {
  29658. front: {
  29659. height: math.unit(2.5, "meters"),
  29660. weight: math.unit(300, "lb"),
  29661. name: "Front",
  29662. image: {
  29663. source: "./media/characters/lawrence/front.svg",
  29664. extra: 357 / 335,
  29665. bottom: 30 / 387
  29666. }
  29667. },
  29668. back: {
  29669. height: math.unit(2.5, "meters"),
  29670. weight: math.unit(300, "lb"),
  29671. name: "Back",
  29672. image: {
  29673. source: "./media/characters/lawrence/back.svg",
  29674. extra: 357 / 338,
  29675. bottom: 16 / 373
  29676. }
  29677. },
  29678. head: {
  29679. height: math.unit(0.9, "meter"),
  29680. name: "Head",
  29681. image: {
  29682. source: "./media/characters/lawrence/head.svg"
  29683. }
  29684. },
  29685. maw: {
  29686. height: math.unit(0.7, "meter"),
  29687. name: "Maw",
  29688. image: {
  29689. source: "./media/characters/lawrence/maw.svg"
  29690. }
  29691. },
  29692. footBottom: {
  29693. height: math.unit(0.5, "meter"),
  29694. name: "Foot (Bottom)",
  29695. image: {
  29696. source: "./media/characters/lawrence/foot-bottom.svg"
  29697. }
  29698. },
  29699. footTop: {
  29700. height: math.unit(0.5, "meter"),
  29701. name: "Foot (Top)",
  29702. image: {
  29703. source: "./media/characters/lawrence/foot-top.svg"
  29704. }
  29705. },
  29706. },
  29707. [
  29708. {
  29709. name: "Normal",
  29710. height: math.unit(2.5, "meters"),
  29711. default: true
  29712. },
  29713. {
  29714. name: "Macro",
  29715. height: math.unit(95, "meters")
  29716. },
  29717. {
  29718. name: "Megamacro",
  29719. height: math.unit(150, "km")
  29720. },
  29721. ]
  29722. ))
  29723. characterMakers.push(() => makeCharacter(
  29724. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  29725. {
  29726. front: {
  29727. height: math.unit(4.2, "meters"),
  29728. name: "Front",
  29729. image: {
  29730. source: "./media/characters/sydney/front.svg",
  29731. extra: 1323 / 1277,
  29732. bottom: 111 / 1434
  29733. }
  29734. },
  29735. },
  29736. [
  29737. {
  29738. name: "Normal",
  29739. height: math.unit(4.2, "meters"),
  29740. default: true
  29741. },
  29742. ]
  29743. ))
  29744. characterMakers.push(() => makeCharacter(
  29745. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  29746. {
  29747. back: {
  29748. height: math.unit(201, "feet"),
  29749. name: "Back",
  29750. image: {
  29751. source: "./media/characters/jessica/back.svg",
  29752. extra: 273 / 259,
  29753. bottom: 7 / 280
  29754. }
  29755. },
  29756. },
  29757. [
  29758. {
  29759. name: "Normal",
  29760. height: math.unit(201, "feet"),
  29761. default: true
  29762. },
  29763. {
  29764. name: "Megamacro",
  29765. height: math.unit(8, "miles")
  29766. },
  29767. ]
  29768. ))
  29769. characterMakers.push(() => makeCharacter(
  29770. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  29771. {
  29772. side: {
  29773. height: math.unit(5.6, "m"),
  29774. weight: math.unit(8000, "kg"),
  29775. name: "Side",
  29776. image: {
  29777. source: "./media/characters/victoria/side.svg",
  29778. extra: 1542/1229,
  29779. bottom: 124/1666
  29780. }
  29781. },
  29782. maw: {
  29783. height: math.unit(7.14, "feet"),
  29784. name: "Maw",
  29785. image: {
  29786. source: "./media/characters/victoria/maw.svg"
  29787. }
  29788. },
  29789. },
  29790. [
  29791. {
  29792. name: "Normal",
  29793. height: math.unit(5.6, "m"),
  29794. default: true
  29795. },
  29796. ]
  29797. ))
  29798. characterMakers.push(() => makeCharacter(
  29799. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  29800. {
  29801. front: {
  29802. height: math.unit(5 + 6 / 12, "feet"),
  29803. name: "Front",
  29804. image: {
  29805. source: "./media/characters/cat/front.svg",
  29806. extra: 1449/1295,
  29807. bottom: 34/1483
  29808. },
  29809. form: "cat",
  29810. default: true
  29811. },
  29812. back: {
  29813. height: math.unit(5 + 6 / 12, "feet"),
  29814. name: "Back",
  29815. image: {
  29816. source: "./media/characters/cat/back.svg",
  29817. extra: 1466/1301,
  29818. bottom: 19/1485
  29819. },
  29820. form: "cat"
  29821. },
  29822. taur: {
  29823. height: math.unit(7, "feet"),
  29824. name: "Taur",
  29825. image: {
  29826. source: "./media/characters/cat/taur.svg",
  29827. extra: 1389/1233,
  29828. bottom: 83/1472
  29829. },
  29830. form: "taur",
  29831. default: true
  29832. },
  29833. lucarioFront: {
  29834. height: math.unit(4, "feet"),
  29835. name: "Lucario (Front)",
  29836. image: {
  29837. source: "./media/characters/cat/lucario-front.svg",
  29838. extra: 1149/1019,
  29839. bottom: 84/1233
  29840. },
  29841. form: "lucario",
  29842. default: true
  29843. },
  29844. lucarioBack: {
  29845. height: math.unit(4, "feet"),
  29846. name: "Lucario (Back)",
  29847. image: {
  29848. source: "./media/characters/cat/lucario-back.svg",
  29849. extra: 1190/1059,
  29850. bottom: 33/1223
  29851. },
  29852. form: "lucario"
  29853. },
  29854. megaLucario: {
  29855. height: math.unit(4, "feet"),
  29856. name: "Mega Lucario",
  29857. image: {
  29858. source: "./media/characters/cat/mega-lucario.svg",
  29859. extra: 1515 / 1319,
  29860. bottom: 63 / 1578
  29861. },
  29862. form: "lucario"
  29863. },
  29864. nickit: {
  29865. height: math.unit(2, "feet"),
  29866. name: "Nickit",
  29867. image: {
  29868. source: "./media/characters/cat/nickit.svg",
  29869. extra: 1980 / 1585,
  29870. bottom: 102 / 2082
  29871. },
  29872. form: "nickit",
  29873. default: true
  29874. },
  29875. lopunnyFront: {
  29876. height: math.unit(5, "feet"),
  29877. name: "Lopunny (Front)",
  29878. image: {
  29879. source: "./media/characters/cat/lopunny-front.svg",
  29880. extra: 1782 / 1469,
  29881. bottom: 38 / 1820
  29882. },
  29883. form: "lopunny",
  29884. default: true
  29885. },
  29886. lopunnyBack: {
  29887. height: math.unit(5, "feet"),
  29888. name: "Lopunny (Back)",
  29889. image: {
  29890. source: "./media/characters/cat/lopunny-back.svg",
  29891. extra: 1660 / 1490,
  29892. bottom: 25 / 1685
  29893. },
  29894. form: "lopunny"
  29895. },
  29896. },
  29897. [
  29898. {
  29899. name: "Really small",
  29900. height: math.unit(1, "nm")
  29901. },
  29902. {
  29903. name: "Micro",
  29904. height: math.unit(5, "inches")
  29905. },
  29906. {
  29907. name: "Normal",
  29908. height: math.unit(5 + 6 / 12, "feet"),
  29909. default: true
  29910. },
  29911. {
  29912. name: "Macro",
  29913. height: math.unit(50, "feet")
  29914. },
  29915. {
  29916. name: "Macro+",
  29917. height: math.unit(150, "feet")
  29918. },
  29919. {
  29920. name: "Megamacro",
  29921. height: math.unit(100, "miles")
  29922. },
  29923. ]
  29924. ))
  29925. characterMakers.push(() => makeCharacter(
  29926. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  29927. {
  29928. front: {
  29929. height: math.unit(63.4, "meters"),
  29930. weight: math.unit(3.28349e+6, "kilograms"),
  29931. name: "Front",
  29932. image: {
  29933. source: "./media/characters/kirina-violet/front.svg",
  29934. extra: 2812 / 2725,
  29935. bottom: 0 / 2812
  29936. }
  29937. },
  29938. back: {
  29939. height: math.unit(63.4, "meters"),
  29940. weight: math.unit(3.28349e+6, "kilograms"),
  29941. name: "Back",
  29942. image: {
  29943. source: "./media/characters/kirina-violet/back.svg",
  29944. extra: 2812 / 2725,
  29945. bottom: 0 / 2812
  29946. }
  29947. },
  29948. mouth: {
  29949. height: math.unit(4.35, "meters"),
  29950. name: "Mouth",
  29951. image: {
  29952. source: "./media/characters/kirina-violet/mouth.svg"
  29953. }
  29954. },
  29955. paw: {
  29956. height: math.unit(5.6, "meters"),
  29957. name: "Paw",
  29958. image: {
  29959. source: "./media/characters/kirina-violet/paw.svg"
  29960. }
  29961. },
  29962. tail: {
  29963. height: math.unit(18, "meters"),
  29964. name: "Tail",
  29965. image: {
  29966. source: "./media/characters/kirina-violet/tail.svg"
  29967. }
  29968. },
  29969. },
  29970. [
  29971. {
  29972. name: "Macro",
  29973. height: math.unit(63.4, "meters"),
  29974. default: true
  29975. },
  29976. ]
  29977. ))
  29978. characterMakers.push(() => makeCharacter(
  29979. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  29980. {
  29981. front: {
  29982. height: math.unit(75, "feet"),
  29983. name: "Front",
  29984. image: {
  29985. source: "./media/characters/cat-gigachu/front.svg",
  29986. extra: 1239/1027,
  29987. bottom: 32/1271
  29988. }
  29989. },
  29990. back: {
  29991. height: math.unit(75, "feet"),
  29992. name: "Back",
  29993. image: {
  29994. source: "./media/characters/cat-gigachu/back.svg",
  29995. extra: 1229/1030,
  29996. bottom: 9/1238
  29997. }
  29998. },
  29999. },
  30000. [
  30001. {
  30002. name: "Dynamax",
  30003. height: math.unit(75, "feet"),
  30004. default: true
  30005. },
  30006. ]
  30007. ))
  30008. characterMakers.push(() => makeCharacter(
  30009. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  30010. {
  30011. front: {
  30012. height: math.unit(6, "feet"),
  30013. weight: math.unit(150, "lb"),
  30014. name: "Front",
  30015. image: {
  30016. source: "./media/characters/sfaiyan/front.svg",
  30017. extra: 999 / 978,
  30018. bottom: 5 / 1004
  30019. }
  30020. },
  30021. },
  30022. [
  30023. {
  30024. name: "Normal",
  30025. height: math.unit(1.82, "meters")
  30026. },
  30027. {
  30028. name: "Giant",
  30029. height: math.unit(2.27, "km"),
  30030. default: true
  30031. },
  30032. ]
  30033. ))
  30034. characterMakers.push(() => makeCharacter(
  30035. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  30036. {
  30037. front: {
  30038. height: math.unit(179, "cm"),
  30039. weight: math.unit(100, "kg"),
  30040. name: "Front",
  30041. image: {
  30042. source: "./media/characters/raunehkeli/front.svg",
  30043. extra: 1934 / 1926,
  30044. bottom: 0 / 1934
  30045. }
  30046. },
  30047. },
  30048. [
  30049. {
  30050. name: "Normal",
  30051. height: math.unit(179, "cm")
  30052. },
  30053. {
  30054. name: "Maximum",
  30055. height: math.unit(575, "meters"),
  30056. default: true
  30057. },
  30058. ]
  30059. ))
  30060. characterMakers.push(() => makeCharacter(
  30061. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  30062. {
  30063. front: {
  30064. height: math.unit(6, "feet"),
  30065. weight: math.unit(150, "lb"),
  30066. name: "Front",
  30067. image: {
  30068. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  30069. extra: 2625 / 2518,
  30070. bottom: 60 / 2685
  30071. }
  30072. },
  30073. },
  30074. [
  30075. {
  30076. name: "Normal",
  30077. height: math.unit(6 + 2 / 12, "feet")
  30078. },
  30079. {
  30080. name: "Macro",
  30081. height: math.unit(1180, "feet"),
  30082. default: true
  30083. },
  30084. ]
  30085. ))
  30086. characterMakers.push(() => makeCharacter(
  30087. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  30088. {
  30089. front: {
  30090. height: math.unit(5 + 6 / 12, "feet"),
  30091. weight: math.unit(108, "lb"),
  30092. name: "Front",
  30093. image: {
  30094. source: "./media/characters/lilith-zott/front.svg",
  30095. extra: 2510 / 2238,
  30096. bottom: 100 / 2610
  30097. }
  30098. },
  30099. frontDressed: {
  30100. height: math.unit(5 + 6 / 12, "feet"),
  30101. weight: math.unit(108, "lb"),
  30102. name: "Front (Dressed)",
  30103. image: {
  30104. source: "./media/characters/lilith-zott/front-dressed.svg",
  30105. extra: 2510 / 2238,
  30106. bottom: 100 / 2610
  30107. }
  30108. },
  30109. },
  30110. [
  30111. {
  30112. name: "Normal",
  30113. height: math.unit(5 + 6 / 12, "feet")
  30114. },
  30115. {
  30116. name: "Macro",
  30117. height: math.unit(1030, "feet"),
  30118. default: true
  30119. },
  30120. ]
  30121. ))
  30122. characterMakers.push(() => makeCharacter(
  30123. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  30124. {
  30125. front: {
  30126. height: math.unit(6, "feet"),
  30127. weight: math.unit(150, "lb"),
  30128. name: "Front",
  30129. image: {
  30130. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  30131. extra: 2567 / 2435,
  30132. bottom: 39 / 2606
  30133. }
  30134. },
  30135. frontSuper: {
  30136. height: math.unit(6, "feet"),
  30137. name: "Front (Super)",
  30138. image: {
  30139. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  30140. extra: 2567 / 2435,
  30141. bottom: 39 / 2606
  30142. }
  30143. },
  30144. },
  30145. [
  30146. {
  30147. name: "Normal",
  30148. height: math.unit(5 + 10 / 12, "feet")
  30149. },
  30150. {
  30151. name: "Macro",
  30152. height: math.unit(1100, "feet"),
  30153. default: true
  30154. },
  30155. ]
  30156. ))
  30157. characterMakers.push(() => makeCharacter(
  30158. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  30159. {
  30160. front: {
  30161. height: math.unit(100, "miles"),
  30162. name: "Front",
  30163. image: {
  30164. source: "./media/characters/sona/front.svg",
  30165. extra: 2433 / 2201,
  30166. bottom: 53 / 2486
  30167. }
  30168. },
  30169. foot: {
  30170. height: math.unit(16.1, "miles"),
  30171. name: "Foot",
  30172. image: {
  30173. source: "./media/characters/sona/foot.svg"
  30174. }
  30175. },
  30176. },
  30177. [
  30178. {
  30179. name: "Macro",
  30180. height: math.unit(100, "miles"),
  30181. default: true
  30182. },
  30183. ]
  30184. ))
  30185. characterMakers.push(() => makeCharacter(
  30186. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  30187. {
  30188. front: {
  30189. height: math.unit(6, "feet"),
  30190. weight: math.unit(150, "lb"),
  30191. name: "Front",
  30192. image: {
  30193. source: "./media/characters/bailey/front.svg",
  30194. extra: 1778 / 1724,
  30195. bottom: 30 / 1808
  30196. }
  30197. },
  30198. },
  30199. [
  30200. {
  30201. name: "Micro",
  30202. height: math.unit(4, "inches")
  30203. },
  30204. {
  30205. name: "Normal",
  30206. height: math.unit(5 + 5 / 12, "feet"),
  30207. default: true
  30208. },
  30209. {
  30210. name: "Macro",
  30211. height: math.unit(250, "feet")
  30212. },
  30213. {
  30214. name: "Megamacro",
  30215. height: math.unit(100, "miles")
  30216. },
  30217. ]
  30218. ))
  30219. characterMakers.push(() => makeCharacter(
  30220. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  30221. {
  30222. front: {
  30223. height: math.unit(5 + 2 / 12, "feet"),
  30224. weight: math.unit(120, "lb"),
  30225. name: "Front",
  30226. image: {
  30227. source: "./media/characters/snaps/front.svg",
  30228. extra: 2370 / 2177,
  30229. bottom: 48 / 2418
  30230. }
  30231. },
  30232. back: {
  30233. height: math.unit(5 + 2 / 12, "feet"),
  30234. weight: math.unit(120, "lb"),
  30235. name: "Back",
  30236. image: {
  30237. source: "./media/characters/snaps/back.svg",
  30238. extra: 2408 / 2258,
  30239. bottom: 15 / 2423
  30240. }
  30241. },
  30242. },
  30243. [
  30244. {
  30245. name: "Micro",
  30246. height: math.unit(9, "inches")
  30247. },
  30248. {
  30249. name: "Normal",
  30250. height: math.unit(5 + 2 / 12, "feet"),
  30251. default: true
  30252. },
  30253. {
  30254. name: "Mini Macro",
  30255. height: math.unit(10, "feet")
  30256. },
  30257. ]
  30258. ))
  30259. characterMakers.push(() => makeCharacter(
  30260. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  30261. {
  30262. front: {
  30263. height: math.unit(1.8, "meters"),
  30264. weight: math.unit(85, "kg"),
  30265. name: "Front",
  30266. image: {
  30267. source: "./media/characters/azteck/front.svg",
  30268. extra: 2815 / 2625,
  30269. bottom: 89 / 2904
  30270. }
  30271. },
  30272. back: {
  30273. height: math.unit(1.8, "meters"),
  30274. weight: math.unit(85, "kg"),
  30275. name: "Back",
  30276. image: {
  30277. source: "./media/characters/azteck/back.svg",
  30278. extra: 2856 / 2648,
  30279. bottom: 85 / 2941
  30280. }
  30281. },
  30282. frontDressed: {
  30283. height: math.unit(1.8, "meters"),
  30284. weight: math.unit(85, "kg"),
  30285. name: "Front (Dressed)",
  30286. image: {
  30287. source: "./media/characters/azteck/front-dressed.svg",
  30288. extra: 2147 / 2003,
  30289. bottom: 68 / 2215
  30290. }
  30291. },
  30292. head: {
  30293. height: math.unit(0.47, "meters"),
  30294. weight: math.unit(85, "kg"),
  30295. name: "Head",
  30296. image: {
  30297. source: "./media/characters/azteck/head.svg"
  30298. }
  30299. },
  30300. },
  30301. [
  30302. {
  30303. name: "Bite sized",
  30304. height: math.unit(16, "cm")
  30305. },
  30306. {
  30307. name: "Normal",
  30308. height: math.unit(1.8, "meters"),
  30309. default: true
  30310. },
  30311. ]
  30312. ))
  30313. characterMakers.push(() => makeCharacter(
  30314. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  30315. {
  30316. front: {
  30317. height: math.unit(6, "feet"),
  30318. weight: math.unit(150, "lb"),
  30319. name: "Front",
  30320. image: {
  30321. source: "./media/characters/pidge/front.svg",
  30322. extra: 1936/1820,
  30323. bottom: 0/1936
  30324. }
  30325. },
  30326. back: {
  30327. height: math.unit(6, "feet"),
  30328. weight: math.unit(150, "lb"),
  30329. name: "Back",
  30330. image: {
  30331. source: "./media/characters/pidge/back.svg",
  30332. extra: 1938/1843,
  30333. bottom: 0/1938
  30334. }
  30335. },
  30336. casual: {
  30337. height: math.unit(6, "feet"),
  30338. weight: math.unit(150, "lb"),
  30339. name: "Casual",
  30340. image: {
  30341. source: "./media/characters/pidge/casual.svg",
  30342. extra: 1936/1820,
  30343. bottom: 0/1936
  30344. }
  30345. },
  30346. tech: {
  30347. height: math.unit(6, "feet"),
  30348. weight: math.unit(150, "lb"),
  30349. name: "Tech",
  30350. image: {
  30351. source: "./media/characters/pidge/tech.svg",
  30352. extra: 1802/1682,
  30353. bottom: 0/1802
  30354. }
  30355. },
  30356. head: {
  30357. height: math.unit(1.61, "feet"),
  30358. name: "Head",
  30359. image: {
  30360. source: "./media/characters/pidge/head.svg"
  30361. }
  30362. },
  30363. collar: {
  30364. height: math.unit(0.82, "feet"),
  30365. name: "Collar",
  30366. image: {
  30367. source: "./media/characters/pidge/collar.svg"
  30368. }
  30369. },
  30370. },
  30371. [
  30372. {
  30373. name: "Macro",
  30374. height: math.unit(2, "mile"),
  30375. default: true
  30376. },
  30377. {
  30378. name: "PUPPY",
  30379. height: math.unit(20, "miles")
  30380. },
  30381. ]
  30382. ))
  30383. characterMakers.push(() => makeCharacter(
  30384. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  30385. {
  30386. front: {
  30387. height: math.unit(6, "feet"),
  30388. weight: math.unit(150, "lb"),
  30389. name: "Front",
  30390. image: {
  30391. source: "./media/characters/en/front.svg",
  30392. extra: 1697 / 1563,
  30393. bottom: 103 / 1800
  30394. }
  30395. },
  30396. back: {
  30397. height: math.unit(6, "feet"),
  30398. weight: math.unit(150, "lb"),
  30399. name: "Back",
  30400. image: {
  30401. source: "./media/characters/en/back.svg",
  30402. extra: 1700 / 1570,
  30403. bottom: 51 / 1751
  30404. }
  30405. },
  30406. frontDressed: {
  30407. height: math.unit(6, "feet"),
  30408. weight: math.unit(150, "lb"),
  30409. name: "Front (Dressed)",
  30410. image: {
  30411. source: "./media/characters/en/front-dressed.svg",
  30412. extra: 1697 / 1563,
  30413. bottom: 103 / 1800
  30414. }
  30415. },
  30416. backDressed: {
  30417. height: math.unit(6, "feet"),
  30418. weight: math.unit(150, "lb"),
  30419. name: "Back (Dressed)",
  30420. image: {
  30421. source: "./media/characters/en/back-dressed.svg",
  30422. extra: 1700 / 1570,
  30423. bottom: 51 / 1751
  30424. }
  30425. },
  30426. },
  30427. [
  30428. {
  30429. name: "Macro",
  30430. height: math.unit(210, "feet"),
  30431. default: true
  30432. },
  30433. ]
  30434. ))
  30435. characterMakers.push(() => makeCharacter(
  30436. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  30437. {
  30438. front: {
  30439. height: math.unit(6, "feet"),
  30440. weight: math.unit(150, "lb"),
  30441. name: "Front",
  30442. image: {
  30443. source: "./media/characters/haze-orris/front.svg",
  30444. extra: 3975 / 3525,
  30445. bottom: 137 / 4112
  30446. }
  30447. },
  30448. },
  30449. [
  30450. {
  30451. name: "Micro",
  30452. height: math.unit(150, "mm"),
  30453. default: true
  30454. },
  30455. ]
  30456. ))
  30457. characterMakers.push(() => makeCharacter(
  30458. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  30459. {
  30460. front: {
  30461. height: math.unit(6, "feet"),
  30462. weight: math.unit(150, "lb"),
  30463. name: "Front",
  30464. image: {
  30465. source: "./media/characters/casselene-yaro/front.svg",
  30466. extra: 4721 / 4541,
  30467. bottom: 82 / 4803
  30468. }
  30469. },
  30470. back: {
  30471. height: math.unit(6, "feet"),
  30472. weight: math.unit(150, "lb"),
  30473. name: "Back",
  30474. image: {
  30475. source: "./media/characters/casselene-yaro/back.svg",
  30476. extra: 4569 / 4377,
  30477. bottom: 69 / 4638
  30478. }
  30479. },
  30480. dressed: {
  30481. height: math.unit(6, "feet"),
  30482. weight: math.unit(150, "lb"),
  30483. name: "Dressed",
  30484. image: {
  30485. source: "./media/characters/casselene-yaro/dressed.svg",
  30486. extra: 4721 / 4541,
  30487. bottom: 82 / 4803
  30488. }
  30489. },
  30490. maw: {
  30491. height: math.unit(1, "feet"),
  30492. name: "Maw",
  30493. image: {
  30494. source: "./media/characters/casselene-yaro/maw.svg"
  30495. }
  30496. },
  30497. },
  30498. [
  30499. {
  30500. name: "Macro",
  30501. height: math.unit(190, "feet"),
  30502. default: true
  30503. },
  30504. ]
  30505. ))
  30506. characterMakers.push(() => makeCharacter(
  30507. { name: "Platine", species: ["raven"], tags: ["anthro"] },
  30508. {
  30509. front: {
  30510. height: math.unit(10, "feet"),
  30511. weight: math.unit(15015, "lb"),
  30512. name: "Front",
  30513. image: {
  30514. source: "./media/characters/platine/front.svg",
  30515. extra: 1428/1353,
  30516. bottom: 31/1459
  30517. }
  30518. },
  30519. },
  30520. [
  30521. {
  30522. name: "Normal",
  30523. height: math.unit(10, "feet"),
  30524. default: true
  30525. },
  30526. {
  30527. name: "Macro",
  30528. height: math.unit(100, "feet")
  30529. },
  30530. {
  30531. name: "Megamacro",
  30532. height: math.unit(1000, "feet")
  30533. },
  30534. ]
  30535. ))
  30536. characterMakers.push(() => makeCharacter(
  30537. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  30538. {
  30539. front: {
  30540. height: math.unit(15 + 5 / 12, "feet"),
  30541. weight: math.unit(4600, "lb"),
  30542. name: "Front",
  30543. image: {
  30544. source: "./media/characters/neapolitan-ananassa/front.svg",
  30545. extra: 2903 / 2736,
  30546. bottom: 0 / 2903
  30547. }
  30548. },
  30549. side: {
  30550. height: math.unit(15 + 5 / 12, "feet"),
  30551. weight: math.unit(4600, "lb"),
  30552. name: "Side",
  30553. image: {
  30554. source: "./media/characters/neapolitan-ananassa/side.svg",
  30555. extra: 2925 / 2719,
  30556. bottom: 0 / 2925
  30557. }
  30558. },
  30559. back: {
  30560. height: math.unit(15 + 5 / 12, "feet"),
  30561. weight: math.unit(4600, "lb"),
  30562. name: "Back",
  30563. image: {
  30564. source: "./media/characters/neapolitan-ananassa/back.svg",
  30565. extra: 2903 / 2736,
  30566. bottom: 0 / 2903
  30567. }
  30568. },
  30569. },
  30570. [
  30571. {
  30572. name: "Normal",
  30573. height: math.unit(15 + 5 / 12, "feet"),
  30574. default: true
  30575. },
  30576. {
  30577. name: "Post-Millenium",
  30578. height: math.unit(35 + 5 / 12, "feet")
  30579. },
  30580. {
  30581. name: "Post-Era",
  30582. height: math.unit(450 + 5 / 12, "feet")
  30583. },
  30584. ]
  30585. ))
  30586. characterMakers.push(() => makeCharacter(
  30587. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  30588. {
  30589. front: {
  30590. height: math.unit(300, "meters"),
  30591. weight: math.unit(125000, "tonnes"),
  30592. name: "Front",
  30593. image: {
  30594. source: "./media/characters/pazuzu/front.svg",
  30595. extra: 877 / 794,
  30596. bottom: 47 / 924
  30597. }
  30598. },
  30599. },
  30600. [
  30601. {
  30602. name: "Macro",
  30603. height: math.unit(300, "meters"),
  30604. default: true
  30605. },
  30606. ]
  30607. ))
  30608. characterMakers.push(() => makeCharacter(
  30609. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  30610. {
  30611. side: {
  30612. height: math.unit(10 + 7 / 12, "feet"),
  30613. weight: math.unit(2.5, "tons"),
  30614. name: "Side",
  30615. image: {
  30616. source: "./media/characters/aasha/side.svg",
  30617. extra: 1345 / 1245,
  30618. bottom: 111 / 1456
  30619. }
  30620. },
  30621. back: {
  30622. height: math.unit(10 + 7 / 12, "feet"),
  30623. weight: math.unit(2.5, "tons"),
  30624. name: "Back",
  30625. image: {
  30626. source: "./media/characters/aasha/back.svg",
  30627. extra: 1133 / 1057,
  30628. bottom: 257 / 1390
  30629. }
  30630. },
  30631. },
  30632. [
  30633. {
  30634. name: "Normal",
  30635. height: math.unit(10 + 7 / 12, "feet"),
  30636. default: true
  30637. },
  30638. ]
  30639. ))
  30640. characterMakers.push(() => makeCharacter(
  30641. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  30642. {
  30643. front: {
  30644. height: math.unit(6 + 3 / 12, "feet"),
  30645. name: "Front",
  30646. image: {
  30647. source: "./media/characters/nevan/front.svg",
  30648. extra: 704 / 704,
  30649. bottom: 28 / 732
  30650. }
  30651. },
  30652. back: {
  30653. height: math.unit(6 + 3 / 12, "feet"),
  30654. name: "Back",
  30655. image: {
  30656. source: "./media/characters/nevan/back.svg",
  30657. extra: 714 / 714,
  30658. bottom: 21 / 735
  30659. }
  30660. },
  30661. frontFlaccid: {
  30662. height: math.unit(6 + 3 / 12, "feet"),
  30663. name: "Front (Flaccid)",
  30664. image: {
  30665. source: "./media/characters/nevan/front-flaccid.svg",
  30666. extra: 704 / 704,
  30667. bottom: 28 / 732
  30668. }
  30669. },
  30670. frontErect: {
  30671. height: math.unit(6 + 3 / 12, "feet"),
  30672. name: "Front (Erect)",
  30673. image: {
  30674. source: "./media/characters/nevan/front-erect.svg",
  30675. extra: 704 / 704,
  30676. bottom: 28 / 732
  30677. }
  30678. },
  30679. backFlaccid: {
  30680. height: math.unit(6 + 3 / 12, "feet"),
  30681. name: "Back (Flaccid)",
  30682. image: {
  30683. source: "./media/characters/nevan/back-flaccid.svg",
  30684. extra: 714 / 714,
  30685. bottom: 21 / 735
  30686. }
  30687. },
  30688. },
  30689. [
  30690. {
  30691. name: "Normal",
  30692. height: math.unit(6 + 3 / 12, "feet"),
  30693. default: true
  30694. },
  30695. ]
  30696. ))
  30697. characterMakers.push(() => makeCharacter(
  30698. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  30699. {
  30700. front: {
  30701. height: math.unit(4, "feet"),
  30702. name: "Front",
  30703. image: {
  30704. source: "./media/characters/arhan/front.svg",
  30705. extra: 3368 / 3133,
  30706. bottom: 0 / 3368
  30707. }
  30708. },
  30709. side: {
  30710. height: math.unit(4, "feet"),
  30711. name: "Side",
  30712. image: {
  30713. source: "./media/characters/arhan/side.svg",
  30714. extra: 3347 / 3105,
  30715. bottom: 0 / 3347
  30716. }
  30717. },
  30718. tongue: {
  30719. height: math.unit(1.42, "feet"),
  30720. name: "Tongue",
  30721. image: {
  30722. source: "./media/characters/arhan/tongue.svg"
  30723. }
  30724. },
  30725. head: {
  30726. height: math.unit(0.85, "feet"),
  30727. name: "Head",
  30728. image: {
  30729. source: "./media/characters/arhan/head.svg"
  30730. }
  30731. },
  30732. },
  30733. [
  30734. {
  30735. name: "Normal",
  30736. height: math.unit(4, "feet"),
  30737. default: true
  30738. },
  30739. ]
  30740. ))
  30741. characterMakers.push(() => makeCharacter(
  30742. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  30743. {
  30744. front: {
  30745. height: math.unit(5 + 7.5 / 12, "feet"),
  30746. weight: math.unit(120, "lb"),
  30747. name: "Front",
  30748. image: {
  30749. source: "./media/characters/digi-duncan/front.svg",
  30750. extra: 330 / 326,
  30751. bottom: 16 / 346
  30752. }
  30753. },
  30754. side: {
  30755. height: math.unit(5 + 7.5 / 12, "feet"),
  30756. weight: math.unit(120, "lb"),
  30757. name: "Side",
  30758. image: {
  30759. source: "./media/characters/digi-duncan/side.svg",
  30760. extra: 341 / 337,
  30761. bottom: 1 / 342
  30762. }
  30763. },
  30764. back: {
  30765. height: math.unit(5 + 7.5 / 12, "feet"),
  30766. weight: math.unit(120, "lb"),
  30767. name: "Back",
  30768. image: {
  30769. source: "./media/characters/digi-duncan/back.svg",
  30770. extra: 330 / 326,
  30771. bottom: 12 / 342
  30772. }
  30773. },
  30774. },
  30775. [
  30776. {
  30777. name: "Speck",
  30778. height: math.unit(0.25, "mm")
  30779. },
  30780. {
  30781. name: "Micro",
  30782. height: math.unit(5, "mm")
  30783. },
  30784. {
  30785. name: "Tiny",
  30786. height: math.unit(0.5, "inches"),
  30787. default: true
  30788. },
  30789. {
  30790. name: "Human",
  30791. height: math.unit(5 + 7.5 / 12, "feet")
  30792. },
  30793. {
  30794. name: "Minigiant",
  30795. height: math.unit(8 + 5.25, "feet")
  30796. },
  30797. {
  30798. name: "Giant",
  30799. height: math.unit(2000, "feet")
  30800. },
  30801. {
  30802. name: "Mega",
  30803. height: math.unit(371.1, "miles")
  30804. },
  30805. ]
  30806. ))
  30807. characterMakers.push(() => makeCharacter(
  30808. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  30809. {
  30810. front: {
  30811. height: math.unit(2, "meters"),
  30812. weight: math.unit(350, "kg"),
  30813. name: "Front",
  30814. image: {
  30815. source: "./media/characters/jagaz-soulbreaker/front.svg",
  30816. extra: 898 / 838,
  30817. bottom: 9 / 907
  30818. }
  30819. },
  30820. },
  30821. [
  30822. {
  30823. name: "Micro",
  30824. height: math.unit(8, "meters")
  30825. },
  30826. {
  30827. name: "Normal",
  30828. height: math.unit(50, "meters"),
  30829. default: true
  30830. },
  30831. {
  30832. name: "Macro",
  30833. height: math.unit(500, "meters")
  30834. },
  30835. ]
  30836. ))
  30837. characterMakers.push(() => makeCharacter(
  30838. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  30839. {
  30840. front: {
  30841. height: math.unit(6 + 6 / 12, "feet"),
  30842. name: "Front",
  30843. image: {
  30844. source: "./media/characters/khardesh/front.svg",
  30845. extra: 1788/1596,
  30846. bottom: 66/1854
  30847. }
  30848. },
  30849. back: {
  30850. height: math.unit(6 + 6 / 12, "feet"),
  30851. name: "Back",
  30852. image: {
  30853. source: "./media/characters/khardesh/back.svg",
  30854. extra: 1781/1584,
  30855. bottom: 68/1849
  30856. }
  30857. },
  30858. },
  30859. [
  30860. {
  30861. name: "Normal",
  30862. height: math.unit(6 + 6 / 12, "feet"),
  30863. default: true
  30864. },
  30865. {
  30866. name: "Normal+",
  30867. height: math.unit(4, "meters")
  30868. },
  30869. {
  30870. name: "Macro",
  30871. height: math.unit(50, "meters")
  30872. },
  30873. {
  30874. name: "Macro+",
  30875. height: math.unit(100, "meters")
  30876. },
  30877. {
  30878. name: "Megamacro",
  30879. height: math.unit(20, "km")
  30880. },
  30881. ]
  30882. ))
  30883. characterMakers.push(() => makeCharacter(
  30884. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  30885. {
  30886. front: {
  30887. height: math.unit(6, "feet"),
  30888. weight: math.unit(150, "lb"),
  30889. name: "Front",
  30890. image: {
  30891. source: "./media/characters/kosho/front.svg",
  30892. extra: 1847 / 1847,
  30893. bottom: 86 / 1933
  30894. }
  30895. },
  30896. },
  30897. [
  30898. {
  30899. name: "Second-stage micro",
  30900. height: math.unit(0.5, "inches")
  30901. },
  30902. {
  30903. name: "First-stage micro",
  30904. height: math.unit(6, "inches")
  30905. },
  30906. {
  30907. name: "Normal",
  30908. height: math.unit(6, "feet"),
  30909. default: true
  30910. },
  30911. {
  30912. name: "First-stage macro",
  30913. height: math.unit(72, "feet")
  30914. },
  30915. {
  30916. name: "Second-stage macro",
  30917. height: math.unit(864, "feet")
  30918. },
  30919. ]
  30920. ))
  30921. characterMakers.push(() => makeCharacter(
  30922. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  30923. {
  30924. normal: {
  30925. height: math.unit(4 + 6 / 12, "feet"),
  30926. name: "Normal",
  30927. image: {
  30928. source: "./media/characters/hydra/normal.svg",
  30929. extra: 2833 / 2634,
  30930. bottom: 68 / 2901
  30931. }
  30932. },
  30933. smol: {
  30934. height: math.unit(0.705, "inches"),
  30935. name: "Smol",
  30936. image: {
  30937. source: "./media/characters/hydra/smol.svg",
  30938. extra: 2715 / 2540,
  30939. bottom: 0 / 2715
  30940. }
  30941. },
  30942. },
  30943. [
  30944. {
  30945. name: "Normal",
  30946. height: math.unit(4 + 6 / 12, "feet"),
  30947. default: true
  30948. }
  30949. ]
  30950. ))
  30951. characterMakers.push(() => makeCharacter(
  30952. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  30953. {
  30954. front: {
  30955. height: math.unit(0.6, "cm"),
  30956. name: "Front",
  30957. image: {
  30958. source: "./media/characters/daz/front.svg",
  30959. extra: 1682 / 1164,
  30960. bottom: 42 / 1724
  30961. }
  30962. },
  30963. },
  30964. [
  30965. {
  30966. name: "Normal",
  30967. height: math.unit(0.6, "cm"),
  30968. default: true
  30969. },
  30970. ]
  30971. ))
  30972. characterMakers.push(() => makeCharacter(
  30973. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  30974. {
  30975. front: {
  30976. height: math.unit(6, "feet"),
  30977. weight: math.unit(235, "lb"),
  30978. name: "Front",
  30979. image: {
  30980. source: "./media/characters/theo-pangolin/front.svg",
  30981. extra: 1996 / 1969,
  30982. bottom: 115 / 2111
  30983. }
  30984. },
  30985. back: {
  30986. height: math.unit(6, "feet"),
  30987. weight: math.unit(235, "lb"),
  30988. name: "Back",
  30989. image: {
  30990. source: "./media/characters/theo-pangolin/back.svg",
  30991. extra: 1979 / 1979,
  30992. bottom: 40 / 2019
  30993. }
  30994. },
  30995. feral: {
  30996. height: math.unit(2, "feet"),
  30997. weight: math.unit(30, "lb"),
  30998. name: "Feral",
  30999. image: {
  31000. source: "./media/characters/theo-pangolin/feral.svg",
  31001. extra: 803 / 791,
  31002. bottom: 181 / 984
  31003. }
  31004. },
  31005. footFive: {
  31006. height: math.unit(1.43, "feet"),
  31007. name: "Foot (Five Toes)",
  31008. image: {
  31009. source: "./media/characters/theo-pangolin/foot-five.svg"
  31010. }
  31011. },
  31012. footFour: {
  31013. height: math.unit(1.43, "feet"),
  31014. name: "Foot (Four Toes)",
  31015. image: {
  31016. source: "./media/characters/theo-pangolin/foot-four.svg"
  31017. }
  31018. },
  31019. handFour: {
  31020. height: math.unit(0.81, "feet"),
  31021. name: "Hand (Four Fingers)",
  31022. image: {
  31023. source: "./media/characters/theo-pangolin/hand-four.svg"
  31024. }
  31025. },
  31026. handThree: {
  31027. height: math.unit(0.81, "feet"),
  31028. name: "Hand (Three Fingers)",
  31029. image: {
  31030. source: "./media/characters/theo-pangolin/hand-three.svg"
  31031. }
  31032. },
  31033. headFront: {
  31034. height: math.unit(1.37, "feet"),
  31035. name: "Head (Front)",
  31036. image: {
  31037. source: "./media/characters/theo-pangolin/head-front.svg"
  31038. }
  31039. },
  31040. headSide: {
  31041. height: math.unit(1.43, "feet"),
  31042. name: "Head (Side)",
  31043. image: {
  31044. source: "./media/characters/theo-pangolin/head-side.svg"
  31045. }
  31046. },
  31047. tongue: {
  31048. height: math.unit(2.29, "feet"),
  31049. name: "Tongue",
  31050. image: {
  31051. source: "./media/characters/theo-pangolin/tongue.svg"
  31052. }
  31053. },
  31054. },
  31055. [
  31056. {
  31057. name: "Normal",
  31058. height: math.unit(6, "feet")
  31059. },
  31060. {
  31061. name: "Macro",
  31062. height: math.unit(400, "feet"),
  31063. default: true
  31064. },
  31065. ]
  31066. ))
  31067. characterMakers.push(() => makeCharacter(
  31068. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  31069. {
  31070. front: {
  31071. height: math.unit(6, "inches"),
  31072. weight: math.unit(0.036, "kg"),
  31073. name: "Front",
  31074. image: {
  31075. source: "./media/characters/renée/front.svg",
  31076. extra: 900 / 886,
  31077. bottom: 8 / 908
  31078. }
  31079. },
  31080. },
  31081. [
  31082. {
  31083. name: "Nano",
  31084. height: math.unit(1, "nm")
  31085. },
  31086. {
  31087. name: "Micro",
  31088. height: math.unit(1, "mm")
  31089. },
  31090. {
  31091. name: "Normal",
  31092. height: math.unit(6, "inches")
  31093. },
  31094. {
  31095. name: "Macro",
  31096. height: math.unit(2000, "feet"),
  31097. default: true
  31098. },
  31099. {
  31100. name: "Megamacro",
  31101. height: math.unit(2, "km")
  31102. },
  31103. {
  31104. name: "Gigamacro",
  31105. height: math.unit(2000, "km")
  31106. },
  31107. {
  31108. name: "Teramacro",
  31109. height: math.unit(250000, "km")
  31110. },
  31111. ]
  31112. ))
  31113. characterMakers.push(() => makeCharacter(
  31114. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  31115. {
  31116. front: {
  31117. height: math.unit(4, "meters"),
  31118. weight: math.unit(150, "kg"),
  31119. name: "Front",
  31120. image: {
  31121. source: "./media/characters/caledvwlch/front.svg",
  31122. extra: 1760 / 1551,
  31123. bottom: 28 / 1788
  31124. }
  31125. },
  31126. side: {
  31127. height: math.unit(4, "meters"),
  31128. weight: math.unit(150, "kg"),
  31129. name: "Side",
  31130. image: {
  31131. source: "./media/characters/caledvwlch/side.svg",
  31132. extra: 1605 / 1536,
  31133. bottom: 31 / 1636
  31134. }
  31135. },
  31136. back: {
  31137. height: math.unit(4, "meters"),
  31138. weight: math.unit(150, "kg"),
  31139. name: "Back",
  31140. image: {
  31141. source: "./media/characters/caledvwlch/back.svg",
  31142. extra: 1635 / 1565,
  31143. bottom: 27 / 1662
  31144. }
  31145. },
  31146. },
  31147. [
  31148. {
  31149. name: "\"Incognito\"",
  31150. height: math.unit(4, "meters")
  31151. },
  31152. {
  31153. name: "Small rampage",
  31154. height: math.unit(600, "meters")
  31155. },
  31156. {
  31157. name: "Mega",
  31158. height: math.unit(30, "km")
  31159. },
  31160. {
  31161. name: "Home-size",
  31162. height: math.unit(50, "km"),
  31163. default: true
  31164. },
  31165. {
  31166. name: "Giga",
  31167. height: math.unit(300, "km")
  31168. },
  31169. {
  31170. name: "Lounging",
  31171. height: math.unit(11000, "km")
  31172. },
  31173. {
  31174. name: "Planet snacking",
  31175. height: math.unit(2000000, "km")
  31176. },
  31177. ]
  31178. ))
  31179. characterMakers.push(() => makeCharacter(
  31180. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  31181. {
  31182. front: {
  31183. height: math.unit(6, "feet"),
  31184. weight: math.unit(215, "lb"),
  31185. name: "Front",
  31186. image: {
  31187. source: "./media/characters/sapphire-svell/front.svg",
  31188. extra: 495 / 455,
  31189. bottom: 20 / 515
  31190. }
  31191. },
  31192. back: {
  31193. height: math.unit(6, "feet"),
  31194. weight: math.unit(216, "lb"),
  31195. name: "Back",
  31196. image: {
  31197. source: "./media/characters/sapphire-svell/back.svg",
  31198. extra: 497 / 477,
  31199. bottom: 7 / 504
  31200. }
  31201. },
  31202. maw: {
  31203. height: math.unit(1.57, "feet"),
  31204. name: "Maw",
  31205. image: {
  31206. source: "./media/characters/sapphire-svell/maw.svg"
  31207. }
  31208. },
  31209. foot: {
  31210. height: math.unit(1.07, "feet"),
  31211. name: "Foot",
  31212. image: {
  31213. source: "./media/characters/sapphire-svell/foot.svg"
  31214. }
  31215. },
  31216. toering: {
  31217. height: math.unit(1.7, "inch"),
  31218. name: "Toering",
  31219. image: {
  31220. source: "./media/characters/sapphire-svell/toering.svg"
  31221. }
  31222. },
  31223. },
  31224. [
  31225. {
  31226. name: "Normal",
  31227. height: math.unit(300, "feet"),
  31228. default: true
  31229. },
  31230. {
  31231. name: "Augmented",
  31232. height: math.unit(1250, "feet")
  31233. },
  31234. {
  31235. name: "Unleashed",
  31236. height: math.unit(3000, "feet")
  31237. },
  31238. ]
  31239. ))
  31240. characterMakers.push(() => makeCharacter(
  31241. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  31242. {
  31243. side: {
  31244. height: math.unit(2 + 3 / 12, "feet"),
  31245. weight: math.unit(110, "lb"),
  31246. name: "Side",
  31247. image: {
  31248. source: "./media/characters/glitch-flux/side.svg",
  31249. extra: 997 / 805,
  31250. bottom: 20 / 1017
  31251. }
  31252. },
  31253. },
  31254. [
  31255. {
  31256. name: "Normal",
  31257. height: math.unit(2 + 3 / 12, "feet"),
  31258. default: true
  31259. },
  31260. ]
  31261. ))
  31262. characterMakers.push(() => makeCharacter(
  31263. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  31264. {
  31265. front: {
  31266. height: math.unit(4, "meters"),
  31267. name: "Front",
  31268. image: {
  31269. source: "./media/characters/mid/front.svg",
  31270. extra: 507 / 476,
  31271. bottom: 17 / 524
  31272. }
  31273. },
  31274. back: {
  31275. height: math.unit(4, "meters"),
  31276. name: "Back",
  31277. image: {
  31278. source: "./media/characters/mid/back.svg",
  31279. extra: 519 / 487,
  31280. bottom: 7 / 526
  31281. }
  31282. },
  31283. stuck: {
  31284. height: math.unit(2.2, "meters"),
  31285. name: "Stuck",
  31286. image: {
  31287. source: "./media/characters/mid/stuck.svg",
  31288. extra: 1951 / 1869,
  31289. bottom: 88 / 2039
  31290. }
  31291. }
  31292. },
  31293. [
  31294. {
  31295. name: "Normal",
  31296. height: math.unit(4, "meters"),
  31297. default: true
  31298. },
  31299. {
  31300. name: "Big",
  31301. height: math.unit(10, "meters")
  31302. },
  31303. {
  31304. name: "Macro",
  31305. height: math.unit(800, "meters")
  31306. },
  31307. {
  31308. name: "Megamacro",
  31309. height: math.unit(100, "km")
  31310. },
  31311. {
  31312. name: "Overgrown",
  31313. height: math.unit(1, "parsec")
  31314. },
  31315. ]
  31316. ))
  31317. characterMakers.push(() => makeCharacter(
  31318. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  31319. {
  31320. front: {
  31321. height: math.unit(2.5, "meters"),
  31322. weight: math.unit(225, "kg"),
  31323. name: "Front",
  31324. image: {
  31325. source: "./media/characters/iris/front.svg",
  31326. extra: 3348 / 3251,
  31327. bottom: 205 / 3553
  31328. }
  31329. },
  31330. maw: {
  31331. height: math.unit(0.56, "meter"),
  31332. name: "Maw",
  31333. image: {
  31334. source: "./media/characters/iris/maw.svg"
  31335. }
  31336. },
  31337. },
  31338. [
  31339. {
  31340. name: "Mewter cat",
  31341. height: math.unit(1.2, "meters")
  31342. },
  31343. {
  31344. name: "Minimacro",
  31345. height: math.unit(2.5, "meters"),
  31346. default: true
  31347. },
  31348. {
  31349. name: "Macro",
  31350. height: math.unit(180, "meters")
  31351. },
  31352. {
  31353. name: "Megamacro",
  31354. height: math.unit(2746, "meters")
  31355. },
  31356. ]
  31357. ))
  31358. characterMakers.push(() => makeCharacter(
  31359. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  31360. {
  31361. front: {
  31362. height: math.unit(6, "feet"),
  31363. weight: math.unit(135, "lb"),
  31364. name: "Front",
  31365. image: {
  31366. source: "./media/characters/axel/front.svg",
  31367. extra: 908 / 908,
  31368. bottom: 58 / 966
  31369. }
  31370. },
  31371. side: {
  31372. height: math.unit(6, "feet"),
  31373. weight: math.unit(135, "lb"),
  31374. name: "Side",
  31375. image: {
  31376. source: "./media/characters/axel/side.svg",
  31377. extra: 958 / 958,
  31378. bottom: 11 / 969
  31379. }
  31380. },
  31381. back: {
  31382. height: math.unit(6, "feet"),
  31383. weight: math.unit(135, "lb"),
  31384. name: "Back",
  31385. image: {
  31386. source: "./media/characters/axel/back.svg",
  31387. extra: 887 / 887,
  31388. bottom: 34 / 921
  31389. }
  31390. },
  31391. head: {
  31392. height: math.unit(1.07, "feet"),
  31393. name: "Head",
  31394. image: {
  31395. source: "./media/characters/axel/head.svg"
  31396. }
  31397. },
  31398. beak: {
  31399. height: math.unit(1.4, "feet"),
  31400. name: "Beak",
  31401. image: {
  31402. source: "./media/characters/axel/beak.svg"
  31403. }
  31404. },
  31405. beakSide: {
  31406. height: math.unit(1.4, "feet"),
  31407. name: "Beak Side",
  31408. image: {
  31409. source: "./media/characters/axel/beak-side.svg"
  31410. }
  31411. },
  31412. sheath: {
  31413. height: math.unit(0.5, "feet"),
  31414. name: "Sheath",
  31415. image: {
  31416. source: "./media/characters/axel/sheath.svg"
  31417. }
  31418. },
  31419. dick: {
  31420. height: math.unit(0.98, "feet"),
  31421. name: "Dick",
  31422. image: {
  31423. source: "./media/characters/axel/dick.svg"
  31424. }
  31425. },
  31426. },
  31427. [
  31428. {
  31429. name: "Macro",
  31430. height: math.unit(68, "meters"),
  31431. default: true
  31432. },
  31433. ]
  31434. ))
  31435. characterMakers.push(() => makeCharacter(
  31436. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  31437. {
  31438. front: {
  31439. height: math.unit(3.5, "meters"),
  31440. weight: math.unit(1200, "kg"),
  31441. name: "Front",
  31442. image: {
  31443. source: "./media/characters/joanna/front.svg",
  31444. extra: 1596 / 1488,
  31445. bottom: 29 / 1625
  31446. }
  31447. },
  31448. back: {
  31449. height: math.unit(3.5, "meters"),
  31450. weight: math.unit(1200, "kg"),
  31451. name: "Back",
  31452. image: {
  31453. source: "./media/characters/joanna/back.svg",
  31454. extra: 1594 / 1495,
  31455. bottom: 26 / 1620
  31456. }
  31457. },
  31458. frontShorts: {
  31459. height: math.unit(3.5, "meters"),
  31460. weight: math.unit(1200, "kg"),
  31461. name: "Front (Shorts)",
  31462. image: {
  31463. source: "./media/characters/joanna/front-shorts.svg",
  31464. extra: 1596 / 1488,
  31465. bottom: 29 / 1625
  31466. }
  31467. },
  31468. frontBiker: {
  31469. height: math.unit(3.5, "meters"),
  31470. weight: math.unit(1200, "kg"),
  31471. name: "Front (Biker)",
  31472. image: {
  31473. source: "./media/characters/joanna/front-biker.svg",
  31474. extra: 1596 / 1488,
  31475. bottom: 29 / 1625
  31476. }
  31477. },
  31478. backBiker: {
  31479. height: math.unit(3.5, "meters"),
  31480. weight: math.unit(1200, "kg"),
  31481. name: "Back (Biker)",
  31482. image: {
  31483. source: "./media/characters/joanna/back-biker.svg",
  31484. extra: 1594 / 1495,
  31485. bottom: 88 / 1682
  31486. }
  31487. },
  31488. bikeLeft: {
  31489. height: math.unit(2.4, "meters"),
  31490. weight: math.unit(1600, "kg"),
  31491. name: "Bike (Left)",
  31492. image: {
  31493. source: "./media/characters/joanna/bike-left.svg",
  31494. extra: 720 / 720,
  31495. bottom: 8 / 728
  31496. }
  31497. },
  31498. bikeRight: {
  31499. height: math.unit(2.4, "meters"),
  31500. weight: math.unit(1600, "kg"),
  31501. name: "Bike (Right)",
  31502. image: {
  31503. source: "./media/characters/joanna/bike-right.svg",
  31504. extra: 720 / 720,
  31505. bottom: 8 / 728
  31506. }
  31507. },
  31508. },
  31509. [
  31510. {
  31511. name: "Incognito",
  31512. height: math.unit(3.5, "meters")
  31513. },
  31514. {
  31515. name: "Casual Big",
  31516. height: math.unit(200, "meters")
  31517. },
  31518. {
  31519. name: "Macro",
  31520. height: math.unit(600, "meters")
  31521. },
  31522. {
  31523. name: "Original",
  31524. height: math.unit(20, "km"),
  31525. default: true
  31526. },
  31527. {
  31528. name: "Giga",
  31529. height: math.unit(400, "km")
  31530. },
  31531. {
  31532. name: "Lounging",
  31533. height: math.unit(1500, "km")
  31534. },
  31535. {
  31536. name: "Planetary",
  31537. height: math.unit(200000, "km")
  31538. },
  31539. ]
  31540. ))
  31541. characterMakers.push(() => makeCharacter(
  31542. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  31543. {
  31544. front: {
  31545. height: math.unit(6, "feet"),
  31546. weight: math.unit(150, "lb"),
  31547. name: "Front",
  31548. image: {
  31549. source: "./media/characters/hugo-sigil/front.svg",
  31550. extra: 522 / 500,
  31551. bottom: 2 / 524
  31552. }
  31553. },
  31554. back: {
  31555. height: math.unit(6, "feet"),
  31556. weight: math.unit(150, "lb"),
  31557. name: "Back",
  31558. image: {
  31559. source: "./media/characters/hugo-sigil/back.svg",
  31560. extra: 519 / 495,
  31561. bottom: 5 / 524
  31562. }
  31563. },
  31564. maw: {
  31565. height: math.unit(1.4, "feet"),
  31566. weight: math.unit(150, "lb"),
  31567. name: "Maw",
  31568. image: {
  31569. source: "./media/characters/hugo-sigil/maw.svg"
  31570. }
  31571. },
  31572. feet: {
  31573. height: math.unit(1.56, "feet"),
  31574. weight: math.unit(150, "lb"),
  31575. name: "Feet",
  31576. image: {
  31577. source: "./media/characters/hugo-sigil/feet.svg",
  31578. extra: 177 / 177,
  31579. bottom: 12 / 189
  31580. }
  31581. },
  31582. },
  31583. [
  31584. {
  31585. name: "Normal",
  31586. height: math.unit(6, "feet")
  31587. },
  31588. {
  31589. name: "Macro",
  31590. height: math.unit(200, "feet"),
  31591. default: true
  31592. },
  31593. ]
  31594. ))
  31595. characterMakers.push(() => makeCharacter(
  31596. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  31597. {
  31598. front: {
  31599. height: math.unit(6, "feet"),
  31600. weight: math.unit(150, "lb"),
  31601. name: "Front",
  31602. image: {
  31603. source: "./media/characters/peri/front.svg",
  31604. extra: 2354 / 2233,
  31605. bottom: 49 / 2403
  31606. }
  31607. },
  31608. },
  31609. [
  31610. {
  31611. name: "Really Small",
  31612. height: math.unit(1, "nm")
  31613. },
  31614. {
  31615. name: "Micro",
  31616. height: math.unit(4, "inches")
  31617. },
  31618. {
  31619. name: "Normal",
  31620. height: math.unit(7, "inches"),
  31621. default: true
  31622. },
  31623. {
  31624. name: "Macro",
  31625. height: math.unit(400, "feet")
  31626. },
  31627. {
  31628. name: "Megamacro",
  31629. height: math.unit(100, "miles")
  31630. },
  31631. ]
  31632. ))
  31633. characterMakers.push(() => makeCharacter(
  31634. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  31635. {
  31636. frontSlim: {
  31637. height: math.unit(7, "feet"),
  31638. name: "Front (Slim)",
  31639. image: {
  31640. source: "./media/characters/issilora/front-slim.svg",
  31641. extra: 529 / 449,
  31642. bottom: 53 / 582
  31643. }
  31644. },
  31645. sideSlim: {
  31646. height: math.unit(7, "feet"),
  31647. name: "Side (Slim)",
  31648. image: {
  31649. source: "./media/characters/issilora/side-slim.svg",
  31650. extra: 570 / 480,
  31651. bottom: 30 / 600
  31652. }
  31653. },
  31654. backSlim: {
  31655. height: math.unit(7, "feet"),
  31656. name: "Back (Slim)",
  31657. image: {
  31658. source: "./media/characters/issilora/back-slim.svg",
  31659. extra: 537 / 455,
  31660. bottom: 46 / 583
  31661. }
  31662. },
  31663. frontBuff: {
  31664. height: math.unit(7, "feet"),
  31665. name: "Front (Buff)",
  31666. image: {
  31667. source: "./media/characters/issilora/front-buff.svg",
  31668. extra: 2310 / 2035,
  31669. bottom: 335 / 2645
  31670. }
  31671. },
  31672. head: {
  31673. height: math.unit(1.94, "feet"),
  31674. name: "Head",
  31675. image: {
  31676. source: "./media/characters/issilora/head.svg"
  31677. }
  31678. },
  31679. },
  31680. [
  31681. {
  31682. name: "Minimum",
  31683. height: math.unit(7, "feet")
  31684. },
  31685. {
  31686. name: "Comfortable",
  31687. height: math.unit(17, "feet")
  31688. },
  31689. {
  31690. name: "Fun Size",
  31691. height: math.unit(47, "feet")
  31692. },
  31693. {
  31694. name: "Natural Macro",
  31695. height: math.unit(137, "feet"),
  31696. default: true
  31697. },
  31698. {
  31699. name: "Maximum Kaiju",
  31700. height: math.unit(397, "feet")
  31701. },
  31702. ]
  31703. ))
  31704. characterMakers.push(() => makeCharacter(
  31705. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  31706. {
  31707. front: {
  31708. height: math.unit(50 + 9/12, "feet"),
  31709. weight: math.unit(32.8, "tons"),
  31710. name: "Front",
  31711. image: {
  31712. source: "./media/characters/irb'iiritaahn/front.svg",
  31713. extra: 1878/1826,
  31714. bottom: 326/2204
  31715. }
  31716. },
  31717. back: {
  31718. height: math.unit(50 + 9/12, "feet"),
  31719. weight: math.unit(32.8, "tons"),
  31720. name: "Back",
  31721. image: {
  31722. source: "./media/characters/irb'iiritaahn/back.svg",
  31723. extra: 2052/2018,
  31724. bottom: 152/2204
  31725. }
  31726. },
  31727. head: {
  31728. height: math.unit(12.86, "feet"),
  31729. name: "Head",
  31730. image: {
  31731. source: "./media/characters/irb'iiritaahn/head.svg"
  31732. }
  31733. },
  31734. maw: {
  31735. height: math.unit(9.66, "feet"),
  31736. name: "Maw",
  31737. image: {
  31738. source: "./media/characters/irb'iiritaahn/maw.svg"
  31739. }
  31740. },
  31741. frontDick: {
  31742. height: math.unit(8.78461, "feet"),
  31743. name: "Front Dick",
  31744. image: {
  31745. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  31746. }
  31747. },
  31748. rearDick: {
  31749. height: math.unit(8.78461, "feet"),
  31750. name: "Rear Dick",
  31751. image: {
  31752. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  31753. }
  31754. },
  31755. rearDickUnfolded: {
  31756. height: math.unit(8.78, "feet"),
  31757. name: "Rear Dick (Unfolded)",
  31758. image: {
  31759. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  31760. }
  31761. },
  31762. wings: {
  31763. height: math.unit(43, "feet"),
  31764. name: "Wings",
  31765. image: {
  31766. source: "./media/characters/irb'iiritaahn/wings.svg"
  31767. }
  31768. },
  31769. },
  31770. [
  31771. {
  31772. name: "Macro",
  31773. height: math.unit(50 + 9/12, "feet"),
  31774. default: true
  31775. },
  31776. ]
  31777. ))
  31778. characterMakers.push(() => makeCharacter(
  31779. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  31780. {
  31781. front: {
  31782. height: math.unit(205, "cm"),
  31783. weight: math.unit(102, "kg"),
  31784. name: "Front",
  31785. image: {
  31786. source: "./media/characters/irbisgreif/front.svg",
  31787. extra: 785/706,
  31788. bottom: 13/798
  31789. }
  31790. },
  31791. back: {
  31792. height: math.unit(205, "cm"),
  31793. weight: math.unit(102, "kg"),
  31794. name: "Back",
  31795. image: {
  31796. source: "./media/characters/irbisgreif/back.svg",
  31797. extra: 713/701,
  31798. bottom: 26/739
  31799. }
  31800. },
  31801. frontDressed: {
  31802. height: math.unit(216, "cm"),
  31803. weight: math.unit(102, "kg"),
  31804. name: "Front-dressed",
  31805. image: {
  31806. source: "./media/characters/irbisgreif/front-dressed.svg",
  31807. extra: 902/776,
  31808. bottom: 14/916
  31809. }
  31810. },
  31811. sideDressed: {
  31812. height: math.unit(195, "cm"),
  31813. weight: math.unit(102, "kg"),
  31814. name: "Side-dressed",
  31815. image: {
  31816. source: "./media/characters/irbisgreif/side-dressed.svg",
  31817. extra: 788/688,
  31818. bottom: 21/809
  31819. }
  31820. },
  31821. backDressed: {
  31822. height: math.unit(216, "cm"),
  31823. weight: math.unit(102, "kg"),
  31824. name: "Back-dressed",
  31825. image: {
  31826. source: "./media/characters/irbisgreif/back-dressed.svg",
  31827. extra: 901/783,
  31828. bottom: 10/911
  31829. }
  31830. },
  31831. dick: {
  31832. height: math.unit(0.49, "feet"),
  31833. name: "Dick",
  31834. image: {
  31835. source: "./media/characters/irbisgreif/dick.svg"
  31836. }
  31837. },
  31838. wingTop: {
  31839. height: math.unit(1.93 , "feet"),
  31840. name: "Wing-top",
  31841. image: {
  31842. source: "./media/characters/irbisgreif/wing-top.svg"
  31843. }
  31844. },
  31845. wingBottom: {
  31846. height: math.unit(1.93 , "feet"),
  31847. name: "Wing-bottom",
  31848. image: {
  31849. source: "./media/characters/irbisgreif/wing-bottom.svg"
  31850. }
  31851. },
  31852. },
  31853. [
  31854. {
  31855. name: "Normal",
  31856. height: math.unit(216, "cm"),
  31857. default: true
  31858. },
  31859. ]
  31860. ))
  31861. characterMakers.push(() => makeCharacter(
  31862. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  31863. {
  31864. front: {
  31865. height: math.unit(6, "feet"),
  31866. weight: math.unit(150, "lb"),
  31867. name: "Front",
  31868. image: {
  31869. source: "./media/characters/pride/front.svg",
  31870. extra: 1299/1230,
  31871. bottom: 18/1317
  31872. }
  31873. },
  31874. },
  31875. [
  31876. {
  31877. name: "Normal",
  31878. height: math.unit(7, "feet")
  31879. },
  31880. {
  31881. name: "Mini-macro",
  31882. height: math.unit(11, "feet")
  31883. },
  31884. {
  31885. name: "Macro",
  31886. height: math.unit(15, "meters"),
  31887. default: true
  31888. },
  31889. {
  31890. name: "Macro+",
  31891. height: math.unit(40, "meters")
  31892. },
  31893. ]
  31894. ))
  31895. characterMakers.push(() => makeCharacter(
  31896. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  31897. {
  31898. front: {
  31899. height: math.unit(4 + 2 / 12, "feet"),
  31900. weight: math.unit(95, "lb"),
  31901. name: "Front",
  31902. image: {
  31903. source: "./media/characters/vaelophis-nyx/front.svg",
  31904. extra: 2532/2330,
  31905. bottom: 0/2532
  31906. }
  31907. },
  31908. back: {
  31909. height: math.unit(4 + 2 / 12, "feet"),
  31910. weight: math.unit(95, "lb"),
  31911. name: "Back",
  31912. image: {
  31913. source: "./media/characters/vaelophis-nyx/back.svg",
  31914. extra: 2484/2361,
  31915. bottom: 0/2484
  31916. }
  31917. },
  31918. feralSide: {
  31919. height: math.unit(2 + 1/12, "feet"),
  31920. weight: math.unit(20, "lb"),
  31921. name: "Feral (Side)",
  31922. image: {
  31923. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  31924. extra: 1721/1581,
  31925. bottom: 70/1791
  31926. }
  31927. },
  31928. feralLazing: {
  31929. height: math.unit(1.08, "feet"),
  31930. weight: math.unit(20, "lb"),
  31931. name: "Feral (Lazing)",
  31932. image: {
  31933. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  31934. extra: 822/822,
  31935. bottom: 248/1070
  31936. }
  31937. },
  31938. ear: {
  31939. height: math.unit(0.416, "feet"),
  31940. name: "Ear",
  31941. image: {
  31942. source: "./media/characters/vaelophis-nyx/ear.svg"
  31943. }
  31944. },
  31945. eye: {
  31946. height: math.unit(0.0748, "feet"),
  31947. name: "Eye",
  31948. image: {
  31949. source: "./media/characters/vaelophis-nyx/eye.svg"
  31950. }
  31951. },
  31952. mouth: {
  31953. height: math.unit(0.378, "feet"),
  31954. name: "Mouth",
  31955. image: {
  31956. source: "./media/characters/vaelophis-nyx/mouth.svg"
  31957. }
  31958. },
  31959. spade: {
  31960. height: math.unit(0.55, "feet"),
  31961. name: "Spade",
  31962. image: {
  31963. source: "./media/characters/vaelophis-nyx/spade.svg"
  31964. }
  31965. },
  31966. },
  31967. [
  31968. {
  31969. name: "Normal",
  31970. height: math.unit(4 + 2/12, "feet"),
  31971. default: true
  31972. },
  31973. ]
  31974. ))
  31975. characterMakers.push(() => makeCharacter(
  31976. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  31977. {
  31978. front: {
  31979. height: math.unit(7, "feet"),
  31980. weight: math.unit(231, "lb"),
  31981. name: "Front",
  31982. image: {
  31983. source: "./media/characters/flux/front.svg",
  31984. extra: 919/871,
  31985. bottom: 0/919
  31986. }
  31987. },
  31988. back: {
  31989. height: math.unit(7, "feet"),
  31990. weight: math.unit(231, "lb"),
  31991. name: "Back",
  31992. image: {
  31993. source: "./media/characters/flux/back.svg",
  31994. extra: 1040/992,
  31995. bottom: 0/1040
  31996. }
  31997. },
  31998. frontDressed: {
  31999. height: math.unit(7, "feet"),
  32000. weight: math.unit(231, "lb"),
  32001. name: "Front (Dressed)",
  32002. image: {
  32003. source: "./media/characters/flux/front-dressed.svg",
  32004. extra: 919/871,
  32005. bottom: 0/919
  32006. }
  32007. },
  32008. feralSide: {
  32009. height: math.unit(5, "feet"),
  32010. weight: math.unit(150, "lb"),
  32011. name: "Feral (Side)",
  32012. image: {
  32013. source: "./media/characters/flux/feral-side.svg",
  32014. extra: 598/528,
  32015. bottom: 28/626
  32016. }
  32017. },
  32018. head: {
  32019. height: math.unit(1.585, "feet"),
  32020. name: "Head",
  32021. image: {
  32022. source: "./media/characters/flux/head.svg"
  32023. }
  32024. },
  32025. headSide: {
  32026. height: math.unit(1.74, "feet"),
  32027. name: "Head (Side)",
  32028. image: {
  32029. source: "./media/characters/flux/head-side.svg"
  32030. }
  32031. },
  32032. headSideFire: {
  32033. height: math.unit(1.76, "feet"),
  32034. name: "Head (Side, Fire)",
  32035. image: {
  32036. source: "./media/characters/flux/head-side-fire.svg"
  32037. }
  32038. },
  32039. },
  32040. [
  32041. {
  32042. name: "Normal",
  32043. height: math.unit(7, "feet"),
  32044. default: true
  32045. },
  32046. ]
  32047. ))
  32048. characterMakers.push(() => makeCharacter(
  32049. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  32050. {
  32051. front: {
  32052. height: math.unit(9, "feet"),
  32053. weight: math.unit(1012, "lb"),
  32054. name: "Front",
  32055. image: {
  32056. source: "./media/characters/ulfra-lupae/front.svg",
  32057. extra: 1083/1011,
  32058. bottom: 67/1150
  32059. }
  32060. },
  32061. },
  32062. [
  32063. {
  32064. name: "Micro",
  32065. height: math.unit(6, "inches")
  32066. },
  32067. {
  32068. name: "Socializing",
  32069. height: math.unit(6 + 5/12, "feet")
  32070. },
  32071. {
  32072. name: "Normal",
  32073. height: math.unit(9, "feet"),
  32074. default: true
  32075. },
  32076. {
  32077. name: "Macro",
  32078. height: math.unit(150, "feet")
  32079. },
  32080. ]
  32081. ))
  32082. characterMakers.push(() => makeCharacter(
  32083. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  32084. {
  32085. front: {
  32086. height: math.unit(5 + 2/12, "feet"),
  32087. weight: math.unit(120, "lb"),
  32088. name: "Front",
  32089. image: {
  32090. source: "./media/characters/timber/front.svg",
  32091. extra: 2814/2705,
  32092. bottom: 181/2995
  32093. }
  32094. },
  32095. },
  32096. [
  32097. {
  32098. name: "Normal",
  32099. height: math.unit(5 + 2/12, "feet"),
  32100. default: true
  32101. },
  32102. ]
  32103. ))
  32104. characterMakers.push(() => makeCharacter(
  32105. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  32106. {
  32107. front: {
  32108. height: math.unit(9, "feet"),
  32109. name: "Front",
  32110. image: {
  32111. source: "./media/characters/nicki/front.svg",
  32112. extra: 1240/990,
  32113. bottom: 45/1285
  32114. },
  32115. form: "anthro",
  32116. default: true
  32117. },
  32118. side: {
  32119. height: math.unit(9, "feet"),
  32120. name: "Side",
  32121. image: {
  32122. source: "./media/characters/nicki/side.svg",
  32123. extra: 1047/973,
  32124. bottom: 61/1108
  32125. },
  32126. form: "anthro"
  32127. },
  32128. back: {
  32129. height: math.unit(9, "feet"),
  32130. name: "Back",
  32131. image: {
  32132. source: "./media/characters/nicki/back.svg",
  32133. extra: 1006/965,
  32134. bottom: 39/1045
  32135. },
  32136. form: "anthro"
  32137. },
  32138. taur: {
  32139. height: math.unit(15, "feet"),
  32140. name: "Taur",
  32141. image: {
  32142. source: "./media/characters/nicki/taur.svg",
  32143. extra: 1592/1347,
  32144. bottom: 0/1592
  32145. },
  32146. form: "taur",
  32147. default: true
  32148. },
  32149. },
  32150. [
  32151. {
  32152. name: "Normal",
  32153. height: math.unit(9, "feet"),
  32154. form: "anthro",
  32155. default: true
  32156. },
  32157. {
  32158. name: "Normal",
  32159. height: math.unit(15, "feet"),
  32160. form: "taur",
  32161. default: true
  32162. }
  32163. ],
  32164. {
  32165. "anthro": {
  32166. name: "Anthro",
  32167. default: true
  32168. },
  32169. "taur": {
  32170. name: "Taur"
  32171. }
  32172. }
  32173. ))
  32174. characterMakers.push(() => makeCharacter(
  32175. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  32176. {
  32177. front: {
  32178. height: math.unit(7 + 10/12, "feet"),
  32179. weight: math.unit(3.5, "tons"),
  32180. name: "Front",
  32181. image: {
  32182. source: "./media/characters/lee/front.svg",
  32183. extra: 1773/1615,
  32184. bottom: 86/1859
  32185. }
  32186. },
  32187. hand: {
  32188. height: math.unit(1.78, "feet"),
  32189. name: "Hand",
  32190. image: {
  32191. source: "./media/characters/lee/hand.svg"
  32192. }
  32193. },
  32194. maw: {
  32195. height: math.unit(1.18, "feet"),
  32196. name: "Maw",
  32197. image: {
  32198. source: "./media/characters/lee/maw.svg"
  32199. }
  32200. },
  32201. },
  32202. [
  32203. {
  32204. name: "Normal",
  32205. height: math.unit(7 + 10/12, "feet"),
  32206. default: true
  32207. },
  32208. ]
  32209. ))
  32210. characterMakers.push(() => makeCharacter(
  32211. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  32212. {
  32213. front: {
  32214. height: math.unit(9, "feet"),
  32215. name: "Front",
  32216. image: {
  32217. source: "./media/characters/guti/front.svg",
  32218. extra: 4551/4355,
  32219. bottom: 123/4674
  32220. }
  32221. },
  32222. tongue: {
  32223. height: math.unit(1, "feet"),
  32224. name: "Tongue",
  32225. image: {
  32226. source: "./media/characters/guti/tongue.svg"
  32227. }
  32228. },
  32229. paw: {
  32230. height: math.unit(1.18, "feet"),
  32231. name: "Paw",
  32232. image: {
  32233. source: "./media/characters/guti/paw.svg"
  32234. }
  32235. },
  32236. },
  32237. [
  32238. {
  32239. name: "Normal",
  32240. height: math.unit(9, "feet"),
  32241. default: true
  32242. },
  32243. ]
  32244. ))
  32245. characterMakers.push(() => makeCharacter(
  32246. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  32247. {
  32248. side: {
  32249. height: math.unit(5, "meters"),
  32250. name: "Side",
  32251. image: {
  32252. source: "./media/characters/vesper/side.svg",
  32253. extra: 1605/1518,
  32254. bottom: 0/1605
  32255. }
  32256. },
  32257. },
  32258. [
  32259. {
  32260. name: "Small",
  32261. height: math.unit(5, "meters")
  32262. },
  32263. {
  32264. name: "Sage",
  32265. height: math.unit(100, "meters"),
  32266. default: true
  32267. },
  32268. {
  32269. name: "Fun Size",
  32270. height: math.unit(600, "meters")
  32271. },
  32272. {
  32273. name: "Goddess",
  32274. height: math.unit(20000, "km")
  32275. },
  32276. {
  32277. name: "Maximum",
  32278. height: math.unit(5, "galaxies")
  32279. },
  32280. ]
  32281. ))
  32282. characterMakers.push(() => makeCharacter(
  32283. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  32284. {
  32285. front: {
  32286. height: math.unit(6 + 3/12, "feet"),
  32287. weight: math.unit(190, "lb"),
  32288. name: "Front",
  32289. image: {
  32290. source: "./media/characters/gawain/front.svg",
  32291. extra: 2222/2139,
  32292. bottom: 90/2312
  32293. }
  32294. },
  32295. back: {
  32296. height: math.unit(6 + 3/12, "feet"),
  32297. weight: math.unit(190, "lb"),
  32298. name: "Back",
  32299. image: {
  32300. source: "./media/characters/gawain/back.svg",
  32301. extra: 2199/2111,
  32302. bottom: 73/2272
  32303. }
  32304. },
  32305. },
  32306. [
  32307. {
  32308. name: "Normal",
  32309. height: math.unit(6 + 3/12, "feet"),
  32310. default: true
  32311. },
  32312. ]
  32313. ))
  32314. characterMakers.push(() => makeCharacter(
  32315. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  32316. {
  32317. side: {
  32318. height: math.unit(3.5, "meters"),
  32319. weight: math.unit(16000, "lb"),
  32320. name: "Side",
  32321. image: {
  32322. source: "./media/characters/dascalti/side.svg",
  32323. extra: 392/273,
  32324. bottom: 47/439
  32325. }
  32326. },
  32327. breath: {
  32328. height: math.unit(7.4, "feet"),
  32329. name: "Breath",
  32330. image: {
  32331. source: "./media/characters/dascalti/breath.svg"
  32332. }
  32333. },
  32334. fed: {
  32335. height: math.unit(3.6, "meters"),
  32336. weight: math.unit(16000, "lb"),
  32337. name: "Fed",
  32338. image: {
  32339. source: "./media/characters/dascalti/fed.svg",
  32340. extra: 1419/820,
  32341. bottom: 95/1514
  32342. }
  32343. },
  32344. },
  32345. [
  32346. {
  32347. name: "Normal",
  32348. height: math.unit(3.5, "meters"),
  32349. default: true
  32350. },
  32351. ]
  32352. ))
  32353. characterMakers.push(() => makeCharacter(
  32354. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  32355. {
  32356. front: {
  32357. height: math.unit(3 + 5/12, "feet"),
  32358. name: "Front",
  32359. image: {
  32360. source: "./media/characters/mauve/front.svg",
  32361. extra: 1126/1033,
  32362. bottom: 65/1191
  32363. }
  32364. },
  32365. side: {
  32366. height: math.unit(3 + 5/12, "feet"),
  32367. name: "Side",
  32368. image: {
  32369. source: "./media/characters/mauve/side.svg",
  32370. extra: 1089/1001,
  32371. bottom: 29/1118
  32372. }
  32373. },
  32374. back: {
  32375. height: math.unit(3 + 5/12, "feet"),
  32376. name: "Back",
  32377. image: {
  32378. source: "./media/characters/mauve/back.svg",
  32379. extra: 1173/1053,
  32380. bottom: 109/1282
  32381. }
  32382. },
  32383. },
  32384. [
  32385. {
  32386. name: "Normal",
  32387. height: math.unit(3 + 5/12, "feet"),
  32388. default: true
  32389. },
  32390. ]
  32391. ))
  32392. characterMakers.push(() => makeCharacter(
  32393. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  32394. {
  32395. front: {
  32396. height: math.unit(6 + 3/12, "feet"),
  32397. weight: math.unit(430, "lb"),
  32398. name: "Front",
  32399. image: {
  32400. source: "./media/characters/carlos/front.svg",
  32401. extra: 1964/1913,
  32402. bottom: 70/2034
  32403. }
  32404. },
  32405. },
  32406. [
  32407. {
  32408. name: "Normal",
  32409. height: math.unit(6 + 3/12, "feet"),
  32410. default: true
  32411. },
  32412. ]
  32413. ))
  32414. characterMakers.push(() => makeCharacter(
  32415. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  32416. {
  32417. back: {
  32418. height: math.unit(5 + 10/12, "feet"),
  32419. weight: math.unit(200, "lb"),
  32420. name: "Back",
  32421. image: {
  32422. source: "./media/characters/jax/back.svg",
  32423. extra: 764/739,
  32424. bottom: 25/789
  32425. }
  32426. },
  32427. },
  32428. [
  32429. {
  32430. name: "Normal",
  32431. height: math.unit(5 + 10/12, "feet"),
  32432. default: true
  32433. },
  32434. ]
  32435. ))
  32436. characterMakers.push(() => makeCharacter(
  32437. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  32438. {
  32439. front: {
  32440. height: math.unit(8, "feet"),
  32441. weight: math.unit(250, "lb"),
  32442. name: "Front",
  32443. image: {
  32444. source: "./media/characters/eikthynir/front.svg",
  32445. extra: 1332/1166,
  32446. bottom: 82/1414
  32447. }
  32448. },
  32449. back: {
  32450. height: math.unit(8, "feet"),
  32451. weight: math.unit(250, "lb"),
  32452. name: "Back",
  32453. image: {
  32454. source: "./media/characters/eikthynir/back.svg",
  32455. extra: 1342/1190,
  32456. bottom: 19/1361
  32457. }
  32458. },
  32459. dick: {
  32460. height: math.unit(2.35, "feet"),
  32461. name: "Dick",
  32462. image: {
  32463. source: "./media/characters/eikthynir/dick.svg"
  32464. }
  32465. },
  32466. },
  32467. [
  32468. {
  32469. name: "Normal",
  32470. height: math.unit(8, "feet"),
  32471. default: true
  32472. },
  32473. ]
  32474. ))
  32475. characterMakers.push(() => makeCharacter(
  32476. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  32477. {
  32478. front: {
  32479. height: math.unit(99, "meters"),
  32480. weight: math.unit(13000, "tons"),
  32481. name: "Front",
  32482. image: {
  32483. source: "./media/characters/zlmos/front.svg",
  32484. extra: 2202/1992,
  32485. bottom: 315/2517
  32486. }
  32487. },
  32488. },
  32489. [
  32490. {
  32491. name: "Macro",
  32492. height: math.unit(99, "meters"),
  32493. default: true
  32494. },
  32495. ]
  32496. ))
  32497. characterMakers.push(() => makeCharacter(
  32498. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  32499. {
  32500. front: {
  32501. height: math.unit(6 + 5/12, "feet"),
  32502. name: "Front",
  32503. image: {
  32504. source: "./media/characters/purri/front.svg",
  32505. extra: 1698/1610,
  32506. bottom: 32/1730
  32507. }
  32508. },
  32509. frontAlt: {
  32510. height: math.unit(6 + 5/12, "feet"),
  32511. name: "Front (Alt)",
  32512. image: {
  32513. source: "./media/characters/purri/front-alt.svg",
  32514. extra: 450/420,
  32515. bottom: 26/476
  32516. }
  32517. },
  32518. boots: {
  32519. height: math.unit(5.5, "feet"),
  32520. name: "Boots",
  32521. image: {
  32522. source: "./media/characters/purri/boots.svg",
  32523. extra: 905/853,
  32524. bottom: 18/923
  32525. }
  32526. },
  32527. lying: {
  32528. height: math.unit(2, "feet"),
  32529. name: "Lying",
  32530. image: {
  32531. source: "./media/characters/purri/lying.svg",
  32532. extra: 940/843,
  32533. bottom: 146/1086
  32534. }
  32535. },
  32536. devious: {
  32537. height: math.unit(1.77, "feet"),
  32538. name: "Devious",
  32539. image: {
  32540. source: "./media/characters/purri/devious.svg",
  32541. extra: 1440/1155,
  32542. bottom: 147/1587
  32543. }
  32544. },
  32545. bean: {
  32546. height: math.unit(1.94, "feet"),
  32547. name: "Bean",
  32548. image: {
  32549. source: "./media/characters/purri/bean.svg"
  32550. }
  32551. },
  32552. },
  32553. [
  32554. {
  32555. name: "Micro",
  32556. height: math.unit(1, "mm")
  32557. },
  32558. {
  32559. name: "Normal",
  32560. height: math.unit(6 + 5/12, "feet"),
  32561. default: true
  32562. },
  32563. {
  32564. name: "Macro :3c",
  32565. height: math.unit(2, "miles")
  32566. },
  32567. ]
  32568. ))
  32569. characterMakers.push(() => makeCharacter(
  32570. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  32571. {
  32572. front: {
  32573. height: math.unit(6 + 2/12, "feet"),
  32574. weight: math.unit(250, "lb"),
  32575. name: "Front",
  32576. image: {
  32577. source: "./media/characters/moonlight/front.svg",
  32578. extra: 1044/908,
  32579. bottom: 56/1100
  32580. }
  32581. },
  32582. feral: {
  32583. height: math.unit(3 + 1/12, "feet"),
  32584. weight: math.unit(50, "kg"),
  32585. name: "Feral",
  32586. image: {
  32587. source: "./media/characters/moonlight/feral.svg",
  32588. extra: 3705/2791,
  32589. bottom: 145/3850
  32590. }
  32591. },
  32592. paw: {
  32593. height: math.unit(1, "feet"),
  32594. name: "Paw",
  32595. image: {
  32596. source: "./media/characters/moonlight/paw.svg"
  32597. }
  32598. },
  32599. paws: {
  32600. height: math.unit(0.98, "feet"),
  32601. name: "Paws",
  32602. image: {
  32603. source: "./media/characters/moonlight/paws.svg",
  32604. extra: 939/939,
  32605. bottom: 50/989
  32606. }
  32607. },
  32608. mouth: {
  32609. height: math.unit(0.48, "feet"),
  32610. name: "Mouth",
  32611. image: {
  32612. source: "./media/characters/moonlight/mouth.svg"
  32613. }
  32614. },
  32615. dick: {
  32616. height: math.unit(1.46, "feet"),
  32617. name: "Dick",
  32618. image: {
  32619. source: "./media/characters/moonlight/dick.svg"
  32620. }
  32621. },
  32622. },
  32623. [
  32624. {
  32625. name: "Normal",
  32626. height: math.unit(6 + 2/12, "feet"),
  32627. default: true
  32628. },
  32629. {
  32630. name: "Macro",
  32631. height: math.unit(300, "feet")
  32632. },
  32633. {
  32634. name: "Macro+",
  32635. height: math.unit(1, "mile")
  32636. },
  32637. {
  32638. name: "Mt. Moon",
  32639. height: math.unit(5, "miles")
  32640. },
  32641. {
  32642. name: "Megamacro",
  32643. height: math.unit(15, "miles")
  32644. },
  32645. ]
  32646. ))
  32647. characterMakers.push(() => makeCharacter(
  32648. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  32649. {
  32650. back: {
  32651. height: math.unit(6, "feet"),
  32652. weight: math.unit(150, "lb"),
  32653. name: "Back",
  32654. image: {
  32655. source: "./media/characters/sylen/back.svg",
  32656. extra: 1335/1273,
  32657. bottom: 107/1442
  32658. }
  32659. },
  32660. },
  32661. [
  32662. {
  32663. name: "Normal",
  32664. height: math.unit(5 + 5/12, "feet")
  32665. },
  32666. {
  32667. name: "Megamacro",
  32668. height: math.unit(3, "miles"),
  32669. default: true
  32670. },
  32671. ]
  32672. ))
  32673. characterMakers.push(() => makeCharacter(
  32674. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  32675. {
  32676. front: {
  32677. height: math.unit(6, "feet"),
  32678. weight: math.unit(190, "lb"),
  32679. name: "Front",
  32680. image: {
  32681. source: "./media/characters/huttser/front.svg",
  32682. extra: 1152/1058,
  32683. bottom: 23/1175
  32684. }
  32685. },
  32686. side: {
  32687. height: math.unit(6, "feet"),
  32688. weight: math.unit(190, "lb"),
  32689. name: "Side",
  32690. image: {
  32691. source: "./media/characters/huttser/side.svg",
  32692. extra: 1174/1065,
  32693. bottom: 18/1192
  32694. }
  32695. },
  32696. back: {
  32697. height: math.unit(6, "feet"),
  32698. weight: math.unit(190, "lb"),
  32699. name: "Back",
  32700. image: {
  32701. source: "./media/characters/huttser/back.svg",
  32702. extra: 1158/1056,
  32703. bottom: 12/1170
  32704. }
  32705. },
  32706. },
  32707. [
  32708. ]
  32709. ))
  32710. characterMakers.push(() => makeCharacter(
  32711. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  32712. {
  32713. side: {
  32714. height: math.unit(12 + 9/12, "feet"),
  32715. weight: math.unit(15000, "lb"),
  32716. name: "Side",
  32717. image: {
  32718. source: "./media/characters/faan/side.svg",
  32719. extra: 2747/2697,
  32720. bottom: 0/2747
  32721. }
  32722. },
  32723. front: {
  32724. height: math.unit(12 + 9/12, "feet"),
  32725. weight: math.unit(15000, "lb"),
  32726. name: "Front",
  32727. image: {
  32728. source: "./media/characters/faan/front.svg",
  32729. extra: 607/571,
  32730. bottom: 24/631
  32731. }
  32732. },
  32733. head: {
  32734. height: math.unit(2.85, "feet"),
  32735. name: "Head",
  32736. image: {
  32737. source: "./media/characters/faan/head.svg"
  32738. }
  32739. },
  32740. headAlt: {
  32741. height: math.unit(3.13, "feet"),
  32742. name: "Head-alt",
  32743. image: {
  32744. source: "./media/characters/faan/head-alt.svg"
  32745. }
  32746. },
  32747. },
  32748. [
  32749. {
  32750. name: "Normal",
  32751. height: math.unit(12 + 9/12, "feet"),
  32752. default: true
  32753. },
  32754. ]
  32755. ))
  32756. characterMakers.push(() => makeCharacter(
  32757. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  32758. {
  32759. front: {
  32760. height: math.unit(6, "feet"),
  32761. weight: math.unit(300, "lb"),
  32762. name: "Front",
  32763. image: {
  32764. source: "./media/characters/tanio/front.svg",
  32765. extra: 711/673,
  32766. bottom: 25/736
  32767. }
  32768. },
  32769. },
  32770. [
  32771. {
  32772. name: "Normal",
  32773. height: math.unit(6, "feet"),
  32774. default: true
  32775. },
  32776. ]
  32777. ))
  32778. characterMakers.push(() => makeCharacter(
  32779. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  32780. {
  32781. front: {
  32782. height: math.unit(3, "inches"),
  32783. name: "Front",
  32784. image: {
  32785. source: "./media/characters/noboru/front.svg",
  32786. extra: 1039/932,
  32787. bottom: 18/1057
  32788. }
  32789. },
  32790. },
  32791. [
  32792. {
  32793. name: "Micro",
  32794. height: math.unit(3, "inches"),
  32795. default: true
  32796. },
  32797. ]
  32798. ))
  32799. characterMakers.push(() => makeCharacter(
  32800. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  32801. {
  32802. front: {
  32803. height: math.unit(1.85, "meters"),
  32804. weight: math.unit(80, "kg"),
  32805. name: "Front",
  32806. image: {
  32807. source: "./media/characters/daniel-barrett/front.svg",
  32808. extra: 355/337,
  32809. bottom: 9/364
  32810. }
  32811. },
  32812. },
  32813. [
  32814. {
  32815. name: "Pico",
  32816. height: math.unit(0.0433, "mm")
  32817. },
  32818. {
  32819. name: "Nano",
  32820. height: math.unit(1.5, "mm")
  32821. },
  32822. {
  32823. name: "Micro",
  32824. height: math.unit(5.3, "cm"),
  32825. default: true
  32826. },
  32827. {
  32828. name: "Normal",
  32829. height: math.unit(1.85, "meters")
  32830. },
  32831. {
  32832. name: "Macro",
  32833. height: math.unit(64.7, "meters")
  32834. },
  32835. {
  32836. name: "Megamacro",
  32837. height: math.unit(2.26, "km")
  32838. },
  32839. {
  32840. name: "Gigamacro",
  32841. height: math.unit(79, "km")
  32842. },
  32843. {
  32844. name: "Teramacro",
  32845. height: math.unit(2765, "km")
  32846. },
  32847. {
  32848. name: "Petamacro",
  32849. height: math.unit(96678, "km")
  32850. },
  32851. ]
  32852. ))
  32853. characterMakers.push(() => makeCharacter(
  32854. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  32855. {
  32856. front: {
  32857. height: math.unit(30, "meters"),
  32858. weight: math.unit(400, "tons"),
  32859. name: "Front",
  32860. image: {
  32861. source: "./media/characters/zeel/front.svg",
  32862. extra: 2599/2599,
  32863. bottom: 226/2825
  32864. }
  32865. },
  32866. },
  32867. [
  32868. {
  32869. name: "Macro",
  32870. height: math.unit(30, "meters"),
  32871. default: true
  32872. },
  32873. ]
  32874. ))
  32875. characterMakers.push(() => makeCharacter(
  32876. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  32877. {
  32878. front: {
  32879. height: math.unit(6 + 7/12, "feet"),
  32880. weight: math.unit(210, "lb"),
  32881. name: "Front",
  32882. image: {
  32883. source: "./media/characters/tarn/front.svg",
  32884. extra: 3517/3220,
  32885. bottom: 91/3608
  32886. }
  32887. },
  32888. back: {
  32889. height: math.unit(6 + 7/12, "feet"),
  32890. weight: math.unit(210, "lb"),
  32891. name: "Back",
  32892. image: {
  32893. source: "./media/characters/tarn/back.svg",
  32894. extra: 3566/3241,
  32895. bottom: 34/3600
  32896. }
  32897. },
  32898. dick: {
  32899. height: math.unit(1.65, "feet"),
  32900. name: "Dick",
  32901. image: {
  32902. source: "./media/characters/tarn/dick.svg"
  32903. }
  32904. },
  32905. paw: {
  32906. height: math.unit(1.80, "feet"),
  32907. name: "Paw",
  32908. image: {
  32909. source: "./media/characters/tarn/paw.svg"
  32910. }
  32911. },
  32912. tongue: {
  32913. height: math.unit(0.97, "feet"),
  32914. name: "Tongue",
  32915. image: {
  32916. source: "./media/characters/tarn/tongue.svg"
  32917. }
  32918. },
  32919. },
  32920. [
  32921. {
  32922. name: "Micro",
  32923. height: math.unit(4, "inches")
  32924. },
  32925. {
  32926. name: "Normal",
  32927. height: math.unit(6 + 7/12, "feet"),
  32928. default: true
  32929. },
  32930. {
  32931. name: "Macro",
  32932. height: math.unit(300, "feet")
  32933. },
  32934. ]
  32935. ))
  32936. characterMakers.push(() => makeCharacter(
  32937. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  32938. {
  32939. front: {
  32940. height: math.unit(5 + 7/12, "feet"),
  32941. weight: math.unit(80, "kg"),
  32942. name: "Front",
  32943. image: {
  32944. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  32945. extra: 3023/2865,
  32946. bottom: 33/3056
  32947. }
  32948. },
  32949. back: {
  32950. height: math.unit(5 + 7/12, "feet"),
  32951. weight: math.unit(80, "kg"),
  32952. name: "Back",
  32953. image: {
  32954. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  32955. extra: 3020/2886,
  32956. bottom: 30/3050
  32957. }
  32958. },
  32959. dick: {
  32960. height: math.unit(0.98, "feet"),
  32961. name: "Dick",
  32962. image: {
  32963. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  32964. }
  32965. },
  32966. anatomy: {
  32967. height: math.unit(2.86, "feet"),
  32968. name: "Anatomy",
  32969. image: {
  32970. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  32971. }
  32972. },
  32973. },
  32974. [
  32975. {
  32976. name: "Really Small",
  32977. height: math.unit(2, "inches")
  32978. },
  32979. {
  32980. name: "Micro",
  32981. height: math.unit(5.583, "inches")
  32982. },
  32983. {
  32984. name: "Normal",
  32985. height: math.unit(5 + 7/12, "feet"),
  32986. default: true
  32987. },
  32988. {
  32989. name: "Macro",
  32990. height: math.unit(67, "feet")
  32991. },
  32992. {
  32993. name: "Megamacro",
  32994. height: math.unit(134, "feet")
  32995. },
  32996. ]
  32997. ))
  32998. characterMakers.push(() => makeCharacter(
  32999. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  33000. {
  33001. front: {
  33002. height: math.unit(9, "feet"),
  33003. weight: math.unit(120, "lb"),
  33004. name: "Front",
  33005. image: {
  33006. source: "./media/characters/sally/front.svg",
  33007. extra: 1506/1349,
  33008. bottom: 66/1572
  33009. }
  33010. },
  33011. },
  33012. [
  33013. {
  33014. name: "Normal",
  33015. height: math.unit(9, "feet"),
  33016. default: true
  33017. },
  33018. ]
  33019. ))
  33020. characterMakers.push(() => makeCharacter(
  33021. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  33022. {
  33023. front: {
  33024. height: math.unit(8, "feet"),
  33025. weight: math.unit(900, "lb"),
  33026. name: "Front",
  33027. image: {
  33028. source: "./media/characters/owen/front.svg",
  33029. extra: 1761/1657,
  33030. bottom: 74/1835
  33031. }
  33032. },
  33033. side: {
  33034. height: math.unit(8, "feet"),
  33035. weight: math.unit(900, "lb"),
  33036. name: "Side",
  33037. image: {
  33038. source: "./media/characters/owen/side.svg",
  33039. extra: 1797/1734,
  33040. bottom: 30/1827
  33041. }
  33042. },
  33043. back: {
  33044. height: math.unit(8, "feet"),
  33045. weight: math.unit(900, "lb"),
  33046. name: "Back",
  33047. image: {
  33048. source: "./media/characters/owen/back.svg",
  33049. extra: 1796/1706,
  33050. bottom: 59/1855
  33051. }
  33052. },
  33053. maw: {
  33054. height: math.unit(1.76, "feet"),
  33055. name: "Maw",
  33056. image: {
  33057. source: "./media/characters/owen/maw.svg"
  33058. }
  33059. },
  33060. },
  33061. [
  33062. {
  33063. name: "Normal",
  33064. height: math.unit(8, "feet"),
  33065. default: true
  33066. },
  33067. ]
  33068. ))
  33069. characterMakers.push(() => makeCharacter(
  33070. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  33071. {
  33072. front: {
  33073. height: math.unit(4, "feet"),
  33074. weight: math.unit(400, "lb"),
  33075. name: "Front",
  33076. image: {
  33077. source: "./media/characters/ryth/front.svg",
  33078. extra: 1920/1748,
  33079. bottom: 42/1962
  33080. }
  33081. },
  33082. back: {
  33083. height: math.unit(4, "feet"),
  33084. weight: math.unit(400, "lb"),
  33085. name: "Back",
  33086. image: {
  33087. source: "./media/characters/ryth/back.svg",
  33088. extra: 1897/1690,
  33089. bottom: 89/1986
  33090. }
  33091. },
  33092. mouth: {
  33093. height: math.unit(1.39, "feet"),
  33094. name: "Mouth",
  33095. image: {
  33096. source: "./media/characters/ryth/mouth.svg"
  33097. }
  33098. },
  33099. tailmaw: {
  33100. height: math.unit(1.23, "feet"),
  33101. name: "Tailmaw",
  33102. image: {
  33103. source: "./media/characters/ryth/tailmaw.svg"
  33104. }
  33105. },
  33106. goia: {
  33107. height: math.unit(4, "meters"),
  33108. weight: math.unit(10800, "lb"),
  33109. name: "Goia",
  33110. image: {
  33111. source: "./media/characters/ryth/goia.svg",
  33112. extra: 745/640,
  33113. bottom: 107/852
  33114. }
  33115. },
  33116. goiaFront: {
  33117. height: math.unit(4, "meters"),
  33118. weight: math.unit(10800, "lb"),
  33119. name: "Goia (Front)",
  33120. image: {
  33121. source: "./media/characters/ryth/goia-front.svg",
  33122. extra: 750/586,
  33123. bottom: 114/864
  33124. }
  33125. },
  33126. goiaMaw: {
  33127. height: math.unit(5.55, "feet"),
  33128. name: "Goia Maw",
  33129. image: {
  33130. source: "./media/characters/ryth/goia-maw.svg"
  33131. }
  33132. },
  33133. goiaForepaw: {
  33134. height: math.unit(3.5, "feet"),
  33135. name: "Goia Forepaw",
  33136. image: {
  33137. source: "./media/characters/ryth/goia-forepaw.svg"
  33138. }
  33139. },
  33140. goiaHindpaw: {
  33141. height: math.unit(5.55, "feet"),
  33142. name: "Goia Hindpaw",
  33143. image: {
  33144. source: "./media/characters/ryth/goia-hindpaw.svg"
  33145. }
  33146. },
  33147. },
  33148. [
  33149. {
  33150. name: "Normal",
  33151. height: math.unit(4, "feet"),
  33152. default: true
  33153. },
  33154. ]
  33155. ))
  33156. characterMakers.push(() => makeCharacter(
  33157. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  33158. {
  33159. front: {
  33160. height: math.unit(7, "feet"),
  33161. weight: math.unit(180, "lb"),
  33162. name: "Front",
  33163. image: {
  33164. source: "./media/characters/necrolance/front.svg",
  33165. extra: 1062/947,
  33166. bottom: 41/1103
  33167. }
  33168. },
  33169. back: {
  33170. height: math.unit(7, "feet"),
  33171. weight: math.unit(180, "lb"),
  33172. name: "Back",
  33173. image: {
  33174. source: "./media/characters/necrolance/back.svg",
  33175. extra: 1045/984,
  33176. bottom: 14/1059
  33177. }
  33178. },
  33179. wing: {
  33180. height: math.unit(2.67, "feet"),
  33181. name: "Wing",
  33182. image: {
  33183. source: "./media/characters/necrolance/wing.svg"
  33184. }
  33185. },
  33186. },
  33187. [
  33188. {
  33189. name: "Normal",
  33190. height: math.unit(7, "feet"),
  33191. default: true
  33192. },
  33193. ]
  33194. ))
  33195. characterMakers.push(() => makeCharacter(
  33196. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  33197. {
  33198. front: {
  33199. height: math.unit(76, "meters"),
  33200. weight: math.unit(30000, "tons"),
  33201. name: "Front",
  33202. image: {
  33203. source: "./media/characters/tyler/front.svg",
  33204. extra: 1640/1640,
  33205. bottom: 114/1754
  33206. }
  33207. },
  33208. },
  33209. [
  33210. {
  33211. name: "Macro",
  33212. height: math.unit(76, "meters"),
  33213. default: true
  33214. },
  33215. ]
  33216. ))
  33217. characterMakers.push(() => makeCharacter(
  33218. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  33219. {
  33220. front: {
  33221. height: math.unit(4 + 11/12, "feet"),
  33222. weight: math.unit(132, "lb"),
  33223. name: "Front",
  33224. image: {
  33225. source: "./media/characters/icey/front.svg",
  33226. extra: 2750/2550,
  33227. bottom: 33/2783
  33228. }
  33229. },
  33230. back: {
  33231. height: math.unit(4 + 11/12, "feet"),
  33232. weight: math.unit(132, "lb"),
  33233. name: "Back",
  33234. image: {
  33235. source: "./media/characters/icey/back.svg",
  33236. extra: 2624/2481,
  33237. bottom: 35/2659
  33238. }
  33239. },
  33240. },
  33241. [
  33242. {
  33243. name: "Normal",
  33244. height: math.unit(4 + 11/12, "feet"),
  33245. default: true
  33246. },
  33247. ]
  33248. ))
  33249. characterMakers.push(() => makeCharacter(
  33250. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  33251. {
  33252. front: {
  33253. height: math.unit(100, "feet"),
  33254. weight: math.unit(0, "lb"),
  33255. name: "Front",
  33256. image: {
  33257. source: "./media/characters/smile/front.svg",
  33258. extra: 2983/2912,
  33259. bottom: 162/3145
  33260. }
  33261. },
  33262. back: {
  33263. height: math.unit(100, "feet"),
  33264. weight: math.unit(0, "lb"),
  33265. name: "Back",
  33266. image: {
  33267. source: "./media/characters/smile/back.svg",
  33268. extra: 3143/3031,
  33269. bottom: 91/3234
  33270. }
  33271. },
  33272. head: {
  33273. height: math.unit(26.3, "feet"),
  33274. weight: math.unit(0, "lb"),
  33275. name: "Head",
  33276. image: {
  33277. source: "./media/characters/smile/head.svg"
  33278. }
  33279. },
  33280. collar: {
  33281. height: math.unit(5.3, "feet"),
  33282. weight: math.unit(0, "lb"),
  33283. name: "Collar",
  33284. image: {
  33285. source: "./media/characters/smile/collar.svg"
  33286. }
  33287. },
  33288. },
  33289. [
  33290. {
  33291. name: "Macro",
  33292. height: math.unit(100, "feet"),
  33293. default: true
  33294. },
  33295. ]
  33296. ))
  33297. characterMakers.push(() => makeCharacter(
  33298. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  33299. {
  33300. dragon: {
  33301. height: math.unit(26, "feet"),
  33302. weight: math.unit(36, "tons"),
  33303. name: "Dragon",
  33304. image: {
  33305. source: "./media/characters/arimphae/dragon.svg",
  33306. extra: 1574/983,
  33307. bottom: 357/1931
  33308. }
  33309. },
  33310. drake: {
  33311. height: math.unit(9, "feet"),
  33312. weight: math.unit(1.5, "tons"),
  33313. name: "Drake",
  33314. image: {
  33315. source: "./media/characters/arimphae/drake.svg",
  33316. extra: 1120/925,
  33317. bottom: 435/1555
  33318. }
  33319. },
  33320. },
  33321. [
  33322. {
  33323. name: "Small",
  33324. height: math.unit(26*5/9, "feet")
  33325. },
  33326. {
  33327. name: "Normal",
  33328. height: math.unit(26, "feet"),
  33329. default: true
  33330. },
  33331. ]
  33332. ))
  33333. characterMakers.push(() => makeCharacter(
  33334. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  33335. {
  33336. front: {
  33337. height: math.unit(8 + 9/12, "feet"),
  33338. name: "Front",
  33339. image: {
  33340. source: "./media/characters/xander/front.svg",
  33341. extra: 1237/974,
  33342. bottom: 94/1331
  33343. }
  33344. },
  33345. },
  33346. [
  33347. {
  33348. name: "Normal",
  33349. height: math.unit(8 + 9/12, "feet"),
  33350. default: true
  33351. },
  33352. {
  33353. name: "Gaze Grabber",
  33354. height: math.unit(13 + 8/12, "feet")
  33355. },
  33356. {
  33357. name: "Jaw Dropper",
  33358. height: math.unit(27, "feet")
  33359. },
  33360. {
  33361. name: "Show Stopper",
  33362. height: math.unit(136, "feet")
  33363. },
  33364. {
  33365. name: "Superstar",
  33366. height: math.unit(1.9e6, "miles")
  33367. },
  33368. ]
  33369. ))
  33370. characterMakers.push(() => makeCharacter(
  33371. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  33372. {
  33373. side: {
  33374. height: math.unit(2100, "feet"),
  33375. name: "Side",
  33376. image: {
  33377. source: "./media/characters/osiris/side.svg",
  33378. extra: 1105/939,
  33379. bottom: 167/1272
  33380. }
  33381. },
  33382. },
  33383. [
  33384. {
  33385. name: "Macro",
  33386. height: math.unit(2100, "feet"),
  33387. default: true
  33388. },
  33389. ]
  33390. ))
  33391. characterMakers.push(() => makeCharacter(
  33392. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  33393. {
  33394. front: {
  33395. height: math.unit(6 + 8/12, "feet"),
  33396. weight: math.unit(225, "lb"),
  33397. name: "Front",
  33398. image: {
  33399. source: "./media/characters/rhys-londe/front.svg",
  33400. extra: 2258/2141,
  33401. bottom: 188/2446
  33402. }
  33403. },
  33404. back: {
  33405. height: math.unit(6 + 8/12, "feet"),
  33406. weight: math.unit(225, "lb"),
  33407. name: "Back",
  33408. image: {
  33409. source: "./media/characters/rhys-londe/back.svg",
  33410. extra: 2237/2137,
  33411. bottom: 63/2300
  33412. }
  33413. },
  33414. frontNsfw: {
  33415. height: math.unit(6 + 8/12, "feet"),
  33416. weight: math.unit(225, "lb"),
  33417. name: "Front (NSFW)",
  33418. image: {
  33419. source: "./media/characters/rhys-londe/front-nsfw.svg",
  33420. extra: 2258/2141,
  33421. bottom: 188/2446
  33422. }
  33423. },
  33424. backNsfw: {
  33425. height: math.unit(6 + 8/12, "feet"),
  33426. weight: math.unit(225, "lb"),
  33427. name: "Back (NSFW)",
  33428. image: {
  33429. source: "./media/characters/rhys-londe/back-nsfw.svg",
  33430. extra: 2237/2137,
  33431. bottom: 63/2300
  33432. }
  33433. },
  33434. dick: {
  33435. height: math.unit(30, "inches"),
  33436. name: "Dick",
  33437. image: {
  33438. source: "./media/characters/rhys-londe/dick.svg"
  33439. }
  33440. },
  33441. maw: {
  33442. height: math.unit(1.6, "feet"),
  33443. name: "Maw",
  33444. image: {
  33445. source: "./media/characters/rhys-londe/maw.svg"
  33446. }
  33447. },
  33448. },
  33449. [
  33450. {
  33451. name: "Normal",
  33452. height: math.unit(6 + 8/12, "feet"),
  33453. default: true
  33454. },
  33455. ]
  33456. ))
  33457. characterMakers.push(() => makeCharacter(
  33458. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  33459. {
  33460. front: {
  33461. height: math.unit(3 + 10/12, "feet"),
  33462. weight: math.unit(90, "lb"),
  33463. name: "Front",
  33464. image: {
  33465. source: "./media/characters/taivas-ensim/front.svg",
  33466. extra: 1327/1216,
  33467. bottom: 96/1423
  33468. }
  33469. },
  33470. back: {
  33471. height: math.unit(3 + 10/12, "feet"),
  33472. weight: math.unit(90, "lb"),
  33473. name: "Back",
  33474. image: {
  33475. source: "./media/characters/taivas-ensim/back.svg",
  33476. extra: 1355/1247,
  33477. bottom: 11/1366
  33478. }
  33479. },
  33480. frontNsfw: {
  33481. height: math.unit(3 + 10/12, "feet"),
  33482. weight: math.unit(90, "lb"),
  33483. name: "Front (NSFW)",
  33484. image: {
  33485. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  33486. extra: 1327/1216,
  33487. bottom: 96/1423
  33488. }
  33489. },
  33490. backNsfw: {
  33491. height: math.unit(3 + 10/12, "feet"),
  33492. weight: math.unit(90, "lb"),
  33493. name: "Back (NSFW)",
  33494. image: {
  33495. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  33496. extra: 1355/1247,
  33497. bottom: 11/1366
  33498. }
  33499. },
  33500. },
  33501. [
  33502. {
  33503. name: "Normal",
  33504. height: math.unit(3 + 10/12, "feet"),
  33505. default: true
  33506. },
  33507. ]
  33508. ))
  33509. characterMakers.push(() => makeCharacter(
  33510. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  33511. {
  33512. front: {
  33513. height: math.unit(9 + 6/12, "feet"),
  33514. weight: math.unit(940, "lb"),
  33515. name: "Front",
  33516. image: {
  33517. source: "./media/characters/byliss/front.svg",
  33518. extra: 1327/1290,
  33519. bottom: 82/1409
  33520. }
  33521. },
  33522. back: {
  33523. height: math.unit(9 + 6/12, "feet"),
  33524. weight: math.unit(940, "lb"),
  33525. name: "Back",
  33526. image: {
  33527. source: "./media/characters/byliss/back.svg",
  33528. extra: 1376/1349,
  33529. bottom: 9/1385
  33530. }
  33531. },
  33532. frontNsfw: {
  33533. height: math.unit(9 + 6/12, "feet"),
  33534. weight: math.unit(940, "lb"),
  33535. name: "Front (NSFW)",
  33536. image: {
  33537. source: "./media/characters/byliss/front-nsfw.svg",
  33538. extra: 1327/1290,
  33539. bottom: 82/1409
  33540. }
  33541. },
  33542. backNsfw: {
  33543. height: math.unit(9 + 6/12, "feet"),
  33544. weight: math.unit(940, "lb"),
  33545. name: "Back (NSFW)",
  33546. image: {
  33547. source: "./media/characters/byliss/back-nsfw.svg",
  33548. extra: 1376/1349,
  33549. bottom: 9/1385
  33550. }
  33551. },
  33552. },
  33553. [
  33554. {
  33555. name: "Normal",
  33556. height: math.unit(9 + 6/12, "feet"),
  33557. default: true
  33558. },
  33559. ]
  33560. ))
  33561. characterMakers.push(() => makeCharacter(
  33562. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  33563. {
  33564. front: {
  33565. height: math.unit(5 + 2/12, "feet"),
  33566. weight: math.unit(200, "lb"),
  33567. name: "Front",
  33568. image: {
  33569. source: "./media/characters/noraly/front.svg",
  33570. extra: 4985/4773,
  33571. bottom: 150/5135
  33572. }
  33573. },
  33574. full: {
  33575. height: math.unit(5 + 2/12, "feet"),
  33576. weight: math.unit(164, "lb"),
  33577. name: "Full",
  33578. image: {
  33579. source: "./media/characters/noraly/full.svg",
  33580. extra: 1114/1059,
  33581. bottom: 35/1149
  33582. }
  33583. },
  33584. fuller: {
  33585. height: math.unit(5 + 2/12, "feet"),
  33586. weight: math.unit(230, "lb"),
  33587. name: "Fuller",
  33588. image: {
  33589. source: "./media/characters/noraly/fuller.svg",
  33590. extra: 1114/1059,
  33591. bottom: 35/1149
  33592. }
  33593. },
  33594. fullest: {
  33595. height: math.unit(5 + 2/12, "feet"),
  33596. weight: math.unit(300, "lb"),
  33597. name: "Fullest",
  33598. image: {
  33599. source: "./media/characters/noraly/fullest.svg",
  33600. extra: 1114/1059,
  33601. bottom: 35/1149
  33602. }
  33603. },
  33604. },
  33605. [
  33606. {
  33607. name: "Normal",
  33608. height: math.unit(5 + 2/12, "feet"),
  33609. default: true
  33610. },
  33611. ]
  33612. ))
  33613. characterMakers.push(() => makeCharacter(
  33614. { name: "Pera", species: ["snake"], tags: ["naga"] },
  33615. {
  33616. front: {
  33617. height: math.unit(5 + 2/12, "feet"),
  33618. weight: math.unit(210, "lb"),
  33619. name: "Front",
  33620. image: {
  33621. source: "./media/characters/pera/front.svg",
  33622. extra: 1560/1531,
  33623. bottom: 165/1725
  33624. }
  33625. },
  33626. back: {
  33627. height: math.unit(5 + 2/12, "feet"),
  33628. weight: math.unit(210, "lb"),
  33629. name: "Back",
  33630. image: {
  33631. source: "./media/characters/pera/back.svg",
  33632. extra: 1523/1493,
  33633. bottom: 152/1675
  33634. }
  33635. },
  33636. dick: {
  33637. height: math.unit(2.4, "feet"),
  33638. name: "Dick",
  33639. image: {
  33640. source: "./media/characters/pera/dick.svg"
  33641. }
  33642. },
  33643. },
  33644. [
  33645. {
  33646. name: "Normal",
  33647. height: math.unit(5 + 2/12, "feet"),
  33648. default: true
  33649. },
  33650. ]
  33651. ))
  33652. characterMakers.push(() => makeCharacter(
  33653. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  33654. {
  33655. front: {
  33656. height: math.unit(12, "feet"),
  33657. weight: math.unit(3200, "lb"),
  33658. name: "Front",
  33659. image: {
  33660. source: "./media/characters/julian/front.svg",
  33661. extra: 2962/2701,
  33662. bottom: 184/3146
  33663. }
  33664. },
  33665. maw: {
  33666. height: math.unit(5.35, "feet"),
  33667. name: "Maw",
  33668. image: {
  33669. source: "./media/characters/julian/maw.svg"
  33670. }
  33671. },
  33672. paw: {
  33673. height: math.unit(3.07, "feet"),
  33674. name: "Paw",
  33675. image: {
  33676. source: "./media/characters/julian/paw.svg"
  33677. }
  33678. },
  33679. },
  33680. [
  33681. {
  33682. name: "Default",
  33683. height: math.unit(12, "feet"),
  33684. default: true
  33685. },
  33686. {
  33687. name: "Big",
  33688. height: math.unit(50, "feet")
  33689. },
  33690. {
  33691. name: "Really Big",
  33692. height: math.unit(1, "mile")
  33693. },
  33694. {
  33695. name: "Extremely Big",
  33696. height: math.unit(100, "miles")
  33697. },
  33698. {
  33699. name: "Planet Hugger",
  33700. height: math.unit(200, "megameters")
  33701. },
  33702. {
  33703. name: "Unreasonably Big",
  33704. height: math.unit(1e300, "meters")
  33705. },
  33706. ]
  33707. ))
  33708. characterMakers.push(() => makeCharacter(
  33709. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  33710. {
  33711. solgooleo: {
  33712. height: math.unit(4, "meters"),
  33713. weight: math.unit(6000*1.5, "kg"),
  33714. volume: math.unit(6000, "liters"),
  33715. name: "Solgooleo",
  33716. image: {
  33717. source: "./media/characters/pi/solgooleo.svg",
  33718. extra: 388/331,
  33719. bottom: 29/417
  33720. }
  33721. },
  33722. },
  33723. [
  33724. {
  33725. name: "Normal",
  33726. height: math.unit(4, "meters"),
  33727. default: true
  33728. },
  33729. ]
  33730. ))
  33731. characterMakers.push(() => makeCharacter(
  33732. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  33733. {
  33734. front: {
  33735. height: math.unit(8, "feet"),
  33736. weight: math.unit(4, "tons"),
  33737. name: "Front",
  33738. image: {
  33739. source: "./media/characters/shaun/front.svg",
  33740. extra: 503/495,
  33741. bottom: 20/523
  33742. }
  33743. },
  33744. back: {
  33745. height: math.unit(8, "feet"),
  33746. weight: math.unit(4, "tons"),
  33747. name: "Back",
  33748. image: {
  33749. source: "./media/characters/shaun/back.svg",
  33750. extra: 487/480,
  33751. bottom: 20/507
  33752. }
  33753. },
  33754. },
  33755. [
  33756. {
  33757. name: "Lorg",
  33758. height: math.unit(8, "feet"),
  33759. default: true
  33760. },
  33761. ]
  33762. ))
  33763. characterMakers.push(() => makeCharacter(
  33764. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  33765. {
  33766. frontAnthro: {
  33767. height: math.unit(7, "feet"),
  33768. name: "Front",
  33769. image: {
  33770. source: "./media/characters/sini/front-anthro.svg",
  33771. extra: 726/678,
  33772. bottom: 35/761
  33773. },
  33774. form: "anthro",
  33775. default: true
  33776. },
  33777. backAnthro: {
  33778. height: math.unit(7, "feet"),
  33779. name: "Back",
  33780. image: {
  33781. source: "./media/characters/sini/back-anthro.svg",
  33782. extra: 743/701,
  33783. bottom: 12/755
  33784. },
  33785. form: "anthro",
  33786. },
  33787. frontAnthroNsfw: {
  33788. height: math.unit(7, "feet"),
  33789. name: "Front (NSFW)",
  33790. image: {
  33791. source: "./media/characters/sini/front-anthro-nsfw.svg",
  33792. extra: 726/678,
  33793. bottom: 35/761
  33794. },
  33795. form: "anthro"
  33796. },
  33797. backAnthroNsfw: {
  33798. height: math.unit(7, "feet"),
  33799. name: "Back (NSFW)",
  33800. image: {
  33801. source: "./media/characters/sini/back-anthro-nsfw.svg",
  33802. extra: 743/701,
  33803. bottom: 12/755
  33804. },
  33805. form: "anthro",
  33806. },
  33807. mawAnthro: {
  33808. height: math.unit(2.14, "feet"),
  33809. name: "Maw",
  33810. image: {
  33811. source: "./media/characters/sini/maw-anthro.svg"
  33812. },
  33813. form: "anthro"
  33814. },
  33815. dick: {
  33816. height: math.unit(1.45, "feet"),
  33817. name: "Dick",
  33818. image: {
  33819. source: "./media/characters/sini/dick-anthro.svg"
  33820. },
  33821. form: "anthro"
  33822. },
  33823. feral: {
  33824. height: math.unit(16, "feet"),
  33825. name: "Feral",
  33826. image: {
  33827. source: "./media/characters/sini/feral.svg",
  33828. extra: 814/605,
  33829. bottom: 11/825
  33830. },
  33831. form: "feral",
  33832. default: true
  33833. },
  33834. feralNsfw: {
  33835. height: math.unit(16, "feet"),
  33836. name: "Feral (NSFW)",
  33837. image: {
  33838. source: "./media/characters/sini/feral-nsfw.svg",
  33839. extra: 814/605,
  33840. bottom: 11/825
  33841. },
  33842. form: "feral"
  33843. },
  33844. mawFeral: {
  33845. height: math.unit(5.66, "feet"),
  33846. name: "Maw",
  33847. image: {
  33848. source: "./media/characters/sini/maw-feral.svg"
  33849. },
  33850. form: "feral",
  33851. },
  33852. pawFeral: {
  33853. height: math.unit(5.17, "feet"),
  33854. name: "Paw",
  33855. image: {
  33856. source: "./media/characters/sini/paw-feral.svg"
  33857. },
  33858. form: "feral",
  33859. },
  33860. rumpFeral: {
  33861. height: math.unit(13.11, "feet"),
  33862. name: "Rump",
  33863. image: {
  33864. source: "./media/characters/sini/rump-feral.svg"
  33865. },
  33866. form: "feral",
  33867. },
  33868. dickFeral: {
  33869. height: math.unit(1, "feet"),
  33870. name: "Dick",
  33871. image: {
  33872. source: "./media/characters/sini/dick-feral.svg"
  33873. },
  33874. form: "feral",
  33875. },
  33876. eyeFeral: {
  33877. height: math.unit(1.23, "feet"),
  33878. name: "Eye",
  33879. image: {
  33880. source: "./media/characters/sini/eye-feral.svg"
  33881. },
  33882. form: "feral",
  33883. },
  33884. },
  33885. [
  33886. {
  33887. name: "Normal",
  33888. height: math.unit(7, "feet"),
  33889. default: true,
  33890. form: "anthro"
  33891. },
  33892. {
  33893. name: "Normal",
  33894. height: math.unit(16, "feet"),
  33895. default: true,
  33896. form: "feral"
  33897. },
  33898. ],
  33899. {
  33900. "anthro": {
  33901. name: "Anthro",
  33902. default: true
  33903. },
  33904. "feral": {
  33905. name: "Feral",
  33906. }
  33907. }
  33908. ))
  33909. characterMakers.push(() => makeCharacter(
  33910. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  33911. {
  33912. side: {
  33913. height: math.unit(47.2, "meters"),
  33914. weight: math.unit(10000, "tons"),
  33915. name: "Side",
  33916. image: {
  33917. source: "./media/characters/raylldo/side.svg",
  33918. extra: 2363/642,
  33919. bottom: 221/2584
  33920. }
  33921. },
  33922. top: {
  33923. height: math.unit(240, "meters"),
  33924. weight: math.unit(10000, "tons"),
  33925. name: "Top",
  33926. image: {
  33927. source: "./media/characters/raylldo/top.svg"
  33928. }
  33929. },
  33930. bottom: {
  33931. height: math.unit(240, "meters"),
  33932. weight: math.unit(10000, "tons"),
  33933. name: "Bottom",
  33934. image: {
  33935. source: "./media/characters/raylldo/bottom.svg"
  33936. }
  33937. },
  33938. head: {
  33939. height: math.unit(38.6, "meters"),
  33940. name: "Head",
  33941. image: {
  33942. source: "./media/characters/raylldo/head.svg",
  33943. extra: 1335/1112,
  33944. bottom: 0/1335
  33945. }
  33946. },
  33947. maw: {
  33948. height: math.unit(16.37, "meters"),
  33949. name: "Maw",
  33950. image: {
  33951. source: "./media/characters/raylldo/maw.svg",
  33952. extra: 883/660,
  33953. bottom: 0/883
  33954. },
  33955. extraAttributes: {
  33956. preyCapacity: {
  33957. name: "Capacity",
  33958. power: 3,
  33959. type: "volume",
  33960. base: math.unit(1000, "people")
  33961. },
  33962. tongueSize: {
  33963. name: "Tongue Size",
  33964. power: 2,
  33965. type: "area",
  33966. base: math.unit(21, "m^2")
  33967. }
  33968. }
  33969. },
  33970. forepaw: {
  33971. height: math.unit(18, "meters"),
  33972. name: "Forepaw",
  33973. image: {
  33974. source: "./media/characters/raylldo/forepaw.svg"
  33975. }
  33976. },
  33977. hindpaw: {
  33978. height: math.unit(23, "meters"),
  33979. name: "Hindpaw",
  33980. image: {
  33981. source: "./media/characters/raylldo/hindpaw.svg"
  33982. }
  33983. },
  33984. genitals: {
  33985. height: math.unit(42, "meters"),
  33986. name: "Genitals",
  33987. image: {
  33988. source: "./media/characters/raylldo/genitals.svg"
  33989. }
  33990. },
  33991. },
  33992. [
  33993. {
  33994. name: "Normal",
  33995. height: math.unit(47.2, "meters"),
  33996. default: true
  33997. },
  33998. ]
  33999. ))
  34000. characterMakers.push(() => makeCharacter(
  34001. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  34002. {
  34003. anthroFront: {
  34004. height: math.unit(9, "feet"),
  34005. weight: math.unit(600, "lb"),
  34006. name: "Anthro (Front)",
  34007. image: {
  34008. source: "./media/characters/glint/anthro-front.svg",
  34009. extra: 1097/1018,
  34010. bottom: 28/1125
  34011. }
  34012. },
  34013. anthroBack: {
  34014. height: math.unit(9, "feet"),
  34015. weight: math.unit(600, "lb"),
  34016. name: "Anthro (Back)",
  34017. image: {
  34018. source: "./media/characters/glint/anthro-back.svg",
  34019. extra: 1154/997,
  34020. bottom: 36/1190
  34021. }
  34022. },
  34023. feral: {
  34024. height: math.unit(11, "feet"),
  34025. weight: math.unit(50000, "lb"),
  34026. name: "Feral",
  34027. image: {
  34028. source: "./media/characters/glint/feral.svg",
  34029. extra: 3035/1585,
  34030. bottom: 1169/4204
  34031. }
  34032. },
  34033. dickAnthro: {
  34034. height: math.unit(0.7, "meters"),
  34035. name: "Dick (Anthro)",
  34036. image: {
  34037. source: "./media/characters/glint/dick-anthro.svg"
  34038. }
  34039. },
  34040. dickFeral: {
  34041. height: math.unit(2.65, "meters"),
  34042. name: "Dick (Feral)",
  34043. image: {
  34044. source: "./media/characters/glint/dick-feral.svg"
  34045. }
  34046. },
  34047. slitHidden: {
  34048. height: math.unit(5.85, "meters"),
  34049. name: "Slit (Hidden)",
  34050. image: {
  34051. source: "./media/characters/glint/slit-hidden.svg"
  34052. }
  34053. },
  34054. slitErect: {
  34055. height: math.unit(5.85, "meters"),
  34056. name: "Slit (Erect)",
  34057. image: {
  34058. source: "./media/characters/glint/slit-erect.svg"
  34059. }
  34060. },
  34061. mawAnthro: {
  34062. height: math.unit(0.63, "meters"),
  34063. name: "Maw (Anthro)",
  34064. image: {
  34065. source: "./media/characters/glint/maw.svg"
  34066. }
  34067. },
  34068. mawFeral: {
  34069. height: math.unit(2.89, "meters"),
  34070. name: "Maw (Feral)",
  34071. image: {
  34072. source: "./media/characters/glint/maw.svg"
  34073. }
  34074. },
  34075. },
  34076. [
  34077. {
  34078. name: "Normal",
  34079. height: math.unit(9, "feet"),
  34080. default: true
  34081. },
  34082. ]
  34083. ))
  34084. characterMakers.push(() => makeCharacter(
  34085. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  34086. {
  34087. side: {
  34088. height: math.unit(15, "feet"),
  34089. weight: math.unit(5000, "kg"),
  34090. name: "Side",
  34091. image: {
  34092. source: "./media/characters/kairne/side.svg",
  34093. extra: 979/811,
  34094. bottom: 13/992
  34095. }
  34096. },
  34097. front: {
  34098. height: math.unit(15, "feet"),
  34099. weight: math.unit(5000, "kg"),
  34100. name: "Front",
  34101. image: {
  34102. source: "./media/characters/kairne/front.svg",
  34103. extra: 908/814,
  34104. bottom: 26/934
  34105. }
  34106. },
  34107. sideNsfw: {
  34108. height: math.unit(15, "feet"),
  34109. weight: math.unit(5000, "kg"),
  34110. name: "Side (NSFW)",
  34111. image: {
  34112. source: "./media/characters/kairne/side-nsfw.svg",
  34113. extra: 979/811,
  34114. bottom: 13/992
  34115. }
  34116. },
  34117. frontNsfw: {
  34118. height: math.unit(15, "feet"),
  34119. weight: math.unit(5000, "kg"),
  34120. name: "Front (NSFW)",
  34121. image: {
  34122. source: "./media/characters/kairne/front-nsfw.svg",
  34123. extra: 908/814,
  34124. bottom: 26/934
  34125. }
  34126. },
  34127. dickCaged: {
  34128. height: math.unit(0.65, "meters"),
  34129. name: "Dick-caged",
  34130. image: {
  34131. source: "./media/characters/kairne/dick-caged.svg"
  34132. }
  34133. },
  34134. dick: {
  34135. height: math.unit(0.79, "meters"),
  34136. name: "Dick",
  34137. image: {
  34138. source: "./media/characters/kairne/dick.svg"
  34139. }
  34140. },
  34141. genitals: {
  34142. height: math.unit(1.29, "meters"),
  34143. name: "Genitals",
  34144. image: {
  34145. source: "./media/characters/kairne/genitals.svg"
  34146. }
  34147. },
  34148. maw: {
  34149. height: math.unit(1.73, "meters"),
  34150. name: "Maw",
  34151. image: {
  34152. source: "./media/characters/kairne/maw.svg"
  34153. }
  34154. },
  34155. },
  34156. [
  34157. {
  34158. name: "Normal",
  34159. height: math.unit(15, "feet"),
  34160. default: true
  34161. },
  34162. ]
  34163. ))
  34164. characterMakers.push(() => makeCharacter(
  34165. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  34166. {
  34167. front: {
  34168. height: math.unit(5 + 8/12, "feet"),
  34169. weight: math.unit(139, "lb"),
  34170. name: "Front",
  34171. image: {
  34172. source: "./media/characters/biscuit-jackal/front.svg",
  34173. extra: 2106/1961,
  34174. bottom: 58/2164
  34175. }
  34176. },
  34177. back: {
  34178. height: math.unit(5 + 8/12, "feet"),
  34179. weight: math.unit(139, "lb"),
  34180. name: "Back",
  34181. image: {
  34182. source: "./media/characters/biscuit-jackal/back.svg",
  34183. extra: 2132/1976,
  34184. bottom: 57/2189
  34185. }
  34186. },
  34187. werejackal: {
  34188. height: math.unit(6 + 3/12, "feet"),
  34189. weight: math.unit(188, "lb"),
  34190. name: "Werejackal",
  34191. image: {
  34192. source: "./media/characters/biscuit-jackal/werejackal.svg",
  34193. extra: 2373/2178,
  34194. bottom: 53/2426
  34195. }
  34196. },
  34197. },
  34198. [
  34199. {
  34200. name: "Normal",
  34201. height: math.unit(5 + 8/12, "feet"),
  34202. default: true
  34203. },
  34204. ]
  34205. ))
  34206. characterMakers.push(() => makeCharacter(
  34207. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  34208. {
  34209. front: {
  34210. height: math.unit(140, "cm"),
  34211. weight: math.unit(45, "kg"),
  34212. name: "Front",
  34213. image: {
  34214. source: "./media/characters/tayra-white/front.svg",
  34215. extra: 2229/2192,
  34216. bottom: 75/2304
  34217. }
  34218. },
  34219. },
  34220. [
  34221. {
  34222. name: "Normal",
  34223. height: math.unit(140, "cm"),
  34224. default: true
  34225. },
  34226. ]
  34227. ))
  34228. characterMakers.push(() => makeCharacter(
  34229. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  34230. {
  34231. front: {
  34232. height: math.unit(4 + 5/12, "feet"),
  34233. name: "Front",
  34234. image: {
  34235. source: "./media/characters/scoop/front.svg",
  34236. extra: 1257/1136,
  34237. bottom: 69/1326
  34238. }
  34239. },
  34240. back: {
  34241. height: math.unit(4 + 5/12, "feet"),
  34242. name: "Back",
  34243. image: {
  34244. source: "./media/characters/scoop/back.svg",
  34245. extra: 1321/1152,
  34246. bottom: 32/1353
  34247. }
  34248. },
  34249. maw: {
  34250. height: math.unit(0.68, "feet"),
  34251. name: "Maw",
  34252. image: {
  34253. source: "./media/characters/scoop/maw.svg"
  34254. }
  34255. },
  34256. },
  34257. [
  34258. {
  34259. name: "Really Small",
  34260. height: math.unit(1, "mm")
  34261. },
  34262. {
  34263. name: "Micro",
  34264. height: math.unit(1, "inch")
  34265. },
  34266. {
  34267. name: "Normal",
  34268. height: math.unit(4 + 5/12, "feet"),
  34269. default: true
  34270. },
  34271. {
  34272. name: "Macro",
  34273. height: math.unit(200, "feet")
  34274. },
  34275. {
  34276. name: "Megamacro",
  34277. height: math.unit(3240, "feet")
  34278. },
  34279. {
  34280. name: "Teramacro",
  34281. height: math.unit(2500, "miles")
  34282. },
  34283. ]
  34284. ))
  34285. characterMakers.push(() => makeCharacter(
  34286. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  34287. {
  34288. front: {
  34289. height: math.unit(15 + 7/12, "feet"),
  34290. weight: math.unit(1150, "tons"),
  34291. name: "Front",
  34292. image: {
  34293. source: "./media/characters/saphinara/front.svg",
  34294. extra: 1837/1643,
  34295. bottom: 84/1921
  34296. },
  34297. form: "normal",
  34298. default: true
  34299. },
  34300. side: {
  34301. height: math.unit(15 + 7/12, "feet"),
  34302. weight: math.unit(1150, "tons"),
  34303. name: "Side",
  34304. image: {
  34305. source: "./media/characters/saphinara/side.svg",
  34306. extra: 605/547,
  34307. bottom: 6/611
  34308. },
  34309. form: "normal"
  34310. },
  34311. back: {
  34312. height: math.unit(15 + 7/12, "feet"),
  34313. weight: math.unit(1150, "tons"),
  34314. name: "Back",
  34315. image: {
  34316. source: "./media/characters/saphinara/back.svg",
  34317. extra: 591/531,
  34318. bottom: 13/604
  34319. },
  34320. form: "normal"
  34321. },
  34322. frontTail: {
  34323. height: math.unit(15 + 7/12, "feet"),
  34324. weight: math.unit(1150, "tons"),
  34325. name: "Front (Full Tail)",
  34326. image: {
  34327. source: "./media/characters/saphinara/front-tail.svg",
  34328. extra: 2256/1630,
  34329. bottom: 261/2517
  34330. },
  34331. form: "normal"
  34332. },
  34333. insides: {
  34334. height: math.unit(11.92, "feet"),
  34335. name: "Insides",
  34336. image: {
  34337. source: "./media/characters/saphinara/insides.svg"
  34338. },
  34339. form: "normal"
  34340. },
  34341. head: {
  34342. height: math.unit(4.17, "feet"),
  34343. name: "Head",
  34344. image: {
  34345. source: "./media/characters/saphinara/head.svg"
  34346. },
  34347. form: "normal"
  34348. },
  34349. tongue: {
  34350. height: math.unit(4.60, "feet"),
  34351. name: "Tongue",
  34352. image: {
  34353. source: "./media/characters/saphinara/tongue.svg"
  34354. },
  34355. form: "normal"
  34356. },
  34357. headEnraged: {
  34358. height: math.unit(5.55, "feet"),
  34359. name: "Head (Enraged)",
  34360. image: {
  34361. source: "./media/characters/saphinara/head-enraged.svg"
  34362. },
  34363. form: "normal"
  34364. },
  34365. wings: {
  34366. height: math.unit(11.95, "feet"),
  34367. name: "Wings",
  34368. image: {
  34369. source: "./media/characters/saphinara/wings.svg"
  34370. },
  34371. form: "normal"
  34372. },
  34373. feathers: {
  34374. height: math.unit(8.92, "feet"),
  34375. name: "Feathers",
  34376. image: {
  34377. source: "./media/characters/saphinara/feathers.svg"
  34378. },
  34379. form: "normal"
  34380. },
  34381. shackles: {
  34382. height: math.unit(2, "feet"),
  34383. name: "Shackles",
  34384. image: {
  34385. source: "./media/characters/saphinara/shackles.svg"
  34386. },
  34387. form: "normal"
  34388. },
  34389. eyes: {
  34390. height: math.unit(1.331, "feet"),
  34391. name: "Eyes",
  34392. image: {
  34393. source: "./media/characters/saphinara/eyes.svg"
  34394. },
  34395. form: "normal"
  34396. },
  34397. eyesEnraged: {
  34398. height: math.unit(1.331, "feet"),
  34399. name: "Eyes (Enraged)",
  34400. image: {
  34401. source: "./media/characters/saphinara/eyes-enraged.svg"
  34402. },
  34403. form: "normal"
  34404. },
  34405. trueFormSide: {
  34406. height: math.unit(200, "feet"),
  34407. weight: math.unit(1e7, "tons"),
  34408. name: "Side",
  34409. image: {
  34410. source: "./media/characters/saphinara/true-form-side.svg",
  34411. extra: 1399/770,
  34412. bottom: 97/1496
  34413. },
  34414. form: "true-form",
  34415. default: true
  34416. },
  34417. trueFormMaw: {
  34418. height: math.unit(71.5, "feet"),
  34419. name: "Maw",
  34420. image: {
  34421. source: "./media/characters/saphinara/true-form-maw.svg",
  34422. extra: 2302/1453,
  34423. bottom: 0/2302
  34424. },
  34425. form: "true-form"
  34426. },
  34427. },
  34428. [
  34429. {
  34430. name: "Normal",
  34431. height: math.unit(15 + 7/12, "feet"),
  34432. default: true,
  34433. form: "normal"
  34434. },
  34435. {
  34436. name: "Angry",
  34437. height: math.unit(30 + 6/12, "feet"),
  34438. form: "normal"
  34439. },
  34440. {
  34441. name: "Enraged",
  34442. height: math.unit(102 + 1/12, "feet"),
  34443. form: "normal"
  34444. },
  34445. {
  34446. name: "True",
  34447. height: math.unit(200, "feet"),
  34448. default: true,
  34449. form: "true-form"
  34450. }
  34451. ],
  34452. {
  34453. "normal": {
  34454. name: "Normal",
  34455. default: true
  34456. },
  34457. "true-form": {
  34458. name: "True Form"
  34459. }
  34460. }
  34461. ))
  34462. characterMakers.push(() => makeCharacter(
  34463. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  34464. {
  34465. front: {
  34466. height: math.unit(6 + 8/12, "feet"),
  34467. weight: math.unit(300, "lb"),
  34468. name: "Front",
  34469. image: {
  34470. source: "./media/characters/jrain/front.svg",
  34471. extra: 3039/2865,
  34472. bottom: 399/3438
  34473. }
  34474. },
  34475. back: {
  34476. height: math.unit(6 + 8/12, "feet"),
  34477. weight: math.unit(300, "lb"),
  34478. name: "Back",
  34479. image: {
  34480. source: "./media/characters/jrain/back.svg",
  34481. extra: 3089/2938,
  34482. bottom: 172/3261
  34483. }
  34484. },
  34485. head: {
  34486. height: math.unit(2.14, "feet"),
  34487. name: "Head",
  34488. image: {
  34489. source: "./media/characters/jrain/head.svg"
  34490. }
  34491. },
  34492. maw: {
  34493. height: math.unit(1.77, "feet"),
  34494. name: "Maw",
  34495. image: {
  34496. source: "./media/characters/jrain/maw.svg"
  34497. }
  34498. },
  34499. leftHand: {
  34500. height: math.unit(1.1, "feet"),
  34501. name: "Left Hand",
  34502. image: {
  34503. source: "./media/characters/jrain/left-hand.svg"
  34504. }
  34505. },
  34506. rightHand: {
  34507. height: math.unit(1.1, "feet"),
  34508. name: "Right Hand",
  34509. image: {
  34510. source: "./media/characters/jrain/right-hand.svg"
  34511. }
  34512. },
  34513. eye: {
  34514. height: math.unit(0.35, "feet"),
  34515. name: "Eye",
  34516. image: {
  34517. source: "./media/characters/jrain/eye.svg"
  34518. }
  34519. },
  34520. },
  34521. [
  34522. {
  34523. name: "Normal",
  34524. height: math.unit(6 + 8/12, "feet"),
  34525. default: true
  34526. },
  34527. {
  34528. name: "Casually Large",
  34529. height: math.unit(25, "feet")
  34530. },
  34531. {
  34532. name: "Giant",
  34533. height: math.unit(100, "feet")
  34534. },
  34535. {
  34536. name: "Kaiju",
  34537. height: math.unit(300, "feet")
  34538. },
  34539. ]
  34540. ))
  34541. characterMakers.push(() => makeCharacter(
  34542. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  34543. {
  34544. dragon: {
  34545. height: math.unit(5, "meters"),
  34546. name: "Dragon",
  34547. image: {
  34548. source: "./media/characters/sabrina/dragon.svg",
  34549. extra: 3670 / 2365,
  34550. bottom: 333 / 4003
  34551. }
  34552. },
  34553. gryphon: {
  34554. height: math.unit(3, "meters"),
  34555. name: "Gryphon",
  34556. image: {
  34557. source: "./media/characters/sabrina/gryphon.svg",
  34558. extra: 1576 / 945,
  34559. bottom: 71 / 1647
  34560. }
  34561. },
  34562. snake: {
  34563. height: math.unit(12, "meters"),
  34564. name: "Snake",
  34565. image: {
  34566. source: "./media/characters/sabrina/snake.svg",
  34567. extra: 1758 / 1320,
  34568. bottom: 186 / 1944
  34569. }
  34570. },
  34571. collar: {
  34572. height: math.unit(1.86, "meters"),
  34573. name: "Collar",
  34574. image: {
  34575. source: "./media/characters/sabrina/collar.svg"
  34576. }
  34577. },
  34578. eye: {
  34579. height: math.unit(0.53, "meters"),
  34580. name: "Eye",
  34581. image: {
  34582. source: "./media/characters/sabrina/eye.svg"
  34583. }
  34584. },
  34585. foot: {
  34586. height: math.unit(1.86, "meters"),
  34587. name: "Foot",
  34588. image: {
  34589. source: "./media/characters/sabrina/foot.svg"
  34590. }
  34591. },
  34592. hand: {
  34593. height: math.unit(1.32, "meters"),
  34594. name: "Hand",
  34595. image: {
  34596. source: "./media/characters/sabrina/hand.svg"
  34597. }
  34598. },
  34599. head: {
  34600. height: math.unit(2.44, "meters"),
  34601. name: "Head",
  34602. image: {
  34603. source: "./media/characters/sabrina/head.svg"
  34604. }
  34605. },
  34606. headAngry: {
  34607. height: math.unit(2.44, "meters"),
  34608. name: "Head (Angry))",
  34609. image: {
  34610. source: "./media/characters/sabrina/head-angry.svg"
  34611. }
  34612. },
  34613. maw: {
  34614. height: math.unit(1.65, "meters"),
  34615. name: "Maw",
  34616. image: {
  34617. source: "./media/characters/sabrina/maw.svg"
  34618. }
  34619. },
  34620. spikes: {
  34621. height: math.unit(1.69, "meters"),
  34622. name: "Spikes",
  34623. image: {
  34624. source: "./media/characters/sabrina/spikes.svg"
  34625. }
  34626. },
  34627. stomach: {
  34628. height: math.unit(1.15, "meters"),
  34629. name: "Stomach",
  34630. image: {
  34631. source: "./media/characters/sabrina/stomach.svg"
  34632. }
  34633. },
  34634. tongue: {
  34635. height: math.unit(1.27, "meters"),
  34636. name: "Tongue",
  34637. image: {
  34638. source: "./media/characters/sabrina/tongue.svg"
  34639. }
  34640. },
  34641. wingDorsal: {
  34642. height: math.unit(4.85, "meters"),
  34643. name: "Wing (Dorsal)",
  34644. image: {
  34645. source: "./media/characters/sabrina/wing-dorsal.svg"
  34646. }
  34647. },
  34648. wingVentral: {
  34649. height: math.unit(4.85, "meters"),
  34650. name: "Wing (Ventral)",
  34651. image: {
  34652. source: "./media/characters/sabrina/wing-ventral.svg"
  34653. }
  34654. },
  34655. },
  34656. [
  34657. {
  34658. name: "Normal",
  34659. height: math.unit(5, "meters"),
  34660. default: true
  34661. },
  34662. ]
  34663. ))
  34664. characterMakers.push(() => makeCharacter(
  34665. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  34666. {
  34667. frontMaid: {
  34668. height: math.unit(5 + 5/12, "feet"),
  34669. weight: math.unit(130, "lb"),
  34670. name: "Front (Maid)",
  34671. image: {
  34672. source: "./media/characters/midnight-tales/front-maid.svg",
  34673. extra: 489/454,
  34674. bottom: 61/550
  34675. }
  34676. },
  34677. frontFormal: {
  34678. height: math.unit(5 + 5/12, "feet"),
  34679. weight: math.unit(130, "lb"),
  34680. name: "Front (Formal)",
  34681. image: {
  34682. source: "./media/characters/midnight-tales/front-formal.svg",
  34683. extra: 489/454,
  34684. bottom: 61/550
  34685. }
  34686. },
  34687. back: {
  34688. height: math.unit(5 + 5/12, "feet"),
  34689. weight: math.unit(130, "lb"),
  34690. name: "Back",
  34691. image: {
  34692. source: "./media/characters/midnight-tales/back.svg",
  34693. extra: 498/456,
  34694. bottom: 33/531
  34695. }
  34696. },
  34697. frontBeast: {
  34698. height: math.unit(40, "feet"),
  34699. weight: math.unit(64000, "lb"),
  34700. name: "Front (Beast)",
  34701. image: {
  34702. source: "./media/characters/midnight-tales/front-beast.svg",
  34703. extra: 927/860,
  34704. bottom: 53/980
  34705. }
  34706. },
  34707. backBeast: {
  34708. height: math.unit(40, "feet"),
  34709. weight: math.unit(64000, "lb"),
  34710. name: "Back (Beast)",
  34711. image: {
  34712. source: "./media/characters/midnight-tales/back-beast.svg",
  34713. extra: 929/855,
  34714. bottom: 16/945
  34715. }
  34716. },
  34717. footBeast: {
  34718. height: math.unit(6.7, "feet"),
  34719. name: "Foot (Beast)",
  34720. image: {
  34721. source: "./media/characters/midnight-tales/foot-beast.svg"
  34722. }
  34723. },
  34724. headBeast: {
  34725. height: math.unit(8, "feet"),
  34726. name: "Head (Beast)",
  34727. image: {
  34728. source: "./media/characters/midnight-tales/head-beast.svg"
  34729. }
  34730. },
  34731. },
  34732. [
  34733. {
  34734. name: "Normal",
  34735. height: math.unit(5 + 5 / 12, "feet"),
  34736. default: true
  34737. },
  34738. {
  34739. name: "Macro",
  34740. height: math.unit(25, "feet")
  34741. },
  34742. ]
  34743. ))
  34744. characterMakers.push(() => makeCharacter(
  34745. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  34746. {
  34747. front: {
  34748. height: math.unit(5 + 10/12, "feet"),
  34749. name: "Front",
  34750. image: {
  34751. source: "./media/characters/argon/front.svg",
  34752. extra: 2009/1935,
  34753. bottom: 118/2127
  34754. }
  34755. },
  34756. back: {
  34757. height: math.unit(5 + 10/12, "feet"),
  34758. name: "Back",
  34759. image: {
  34760. source: "./media/characters/argon/back.svg",
  34761. extra: 2047/1992,
  34762. bottom: 20/2067
  34763. }
  34764. },
  34765. frontDressed: {
  34766. height: math.unit(5 + 10/12, "feet"),
  34767. name: "Front (Dressed)",
  34768. image: {
  34769. source: "./media/characters/argon/front-dressed.svg",
  34770. extra: 2009/1935,
  34771. bottom: 118/2127
  34772. }
  34773. },
  34774. },
  34775. [
  34776. {
  34777. name: "Normal",
  34778. height: math.unit(5 + 10/12, "feet"),
  34779. default: true
  34780. },
  34781. ]
  34782. ))
  34783. characterMakers.push(() => makeCharacter(
  34784. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  34785. {
  34786. front: {
  34787. height: math.unit(8 + 6/12, "feet"),
  34788. weight: math.unit(1150, "lb"),
  34789. name: "Front",
  34790. image: {
  34791. source: "./media/characters/kichi/front.svg",
  34792. extra: 1267/1164,
  34793. bottom: 61/1328
  34794. }
  34795. },
  34796. back: {
  34797. height: math.unit(8 + 6/12, "feet"),
  34798. weight: math.unit(1150, "lb"),
  34799. name: "Back",
  34800. image: {
  34801. source: "./media/characters/kichi/back.svg",
  34802. extra: 1273/1166,
  34803. bottom: 33/1306
  34804. }
  34805. },
  34806. },
  34807. [
  34808. {
  34809. name: "Normal",
  34810. height: math.unit(8 + 6/12, "feet"),
  34811. default: true
  34812. },
  34813. ]
  34814. ))
  34815. characterMakers.push(() => makeCharacter(
  34816. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  34817. {
  34818. front: {
  34819. height: math.unit(6, "feet"),
  34820. weight: math.unit(210, "lb"),
  34821. name: "Front",
  34822. image: {
  34823. source: "./media/characters/manetel-greyscale/front.svg",
  34824. extra: 350/312,
  34825. bottom: 8/358
  34826. }
  34827. },
  34828. },
  34829. [
  34830. {
  34831. name: "Micro",
  34832. height: math.unit(2, "inches")
  34833. },
  34834. {
  34835. name: "Normal",
  34836. height: math.unit(6, "feet"),
  34837. default: true
  34838. },
  34839. {
  34840. name: "Minimacro",
  34841. height: math.unit(17, "feet")
  34842. },
  34843. {
  34844. name: "Macro",
  34845. height: math.unit(117, "feet")
  34846. },
  34847. ]
  34848. ))
  34849. characterMakers.push(() => makeCharacter(
  34850. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  34851. {
  34852. side: {
  34853. height: math.unit(5 + 1/12, "feet"),
  34854. weight: math.unit(418, "lb"),
  34855. name: "Side",
  34856. image: {
  34857. source: "./media/characters/softpurr/side.svg",
  34858. extra: 1993/1945,
  34859. bottom: 134/2127
  34860. }
  34861. },
  34862. front: {
  34863. height: math.unit(5 + 1/12, "feet"),
  34864. weight: math.unit(418, "lb"),
  34865. name: "Front",
  34866. image: {
  34867. source: "./media/characters/softpurr/front.svg",
  34868. extra: 1950/1856,
  34869. bottom: 174/2124
  34870. }
  34871. },
  34872. paw: {
  34873. height: math.unit(1, "feet"),
  34874. name: "Paw",
  34875. image: {
  34876. source: "./media/characters/softpurr/paw.svg"
  34877. }
  34878. },
  34879. },
  34880. [
  34881. {
  34882. name: "Normal",
  34883. height: math.unit(5 + 1/12, "feet"),
  34884. default: true
  34885. },
  34886. ]
  34887. ))
  34888. characterMakers.push(() => makeCharacter(
  34889. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  34890. {
  34891. front: {
  34892. height: math.unit(260, "meters"),
  34893. name: "Front",
  34894. image: {
  34895. source: "./media/characters/anahita/front.svg",
  34896. extra: 665/635,
  34897. bottom: 89/754
  34898. }
  34899. },
  34900. },
  34901. [
  34902. {
  34903. name: "Macro",
  34904. height: math.unit(260, "meters"),
  34905. default: true
  34906. },
  34907. ]
  34908. ))
  34909. characterMakers.push(() => makeCharacter(
  34910. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  34911. {
  34912. front: {
  34913. height: math.unit(4 + 10/12, "feet"),
  34914. weight: math.unit(160, "lb"),
  34915. name: "Front",
  34916. image: {
  34917. source: "./media/characters/chip-mouse/front.svg",
  34918. extra: 3528/3408,
  34919. bottom: 0/3528
  34920. }
  34921. },
  34922. frontNsfw: {
  34923. height: math.unit(4 + 10/12, "feet"),
  34924. weight: math.unit(160, "lb"),
  34925. name: "Front (NSFW)",
  34926. image: {
  34927. source: "./media/characters/chip-mouse/front-nsfw.svg",
  34928. extra: 3528/3408,
  34929. bottom: 0/3528
  34930. }
  34931. },
  34932. },
  34933. [
  34934. {
  34935. name: "Normal",
  34936. height: math.unit(4 + 10/12, "feet"),
  34937. default: true
  34938. },
  34939. ]
  34940. ))
  34941. characterMakers.push(() => makeCharacter(
  34942. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  34943. {
  34944. side: {
  34945. height: math.unit(10, "feet"),
  34946. weight: math.unit(14000, "lb"),
  34947. name: "Side",
  34948. image: {
  34949. source: "./media/characters/kremm/side.svg",
  34950. extra: 1390/1053,
  34951. bottom: 90/1480
  34952. }
  34953. },
  34954. gut: {
  34955. height: math.unit(5.8, "feet"),
  34956. name: "Gut",
  34957. image: {
  34958. source: "./media/characters/kremm/gut.svg"
  34959. }
  34960. },
  34961. ass: {
  34962. height: math.unit(6.1, "feet"),
  34963. name: "Ass",
  34964. image: {
  34965. source: "./media/characters/kremm/ass.svg"
  34966. }
  34967. },
  34968. jaws: {
  34969. height: math.unit(2.2, "feet"),
  34970. name: "Jaws",
  34971. image: {
  34972. source: "./media/characters/kremm/jaws.svg"
  34973. }
  34974. },
  34975. dick: {
  34976. height: math.unit(4.26, "feet"),
  34977. name: "Dick",
  34978. image: {
  34979. source: "./media/characters/kremm/dick.svg"
  34980. }
  34981. },
  34982. },
  34983. [
  34984. {
  34985. name: "Normal",
  34986. height: math.unit(10, "feet"),
  34987. default: true
  34988. },
  34989. ]
  34990. ))
  34991. characterMakers.push(() => makeCharacter(
  34992. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  34993. {
  34994. front: {
  34995. height: math.unit(30, "stories"),
  34996. name: "Front",
  34997. image: {
  34998. source: "./media/characters/kai/front.svg",
  34999. extra: 1892/1718,
  35000. bottom: 162/2054
  35001. }
  35002. },
  35003. },
  35004. [
  35005. {
  35006. name: "Macro",
  35007. height: math.unit(30, "stories"),
  35008. default: true
  35009. },
  35010. ]
  35011. ))
  35012. characterMakers.push(() => makeCharacter(
  35013. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  35014. {
  35015. front: {
  35016. height: math.unit(6 + 4/12, "feet"),
  35017. weight: math.unit(145, "lb"),
  35018. name: "Front",
  35019. image: {
  35020. source: "./media/characters/sykes/front.svg",
  35021. extra: 1321 / 1187,
  35022. bottom: 66 / 1387
  35023. }
  35024. },
  35025. back: {
  35026. height: math.unit(6 + 4/12, "feet"),
  35027. weight: math.unit(145, "lb"),
  35028. name: "Back",
  35029. image: {
  35030. source: "./media/characters/sykes/back.svg",
  35031. extra: 1326/1181,
  35032. bottom: 31/1357
  35033. }
  35034. },
  35035. traditionalOutfit: {
  35036. height: math.unit(6 + 4/12, "feet"),
  35037. weight: math.unit(145, "lb"),
  35038. name: "Traditional Outfit",
  35039. image: {
  35040. source: "./media/characters/sykes/traditional-outfit.svg",
  35041. extra: 1321 / 1187,
  35042. bottom: 66 / 1387
  35043. }
  35044. },
  35045. adventureOutfit: {
  35046. height: math.unit(6 + 4/12, "feet"),
  35047. weight: math.unit(145, "lb"),
  35048. name: "Adventure Outfit",
  35049. image: {
  35050. source: "./media/characters/sykes/adventure-outfit.svg",
  35051. extra: 1321 / 1187,
  35052. bottom: 66 / 1387
  35053. }
  35054. },
  35055. handLeft: {
  35056. height: math.unit(0.9, "feet"),
  35057. name: "Hand (Left)",
  35058. image: {
  35059. source: "./media/characters/sykes/hand-left.svg"
  35060. }
  35061. },
  35062. handRight: {
  35063. height: math.unit(0.839, "feet"),
  35064. name: "Hand (Right)",
  35065. image: {
  35066. source: "./media/characters/sykes/hand-right.svg"
  35067. }
  35068. },
  35069. leftFoot: {
  35070. height: math.unit(1.2, "feet"),
  35071. name: "Foot (Left)",
  35072. image: {
  35073. source: "./media/characters/sykes/foot-left.svg"
  35074. }
  35075. },
  35076. rightFoot: {
  35077. height: math.unit(1.2, "feet"),
  35078. name: "Foot (Right)",
  35079. image: {
  35080. source: "./media/characters/sykes/foot-right.svg"
  35081. }
  35082. },
  35083. maw: {
  35084. height: math.unit(1.93, "feet"),
  35085. name: "Maw",
  35086. image: {
  35087. source: "./media/characters/sykes/maw.svg"
  35088. }
  35089. },
  35090. teeth: {
  35091. height: math.unit(0.51, "feet"),
  35092. name: "Teeth",
  35093. image: {
  35094. source: "./media/characters/sykes/teeth.svg"
  35095. }
  35096. },
  35097. tongue: {
  35098. height: math.unit(2.13, "feet"),
  35099. name: "Tongue",
  35100. image: {
  35101. source: "./media/characters/sykes/tongue.svg"
  35102. }
  35103. },
  35104. uvula: {
  35105. height: math.unit(0.16, "feet"),
  35106. name: "Uvula",
  35107. image: {
  35108. source: "./media/characters/sykes/uvula.svg"
  35109. }
  35110. },
  35111. collar: {
  35112. height: math.unit(0.287, "feet"),
  35113. name: "Collar",
  35114. image: {
  35115. source: "./media/characters/sykes/collar.svg"
  35116. }
  35117. },
  35118. tail: {
  35119. height: math.unit(3.8, "feet"),
  35120. name: "Tail",
  35121. image: {
  35122. source: "./media/characters/sykes/tail.svg"
  35123. }
  35124. },
  35125. },
  35126. [
  35127. {
  35128. name: "Shrunken",
  35129. height: math.unit(5, "inches")
  35130. },
  35131. {
  35132. name: "Normal",
  35133. height: math.unit(6 + 4 / 12, "feet"),
  35134. default: true
  35135. },
  35136. {
  35137. name: "Big",
  35138. height: math.unit(15, "feet")
  35139. },
  35140. ]
  35141. ))
  35142. characterMakers.push(() => makeCharacter(
  35143. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  35144. {
  35145. front: {
  35146. height: math.unit(5 + 8/12, "feet"),
  35147. weight: math.unit(190, "lb"),
  35148. name: "Front",
  35149. image: {
  35150. source: "./media/characters/oven-otter/front.svg",
  35151. extra: 1809/1740,
  35152. bottom: 181/1990
  35153. }
  35154. },
  35155. back: {
  35156. height: math.unit(5 + 8/12, "feet"),
  35157. weight: math.unit(190, "lb"),
  35158. name: "Back",
  35159. image: {
  35160. source: "./media/characters/oven-otter/back.svg",
  35161. extra: 1709/1635,
  35162. bottom: 118/1827
  35163. }
  35164. },
  35165. hand: {
  35166. height: math.unit(1.07, "feet"),
  35167. name: "Hand",
  35168. image: {
  35169. source: "./media/characters/oven-otter/hand.svg"
  35170. }
  35171. },
  35172. beans: {
  35173. height: math.unit(1.74, "feet"),
  35174. name: "Beans",
  35175. image: {
  35176. source: "./media/characters/oven-otter/beans.svg"
  35177. }
  35178. },
  35179. },
  35180. [
  35181. {
  35182. name: "Micro",
  35183. height: math.unit(0.5, "inches")
  35184. },
  35185. {
  35186. name: "Normal",
  35187. height: math.unit(5 + 8/12, "feet"),
  35188. default: true
  35189. },
  35190. {
  35191. name: "Macro",
  35192. height: math.unit(250, "feet")
  35193. },
  35194. {
  35195. name: "Really High",
  35196. height: math.unit(420, "feet")
  35197. },
  35198. ]
  35199. ))
  35200. characterMakers.push(() => makeCharacter(
  35201. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  35202. {
  35203. front: {
  35204. height: math.unit(5, "meters"),
  35205. weight: math.unit(292000000000000, "kg"),
  35206. name: "Front",
  35207. image: {
  35208. source: "./media/characters/devourer/front.svg",
  35209. extra: 1800/1733,
  35210. bottom: 211/2011
  35211. }
  35212. },
  35213. maw: {
  35214. height: math.unit(1.1, "meter"),
  35215. name: "Maw",
  35216. image: {
  35217. source: "./media/characters/devourer/maw.svg"
  35218. }
  35219. },
  35220. },
  35221. [
  35222. {
  35223. name: "Small",
  35224. height: math.unit(3, "meters")
  35225. },
  35226. {
  35227. name: "Large",
  35228. height: math.unit(5, "meters"),
  35229. default: true
  35230. },
  35231. ]
  35232. ))
  35233. characterMakers.push(() => makeCharacter(
  35234. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  35235. {
  35236. front: {
  35237. height: math.unit(6, "feet"),
  35238. weight: math.unit(400, "lb"),
  35239. name: "Front",
  35240. image: {
  35241. source: "./media/characters/ellarby/front.svg",
  35242. extra: 1909/1763,
  35243. bottom: 80/1989
  35244. }
  35245. },
  35246. back: {
  35247. height: math.unit(6, "feet"),
  35248. weight: math.unit(400, "lb"),
  35249. name: "Back",
  35250. image: {
  35251. source: "./media/characters/ellarby/back.svg",
  35252. extra: 1914/1784,
  35253. bottom: 172/2086
  35254. }
  35255. },
  35256. },
  35257. [
  35258. {
  35259. name: "Mischief",
  35260. height: math.unit(18, "inches")
  35261. },
  35262. {
  35263. name: "Trouble",
  35264. height: math.unit(12, "feet")
  35265. },
  35266. {
  35267. name: "Havoc",
  35268. height: math.unit(200, "feet"),
  35269. default: true
  35270. },
  35271. {
  35272. name: "Pandemonium",
  35273. height: math.unit(1, "mile")
  35274. },
  35275. {
  35276. name: "Catastrophe",
  35277. height: math.unit(100, "miles")
  35278. },
  35279. ]
  35280. ))
  35281. characterMakers.push(() => makeCharacter(
  35282. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  35283. {
  35284. front: {
  35285. height: math.unit(4.7, "meters"),
  35286. weight: math.unit(6500, "kg"),
  35287. name: "Front",
  35288. image: {
  35289. source: "./media/characters/vex/front.svg",
  35290. extra: 1288/1140,
  35291. bottom: 100/1388
  35292. }
  35293. },
  35294. },
  35295. [
  35296. {
  35297. name: "Normal",
  35298. height: math.unit(4.7, "meters"),
  35299. default: true
  35300. },
  35301. ]
  35302. ))
  35303. characterMakers.push(() => makeCharacter(
  35304. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  35305. {
  35306. normal: {
  35307. height: math.unit(6, "feet"),
  35308. weight: math.unit(350, "lb"),
  35309. name: "Normal",
  35310. image: {
  35311. source: "./media/characters/teshy/normal.svg",
  35312. extra: 1795/1735,
  35313. bottom: 16/1811
  35314. }
  35315. },
  35316. monsterFront: {
  35317. height: math.unit(12, "feet"),
  35318. weight: math.unit(4700, "lb"),
  35319. name: "Monster (Front)",
  35320. image: {
  35321. source: "./media/characters/teshy/monster-front.svg",
  35322. extra: 2042/2034,
  35323. bottom: 128/2170
  35324. }
  35325. },
  35326. monsterSide: {
  35327. height: math.unit(12, "feet"),
  35328. weight: math.unit(4700, "lb"),
  35329. name: "Monster (Side)",
  35330. image: {
  35331. source: "./media/characters/teshy/monster-side.svg",
  35332. extra: 2067/2056,
  35333. bottom: 70/2137
  35334. }
  35335. },
  35336. monsterBack: {
  35337. height: math.unit(12, "feet"),
  35338. weight: math.unit(4700, "lb"),
  35339. name: "Monster (Back)",
  35340. image: {
  35341. source: "./media/characters/teshy/monster-back.svg",
  35342. extra: 1921/1914,
  35343. bottom: 171/2092
  35344. }
  35345. },
  35346. },
  35347. [
  35348. {
  35349. name: "Normal",
  35350. height: math.unit(6, "feet"),
  35351. default: true
  35352. },
  35353. ]
  35354. ))
  35355. characterMakers.push(() => makeCharacter(
  35356. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  35357. {
  35358. front: {
  35359. height: math.unit(6, "feet"),
  35360. name: "Front",
  35361. image: {
  35362. source: "./media/characters/ramey/front.svg",
  35363. extra: 790/787,
  35364. bottom: 27/817
  35365. }
  35366. },
  35367. },
  35368. [
  35369. {
  35370. name: "Normal",
  35371. height: math.unit(6, "feet"),
  35372. default: true
  35373. },
  35374. ]
  35375. ))
  35376. characterMakers.push(() => makeCharacter(
  35377. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  35378. {
  35379. front: {
  35380. height: math.unit(5 + 5/12, "feet"),
  35381. weight: math.unit(120, "lb"),
  35382. name: "Front",
  35383. image: {
  35384. source: "./media/characters/phirae/front.svg",
  35385. extra: 2491/2436,
  35386. bottom: 38/2529
  35387. }
  35388. },
  35389. },
  35390. [
  35391. {
  35392. name: "Normal",
  35393. height: math.unit(5 + 5/12, "feet"),
  35394. default: true
  35395. },
  35396. ]
  35397. ))
  35398. characterMakers.push(() => makeCharacter(
  35399. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  35400. {
  35401. front: {
  35402. height: math.unit(5 + 3/12, "feet"),
  35403. name: "Front",
  35404. image: {
  35405. source: "./media/characters/stagglas/front.svg",
  35406. extra: 962/882,
  35407. bottom: 53/1015
  35408. }
  35409. },
  35410. feral: {
  35411. height: math.unit(335, "cm"),
  35412. name: "Feral",
  35413. image: {
  35414. source: "./media/characters/stagglas/feral.svg",
  35415. extra: 1732/1090,
  35416. bottom: 48/1780
  35417. }
  35418. },
  35419. },
  35420. [
  35421. {
  35422. name: "Normal",
  35423. height: math.unit(5 + 3/12, "feet"),
  35424. default: true
  35425. },
  35426. ]
  35427. ))
  35428. characterMakers.push(() => makeCharacter(
  35429. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  35430. {
  35431. front: {
  35432. height: math.unit(5 + 4/12, "feet"),
  35433. weight: math.unit(145, "lb"),
  35434. name: "Front",
  35435. image: {
  35436. source: "./media/characters/starra/front.svg",
  35437. extra: 1790/1691,
  35438. bottom: 91/1881
  35439. }
  35440. },
  35441. },
  35442. [
  35443. {
  35444. name: "Normal",
  35445. height: math.unit(5 + 4/12, "feet"),
  35446. default: true
  35447. },
  35448. ]
  35449. ))
  35450. characterMakers.push(() => makeCharacter(
  35451. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  35452. {
  35453. front: {
  35454. height: math.unit(2.2, "meters"),
  35455. name: "Front",
  35456. image: {
  35457. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  35458. extra: 1194/1005,
  35459. bottom: 25/1219
  35460. }
  35461. },
  35462. },
  35463. [
  35464. {
  35465. name: "Normal",
  35466. height: math.unit(2.2, "meters"),
  35467. default: true
  35468. },
  35469. ]
  35470. ))
  35471. characterMakers.push(() => makeCharacter(
  35472. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  35473. {
  35474. side: {
  35475. height: math.unit(8 + 2/12, "feet"),
  35476. weight: math.unit(1240, "lb"),
  35477. name: "Side",
  35478. image: {
  35479. source: "./media/characters/mika-valentine/side.svg",
  35480. extra: 2670/2501,
  35481. bottom: 250/2920
  35482. }
  35483. },
  35484. },
  35485. [
  35486. {
  35487. name: "Normal",
  35488. height: math.unit(8 + 2/12, "feet"),
  35489. default: true
  35490. },
  35491. ]
  35492. ))
  35493. characterMakers.push(() => makeCharacter(
  35494. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  35495. {
  35496. front: {
  35497. height: math.unit(7 + 2/12, "feet"),
  35498. name: "Front",
  35499. image: {
  35500. source: "./media/characters/xoltol/front.svg",
  35501. extra: 2212/2124,
  35502. bottom: 84/2296
  35503. }
  35504. },
  35505. side: {
  35506. height: math.unit(7 + 2/12, "feet"),
  35507. name: "Side",
  35508. image: {
  35509. source: "./media/characters/xoltol/side.svg",
  35510. extra: 2273/2197,
  35511. bottom: 26/2299
  35512. }
  35513. },
  35514. hand: {
  35515. height: math.unit(2.5, "feet"),
  35516. name: "Hand",
  35517. image: {
  35518. source: "./media/characters/xoltol/hand.svg"
  35519. }
  35520. },
  35521. },
  35522. [
  35523. {
  35524. name: "Small-ish",
  35525. height: math.unit(5 + 11/12, "feet")
  35526. },
  35527. {
  35528. name: "Normal",
  35529. height: math.unit(7 + 2/12, "feet")
  35530. },
  35531. {
  35532. name: "\"Macro\"",
  35533. height: math.unit(14 + 9/12, "feet"),
  35534. default: true
  35535. },
  35536. {
  35537. name: "Alternate Height",
  35538. height: math.unit(20, "feet")
  35539. },
  35540. {
  35541. name: "Actually Macro",
  35542. height: math.unit(100, "feet")
  35543. },
  35544. ]
  35545. ))
  35546. characterMakers.push(() => makeCharacter(
  35547. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  35548. {
  35549. front: {
  35550. height: math.unit(5 + 2/12, "feet"),
  35551. name: "Front",
  35552. image: {
  35553. source: "./media/characters/kotetsu-redwood/front.svg",
  35554. extra: 1053/942,
  35555. bottom: 60/1113
  35556. }
  35557. },
  35558. },
  35559. [
  35560. {
  35561. name: "Normal",
  35562. height: math.unit(5 + 2/12, "feet"),
  35563. default: true
  35564. },
  35565. ]
  35566. ))
  35567. characterMakers.push(() => makeCharacter(
  35568. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  35569. {
  35570. front: {
  35571. height: math.unit(2.4, "meters"),
  35572. weight: math.unit(125, "kg"),
  35573. name: "Front",
  35574. image: {
  35575. source: "./media/characters/lilith/front.svg",
  35576. extra: 1590/1513,
  35577. bottom: 203/1793
  35578. }
  35579. },
  35580. },
  35581. [
  35582. {
  35583. name: "Humanoid",
  35584. height: math.unit(2.4, "meters")
  35585. },
  35586. {
  35587. name: "Normal",
  35588. height: math.unit(6, "meters"),
  35589. default: true
  35590. },
  35591. {
  35592. name: "Largest",
  35593. height: math.unit(55, "meters")
  35594. },
  35595. ]
  35596. ))
  35597. characterMakers.push(() => makeCharacter(
  35598. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  35599. {
  35600. front: {
  35601. height: math.unit(8 + 4/12, "feet"),
  35602. weight: math.unit(535, "lb"),
  35603. name: "Front",
  35604. image: {
  35605. source: "./media/characters/beh'kah-bolger/front.svg",
  35606. extra: 1660/1603,
  35607. bottom: 37/1697
  35608. }
  35609. },
  35610. },
  35611. [
  35612. {
  35613. name: "Normal",
  35614. height: math.unit(8 + 4/12, "feet"),
  35615. default: true
  35616. },
  35617. {
  35618. name: "Kaiju",
  35619. height: math.unit(250, "feet")
  35620. },
  35621. {
  35622. name: "Still Growing",
  35623. height: math.unit(10, "miles")
  35624. },
  35625. {
  35626. name: "Continental",
  35627. height: math.unit(5000, "miles")
  35628. },
  35629. {
  35630. name: "Final Form",
  35631. height: math.unit(2500000, "miles")
  35632. },
  35633. ]
  35634. ))
  35635. characterMakers.push(() => makeCharacter(
  35636. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  35637. {
  35638. front: {
  35639. height: math.unit(7 + 2/12, "feet"),
  35640. weight: math.unit(230, "kg"),
  35641. name: "Front",
  35642. image: {
  35643. source: "./media/characters/tatyana-milewska/front.svg",
  35644. extra: 1199/1150,
  35645. bottom: 86/1285
  35646. }
  35647. },
  35648. },
  35649. [
  35650. {
  35651. name: "Normal",
  35652. height: math.unit(7 + 2/12, "feet"),
  35653. default: true
  35654. },
  35655. {
  35656. name: "Big",
  35657. height: math.unit(12, "feet")
  35658. },
  35659. {
  35660. name: "Minimacro",
  35661. height: math.unit(20, "feet")
  35662. },
  35663. {
  35664. name: "Macro",
  35665. height: math.unit(120, "feet")
  35666. },
  35667. ]
  35668. ))
  35669. characterMakers.push(() => makeCharacter(
  35670. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  35671. {
  35672. front: {
  35673. height: math.unit(7 + 8/12, "feet"),
  35674. weight: math.unit(152, "kg"),
  35675. name: "Front",
  35676. image: {
  35677. source: "./media/characters/helen-arri/front.svg",
  35678. extra: 440/423,
  35679. bottom: 14/454
  35680. }
  35681. },
  35682. back: {
  35683. height: math.unit(7 + 8/12, "feet"),
  35684. weight: math.unit(152, "kg"),
  35685. name: "Back",
  35686. image: {
  35687. source: "./media/characters/helen-arri/back.svg",
  35688. extra: 443/426,
  35689. bottom: 8/451
  35690. }
  35691. },
  35692. },
  35693. [
  35694. {
  35695. name: "Normal",
  35696. height: math.unit(7 + 8/12, "feet"),
  35697. default: true
  35698. },
  35699. {
  35700. name: "Big",
  35701. height: math.unit(14, "feet")
  35702. },
  35703. {
  35704. name: "Minimacro",
  35705. height: math.unit(24, "feet")
  35706. },
  35707. {
  35708. name: "Macro",
  35709. height: math.unit(140, "feet")
  35710. },
  35711. ]
  35712. ))
  35713. characterMakers.push(() => makeCharacter(
  35714. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  35715. {
  35716. front: {
  35717. height: math.unit(6, "meters"),
  35718. name: "Front",
  35719. image: {
  35720. source: "./media/characters/ehanu-rehu/front.svg",
  35721. extra: 1800/1800,
  35722. bottom: 59/1859
  35723. }
  35724. },
  35725. },
  35726. [
  35727. {
  35728. name: "Normal",
  35729. height: math.unit(6, "meters"),
  35730. default: true
  35731. },
  35732. ]
  35733. ))
  35734. characterMakers.push(() => makeCharacter(
  35735. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  35736. {
  35737. front: {
  35738. height: math.unit(7 + 3/12, "feet"),
  35739. name: "Front",
  35740. image: {
  35741. source: "./media/characters/renholder/front.svg",
  35742. extra: 3096/2960,
  35743. bottom: 250/3346
  35744. }
  35745. },
  35746. },
  35747. [
  35748. {
  35749. name: "Normal Bat",
  35750. height: math.unit(7 + 3/12, "feet"),
  35751. default: true
  35752. },
  35753. {
  35754. name: "Slightly Tall Bat",
  35755. height: math.unit(100, "feet")
  35756. },
  35757. {
  35758. name: "Big Bat",
  35759. height: math.unit(1000, "feet")
  35760. },
  35761. {
  35762. name: "City-Sized Bat",
  35763. height: math.unit(200000, "feet")
  35764. },
  35765. {
  35766. name: "Bigger Bat",
  35767. height: math.unit(10000, "miles")
  35768. },
  35769. {
  35770. name: "Solar Sized Bat",
  35771. height: math.unit(100, "AU")
  35772. },
  35773. {
  35774. name: "Galactic Bat",
  35775. height: math.unit(200000, "lightyears")
  35776. },
  35777. {
  35778. name: "Universally Known Bat",
  35779. height: math.unit(1, "universe")
  35780. },
  35781. ]
  35782. ))
  35783. characterMakers.push(() => makeCharacter(
  35784. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  35785. {
  35786. front: {
  35787. height: math.unit(6 + 11/12, "feet"),
  35788. weight: math.unit(250, "lb"),
  35789. name: "Front",
  35790. image: {
  35791. source: "./media/characters/cookiecat/front.svg",
  35792. extra: 893/827,
  35793. bottom: 14/907
  35794. }
  35795. },
  35796. },
  35797. [
  35798. {
  35799. name: "Micro",
  35800. height: math.unit(3, "inches")
  35801. },
  35802. {
  35803. name: "Normal",
  35804. height: math.unit(6 + 11/12, "feet"),
  35805. default: true
  35806. },
  35807. {
  35808. name: "Macro",
  35809. height: math.unit(100, "feet")
  35810. },
  35811. {
  35812. name: "Macro+",
  35813. height: math.unit(404, "feet")
  35814. },
  35815. {
  35816. name: "Megamacro",
  35817. height: math.unit(165, "miles")
  35818. },
  35819. {
  35820. name: "Planetary",
  35821. height: math.unit(4600, "miles")
  35822. },
  35823. ]
  35824. ))
  35825. characterMakers.push(() => makeCharacter(
  35826. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  35827. {
  35828. front: {
  35829. height: math.unit(10 + 3/12, "feet"),
  35830. weight: math.unit(1500, "lb"),
  35831. name: "Front",
  35832. image: {
  35833. source: "./media/characters/tux-kusanagi/front.svg",
  35834. extra: 944/840,
  35835. bottom: 39/983
  35836. }
  35837. },
  35838. back: {
  35839. height: math.unit(10 + 3/12, "feet"),
  35840. weight: math.unit(1500, "lb"),
  35841. name: "Back",
  35842. image: {
  35843. source: "./media/characters/tux-kusanagi/back.svg",
  35844. extra: 941/842,
  35845. bottom: 28/969
  35846. }
  35847. },
  35848. rump: {
  35849. height: math.unit(5.25, "feet"),
  35850. name: "Rump",
  35851. image: {
  35852. source: "./media/characters/tux-kusanagi/rump.svg"
  35853. }
  35854. },
  35855. beak: {
  35856. height: math.unit(1.54, "feet"),
  35857. name: "Beak",
  35858. image: {
  35859. source: "./media/characters/tux-kusanagi/beak.svg"
  35860. }
  35861. },
  35862. },
  35863. [
  35864. {
  35865. name: "Normal",
  35866. height: math.unit(10 + 3/12, "feet"),
  35867. default: true
  35868. },
  35869. ]
  35870. ))
  35871. characterMakers.push(() => makeCharacter(
  35872. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  35873. {
  35874. front: {
  35875. height: math.unit(58, "feet"),
  35876. weight: math.unit(200, "tons"),
  35877. name: "Front",
  35878. image: {
  35879. source: "./media/characters/uzarmazari/front.svg",
  35880. extra: 1575/1455,
  35881. bottom: 152/1727
  35882. }
  35883. },
  35884. back: {
  35885. height: math.unit(58, "feet"),
  35886. weight: math.unit(200, "tons"),
  35887. name: "Back",
  35888. image: {
  35889. source: "./media/characters/uzarmazari/back.svg",
  35890. extra: 1585/1510,
  35891. bottom: 157/1742
  35892. }
  35893. },
  35894. head: {
  35895. height: math.unit(26, "feet"),
  35896. name: "Head",
  35897. image: {
  35898. source: "./media/characters/uzarmazari/head.svg"
  35899. }
  35900. },
  35901. },
  35902. [
  35903. {
  35904. name: "Normal",
  35905. height: math.unit(58, "feet"),
  35906. default: true
  35907. },
  35908. ]
  35909. ))
  35910. characterMakers.push(() => makeCharacter(
  35911. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  35912. {
  35913. side: {
  35914. height: math.unit(15, "feet"),
  35915. name: "Side",
  35916. image: {
  35917. source: "./media/characters/akitu/side.svg",
  35918. extra: 1421/1321,
  35919. bottom: 157/1578
  35920. }
  35921. },
  35922. front: {
  35923. height: math.unit(15, "feet"),
  35924. name: "Front",
  35925. image: {
  35926. source: "./media/characters/akitu/front.svg",
  35927. extra: 1435/1326,
  35928. bottom: 232/1667
  35929. }
  35930. },
  35931. },
  35932. [
  35933. {
  35934. name: "Normal",
  35935. height: math.unit(15, "feet"),
  35936. default: true
  35937. },
  35938. ]
  35939. ))
  35940. characterMakers.push(() => makeCharacter(
  35941. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  35942. {
  35943. front: {
  35944. height: math.unit(10 + 8/12, "feet"),
  35945. name: "Front",
  35946. image: {
  35947. source: "./media/characters/azalie-croixland/front.svg",
  35948. extra: 1972/1856,
  35949. bottom: 31/2003
  35950. }
  35951. },
  35952. },
  35953. [
  35954. {
  35955. name: "Original Height",
  35956. height: math.unit(5 + 4/12, "feet")
  35957. },
  35958. {
  35959. name: "Normal Height",
  35960. height: math.unit(10 + 8/12, "feet"),
  35961. default: true
  35962. },
  35963. ]
  35964. ))
  35965. characterMakers.push(() => makeCharacter(
  35966. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  35967. {
  35968. side: {
  35969. height: math.unit(7 + 1/12, "feet"),
  35970. weight: math.unit(245, "lb"),
  35971. name: "Side",
  35972. image: {
  35973. source: "./media/characters/kavus-kazian/side.svg",
  35974. extra: 349/342,
  35975. bottom: 15/364
  35976. }
  35977. },
  35978. },
  35979. [
  35980. {
  35981. name: "Normal",
  35982. height: math.unit(7 + 1/12, "feet"),
  35983. default: true
  35984. },
  35985. ]
  35986. ))
  35987. characterMakers.push(() => makeCharacter(
  35988. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  35989. {
  35990. normalFront: {
  35991. height: math.unit(5 + 11/12, "feet"),
  35992. name: "Front",
  35993. image: {
  35994. source: "./media/characters/moonlight-rose/normal-front.svg",
  35995. extra: 1980/1825,
  35996. bottom: 18/1998
  35997. },
  35998. form: "normal",
  35999. default: true
  36000. },
  36001. normalBack: {
  36002. height: math.unit(5 + 11/12, "feet"),
  36003. name: "Back",
  36004. image: {
  36005. source: "./media/characters/moonlight-rose/normal-back.svg",
  36006. extra: 2010/1839,
  36007. bottom: 10/2020
  36008. },
  36009. form: "normal"
  36010. },
  36011. demonFront: {
  36012. height: math.unit(1.5, "earths"),
  36013. name: "Front",
  36014. image: {
  36015. source: "./media/characters/moonlight-rose/demon.svg",
  36016. extra: 1400/1294,
  36017. bottom: 45/1445
  36018. },
  36019. form: "demon",
  36020. default: true
  36021. },
  36022. terraFront: {
  36023. height: math.unit(1.5, "earths"),
  36024. name: "Front",
  36025. image: {
  36026. source: "./media/characters/moonlight-rose/terra.svg"
  36027. },
  36028. form: "terra",
  36029. default: true
  36030. },
  36031. jupiterFront: {
  36032. height: math.unit(69911*2, "km"),
  36033. name: "Front",
  36034. image: {
  36035. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  36036. extra: 1367/1286,
  36037. bottom: 55/1422
  36038. },
  36039. form: "jupiter",
  36040. default: true
  36041. },
  36042. neptuneFront: {
  36043. height: math.unit(24622*2, "feet"),
  36044. name: "Front",
  36045. image: {
  36046. source: "./media/characters/moonlight-rose/neptune-front.svg",
  36047. extra: 1851/1712,
  36048. bottom: 0/1851
  36049. },
  36050. form: "neptune",
  36051. default: true
  36052. },
  36053. },
  36054. [
  36055. {
  36056. name: "\"Natural\" Height",
  36057. height: math.unit(5 + 11/12, "feet"),
  36058. form: "normal"
  36059. },
  36060. {
  36061. name: "Smallest comfortable size",
  36062. height: math.unit(40, "meters"),
  36063. form: "normal"
  36064. },
  36065. {
  36066. name: "Common size",
  36067. height: math.unit(50, "km"),
  36068. form: "normal",
  36069. default: true
  36070. },
  36071. {
  36072. name: "Normal",
  36073. height: math.unit(1.5, "earths"),
  36074. form: "demon",
  36075. default: true
  36076. },
  36077. {
  36078. name: "Universal",
  36079. height: math.unit(15, "universes"),
  36080. form: "demon"
  36081. },
  36082. {
  36083. name: "Earth",
  36084. height: math.unit(1.5, "earths"),
  36085. form: "terra",
  36086. default: true
  36087. },
  36088. {
  36089. name: "Super Earth",
  36090. height: math.unit(67.5, "earths"),
  36091. form: "terra"
  36092. },
  36093. {
  36094. name: "Doesn't fit in a solar system...",
  36095. height: math.unit(1, "galaxy"),
  36096. form: "terra"
  36097. },
  36098. {
  36099. name: "Saturn",
  36100. height: math.unit(58232*2, "km"),
  36101. form: "jupiter"
  36102. },
  36103. {
  36104. name: "Jupiter",
  36105. height: math.unit(69911*2, "km"),
  36106. form: "jupiter",
  36107. default: true
  36108. },
  36109. {
  36110. name: "HD 100546 b",
  36111. height: math.unit(482938, "km"),
  36112. form: "jupiter"
  36113. },
  36114. {
  36115. name: "Enceladus",
  36116. height: math.unit(513*2, "km"),
  36117. form: "neptune"
  36118. },
  36119. {
  36120. name: "Europe",
  36121. height: math.unit(1560*2, "km"),
  36122. form: "neptune"
  36123. },
  36124. {
  36125. name: "Neptune",
  36126. height: math.unit(24622*2, "km"),
  36127. form: "neptune",
  36128. default: true
  36129. },
  36130. {
  36131. name: "CoRoT-9b",
  36132. height: math.unit(75067*2, "km"),
  36133. form: "neptune"
  36134. },
  36135. ],
  36136. {
  36137. "normal": {
  36138. name: "Normal",
  36139. default: true
  36140. },
  36141. "demon": {
  36142. name: "Demon"
  36143. },
  36144. "terra": {
  36145. name: "Terra"
  36146. },
  36147. "jupiter": {
  36148. name: "Jupiter"
  36149. },
  36150. "neptune": {
  36151. name: "Neptune"
  36152. }
  36153. }
  36154. ))
  36155. characterMakers.push(() => makeCharacter(
  36156. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  36157. {
  36158. front: {
  36159. height: math.unit(16, "feet"),
  36160. weight: math.unit(610, "kg"),
  36161. name: "Front",
  36162. image: {
  36163. source: "./media/characters/huckle/front.svg",
  36164. extra: 1731/1625,
  36165. bottom: 33/1764
  36166. }
  36167. },
  36168. back: {
  36169. height: math.unit(16, "feet"),
  36170. weight: math.unit(610, "kg"),
  36171. name: "Back",
  36172. image: {
  36173. source: "./media/characters/huckle/back.svg",
  36174. extra: 1738/1651,
  36175. bottom: 37/1775
  36176. }
  36177. },
  36178. laughing: {
  36179. height: math.unit(3.75, "feet"),
  36180. name: "Laughing",
  36181. image: {
  36182. source: "./media/characters/huckle/laughing.svg"
  36183. }
  36184. },
  36185. angry: {
  36186. height: math.unit(4.15, "feet"),
  36187. name: "Angry",
  36188. image: {
  36189. source: "./media/characters/huckle/angry.svg"
  36190. }
  36191. },
  36192. },
  36193. [
  36194. {
  36195. name: "Normal",
  36196. height: math.unit(16, "feet"),
  36197. default: true
  36198. },
  36199. {
  36200. name: "Mini Macro",
  36201. height: math.unit(463, "feet")
  36202. },
  36203. {
  36204. name: "Macro",
  36205. height: math.unit(1680, "meters")
  36206. },
  36207. {
  36208. name: "Mega Macro",
  36209. height: math.unit(175, "km")
  36210. },
  36211. {
  36212. name: "Terra Macro",
  36213. height: math.unit(32, "gigameters")
  36214. },
  36215. {
  36216. name: "Multiverse+",
  36217. height: math.unit(2.56e23, "yottameters")
  36218. },
  36219. ]
  36220. ))
  36221. characterMakers.push(() => makeCharacter(
  36222. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  36223. {
  36224. front: {
  36225. height: math.unit(6 + 9/12, "feet"),
  36226. weight: math.unit(280, "lb"),
  36227. name: "Front",
  36228. image: {
  36229. source: "./media/characters/candy/front.svg",
  36230. extra: 234/217,
  36231. bottom: 11/245
  36232. }
  36233. },
  36234. },
  36235. [
  36236. {
  36237. name: "Really Small",
  36238. height: math.unit(0.1, "nm")
  36239. },
  36240. {
  36241. name: "Micro",
  36242. height: math.unit(2, "inches")
  36243. },
  36244. {
  36245. name: "Normal",
  36246. height: math.unit(6 + 9/12, "feet"),
  36247. default: true
  36248. },
  36249. {
  36250. name: "Small Macro",
  36251. height: math.unit(69, "feet")
  36252. },
  36253. {
  36254. name: "Macro",
  36255. height: math.unit(160, "feet")
  36256. },
  36257. {
  36258. name: "Megamacro",
  36259. height: math.unit(22000, "miles")
  36260. },
  36261. {
  36262. name: "Gigamacro",
  36263. height: math.unit(50000, "miles")
  36264. },
  36265. ]
  36266. ))
  36267. characterMakers.push(() => makeCharacter(
  36268. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  36269. {
  36270. front: {
  36271. height: math.unit(4, "feet"),
  36272. weight: math.unit(90, "lb"),
  36273. name: "Front",
  36274. image: {
  36275. source: "./media/characters/joey-mcdonald/front.svg",
  36276. extra: 1059/852,
  36277. bottom: 33/1092
  36278. }
  36279. },
  36280. back: {
  36281. height: math.unit(4, "feet"),
  36282. weight: math.unit(90, "lb"),
  36283. name: "Back",
  36284. image: {
  36285. source: "./media/characters/joey-mcdonald/back.svg",
  36286. extra: 1077/879,
  36287. bottom: 5/1082
  36288. }
  36289. },
  36290. frontKobold: {
  36291. height: math.unit(4, "feet"),
  36292. weight: math.unit(100, "lb"),
  36293. name: "Front-kobold",
  36294. image: {
  36295. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  36296. extra: 1480/1367,
  36297. bottom: 0/1480
  36298. }
  36299. },
  36300. backKobold: {
  36301. height: math.unit(4, "feet"),
  36302. weight: math.unit(100, "lb"),
  36303. name: "Back-kobold",
  36304. image: {
  36305. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  36306. extra: 1449/1361,
  36307. bottom: 0/1449
  36308. }
  36309. },
  36310. },
  36311. [
  36312. {
  36313. name: "Normal",
  36314. height: math.unit(4, "feet"),
  36315. default: true
  36316. },
  36317. ]
  36318. ))
  36319. characterMakers.push(() => makeCharacter(
  36320. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  36321. {
  36322. front: {
  36323. height: math.unit(12 + 6/12, "feet"),
  36324. name: "Front",
  36325. image: {
  36326. source: "./media/characters/kass-lockheed/front.svg",
  36327. extra: 354/343,
  36328. bottom: 9/363
  36329. }
  36330. },
  36331. back: {
  36332. height: math.unit(12 + 6/12, "feet"),
  36333. name: "Back",
  36334. image: {
  36335. source: "./media/characters/kass-lockheed/back.svg",
  36336. extra: 364/352,
  36337. bottom: 3/367
  36338. }
  36339. },
  36340. dick: {
  36341. height: math.unit(3.12, "feet"),
  36342. name: "Dick",
  36343. image: {
  36344. source: "./media/characters/kass-lockheed/dick.svg"
  36345. }
  36346. },
  36347. head: {
  36348. height: math.unit(2.6, "feet"),
  36349. name: "Head",
  36350. image: {
  36351. source: "./media/characters/kass-lockheed/head.svg"
  36352. }
  36353. },
  36354. bleh: {
  36355. height: math.unit(2.85, "feet"),
  36356. name: "Bleh",
  36357. image: {
  36358. source: "./media/characters/kass-lockheed/bleh.svg"
  36359. }
  36360. },
  36361. smug: {
  36362. height: math.unit(2.85, "feet"),
  36363. name: "Smug",
  36364. image: {
  36365. source: "./media/characters/kass-lockheed/smug.svg"
  36366. }
  36367. },
  36368. },
  36369. [
  36370. {
  36371. name: "Normal",
  36372. height: math.unit(12 + 6/12, "feet"),
  36373. default: true
  36374. },
  36375. ]
  36376. ))
  36377. characterMakers.push(() => makeCharacter(
  36378. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  36379. {
  36380. front: {
  36381. height: math.unit(6 + 2/12, "feet"),
  36382. name: "Front",
  36383. image: {
  36384. source: "./media/characters/taylor/front.svg",
  36385. extra: 639/495,
  36386. bottom: 12/651
  36387. }
  36388. },
  36389. },
  36390. [
  36391. {
  36392. name: "Normal",
  36393. height: math.unit(6 + 2/12, "feet"),
  36394. default: true
  36395. },
  36396. {
  36397. name: "Big",
  36398. height: math.unit(15, "feet")
  36399. },
  36400. {
  36401. name: "Lorg",
  36402. height: math.unit(80, "feet")
  36403. },
  36404. {
  36405. name: "Too Lorg",
  36406. height: math.unit(120, "feet")
  36407. },
  36408. ]
  36409. ))
  36410. characterMakers.push(() => makeCharacter(
  36411. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  36412. {
  36413. front: {
  36414. height: math.unit(15, "feet"),
  36415. name: "Front",
  36416. image: {
  36417. source: "./media/characters/kaizer/front.svg",
  36418. extra: 1612/1436,
  36419. bottom: 43/1655
  36420. }
  36421. },
  36422. },
  36423. [
  36424. {
  36425. name: "Normal",
  36426. height: math.unit(15, "feet"),
  36427. default: true
  36428. },
  36429. ]
  36430. ))
  36431. characterMakers.push(() => makeCharacter(
  36432. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  36433. {
  36434. front: {
  36435. height: math.unit(2, "feet"),
  36436. weight: math.unit(30, "lb"),
  36437. name: "Front",
  36438. image: {
  36439. source: "./media/characters/sandy/front.svg",
  36440. extra: 1439/1307,
  36441. bottom: 194/1633
  36442. }
  36443. },
  36444. },
  36445. [
  36446. {
  36447. name: "Normal",
  36448. height: math.unit(2, "feet"),
  36449. default: true
  36450. },
  36451. ]
  36452. ))
  36453. characterMakers.push(() => makeCharacter(
  36454. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  36455. {
  36456. front: {
  36457. height: math.unit(3, "feet"),
  36458. name: "Front",
  36459. image: {
  36460. source: "./media/characters/mellvi/front.svg",
  36461. extra: 1831/1630,
  36462. bottom: 58/1889
  36463. }
  36464. },
  36465. },
  36466. [
  36467. {
  36468. name: "Normal",
  36469. height: math.unit(3, "feet"),
  36470. default: true
  36471. },
  36472. ]
  36473. ))
  36474. characterMakers.push(() => makeCharacter(
  36475. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  36476. {
  36477. front: {
  36478. height: math.unit(5 + 11/12, "feet"),
  36479. weight: math.unit(200, "lb"),
  36480. name: "Front",
  36481. image: {
  36482. source: "./media/characters/shirou/front.svg",
  36483. extra: 2491/2383,
  36484. bottom: 189/2680
  36485. }
  36486. },
  36487. back: {
  36488. height: math.unit(5 + 11/12, "feet"),
  36489. weight: math.unit(200, "lb"),
  36490. name: "Back",
  36491. image: {
  36492. source: "./media/characters/shirou/back.svg",
  36493. extra: 2554/2450,
  36494. bottom: 76/2630
  36495. }
  36496. },
  36497. },
  36498. [
  36499. {
  36500. name: "Normal",
  36501. height: math.unit(5 + 11/12, "feet"),
  36502. default: true
  36503. },
  36504. ]
  36505. ))
  36506. characterMakers.push(() => makeCharacter(
  36507. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  36508. {
  36509. front: {
  36510. height: math.unit(6 + 3/12, "feet"),
  36511. weight: math.unit(177, "lb"),
  36512. name: "Front",
  36513. image: {
  36514. source: "./media/characters/noryu/front.svg",
  36515. extra: 973/885,
  36516. bottom: 10/983
  36517. }
  36518. },
  36519. },
  36520. [
  36521. {
  36522. name: "Normal",
  36523. height: math.unit(6 + 3/12, "feet"),
  36524. default: true
  36525. },
  36526. ]
  36527. ))
  36528. characterMakers.push(() => makeCharacter(
  36529. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  36530. {
  36531. front: {
  36532. height: math.unit(5 + 6/12, "feet"),
  36533. weight: math.unit(170, "lb"),
  36534. name: "Front",
  36535. image: {
  36536. source: "./media/characters/mevolas-rubenido/front.svg",
  36537. extra: 2109/1901,
  36538. bottom: 96/2205
  36539. }
  36540. },
  36541. },
  36542. [
  36543. {
  36544. name: "Normal",
  36545. height: math.unit(5 + 6/12, "feet"),
  36546. default: true
  36547. },
  36548. ]
  36549. ))
  36550. characterMakers.push(() => makeCharacter(
  36551. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  36552. {
  36553. front: {
  36554. height: math.unit(100, "feet"),
  36555. name: "Front",
  36556. image: {
  36557. source: "./media/characters/dee/front.svg",
  36558. extra: 2153/2036,
  36559. bottom: 59/2212
  36560. }
  36561. },
  36562. back: {
  36563. height: math.unit(100, "feet"),
  36564. name: "Back",
  36565. image: {
  36566. source: "./media/characters/dee/back.svg",
  36567. extra: 2183/2058,
  36568. bottom: 75/2258
  36569. }
  36570. },
  36571. foot: {
  36572. height: math.unit(19.43, "feet"),
  36573. name: "Foot",
  36574. image: {
  36575. source: "./media/characters/dee/foot.svg"
  36576. }
  36577. },
  36578. hoof: {
  36579. height: math.unit(20.6, "feet"),
  36580. name: "Hoof",
  36581. image: {
  36582. source: "./media/characters/dee/hoof.svg"
  36583. }
  36584. },
  36585. },
  36586. [
  36587. {
  36588. name: "Macro",
  36589. height: math.unit(100, "feet"),
  36590. default: true
  36591. },
  36592. ]
  36593. ))
  36594. characterMakers.push(() => makeCharacter(
  36595. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  36596. {
  36597. front: {
  36598. height: math.unit(5 + 6/12, "feet"),
  36599. name: "Front",
  36600. image: {
  36601. source: "./media/characters/teh/front.svg",
  36602. extra: 1002/847,
  36603. bottom: 62/1064
  36604. }
  36605. },
  36606. },
  36607. [
  36608. {
  36609. name: "Normal",
  36610. height: math.unit(5 + 6/12, "feet"),
  36611. default: true
  36612. },
  36613. ]
  36614. ))
  36615. characterMakers.push(() => makeCharacter(
  36616. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  36617. {
  36618. side: {
  36619. height: math.unit(6 + 1/12, "feet"),
  36620. weight: math.unit(204, "lb"),
  36621. name: "Side",
  36622. image: {
  36623. source: "./media/characters/quicksilver-ayukoti/side.svg",
  36624. extra: 974/775,
  36625. bottom: 169/1143
  36626. }
  36627. },
  36628. sitting: {
  36629. height: math.unit(6 + 2/12, "feet"),
  36630. weight: math.unit(204, "lb"),
  36631. name: "Sitting",
  36632. image: {
  36633. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  36634. extra: 1175/964,
  36635. bottom: 378/1553
  36636. }
  36637. },
  36638. },
  36639. [
  36640. {
  36641. name: "Normal",
  36642. height: math.unit(6 + 1/12, "feet"),
  36643. default: true
  36644. },
  36645. ]
  36646. ))
  36647. characterMakers.push(() => makeCharacter(
  36648. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  36649. {
  36650. front: {
  36651. height: math.unit(6, "inches"),
  36652. name: "Front",
  36653. image: {
  36654. source: "./media/characters/tululi/front.svg",
  36655. extra: 1997/1876,
  36656. bottom: 20/2017
  36657. }
  36658. },
  36659. },
  36660. [
  36661. {
  36662. name: "Normal",
  36663. height: math.unit(6, "inches"),
  36664. default: true
  36665. },
  36666. ]
  36667. ))
  36668. characterMakers.push(() => makeCharacter(
  36669. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  36670. {
  36671. front: {
  36672. height: math.unit(4 + 1/12, "feet"),
  36673. name: "Front",
  36674. image: {
  36675. source: "./media/characters/star/front.svg",
  36676. extra: 1493/1189,
  36677. bottom: 48/1541
  36678. }
  36679. },
  36680. },
  36681. [
  36682. {
  36683. name: "Normal",
  36684. height: math.unit(4 + 1/12, "feet"),
  36685. default: true
  36686. },
  36687. ]
  36688. ))
  36689. characterMakers.push(() => makeCharacter(
  36690. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  36691. {
  36692. front: {
  36693. height: math.unit(6 + 3/12, "feet"),
  36694. name: "Front",
  36695. image: {
  36696. source: "./media/characters/comet/front.svg",
  36697. extra: 1681/1462,
  36698. bottom: 26/1707
  36699. }
  36700. },
  36701. },
  36702. [
  36703. {
  36704. name: "Normal",
  36705. height: math.unit(6 + 3/12, "feet"),
  36706. default: true
  36707. },
  36708. ]
  36709. ))
  36710. characterMakers.push(() => makeCharacter(
  36711. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  36712. {
  36713. front: {
  36714. height: math.unit(950, "feet"),
  36715. name: "Front",
  36716. image: {
  36717. source: "./media/characters/vortex/front.svg",
  36718. extra: 1497/1434,
  36719. bottom: 56/1553
  36720. }
  36721. },
  36722. maw: {
  36723. height: math.unit(285, "feet"),
  36724. name: "Maw",
  36725. image: {
  36726. source: "./media/characters/vortex/maw.svg"
  36727. }
  36728. },
  36729. },
  36730. [
  36731. {
  36732. name: "Macro",
  36733. height: math.unit(950, "feet"),
  36734. default: true
  36735. },
  36736. ]
  36737. ))
  36738. characterMakers.push(() => makeCharacter(
  36739. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  36740. {
  36741. front: {
  36742. height: math.unit(600, "feet"),
  36743. weight: math.unit(0.02, "grams"),
  36744. name: "Front",
  36745. image: {
  36746. source: "./media/characters/doodle/front.svg",
  36747. extra: 1578/1413,
  36748. bottom: 37/1615
  36749. }
  36750. },
  36751. },
  36752. [
  36753. {
  36754. name: "Macro",
  36755. height: math.unit(600, "feet"),
  36756. default: true
  36757. },
  36758. ]
  36759. ))
  36760. characterMakers.push(() => makeCharacter(
  36761. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  36762. {
  36763. front: {
  36764. height: math.unit(6 + 6/12, "feet"),
  36765. name: "Front",
  36766. image: {
  36767. source: "./media/characters/jai/front.svg",
  36768. extra: 1645/1534,
  36769. bottom: 115/1760
  36770. }
  36771. },
  36772. },
  36773. [
  36774. {
  36775. name: "Normal",
  36776. height: math.unit(6 + 6/12, "feet"),
  36777. default: true
  36778. },
  36779. ]
  36780. ))
  36781. characterMakers.push(() => makeCharacter(
  36782. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  36783. {
  36784. front: {
  36785. height: math.unit(6 + 8/12, "feet"),
  36786. name: "Front",
  36787. image: {
  36788. source: "./media/characters/pixel/front.svg",
  36789. extra: 1900/1735,
  36790. bottom: 63/1963
  36791. }
  36792. },
  36793. },
  36794. [
  36795. {
  36796. name: "Normal",
  36797. height: math.unit(6 + 8/12, "feet"),
  36798. default: true
  36799. },
  36800. ]
  36801. ))
  36802. characterMakers.push(() => makeCharacter(
  36803. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  36804. {
  36805. back: {
  36806. height: math.unit(4 + 1/12, "feet"),
  36807. weight: math.unit(75, "lb"),
  36808. name: "Back",
  36809. image: {
  36810. source: "./media/characters/rhett/back.svg",
  36811. extra: 930/878,
  36812. bottom: 25/955
  36813. }
  36814. },
  36815. front: {
  36816. height: math.unit(4 + 1/12, "feet"),
  36817. weight: math.unit(75, "lb"),
  36818. name: "Front",
  36819. image: {
  36820. source: "./media/characters/rhett/front.svg",
  36821. extra: 1682/1586,
  36822. bottom: 92/1774
  36823. }
  36824. },
  36825. },
  36826. [
  36827. {
  36828. name: "Micro",
  36829. height: math.unit(8, "inches")
  36830. },
  36831. {
  36832. name: "Tiny",
  36833. height: math.unit(2, "feet")
  36834. },
  36835. {
  36836. name: "Normal",
  36837. height: math.unit(4 + 1/12, "feet"),
  36838. default: true
  36839. },
  36840. ]
  36841. ))
  36842. characterMakers.push(() => makeCharacter(
  36843. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  36844. {
  36845. front: {
  36846. height: math.unit(3 + 3/12, "feet"),
  36847. name: "Front",
  36848. image: {
  36849. source: "./media/characters/penny/front.svg",
  36850. extra: 1406/1311,
  36851. bottom: 26/1432
  36852. }
  36853. },
  36854. },
  36855. [
  36856. {
  36857. name: "Normal",
  36858. height: math.unit(3 + 3/12, "feet"),
  36859. default: true
  36860. },
  36861. ]
  36862. ))
  36863. characterMakers.push(() => makeCharacter(
  36864. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  36865. {
  36866. front: {
  36867. height: math.unit(4 + 11/12, "feet"),
  36868. name: "Front",
  36869. image: {
  36870. source: "./media/characters/monty/front.svg",
  36871. extra: 1479/1209,
  36872. bottom: 0/1479
  36873. }
  36874. },
  36875. },
  36876. [
  36877. {
  36878. name: "Normal",
  36879. height: math.unit(4 + 11/12, "feet"),
  36880. default: true
  36881. },
  36882. ]
  36883. ))
  36884. characterMakers.push(() => makeCharacter(
  36885. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  36886. {
  36887. front: {
  36888. height: math.unit(8 + 4/12, "feet"),
  36889. name: "Front",
  36890. image: {
  36891. source: "./media/characters/sterling/front.svg",
  36892. extra: 1420/1236,
  36893. bottom: 27/1447
  36894. }
  36895. },
  36896. },
  36897. [
  36898. {
  36899. name: "Normal",
  36900. height: math.unit(8 + 4/12, "feet"),
  36901. default: true
  36902. },
  36903. ]
  36904. ))
  36905. characterMakers.push(() => makeCharacter(
  36906. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  36907. {
  36908. front: {
  36909. height: math.unit(15, "feet"),
  36910. name: "Front",
  36911. image: {
  36912. source: "./media/characters/marble/front.svg",
  36913. extra: 973/937,
  36914. bottom: 32/1005
  36915. }
  36916. },
  36917. },
  36918. [
  36919. {
  36920. name: "Normal",
  36921. height: math.unit(15, "feet"),
  36922. default: true
  36923. },
  36924. ]
  36925. ))
  36926. characterMakers.push(() => makeCharacter(
  36927. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  36928. {
  36929. front: {
  36930. height: math.unit(3, "inches"),
  36931. name: "Front",
  36932. image: {
  36933. source: "./media/characters/powder/front.svg",
  36934. extra: 1504/1334,
  36935. bottom: 518/2022
  36936. }
  36937. },
  36938. },
  36939. [
  36940. {
  36941. name: "Normal",
  36942. height: math.unit(3, "inches"),
  36943. default: true
  36944. },
  36945. ]
  36946. ))
  36947. characterMakers.push(() => makeCharacter(
  36948. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  36949. {
  36950. front: {
  36951. height: math.unit(4 + 5/12, "feet"),
  36952. name: "Front",
  36953. image: {
  36954. source: "./media/characters/joey-raccoon/front.svg",
  36955. extra: 1273/1197,
  36956. bottom: 0/1273
  36957. }
  36958. },
  36959. },
  36960. [
  36961. {
  36962. name: "Normal",
  36963. height: math.unit(4 + 5/12, "feet"),
  36964. default: true
  36965. },
  36966. ]
  36967. ))
  36968. characterMakers.push(() => makeCharacter(
  36969. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  36970. {
  36971. front: {
  36972. height: math.unit(8 + 4/12, "feet"),
  36973. name: "Front",
  36974. image: {
  36975. source: "./media/characters/vick/front.svg",
  36976. extra: 2187/2118,
  36977. bottom: 47/2234
  36978. }
  36979. },
  36980. },
  36981. [
  36982. {
  36983. name: "Normal",
  36984. height: math.unit(8 + 4/12, "feet"),
  36985. default: true
  36986. },
  36987. ]
  36988. ))
  36989. characterMakers.push(() => makeCharacter(
  36990. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  36991. {
  36992. front: {
  36993. height: math.unit(5 + 5/12, "feet"),
  36994. name: "Front",
  36995. image: {
  36996. source: "./media/characters/mitsy/front.svg",
  36997. extra: 1842/1695,
  36998. bottom: 0/1842
  36999. }
  37000. },
  37001. },
  37002. [
  37003. {
  37004. name: "Normal",
  37005. height: math.unit(5 + 5/12, "feet"),
  37006. default: true
  37007. },
  37008. ]
  37009. ))
  37010. characterMakers.push(() => makeCharacter(
  37011. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  37012. {
  37013. front: {
  37014. height: math.unit(6 + 3/12, "feet"),
  37015. name: "Front",
  37016. image: {
  37017. source: "./media/characters/silvy/front.svg",
  37018. extra: 1995/1836,
  37019. bottom: 225/2220
  37020. }
  37021. },
  37022. },
  37023. [
  37024. {
  37025. name: "Normal",
  37026. height: math.unit(6 + 3/12, "feet"),
  37027. default: true
  37028. },
  37029. ]
  37030. ))
  37031. characterMakers.push(() => makeCharacter(
  37032. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  37033. {
  37034. front: {
  37035. height: math.unit(3 + 8/12, "feet"),
  37036. name: "Front",
  37037. image: {
  37038. source: "./media/characters/rodney/front.svg",
  37039. extra: 1956/1747,
  37040. bottom: 31/1987
  37041. }
  37042. },
  37043. frontDressed: {
  37044. height: math.unit(2.9, "feet"),
  37045. name: "Front (Dressed)",
  37046. image: {
  37047. source: "./media/characters/rodney/front-dressed.svg",
  37048. extra: 1382/1241,
  37049. bottom: 385/1767
  37050. }
  37051. },
  37052. },
  37053. [
  37054. {
  37055. name: "Normal",
  37056. height: math.unit(3 + 8/12, "feet"),
  37057. default: true
  37058. },
  37059. ]
  37060. ))
  37061. characterMakers.push(() => makeCharacter(
  37062. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  37063. {
  37064. front: {
  37065. height: math.unit(5 + 9/12, "feet"),
  37066. weight: math.unit(194, "lbs"),
  37067. name: "Front",
  37068. image: {
  37069. source: "./media/characters/zakail-sudekai/front.svg",
  37070. extra: 2696/2533,
  37071. bottom: 248/2944
  37072. }
  37073. },
  37074. maw: {
  37075. height: math.unit(1.35, "feet"),
  37076. name: "Maw",
  37077. image: {
  37078. source: "./media/characters/zakail-sudekai/maw.svg"
  37079. }
  37080. },
  37081. },
  37082. [
  37083. {
  37084. name: "Normal",
  37085. height: math.unit(5 + 9/12, "feet"),
  37086. default: true
  37087. },
  37088. ]
  37089. ))
  37090. characterMakers.push(() => makeCharacter(
  37091. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  37092. {
  37093. front: {
  37094. height: math.unit(8 + 4/12, "feet"),
  37095. weight: math.unit(1200, "lb"),
  37096. name: "Front",
  37097. image: {
  37098. source: "./media/characters/eleanor/front.svg",
  37099. extra: 1226/1192,
  37100. bottom: 52/1278
  37101. }
  37102. },
  37103. back: {
  37104. height: math.unit(8 + 4/12, "feet"),
  37105. weight: math.unit(1200, "lb"),
  37106. name: "Back",
  37107. image: {
  37108. source: "./media/characters/eleanor/back.svg",
  37109. extra: 1242/1184,
  37110. bottom: 60/1302
  37111. }
  37112. },
  37113. head: {
  37114. height: math.unit(2.62, "feet"),
  37115. name: "Head",
  37116. image: {
  37117. source: "./media/characters/eleanor/head.svg"
  37118. }
  37119. },
  37120. },
  37121. [
  37122. {
  37123. name: "Normal",
  37124. height: math.unit(8 + 4/12, "feet"),
  37125. default: true
  37126. },
  37127. ]
  37128. ))
  37129. characterMakers.push(() => makeCharacter(
  37130. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  37131. {
  37132. front: {
  37133. height: math.unit(8 + 4/12, "feet"),
  37134. weight: math.unit(750, "lb"),
  37135. name: "Front",
  37136. image: {
  37137. source: "./media/characters/tanya/front.svg",
  37138. extra: 1749/1615,
  37139. bottom: 33/1782
  37140. }
  37141. },
  37142. },
  37143. [
  37144. {
  37145. name: "Normal",
  37146. height: math.unit(8 + 4/12, "feet"),
  37147. default: true
  37148. },
  37149. ]
  37150. ))
  37151. characterMakers.push(() => makeCharacter(
  37152. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  37153. {
  37154. front: {
  37155. height: math.unit(5, "feet"),
  37156. weight: math.unit(225, "lb"),
  37157. name: "Front",
  37158. image: {
  37159. source: "./media/characters/cindy/front.svg",
  37160. extra: 1320/1250,
  37161. bottom: 42/1362
  37162. }
  37163. },
  37164. frontDressed: {
  37165. height: math.unit(5, "feet"),
  37166. weight: math.unit(225, "lb"),
  37167. name: "Front (Dressed)",
  37168. image: {
  37169. source: "./media/characters/cindy/front-dressed.svg",
  37170. extra: 1320/1250,
  37171. bottom: 42/1362
  37172. }
  37173. },
  37174. back: {
  37175. height: math.unit(5, "feet"),
  37176. weight: math.unit(225, "lb"),
  37177. name: "Back",
  37178. image: {
  37179. source: "./media/characters/cindy/back.svg",
  37180. extra: 1384/1346,
  37181. bottom: 14/1398
  37182. }
  37183. },
  37184. },
  37185. [
  37186. {
  37187. name: "Normal",
  37188. height: math.unit(5, "feet"),
  37189. default: true
  37190. },
  37191. ]
  37192. ))
  37193. characterMakers.push(() => makeCharacter(
  37194. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  37195. {
  37196. front: {
  37197. height: math.unit(6 + 9/12, "feet"),
  37198. weight: math.unit(440, "lb"),
  37199. name: "Front",
  37200. image: {
  37201. source: "./media/characters/wilbur-owen/front.svg",
  37202. extra: 1575/1448,
  37203. bottom: 72/1647
  37204. }
  37205. },
  37206. back: {
  37207. height: math.unit(6 + 9/12, "feet"),
  37208. weight: math.unit(440, "lb"),
  37209. name: "Back",
  37210. image: {
  37211. source: "./media/characters/wilbur-owen/back.svg",
  37212. extra: 1578/1445,
  37213. bottom: 36/1614
  37214. }
  37215. },
  37216. },
  37217. [
  37218. {
  37219. name: "Normal",
  37220. height: math.unit(6 + 9/12, "feet"),
  37221. default: true
  37222. },
  37223. ]
  37224. ))
  37225. characterMakers.push(() => makeCharacter(
  37226. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  37227. {
  37228. front: {
  37229. height: math.unit(6 + 5/12, "feet"),
  37230. weight: math.unit(650, "lb"),
  37231. name: "Front",
  37232. image: {
  37233. source: "./media/characters/keegan/front.svg",
  37234. extra: 2387/2198,
  37235. bottom: 33/2420
  37236. }
  37237. },
  37238. side: {
  37239. height: math.unit(6 + 5/12, "feet"),
  37240. weight: math.unit(650, "lb"),
  37241. name: "Side",
  37242. image: {
  37243. source: "./media/characters/keegan/side.svg",
  37244. extra: 2390/2202,
  37245. bottom: 47/2437
  37246. }
  37247. },
  37248. back: {
  37249. height: math.unit(6 + 5/12, "feet"),
  37250. weight: math.unit(650, "lb"),
  37251. name: "Back",
  37252. image: {
  37253. source: "./media/characters/keegan/back.svg",
  37254. extra: 2418/2268,
  37255. bottom: 15/2433
  37256. }
  37257. },
  37258. frontSfw: {
  37259. height: math.unit(6 + 5/12, "feet"),
  37260. weight: math.unit(650, "lb"),
  37261. name: "Front (SFW)",
  37262. image: {
  37263. source: "./media/characters/keegan/front-sfw.svg",
  37264. extra: 2387/2198,
  37265. bottom: 33/2420
  37266. }
  37267. },
  37268. beans: {
  37269. height: math.unit(1.85, "feet"),
  37270. name: "Beans",
  37271. image: {
  37272. source: "./media/characters/keegan/beans.svg"
  37273. }
  37274. },
  37275. },
  37276. [
  37277. {
  37278. name: "Normal",
  37279. height: math.unit(6 + 5/12, "feet"),
  37280. default: true
  37281. },
  37282. ]
  37283. ))
  37284. characterMakers.push(() => makeCharacter(
  37285. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  37286. {
  37287. front: {
  37288. height: math.unit(9, "feet"),
  37289. name: "Front",
  37290. image: {
  37291. source: "./media/characters/colton/front.svg",
  37292. extra: 1589/1326,
  37293. bottom: 139/1728
  37294. }
  37295. },
  37296. },
  37297. [
  37298. {
  37299. name: "Normal",
  37300. height: math.unit(9, "feet"),
  37301. default: true
  37302. },
  37303. ]
  37304. ))
  37305. characterMakers.push(() => makeCharacter(
  37306. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  37307. {
  37308. front: {
  37309. height: math.unit(2 + 9/12, "feet"),
  37310. name: "Front",
  37311. image: {
  37312. source: "./media/characters/bora/front.svg",
  37313. extra: 1265/1250,
  37314. bottom: 24/1289
  37315. }
  37316. },
  37317. },
  37318. [
  37319. {
  37320. name: "Normal",
  37321. height: math.unit(2 + 9/12, "feet"),
  37322. default: true
  37323. },
  37324. ]
  37325. ))
  37326. characterMakers.push(() => makeCharacter(
  37327. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  37328. {
  37329. front: {
  37330. height: math.unit(8, "feet"),
  37331. name: "Front",
  37332. image: {
  37333. source: "./media/characters/myu-myu/front.svg",
  37334. extra: 1949/1857,
  37335. bottom: 90/2039
  37336. }
  37337. },
  37338. },
  37339. [
  37340. {
  37341. name: "Normal",
  37342. height: math.unit(8, "feet"),
  37343. default: true
  37344. },
  37345. {
  37346. name: "Big",
  37347. height: math.unit(15, "feet")
  37348. },
  37349. {
  37350. name: "BIG",
  37351. height: math.unit(25, "feet")
  37352. },
  37353. ]
  37354. ))
  37355. characterMakers.push(() => makeCharacter(
  37356. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  37357. {
  37358. side: {
  37359. height: math.unit(7 + 5/12, "feet"),
  37360. weight: math.unit(2800, "lb"),
  37361. name: "Side",
  37362. image: {
  37363. source: "./media/characters/haloren/side.svg",
  37364. extra: 1793/409,
  37365. bottom: 59/1852
  37366. }
  37367. },
  37368. frontPaw: {
  37369. height: math.unit(2.36, "feet"),
  37370. name: "Front paw",
  37371. image: {
  37372. source: "./media/characters/haloren/front-paw.svg"
  37373. }
  37374. },
  37375. hindPaw: {
  37376. height: math.unit(3.18, "feet"),
  37377. name: "Hind paw",
  37378. image: {
  37379. source: "./media/characters/haloren/hind-paw.svg"
  37380. }
  37381. },
  37382. maw: {
  37383. height: math.unit(5.05, "feet"),
  37384. name: "Maw",
  37385. image: {
  37386. source: "./media/characters/haloren/maw.svg"
  37387. }
  37388. },
  37389. dick: {
  37390. height: math.unit(2.90, "feet"),
  37391. name: "Dick",
  37392. image: {
  37393. source: "./media/characters/haloren/dick.svg"
  37394. }
  37395. },
  37396. },
  37397. [
  37398. {
  37399. name: "Normal",
  37400. height: math.unit(7 + 5/12, "feet"),
  37401. default: true
  37402. },
  37403. {
  37404. name: "Enhanced",
  37405. height: math.unit(14 + 3/12, "feet")
  37406. },
  37407. ]
  37408. ))
  37409. characterMakers.push(() => makeCharacter(
  37410. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  37411. {
  37412. front: {
  37413. height: math.unit(171, "cm"),
  37414. name: "Front",
  37415. image: {
  37416. source: "./media/characters/kimmy/front.svg",
  37417. extra: 1491/1435,
  37418. bottom: 53/1544
  37419. }
  37420. },
  37421. },
  37422. [
  37423. {
  37424. name: "Small",
  37425. height: math.unit(9, "cm")
  37426. },
  37427. {
  37428. name: "Normal",
  37429. height: math.unit(171, "cm"),
  37430. default: true
  37431. },
  37432. ]
  37433. ))
  37434. characterMakers.push(() => makeCharacter(
  37435. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  37436. {
  37437. front: {
  37438. height: math.unit(8, "feet"),
  37439. weight: math.unit(300, "lb"),
  37440. name: "Front",
  37441. image: {
  37442. source: "./media/characters/galeboomer/front.svg",
  37443. extra: 4651/4415,
  37444. bottom: 162/4813
  37445. }
  37446. },
  37447. back: {
  37448. height: math.unit(8, "feet"),
  37449. weight: math.unit(300, "lb"),
  37450. name: "Back",
  37451. image: {
  37452. source: "./media/characters/galeboomer/back.svg",
  37453. extra: 4544/4314,
  37454. bottom: 16/4560
  37455. }
  37456. },
  37457. frontAlt: {
  37458. height: math.unit(8, "feet"),
  37459. weight: math.unit(300, "lb"),
  37460. name: "Front (Alt)",
  37461. image: {
  37462. source: "./media/characters/galeboomer/front-alt.svg",
  37463. extra: 4458/4228,
  37464. bottom: 68/4526
  37465. }
  37466. },
  37467. maw: {
  37468. height: math.unit(1.2, "feet"),
  37469. name: "Maw",
  37470. image: {
  37471. source: "./media/characters/galeboomer/maw.svg"
  37472. }
  37473. },
  37474. },
  37475. [
  37476. {
  37477. name: "Normal",
  37478. height: math.unit(8, "feet"),
  37479. default: true
  37480. },
  37481. ]
  37482. ))
  37483. characterMakers.push(() => makeCharacter(
  37484. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  37485. {
  37486. front: {
  37487. height: math.unit(5 + 9/12, "feet"),
  37488. weight: math.unit(120, "lb"),
  37489. name: "Front",
  37490. image: {
  37491. source: "./media/characters/chyr/front.svg",
  37492. extra: 1323/1254,
  37493. bottom: 63/1386
  37494. }
  37495. },
  37496. back: {
  37497. height: math.unit(5 + 9/12, "feet"),
  37498. weight: math.unit(120, "lb"),
  37499. name: "Back",
  37500. image: {
  37501. source: "./media/characters/chyr/back.svg",
  37502. extra: 1323/1252,
  37503. bottom: 48/1371
  37504. }
  37505. },
  37506. },
  37507. [
  37508. {
  37509. name: "Normal",
  37510. height: math.unit(5 + 9/12, "feet"),
  37511. default: true
  37512. },
  37513. ]
  37514. ))
  37515. characterMakers.push(() => makeCharacter(
  37516. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  37517. {
  37518. front: {
  37519. height: math.unit(7, "feet"),
  37520. weight: math.unit(310, "lb"),
  37521. name: "Front",
  37522. image: {
  37523. source: "./media/characters/solarus/front.svg",
  37524. extra: 2415/2021,
  37525. bottom: 103/2518
  37526. }
  37527. },
  37528. back: {
  37529. height: math.unit(7, "feet"),
  37530. weight: math.unit(310, "lb"),
  37531. name: "Back",
  37532. image: {
  37533. source: "./media/characters/solarus/back.svg",
  37534. extra: 2463/2089,
  37535. bottom: 79/2542
  37536. }
  37537. },
  37538. },
  37539. [
  37540. {
  37541. name: "Normal",
  37542. height: math.unit(7, "feet"),
  37543. default: true
  37544. },
  37545. ]
  37546. ))
  37547. characterMakers.push(() => makeCharacter(
  37548. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  37549. {
  37550. front: {
  37551. height: math.unit(16, "feet"),
  37552. name: "Front",
  37553. image: {
  37554. source: "./media/characters/mutsuju-koizaemon/front.svg",
  37555. extra: 1844/1780,
  37556. bottom: 58/1902
  37557. }
  37558. },
  37559. winterCoat: {
  37560. height: math.unit(16, "feet"),
  37561. name: "Winter Coat",
  37562. image: {
  37563. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  37564. extra: 1807/1775,
  37565. bottom: 69/1876
  37566. }
  37567. },
  37568. },
  37569. [
  37570. {
  37571. name: "Normal",
  37572. height: math.unit(16, "feet"),
  37573. default: true
  37574. },
  37575. {
  37576. name: "Chicago Size",
  37577. height: math.unit(560, "feet")
  37578. },
  37579. ]
  37580. ))
  37581. characterMakers.push(() => makeCharacter(
  37582. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  37583. {
  37584. front: {
  37585. height: math.unit(11 + 6/12, "feet"),
  37586. weight: math.unit(1366, "lb"),
  37587. name: "Front",
  37588. image: {
  37589. source: "./media/characters/lexor/front.svg",
  37590. extra: 1560/1481,
  37591. bottom: 211/1771
  37592. }
  37593. },
  37594. back: {
  37595. height: math.unit(11 + 6/12, "feet"),
  37596. weight: math.unit(1366, "lb"),
  37597. name: "Back",
  37598. image: {
  37599. source: "./media/characters/lexor/back.svg",
  37600. extra: 1614/1533,
  37601. bottom: 76/1690
  37602. }
  37603. },
  37604. maw: {
  37605. height: math.unit(3, "feet"),
  37606. name: "Maw",
  37607. image: {
  37608. source: "./media/characters/lexor/maw.svg"
  37609. }
  37610. },
  37611. dick: {
  37612. height: math.unit(2.59, "feet"),
  37613. name: "Dick",
  37614. image: {
  37615. source: "./media/characters/lexor/dick.svg"
  37616. }
  37617. },
  37618. },
  37619. [
  37620. {
  37621. name: "Normal",
  37622. height: math.unit(11 + 6/12, "feet"),
  37623. default: true
  37624. },
  37625. ]
  37626. ))
  37627. characterMakers.push(() => makeCharacter(
  37628. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  37629. {
  37630. front: {
  37631. height: math.unit(5 + 8/12, "feet"),
  37632. name: "Front",
  37633. image: {
  37634. source: "./media/characters/magnum/front.svg",
  37635. extra: 942/855,
  37636. bottom: 26/968
  37637. }
  37638. },
  37639. },
  37640. [
  37641. {
  37642. name: "Normal",
  37643. height: math.unit(5 + 8/12, "feet"),
  37644. default: true
  37645. },
  37646. ]
  37647. ))
  37648. characterMakers.push(() => makeCharacter(
  37649. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  37650. {
  37651. front: {
  37652. height: math.unit(18 + 4/12, "feet"),
  37653. weight: math.unit(1500, "kg"),
  37654. name: "Front",
  37655. image: {
  37656. source: "./media/characters/solas-sharpsman/front.svg",
  37657. extra: 1698/1589,
  37658. bottom: 0/1698
  37659. }
  37660. },
  37661. },
  37662. [
  37663. {
  37664. name: "Normal",
  37665. height: math.unit(18 + 4/12, "feet"),
  37666. default: true
  37667. },
  37668. ]
  37669. ))
  37670. characterMakers.push(() => makeCharacter(
  37671. { name: "October", species: ["tiger"], tags: ["anthro"] },
  37672. {
  37673. front: {
  37674. height: math.unit(5 + 5/12, "feet"),
  37675. weight: math.unit(180, "lb"),
  37676. name: "Front",
  37677. image: {
  37678. source: "./media/characters/october/front.svg",
  37679. extra: 1800/1650,
  37680. bottom: 0/1800
  37681. }
  37682. },
  37683. frontNsfw: {
  37684. height: math.unit(5 + 5/12, "feet"),
  37685. weight: math.unit(180, "lb"),
  37686. name: "Front (NSFW)",
  37687. image: {
  37688. source: "./media/characters/october/front-nsfw.svg",
  37689. extra: 1392/1307,
  37690. bottom: 42/1434
  37691. }
  37692. },
  37693. },
  37694. [
  37695. {
  37696. name: "Normal",
  37697. height: math.unit(5 + 5/12, "feet"),
  37698. default: true
  37699. },
  37700. ]
  37701. ))
  37702. characterMakers.push(() => makeCharacter(
  37703. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  37704. {
  37705. front: {
  37706. height: math.unit(8 + 6/12, "feet"),
  37707. name: "Front",
  37708. image: {
  37709. source: "./media/characters/essynkardi/front.svg",
  37710. extra: 1914/1846,
  37711. bottom: 22/1936
  37712. }
  37713. },
  37714. },
  37715. [
  37716. {
  37717. name: "Normal",
  37718. height: math.unit(8 + 6/12, "feet"),
  37719. default: true
  37720. },
  37721. ]
  37722. ))
  37723. characterMakers.push(() => makeCharacter(
  37724. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  37725. {
  37726. front: {
  37727. height: math.unit(6 + 6/12, "feet"),
  37728. weight: math.unit(7, "lb"),
  37729. name: "Front",
  37730. image: {
  37731. source: "./media/characters/icky/front.svg",
  37732. extra: 813/782,
  37733. bottom: 66/879
  37734. }
  37735. },
  37736. back: {
  37737. height: math.unit(6 + 6/12, "feet"),
  37738. weight: math.unit(7, "lb"),
  37739. name: "Back",
  37740. image: {
  37741. source: "./media/characters/icky/back.svg",
  37742. extra: 754/735,
  37743. bottom: 56/810
  37744. }
  37745. },
  37746. },
  37747. [
  37748. {
  37749. name: "Normal",
  37750. height: math.unit(6 + 6/12, "feet"),
  37751. default: true
  37752. },
  37753. ]
  37754. ))
  37755. characterMakers.push(() => makeCharacter(
  37756. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  37757. {
  37758. front: {
  37759. height: math.unit(15, "feet"),
  37760. name: "Front",
  37761. image: {
  37762. source: "./media/characters/rojas/front.svg",
  37763. extra: 1462/1408,
  37764. bottom: 95/1557
  37765. }
  37766. },
  37767. back: {
  37768. height: math.unit(15, "feet"),
  37769. name: "Back",
  37770. image: {
  37771. source: "./media/characters/rojas/back.svg",
  37772. extra: 1023/954,
  37773. bottom: 28/1051
  37774. }
  37775. },
  37776. },
  37777. [
  37778. {
  37779. name: "Normal",
  37780. height: math.unit(15, "feet"),
  37781. default: true
  37782. },
  37783. ]
  37784. ))
  37785. characterMakers.push(() => makeCharacter(
  37786. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  37787. {
  37788. frontHuman: {
  37789. height: math.unit(5 + 7/12, "feet"),
  37790. name: "Front (Human)",
  37791. image: {
  37792. source: "./media/characters/alek-dryagan/front-human.svg",
  37793. extra: 1687/1667,
  37794. bottom: 69/1756
  37795. }
  37796. },
  37797. backHuman: {
  37798. height: math.unit(5 + 7/12, "feet"),
  37799. name: "Back (Human)",
  37800. image: {
  37801. source: "./media/characters/alek-dryagan/back-human.svg",
  37802. extra: 1670/1649,
  37803. bottom: 65/1735
  37804. }
  37805. },
  37806. frontDemi: {
  37807. height: math.unit(65, "feet"),
  37808. name: "Front (Demi)",
  37809. image: {
  37810. source: "./media/characters/alek-dryagan/front-demi.svg",
  37811. extra: 1669/1642,
  37812. bottom: 49/1718
  37813. }
  37814. },
  37815. backDemi: {
  37816. height: math.unit(65, "feet"),
  37817. name: "Back (Demi)",
  37818. image: {
  37819. source: "./media/characters/alek-dryagan/back-demi.svg",
  37820. extra: 1658/1637,
  37821. bottom: 40/1698
  37822. }
  37823. },
  37824. mawHuman: {
  37825. height: math.unit(0.3, "feet"),
  37826. name: "Maw (Human)",
  37827. image: {
  37828. source: "./media/characters/alek-dryagan/maw-human.svg"
  37829. }
  37830. },
  37831. mawDemi: {
  37832. height: math.unit(3.8, "feet"),
  37833. name: "Maw (Demi)",
  37834. image: {
  37835. source: "./media/characters/alek-dryagan/maw-demi.svg"
  37836. }
  37837. },
  37838. },
  37839. [
  37840. {
  37841. name: "Normal",
  37842. height: math.unit(5 + 7/12, "feet"),
  37843. default: true
  37844. },
  37845. ]
  37846. ))
  37847. characterMakers.push(() => makeCharacter(
  37848. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  37849. {
  37850. frontHuman: {
  37851. height: math.unit(5 + 2/12, "feet"),
  37852. name: "Front (Human)",
  37853. image: {
  37854. source: "./media/characters/gen/front-human.svg",
  37855. extra: 1627/1538,
  37856. bottom: 71/1698
  37857. }
  37858. },
  37859. backHuman: {
  37860. height: math.unit(5 + 2/12, "feet"),
  37861. name: "Back (Human)",
  37862. image: {
  37863. source: "./media/characters/gen/back-human.svg",
  37864. extra: 1638/1548,
  37865. bottom: 69/1707
  37866. }
  37867. },
  37868. frontDemi: {
  37869. height: math.unit(5 + 2/12, "feet"),
  37870. name: "Front (Demi)",
  37871. image: {
  37872. source: "./media/characters/gen/front-demi.svg",
  37873. extra: 1627/1538,
  37874. bottom: 71/1698
  37875. }
  37876. },
  37877. backDemi: {
  37878. height: math.unit(5 + 2/12, "feet"),
  37879. name: "Back (Demi)",
  37880. image: {
  37881. source: "./media/characters/gen/back-demi.svg",
  37882. extra: 1638/1548,
  37883. bottom: 69/1707
  37884. }
  37885. },
  37886. },
  37887. [
  37888. {
  37889. name: "Normal",
  37890. height: math.unit(5 + 2/12, "feet"),
  37891. default: true
  37892. },
  37893. ]
  37894. ))
  37895. characterMakers.push(() => makeCharacter(
  37896. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  37897. {
  37898. frontImp: {
  37899. height: math.unit(1 + 11/12, "feet"),
  37900. name: "Front (Imp)",
  37901. image: {
  37902. source: "./media/characters/max-kobold/front-imp.svg",
  37903. extra: 1238/1134,
  37904. bottom: 81/1319
  37905. }
  37906. },
  37907. backImp: {
  37908. height: math.unit(1 + 11/12, "feet"),
  37909. name: "Back (Imp)",
  37910. image: {
  37911. source: "./media/characters/max-kobold/back-imp.svg",
  37912. extra: 1334/1175,
  37913. bottom: 34/1368
  37914. }
  37915. },
  37916. frontDemi: {
  37917. height: math.unit(5 + 9/12, "feet"),
  37918. name: "Front (Demi)",
  37919. image: {
  37920. source: "./media/characters/max-kobold/front-demi.svg",
  37921. extra: 1715/1685,
  37922. bottom: 54/1769
  37923. }
  37924. },
  37925. backDemi: {
  37926. height: math.unit(5 + 9/12, "feet"),
  37927. name: "Back (Demi)",
  37928. image: {
  37929. source: "./media/characters/max-kobold/back-demi.svg",
  37930. extra: 1752/1729,
  37931. bottom: 41/1793
  37932. }
  37933. },
  37934. handImp: {
  37935. height: math.unit(0.45, "feet"),
  37936. name: "Hand (Imp)",
  37937. image: {
  37938. source: "./media/characters/max-kobold/hand.svg"
  37939. }
  37940. },
  37941. pawImp: {
  37942. height: math.unit(0.46, "feet"),
  37943. name: "Paw (Imp)",
  37944. image: {
  37945. source: "./media/characters/max-kobold/paw.svg"
  37946. }
  37947. },
  37948. handDemi: {
  37949. height: math.unit(0.80, "feet"),
  37950. name: "Hand (Demi)",
  37951. image: {
  37952. source: "./media/characters/max-kobold/hand.svg"
  37953. }
  37954. },
  37955. pawDemi: {
  37956. height: math.unit(1.1, "feet"),
  37957. name: "Paw (Demi)",
  37958. image: {
  37959. source: "./media/characters/max-kobold/paw.svg"
  37960. }
  37961. },
  37962. headImp: {
  37963. height: math.unit(1.33, "feet"),
  37964. name: "Head (Imp)",
  37965. image: {
  37966. source: "./media/characters/max-kobold/head-imp.svg"
  37967. }
  37968. },
  37969. mawImp: {
  37970. height: math.unit(0.75, "feet"),
  37971. name: "Maw (Imp)",
  37972. image: {
  37973. source: "./media/characters/max-kobold/maw-imp.svg"
  37974. }
  37975. },
  37976. mawDemi: {
  37977. height: math.unit(0.42, "feet"),
  37978. name: "Maw (Demi)",
  37979. image: {
  37980. source: "./media/characters/max-kobold/maw-demi.svg"
  37981. }
  37982. },
  37983. },
  37984. [
  37985. {
  37986. name: "Normal",
  37987. height: math.unit(1 + 11/12, "feet"),
  37988. default: true
  37989. },
  37990. ]
  37991. ))
  37992. characterMakers.push(() => makeCharacter(
  37993. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  37994. {
  37995. front: {
  37996. height: math.unit(7 + 5/12, "feet"),
  37997. name: "Front",
  37998. image: {
  37999. source: "./media/characters/carbon/front.svg",
  38000. extra: 1754/1689,
  38001. bottom: 65/1819
  38002. }
  38003. },
  38004. back: {
  38005. height: math.unit(7 + 5/12, "feet"),
  38006. name: "Back",
  38007. image: {
  38008. source: "./media/characters/carbon/back.svg",
  38009. extra: 1762/1695,
  38010. bottom: 24/1786
  38011. }
  38012. },
  38013. frontGigantamax: {
  38014. height: math.unit(150, "feet"),
  38015. name: "Front (Gigantamax)",
  38016. image: {
  38017. source: "./media/characters/carbon/front-gigantamax.svg",
  38018. extra: 1826/1669,
  38019. bottom: 59/1885
  38020. }
  38021. },
  38022. backGigantamax: {
  38023. height: math.unit(150, "feet"),
  38024. name: "Back (Gigantamax)",
  38025. image: {
  38026. source: "./media/characters/carbon/back-gigantamax.svg",
  38027. extra: 1796/1653,
  38028. bottom: 53/1849
  38029. }
  38030. },
  38031. maw: {
  38032. height: math.unit(0.48, "feet"),
  38033. name: "Maw",
  38034. image: {
  38035. source: "./media/characters/carbon/maw.svg"
  38036. }
  38037. },
  38038. mawGigantamax: {
  38039. height: math.unit(7.5, "feet"),
  38040. name: "Maw (Gigantamax)",
  38041. image: {
  38042. source: "./media/characters/carbon/maw-gigantamax.svg"
  38043. }
  38044. },
  38045. },
  38046. [
  38047. {
  38048. name: "Normal",
  38049. height: math.unit(7 + 5/12, "feet"),
  38050. default: true
  38051. },
  38052. ]
  38053. ))
  38054. characterMakers.push(() => makeCharacter(
  38055. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  38056. {
  38057. front: {
  38058. height: math.unit(6, "feet"),
  38059. name: "Front",
  38060. image: {
  38061. source: "./media/characters/maverick/front.svg",
  38062. extra: 1672/1661,
  38063. bottom: 85/1757
  38064. }
  38065. },
  38066. back: {
  38067. height: math.unit(6, "feet"),
  38068. name: "Back",
  38069. image: {
  38070. source: "./media/characters/maverick/back.svg",
  38071. extra: 1642/1631,
  38072. bottom: 38/1680
  38073. }
  38074. },
  38075. },
  38076. [
  38077. {
  38078. name: "Normal",
  38079. height: math.unit(6, "feet"),
  38080. default: true
  38081. },
  38082. ]
  38083. ))
  38084. characterMakers.push(() => makeCharacter(
  38085. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  38086. {
  38087. front: {
  38088. height: math.unit(15, "feet"),
  38089. weight: math.unit(615, "lb"),
  38090. name: "Front",
  38091. image: {
  38092. source: "./media/characters/grockle/front.svg",
  38093. extra: 1535/1427,
  38094. bottom: 56/1591
  38095. }
  38096. },
  38097. },
  38098. [
  38099. {
  38100. name: "Normal",
  38101. height: math.unit(15, "feet"),
  38102. default: true
  38103. },
  38104. {
  38105. name: "Large",
  38106. height: math.unit(150, "feet")
  38107. },
  38108. {
  38109. name: "Macro",
  38110. height: math.unit(1876, "feet")
  38111. },
  38112. {
  38113. name: "Mega Macro",
  38114. height: math.unit(121940, "feet")
  38115. },
  38116. {
  38117. name: "Giga Macro",
  38118. height: math.unit(750, "km")
  38119. },
  38120. {
  38121. name: "Tera Macro",
  38122. height: math.unit(750000, "km")
  38123. },
  38124. {
  38125. name: "Galactic",
  38126. height: math.unit(1.4e5, "km")
  38127. },
  38128. {
  38129. name: "Godlike",
  38130. height: math.unit(9.8e280, "galaxies")
  38131. },
  38132. ]
  38133. ))
  38134. characterMakers.push(() => makeCharacter(
  38135. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  38136. {
  38137. front: {
  38138. height: math.unit(11, "meters"),
  38139. weight: math.unit(20, "tonnes"),
  38140. name: "Front",
  38141. image: {
  38142. source: "./media/characters/alistair/front.svg",
  38143. extra: 1265/1009,
  38144. bottom: 93/1358
  38145. }
  38146. },
  38147. },
  38148. [
  38149. {
  38150. name: "Normal",
  38151. height: math.unit(11, "meters"),
  38152. default: true
  38153. },
  38154. ]
  38155. ))
  38156. characterMakers.push(() => makeCharacter(
  38157. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  38158. {
  38159. front: {
  38160. height: math.unit(5 + 8/12, "feet"),
  38161. name: "Front",
  38162. image: {
  38163. source: "./media/characters/haruka/front.svg",
  38164. extra: 2012/1952,
  38165. bottom: 0/2012
  38166. }
  38167. },
  38168. },
  38169. [
  38170. {
  38171. name: "Normal",
  38172. height: math.unit(5 + 8/12, "feet"),
  38173. default: true
  38174. },
  38175. ]
  38176. ))
  38177. characterMakers.push(() => makeCharacter(
  38178. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  38179. {
  38180. back: {
  38181. height: math.unit(9, "feet"),
  38182. name: "Back",
  38183. image: {
  38184. source: "./media/characters/vivian-sylveon/back.svg",
  38185. extra: 1853/1714,
  38186. bottom: 0/1853
  38187. }
  38188. },
  38189. },
  38190. [
  38191. {
  38192. name: "Normal",
  38193. height: math.unit(9, "feet"),
  38194. default: true
  38195. },
  38196. {
  38197. name: "Macro",
  38198. height: math.unit(500, "feet")
  38199. },
  38200. {
  38201. name: "Megamacro",
  38202. height: math.unit(600, "miles")
  38203. },
  38204. {
  38205. name: "Gigamacro",
  38206. height: math.unit(30000, "miles")
  38207. },
  38208. ]
  38209. ))
  38210. characterMakers.push(() => makeCharacter(
  38211. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  38212. {
  38213. anthro: {
  38214. height: math.unit(5 + 10/12, "feet"),
  38215. weight: math.unit(100, "lb"),
  38216. name: "Anthro",
  38217. image: {
  38218. source: "./media/characters/daiki/anthro.svg",
  38219. extra: 1115/1027,
  38220. bottom: 69/1184
  38221. }
  38222. },
  38223. feral: {
  38224. height: math.unit(200, "feet"),
  38225. name: "Feral",
  38226. image: {
  38227. source: "./media/characters/daiki/feral.svg",
  38228. extra: 1256/313,
  38229. bottom: 39/1295
  38230. }
  38231. },
  38232. feralHead: {
  38233. height: math.unit(171, "feet"),
  38234. name: "Feral Head",
  38235. image: {
  38236. source: "./media/characters/daiki/feral-head.svg"
  38237. }
  38238. },
  38239. manaDragon: {
  38240. height: math.unit(170, "meters"),
  38241. name: "Mana-dragon",
  38242. image: {
  38243. source: "./media/characters/daiki/mana-dragon.svg",
  38244. extra: 763/420,
  38245. bottom: 97/860
  38246. }
  38247. },
  38248. },
  38249. [
  38250. {
  38251. name: "Normal",
  38252. height: math.unit(5 + 10/12, "feet"),
  38253. default: true
  38254. },
  38255. ]
  38256. ))
  38257. characterMakers.push(() => makeCharacter(
  38258. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  38259. {
  38260. fullyEquippedFront: {
  38261. height: math.unit(3 + 1/12, "feet"),
  38262. weight: math.unit(24, "lb"),
  38263. name: "Fully Equipped (Front)",
  38264. image: {
  38265. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  38266. extra: 687/605,
  38267. bottom: 18/705
  38268. }
  38269. },
  38270. fullyEquippedBack: {
  38271. height: math.unit(3 + 1/12, "feet"),
  38272. weight: math.unit(24, "lb"),
  38273. name: "Fully Equipped (Back)",
  38274. image: {
  38275. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  38276. extra: 689/590,
  38277. bottom: 18/707
  38278. }
  38279. },
  38280. dailyWear: {
  38281. height: math.unit(3 + 1/12, "feet"),
  38282. weight: math.unit(24, "lb"),
  38283. name: "Daily Wear",
  38284. image: {
  38285. source: "./media/characters/tea-spot/daily-wear.svg",
  38286. extra: 701/620,
  38287. bottom: 21/722
  38288. }
  38289. },
  38290. maidWork: {
  38291. height: math.unit(3 + 1/12, "feet"),
  38292. weight: math.unit(24, "lb"),
  38293. name: "Maid Work",
  38294. image: {
  38295. source: "./media/characters/tea-spot/maid-work.svg",
  38296. extra: 693/609,
  38297. bottom: 15/708
  38298. }
  38299. },
  38300. },
  38301. [
  38302. {
  38303. name: "Normal",
  38304. height: math.unit(3 + 1/12, "feet"),
  38305. default: true
  38306. },
  38307. ]
  38308. ))
  38309. characterMakers.push(() => makeCharacter(
  38310. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  38311. {
  38312. front: {
  38313. height: math.unit(175, "cm"),
  38314. weight: math.unit(75, "kg"),
  38315. name: "Front",
  38316. image: {
  38317. source: "./media/characters/chee/front.svg",
  38318. extra: 1796/1740,
  38319. bottom: 40/1836
  38320. }
  38321. },
  38322. },
  38323. [
  38324. {
  38325. name: "Micro-Micro",
  38326. height: math.unit(1, "nm")
  38327. },
  38328. {
  38329. name: "Micro-erst",
  38330. height: math.unit(1, "micrometer")
  38331. },
  38332. {
  38333. name: "Micro-er",
  38334. height: math.unit(1, "cm")
  38335. },
  38336. {
  38337. name: "Normal",
  38338. height: math.unit(175, "cm"),
  38339. default: true
  38340. },
  38341. {
  38342. name: "Macro",
  38343. height: math.unit(100, "m")
  38344. },
  38345. {
  38346. name: "Macro-er",
  38347. height: math.unit(1, "km")
  38348. },
  38349. {
  38350. name: "Macro-erst",
  38351. height: math.unit(10, "km")
  38352. },
  38353. {
  38354. name: "Macro-Macro",
  38355. height: math.unit(100, "km")
  38356. },
  38357. ]
  38358. ))
  38359. characterMakers.push(() => makeCharacter(
  38360. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  38361. {
  38362. front: {
  38363. height: math.unit(11 + 9/12, "feet"),
  38364. weight: math.unit(935, "lb"),
  38365. name: "Front",
  38366. image: {
  38367. source: "./media/characters/kingsley/front.svg",
  38368. extra: 1803/1674,
  38369. bottom: 127/1930
  38370. }
  38371. },
  38372. frontNude: {
  38373. height: math.unit(11 + 9/12, "feet"),
  38374. weight: math.unit(935, "lb"),
  38375. name: "Front (Nude)",
  38376. image: {
  38377. source: "./media/characters/kingsley/front-nude.svg",
  38378. extra: 1803/1674,
  38379. bottom: 127/1930
  38380. }
  38381. },
  38382. },
  38383. [
  38384. {
  38385. name: "Normal",
  38386. height: math.unit(11 + 9/12, "feet"),
  38387. default: true
  38388. },
  38389. ]
  38390. ))
  38391. characterMakers.push(() => makeCharacter(
  38392. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  38393. {
  38394. side: {
  38395. height: math.unit(9, "feet"),
  38396. name: "Side",
  38397. image: {
  38398. source: "./media/characters/rymel/side.svg",
  38399. extra: 792/469,
  38400. bottom: 121/913
  38401. }
  38402. },
  38403. maw: {
  38404. height: math.unit(2.4, "meters"),
  38405. name: "Maw",
  38406. image: {
  38407. source: "./media/characters/rymel/maw.svg"
  38408. }
  38409. },
  38410. },
  38411. [
  38412. {
  38413. name: "House Drake",
  38414. height: math.unit(2, "feet")
  38415. },
  38416. {
  38417. name: "Reduced",
  38418. height: math.unit(4.5, "feet")
  38419. },
  38420. {
  38421. name: "Normal",
  38422. height: math.unit(9, "feet"),
  38423. default: true
  38424. },
  38425. ]
  38426. ))
  38427. characterMakers.push(() => makeCharacter(
  38428. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  38429. {
  38430. front: {
  38431. height: math.unit(1.74, "meters"),
  38432. weight: math.unit(55, "kg"),
  38433. name: "Front",
  38434. image: {
  38435. source: "./media/characters/rubus/front.svg",
  38436. extra: 1894/1742,
  38437. bottom: 44/1938
  38438. }
  38439. },
  38440. },
  38441. [
  38442. {
  38443. name: "Normal",
  38444. height: math.unit(1.74, "meters"),
  38445. default: true
  38446. },
  38447. ]
  38448. ))
  38449. characterMakers.push(() => makeCharacter(
  38450. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  38451. {
  38452. front: {
  38453. height: math.unit(5 + 2/12, "feet"),
  38454. weight: math.unit(112, "lb"),
  38455. name: "Front",
  38456. image: {
  38457. source: "./media/characters/cassie-kingston/front.svg",
  38458. extra: 1438/1390,
  38459. bottom: 47/1485
  38460. }
  38461. },
  38462. },
  38463. [
  38464. {
  38465. name: "Normal",
  38466. height: math.unit(5 + 2/12, "feet"),
  38467. default: true
  38468. },
  38469. {
  38470. name: "Macro",
  38471. height: math.unit(128, "feet")
  38472. },
  38473. {
  38474. name: "Megamacro",
  38475. height: math.unit(2.56, "miles")
  38476. },
  38477. ]
  38478. ))
  38479. characterMakers.push(() => makeCharacter(
  38480. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  38481. {
  38482. front: {
  38483. height: math.unit(7, "feet"),
  38484. name: "Front",
  38485. image: {
  38486. source: "./media/characters/fox/front.svg",
  38487. extra: 1798/1703,
  38488. bottom: 55/1853
  38489. }
  38490. },
  38491. back: {
  38492. height: math.unit(7, "feet"),
  38493. name: "Back",
  38494. image: {
  38495. source: "./media/characters/fox/back.svg",
  38496. extra: 1748/1649,
  38497. bottom: 32/1780
  38498. }
  38499. },
  38500. head: {
  38501. height: math.unit(1.95, "feet"),
  38502. name: "Head",
  38503. image: {
  38504. source: "./media/characters/fox/head.svg"
  38505. }
  38506. },
  38507. dick: {
  38508. height: math.unit(1.33, "feet"),
  38509. name: "Dick",
  38510. image: {
  38511. source: "./media/characters/fox/dick.svg"
  38512. }
  38513. },
  38514. foot: {
  38515. height: math.unit(1, "feet"),
  38516. name: "Foot",
  38517. image: {
  38518. source: "./media/characters/fox/foot.svg"
  38519. }
  38520. },
  38521. paw: {
  38522. height: math.unit(0.92, "feet"),
  38523. name: "Paw",
  38524. image: {
  38525. source: "./media/characters/fox/paw.svg"
  38526. }
  38527. },
  38528. },
  38529. [
  38530. {
  38531. name: "Small",
  38532. height: math.unit(3, "inches")
  38533. },
  38534. {
  38535. name: "\"Realistic\"",
  38536. height: math.unit(7, "feet")
  38537. },
  38538. {
  38539. name: "Normal",
  38540. height: math.unit(150, "feet"),
  38541. default: true
  38542. },
  38543. {
  38544. name: "BIG",
  38545. height: math.unit(1200, "feet")
  38546. },
  38547. {
  38548. name: "👀",
  38549. height: math.unit(5, "miles")
  38550. },
  38551. {
  38552. name: "👀👀👀",
  38553. height: math.unit(64, "miles")
  38554. },
  38555. ]
  38556. ))
  38557. characterMakers.push(() => makeCharacter(
  38558. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  38559. {
  38560. front: {
  38561. height: math.unit(625, "feet"),
  38562. name: "Front",
  38563. image: {
  38564. source: "./media/characters/asonja-rossa/front.svg",
  38565. extra: 1833/1686,
  38566. bottom: 24/1857
  38567. }
  38568. },
  38569. back: {
  38570. height: math.unit(625, "feet"),
  38571. name: "Back",
  38572. image: {
  38573. source: "./media/characters/asonja-rossa/back.svg",
  38574. extra: 1852/1753,
  38575. bottom: 26/1878
  38576. }
  38577. },
  38578. },
  38579. [
  38580. {
  38581. name: "Macro",
  38582. height: math.unit(625, "feet"),
  38583. default: true
  38584. },
  38585. ]
  38586. ))
  38587. characterMakers.push(() => makeCharacter(
  38588. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  38589. {
  38590. side: {
  38591. height: math.unit(8, "feet"),
  38592. name: "Side",
  38593. image: {
  38594. source: "./media/characters/rezukii/side.svg",
  38595. extra: 979/542,
  38596. bottom: 87/1066
  38597. }
  38598. },
  38599. sitting: {
  38600. height: math.unit(14.6, "feet"),
  38601. name: "Sitting",
  38602. image: {
  38603. source: "./media/characters/rezukii/sitting.svg",
  38604. extra: 1023/813,
  38605. bottom: 45/1068
  38606. }
  38607. },
  38608. },
  38609. [
  38610. {
  38611. name: "Tiny",
  38612. height: math.unit(2, "feet")
  38613. },
  38614. {
  38615. name: "Smol",
  38616. height: math.unit(4, "feet")
  38617. },
  38618. {
  38619. name: "Normal",
  38620. height: math.unit(8, "feet"),
  38621. default: true
  38622. },
  38623. {
  38624. name: "Big",
  38625. height: math.unit(12, "feet")
  38626. },
  38627. {
  38628. name: "Macro",
  38629. height: math.unit(30, "feet")
  38630. },
  38631. ]
  38632. ))
  38633. characterMakers.push(() => makeCharacter(
  38634. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  38635. {
  38636. front: {
  38637. height: math.unit(14, "feet"),
  38638. weight: math.unit(9.5, "tonnes"),
  38639. name: "Front",
  38640. image: {
  38641. source: "./media/characters/dawnheart/front.svg",
  38642. extra: 2792/2675,
  38643. bottom: 64/2856
  38644. }
  38645. },
  38646. },
  38647. [
  38648. {
  38649. name: "Normal",
  38650. height: math.unit(14, "feet"),
  38651. default: true
  38652. },
  38653. ]
  38654. ))
  38655. characterMakers.push(() => makeCharacter(
  38656. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  38657. {
  38658. front: {
  38659. height: math.unit(1.7, "m"),
  38660. name: "Front",
  38661. image: {
  38662. source: "./media/characters/gladi/front.svg",
  38663. extra: 1460/1362,
  38664. bottom: 19/1479
  38665. }
  38666. },
  38667. back: {
  38668. height: math.unit(1.7, "m"),
  38669. name: "Back",
  38670. image: {
  38671. source: "./media/characters/gladi/back.svg",
  38672. extra: 1459/1357,
  38673. bottom: 12/1471
  38674. }
  38675. },
  38676. feral: {
  38677. height: math.unit(2.05, "m"),
  38678. name: "Feral",
  38679. image: {
  38680. source: "./media/characters/gladi/feral.svg",
  38681. extra: 821/557,
  38682. bottom: 91/912
  38683. }
  38684. },
  38685. },
  38686. [
  38687. {
  38688. name: "Shortest",
  38689. height: math.unit(70, "cm")
  38690. },
  38691. {
  38692. name: "Normal",
  38693. height: math.unit(1.7, "m")
  38694. },
  38695. {
  38696. name: "Macro",
  38697. height: math.unit(10, "m"),
  38698. default: true
  38699. },
  38700. {
  38701. name: "Tallest",
  38702. height: math.unit(200, "m")
  38703. },
  38704. ]
  38705. ))
  38706. characterMakers.push(() => makeCharacter(
  38707. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  38708. {
  38709. front: {
  38710. height: math.unit(5 + 7/12, "feet"),
  38711. weight: math.unit(2, "tons"),
  38712. name: "Front",
  38713. image: {
  38714. source: "./media/characters/erdno/front.svg",
  38715. extra: 1234/1129,
  38716. bottom: 35/1269
  38717. }
  38718. },
  38719. angled: {
  38720. height: math.unit(5 + 7/12, "feet"),
  38721. weight: math.unit(2, "tons"),
  38722. name: "Angled",
  38723. image: {
  38724. source: "./media/characters/erdno/angled.svg",
  38725. extra: 1185/1139,
  38726. bottom: 36/1221
  38727. }
  38728. },
  38729. side: {
  38730. height: math.unit(5 + 7/12, "feet"),
  38731. weight: math.unit(2, "tons"),
  38732. name: "Side",
  38733. image: {
  38734. source: "./media/characters/erdno/side.svg",
  38735. extra: 1191/1144,
  38736. bottom: 40/1231
  38737. }
  38738. },
  38739. back: {
  38740. height: math.unit(5 + 7/12, "feet"),
  38741. weight: math.unit(2, "tons"),
  38742. name: "Back",
  38743. image: {
  38744. source: "./media/characters/erdno/back.svg",
  38745. extra: 1202/1146,
  38746. bottom: 17/1219
  38747. }
  38748. },
  38749. frontNsfw: {
  38750. height: math.unit(5 + 7/12, "feet"),
  38751. weight: math.unit(2, "tons"),
  38752. name: "Front (NSFW)",
  38753. image: {
  38754. source: "./media/characters/erdno/front-nsfw.svg",
  38755. extra: 1234/1129,
  38756. bottom: 35/1269
  38757. }
  38758. },
  38759. angledNsfw: {
  38760. height: math.unit(5 + 7/12, "feet"),
  38761. weight: math.unit(2, "tons"),
  38762. name: "Angled (NSFW)",
  38763. image: {
  38764. source: "./media/characters/erdno/angled-nsfw.svg",
  38765. extra: 1185/1139,
  38766. bottom: 36/1221
  38767. }
  38768. },
  38769. sideNsfw: {
  38770. height: math.unit(5 + 7/12, "feet"),
  38771. weight: math.unit(2, "tons"),
  38772. name: "Side (NSFW)",
  38773. image: {
  38774. source: "./media/characters/erdno/side-nsfw.svg",
  38775. extra: 1191/1144,
  38776. bottom: 40/1231
  38777. }
  38778. },
  38779. backNsfw: {
  38780. height: math.unit(5 + 7/12, "feet"),
  38781. weight: math.unit(2, "tons"),
  38782. name: "Back (NSFW)",
  38783. image: {
  38784. source: "./media/characters/erdno/back-nsfw.svg",
  38785. extra: 1202/1146,
  38786. bottom: 17/1219
  38787. }
  38788. },
  38789. frontHyper: {
  38790. height: math.unit(5 + 7/12, "feet"),
  38791. weight: math.unit(2, "tons"),
  38792. name: "Front (Hyper)",
  38793. image: {
  38794. source: "./media/characters/erdno/front-hyper.svg",
  38795. extra: 1298/1136,
  38796. bottom: 35/1333
  38797. }
  38798. },
  38799. },
  38800. [
  38801. {
  38802. name: "Normal",
  38803. height: math.unit(5 + 7/12, "feet"),
  38804. default: true
  38805. },
  38806. {
  38807. name: "Big",
  38808. height: math.unit(5.7, "meters")
  38809. },
  38810. {
  38811. name: "Macro",
  38812. height: math.unit(5.7, "kilometers")
  38813. },
  38814. {
  38815. name: "Megamacro",
  38816. height: math.unit(5.7, "earths")
  38817. },
  38818. ]
  38819. ))
  38820. characterMakers.push(() => makeCharacter(
  38821. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  38822. {
  38823. front: {
  38824. height: math.unit(5 + 10/12, "feet"),
  38825. weight: math.unit(150, "lb"),
  38826. name: "Front",
  38827. image: {
  38828. source: "./media/characters/jamie/front.svg",
  38829. extra: 1908/1768,
  38830. bottom: 19/1927
  38831. }
  38832. },
  38833. },
  38834. [
  38835. {
  38836. name: "Minimum",
  38837. height: math.unit(2, "cm")
  38838. },
  38839. {
  38840. name: "Micro",
  38841. height: math.unit(3, "inches")
  38842. },
  38843. {
  38844. name: "Normal",
  38845. height: math.unit(5 + 10/12, "feet"),
  38846. default: true
  38847. },
  38848. {
  38849. name: "Macro",
  38850. height: math.unit(150, "feet")
  38851. },
  38852. {
  38853. name: "Megamacro",
  38854. height: math.unit(10000, "m")
  38855. },
  38856. ]
  38857. ))
  38858. characterMakers.push(() => makeCharacter(
  38859. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  38860. {
  38861. front: {
  38862. height: math.unit(2, "meters"),
  38863. weight: math.unit(100, "kg"),
  38864. name: "Front",
  38865. image: {
  38866. source: "./media/characters/shiron/front.svg",
  38867. extra: 2103/1985,
  38868. bottom: 98/2201
  38869. }
  38870. },
  38871. back: {
  38872. height: math.unit(2, "meters"),
  38873. weight: math.unit(100, "kg"),
  38874. name: "Back",
  38875. image: {
  38876. source: "./media/characters/shiron/back.svg",
  38877. extra: 2110/2015,
  38878. bottom: 89/2199
  38879. }
  38880. },
  38881. hand: {
  38882. height: math.unit(0.96, "feet"),
  38883. name: "Hand",
  38884. image: {
  38885. source: "./media/characters/shiron/hand.svg"
  38886. }
  38887. },
  38888. foot: {
  38889. height: math.unit(1.464, "feet"),
  38890. name: "Foot",
  38891. image: {
  38892. source: "./media/characters/shiron/foot.svg"
  38893. }
  38894. },
  38895. },
  38896. [
  38897. {
  38898. name: "Normal",
  38899. height: math.unit(2, "meters")
  38900. },
  38901. {
  38902. name: "Macro",
  38903. height: math.unit(500, "meters"),
  38904. default: true
  38905. },
  38906. {
  38907. name: "Megamacro",
  38908. height: math.unit(20, "km")
  38909. },
  38910. ]
  38911. ))
  38912. characterMakers.push(() => makeCharacter(
  38913. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  38914. {
  38915. front: {
  38916. height: math.unit(6, "feet"),
  38917. name: "Front",
  38918. image: {
  38919. source: "./media/characters/sam/front.svg",
  38920. extra: 849/826,
  38921. bottom: 19/868
  38922. }
  38923. },
  38924. },
  38925. [
  38926. {
  38927. name: "Normal",
  38928. height: math.unit(6, "feet"),
  38929. default: true
  38930. },
  38931. ]
  38932. ))
  38933. characterMakers.push(() => makeCharacter(
  38934. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  38935. {
  38936. front: {
  38937. height: math.unit(8 + 4/12, "feet"),
  38938. weight: math.unit(122, "kg"),
  38939. name: "Front",
  38940. image: {
  38941. source: "./media/characters/namori-kurogawa/front.svg",
  38942. extra: 1894/1576,
  38943. bottom: 34/1928
  38944. }
  38945. },
  38946. },
  38947. [
  38948. {
  38949. name: "Normal",
  38950. height: math.unit(8 + 4/12, "feet"),
  38951. default: true
  38952. },
  38953. ]
  38954. ))
  38955. characterMakers.push(() => makeCharacter(
  38956. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  38957. {
  38958. front: {
  38959. height: math.unit(9, "feet"),
  38960. weight: math.unit(621, "lb"),
  38961. name: "Front",
  38962. image: {
  38963. source: "./media/characters/unmru/front.svg",
  38964. extra: 1853/1747,
  38965. bottom: 73/1926
  38966. }
  38967. },
  38968. side: {
  38969. height: math.unit(9, "feet"),
  38970. weight: math.unit(621, "lb"),
  38971. name: "Side",
  38972. image: {
  38973. source: "./media/characters/unmru/side.svg",
  38974. extra: 1781/1671,
  38975. bottom: 127/1908
  38976. }
  38977. },
  38978. back: {
  38979. height: math.unit(9, "feet"),
  38980. weight: math.unit(621, "lb"),
  38981. name: "Back",
  38982. image: {
  38983. source: "./media/characters/unmru/back.svg",
  38984. extra: 1894/1765,
  38985. bottom: 75/1969
  38986. }
  38987. },
  38988. dick: {
  38989. height: math.unit(3, "feet"),
  38990. weight: math.unit(35, "lb"),
  38991. name: "Dick",
  38992. image: {
  38993. source: "./media/characters/unmru/dick.svg"
  38994. }
  38995. },
  38996. },
  38997. [
  38998. {
  38999. name: "Normal",
  39000. height: math.unit(9, "feet")
  39001. },
  39002. {
  39003. name: "Natural",
  39004. height: math.unit(27, "feet"),
  39005. default: true
  39006. },
  39007. {
  39008. name: "Giant",
  39009. height: math.unit(90, "feet")
  39010. },
  39011. {
  39012. name: "Kaiju",
  39013. height: math.unit(270, "feet")
  39014. },
  39015. {
  39016. name: "Macro",
  39017. height: math.unit(900, "feet")
  39018. },
  39019. {
  39020. name: "Macro+",
  39021. height: math.unit(2700, "feet")
  39022. },
  39023. {
  39024. name: "Megamacro",
  39025. height: math.unit(9000, "feet")
  39026. },
  39027. {
  39028. name: "City-Crushing",
  39029. height: math.unit(27000, "feet")
  39030. },
  39031. {
  39032. name: "Mountain-Mashing",
  39033. height: math.unit(90000, "feet")
  39034. },
  39035. {
  39036. name: "Earth-Eclipsing",
  39037. height: math.unit(2.7e8, "feet")
  39038. },
  39039. {
  39040. name: "Sol-Swallowing",
  39041. height: math.unit(9e10, "feet")
  39042. },
  39043. {
  39044. name: "Majoris-Munching",
  39045. height: math.unit(2.7e13, "feet")
  39046. },
  39047. ]
  39048. ))
  39049. characterMakers.push(() => makeCharacter(
  39050. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  39051. {
  39052. front: {
  39053. height: math.unit(1, "inch"),
  39054. name: "Front",
  39055. image: {
  39056. source: "./media/characters/squeaks-mouse/front.svg",
  39057. extra: 352/308,
  39058. bottom: 25/377
  39059. }
  39060. },
  39061. },
  39062. [
  39063. {
  39064. name: "Micro",
  39065. height: math.unit(1, "inch"),
  39066. default: true
  39067. },
  39068. ]
  39069. ))
  39070. characterMakers.push(() => makeCharacter(
  39071. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  39072. {
  39073. side: {
  39074. height: math.unit(35, "feet"),
  39075. name: "Side",
  39076. image: {
  39077. source: "./media/characters/sayko/side.svg",
  39078. extra: 1697/1021,
  39079. bottom: 82/1779
  39080. }
  39081. },
  39082. head: {
  39083. height: math.unit(16, "feet"),
  39084. name: "Head",
  39085. image: {
  39086. source: "./media/characters/sayko/head.svg"
  39087. }
  39088. },
  39089. forepaw: {
  39090. height: math.unit(7.85, "feet"),
  39091. name: "Forepaw",
  39092. image: {
  39093. source: "./media/characters/sayko/forepaw.svg"
  39094. }
  39095. },
  39096. hindpaw: {
  39097. height: math.unit(8.8, "feet"),
  39098. name: "Hindpaw",
  39099. image: {
  39100. source: "./media/characters/sayko/hindpaw.svg"
  39101. }
  39102. },
  39103. },
  39104. [
  39105. {
  39106. name: "Normal",
  39107. height: math.unit(35, "feet"),
  39108. default: true
  39109. },
  39110. {
  39111. name: "Colossus",
  39112. height: math.unit(100, "meters")
  39113. },
  39114. {
  39115. name: "\"Small\" Deity",
  39116. height: math.unit(1, "km")
  39117. },
  39118. {
  39119. name: "\"Large\" Deity",
  39120. height: math.unit(15, "km")
  39121. },
  39122. ]
  39123. ))
  39124. characterMakers.push(() => makeCharacter(
  39125. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  39126. {
  39127. front: {
  39128. height: math.unit(6, "feet"),
  39129. weight: math.unit(250, "lb"),
  39130. name: "Front",
  39131. image: {
  39132. source: "./media/characters/mukiro/front.svg",
  39133. extra: 1368/1310,
  39134. bottom: 34/1402
  39135. }
  39136. },
  39137. },
  39138. [
  39139. {
  39140. name: "Normal",
  39141. height: math.unit(6, "feet"),
  39142. default: true
  39143. },
  39144. ]
  39145. ))
  39146. characterMakers.push(() => makeCharacter(
  39147. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  39148. {
  39149. front: {
  39150. height: math.unit(12 + 4/12, "feet"),
  39151. name: "Front",
  39152. image: {
  39153. source: "./media/characters/zeph-the-tiger-god/front.svg",
  39154. extra: 1346/1311,
  39155. bottom: 65/1411
  39156. }
  39157. },
  39158. },
  39159. [
  39160. {
  39161. name: "Base",
  39162. height: math.unit(12 + 4/12, "feet"),
  39163. default: true
  39164. },
  39165. {
  39166. name: "Macro",
  39167. height: math.unit(150, "feet")
  39168. },
  39169. {
  39170. name: "Mega",
  39171. height: math.unit(2, "miles")
  39172. },
  39173. {
  39174. name: "Demi God",
  39175. height: math.unit(4, "AU")
  39176. },
  39177. {
  39178. name: "God Size",
  39179. height: math.unit(1, "universe")
  39180. },
  39181. ]
  39182. ))
  39183. characterMakers.push(() => makeCharacter(
  39184. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  39185. {
  39186. front: {
  39187. height: math.unit(3 + 3/12, "feet"),
  39188. weight: math.unit(88, "lb"),
  39189. name: "Front",
  39190. image: {
  39191. source: "./media/characters/trey/front.svg",
  39192. extra: 1815/1509,
  39193. bottom: 60/1875
  39194. }
  39195. },
  39196. },
  39197. [
  39198. {
  39199. name: "Normal",
  39200. height: math.unit(3 + 3/12, "feet"),
  39201. default: true
  39202. },
  39203. ]
  39204. ))
  39205. characterMakers.push(() => makeCharacter(
  39206. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  39207. {
  39208. front: {
  39209. height: math.unit(4, "meters"),
  39210. name: "Front",
  39211. image: {
  39212. source: "./media/characters/adelonda/front.svg",
  39213. extra: 1077/982,
  39214. bottom: 39/1116
  39215. }
  39216. },
  39217. back: {
  39218. height: math.unit(4, "meters"),
  39219. name: "Back",
  39220. image: {
  39221. source: "./media/characters/adelonda/back.svg",
  39222. extra: 1105/1003,
  39223. bottom: 25/1130
  39224. }
  39225. },
  39226. feral: {
  39227. height: math.unit(40/1.5, "meters"),
  39228. name: "Feral",
  39229. image: {
  39230. source: "./media/characters/adelonda/feral.svg",
  39231. extra: 597/271,
  39232. bottom: 387/984
  39233. }
  39234. },
  39235. },
  39236. [
  39237. {
  39238. name: "Normal",
  39239. height: math.unit(4, "meters"),
  39240. default: true
  39241. },
  39242. ]
  39243. ))
  39244. characterMakers.push(() => makeCharacter(
  39245. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  39246. {
  39247. front: {
  39248. height: math.unit(8 + 4/12, "feet"),
  39249. weight: math.unit(670, "lb"),
  39250. name: "Front",
  39251. image: {
  39252. source: "./media/characters/acadiel/front.svg",
  39253. extra: 1901/1595,
  39254. bottom: 142/2043
  39255. }
  39256. },
  39257. },
  39258. [
  39259. {
  39260. name: "Normal",
  39261. height: math.unit(8 + 4/12, "feet"),
  39262. default: true
  39263. },
  39264. {
  39265. name: "Macro",
  39266. height: math.unit(200, "feet")
  39267. },
  39268. ]
  39269. ))
  39270. characterMakers.push(() => makeCharacter(
  39271. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  39272. {
  39273. front: {
  39274. height: math.unit(6 + 2/12, "feet"),
  39275. weight: math.unit(185, "lb"),
  39276. name: "Front",
  39277. image: {
  39278. source: "./media/characters/kayne-ein/front.svg",
  39279. extra: 1780/1560,
  39280. bottom: 81/1861
  39281. }
  39282. },
  39283. },
  39284. [
  39285. {
  39286. name: "Normal",
  39287. height: math.unit(6 + 2/12, "feet"),
  39288. default: true
  39289. },
  39290. {
  39291. name: "Transformation Stage",
  39292. height: math.unit(15, "feet")
  39293. },
  39294. {
  39295. name: "Macro",
  39296. height: math.unit(150, "feet")
  39297. },
  39298. {
  39299. name: "Earth's Shadow",
  39300. height: math.unit(6200, "miles")
  39301. },
  39302. {
  39303. name: "Universal Demon",
  39304. height: math.unit(28e9, "parsecs")
  39305. },
  39306. {
  39307. name: "Multiverse God",
  39308. height: math.unit(3, "multiverses")
  39309. },
  39310. ]
  39311. ))
  39312. characterMakers.push(() => makeCharacter(
  39313. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  39314. {
  39315. front: {
  39316. height: math.unit(5 + 5/12, "feet"),
  39317. name: "Front",
  39318. image: {
  39319. source: "./media/characters/fawn/front.svg",
  39320. extra: 1873/1731,
  39321. bottom: 95/1968
  39322. }
  39323. },
  39324. back: {
  39325. height: math.unit(5 + 5/12, "feet"),
  39326. name: "Back",
  39327. image: {
  39328. source: "./media/characters/fawn/back.svg",
  39329. extra: 1813/1700,
  39330. bottom: 14/1827
  39331. }
  39332. },
  39333. hoof: {
  39334. height: math.unit(1.45, "feet"),
  39335. name: "Hoof",
  39336. image: {
  39337. source: "./media/characters/fawn/hoof.svg"
  39338. }
  39339. },
  39340. },
  39341. [
  39342. {
  39343. name: "Normal",
  39344. height: math.unit(5 + 5/12, "feet"),
  39345. default: true
  39346. },
  39347. ]
  39348. ))
  39349. characterMakers.push(() => makeCharacter(
  39350. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  39351. {
  39352. front: {
  39353. height: math.unit(2 + 5/12, "feet"),
  39354. name: "Front",
  39355. image: {
  39356. source: "./media/characters/orion/front.svg",
  39357. extra: 1366/1304,
  39358. bottom: 43/1409
  39359. }
  39360. },
  39361. paw: {
  39362. height: math.unit(0.52, "feet"),
  39363. name: "Paw",
  39364. image: {
  39365. source: "./media/characters/orion/paw.svg"
  39366. }
  39367. },
  39368. },
  39369. [
  39370. {
  39371. name: "Normal",
  39372. height: math.unit(2 + 5/12, "feet"),
  39373. default: true
  39374. },
  39375. ]
  39376. ))
  39377. characterMakers.push(() => makeCharacter(
  39378. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  39379. {
  39380. front: {
  39381. height: math.unit(5 + 10/12, "feet"),
  39382. name: "Front",
  39383. image: {
  39384. source: "./media/characters/vera/front.svg",
  39385. extra: 1680/1575,
  39386. bottom: 49/1729
  39387. }
  39388. },
  39389. back: {
  39390. height: math.unit(5 + 10/12, "feet"),
  39391. name: "Back",
  39392. image: {
  39393. source: "./media/characters/vera/back.svg",
  39394. extra: 1700/1588,
  39395. bottom: 18/1718
  39396. }
  39397. },
  39398. arcanine: {
  39399. height: math.unit(6 + 8/12, "feet"),
  39400. name: "Arcanine",
  39401. image: {
  39402. source: "./media/characters/vera/arcanine.svg",
  39403. extra: 1590/1511,
  39404. bottom: 71/1661
  39405. }
  39406. },
  39407. maw: {
  39408. height: math.unit(0.82, "feet"),
  39409. name: "Maw",
  39410. image: {
  39411. source: "./media/characters/vera/maw.svg"
  39412. }
  39413. },
  39414. mawArcanine: {
  39415. height: math.unit(0.97, "feet"),
  39416. name: "Maw (Arcanine)",
  39417. image: {
  39418. source: "./media/characters/vera/maw-arcanine.svg"
  39419. }
  39420. },
  39421. paw: {
  39422. height: math.unit(0.75, "feet"),
  39423. name: "Paw",
  39424. image: {
  39425. source: "./media/characters/vera/paw.svg"
  39426. }
  39427. },
  39428. pawprint: {
  39429. height: math.unit(0.52, "feet"),
  39430. name: "Pawprint",
  39431. image: {
  39432. source: "./media/characters/vera/pawprint.svg"
  39433. }
  39434. },
  39435. },
  39436. [
  39437. {
  39438. name: "Normal",
  39439. height: math.unit(5 + 10/12, "feet"),
  39440. default: true
  39441. },
  39442. {
  39443. name: "Macro",
  39444. height: math.unit(75, "feet")
  39445. },
  39446. ]
  39447. ))
  39448. characterMakers.push(() => makeCharacter(
  39449. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  39450. {
  39451. front: {
  39452. height: math.unit(4, "feet"),
  39453. weight: math.unit(40, "lb"),
  39454. name: "Front",
  39455. image: {
  39456. source: "./media/characters/orvan-rabbit/front.svg",
  39457. extra: 1896/1642,
  39458. bottom: 29/1925
  39459. }
  39460. },
  39461. },
  39462. [
  39463. {
  39464. name: "Normal",
  39465. height: math.unit(4, "feet"),
  39466. default: true
  39467. },
  39468. ]
  39469. ))
  39470. characterMakers.push(() => makeCharacter(
  39471. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  39472. {
  39473. front: {
  39474. height: math.unit(6, "feet"),
  39475. weight: math.unit(168, "lb"),
  39476. name: "Front",
  39477. image: {
  39478. source: "./media/characters/lisa/front.svg",
  39479. extra: 2065/1867,
  39480. bottom: 46/2111
  39481. }
  39482. },
  39483. back: {
  39484. height: math.unit(6, "feet"),
  39485. weight: math.unit(168, "lb"),
  39486. name: "Back",
  39487. image: {
  39488. source: "./media/characters/lisa/back.svg",
  39489. extra: 1982/1838,
  39490. bottom: 29/2011
  39491. }
  39492. },
  39493. maw: {
  39494. height: math.unit(0.81, "feet"),
  39495. name: "Maw",
  39496. image: {
  39497. source: "./media/characters/lisa/maw.svg"
  39498. }
  39499. },
  39500. paw: {
  39501. height: math.unit(0.9, "feet"),
  39502. name: "Paw",
  39503. image: {
  39504. source: "./media/characters/lisa/paw.svg"
  39505. }
  39506. },
  39507. caribousune: {
  39508. height: math.unit(7 + 2/12, "feet"),
  39509. weight: math.unit(268, "lb"),
  39510. name: "Caribousune",
  39511. image: {
  39512. source: "./media/characters/lisa/caribousune.svg",
  39513. extra: 1843/1633,
  39514. bottom: 29/1872
  39515. }
  39516. },
  39517. frontCaribousune: {
  39518. height: math.unit(7 + 2/12, "feet"),
  39519. weight: math.unit(268, "lb"),
  39520. name: "Front (Caribousune)",
  39521. image: {
  39522. source: "./media/characters/lisa/front-caribousune.svg",
  39523. extra: 1818/1638,
  39524. bottom: 52/1870
  39525. }
  39526. },
  39527. sideCaribousune: {
  39528. height: math.unit(7 + 2/12, "feet"),
  39529. weight: math.unit(268, "lb"),
  39530. name: "Side (Caribousune)",
  39531. image: {
  39532. source: "./media/characters/lisa/side-caribousune.svg",
  39533. extra: 1851/1635,
  39534. bottom: 16/1867
  39535. }
  39536. },
  39537. backCaribousune: {
  39538. height: math.unit(7 + 2/12, "feet"),
  39539. weight: math.unit(268, "lb"),
  39540. name: "Back (Caribousune)",
  39541. image: {
  39542. source: "./media/characters/lisa/back-caribousune.svg",
  39543. extra: 1801/1604,
  39544. bottom: 44/1845
  39545. }
  39546. },
  39547. caribou: {
  39548. height: math.unit(7 + 2/12, "feet"),
  39549. weight: math.unit(268, "lb"),
  39550. name: "Caribou",
  39551. image: {
  39552. source: "./media/characters/lisa/caribou.svg",
  39553. extra: 1843/1633,
  39554. bottom: 29/1872
  39555. }
  39556. },
  39557. frontCaribou: {
  39558. height: math.unit(7 + 2/12, "feet"),
  39559. weight: math.unit(268, "lb"),
  39560. name: "Front (Caribou)",
  39561. image: {
  39562. source: "./media/characters/lisa/front-caribou.svg",
  39563. extra: 1818/1638,
  39564. bottom: 52/1870
  39565. }
  39566. },
  39567. sideCaribou: {
  39568. height: math.unit(7 + 2/12, "feet"),
  39569. weight: math.unit(268, "lb"),
  39570. name: "Side (Caribou)",
  39571. image: {
  39572. source: "./media/characters/lisa/side-caribou.svg",
  39573. extra: 1851/1635,
  39574. bottom: 16/1867
  39575. }
  39576. },
  39577. backCaribou: {
  39578. height: math.unit(7 + 2/12, "feet"),
  39579. weight: math.unit(268, "lb"),
  39580. name: "Back (Caribou)",
  39581. image: {
  39582. source: "./media/characters/lisa/back-caribou.svg",
  39583. extra: 1801/1604,
  39584. bottom: 44/1845
  39585. }
  39586. },
  39587. mawCaribou: {
  39588. height: math.unit(1.45, "feet"),
  39589. name: "Maw (Caribou)",
  39590. image: {
  39591. source: "./media/characters/lisa/maw-caribou.svg"
  39592. }
  39593. },
  39594. mawCaribousune: {
  39595. height: math.unit(1.45, "feet"),
  39596. name: "Maw (Caribousune)",
  39597. image: {
  39598. source: "./media/characters/lisa/maw-caribousune.svg"
  39599. }
  39600. },
  39601. pawCaribousune: {
  39602. height: math.unit(1.61, "feet"),
  39603. name: "Paw (Caribou)",
  39604. image: {
  39605. source: "./media/characters/lisa/paw-caribousune.svg"
  39606. }
  39607. },
  39608. },
  39609. [
  39610. {
  39611. name: "Normal",
  39612. height: math.unit(6, "feet")
  39613. },
  39614. {
  39615. name: "God Size",
  39616. height: math.unit(72, "feet"),
  39617. default: true
  39618. },
  39619. {
  39620. name: "Towering",
  39621. height: math.unit(288, "feet")
  39622. },
  39623. {
  39624. name: "City Size",
  39625. height: math.unit(48384, "feet")
  39626. },
  39627. {
  39628. name: "Continental",
  39629. height: math.unit(4200, "miles")
  39630. },
  39631. {
  39632. name: "Planet Eater",
  39633. height: math.unit(42, "earths")
  39634. },
  39635. {
  39636. name: "Star Swallower",
  39637. height: math.unit(42, "solarradii")
  39638. },
  39639. {
  39640. name: "System Swallower",
  39641. height: math.unit(84000, "AU")
  39642. },
  39643. {
  39644. name: "Galaxy Gobbler",
  39645. height: math.unit(42, "galaxies")
  39646. },
  39647. {
  39648. name: "Universe Devourer",
  39649. height: math.unit(42, "universes")
  39650. },
  39651. {
  39652. name: "Multiverse Muncher",
  39653. height: math.unit(42, "multiverses")
  39654. },
  39655. ]
  39656. ))
  39657. characterMakers.push(() => makeCharacter(
  39658. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  39659. {
  39660. front: {
  39661. height: math.unit(36, "feet"),
  39662. name: "Front",
  39663. image: {
  39664. source: "./media/characters/shadow-rat/front.svg",
  39665. extra: 1845/1758,
  39666. bottom: 83/1928
  39667. }
  39668. },
  39669. },
  39670. [
  39671. {
  39672. name: "Macro",
  39673. height: math.unit(36, "feet"),
  39674. default: true
  39675. },
  39676. ]
  39677. ))
  39678. characterMakers.push(() => makeCharacter(
  39679. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  39680. {
  39681. side: {
  39682. height: math.unit(8, "feet"),
  39683. weight: math.unit(2630, "lb"),
  39684. name: "Side",
  39685. image: {
  39686. source: "./media/characters/torallia/side.svg",
  39687. extra: 2164/2021,
  39688. bottom: 371/2535
  39689. }
  39690. },
  39691. },
  39692. [
  39693. {
  39694. name: "Mortal Interaction",
  39695. height: math.unit(8, "feet")
  39696. },
  39697. {
  39698. name: "Natural",
  39699. height: math.unit(24, "feet"),
  39700. default: true
  39701. },
  39702. {
  39703. name: "Giant",
  39704. height: math.unit(80, "feet")
  39705. },
  39706. {
  39707. name: "Kaiju",
  39708. height: math.unit(240, "feet")
  39709. },
  39710. {
  39711. name: "Macro",
  39712. height: math.unit(800, "feet")
  39713. },
  39714. {
  39715. name: "Macro+",
  39716. height: math.unit(2400, "feet")
  39717. },
  39718. {
  39719. name: "Macro++",
  39720. height: math.unit(8000, "feet")
  39721. },
  39722. {
  39723. name: "City-Crushing",
  39724. height: math.unit(24000, "feet")
  39725. },
  39726. {
  39727. name: "Mountain-Mashing",
  39728. height: math.unit(80000, "feet")
  39729. },
  39730. {
  39731. name: "District Demolisher",
  39732. height: math.unit(240000, "feet")
  39733. },
  39734. {
  39735. name: "Tri-County Terror",
  39736. height: math.unit(800000, "feet")
  39737. },
  39738. {
  39739. name: "State Smasher",
  39740. height: math.unit(2.4e6, "feet")
  39741. },
  39742. {
  39743. name: "Nation Nemesis",
  39744. height: math.unit(8e6, "feet")
  39745. },
  39746. {
  39747. name: "Continent Cracker",
  39748. height: math.unit(2.4e7, "feet")
  39749. },
  39750. {
  39751. name: "Planet-Pillaging",
  39752. height: math.unit(8e7, "feet")
  39753. },
  39754. {
  39755. name: "Earth-Eclipsing",
  39756. height: math.unit(2.4e8, "feet")
  39757. },
  39758. {
  39759. name: "Jovian-Jostling",
  39760. height: math.unit(8e8, "feet")
  39761. },
  39762. {
  39763. name: "Gas Giant Gulper",
  39764. height: math.unit(2.4e9, "feet")
  39765. },
  39766. {
  39767. name: "Astral Annihilator",
  39768. height: math.unit(8e9, "feet")
  39769. },
  39770. {
  39771. name: "Celestial Conqueror",
  39772. height: math.unit(2.4e10, "feet")
  39773. },
  39774. {
  39775. name: "Sol-Swallowing",
  39776. height: math.unit(8e10, "feet")
  39777. },
  39778. {
  39779. name: "Hunter of the Heavens",
  39780. height: math.unit(2.4e13, "feet")
  39781. },
  39782. ]
  39783. ))
  39784. characterMakers.push(() => makeCharacter(
  39785. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  39786. {
  39787. front: {
  39788. height: math.unit(6 + 8/12, "feet"),
  39789. weight: math.unit(250, "kilograms"),
  39790. volume: math.unit(28, "liters"),
  39791. name: "Front",
  39792. image: {
  39793. source: "./media/characters/rebecca-pawlson/front.svg",
  39794. extra: 1737/1596,
  39795. bottom: 107/1844
  39796. }
  39797. },
  39798. back: {
  39799. height: math.unit(6 + 8/12, "feet"),
  39800. weight: math.unit(250, "kilograms"),
  39801. volume: math.unit(28, "liters"),
  39802. name: "Back",
  39803. image: {
  39804. source: "./media/characters/rebecca-pawlson/back.svg",
  39805. extra: 1702/1523,
  39806. bottom: 86/1788
  39807. }
  39808. },
  39809. },
  39810. [
  39811. {
  39812. name: "Normal",
  39813. height: math.unit(6 + 8/12, "feet")
  39814. },
  39815. {
  39816. name: "Mini Macro",
  39817. height: math.unit(10, "feet"),
  39818. default: true
  39819. },
  39820. {
  39821. name: "Macro",
  39822. height: math.unit(100, "feet")
  39823. },
  39824. {
  39825. name: "Mega Macro",
  39826. height: math.unit(2500, "feet")
  39827. },
  39828. {
  39829. name: "Giga Macro",
  39830. height: math.unit(50, "miles")
  39831. },
  39832. ]
  39833. ))
  39834. characterMakers.push(() => makeCharacter(
  39835. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  39836. {
  39837. front: {
  39838. height: math.unit(7 + 6/12, "feet"),
  39839. weight: math.unit(600, "lb"),
  39840. name: "Front",
  39841. image: {
  39842. source: "./media/characters/moxie-nova/front.svg",
  39843. extra: 1734/1652,
  39844. bottom: 41/1775
  39845. }
  39846. },
  39847. },
  39848. [
  39849. {
  39850. name: "Normal",
  39851. height: math.unit(7 + 6/12, "feet"),
  39852. default: true
  39853. },
  39854. ]
  39855. ))
  39856. characterMakers.push(() => makeCharacter(
  39857. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  39858. {
  39859. goat: {
  39860. height: math.unit(4, "feet"),
  39861. weight: math.unit(180, "lb"),
  39862. name: "Goat",
  39863. image: {
  39864. source: "./media/characters/tiffany/goat.svg",
  39865. extra: 1845/1595,
  39866. bottom: 106/1951
  39867. }
  39868. },
  39869. front: {
  39870. height: math.unit(5, "feet"),
  39871. weight: math.unit(150, "lb"),
  39872. name: "Foxcoon",
  39873. image: {
  39874. source: "./media/characters/tiffany/foxcoon.svg",
  39875. extra: 1941/1845,
  39876. bottom: 58/1999
  39877. }
  39878. },
  39879. },
  39880. [
  39881. {
  39882. name: "Normal",
  39883. height: math.unit(5, "feet"),
  39884. default: true
  39885. },
  39886. ]
  39887. ))
  39888. characterMakers.push(() => makeCharacter(
  39889. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  39890. {
  39891. front: {
  39892. height: math.unit(8, "feet"),
  39893. weight: math.unit(300, "lb"),
  39894. name: "Front",
  39895. image: {
  39896. source: "./media/characters/raxinath/front.svg",
  39897. extra: 1407/1309,
  39898. bottom: 39/1446
  39899. }
  39900. },
  39901. back: {
  39902. height: math.unit(8, "feet"),
  39903. weight: math.unit(300, "lb"),
  39904. name: "Back",
  39905. image: {
  39906. source: "./media/characters/raxinath/back.svg",
  39907. extra: 1405/1315,
  39908. bottom: 9/1414
  39909. }
  39910. },
  39911. },
  39912. [
  39913. {
  39914. name: "Speck",
  39915. height: math.unit(0.5, "nm")
  39916. },
  39917. {
  39918. name: "Micro",
  39919. height: math.unit(3, "inches")
  39920. },
  39921. {
  39922. name: "Kobold",
  39923. height: math.unit(3, "feet")
  39924. },
  39925. {
  39926. name: "Normal",
  39927. height: math.unit(8, "feet"),
  39928. default: true
  39929. },
  39930. {
  39931. name: "Giant",
  39932. height: math.unit(50, "feet")
  39933. },
  39934. {
  39935. name: "Macro",
  39936. height: math.unit(1000, "feet")
  39937. },
  39938. {
  39939. name: "Megamacro",
  39940. height: math.unit(1, "mile")
  39941. },
  39942. ]
  39943. ))
  39944. characterMakers.push(() => makeCharacter(
  39945. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  39946. {
  39947. front: {
  39948. height: math.unit(10, "feet"),
  39949. weight: math.unit(1442, "lb"),
  39950. name: "Front",
  39951. image: {
  39952. source: "./media/characters/mal-dragon/front.svg",
  39953. extra: 1515/1444,
  39954. bottom: 113/1628
  39955. }
  39956. },
  39957. back: {
  39958. height: math.unit(10, "feet"),
  39959. weight: math.unit(1442, "lb"),
  39960. name: "Back",
  39961. image: {
  39962. source: "./media/characters/mal-dragon/back.svg",
  39963. extra: 1527/1434,
  39964. bottom: 25/1552
  39965. }
  39966. },
  39967. },
  39968. [
  39969. {
  39970. name: "Mortal Interaction",
  39971. height: math.unit(10, "feet"),
  39972. default: true
  39973. },
  39974. {
  39975. name: "Large",
  39976. height: math.unit(30, "feet")
  39977. },
  39978. {
  39979. name: "Kaiju",
  39980. height: math.unit(300, "feet")
  39981. },
  39982. {
  39983. name: "Megamacro",
  39984. height: math.unit(10000, "feet")
  39985. },
  39986. {
  39987. name: "Continent Cracker",
  39988. height: math.unit(30000000, "feet")
  39989. },
  39990. {
  39991. name: "Sol-Swallowing",
  39992. height: math.unit(1e11, "feet")
  39993. },
  39994. {
  39995. name: "Light Universal",
  39996. height: math.unit(5, "universes")
  39997. },
  39998. {
  39999. name: "Universe Atoms",
  40000. height: math.unit(1.829e9, "universes")
  40001. },
  40002. {
  40003. name: "Light Multiversal",
  40004. height: math.unit(5, "multiverses")
  40005. },
  40006. {
  40007. name: "Multiverse Atoms",
  40008. height: math.unit(1.829e9, "multiverses")
  40009. },
  40010. {
  40011. name: "Fabric of Time",
  40012. height: math.unit(1e262, "multiverses")
  40013. },
  40014. ]
  40015. ))
  40016. characterMakers.push(() => makeCharacter(
  40017. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  40018. {
  40019. front: {
  40020. height: math.unit(9, "feet"),
  40021. weight: math.unit(1050, "lb"),
  40022. name: "Front",
  40023. image: {
  40024. source: "./media/characters/tabitha/front.svg",
  40025. extra: 2083/1994,
  40026. bottom: 68/2151
  40027. }
  40028. },
  40029. },
  40030. [
  40031. {
  40032. name: "Baseline",
  40033. height: math.unit(9, "feet"),
  40034. default: true
  40035. },
  40036. {
  40037. name: "Giant",
  40038. height: math.unit(90, "feet")
  40039. },
  40040. {
  40041. name: "Macro",
  40042. height: math.unit(900, "feet")
  40043. },
  40044. {
  40045. name: "Megamacro",
  40046. height: math.unit(9000, "feet")
  40047. },
  40048. {
  40049. name: "City-Crushing",
  40050. height: math.unit(27000, "feet")
  40051. },
  40052. {
  40053. name: "Mountain-Mashing",
  40054. height: math.unit(90000, "feet")
  40055. },
  40056. {
  40057. name: "Nation Nemesis",
  40058. height: math.unit(9e6, "feet")
  40059. },
  40060. {
  40061. name: "Continent Cracker",
  40062. height: math.unit(27e6, "feet")
  40063. },
  40064. {
  40065. name: "Earth-Eclipsing",
  40066. height: math.unit(2.7e8, "feet")
  40067. },
  40068. {
  40069. name: "Gas Giant Gulper",
  40070. height: math.unit(2.7e9, "feet")
  40071. },
  40072. {
  40073. name: "Sol-Swallowing",
  40074. height: math.unit(9e10, "feet")
  40075. },
  40076. {
  40077. name: "Galaxy Gulper",
  40078. height: math.unit(9, "galaxies")
  40079. },
  40080. {
  40081. name: "Cosmos Churner",
  40082. height: math.unit(9, "universes")
  40083. },
  40084. ]
  40085. ))
  40086. characterMakers.push(() => makeCharacter(
  40087. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  40088. {
  40089. front: {
  40090. height: math.unit(160, "cm"),
  40091. weight: math.unit(55, "kg"),
  40092. name: "Front",
  40093. image: {
  40094. source: "./media/characters/tow/front.svg",
  40095. extra: 1751/1722,
  40096. bottom: 74/1825
  40097. }
  40098. },
  40099. },
  40100. [
  40101. {
  40102. name: "Norm",
  40103. height: math.unit(160, "cm")
  40104. },
  40105. {
  40106. name: "Casual",
  40107. height: math.unit(3200, "m"),
  40108. default: true
  40109. },
  40110. {
  40111. name: "Show-Off",
  40112. height: math.unit(160, "km")
  40113. },
  40114. ]
  40115. ))
  40116. characterMakers.push(() => makeCharacter(
  40117. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  40118. {
  40119. front: {
  40120. height: math.unit(7 + 11/12, "feet"),
  40121. weight: math.unit(342.8, "lb"),
  40122. name: "Front",
  40123. image: {
  40124. source: "./media/characters/vivian-orca-dragon/front.svg",
  40125. extra: 1890/1865,
  40126. bottom: 28/1918
  40127. }
  40128. },
  40129. },
  40130. [
  40131. {
  40132. name: "Micro",
  40133. height: math.unit(5, "inches")
  40134. },
  40135. {
  40136. name: "Normal",
  40137. height: math.unit(7 + 11/12, "feet"),
  40138. default: true
  40139. },
  40140. {
  40141. name: "Macro",
  40142. height: math.unit(395 + 7/12, "feet")
  40143. },
  40144. ]
  40145. ))
  40146. characterMakers.push(() => makeCharacter(
  40147. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  40148. {
  40149. side: {
  40150. height: math.unit(10, "feet"),
  40151. weight: math.unit(1442, "lb"),
  40152. name: "Side",
  40153. image: {
  40154. source: "./media/characters/lotherakon/side.svg",
  40155. extra: 1604/1497,
  40156. bottom: 89/1693
  40157. }
  40158. },
  40159. },
  40160. [
  40161. {
  40162. name: "Mortal Interaction",
  40163. height: math.unit(10, "feet")
  40164. },
  40165. {
  40166. name: "Large",
  40167. height: math.unit(30, "feet"),
  40168. default: true
  40169. },
  40170. {
  40171. name: "Giant",
  40172. height: math.unit(100, "feet")
  40173. },
  40174. {
  40175. name: "Kaiju",
  40176. height: math.unit(300, "feet")
  40177. },
  40178. {
  40179. name: "Macro",
  40180. height: math.unit(1000, "feet")
  40181. },
  40182. {
  40183. name: "Macro+",
  40184. height: math.unit(3000, "feet")
  40185. },
  40186. {
  40187. name: "Megamacro",
  40188. height: math.unit(10000, "feet")
  40189. },
  40190. {
  40191. name: "City-Crushing",
  40192. height: math.unit(30000, "feet")
  40193. },
  40194. {
  40195. name: "Continent Cracker",
  40196. height: math.unit(30e6, "feet")
  40197. },
  40198. {
  40199. name: "Earth Eclipsing",
  40200. height: math.unit(3e8, "feet")
  40201. },
  40202. {
  40203. name: "Gas Giant Gulper",
  40204. height: math.unit(3e9, "feet")
  40205. },
  40206. {
  40207. name: "Sol-Swallowing",
  40208. height: math.unit(1e11, "feet")
  40209. },
  40210. {
  40211. name: "System Swallower",
  40212. height: math.unit(3e14, "feet")
  40213. },
  40214. {
  40215. name: "Galaxy Gulper",
  40216. height: math.unit(10, "galaxies")
  40217. },
  40218. {
  40219. name: "Light Universal",
  40220. height: math.unit(5, "universes")
  40221. },
  40222. {
  40223. name: "Universe Palm",
  40224. height: math.unit(20, "universes")
  40225. },
  40226. {
  40227. name: "Light Multiversal",
  40228. height: math.unit(5, "multiverses")
  40229. },
  40230. {
  40231. name: "Multiverse Palm",
  40232. height: math.unit(20, "multiverses")
  40233. },
  40234. {
  40235. name: "Inferno Incarnate",
  40236. height: math.unit(1e7, "multiverses")
  40237. },
  40238. ]
  40239. ))
  40240. characterMakers.push(() => makeCharacter(
  40241. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  40242. {
  40243. front: {
  40244. height: math.unit(8, "feet"),
  40245. weight: math.unit(1200, "lb"),
  40246. name: "Front",
  40247. image: {
  40248. source: "./media/characters/malithee/front.svg",
  40249. extra: 1675/1640,
  40250. bottom: 162/1837
  40251. }
  40252. },
  40253. },
  40254. [
  40255. {
  40256. name: "Mortal Interaction",
  40257. height: math.unit(8, "feet"),
  40258. default: true
  40259. },
  40260. {
  40261. name: "Large",
  40262. height: math.unit(24, "feet")
  40263. },
  40264. {
  40265. name: "Kaiju",
  40266. height: math.unit(240, "feet")
  40267. },
  40268. {
  40269. name: "Megamacro",
  40270. height: math.unit(8000, "feet")
  40271. },
  40272. {
  40273. name: "Continent Cracker",
  40274. height: math.unit(24e6, "feet")
  40275. },
  40276. {
  40277. name: "Earth-Eclipsing",
  40278. height: math.unit(2.4e8, "feet")
  40279. },
  40280. {
  40281. name: "Sol-Swallowing",
  40282. height: math.unit(8e10, "feet")
  40283. },
  40284. {
  40285. name: "Galaxy Gulper",
  40286. height: math.unit(8, "galaxies")
  40287. },
  40288. {
  40289. name: "Light Universal",
  40290. height: math.unit(4, "universes")
  40291. },
  40292. {
  40293. name: "Universe Atoms",
  40294. height: math.unit(1.829e9, "universes")
  40295. },
  40296. {
  40297. name: "Light Multiversal",
  40298. height: math.unit(4, "multiverses")
  40299. },
  40300. {
  40301. name: "Multiverse Atoms",
  40302. height: math.unit(1.829e9, "multiverses")
  40303. },
  40304. {
  40305. name: "Nigh-Omnipresence",
  40306. height: math.unit(8e261, "multiverses")
  40307. },
  40308. ]
  40309. ))
  40310. characterMakers.push(() => makeCharacter(
  40311. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  40312. {
  40313. front: {
  40314. height: math.unit(10, "feet"),
  40315. weight: math.unit(1500, "lb"),
  40316. name: "Front",
  40317. image: {
  40318. source: "./media/characters/miles-thestia/front.svg",
  40319. extra: 1812/1727,
  40320. bottom: 86/1898
  40321. }
  40322. },
  40323. back: {
  40324. height: math.unit(10, "feet"),
  40325. weight: math.unit(1500, "lb"),
  40326. name: "Back",
  40327. image: {
  40328. source: "./media/characters/miles-thestia/back.svg",
  40329. extra: 1799/1690,
  40330. bottom: 47/1846
  40331. }
  40332. },
  40333. frontNsfw: {
  40334. height: math.unit(10, "feet"),
  40335. weight: math.unit(1500, "lb"),
  40336. name: "Front (NSFW)",
  40337. image: {
  40338. source: "./media/characters/miles-thestia/front-nsfw.svg",
  40339. extra: 1812/1727,
  40340. bottom: 86/1898
  40341. }
  40342. },
  40343. },
  40344. [
  40345. {
  40346. name: "Mini-Macro",
  40347. height: math.unit(10, "feet"),
  40348. default: true
  40349. },
  40350. ]
  40351. ))
  40352. characterMakers.push(() => makeCharacter(
  40353. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  40354. {
  40355. front: {
  40356. height: math.unit(25, "feet"),
  40357. name: "Front",
  40358. image: {
  40359. source: "./media/characters/titan-s-wulf/front.svg",
  40360. extra: 1560/1484,
  40361. bottom: 76/1636
  40362. }
  40363. },
  40364. },
  40365. [
  40366. {
  40367. name: "Smallest",
  40368. height: math.unit(25, "feet"),
  40369. default: true
  40370. },
  40371. {
  40372. name: "Normal",
  40373. height: math.unit(200, "feet")
  40374. },
  40375. {
  40376. name: "Macro",
  40377. height: math.unit(200000, "feet")
  40378. },
  40379. {
  40380. name: "Multiversal Original",
  40381. height: math.unit(10000, "multiverses")
  40382. },
  40383. ]
  40384. ))
  40385. characterMakers.push(() => makeCharacter(
  40386. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  40387. {
  40388. front: {
  40389. height: math.unit(8, "feet"),
  40390. weight: math.unit(553, "lb"),
  40391. name: "Front",
  40392. image: {
  40393. source: "./media/characters/tawendeh/front.svg",
  40394. extra: 2365/2268,
  40395. bottom: 83/2448
  40396. }
  40397. },
  40398. frontClothed: {
  40399. height: math.unit(8, "feet"),
  40400. weight: math.unit(553, "lb"),
  40401. name: "Front (Clothed)",
  40402. image: {
  40403. source: "./media/characters/tawendeh/front-clothed.svg",
  40404. extra: 2365/2268,
  40405. bottom: 83/2448
  40406. }
  40407. },
  40408. back: {
  40409. height: math.unit(8, "feet"),
  40410. weight: math.unit(553, "lb"),
  40411. name: "Back",
  40412. image: {
  40413. source: "./media/characters/tawendeh/back.svg",
  40414. extra: 2397/2294,
  40415. bottom: 42/2439
  40416. }
  40417. },
  40418. },
  40419. [
  40420. {
  40421. name: "Mortal Interaction",
  40422. height: math.unit(8, "feet"),
  40423. default: true
  40424. },
  40425. {
  40426. name: "Giant",
  40427. height: math.unit(80, "feet")
  40428. },
  40429. {
  40430. name: "Macro",
  40431. height: math.unit(800, "feet")
  40432. },
  40433. {
  40434. name: "Megamacro",
  40435. height: math.unit(8000, "feet")
  40436. },
  40437. {
  40438. name: "City-Crushing",
  40439. height: math.unit(24000, "feet")
  40440. },
  40441. {
  40442. name: "Mountain-Mashing",
  40443. height: math.unit(80000, "feet")
  40444. },
  40445. {
  40446. name: "Nation Nemesis",
  40447. height: math.unit(8e6, "feet")
  40448. },
  40449. {
  40450. name: "Continent Cracker",
  40451. height: math.unit(24e6, "feet")
  40452. },
  40453. {
  40454. name: "Earth-Eclipsing",
  40455. height: math.unit(2.4e8, "feet")
  40456. },
  40457. {
  40458. name: "Gas Giant Gulper",
  40459. height: math.unit(2.4e9, "feet")
  40460. },
  40461. {
  40462. name: "Sol-Swallowing",
  40463. height: math.unit(8e10, "feet")
  40464. },
  40465. {
  40466. name: "Galaxy Gulper",
  40467. height: math.unit(8, "galaxies")
  40468. },
  40469. {
  40470. name: "Cosmos Churner",
  40471. height: math.unit(8, "universes")
  40472. },
  40473. {
  40474. name: "Omnipotent Otter",
  40475. height: math.unit(80, "universes")
  40476. },
  40477. ]
  40478. ))
  40479. characterMakers.push(() => makeCharacter(
  40480. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  40481. {
  40482. front: {
  40483. height: math.unit(2.6, "meters"),
  40484. weight: math.unit(900, "kg"),
  40485. name: "Front",
  40486. image: {
  40487. source: "./media/characters/neesha/front.svg",
  40488. extra: 1803/1653,
  40489. bottom: 128/1931
  40490. }
  40491. },
  40492. },
  40493. [
  40494. {
  40495. name: "Normal",
  40496. height: math.unit(2.6, "meters"),
  40497. default: true
  40498. },
  40499. {
  40500. name: "Macro",
  40501. height: math.unit(50, "meters")
  40502. },
  40503. ]
  40504. ))
  40505. characterMakers.push(() => makeCharacter(
  40506. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  40507. {
  40508. front: {
  40509. height: math.unit(5, "feet"),
  40510. weight: math.unit(185, "lb"),
  40511. name: "Front",
  40512. image: {
  40513. source: "./media/characters/kyera/front.svg",
  40514. extra: 1875/1790,
  40515. bottom: 96/1971
  40516. }
  40517. },
  40518. },
  40519. [
  40520. {
  40521. name: "Normal",
  40522. height: math.unit(5, "feet"),
  40523. default: true
  40524. },
  40525. ]
  40526. ))
  40527. characterMakers.push(() => makeCharacter(
  40528. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  40529. {
  40530. front: {
  40531. height: math.unit(7 + 6/12, "feet"),
  40532. weight: math.unit(540, "lb"),
  40533. name: "Front",
  40534. image: {
  40535. source: "./media/characters/yuko/front.svg",
  40536. extra: 1282/1222,
  40537. bottom: 101/1383
  40538. }
  40539. },
  40540. frontClothed: {
  40541. height: math.unit(7 + 6/12, "feet"),
  40542. weight: math.unit(540, "lb"),
  40543. name: "Front (Clothed)",
  40544. image: {
  40545. source: "./media/characters/yuko/front-clothed.svg",
  40546. extra: 1282/1222,
  40547. bottom: 101/1383
  40548. }
  40549. },
  40550. },
  40551. [
  40552. {
  40553. name: "Normal",
  40554. height: math.unit(7 + 6/12, "feet"),
  40555. default: true
  40556. },
  40557. {
  40558. name: "Macro",
  40559. height: math.unit(26 + 9/12, "feet")
  40560. },
  40561. {
  40562. name: "Megamacro",
  40563. height: math.unit(300, "feet")
  40564. },
  40565. {
  40566. name: "Gigamacro",
  40567. height: math.unit(5000, "feet")
  40568. },
  40569. {
  40570. name: "Planetary",
  40571. height: math.unit(10000, "miles")
  40572. },
  40573. ]
  40574. ))
  40575. characterMakers.push(() => makeCharacter(
  40576. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  40577. {
  40578. front: {
  40579. height: math.unit(8 + 2/12, "feet"),
  40580. weight: math.unit(600, "lb"),
  40581. name: "Front",
  40582. image: {
  40583. source: "./media/characters/deam-nitrel/front.svg",
  40584. extra: 1308/1234,
  40585. bottom: 125/1433
  40586. }
  40587. },
  40588. },
  40589. [
  40590. {
  40591. name: "Normal",
  40592. height: math.unit(8 + 2/12, "feet"),
  40593. default: true
  40594. },
  40595. ]
  40596. ))
  40597. characterMakers.push(() => makeCharacter(
  40598. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  40599. {
  40600. front: {
  40601. height: math.unit(6.1, "feet"),
  40602. weight: math.unit(180, "lb"),
  40603. name: "Front",
  40604. image: {
  40605. source: "./media/characters/skyress/front.svg",
  40606. extra: 1045/915,
  40607. bottom: 28/1073
  40608. }
  40609. },
  40610. maw: {
  40611. height: math.unit(1, "feet"),
  40612. name: "Maw",
  40613. image: {
  40614. source: "./media/characters/skyress/maw.svg"
  40615. }
  40616. },
  40617. },
  40618. [
  40619. {
  40620. name: "Normal",
  40621. height: math.unit(6.1, "feet"),
  40622. default: true
  40623. },
  40624. {
  40625. name: "Macro",
  40626. height: math.unit(200, "feet")
  40627. },
  40628. ]
  40629. ))
  40630. characterMakers.push(() => makeCharacter(
  40631. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  40632. {
  40633. front: {
  40634. height: math.unit(4 + 2/12, "feet"),
  40635. weight: math.unit(40, "kg"),
  40636. name: "Front",
  40637. image: {
  40638. source: "./media/characters/amethyst-jones/front.svg",
  40639. extra: 1220/1150,
  40640. bottom: 101/1321
  40641. }
  40642. },
  40643. },
  40644. [
  40645. {
  40646. name: "Normal",
  40647. height: math.unit(4 + 2/12, "feet"),
  40648. default: true
  40649. },
  40650. ]
  40651. ))
  40652. characterMakers.push(() => makeCharacter(
  40653. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  40654. {
  40655. front: {
  40656. height: math.unit(1.7, "m"),
  40657. weight: math.unit(135, "lb"),
  40658. name: "Front",
  40659. image: {
  40660. source: "./media/characters/jade/front.svg",
  40661. extra: 1818/1767,
  40662. bottom: 32/1850
  40663. }
  40664. },
  40665. back: {
  40666. height: math.unit(1.7, "m"),
  40667. weight: math.unit(135, "lb"),
  40668. name: "Back",
  40669. image: {
  40670. source: "./media/characters/jade/back.svg",
  40671. extra: 1869/1809,
  40672. bottom: 35/1904
  40673. }
  40674. },
  40675. hand: {
  40676. height: math.unit(0.24, "m"),
  40677. name: "Hand",
  40678. image: {
  40679. source: "./media/characters/jade/hand.svg"
  40680. }
  40681. },
  40682. foot: {
  40683. height: math.unit(0.263, "m"),
  40684. name: "Foot",
  40685. image: {
  40686. source: "./media/characters/jade/foot.svg"
  40687. }
  40688. },
  40689. dick: {
  40690. height: math.unit(0.47, "m"),
  40691. name: "Dick",
  40692. image: {
  40693. source: "./media/characters/jade/dick.svg"
  40694. }
  40695. },
  40696. },
  40697. [
  40698. {
  40699. name: "Micro",
  40700. height: math.unit(22, "cm")
  40701. },
  40702. {
  40703. name: "Normal",
  40704. height: math.unit(1.7, "m"),
  40705. default: true
  40706. },
  40707. {
  40708. name: "Macro",
  40709. height: math.unit(152, "m")
  40710. },
  40711. ]
  40712. ))
  40713. characterMakers.push(() => makeCharacter(
  40714. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  40715. {
  40716. front: {
  40717. height: math.unit(100, "miles"),
  40718. weight: math.unit(20000, "tons"),
  40719. name: "Front",
  40720. image: {
  40721. source: "./media/characters/cookie/front.svg",
  40722. extra: 1125/1070,
  40723. bottom: 30/1155
  40724. }
  40725. },
  40726. },
  40727. [
  40728. {
  40729. name: "Big",
  40730. height: math.unit(50, "feet")
  40731. },
  40732. {
  40733. name: "Macro",
  40734. height: math.unit(100, "miles"),
  40735. default: true
  40736. },
  40737. {
  40738. name: "Megamacro",
  40739. height: math.unit(90000, "miles")
  40740. },
  40741. ]
  40742. ))
  40743. characterMakers.push(() => makeCharacter(
  40744. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  40745. {
  40746. front: {
  40747. height: math.unit(6, "feet"),
  40748. weight: math.unit(145, "lb"),
  40749. name: "Front",
  40750. image: {
  40751. source: "./media/characters/farzian/front.svg",
  40752. extra: 1902/1693,
  40753. bottom: 108/2010
  40754. }
  40755. },
  40756. },
  40757. [
  40758. {
  40759. name: "Macro",
  40760. height: math.unit(500, "feet"),
  40761. default: true
  40762. },
  40763. ]
  40764. ))
  40765. characterMakers.push(() => makeCharacter(
  40766. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  40767. {
  40768. front: {
  40769. height: math.unit(3 + 6/12, "feet"),
  40770. weight: math.unit(50, "lb"),
  40771. name: "Front",
  40772. image: {
  40773. source: "./media/characters/kimberly-tilson/front.svg",
  40774. extra: 1400/1322,
  40775. bottom: 36/1436
  40776. }
  40777. },
  40778. back: {
  40779. height: math.unit(3 + 6/12, "feet"),
  40780. weight: math.unit(50, "lb"),
  40781. name: "Back",
  40782. image: {
  40783. source: "./media/characters/kimberly-tilson/back.svg",
  40784. extra: 1370/1307,
  40785. bottom: 20/1390
  40786. }
  40787. },
  40788. },
  40789. [
  40790. {
  40791. name: "Normal",
  40792. height: math.unit(3 + 6/12, "feet"),
  40793. default: true
  40794. },
  40795. ]
  40796. ))
  40797. characterMakers.push(() => makeCharacter(
  40798. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  40799. {
  40800. front: {
  40801. height: math.unit(1148, "feet"),
  40802. weight: math.unit(34057, "lb"),
  40803. name: "Front",
  40804. image: {
  40805. source: "./media/characters/harthos/front.svg",
  40806. extra: 1391/1339,
  40807. bottom: 13/1404
  40808. }
  40809. },
  40810. },
  40811. [
  40812. {
  40813. name: "Macro",
  40814. height: math.unit(1148, "feet"),
  40815. default: true
  40816. },
  40817. ]
  40818. ))
  40819. characterMakers.push(() => makeCharacter(
  40820. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  40821. {
  40822. front: {
  40823. height: math.unit(15, "feet"),
  40824. name: "Front",
  40825. image: {
  40826. source: "./media/characters/hypatia/front.svg",
  40827. extra: 1653/1591,
  40828. bottom: 79/1732
  40829. }
  40830. },
  40831. },
  40832. [
  40833. {
  40834. name: "Normal",
  40835. height: math.unit(15, "feet")
  40836. },
  40837. {
  40838. name: "Small",
  40839. height: math.unit(300, "feet")
  40840. },
  40841. {
  40842. name: "Macro",
  40843. height: math.unit(2500, "feet"),
  40844. default: true
  40845. },
  40846. {
  40847. name: "Mega Macro",
  40848. height: math.unit(1500, "miles")
  40849. },
  40850. {
  40851. name: "Giga Macro",
  40852. height: math.unit(1.5e6, "miles")
  40853. },
  40854. ]
  40855. ))
  40856. characterMakers.push(() => makeCharacter(
  40857. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  40858. {
  40859. front: {
  40860. height: math.unit(6, "feet"),
  40861. weight: math.unit(200, "lb"),
  40862. name: "Front",
  40863. image: {
  40864. source: "./media/characters/wulver/front.svg",
  40865. extra: 1724/1632,
  40866. bottom: 130/1854
  40867. }
  40868. },
  40869. frontNsfw: {
  40870. height: math.unit(6, "feet"),
  40871. weight: math.unit(200, "lb"),
  40872. name: "Front (NSFW)",
  40873. image: {
  40874. source: "./media/characters/wulver/front-nsfw.svg",
  40875. extra: 1724/1632,
  40876. bottom: 130/1854
  40877. }
  40878. },
  40879. },
  40880. [
  40881. {
  40882. name: "Human-Sized",
  40883. height: math.unit(6, "feet")
  40884. },
  40885. {
  40886. name: "Normal",
  40887. height: math.unit(4, "meters"),
  40888. default: true
  40889. },
  40890. {
  40891. name: "Large",
  40892. height: math.unit(6, "m")
  40893. },
  40894. ]
  40895. ))
  40896. characterMakers.push(() => makeCharacter(
  40897. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  40898. {
  40899. front: {
  40900. height: math.unit(7, "feet"),
  40901. name: "Front",
  40902. image: {
  40903. source: "./media/characters/maru/front.svg",
  40904. extra: 1595/1570,
  40905. bottom: 0/1595
  40906. }
  40907. },
  40908. },
  40909. [
  40910. {
  40911. name: "Normal",
  40912. height: math.unit(7, "feet"),
  40913. default: true
  40914. },
  40915. {
  40916. name: "Macro",
  40917. height: math.unit(700, "feet")
  40918. },
  40919. {
  40920. name: "Mega Macro",
  40921. height: math.unit(25, "miles")
  40922. },
  40923. ]
  40924. ))
  40925. characterMakers.push(() => makeCharacter(
  40926. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  40927. {
  40928. front: {
  40929. height: math.unit(6, "feet"),
  40930. weight: math.unit(170, "lb"),
  40931. name: "Front",
  40932. image: {
  40933. source: "./media/characters/xenon/front.svg",
  40934. extra: 1376/1305,
  40935. bottom: 56/1432
  40936. }
  40937. },
  40938. back: {
  40939. height: math.unit(6, "feet"),
  40940. weight: math.unit(170, "lb"),
  40941. name: "Back",
  40942. image: {
  40943. source: "./media/characters/xenon/back.svg",
  40944. extra: 1328/1259,
  40945. bottom: 95/1423
  40946. }
  40947. },
  40948. maw: {
  40949. height: math.unit(0.52, "feet"),
  40950. name: "Maw",
  40951. image: {
  40952. source: "./media/characters/xenon/maw.svg"
  40953. }
  40954. },
  40955. hand: {
  40956. height: math.unit(0.82, "feet"),
  40957. name: "Hand",
  40958. image: {
  40959. source: "./media/characters/xenon/hand.svg"
  40960. }
  40961. },
  40962. foot: {
  40963. height: math.unit(1.13, "feet"),
  40964. name: "Foot",
  40965. image: {
  40966. source: "./media/characters/xenon/foot.svg"
  40967. }
  40968. },
  40969. },
  40970. [
  40971. {
  40972. name: "Micro",
  40973. height: math.unit(0.8, "inches")
  40974. },
  40975. {
  40976. name: "Normal",
  40977. height: math.unit(6, "feet")
  40978. },
  40979. {
  40980. name: "Macro",
  40981. height: math.unit(50, "feet"),
  40982. default: true
  40983. },
  40984. {
  40985. name: "Macro+",
  40986. height: math.unit(250, "feet")
  40987. },
  40988. {
  40989. name: "Megamacro",
  40990. height: math.unit(1500, "feet")
  40991. },
  40992. ]
  40993. ))
  40994. characterMakers.push(() => makeCharacter(
  40995. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  40996. {
  40997. front: {
  40998. height: math.unit(7 + 5/12, "feet"),
  40999. name: "Front",
  41000. image: {
  41001. source: "./media/characters/zane/front.svg",
  41002. extra: 1260/1203,
  41003. bottom: 94/1354
  41004. }
  41005. },
  41006. back: {
  41007. height: math.unit(5.05, "feet"),
  41008. name: "Back",
  41009. image: {
  41010. source: "./media/characters/zane/back.svg",
  41011. extra: 893/829,
  41012. bottom: 30/923
  41013. }
  41014. },
  41015. werewolf: {
  41016. height: math.unit(11, "feet"),
  41017. name: "Werewolf",
  41018. image: {
  41019. source: "./media/characters/zane/werewolf.svg",
  41020. extra: 1383/1323,
  41021. bottom: 89/1472
  41022. }
  41023. },
  41024. foot: {
  41025. height: math.unit(1.46, "feet"),
  41026. name: "Foot",
  41027. image: {
  41028. source: "./media/characters/zane/foot.svg"
  41029. }
  41030. },
  41031. footFront: {
  41032. height: math.unit(0.784, "feet"),
  41033. name: "Foot (Front)",
  41034. image: {
  41035. source: "./media/characters/zane/foot-front.svg"
  41036. }
  41037. },
  41038. dick: {
  41039. height: math.unit(1.95, "feet"),
  41040. name: "Dick",
  41041. image: {
  41042. source: "./media/characters/zane/dick.svg"
  41043. }
  41044. },
  41045. dickWerewolf: {
  41046. height: math.unit(3.77, "feet"),
  41047. name: "Dick (Werewolf)",
  41048. image: {
  41049. source: "./media/characters/zane/dick.svg"
  41050. }
  41051. },
  41052. },
  41053. [
  41054. {
  41055. name: "Normal",
  41056. height: math.unit(7 + 5/12, "feet"),
  41057. default: true
  41058. },
  41059. ]
  41060. ))
  41061. characterMakers.push(() => makeCharacter(
  41062. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  41063. {
  41064. front: {
  41065. height: math.unit(6 + 2/12, "feet"),
  41066. weight: math.unit(284, "lb"),
  41067. name: "Front",
  41068. image: {
  41069. source: "./media/characters/benni-desparque/front.svg",
  41070. extra: 1353/1126,
  41071. bottom: 69/1422
  41072. }
  41073. },
  41074. },
  41075. [
  41076. {
  41077. name: "Civilian",
  41078. height: math.unit(6 + 2/12, "feet")
  41079. },
  41080. {
  41081. name: "Normal",
  41082. height: math.unit(98, "feet"),
  41083. default: true
  41084. },
  41085. {
  41086. name: "Kaiju Fighter",
  41087. height: math.unit(268, "feet")
  41088. },
  41089. ]
  41090. ))
  41091. characterMakers.push(() => makeCharacter(
  41092. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  41093. {
  41094. front: {
  41095. height: math.unit(5, "feet"),
  41096. weight: math.unit(105, "lb"),
  41097. name: "Front",
  41098. image: {
  41099. source: "./media/characters/maxine/front.svg",
  41100. extra: 1386/1250,
  41101. bottom: 71/1457
  41102. }
  41103. },
  41104. },
  41105. [
  41106. {
  41107. name: "Normal",
  41108. height: math.unit(5, "feet"),
  41109. default: true
  41110. },
  41111. ]
  41112. ))
  41113. characterMakers.push(() => makeCharacter(
  41114. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  41115. {
  41116. front: {
  41117. height: math.unit(11 + 7/12, "feet"),
  41118. weight: math.unit(9576, "lb"),
  41119. name: "Front",
  41120. image: {
  41121. source: "./media/characters/scaly/front.svg",
  41122. extra: 888/867,
  41123. bottom: 36/924
  41124. }
  41125. },
  41126. },
  41127. [
  41128. {
  41129. name: "Normal",
  41130. height: math.unit(11 + 7/12, "feet"),
  41131. default: true
  41132. },
  41133. ]
  41134. ))
  41135. characterMakers.push(() => makeCharacter(
  41136. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  41137. {
  41138. front: {
  41139. height: math.unit(6 + 3/12, "feet"),
  41140. name: "Front",
  41141. image: {
  41142. source: "./media/characters/saelria/front.svg",
  41143. extra: 1243/1138,
  41144. bottom: 46/1289
  41145. }
  41146. },
  41147. },
  41148. [
  41149. {
  41150. name: "Micro",
  41151. height: math.unit(6, "inches"),
  41152. },
  41153. {
  41154. name: "Normal",
  41155. height: math.unit(6 + 3/12, "feet"),
  41156. default: true
  41157. },
  41158. {
  41159. name: "Macro",
  41160. height: math.unit(25, "feet")
  41161. },
  41162. ]
  41163. ))
  41164. characterMakers.push(() => makeCharacter(
  41165. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  41166. {
  41167. front: {
  41168. height: math.unit(80, "meters"),
  41169. weight: math.unit(7000, "tonnes"),
  41170. name: "Front",
  41171. image: {
  41172. source: "./media/characters/tef/front.svg",
  41173. extra: 2036/1991,
  41174. bottom: 54/2090
  41175. }
  41176. },
  41177. back: {
  41178. height: math.unit(80, "meters"),
  41179. weight: math.unit(7000, "tonnes"),
  41180. name: "Back",
  41181. image: {
  41182. source: "./media/characters/tef/back.svg",
  41183. extra: 2036/1991,
  41184. bottom: 54/2090
  41185. }
  41186. },
  41187. },
  41188. [
  41189. {
  41190. name: "Macro",
  41191. height: math.unit(80, "meters"),
  41192. default: true
  41193. },
  41194. ]
  41195. ))
  41196. characterMakers.push(() => makeCharacter(
  41197. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  41198. {
  41199. front: {
  41200. height: math.unit(13, "feet"),
  41201. weight: math.unit(6, "tons"),
  41202. name: "Front",
  41203. image: {
  41204. source: "./media/characters/rover/front.svg",
  41205. extra: 1233/1156,
  41206. bottom: 50/1283
  41207. }
  41208. },
  41209. back: {
  41210. height: math.unit(13, "feet"),
  41211. weight: math.unit(6, "tons"),
  41212. name: "Back",
  41213. image: {
  41214. source: "./media/characters/rover/back.svg",
  41215. extra: 1327/1258,
  41216. bottom: 39/1366
  41217. }
  41218. },
  41219. },
  41220. [
  41221. {
  41222. name: "Normal",
  41223. height: math.unit(13, "feet"),
  41224. default: true
  41225. },
  41226. {
  41227. name: "Macro",
  41228. height: math.unit(1300, "feet")
  41229. },
  41230. {
  41231. name: "Megamacro",
  41232. height: math.unit(1300, "miles")
  41233. },
  41234. {
  41235. name: "Gigamacro",
  41236. height: math.unit(1300000, "miles")
  41237. },
  41238. ]
  41239. ))
  41240. characterMakers.push(() => makeCharacter(
  41241. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  41242. {
  41243. front: {
  41244. height: math.unit(6, "feet"),
  41245. weight: math.unit(150, "lb"),
  41246. name: "Front",
  41247. image: {
  41248. source: "./media/characters/ariz/front.svg",
  41249. extra: 1401/1346,
  41250. bottom: 5/1406
  41251. }
  41252. },
  41253. },
  41254. [
  41255. {
  41256. name: "Normal",
  41257. height: math.unit(10, "feet"),
  41258. default: true
  41259. },
  41260. ]
  41261. ))
  41262. characterMakers.push(() => makeCharacter(
  41263. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  41264. {
  41265. front: {
  41266. height: math.unit(6, "feet"),
  41267. weight: math.unit(140, "lb"),
  41268. name: "Front",
  41269. image: {
  41270. source: "./media/characters/sigrun/front.svg",
  41271. extra: 1418/1359,
  41272. bottom: 27/1445
  41273. }
  41274. },
  41275. },
  41276. [
  41277. {
  41278. name: "Macro",
  41279. height: math.unit(35, "feet"),
  41280. default: true
  41281. },
  41282. ]
  41283. ))
  41284. characterMakers.push(() => makeCharacter(
  41285. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  41286. {
  41287. front: {
  41288. height: math.unit(6, "feet"),
  41289. weight: math.unit(150, "lb"),
  41290. name: "Front",
  41291. image: {
  41292. source: "./media/characters/numin/front.svg",
  41293. extra: 1433/1388,
  41294. bottom: 12/1445
  41295. }
  41296. },
  41297. },
  41298. [
  41299. {
  41300. name: "Macro",
  41301. height: math.unit(21.5, "km"),
  41302. default: true
  41303. },
  41304. ]
  41305. ))
  41306. characterMakers.push(() => makeCharacter(
  41307. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  41308. {
  41309. front: {
  41310. height: math.unit(6, "feet"),
  41311. weight: math.unit(463, "lb"),
  41312. name: "Front",
  41313. image: {
  41314. source: "./media/characters/melwa/front.svg",
  41315. extra: 1307/1248,
  41316. bottom: 93/1400
  41317. }
  41318. },
  41319. },
  41320. [
  41321. {
  41322. name: "Macro",
  41323. height: math.unit(50, "meters"),
  41324. default: true
  41325. },
  41326. ]
  41327. ))
  41328. characterMakers.push(() => makeCharacter(
  41329. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  41330. {
  41331. front: {
  41332. height: math.unit(325, "feet"),
  41333. name: "Front",
  41334. image: {
  41335. source: "./media/characters/zorkaiju/front.svg",
  41336. extra: 1955/1814,
  41337. bottom: 40/1995
  41338. }
  41339. },
  41340. frontExtended: {
  41341. height: math.unit(325, "feet"),
  41342. name: "Front (Extended)",
  41343. image: {
  41344. source: "./media/characters/zorkaiju/front-extended.svg",
  41345. extra: 1955/1814,
  41346. bottom: 40/1995
  41347. }
  41348. },
  41349. side: {
  41350. height: math.unit(325, "feet"),
  41351. name: "Side",
  41352. image: {
  41353. source: "./media/characters/zorkaiju/side.svg",
  41354. extra: 1495/1396,
  41355. bottom: 17/1512
  41356. }
  41357. },
  41358. sideExtended: {
  41359. height: math.unit(325, "feet"),
  41360. name: "Side (Extended)",
  41361. image: {
  41362. source: "./media/characters/zorkaiju/side-extended.svg",
  41363. extra: 1495/1396,
  41364. bottom: 17/1512
  41365. }
  41366. },
  41367. back: {
  41368. height: math.unit(325, "feet"),
  41369. name: "Back",
  41370. image: {
  41371. source: "./media/characters/zorkaiju/back.svg",
  41372. extra: 1959/1821,
  41373. bottom: 31/1990
  41374. }
  41375. },
  41376. backExtended: {
  41377. height: math.unit(325, "feet"),
  41378. name: "Back (Extended)",
  41379. image: {
  41380. source: "./media/characters/zorkaiju/back-extended.svg",
  41381. extra: 1959/1821,
  41382. bottom: 31/1990
  41383. }
  41384. },
  41385. hand: {
  41386. height: math.unit(58.4, "feet"),
  41387. name: "Hand",
  41388. image: {
  41389. source: "./media/characters/zorkaiju/hand.svg"
  41390. }
  41391. },
  41392. handExtended: {
  41393. height: math.unit(61.4, "feet"),
  41394. name: "Hand (Extended)",
  41395. image: {
  41396. source: "./media/characters/zorkaiju/hand-extended.svg"
  41397. }
  41398. },
  41399. foot: {
  41400. height: math.unit(95, "feet"),
  41401. name: "Foot",
  41402. image: {
  41403. source: "./media/characters/zorkaiju/foot.svg"
  41404. }
  41405. },
  41406. leftArm: {
  41407. height: math.unit(59, "feet"),
  41408. name: "Left Arm",
  41409. image: {
  41410. source: "./media/characters/zorkaiju/left-arm.svg"
  41411. }
  41412. },
  41413. rightArm: {
  41414. height: math.unit(59, "feet"),
  41415. name: "Right Arm",
  41416. image: {
  41417. source: "./media/characters/zorkaiju/right-arm.svg"
  41418. }
  41419. },
  41420. tail: {
  41421. height: math.unit(104, "feet"),
  41422. name: "Tail",
  41423. image: {
  41424. source: "./media/characters/zorkaiju/tail.svg"
  41425. }
  41426. },
  41427. tailExtended: {
  41428. height: math.unit(104, "feet"),
  41429. name: "Tail (Extended)",
  41430. image: {
  41431. source: "./media/characters/zorkaiju/tail-extended.svg"
  41432. }
  41433. },
  41434. tailBottom: {
  41435. height: math.unit(104, "feet"),
  41436. name: "Tail Bottom",
  41437. image: {
  41438. source: "./media/characters/zorkaiju/tail-bottom.svg"
  41439. }
  41440. },
  41441. crystal: {
  41442. height: math.unit(27.54, "feet"),
  41443. name: "Crystal",
  41444. image: {
  41445. source: "./media/characters/zorkaiju/crystal.svg"
  41446. }
  41447. },
  41448. },
  41449. [
  41450. {
  41451. name: "Kaiju",
  41452. height: math.unit(325, "feet"),
  41453. default: true
  41454. },
  41455. ]
  41456. ))
  41457. characterMakers.push(() => makeCharacter(
  41458. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  41459. {
  41460. front: {
  41461. height: math.unit(6 + 1/12, "feet"),
  41462. weight: math.unit(115, "lb"),
  41463. name: "Front",
  41464. image: {
  41465. source: "./media/characters/bailey-belfry/front.svg",
  41466. extra: 1240/1121,
  41467. bottom: 101/1341
  41468. }
  41469. },
  41470. },
  41471. [
  41472. {
  41473. name: "Normal",
  41474. height: math.unit(6 + 1/12, "feet"),
  41475. default: true
  41476. },
  41477. ]
  41478. ))
  41479. characterMakers.push(() => makeCharacter(
  41480. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  41481. {
  41482. side: {
  41483. height: math.unit(4, "meters"),
  41484. weight: math.unit(250, "kg"),
  41485. name: "Side",
  41486. image: {
  41487. source: "./media/characters/blacky/side.svg",
  41488. extra: 1027/919,
  41489. bottom: 43/1070
  41490. }
  41491. },
  41492. maw: {
  41493. height: math.unit(1, "meters"),
  41494. name: "Maw",
  41495. image: {
  41496. source: "./media/characters/blacky/maw.svg"
  41497. }
  41498. },
  41499. paw: {
  41500. height: math.unit(1, "meters"),
  41501. name: "Paw",
  41502. image: {
  41503. source: "./media/characters/blacky/paw.svg"
  41504. }
  41505. },
  41506. },
  41507. [
  41508. {
  41509. name: "Normal",
  41510. height: math.unit(4, "meters"),
  41511. default: true
  41512. },
  41513. ]
  41514. ))
  41515. characterMakers.push(() => makeCharacter(
  41516. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  41517. {
  41518. front: {
  41519. height: math.unit(170, "cm"),
  41520. weight: math.unit(66, "kg"),
  41521. name: "Front",
  41522. image: {
  41523. source: "./media/characters/thux-ei/front.svg",
  41524. extra: 1109/1011,
  41525. bottom: 8/1117
  41526. }
  41527. },
  41528. },
  41529. [
  41530. {
  41531. name: "Normal",
  41532. height: math.unit(170, "cm"),
  41533. default: true
  41534. },
  41535. ]
  41536. ))
  41537. characterMakers.push(() => makeCharacter(
  41538. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  41539. {
  41540. front: {
  41541. height: math.unit(5, "feet"),
  41542. weight: math.unit(120, "lb"),
  41543. name: "Front",
  41544. image: {
  41545. source: "./media/characters/roxanne-voltaire/front.svg",
  41546. extra: 1901/1779,
  41547. bottom: 53/1954
  41548. }
  41549. },
  41550. },
  41551. [
  41552. {
  41553. name: "Normal",
  41554. height: math.unit(5, "feet"),
  41555. default: true
  41556. },
  41557. {
  41558. name: "Giant",
  41559. height: math.unit(50, "feet")
  41560. },
  41561. {
  41562. name: "Titan",
  41563. height: math.unit(500, "feet")
  41564. },
  41565. {
  41566. name: "Macro",
  41567. height: math.unit(5000, "feet")
  41568. },
  41569. {
  41570. name: "Megamacro",
  41571. height: math.unit(50000, "feet")
  41572. },
  41573. {
  41574. name: "Gigamacro",
  41575. height: math.unit(500000, "feet")
  41576. },
  41577. {
  41578. name: "Teramacro",
  41579. height: math.unit(5e6, "feet")
  41580. },
  41581. ]
  41582. ))
  41583. characterMakers.push(() => makeCharacter(
  41584. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  41585. {
  41586. front: {
  41587. height: math.unit(6 + 2/12, "feet"),
  41588. name: "Front",
  41589. image: {
  41590. source: "./media/characters/squeaks/front.svg",
  41591. extra: 1823/1768,
  41592. bottom: 138/1961
  41593. }
  41594. },
  41595. },
  41596. [
  41597. {
  41598. name: "Micro",
  41599. height: math.unit(0.5, "inches")
  41600. },
  41601. {
  41602. name: "Normal",
  41603. height: math.unit(6 + 2/12, "feet"),
  41604. default: true
  41605. },
  41606. {
  41607. name: "Macro",
  41608. height: math.unit(600, "feet")
  41609. },
  41610. ]
  41611. ))
  41612. characterMakers.push(() => makeCharacter(
  41613. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  41614. {
  41615. front: {
  41616. height: math.unit(1.72, "meters"),
  41617. name: "Front",
  41618. image: {
  41619. source: "./media/characters/archinger/front.svg",
  41620. extra: 1861/1675,
  41621. bottom: 125/1986
  41622. }
  41623. },
  41624. back: {
  41625. height: math.unit(1.72, "meters"),
  41626. name: "Back",
  41627. image: {
  41628. source: "./media/characters/archinger/back.svg",
  41629. extra: 1844/1701,
  41630. bottom: 104/1948
  41631. }
  41632. },
  41633. cock: {
  41634. height: math.unit(0.59, "feet"),
  41635. name: "Cock",
  41636. image: {
  41637. source: "./media/characters/archinger/cock.svg"
  41638. }
  41639. },
  41640. },
  41641. [
  41642. {
  41643. name: "Normal",
  41644. height: math.unit(1.72, "meters"),
  41645. default: true
  41646. },
  41647. {
  41648. name: "Macro",
  41649. height: math.unit(84, "meters")
  41650. },
  41651. {
  41652. name: "Macro+",
  41653. height: math.unit(112, "meters")
  41654. },
  41655. {
  41656. name: "Macro++",
  41657. height: math.unit(960, "meters")
  41658. },
  41659. {
  41660. name: "Macro+++",
  41661. height: math.unit(4, "km")
  41662. },
  41663. {
  41664. name: "Macro++++",
  41665. height: math.unit(48, "km")
  41666. },
  41667. {
  41668. name: "Macro+++++",
  41669. height: math.unit(4500, "km")
  41670. },
  41671. ]
  41672. ))
  41673. characterMakers.push(() => makeCharacter(
  41674. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  41675. {
  41676. front: {
  41677. height: math.unit(5 + 5/12, "feet"),
  41678. name: "Front",
  41679. image: {
  41680. source: "./media/characters/alsnapz/front.svg",
  41681. extra: 1157/1065,
  41682. bottom: 42/1199
  41683. }
  41684. },
  41685. },
  41686. [
  41687. {
  41688. name: "Normal",
  41689. height: math.unit(5 + 5/12, "feet"),
  41690. default: true
  41691. },
  41692. ]
  41693. ))
  41694. characterMakers.push(() => makeCharacter(
  41695. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  41696. {
  41697. side: {
  41698. height: math.unit(3.2, "earths"),
  41699. name: "Side",
  41700. image: {
  41701. source: "./media/characters/mag/side.svg",
  41702. extra: 1331/1008,
  41703. bottom: 52/1383
  41704. }
  41705. },
  41706. wing: {
  41707. height: math.unit(1.94, "earths"),
  41708. name: "Wing",
  41709. image: {
  41710. source: "./media/characters/mag/wing.svg"
  41711. }
  41712. },
  41713. dick: {
  41714. height: math.unit(1.8, "earths"),
  41715. name: "Dick",
  41716. image: {
  41717. source: "./media/characters/mag/dick.svg"
  41718. }
  41719. },
  41720. ass: {
  41721. height: math.unit(1.33, "earths"),
  41722. name: "Ass",
  41723. image: {
  41724. source: "./media/characters/mag/ass.svg"
  41725. }
  41726. },
  41727. head: {
  41728. height: math.unit(1.1, "earths"),
  41729. name: "Head",
  41730. image: {
  41731. source: "./media/characters/mag/head.svg"
  41732. }
  41733. },
  41734. maw: {
  41735. height: math.unit(1.62, "earths"),
  41736. name: "Maw",
  41737. image: {
  41738. source: "./media/characters/mag/maw.svg"
  41739. }
  41740. },
  41741. },
  41742. [
  41743. {
  41744. name: "Small",
  41745. height: math.unit(162, "feet")
  41746. },
  41747. {
  41748. name: "Normal",
  41749. height: math.unit(3.2, "earths"),
  41750. default: true
  41751. },
  41752. ]
  41753. ))
  41754. characterMakers.push(() => makeCharacter(
  41755. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  41756. {
  41757. front: {
  41758. height: math.unit(512, "feet"),
  41759. weight: math.unit(63509, "tonnes"),
  41760. name: "Front",
  41761. image: {
  41762. source: "./media/characters/vorrel-harroc/front.svg",
  41763. extra: 1075/1063,
  41764. bottom: 62/1137
  41765. }
  41766. },
  41767. },
  41768. [
  41769. {
  41770. name: "Normal",
  41771. height: math.unit(10, "feet")
  41772. },
  41773. {
  41774. name: "Macro",
  41775. height: math.unit(512, "feet"),
  41776. default: true
  41777. },
  41778. {
  41779. name: "Megamacro",
  41780. height: math.unit(256, "miles")
  41781. },
  41782. {
  41783. name: "Gigamacro",
  41784. height: math.unit(4096, "miles")
  41785. },
  41786. ]
  41787. ))
  41788. characterMakers.push(() => makeCharacter(
  41789. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  41790. {
  41791. side: {
  41792. height: math.unit(50, "feet"),
  41793. name: "Side",
  41794. image: {
  41795. source: "./media/characters/froimar/side.svg",
  41796. extra: 855/638,
  41797. bottom: 99/954
  41798. }
  41799. },
  41800. },
  41801. [
  41802. {
  41803. name: "Macro",
  41804. height: math.unit(50, "feet"),
  41805. default: true
  41806. },
  41807. ]
  41808. ))
  41809. characterMakers.push(() => makeCharacter(
  41810. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  41811. {
  41812. front: {
  41813. height: math.unit(210, "miles"),
  41814. name: "Front",
  41815. image: {
  41816. source: "./media/characters/timothy/front.svg",
  41817. extra: 1007/943,
  41818. bottom: 62/1069
  41819. }
  41820. },
  41821. frontSkirt: {
  41822. height: math.unit(210, "miles"),
  41823. name: "Front (Skirt)",
  41824. image: {
  41825. source: "./media/characters/timothy/front-skirt.svg",
  41826. extra: 1007/943,
  41827. bottom: 62/1069
  41828. }
  41829. },
  41830. frontCoat: {
  41831. height: math.unit(210, "miles"),
  41832. name: "Front (Coat)",
  41833. image: {
  41834. source: "./media/characters/timothy/front-coat.svg",
  41835. extra: 1007/943,
  41836. bottom: 62/1069
  41837. }
  41838. },
  41839. },
  41840. [
  41841. {
  41842. name: "Macro",
  41843. height: math.unit(210, "miles"),
  41844. default: true
  41845. },
  41846. {
  41847. name: "Megamacro",
  41848. height: math.unit(210000, "miles")
  41849. },
  41850. ]
  41851. ))
  41852. characterMakers.push(() => makeCharacter(
  41853. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  41854. {
  41855. front: {
  41856. height: math.unit(188, "feet"),
  41857. name: "Front",
  41858. image: {
  41859. source: "./media/characters/pyotr/front.svg",
  41860. extra: 1912/1826,
  41861. bottom: 18/1930
  41862. }
  41863. },
  41864. },
  41865. [
  41866. {
  41867. name: "Macro",
  41868. height: math.unit(188, "feet"),
  41869. default: true
  41870. },
  41871. {
  41872. name: "Megamacro",
  41873. height: math.unit(8, "miles")
  41874. },
  41875. ]
  41876. ))
  41877. characterMakers.push(() => makeCharacter(
  41878. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  41879. {
  41880. side: {
  41881. height: math.unit(10, "feet"),
  41882. weight: math.unit(4500, "lb"),
  41883. name: "Side",
  41884. image: {
  41885. source: "./media/characters/ackart/side.svg",
  41886. extra: 1776/1668,
  41887. bottom: 116/1892
  41888. }
  41889. },
  41890. },
  41891. [
  41892. {
  41893. name: "Normal",
  41894. height: math.unit(10, "feet"),
  41895. default: true
  41896. },
  41897. ]
  41898. ))
  41899. characterMakers.push(() => makeCharacter(
  41900. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  41901. {
  41902. side: {
  41903. height: math.unit(21, "feet"),
  41904. name: "Side",
  41905. image: {
  41906. source: "./media/characters/nolow/side.svg",
  41907. extra: 1484/1434,
  41908. bottom: 85/1569
  41909. }
  41910. },
  41911. sideErect: {
  41912. height: math.unit(21, "feet"),
  41913. name: "Side-erect",
  41914. image: {
  41915. source: "./media/characters/nolow/side-erect.svg",
  41916. extra: 1484/1434,
  41917. bottom: 85/1569
  41918. }
  41919. },
  41920. },
  41921. [
  41922. {
  41923. name: "Regular",
  41924. height: math.unit(12, "feet")
  41925. },
  41926. {
  41927. name: "Big Chee",
  41928. height: math.unit(21, "feet"),
  41929. default: true
  41930. },
  41931. ]
  41932. ))
  41933. characterMakers.push(() => makeCharacter(
  41934. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  41935. {
  41936. front: {
  41937. height: math.unit(7, "feet"),
  41938. weight: math.unit(250, "lb"),
  41939. name: "Front",
  41940. image: {
  41941. source: "./media/characters/nines/front.svg",
  41942. extra: 1741/1607,
  41943. bottom: 41/1782
  41944. }
  41945. },
  41946. side: {
  41947. height: math.unit(7, "feet"),
  41948. weight: math.unit(250, "lb"),
  41949. name: "Side",
  41950. image: {
  41951. source: "./media/characters/nines/side.svg",
  41952. extra: 1854/1735,
  41953. bottom: 93/1947
  41954. }
  41955. },
  41956. back: {
  41957. height: math.unit(7, "feet"),
  41958. weight: math.unit(250, "lb"),
  41959. name: "Back",
  41960. image: {
  41961. source: "./media/characters/nines/back.svg",
  41962. extra: 1748/1615,
  41963. bottom: 20/1768
  41964. }
  41965. },
  41966. },
  41967. [
  41968. {
  41969. name: "Megamacro",
  41970. height: math.unit(99, "km"),
  41971. default: true
  41972. },
  41973. ]
  41974. ))
  41975. characterMakers.push(() => makeCharacter(
  41976. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  41977. {
  41978. front: {
  41979. height: math.unit(5 + 10/12, "feet"),
  41980. weight: math.unit(210, "lb"),
  41981. name: "Front",
  41982. image: {
  41983. source: "./media/characters/zenith/front.svg",
  41984. extra: 1531/1452,
  41985. bottom: 198/1729
  41986. }
  41987. },
  41988. back: {
  41989. height: math.unit(5 + 10/12, "feet"),
  41990. weight: math.unit(210, "lb"),
  41991. name: "Back",
  41992. image: {
  41993. source: "./media/characters/zenith/back.svg",
  41994. extra: 1571/1487,
  41995. bottom: 75/1646
  41996. }
  41997. },
  41998. },
  41999. [
  42000. {
  42001. name: "Normal",
  42002. height: math.unit(5 + 10/12, "feet"),
  42003. default: true
  42004. }
  42005. ]
  42006. ))
  42007. characterMakers.push(() => makeCharacter(
  42008. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  42009. {
  42010. front: {
  42011. height: math.unit(4, "feet"),
  42012. weight: math.unit(60, "lb"),
  42013. name: "Front",
  42014. image: {
  42015. source: "./media/characters/jasper/front.svg",
  42016. extra: 1450/1379,
  42017. bottom: 19/1469
  42018. }
  42019. },
  42020. },
  42021. [
  42022. {
  42023. name: "Normal",
  42024. height: math.unit(4, "feet"),
  42025. default: true
  42026. },
  42027. ]
  42028. ))
  42029. characterMakers.push(() => makeCharacter(
  42030. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  42031. {
  42032. front: {
  42033. height: math.unit(6 + 5/12, "feet"),
  42034. weight: math.unit(290, "lb"),
  42035. name: "Front",
  42036. image: {
  42037. source: "./media/characters/tiberius-thyben/front.svg",
  42038. extra: 757/739,
  42039. bottom: 39/796
  42040. }
  42041. },
  42042. },
  42043. [
  42044. {
  42045. name: "Micro",
  42046. height: math.unit(1.5, "inches")
  42047. },
  42048. {
  42049. name: "Normal",
  42050. height: math.unit(6 + 5/12, "feet"),
  42051. default: true
  42052. },
  42053. {
  42054. name: "Macro",
  42055. height: math.unit(300, "feet")
  42056. },
  42057. ]
  42058. ))
  42059. characterMakers.push(() => makeCharacter(
  42060. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  42061. {
  42062. front: {
  42063. height: math.unit(5 + 6/12, "feet"),
  42064. weight: math.unit(60, "kg"),
  42065. name: "Front",
  42066. image: {
  42067. source: "./media/characters/sabre/front.svg",
  42068. extra: 738/671,
  42069. bottom: 27/765
  42070. }
  42071. },
  42072. },
  42073. [
  42074. {
  42075. name: "Teeny",
  42076. height: math.unit(2, "inches")
  42077. },
  42078. {
  42079. name: "Smol",
  42080. height: math.unit(8, "inches")
  42081. },
  42082. {
  42083. name: "Normal",
  42084. height: math.unit(5 + 6/12, "feet"),
  42085. default: true
  42086. },
  42087. {
  42088. name: "Mini-Macro",
  42089. height: math.unit(15, "feet")
  42090. },
  42091. {
  42092. name: "Macro",
  42093. height: math.unit(50, "feet")
  42094. },
  42095. ]
  42096. ))
  42097. characterMakers.push(() => makeCharacter(
  42098. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  42099. {
  42100. front: {
  42101. height: math.unit(6 + 4/12, "feet"),
  42102. weight: math.unit(170, "lb"),
  42103. name: "Front",
  42104. image: {
  42105. source: "./media/characters/charlie/front.svg",
  42106. extra: 1348/1228,
  42107. bottom: 15/1363
  42108. }
  42109. },
  42110. },
  42111. [
  42112. {
  42113. name: "Macro",
  42114. height: math.unit(1700, "meters"),
  42115. default: true
  42116. },
  42117. {
  42118. name: "MegaMacro",
  42119. height: math.unit(20400, "meters")
  42120. },
  42121. ]
  42122. ))
  42123. characterMakers.push(() => makeCharacter(
  42124. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  42125. {
  42126. front: {
  42127. height: math.unit(6 + 3/12, "feet"),
  42128. weight: math.unit(185, "lb"),
  42129. name: "Front",
  42130. image: {
  42131. source: "./media/characters/susan-grant/front.svg",
  42132. extra: 1351/1327,
  42133. bottom: 26/1377
  42134. }
  42135. },
  42136. },
  42137. [
  42138. {
  42139. name: "Normal",
  42140. height: math.unit(6 + 3/12, "feet"),
  42141. default: true
  42142. },
  42143. {
  42144. name: "Macro",
  42145. height: math.unit(225, "feet")
  42146. },
  42147. {
  42148. name: "Macro+",
  42149. height: math.unit(900, "feet")
  42150. },
  42151. {
  42152. name: "MegaMacro",
  42153. height: math.unit(14400, "feet")
  42154. },
  42155. ]
  42156. ))
  42157. characterMakers.push(() => makeCharacter(
  42158. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  42159. {
  42160. front: {
  42161. height: math.unit(5 + 4/12, "feet"),
  42162. weight: math.unit(110, "lb"),
  42163. name: "Front",
  42164. image: {
  42165. source: "./media/characters/axel-isanov/front.svg",
  42166. extra: 1096/1065,
  42167. bottom: 13/1109
  42168. }
  42169. },
  42170. },
  42171. [
  42172. {
  42173. name: "Normal",
  42174. height: math.unit(5 + 4/12, "feet"),
  42175. default: true
  42176. },
  42177. ]
  42178. ))
  42179. characterMakers.push(() => makeCharacter(
  42180. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  42181. {
  42182. front: {
  42183. height: math.unit(9, "feet"),
  42184. weight: math.unit(467, "lb"),
  42185. name: "Front",
  42186. image: {
  42187. source: "./media/characters/necahual/front.svg",
  42188. extra: 920/873,
  42189. bottom: 26/946
  42190. }
  42191. },
  42192. back: {
  42193. height: math.unit(9, "feet"),
  42194. weight: math.unit(467, "lb"),
  42195. name: "Back",
  42196. image: {
  42197. source: "./media/characters/necahual/back.svg",
  42198. extra: 930/884,
  42199. bottom: 16/946
  42200. }
  42201. },
  42202. frontUnderwear: {
  42203. height: math.unit(9, "feet"),
  42204. weight: math.unit(467, "lb"),
  42205. name: "Front (Underwear)",
  42206. image: {
  42207. source: "./media/characters/necahual/front-underwear.svg",
  42208. extra: 920/873,
  42209. bottom: 26/946
  42210. }
  42211. },
  42212. frontDressed: {
  42213. height: math.unit(9, "feet"),
  42214. weight: math.unit(467, "lb"),
  42215. name: "Front (Dressed)",
  42216. image: {
  42217. source: "./media/characters/necahual/front-dressed.svg",
  42218. extra: 920/873,
  42219. bottom: 26/946
  42220. }
  42221. },
  42222. },
  42223. [
  42224. {
  42225. name: "Comprsesed",
  42226. height: math.unit(9, "feet")
  42227. },
  42228. {
  42229. name: "Natural",
  42230. height: math.unit(15, "feet"),
  42231. default: true
  42232. },
  42233. {
  42234. name: "Boosted",
  42235. height: math.unit(50, "feet")
  42236. },
  42237. {
  42238. name: "Boosted+",
  42239. height: math.unit(150, "feet")
  42240. },
  42241. {
  42242. name: "Max",
  42243. height: math.unit(500, "feet")
  42244. },
  42245. ]
  42246. ))
  42247. characterMakers.push(() => makeCharacter(
  42248. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  42249. {
  42250. front: {
  42251. height: math.unit(22 + 1/12, "feet"),
  42252. weight: math.unit(3200, "lb"),
  42253. name: "Front",
  42254. image: {
  42255. source: "./media/characters/theo-acacia/front.svg",
  42256. extra: 1796/1741,
  42257. bottom: 83/1879
  42258. }
  42259. },
  42260. frontUnderwear: {
  42261. height: math.unit(22 + 1/12, "feet"),
  42262. weight: math.unit(3200, "lb"),
  42263. name: "Front (Underwear)",
  42264. image: {
  42265. source: "./media/characters/theo-acacia/front-underwear.svg",
  42266. extra: 1796/1741,
  42267. bottom: 83/1879
  42268. }
  42269. },
  42270. frontNude: {
  42271. height: math.unit(22 + 1/12, "feet"),
  42272. weight: math.unit(3200, "lb"),
  42273. name: "Front (Nude)",
  42274. image: {
  42275. source: "./media/characters/theo-acacia/front-nude.svg",
  42276. extra: 1796/1741,
  42277. bottom: 83/1879
  42278. }
  42279. },
  42280. },
  42281. [
  42282. {
  42283. name: "Normal",
  42284. height: math.unit(22 + 1/12, "feet"),
  42285. default: true
  42286. },
  42287. ]
  42288. ))
  42289. characterMakers.push(() => makeCharacter(
  42290. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  42291. {
  42292. front: {
  42293. height: math.unit(20, "feet"),
  42294. name: "Front",
  42295. image: {
  42296. source: "./media/characters/astra/front.svg",
  42297. extra: 1850/1714,
  42298. bottom: 106/1956
  42299. }
  42300. },
  42301. frontUndressed: {
  42302. height: math.unit(20, "feet"),
  42303. name: "Front (Undressed)",
  42304. image: {
  42305. source: "./media/characters/astra/front-undressed.svg",
  42306. extra: 1926/1749,
  42307. bottom: 0/1926
  42308. }
  42309. },
  42310. hand: {
  42311. height: math.unit(1.53, "feet"),
  42312. name: "Hand",
  42313. image: {
  42314. source: "./media/characters/astra/hand.svg"
  42315. }
  42316. },
  42317. paw: {
  42318. height: math.unit(1.53, "feet"),
  42319. name: "Paw",
  42320. image: {
  42321. source: "./media/characters/astra/paw.svg"
  42322. }
  42323. },
  42324. },
  42325. [
  42326. {
  42327. name: "Smallest",
  42328. height: math.unit(20, "feet")
  42329. },
  42330. {
  42331. name: "Normal",
  42332. height: math.unit(1e9, "miles"),
  42333. default: true
  42334. },
  42335. {
  42336. name: "Larger",
  42337. height: math.unit(5, "multiverses")
  42338. },
  42339. {
  42340. name: "Largest",
  42341. height: math.unit(1e9, "multiverses")
  42342. },
  42343. ]
  42344. ))
  42345. characterMakers.push(() => makeCharacter(
  42346. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  42347. {
  42348. front: {
  42349. height: math.unit(8, "feet"),
  42350. name: "Front",
  42351. image: {
  42352. source: "./media/characters/breanna/front.svg",
  42353. extra: 1912/1632,
  42354. bottom: 33/1945
  42355. }
  42356. },
  42357. },
  42358. [
  42359. {
  42360. name: "Smallest",
  42361. height: math.unit(8, "feet")
  42362. },
  42363. {
  42364. name: "Normal",
  42365. height: math.unit(1, "mile"),
  42366. default: true
  42367. },
  42368. {
  42369. name: "Maximum",
  42370. height: math.unit(1500000000000, "lightyears")
  42371. },
  42372. ]
  42373. ))
  42374. characterMakers.push(() => makeCharacter(
  42375. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  42376. {
  42377. front: {
  42378. height: math.unit(5 + 11/12, "feet"),
  42379. weight: math.unit(155, "lb"),
  42380. name: "Front",
  42381. image: {
  42382. source: "./media/characters/cai/front.svg",
  42383. extra: 1823/1702,
  42384. bottom: 32/1855
  42385. }
  42386. },
  42387. back: {
  42388. height: math.unit(5 + 11/12, "feet"),
  42389. weight: math.unit(155, "lb"),
  42390. name: "Back",
  42391. image: {
  42392. source: "./media/characters/cai/back.svg",
  42393. extra: 1809/1708,
  42394. bottom: 31/1840
  42395. }
  42396. },
  42397. },
  42398. [
  42399. {
  42400. name: "Normal",
  42401. height: math.unit(5 + 11/12, "feet"),
  42402. default: true
  42403. },
  42404. {
  42405. name: "Big",
  42406. height: math.unit(15, "feet")
  42407. },
  42408. {
  42409. name: "Macro",
  42410. height: math.unit(200, "feet")
  42411. },
  42412. ]
  42413. ))
  42414. characterMakers.push(() => makeCharacter(
  42415. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  42416. {
  42417. front: {
  42418. height: math.unit(5 + 6/12, "feet"),
  42419. weight: math.unit(160, "lb"),
  42420. name: "Front",
  42421. image: {
  42422. source: "./media/characters/zanna-virtuedòttir/front.svg",
  42423. extra: 1227/1174,
  42424. bottom: 37/1264
  42425. }
  42426. },
  42427. },
  42428. [
  42429. {
  42430. name: "Macro",
  42431. height: math.unit(444, "meters"),
  42432. default: true
  42433. },
  42434. ]
  42435. ))
  42436. characterMakers.push(() => makeCharacter(
  42437. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  42438. {
  42439. front: {
  42440. height: math.unit(18 + 7/12, "feet"),
  42441. name: "Front",
  42442. image: {
  42443. source: "./media/characters/rex/front.svg",
  42444. extra: 1941/1807,
  42445. bottom: 66/2007
  42446. }
  42447. },
  42448. back: {
  42449. height: math.unit(18 + 7/12, "feet"),
  42450. name: "Back",
  42451. image: {
  42452. source: "./media/characters/rex/back.svg",
  42453. extra: 1937/1822,
  42454. bottom: 42/1979
  42455. }
  42456. },
  42457. boot: {
  42458. height: math.unit(3.45, "feet"),
  42459. name: "Boot",
  42460. image: {
  42461. source: "./media/characters/rex/boot.svg"
  42462. }
  42463. },
  42464. paw: {
  42465. height: math.unit(4.17, "feet"),
  42466. name: "Paw",
  42467. image: {
  42468. source: "./media/characters/rex/paw.svg"
  42469. }
  42470. },
  42471. head: {
  42472. height: math.unit(6.728, "feet"),
  42473. name: "Head",
  42474. image: {
  42475. source: "./media/characters/rex/head.svg"
  42476. }
  42477. },
  42478. },
  42479. [
  42480. {
  42481. name: "Nano",
  42482. height: math.unit(18 + 7/12, "feet")
  42483. },
  42484. {
  42485. name: "Micro",
  42486. height: math.unit(1.5, "megameters")
  42487. },
  42488. {
  42489. name: "Normal",
  42490. height: math.unit(440, "megameters"),
  42491. default: true
  42492. },
  42493. {
  42494. name: "Macro",
  42495. height: math.unit(2.5, "gigameters")
  42496. },
  42497. {
  42498. name: "Gigamacro",
  42499. height: math.unit(2, "galaxies")
  42500. },
  42501. ]
  42502. ))
  42503. characterMakers.push(() => makeCharacter(
  42504. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  42505. {
  42506. side: {
  42507. height: math.unit(32, "feet"),
  42508. weight: math.unit(250000, "lb"),
  42509. name: "Side",
  42510. image: {
  42511. source: "./media/characters/silverwing/side.svg",
  42512. extra: 1100/1019,
  42513. bottom: 204/1304
  42514. }
  42515. },
  42516. },
  42517. [
  42518. {
  42519. name: "Normal",
  42520. height: math.unit(32, "feet"),
  42521. default: true
  42522. },
  42523. ]
  42524. ))
  42525. characterMakers.push(() => makeCharacter(
  42526. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  42527. {
  42528. front: {
  42529. height: math.unit(6 + 6/12, "feet"),
  42530. weight: math.unit(350, "lb"),
  42531. name: "Front",
  42532. image: {
  42533. source: "./media/characters/tristan-hawthorne/front.svg",
  42534. extra: 1159/1124,
  42535. bottom: 37/1196
  42536. },
  42537. form: "labrador",
  42538. default: true
  42539. },
  42540. skunkFront: {
  42541. height: math.unit(4 + 6/12, "feet"),
  42542. weight: math.unit(120, "lb"),
  42543. name: "Front",
  42544. image: {
  42545. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  42546. extra: 1609/1551,
  42547. bottom: 169/1778
  42548. },
  42549. form: "skunk",
  42550. default: true
  42551. },
  42552. },
  42553. [
  42554. {
  42555. name: "Normal",
  42556. height: math.unit(6 + 6/12, "feet"),
  42557. form: "labrador",
  42558. default: true
  42559. },
  42560. {
  42561. name: "Normal",
  42562. height: math.unit(4 + 6/12, "feet"),
  42563. form: "skunk",
  42564. default: true
  42565. },
  42566. ],
  42567. {
  42568. "labrador": {
  42569. name: "Labrador",
  42570. default: true
  42571. },
  42572. "skunk": {
  42573. name: "Skunk"
  42574. }
  42575. }
  42576. ))
  42577. characterMakers.push(() => makeCharacter(
  42578. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  42579. {
  42580. front: {
  42581. height: math.unit(5 + 11/12, "feet"),
  42582. weight: math.unit(190, "lb"),
  42583. name: "Front",
  42584. image: {
  42585. source: "./media/characters/mizu/front.svg",
  42586. extra: 1988/1788,
  42587. bottom: 14/2002
  42588. }
  42589. },
  42590. },
  42591. [
  42592. {
  42593. name: "Normal",
  42594. height: math.unit(5 + 11/12, "feet"),
  42595. default: true
  42596. },
  42597. ]
  42598. ))
  42599. characterMakers.push(() => makeCharacter(
  42600. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  42601. {
  42602. front: {
  42603. height: math.unit(1.7, "feet"),
  42604. weight: math.unit(50, "lb"),
  42605. name: "Front",
  42606. image: {
  42607. source: "./media/characters/dechroma/front.svg",
  42608. extra: 1095/859,
  42609. bottom: 64/1159
  42610. }
  42611. },
  42612. },
  42613. [
  42614. {
  42615. name: "Normal",
  42616. height: math.unit(1.7, "feet"),
  42617. default: true
  42618. },
  42619. ]
  42620. ))
  42621. characterMakers.push(() => makeCharacter(
  42622. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  42623. {
  42624. side: {
  42625. height: math.unit(30, "feet"),
  42626. name: "Side",
  42627. image: {
  42628. source: "./media/characters/veluren-thanazel/side.svg",
  42629. extra: 1611/633,
  42630. bottom: 118/1729
  42631. }
  42632. },
  42633. front: {
  42634. height: math.unit(30, "feet"),
  42635. name: "Front",
  42636. image: {
  42637. source: "./media/characters/veluren-thanazel/front.svg",
  42638. extra: 1486/636,
  42639. bottom: 238/1724
  42640. }
  42641. },
  42642. head: {
  42643. height: math.unit(21.4, "feet"),
  42644. name: "Head",
  42645. image: {
  42646. source: "./media/characters/veluren-thanazel/head.svg"
  42647. }
  42648. },
  42649. genitals: {
  42650. height: math.unit(19.4, "feet"),
  42651. name: "Genitals",
  42652. image: {
  42653. source: "./media/characters/veluren-thanazel/genitals.svg"
  42654. }
  42655. },
  42656. },
  42657. [
  42658. {
  42659. name: "Social",
  42660. height: math.unit(6, "feet")
  42661. },
  42662. {
  42663. name: "Play",
  42664. height: math.unit(12, "feet")
  42665. },
  42666. {
  42667. name: "True",
  42668. height: math.unit(30, "feet"),
  42669. default: true
  42670. },
  42671. ]
  42672. ))
  42673. characterMakers.push(() => makeCharacter(
  42674. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  42675. {
  42676. front: {
  42677. height: math.unit(7 + 6/12, "feet"),
  42678. weight: math.unit(500, "kg"),
  42679. name: "Front",
  42680. image: {
  42681. source: "./media/characters/arcturas/front.svg",
  42682. extra: 1700/1500,
  42683. bottom: 145/1845
  42684. }
  42685. },
  42686. },
  42687. [
  42688. {
  42689. name: "Normal",
  42690. height: math.unit(7 + 6/12, "feet"),
  42691. default: true
  42692. },
  42693. ]
  42694. ))
  42695. characterMakers.push(() => makeCharacter(
  42696. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  42697. {
  42698. side: {
  42699. height: math.unit(6, "feet"),
  42700. weight: math.unit(2, "tons"),
  42701. name: "Side",
  42702. image: {
  42703. source: "./media/characters/vitaen/side.svg",
  42704. extra: 1157/617,
  42705. bottom: 122/1279
  42706. }
  42707. },
  42708. },
  42709. [
  42710. {
  42711. name: "Normal",
  42712. height: math.unit(6, "feet"),
  42713. default: true
  42714. },
  42715. ]
  42716. ))
  42717. characterMakers.push(() => makeCharacter(
  42718. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  42719. {
  42720. front: {
  42721. height: math.unit(19, "feet"),
  42722. name: "Front",
  42723. image: {
  42724. source: "./media/characters/fia-dreamweaver/front.svg",
  42725. extra: 1630/1504,
  42726. bottom: 25/1655
  42727. }
  42728. },
  42729. },
  42730. [
  42731. {
  42732. name: "Normal",
  42733. height: math.unit(19, "feet"),
  42734. default: true
  42735. },
  42736. ]
  42737. ))
  42738. characterMakers.push(() => makeCharacter(
  42739. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  42740. {
  42741. front: {
  42742. height: math.unit(5 + 4/12, "feet"),
  42743. name: "Front",
  42744. image: {
  42745. source: "./media/characters/artan/front.svg",
  42746. extra: 1618/1535,
  42747. bottom: 46/1664
  42748. }
  42749. },
  42750. back: {
  42751. height: math.unit(5 + 4/12, "feet"),
  42752. name: "Back",
  42753. image: {
  42754. source: "./media/characters/artan/back.svg",
  42755. extra: 1618/1543,
  42756. bottom: 31/1649
  42757. }
  42758. },
  42759. },
  42760. [
  42761. {
  42762. name: "Normal",
  42763. height: math.unit(5 + 4/12, "feet"),
  42764. default: true
  42765. },
  42766. ]
  42767. ))
  42768. characterMakers.push(() => makeCharacter(
  42769. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  42770. {
  42771. side: {
  42772. height: math.unit(182, "cm"),
  42773. weight: math.unit(1000, "lb"),
  42774. name: "Side",
  42775. image: {
  42776. source: "./media/characters/silver-dragon/side.svg",
  42777. extra: 710/287,
  42778. bottom: 88/798
  42779. }
  42780. },
  42781. },
  42782. [
  42783. {
  42784. name: "Normal",
  42785. height: math.unit(182, "cm"),
  42786. default: true
  42787. },
  42788. ]
  42789. ))
  42790. characterMakers.push(() => makeCharacter(
  42791. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  42792. {
  42793. side: {
  42794. height: math.unit(6 + 6/12, "feet"),
  42795. weight: math.unit(1.5, "tons"),
  42796. name: "Side",
  42797. image: {
  42798. source: "./media/characters/zephyr/side.svg",
  42799. extra: 1433/586,
  42800. bottom: 109/1542
  42801. }
  42802. },
  42803. },
  42804. [
  42805. {
  42806. name: "Normal",
  42807. height: math.unit(6 + 6/12, "feet"),
  42808. default: true
  42809. },
  42810. ]
  42811. ))
  42812. characterMakers.push(() => makeCharacter(
  42813. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  42814. {
  42815. side: {
  42816. height: math.unit(1, "feet"),
  42817. name: "Side",
  42818. image: {
  42819. source: "./media/characters/vixye/side.svg",
  42820. extra: 632/541,
  42821. bottom: 0/632
  42822. }
  42823. },
  42824. },
  42825. [
  42826. {
  42827. name: "Normal",
  42828. height: math.unit(1, "feet"),
  42829. default: true
  42830. },
  42831. {
  42832. name: "True",
  42833. height: math.unit(1e15, "multiverses")
  42834. },
  42835. ]
  42836. ))
  42837. characterMakers.push(() => makeCharacter(
  42838. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  42839. {
  42840. front: {
  42841. height: math.unit(8 + 2/12, "feet"),
  42842. weight: math.unit(650, "lb"),
  42843. name: "Front",
  42844. image: {
  42845. source: "./media/characters/darla-mac-lochlainn/front.svg",
  42846. extra: 1174/1137,
  42847. bottom: 82/1256
  42848. }
  42849. },
  42850. back: {
  42851. height: math.unit(8 + 2/12, "feet"),
  42852. weight: math.unit(650, "lb"),
  42853. name: "Back",
  42854. image: {
  42855. source: "./media/characters/darla-mac-lochlainn/back.svg",
  42856. extra: 1204/1157,
  42857. bottom: 46/1250
  42858. }
  42859. },
  42860. },
  42861. [
  42862. {
  42863. name: "Wildform",
  42864. height: math.unit(8 + 2/12, "feet"),
  42865. default: true
  42866. },
  42867. ]
  42868. ))
  42869. characterMakers.push(() => makeCharacter(
  42870. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  42871. {
  42872. front: {
  42873. height: math.unit(18, "feet"),
  42874. name: "Front",
  42875. image: {
  42876. source: "./media/characters/cyphin/front.svg",
  42877. extra: 970/886,
  42878. bottom: 42/1012
  42879. }
  42880. },
  42881. back: {
  42882. height: math.unit(18, "feet"),
  42883. name: "Back",
  42884. image: {
  42885. source: "./media/characters/cyphin/back.svg",
  42886. extra: 1009/894,
  42887. bottom: 24/1033
  42888. }
  42889. },
  42890. head: {
  42891. height: math.unit(5.05, "feet"),
  42892. name: "Head",
  42893. image: {
  42894. source: "./media/characters/cyphin/head.svg"
  42895. }
  42896. },
  42897. tailbud: {
  42898. height: math.unit(5, "feet"),
  42899. name: "Tailbud",
  42900. image: {
  42901. source: "./media/characters/cyphin/tailbud.svg"
  42902. }
  42903. },
  42904. },
  42905. [
  42906. ]
  42907. ))
  42908. characterMakers.push(() => makeCharacter(
  42909. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  42910. {
  42911. side: {
  42912. height: math.unit(10, "feet"),
  42913. weight: math.unit(6, "tons"),
  42914. name: "Side",
  42915. image: {
  42916. source: "./media/characters/raijin/side.svg",
  42917. extra: 1529/613,
  42918. bottom: 337/1866
  42919. }
  42920. },
  42921. },
  42922. [
  42923. {
  42924. name: "Normal",
  42925. height: math.unit(10, "feet"),
  42926. default: true
  42927. },
  42928. ]
  42929. ))
  42930. characterMakers.push(() => makeCharacter(
  42931. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  42932. {
  42933. side: {
  42934. height: math.unit(9, "feet"),
  42935. name: "Side",
  42936. image: {
  42937. source: "./media/characters/nilghais/side.svg",
  42938. extra: 1047/744,
  42939. bottom: 91/1138
  42940. }
  42941. },
  42942. head: {
  42943. height: math.unit(3.14, "feet"),
  42944. name: "Head",
  42945. image: {
  42946. source: "./media/characters/nilghais/head.svg"
  42947. }
  42948. },
  42949. mouth: {
  42950. height: math.unit(4.6, "feet"),
  42951. name: "Mouth",
  42952. image: {
  42953. source: "./media/characters/nilghais/mouth.svg"
  42954. }
  42955. },
  42956. wings: {
  42957. height: math.unit(24, "feet"),
  42958. name: "Wings",
  42959. image: {
  42960. source: "./media/characters/nilghais/wings.svg"
  42961. }
  42962. },
  42963. ass: {
  42964. height: math.unit(6.12, "feet"),
  42965. name: "Ass",
  42966. image: {
  42967. source: "./media/characters/nilghais/ass.svg"
  42968. }
  42969. },
  42970. },
  42971. [
  42972. {
  42973. name: "Normal",
  42974. height: math.unit(9, "feet"),
  42975. default: true
  42976. },
  42977. ]
  42978. ))
  42979. characterMakers.push(() => makeCharacter(
  42980. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  42981. {
  42982. regular: {
  42983. height: math.unit(16 + 2/12, "feet"),
  42984. weight: math.unit(2300, "lb"),
  42985. name: "Regular",
  42986. image: {
  42987. source: "./media/characters/zolgar/regular.svg",
  42988. extra: 1246/1004,
  42989. bottom: 124/1370
  42990. }
  42991. },
  42992. boxers: {
  42993. height: math.unit(16 + 2/12, "feet"),
  42994. weight: math.unit(2300, "lb"),
  42995. name: "Boxers",
  42996. image: {
  42997. source: "./media/characters/zolgar/boxers.svg",
  42998. extra: 1246/1004,
  42999. bottom: 124/1370
  43000. }
  43001. },
  43002. armored: {
  43003. height: math.unit(16 + 2/12, "feet"),
  43004. weight: math.unit(2300, "lb"),
  43005. name: "Armored",
  43006. image: {
  43007. source: "./media/characters/zolgar/armored.svg",
  43008. extra: 1246/1004,
  43009. bottom: 124/1370
  43010. }
  43011. },
  43012. goth: {
  43013. height: math.unit(16 + 2/12, "feet"),
  43014. weight: math.unit(2300, "lb"),
  43015. name: "Goth",
  43016. image: {
  43017. source: "./media/characters/zolgar/goth.svg",
  43018. extra: 1246/1004,
  43019. bottom: 124/1370
  43020. }
  43021. },
  43022. },
  43023. [
  43024. {
  43025. name: "Shrunken Down",
  43026. height: math.unit(9 + 2/12, "feet")
  43027. },
  43028. {
  43029. name: "Normal",
  43030. height: math.unit(16 + 2/12, "feet"),
  43031. default: true
  43032. },
  43033. ]
  43034. ))
  43035. characterMakers.push(() => makeCharacter(
  43036. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  43037. {
  43038. front: {
  43039. height: math.unit(6, "feet"),
  43040. weight: math.unit(168, "lb"),
  43041. name: "Front",
  43042. image: {
  43043. source: "./media/characters/luca/front.svg",
  43044. extra: 841/667,
  43045. bottom: 102/943
  43046. }
  43047. },
  43048. },
  43049. [
  43050. {
  43051. name: "Normal",
  43052. height: math.unit(6, "feet"),
  43053. default: true
  43054. },
  43055. ]
  43056. ))
  43057. characterMakers.push(() => makeCharacter(
  43058. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  43059. {
  43060. side: {
  43061. height: math.unit(7 + 3/12, "feet"),
  43062. weight: math.unit(312, "lb"),
  43063. name: "Side",
  43064. image: {
  43065. source: "./media/characters/zezo/side.svg",
  43066. extra: 1192/1067,
  43067. bottom: 63/1255
  43068. }
  43069. },
  43070. },
  43071. [
  43072. {
  43073. name: "Normal",
  43074. height: math.unit(7 + 3/12, "feet"),
  43075. default: true
  43076. },
  43077. ]
  43078. ))
  43079. characterMakers.push(() => makeCharacter(
  43080. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  43081. {
  43082. front: {
  43083. height: math.unit(5 + 5/12, "feet"),
  43084. weight: math.unit(170, "lb"),
  43085. name: "Front",
  43086. image: {
  43087. source: "./media/characters/mayso/front.svg",
  43088. extra: 1215/1108,
  43089. bottom: 16/1231
  43090. }
  43091. },
  43092. },
  43093. [
  43094. {
  43095. name: "Normal",
  43096. height: math.unit(5 + 5/12, "feet"),
  43097. default: true
  43098. },
  43099. ]
  43100. ))
  43101. characterMakers.push(() => makeCharacter(
  43102. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  43103. {
  43104. front: {
  43105. height: math.unit(4 + 3/12, "feet"),
  43106. weight: math.unit(80, "lb"),
  43107. name: "Front",
  43108. image: {
  43109. source: "./media/characters/hess/front.svg",
  43110. extra: 1200/1123,
  43111. bottom: 16/1216
  43112. }
  43113. },
  43114. },
  43115. [
  43116. {
  43117. name: "Normal",
  43118. height: math.unit(4 + 3/12, "feet"),
  43119. default: true
  43120. },
  43121. ]
  43122. ))
  43123. characterMakers.push(() => makeCharacter(
  43124. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  43125. {
  43126. front: {
  43127. height: math.unit(1.9, "meters"),
  43128. name: "Front",
  43129. image: {
  43130. source: "./media/characters/ashgar/front.svg",
  43131. extra: 1177/1146,
  43132. bottom: 99/1276
  43133. }
  43134. },
  43135. back: {
  43136. height: math.unit(1.9, "meters"),
  43137. name: "Back",
  43138. image: {
  43139. source: "./media/characters/ashgar/back.svg",
  43140. extra: 1201/1183,
  43141. bottom: 53/1254
  43142. }
  43143. },
  43144. feral: {
  43145. height: math.unit(1.4, "meters"),
  43146. name: "Feral",
  43147. image: {
  43148. source: "./media/characters/ashgar/feral.svg",
  43149. extra: 370/345,
  43150. bottom: 45/415
  43151. }
  43152. },
  43153. },
  43154. [
  43155. {
  43156. name: "Normal",
  43157. height: math.unit(1.9, "meters"),
  43158. default: true
  43159. },
  43160. ]
  43161. ))
  43162. characterMakers.push(() => makeCharacter(
  43163. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  43164. {
  43165. regular: {
  43166. height: math.unit(6, "feet"),
  43167. weight: math.unit(220, "lb"),
  43168. name: "Regular",
  43169. image: {
  43170. source: "./media/characters/phillip/regular.svg",
  43171. extra: 1373/1277,
  43172. bottom: 75/1448
  43173. }
  43174. },
  43175. dressed: {
  43176. height: math.unit(6, "feet"),
  43177. weight: math.unit(220, "lb"),
  43178. name: "Dressed",
  43179. image: {
  43180. source: "./media/characters/phillip/dressed.svg",
  43181. extra: 1373/1277,
  43182. bottom: 75/1448
  43183. }
  43184. },
  43185. paw: {
  43186. height: math.unit(1.44, "feet"),
  43187. name: "Paw",
  43188. image: {
  43189. source: "./media/characters/phillip/paw.svg"
  43190. }
  43191. },
  43192. },
  43193. [
  43194. {
  43195. name: "Normal",
  43196. height: math.unit(6, "feet"),
  43197. default: true
  43198. },
  43199. ]
  43200. ))
  43201. characterMakers.push(() => makeCharacter(
  43202. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  43203. {
  43204. side: {
  43205. height: math.unit(42, "feet"),
  43206. name: "Side",
  43207. image: {
  43208. source: "./media/characters/uvula/side.svg",
  43209. extra: 683/586,
  43210. bottom: 60/743
  43211. }
  43212. },
  43213. front: {
  43214. height: math.unit(42, "feet"),
  43215. name: "Front",
  43216. image: {
  43217. source: "./media/characters/uvula/front.svg",
  43218. extra: 705/613,
  43219. bottom: 54/759
  43220. }
  43221. },
  43222. maw: {
  43223. height: math.unit(23.5, "feet"),
  43224. name: "Maw",
  43225. image: {
  43226. source: "./media/characters/uvula/maw.svg"
  43227. }
  43228. },
  43229. },
  43230. [
  43231. {
  43232. name: "Original Size",
  43233. height: math.unit(14, "inches")
  43234. },
  43235. {
  43236. name: "Human Size",
  43237. height: math.unit(6, "feet")
  43238. },
  43239. {
  43240. name: "Big",
  43241. height: math.unit(42, "feet"),
  43242. default: true
  43243. },
  43244. {
  43245. name: "Bigger",
  43246. height: math.unit(100, "feet")
  43247. },
  43248. ]
  43249. ))
  43250. characterMakers.push(() => makeCharacter(
  43251. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  43252. {
  43253. front: {
  43254. height: math.unit(5 + 11/12, "feet"),
  43255. name: "Front",
  43256. image: {
  43257. source: "./media/characters/lannah/front.svg",
  43258. extra: 1208/1113,
  43259. bottom: 97/1305
  43260. }
  43261. },
  43262. },
  43263. [
  43264. {
  43265. name: "Normal",
  43266. height: math.unit(5 + 11/12, "feet"),
  43267. default: true
  43268. },
  43269. ]
  43270. ))
  43271. characterMakers.push(() => makeCharacter(
  43272. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  43273. {
  43274. front: {
  43275. height: math.unit(6 + 3/12, "feet"),
  43276. weight: math.unit(3.5, "tons"),
  43277. name: "Front",
  43278. image: {
  43279. source: "./media/characters/emberflame/front.svg",
  43280. extra: 1198/672,
  43281. bottom: 82/1280
  43282. }
  43283. },
  43284. side: {
  43285. height: math.unit(6 + 3/12, "feet"),
  43286. weight: math.unit(3.5, "tons"),
  43287. name: "Side",
  43288. image: {
  43289. source: "./media/characters/emberflame/side.svg",
  43290. extra: 938/527,
  43291. bottom: 56/994
  43292. }
  43293. },
  43294. },
  43295. [
  43296. {
  43297. name: "Normal",
  43298. height: math.unit(6 + 3/12, "feet"),
  43299. default: true
  43300. },
  43301. ]
  43302. ))
  43303. characterMakers.push(() => makeCharacter(
  43304. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  43305. {
  43306. side: {
  43307. height: math.unit(17.5, "feet"),
  43308. weight: math.unit(35, "tons"),
  43309. name: "Side",
  43310. image: {
  43311. source: "./media/characters/sophie-ambrose/side.svg",
  43312. extra: 1573/1242,
  43313. bottom: 71/1644
  43314. }
  43315. },
  43316. maw: {
  43317. height: math.unit(7.4, "feet"),
  43318. name: "Maw",
  43319. image: {
  43320. source: "./media/characters/sophie-ambrose/maw.svg"
  43321. }
  43322. },
  43323. },
  43324. [
  43325. {
  43326. name: "Normal",
  43327. height: math.unit(17.5, "feet"),
  43328. default: true
  43329. },
  43330. ]
  43331. ))
  43332. characterMakers.push(() => makeCharacter(
  43333. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  43334. {
  43335. front: {
  43336. height: math.unit(280, "feet"),
  43337. weight: math.unit(550, "tons"),
  43338. name: "Front",
  43339. image: {
  43340. source: "./media/characters/king-mugi/front.svg",
  43341. extra: 1102/947,
  43342. bottom: 104/1206
  43343. }
  43344. },
  43345. },
  43346. [
  43347. {
  43348. name: "King Mugi",
  43349. height: math.unit(280, "feet"),
  43350. default: true
  43351. },
  43352. ]
  43353. ))
  43354. characterMakers.push(() => makeCharacter(
  43355. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  43356. {
  43357. front: {
  43358. height: math.unit(64, "meters"),
  43359. name: "Front",
  43360. image: {
  43361. source: "./media/characters/nova-fox/front.svg",
  43362. extra: 1310/1246,
  43363. bottom: 65/1375
  43364. }
  43365. },
  43366. },
  43367. [
  43368. {
  43369. name: "Macro",
  43370. height: math.unit(64, "meters"),
  43371. default: true
  43372. },
  43373. ]
  43374. ))
  43375. characterMakers.push(() => makeCharacter(
  43376. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  43377. {
  43378. front: {
  43379. height: math.unit(6 + 3/12, "feet"),
  43380. weight: math.unit(170, "lb"),
  43381. name: "Front",
  43382. image: {
  43383. source: "./media/characters/sam-bat/front.svg",
  43384. extra: 1601/1411,
  43385. bottom: 125/1726
  43386. }
  43387. },
  43388. back: {
  43389. height: math.unit(6 + 3/12, "feet"),
  43390. weight: math.unit(170, "lb"),
  43391. name: "Back",
  43392. image: {
  43393. source: "./media/characters/sam-bat/back.svg",
  43394. extra: 1577/1405,
  43395. bottom: 58/1635
  43396. }
  43397. },
  43398. },
  43399. [
  43400. {
  43401. name: "Normal",
  43402. height: math.unit(6 + 3/12, "feet"),
  43403. default: true
  43404. },
  43405. ]
  43406. ))
  43407. characterMakers.push(() => makeCharacter(
  43408. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  43409. {
  43410. front: {
  43411. height: math.unit(59, "feet"),
  43412. weight: math.unit(40000, "lb"),
  43413. name: "Front",
  43414. image: {
  43415. source: "./media/characters/inari/front.svg",
  43416. extra: 1884/1350,
  43417. bottom: 95/1979
  43418. }
  43419. },
  43420. },
  43421. [
  43422. {
  43423. name: "Gigantamax",
  43424. height: math.unit(59, "feet"),
  43425. default: true
  43426. },
  43427. ]
  43428. ))
  43429. characterMakers.push(() => makeCharacter(
  43430. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  43431. {
  43432. front: {
  43433. height: math.unit(5 + 8/12, "feet"),
  43434. name: "Front",
  43435. image: {
  43436. source: "./media/characters/elizabeth/front.svg",
  43437. extra: 1395/1298,
  43438. bottom: 54/1449
  43439. }
  43440. },
  43441. mouth: {
  43442. height: math.unit(1.97, "feet"),
  43443. name: "Mouth",
  43444. image: {
  43445. source: "./media/characters/elizabeth/mouth.svg"
  43446. }
  43447. },
  43448. foot: {
  43449. height: math.unit(1.17, "feet"),
  43450. name: "Foot",
  43451. image: {
  43452. source: "./media/characters/elizabeth/foot.svg"
  43453. }
  43454. },
  43455. },
  43456. [
  43457. {
  43458. name: "Normal",
  43459. height: math.unit(5 + 8/12, "feet"),
  43460. default: true
  43461. },
  43462. {
  43463. name: "Minimacro",
  43464. height: math.unit(18, "feet")
  43465. },
  43466. {
  43467. name: "Macro",
  43468. height: math.unit(180, "feet")
  43469. },
  43470. ]
  43471. ))
  43472. characterMakers.push(() => makeCharacter(
  43473. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  43474. {
  43475. front: {
  43476. height: math.unit(5 + 2/12, "feet"),
  43477. name: "Front",
  43478. image: {
  43479. source: "./media/characters/october-gossamer/front.svg",
  43480. extra: 505/454,
  43481. bottom: 7/512
  43482. }
  43483. },
  43484. back: {
  43485. height: math.unit(5 + 2/12, "feet"),
  43486. name: "Back",
  43487. image: {
  43488. source: "./media/characters/october-gossamer/back.svg",
  43489. extra: 501/454,
  43490. bottom: 11/512
  43491. }
  43492. },
  43493. },
  43494. [
  43495. {
  43496. name: "Normal",
  43497. height: math.unit(5 + 2/12, "feet"),
  43498. default: true
  43499. },
  43500. ]
  43501. ))
  43502. characterMakers.push(() => makeCharacter(
  43503. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  43504. {
  43505. front: {
  43506. height: math.unit(5, "feet"),
  43507. name: "Front",
  43508. image: {
  43509. source: "./media/characters/epiglottis/front.svg",
  43510. extra: 923/849,
  43511. bottom: 17/940
  43512. }
  43513. },
  43514. },
  43515. [
  43516. {
  43517. name: "Original Size",
  43518. height: math.unit(10, "inches")
  43519. },
  43520. {
  43521. name: "Human Size",
  43522. height: math.unit(5, "feet"),
  43523. default: true
  43524. },
  43525. {
  43526. name: "Big",
  43527. height: math.unit(25, "feet")
  43528. },
  43529. {
  43530. name: "Bigger",
  43531. height: math.unit(50, "feet")
  43532. },
  43533. {
  43534. name: "oh lawd",
  43535. height: math.unit(75, "feet")
  43536. },
  43537. ]
  43538. ))
  43539. characterMakers.push(() => makeCharacter(
  43540. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  43541. {
  43542. front: {
  43543. height: math.unit(2 + 4/12, "feet"),
  43544. weight: math.unit(60, "lb"),
  43545. name: "Front",
  43546. image: {
  43547. source: "./media/characters/lerm/front.svg",
  43548. extra: 796/790,
  43549. bottom: 79/875
  43550. }
  43551. },
  43552. },
  43553. [
  43554. {
  43555. name: "Normal",
  43556. height: math.unit(2 + 4/12, "feet"),
  43557. default: true
  43558. },
  43559. ]
  43560. ))
  43561. characterMakers.push(() => makeCharacter(
  43562. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  43563. {
  43564. front: {
  43565. height: math.unit(5.5, "feet"),
  43566. weight: math.unit(130, "lb"),
  43567. name: "Front",
  43568. image: {
  43569. source: "./media/characters/xena-nebadon/front.svg",
  43570. extra: 1828/1730,
  43571. bottom: 79/1907
  43572. }
  43573. },
  43574. },
  43575. [
  43576. {
  43577. name: "Tiny Puppy",
  43578. height: math.unit(3, "inches")
  43579. },
  43580. {
  43581. name: "Normal",
  43582. height: math.unit(5.5, "feet"),
  43583. default: true
  43584. },
  43585. {
  43586. name: "Lotta Lady",
  43587. height: math.unit(12, "feet")
  43588. },
  43589. {
  43590. name: "Pretty Big",
  43591. height: math.unit(100, "feet")
  43592. },
  43593. {
  43594. name: "Big",
  43595. height: math.unit(500, "feet")
  43596. },
  43597. {
  43598. name: "Skyscraper Toys",
  43599. height: math.unit(2500, "feet")
  43600. },
  43601. {
  43602. name: "Plane Catcher",
  43603. height: math.unit(8, "miles")
  43604. },
  43605. {
  43606. name: "Planet Toys",
  43607. height: math.unit(15, "earths")
  43608. },
  43609. {
  43610. name: "Stardust",
  43611. height: math.unit(0.25, "galaxies")
  43612. },
  43613. {
  43614. name: "Snacks",
  43615. height: math.unit(70, "universes")
  43616. },
  43617. ]
  43618. ))
  43619. characterMakers.push(() => makeCharacter(
  43620. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  43621. {
  43622. front: {
  43623. height: math.unit(1.6, "meters"),
  43624. weight: math.unit(60, "kg"),
  43625. name: "Front",
  43626. image: {
  43627. source: "./media/characters/bounty/front.svg",
  43628. extra: 1426/1308,
  43629. bottom: 15/1441
  43630. }
  43631. },
  43632. back: {
  43633. height: math.unit(1.6, "meters"),
  43634. weight: math.unit(60, "kg"),
  43635. name: "Back",
  43636. image: {
  43637. source: "./media/characters/bounty/back.svg",
  43638. extra: 1417/1307,
  43639. bottom: 8/1425
  43640. }
  43641. },
  43642. },
  43643. [
  43644. {
  43645. name: "Normal",
  43646. height: math.unit(1.6, "meters"),
  43647. default: true
  43648. },
  43649. {
  43650. name: "Macro",
  43651. height: math.unit(300, "meters")
  43652. },
  43653. ]
  43654. ))
  43655. characterMakers.push(() => makeCharacter(
  43656. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  43657. {
  43658. front: {
  43659. height: math.unit(2 + 8/12, "feet"),
  43660. weight: math.unit(15, "lb"),
  43661. name: "Front",
  43662. image: {
  43663. source: "./media/characters/mochi/front.svg",
  43664. extra: 1022/852,
  43665. bottom: 435/1457
  43666. }
  43667. },
  43668. back: {
  43669. height: math.unit(2 + 8/12, "feet"),
  43670. weight: math.unit(15, "lb"),
  43671. name: "Back",
  43672. image: {
  43673. source: "./media/characters/mochi/back.svg",
  43674. extra: 1335/1119,
  43675. bottom: 39/1374
  43676. }
  43677. },
  43678. bird: {
  43679. height: math.unit(2 + 8/12, "feet"),
  43680. weight: math.unit(15, "lb"),
  43681. name: "Bird",
  43682. image: {
  43683. source: "./media/characters/mochi/bird.svg",
  43684. extra: 1251/1113,
  43685. bottom: 178/1429
  43686. }
  43687. },
  43688. kaiju: {
  43689. height: math.unit(154, "feet"),
  43690. weight: math.unit(1e7, "lb"),
  43691. name: "Kaiju",
  43692. image: {
  43693. source: "./media/characters/mochi/kaiju.svg",
  43694. extra: 460/324,
  43695. bottom: 40/500
  43696. }
  43697. },
  43698. head: {
  43699. height: math.unit(1.21, "feet"),
  43700. name: "Head",
  43701. image: {
  43702. source: "./media/characters/mochi/head.svg"
  43703. }
  43704. },
  43705. alternateTail: {
  43706. height: math.unit(2 + 8/12, "feet"),
  43707. weight: math.unit(45, "lb"),
  43708. name: "Alternate Tail",
  43709. image: {
  43710. source: "./media/characters/mochi/alternate-tail.svg",
  43711. extra: 139/76,
  43712. bottom: 45/184
  43713. }
  43714. },
  43715. },
  43716. [
  43717. {
  43718. name: "Micro",
  43719. height: math.unit(2, "inches")
  43720. },
  43721. {
  43722. name: "Normal",
  43723. height: math.unit(2 + 8/12, "feet"),
  43724. default: true
  43725. },
  43726. {
  43727. name: "Macro",
  43728. height: math.unit(106, "feet")
  43729. },
  43730. ]
  43731. ))
  43732. characterMakers.push(() => makeCharacter(
  43733. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  43734. {
  43735. front: {
  43736. height: math.unit(5.67, "feet"),
  43737. weight: math.unit(135, "lb"),
  43738. name: "Front",
  43739. image: {
  43740. source: "./media/characters/sarel/front.svg",
  43741. extra: 865/788,
  43742. bottom: 97/962
  43743. }
  43744. },
  43745. back: {
  43746. height: math.unit(5.67, "feet"),
  43747. weight: math.unit(135, "lb"),
  43748. name: "Back",
  43749. image: {
  43750. source: "./media/characters/sarel/back.svg",
  43751. extra: 857/777,
  43752. bottom: 32/889
  43753. }
  43754. },
  43755. chozoan: {
  43756. height: math.unit(5.67, "feet"),
  43757. weight: math.unit(135, "lb"),
  43758. name: "Chozoan",
  43759. image: {
  43760. source: "./media/characters/sarel/chozoan.svg",
  43761. extra: 865/788,
  43762. bottom: 97/962
  43763. }
  43764. },
  43765. current: {
  43766. height: math.unit(5.67, "feet"),
  43767. weight: math.unit(135, "lb"),
  43768. name: "Current",
  43769. image: {
  43770. source: "./media/characters/sarel/current.svg",
  43771. extra: 865/788,
  43772. bottom: 97/962
  43773. }
  43774. },
  43775. head: {
  43776. height: math.unit(1.77, "feet"),
  43777. name: "Head",
  43778. image: {
  43779. source: "./media/characters/sarel/head.svg"
  43780. }
  43781. },
  43782. claws: {
  43783. height: math.unit(1.8, "feet"),
  43784. name: "Claws",
  43785. image: {
  43786. source: "./media/characters/sarel/claws.svg"
  43787. }
  43788. },
  43789. clawsAlt: {
  43790. height: math.unit(1.8, "feet"),
  43791. name: "Claws-alt",
  43792. image: {
  43793. source: "./media/characters/sarel/claws-alt.svg"
  43794. }
  43795. },
  43796. },
  43797. [
  43798. {
  43799. name: "Normal",
  43800. height: math.unit(5.67, "feet"),
  43801. default: true
  43802. },
  43803. ]
  43804. ))
  43805. characterMakers.push(() => makeCharacter(
  43806. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  43807. {
  43808. front: {
  43809. height: math.unit(5500, "feet"),
  43810. name: "Front",
  43811. image: {
  43812. source: "./media/characters/alyonia/front.svg",
  43813. extra: 1200/1135,
  43814. bottom: 29/1229
  43815. }
  43816. },
  43817. back: {
  43818. height: math.unit(5500, "feet"),
  43819. name: "Back",
  43820. image: {
  43821. source: "./media/characters/alyonia/back.svg",
  43822. extra: 1205/1138,
  43823. bottom: 10/1215
  43824. }
  43825. },
  43826. },
  43827. [
  43828. {
  43829. name: "Small",
  43830. height: math.unit(10, "feet")
  43831. },
  43832. {
  43833. name: "Macro",
  43834. height: math.unit(500, "feet")
  43835. },
  43836. {
  43837. name: "Mega Macro",
  43838. height: math.unit(5500, "feet"),
  43839. default: true
  43840. },
  43841. {
  43842. name: "Mega Macro+",
  43843. height: math.unit(500000, "feet")
  43844. },
  43845. {
  43846. name: "Giga Macro",
  43847. height: math.unit(3000, "miles")
  43848. },
  43849. {
  43850. name: "Tera Macro",
  43851. height: math.unit(2.8e6, "miles")
  43852. },
  43853. {
  43854. name: "Galactic",
  43855. height: math.unit(120000, "lightyears")
  43856. },
  43857. ]
  43858. ))
  43859. characterMakers.push(() => makeCharacter(
  43860. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  43861. {
  43862. werewolf: {
  43863. height: math.unit(8, "feet"),
  43864. weight: math.unit(425, "lb"),
  43865. name: "Werewolf",
  43866. image: {
  43867. source: "./media/characters/autumn/werewolf.svg",
  43868. extra: 2154/2031,
  43869. bottom: 160/2314
  43870. }
  43871. },
  43872. human: {
  43873. height: math.unit(5 + 8/12, "feet"),
  43874. weight: math.unit(150, "lb"),
  43875. name: "Human",
  43876. image: {
  43877. source: "./media/characters/autumn/human.svg",
  43878. extra: 1200/1149,
  43879. bottom: 30/1230
  43880. }
  43881. },
  43882. },
  43883. [
  43884. {
  43885. name: "Normal",
  43886. height: math.unit(8, "feet"),
  43887. default: true
  43888. },
  43889. ]
  43890. ))
  43891. characterMakers.push(() => makeCharacter(
  43892. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  43893. {
  43894. front: {
  43895. height: math.unit(8 + 5/12, "feet"),
  43896. weight: math.unit(825, "lb"),
  43897. name: "Front",
  43898. image: {
  43899. source: "./media/characters/cobalt-charizard/front.svg",
  43900. extra: 1268/1155,
  43901. bottom: 122/1390
  43902. }
  43903. },
  43904. side: {
  43905. height: math.unit(8 + 5/12, "feet"),
  43906. weight: math.unit(825, "lb"),
  43907. name: "Side",
  43908. image: {
  43909. source: "./media/characters/cobalt-charizard/side.svg",
  43910. extra: 1348/1257,
  43911. bottom: 58/1406
  43912. }
  43913. },
  43914. gMax: {
  43915. height: math.unit(134 + 11/12, "feet"),
  43916. name: "G-Max",
  43917. image: {
  43918. source: "./media/characters/cobalt-charizard/g-max.svg",
  43919. extra: 1835/1541,
  43920. bottom: 151/1986
  43921. }
  43922. },
  43923. },
  43924. [
  43925. {
  43926. name: "Normal",
  43927. height: math.unit(8 + 5/12, "feet"),
  43928. default: true
  43929. },
  43930. ]
  43931. ))
  43932. characterMakers.push(() => makeCharacter(
  43933. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  43934. {
  43935. front: {
  43936. height: math.unit(6 + 3/12, "feet"),
  43937. weight: math.unit(210, "lb"),
  43938. name: "Front",
  43939. image: {
  43940. source: "./media/characters/stella/front.svg",
  43941. extra: 3549/3335,
  43942. bottom: 51/3600
  43943. }
  43944. },
  43945. },
  43946. [
  43947. {
  43948. name: "Normal",
  43949. height: math.unit(6 + 3/12, "feet"),
  43950. default: true
  43951. },
  43952. ]
  43953. ))
  43954. characterMakers.push(() => makeCharacter(
  43955. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  43956. {
  43957. front: {
  43958. height: math.unit(5, "feet"),
  43959. weight: math.unit(90, "lb"),
  43960. name: "Front",
  43961. image: {
  43962. source: "./media/characters/riley-bishop/front.svg",
  43963. extra: 1450/1428,
  43964. bottom: 152/1602
  43965. }
  43966. },
  43967. },
  43968. [
  43969. {
  43970. name: "Normal",
  43971. height: math.unit(5, "feet"),
  43972. default: true
  43973. },
  43974. ]
  43975. ))
  43976. characterMakers.push(() => makeCharacter(
  43977. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  43978. {
  43979. side: {
  43980. height: math.unit(8 + 2/12, "feet"),
  43981. weight: math.unit(500, "kg"),
  43982. name: "Side",
  43983. image: {
  43984. source: "./media/characters/theo-arcanine/side.svg",
  43985. extra: 1342/1074,
  43986. bottom: 111/1453
  43987. }
  43988. },
  43989. },
  43990. [
  43991. {
  43992. name: "Normal",
  43993. height: math.unit(8 + 2/12, "feet"),
  43994. default: true
  43995. },
  43996. ]
  43997. ))
  43998. characterMakers.push(() => makeCharacter(
  43999. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  44000. {
  44001. front: {
  44002. height: math.unit(4, "feet"),
  44003. name: "Front",
  44004. image: {
  44005. source: "./media/characters/kali/front.svg",
  44006. extra: 1921/1357,
  44007. bottom: 70/1991
  44008. }
  44009. },
  44010. },
  44011. [
  44012. {
  44013. name: "Normal",
  44014. height: math.unit(4, "feet"),
  44015. default: true
  44016. },
  44017. {
  44018. name: "Macro",
  44019. height: math.unit(32, "meters")
  44020. },
  44021. {
  44022. name: "Macro+",
  44023. height: math.unit(150, "meters")
  44024. },
  44025. {
  44026. name: "Megamacro",
  44027. height: math.unit(7500, "meters")
  44028. },
  44029. {
  44030. name: "Megamacro+",
  44031. height: math.unit(80, "kilometers")
  44032. },
  44033. ]
  44034. ))
  44035. characterMakers.push(() => makeCharacter(
  44036. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  44037. {
  44038. side: {
  44039. height: math.unit(5 + 11/12, "feet"),
  44040. weight: math.unit(236, "lb"),
  44041. name: "Side",
  44042. image: {
  44043. source: "./media/characters/gapp/side.svg",
  44044. extra: 775/340,
  44045. bottom: 58/833
  44046. }
  44047. },
  44048. mouth: {
  44049. height: math.unit(2.98, "feet"),
  44050. name: "Mouth",
  44051. image: {
  44052. source: "./media/characters/gapp/mouth.svg"
  44053. }
  44054. },
  44055. },
  44056. [
  44057. {
  44058. name: "Normal",
  44059. height: math.unit(5 + 1/12, "feet"),
  44060. default: true
  44061. },
  44062. ]
  44063. ))
  44064. characterMakers.push(() => makeCharacter(
  44065. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  44066. {
  44067. front: {
  44068. height: math.unit(6, "feet"),
  44069. name: "Front",
  44070. image: {
  44071. source: "./media/characters/persephone/front.svg",
  44072. extra: 1895/1717,
  44073. bottom: 96/1991
  44074. }
  44075. },
  44076. back: {
  44077. height: math.unit(6, "feet"),
  44078. name: "Back",
  44079. image: {
  44080. source: "./media/characters/persephone/back.svg",
  44081. extra: 1868/1679,
  44082. bottom: 26/1894
  44083. }
  44084. },
  44085. casual: {
  44086. height: math.unit(6, "feet"),
  44087. name: "Casual",
  44088. image: {
  44089. source: "./media/characters/persephone/casual.svg",
  44090. extra: 1713/1541,
  44091. bottom: 76/1789
  44092. }
  44093. },
  44094. },
  44095. [
  44096. {
  44097. name: "Human Size",
  44098. height: math.unit(6, "feet")
  44099. },
  44100. {
  44101. name: "Big Steppy",
  44102. height: math.unit(600, "meters"),
  44103. default: true
  44104. },
  44105. {
  44106. name: "Galaxy Brain",
  44107. height: math.unit(1, "zettameter")
  44108. },
  44109. ]
  44110. ))
  44111. characterMakers.push(() => makeCharacter(
  44112. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  44113. {
  44114. front: {
  44115. height: math.unit(1.85, "meters"),
  44116. name: "Front",
  44117. image: {
  44118. source: "./media/characters/riley-foxthing/front.svg",
  44119. extra: 1495/1354,
  44120. bottom: 122/1617
  44121. }
  44122. },
  44123. frontAlt: {
  44124. height: math.unit(1.85, "meters"),
  44125. name: "Front (Alt)",
  44126. image: {
  44127. source: "./media/characters/riley-foxthing/front-alt.svg",
  44128. extra: 1572/1389,
  44129. bottom: 116/1688
  44130. }
  44131. },
  44132. },
  44133. [
  44134. {
  44135. name: "Normal Sized",
  44136. height: math.unit(1.85, "meters"),
  44137. default: true
  44138. },
  44139. {
  44140. name: "Quite Sizable",
  44141. height: math.unit(5, "meters")
  44142. },
  44143. {
  44144. name: "Rather Large",
  44145. height: math.unit(20, "meters")
  44146. },
  44147. {
  44148. name: "Macro",
  44149. height: math.unit(450, "meters")
  44150. },
  44151. {
  44152. name: "Giga",
  44153. height: math.unit(5, "km")
  44154. },
  44155. ]
  44156. ))
  44157. characterMakers.push(() => makeCharacter(
  44158. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  44159. {
  44160. front: {
  44161. height: math.unit(6, "feet"),
  44162. weight: math.unit(200, "lb"),
  44163. name: "Front",
  44164. image: {
  44165. source: "./media/characters/blizzard/front.svg",
  44166. extra: 1136/990,
  44167. bottom: 136/1272
  44168. }
  44169. },
  44170. back: {
  44171. height: math.unit(6, "feet"),
  44172. weight: math.unit(200, "lb"),
  44173. name: "Back",
  44174. image: {
  44175. source: "./media/characters/blizzard/back.svg",
  44176. extra: 1175/1034,
  44177. bottom: 97/1272
  44178. }
  44179. },
  44180. sitting: {
  44181. height: math.unit(3.725, "feet"),
  44182. weight: math.unit(200, "lb"),
  44183. name: "Sitting",
  44184. image: {
  44185. source: "./media/characters/blizzard/sitting.svg",
  44186. extra: 581/485,
  44187. bottom: 90/671
  44188. }
  44189. },
  44190. frontWizard: {
  44191. height: math.unit(7.9, "feet"),
  44192. weight: math.unit(200, "lb"),
  44193. name: "Front (Wizard)",
  44194. image: {
  44195. source: "./media/characters/blizzard/front-wizard.svg"
  44196. }
  44197. },
  44198. backWizard: {
  44199. height: math.unit(7.9, "feet"),
  44200. weight: math.unit(200, "lb"),
  44201. name: "Back (Wizard)",
  44202. image: {
  44203. source: "./media/characters/blizzard/back-wizard.svg"
  44204. }
  44205. },
  44206. frontNsfw: {
  44207. height: math.unit(6, "feet"),
  44208. weight: math.unit(200, "lb"),
  44209. name: "Front (NSFW)",
  44210. image: {
  44211. source: "./media/characters/blizzard/front-nsfw.svg",
  44212. extra: 1136/990,
  44213. bottom: 136/1272
  44214. }
  44215. },
  44216. backNsfw: {
  44217. height: math.unit(6, "feet"),
  44218. weight: math.unit(200, "lb"),
  44219. name: "Back (NSFW)",
  44220. image: {
  44221. source: "./media/characters/blizzard/back-nsfw.svg",
  44222. extra: 1175/1034,
  44223. bottom: 97/1272
  44224. }
  44225. },
  44226. sittingNsfw: {
  44227. height: math.unit(3.725, "feet"),
  44228. weight: math.unit(200, "lb"),
  44229. name: "Sitting (NSFW)",
  44230. image: {
  44231. source: "./media/characters/blizzard/sitting-nsfw.svg",
  44232. extra: 581/485,
  44233. bottom: 90/671
  44234. }
  44235. },
  44236. wizardFrontNsfw: {
  44237. height: math.unit(7.9, "feet"),
  44238. weight: math.unit(200, "lb"),
  44239. name: "Wizard (Front, NSFW)",
  44240. image: {
  44241. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  44242. }
  44243. },
  44244. },
  44245. [
  44246. {
  44247. name: "Normal",
  44248. height: math.unit(6, "feet"),
  44249. default: true
  44250. },
  44251. ]
  44252. ))
  44253. characterMakers.push(() => makeCharacter(
  44254. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  44255. {
  44256. front: {
  44257. height: math.unit(5 + 2/12, "feet"),
  44258. name: "Front",
  44259. image: {
  44260. source: "./media/characters/lumi/front.svg",
  44261. extra: 1328/1268,
  44262. bottom: 103/1431
  44263. }
  44264. },
  44265. back: {
  44266. height: math.unit(5 + 2/12, "feet"),
  44267. name: "Back",
  44268. image: {
  44269. source: "./media/characters/lumi/back.svg",
  44270. extra: 1381/1327,
  44271. bottom: 43/1424
  44272. }
  44273. },
  44274. },
  44275. [
  44276. {
  44277. name: "Normal",
  44278. height: math.unit(5 + 2/12, "feet"),
  44279. default: true
  44280. },
  44281. ]
  44282. ))
  44283. characterMakers.push(() => makeCharacter(
  44284. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  44285. {
  44286. front: {
  44287. height: math.unit(5 + 9/12, "feet"),
  44288. name: "Front",
  44289. image: {
  44290. source: "./media/characters/aliya-cotton/front.svg",
  44291. extra: 577/564,
  44292. bottom: 29/606
  44293. }
  44294. },
  44295. },
  44296. [
  44297. {
  44298. name: "Normal",
  44299. height: math.unit(5 + 9/12, "feet"),
  44300. default: true
  44301. },
  44302. ]
  44303. ))
  44304. characterMakers.push(() => makeCharacter(
  44305. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  44306. {
  44307. front: {
  44308. height: math.unit(2.7, "meters"),
  44309. weight: math.unit(25000, "lb"),
  44310. name: "Front",
  44311. image: {
  44312. source: "./media/characters/noah-luxray/front.svg",
  44313. extra: 1644/825,
  44314. bottom: 339/1983
  44315. }
  44316. },
  44317. side: {
  44318. height: math.unit(2.97, "meters"),
  44319. weight: math.unit(25000, "lb"),
  44320. name: "Side",
  44321. image: {
  44322. source: "./media/characters/noah-luxray/side.svg",
  44323. extra: 1319/650,
  44324. bottom: 163/1482
  44325. }
  44326. },
  44327. dick: {
  44328. height: math.unit(7.4, "feet"),
  44329. weight: math.unit(2500, "lb"),
  44330. name: "Dick",
  44331. image: {
  44332. source: "./media/characters/noah-luxray/dick.svg"
  44333. }
  44334. },
  44335. dickAlt: {
  44336. height: math.unit(10.83, "feet"),
  44337. weight: math.unit(2500, "lb"),
  44338. name: "Dick-alt",
  44339. image: {
  44340. source: "./media/characters/noah-luxray/dick-alt.svg"
  44341. }
  44342. },
  44343. },
  44344. [
  44345. {
  44346. name: "BIG",
  44347. height: math.unit(2.7, "meters"),
  44348. default: true
  44349. },
  44350. ]
  44351. ))
  44352. characterMakers.push(() => makeCharacter(
  44353. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  44354. {
  44355. standing: {
  44356. height: math.unit(183, "cm"),
  44357. weight: math.unit(68, "kg"),
  44358. name: "Standing",
  44359. image: {
  44360. source: "./media/characters/arion/standing.svg",
  44361. extra: 1869/1807,
  44362. bottom: 93/1962
  44363. }
  44364. },
  44365. reclining: {
  44366. height: math.unit(70.5, "cm"),
  44367. weight: math.unit(68, "lb"),
  44368. name: "Reclining",
  44369. image: {
  44370. source: "./media/characters/arion/reclining.svg",
  44371. extra: 937/870,
  44372. bottom: 63/1000
  44373. }
  44374. },
  44375. },
  44376. [
  44377. {
  44378. name: "Colossus Size, Low",
  44379. height: math.unit(33, "meters"),
  44380. default: true
  44381. },
  44382. {
  44383. name: "Colossus Size, Mid",
  44384. height: math.unit(52, "meters")
  44385. },
  44386. {
  44387. name: "Colossus Size, High",
  44388. height: math.unit(60, "meters")
  44389. },
  44390. {
  44391. name: "Titan Size, Low",
  44392. height: math.unit(91, "meters"),
  44393. },
  44394. {
  44395. name: "Titan Size, Mid",
  44396. height: math.unit(122, "meters")
  44397. },
  44398. {
  44399. name: "Titan Size, High",
  44400. height: math.unit(162, "meters")
  44401. },
  44402. ]
  44403. ))
  44404. characterMakers.push(() => makeCharacter(
  44405. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  44406. {
  44407. front: {
  44408. height: math.unit(53, "meters"),
  44409. name: "Front",
  44410. image: {
  44411. source: "./media/characters/stellar-marbey/front.svg",
  44412. extra: 1913/1805,
  44413. bottom: 92/2005
  44414. }
  44415. },
  44416. back: {
  44417. height: math.unit(53, "meters"),
  44418. name: "Back",
  44419. image: {
  44420. source: "./media/characters/stellar-marbey/back.svg",
  44421. extra: 1960/1851,
  44422. bottom: 28/1988
  44423. }
  44424. },
  44425. mouth: {
  44426. height: math.unit(3.5, "meters"),
  44427. name: "Mouth",
  44428. image: {
  44429. source: "./media/characters/stellar-marbey/mouth.svg"
  44430. }
  44431. },
  44432. },
  44433. [
  44434. {
  44435. name: "Macro",
  44436. height: math.unit(53, "meters"),
  44437. default: true
  44438. },
  44439. ]
  44440. ))
  44441. characterMakers.push(() => makeCharacter(
  44442. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  44443. {
  44444. front: {
  44445. height: math.unit(8 + 1/12, "feet"),
  44446. weight: math.unit(233, "lb"),
  44447. name: "Front",
  44448. image: {
  44449. source: "./media/characters/matsu/front.svg",
  44450. extra: 832/772,
  44451. bottom: 40/872
  44452. }
  44453. },
  44454. back: {
  44455. height: math.unit(8 + 1/12, "feet"),
  44456. weight: math.unit(233, "lb"),
  44457. name: "Back",
  44458. image: {
  44459. source: "./media/characters/matsu/back.svg",
  44460. extra: 839/780,
  44461. bottom: 47/886
  44462. }
  44463. },
  44464. },
  44465. [
  44466. {
  44467. name: "Normal",
  44468. height: math.unit(8 + 1/12, "feet"),
  44469. default: true
  44470. },
  44471. ]
  44472. ))
  44473. characterMakers.push(() => makeCharacter(
  44474. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  44475. {
  44476. front: {
  44477. height: math.unit(4, "feet"),
  44478. weight: math.unit(148, "lb"),
  44479. name: "Front",
  44480. image: {
  44481. source: "./media/characters/thiz/front.svg",
  44482. extra: 1913/1748,
  44483. bottom: 62/1975
  44484. }
  44485. },
  44486. },
  44487. [
  44488. {
  44489. name: "Normal",
  44490. height: math.unit(4, "feet"),
  44491. default: true
  44492. },
  44493. ]
  44494. ))
  44495. characterMakers.push(() => makeCharacter(
  44496. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  44497. {
  44498. front: {
  44499. height: math.unit(7 + 6/12, "feet"),
  44500. weight: math.unit(267, "lb"),
  44501. name: "Front",
  44502. image: {
  44503. source: "./media/characters/marcel/front.svg",
  44504. extra: 1221/1096,
  44505. bottom: 76/1297
  44506. }
  44507. },
  44508. },
  44509. [
  44510. {
  44511. name: "Normal",
  44512. height: math.unit(7 + 6/12, "feet"),
  44513. default: true
  44514. },
  44515. ]
  44516. ))
  44517. characterMakers.push(() => makeCharacter(
  44518. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  44519. {
  44520. side: {
  44521. height: math.unit(42, "meters"),
  44522. name: "Side",
  44523. image: {
  44524. source: "./media/characters/flake/side.svg",
  44525. extra: 1525/1306,
  44526. bottom: 209/1734
  44527. }
  44528. },
  44529. },
  44530. [
  44531. {
  44532. name: "Normal",
  44533. height: math.unit(42, "meters"),
  44534. default: true
  44535. },
  44536. ]
  44537. ))
  44538. characterMakers.push(() => makeCharacter(
  44539. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  44540. {
  44541. dressed: {
  44542. height: math.unit(6 + 4/12, "feet"),
  44543. weight: math.unit(520, "lb"),
  44544. name: "Dressed",
  44545. image: {
  44546. source: "./media/characters/someonne/dressed.svg",
  44547. extra: 1020/1010,
  44548. bottom: 178/1198
  44549. }
  44550. },
  44551. undressed: {
  44552. height: math.unit(6 + 4/12, "feet"),
  44553. weight: math.unit(520, "lb"),
  44554. name: "Undressed",
  44555. image: {
  44556. source: "./media/characters/someonne/undressed.svg",
  44557. extra: 1019/1014,
  44558. bottom: 169/1188
  44559. }
  44560. },
  44561. },
  44562. [
  44563. {
  44564. name: "Normal",
  44565. height: math.unit(6 + 4/12, "feet"),
  44566. default: true
  44567. },
  44568. ]
  44569. ))
  44570. characterMakers.push(() => makeCharacter(
  44571. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  44572. {
  44573. front: {
  44574. height: math.unit(3, "feet"),
  44575. weight: math.unit(30, "lb"),
  44576. name: "Front",
  44577. image: {
  44578. source: "./media/characters/till/front.svg",
  44579. extra: 892/823,
  44580. bottom: 55/947
  44581. }
  44582. },
  44583. },
  44584. [
  44585. {
  44586. name: "Normal",
  44587. height: math.unit(3, "feet"),
  44588. default: true
  44589. },
  44590. ]
  44591. ))
  44592. characterMakers.push(() => makeCharacter(
  44593. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  44594. {
  44595. front: {
  44596. height: math.unit(9 + 8/12, "feet"),
  44597. weight: math.unit(800, "lb"),
  44598. name: "Front",
  44599. image: {
  44600. source: "./media/characters/sydney-heki/front.svg",
  44601. extra: 1360/1300,
  44602. bottom: 22/1382
  44603. }
  44604. },
  44605. back: {
  44606. height: math.unit(9 + 8/12, "feet"),
  44607. weight: math.unit(800, "lb"),
  44608. name: "Back",
  44609. image: {
  44610. source: "./media/characters/sydney-heki/back.svg",
  44611. extra: 1356/1293,
  44612. bottom: 12/1368
  44613. }
  44614. },
  44615. frontDressed: {
  44616. height: math.unit(9 + 8/12, "feet"),
  44617. weight: math.unit(800, "lb"),
  44618. name: "Front-dressed",
  44619. image: {
  44620. source: "./media/characters/sydney-heki/front-dressed.svg",
  44621. extra: 1360/1300,
  44622. bottom: 22/1382
  44623. }
  44624. },
  44625. },
  44626. [
  44627. {
  44628. name: "Normal",
  44629. height: math.unit(9 + 8/12, "feet"),
  44630. default: true
  44631. },
  44632. {
  44633. name: "Macro",
  44634. height: math.unit(500, "feet")
  44635. },
  44636. {
  44637. name: "Megamacro",
  44638. height: math.unit(3.6, "miles")
  44639. },
  44640. ]
  44641. ))
  44642. characterMakers.push(() => makeCharacter(
  44643. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  44644. {
  44645. front: {
  44646. height: math.unit(200, "cm"),
  44647. weight: math.unit(250, "lb"),
  44648. name: "Front",
  44649. image: {
  44650. source: "./media/characters/fowler-karlsson/front.svg",
  44651. extra: 897/845,
  44652. bottom: 123/1020
  44653. }
  44654. },
  44655. back: {
  44656. height: math.unit(200, "cm"),
  44657. weight: math.unit(250, "lb"),
  44658. name: "Back",
  44659. image: {
  44660. source: "./media/characters/fowler-karlsson/back.svg",
  44661. extra: 999/944,
  44662. bottom: 26/1025
  44663. }
  44664. },
  44665. dick: {
  44666. height: math.unit(1.92, "feet"),
  44667. weight: math.unit(150, "lb"),
  44668. name: "Dick",
  44669. image: {
  44670. source: "./media/characters/fowler-karlsson/dick.svg"
  44671. }
  44672. },
  44673. },
  44674. [
  44675. {
  44676. name: "Normal",
  44677. height: math.unit(200, "cm"),
  44678. default: true
  44679. },
  44680. {
  44681. name: "Smaller Macro",
  44682. height: math.unit(90, "m")
  44683. },
  44684. {
  44685. name: "Macro",
  44686. height: math.unit(150, "m")
  44687. },
  44688. {
  44689. name: "Bigger Macro",
  44690. height: math.unit(300, "m")
  44691. },
  44692. ]
  44693. ))
  44694. characterMakers.push(() => makeCharacter(
  44695. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  44696. {
  44697. side: {
  44698. height: math.unit(8 + 2/12, "feet"),
  44699. weight: math.unit(1, "tonne"),
  44700. name: "Side",
  44701. image: {
  44702. source: "./media/characters/rylide/side.svg",
  44703. extra: 1318/1034,
  44704. bottom: 106/1424
  44705. }
  44706. },
  44707. sitting: {
  44708. height: math.unit(303, "cm"),
  44709. weight: math.unit(1, "tonne"),
  44710. name: "Sitting",
  44711. image: {
  44712. source: "./media/characters/rylide/sitting.svg",
  44713. extra: 1303/1103,
  44714. bottom: 36/1339
  44715. }
  44716. },
  44717. },
  44718. [
  44719. {
  44720. name: "Normal",
  44721. height: math.unit(8 + 2/12, "feet"),
  44722. default: true
  44723. },
  44724. ]
  44725. ))
  44726. characterMakers.push(() => makeCharacter(
  44727. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  44728. {
  44729. front: {
  44730. height: math.unit(5 + 10/12, "feet"),
  44731. weight: math.unit(160, "lb"),
  44732. name: "Front",
  44733. image: {
  44734. source: "./media/characters/pudask/front.svg",
  44735. extra: 1616/1590,
  44736. bottom: 161/1777
  44737. }
  44738. },
  44739. },
  44740. [
  44741. {
  44742. name: "Ferret Height",
  44743. height: math.unit(2 + 5/12, "feet")
  44744. },
  44745. {
  44746. name: "Canon Height",
  44747. height: math.unit(5 + 10/12, "feet"),
  44748. default: true
  44749. },
  44750. ]
  44751. ))
  44752. characterMakers.push(() => makeCharacter(
  44753. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  44754. {
  44755. front: {
  44756. height: math.unit(3 + 6/12, "feet"),
  44757. weight: math.unit(60, "lb"),
  44758. name: "Front",
  44759. image: {
  44760. source: "./media/characters/ramita/front.svg",
  44761. extra: 1402/1232,
  44762. bottom: 62/1464
  44763. }
  44764. },
  44765. dressed: {
  44766. height: math.unit(3 + 6/12, "feet"),
  44767. weight: math.unit(60, "lb"),
  44768. name: "Dressed",
  44769. image: {
  44770. source: "./media/characters/ramita/dressed.svg",
  44771. extra: 1534/1249,
  44772. bottom: 50/1584
  44773. }
  44774. },
  44775. },
  44776. [
  44777. {
  44778. name: "Normal",
  44779. height: math.unit(3 + 6/12, "feet"),
  44780. default: true
  44781. },
  44782. ]
  44783. ))
  44784. characterMakers.push(() => makeCharacter(
  44785. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  44786. {
  44787. front: {
  44788. height: math.unit(8, "feet"),
  44789. name: "Front",
  44790. image: {
  44791. source: "./media/characters/ark/front.svg",
  44792. extra: 772/693,
  44793. bottom: 45/817
  44794. }
  44795. },
  44796. },
  44797. [
  44798. {
  44799. name: "Normal",
  44800. height: math.unit(8, "feet"),
  44801. default: true
  44802. },
  44803. ]
  44804. ))
  44805. characterMakers.push(() => makeCharacter(
  44806. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  44807. {
  44808. front: {
  44809. height: math.unit(6, "feet"),
  44810. weight: math.unit(250, "lb"),
  44811. volume: math.unit(5/8, "gallons"),
  44812. name: "Front",
  44813. image: {
  44814. source: "./media/characters/ludwig-horn/front.svg",
  44815. extra: 1782/1635,
  44816. bottom: 96/1878
  44817. }
  44818. },
  44819. back: {
  44820. height: math.unit(6, "feet"),
  44821. weight: math.unit(250, "lb"),
  44822. volume: math.unit(5/8, "gallons"),
  44823. name: "Back",
  44824. image: {
  44825. source: "./media/characters/ludwig-horn/back.svg",
  44826. extra: 1874/1729,
  44827. bottom: 27/1901
  44828. }
  44829. },
  44830. dick: {
  44831. height: math.unit(1.05, "feet"),
  44832. weight: math.unit(15, "lb"),
  44833. volume: math.unit(5/8, "gallons"),
  44834. name: "Dick",
  44835. image: {
  44836. source: "./media/characters/ludwig-horn/dick.svg"
  44837. }
  44838. },
  44839. },
  44840. [
  44841. {
  44842. name: "Small",
  44843. height: math.unit(6, "feet")
  44844. },
  44845. {
  44846. name: "Typical",
  44847. height: math.unit(12, "feet"),
  44848. default: true
  44849. },
  44850. {
  44851. name: "Building",
  44852. height: math.unit(80, "feet")
  44853. },
  44854. {
  44855. name: "Town",
  44856. height: math.unit(800, "feet")
  44857. },
  44858. {
  44859. name: "Kingdom",
  44860. height: math.unit(80000, "feet")
  44861. },
  44862. {
  44863. name: "Planet",
  44864. height: math.unit(8000000, "feet")
  44865. },
  44866. {
  44867. name: "Universe",
  44868. height: math.unit(8000000000, "feet")
  44869. },
  44870. {
  44871. name: "Transcended",
  44872. height: math.unit(8e27, "feet")
  44873. },
  44874. ]
  44875. ))
  44876. characterMakers.push(() => makeCharacter(
  44877. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  44878. {
  44879. front: {
  44880. height: math.unit(5, "feet"),
  44881. weight: math.unit(50, "kg"),
  44882. name: "Front",
  44883. image: {
  44884. source: "./media/characters/biot-avery/front.svg",
  44885. extra: 1295/1232,
  44886. bottom: 86/1381
  44887. }
  44888. },
  44889. },
  44890. [
  44891. {
  44892. name: "Normal",
  44893. height: math.unit(5, "feet"),
  44894. default: true
  44895. },
  44896. ]
  44897. ))
  44898. characterMakers.push(() => makeCharacter(
  44899. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  44900. {
  44901. front: {
  44902. height: math.unit(6, "feet"),
  44903. name: "Front",
  44904. image: {
  44905. source: "./media/characters/kitsune-kiro/front.svg",
  44906. extra: 1270/1158,
  44907. bottom: 42/1312
  44908. }
  44909. },
  44910. frontAlt: {
  44911. height: math.unit(6, "feet"),
  44912. name: "Front-alt",
  44913. image: {
  44914. source: "./media/characters/kitsune-kiro/front-alt.svg",
  44915. extra: 1130/1081,
  44916. bottom: 36/1166
  44917. }
  44918. },
  44919. },
  44920. [
  44921. {
  44922. name: "Smol",
  44923. height: math.unit(3, "feet")
  44924. },
  44925. {
  44926. name: "Normal",
  44927. height: math.unit(6, "feet"),
  44928. default: true
  44929. },
  44930. ]
  44931. ))
  44932. characterMakers.push(() => makeCharacter(
  44933. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  44934. {
  44935. front: {
  44936. height: math.unit(6, "feet"),
  44937. weight: math.unit(125, "lb"),
  44938. name: "Front",
  44939. image: {
  44940. source: "./media/characters/jack-thatcher/front.svg",
  44941. extra: 1474/1370,
  44942. bottom: 26/1500
  44943. }
  44944. },
  44945. back: {
  44946. height: math.unit(6, "feet"),
  44947. weight: math.unit(125, "lb"),
  44948. name: "Back",
  44949. image: {
  44950. source: "./media/characters/jack-thatcher/back.svg",
  44951. extra: 1489/1384,
  44952. bottom: 18/1507
  44953. }
  44954. },
  44955. },
  44956. [
  44957. {
  44958. name: "Normal",
  44959. height: math.unit(6, "feet"),
  44960. default: true
  44961. },
  44962. {
  44963. name: "Macro",
  44964. height: math.unit(75, "feet")
  44965. },
  44966. {
  44967. name: "Macro-er",
  44968. height: math.unit(250, "feet")
  44969. },
  44970. ]
  44971. ))
  44972. characterMakers.push(() => makeCharacter(
  44973. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  44974. {
  44975. front: {
  44976. height: math.unit(7, "feet"),
  44977. weight: math.unit(110, "kg"),
  44978. name: "Front",
  44979. image: {
  44980. source: "./media/characters/max-hyper/front.svg",
  44981. extra: 1969/1881,
  44982. bottom: 49/2018
  44983. }
  44984. },
  44985. },
  44986. [
  44987. {
  44988. name: "Normal",
  44989. height: math.unit(7, "feet"),
  44990. default: true
  44991. },
  44992. ]
  44993. ))
  44994. characterMakers.push(() => makeCharacter(
  44995. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  44996. {
  44997. front: {
  44998. height: math.unit(5 + 5/12, "feet"),
  44999. weight: math.unit(160, "lb"),
  45000. name: "Front",
  45001. image: {
  45002. source: "./media/characters/spook/front.svg",
  45003. extra: 794/791,
  45004. bottom: 54/848
  45005. }
  45006. },
  45007. back: {
  45008. height: math.unit(5 + 5/12, "feet"),
  45009. weight: math.unit(160, "lb"),
  45010. name: "Back",
  45011. image: {
  45012. source: "./media/characters/spook/back.svg",
  45013. extra: 812/798,
  45014. bottom: 32/844
  45015. }
  45016. },
  45017. },
  45018. [
  45019. {
  45020. name: "Normal",
  45021. height: math.unit(5 + 5/12, "feet"),
  45022. default: true
  45023. },
  45024. ]
  45025. ))
  45026. characterMakers.push(() => makeCharacter(
  45027. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  45028. {
  45029. front: {
  45030. height: math.unit(18, "feet"),
  45031. name: "Front",
  45032. image: {
  45033. source: "./media/characters/xeaduulix/front.svg",
  45034. extra: 1380/1166,
  45035. bottom: 110/1490
  45036. }
  45037. },
  45038. back: {
  45039. height: math.unit(18, "feet"),
  45040. name: "Back",
  45041. image: {
  45042. source: "./media/characters/xeaduulix/back.svg",
  45043. extra: 1592/1170,
  45044. bottom: 128/1720
  45045. }
  45046. },
  45047. frontNsfw: {
  45048. height: math.unit(18, "feet"),
  45049. name: "Front (NSFW)",
  45050. image: {
  45051. source: "./media/characters/xeaduulix/front-nsfw.svg",
  45052. extra: 1380/1166,
  45053. bottom: 110/1490
  45054. }
  45055. },
  45056. backNsfw: {
  45057. height: math.unit(18, "feet"),
  45058. name: "Back (NSFW)",
  45059. image: {
  45060. source: "./media/characters/xeaduulix/back-nsfw.svg",
  45061. extra: 1592/1170,
  45062. bottom: 128/1720
  45063. }
  45064. },
  45065. },
  45066. [
  45067. {
  45068. name: "Normal",
  45069. height: math.unit(18, "feet"),
  45070. default: true
  45071. },
  45072. ]
  45073. ))
  45074. characterMakers.push(() => makeCharacter(
  45075. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  45076. {
  45077. spreadWings: {
  45078. height: math.unit(20, "feet"),
  45079. name: "Spread Wings",
  45080. image: {
  45081. source: "./media/characters/fledge/spread-wings.svg",
  45082. extra: 693/635,
  45083. bottom: 26/719
  45084. }
  45085. },
  45086. front: {
  45087. height: math.unit(20, "feet"),
  45088. name: "Front",
  45089. image: {
  45090. source: "./media/characters/fledge/front.svg",
  45091. extra: 684/637,
  45092. bottom: 18/702
  45093. }
  45094. },
  45095. frontAlt: {
  45096. height: math.unit(20, "feet"),
  45097. name: "Front (Alt)",
  45098. image: {
  45099. source: "./media/characters/fledge/front-alt.svg",
  45100. extra: 708/664,
  45101. bottom: 13/721
  45102. }
  45103. },
  45104. back: {
  45105. height: math.unit(20, "feet"),
  45106. name: "Back",
  45107. image: {
  45108. source: "./media/characters/fledge/back.svg",
  45109. extra: 718/634,
  45110. bottom: 22/740
  45111. }
  45112. },
  45113. head: {
  45114. height: math.unit(5.55, "feet"),
  45115. name: "Head",
  45116. image: {
  45117. source: "./media/characters/fledge/head.svg"
  45118. }
  45119. },
  45120. headAlt: {
  45121. height: math.unit(5.1, "feet"),
  45122. name: "Head (Alt)",
  45123. image: {
  45124. source: "./media/characters/fledge/head-alt.svg"
  45125. }
  45126. },
  45127. },
  45128. [
  45129. {
  45130. name: "Small",
  45131. height: math.unit(6 + 2/12, "feet")
  45132. },
  45133. {
  45134. name: "Big",
  45135. height: math.unit(20, "feet"),
  45136. default: true
  45137. },
  45138. {
  45139. name: "Giant",
  45140. height: math.unit(100, "feet")
  45141. },
  45142. {
  45143. name: "Macro",
  45144. height: math.unit(200, "feet")
  45145. },
  45146. ]
  45147. ))
  45148. characterMakers.push(() => makeCharacter(
  45149. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  45150. {
  45151. front: {
  45152. height: math.unit(1, "meter"),
  45153. name: "Front",
  45154. image: {
  45155. source: "./media/characters/atlas-morenai/front.svg",
  45156. extra: 1275/1043,
  45157. bottom: 19/1294
  45158. }
  45159. },
  45160. back: {
  45161. height: math.unit(1, "meter"),
  45162. name: "Back",
  45163. image: {
  45164. source: "./media/characters/atlas-morenai/back.svg",
  45165. extra: 1141/1001,
  45166. bottom: 25/1166
  45167. }
  45168. },
  45169. },
  45170. [
  45171. {
  45172. name: "Normal",
  45173. height: math.unit(1, "meter"),
  45174. default: true
  45175. },
  45176. {
  45177. name: "Magic-Infused",
  45178. height: math.unit(5, "meters")
  45179. },
  45180. ]
  45181. ))
  45182. characterMakers.push(() => makeCharacter(
  45183. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  45184. {
  45185. front: {
  45186. height: math.unit(5, "meters"),
  45187. name: "Front",
  45188. image: {
  45189. source: "./media/characters/cintia/front.svg",
  45190. extra: 1312/1228,
  45191. bottom: 38/1350
  45192. }
  45193. },
  45194. back: {
  45195. height: math.unit(5, "meters"),
  45196. name: "Back",
  45197. image: {
  45198. source: "./media/characters/cintia/back.svg",
  45199. extra: 1260/1166,
  45200. bottom: 98/1358
  45201. }
  45202. },
  45203. frontDick: {
  45204. height: math.unit(5, "meters"),
  45205. name: "Front (Dick)",
  45206. image: {
  45207. source: "./media/characters/cintia/front-dick.svg",
  45208. extra: 1312/1228,
  45209. bottom: 38/1350
  45210. }
  45211. },
  45212. backDick: {
  45213. height: math.unit(5, "meters"),
  45214. name: "Back (Dick)",
  45215. image: {
  45216. source: "./media/characters/cintia/back-dick.svg",
  45217. extra: 1260/1166,
  45218. bottom: 98/1358
  45219. }
  45220. },
  45221. bust: {
  45222. height: math.unit(1.97, "meters"),
  45223. name: "Bust",
  45224. image: {
  45225. source: "./media/characters/cintia/bust.svg",
  45226. extra: 617/565,
  45227. bottom: 0/617
  45228. }
  45229. },
  45230. },
  45231. [
  45232. {
  45233. name: "Normal",
  45234. height: math.unit(5, "meters"),
  45235. default: true
  45236. },
  45237. ]
  45238. ))
  45239. characterMakers.push(() => makeCharacter(
  45240. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  45241. {
  45242. side: {
  45243. height: math.unit(100, "feet"),
  45244. name: "Side",
  45245. image: {
  45246. source: "./media/characters/denora/side.svg",
  45247. extra: 875/803,
  45248. bottom: 9/884
  45249. }
  45250. },
  45251. },
  45252. [
  45253. {
  45254. name: "Standard",
  45255. height: math.unit(100, "feet"),
  45256. default: true
  45257. },
  45258. {
  45259. name: "Grand",
  45260. height: math.unit(1000, "feet")
  45261. },
  45262. {
  45263. name: "Conquering",
  45264. height: math.unit(10000, "feet")
  45265. },
  45266. ]
  45267. ))
  45268. characterMakers.push(() => makeCharacter(
  45269. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  45270. {
  45271. dressed: {
  45272. height: math.unit(8 + 5/12, "feet"),
  45273. weight: math.unit(700, "lb"),
  45274. name: "Dressed",
  45275. image: {
  45276. source: "./media/characters/kiva/dressed.svg",
  45277. extra: 1102/1055,
  45278. bottom: 60/1162
  45279. }
  45280. },
  45281. nude: {
  45282. height: math.unit(8 + 5/12, "feet"),
  45283. weight: math.unit(700, "lb"),
  45284. name: "Nude",
  45285. image: {
  45286. source: "./media/characters/kiva/nude.svg",
  45287. extra: 1102/1055,
  45288. bottom: 60/1162
  45289. }
  45290. },
  45291. },
  45292. [
  45293. {
  45294. name: "Base Height",
  45295. height: math.unit(8 + 5/12, "feet"),
  45296. default: true
  45297. },
  45298. {
  45299. name: "Macro",
  45300. height: math.unit(100, "feet")
  45301. },
  45302. {
  45303. name: "Max",
  45304. height: math.unit(3280, "feet")
  45305. },
  45306. ]
  45307. ))
  45308. characterMakers.push(() => makeCharacter(
  45309. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  45310. {
  45311. front: {
  45312. height: math.unit(6 + 8/12, "feet"),
  45313. weight: math.unit(250, "lb"),
  45314. name: "Front",
  45315. image: {
  45316. source: "./media/characters/ztragon/front.svg",
  45317. extra: 1825/1684,
  45318. bottom: 98/1923
  45319. }
  45320. },
  45321. },
  45322. [
  45323. {
  45324. name: "Normal",
  45325. height: math.unit(6 + 8/12, "feet"),
  45326. default: true
  45327. },
  45328. {
  45329. name: "Macro",
  45330. height: math.unit(80, "feet")
  45331. },
  45332. ]
  45333. ))
  45334. characterMakers.push(() => makeCharacter(
  45335. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  45336. {
  45337. front: {
  45338. height: math.unit(10.4, "feet"),
  45339. weight: math.unit(2, "tons"),
  45340. name: "Front",
  45341. image: {
  45342. source: "./media/characters/yesenia/front.svg",
  45343. extra: 1479/1474,
  45344. bottom: 233/1712
  45345. }
  45346. },
  45347. },
  45348. [
  45349. {
  45350. name: "Normal",
  45351. height: math.unit(10.4, "feet"),
  45352. default: true
  45353. },
  45354. ]
  45355. ))
  45356. characterMakers.push(() => makeCharacter(
  45357. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  45358. {
  45359. normal: {
  45360. height: math.unit(6 + 1/12, "feet"),
  45361. weight: math.unit(180, "lb"),
  45362. name: "Normal",
  45363. image: {
  45364. source: "./media/characters/leanne-lycheborne/normal.svg",
  45365. extra: 1748/1660,
  45366. bottom: 98/1846
  45367. }
  45368. },
  45369. were: {
  45370. height: math.unit(12, "feet"),
  45371. weight: math.unit(1600, "lb"),
  45372. name: "Were",
  45373. image: {
  45374. source: "./media/characters/leanne-lycheborne/were.svg",
  45375. extra: 1485/1432,
  45376. bottom: 66/1551
  45377. }
  45378. },
  45379. },
  45380. [
  45381. {
  45382. name: "Normal",
  45383. height: math.unit(6 + 1/12, "feet"),
  45384. default: true
  45385. },
  45386. ]
  45387. ))
  45388. characterMakers.push(() => makeCharacter(
  45389. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  45390. {
  45391. side: {
  45392. height: math.unit(13, "feet"),
  45393. name: "Side",
  45394. image: {
  45395. source: "./media/characters/kira-tyler/side.svg",
  45396. extra: 693/393,
  45397. bottom: 58/751
  45398. }
  45399. },
  45400. },
  45401. [
  45402. {
  45403. name: "Normal",
  45404. height: math.unit(13, "feet"),
  45405. default: true
  45406. },
  45407. ]
  45408. ))
  45409. characterMakers.push(() => makeCharacter(
  45410. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  45411. {
  45412. front: {
  45413. height: math.unit(10.3, "feet"),
  45414. weight: math.unit(150, "lb"),
  45415. name: "Front",
  45416. image: {
  45417. source: "./media/characters/blaze/front.svg",
  45418. extra: 1378/1286,
  45419. bottom: 172/1550
  45420. }
  45421. },
  45422. },
  45423. [
  45424. {
  45425. name: "Normal",
  45426. height: math.unit(10.3, "feet"),
  45427. default: true
  45428. },
  45429. ]
  45430. ))
  45431. characterMakers.push(() => makeCharacter(
  45432. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  45433. {
  45434. side: {
  45435. height: math.unit(2, "meters"),
  45436. weight: math.unit(400, "kg"),
  45437. name: "Side",
  45438. image: {
  45439. source: "./media/characters/anu/side.svg",
  45440. extra: 506/394,
  45441. bottom: 18/524
  45442. }
  45443. },
  45444. },
  45445. [
  45446. {
  45447. name: "Humanoid",
  45448. height: math.unit(2, "meters")
  45449. },
  45450. {
  45451. name: "Normal",
  45452. height: math.unit(5, "meters"),
  45453. default: true
  45454. },
  45455. ]
  45456. ))
  45457. characterMakers.push(() => makeCharacter(
  45458. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  45459. {
  45460. front: {
  45461. height: math.unit(5 + 5/12, "feet"),
  45462. weight: math.unit(170, "lb"),
  45463. name: "Front",
  45464. image: {
  45465. source: "./media/characters/synx-the-lynx/front.svg",
  45466. extra: 1893/1745,
  45467. bottom: 17/1910
  45468. }
  45469. },
  45470. side: {
  45471. height: math.unit(5 + 5/12, "feet"),
  45472. weight: math.unit(170, "lb"),
  45473. name: "Side",
  45474. image: {
  45475. source: "./media/characters/synx-the-lynx/side.svg",
  45476. extra: 1884/1740,
  45477. bottom: 39/1923
  45478. }
  45479. },
  45480. back: {
  45481. height: math.unit(5 + 5/12, "feet"),
  45482. weight: math.unit(170, "lb"),
  45483. name: "Back",
  45484. image: {
  45485. source: "./media/characters/synx-the-lynx/back.svg",
  45486. extra: 1903/1755,
  45487. bottom: 14/1917
  45488. }
  45489. },
  45490. },
  45491. [
  45492. {
  45493. name: "Normal",
  45494. height: math.unit(5 + 5/12, "feet"),
  45495. default: true
  45496. },
  45497. ]
  45498. ))
  45499. characterMakers.push(() => makeCharacter(
  45500. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  45501. {
  45502. back: {
  45503. height: math.unit(15, "feet"),
  45504. name: "Back",
  45505. image: {
  45506. source: "./media/characters/nadezda-fex/back.svg",
  45507. extra: 1695/1481,
  45508. bottom: 25/1720
  45509. }
  45510. },
  45511. },
  45512. [
  45513. {
  45514. name: "Normal",
  45515. height: math.unit(15, "feet"),
  45516. default: true
  45517. },
  45518. {
  45519. name: "Macro",
  45520. height: math.unit(2.5, "miles")
  45521. },
  45522. {
  45523. name: "Goddess",
  45524. height: math.unit(2, "multiverses")
  45525. },
  45526. ]
  45527. ))
  45528. characterMakers.push(() => makeCharacter(
  45529. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  45530. {
  45531. front: {
  45532. height: math.unit(216, "cm"),
  45533. name: "Front",
  45534. image: {
  45535. source: "./media/characters/lev/front.svg",
  45536. extra: 1728/1670,
  45537. bottom: 82/1810
  45538. }
  45539. },
  45540. back: {
  45541. height: math.unit(216, "cm"),
  45542. name: "Back",
  45543. image: {
  45544. source: "./media/characters/lev/back.svg",
  45545. extra: 1738/1675,
  45546. bottom: 24/1762
  45547. }
  45548. },
  45549. dressed: {
  45550. height: math.unit(216, "cm"),
  45551. name: "Dressed",
  45552. image: {
  45553. source: "./media/characters/lev/dressed.svg",
  45554. extra: 1397/1351,
  45555. bottom: 73/1470
  45556. }
  45557. },
  45558. head: {
  45559. height: math.unit(0.51, "meter"),
  45560. name: "Head",
  45561. image: {
  45562. source: "./media/characters/lev/head.svg"
  45563. }
  45564. },
  45565. },
  45566. [
  45567. {
  45568. name: "Normal",
  45569. height: math.unit(216, "cm"),
  45570. default: true
  45571. },
  45572. {
  45573. name: "Relatively Macro",
  45574. height: math.unit(80, "meters")
  45575. },
  45576. {
  45577. name: "Megamacro",
  45578. height: math.unit(21600, "meters")
  45579. },
  45580. {
  45581. name: "Megamacro+",
  45582. height: math.unit(64800, "meters")
  45583. },
  45584. ]
  45585. ))
  45586. characterMakers.push(() => makeCharacter(
  45587. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  45588. {
  45589. front: {
  45590. height: math.unit(2, "meters"),
  45591. weight: math.unit(80, "kg"),
  45592. name: "Front",
  45593. image: {
  45594. source: "./media/characters/moka/front.svg",
  45595. extra: 1337/1255,
  45596. bottom: 58/1395
  45597. }
  45598. },
  45599. },
  45600. [
  45601. {
  45602. name: "Micro",
  45603. height: math.unit(15, "cm")
  45604. },
  45605. {
  45606. name: "Normal",
  45607. height: math.unit(2, "meters"),
  45608. default: true
  45609. },
  45610. {
  45611. name: "Macro",
  45612. height: math.unit(20, "meters"),
  45613. },
  45614. ]
  45615. ))
  45616. characterMakers.push(() => makeCharacter(
  45617. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  45618. {
  45619. front: {
  45620. height: math.unit(9, "feet"),
  45621. weight: math.unit(240, "lb"),
  45622. name: "Front",
  45623. image: {
  45624. source: "./media/characters/kuzco/front.svg",
  45625. extra: 1593/1487,
  45626. bottom: 32/1625
  45627. }
  45628. },
  45629. side: {
  45630. height: math.unit(9, "feet"),
  45631. weight: math.unit(240, "lb"),
  45632. name: "Side",
  45633. image: {
  45634. source: "./media/characters/kuzco/side.svg",
  45635. extra: 1575/1485,
  45636. bottom: 30/1605
  45637. }
  45638. },
  45639. back: {
  45640. height: math.unit(9, "feet"),
  45641. weight: math.unit(240, "lb"),
  45642. name: "Back",
  45643. image: {
  45644. source: "./media/characters/kuzco/back.svg",
  45645. extra: 1603/1514,
  45646. bottom: 14/1617
  45647. }
  45648. },
  45649. },
  45650. [
  45651. {
  45652. name: "Normal",
  45653. height: math.unit(9, "feet"),
  45654. default: true
  45655. },
  45656. ]
  45657. ))
  45658. characterMakers.push(() => makeCharacter(
  45659. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  45660. {
  45661. side: {
  45662. height: math.unit(2, "meters"),
  45663. weight: math.unit(300, "kg"),
  45664. name: "Side",
  45665. image: {
  45666. source: "./media/characters/ceruleus/side.svg",
  45667. extra: 1068/974,
  45668. bottom: 126/1194
  45669. }
  45670. },
  45671. },
  45672. [
  45673. {
  45674. name: "Normal",
  45675. height: math.unit(16, "meters"),
  45676. default: true
  45677. },
  45678. ]
  45679. ))
  45680. characterMakers.push(() => makeCharacter(
  45681. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  45682. {
  45683. front: {
  45684. height: math.unit(9, "feet"),
  45685. weight: math.unit(500, "kg"),
  45686. name: "Front",
  45687. image: {
  45688. source: "./media/characters/acouya/front.svg",
  45689. extra: 1660/1473,
  45690. bottom: 28/1688
  45691. }
  45692. },
  45693. },
  45694. [
  45695. {
  45696. name: "Normal",
  45697. height: math.unit(9, "feet"),
  45698. default: true
  45699. },
  45700. ]
  45701. ))
  45702. characterMakers.push(() => makeCharacter(
  45703. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  45704. {
  45705. front: {
  45706. height: math.unit(5 + 6/12, "feet"),
  45707. weight: math.unit(195, "lb"),
  45708. name: "Front",
  45709. image: {
  45710. source: "./media/characters/vant/front.svg",
  45711. extra: 1396/1320,
  45712. bottom: 20/1416
  45713. }
  45714. },
  45715. back: {
  45716. height: math.unit(5 + 6/12, "feet"),
  45717. weight: math.unit(195, "lb"),
  45718. name: "Back",
  45719. image: {
  45720. source: "./media/characters/vant/back.svg",
  45721. extra: 1396/1320,
  45722. bottom: 20/1416
  45723. }
  45724. },
  45725. maw: {
  45726. height: math.unit(0.75, "feet"),
  45727. name: "Maw",
  45728. image: {
  45729. source: "./media/characters/vant/maw.svg"
  45730. }
  45731. },
  45732. paw: {
  45733. height: math.unit(1.07, "feet"),
  45734. name: "Paw",
  45735. image: {
  45736. source: "./media/characters/vant/paw.svg"
  45737. }
  45738. },
  45739. },
  45740. [
  45741. {
  45742. name: "Micro",
  45743. height: math.unit(0.25, "inches")
  45744. },
  45745. {
  45746. name: "Normal",
  45747. height: math.unit(5 + 6/12, "feet"),
  45748. default: true
  45749. },
  45750. {
  45751. name: "Macro",
  45752. height: math.unit(75, "feet")
  45753. },
  45754. ]
  45755. ))
  45756. characterMakers.push(() => makeCharacter(
  45757. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  45758. {
  45759. front: {
  45760. height: math.unit(30, "meters"),
  45761. weight: math.unit(363, "tons"),
  45762. name: "Front",
  45763. image: {
  45764. source: "./media/characters/ahra/front.svg",
  45765. extra: 1914/1814,
  45766. bottom: 46/1960
  45767. }
  45768. },
  45769. },
  45770. [
  45771. {
  45772. name: "Macro",
  45773. height: math.unit(30, "meters"),
  45774. default: true
  45775. },
  45776. ]
  45777. ))
  45778. characterMakers.push(() => makeCharacter(
  45779. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  45780. {
  45781. undressed: {
  45782. height: math.unit(2, "m"),
  45783. weight: math.unit(250, "kg"),
  45784. name: "Undressed",
  45785. image: {
  45786. source: "./media/characters/coriander/undressed.svg",
  45787. extra: 1757/1606,
  45788. bottom: 107/1864
  45789. }
  45790. },
  45791. dressed: {
  45792. height: math.unit(2, "m"),
  45793. weight: math.unit(250, "kg"),
  45794. name: "Dressed",
  45795. image: {
  45796. source: "./media/characters/coriander/dressed.svg",
  45797. extra: 1757/1606,
  45798. bottom: 107/1864
  45799. }
  45800. },
  45801. },
  45802. [
  45803. {
  45804. name: "Normal",
  45805. height: math.unit(4, "meters"),
  45806. default: true
  45807. },
  45808. {
  45809. name: "XL",
  45810. height: math.unit(6, "meters")
  45811. },
  45812. {
  45813. name: "XXL",
  45814. height: math.unit(8, "meters")
  45815. },
  45816. ]
  45817. ))
  45818. characterMakers.push(() => makeCharacter(
  45819. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  45820. {
  45821. front: {
  45822. height: math.unit(6, "feet"),
  45823. name: "Front",
  45824. image: {
  45825. source: "./media/characters/syrinx/front.svg",
  45826. extra: 1557/1259,
  45827. bottom: 171/1728
  45828. }
  45829. },
  45830. },
  45831. [
  45832. {
  45833. name: "Normal",
  45834. height: math.unit(6 + 3/12, "feet"),
  45835. default: true
  45836. },
  45837. ]
  45838. ))
  45839. characterMakers.push(() => makeCharacter(
  45840. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  45841. {
  45842. front: {
  45843. height: math.unit(11 + 6/12, "feet"),
  45844. weight: math.unit(1.5, "tons"),
  45845. name: "Front",
  45846. image: {
  45847. source: "./media/characters/bor/front.svg",
  45848. extra: 1189/1109,
  45849. bottom: 170/1359
  45850. }
  45851. },
  45852. },
  45853. [
  45854. {
  45855. name: "Normal",
  45856. height: math.unit(11 + 6/12, "feet"),
  45857. default: true
  45858. },
  45859. {
  45860. name: "Macro",
  45861. height: math.unit(32 + 9/12, "feet")
  45862. },
  45863. ]
  45864. ))
  45865. characterMakers.push(() => makeCharacter(
  45866. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  45867. {
  45868. anthro: {
  45869. height: math.unit(9, "feet"),
  45870. weight: math.unit(2076, "lb"),
  45871. name: "Anthro",
  45872. image: {
  45873. source: "./media/characters/abacus/anthro.svg",
  45874. extra: 1540/1494,
  45875. bottom: 233/1773
  45876. }
  45877. },
  45878. pigeon: {
  45879. height: math.unit(1, "feet"),
  45880. name: "Pigeon",
  45881. image: {
  45882. source: "./media/characters/abacus/pigeon.svg",
  45883. extra: 528/525,
  45884. bottom: 46/574
  45885. }
  45886. },
  45887. },
  45888. [
  45889. {
  45890. name: "Normal",
  45891. height: math.unit(9, "feet"),
  45892. default: true
  45893. },
  45894. ]
  45895. ))
  45896. characterMakers.push(() => makeCharacter(
  45897. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  45898. {
  45899. side: {
  45900. height: math.unit(6, "feet"),
  45901. name: "Side",
  45902. image: {
  45903. source: "./media/characters/delkhan/side.svg",
  45904. extra: 1884/1786,
  45905. bottom: 308/2192
  45906. }
  45907. },
  45908. head: {
  45909. height: math.unit(3.38, "feet"),
  45910. name: "Head",
  45911. image: {
  45912. source: "./media/characters/delkhan/head.svg"
  45913. }
  45914. },
  45915. },
  45916. [
  45917. {
  45918. name: "Normal",
  45919. height: math.unit(72, "feet"),
  45920. default: true
  45921. },
  45922. {
  45923. name: "Giant",
  45924. height: math.unit(172, "feet")
  45925. },
  45926. ]
  45927. ))
  45928. characterMakers.push(() => makeCharacter(
  45929. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  45930. {
  45931. standing: {
  45932. height: math.unit(6, "feet"),
  45933. name: "Standing",
  45934. image: {
  45935. source: "./media/characters/euchidat/standing.svg",
  45936. extra: 1612/1553,
  45937. bottom: 116/1728
  45938. }
  45939. },
  45940. leaning: {
  45941. height: math.unit(6, "feet"),
  45942. name: "Leaning",
  45943. image: {
  45944. source: "./media/characters/euchidat/leaning.svg",
  45945. extra: 1719/1674,
  45946. bottom: 27/1746
  45947. }
  45948. },
  45949. },
  45950. [
  45951. {
  45952. name: "Normal",
  45953. height: math.unit(175, "feet"),
  45954. default: true
  45955. },
  45956. {
  45957. name: "Megamacro",
  45958. height: math.unit(190, "miles")
  45959. },
  45960. {
  45961. name: "Gigamacro",
  45962. height: math.unit(190000, "miles")
  45963. },
  45964. ]
  45965. ))
  45966. characterMakers.push(() => makeCharacter(
  45967. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  45968. {
  45969. front: {
  45970. height: math.unit(6, "feet"),
  45971. weight: math.unit(150, "lb"),
  45972. name: "Front",
  45973. image: {
  45974. source: "./media/characters/rebecca-stack/front.svg",
  45975. extra: 1256/1201,
  45976. bottom: 18/1274
  45977. }
  45978. },
  45979. },
  45980. [
  45981. {
  45982. name: "Normal",
  45983. height: math.unit(5 + 8/12, "feet"),
  45984. default: true
  45985. },
  45986. {
  45987. name: "Demolitionist",
  45988. height: math.unit(200, "feet")
  45989. },
  45990. {
  45991. name: "Out of Control",
  45992. height: math.unit(2, "miles")
  45993. },
  45994. {
  45995. name: "Giga",
  45996. height: math.unit(7200, "miles")
  45997. },
  45998. ]
  45999. ))
  46000. characterMakers.push(() => makeCharacter(
  46001. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  46002. {
  46003. front: {
  46004. height: math.unit(6, "feet"),
  46005. weight: math.unit(150, "lb"),
  46006. name: "Front",
  46007. image: {
  46008. source: "./media/characters/jenny-cartwright/front.svg",
  46009. extra: 1384/1376,
  46010. bottom: 58/1442
  46011. }
  46012. },
  46013. },
  46014. [
  46015. {
  46016. name: "Normal",
  46017. height: math.unit(6 + 7/12, "feet"),
  46018. default: true
  46019. },
  46020. {
  46021. name: "Librarian",
  46022. height: math.unit(55, "feet")
  46023. },
  46024. {
  46025. name: "Sightseer",
  46026. height: math.unit(50, "miles")
  46027. },
  46028. {
  46029. name: "Giga",
  46030. height: math.unit(30000, "miles")
  46031. },
  46032. ]
  46033. ))
  46034. characterMakers.push(() => makeCharacter(
  46035. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  46036. {
  46037. nude: {
  46038. height: math.unit(8, "feet"),
  46039. weight: math.unit(225, "lb"),
  46040. name: "Nude",
  46041. image: {
  46042. source: "./media/characters/marvy/nude.svg",
  46043. extra: 1900/1683,
  46044. bottom: 89/1989
  46045. }
  46046. },
  46047. dressed: {
  46048. height: math.unit(8, "feet"),
  46049. weight: math.unit(225, "lb"),
  46050. name: "Dressed",
  46051. image: {
  46052. source: "./media/characters/marvy/dressed.svg",
  46053. extra: 1900/1683,
  46054. bottom: 89/1989
  46055. }
  46056. },
  46057. head: {
  46058. height: math.unit(2.85, "feet"),
  46059. name: "Head",
  46060. image: {
  46061. source: "./media/characters/marvy/head.svg"
  46062. }
  46063. },
  46064. },
  46065. [
  46066. {
  46067. name: "Normal",
  46068. height: math.unit(8, "feet"),
  46069. default: true
  46070. },
  46071. ]
  46072. ))
  46073. characterMakers.push(() => makeCharacter(
  46074. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  46075. {
  46076. front: {
  46077. height: math.unit(8, "feet"),
  46078. weight: math.unit(250, "lb"),
  46079. name: "Front",
  46080. image: {
  46081. source: "./media/characters/leah/front.svg",
  46082. extra: 1257/1149,
  46083. bottom: 109/1366
  46084. }
  46085. },
  46086. },
  46087. [
  46088. {
  46089. name: "Normal",
  46090. height: math.unit(8, "feet"),
  46091. default: true
  46092. },
  46093. {
  46094. name: "Minimacro",
  46095. height: math.unit(40, "feet")
  46096. },
  46097. {
  46098. name: "Macro",
  46099. height: math.unit(124, "feet")
  46100. },
  46101. {
  46102. name: "Megamacro",
  46103. height: math.unit(850, "feet")
  46104. },
  46105. ]
  46106. ))
  46107. characterMakers.push(() => makeCharacter(
  46108. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  46109. {
  46110. side: {
  46111. height: math.unit(13 + 6/12, "feet"),
  46112. weight: math.unit(3200, "lb"),
  46113. name: "Side",
  46114. image: {
  46115. source: "./media/characters/alvir/side.svg",
  46116. extra: 896/589,
  46117. bottom: 26/922
  46118. }
  46119. },
  46120. },
  46121. [
  46122. {
  46123. name: "Normal",
  46124. height: math.unit(13 + 6/12, "feet"),
  46125. default: true
  46126. },
  46127. ]
  46128. ))
  46129. characterMakers.push(() => makeCharacter(
  46130. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  46131. {
  46132. front: {
  46133. height: math.unit(5 + 4/12, "feet"),
  46134. weight: math.unit(236, "lb"),
  46135. name: "Front",
  46136. image: {
  46137. source: "./media/characters/zaina-khalil/front.svg",
  46138. extra: 1533/1485,
  46139. bottom: 94/1627
  46140. }
  46141. },
  46142. side: {
  46143. height: math.unit(5 + 4/12, "feet"),
  46144. weight: math.unit(236, "lb"),
  46145. name: "Side",
  46146. image: {
  46147. source: "./media/characters/zaina-khalil/side.svg",
  46148. extra: 1537/1498,
  46149. bottom: 66/1603
  46150. }
  46151. },
  46152. back: {
  46153. height: math.unit(5 + 4/12, "feet"),
  46154. weight: math.unit(236, "lb"),
  46155. name: "Back",
  46156. image: {
  46157. source: "./media/characters/zaina-khalil/back.svg",
  46158. extra: 1546/1494,
  46159. bottom: 89/1635
  46160. }
  46161. },
  46162. },
  46163. [
  46164. {
  46165. name: "Normal",
  46166. height: math.unit(5 + 4/12, "feet"),
  46167. default: true
  46168. },
  46169. ]
  46170. ))
  46171. characterMakers.push(() => makeCharacter(
  46172. { name: "Terry", species: ["husky"], tags: ["taur"] },
  46173. {
  46174. side: {
  46175. height: math.unit(12, "feet"),
  46176. weight: math.unit(4000, "lb"),
  46177. name: "Side",
  46178. image: {
  46179. source: "./media/characters/terry/side.svg",
  46180. extra: 1518/1439,
  46181. bottom: 149/1667
  46182. }
  46183. },
  46184. },
  46185. [
  46186. {
  46187. name: "Normal",
  46188. height: math.unit(12, "feet"),
  46189. default: true
  46190. },
  46191. ]
  46192. ))
  46193. characterMakers.push(() => makeCharacter(
  46194. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  46195. {
  46196. front: {
  46197. height: math.unit(12, "feet"),
  46198. weight: math.unit(1500, "lb"),
  46199. name: "Front",
  46200. image: {
  46201. source: "./media/characters/kahea/front.svg",
  46202. extra: 1722/1617,
  46203. bottom: 179/1901
  46204. }
  46205. },
  46206. },
  46207. [
  46208. {
  46209. name: "Normal",
  46210. height: math.unit(12, "feet"),
  46211. default: true
  46212. },
  46213. ]
  46214. ))
  46215. characterMakers.push(() => makeCharacter(
  46216. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  46217. {
  46218. demonFront: {
  46219. height: math.unit(36, "feet"),
  46220. name: "Front",
  46221. image: {
  46222. source: "./media/characters/alex-xuria/demon-front.svg",
  46223. extra: 1705/1673,
  46224. bottom: 198/1903
  46225. },
  46226. form: "demon",
  46227. default: true
  46228. },
  46229. demonBack: {
  46230. height: math.unit(36, "feet"),
  46231. name: "Back",
  46232. image: {
  46233. source: "./media/characters/alex-xuria/demon-back.svg",
  46234. extra: 1725/1693,
  46235. bottom: 70/1795
  46236. },
  46237. form: "demon"
  46238. },
  46239. demonHead: {
  46240. height: math.unit(2.14, "meters"),
  46241. name: "Head",
  46242. image: {
  46243. source: "./media/characters/alex-xuria/demon-head.svg"
  46244. },
  46245. form: "demon"
  46246. },
  46247. demonHand: {
  46248. height: math.unit(1.61, "meters"),
  46249. name: "Hand",
  46250. image: {
  46251. source: "./media/characters/alex-xuria/demon-hand.svg"
  46252. },
  46253. form: "demon"
  46254. },
  46255. demonPaw: {
  46256. height: math.unit(1.35, "meters"),
  46257. name: "Paw",
  46258. image: {
  46259. source: "./media/characters/alex-xuria/demon-paw.svg"
  46260. },
  46261. form: "demon"
  46262. },
  46263. demonFoot: {
  46264. height: math.unit(2.2, "meters"),
  46265. name: "Foot",
  46266. image: {
  46267. source: "./media/characters/alex-xuria/demon-foot.svg"
  46268. },
  46269. form: "demon"
  46270. },
  46271. demonCock: {
  46272. height: math.unit(1.74, "meters"),
  46273. name: "Cock",
  46274. image: {
  46275. source: "./media/characters/alex-xuria/demon-cock.svg"
  46276. },
  46277. form: "demon"
  46278. },
  46279. demonTailClosed: {
  46280. height: math.unit(1.47, "meters"),
  46281. name: "Tail (Closed)",
  46282. image: {
  46283. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  46284. },
  46285. form: "demon"
  46286. },
  46287. demonTailOpen: {
  46288. height: math.unit(2.85, "meters"),
  46289. name: "Tail (Open)",
  46290. image: {
  46291. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  46292. },
  46293. form: "demon"
  46294. },
  46295. incubusFront: {
  46296. height: math.unit(12, "feet"),
  46297. name: "Front",
  46298. image: {
  46299. source: "./media/characters/alex-xuria/incubus-front.svg",
  46300. extra: 1754/1677,
  46301. bottom: 125/1879
  46302. },
  46303. form: "incubus",
  46304. default: true
  46305. },
  46306. incubusBack: {
  46307. height: math.unit(12, "feet"),
  46308. name: "Back",
  46309. image: {
  46310. source: "./media/characters/alex-xuria/incubus-back.svg",
  46311. extra: 1702/1647,
  46312. bottom: 30/1732
  46313. },
  46314. form: "incubus"
  46315. },
  46316. incubusHead: {
  46317. height: math.unit(3.45, "feet"),
  46318. name: "Head",
  46319. image: {
  46320. source: "./media/characters/alex-xuria/incubus-head.svg"
  46321. },
  46322. form: "incubus"
  46323. },
  46324. rabbitFront: {
  46325. height: math.unit(6, "feet"),
  46326. name: "Front",
  46327. image: {
  46328. source: "./media/characters/alex-xuria/rabbit-front.svg",
  46329. extra: 1369/1349,
  46330. bottom: 45/1414
  46331. },
  46332. form: "rabbit",
  46333. default: true
  46334. },
  46335. rabbitSide: {
  46336. height: math.unit(6, "feet"),
  46337. name: "Side",
  46338. image: {
  46339. source: "./media/characters/alex-xuria/rabbit-side.svg",
  46340. extra: 1370/1356,
  46341. bottom: 37/1407
  46342. },
  46343. form: "rabbit"
  46344. },
  46345. rabbitBack: {
  46346. height: math.unit(6, "feet"),
  46347. name: "Back",
  46348. image: {
  46349. source: "./media/characters/alex-xuria/rabbit-back.svg",
  46350. extra: 1375/1358,
  46351. bottom: 43/1418
  46352. },
  46353. form: "rabbit"
  46354. },
  46355. },
  46356. [
  46357. {
  46358. name: "Normal",
  46359. height: math.unit(6, "feet"),
  46360. default: true,
  46361. form: "rabbit"
  46362. },
  46363. {
  46364. name: "Incubus",
  46365. height: math.unit(12, "feet"),
  46366. default: true,
  46367. form: "incubus"
  46368. },
  46369. {
  46370. name: "Demon",
  46371. height: math.unit(36, "feet"),
  46372. default: true,
  46373. form: "demon"
  46374. }
  46375. ],
  46376. {
  46377. "demon": {
  46378. name: "Demon",
  46379. default: true
  46380. },
  46381. "incubus": {
  46382. name: "Incubus",
  46383. },
  46384. "rabbit": {
  46385. name: "Rabbit"
  46386. }
  46387. }
  46388. ))
  46389. characterMakers.push(() => makeCharacter(
  46390. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  46391. {
  46392. front: {
  46393. height: math.unit(7 + 5/12, "feet"),
  46394. weight: math.unit(510, "lb"),
  46395. name: "Front",
  46396. image: {
  46397. source: "./media/characters/syrup/front.svg",
  46398. extra: 932/916,
  46399. bottom: 26/958
  46400. }
  46401. },
  46402. },
  46403. [
  46404. {
  46405. name: "Normal",
  46406. height: math.unit(7 + 5/12, "feet"),
  46407. default: true
  46408. },
  46409. {
  46410. name: "Big",
  46411. height: math.unit(50, "feet")
  46412. },
  46413. {
  46414. name: "Macro",
  46415. height: math.unit(300, "feet")
  46416. },
  46417. {
  46418. name: "Megamacro",
  46419. height: math.unit(1, "mile")
  46420. },
  46421. ]
  46422. ))
  46423. characterMakers.push(() => makeCharacter(
  46424. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  46425. {
  46426. front: {
  46427. height: math.unit(6 + 9/12, "feet"),
  46428. name: "Front",
  46429. image: {
  46430. source: "./media/characters/zeimne/front.svg",
  46431. extra: 1969/1806,
  46432. bottom: 53/2022
  46433. }
  46434. },
  46435. },
  46436. [
  46437. {
  46438. name: "Normal",
  46439. height: math.unit(6 + 9/12, "feet"),
  46440. default: true
  46441. },
  46442. {
  46443. name: "Giant",
  46444. height: math.unit(550, "feet")
  46445. },
  46446. {
  46447. name: "Mega",
  46448. height: math.unit(3, "miles")
  46449. },
  46450. {
  46451. name: "Giga",
  46452. height: math.unit(250, "miles")
  46453. },
  46454. {
  46455. name: "Tera",
  46456. height: math.unit(1, "AU")
  46457. },
  46458. ]
  46459. ))
  46460. characterMakers.push(() => makeCharacter(
  46461. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  46462. {
  46463. front: {
  46464. height: math.unit(5 + 2/12, "feet"),
  46465. name: "Front",
  46466. image: {
  46467. source: "./media/characters/grar/front.svg",
  46468. extra: 1331/1119,
  46469. bottom: 60/1391
  46470. }
  46471. },
  46472. back: {
  46473. height: math.unit(5 + 2/12, "feet"),
  46474. name: "Back",
  46475. image: {
  46476. source: "./media/characters/grar/back.svg",
  46477. extra: 1385/1169,
  46478. bottom: 23/1408
  46479. }
  46480. },
  46481. },
  46482. [
  46483. {
  46484. name: "Normal",
  46485. height: math.unit(5 + 2/12, "feet"),
  46486. default: true
  46487. },
  46488. ]
  46489. ))
  46490. characterMakers.push(() => makeCharacter(
  46491. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  46492. {
  46493. front: {
  46494. height: math.unit(13 + 7/12, "feet"),
  46495. weight: math.unit(2200, "lb"),
  46496. name: "Front",
  46497. image: {
  46498. source: "./media/characters/endraya/front.svg",
  46499. extra: 1289/1215,
  46500. bottom: 50/1339
  46501. }
  46502. },
  46503. nude: {
  46504. height: math.unit(13 + 7/12, "feet"),
  46505. weight: math.unit(2200, "lb"),
  46506. name: "Nude",
  46507. image: {
  46508. source: "./media/characters/endraya/nude.svg",
  46509. extra: 1247/1171,
  46510. bottom: 40/1287
  46511. }
  46512. },
  46513. head: {
  46514. height: math.unit(2.6, "feet"),
  46515. name: "Head",
  46516. image: {
  46517. source: "./media/characters/endraya/head.svg"
  46518. }
  46519. },
  46520. slit: {
  46521. height: math.unit(3.4, "feet"),
  46522. name: "Slit",
  46523. image: {
  46524. source: "./media/characters/endraya/slit.svg"
  46525. }
  46526. },
  46527. },
  46528. [
  46529. {
  46530. name: "Normal",
  46531. height: math.unit(13 + 7/12, "feet"),
  46532. default: true
  46533. },
  46534. {
  46535. name: "Macro",
  46536. height: math.unit(200, "feet")
  46537. },
  46538. ]
  46539. ))
  46540. characterMakers.push(() => makeCharacter(
  46541. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  46542. {
  46543. front: {
  46544. height: math.unit(1.81, "meters"),
  46545. weight: math.unit(69, "kg"),
  46546. name: "Front",
  46547. image: {
  46548. source: "./media/characters/rodryana/front.svg",
  46549. extra: 2002/1921,
  46550. bottom: 53/2055
  46551. }
  46552. },
  46553. back: {
  46554. height: math.unit(1.81, "meters"),
  46555. weight: math.unit(69, "kg"),
  46556. name: "Back",
  46557. image: {
  46558. source: "./media/characters/rodryana/back.svg",
  46559. extra: 1993/1926,
  46560. bottom: 48/2041
  46561. }
  46562. },
  46563. maw: {
  46564. height: math.unit(0.19769417475, "meters"),
  46565. name: "Maw",
  46566. image: {
  46567. source: "./media/characters/rodryana/maw.svg"
  46568. }
  46569. },
  46570. slit: {
  46571. height: math.unit(0.31631067961, "meters"),
  46572. name: "Slit",
  46573. image: {
  46574. source: "./media/characters/rodryana/slit.svg"
  46575. }
  46576. },
  46577. },
  46578. [
  46579. {
  46580. name: "Normal",
  46581. height: math.unit(1.81, "meters")
  46582. },
  46583. {
  46584. name: "Mini Macro",
  46585. height: math.unit(181, "meters")
  46586. },
  46587. {
  46588. name: "Macro",
  46589. height: math.unit(452, "meters"),
  46590. default: true
  46591. },
  46592. {
  46593. name: "Mega Macro",
  46594. height: math.unit(1.375, "km")
  46595. },
  46596. {
  46597. name: "Giga Macro",
  46598. height: math.unit(13.575, "km")
  46599. },
  46600. ]
  46601. ))
  46602. characterMakers.push(() => makeCharacter(
  46603. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  46604. {
  46605. front: {
  46606. height: math.unit(6, "feet"),
  46607. weight: math.unit(1000, "lb"),
  46608. name: "Front",
  46609. image: {
  46610. source: "./media/characters/asaya/front.svg",
  46611. extra: 1460/1200,
  46612. bottom: 71/1531
  46613. }
  46614. },
  46615. },
  46616. [
  46617. {
  46618. name: "Normal",
  46619. height: math.unit(8, "km"),
  46620. default: true
  46621. },
  46622. ]
  46623. ))
  46624. characterMakers.push(() => makeCharacter(
  46625. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  46626. {
  46627. front: {
  46628. height: math.unit(3.5, "meters"),
  46629. name: "Front",
  46630. image: {
  46631. source: "./media/characters/sarzu-and-israz/front.svg",
  46632. extra: 1570/1558,
  46633. bottom: 150/1720
  46634. },
  46635. },
  46636. back: {
  46637. height: math.unit(3.5, "meters"),
  46638. name: "Back",
  46639. image: {
  46640. source: "./media/characters/sarzu-and-israz/back.svg",
  46641. extra: 1523/1509,
  46642. bottom: 132/1655
  46643. },
  46644. },
  46645. frontFemale: {
  46646. height: math.unit(3.5, "meters"),
  46647. name: "Front (Female)",
  46648. image: {
  46649. source: "./media/characters/sarzu-and-israz/front-female.svg",
  46650. extra: 1570/1558,
  46651. bottom: 150/1720
  46652. },
  46653. },
  46654. frontHerm: {
  46655. height: math.unit(3.5, "meters"),
  46656. name: "Front (Herm)",
  46657. image: {
  46658. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  46659. extra: 1570/1558,
  46660. bottom: 150/1720
  46661. },
  46662. },
  46663. },
  46664. [
  46665. {
  46666. name: "Normal",
  46667. height: math.unit(3.5, "meters"),
  46668. default: true,
  46669. },
  46670. {
  46671. name: "Macro",
  46672. height: math.unit(65.5, "meters"),
  46673. },
  46674. ],
  46675. ))
  46676. characterMakers.push(() => makeCharacter(
  46677. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  46678. {
  46679. front: {
  46680. height: math.unit(6, "feet"),
  46681. weight: math.unit(250, "lb"),
  46682. name: "Front",
  46683. image: {
  46684. source: "./media/characters/zenimma/front.svg",
  46685. extra: 1346/1320,
  46686. bottom: 58/1404
  46687. }
  46688. },
  46689. back: {
  46690. height: math.unit(6, "feet"),
  46691. weight: math.unit(250, "lb"),
  46692. name: "Back",
  46693. image: {
  46694. source: "./media/characters/zenimma/back.svg",
  46695. extra: 1324/1308,
  46696. bottom: 44/1368
  46697. }
  46698. },
  46699. dick: {
  46700. height: math.unit(1.44, "feet"),
  46701. name: "Dick",
  46702. image: {
  46703. source: "./media/characters/zenimma/dick.svg"
  46704. }
  46705. },
  46706. },
  46707. [
  46708. {
  46709. name: "Canon Height",
  46710. height: math.unit(66, "miles"),
  46711. default: true
  46712. },
  46713. ]
  46714. ))
  46715. characterMakers.push(() => makeCharacter(
  46716. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  46717. {
  46718. nude: {
  46719. height: math.unit(6, "feet"),
  46720. weight: math.unit(150, "lb"),
  46721. name: "Nude",
  46722. image: {
  46723. source: "./media/characters/shavon/nude.svg",
  46724. extra: 1242/1096,
  46725. bottom: 98/1340
  46726. }
  46727. },
  46728. dressed: {
  46729. height: math.unit(6, "feet"),
  46730. weight: math.unit(150, "lb"),
  46731. name: "Dressed",
  46732. image: {
  46733. source: "./media/characters/shavon/dressed.svg",
  46734. extra: 1242/1096,
  46735. bottom: 98/1340
  46736. }
  46737. },
  46738. },
  46739. [
  46740. {
  46741. name: "Macro",
  46742. height: math.unit(255, "feet"),
  46743. default: true
  46744. },
  46745. ]
  46746. ))
  46747. characterMakers.push(() => makeCharacter(
  46748. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  46749. {
  46750. front: {
  46751. height: math.unit(6, "feet"),
  46752. name: "Front",
  46753. image: {
  46754. source: "./media/characters/steph/front.svg",
  46755. extra: 1430/1330,
  46756. bottom: 54/1484
  46757. }
  46758. },
  46759. },
  46760. [
  46761. {
  46762. name: "Normal",
  46763. height: math.unit(6, "feet"),
  46764. default: true
  46765. },
  46766. ]
  46767. ))
  46768. characterMakers.push(() => makeCharacter(
  46769. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  46770. {
  46771. front: {
  46772. height: math.unit(9, "feet"),
  46773. weight: math.unit(400, "lb"),
  46774. name: "Front",
  46775. image: {
  46776. source: "./media/characters/kil'aman/front.svg",
  46777. extra: 1210/1159,
  46778. bottom: 109/1319
  46779. }
  46780. },
  46781. head: {
  46782. height: math.unit(2.14, "feet"),
  46783. name: "Head",
  46784. image: {
  46785. source: "./media/characters/kil'aman/head.svg"
  46786. }
  46787. },
  46788. maw: {
  46789. height: math.unit(1.21, "feet"),
  46790. name: "Maw",
  46791. image: {
  46792. source: "./media/characters/kil'aman/maw.svg"
  46793. }
  46794. },
  46795. foot: {
  46796. height: math.unit(1.7, "feet"),
  46797. name: "Foot",
  46798. image: {
  46799. source: "./media/characters/kil'aman/foot.svg"
  46800. }
  46801. },
  46802. dick: {
  46803. height: math.unit(2.1, "feet"),
  46804. name: "Dick",
  46805. image: {
  46806. source: "./media/characters/kil'aman/dick.svg"
  46807. }
  46808. },
  46809. },
  46810. [
  46811. {
  46812. name: "Normal",
  46813. height: math.unit(9, "feet")
  46814. },
  46815. {
  46816. name: "Canon Height",
  46817. height: math.unit(10, "miles"),
  46818. default: true
  46819. },
  46820. {
  46821. name: "Maximum",
  46822. height: math.unit(6e9, "miles")
  46823. },
  46824. ]
  46825. ))
  46826. characterMakers.push(() => makeCharacter(
  46827. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  46828. {
  46829. front: {
  46830. height: math.unit(90, "feet"),
  46831. weight: math.unit(675000, "lb"),
  46832. name: "Front",
  46833. image: {
  46834. source: "./media/characters/qadan/front.svg",
  46835. extra: 1012/1004,
  46836. bottom: 78/1090
  46837. }
  46838. },
  46839. back: {
  46840. height: math.unit(90, "feet"),
  46841. weight: math.unit(675000, "lb"),
  46842. name: "Back",
  46843. image: {
  46844. source: "./media/characters/qadan/back.svg",
  46845. extra: 1042/1031,
  46846. bottom: 55/1097
  46847. }
  46848. },
  46849. armored: {
  46850. height: math.unit(90, "feet"),
  46851. weight: math.unit(675000, "lb"),
  46852. name: "Armored",
  46853. image: {
  46854. source: "./media/characters/qadan/armored.svg",
  46855. extra: 1047/1037,
  46856. bottom: 48/1095
  46857. }
  46858. },
  46859. },
  46860. [
  46861. {
  46862. name: "Normal",
  46863. height: math.unit(90, "feet"),
  46864. default: true
  46865. },
  46866. ]
  46867. ))
  46868. characterMakers.push(() => makeCharacter(
  46869. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  46870. {
  46871. front: {
  46872. height: math.unit(6, "feet"),
  46873. weight: math.unit(225, "lb"),
  46874. name: "Front",
  46875. image: {
  46876. source: "./media/characters/brooke/front.svg",
  46877. extra: 1050/1010,
  46878. bottom: 66/1116
  46879. }
  46880. },
  46881. back: {
  46882. height: math.unit(6, "feet"),
  46883. weight: math.unit(225, "lb"),
  46884. name: "Back",
  46885. image: {
  46886. source: "./media/characters/brooke/back.svg",
  46887. extra: 1053/1013,
  46888. bottom: 41/1094
  46889. }
  46890. },
  46891. dressed: {
  46892. height: math.unit(6, "feet"),
  46893. weight: math.unit(225, "lb"),
  46894. name: "Dressed",
  46895. image: {
  46896. source: "./media/characters/brooke/dressed.svg",
  46897. extra: 1050/1010,
  46898. bottom: 66/1116
  46899. }
  46900. },
  46901. },
  46902. [
  46903. {
  46904. name: "Canon Height",
  46905. height: math.unit(500, "miles"),
  46906. default: true
  46907. },
  46908. ]
  46909. ))
  46910. characterMakers.push(() => makeCharacter(
  46911. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  46912. {
  46913. front: {
  46914. height: math.unit(6 + 2/12, "feet"),
  46915. weight: math.unit(210, "lb"),
  46916. name: "Front",
  46917. image: {
  46918. source: "./media/characters/wubs/front.svg",
  46919. extra: 1345/1325,
  46920. bottom: 70/1415
  46921. }
  46922. },
  46923. back: {
  46924. height: math.unit(6 + 2/12, "feet"),
  46925. weight: math.unit(210, "lb"),
  46926. name: "Back",
  46927. image: {
  46928. source: "./media/characters/wubs/back.svg",
  46929. extra: 1296/1275,
  46930. bottom: 58/1354
  46931. }
  46932. },
  46933. },
  46934. [
  46935. {
  46936. name: "Normal",
  46937. height: math.unit(6 + 2/12, "feet"),
  46938. default: true
  46939. },
  46940. {
  46941. name: "Macro",
  46942. height: math.unit(1000, "feet")
  46943. },
  46944. {
  46945. name: "Megamacro",
  46946. height: math.unit(1, "mile")
  46947. },
  46948. ]
  46949. ))
  46950. characterMakers.push(() => makeCharacter(
  46951. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  46952. {
  46953. front: {
  46954. height: math.unit(4, "feet"),
  46955. weight: math.unit(120, "lb"),
  46956. name: "Front",
  46957. image: {
  46958. source: "./media/characters/blue/front.svg",
  46959. extra: 1636/1525,
  46960. bottom: 43/1679
  46961. }
  46962. },
  46963. back: {
  46964. height: math.unit(4, "feet"),
  46965. weight: math.unit(120, "lb"),
  46966. name: "Back",
  46967. image: {
  46968. source: "./media/characters/blue/back.svg",
  46969. extra: 1660/1560,
  46970. bottom: 57/1717
  46971. }
  46972. },
  46973. paws: {
  46974. height: math.unit(0.826, "feet"),
  46975. name: "Paws",
  46976. image: {
  46977. source: "./media/characters/blue/paws.svg"
  46978. }
  46979. },
  46980. },
  46981. [
  46982. {
  46983. name: "Micro",
  46984. height: math.unit(3, "inches")
  46985. },
  46986. {
  46987. name: "Normal",
  46988. height: math.unit(4, "feet"),
  46989. default: true
  46990. },
  46991. {
  46992. name: "Femenine Form",
  46993. height: math.unit(14, "feet")
  46994. },
  46995. {
  46996. name: "Werebat Form",
  46997. height: math.unit(18, "feet")
  46998. },
  46999. ]
  47000. ))
  47001. characterMakers.push(() => makeCharacter(
  47002. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  47003. {
  47004. female: {
  47005. height: math.unit(7 + 4/12, "feet"),
  47006. weight: math.unit(243, "lb"),
  47007. name: "Female",
  47008. image: {
  47009. source: "./media/characters/kaya/female.svg",
  47010. extra: 975/898,
  47011. bottom: 34/1009
  47012. }
  47013. },
  47014. herm: {
  47015. height: math.unit(7 + 4/12, "feet"),
  47016. weight: math.unit(243, "lb"),
  47017. name: "Herm",
  47018. image: {
  47019. source: "./media/characters/kaya/herm.svg",
  47020. extra: 975/898,
  47021. bottom: 34/1009
  47022. }
  47023. },
  47024. },
  47025. [
  47026. {
  47027. name: "Normal",
  47028. height: math.unit(7 + 4/12, "feet"),
  47029. default: true
  47030. },
  47031. ]
  47032. ))
  47033. characterMakers.push(() => makeCharacter(
  47034. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  47035. {
  47036. female: {
  47037. height: math.unit(9 + 4/12, "feet"),
  47038. weight: math.unit(398, "lb"),
  47039. name: "Female",
  47040. image: {
  47041. source: "./media/characters/kassandra/female.svg",
  47042. extra: 908/839,
  47043. bottom: 61/969
  47044. }
  47045. },
  47046. intersex: {
  47047. height: math.unit(9 + 4/12, "feet"),
  47048. weight: math.unit(398, "lb"),
  47049. name: "Intersex",
  47050. image: {
  47051. source: "./media/characters/kassandra/intersex.svg",
  47052. extra: 908/839,
  47053. bottom: 61/969
  47054. }
  47055. },
  47056. },
  47057. [
  47058. {
  47059. name: "Normal",
  47060. height: math.unit(9 + 4/12, "feet"),
  47061. default: true
  47062. },
  47063. ]
  47064. ))
  47065. characterMakers.push(() => makeCharacter(
  47066. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  47067. {
  47068. front: {
  47069. height: math.unit(3, "meters"),
  47070. name: "Front",
  47071. image: {
  47072. source: "./media/characters/amy/front.svg",
  47073. extra: 1380/1343,
  47074. bottom: 70/1450
  47075. }
  47076. },
  47077. back: {
  47078. height: math.unit(3, "meters"),
  47079. name: "Back",
  47080. image: {
  47081. source: "./media/characters/amy/back.svg",
  47082. extra: 1380/1347,
  47083. bottom: 66/1446
  47084. }
  47085. },
  47086. },
  47087. [
  47088. {
  47089. name: "Normal",
  47090. height: math.unit(3, "meters"),
  47091. default: true
  47092. },
  47093. ]
  47094. ))
  47095. characterMakers.push(() => makeCharacter(
  47096. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  47097. {
  47098. side: {
  47099. height: math.unit(47, "cm"),
  47100. weight: math.unit(10.8, "kg"),
  47101. name: "Side",
  47102. image: {
  47103. source: "./media/characters/alphaschakal/side.svg",
  47104. extra: 1058/568,
  47105. bottom: 62/1120
  47106. }
  47107. },
  47108. back: {
  47109. height: math.unit(78, "cm"),
  47110. weight: math.unit(10.8, "kg"),
  47111. name: "Back",
  47112. image: {
  47113. source: "./media/characters/alphaschakal/back.svg",
  47114. extra: 1102/942,
  47115. bottom: 185/1287
  47116. }
  47117. },
  47118. head: {
  47119. height: math.unit(28, "cm"),
  47120. name: "Head",
  47121. image: {
  47122. source: "./media/characters/alphaschakal/head.svg",
  47123. extra: 696/508,
  47124. bottom: 0/696
  47125. }
  47126. },
  47127. paw: {
  47128. height: math.unit(16, "cm"),
  47129. name: "Paw",
  47130. image: {
  47131. source: "./media/characters/alphaschakal/paw.svg"
  47132. }
  47133. },
  47134. },
  47135. [
  47136. {
  47137. name: "Normal",
  47138. height: math.unit(47, "cm"),
  47139. default: true
  47140. },
  47141. {
  47142. name: "Macro",
  47143. height: math.unit(340, "cm")
  47144. },
  47145. ]
  47146. ))
  47147. characterMakers.push(() => makeCharacter(
  47148. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  47149. {
  47150. front: {
  47151. height: math.unit(36, "earths"),
  47152. name: "Front",
  47153. image: {
  47154. source: "./media/characters/ecobyss/front.svg",
  47155. extra: 1282/1215,
  47156. bottom: 11/1293
  47157. }
  47158. },
  47159. back: {
  47160. height: math.unit(36, "earths"),
  47161. name: "Back",
  47162. image: {
  47163. source: "./media/characters/ecobyss/back.svg",
  47164. extra: 1291/1222,
  47165. bottom: 8/1299
  47166. }
  47167. },
  47168. },
  47169. [
  47170. {
  47171. name: "Normal",
  47172. height: math.unit(36, "earths"),
  47173. default: true
  47174. },
  47175. ]
  47176. ))
  47177. characterMakers.push(() => makeCharacter(
  47178. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  47179. {
  47180. front: {
  47181. height: math.unit(12, "feet"),
  47182. name: "Front",
  47183. image: {
  47184. source: "./media/characters/vasuk/front.svg",
  47185. extra: 1326/1207,
  47186. bottom: 64/1390
  47187. }
  47188. },
  47189. },
  47190. [
  47191. {
  47192. name: "Normal",
  47193. height: math.unit(12, "feet"),
  47194. default: true
  47195. },
  47196. ]
  47197. ))
  47198. characterMakers.push(() => makeCharacter(
  47199. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  47200. {
  47201. side: {
  47202. height: math.unit(100, "feet"),
  47203. name: "Side",
  47204. image: {
  47205. source: "./media/characters/linneaus/side.svg",
  47206. extra: 987/807,
  47207. bottom: 47/1034
  47208. }
  47209. },
  47210. },
  47211. [
  47212. {
  47213. name: "Macro",
  47214. height: math.unit(100, "feet"),
  47215. default: true
  47216. },
  47217. ]
  47218. ))
  47219. characterMakers.push(() => makeCharacter(
  47220. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  47221. {
  47222. front: {
  47223. height: math.unit(8, "feet"),
  47224. weight: math.unit(1200, "lb"),
  47225. name: "Front",
  47226. image: {
  47227. source: "./media/characters/nyterious-daligdig/front.svg",
  47228. extra: 1284/1094,
  47229. bottom: 84/1368
  47230. }
  47231. },
  47232. back: {
  47233. height: math.unit(8, "feet"),
  47234. weight: math.unit(1200, "lb"),
  47235. name: "Back",
  47236. image: {
  47237. source: "./media/characters/nyterious-daligdig/back.svg",
  47238. extra: 1301/1121,
  47239. bottom: 129/1430
  47240. }
  47241. },
  47242. mouth: {
  47243. height: math.unit(1.464, "feet"),
  47244. name: "Mouth",
  47245. image: {
  47246. source: "./media/characters/nyterious-daligdig/mouth.svg"
  47247. }
  47248. },
  47249. },
  47250. [
  47251. {
  47252. name: "Small",
  47253. height: math.unit(8, "feet"),
  47254. default: true
  47255. },
  47256. {
  47257. name: "Normal",
  47258. height: math.unit(15, "feet")
  47259. },
  47260. {
  47261. name: "Macro",
  47262. height: math.unit(90, "feet")
  47263. },
  47264. ]
  47265. ))
  47266. characterMakers.push(() => makeCharacter(
  47267. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  47268. {
  47269. front: {
  47270. height: math.unit(7 + 4/12, "feet"),
  47271. weight: math.unit(252, "lb"),
  47272. name: "Front",
  47273. image: {
  47274. source: "./media/characters/bandel/front.svg",
  47275. extra: 1946/1775,
  47276. bottom: 26/1972
  47277. }
  47278. },
  47279. back: {
  47280. height: math.unit(7 + 4/12, "feet"),
  47281. weight: math.unit(252, "lb"),
  47282. name: "Back",
  47283. image: {
  47284. source: "./media/characters/bandel/back.svg",
  47285. extra: 1940/1770,
  47286. bottom: 25/1965
  47287. }
  47288. },
  47289. maw: {
  47290. height: math.unit(2.15, "feet"),
  47291. name: "Maw",
  47292. image: {
  47293. source: "./media/characters/bandel/maw.svg"
  47294. }
  47295. },
  47296. stomach: {
  47297. height: math.unit(1.95, "feet"),
  47298. name: "Stomach",
  47299. image: {
  47300. source: "./media/characters/bandel/stomach.svg"
  47301. }
  47302. },
  47303. },
  47304. [
  47305. {
  47306. name: "Normal",
  47307. height: math.unit(7 + 4/12, "feet"),
  47308. default: true
  47309. },
  47310. ]
  47311. ))
  47312. characterMakers.push(() => makeCharacter(
  47313. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  47314. {
  47315. front: {
  47316. height: math.unit(10 + 5/12, "feet"),
  47317. weight: math.unit(773.5, "kg"),
  47318. name: "Front",
  47319. image: {
  47320. source: "./media/characters/zed/front.svg",
  47321. extra: 987/941,
  47322. bottom: 52/1039
  47323. }
  47324. },
  47325. },
  47326. [
  47327. {
  47328. name: "Short",
  47329. height: math.unit(5 + 4/12, "feet")
  47330. },
  47331. {
  47332. name: "Average",
  47333. height: math.unit(10 + 5/12, "feet"),
  47334. default: true
  47335. },
  47336. {
  47337. name: "Mini-Macro",
  47338. height: math.unit(24 + 9/12, "feet")
  47339. },
  47340. {
  47341. name: "Macro",
  47342. height: math.unit(249, "feet")
  47343. },
  47344. {
  47345. name: "Mega-Macro",
  47346. height: math.unit(12490, "feet")
  47347. },
  47348. {
  47349. name: "Giga-Macro",
  47350. height: math.unit(24.9, "miles")
  47351. },
  47352. {
  47353. name: "Tera-Macro",
  47354. height: math.unit(24900, "miles")
  47355. },
  47356. {
  47357. name: "Cosmic Scale",
  47358. height: math.unit(38.9, "lightyears")
  47359. },
  47360. {
  47361. name: "Universal Scale",
  47362. height: math.unit(138e12, "lightyears")
  47363. },
  47364. ]
  47365. ))
  47366. characterMakers.push(() => makeCharacter(
  47367. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  47368. {
  47369. front: {
  47370. height: math.unit(1561, "inches"),
  47371. name: "Front",
  47372. image: {
  47373. source: "./media/characters/ivan/front.svg",
  47374. extra: 1126/1071,
  47375. bottom: 26/1152
  47376. }
  47377. },
  47378. back: {
  47379. height: math.unit(1561, "inches"),
  47380. name: "Back",
  47381. image: {
  47382. source: "./media/characters/ivan/back.svg",
  47383. extra: 1134/1079,
  47384. bottom: 30/1164
  47385. }
  47386. },
  47387. },
  47388. [
  47389. {
  47390. name: "Normal",
  47391. height: math.unit(1561, "inches"),
  47392. default: true
  47393. },
  47394. ]
  47395. ))
  47396. characterMakers.push(() => makeCharacter(
  47397. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  47398. {
  47399. front: {
  47400. height: math.unit(5 + 7/12, "feet"),
  47401. weight: math.unit(150, "lb"),
  47402. name: "Front",
  47403. image: {
  47404. source: "./media/characters/robin-arctic-hare/front.svg",
  47405. extra: 1148/974,
  47406. bottom: 20/1168
  47407. }
  47408. },
  47409. },
  47410. [
  47411. {
  47412. name: "Normal",
  47413. height: math.unit(5 + 7/12, "feet"),
  47414. default: true
  47415. },
  47416. ]
  47417. ))
  47418. characterMakers.push(() => makeCharacter(
  47419. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  47420. {
  47421. side: {
  47422. height: math.unit(5, "feet"),
  47423. name: "Side",
  47424. image: {
  47425. source: "./media/characters/birch/side.svg",
  47426. extra: 985/796,
  47427. bottom: 111/1096
  47428. }
  47429. },
  47430. },
  47431. [
  47432. {
  47433. name: "Normal",
  47434. height: math.unit(5, "feet"),
  47435. default: true
  47436. },
  47437. ]
  47438. ))
  47439. characterMakers.push(() => makeCharacter(
  47440. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  47441. {
  47442. front: {
  47443. height: math.unit(4, "feet"),
  47444. name: "Front",
  47445. image: {
  47446. source: "./media/characters/rasp/front.svg",
  47447. extra: 561/478,
  47448. bottom: 74/635
  47449. }
  47450. },
  47451. },
  47452. [
  47453. {
  47454. name: "Normal",
  47455. height: math.unit(4, "feet"),
  47456. default: true
  47457. },
  47458. ]
  47459. ))
  47460. characterMakers.push(() => makeCharacter(
  47461. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  47462. {
  47463. front: {
  47464. height: math.unit(4 + 6/12, "feet"),
  47465. name: "Front",
  47466. image: {
  47467. source: "./media/characters/agatha/front.svg",
  47468. extra: 947/933,
  47469. bottom: 42/989
  47470. }
  47471. },
  47472. back: {
  47473. height: math.unit(4 + 6/12, "feet"),
  47474. name: "Back",
  47475. image: {
  47476. source: "./media/characters/agatha/back.svg",
  47477. extra: 935/922,
  47478. bottom: 48/983
  47479. }
  47480. },
  47481. },
  47482. [
  47483. {
  47484. name: "Normal",
  47485. height: math.unit(4 + 6 /12, "feet"),
  47486. default: true
  47487. },
  47488. {
  47489. name: "Max Size",
  47490. height: math.unit(500, "feet")
  47491. },
  47492. ]
  47493. ))
  47494. characterMakers.push(() => makeCharacter(
  47495. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  47496. {
  47497. side: {
  47498. height: math.unit(30, "feet"),
  47499. name: "Side",
  47500. image: {
  47501. source: "./media/characters/roggy/side.svg",
  47502. extra: 909/643,
  47503. bottom: 63/972
  47504. }
  47505. },
  47506. lounging: {
  47507. height: math.unit(20, "feet"),
  47508. name: "Lounging",
  47509. image: {
  47510. source: "./media/characters/roggy/lounging.svg",
  47511. extra: 643/479,
  47512. bottom: 145/788
  47513. }
  47514. },
  47515. handpaw: {
  47516. height: math.unit(13.1, "feet"),
  47517. name: "Handpaw",
  47518. image: {
  47519. source: "./media/characters/roggy/handpaw.svg"
  47520. }
  47521. },
  47522. footpaw: {
  47523. height: math.unit(15.8, "feet"),
  47524. name: "Footpaw",
  47525. image: {
  47526. source: "./media/characters/roggy/footpaw.svg"
  47527. }
  47528. },
  47529. },
  47530. [
  47531. {
  47532. name: "Menacing",
  47533. height: math.unit(30, "feet"),
  47534. default: true
  47535. },
  47536. ]
  47537. ))
  47538. characterMakers.push(() => makeCharacter(
  47539. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  47540. {
  47541. front: {
  47542. height: math.unit(5 + 7/12, "feet"),
  47543. weight: math.unit(135, "lb"),
  47544. name: "Front",
  47545. image: {
  47546. source: "./media/characters/naomi/front.svg",
  47547. extra: 1209/1154,
  47548. bottom: 129/1338
  47549. }
  47550. },
  47551. back: {
  47552. height: math.unit(5 + 7/12, "feet"),
  47553. weight: math.unit(135, "lb"),
  47554. name: "Back",
  47555. image: {
  47556. source: "./media/characters/naomi/back.svg",
  47557. extra: 1252/1190,
  47558. bottom: 23/1275
  47559. }
  47560. },
  47561. },
  47562. [
  47563. {
  47564. name: "Normal",
  47565. height: math.unit(5 + 7 /12, "feet"),
  47566. default: true
  47567. },
  47568. ]
  47569. ))
  47570. characterMakers.push(() => makeCharacter(
  47571. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  47572. {
  47573. side: {
  47574. height: math.unit(35, "meters"),
  47575. name: "Side",
  47576. image: {
  47577. source: "./media/characters/kimpi/side.svg",
  47578. extra: 419/382,
  47579. bottom: 63/482
  47580. }
  47581. },
  47582. hand: {
  47583. height: math.unit(8.96, "meters"),
  47584. name: "Hand",
  47585. image: {
  47586. source: "./media/characters/kimpi/hand.svg"
  47587. }
  47588. },
  47589. },
  47590. [
  47591. {
  47592. name: "Normal",
  47593. height: math.unit(35, "meters"),
  47594. default: true
  47595. },
  47596. ]
  47597. ))
  47598. characterMakers.push(() => makeCharacter(
  47599. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  47600. {
  47601. front: {
  47602. height: math.unit(4 + 4/12, "feet"),
  47603. name: "Front",
  47604. image: {
  47605. source: "./media/characters/pepper-purrloin/front.svg",
  47606. extra: 1141/1024,
  47607. bottom: 21/1162
  47608. }
  47609. },
  47610. },
  47611. [
  47612. {
  47613. name: "Normal",
  47614. height: math.unit(4 + 4/12, "feet"),
  47615. default: true
  47616. },
  47617. ]
  47618. ))
  47619. characterMakers.push(() => makeCharacter(
  47620. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  47621. {
  47622. front: {
  47623. height: math.unit(6 + 2/12, "feet"),
  47624. name: "Front",
  47625. image: {
  47626. source: "./media/characters/raphael/front.svg",
  47627. extra: 1101/962,
  47628. bottom: 59/1160
  47629. }
  47630. },
  47631. },
  47632. [
  47633. {
  47634. name: "Normal",
  47635. height: math.unit(6 + 2/12, "feet"),
  47636. default: true
  47637. },
  47638. ]
  47639. ))
  47640. characterMakers.push(() => makeCharacter(
  47641. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  47642. {
  47643. front: {
  47644. height: math.unit(6, "feet"),
  47645. weight: math.unit(150, "lb"),
  47646. name: "Front",
  47647. image: {
  47648. source: "./media/characters/victor-williams/front.svg",
  47649. extra: 1894/1825,
  47650. bottom: 67/1961
  47651. }
  47652. },
  47653. },
  47654. [
  47655. {
  47656. name: "Normal",
  47657. height: math.unit(6, "feet"),
  47658. default: true
  47659. },
  47660. ]
  47661. ))
  47662. characterMakers.push(() => makeCharacter(
  47663. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  47664. {
  47665. front: {
  47666. height: math.unit(5 + 8/12, "feet"),
  47667. weight: math.unit(150, "lb"),
  47668. name: "Front",
  47669. image: {
  47670. source: "./media/characters/rachel/front.svg",
  47671. extra: 1902/1787,
  47672. bottom: 46/1948
  47673. }
  47674. },
  47675. },
  47676. [
  47677. {
  47678. name: "Base Height",
  47679. height: math.unit(5 + 8/12, "feet"),
  47680. default: true
  47681. },
  47682. {
  47683. name: "Macro",
  47684. height: math.unit(200, "feet")
  47685. },
  47686. {
  47687. name: "Mega Macro",
  47688. height: math.unit(1, "mile")
  47689. },
  47690. {
  47691. name: "Giga Macro",
  47692. height: math.unit(1500, "miles")
  47693. },
  47694. {
  47695. name: "Tera Macro",
  47696. height: math.unit(8000, "miles")
  47697. },
  47698. {
  47699. name: "Tera Macro+",
  47700. height: math.unit(2e5, "miles")
  47701. },
  47702. ]
  47703. ))
  47704. characterMakers.push(() => makeCharacter(
  47705. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  47706. {
  47707. front: {
  47708. height: math.unit(6.5, "feet"),
  47709. name: "Front",
  47710. image: {
  47711. source: "./media/characters/svetlana-rozovskaya/front.svg",
  47712. extra: 860/819,
  47713. bottom: 307/1167
  47714. }
  47715. },
  47716. back: {
  47717. height: math.unit(6.5, "feet"),
  47718. name: "Back",
  47719. image: {
  47720. source: "./media/characters/svetlana-rozovskaya/back.svg",
  47721. extra: 880/837,
  47722. bottom: 395/1275
  47723. }
  47724. },
  47725. sleeping: {
  47726. height: math.unit(2.79, "feet"),
  47727. name: "Sleeping",
  47728. image: {
  47729. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  47730. extra: 465/383,
  47731. bottom: 263/728
  47732. }
  47733. },
  47734. maw: {
  47735. height: math.unit(2.52, "feet"),
  47736. name: "Maw",
  47737. image: {
  47738. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  47739. }
  47740. },
  47741. },
  47742. [
  47743. {
  47744. name: "Normal",
  47745. height: math.unit(6.5, "feet"),
  47746. default: true
  47747. },
  47748. ]
  47749. ))
  47750. characterMakers.push(() => makeCharacter(
  47751. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  47752. {
  47753. front: {
  47754. height: math.unit(5, "feet"),
  47755. name: "Front",
  47756. image: {
  47757. source: "./media/characters/nova-nerium/front.svg",
  47758. extra: 1548/1392,
  47759. bottom: 374/1922
  47760. }
  47761. },
  47762. back: {
  47763. height: math.unit(5, "feet"),
  47764. name: "Back",
  47765. image: {
  47766. source: "./media/characters/nova-nerium/back.svg",
  47767. extra: 1658/1468,
  47768. bottom: 257/1915
  47769. }
  47770. },
  47771. },
  47772. [
  47773. {
  47774. name: "Normal",
  47775. height: math.unit(5, "feet"),
  47776. default: true
  47777. },
  47778. ]
  47779. ))
  47780. characterMakers.push(() => makeCharacter(
  47781. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  47782. {
  47783. front: {
  47784. height: math.unit(5 + 4/12, "feet"),
  47785. name: "Front",
  47786. image: {
  47787. source: "./media/characters/ashe-pyriph/front.svg",
  47788. extra: 1935/1747,
  47789. bottom: 60/1995
  47790. }
  47791. },
  47792. },
  47793. [
  47794. {
  47795. name: "Normal",
  47796. height: math.unit(5 + 4/12, "feet"),
  47797. default: true
  47798. },
  47799. ]
  47800. ))
  47801. characterMakers.push(() => makeCharacter(
  47802. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  47803. {
  47804. front: {
  47805. height: math.unit(8.7, "feet"),
  47806. name: "Front",
  47807. image: {
  47808. source: "./media/characters/flicker-wisp/front.svg",
  47809. extra: 1835/1613,
  47810. bottom: 449/2284
  47811. }
  47812. },
  47813. side: {
  47814. height: math.unit(8.7, "feet"),
  47815. name: "Side",
  47816. image: {
  47817. source: "./media/characters/flicker-wisp/side.svg",
  47818. extra: 1841/1642,
  47819. bottom: 336/2177
  47820. },
  47821. default: true
  47822. },
  47823. maw: {
  47824. height: math.unit(3.35, "feet"),
  47825. name: "Maw",
  47826. image: {
  47827. source: "./media/characters/flicker-wisp/maw.svg",
  47828. extra: 2338/1506,
  47829. bottom: 0/2338
  47830. }
  47831. },
  47832. ovipositor: {
  47833. height: math.unit(4.95, "feet"),
  47834. name: "Ovipositor",
  47835. image: {
  47836. source: "./media/characters/flicker-wisp/ovipositor.svg"
  47837. }
  47838. },
  47839. egg: {
  47840. height: math.unit(0.385, "feet"),
  47841. weight: math.unit(2, "lb"),
  47842. name: "Egg",
  47843. image: {
  47844. source: "./media/characters/flicker-wisp/egg.svg"
  47845. }
  47846. },
  47847. },
  47848. [
  47849. {
  47850. name: "Normal",
  47851. height: math.unit(8.7, "feet"),
  47852. default: true
  47853. },
  47854. ]
  47855. ))
  47856. characterMakers.push(() => makeCharacter(
  47857. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  47858. {
  47859. side: {
  47860. height: math.unit(11, "feet"),
  47861. name: "Side",
  47862. image: {
  47863. source: "./media/characters/faefnul/side.svg",
  47864. extra: 1100/1007,
  47865. bottom: 0/1100
  47866. }
  47867. },
  47868. },
  47869. [
  47870. {
  47871. name: "Normal",
  47872. height: math.unit(11, "feet"),
  47873. default: true
  47874. },
  47875. ]
  47876. ))
  47877. characterMakers.push(() => makeCharacter(
  47878. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  47879. {
  47880. front: {
  47881. height: math.unit(6 + 2/12, "feet"),
  47882. name: "Front",
  47883. image: {
  47884. source: "./media/characters/shady/front.svg",
  47885. extra: 502/461,
  47886. bottom: 9/511
  47887. }
  47888. },
  47889. kneeling: {
  47890. height: math.unit(4.6, "feet"),
  47891. name: "Kneeling",
  47892. image: {
  47893. source: "./media/characters/shady/kneeling.svg",
  47894. extra: 1328/1219,
  47895. bottom: 117/1445
  47896. }
  47897. },
  47898. maw: {
  47899. height: math.unit(2, "feet"),
  47900. name: "Maw",
  47901. image: {
  47902. source: "./media/characters/shady/maw.svg"
  47903. }
  47904. },
  47905. },
  47906. [
  47907. {
  47908. name: "Nano",
  47909. height: math.unit(1, "mm")
  47910. },
  47911. {
  47912. name: "Micro",
  47913. height: math.unit(12, "mm")
  47914. },
  47915. {
  47916. name: "Tiny",
  47917. height: math.unit(3, "inches")
  47918. },
  47919. {
  47920. name: "Normal",
  47921. height: math.unit(6 + 2/12, "feet"),
  47922. default: true
  47923. },
  47924. {
  47925. name: "Big",
  47926. height: math.unit(15, "feet")
  47927. },
  47928. {
  47929. name: "Macro",
  47930. height: math.unit(150, "feet")
  47931. },
  47932. {
  47933. name: "Titanic",
  47934. height: math.unit(500, "feet")
  47935. },
  47936. ]
  47937. ))
  47938. characterMakers.push(() => makeCharacter(
  47939. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  47940. {
  47941. front: {
  47942. height: math.unit(12, "feet"),
  47943. name: "Front",
  47944. image: {
  47945. source: "./media/characters/fenrir/front.svg",
  47946. extra: 968/875,
  47947. bottom: 22/990
  47948. }
  47949. },
  47950. },
  47951. [
  47952. {
  47953. name: "Big",
  47954. height: math.unit(12, "feet"),
  47955. default: true
  47956. },
  47957. ]
  47958. ))
  47959. characterMakers.push(() => makeCharacter(
  47960. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  47961. {
  47962. front: {
  47963. height: math.unit(5 + 4/12, "feet"),
  47964. name: "Front",
  47965. image: {
  47966. source: "./media/characters/makar/front.svg",
  47967. extra: 1181/1112,
  47968. bottom: 78/1259
  47969. }
  47970. },
  47971. },
  47972. [
  47973. {
  47974. name: "Normal",
  47975. height: math.unit(5 + 4/12, "feet"),
  47976. default: true
  47977. },
  47978. ]
  47979. ))
  47980. characterMakers.push(() => makeCharacter(
  47981. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  47982. {
  47983. front: {
  47984. height: math.unit(5 + 7/12, "feet"),
  47985. name: "Front",
  47986. image: {
  47987. source: "./media/characters/callow/front.svg",
  47988. extra: 1482/1304,
  47989. bottom: 23/1505
  47990. }
  47991. },
  47992. back: {
  47993. height: math.unit(5 + 7/12, "feet"),
  47994. name: "Back",
  47995. image: {
  47996. source: "./media/characters/callow/back.svg",
  47997. extra: 1484/1296,
  47998. bottom: 25/1509
  47999. }
  48000. },
  48001. },
  48002. [
  48003. {
  48004. name: "Micro",
  48005. height: math.unit(3, "inches"),
  48006. default: true
  48007. },
  48008. {
  48009. name: "Normal",
  48010. height: math.unit(5 + 7/12, "feet")
  48011. },
  48012. ]
  48013. ))
  48014. characterMakers.push(() => makeCharacter(
  48015. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  48016. {
  48017. front: {
  48018. height: math.unit(6 + 2/12, "feet"),
  48019. name: "Front",
  48020. image: {
  48021. source: "./media/characters/natel/front.svg",
  48022. extra: 1833/1692,
  48023. bottom: 166/1999
  48024. }
  48025. },
  48026. },
  48027. [
  48028. {
  48029. name: "Normal",
  48030. height: math.unit(6 + 2/12, "feet"),
  48031. default: true
  48032. },
  48033. ]
  48034. ))
  48035. characterMakers.push(() => makeCharacter(
  48036. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  48037. {
  48038. front: {
  48039. height: math.unit(1.75, "meters"),
  48040. name: "Front",
  48041. image: {
  48042. source: "./media/characters/misu/front.svg",
  48043. extra: 1690/1558,
  48044. bottom: 234/1924
  48045. }
  48046. },
  48047. back: {
  48048. height: math.unit(1.75, "meters"),
  48049. name: "Back",
  48050. image: {
  48051. source: "./media/characters/misu/back.svg",
  48052. extra: 1762/1618,
  48053. bottom: 146/1908
  48054. }
  48055. },
  48056. frontNude: {
  48057. height: math.unit(1.75, "meters"),
  48058. name: "Front (Nude)",
  48059. image: {
  48060. source: "./media/characters/misu/front-nude.svg",
  48061. extra: 1690/1558,
  48062. bottom: 234/1924
  48063. }
  48064. },
  48065. backNude: {
  48066. height: math.unit(1.75, "meters"),
  48067. name: "Back (Nude)",
  48068. image: {
  48069. source: "./media/characters/misu/back-nude.svg",
  48070. extra: 1762/1618,
  48071. bottom: 146/1908
  48072. }
  48073. },
  48074. frontErect: {
  48075. height: math.unit(1.75, "meters"),
  48076. name: "Front (Erect)",
  48077. image: {
  48078. source: "./media/characters/misu/front-erect.svg",
  48079. extra: 1690/1558,
  48080. bottom: 234/1924
  48081. }
  48082. },
  48083. maw: {
  48084. height: math.unit(0.47, "meters"),
  48085. name: "Maw",
  48086. image: {
  48087. source: "./media/characters/misu/maw.svg"
  48088. }
  48089. },
  48090. head: {
  48091. height: math.unit(0.35, "meters"),
  48092. name: "Head",
  48093. image: {
  48094. source: "./media/characters/misu/head.svg"
  48095. }
  48096. },
  48097. rear: {
  48098. height: math.unit(0.47, "meters"),
  48099. name: "Rear",
  48100. image: {
  48101. source: "./media/characters/misu/rear.svg"
  48102. }
  48103. },
  48104. },
  48105. [
  48106. {
  48107. name: "Normal",
  48108. height: math.unit(1.75, "meters")
  48109. },
  48110. {
  48111. name: "Not good for the people",
  48112. height: math.unit(42, "meters")
  48113. },
  48114. {
  48115. name: "Not good for the neighborhood",
  48116. height: math.unit(135, "meters")
  48117. },
  48118. {
  48119. name: "Bit bigger problem",
  48120. height: math.unit(380, "meters"),
  48121. default: true
  48122. },
  48123. {
  48124. name: "Not good for the city",
  48125. height: math.unit(1.5, "km")
  48126. },
  48127. {
  48128. name: "Not good for the county",
  48129. height: math.unit(5.5, "km")
  48130. },
  48131. {
  48132. name: "Not good for the state",
  48133. height: math.unit(25, "km")
  48134. },
  48135. {
  48136. name: "Not good for the country",
  48137. height: math.unit(125, "km")
  48138. },
  48139. {
  48140. name: "Not good for the continent",
  48141. height: math.unit(2100, "km")
  48142. },
  48143. {
  48144. name: "Not good for the planet",
  48145. height: math.unit(35000, "km")
  48146. },
  48147. {
  48148. name: "Just no",
  48149. height: math.unit(8.5e18, "km")
  48150. },
  48151. ]
  48152. ))
  48153. characterMakers.push(() => makeCharacter(
  48154. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  48155. {
  48156. front: {
  48157. height: math.unit(6.5, "feet"),
  48158. name: "Front",
  48159. image: {
  48160. source: "./media/characters/poppy/front.svg",
  48161. extra: 1878/1812,
  48162. bottom: 43/1921
  48163. }
  48164. },
  48165. feet: {
  48166. height: math.unit(1.06, "feet"),
  48167. name: "Feet",
  48168. image: {
  48169. source: "./media/characters/poppy/feet.svg",
  48170. extra: 1083/1083,
  48171. bottom: 87/1170
  48172. }
  48173. },
  48174. },
  48175. [
  48176. {
  48177. name: "Human",
  48178. height: math.unit(6.5, "feet")
  48179. },
  48180. {
  48181. name: "Default",
  48182. height: math.unit(300, "feet"),
  48183. default: true
  48184. },
  48185. {
  48186. name: "Huge",
  48187. height: math.unit(850, "feet")
  48188. },
  48189. {
  48190. name: "Mega",
  48191. height: math.unit(8000, "feet")
  48192. },
  48193. {
  48194. name: "Giga",
  48195. height: math.unit(300, "miles")
  48196. },
  48197. ]
  48198. ))
  48199. characterMakers.push(() => makeCharacter(
  48200. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  48201. {
  48202. bipedal: {
  48203. height: math.unit(7, "feet"),
  48204. name: "Bipedal",
  48205. image: {
  48206. source: "./media/characters/zener/bipedal.svg",
  48207. extra: 874/805,
  48208. bottom: 109/983
  48209. }
  48210. },
  48211. quadrupedal: {
  48212. height: math.unit(4.64, "feet"),
  48213. name: "Quadrupedal",
  48214. image: {
  48215. source: "./media/characters/zener/quadrupedal.svg",
  48216. extra: 638/507,
  48217. bottom: 190/828
  48218. }
  48219. },
  48220. cock: {
  48221. height: math.unit(18, "inches"),
  48222. name: "Cock",
  48223. image: {
  48224. source: "./media/characters/zener/cock.svg"
  48225. }
  48226. },
  48227. },
  48228. [
  48229. {
  48230. name: "Normal",
  48231. height: math.unit(7, "feet"),
  48232. default: true
  48233. },
  48234. ]
  48235. ))
  48236. characterMakers.push(() => makeCharacter(
  48237. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  48238. {
  48239. nude: {
  48240. height: math.unit(5 + 6/12, "feet"),
  48241. name: "Nude",
  48242. image: {
  48243. source: "./media/characters/charlie-dog/nude.svg",
  48244. extra: 768/734,
  48245. bottom: 26/794
  48246. }
  48247. },
  48248. dressed: {
  48249. height: math.unit(5 + 6/12, "feet"),
  48250. name: "Dressed",
  48251. image: {
  48252. source: "./media/characters/charlie-dog/dressed.svg",
  48253. extra: 768/734,
  48254. bottom: 26/794
  48255. }
  48256. },
  48257. },
  48258. [
  48259. {
  48260. name: "Normal",
  48261. height: math.unit(5 + 6/12, "feet"),
  48262. default: true
  48263. },
  48264. ]
  48265. ))
  48266. characterMakers.push(() => makeCharacter(
  48267. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  48268. {
  48269. front: {
  48270. height: math.unit(6 + 4/12, "feet"),
  48271. name: "Front",
  48272. image: {
  48273. source: "./media/characters/ir'istrasz/front.svg",
  48274. extra: 1014/977,
  48275. bottom: 65/1079
  48276. }
  48277. },
  48278. back: {
  48279. height: math.unit(6 + 4/12, "feet"),
  48280. name: "Back",
  48281. image: {
  48282. source: "./media/characters/ir'istrasz/back.svg",
  48283. extra: 1024/992,
  48284. bottom: 34/1058
  48285. }
  48286. },
  48287. },
  48288. [
  48289. {
  48290. name: "Normal",
  48291. height: math.unit(6 + 4/12, "feet"),
  48292. default: true
  48293. },
  48294. ]
  48295. ))
  48296. characterMakers.push(() => makeCharacter(
  48297. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  48298. {
  48299. front: {
  48300. height: math.unit(5 + 8/12, "feet"),
  48301. name: "Front",
  48302. image: {
  48303. source: "./media/characters/dee-ditto/front.svg",
  48304. extra: 1874/1785,
  48305. bottom: 68/1942
  48306. }
  48307. },
  48308. back: {
  48309. height: math.unit(5 + 8/12, "feet"),
  48310. name: "Back",
  48311. image: {
  48312. source: "./media/characters/dee-ditto/back.svg",
  48313. extra: 1870/1783,
  48314. bottom: 77/1947
  48315. }
  48316. },
  48317. },
  48318. [
  48319. {
  48320. name: "Normal",
  48321. height: math.unit(5 + 8/12, "feet"),
  48322. default: true
  48323. },
  48324. ]
  48325. ))
  48326. characterMakers.push(() => makeCharacter(
  48327. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  48328. {
  48329. front: {
  48330. height: math.unit(7 + 6/12, "feet"),
  48331. name: "Front",
  48332. image: {
  48333. source: "./media/characters/fey/front.svg",
  48334. extra: 995/979,
  48335. bottom: 30/1025
  48336. }
  48337. },
  48338. back: {
  48339. height: math.unit(7 + 6/12, "feet"),
  48340. name: "Back",
  48341. image: {
  48342. source: "./media/characters/fey/back.svg",
  48343. extra: 1079/1008,
  48344. bottom: 5/1084
  48345. }
  48346. },
  48347. dressed: {
  48348. height: math.unit(7 + 6/12, "feet"),
  48349. name: "Dressed",
  48350. image: {
  48351. source: "./media/characters/fey/dressed.svg",
  48352. extra: 995/979,
  48353. bottom: 30/1025
  48354. }
  48355. },
  48356. },
  48357. [
  48358. {
  48359. name: "Normal",
  48360. height: math.unit(7 + 6/12, "feet"),
  48361. default: true
  48362. },
  48363. ]
  48364. ))
  48365. characterMakers.push(() => makeCharacter(
  48366. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  48367. {
  48368. standing: {
  48369. height: math.unit(17, "feet"),
  48370. name: "Standing",
  48371. image: {
  48372. source: "./media/characters/aster/standing.svg",
  48373. extra: 1798/1598,
  48374. bottom: 117/1915
  48375. }
  48376. },
  48377. },
  48378. [
  48379. {
  48380. name: "Normal",
  48381. height: math.unit(17, "feet"),
  48382. default: true
  48383. },
  48384. {
  48385. name: "Homewrecker",
  48386. height: math.unit(95, "feet")
  48387. },
  48388. {
  48389. name: "Planet Devourer",
  48390. height: math.unit(1008000, "miles")
  48391. },
  48392. ]
  48393. ))
  48394. characterMakers.push(() => makeCharacter(
  48395. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  48396. {
  48397. front: {
  48398. height: math.unit(6 + 5/12, "feet"),
  48399. weight: math.unit(265, "lb"),
  48400. name: "Front",
  48401. image: {
  48402. source: "./media/characters/devon-childs/front.svg",
  48403. extra: 1795/1721,
  48404. bottom: 41/1836
  48405. }
  48406. },
  48407. side: {
  48408. height: math.unit(6 + 5/12, "feet"),
  48409. weight: math.unit(265, "lb"),
  48410. name: "Side",
  48411. image: {
  48412. source: "./media/characters/devon-childs/side.svg",
  48413. extra: 1812/1738,
  48414. bottom: 30/1842
  48415. }
  48416. },
  48417. back: {
  48418. height: math.unit(6 + 5/12, "feet"),
  48419. weight: math.unit(265, "lb"),
  48420. name: "Back",
  48421. image: {
  48422. source: "./media/characters/devon-childs/back.svg",
  48423. extra: 1808/1735,
  48424. bottom: 23/1831
  48425. }
  48426. },
  48427. hand: {
  48428. height: math.unit(1.464, "feet"),
  48429. name: "Hand",
  48430. image: {
  48431. source: "./media/characters/devon-childs/hand.svg"
  48432. }
  48433. },
  48434. foot: {
  48435. height: math.unit(1.6, "feet"),
  48436. name: "Foot",
  48437. image: {
  48438. source: "./media/characters/devon-childs/foot.svg"
  48439. }
  48440. },
  48441. },
  48442. [
  48443. {
  48444. name: "Micro",
  48445. height: math.unit(7, "cm")
  48446. },
  48447. {
  48448. name: "Normal",
  48449. height: math.unit(6 + 5/12, "feet"),
  48450. default: true
  48451. },
  48452. {
  48453. name: "Macro",
  48454. height: math.unit(154, "feet")
  48455. },
  48456. ]
  48457. ))
  48458. characterMakers.push(() => makeCharacter(
  48459. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  48460. {
  48461. front: {
  48462. height: math.unit(6, "feet"),
  48463. weight: math.unit(180, "lb"),
  48464. name: "Front",
  48465. image: {
  48466. source: "./media/characters/lydemox-vir/front.svg",
  48467. extra: 1632/1435,
  48468. bottom: 58/1690
  48469. }
  48470. },
  48471. frontSFW: {
  48472. height: math.unit(6, "feet"),
  48473. weight: math.unit(180, "lb"),
  48474. name: "Front (SFW)",
  48475. image: {
  48476. source: "./media/characters/lydemox-vir/front-sfw.svg",
  48477. extra: 1632/1435,
  48478. bottom: 58/1690
  48479. }
  48480. },
  48481. back: {
  48482. height: math.unit(6, "feet"),
  48483. weight: math.unit(180, "lb"),
  48484. name: "Back",
  48485. image: {
  48486. source: "./media/characters/lydemox-vir/back.svg",
  48487. extra: 1593/1408,
  48488. bottom: 31/1624
  48489. }
  48490. },
  48491. paw: {
  48492. height: math.unit(1.85, "feet"),
  48493. name: "Paw",
  48494. image: {
  48495. source: "./media/characters/lydemox-vir/paw.svg"
  48496. }
  48497. },
  48498. dick: {
  48499. height: math.unit(1.8, "feet"),
  48500. name: "Dick",
  48501. image: {
  48502. source: "./media/characters/lydemox-vir/dick.svg"
  48503. }
  48504. },
  48505. },
  48506. [
  48507. {
  48508. name: "Macro",
  48509. height: math.unit(100, "feet"),
  48510. default: true
  48511. },
  48512. {
  48513. name: "Teramacro",
  48514. height: math.unit(1, "earth")
  48515. },
  48516. {
  48517. name: "Planetary",
  48518. height: math.unit(20, "earths")
  48519. },
  48520. ]
  48521. ))
  48522. characterMakers.push(() => makeCharacter(
  48523. { name: "Mia", species: ["panda"], tags: ["anthro"] },
  48524. {
  48525. front: {
  48526. height: math.unit(15 + 8/12, "feet"),
  48527. weight: math.unit(1237, "kg"),
  48528. name: "Front",
  48529. image: {
  48530. source: "./media/characters/mia/front.svg",
  48531. extra: 1573/1446,
  48532. bottom: 58/1631
  48533. }
  48534. },
  48535. },
  48536. [
  48537. {
  48538. name: "Small",
  48539. height: math.unit(9 + 5/12, "feet")
  48540. },
  48541. {
  48542. name: "Normal",
  48543. height: math.unit(15 + 8/12, "feet"),
  48544. default: true
  48545. },
  48546. ]
  48547. ))
  48548. characterMakers.push(() => makeCharacter(
  48549. { name: "Mr. Graves", species: ["wolf"], tags: ["anthro"] },
  48550. {
  48551. front: {
  48552. height: math.unit(10 + 6/12, "feet"),
  48553. weight: math.unit(1.3, "tons"),
  48554. name: "Front",
  48555. image: {
  48556. source: "./media/characters/mr-graves/front.svg",
  48557. extra: 1779/1695,
  48558. bottom: 198/1977
  48559. }
  48560. },
  48561. },
  48562. [
  48563. {
  48564. name: "Normal",
  48565. height: math.unit(10 + 6 /12, "feet"),
  48566. default: true
  48567. },
  48568. ]
  48569. ))
  48570. characterMakers.push(() => makeCharacter(
  48571. { name: "Jess", species: ["human"], tags: ["anthro"] },
  48572. {
  48573. dressedFront: {
  48574. height: math.unit(5 + 8/12, "feet"),
  48575. weight: math.unit(125, "lb"),
  48576. name: "Dressed (Front)",
  48577. image: {
  48578. source: "./media/characters/jess/dressed-front.svg",
  48579. extra: 1176/1152,
  48580. bottom: 42/1218
  48581. }
  48582. },
  48583. dressedSide: {
  48584. height: math.unit(5 + 8/12, "feet"),
  48585. weight: math.unit(125, "lb"),
  48586. name: "Dressed (Side)",
  48587. image: {
  48588. source: "./media/characters/jess/dressed-side.svg",
  48589. extra: 1204/1190,
  48590. bottom: 6/1210
  48591. }
  48592. },
  48593. nudeFront: {
  48594. height: math.unit(5 + 8/12, "feet"),
  48595. weight: math.unit(125, "lb"),
  48596. name: "Nude (Front)",
  48597. image: {
  48598. source: "./media/characters/jess/nude-front.svg",
  48599. extra: 1176/1152,
  48600. bottom: 42/1218
  48601. }
  48602. },
  48603. nudeSide: {
  48604. height: math.unit(5 + 8/12, "feet"),
  48605. weight: math.unit(125, "lb"),
  48606. name: "Nude (Side)",
  48607. image: {
  48608. source: "./media/characters/jess/nude-side.svg",
  48609. extra: 1204/1190,
  48610. bottom: 6/1210
  48611. }
  48612. },
  48613. organsFront: {
  48614. height: math.unit(2.83799342105, "feet"),
  48615. name: "Organs (Front)",
  48616. image: {
  48617. source: "./media/characters/jess/organs-front.svg"
  48618. }
  48619. },
  48620. organsSide: {
  48621. height: math.unit(2.64225290474, "feet"),
  48622. name: "Organs (Side)",
  48623. image: {
  48624. source: "./media/characters/jess/organs-side.svg"
  48625. }
  48626. },
  48627. digestiveTractFront: {
  48628. height: math.unit(2.8106580871, "feet"),
  48629. name: "Digestive Tract (Front)",
  48630. image: {
  48631. source: "./media/characters/jess/digestive-tract-front.svg"
  48632. }
  48633. },
  48634. digestiveTractSide: {
  48635. height: math.unit(2.54365045014, "feet"),
  48636. name: "Digestive Tract (Side)",
  48637. image: {
  48638. source: "./media/characters/jess/digestive-tract-side.svg"
  48639. }
  48640. },
  48641. respiratorySystemFront: {
  48642. height: math.unit(1.11196233456, "feet"),
  48643. name: "Respiratory System (Front)",
  48644. image: {
  48645. source: "./media/characters/jess/respiratory-system-front.svg"
  48646. }
  48647. },
  48648. respiratorySystemSide: {
  48649. height: math.unit(0.89327966297, "feet"),
  48650. name: "Respiratory System (Side)",
  48651. image: {
  48652. source: "./media/characters/jess/respiratory-system-side.svg"
  48653. }
  48654. },
  48655. urinaryTractFront: {
  48656. height: math.unit(1.16126356186, "feet"),
  48657. name: "Urinary Tract (Front)",
  48658. image: {
  48659. source: "./media/characters/jess/urinary-tract-front.svg"
  48660. }
  48661. },
  48662. urinaryTractSide: {
  48663. height: math.unit(1.20910039627, "feet"),
  48664. name: "Urinary Tract (Side)",
  48665. image: {
  48666. source: "./media/characters/jess/urinary-tract-side.svg"
  48667. }
  48668. },
  48669. reproductiveOrgansFront: {
  48670. height: math.unit(0.48422591566, "feet"),
  48671. name: "Reproductive Organs (Front)",
  48672. image: {
  48673. source: "./media/characters/jess/reproductive-organs-front.svg"
  48674. }
  48675. },
  48676. reproductiveOrgansSide: {
  48677. height: math.unit(0.61553314481, "feet"),
  48678. name: "Reproductive Organs (Side)",
  48679. image: {
  48680. source: "./media/characters/jess/reproductive-organs-side.svg"
  48681. }
  48682. },
  48683. breastsFront: {
  48684. height: math.unit(0.47690395121, "feet"),
  48685. name: "Breasts (Front)",
  48686. image: {
  48687. source: "./media/characters/jess/breasts-front.svg"
  48688. }
  48689. },
  48690. breastsSide: {
  48691. height: math.unit(0.30556998307, "feet"),
  48692. name: "Breasts (Side)",
  48693. image: {
  48694. source: "./media/characters/jess/breasts-side.svg"
  48695. }
  48696. },
  48697. heartFront: {
  48698. height: math.unit(0.53011022622, "feet"),
  48699. name: "Heart (Front)",
  48700. image: {
  48701. source: "./media/characters/jess/heart-front.svg"
  48702. }
  48703. },
  48704. heartSide: {
  48705. height: math.unit(0.51790695213, "feet"),
  48706. name: "Heart (Side)",
  48707. image: {
  48708. source: "./media/characters/jess/heart-side.svg"
  48709. }
  48710. },
  48711. earsAndNoseFront: {
  48712. height: math.unit(0.29385483995, "feet"),
  48713. name: "Ears and Nose (Front)",
  48714. image: {
  48715. source: "./media/characters/jess/ears-and-nose-front.svg"
  48716. }
  48717. },
  48718. earsAndNoseSide: {
  48719. height: math.unit(0.18109658741, "feet"),
  48720. name: "Ears and Nose (Side)",
  48721. image: {
  48722. source: "./media/characters/jess/ears-and-nose-side.svg"
  48723. }
  48724. },
  48725. },
  48726. [
  48727. {
  48728. name: "Normal",
  48729. height: math.unit(5 + 8/12, "feet"),
  48730. default: true
  48731. },
  48732. ]
  48733. ))
  48734. characterMakers.push(() => makeCharacter(
  48735. { name: "Wimpering", species: ["human"], tags: ["anthro"] },
  48736. {
  48737. front: {
  48738. height: math.unit(6, "feet"),
  48739. weight: math.unit(6.64467e-7, "grams"),
  48740. name: "Front",
  48741. image: {
  48742. source: "./media/characters/wimpering/front.svg",
  48743. extra: 597/587,
  48744. bottom: 34/631
  48745. }
  48746. },
  48747. },
  48748. [
  48749. {
  48750. name: "Micro",
  48751. height: math.unit(0.4, "mm"),
  48752. default: true
  48753. },
  48754. ]
  48755. ))
  48756. characterMakers.push(() => makeCharacter(
  48757. { name: "Keltre", species: ["dog"], tags: ["anthro"] },
  48758. {
  48759. front: {
  48760. height: math.unit(5 + 2/12, "feet"),
  48761. weight: math.unit(110, "lb"),
  48762. name: "Front",
  48763. image: {
  48764. source: "./media/characters/keltre/front.svg",
  48765. extra: 1099/1057,
  48766. bottom: 22/1121
  48767. }
  48768. },
  48769. back: {
  48770. height: math.unit(5 + 2/12, "feet"),
  48771. weight: math.unit(110, "lb"),
  48772. name: "Back",
  48773. image: {
  48774. source: "./media/characters/keltre/back.svg",
  48775. extra: 1095/1053,
  48776. bottom: 17/1112
  48777. }
  48778. },
  48779. dressed: {
  48780. height: math.unit(5 + 2/12, "feet"),
  48781. weight: math.unit(110, "lb"),
  48782. name: "Dressed",
  48783. image: {
  48784. source: "./media/characters/keltre/dressed.svg",
  48785. extra: 1099/1057,
  48786. bottom: 22/1121
  48787. }
  48788. },
  48789. winter: {
  48790. height: math.unit(5 + 2/12, "feet"),
  48791. weight: math.unit(110, "lb"),
  48792. name: "Winter",
  48793. image: {
  48794. source: "./media/characters/keltre/winter.svg",
  48795. extra: 1099/1057,
  48796. bottom: 22/1121
  48797. }
  48798. },
  48799. head: {
  48800. height: math.unit(1.61 * 0.86, "feet"),
  48801. name: "Head",
  48802. image: {
  48803. source: "./media/characters/keltre/head.svg",
  48804. extra: 534/421,
  48805. bottom: 0/534
  48806. }
  48807. },
  48808. hand: {
  48809. height: math.unit(1.3 * 0.86, "feet"),
  48810. name: "Hand",
  48811. image: {
  48812. source: "./media/characters/keltre/hand.svg"
  48813. }
  48814. },
  48815. foot: {
  48816. height: math.unit(1.8 * 0.86, "feet"),
  48817. name: "Foot",
  48818. image: {
  48819. source: "./media/characters/keltre/foot.svg"
  48820. }
  48821. },
  48822. },
  48823. [
  48824. {
  48825. name: "Fine",
  48826. height: math.unit(1, "inch")
  48827. },
  48828. {
  48829. name: "Dimnutive",
  48830. height: math.unit(4, "inches")
  48831. },
  48832. {
  48833. name: "Tiny",
  48834. height: math.unit(1, "foot")
  48835. },
  48836. {
  48837. name: "Small",
  48838. height: math.unit(3, "feet")
  48839. },
  48840. {
  48841. name: "Normal",
  48842. height: math.unit(5 + 2/12, "feet"),
  48843. default: true
  48844. },
  48845. ]
  48846. ))
  48847. characterMakers.push(() => makeCharacter(
  48848. { name: "Nox", species: ["cat"], tags: ["anthro"] },
  48849. {
  48850. front: {
  48851. height: math.unit(6 + 2/12, "feet"),
  48852. name: "Front",
  48853. image: {
  48854. source: "./media/characters/nox/front.svg",
  48855. extra: 1917/1830,
  48856. bottom: 74/1991
  48857. }
  48858. },
  48859. back: {
  48860. height: math.unit(6 + 2/12, "feet"),
  48861. name: "Back",
  48862. image: {
  48863. source: "./media/characters/nox/back.svg",
  48864. extra: 1896/1815,
  48865. bottom: 21/1917
  48866. }
  48867. },
  48868. head: {
  48869. height: math.unit(1.1, "feet"),
  48870. name: "Head",
  48871. image: {
  48872. source: "./media/characters/nox/head.svg",
  48873. extra: 874/704,
  48874. bottom: 0/874
  48875. }
  48876. },
  48877. tattoo: {
  48878. height: math.unit(0.729, "feet"),
  48879. name: "Tattoo",
  48880. image: {
  48881. source: "./media/characters/nox/tattoo.svg"
  48882. }
  48883. },
  48884. },
  48885. [
  48886. {
  48887. name: "Normal",
  48888. height: math.unit(6 + 2/12, "feet")
  48889. },
  48890. {
  48891. name: "Gigamacro",
  48892. height: math.unit(2, "earths"),
  48893. default: true
  48894. },
  48895. {
  48896. name: "Cosmic",
  48897. height: math.unit(867, "yottameters")
  48898. },
  48899. ]
  48900. ))
  48901. characterMakers.push(() => makeCharacter(
  48902. { name: "Caspian", species: ["ferret"], tags: ["anthro"] },
  48903. {
  48904. front: {
  48905. height: math.unit(6, "feet"),
  48906. weight: math.unit(150, "lb"),
  48907. name: "Front",
  48908. image: {
  48909. source: "./media/characters/caspian/front.svg",
  48910. extra: 1443/1359,
  48911. bottom: 0/1443
  48912. }
  48913. },
  48914. back: {
  48915. height: math.unit(6, "feet"),
  48916. weight: math.unit(150, "lb"),
  48917. name: "Back",
  48918. image: {
  48919. source: "./media/characters/caspian/back.svg",
  48920. extra: 1379/1309,
  48921. bottom: 0/1379
  48922. }
  48923. },
  48924. head: {
  48925. height: math.unit(0.9, "feet"),
  48926. name: "Head",
  48927. image: {
  48928. source: "./media/characters/caspian/head.svg",
  48929. extra: 692/492,
  48930. bottom: 0/692
  48931. }
  48932. },
  48933. headAlt: {
  48934. height: math.unit(0.95, "feet"),
  48935. name: "Head (Alt)",
  48936. image: {
  48937. source: "./media/characters/caspian/head-alt.svg",
  48938. extra: 668/508,
  48939. bottom: 0/668
  48940. }
  48941. },
  48942. hand: {
  48943. height: math.unit(0.8, "feet"),
  48944. name: "Hand",
  48945. image: {
  48946. source: "./media/characters/caspian/hand.svg"
  48947. }
  48948. },
  48949. paw: {
  48950. height: math.unit(0.95, "feet"),
  48951. name: "Paw",
  48952. image: {
  48953. source: "./media/characters/caspian/paw.svg"
  48954. }
  48955. },
  48956. },
  48957. [
  48958. {
  48959. name: "Normal",
  48960. height: math.unit(162, "feet"),
  48961. default: true
  48962. },
  48963. ]
  48964. ))
  48965. characterMakers.push(() => makeCharacter(
  48966. { name: "Myra Aisling", species: ["coyote"], tags: ["anthro"] },
  48967. {
  48968. front: {
  48969. height: math.unit(6, "feet"),
  48970. name: "Front",
  48971. image: {
  48972. source: "./media/characters/myra-aisling/front.svg",
  48973. extra: 1268/1166,
  48974. bottom: 73/1341
  48975. }
  48976. },
  48977. back: {
  48978. height: math.unit(6, "feet"),
  48979. name: "Back",
  48980. image: {
  48981. source: "./media/characters/myra-aisling/back.svg",
  48982. extra: 1249/1149,
  48983. bottom: 79/1328
  48984. }
  48985. },
  48986. dressed: {
  48987. height: math.unit(6, "feet"),
  48988. name: "Dressed",
  48989. image: {
  48990. source: "./media/characters/myra-aisling/dressed.svg",
  48991. extra: 1290/1189,
  48992. bottom: 47/1337
  48993. }
  48994. },
  48995. hand: {
  48996. height: math.unit(1.1, "feet"),
  48997. name: "Hand",
  48998. image: {
  48999. source: "./media/characters/myra-aisling/hand.svg"
  49000. }
  49001. },
  49002. paw: {
  49003. height: math.unit(1.23, "feet"),
  49004. name: "Paw",
  49005. image: {
  49006. source: "./media/characters/myra-aisling/paw.svg"
  49007. }
  49008. },
  49009. },
  49010. [
  49011. {
  49012. name: "Normal",
  49013. height: math.unit(160, "feet"),
  49014. default: true
  49015. },
  49016. ]
  49017. ))
  49018. characterMakers.push(() => makeCharacter(
  49019. { name: "Tenley Sidero", species: ["lycanroc"], tags: ["anthro"] },
  49020. {
  49021. front: {
  49022. height: math.unit(6, "feet"),
  49023. name: "Front",
  49024. image: {
  49025. source: "./media/characters/tenley-sidero/front.svg",
  49026. extra: 1365/1276,
  49027. bottom: 47/1412
  49028. }
  49029. },
  49030. back: {
  49031. height: math.unit(6, "feet"),
  49032. name: "Back",
  49033. image: {
  49034. source: "./media/characters/tenley-sidero/back.svg",
  49035. extra: 1383/1283,
  49036. bottom: 35/1418
  49037. }
  49038. },
  49039. dressed: {
  49040. height: math.unit(6, "feet"),
  49041. name: "Dressed",
  49042. image: {
  49043. source: "./media/characters/tenley-sidero/dressed.svg",
  49044. extra: 1364/1275,
  49045. bottom: 42/1406
  49046. }
  49047. },
  49048. head: {
  49049. height: math.unit(1.47, "feet"),
  49050. name: "Head",
  49051. image: {
  49052. source: "./media/characters/tenley-sidero/head.svg",
  49053. extra: 610/490,
  49054. bottom: 0/610
  49055. }
  49056. },
  49057. },
  49058. [
  49059. {
  49060. name: "Normal",
  49061. height: math.unit(154, "feet"),
  49062. default: true
  49063. },
  49064. ]
  49065. ))
  49066. characterMakers.push(() => makeCharacter(
  49067. { name: "Mallory", species: ["rabbit"], tags: ["anthro"] },
  49068. {
  49069. front: {
  49070. height: math.unit(5, "inches"),
  49071. name: "Front",
  49072. image: {
  49073. source: "./media/characters/mallory/front.svg",
  49074. extra: 1919/1678,
  49075. bottom: 29/1948
  49076. }
  49077. },
  49078. hand: {
  49079. height: math.unit(0.73, "inches"),
  49080. name: "Hand",
  49081. image: {
  49082. source: "./media/characters/mallory/hand.svg"
  49083. }
  49084. },
  49085. paw: {
  49086. height: math.unit(0.68, "inches"),
  49087. name: "Paw",
  49088. image: {
  49089. source: "./media/characters/mallory/paw.svg"
  49090. }
  49091. },
  49092. },
  49093. [
  49094. {
  49095. name: "Small",
  49096. height: math.unit(5, "inches"),
  49097. default: true
  49098. },
  49099. ]
  49100. ))
  49101. characterMakers.push(() => makeCharacter(
  49102. { name: "Mab", species: ["opossum"], tags: ["anthro"] },
  49103. {
  49104. naked: {
  49105. height: math.unit(6, "feet"),
  49106. name: "Naked",
  49107. image: {
  49108. source: "./media/characters/mab/naked.svg",
  49109. extra: 1855/1757,
  49110. bottom: 208/2063
  49111. }
  49112. },
  49113. outside: {
  49114. height: math.unit(6, "feet"),
  49115. name: "Outside",
  49116. image: {
  49117. source: "./media/characters/mab/outside.svg",
  49118. extra: 1855/1757,
  49119. bottom: 208/2063
  49120. }
  49121. },
  49122. party: {
  49123. height: math.unit(6, "feet"),
  49124. name: "Party",
  49125. image: {
  49126. source: "./media/characters/mab/party.svg",
  49127. extra: 1855/1757,
  49128. bottom: 208/2063
  49129. }
  49130. },
  49131. },
  49132. [
  49133. {
  49134. name: "Normal",
  49135. height: math.unit(165, "feet"),
  49136. default: true
  49137. },
  49138. ]
  49139. ))
  49140. characterMakers.push(() => makeCharacter(
  49141. { name: "Winter", species: ["arcanine"], tags: ["feral"] },
  49142. {
  49143. front: {
  49144. height: math.unit(12, "feet"),
  49145. weight: math.unit(4000, "lb"),
  49146. name: "Front",
  49147. image: {
  49148. source: "./media/characters/winter/front.svg",
  49149. extra: 1286/943,
  49150. bottom: 112/1398
  49151. }
  49152. },
  49153. frontNsfw: {
  49154. height: math.unit(12, "feet"),
  49155. weight: math.unit(4000, "lb"),
  49156. name: "Front (NSFW)",
  49157. image: {
  49158. source: "./media/characters/winter/front-nsfw.svg",
  49159. extra: 1286/943,
  49160. bottom: 112/1398
  49161. }
  49162. },
  49163. dick: {
  49164. height: math.unit(3.79, "feet"),
  49165. name: "Dick",
  49166. image: {
  49167. source: "./media/characters/winter/dick.svg"
  49168. }
  49169. },
  49170. },
  49171. [
  49172. {
  49173. name: "Big",
  49174. height: math.unit(12, "feet"),
  49175. default: true
  49176. },
  49177. ]
  49178. ))
  49179. characterMakers.push(() => makeCharacter(
  49180. { name: "Alto", species: ["mouse", "chinchilla"], tags: ["anthro"] },
  49181. {
  49182. front: {
  49183. height: math.unit(4.1, "inches"),
  49184. name: "Front",
  49185. image: {
  49186. source: "./media/characters/alto/front.svg",
  49187. extra: 736/627,
  49188. bottom: 90/826
  49189. }
  49190. },
  49191. },
  49192. [
  49193. {
  49194. name: "Normal",
  49195. height: math.unit(4.1, "inches"),
  49196. default: true
  49197. },
  49198. ]
  49199. ))
  49200. characterMakers.push(() => makeCharacter(
  49201. { name: "Ratstrid V", species: ["opossum"], tags: ["anthro"] },
  49202. {
  49203. sitting: {
  49204. height: math.unit(3, "feet"),
  49205. name: "Sitting",
  49206. image: {
  49207. source: "./media/characters/ratstrid-v/sitting.svg",
  49208. extra: 355/310,
  49209. bottom: 136/491
  49210. }
  49211. },
  49212. },
  49213. [
  49214. {
  49215. name: "Normal",
  49216. height: math.unit(3, "feet"),
  49217. default: true
  49218. },
  49219. ]
  49220. ))
  49221. characterMakers.push(() => makeCharacter(
  49222. { name: "Siz", species: ["cinderace"], tags: ["anthro"] },
  49223. {
  49224. back: {
  49225. height: math.unit(6, "feet"),
  49226. weight: math.unit(350, "lb"),
  49227. name: "Back",
  49228. image: {
  49229. source: "./media/characters/siz/back.svg",
  49230. extra: 1449/1274,
  49231. bottom: 13/1462
  49232. }
  49233. },
  49234. },
  49235. [
  49236. {
  49237. name: "Over-Overcompressed",
  49238. height: math.unit(8, "feet")
  49239. },
  49240. {
  49241. name: "Overcompressed",
  49242. height: math.unit(32, "feet")
  49243. },
  49244. {
  49245. name: "Compressed",
  49246. height: math.unit(128, "feet"),
  49247. default: true
  49248. },
  49249. {
  49250. name: "Half-Compressed",
  49251. height: math.unit(512, "feet")
  49252. },
  49253. {
  49254. name: "Quarter-Compressed",
  49255. height: math.unit(2048, "feet")
  49256. },
  49257. {
  49258. name: "Uncompressed?",
  49259. height: math.unit(8192, "feet")
  49260. },
  49261. ]
  49262. ))
  49263. characterMakers.push(() => makeCharacter(
  49264. { name: "Ven", species: ["raven"], tags: ["anthro"] },
  49265. {
  49266. front: {
  49267. height: math.unit(5 + 9/12, "feet"),
  49268. weight: math.unit(150, "lb"),
  49269. name: "Front",
  49270. image: {
  49271. source: "./media/characters/ven/front.svg",
  49272. extra: 1372/1320,
  49273. bottom: 73/1445
  49274. }
  49275. },
  49276. side: {
  49277. height: math.unit(5 + 9/12, "feet"),
  49278. weight: math.unit(1150, "lb"),
  49279. name: "Side",
  49280. image: {
  49281. source: "./media/characters/ven/side.svg",
  49282. extra: 1119/1070,
  49283. bottom: 42/1161
  49284. },
  49285. default: true
  49286. },
  49287. },
  49288. [
  49289. {
  49290. name: "Normal",
  49291. height: math.unit(5 + 9/12, "feet"),
  49292. default: true
  49293. },
  49294. ]
  49295. ))
  49296. characterMakers.push(() => makeCharacter(
  49297. { name: "Maple", species: ["caudin"], tags: ["anthro"] },
  49298. {
  49299. front: {
  49300. height: math.unit(12, "feet"),
  49301. weight: math.unit(1000, "kg"),
  49302. name: "Front",
  49303. image: {
  49304. source: "./media/characters/maple/front.svg",
  49305. extra: 1193/1081,
  49306. bottom: 22/1215
  49307. }
  49308. },
  49309. },
  49310. [
  49311. {
  49312. name: "Compressed",
  49313. height: math.unit(7, "feet")
  49314. },
  49315. {
  49316. name: "Normal",
  49317. height: math.unit(12, "feet"),
  49318. default: true
  49319. },
  49320. ]
  49321. ))
  49322. characterMakers.push(() => makeCharacter(
  49323. { name: "Nora", species: ["blaziken"], tags: ["anthro"] },
  49324. {
  49325. front: {
  49326. height: math.unit(9, "feet"),
  49327. weight: math.unit(1500, "lb"),
  49328. name: "Front",
  49329. image: {
  49330. source: "./media/characters/nora/front.svg",
  49331. extra: 1348/1286,
  49332. bottom: 218/1566
  49333. }
  49334. },
  49335. erect: {
  49336. height: math.unit(9, "feet"),
  49337. weight: math.unit(11500, "lb"),
  49338. name: "Erect",
  49339. image: {
  49340. source: "./media/characters/nora/erect.svg",
  49341. extra: 1488/1433,
  49342. bottom: 133/1621
  49343. }
  49344. },
  49345. },
  49346. [
  49347. {
  49348. name: "Normal",
  49349. height: math.unit(9, "feet"),
  49350. default: true
  49351. },
  49352. ]
  49353. ))
  49354. characterMakers.push(() => makeCharacter(
  49355. { name: "North (Caudin)", species: ["caudin"], tags: ["anthro"] },
  49356. {
  49357. front: {
  49358. height: math.unit(25, "feet"),
  49359. weight: math.unit(27500, "lb"),
  49360. name: "Front",
  49361. image: {
  49362. source: "./media/characters/north-caudin/front.svg",
  49363. extra: 1184/1082,
  49364. bottom: 23/1207
  49365. }
  49366. },
  49367. },
  49368. [
  49369. {
  49370. name: "Compressed",
  49371. height: math.unit(10, "feet")
  49372. },
  49373. {
  49374. name: "Normal",
  49375. height: math.unit(25, "feet"),
  49376. default: true
  49377. },
  49378. ]
  49379. ))
  49380. characterMakers.push(() => makeCharacter(
  49381. { name: "Merrian", species: ["caudin", "avian"], tags: ["anthro"] },
  49382. {
  49383. front: {
  49384. height: math.unit(9, "feet"),
  49385. weight: math.unit(1250, "lb"),
  49386. name: "Front",
  49387. image: {
  49388. source: "./media/characters/merrian/front.svg",
  49389. extra: 2393/2304,
  49390. bottom: 40/2433
  49391. }
  49392. },
  49393. },
  49394. [
  49395. {
  49396. name: "Normal",
  49397. height: math.unit(9, "feet"),
  49398. default: true
  49399. },
  49400. ]
  49401. ))
  49402. characterMakers.push(() => makeCharacter(
  49403. { name: "Hazel", species: ["red-winged-blackbird"], tags: ["anthro"] },
  49404. {
  49405. front: {
  49406. height: math.unit(9, "feet"),
  49407. weight: math.unit(1000, "lb"),
  49408. name: "Front",
  49409. image: {
  49410. source: "./media/characters/hazel/front.svg",
  49411. extra: 2351/2298,
  49412. bottom: 38/2389
  49413. }
  49414. },
  49415. },
  49416. [
  49417. {
  49418. name: "Normal",
  49419. height: math.unit(9, "feet"),
  49420. default: true
  49421. },
  49422. ]
  49423. ))
  49424. characterMakers.push(() => makeCharacter(
  49425. { name: "Emma", species: ["caudin"], tags: ["anthro"] },
  49426. {
  49427. front: {
  49428. height: math.unit(13, "feet"),
  49429. weight: math.unit(3200, "lb"),
  49430. name: "Front",
  49431. image: {
  49432. source: "./media/characters/emma/front.svg",
  49433. extra: 2263/2029,
  49434. bottom: 68/2331
  49435. }
  49436. },
  49437. },
  49438. [
  49439. {
  49440. name: "Normal",
  49441. height: math.unit(13, "feet"),
  49442. default: true
  49443. },
  49444. ]
  49445. ))
  49446. characterMakers.push(() => makeCharacter(
  49447. { name: "Ilumina", species: ["hooded-wheater"], tags: ["anthro"] },
  49448. {
  49449. front: {
  49450. height: math.unit(11 + 9/12, "feet"),
  49451. weight: math.unit(2500, "lb"),
  49452. name: "Front",
  49453. image: {
  49454. source: "./media/characters/ilumina/front.svg",
  49455. extra: 2248/2209,
  49456. bottom: 164/2412
  49457. }
  49458. },
  49459. },
  49460. [
  49461. {
  49462. name: "Normal",
  49463. height: math.unit(11 + 9/12, "feet"),
  49464. default: true
  49465. },
  49466. ]
  49467. ))
  49468. characterMakers.push(() => makeCharacter(
  49469. { name: "Moonshine", species: ["caudin"], tags: ["anthro"] },
  49470. {
  49471. front: {
  49472. height: math.unit(8 + 10/12, "feet"),
  49473. weight: math.unit(1350, "lb"),
  49474. name: "Front",
  49475. image: {
  49476. source: "./media/characters/moonshine/front.svg",
  49477. extra: 2395/2288,
  49478. bottom: 40/2435
  49479. }
  49480. },
  49481. },
  49482. [
  49483. {
  49484. name: "Normal",
  49485. height: math.unit(8 + 10/12, "feet"),
  49486. default: true
  49487. },
  49488. ]
  49489. ))
  49490. characterMakers.push(() => makeCharacter(
  49491. { name: "Aletia", species: ["caudin"], tags: ["anthro"] },
  49492. {
  49493. front: {
  49494. height: math.unit(14, "feet"),
  49495. weight: math.unit(3400, "lb"),
  49496. name: "Front",
  49497. image: {
  49498. source: "./media/characters/aletia/front.svg",
  49499. extra: 1185/1052,
  49500. bottom: 21/1206
  49501. }
  49502. },
  49503. },
  49504. [
  49505. {
  49506. name: "Compressed",
  49507. height: math.unit(8, "feet")
  49508. },
  49509. {
  49510. name: "Normal",
  49511. height: math.unit(14, "feet"),
  49512. default: true
  49513. },
  49514. ]
  49515. ))
  49516. characterMakers.push(() => makeCharacter(
  49517. { name: "Deidra", species: ["caudin"], tags: ["anthro"] },
  49518. {
  49519. front: {
  49520. height: math.unit(17, "feet"),
  49521. weight: math.unit(6500, "lb"),
  49522. name: "Front",
  49523. image: {
  49524. source: "./media/characters/deidra/front.svg",
  49525. extra: 1201/1081,
  49526. bottom: 16/1217
  49527. }
  49528. },
  49529. },
  49530. [
  49531. {
  49532. name: "Compressed",
  49533. height: math.unit(9 + 6/12, "feet")
  49534. },
  49535. {
  49536. name: "Normal",
  49537. height: math.unit(17, "feet"),
  49538. default: true
  49539. },
  49540. ]
  49541. ))
  49542. characterMakers.push(() => makeCharacter(
  49543. { name: "Freki Yrmori", species: ["folf"], tags: ["anthro"] },
  49544. {
  49545. front: {
  49546. height: math.unit(7 + 4/12, "feet"),
  49547. weight: math.unit(280, "lb"),
  49548. name: "Front",
  49549. image: {
  49550. source: "./media/characters/freki-yrmori/front.svg",
  49551. extra: 1286/1182,
  49552. bottom: 29/1315
  49553. }
  49554. },
  49555. maw: {
  49556. height: math.unit(0.9, "feet"),
  49557. name: "Maw",
  49558. image: {
  49559. source: "./media/characters/freki-yrmori/maw.svg"
  49560. }
  49561. },
  49562. },
  49563. [
  49564. {
  49565. name: "Normal",
  49566. height: math.unit(7 + 4/12, "feet"),
  49567. default: true
  49568. },
  49569. {
  49570. name: "Macro",
  49571. height: math.unit(38.5, "meters")
  49572. },
  49573. ]
  49574. ))
  49575. characterMakers.push(() => makeCharacter(
  49576. { name: "Aetherios", species: ["dragon"], tags: ["feral"] },
  49577. {
  49578. side: {
  49579. height: math.unit(47.2, "meters"),
  49580. weight: math.unit(10000, "tons"),
  49581. name: "Side",
  49582. image: {
  49583. source: "./media/characters/aetherios/side.svg",
  49584. extra: 2363/642,
  49585. bottom: 221/2584
  49586. }
  49587. },
  49588. top: {
  49589. height: math.unit(240, "meters"),
  49590. weight: math.unit(10000, "tons"),
  49591. name: "Top",
  49592. image: {
  49593. source: "./media/characters/aetherios/top.svg"
  49594. }
  49595. },
  49596. bottom: {
  49597. height: math.unit(240, "meters"),
  49598. weight: math.unit(10000, "tons"),
  49599. name: "Bottom",
  49600. image: {
  49601. source: "./media/characters/aetherios/bottom.svg"
  49602. }
  49603. },
  49604. head: {
  49605. height: math.unit(38.6, "meters"),
  49606. name: "Head",
  49607. image: {
  49608. source: "./media/characters/aetherios/head.svg",
  49609. extra: 1335/1112,
  49610. bottom: 0/1335
  49611. }
  49612. },
  49613. front: {
  49614. height: math.unit(29, "meters"),
  49615. name: "Front",
  49616. image: {
  49617. source: "./media/characters/aetherios/front.svg",
  49618. extra: 1266/953,
  49619. bottom: 158/1424
  49620. }
  49621. },
  49622. maw: {
  49623. height: math.unit(16.37, "meters"),
  49624. name: "Maw",
  49625. image: {
  49626. source: "./media/characters/aetherios/maw.svg",
  49627. extra: 748/637,
  49628. bottom: 0/748
  49629. },
  49630. extraAttributes: {
  49631. preyCapacity: {
  49632. name: "Capacity",
  49633. power: 3,
  49634. type: "volume",
  49635. base: math.unit(1000, "people")
  49636. },
  49637. tongueSize: {
  49638. name: "Tongue Size",
  49639. power: 2,
  49640. type: "area",
  49641. base: math.unit(21, "m^2")
  49642. }
  49643. }
  49644. },
  49645. forepaw: {
  49646. height: math.unit(18, "meters"),
  49647. name: "Forepaw",
  49648. image: {
  49649. source: "./media/characters/aetherios/forepaw.svg"
  49650. }
  49651. },
  49652. hindpaw: {
  49653. height: math.unit(23, "meters"),
  49654. name: "Hindpaw",
  49655. image: {
  49656. source: "./media/characters/aetherios/hindpaw.svg"
  49657. }
  49658. },
  49659. genitals: {
  49660. height: math.unit(42, "meters"),
  49661. name: "Genitals",
  49662. image: {
  49663. source: "./media/characters/aetherios/genitals.svg"
  49664. }
  49665. },
  49666. },
  49667. [
  49668. {
  49669. name: "Normal",
  49670. height: math.unit(47.2, "meters"),
  49671. default: true
  49672. },
  49673. {
  49674. name: "Macro",
  49675. height: math.unit(160, "meters")
  49676. },
  49677. {
  49678. name: "Mega",
  49679. height: math.unit(1.87, "km")
  49680. },
  49681. {
  49682. name: "Giga",
  49683. height: math.unit(40000, "km")
  49684. },
  49685. {
  49686. name: "Stellar",
  49687. height: math.unit(158000000, "km")
  49688. },
  49689. {
  49690. name: "Cosmic",
  49691. height: math.unit(9.46e12, "km")
  49692. },
  49693. ]
  49694. ))
  49695. characterMakers.push(() => makeCharacter(
  49696. { name: "Mizu (Gieeg)", species: ["gieeg"], tags: ["anthro"] },
  49697. {
  49698. front: {
  49699. height: math.unit(5 + 4/12, "feet"),
  49700. weight: math.unit(80, "lb"),
  49701. name: "Front",
  49702. image: {
  49703. source: "./media/characters/mizu-gieeg/front.svg",
  49704. extra: 850/709,
  49705. bottom: 52/902
  49706. }
  49707. },
  49708. back: {
  49709. height: math.unit(5 + 4/12, "feet"),
  49710. weight: math.unit(80, "lb"),
  49711. name: "Back",
  49712. image: {
  49713. source: "./media/characters/mizu-gieeg/back.svg",
  49714. extra: 882/745,
  49715. bottom: 25/907
  49716. }
  49717. },
  49718. },
  49719. [
  49720. {
  49721. name: "Normal",
  49722. height: math.unit(5 + 4/12, "feet"),
  49723. default: true
  49724. },
  49725. ]
  49726. ))
  49727. characterMakers.push(() => makeCharacter(
  49728. { name: "Roselle St. Papier", species: ["ringtail"], tags: ["anthro"] },
  49729. {
  49730. front: {
  49731. height: math.unit(6, "feet"),
  49732. name: "Front",
  49733. image: {
  49734. source: "./media/characters/roselle-st-papier/front.svg",
  49735. extra: 1430/1280,
  49736. bottom: 37/1467
  49737. }
  49738. },
  49739. back: {
  49740. height: math.unit(6, "feet"),
  49741. name: "Back",
  49742. image: {
  49743. source: "./media/characters/roselle-st-papier/back.svg",
  49744. extra: 1491/1296,
  49745. bottom: 23/1514
  49746. }
  49747. },
  49748. ear: {
  49749. height: math.unit(1.26, "feet"),
  49750. name: "Ear",
  49751. image: {
  49752. source: "./media/characters/roselle-st-papier/ear.svg"
  49753. }
  49754. },
  49755. },
  49756. [
  49757. {
  49758. name: "Normal",
  49759. height: math.unit(150, "feet"),
  49760. default: true
  49761. },
  49762. ]
  49763. ))
  49764. characterMakers.push(() => makeCharacter(
  49765. { name: "Valargent", species: ["fox"], tags: ["anthro"] },
  49766. {
  49767. front: {
  49768. height: math.unit(1, "inches"),
  49769. name: "Front",
  49770. image: {
  49771. source: "./media/characters/valargent/front.svg",
  49772. extra: 1825/1694,
  49773. bottom: 62/1887
  49774. }
  49775. },
  49776. back: {
  49777. height: math.unit(1, "inches"),
  49778. name: "Back",
  49779. image: {
  49780. source: "./media/characters/valargent/back.svg",
  49781. extra: 1775/1682,
  49782. bottom: 88/1863
  49783. }
  49784. },
  49785. },
  49786. [
  49787. {
  49788. name: "Micro",
  49789. height: math.unit(1, "inch"),
  49790. default: true
  49791. },
  49792. ]
  49793. ))
  49794. characterMakers.push(() => makeCharacter(
  49795. { name: "Zarina", species: ["hisuian-zoroark"], tags: ["anthro"] },
  49796. {
  49797. front: {
  49798. height: math.unit(3.4, "meters"),
  49799. name: "Front",
  49800. image: {
  49801. source: "./media/characters/zarina/front.svg",
  49802. extra: 1733/1425,
  49803. bottom: 93/1826
  49804. }
  49805. },
  49806. squatting: {
  49807. height: math.unit(2.14, "meters"),
  49808. name: "Squatting",
  49809. image: {
  49810. source: "./media/characters/zarina/squatting.svg",
  49811. extra: 1073/788,
  49812. bottom: 63/1136
  49813. }
  49814. },
  49815. back: {
  49816. height: math.unit(2.14, "meters"),
  49817. name: "Back",
  49818. image: {
  49819. source: "./media/characters/zarina/back.svg",
  49820. extra: 1128/885,
  49821. bottom: 0/1128
  49822. }
  49823. },
  49824. },
  49825. [
  49826. {
  49827. name: "Normal",
  49828. height: math.unit(3.4, "meters"),
  49829. default: true
  49830. },
  49831. {
  49832. name: "Big",
  49833. height: math.unit(5, "meters")
  49834. },
  49835. {
  49836. name: "Macro",
  49837. height: math.unit(110, "meters")
  49838. },
  49839. ]
  49840. ))
  49841. characterMakers.push(() => makeCharacter(
  49842. { name: "VentusAstroFox", species: ["fox"], tags: ["anthro"] },
  49843. {
  49844. front: {
  49845. height: math.unit(7, "feet"),
  49846. name: "Front",
  49847. image: {
  49848. source: "./media/characters/ventus-astro-fox/front.svg",
  49849. extra: 1792/1623,
  49850. bottom: 28/1820
  49851. }
  49852. },
  49853. back: {
  49854. height: math.unit(7, "feet"),
  49855. name: "Back",
  49856. image: {
  49857. source: "./media/characters/ventus-astro-fox/back.svg",
  49858. extra: 1789/1620,
  49859. bottom: 31/1820
  49860. }
  49861. },
  49862. outfit: {
  49863. height: math.unit(7, "feet"),
  49864. name: "Outfit",
  49865. image: {
  49866. source: "./media/characters/ventus-astro-fox/outfit.svg",
  49867. extra: 1054/925,
  49868. bottom: 15/1069
  49869. }
  49870. },
  49871. head: {
  49872. height: math.unit(1.12, "feet"),
  49873. name: "Head",
  49874. image: {
  49875. source: "./media/characters/ventus-astro-fox/head.svg",
  49876. extra: 866/504,
  49877. bottom: 0/866
  49878. }
  49879. },
  49880. hand: {
  49881. height: math.unit(1, "feet"),
  49882. name: "Hand",
  49883. image: {
  49884. source: "./media/characters/ventus-astro-fox/hand.svg"
  49885. }
  49886. },
  49887. paw: {
  49888. height: math.unit(1.5, "feet"),
  49889. name: "Paw",
  49890. image: {
  49891. source: "./media/characters/ventus-astro-fox/paw.svg"
  49892. }
  49893. },
  49894. },
  49895. [
  49896. {
  49897. name: "Normal",
  49898. height: math.unit(7, "feet"),
  49899. default: true
  49900. },
  49901. {
  49902. name: "Macro",
  49903. height: math.unit(200, "feet")
  49904. },
  49905. {
  49906. name: "Cosmic",
  49907. height: math.unit(3, "universes")
  49908. },
  49909. ]
  49910. ))
  49911. characterMakers.push(() => makeCharacter(
  49912. { name: "CORE-T", species: ["cybeast"], tags: ["anthro"] },
  49913. {
  49914. front: {
  49915. height: math.unit(3, "meters"),
  49916. weight: math.unit(7000, "lb"),
  49917. name: "Front",
  49918. image: {
  49919. source: "./media/characters/core-t/front.svg",
  49920. extra: 5729/4941,
  49921. bottom: 1129/6858
  49922. }
  49923. },
  49924. },
  49925. [
  49926. {
  49927. name: "Big",
  49928. height: math.unit(3, "meters"),
  49929. default: true
  49930. },
  49931. ]
  49932. ))
  49933. characterMakers.push(() => makeCharacter(
  49934. { name: "Cadbunny", species: ["cinderace"], tags: ["anthro"] },
  49935. {
  49936. normal: {
  49937. height: math.unit(6 + 6/12, "feet"),
  49938. weight: math.unit(275, "lb"),
  49939. name: "Front",
  49940. image: {
  49941. source: "./media/characters/cadbunny/normal.svg",
  49942. extra: 1129/947,
  49943. bottom: 93/1222
  49944. },
  49945. default: true,
  49946. form: "normal"
  49947. },
  49948. gigantamax: {
  49949. height: math.unit(26, "feet"),
  49950. weight: math.unit(16000, "lb"),
  49951. name: "Front",
  49952. image: {
  49953. source: "./media/characters/cadbunny/gigantamax.svg",
  49954. extra: 1133/944,
  49955. bottom: 90/1223
  49956. },
  49957. default: true,
  49958. form: "gigantamax"
  49959. },
  49960. },
  49961. [
  49962. {
  49963. name: "Normal",
  49964. height: math.unit(6 + 6/12, "feet"),
  49965. default: true,
  49966. form: "normal"
  49967. },
  49968. {
  49969. name: "Small",
  49970. height: math.unit(26, "feet"),
  49971. default: true,
  49972. form: "gigantamax"
  49973. },
  49974. {
  49975. name: "Large",
  49976. height: math.unit(78, "feet"),
  49977. form: "gigantamax"
  49978. },
  49979. ],
  49980. {
  49981. "normal": {
  49982. name: "Normal",
  49983. default: true
  49984. },
  49985. "gigantamax": {
  49986. name: "Gigantamax"
  49987. }
  49988. }
  49989. ))
  49990. characterMakers.push(() => makeCharacter(
  49991. { name: "Blitz Dunkelheit", species: ["wolf"], tags: ["anthro", "feral"] },
  49992. {
  49993. anthroFront: {
  49994. height: math.unit(8, "feet"),
  49995. weight: math.unit(300, "lb"),
  49996. name: "Front",
  49997. image: {
  49998. source: "./media/characters/blitz-dunkelheit/anthro-front.svg",
  49999. extra: 1272/1176,
  50000. bottom: 53/1325
  50001. },
  50002. form: "anthro",
  50003. default: true
  50004. },
  50005. feralSide: {
  50006. height: math.unit(4, "feet"),
  50007. weight: math.unit(250, "lb"),
  50008. name: "Side",
  50009. image: {
  50010. source: "./media/characters/blitz-dunkelheit/feral-side.svg",
  50011. extra: 731/621,
  50012. bottom: 0/731
  50013. },
  50014. form: "feral",
  50015. default: true
  50016. },
  50017. },
  50018. [
  50019. {
  50020. name: "Regular",
  50021. height: math.unit(8, "feet"),
  50022. form: "anthro"
  50023. },
  50024. {
  50025. name: "Macro",
  50026. height: math.unit(250, "feet"),
  50027. form: "anthro",
  50028. default: true
  50029. },
  50030. {
  50031. name: "Regular",
  50032. height: math.unit(4, "feet"),
  50033. form: "feral"
  50034. },
  50035. {
  50036. name: "Macro",
  50037. height: math.unit(125, "feet"),
  50038. form: "feral",
  50039. default: true
  50040. },
  50041. ],
  50042. {
  50043. "anthro": {
  50044. name: "Anthro",
  50045. default: true
  50046. },
  50047. "feral": {
  50048. name: "Feral",
  50049. },
  50050. }
  50051. ))
  50052. characterMakers.push(() => makeCharacter(
  50053. { name: "Maple (Javira Dragon)", species: ["javira-dragon"], tags: ["feral"] },
  50054. {
  50055. front: {
  50056. height: math.unit(11 + 10/12, "feet"),
  50057. weight: math.unit(1587, "kg"),
  50058. name: "Front",
  50059. image: {
  50060. source: "./media/characters/maple-javira-dragon/front.svg",
  50061. extra: 1136/744,
  50062. bottom: 73/1209
  50063. }
  50064. },
  50065. side: {
  50066. height: math.unit(11 + 10/12, "feet"),
  50067. weight: math.unit(1587, "kg"),
  50068. name: "Side",
  50069. image: {
  50070. source: "./media/characters/maple-javira-dragon/side.svg",
  50071. extra: 712/505,
  50072. bottom: 17/729
  50073. }
  50074. },
  50075. head: {
  50076. height: math.unit(8.05, "feet"),
  50077. name: "Head",
  50078. image: {
  50079. source: "./media/characters/maple-javira-dragon/head.svg",
  50080. extra: 1420/1344,
  50081. bottom: 0/1420
  50082. }
  50083. },
  50084. },
  50085. [
  50086. {
  50087. name: "Normal",
  50088. height: math.unit(11 + 10/12, "feet"),
  50089. default: true
  50090. },
  50091. ]
  50092. ))
  50093. characterMakers.push(() => makeCharacter(
  50094. { name: "Sonia Wyverntail", species: ["kobold"], tags: ["anthro"] },
  50095. {
  50096. front: {
  50097. height: math.unit(117, "cm"),
  50098. weight: math.unit(50, "kg"),
  50099. name: "Front",
  50100. image: {
  50101. source: "./media/characters/sonia-wyverntail/front.svg",
  50102. extra: 708/592,
  50103. bottom: 25/733
  50104. }
  50105. },
  50106. },
  50107. [
  50108. {
  50109. name: "Normal",
  50110. height: math.unit(117, "cm"),
  50111. default: true
  50112. },
  50113. ]
  50114. ))
  50115. //characters
  50116. function makeCharacters() {
  50117. const results = [];
  50118. characterMakers.forEach(character => {
  50119. results.push(character());
  50120. });
  50121. return results;
  50122. }