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

51729 строки
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", "avian", "vilous"]
  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. "koopew": {
  1979. name: "Koopew",
  1980. parents: ["dragon", "alien"]
  1981. },
  1982. "nevrean": {
  1983. name: "Nevrean",
  1984. parents: ["avian", "vilous"]
  1985. },
  1986. "vilous": {
  1987. name: "Vilous Species",
  1988. parents: []
  1989. },
  1990. }
  1991. //species
  1992. function getSpeciesInfo(speciesList) {
  1993. let result = new Set();
  1994. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1995. result.add(entry)
  1996. });
  1997. return Array.from(result);
  1998. };
  1999. function getSpeciesInfoHelper(species) {
  2000. if (!speciesData[species]) {
  2001. console.warn(species + " doesn't exist");
  2002. return [];
  2003. }
  2004. if (speciesData[species].parents) {
  2005. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  2006. } else {
  2007. return [species];
  2008. }
  2009. }
  2010. characterMakers.push(() => makeCharacter(
  2011. {
  2012. name: "Fen",
  2013. species: ["crux"],
  2014. description: {
  2015. title: "Bio",
  2016. text: "Very furry. Sheds on everything."
  2017. },
  2018. tags: [
  2019. "anthro",
  2020. "goo"
  2021. ]
  2022. },
  2023. {
  2024. front: {
  2025. height: math.unit(12, "feet"),
  2026. weight: math.unit(2400, "lb"),
  2027. name: "Front",
  2028. image: {
  2029. source: "./media/characters/fen/front.svg",
  2030. extra: 1804/1562,
  2031. bottom: 205/2009
  2032. }
  2033. },
  2034. diving: {
  2035. height: math.unit(4.9, "meters"),
  2036. weight: math.unit(2400, "lb"),
  2037. name: "Diving",
  2038. image: {
  2039. source: "./media/characters/fen/diving.svg"
  2040. }
  2041. },
  2042. goo: {
  2043. height: math.unit(12, "feet"),
  2044. weight: math.unit(3600, "lb"),
  2045. volume: math.unit(1000, "liters"),
  2046. capacity: math.unit(6, "people"),
  2047. name: "Goo",
  2048. image: {
  2049. source: "./media/characters/fen/goo.svg",
  2050. extra: 1307/1071,
  2051. bottom: 134/1441
  2052. }
  2053. },
  2054. maw: {
  2055. height: math.unit(5.03, "feet"),
  2056. name: "Maw",
  2057. image: {
  2058. source: "./media/characters/fen/maw.svg"
  2059. }
  2060. },
  2061. gooCeiling: {
  2062. height: math.unit(6.6, "feet"),
  2063. weight: math.unit(3000, "lb"),
  2064. volume: math.unit(1000, "liters"),
  2065. capacity: math.unit(6, "people"),
  2066. name: "Goo (Ceiling)",
  2067. image: {
  2068. source: "./media/characters/fen/goo-ceiling.svg"
  2069. }
  2070. },
  2071. back: {
  2072. height: math.unit(12, "feet"),
  2073. weight: math.unit(2400, "lb"),
  2074. name: "Back",
  2075. image: {
  2076. source: "./media/characters/fen/back.svg",
  2077. },
  2078. info: {
  2079. description: {
  2080. mode: "append",
  2081. text: "\n\nHe is not currently looking at you."
  2082. }
  2083. }
  2084. },
  2085. full: {
  2086. height: math.unit(1.85, "meter"),
  2087. weight: math.unit(3200, "lb"),
  2088. name: "Full",
  2089. image: {
  2090. source: "./media/characters/fen/full.svg",
  2091. extra: 1133/859,
  2092. bottom: 145/1278
  2093. },
  2094. info: {
  2095. description: {
  2096. mode: "append",
  2097. text: "\n\nMunch."
  2098. }
  2099. }
  2100. },
  2101. gooLounging: {
  2102. height: math.unit(4.53, "feet"),
  2103. weight: math.unit(3000, "lb"),
  2104. capacity: math.unit(6, "people"),
  2105. name: "Goo (Lounging)",
  2106. image: {
  2107. source: "./media/characters/fen/goo-lounging.svg",
  2108. bottom: 116 / 613
  2109. }
  2110. },
  2111. lounging: {
  2112. height: math.unit(10.52, "feet"),
  2113. weight: math.unit(2400, "lb"),
  2114. name: "Lounging",
  2115. image: {
  2116. source: "./media/characters/fen/lounging.svg"
  2117. }
  2118. },
  2119. },
  2120. [
  2121. {
  2122. name: "Small",
  2123. height: math.unit(2.2428, "meter")
  2124. },
  2125. {
  2126. name: "Normal",
  2127. height: math.unit(12, "feet"),
  2128. default: true,
  2129. },
  2130. {
  2131. name: "Big",
  2132. height: math.unit(20, "feet")
  2133. },
  2134. {
  2135. name: "Minimacro",
  2136. height: math.unit(40, "feet"),
  2137. info: {
  2138. description: {
  2139. mode: "append",
  2140. text: "\n\nTOO DAMN BIG"
  2141. }
  2142. }
  2143. },
  2144. {
  2145. name: "Macro",
  2146. height: math.unit(100, "feet"),
  2147. info: {
  2148. description: {
  2149. mode: "append",
  2150. text: "\n\nTOO DAMN BIG"
  2151. }
  2152. }
  2153. },
  2154. {
  2155. name: "Megamacro",
  2156. height: math.unit(2, "miles")
  2157. },
  2158. {
  2159. name: "Gigamacro",
  2160. height: math.unit(10, "earths")
  2161. },
  2162. ]
  2163. ))
  2164. characterMakers.push(() => makeCharacter(
  2165. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2166. {
  2167. front: {
  2168. height: math.unit(183, "cm"),
  2169. weight: math.unit(80, "kg"),
  2170. name: "Front",
  2171. image: {
  2172. source: "./media/characters/sofia-fluttertail/front.svg",
  2173. bottom: 0.01,
  2174. extra: 2154 / 2081
  2175. }
  2176. },
  2177. frontAlt: {
  2178. height: math.unit(183, "cm"),
  2179. weight: math.unit(80, "kg"),
  2180. name: "Front (alt)",
  2181. image: {
  2182. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2183. }
  2184. },
  2185. back: {
  2186. height: math.unit(183, "cm"),
  2187. weight: math.unit(80, "kg"),
  2188. name: "Back",
  2189. image: {
  2190. source: "./media/characters/sofia-fluttertail/back.svg"
  2191. }
  2192. },
  2193. kneeling: {
  2194. height: math.unit(125, "cm"),
  2195. weight: math.unit(80, "kg"),
  2196. name: "Kneeling",
  2197. image: {
  2198. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2199. extra: 1033 / 977,
  2200. bottom: 23.7 / 1057
  2201. }
  2202. },
  2203. maw: {
  2204. height: math.unit(183 / 5, "cm"),
  2205. name: "Maw",
  2206. image: {
  2207. source: "./media/characters/sofia-fluttertail/maw.svg"
  2208. }
  2209. },
  2210. mawcloseup: {
  2211. height: math.unit(183 / 5 * 0.41, "cm"),
  2212. name: "Maw (Closeup)",
  2213. image: {
  2214. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2215. }
  2216. },
  2217. paws: {
  2218. height: math.unit(1.17, "feet"),
  2219. name: "Paws",
  2220. image: {
  2221. source: "./media/characters/sofia-fluttertail/paws.svg",
  2222. extra: 851 / 851,
  2223. bottom: 17 / 868
  2224. }
  2225. },
  2226. },
  2227. [
  2228. {
  2229. name: "Normal",
  2230. height: math.unit(1.83, "meter")
  2231. },
  2232. {
  2233. name: "Size Thief",
  2234. height: math.unit(18, "feet")
  2235. },
  2236. {
  2237. name: "50 Foot Collie",
  2238. height: math.unit(50, "feet")
  2239. },
  2240. {
  2241. name: "Macro",
  2242. height: math.unit(96, "feet"),
  2243. default: true
  2244. },
  2245. {
  2246. name: "Megamerger",
  2247. height: math.unit(650, "feet")
  2248. },
  2249. ]
  2250. ))
  2251. characterMakers.push(() => makeCharacter(
  2252. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2253. {
  2254. front: {
  2255. height: math.unit(7, "feet"),
  2256. weight: math.unit(100, "kg"),
  2257. name: "Front",
  2258. image: {
  2259. source: "./media/characters/march/front.svg",
  2260. extra: 1992/1851,
  2261. bottom: 39/2031
  2262. }
  2263. },
  2264. foot: {
  2265. height: math.unit(0.9, "feet"),
  2266. name: "Foot",
  2267. image: {
  2268. source: "./media/characters/march/foot.svg"
  2269. }
  2270. },
  2271. },
  2272. [
  2273. {
  2274. name: "Normal",
  2275. height: math.unit(7.9, "feet")
  2276. },
  2277. {
  2278. name: "Macro",
  2279. height: math.unit(220, "meters")
  2280. },
  2281. {
  2282. name: "Megamacro",
  2283. height: math.unit(2.98, "km"),
  2284. default: true
  2285. },
  2286. {
  2287. name: "Gigamacro",
  2288. height: math.unit(15963, "km")
  2289. },
  2290. {
  2291. name: "Teramacro",
  2292. height: math.unit(2980000000, "km")
  2293. },
  2294. {
  2295. name: "Examacro",
  2296. height: math.unit(250, "parsecs")
  2297. },
  2298. ]
  2299. ))
  2300. characterMakers.push(() => makeCharacter(
  2301. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2302. {
  2303. front: {
  2304. height: math.unit(6, "feet"),
  2305. weight: math.unit(60, "kg"),
  2306. name: "Front",
  2307. image: {
  2308. source: "./media/characters/noir/front.svg",
  2309. extra: 1,
  2310. bottom: 0.032
  2311. }
  2312. },
  2313. },
  2314. [
  2315. {
  2316. name: "Normal",
  2317. height: math.unit(6.6, "feet")
  2318. },
  2319. {
  2320. name: "Macro",
  2321. height: math.unit(500, "feet")
  2322. },
  2323. {
  2324. name: "Megamacro",
  2325. height: math.unit(2.5, "km"),
  2326. default: true
  2327. },
  2328. {
  2329. name: "Gigamacro",
  2330. height: math.unit(22500, "km")
  2331. },
  2332. {
  2333. name: "Teramacro",
  2334. height: math.unit(2500000000, "km")
  2335. },
  2336. {
  2337. name: "Examacro",
  2338. height: math.unit(200, "parsecs")
  2339. },
  2340. ]
  2341. ))
  2342. characterMakers.push(() => makeCharacter(
  2343. { name: "Okuri", species: ["sabresune"], tags: ["anthro"] },
  2344. {
  2345. front: {
  2346. height: math.unit(7, "feet"),
  2347. weight: math.unit(100, "kg"),
  2348. name: "Front",
  2349. image: {
  2350. source: "./media/characters/okuri/front.svg",
  2351. extra: 739/665,
  2352. bottom: 39/778
  2353. }
  2354. },
  2355. back: {
  2356. height: math.unit(7, "feet"),
  2357. weight: math.unit(100, "kg"),
  2358. name: "Back",
  2359. image: {
  2360. source: "./media/characters/okuri/back.svg",
  2361. extra: 734/653,
  2362. bottom: 13/747
  2363. }
  2364. },
  2365. sitting: {
  2366. height: math.unit(2.95, "feet"),
  2367. weight: math.unit(100, "kg"),
  2368. name: "Sitting",
  2369. image: {
  2370. source: "./media/characters/okuri/sitting.svg",
  2371. extra: 370/318,
  2372. bottom: 99/469
  2373. }
  2374. },
  2375. },
  2376. [
  2377. {
  2378. name: "Smallest",
  2379. height: math.unit(5 + 2/12, "feet")
  2380. },
  2381. {
  2382. name: "Smaller",
  2383. height: math.unit(300, "feet")
  2384. },
  2385. {
  2386. name: "Small",
  2387. height: math.unit(1000, "feet")
  2388. },
  2389. {
  2390. name: "Macro",
  2391. height: math.unit(1, "mile")
  2392. },
  2393. {
  2394. name: "Mega Macro (Small)",
  2395. height: math.unit(20, "km")
  2396. },
  2397. {
  2398. name: "Mega Macro (Large)",
  2399. height: math.unit(600, "km")
  2400. },
  2401. {
  2402. name: "Giga Macro",
  2403. height: math.unit(10000, "km")
  2404. },
  2405. {
  2406. name: "Normal",
  2407. height: math.unit(577560, "km"),
  2408. default: true
  2409. },
  2410. {
  2411. name: "Large",
  2412. height: math.unit(4, "galaxies")
  2413. },
  2414. {
  2415. name: "Largest",
  2416. height: math.unit(15, "multiverses")
  2417. },
  2418. ]
  2419. ))
  2420. characterMakers.push(() => makeCharacter(
  2421. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2422. {
  2423. front: {
  2424. height: math.unit(7, "feet"),
  2425. weight: math.unit(100, "kg"),
  2426. name: "Front",
  2427. image: {
  2428. source: "./media/characters/manny/front.svg",
  2429. extra: 1,
  2430. bottom: 0.06
  2431. }
  2432. },
  2433. back: {
  2434. height: math.unit(7, "feet"),
  2435. weight: math.unit(100, "kg"),
  2436. name: "Back",
  2437. image: {
  2438. source: "./media/characters/manny/back.svg",
  2439. extra: 1,
  2440. bottom: 0.014
  2441. }
  2442. },
  2443. },
  2444. [
  2445. {
  2446. name: "Normal",
  2447. height: math.unit(7, "feet"),
  2448. },
  2449. {
  2450. name: "Macro",
  2451. height: math.unit(78, "feet"),
  2452. default: true
  2453. },
  2454. {
  2455. name: "Macro+",
  2456. height: math.unit(300, "meters")
  2457. },
  2458. {
  2459. name: "Macro++",
  2460. height: math.unit(2400, "meters")
  2461. },
  2462. {
  2463. name: "Megamacro",
  2464. height: math.unit(5167, "meters")
  2465. },
  2466. {
  2467. name: "Gigamacro",
  2468. height: math.unit(41769, "miles")
  2469. },
  2470. ]
  2471. ))
  2472. characterMakers.push(() => makeCharacter(
  2473. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2474. {
  2475. front: {
  2476. height: math.unit(7, "feet"),
  2477. weight: math.unit(100, "kg"),
  2478. name: "Front",
  2479. image: {
  2480. source: "./media/characters/adake/front-1.svg"
  2481. }
  2482. },
  2483. frontAlt: {
  2484. height: math.unit(7, "feet"),
  2485. weight: math.unit(100, "kg"),
  2486. name: "Front (Alt)",
  2487. image: {
  2488. source: "./media/characters/adake/front-2.svg",
  2489. extra: 1,
  2490. bottom: 0.01
  2491. }
  2492. },
  2493. back: {
  2494. height: math.unit(7, "feet"),
  2495. weight: math.unit(100, "kg"),
  2496. name: "Back",
  2497. image: {
  2498. source: "./media/characters/adake/back.svg",
  2499. }
  2500. },
  2501. kneel: {
  2502. height: math.unit(5.385, "feet"),
  2503. weight: math.unit(100, "kg"),
  2504. name: "Kneeling",
  2505. image: {
  2506. source: "./media/characters/adake/kneel.svg",
  2507. bottom: 0.052
  2508. }
  2509. },
  2510. },
  2511. [
  2512. {
  2513. name: "Normal",
  2514. height: math.unit(7, "feet"),
  2515. },
  2516. {
  2517. name: "Macro",
  2518. height: math.unit(78, "feet"),
  2519. default: true
  2520. },
  2521. {
  2522. name: "Macro+",
  2523. height: math.unit(300, "meters")
  2524. },
  2525. {
  2526. name: "Macro++",
  2527. height: math.unit(2400, "meters")
  2528. },
  2529. {
  2530. name: "Megamacro",
  2531. height: math.unit(5167, "meters")
  2532. },
  2533. {
  2534. name: "Gigamacro",
  2535. height: math.unit(41769, "miles")
  2536. },
  2537. ]
  2538. ))
  2539. characterMakers.push(() => makeCharacter(
  2540. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2541. {
  2542. front: {
  2543. height: math.unit(1.65, "meters"),
  2544. weight: math.unit(50, "kg"),
  2545. name: "Front",
  2546. image: {
  2547. source: "./media/characters/elijah/front.svg",
  2548. extra: 858 / 830,
  2549. bottom: 95.5 / 953.8559
  2550. }
  2551. },
  2552. back: {
  2553. height: math.unit(1.65, "meters"),
  2554. weight: math.unit(50, "kg"),
  2555. name: "Back",
  2556. image: {
  2557. source: "./media/characters/elijah/back.svg",
  2558. extra: 895 / 850,
  2559. bottom: 5.3 / 897.956
  2560. }
  2561. },
  2562. frontNsfw: {
  2563. height: math.unit(1.65, "meters"),
  2564. weight: math.unit(50, "kg"),
  2565. name: "Front (NSFW)",
  2566. image: {
  2567. source: "./media/characters/elijah/front-nsfw.svg",
  2568. extra: 858 / 830,
  2569. bottom: 95.5 / 953.8559
  2570. }
  2571. },
  2572. backNsfw: {
  2573. height: math.unit(1.65, "meters"),
  2574. weight: math.unit(50, "kg"),
  2575. name: "Back (NSFW)",
  2576. image: {
  2577. source: "./media/characters/elijah/back-nsfw.svg",
  2578. extra: 895 / 850,
  2579. bottom: 5.3 / 897.956
  2580. }
  2581. },
  2582. dick: {
  2583. height: math.unit(1, "feet"),
  2584. name: "Dick",
  2585. image: {
  2586. source: "./media/characters/elijah/dick.svg"
  2587. }
  2588. },
  2589. beakOpen: {
  2590. height: math.unit(1.25, "feet"),
  2591. name: "Beak (Open)",
  2592. image: {
  2593. source: "./media/characters/elijah/beak-open.svg"
  2594. }
  2595. },
  2596. beakShut: {
  2597. height: math.unit(1.25, "feet"),
  2598. name: "Beak (Shut)",
  2599. image: {
  2600. source: "./media/characters/elijah/beak-shut.svg"
  2601. }
  2602. },
  2603. footFlexing: {
  2604. height: math.unit(1.61, "feet"),
  2605. name: "Foot (Flexing)",
  2606. image: {
  2607. source: "./media/characters/elijah/foot-flexing.svg"
  2608. }
  2609. },
  2610. footStepping: {
  2611. height: math.unit(1.44, "feet"),
  2612. name: "Foot (Stepping)",
  2613. image: {
  2614. source: "./media/characters/elijah/foot-stepping.svg"
  2615. }
  2616. },
  2617. plantigradeLeg: {
  2618. height: math.unit(2.34, "feet"),
  2619. name: "Plantigrade Leg",
  2620. image: {
  2621. source: "./media/characters/elijah/plantigrade-leg.svg"
  2622. }
  2623. },
  2624. plantigradeFootLeft: {
  2625. height: math.unit(0.9, "feet"),
  2626. name: "Plantigrade Foot (Left)",
  2627. image: {
  2628. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2629. }
  2630. },
  2631. plantigradeFootRight: {
  2632. height: math.unit(0.9, "feet"),
  2633. name: "Plantigrade Foot (Right)",
  2634. image: {
  2635. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2636. }
  2637. },
  2638. },
  2639. [
  2640. {
  2641. name: "Normal",
  2642. height: math.unit(1.65, "meters")
  2643. },
  2644. {
  2645. name: "Macro",
  2646. height: math.unit(55, "meters"),
  2647. default: true
  2648. },
  2649. {
  2650. name: "Macro+",
  2651. height: math.unit(105, "meters")
  2652. },
  2653. ]
  2654. ))
  2655. characterMakers.push(() => makeCharacter(
  2656. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2657. {
  2658. front: {
  2659. height: math.unit(7 + 2/12, "feet"),
  2660. weight: math.unit(320, "kg"),
  2661. name: "Front",
  2662. image: {
  2663. source: "./media/characters/rai/front.svg",
  2664. extra: 1802/1696,
  2665. bottom: 68/1870
  2666. }
  2667. },
  2668. frontDressed: {
  2669. height: math.unit(7 + 2/12, "feet"),
  2670. weight: math.unit(320, "kg"),
  2671. name: "Front (Dressed)",
  2672. image: {
  2673. source: "./media/characters/rai/front-dressed.svg",
  2674. extra: 1802/1696,
  2675. bottom: 68/1870
  2676. }
  2677. },
  2678. side: {
  2679. height: math.unit(7 + 2/12, "feet"),
  2680. weight: math.unit(320, "kg"),
  2681. name: "Side",
  2682. image: {
  2683. source: "./media/characters/rai/side.svg",
  2684. extra: 1789/1710,
  2685. bottom: 115/1904
  2686. }
  2687. },
  2688. back: {
  2689. height: math.unit(7 + 2/12, "feet"),
  2690. weight: math.unit(320, "kg"),
  2691. name: "Back",
  2692. image: {
  2693. source: "./media/characters/rai/back.svg",
  2694. extra: 1770/1707,
  2695. bottom: 28/1798
  2696. }
  2697. },
  2698. feral: {
  2699. height: math.unit(9.5, "feet"),
  2700. weight: math.unit(640, "kg"),
  2701. name: "Feral",
  2702. image: {
  2703. source: "./media/characters/rai/feral.svg",
  2704. extra: 945/553,
  2705. bottom: 176/1121
  2706. }
  2707. },
  2708. dragon: {
  2709. height: math.unit(23, "feet"),
  2710. weight: math.unit(50000, "lb"),
  2711. name: "Dragon",
  2712. image: {
  2713. source: "./media/characters/rai/dragon.svg",
  2714. extra: 2498 / 2030,
  2715. bottom: 85.2 / 2584
  2716. }
  2717. },
  2718. maw: {
  2719. height: math.unit(1.69, "feet"),
  2720. name: "Maw",
  2721. image: {
  2722. source: "./media/characters/rai/maw.svg"
  2723. }
  2724. },
  2725. },
  2726. [
  2727. {
  2728. name: "Normal",
  2729. height: math.unit(7 + 2/12, "feet")
  2730. },
  2731. {
  2732. name: "Big",
  2733. height: math.unit(11, "feet")
  2734. },
  2735. {
  2736. name: "Macro",
  2737. height: math.unit(302, "feet"),
  2738. default: true
  2739. },
  2740. ]
  2741. ))
  2742. characterMakers.push(() => makeCharacter(
  2743. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2744. {
  2745. frontDressed: {
  2746. height: math.unit(216, "feet"),
  2747. weight: math.unit(7000000, "lb"),
  2748. name: "Front (Dressed)",
  2749. image: {
  2750. source: "./media/characters/jazzy/front-dressed.svg",
  2751. extra: 2738 / 2651,
  2752. bottom: 41.8 / 2786
  2753. }
  2754. },
  2755. backDressed: {
  2756. height: math.unit(216, "feet"),
  2757. weight: math.unit(7000000, "lb"),
  2758. name: "Back (Dressed)",
  2759. image: {
  2760. source: "./media/characters/jazzy/back-dressed.svg",
  2761. extra: 2775 / 2673,
  2762. bottom: 36.8 / 2817
  2763. }
  2764. },
  2765. front: {
  2766. height: math.unit(216, "feet"),
  2767. weight: math.unit(7000000, "lb"),
  2768. name: "Front",
  2769. image: {
  2770. source: "./media/characters/jazzy/front.svg",
  2771. extra: 2738 / 2651,
  2772. bottom: 41.8 / 2786
  2773. }
  2774. },
  2775. back: {
  2776. height: math.unit(216, "feet"),
  2777. weight: math.unit(7000000, "lb"),
  2778. name: "Back",
  2779. image: {
  2780. source: "./media/characters/jazzy/back.svg",
  2781. extra: 2775 / 2673,
  2782. bottom: 36.8 / 2817
  2783. }
  2784. },
  2785. maw: {
  2786. height: math.unit(20, "feet"),
  2787. name: "Maw",
  2788. image: {
  2789. source: "./media/characters/jazzy/maw.svg"
  2790. }
  2791. },
  2792. paws: {
  2793. height: math.unit(27.5, "feet"),
  2794. name: "Paws",
  2795. image: {
  2796. source: "./media/characters/jazzy/paws.svg"
  2797. }
  2798. },
  2799. eye: {
  2800. height: math.unit(4.4, "feet"),
  2801. name: "Eye",
  2802. image: {
  2803. source: "./media/characters/jazzy/eye.svg"
  2804. }
  2805. },
  2806. droneOffense: {
  2807. height: math.unit(9.5, "inches"),
  2808. name: "Drone (Offense)",
  2809. image: {
  2810. source: "./media/characters/jazzy/drone-offense.svg"
  2811. }
  2812. },
  2813. droneRecon: {
  2814. height: math.unit(9.5, "inches"),
  2815. name: "Drone (Recon)",
  2816. image: {
  2817. source: "./media/characters/jazzy/drone-recon.svg"
  2818. }
  2819. },
  2820. droneDefense: {
  2821. height: math.unit(9.5, "inches"),
  2822. name: "Drone (Defense)",
  2823. image: {
  2824. source: "./media/characters/jazzy/drone-defense.svg"
  2825. }
  2826. },
  2827. },
  2828. [
  2829. {
  2830. name: "Macro",
  2831. height: math.unit(216, "feet"),
  2832. default: true
  2833. },
  2834. ]
  2835. ))
  2836. characterMakers.push(() => makeCharacter(
  2837. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2838. {
  2839. front: {
  2840. height: math.unit(9 + 6/12, "feet"),
  2841. weight: math.unit(700, "lb"),
  2842. name: "Front",
  2843. image: {
  2844. source: "./media/characters/flamm/front.svg",
  2845. extra: 1751/1632,
  2846. bottom: 46/1797
  2847. }
  2848. },
  2849. buff: {
  2850. height: math.unit(9 + 6/12, "feet"),
  2851. weight: math.unit(950, "lb"),
  2852. name: "Buff",
  2853. image: {
  2854. source: "./media/characters/flamm/buff.svg",
  2855. extra: 3018/2874,
  2856. bottom: 221/3239
  2857. }
  2858. },
  2859. },
  2860. [
  2861. {
  2862. name: "Normal",
  2863. height: math.unit(9.5, "feet")
  2864. },
  2865. {
  2866. name: "Macro",
  2867. height: math.unit(200, "feet"),
  2868. default: true
  2869. },
  2870. ]
  2871. ))
  2872. characterMakers.push(() => makeCharacter(
  2873. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2874. {
  2875. front: {
  2876. height: math.unit(5 + 3/12, "feet"),
  2877. weight: math.unit(60, "kg"),
  2878. name: "Front",
  2879. image: {
  2880. source: "./media/characters/zephiro/front.svg",
  2881. extra: 2309 / 2162,
  2882. bottom: 0.069
  2883. }
  2884. },
  2885. side: {
  2886. height: math.unit(5 + 3/12, "feet"),
  2887. weight: math.unit(60, "kg"),
  2888. name: "Side",
  2889. image: {
  2890. source: "./media/characters/zephiro/side.svg",
  2891. extra: 2403 / 2279,
  2892. bottom: 0.015
  2893. }
  2894. },
  2895. back: {
  2896. height: math.unit(5 + 3/12, "feet"),
  2897. weight: math.unit(60, "kg"),
  2898. name: "Back",
  2899. image: {
  2900. source: "./media/characters/zephiro/back.svg",
  2901. extra: 2373 / 2244,
  2902. bottom: 0.013
  2903. }
  2904. },
  2905. hand: {
  2906. height: math.unit(0.68, "feet"),
  2907. name: "Hand",
  2908. image: {
  2909. source: "./media/characters/zephiro/hand.svg"
  2910. }
  2911. },
  2912. paw: {
  2913. height: math.unit(1, "feet"),
  2914. name: "Paw",
  2915. image: {
  2916. source: "./media/characters/zephiro/paw.svg"
  2917. }
  2918. },
  2919. beans: {
  2920. height: math.unit(0.93, "feet"),
  2921. name: "Beans",
  2922. image: {
  2923. source: "./media/characters/zephiro/beans.svg"
  2924. }
  2925. },
  2926. },
  2927. [
  2928. {
  2929. name: "Micro",
  2930. height: math.unit(3, "inches")
  2931. },
  2932. {
  2933. name: "Normal",
  2934. height: math.unit(5 + 3 / 12, "feet"),
  2935. default: true
  2936. },
  2937. {
  2938. name: "Macro",
  2939. height: math.unit(118, "feet")
  2940. },
  2941. ]
  2942. ))
  2943. characterMakers.push(() => makeCharacter(
  2944. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2945. {
  2946. front: {
  2947. height: math.unit(5, "feet"),
  2948. weight: math.unit(90, "kg"),
  2949. name: "Front",
  2950. image: {
  2951. source: "./media/characters/fory/front.svg",
  2952. extra: 2862 / 2674,
  2953. bottom: 180 / 3043.8
  2954. }
  2955. },
  2956. back: {
  2957. height: math.unit(5, "feet"),
  2958. weight: math.unit(90, "kg"),
  2959. name: "Back",
  2960. image: {
  2961. source: "./media/characters/fory/back.svg",
  2962. extra: 2962 / 2791,
  2963. bottom: 106 / 3071.8
  2964. }
  2965. },
  2966. foot: {
  2967. height: math.unit(2.14, "feet"),
  2968. name: "Foot",
  2969. image: {
  2970. source: "./media/characters/fory/foot.svg"
  2971. }
  2972. },
  2973. },
  2974. [
  2975. {
  2976. name: "Normal",
  2977. height: math.unit(5, "feet")
  2978. },
  2979. {
  2980. name: "Macro",
  2981. height: math.unit(50, "feet"),
  2982. default: true
  2983. },
  2984. {
  2985. name: "Megamacro",
  2986. height: math.unit(10, "miles")
  2987. },
  2988. {
  2989. name: "Gigamacro",
  2990. height: math.unit(5, "earths")
  2991. },
  2992. ]
  2993. ))
  2994. characterMakers.push(() => makeCharacter(
  2995. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2996. {
  2997. front: {
  2998. height: math.unit(7, "feet"),
  2999. weight: math.unit(90, "kg"),
  3000. name: "Front",
  3001. image: {
  3002. source: "./media/characters/kurrikage/front.svg",
  3003. extra: 1845/1733,
  3004. bottom: 119/1964
  3005. }
  3006. },
  3007. back: {
  3008. height: math.unit(7, "feet"),
  3009. weight: math.unit(90, "kg"),
  3010. name: "Back",
  3011. image: {
  3012. source: "./media/characters/kurrikage/back.svg",
  3013. extra: 1790/1677,
  3014. bottom: 61/1851
  3015. }
  3016. },
  3017. dressed: {
  3018. height: math.unit(7, "feet"),
  3019. weight: math.unit(90, "kg"),
  3020. name: "Dressed",
  3021. image: {
  3022. source: "./media/characters/kurrikage/dressed.svg",
  3023. extra: 1845/1733,
  3024. bottom: 119/1964
  3025. }
  3026. },
  3027. foot: {
  3028. height: math.unit(1.5, "feet"),
  3029. name: "Foot",
  3030. image: {
  3031. source: "./media/characters/kurrikage/foot.svg"
  3032. }
  3033. },
  3034. staff: {
  3035. height: math.unit(6.7, "feet"),
  3036. name: "Staff",
  3037. image: {
  3038. source: "./media/characters/kurrikage/staff.svg"
  3039. }
  3040. },
  3041. peek: {
  3042. height: math.unit(1.05, "feet"),
  3043. name: "Peeking",
  3044. image: {
  3045. source: "./media/characters/kurrikage/peek.svg",
  3046. bottom: 0.08
  3047. }
  3048. },
  3049. },
  3050. [
  3051. {
  3052. name: "Normal",
  3053. height: math.unit(12, "feet"),
  3054. default: true
  3055. },
  3056. {
  3057. name: "Big",
  3058. height: math.unit(20, "feet")
  3059. },
  3060. {
  3061. name: "Macro",
  3062. height: math.unit(500, "feet")
  3063. },
  3064. {
  3065. name: "Megamacro",
  3066. height: math.unit(20, "miles")
  3067. },
  3068. ]
  3069. ))
  3070. characterMakers.push(() => makeCharacter(
  3071. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  3072. {
  3073. front: {
  3074. height: math.unit(6, "feet"),
  3075. weight: math.unit(75, "kg"),
  3076. name: "Front",
  3077. image: {
  3078. source: "./media/characters/shingo/front.svg",
  3079. extra: 1900/1825,
  3080. bottom: 82/1982
  3081. }
  3082. },
  3083. side: {
  3084. height: math.unit(6, "feet"),
  3085. weight: math.unit(75, "kg"),
  3086. name: "Side",
  3087. image: {
  3088. source: "./media/characters/shingo/side.svg",
  3089. extra: 1930/1865,
  3090. bottom: 16/1946
  3091. }
  3092. },
  3093. back: {
  3094. height: math.unit(6, "feet"),
  3095. weight: math.unit(75, "kg"),
  3096. name: "Back",
  3097. image: {
  3098. source: "./media/characters/shingo/back.svg",
  3099. extra: 1922/1852,
  3100. bottom: 16/1938
  3101. }
  3102. },
  3103. frontDressed: {
  3104. height: math.unit(6, "feet"),
  3105. weight: math.unit(150, "lb"),
  3106. name: "Front-dressed",
  3107. image: {
  3108. source: "./media/characters/shingo/front-dressed.svg",
  3109. extra: 1900/1825,
  3110. bottom: 82/1982
  3111. }
  3112. },
  3113. paw: {
  3114. height: math.unit(1.29, "feet"),
  3115. name: "Paw",
  3116. image: {
  3117. source: "./media/characters/shingo/paw.svg"
  3118. }
  3119. },
  3120. hand: {
  3121. height: math.unit(1.07, "feet"),
  3122. name: "Hand",
  3123. image: {
  3124. source: "./media/characters/shingo/hand.svg"
  3125. }
  3126. },
  3127. frontAlt: {
  3128. height: math.unit(6, "feet"),
  3129. weight: math.unit(75, "kg"),
  3130. name: "Front (Alt)",
  3131. image: {
  3132. source: "./media/characters/shingo/front-alt.svg",
  3133. extra: 3511 / 3338,
  3134. bottom: 0.005
  3135. }
  3136. },
  3137. frontAlt2: {
  3138. height: math.unit(6, "feet"),
  3139. weight: math.unit(75, "kg"),
  3140. name: "Front (Alt 2)",
  3141. image: {
  3142. source: "./media/characters/shingo/front-alt-2.svg",
  3143. extra: 706/681,
  3144. bottom: 11/717
  3145. }
  3146. },
  3147. pawAlt: {
  3148. height: math.unit(1, "feet"),
  3149. name: "Paw (Alt)",
  3150. image: {
  3151. source: "./media/characters/shingo/paw-alt.svg"
  3152. }
  3153. },
  3154. },
  3155. [
  3156. {
  3157. name: "Micro",
  3158. height: math.unit(4, "inches")
  3159. },
  3160. {
  3161. name: "Normal",
  3162. height: math.unit(6, "feet"),
  3163. default: true
  3164. },
  3165. {
  3166. name: "Macro",
  3167. height: math.unit(108, "feet")
  3168. },
  3169. {
  3170. name: "Macro+",
  3171. height: math.unit(1500, "feet")
  3172. },
  3173. ]
  3174. ))
  3175. characterMakers.push(() => makeCharacter(
  3176. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3177. {
  3178. side: {
  3179. height: math.unit(6, "feet"),
  3180. weight: math.unit(75, "kg"),
  3181. name: "Side",
  3182. image: {
  3183. source: "./media/characters/aigey/side.svg"
  3184. }
  3185. },
  3186. },
  3187. [
  3188. {
  3189. name: "Macro",
  3190. height: math.unit(200, "feet"),
  3191. default: true
  3192. },
  3193. {
  3194. name: "Megamacro",
  3195. height: math.unit(100, "miles")
  3196. },
  3197. ]
  3198. )
  3199. )
  3200. characterMakers.push(() => makeCharacter(
  3201. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3202. {
  3203. front: {
  3204. height: math.unit(5 + 5 / 12, "feet"),
  3205. weight: math.unit(75, "kg"),
  3206. name: "Front",
  3207. image: {
  3208. source: "./media/characters/natasha/front.svg",
  3209. extra: 859 / 824,
  3210. bottom: 23 / 879.6
  3211. }
  3212. },
  3213. frontNsfw: {
  3214. height: math.unit(5 + 5 / 12, "feet"),
  3215. weight: math.unit(75, "kg"),
  3216. name: "Front (NSFW)",
  3217. image: {
  3218. source: "./media/characters/natasha/front-nsfw.svg",
  3219. extra: 859 / 824,
  3220. bottom: 23 / 879.6
  3221. }
  3222. },
  3223. frontErect: {
  3224. height: math.unit(5 + 5 / 12, "feet"),
  3225. weight: math.unit(75, "kg"),
  3226. name: "Front (Erect)",
  3227. image: {
  3228. source: "./media/characters/natasha/front-erect.svg",
  3229. extra: 859 / 824,
  3230. bottom: 23 / 879.6
  3231. }
  3232. },
  3233. back: {
  3234. height: math.unit(5 + 5 / 12, "feet"),
  3235. weight: math.unit(75, "kg"),
  3236. name: "Back",
  3237. image: {
  3238. source: "./media/characters/natasha/back.svg",
  3239. extra: 887.9 / 852.6,
  3240. bottom: 9.7 / 896.4
  3241. }
  3242. },
  3243. backAlt: {
  3244. height: math.unit(5 + 5 / 12, "feet"),
  3245. weight: math.unit(75, "kg"),
  3246. name: "Back (Alt)",
  3247. image: {
  3248. source: "./media/characters/natasha/back-alt.svg",
  3249. extra: 1236.7 / 1192,
  3250. bottom: 22.3 / 1258.2
  3251. }
  3252. },
  3253. dick: {
  3254. height: math.unit(1.772, "feet"),
  3255. name: "Dick",
  3256. image: {
  3257. source: "./media/characters/natasha/dick.svg"
  3258. }
  3259. },
  3260. paw: {
  3261. height: math.unit(0.250, "meters"),
  3262. name: "Paw",
  3263. image: {
  3264. source: "./media/characters/natasha/paw.svg"
  3265. }
  3266. },
  3267. },
  3268. [
  3269. {
  3270. name: "Normal",
  3271. height: math.unit(5 + 5 / 12, "feet")
  3272. },
  3273. {
  3274. name: "Large",
  3275. height: math.unit(12, "feet")
  3276. },
  3277. {
  3278. name: "Macro",
  3279. height: math.unit(100, "feet"),
  3280. default: true
  3281. },
  3282. {
  3283. name: "Macro+",
  3284. height: math.unit(260, "feet")
  3285. },
  3286. {
  3287. name: "Macro++",
  3288. height: math.unit(1, "mile")
  3289. },
  3290. ]
  3291. ))
  3292. characterMakers.push(() => makeCharacter(
  3293. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3294. {
  3295. front: {
  3296. height: math.unit(6, "feet"),
  3297. weight: math.unit(75, "kg"),
  3298. name: "Front",
  3299. image: {
  3300. source: "./media/characters/malik/front.svg"
  3301. }
  3302. },
  3303. side: {
  3304. height: math.unit(6, "feet"),
  3305. weight: math.unit(75, "kg"),
  3306. name: "Side",
  3307. image: {
  3308. source: "./media/characters/malik/side.svg",
  3309. extra: 1.1539
  3310. }
  3311. },
  3312. back: {
  3313. height: math.unit(6, "feet"),
  3314. weight: math.unit(75, "kg"),
  3315. name: "Back",
  3316. image: {
  3317. source: "./media/characters/malik/back.svg"
  3318. }
  3319. },
  3320. },
  3321. [
  3322. {
  3323. name: "Macro",
  3324. height: math.unit(156, "feet"),
  3325. default: true
  3326. },
  3327. {
  3328. name: "Macro+",
  3329. height: math.unit(1188, "feet")
  3330. },
  3331. ]
  3332. ))
  3333. characterMakers.push(() => makeCharacter(
  3334. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3335. {
  3336. front: {
  3337. height: math.unit(6, "feet"),
  3338. weight: math.unit(75, "kg"),
  3339. name: "Front",
  3340. image: {
  3341. source: "./media/characters/sefer/front.svg",
  3342. extra: 848 / 659,
  3343. bottom: 28.3 / 876.442
  3344. }
  3345. },
  3346. back: {
  3347. height: math.unit(6, "feet"),
  3348. weight: math.unit(75, "kg"),
  3349. name: "Back",
  3350. image: {
  3351. source: "./media/characters/sefer/back.svg",
  3352. extra: 864 / 695,
  3353. bottom: 10 / 871
  3354. }
  3355. },
  3356. frontDressed: {
  3357. height: math.unit(6, "feet"),
  3358. weight: math.unit(75, "kg"),
  3359. name: "Front (Dressed)",
  3360. image: {
  3361. source: "./media/characters/sefer/front-dressed.svg",
  3362. extra: 839 / 653,
  3363. bottom: 37.6 / 878
  3364. }
  3365. },
  3366. },
  3367. [
  3368. {
  3369. name: "Normal",
  3370. height: math.unit(6, "feet"),
  3371. default: true
  3372. },
  3373. ]
  3374. ))
  3375. characterMakers.push(() => makeCharacter(
  3376. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3377. {
  3378. body: {
  3379. height: math.unit(2.2428, "meter"),
  3380. weight: math.unit(124.738, "kg"),
  3381. name: "Body",
  3382. image: {
  3383. extra: 1225 / 1050,
  3384. source: "./media/characters/north/front.svg"
  3385. }
  3386. }
  3387. },
  3388. [
  3389. {
  3390. name: "Micro",
  3391. height: math.unit(4, "inches")
  3392. },
  3393. {
  3394. name: "Macro",
  3395. height: math.unit(63, "meters")
  3396. },
  3397. {
  3398. name: "Megamacro",
  3399. height: math.unit(101, "miles"),
  3400. default: true
  3401. }
  3402. ]
  3403. ))
  3404. characterMakers.push(() => makeCharacter(
  3405. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3406. {
  3407. angled: {
  3408. height: math.unit(4, "meter"),
  3409. weight: math.unit(150, "kg"),
  3410. name: "Angled",
  3411. image: {
  3412. source: "./media/characters/talan/angled-sfw.svg",
  3413. bottom: 29 / 3734
  3414. }
  3415. },
  3416. angledNsfw: {
  3417. height: math.unit(4, "meter"),
  3418. weight: math.unit(150, "kg"),
  3419. name: "Angled (NSFW)",
  3420. image: {
  3421. source: "./media/characters/talan/angled-nsfw.svg",
  3422. bottom: 29 / 3734
  3423. }
  3424. },
  3425. frontNsfw: {
  3426. height: math.unit(4, "meter"),
  3427. weight: math.unit(150, "kg"),
  3428. name: "Front (NSFW)",
  3429. image: {
  3430. source: "./media/characters/talan/front-nsfw.svg",
  3431. bottom: 29 / 3734
  3432. }
  3433. },
  3434. sideNsfw: {
  3435. height: math.unit(4, "meter"),
  3436. weight: math.unit(150, "kg"),
  3437. name: "Side (NSFW)",
  3438. image: {
  3439. source: "./media/characters/talan/side-nsfw.svg",
  3440. bottom: 29 / 3734
  3441. }
  3442. },
  3443. back: {
  3444. height: math.unit(4, "meter"),
  3445. weight: math.unit(150, "kg"),
  3446. name: "Back",
  3447. image: {
  3448. source: "./media/characters/talan/back.svg"
  3449. }
  3450. },
  3451. dickBottom: {
  3452. height: math.unit(0.621, "meter"),
  3453. name: "Dick (Bottom)",
  3454. image: {
  3455. source: "./media/characters/talan/dick-bottom.svg"
  3456. }
  3457. },
  3458. dickTop: {
  3459. height: math.unit(0.621, "meter"),
  3460. name: "Dick (Top)",
  3461. image: {
  3462. source: "./media/characters/talan/dick-top.svg"
  3463. }
  3464. },
  3465. dickSide: {
  3466. height: math.unit(0.305, "meter"),
  3467. name: "Dick (Side)",
  3468. image: {
  3469. source: "./media/characters/talan/dick-side.svg"
  3470. }
  3471. },
  3472. dickFront: {
  3473. height: math.unit(0.305, "meter"),
  3474. name: "Dick (Front)",
  3475. image: {
  3476. source: "./media/characters/talan/dick-front.svg"
  3477. }
  3478. },
  3479. },
  3480. [
  3481. {
  3482. name: "Normal",
  3483. height: math.unit(4, "meters")
  3484. },
  3485. {
  3486. name: "Macro",
  3487. height: math.unit(100, "meters")
  3488. },
  3489. {
  3490. name: "Megamacro",
  3491. height: math.unit(2, "miles"),
  3492. default: true
  3493. },
  3494. {
  3495. name: "Gigamacro",
  3496. height: math.unit(5000, "miles")
  3497. },
  3498. {
  3499. name: "Teramacro",
  3500. height: math.unit(100, "parsecs")
  3501. }
  3502. ]
  3503. ))
  3504. characterMakers.push(() => makeCharacter(
  3505. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3506. {
  3507. front: {
  3508. height: math.unit(2, "meter"),
  3509. weight: math.unit(90, "kg"),
  3510. name: "Front",
  3511. image: {
  3512. source: "./media/characters/gael'rathus/front.svg"
  3513. }
  3514. },
  3515. frontAlt: {
  3516. height: math.unit(2, "meter"),
  3517. weight: math.unit(90, "kg"),
  3518. name: "Front (alt)",
  3519. image: {
  3520. source: "./media/characters/gael'rathus/front-alt.svg"
  3521. }
  3522. },
  3523. frontAlt2: {
  3524. height: math.unit(2, "meter"),
  3525. weight: math.unit(90, "kg"),
  3526. name: "Front (alt 2)",
  3527. image: {
  3528. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3529. }
  3530. }
  3531. },
  3532. [
  3533. {
  3534. name: "Normal",
  3535. height: math.unit(9, "feet"),
  3536. default: true
  3537. },
  3538. {
  3539. name: "Large",
  3540. height: math.unit(25, "feet")
  3541. },
  3542. {
  3543. name: "Macro",
  3544. height: math.unit(0.25, "miles")
  3545. },
  3546. {
  3547. name: "Megamacro",
  3548. height: math.unit(10, "miles")
  3549. }
  3550. ]
  3551. ))
  3552. characterMakers.push(() => makeCharacter(
  3553. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3554. {
  3555. side: {
  3556. height: math.unit(2, "meter"),
  3557. weight: math.unit(140, "kg"),
  3558. name: "Side",
  3559. image: {
  3560. source: "./media/characters/sosha/side.svg",
  3561. bottom: 0.042
  3562. }
  3563. },
  3564. },
  3565. [
  3566. {
  3567. name: "Normal",
  3568. height: math.unit(12, "feet"),
  3569. default: true
  3570. }
  3571. ]
  3572. ))
  3573. characterMakers.push(() => makeCharacter(
  3574. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3575. {
  3576. side: {
  3577. height: math.unit(5 + 5 / 12, "feet"),
  3578. weight: math.unit(170, "kg"),
  3579. name: "Side",
  3580. image: {
  3581. source: "./media/characters/runnola/side.svg",
  3582. extra: 741 / 448,
  3583. bottom: 0.05
  3584. }
  3585. },
  3586. },
  3587. [
  3588. {
  3589. name: "Small",
  3590. height: math.unit(3, "feet")
  3591. },
  3592. {
  3593. name: "Normal",
  3594. height: math.unit(5 + 5 / 12, "feet"),
  3595. default: true
  3596. },
  3597. {
  3598. name: "Big",
  3599. height: math.unit(10, "feet")
  3600. },
  3601. ]
  3602. ))
  3603. characterMakers.push(() => makeCharacter(
  3604. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3605. {
  3606. front: {
  3607. height: math.unit(2, "meter"),
  3608. weight: math.unit(50, "kg"),
  3609. name: "Front",
  3610. image: {
  3611. source: "./media/characters/kurribird/front.svg",
  3612. bottom: 0.015
  3613. }
  3614. },
  3615. frontAlt: {
  3616. height: math.unit(1.5, "meter"),
  3617. weight: math.unit(50, "kg"),
  3618. name: "Front (Alt)",
  3619. image: {
  3620. source: "./media/characters/kurribird/front-alt.svg",
  3621. extra: 1.45
  3622. }
  3623. },
  3624. },
  3625. [
  3626. {
  3627. name: "Normal",
  3628. height: math.unit(7, "feet")
  3629. },
  3630. {
  3631. name: "Big",
  3632. height: math.unit(12, "feet"),
  3633. default: true
  3634. },
  3635. {
  3636. name: "Macro",
  3637. height: math.unit(1500, "feet")
  3638. },
  3639. {
  3640. name: "Megamacro",
  3641. height: math.unit(2, "miles")
  3642. }
  3643. ]
  3644. ))
  3645. characterMakers.push(() => makeCharacter(
  3646. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3647. {
  3648. front: {
  3649. height: math.unit(2, "meter"),
  3650. weight: math.unit(80, "kg"),
  3651. name: "Front",
  3652. image: {
  3653. source: "./media/characters/elbial/front.svg",
  3654. extra: 1643 / 1556,
  3655. bottom: 60.2 / 1696
  3656. }
  3657. },
  3658. side: {
  3659. height: math.unit(2, "meter"),
  3660. weight: math.unit(80, "kg"),
  3661. name: "Side",
  3662. image: {
  3663. source: "./media/characters/elbial/side.svg",
  3664. extra: 1601/1528,
  3665. bottom: 97/1698
  3666. }
  3667. },
  3668. back: {
  3669. height: math.unit(2, "meter"),
  3670. weight: math.unit(80, "kg"),
  3671. name: "Back",
  3672. image: {
  3673. source: "./media/characters/elbial/back.svg",
  3674. extra: 1653/1569,
  3675. bottom: 20/1673
  3676. }
  3677. },
  3678. frontDressed: {
  3679. height: math.unit(2, "meter"),
  3680. weight: math.unit(80, "kg"),
  3681. name: "Front (Dressed)",
  3682. image: {
  3683. source: "./media/characters/elbial/front-dressed.svg",
  3684. extra: 1638/1569,
  3685. bottom: 70/1708
  3686. }
  3687. },
  3688. genitals: {
  3689. height: math.unit(2 / 3.367, "meter"),
  3690. name: "Genitals",
  3691. image: {
  3692. source: "./media/characters/elbial/genitals.svg"
  3693. }
  3694. },
  3695. },
  3696. [
  3697. {
  3698. name: "Large",
  3699. height: math.unit(100, "feet")
  3700. },
  3701. {
  3702. name: "Macro",
  3703. height: math.unit(500, "feet"),
  3704. default: true
  3705. },
  3706. {
  3707. name: "Megamacro",
  3708. height: math.unit(10, "miles")
  3709. },
  3710. {
  3711. name: "Gigamacro",
  3712. height: math.unit(25000, "miles")
  3713. },
  3714. {
  3715. name: "Full-Size",
  3716. height: math.unit(8000000, "gigaparsecs")
  3717. }
  3718. ]
  3719. ))
  3720. characterMakers.push(() => makeCharacter(
  3721. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3722. {
  3723. front: {
  3724. height: math.unit(2, "meter"),
  3725. weight: math.unit(60, "kg"),
  3726. name: "Front",
  3727. image: {
  3728. source: "./media/characters/noah/front.svg"
  3729. }
  3730. },
  3731. talons: {
  3732. height: math.unit(0.315, "meter"),
  3733. name: "Talons",
  3734. image: {
  3735. source: "./media/characters/noah/talons.svg"
  3736. }
  3737. }
  3738. },
  3739. [
  3740. {
  3741. name: "Large",
  3742. height: math.unit(50, "feet")
  3743. },
  3744. {
  3745. name: "Macro",
  3746. height: math.unit(750, "feet"),
  3747. default: true
  3748. },
  3749. {
  3750. name: "Megamacro",
  3751. height: math.unit(50, "miles")
  3752. },
  3753. {
  3754. name: "Gigamacro",
  3755. height: math.unit(100000, "miles")
  3756. },
  3757. {
  3758. name: "Full-Size",
  3759. height: math.unit(3000000000, "miles")
  3760. }
  3761. ]
  3762. ))
  3763. characterMakers.push(() => makeCharacter(
  3764. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3765. {
  3766. front: {
  3767. height: math.unit(2, "meter"),
  3768. weight: math.unit(80, "kg"),
  3769. name: "Front",
  3770. image: {
  3771. source: "./media/characters/natalya/front.svg"
  3772. }
  3773. },
  3774. back: {
  3775. height: math.unit(2, "meter"),
  3776. weight: math.unit(80, "kg"),
  3777. name: "Back",
  3778. image: {
  3779. source: "./media/characters/natalya/back.svg"
  3780. }
  3781. }
  3782. },
  3783. [
  3784. {
  3785. name: "Normal",
  3786. height: math.unit(150, "feet"),
  3787. default: true
  3788. },
  3789. {
  3790. name: "Megamacro",
  3791. height: math.unit(5, "miles")
  3792. },
  3793. {
  3794. name: "Full-Size",
  3795. height: math.unit(600, "kiloparsecs")
  3796. }
  3797. ]
  3798. ))
  3799. characterMakers.push(() => makeCharacter(
  3800. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3801. {
  3802. front: {
  3803. height: math.unit(2, "meter"),
  3804. weight: math.unit(50, "kg"),
  3805. name: "Front",
  3806. image: {
  3807. source: "./media/characters/erestrebah/front.svg",
  3808. extra: 1262/1162,
  3809. bottom: 96/1358
  3810. }
  3811. },
  3812. back: {
  3813. height: math.unit(2, "meter"),
  3814. weight: math.unit(50, "kg"),
  3815. name: "Back",
  3816. image: {
  3817. source: "./media/characters/erestrebah/back.svg",
  3818. extra: 1257/1139,
  3819. bottom: 13/1270
  3820. }
  3821. },
  3822. wing: {
  3823. height: math.unit(2, "meter"),
  3824. weight: math.unit(50, "kg"),
  3825. name: "Wing",
  3826. image: {
  3827. source: "./media/characters/erestrebah/wing.svg",
  3828. extra: 1262/1162,
  3829. bottom: 96/1358
  3830. }
  3831. },
  3832. mouth: {
  3833. height: math.unit(0.39, "feet"),
  3834. name: "Mouth",
  3835. image: {
  3836. source: "./media/characters/erestrebah/mouth.svg"
  3837. }
  3838. }
  3839. },
  3840. [
  3841. {
  3842. name: "Normal",
  3843. height: math.unit(10, "feet")
  3844. },
  3845. {
  3846. name: "Large",
  3847. height: math.unit(50, "feet"),
  3848. default: true
  3849. },
  3850. {
  3851. name: "Macro",
  3852. height: math.unit(300, "feet")
  3853. },
  3854. {
  3855. name: "Macro+",
  3856. height: math.unit(750, "feet")
  3857. },
  3858. {
  3859. name: "Megamacro",
  3860. height: math.unit(3, "miles")
  3861. }
  3862. ]
  3863. ))
  3864. characterMakers.push(() => makeCharacter(
  3865. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3866. {
  3867. front: {
  3868. height: math.unit(2, "meter"),
  3869. weight: math.unit(80, "kg"),
  3870. name: "Front",
  3871. image: {
  3872. source: "./media/characters/jennifer/front.svg",
  3873. bottom: 0.11,
  3874. extra: 1.16
  3875. }
  3876. },
  3877. frontAlt: {
  3878. height: math.unit(2, "meter"),
  3879. weight: math.unit(80, "kg"),
  3880. name: "Front (Alt)",
  3881. image: {
  3882. source: "./media/characters/jennifer/front-alt.svg"
  3883. }
  3884. }
  3885. },
  3886. [
  3887. {
  3888. name: "Canon Height",
  3889. height: math.unit(120, "feet"),
  3890. default: true
  3891. },
  3892. {
  3893. name: "Macro+",
  3894. height: math.unit(300, "feet")
  3895. },
  3896. {
  3897. name: "Megamacro",
  3898. height: math.unit(20000, "feet")
  3899. }
  3900. ]
  3901. ))
  3902. characterMakers.push(() => makeCharacter(
  3903. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3904. {
  3905. front: {
  3906. height: math.unit(2, "meter"),
  3907. weight: math.unit(50, "kg"),
  3908. name: "Front",
  3909. image: {
  3910. source: "./media/characters/kalista/front.svg",
  3911. extra: 1314/1145,
  3912. bottom: 101/1415
  3913. }
  3914. },
  3915. back: {
  3916. height: math.unit(2, "meter"),
  3917. weight: math.unit(50, "kg"),
  3918. name: "Back",
  3919. image: {
  3920. source: "./media/characters/kalista/back.svg",
  3921. extra: 1366 / 1156,
  3922. bottom: 33.9 / 1362.78
  3923. }
  3924. }
  3925. },
  3926. [
  3927. {
  3928. name: "Uncomfortably Small",
  3929. height: math.unit(10, "feet")
  3930. },
  3931. {
  3932. name: "Small",
  3933. height: math.unit(30, "feet")
  3934. },
  3935. {
  3936. name: "Macro",
  3937. height: math.unit(100, "feet"),
  3938. default: true
  3939. },
  3940. {
  3941. name: "Macro+",
  3942. height: math.unit(2000, "feet")
  3943. },
  3944. {
  3945. name: "True Form",
  3946. height: math.unit(8924, "miles")
  3947. }
  3948. ]
  3949. ))
  3950. characterMakers.push(() => makeCharacter(
  3951. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3952. {
  3953. front: {
  3954. height: math.unit(2, "meter"),
  3955. weight: math.unit(120, "kg"),
  3956. name: "Front",
  3957. image: {
  3958. source: "./media/characters/ggv/front.svg"
  3959. }
  3960. },
  3961. side: {
  3962. height: math.unit(2, "meter"),
  3963. weight: math.unit(120, "kg"),
  3964. name: "Side",
  3965. image: {
  3966. source: "./media/characters/ggv/side.svg"
  3967. }
  3968. }
  3969. },
  3970. [
  3971. {
  3972. name: "Extremely Puny",
  3973. height: math.unit(9 + 5 / 12, "feet")
  3974. },
  3975. {
  3976. name: "Horribly Small",
  3977. height: math.unit(47.7, "miles"),
  3978. default: true
  3979. },
  3980. {
  3981. name: "Reasonably Sized",
  3982. height: math.unit(25000, "parsecs")
  3983. },
  3984. {
  3985. name: "Slightly Uncompressed",
  3986. height: math.unit(7.77e31, "parsecs")
  3987. },
  3988. {
  3989. name: "Omniversal",
  3990. height: math.unit(1e300, "meters")
  3991. },
  3992. ]
  3993. ))
  3994. characterMakers.push(() => makeCharacter(
  3995. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3996. {
  3997. front: {
  3998. height: math.unit(2, "meter"),
  3999. weight: math.unit(75, "lb"),
  4000. name: "Front",
  4001. image: {
  4002. source: "./media/characters/napalm/front.svg"
  4003. }
  4004. },
  4005. back: {
  4006. height: math.unit(2, "meter"),
  4007. weight: math.unit(75, "lb"),
  4008. name: "Back",
  4009. image: {
  4010. source: "./media/characters/napalm/back.svg"
  4011. }
  4012. }
  4013. },
  4014. [
  4015. {
  4016. name: "Standard",
  4017. height: math.unit(55, "feet"),
  4018. default: true
  4019. }
  4020. ]
  4021. ))
  4022. characterMakers.push(() => makeCharacter(
  4023. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  4024. {
  4025. front: {
  4026. height: math.unit(7 + 5 / 6, "feet"),
  4027. weight: math.unit(325, "lb"),
  4028. name: "Front",
  4029. image: {
  4030. source: "./media/characters/asana/front.svg",
  4031. extra: 1133 / 1060,
  4032. bottom: 15.2 / 1148.6
  4033. }
  4034. },
  4035. back: {
  4036. height: math.unit(7 + 5 / 6, "feet"),
  4037. weight: math.unit(325, "lb"),
  4038. name: "Back",
  4039. image: {
  4040. source: "./media/characters/asana/back.svg",
  4041. extra: 1114 / 1043,
  4042. bottom: 5 / 1120
  4043. }
  4044. },
  4045. dressedDark: {
  4046. height: math.unit(7 + 5 / 6, "feet"),
  4047. weight: math.unit(325, "lb"),
  4048. name: "Dressed (Dark)",
  4049. image: {
  4050. source: "./media/characters/asana/dressed-dark.svg",
  4051. extra: 1133 / 1060,
  4052. bottom: 15.2 / 1148.6
  4053. }
  4054. },
  4055. dressedLight: {
  4056. height: math.unit(7 + 5 / 6, "feet"),
  4057. weight: math.unit(325, "lb"),
  4058. name: "Dressed (Light)",
  4059. image: {
  4060. source: "./media/characters/asana/dressed-light.svg",
  4061. extra: 1133 / 1060,
  4062. bottom: 15.2 / 1148.6
  4063. }
  4064. },
  4065. },
  4066. [
  4067. {
  4068. name: "Standard",
  4069. height: math.unit(7 + 5 / 6, "feet"),
  4070. default: true
  4071. },
  4072. {
  4073. name: "Large",
  4074. height: math.unit(10, "meters")
  4075. },
  4076. {
  4077. name: "Macro",
  4078. height: math.unit(2500, "meters")
  4079. },
  4080. {
  4081. name: "Megamacro",
  4082. height: math.unit(5e6, "meters")
  4083. },
  4084. {
  4085. name: "Examacro",
  4086. height: math.unit(5e12, "lightyears")
  4087. },
  4088. {
  4089. name: "Max Size",
  4090. height: math.unit(1e31, "lightyears")
  4091. }
  4092. ]
  4093. ))
  4094. characterMakers.push(() => makeCharacter(
  4095. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  4096. {
  4097. front: {
  4098. height: math.unit(2, "meter"),
  4099. weight: math.unit(60, "kg"),
  4100. name: "Front",
  4101. image: {
  4102. source: "./media/characters/ebony/front.svg",
  4103. bottom: 0.03,
  4104. extra: 1045 / 810 + 0.03
  4105. }
  4106. },
  4107. side: {
  4108. height: math.unit(2, "meter"),
  4109. weight: math.unit(60, "kg"),
  4110. name: "Side",
  4111. image: {
  4112. source: "./media/characters/ebony/side.svg",
  4113. bottom: 0.03,
  4114. extra: 1045 / 810 + 0.03
  4115. }
  4116. },
  4117. back: {
  4118. height: math.unit(2, "meter"),
  4119. weight: math.unit(60, "kg"),
  4120. name: "Back",
  4121. image: {
  4122. source: "./media/characters/ebony/back.svg",
  4123. bottom: 0.01,
  4124. extra: 1045 / 810 + 0.01
  4125. }
  4126. },
  4127. },
  4128. [
  4129. // TODO check why I did this lol
  4130. {
  4131. name: "Standard",
  4132. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  4133. default: true
  4134. },
  4135. {
  4136. name: "Macro",
  4137. height: math.unit(200, "feet")
  4138. },
  4139. {
  4140. name: "Gigamacro",
  4141. height: math.unit(13000, "km")
  4142. }
  4143. ]
  4144. ))
  4145. characterMakers.push(() => makeCharacter(
  4146. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4147. {
  4148. front: {
  4149. height: math.unit(6, "feet"),
  4150. weight: math.unit(175, "lb"),
  4151. name: "Front",
  4152. image: {
  4153. source: "./media/characters/mountain/front.svg",
  4154. extra: 972 / 955,
  4155. bottom: 64 / 1036.6
  4156. }
  4157. },
  4158. back: {
  4159. height: math.unit(6, "feet"),
  4160. weight: math.unit(175, "lb"),
  4161. name: "Back",
  4162. image: {
  4163. source: "./media/characters/mountain/back.svg",
  4164. extra: 970 / 950,
  4165. bottom: 28.25 / 999
  4166. }
  4167. },
  4168. },
  4169. [
  4170. {
  4171. name: "Large",
  4172. height: math.unit(20, "meters")
  4173. },
  4174. {
  4175. name: "Macro",
  4176. height: math.unit(300, "meters")
  4177. },
  4178. {
  4179. name: "Gigamacro",
  4180. height: math.unit(10000, "km"),
  4181. default: true
  4182. },
  4183. {
  4184. name: "Examacro",
  4185. height: math.unit(10e9, "lightyears")
  4186. }
  4187. ]
  4188. ))
  4189. characterMakers.push(() => makeCharacter(
  4190. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4191. {
  4192. front: {
  4193. height: math.unit(8, "feet"),
  4194. weight: math.unit(500, "lb"),
  4195. name: "Front",
  4196. image: {
  4197. source: "./media/characters/rick/front.svg"
  4198. }
  4199. }
  4200. },
  4201. [
  4202. {
  4203. name: "Normal",
  4204. height: math.unit(8, "feet"),
  4205. default: true
  4206. },
  4207. {
  4208. name: "Macro",
  4209. height: math.unit(5, "km")
  4210. }
  4211. ]
  4212. ))
  4213. characterMakers.push(() => makeCharacter(
  4214. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4215. {
  4216. front: {
  4217. height: math.unit(8, "feet"),
  4218. weight: math.unit(120, "lb"),
  4219. name: "Front",
  4220. image: {
  4221. source: "./media/characters/ona/front.svg"
  4222. }
  4223. },
  4224. frontAlt: {
  4225. height: math.unit(8, "feet"),
  4226. weight: math.unit(120, "lb"),
  4227. name: "Front (Alt)",
  4228. image: {
  4229. source: "./media/characters/ona/front-alt.svg"
  4230. }
  4231. },
  4232. back: {
  4233. height: math.unit(8, "feet"),
  4234. weight: math.unit(120, "lb"),
  4235. name: "Back",
  4236. image: {
  4237. source: "./media/characters/ona/back.svg"
  4238. }
  4239. },
  4240. foot: {
  4241. height: math.unit(1.1, "feet"),
  4242. name: "Foot",
  4243. image: {
  4244. source: "./media/characters/ona/foot.svg"
  4245. }
  4246. }
  4247. },
  4248. [
  4249. {
  4250. name: "Megamacro",
  4251. height: math.unit(70, "km"),
  4252. default: true
  4253. },
  4254. {
  4255. name: "Gigamacro",
  4256. height: math.unit(681818, "miles")
  4257. },
  4258. {
  4259. name: "Examacro",
  4260. height: math.unit(3800000, "lightyears")
  4261. },
  4262. ]
  4263. ))
  4264. characterMakers.push(() => makeCharacter(
  4265. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  4266. {
  4267. front: {
  4268. height: math.unit(12, "feet"),
  4269. weight: math.unit(3000, "lb"),
  4270. name: "Front",
  4271. image: {
  4272. source: "./media/characters/mech/front.svg",
  4273. extra: 2900 / 2770,
  4274. bottom: 110 / 3010
  4275. }
  4276. },
  4277. back: {
  4278. height: math.unit(12, "feet"),
  4279. weight: math.unit(3000, "lb"),
  4280. name: "Back",
  4281. image: {
  4282. source: "./media/characters/mech/back.svg",
  4283. extra: 3011 / 2890,
  4284. bottom: 94 / 3105
  4285. }
  4286. },
  4287. maw: {
  4288. height: math.unit(3.07, "feet"),
  4289. name: "Maw",
  4290. image: {
  4291. source: "./media/characters/mech/maw.svg"
  4292. }
  4293. },
  4294. head: {
  4295. height: math.unit(2.82, "feet"),
  4296. name: "Head",
  4297. image: {
  4298. source: "./media/characters/mech/head.svg"
  4299. }
  4300. },
  4301. dick: {
  4302. height: math.unit(1.43, "feet"),
  4303. name: "Dick",
  4304. image: {
  4305. source: "./media/characters/mech/dick.svg"
  4306. }
  4307. },
  4308. },
  4309. [
  4310. {
  4311. name: "Normal",
  4312. height: math.unit(12, "feet")
  4313. },
  4314. {
  4315. name: "Macro",
  4316. height: math.unit(300, "feet"),
  4317. default: true
  4318. },
  4319. {
  4320. name: "Macro+",
  4321. height: math.unit(1500, "feet")
  4322. },
  4323. ]
  4324. ))
  4325. characterMakers.push(() => makeCharacter(
  4326. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  4327. {
  4328. front: {
  4329. height: math.unit(1.3, "meter"),
  4330. weight: math.unit(30, "kg"),
  4331. name: "Front",
  4332. image: {
  4333. source: "./media/characters/gregory/front.svg",
  4334. }
  4335. }
  4336. },
  4337. [
  4338. {
  4339. name: "Normal",
  4340. height: math.unit(1.3, "meter"),
  4341. default: true
  4342. },
  4343. {
  4344. name: "Macro",
  4345. height: math.unit(20, "meter")
  4346. }
  4347. ]
  4348. ))
  4349. characterMakers.push(() => makeCharacter(
  4350. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  4351. {
  4352. front: {
  4353. height: math.unit(2.8, "meter"),
  4354. weight: math.unit(200, "kg"),
  4355. name: "Front",
  4356. image: {
  4357. source: "./media/characters/elory/front.svg",
  4358. }
  4359. }
  4360. },
  4361. [
  4362. {
  4363. name: "Normal",
  4364. height: math.unit(2.8, "meter"),
  4365. default: true
  4366. },
  4367. {
  4368. name: "Macro",
  4369. height: math.unit(38, "meter")
  4370. }
  4371. ]
  4372. ))
  4373. characterMakers.push(() => makeCharacter(
  4374. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4375. {
  4376. front: {
  4377. height: math.unit(470, "feet"),
  4378. weight: math.unit(924, "tons"),
  4379. name: "Front",
  4380. image: {
  4381. source: "./media/characters/angelpatamon/front.svg",
  4382. }
  4383. }
  4384. },
  4385. [
  4386. {
  4387. name: "Normal",
  4388. height: math.unit(470, "feet"),
  4389. default: true
  4390. },
  4391. {
  4392. name: "Deity Size I",
  4393. height: math.unit(28651.2, "km")
  4394. },
  4395. {
  4396. name: "Deity Size II",
  4397. height: math.unit(171907.2, "km")
  4398. }
  4399. ]
  4400. ))
  4401. characterMakers.push(() => makeCharacter(
  4402. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4403. {
  4404. side: {
  4405. height: math.unit(7.2, "meter"),
  4406. weight: math.unit(8.2, "tons"),
  4407. name: "Side",
  4408. image: {
  4409. source: "./media/characters/cryae/side.svg",
  4410. extra: 3500 / 1500
  4411. }
  4412. }
  4413. },
  4414. [
  4415. {
  4416. name: "Normal",
  4417. height: math.unit(7.2, "meter"),
  4418. default: true
  4419. }
  4420. ]
  4421. ))
  4422. characterMakers.push(() => makeCharacter(
  4423. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4424. {
  4425. front: {
  4426. height: math.unit(6, "feet"),
  4427. weight: math.unit(175, "lb"),
  4428. name: "Front",
  4429. image: {
  4430. source: "./media/characters/xera/front.svg",
  4431. extra: 2377 / 1972,
  4432. bottom: 75.5 / 2452
  4433. }
  4434. },
  4435. side: {
  4436. height: math.unit(6, "feet"),
  4437. weight: math.unit(175, "lb"),
  4438. name: "Side",
  4439. image: {
  4440. source: "./media/characters/xera/side.svg",
  4441. extra: 2345 / 2019,
  4442. bottom: 39.7 / 2384
  4443. }
  4444. },
  4445. back: {
  4446. height: math.unit(6, "feet"),
  4447. weight: math.unit(175, "lb"),
  4448. name: "Back",
  4449. image: {
  4450. source: "./media/characters/xera/back.svg",
  4451. extra: 2095 / 1984,
  4452. bottom: 67 / 2166
  4453. }
  4454. },
  4455. },
  4456. [
  4457. {
  4458. name: "Small",
  4459. height: math.unit(10, "feet")
  4460. },
  4461. {
  4462. name: "Macro",
  4463. height: math.unit(500, "meters"),
  4464. default: true
  4465. },
  4466. {
  4467. name: "Macro+",
  4468. height: math.unit(10, "km")
  4469. },
  4470. {
  4471. name: "Gigamacro",
  4472. height: math.unit(25000, "km")
  4473. },
  4474. {
  4475. name: "Teramacro",
  4476. height: math.unit(3e6, "km")
  4477. }
  4478. ]
  4479. ))
  4480. characterMakers.push(() => makeCharacter(
  4481. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4482. {
  4483. front: {
  4484. height: math.unit(6, "feet"),
  4485. weight: math.unit(175, "lb"),
  4486. name: "Front",
  4487. image: {
  4488. source: "./media/characters/nebula/front.svg",
  4489. extra: 2566 / 2362,
  4490. bottom: 81 / 2644
  4491. }
  4492. }
  4493. },
  4494. [
  4495. {
  4496. name: "Small",
  4497. height: math.unit(4.5, "meters")
  4498. },
  4499. {
  4500. name: "Macro",
  4501. height: math.unit(1500, "meters"),
  4502. default: true
  4503. },
  4504. {
  4505. name: "Megamacro",
  4506. height: math.unit(150, "km")
  4507. },
  4508. {
  4509. name: "Gigamacro",
  4510. height: math.unit(27000, "km")
  4511. }
  4512. ]
  4513. ))
  4514. characterMakers.push(() => makeCharacter(
  4515. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4516. {
  4517. front: {
  4518. height: math.unit(6, "feet"),
  4519. weight: math.unit(225, "lb"),
  4520. name: "Front",
  4521. image: {
  4522. source: "./media/characters/abysgar/front.svg",
  4523. extra: 1739/1614,
  4524. bottom: 71/1810
  4525. }
  4526. },
  4527. frontNsfw: {
  4528. height: math.unit(6, "feet"),
  4529. weight: math.unit(225, "lb"),
  4530. name: "Front (NSFW)",
  4531. image: {
  4532. source: "./media/characters/abysgar/front-nsfw.svg",
  4533. extra: 1739/1614,
  4534. bottom: 71/1810
  4535. }
  4536. },
  4537. back: {
  4538. height: math.unit(4.6, "feet"),
  4539. weight: math.unit(225, "lb"),
  4540. name: "Back",
  4541. image: {
  4542. source: "./media/characters/abysgar/back.svg",
  4543. extra: 1384/1327,
  4544. bottom: 0/1384
  4545. }
  4546. },
  4547. head: {
  4548. height: math.unit(1.25, "feet"),
  4549. name: "Head",
  4550. image: {
  4551. source: "./media/characters/abysgar/head.svg",
  4552. extra: 669/569,
  4553. bottom: 0/669
  4554. }
  4555. },
  4556. },
  4557. [
  4558. {
  4559. name: "Small",
  4560. height: math.unit(4.5, "meters")
  4561. },
  4562. {
  4563. name: "Macro",
  4564. height: math.unit(1250, "meters"),
  4565. default: true
  4566. },
  4567. {
  4568. name: "Megamacro",
  4569. height: math.unit(125, "km")
  4570. },
  4571. {
  4572. name: "Gigamacro",
  4573. height: math.unit(26000, "km")
  4574. }
  4575. ]
  4576. ))
  4577. characterMakers.push(() => makeCharacter(
  4578. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  4579. {
  4580. front: {
  4581. height: math.unit(6, "feet"),
  4582. weight: math.unit(180, "lb"),
  4583. name: "Front",
  4584. image: {
  4585. source: "./media/characters/yakuz/front.svg"
  4586. }
  4587. }
  4588. },
  4589. [
  4590. {
  4591. name: "Small",
  4592. height: math.unit(5, "meters")
  4593. },
  4594. {
  4595. name: "Macro",
  4596. height: math.unit(1500, "meters"),
  4597. default: true
  4598. },
  4599. {
  4600. name: "Megamacro",
  4601. height: math.unit(200, "km")
  4602. },
  4603. {
  4604. name: "Gigamacro",
  4605. height: math.unit(100000, "km")
  4606. }
  4607. ]
  4608. ))
  4609. characterMakers.push(() => makeCharacter(
  4610. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4611. {
  4612. front: {
  4613. height: math.unit(6, "feet"),
  4614. weight: math.unit(175, "lb"),
  4615. name: "Front",
  4616. image: {
  4617. source: "./media/characters/mirova/front.svg",
  4618. extra: 3334 / 3071,
  4619. bottom: 42 / 3375.6
  4620. }
  4621. }
  4622. },
  4623. [
  4624. {
  4625. name: "Small",
  4626. height: math.unit(5, "meters")
  4627. },
  4628. {
  4629. name: "Macro",
  4630. height: math.unit(900, "meters"),
  4631. default: true
  4632. },
  4633. {
  4634. name: "Megamacro",
  4635. height: math.unit(135, "km")
  4636. },
  4637. {
  4638. name: "Gigamacro",
  4639. height: math.unit(20000, "km")
  4640. }
  4641. ]
  4642. ))
  4643. characterMakers.push(() => makeCharacter(
  4644. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4645. {
  4646. side: {
  4647. height: math.unit(28.35, "feet"),
  4648. weight: math.unit(99.75, "tons"),
  4649. name: "Side",
  4650. image: {
  4651. source: "./media/characters/asana-mech/side.svg",
  4652. extra: 923 / 699,
  4653. bottom: 50 / 975
  4654. }
  4655. },
  4656. chaingun: {
  4657. height: math.unit(7, "feet"),
  4658. weight: math.unit(2400, "lb"),
  4659. name: "Chaingun",
  4660. image: {
  4661. source: "./media/characters/asana-mech/chaingun.svg"
  4662. }
  4663. },
  4664. laser: {
  4665. height: math.unit(7.12, "feet"),
  4666. weight: math.unit(2000, "lb"),
  4667. name: "Laser",
  4668. image: {
  4669. source: "./media/characters/asana-mech/laser.svg"
  4670. }
  4671. },
  4672. },
  4673. [
  4674. {
  4675. name: "Normal",
  4676. height: math.unit(28.35, "feet"),
  4677. default: true
  4678. },
  4679. {
  4680. name: "Macro",
  4681. height: math.unit(2500, "feet")
  4682. },
  4683. {
  4684. name: "Megamacro",
  4685. height: math.unit(25, "miles")
  4686. },
  4687. {
  4688. name: "Examacro",
  4689. height: math.unit(6e8, "lightyears")
  4690. },
  4691. ]
  4692. ))
  4693. characterMakers.push(() => makeCharacter(
  4694. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4695. {
  4696. front: {
  4697. height: math.unit(5, "meters"),
  4698. weight: math.unit(1000, "kg"),
  4699. name: "Front",
  4700. image: {
  4701. source: "./media/characters/asche/front.svg",
  4702. extra: 1258 / 1190,
  4703. bottom: 47 / 1305
  4704. }
  4705. },
  4706. frontUnderwear: {
  4707. height: math.unit(5, "meters"),
  4708. weight: math.unit(1000, "kg"),
  4709. name: "Front (Underwear)",
  4710. image: {
  4711. source: "./media/characters/asche/front-underwear.svg",
  4712. extra: 1258 / 1190,
  4713. bottom: 47 / 1305
  4714. }
  4715. },
  4716. frontDressed: {
  4717. height: math.unit(5, "meters"),
  4718. weight: math.unit(1000, "kg"),
  4719. name: "Front (Dressed)",
  4720. image: {
  4721. source: "./media/characters/asche/front-dressed.svg",
  4722. extra: 1258 / 1190,
  4723. bottom: 47 / 1305
  4724. }
  4725. },
  4726. frontArmor: {
  4727. height: math.unit(5, "meters"),
  4728. weight: math.unit(1000, "kg"),
  4729. name: "Front (Armored)",
  4730. image: {
  4731. source: "./media/characters/asche/front-armored.svg",
  4732. extra: 1374 / 1308,
  4733. bottom: 23 / 1397
  4734. }
  4735. },
  4736. mp724: {
  4737. height: math.unit(0.96, "meters"),
  4738. weight: math.unit(38, "kg"),
  4739. name: "H&K MP724",
  4740. image: {
  4741. source: "./media/characters/asche/h&k-mp724.svg"
  4742. }
  4743. },
  4744. side: {
  4745. height: math.unit(5, "meters"),
  4746. weight: math.unit(1000, "kg"),
  4747. name: "Side",
  4748. image: {
  4749. source: "./media/characters/asche/side.svg",
  4750. extra: 1717 / 1609,
  4751. bottom: 0.005
  4752. }
  4753. },
  4754. back: {
  4755. height: math.unit(5, "meters"),
  4756. weight: math.unit(1000, "kg"),
  4757. name: "Back",
  4758. image: {
  4759. source: "./media/characters/asche/back.svg",
  4760. extra: 1570 / 1501
  4761. }
  4762. },
  4763. },
  4764. [
  4765. {
  4766. name: "DEFCON 5",
  4767. height: math.unit(5, "meters")
  4768. },
  4769. {
  4770. name: "DEFCON 4",
  4771. height: math.unit(500, "meters"),
  4772. default: true
  4773. },
  4774. {
  4775. name: "DEFCON 3",
  4776. height: math.unit(5, "km")
  4777. },
  4778. {
  4779. name: "DEFCON 2",
  4780. height: math.unit(500, "km")
  4781. },
  4782. {
  4783. name: "DEFCON 1",
  4784. height: math.unit(500000, "km")
  4785. },
  4786. {
  4787. name: "DEFCON 0",
  4788. height: math.unit(3, "gigaparsecs")
  4789. },
  4790. ]
  4791. ))
  4792. characterMakers.push(() => makeCharacter(
  4793. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4794. {
  4795. front: {
  4796. height: math.unit(2, "meters"),
  4797. weight: math.unit(76, "kg"),
  4798. name: "Front",
  4799. image: {
  4800. source: "./media/characters/gale/front.svg"
  4801. }
  4802. },
  4803. frontAlt1: {
  4804. height: math.unit(2, "meters"),
  4805. weight: math.unit(76, "kg"),
  4806. name: "Front (Alt 1)",
  4807. image: {
  4808. source: "./media/characters/gale/front-alt-1.svg"
  4809. }
  4810. },
  4811. frontAlt2: {
  4812. height: math.unit(2, "meters"),
  4813. weight: math.unit(76, "kg"),
  4814. name: "Front (Alt 2)",
  4815. image: {
  4816. source: "./media/characters/gale/front-alt-2.svg"
  4817. }
  4818. },
  4819. },
  4820. [
  4821. {
  4822. name: "Normal",
  4823. height: math.unit(7, "feet")
  4824. },
  4825. {
  4826. name: "Macro",
  4827. height: math.unit(150, "feet"),
  4828. default: true
  4829. },
  4830. {
  4831. name: "Macro+",
  4832. height: math.unit(300, "feet")
  4833. },
  4834. ]
  4835. ))
  4836. characterMakers.push(() => makeCharacter(
  4837. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4838. {
  4839. front: {
  4840. height: math.unit(5 + 10/12, "feet"),
  4841. weight: math.unit(67, "kg"),
  4842. name: "Front",
  4843. image: {
  4844. source: "./media/characters/draylen/front.svg",
  4845. extra: 832/777,
  4846. bottom: 85/917
  4847. }
  4848. }
  4849. },
  4850. [
  4851. {
  4852. name: "Normal",
  4853. height: math.unit(5 + 10/12, "feet")
  4854. },
  4855. {
  4856. name: "Macro",
  4857. height: math.unit(150, "feet"),
  4858. default: true
  4859. }
  4860. ]
  4861. ))
  4862. characterMakers.push(() => makeCharacter(
  4863. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4864. {
  4865. front: {
  4866. height: math.unit(7 + 9 / 12, "feet"),
  4867. weight: math.unit(379, "lbs"),
  4868. name: "Front",
  4869. image: {
  4870. source: "./media/characters/chez/front.svg"
  4871. }
  4872. },
  4873. side: {
  4874. height: math.unit(7 + 9 / 12, "feet"),
  4875. weight: math.unit(379, "lbs"),
  4876. name: "Side",
  4877. image: {
  4878. source: "./media/characters/chez/side.svg"
  4879. }
  4880. }
  4881. },
  4882. [
  4883. {
  4884. name: "Normal",
  4885. height: math.unit(7 + 9 / 12, "feet"),
  4886. default: true
  4887. },
  4888. {
  4889. name: "God King",
  4890. height: math.unit(9750000, "meters")
  4891. }
  4892. ]
  4893. ))
  4894. characterMakers.push(() => makeCharacter(
  4895. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4896. {
  4897. front: {
  4898. height: math.unit(6, "feet"),
  4899. weight: math.unit(275, "lbs"),
  4900. name: "Front",
  4901. image: {
  4902. source: "./media/characters/kaylum/front.svg",
  4903. bottom: 0.01,
  4904. extra: 1166 / 1031
  4905. }
  4906. },
  4907. frontWingless: {
  4908. height: math.unit(6, "feet"),
  4909. weight: math.unit(275, "lbs"),
  4910. name: "Front (Wingless)",
  4911. image: {
  4912. source: "./media/characters/kaylum/front-wingless.svg",
  4913. bottom: 0.01,
  4914. extra: 1117 / 1031
  4915. }
  4916. }
  4917. },
  4918. [
  4919. {
  4920. name: "Normal",
  4921. height: math.unit(3.05, "meters")
  4922. },
  4923. {
  4924. name: "Master",
  4925. height: math.unit(5.5, "meters")
  4926. },
  4927. {
  4928. name: "Rampage",
  4929. height: math.unit(19, "meters")
  4930. },
  4931. {
  4932. name: "Macro Lite",
  4933. height: math.unit(37, "meters")
  4934. },
  4935. {
  4936. name: "Hyper Predator",
  4937. height: math.unit(61, "meters")
  4938. },
  4939. {
  4940. name: "Macro",
  4941. height: math.unit(138, "meters"),
  4942. default: true
  4943. }
  4944. ]
  4945. ))
  4946. characterMakers.push(() => makeCharacter(
  4947. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4948. {
  4949. front: {
  4950. height: math.unit(5 + 5 / 12, "feet"),
  4951. weight: math.unit(120, "lbs"),
  4952. name: "Front",
  4953. image: {
  4954. source: "./media/characters/geta/front.svg",
  4955. extra: 1003/933,
  4956. bottom: 21/1024
  4957. }
  4958. },
  4959. paw: {
  4960. height: math.unit(0.35, "feet"),
  4961. name: "Paw",
  4962. image: {
  4963. source: "./media/characters/geta/paw.svg"
  4964. }
  4965. },
  4966. },
  4967. [
  4968. {
  4969. name: "Micro",
  4970. height: math.unit(3, "inches"),
  4971. default: true
  4972. },
  4973. {
  4974. name: "Normal",
  4975. height: math.unit(5 + 5 / 12, "feet")
  4976. }
  4977. ]
  4978. ))
  4979. characterMakers.push(() => makeCharacter(
  4980. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4981. {
  4982. front: {
  4983. height: math.unit(6, "feet"),
  4984. weight: math.unit(300, "lbs"),
  4985. name: "Front",
  4986. image: {
  4987. source: "./media/characters/tyrnn/front.svg"
  4988. }
  4989. }
  4990. },
  4991. [
  4992. {
  4993. name: "Main Height",
  4994. height: math.unit(355, "feet"),
  4995. default: true
  4996. },
  4997. {
  4998. name: "Fave. Height",
  4999. height: math.unit(2400, "feet")
  5000. }
  5001. ]
  5002. ))
  5003. characterMakers.push(() => makeCharacter(
  5004. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  5005. {
  5006. front: {
  5007. height: math.unit(6, "feet"),
  5008. weight: math.unit(300, "lbs"),
  5009. name: "Front",
  5010. image: {
  5011. source: "./media/characters/appledectomy/front.svg"
  5012. }
  5013. }
  5014. },
  5015. [
  5016. {
  5017. name: "Macro",
  5018. height: math.unit(2500, "feet")
  5019. },
  5020. {
  5021. name: "Megamacro",
  5022. height: math.unit(50, "miles"),
  5023. default: true
  5024. },
  5025. {
  5026. name: "Gigamacro",
  5027. height: math.unit(5000, "miles")
  5028. },
  5029. {
  5030. name: "Teramacro",
  5031. height: math.unit(250000, "miles")
  5032. },
  5033. ]
  5034. ))
  5035. characterMakers.push(() => makeCharacter(
  5036. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  5037. {
  5038. front: {
  5039. height: math.unit(6, "feet"),
  5040. weight: math.unit(200, "lbs"),
  5041. name: "Front",
  5042. image: {
  5043. source: "./media/characters/vulpes/front.svg",
  5044. extra: 573 / 543,
  5045. bottom: 0.033
  5046. }
  5047. },
  5048. side: {
  5049. height: math.unit(6, "feet"),
  5050. weight: math.unit(200, "lbs"),
  5051. name: "Side",
  5052. image: {
  5053. source: "./media/characters/vulpes/side.svg",
  5054. extra: 577 / 549,
  5055. bottom: 11 / 588
  5056. }
  5057. },
  5058. back: {
  5059. height: math.unit(6, "feet"),
  5060. weight: math.unit(200, "lbs"),
  5061. name: "Back",
  5062. image: {
  5063. source: "./media/characters/vulpes/back.svg",
  5064. extra: 573 / 549,
  5065. bottom: 20 / 593
  5066. }
  5067. },
  5068. feet: {
  5069. height: math.unit(1.276, "feet"),
  5070. name: "Feet",
  5071. image: {
  5072. source: "./media/characters/vulpes/feet.svg"
  5073. }
  5074. },
  5075. maw: {
  5076. height: math.unit(1.18, "feet"),
  5077. name: "Maw",
  5078. image: {
  5079. source: "./media/characters/vulpes/maw.svg"
  5080. }
  5081. },
  5082. },
  5083. [
  5084. {
  5085. name: "Micro",
  5086. height: math.unit(2, "inches")
  5087. },
  5088. {
  5089. name: "Normal",
  5090. height: math.unit(6.3, "feet")
  5091. },
  5092. {
  5093. name: "Macro",
  5094. height: math.unit(850, "feet")
  5095. },
  5096. {
  5097. name: "Megamacro",
  5098. height: math.unit(7500, "feet"),
  5099. default: true
  5100. },
  5101. {
  5102. name: "Gigamacro",
  5103. height: math.unit(570000, "miles")
  5104. }
  5105. ]
  5106. ))
  5107. characterMakers.push(() => makeCharacter(
  5108. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  5109. {
  5110. front: {
  5111. height: math.unit(6, "feet"),
  5112. weight: math.unit(210, "lbs"),
  5113. name: "Front",
  5114. image: {
  5115. source: "./media/characters/rain-fallen/front.svg"
  5116. }
  5117. },
  5118. side: {
  5119. height: math.unit(6, "feet"),
  5120. weight: math.unit(210, "lbs"),
  5121. name: "Side",
  5122. image: {
  5123. source: "./media/characters/rain-fallen/side.svg"
  5124. }
  5125. },
  5126. back: {
  5127. height: math.unit(6, "feet"),
  5128. weight: math.unit(210, "lbs"),
  5129. name: "Back",
  5130. image: {
  5131. source: "./media/characters/rain-fallen/back.svg"
  5132. }
  5133. },
  5134. feral: {
  5135. height: math.unit(9, "feet"),
  5136. weight: math.unit(700, "lbs"),
  5137. name: "Feral",
  5138. image: {
  5139. source: "./media/characters/rain-fallen/feral.svg"
  5140. }
  5141. },
  5142. },
  5143. [
  5144. {
  5145. name: "Meddling with Mortals",
  5146. height: math.unit(8 + 8/12, "feet")
  5147. },
  5148. {
  5149. name: "Normal",
  5150. height: math.unit(5, "meter")
  5151. },
  5152. {
  5153. name: "Macro",
  5154. height: math.unit(150, "meter"),
  5155. default: true
  5156. },
  5157. {
  5158. name: "Megamacro",
  5159. height: math.unit(278e6, "meter")
  5160. },
  5161. {
  5162. name: "Gigamacro",
  5163. height: math.unit(2e9, "meter")
  5164. },
  5165. {
  5166. name: "Teramacro",
  5167. height: math.unit(8e12, "meter")
  5168. },
  5169. {
  5170. name: "Devourer",
  5171. height: math.unit(14, "zettameters")
  5172. },
  5173. {
  5174. name: "Scarlet King",
  5175. height: math.unit(18, "yottameters")
  5176. },
  5177. {
  5178. name: "Void",
  5179. height: math.unit(1e88, "yottameters")
  5180. }
  5181. ]
  5182. ))
  5183. characterMakers.push(() => makeCharacter(
  5184. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  5185. {
  5186. standing: {
  5187. height: math.unit(6, "feet"),
  5188. weight: math.unit(180, "lbs"),
  5189. name: "Standing",
  5190. image: {
  5191. source: "./media/characters/zaakira/standing.svg",
  5192. extra: 1599/1504,
  5193. bottom: 39/1638
  5194. }
  5195. },
  5196. laying: {
  5197. height: math.unit(3.3, "feet"),
  5198. weight: math.unit(180, "lbs"),
  5199. name: "Laying",
  5200. image: {
  5201. source: "./media/characters/zaakira/laying.svg"
  5202. }
  5203. },
  5204. },
  5205. [
  5206. {
  5207. name: "Normal",
  5208. height: math.unit(12, "feet")
  5209. },
  5210. {
  5211. name: "Macro",
  5212. height: math.unit(279, "feet"),
  5213. default: true
  5214. }
  5215. ]
  5216. ))
  5217. characterMakers.push(() => makeCharacter(
  5218. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  5219. {
  5220. femSfw: {
  5221. height: math.unit(8, "feet"),
  5222. weight: math.unit(350, "lb"),
  5223. name: "Fem",
  5224. image: {
  5225. source: "./media/characters/sigvald/fem-sfw.svg",
  5226. extra: 182 / 164,
  5227. bottom: 8.7 / 190.5
  5228. }
  5229. },
  5230. femNsfw: {
  5231. height: math.unit(8, "feet"),
  5232. weight: math.unit(350, "lb"),
  5233. name: "Fem (NSFW)",
  5234. image: {
  5235. source: "./media/characters/sigvald/fem-nsfw.svg",
  5236. extra: 182 / 164,
  5237. bottom: 8.7 / 190.5
  5238. }
  5239. },
  5240. maleNsfw: {
  5241. height: math.unit(8, "feet"),
  5242. weight: math.unit(350, "lb"),
  5243. name: "Male (NSFW)",
  5244. image: {
  5245. source: "./media/characters/sigvald/male-nsfw.svg",
  5246. extra: 182 / 164,
  5247. bottom: 8.7 / 190.5
  5248. }
  5249. },
  5250. hermNsfw: {
  5251. height: math.unit(8, "feet"),
  5252. weight: math.unit(350, "lb"),
  5253. name: "Herm (NSFW)",
  5254. image: {
  5255. source: "./media/characters/sigvald/herm-nsfw.svg",
  5256. extra: 182 / 164,
  5257. bottom: 8.7 / 190.5
  5258. }
  5259. },
  5260. dick: {
  5261. height: math.unit(2.36, "feet"),
  5262. name: "Dick",
  5263. image: {
  5264. source: "./media/characters/sigvald/dick.svg"
  5265. }
  5266. },
  5267. eye: {
  5268. height: math.unit(0.31, "feet"),
  5269. name: "Eye",
  5270. image: {
  5271. source: "./media/characters/sigvald/eye.svg"
  5272. }
  5273. },
  5274. mouth: {
  5275. height: math.unit(0.92, "feet"),
  5276. name: "Mouth",
  5277. image: {
  5278. source: "./media/characters/sigvald/mouth.svg"
  5279. }
  5280. },
  5281. paws: {
  5282. height: math.unit(2.2, "feet"),
  5283. name: "Paws",
  5284. image: {
  5285. source: "./media/characters/sigvald/paws.svg"
  5286. }
  5287. }
  5288. },
  5289. [
  5290. {
  5291. name: "Normal",
  5292. height: math.unit(8, "feet")
  5293. },
  5294. {
  5295. name: "Large",
  5296. height: math.unit(12, "feet")
  5297. },
  5298. {
  5299. name: "Larger",
  5300. height: math.unit(20, "feet")
  5301. },
  5302. {
  5303. name: "Macro",
  5304. height: math.unit(150, "feet")
  5305. },
  5306. {
  5307. name: "Macro+",
  5308. height: math.unit(200, "feet"),
  5309. default: true
  5310. },
  5311. ]
  5312. ))
  5313. characterMakers.push(() => makeCharacter(
  5314. { name: "Scott", species: ["fox"], tags: ["taur"] },
  5315. {
  5316. side: {
  5317. height: math.unit(12, "feet"),
  5318. weight: math.unit(2000, "kg"),
  5319. name: "Side",
  5320. image: {
  5321. source: "./media/characters/scott/side.svg",
  5322. extra: 754 / 724,
  5323. bottom: 0.069
  5324. }
  5325. },
  5326. upright: {
  5327. height: math.unit(12, "feet"),
  5328. weight: math.unit(2000, "kg"),
  5329. name: "Upright",
  5330. image: {
  5331. source: "./media/characters/scott/upright.svg",
  5332. extra: 3881 / 3722,
  5333. bottom: 0.05
  5334. }
  5335. },
  5336. },
  5337. [
  5338. {
  5339. name: "Normal",
  5340. height: math.unit(12, "feet"),
  5341. default: true
  5342. },
  5343. ]
  5344. ))
  5345. characterMakers.push(() => makeCharacter(
  5346. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  5347. {
  5348. side: {
  5349. height: math.unit(8, "meters"),
  5350. weight: math.unit(84755, "lbs"),
  5351. name: "Side",
  5352. image: {
  5353. source: "./media/characters/tobias/side.svg",
  5354. extra: 1474 / 1096,
  5355. bottom: 38.9 / 1513.1235
  5356. }
  5357. },
  5358. },
  5359. [
  5360. {
  5361. name: "Normal",
  5362. height: math.unit(8, "meters"),
  5363. default: true
  5364. },
  5365. ]
  5366. ))
  5367. characterMakers.push(() => makeCharacter(
  5368. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  5369. {
  5370. front: {
  5371. height: math.unit(5.5, "feet"),
  5372. weight: math.unit(400, "lbs"),
  5373. name: "Front",
  5374. image: {
  5375. source: "./media/characters/kieran/front.svg",
  5376. extra: 2694 / 2364,
  5377. bottom: 217 / 2908
  5378. }
  5379. },
  5380. side: {
  5381. height: math.unit(5.5, "feet"),
  5382. weight: math.unit(400, "lbs"),
  5383. name: "Side",
  5384. image: {
  5385. source: "./media/characters/kieran/side.svg",
  5386. extra: 875 / 777,
  5387. bottom: 84.6 / 959
  5388. }
  5389. },
  5390. },
  5391. [
  5392. {
  5393. name: "Normal",
  5394. height: math.unit(5.5, "feet"),
  5395. default: true
  5396. },
  5397. ]
  5398. ))
  5399. characterMakers.push(() => makeCharacter(
  5400. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  5401. {
  5402. side: {
  5403. height: math.unit(2, "meters"),
  5404. weight: math.unit(70, "kg"),
  5405. name: "Side",
  5406. image: {
  5407. source: "./media/characters/sanya/side.svg",
  5408. bottom: 0.02,
  5409. extra: 1.02
  5410. }
  5411. },
  5412. },
  5413. [
  5414. {
  5415. name: "Small",
  5416. height: math.unit(2, "meters")
  5417. },
  5418. {
  5419. name: "Normal",
  5420. height: math.unit(3, "meters")
  5421. },
  5422. {
  5423. name: "Macro",
  5424. height: math.unit(16, "meters"),
  5425. default: true
  5426. },
  5427. ]
  5428. ))
  5429. characterMakers.push(() => makeCharacter(
  5430. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  5431. {
  5432. front: {
  5433. height: math.unit(2, "meters"),
  5434. weight: math.unit(120, "kg"),
  5435. name: "Front",
  5436. image: {
  5437. source: "./media/characters/miranda/front.svg",
  5438. extra: 195 / 185,
  5439. bottom: 10.9 / 206.5
  5440. }
  5441. },
  5442. back: {
  5443. height: math.unit(2, "meters"),
  5444. weight: math.unit(120, "kg"),
  5445. name: "Back",
  5446. image: {
  5447. source: "./media/characters/miranda/back.svg",
  5448. extra: 201 / 193,
  5449. bottom: 2.3 / 203.7
  5450. }
  5451. },
  5452. },
  5453. [
  5454. {
  5455. name: "Normal",
  5456. height: math.unit(10, "feet"),
  5457. default: true
  5458. }
  5459. ]
  5460. ))
  5461. characterMakers.push(() => makeCharacter(
  5462. { name: "James", species: ["deer"], tags: ["anthro"] },
  5463. {
  5464. side: {
  5465. height: math.unit(2, "meters"),
  5466. weight: math.unit(100, "kg"),
  5467. name: "Front",
  5468. image: {
  5469. source: "./media/characters/james/front.svg",
  5470. extra: 10 / 8.5
  5471. }
  5472. },
  5473. },
  5474. [
  5475. {
  5476. name: "Normal",
  5477. height: math.unit(8.5, "feet"),
  5478. default: true
  5479. }
  5480. ]
  5481. ))
  5482. characterMakers.push(() => makeCharacter(
  5483. { name: "Heather", species: ["cow"], tags: ["taur"] },
  5484. {
  5485. side: {
  5486. height: math.unit(9.5, "feet"),
  5487. weight: math.unit(2500, "lbs"),
  5488. name: "Side",
  5489. image: {
  5490. source: "./media/characters/heather/side.svg"
  5491. }
  5492. },
  5493. },
  5494. [
  5495. {
  5496. name: "Normal",
  5497. height: math.unit(9.5, "feet"),
  5498. default: true
  5499. }
  5500. ]
  5501. ))
  5502. characterMakers.push(() => makeCharacter(
  5503. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  5504. {
  5505. side: {
  5506. height: math.unit(6.5, "feet"),
  5507. weight: math.unit(400, "lbs"),
  5508. name: "Side",
  5509. image: {
  5510. source: "./media/characters/lukas/side.svg",
  5511. extra: 7.25 / 6.5
  5512. }
  5513. },
  5514. },
  5515. [
  5516. {
  5517. name: "Normal",
  5518. height: math.unit(6.5, "feet"),
  5519. default: true
  5520. }
  5521. ]
  5522. ))
  5523. characterMakers.push(() => makeCharacter(
  5524. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  5525. {
  5526. side: {
  5527. height: math.unit(5, "feet"),
  5528. weight: math.unit(3000, "lbs"),
  5529. name: "Side",
  5530. image: {
  5531. source: "./media/characters/louise/side.svg"
  5532. }
  5533. },
  5534. },
  5535. [
  5536. {
  5537. name: "Normal",
  5538. height: math.unit(5, "feet"),
  5539. default: true
  5540. }
  5541. ]
  5542. ))
  5543. characterMakers.push(() => makeCharacter(
  5544. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  5545. {
  5546. side: {
  5547. height: math.unit(6, "feet"),
  5548. weight: math.unit(150, "lbs"),
  5549. name: "Side",
  5550. image: {
  5551. source: "./media/characters/ramona/side.svg",
  5552. extra: 871/854,
  5553. bottom: 41/912
  5554. }
  5555. },
  5556. },
  5557. [
  5558. {
  5559. name: "Normal",
  5560. height: math.unit(5.3, "meters"),
  5561. default: true
  5562. },
  5563. {
  5564. name: "Macro",
  5565. height: math.unit(20, "stories")
  5566. },
  5567. {
  5568. name: "Macro+",
  5569. height: math.unit(50, "stories")
  5570. },
  5571. ]
  5572. ))
  5573. characterMakers.push(() => makeCharacter(
  5574. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  5575. {
  5576. standing: {
  5577. height: math.unit(5.75, "feet"),
  5578. weight: math.unit(160, "lbs"),
  5579. name: "Standing",
  5580. image: {
  5581. source: "./media/characters/deerpuff/standing.svg",
  5582. extra: 682 / 624
  5583. }
  5584. },
  5585. sitting: {
  5586. height: math.unit(5.75 / 1.79, "feet"),
  5587. weight: math.unit(160, "lbs"),
  5588. name: "Sitting",
  5589. image: {
  5590. source: "./media/characters/deerpuff/sitting.svg",
  5591. bottom: 44 / 400,
  5592. extra: 1
  5593. }
  5594. },
  5595. taurLaying: {
  5596. height: math.unit(6, "feet"),
  5597. weight: math.unit(400, "lbs"),
  5598. name: "Taur (Laying)",
  5599. image: {
  5600. source: "./media/characters/deerpuff/taur-laying.svg"
  5601. }
  5602. },
  5603. },
  5604. [
  5605. {
  5606. name: "Puffball",
  5607. height: math.unit(6, "inches")
  5608. },
  5609. {
  5610. name: "Normalpuff",
  5611. height: math.unit(5.75, "feet")
  5612. },
  5613. {
  5614. name: "Macropuff",
  5615. height: math.unit(1500, "feet"),
  5616. default: true
  5617. },
  5618. {
  5619. name: "Megapuff",
  5620. height: math.unit(500, "miles")
  5621. },
  5622. {
  5623. name: "Gigapuff",
  5624. height: math.unit(250000, "miles")
  5625. },
  5626. {
  5627. name: "Omegapuff",
  5628. height: math.unit(1000, "lightyears")
  5629. },
  5630. ]
  5631. ))
  5632. characterMakers.push(() => makeCharacter(
  5633. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5634. {
  5635. stomping: {
  5636. height: math.unit(6, "feet"),
  5637. weight: math.unit(170, "lbs"),
  5638. name: "Stomping",
  5639. image: {
  5640. source: "./media/characters/vivian/stomping.svg"
  5641. }
  5642. },
  5643. sitting: {
  5644. height: math.unit(6 / 1.75, "feet"),
  5645. weight: math.unit(170, "lbs"),
  5646. name: "Sitting",
  5647. image: {
  5648. source: "./media/characters/vivian/sitting.svg",
  5649. bottom: 1 / 6.4,
  5650. extra: 1,
  5651. }
  5652. },
  5653. },
  5654. [
  5655. {
  5656. name: "Normal",
  5657. height: math.unit(7, "feet"),
  5658. default: true
  5659. },
  5660. {
  5661. name: "Macro",
  5662. height: math.unit(10, "stories")
  5663. },
  5664. {
  5665. name: "Macro+",
  5666. height: math.unit(30, "stories")
  5667. },
  5668. {
  5669. name: "Megamacro",
  5670. height: math.unit(10, "miles")
  5671. },
  5672. {
  5673. name: "Megamacro+",
  5674. height: math.unit(2750000, "meters")
  5675. },
  5676. ]
  5677. ))
  5678. characterMakers.push(() => makeCharacter(
  5679. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5680. {
  5681. front: {
  5682. height: math.unit(6, "feet"),
  5683. weight: math.unit(160, "lbs"),
  5684. name: "Front",
  5685. image: {
  5686. source: "./media/characters/prince/front.svg",
  5687. extra: 3400 / 3000
  5688. }
  5689. },
  5690. jumping: {
  5691. height: math.unit(6, "feet"),
  5692. weight: math.unit(160, "lbs"),
  5693. name: "Jumping",
  5694. image: {
  5695. source: "./media/characters/prince/jump.svg",
  5696. extra: 2555 / 2134
  5697. }
  5698. },
  5699. },
  5700. [
  5701. {
  5702. name: "Normal",
  5703. height: math.unit(7.75, "feet"),
  5704. default: true
  5705. },
  5706. {
  5707. name: "Not cute",
  5708. height: math.unit(17, "feet")
  5709. },
  5710. {
  5711. name: "I said NOT",
  5712. height: math.unit(91, "feet")
  5713. },
  5714. {
  5715. name: "Please stop",
  5716. height: math.unit(560, "feet")
  5717. },
  5718. {
  5719. name: "What have you done",
  5720. height: math.unit(2200, "feet")
  5721. },
  5722. {
  5723. name: "Deer God",
  5724. height: math.unit(3.6, "miles")
  5725. },
  5726. ]
  5727. ))
  5728. characterMakers.push(() => makeCharacter(
  5729. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5730. {
  5731. standing: {
  5732. height: math.unit(6, "feet"),
  5733. weight: math.unit(300, "lbs"),
  5734. name: "Standing",
  5735. image: {
  5736. source: "./media/characters/psymon/standing.svg",
  5737. extra: 1888 / 1810,
  5738. bottom: 0.05
  5739. }
  5740. },
  5741. slithering: {
  5742. height: math.unit(6, "feet"),
  5743. weight: math.unit(300, "lbs"),
  5744. name: "Slithering",
  5745. image: {
  5746. source: "./media/characters/psymon/slithering.svg",
  5747. extra: 1330 / 1224
  5748. }
  5749. },
  5750. slitheringAlt: {
  5751. height: math.unit(6, "feet"),
  5752. weight: math.unit(300, "lbs"),
  5753. name: "Slithering (Alt)",
  5754. image: {
  5755. source: "./media/characters/psymon/slithering-alt.svg",
  5756. extra: 1330 / 1224
  5757. }
  5758. },
  5759. },
  5760. [
  5761. {
  5762. name: "Normal",
  5763. height: math.unit(11.25, "feet"),
  5764. default: true
  5765. },
  5766. {
  5767. name: "Large",
  5768. height: math.unit(27, "feet")
  5769. },
  5770. {
  5771. name: "Giant",
  5772. height: math.unit(87, "feet")
  5773. },
  5774. {
  5775. name: "Macro",
  5776. height: math.unit(365, "feet")
  5777. },
  5778. {
  5779. name: "Megamacro",
  5780. height: math.unit(3, "miles")
  5781. },
  5782. {
  5783. name: "World Serpent",
  5784. height: math.unit(8000, "miles")
  5785. },
  5786. ]
  5787. ))
  5788. characterMakers.push(() => makeCharacter(
  5789. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5790. {
  5791. front: {
  5792. height: math.unit(6, "feet"),
  5793. weight: math.unit(180, "lbs"),
  5794. name: "Front",
  5795. image: {
  5796. source: "./media/characters/daimos/front.svg",
  5797. extra: 4160 / 3897,
  5798. bottom: 0.021
  5799. }
  5800. }
  5801. },
  5802. [
  5803. {
  5804. name: "Normal",
  5805. height: math.unit(8, "feet"),
  5806. default: true
  5807. },
  5808. {
  5809. name: "Big Dog",
  5810. height: math.unit(22, "feet")
  5811. },
  5812. {
  5813. name: "Macro",
  5814. height: math.unit(127, "feet")
  5815. },
  5816. {
  5817. name: "Megamacro",
  5818. height: math.unit(3600, "feet")
  5819. },
  5820. ]
  5821. ))
  5822. characterMakers.push(() => makeCharacter(
  5823. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5824. {
  5825. side: {
  5826. height: math.unit(6, "feet"),
  5827. weight: math.unit(180, "lbs"),
  5828. name: "Side",
  5829. image: {
  5830. source: "./media/characters/blake/side.svg",
  5831. extra: 1212 / 1120,
  5832. bottom: 0.05
  5833. }
  5834. },
  5835. crouched: {
  5836. height: math.unit(6 * 0.57, "feet"),
  5837. weight: math.unit(180, "lbs"),
  5838. name: "Crouched",
  5839. image: {
  5840. source: "./media/characters/blake/crouched.svg",
  5841. extra: 840 / 587,
  5842. bottom: 0.04
  5843. }
  5844. },
  5845. bent: {
  5846. height: math.unit(6 * 0.75, "feet"),
  5847. weight: math.unit(180, "lbs"),
  5848. name: "Bent",
  5849. image: {
  5850. source: "./media/characters/blake/bent.svg",
  5851. extra: 592 / 544,
  5852. bottom: 0.035
  5853. }
  5854. },
  5855. },
  5856. [
  5857. {
  5858. name: "Normal",
  5859. height: math.unit(8 + 1 / 6, "feet"),
  5860. default: true
  5861. },
  5862. {
  5863. name: "Big Backside",
  5864. height: math.unit(37, "feet")
  5865. },
  5866. {
  5867. name: "Subway Shredder",
  5868. height: math.unit(72, "feet")
  5869. },
  5870. {
  5871. name: "City Carver",
  5872. height: math.unit(1675, "feet")
  5873. },
  5874. {
  5875. name: "Tectonic Tweaker",
  5876. height: math.unit(2300, "miles")
  5877. },
  5878. ]
  5879. ))
  5880. characterMakers.push(() => makeCharacter(
  5881. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5882. {
  5883. front: {
  5884. height: math.unit(6, "feet"),
  5885. weight: math.unit(180, "lbs"),
  5886. name: "Front",
  5887. image: {
  5888. source: "./media/characters/guisetto/front.svg",
  5889. extra: 856 / 817,
  5890. bottom: 0.06
  5891. }
  5892. },
  5893. airborne: {
  5894. height: math.unit(6, "feet"),
  5895. weight: math.unit(180, "lbs"),
  5896. name: "Airborne",
  5897. image: {
  5898. source: "./media/characters/guisetto/airborne.svg",
  5899. extra: 584 / 525
  5900. }
  5901. },
  5902. },
  5903. [
  5904. {
  5905. name: "Normal",
  5906. height: math.unit(10 + 11 / 12, "feet"),
  5907. default: true
  5908. },
  5909. {
  5910. name: "Large",
  5911. height: math.unit(35, "feet")
  5912. },
  5913. {
  5914. name: "Macro",
  5915. height: math.unit(475, "feet")
  5916. },
  5917. ]
  5918. ))
  5919. characterMakers.push(() => makeCharacter(
  5920. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5921. {
  5922. front: {
  5923. height: math.unit(6, "feet"),
  5924. weight: math.unit(180, "lbs"),
  5925. name: "Front",
  5926. image: {
  5927. source: "./media/characters/luxor/front.svg",
  5928. extra: 2940 / 2152
  5929. }
  5930. },
  5931. back: {
  5932. height: math.unit(6, "feet"),
  5933. weight: math.unit(180, "lbs"),
  5934. name: "Back",
  5935. image: {
  5936. source: "./media/characters/luxor/back.svg",
  5937. extra: 1083 / 960
  5938. }
  5939. },
  5940. },
  5941. [
  5942. {
  5943. name: "Normal",
  5944. height: math.unit(5 + 5 / 6, "feet"),
  5945. default: true
  5946. },
  5947. {
  5948. name: "Lamp",
  5949. height: math.unit(50, "feet")
  5950. },
  5951. {
  5952. name: "Lämp",
  5953. height: math.unit(300, "feet")
  5954. },
  5955. {
  5956. name: "The sun is a lamp",
  5957. height: math.unit(250000, "miles")
  5958. },
  5959. ]
  5960. ))
  5961. characterMakers.push(() => makeCharacter(
  5962. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5963. {
  5964. front: {
  5965. height: math.unit(6, "feet"),
  5966. weight: math.unit(50, "lbs"),
  5967. name: "Front",
  5968. image: {
  5969. source: "./media/characters/huoyan/front.svg"
  5970. }
  5971. },
  5972. side: {
  5973. height: math.unit(6, "feet"),
  5974. weight: math.unit(180, "lbs"),
  5975. name: "Side",
  5976. image: {
  5977. source: "./media/characters/huoyan/side.svg"
  5978. }
  5979. },
  5980. },
  5981. [
  5982. {
  5983. name: "Chef",
  5984. height: math.unit(9, "feet")
  5985. },
  5986. {
  5987. name: "Normal",
  5988. height: math.unit(65, "feet"),
  5989. default: true
  5990. },
  5991. {
  5992. name: "Macro",
  5993. height: math.unit(780, "feet")
  5994. },
  5995. {
  5996. name: "Flaming Mountain",
  5997. height: math.unit(4.8, "miles")
  5998. },
  5999. {
  6000. name: "Celestial",
  6001. height: math.unit(765000, "miles")
  6002. },
  6003. ]
  6004. ))
  6005. characterMakers.push(() => makeCharacter(
  6006. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  6007. {
  6008. front: {
  6009. height: math.unit(5 + 3 / 4, "feet"),
  6010. weight: math.unit(120, "lbs"),
  6011. name: "Front",
  6012. image: {
  6013. source: "./media/characters/tails/front.svg"
  6014. }
  6015. }
  6016. },
  6017. [
  6018. {
  6019. name: "Normal",
  6020. height: math.unit(5 + 3 / 4, "feet"),
  6021. default: true
  6022. }
  6023. ]
  6024. ))
  6025. characterMakers.push(() => makeCharacter(
  6026. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  6027. {
  6028. front: {
  6029. height: math.unit(4, "feet"),
  6030. weight: math.unit(50, "lbs"),
  6031. name: "Front",
  6032. image: {
  6033. source: "./media/characters/rainy/front.svg"
  6034. }
  6035. }
  6036. },
  6037. [
  6038. {
  6039. name: "Macro",
  6040. height: math.unit(800, "feet"),
  6041. default: true
  6042. }
  6043. ]
  6044. ))
  6045. characterMakers.push(() => makeCharacter(
  6046. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  6047. {
  6048. front: {
  6049. height: math.unit(6, "feet"),
  6050. weight: math.unit(150, "lbs"),
  6051. name: "Front",
  6052. image: {
  6053. source: "./media/characters/rainier/front.svg"
  6054. }
  6055. }
  6056. },
  6057. [
  6058. {
  6059. name: "Micro",
  6060. height: math.unit(2, "mm"),
  6061. default: true
  6062. }
  6063. ]
  6064. ))
  6065. characterMakers.push(() => makeCharacter(
  6066. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  6067. {
  6068. front: {
  6069. height: math.unit(8 + 4/12, "feet"),
  6070. weight: math.unit(450, "kilograms"),
  6071. volume: math.unit(5, "cups"),
  6072. name: "Front",
  6073. image: {
  6074. source: "./media/characters/andy-renard/front.svg",
  6075. extra: 1839/1726,
  6076. bottom: 134/1973
  6077. }
  6078. },
  6079. back: {
  6080. height: math.unit(8 + 4/12, "feet"),
  6081. weight: math.unit(450, "kilograms"),
  6082. volume: math.unit(5, "cups"),
  6083. name: "Back",
  6084. image: {
  6085. source: "./media/characters/andy-renard/back.svg",
  6086. extra: 1838/1710,
  6087. bottom: 105/1943
  6088. }
  6089. },
  6090. },
  6091. [
  6092. {
  6093. name: "Tall",
  6094. height: math.unit(8 + 4/12, "feet")
  6095. },
  6096. {
  6097. name: "Mini Macro",
  6098. height: math.unit(15, "feet"),
  6099. default: true
  6100. },
  6101. {
  6102. name: "Macro",
  6103. height: math.unit(100, "feet")
  6104. },
  6105. {
  6106. name: "Mega Macro",
  6107. height: math.unit(1000, "feet")
  6108. },
  6109. {
  6110. name: "Giga Macro",
  6111. height: math.unit(10, "miles")
  6112. },
  6113. {
  6114. name: "God Macro",
  6115. height: math.unit(1, "multiverse")
  6116. },
  6117. ]
  6118. ))
  6119. characterMakers.push(() => makeCharacter(
  6120. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  6121. {
  6122. front: {
  6123. height: math.unit(6, "feet"),
  6124. weight: math.unit(210, "lbs"),
  6125. name: "Front",
  6126. image: {
  6127. source: "./media/characters/cimmaron/front-sfw.svg",
  6128. extra: 701 / 676,
  6129. bottom: 0.046
  6130. }
  6131. },
  6132. back: {
  6133. height: math.unit(6, "feet"),
  6134. weight: math.unit(210, "lbs"),
  6135. name: "Back",
  6136. image: {
  6137. source: "./media/characters/cimmaron/back-sfw.svg",
  6138. extra: 701 / 676,
  6139. bottom: 0.046
  6140. }
  6141. },
  6142. frontNsfw: {
  6143. height: math.unit(6, "feet"),
  6144. weight: math.unit(210, "lbs"),
  6145. name: "Front (NSFW)",
  6146. image: {
  6147. source: "./media/characters/cimmaron/front-nsfw.svg",
  6148. extra: 701 / 676,
  6149. bottom: 0.046
  6150. }
  6151. },
  6152. backNsfw: {
  6153. height: math.unit(6, "feet"),
  6154. weight: math.unit(210, "lbs"),
  6155. name: "Back (NSFW)",
  6156. image: {
  6157. source: "./media/characters/cimmaron/back-nsfw.svg",
  6158. extra: 701 / 676,
  6159. bottom: 0.046
  6160. }
  6161. },
  6162. dick: {
  6163. height: math.unit(1.714, "feet"),
  6164. name: "Dick",
  6165. image: {
  6166. source: "./media/characters/cimmaron/dick.svg"
  6167. }
  6168. },
  6169. },
  6170. [
  6171. {
  6172. name: "Normal",
  6173. height: math.unit(6, "feet"),
  6174. default: true
  6175. },
  6176. {
  6177. name: "Macro Mayor",
  6178. height: math.unit(350, "meters")
  6179. },
  6180. ]
  6181. ))
  6182. characterMakers.push(() => makeCharacter(
  6183. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  6184. {
  6185. front: {
  6186. height: math.unit(6, "feet"),
  6187. weight: math.unit(200, "lbs"),
  6188. name: "Front",
  6189. image: {
  6190. source: "./media/characters/akari/front.svg",
  6191. extra: 962 / 901,
  6192. bottom: 0.04
  6193. }
  6194. }
  6195. },
  6196. [
  6197. {
  6198. name: "Micro",
  6199. height: math.unit(5, "inches"),
  6200. default: true
  6201. },
  6202. {
  6203. name: "Normal",
  6204. height: math.unit(7, "feet")
  6205. },
  6206. ]
  6207. ))
  6208. characterMakers.push(() => makeCharacter(
  6209. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  6210. {
  6211. front: {
  6212. height: math.unit(6, "feet"),
  6213. weight: math.unit(140, "lbs"),
  6214. name: "Front",
  6215. image: {
  6216. source: "./media/characters/cynosura/front.svg",
  6217. extra: 896 / 847
  6218. }
  6219. },
  6220. back: {
  6221. height: math.unit(6, "feet"),
  6222. weight: math.unit(140, "lbs"),
  6223. name: "Back",
  6224. image: {
  6225. source: "./media/characters/cynosura/back.svg",
  6226. extra: 1365 / 1250
  6227. }
  6228. },
  6229. },
  6230. [
  6231. {
  6232. name: "Micro",
  6233. height: math.unit(4, "inches")
  6234. },
  6235. {
  6236. name: "Normal",
  6237. height: math.unit(5.75, "feet"),
  6238. default: true
  6239. },
  6240. {
  6241. name: "Tall",
  6242. height: math.unit(10, "feet")
  6243. },
  6244. {
  6245. name: "Big",
  6246. height: math.unit(20, "feet")
  6247. },
  6248. {
  6249. name: "Macro",
  6250. height: math.unit(50, "feet")
  6251. },
  6252. ]
  6253. ))
  6254. characterMakers.push(() => makeCharacter(
  6255. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  6256. {
  6257. front: {
  6258. height: math.unit(13 + 2/12, "feet"),
  6259. weight: math.unit(800, "kg"),
  6260. name: "Front",
  6261. image: {
  6262. source: "./media/characters/gin/front.svg",
  6263. extra: 1312/1191,
  6264. bottom: 45/1357
  6265. }
  6266. },
  6267. mouth: {
  6268. height: math.unit(2.39 * 1.8, "feet"),
  6269. name: "Mouth",
  6270. image: {
  6271. source: "./media/characters/gin/mouth.svg"
  6272. }
  6273. },
  6274. hand: {
  6275. height: math.unit(1.57 * 2.19, "feet"),
  6276. name: "Hand",
  6277. image: {
  6278. source: "./media/characters/gin/hand.svg"
  6279. }
  6280. },
  6281. foot: {
  6282. height: math.unit(6 / 4.25 * 2.19, "feet"),
  6283. name: "Foot",
  6284. image: {
  6285. source: "./media/characters/gin/foot.svg"
  6286. }
  6287. },
  6288. sole: {
  6289. height: math.unit(6 / 4.40 * 2.19, "feet"),
  6290. name: "Sole",
  6291. image: {
  6292. source: "./media/characters/gin/sole.svg"
  6293. }
  6294. },
  6295. },
  6296. [
  6297. {
  6298. name: "Very Small",
  6299. height: math.unit(13 + 2 / 12, "feet")
  6300. },
  6301. {
  6302. name: "Micro",
  6303. height: math.unit(600, "miles")
  6304. },
  6305. {
  6306. name: "Regular",
  6307. height: math.unit(20, "earths"),
  6308. default: true
  6309. },
  6310. {
  6311. name: "Macro",
  6312. height: math.unit(2.2, "solarradii")
  6313. },
  6314. {
  6315. name: "Teramacro",
  6316. height: math.unit(1.2, "galaxies")
  6317. },
  6318. {
  6319. name: "Omegamacro",
  6320. height: math.unit(200, "universes")
  6321. },
  6322. ]
  6323. ))
  6324. characterMakers.push(() => makeCharacter(
  6325. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  6326. {
  6327. front: {
  6328. height: math.unit(6 + 1 / 6, "feet"),
  6329. weight: math.unit(178, "lbs"),
  6330. name: "Front",
  6331. image: {
  6332. source: "./media/characters/guy/front.svg"
  6333. }
  6334. }
  6335. },
  6336. [
  6337. {
  6338. name: "Normal",
  6339. height: math.unit(6 + 1 / 6, "feet"),
  6340. default: true
  6341. },
  6342. {
  6343. name: "Large",
  6344. height: math.unit(25 + 7 / 12, "feet")
  6345. },
  6346. {
  6347. name: "Macro",
  6348. height: math.unit(60 + 9 / 12, "feet")
  6349. },
  6350. {
  6351. name: "Macro+",
  6352. height: math.unit(246, "feet")
  6353. },
  6354. {
  6355. name: "Macro++",
  6356. height: math.unit(878, "feet")
  6357. }
  6358. ]
  6359. ))
  6360. characterMakers.push(() => makeCharacter(
  6361. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  6362. {
  6363. front: {
  6364. height: math.unit(9, "feet"),
  6365. weight: math.unit(800, "lbs"),
  6366. name: "Front",
  6367. image: {
  6368. source: "./media/characters/tiberius/front.svg",
  6369. extra: 2295 / 2071
  6370. }
  6371. },
  6372. back: {
  6373. height: math.unit(9, "feet"),
  6374. weight: math.unit(800, "lbs"),
  6375. name: "Back",
  6376. image: {
  6377. source: "./media/characters/tiberius/back.svg",
  6378. extra: 2373 / 2160
  6379. }
  6380. },
  6381. },
  6382. [
  6383. {
  6384. name: "Normal",
  6385. height: math.unit(9, "feet"),
  6386. default: true
  6387. }
  6388. ]
  6389. ))
  6390. characterMakers.push(() => makeCharacter(
  6391. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  6392. {
  6393. front: {
  6394. height: math.unit(6, "feet"),
  6395. weight: math.unit(600, "lbs"),
  6396. name: "Front",
  6397. image: {
  6398. source: "./media/characters/surgo/front.svg",
  6399. extra: 3591 / 2227
  6400. }
  6401. },
  6402. back: {
  6403. height: math.unit(6, "feet"),
  6404. weight: math.unit(600, "lbs"),
  6405. name: "Back",
  6406. image: {
  6407. source: "./media/characters/surgo/back.svg",
  6408. extra: 3557 / 2228
  6409. }
  6410. },
  6411. laying: {
  6412. height: math.unit(6 * 0.85, "feet"),
  6413. weight: math.unit(600, "lbs"),
  6414. name: "Laying",
  6415. image: {
  6416. source: "./media/characters/surgo/laying.svg"
  6417. }
  6418. },
  6419. },
  6420. [
  6421. {
  6422. name: "Normal",
  6423. height: math.unit(6, "feet"),
  6424. default: true
  6425. }
  6426. ]
  6427. ))
  6428. characterMakers.push(() => makeCharacter(
  6429. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  6430. {
  6431. side: {
  6432. height: math.unit(6, "feet"),
  6433. weight: math.unit(150, "lbs"),
  6434. name: "Side",
  6435. image: {
  6436. source: "./media/characters/cibus/side.svg",
  6437. extra: 800 / 400
  6438. }
  6439. },
  6440. },
  6441. [
  6442. {
  6443. name: "Normal",
  6444. height: math.unit(6, "feet"),
  6445. default: true
  6446. }
  6447. ]
  6448. ))
  6449. characterMakers.push(() => makeCharacter(
  6450. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  6451. {
  6452. front: {
  6453. height: math.unit(6, "feet"),
  6454. weight: math.unit(240, "lbs"),
  6455. name: "Front",
  6456. image: {
  6457. source: "./media/characters/nibbles/front.svg"
  6458. }
  6459. },
  6460. side: {
  6461. height: math.unit(6, "feet"),
  6462. weight: math.unit(240, "lbs"),
  6463. name: "Side",
  6464. image: {
  6465. source: "./media/characters/nibbles/side.svg"
  6466. }
  6467. },
  6468. },
  6469. [
  6470. {
  6471. name: "Normal",
  6472. height: math.unit(9, "feet"),
  6473. default: true
  6474. }
  6475. ]
  6476. ))
  6477. characterMakers.push(() => makeCharacter(
  6478. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  6479. {
  6480. side: {
  6481. height: math.unit(5 + 1 / 6, "feet"),
  6482. weight: math.unit(130, "lbs"),
  6483. name: "Side",
  6484. image: {
  6485. source: "./media/characters/rikky/side.svg",
  6486. extra: 851 / 801
  6487. }
  6488. },
  6489. },
  6490. [
  6491. {
  6492. name: "Normal",
  6493. height: math.unit(5 + 1 / 6, "feet")
  6494. },
  6495. {
  6496. name: "Macro",
  6497. height: math.unit(152, "feet"),
  6498. default: true
  6499. },
  6500. {
  6501. name: "Megamacro",
  6502. height: math.unit(7, "miles")
  6503. }
  6504. ]
  6505. ))
  6506. characterMakers.push(() => makeCharacter(
  6507. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  6508. {
  6509. side: {
  6510. height: math.unit(370, "cm"),
  6511. weight: math.unit(350, "lbs"),
  6512. name: "Side",
  6513. image: {
  6514. source: "./media/characters/malfressa/side.svg"
  6515. }
  6516. },
  6517. walking: {
  6518. height: math.unit(370, "cm"),
  6519. weight: math.unit(350, "lbs"),
  6520. name: "Walking",
  6521. image: {
  6522. source: "./media/characters/malfressa/walking.svg"
  6523. }
  6524. },
  6525. feral: {
  6526. height: math.unit(2500, "cm"),
  6527. weight: math.unit(100000, "lbs"),
  6528. name: "Feral",
  6529. image: {
  6530. source: "./media/characters/malfressa/feral.svg",
  6531. extra: 2108 / 837,
  6532. bottom: 0.02
  6533. }
  6534. },
  6535. },
  6536. [
  6537. {
  6538. name: "Normal",
  6539. height: math.unit(370, "cm")
  6540. },
  6541. {
  6542. name: "Macro",
  6543. height: math.unit(300, "meters"),
  6544. default: true
  6545. }
  6546. ]
  6547. ))
  6548. characterMakers.push(() => makeCharacter(
  6549. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  6550. {
  6551. front: {
  6552. height: math.unit(6, "feet"),
  6553. weight: math.unit(60, "kg"),
  6554. name: "Front",
  6555. image: {
  6556. source: "./media/characters/jaro/front.svg",
  6557. extra: 845/817,
  6558. bottom: 45/890
  6559. }
  6560. },
  6561. back: {
  6562. height: math.unit(6, "feet"),
  6563. weight: math.unit(60, "kg"),
  6564. name: "Back",
  6565. image: {
  6566. source: "./media/characters/jaro/back.svg",
  6567. extra: 847/817,
  6568. bottom: 34/881
  6569. }
  6570. },
  6571. },
  6572. [
  6573. {
  6574. name: "Micro",
  6575. height: math.unit(7, "inches")
  6576. },
  6577. {
  6578. name: "Normal",
  6579. height: math.unit(5.5, "feet"),
  6580. default: true
  6581. },
  6582. {
  6583. name: "Minimacro",
  6584. height: math.unit(20, "feet")
  6585. },
  6586. {
  6587. name: "Macro",
  6588. height: math.unit(200, "meters")
  6589. }
  6590. ]
  6591. ))
  6592. characterMakers.push(() => makeCharacter(
  6593. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  6594. {
  6595. front: {
  6596. height: math.unit(6, "feet"),
  6597. weight: math.unit(195, "lb"),
  6598. name: "Front",
  6599. image: {
  6600. source: "./media/characters/rogue/front.svg"
  6601. }
  6602. },
  6603. },
  6604. [
  6605. {
  6606. name: "Macro",
  6607. height: math.unit(90, "feet"),
  6608. default: true
  6609. },
  6610. ]
  6611. ))
  6612. characterMakers.push(() => makeCharacter(
  6613. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  6614. {
  6615. standing: {
  6616. height: math.unit(5 + 8 / 12, "feet"),
  6617. weight: math.unit(140, "lb"),
  6618. name: "Standing",
  6619. image: {
  6620. source: "./media/characters/piper/standing.svg",
  6621. extra: 1440/1284,
  6622. bottom: 66/1506
  6623. }
  6624. },
  6625. running: {
  6626. height: math.unit(5 + 8 / 12, "feet"),
  6627. weight: math.unit(140, "lb"),
  6628. name: "Running",
  6629. image: {
  6630. source: "./media/characters/piper/running.svg",
  6631. extra: 3948/3655,
  6632. bottom: 0/3948
  6633. }
  6634. },
  6635. sole: {
  6636. height: math.unit(0.81, "feet"),
  6637. weight: math.unit(2, "kg"),
  6638. name: "Sole",
  6639. image: {
  6640. source: "./media/characters/piper/sole.svg"
  6641. }
  6642. },
  6643. nipple: {
  6644. height: math.unit(0.25, "feet"),
  6645. weight: math.unit(1.5, "lb"),
  6646. name: "Nipple",
  6647. image: {
  6648. source: "./media/characters/piper/nipple.svg"
  6649. }
  6650. },
  6651. head: {
  6652. height: math.unit(1.1, "feet"),
  6653. name: "Head",
  6654. image: {
  6655. source: "./media/characters/piper/head.svg"
  6656. }
  6657. },
  6658. },
  6659. [
  6660. {
  6661. name: "Micro",
  6662. height: math.unit(2, "inches")
  6663. },
  6664. {
  6665. name: "Normal",
  6666. height: math.unit(5 + 8 / 12, "feet")
  6667. },
  6668. {
  6669. name: "Macro",
  6670. height: math.unit(250, "feet"),
  6671. default: true
  6672. },
  6673. {
  6674. name: "Megamacro",
  6675. height: math.unit(7, "miles")
  6676. },
  6677. ]
  6678. ))
  6679. characterMakers.push(() => makeCharacter(
  6680. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  6681. {
  6682. front: {
  6683. height: math.unit(6, "feet"),
  6684. weight: math.unit(220, "lb"),
  6685. name: "Front",
  6686. image: {
  6687. source: "./media/characters/gemini/front.svg"
  6688. }
  6689. },
  6690. back: {
  6691. height: math.unit(6, "feet"),
  6692. weight: math.unit(220, "lb"),
  6693. name: "Back",
  6694. image: {
  6695. source: "./media/characters/gemini/back.svg"
  6696. }
  6697. },
  6698. kneeling: {
  6699. height: math.unit(6 / 1.5, "feet"),
  6700. weight: math.unit(220, "lb"),
  6701. name: "Kneeling",
  6702. image: {
  6703. source: "./media/characters/gemini/kneeling.svg",
  6704. bottom: 0.02
  6705. }
  6706. },
  6707. },
  6708. [
  6709. {
  6710. name: "Macro",
  6711. height: math.unit(300, "meters"),
  6712. default: true
  6713. },
  6714. {
  6715. name: "Megamacro",
  6716. height: math.unit(6900, "meters")
  6717. },
  6718. ]
  6719. ))
  6720. characterMakers.push(() => makeCharacter(
  6721. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6722. {
  6723. anthro: {
  6724. height: math.unit(2.35, "meters"),
  6725. weight: math.unit(73, "kg"),
  6726. name: "Anthro",
  6727. image: {
  6728. source: "./media/characters/alicia/anthro.svg",
  6729. extra: 2571 / 2385,
  6730. bottom: 75 / 2648
  6731. }
  6732. },
  6733. paw: {
  6734. height: math.unit(1.32, "feet"),
  6735. name: "Paw",
  6736. image: {
  6737. source: "./media/characters/alicia/paw.svg"
  6738. }
  6739. },
  6740. feral: {
  6741. height: math.unit(1.69, "meters"),
  6742. weight: math.unit(73, "kg"),
  6743. name: "Feral",
  6744. image: {
  6745. source: "./media/characters/alicia/feral.svg",
  6746. extra: 2123 / 1715,
  6747. bottom: 222 / 2349
  6748. }
  6749. },
  6750. },
  6751. [
  6752. {
  6753. name: "Normal",
  6754. height: math.unit(2.35, "meters")
  6755. },
  6756. {
  6757. name: "Macro",
  6758. height: math.unit(60, "meters"),
  6759. default: true
  6760. },
  6761. {
  6762. name: "Megamacro",
  6763. height: math.unit(10000, "kilometers")
  6764. },
  6765. ]
  6766. ))
  6767. characterMakers.push(() => makeCharacter(
  6768. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6769. {
  6770. front: {
  6771. height: math.unit(7, "feet"),
  6772. weight: math.unit(250, "lbs"),
  6773. name: "Front",
  6774. image: {
  6775. source: "./media/characters/archy/front.svg"
  6776. }
  6777. }
  6778. },
  6779. [
  6780. {
  6781. name: "Micro",
  6782. height: math.unit(1, "inch")
  6783. },
  6784. {
  6785. name: "Shorty",
  6786. height: math.unit(5, "feet")
  6787. },
  6788. {
  6789. name: "Normal",
  6790. height: math.unit(7, "feet")
  6791. },
  6792. {
  6793. name: "Macro",
  6794. height: math.unit(600, "meters"),
  6795. default: true
  6796. },
  6797. {
  6798. name: "Megamacro",
  6799. height: math.unit(1, "mile")
  6800. },
  6801. ]
  6802. ))
  6803. characterMakers.push(() => makeCharacter(
  6804. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6805. {
  6806. front: {
  6807. height: math.unit(1.65, "meters"),
  6808. weight: math.unit(74, "kg"),
  6809. name: "Front",
  6810. image: {
  6811. source: "./media/characters/berri/front.svg",
  6812. extra: 857 / 837,
  6813. bottom: 18 / 877
  6814. }
  6815. },
  6816. bum: {
  6817. height: math.unit(1.46, "feet"),
  6818. name: "Bum",
  6819. image: {
  6820. source: "./media/characters/berri/bum.svg"
  6821. }
  6822. },
  6823. mouth: {
  6824. height: math.unit(0.44, "feet"),
  6825. name: "Mouth",
  6826. image: {
  6827. source: "./media/characters/berri/mouth.svg"
  6828. }
  6829. },
  6830. paw: {
  6831. height: math.unit(0.826, "feet"),
  6832. name: "Paw",
  6833. image: {
  6834. source: "./media/characters/berri/paw.svg"
  6835. }
  6836. },
  6837. },
  6838. [
  6839. {
  6840. name: "Normal",
  6841. height: math.unit(1.65, "meters")
  6842. },
  6843. {
  6844. name: "Macro",
  6845. height: math.unit(60, "m"),
  6846. default: true
  6847. },
  6848. {
  6849. name: "Megamacro",
  6850. height: math.unit(9.213, "km")
  6851. },
  6852. {
  6853. name: "Planet Eater",
  6854. height: math.unit(489, "megameters")
  6855. },
  6856. {
  6857. name: "Teramacro",
  6858. height: math.unit(2471635000000, "meters")
  6859. },
  6860. {
  6861. name: "Examacro",
  6862. height: math.unit(8.0624e+26, "meters")
  6863. }
  6864. ]
  6865. ))
  6866. characterMakers.push(() => makeCharacter(
  6867. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  6868. {
  6869. front: {
  6870. height: math.unit(1.72, "meters"),
  6871. weight: math.unit(68, "kg"),
  6872. name: "Front",
  6873. image: {
  6874. source: "./media/characters/lexi/front.svg"
  6875. }
  6876. }
  6877. },
  6878. [
  6879. {
  6880. name: "Very Smol",
  6881. height: math.unit(10, "mm")
  6882. },
  6883. {
  6884. name: "Micro",
  6885. height: math.unit(6.8, "cm"),
  6886. default: true
  6887. },
  6888. {
  6889. name: "Normal",
  6890. height: math.unit(1.72, "m")
  6891. }
  6892. ]
  6893. ))
  6894. characterMakers.push(() => makeCharacter(
  6895. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  6896. {
  6897. front: {
  6898. height: math.unit(1.69, "meters"),
  6899. weight: math.unit(68, "kg"),
  6900. name: "Front",
  6901. image: {
  6902. source: "./media/characters/martin/front.svg",
  6903. extra: 596 / 581
  6904. }
  6905. }
  6906. },
  6907. [
  6908. {
  6909. name: "Micro",
  6910. height: math.unit(6.85, "cm"),
  6911. default: true
  6912. },
  6913. {
  6914. name: "Normal",
  6915. height: math.unit(1.69, "m")
  6916. }
  6917. ]
  6918. ))
  6919. characterMakers.push(() => makeCharacter(
  6920. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6921. {
  6922. front: {
  6923. height: math.unit(1.69, "meters"),
  6924. weight: math.unit(68, "kg"),
  6925. name: "Front",
  6926. image: {
  6927. source: "./media/characters/juno/front.svg"
  6928. }
  6929. }
  6930. },
  6931. [
  6932. {
  6933. name: "Micro",
  6934. height: math.unit(7, "cm")
  6935. },
  6936. {
  6937. name: "Normal",
  6938. height: math.unit(1.89, "m")
  6939. },
  6940. {
  6941. name: "Macro",
  6942. height: math.unit(353, "meters"),
  6943. default: true
  6944. }
  6945. ]
  6946. ))
  6947. characterMakers.push(() => makeCharacter(
  6948. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6949. {
  6950. front: {
  6951. height: math.unit(1.93, "meters"),
  6952. weight: math.unit(83, "kg"),
  6953. name: "Front",
  6954. image: {
  6955. source: "./media/characters/samantha/front.svg"
  6956. }
  6957. },
  6958. frontClothed: {
  6959. height: math.unit(1.93, "meters"),
  6960. weight: math.unit(83, "kg"),
  6961. name: "Front (Clothed)",
  6962. image: {
  6963. source: "./media/characters/samantha/front-clothed.svg"
  6964. }
  6965. },
  6966. back: {
  6967. height: math.unit(1.93, "meters"),
  6968. weight: math.unit(83, "kg"),
  6969. name: "Back",
  6970. image: {
  6971. source: "./media/characters/samantha/back.svg"
  6972. }
  6973. },
  6974. },
  6975. [
  6976. {
  6977. name: "Normal",
  6978. height: math.unit(1.93, "m")
  6979. },
  6980. {
  6981. name: "Macro",
  6982. height: math.unit(74, "meters"),
  6983. default: true
  6984. },
  6985. {
  6986. name: "Macro+",
  6987. height: math.unit(223, "meters"),
  6988. },
  6989. {
  6990. name: "Megamacro",
  6991. height: math.unit(8381, "meters"),
  6992. },
  6993. {
  6994. name: "Megamacro+",
  6995. height: math.unit(12000, "kilometers")
  6996. },
  6997. ]
  6998. ))
  6999. characterMakers.push(() => makeCharacter(
  7000. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  7001. {
  7002. front: {
  7003. height: math.unit(1.92, "meters"),
  7004. weight: math.unit(80, "kg"),
  7005. name: "Front",
  7006. image: {
  7007. source: "./media/characters/dr-clay/front.svg"
  7008. }
  7009. },
  7010. frontClothed: {
  7011. height: math.unit(1.92, "meters"),
  7012. weight: math.unit(80, "kg"),
  7013. name: "Front (Clothed)",
  7014. image: {
  7015. source: "./media/characters/dr-clay/front-clothed.svg"
  7016. }
  7017. }
  7018. },
  7019. [
  7020. {
  7021. name: "Normal",
  7022. height: math.unit(1.92, "m")
  7023. },
  7024. {
  7025. name: "Macro",
  7026. height: math.unit(214, "meters"),
  7027. default: true
  7028. },
  7029. {
  7030. name: "Macro+",
  7031. height: math.unit(12.237, "meters"),
  7032. },
  7033. {
  7034. name: "Megamacro",
  7035. height: math.unit(557, "megameters"),
  7036. },
  7037. {
  7038. name: "Unimaginable",
  7039. height: math.unit(120e9, "lightyears")
  7040. },
  7041. ]
  7042. ))
  7043. characterMakers.push(() => makeCharacter(
  7044. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  7045. {
  7046. front: {
  7047. height: math.unit(2, "meters"),
  7048. weight: math.unit(80, "kg"),
  7049. name: "Front",
  7050. image: {
  7051. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  7052. }
  7053. }
  7054. },
  7055. [
  7056. {
  7057. name: "Teramacro",
  7058. height: math.unit(500000, "lightyears"),
  7059. default: true
  7060. },
  7061. ]
  7062. ))
  7063. characterMakers.push(() => makeCharacter(
  7064. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  7065. {
  7066. crux: {
  7067. height: math.unit(2, "meters"),
  7068. weight: math.unit(150, "kg"),
  7069. name: "Crux",
  7070. image: {
  7071. source: "./media/characters/vemus/crux.svg",
  7072. extra: 1074/936,
  7073. bottom: 23/1097
  7074. }
  7075. },
  7076. skunkTanuki: {
  7077. height: math.unit(2, "meters"),
  7078. weight: math.unit(150, "kg"),
  7079. name: "Skunk-Tanuki",
  7080. image: {
  7081. source: "./media/characters/vemus/skunk-tanuki.svg",
  7082. extra: 926/893,
  7083. bottom: 20/946
  7084. }
  7085. },
  7086. },
  7087. [
  7088. {
  7089. name: "Normal",
  7090. height: math.unit(3.75, "meters"),
  7091. default: true
  7092. },
  7093. {
  7094. name: "Big",
  7095. height: math.unit(8, "meters")
  7096. },
  7097. {
  7098. name: "Macro",
  7099. height: math.unit(100, "meters")
  7100. },
  7101. {
  7102. name: "Macro+",
  7103. height: math.unit(1500, "meters")
  7104. },
  7105. {
  7106. name: "Stellar",
  7107. height: math.unit(14e8, "meters")
  7108. },
  7109. ]
  7110. ))
  7111. characterMakers.push(() => makeCharacter(
  7112. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  7113. {
  7114. front: {
  7115. height: math.unit(2, "meters"),
  7116. weight: math.unit(70, "kg"),
  7117. name: "Front",
  7118. image: {
  7119. source: "./media/characters/beherit/front.svg",
  7120. extra: 1234/1109,
  7121. bottom: 55/1289
  7122. }
  7123. }
  7124. },
  7125. [
  7126. {
  7127. name: "Normal",
  7128. height: math.unit(6, "feet")
  7129. },
  7130. {
  7131. name: "Lorg",
  7132. height: math.unit(25, "feet"),
  7133. default: true
  7134. },
  7135. {
  7136. name: "Lorger",
  7137. height: math.unit(75, "feet")
  7138. },
  7139. {
  7140. name: "Macro",
  7141. height: math.unit(200, "meters")
  7142. },
  7143. ]
  7144. ))
  7145. characterMakers.push(() => makeCharacter(
  7146. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  7147. {
  7148. front: {
  7149. height: math.unit(2, "meters"),
  7150. weight: math.unit(150, "kg"),
  7151. name: "Front",
  7152. image: {
  7153. source: "./media/characters/everett/front.svg",
  7154. extra: 1017/866,
  7155. bottom: 86/1103
  7156. }
  7157. },
  7158. paw: {
  7159. height: math.unit(2 / 3.6, "meters"),
  7160. name: "Paw",
  7161. image: {
  7162. source: "./media/characters/everett/paw.svg"
  7163. }
  7164. },
  7165. },
  7166. [
  7167. {
  7168. name: "Normal",
  7169. height: math.unit(15, "feet"),
  7170. default: true
  7171. },
  7172. {
  7173. name: "Lorg",
  7174. height: math.unit(70, "feet"),
  7175. default: true
  7176. },
  7177. {
  7178. name: "Lorger",
  7179. height: math.unit(250, "feet")
  7180. },
  7181. {
  7182. name: "Macro",
  7183. height: math.unit(500, "meters")
  7184. },
  7185. ]
  7186. ))
  7187. characterMakers.push(() => makeCharacter(
  7188. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  7189. {
  7190. front: {
  7191. height: math.unit(2, "meters"),
  7192. weight: math.unit(86, "kg"),
  7193. name: "Front",
  7194. image: {
  7195. source: "./media/characters/rose/front.svg",
  7196. extra: 1785/1636,
  7197. bottom: 30/1815
  7198. },
  7199. form: "liom",
  7200. default: true
  7201. },
  7202. frontSporty: {
  7203. height: math.unit(2, "meters"),
  7204. weight: math.unit(86, "kg"),
  7205. name: "Front (Sporty)",
  7206. image: {
  7207. source: "./media/characters/rose/front-sporty.svg",
  7208. extra: 350/335,
  7209. bottom: 10/360
  7210. },
  7211. form: "liom"
  7212. },
  7213. frontAlt: {
  7214. height: math.unit(1.6, "meters"),
  7215. weight: math.unit(86, "kg"),
  7216. name: "Front (Alt)",
  7217. image: {
  7218. source: "./media/characters/rose/front-alt.svg",
  7219. extra: 299/283,
  7220. bottom: 3/302
  7221. },
  7222. form: "liom"
  7223. },
  7224. plush: {
  7225. height: math.unit(2, "meters"),
  7226. weight: math.unit(86/3, "kg"),
  7227. name: "Plush",
  7228. image: {
  7229. source: "./media/characters/rose/plush.svg",
  7230. extra: 361/337,
  7231. bottom: 11/372
  7232. },
  7233. form: "plush",
  7234. default: true
  7235. },
  7236. faeStanding: {
  7237. height: math.unit(10, "cm"),
  7238. weight: math.unit(10, "grams"),
  7239. name: "Standing",
  7240. image: {
  7241. source: "./media/characters/rose/fae-standing.svg",
  7242. extra: 1189/1060,
  7243. bottom: 27/1216
  7244. },
  7245. form: "fae",
  7246. default: true
  7247. },
  7248. faeSitting: {
  7249. height: math.unit(5, "cm"),
  7250. weight: math.unit(10, "grams"),
  7251. name: "Sitting",
  7252. image: {
  7253. source: "./media/characters/rose/fae-sitting.svg",
  7254. extra: 737/577,
  7255. bottom: 356/1093
  7256. },
  7257. form: "fae"
  7258. },
  7259. faePaw: {
  7260. height: math.unit(1.35, "cm"),
  7261. name: "Paw",
  7262. image: {
  7263. source: "./media/characters/rose/fae-paw.svg"
  7264. },
  7265. form: "fae"
  7266. },
  7267. },
  7268. [
  7269. {
  7270. name: "True Micro",
  7271. height: math.unit(9, "cm"),
  7272. form: "liom"
  7273. },
  7274. {
  7275. name: "Micro",
  7276. height: math.unit(16, "cm"),
  7277. form: "liom"
  7278. },
  7279. {
  7280. name: "Normal",
  7281. height: math.unit(1.85, "meters"),
  7282. default: true,
  7283. form: "liom"
  7284. },
  7285. {
  7286. name: "Mini-Macro",
  7287. height: math.unit(5, "meters"),
  7288. form: "liom"
  7289. },
  7290. {
  7291. name: "Macro",
  7292. height: math.unit(15, "meters"),
  7293. form: "liom"
  7294. },
  7295. {
  7296. name: "True Macro",
  7297. height: math.unit(40, "meters"),
  7298. form: "liom"
  7299. },
  7300. {
  7301. name: "City Scale",
  7302. height: math.unit(1, "km"),
  7303. form: "liom"
  7304. },
  7305. {
  7306. name: "Plushie",
  7307. height: math.unit(9, "cm"),
  7308. form: "plush",
  7309. default: true
  7310. },
  7311. {
  7312. name: "Fae",
  7313. height: math.unit(10, "cm"),
  7314. form: "fae",
  7315. default: true
  7316. },
  7317. ],
  7318. {
  7319. "liom": {
  7320. name: "Liom"
  7321. },
  7322. "plush": {
  7323. name: "Plush"
  7324. },
  7325. "fae": {
  7326. name: "Fae Fox",
  7327. default: true
  7328. }
  7329. }
  7330. ))
  7331. characterMakers.push(() => makeCharacter(
  7332. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  7333. {
  7334. front: {
  7335. height: math.unit(2, "meters"),
  7336. weight: math.unit(350, "lbs"),
  7337. name: "Front",
  7338. image: {
  7339. source: "./media/characters/regal/front.svg"
  7340. }
  7341. },
  7342. back: {
  7343. height: math.unit(2, "meters"),
  7344. weight: math.unit(350, "lbs"),
  7345. name: "Back",
  7346. image: {
  7347. source: "./media/characters/regal/back.svg"
  7348. }
  7349. },
  7350. },
  7351. [
  7352. {
  7353. name: "Macro",
  7354. height: math.unit(350, "feet"),
  7355. default: true
  7356. }
  7357. ]
  7358. ))
  7359. characterMakers.push(() => makeCharacter(
  7360. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  7361. {
  7362. front: {
  7363. height: math.unit(4 + 11 / 12, "feet"),
  7364. weight: math.unit(100, "lbs"),
  7365. name: "Front",
  7366. image: {
  7367. source: "./media/characters/opal/front.svg"
  7368. }
  7369. },
  7370. frontAlt: {
  7371. height: math.unit(4 + 11 / 12, "feet"),
  7372. weight: math.unit(100, "lbs"),
  7373. name: "Front (Alt)",
  7374. image: {
  7375. source: "./media/characters/opal/front-alt.svg"
  7376. }
  7377. },
  7378. },
  7379. [
  7380. {
  7381. name: "Small",
  7382. height: math.unit(4 + 11 / 12, "feet")
  7383. },
  7384. {
  7385. name: "Normal",
  7386. height: math.unit(20, "feet"),
  7387. default: true
  7388. },
  7389. {
  7390. name: "Macro",
  7391. height: math.unit(120, "feet")
  7392. },
  7393. {
  7394. name: "Megamacro",
  7395. height: math.unit(80, "miles")
  7396. },
  7397. {
  7398. name: "True Size",
  7399. height: math.unit(100000, "lightyears")
  7400. },
  7401. ]
  7402. ))
  7403. characterMakers.push(() => makeCharacter(
  7404. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  7405. {
  7406. front: {
  7407. height: math.unit(6, "feet"),
  7408. weight: math.unit(200, "lbs"),
  7409. name: "Front",
  7410. image: {
  7411. source: "./media/characters/vector-wuff/front.svg"
  7412. }
  7413. }
  7414. },
  7415. [
  7416. {
  7417. name: "Normal",
  7418. height: math.unit(2.8, "meters")
  7419. },
  7420. {
  7421. name: "Macro",
  7422. height: math.unit(450, "meters"),
  7423. default: true
  7424. },
  7425. {
  7426. name: "Megamacro",
  7427. height: math.unit(15, "kilometers")
  7428. }
  7429. ]
  7430. ))
  7431. characterMakers.push(() => makeCharacter(
  7432. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  7433. {
  7434. front: {
  7435. height: math.unit(6, "feet"),
  7436. weight: math.unit(256, "lbs"),
  7437. name: "Front",
  7438. image: {
  7439. source: "./media/characters/dannik/front.svg"
  7440. }
  7441. }
  7442. },
  7443. [
  7444. {
  7445. name: "Macro",
  7446. height: math.unit(69.57, "meters"),
  7447. default: true
  7448. },
  7449. ]
  7450. ))
  7451. characterMakers.push(() => makeCharacter(
  7452. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  7453. {
  7454. front: {
  7455. height: math.unit(6, "feet"),
  7456. weight: math.unit(120, "lbs"),
  7457. name: "Front",
  7458. image: {
  7459. source: "./media/characters/azura-saharah/front.svg"
  7460. }
  7461. },
  7462. back: {
  7463. height: math.unit(6, "feet"),
  7464. weight: math.unit(120, "lbs"),
  7465. name: "Back",
  7466. image: {
  7467. source: "./media/characters/azura-saharah/back.svg"
  7468. }
  7469. },
  7470. },
  7471. [
  7472. {
  7473. name: "Macro",
  7474. height: math.unit(100, "feet"),
  7475. default: true
  7476. },
  7477. ]
  7478. ))
  7479. characterMakers.push(() => makeCharacter(
  7480. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  7481. {
  7482. side: {
  7483. height: math.unit(5 + 4 / 12, "feet"),
  7484. weight: math.unit(163, "lbs"),
  7485. name: "Side",
  7486. image: {
  7487. source: "./media/characters/kennedy/side.svg"
  7488. }
  7489. }
  7490. },
  7491. [
  7492. {
  7493. name: "Standard Doggo",
  7494. height: math.unit(5 + 4 / 12, "feet")
  7495. },
  7496. {
  7497. name: "Big Doggo",
  7498. height: math.unit(25 + 3 / 12, "feet"),
  7499. default: true
  7500. },
  7501. ]
  7502. ))
  7503. characterMakers.push(() => makeCharacter(
  7504. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  7505. {
  7506. front: {
  7507. height: math.unit(5 + 5/12, "feet"),
  7508. weight: math.unit(100, "lbs"),
  7509. name: "Front",
  7510. image: {
  7511. source: "./media/characters/odios-de-lunar/front.svg",
  7512. extra: 1468/1323,
  7513. bottom: 22/1490
  7514. }
  7515. }
  7516. },
  7517. [
  7518. {
  7519. name: "Micro",
  7520. height: math.unit(3, "inches")
  7521. },
  7522. {
  7523. name: "Normal",
  7524. height: math.unit(5.5, "feet"),
  7525. default: true
  7526. },
  7527. {
  7528. name: "Macro",
  7529. height: math.unit(100, "feet")
  7530. },
  7531. ]
  7532. ))
  7533. characterMakers.push(() => makeCharacter(
  7534. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  7535. {
  7536. back: {
  7537. height: math.unit(6, "feet"),
  7538. weight: math.unit(220, "lbs"),
  7539. name: "Back",
  7540. image: {
  7541. source: "./media/characters/mandake/back.svg"
  7542. }
  7543. }
  7544. },
  7545. [
  7546. {
  7547. name: "Normal",
  7548. height: math.unit(7, "feet"),
  7549. default: true
  7550. },
  7551. {
  7552. name: "Macro",
  7553. height: math.unit(78, "feet")
  7554. },
  7555. {
  7556. name: "Macro+",
  7557. height: math.unit(300, "meters")
  7558. },
  7559. {
  7560. name: "Macro++",
  7561. height: math.unit(2400, "feet")
  7562. },
  7563. {
  7564. name: "Megamacro",
  7565. height: math.unit(5167, "meters")
  7566. },
  7567. {
  7568. name: "Gigamacro",
  7569. height: math.unit(41769, "miles")
  7570. },
  7571. ]
  7572. ))
  7573. characterMakers.push(() => makeCharacter(
  7574. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  7575. {
  7576. front: {
  7577. height: math.unit(6, "feet"),
  7578. weight: math.unit(120, "lbs"),
  7579. name: "Front",
  7580. image: {
  7581. source: "./media/characters/yozey/front.svg"
  7582. }
  7583. },
  7584. frontAlt: {
  7585. height: math.unit(6, "feet"),
  7586. weight: math.unit(120, "lbs"),
  7587. name: "Front (Alt)",
  7588. image: {
  7589. source: "./media/characters/yozey/front-alt.svg"
  7590. }
  7591. },
  7592. side: {
  7593. height: math.unit(6, "feet"),
  7594. weight: math.unit(120, "lbs"),
  7595. name: "Side",
  7596. image: {
  7597. source: "./media/characters/yozey/side.svg"
  7598. }
  7599. },
  7600. },
  7601. [
  7602. {
  7603. name: "Micro",
  7604. height: math.unit(3, "inches"),
  7605. default: true
  7606. },
  7607. {
  7608. name: "Normal",
  7609. height: math.unit(6, "feet")
  7610. }
  7611. ]
  7612. ))
  7613. characterMakers.push(() => makeCharacter(
  7614. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  7615. {
  7616. front: {
  7617. height: math.unit(6, "feet"),
  7618. weight: math.unit(103, "lbs"),
  7619. name: "Front",
  7620. image: {
  7621. source: "./media/characters/valeska-voss/front.svg"
  7622. }
  7623. }
  7624. },
  7625. [
  7626. {
  7627. name: "Mini-Sized Sub",
  7628. height: math.unit(3.1, "inches")
  7629. },
  7630. {
  7631. name: "Mid-Sized Sub",
  7632. height: math.unit(6.2, "inches")
  7633. },
  7634. {
  7635. name: "Full-Sized Sub",
  7636. height: math.unit(9.3, "inches")
  7637. },
  7638. {
  7639. name: "Normal",
  7640. height: math.unit(5 + 2 / 12, "foot"),
  7641. default: true
  7642. },
  7643. ]
  7644. ))
  7645. characterMakers.push(() => makeCharacter(
  7646. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  7647. {
  7648. front: {
  7649. height: math.unit(6, "feet"),
  7650. weight: math.unit(160, "lbs"),
  7651. name: "Front",
  7652. image: {
  7653. source: "./media/characters/gene-zeta/front.svg",
  7654. extra: 3006 / 2826,
  7655. bottom: 182 / 3188
  7656. }
  7657. }
  7658. },
  7659. [
  7660. {
  7661. name: "Micro",
  7662. height: math.unit(6, "inches")
  7663. },
  7664. {
  7665. name: "Normal",
  7666. height: math.unit(5 + 11 / 12, "foot"),
  7667. default: true
  7668. },
  7669. {
  7670. name: "Macro",
  7671. height: math.unit(140, "feet")
  7672. },
  7673. {
  7674. name: "Supercharged",
  7675. height: math.unit(2500, "feet")
  7676. },
  7677. ]
  7678. ))
  7679. characterMakers.push(() => makeCharacter(
  7680. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  7681. {
  7682. front: {
  7683. height: math.unit(6, "feet"),
  7684. weight: math.unit(350, "lbs"),
  7685. name: "Front",
  7686. image: {
  7687. source: "./media/characters/razinox/front.svg",
  7688. extra: 1686 / 1548,
  7689. bottom: 28.2 / 1868
  7690. }
  7691. },
  7692. back: {
  7693. height: math.unit(6, "feet"),
  7694. weight: math.unit(350, "lbs"),
  7695. name: "Back",
  7696. image: {
  7697. source: "./media/characters/razinox/back.svg",
  7698. extra: 1660 / 1590,
  7699. bottom: 15 / 1665
  7700. }
  7701. },
  7702. },
  7703. [
  7704. {
  7705. name: "Normal",
  7706. height: math.unit(10 + 8 / 12, "foot")
  7707. },
  7708. {
  7709. name: "Minimacro",
  7710. height: math.unit(15, "foot")
  7711. },
  7712. {
  7713. name: "Macro",
  7714. height: math.unit(60, "foot"),
  7715. default: true
  7716. },
  7717. {
  7718. name: "Megamacro",
  7719. height: math.unit(5, "miles")
  7720. },
  7721. {
  7722. name: "Gigamacro",
  7723. height: math.unit(6000, "miles")
  7724. },
  7725. ]
  7726. ))
  7727. characterMakers.push(() => makeCharacter(
  7728. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  7729. {
  7730. front: {
  7731. height: math.unit(6, "feet"),
  7732. weight: math.unit(150, "lbs"),
  7733. name: "Front",
  7734. image: {
  7735. source: "./media/characters/cobalt/front.svg"
  7736. }
  7737. }
  7738. },
  7739. [
  7740. {
  7741. name: "Normal",
  7742. height: math.unit(8 + 1 / 12, "foot")
  7743. },
  7744. {
  7745. name: "Macro",
  7746. height: math.unit(111, "foot"),
  7747. default: true
  7748. },
  7749. {
  7750. name: "Supracosmic",
  7751. height: math.unit(1e42, "feet")
  7752. },
  7753. ]
  7754. ))
  7755. characterMakers.push(() => makeCharacter(
  7756. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  7757. {
  7758. front: {
  7759. height: math.unit(5, "inches"),
  7760. name: "Front",
  7761. image: {
  7762. source: "./media/characters/amanda/front.svg",
  7763. extra: 926/791,
  7764. bottom: 38/964
  7765. }
  7766. },
  7767. back: {
  7768. height: math.unit(5, "inches"),
  7769. name: "Back",
  7770. image: {
  7771. source: "./media/characters/amanda/back.svg",
  7772. extra: 909/805,
  7773. bottom: 43/952
  7774. }
  7775. },
  7776. },
  7777. [
  7778. {
  7779. name: "Micro",
  7780. height: math.unit(5, "inches"),
  7781. default: true
  7782. },
  7783. ]
  7784. ))
  7785. characterMakers.push(() => makeCharacter(
  7786. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  7787. {
  7788. front: {
  7789. height: math.unit(2.75, "meters"),
  7790. weight: math.unit(1200, "lb"),
  7791. name: "Front",
  7792. image: {
  7793. source: "./media/characters/teal/front.svg",
  7794. extra: 2463 / 2320,
  7795. bottom: 166 / 2629
  7796. }
  7797. },
  7798. back: {
  7799. height: math.unit(2.75, "meters"),
  7800. weight: math.unit(1200, "lb"),
  7801. name: "Back",
  7802. image: {
  7803. source: "./media/characters/teal/back.svg",
  7804. extra: 2580 / 2489,
  7805. bottom: 151 / 2731
  7806. }
  7807. },
  7808. sitting: {
  7809. height: math.unit(1.9, "meters"),
  7810. weight: math.unit(1200, "lb"),
  7811. name: "Sitting",
  7812. image: {
  7813. source: "./media/characters/teal/sitting.svg",
  7814. extra: 623 / 590,
  7815. bottom: 121 / 744
  7816. }
  7817. },
  7818. standing: {
  7819. height: math.unit(2.75, "meters"),
  7820. weight: math.unit(1200, "lb"),
  7821. name: "Standing",
  7822. image: {
  7823. source: "./media/characters/teal/standing.svg",
  7824. extra: 923 / 893,
  7825. bottom: 60 / 983
  7826. }
  7827. },
  7828. stretching: {
  7829. height: math.unit(3.65, "meters"),
  7830. weight: math.unit(1200, "lb"),
  7831. name: "Stretching",
  7832. image: {
  7833. source: "./media/characters/teal/stretching.svg",
  7834. extra: 1276 / 1244,
  7835. bottom: 0 / 1276
  7836. }
  7837. },
  7838. legged: {
  7839. height: math.unit(1.3, "meters"),
  7840. weight: math.unit(100, "lb"),
  7841. name: "Legged",
  7842. image: {
  7843. source: "./media/characters/teal/legged.svg",
  7844. extra: 462 / 437,
  7845. bottom: 24 / 486
  7846. }
  7847. },
  7848. naga: {
  7849. height: math.unit(5.4, "meters"),
  7850. weight: math.unit(4000, "lb"),
  7851. name: "Naga",
  7852. image: {
  7853. source: "./media/characters/teal/naga.svg",
  7854. extra: 1902 / 1858,
  7855. bottom: 0 / 1902
  7856. }
  7857. },
  7858. hand: {
  7859. height: math.unit(0.52, "meters"),
  7860. name: "Hand",
  7861. image: {
  7862. source: "./media/characters/teal/hand.svg"
  7863. }
  7864. },
  7865. maw: {
  7866. height: math.unit(0.43, "meters"),
  7867. name: "Maw",
  7868. image: {
  7869. source: "./media/characters/teal/maw.svg"
  7870. }
  7871. },
  7872. slit: {
  7873. height: math.unit(0.25, "meters"),
  7874. name: "Slit",
  7875. image: {
  7876. source: "./media/characters/teal/slit.svg"
  7877. }
  7878. },
  7879. },
  7880. [
  7881. {
  7882. name: "Normal",
  7883. height: math.unit(2.75, "meters"),
  7884. default: true
  7885. },
  7886. {
  7887. name: "Macro",
  7888. height: math.unit(300, "feet")
  7889. },
  7890. {
  7891. name: "Macro+",
  7892. height: math.unit(2000, "feet")
  7893. },
  7894. ]
  7895. ))
  7896. characterMakers.push(() => makeCharacter(
  7897. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  7898. {
  7899. frontCat: {
  7900. height: math.unit(6, "feet"),
  7901. weight: math.unit(180, "lbs"),
  7902. name: "Front (Cat)",
  7903. image: {
  7904. source: "./media/characters/ravin-amulet/front-cat.svg"
  7905. }
  7906. },
  7907. frontCatAlt: {
  7908. height: math.unit(6, "feet"),
  7909. weight: math.unit(180, "lbs"),
  7910. name: "Front (Alt, Cat)",
  7911. image: {
  7912. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  7913. }
  7914. },
  7915. frontWerewolf: {
  7916. height: math.unit(6 * 1.2, "feet"),
  7917. weight: math.unit(225, "lbs"),
  7918. name: "Front (Werewolf)",
  7919. image: {
  7920. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  7921. }
  7922. },
  7923. backWerewolf: {
  7924. height: math.unit(6 * 1.2, "feet"),
  7925. weight: math.unit(225, "lbs"),
  7926. name: "Back (Werewolf)",
  7927. image: {
  7928. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  7929. }
  7930. },
  7931. },
  7932. [
  7933. {
  7934. name: "Nano",
  7935. height: math.unit(1, "micrometer")
  7936. },
  7937. {
  7938. name: "Micro",
  7939. height: math.unit(1, "inch")
  7940. },
  7941. {
  7942. name: "Normal",
  7943. height: math.unit(6, "feet"),
  7944. default: true
  7945. },
  7946. {
  7947. name: "Macro",
  7948. height: math.unit(60, "feet")
  7949. }
  7950. ]
  7951. ))
  7952. characterMakers.push(() => makeCharacter(
  7953. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  7954. {
  7955. front: {
  7956. height: math.unit(6, "feet"),
  7957. weight: math.unit(165, "lbs"),
  7958. name: "Front",
  7959. image: {
  7960. source: "./media/characters/fluoresce/front.svg"
  7961. }
  7962. }
  7963. },
  7964. [
  7965. {
  7966. name: "Micro",
  7967. height: math.unit(6, "cm")
  7968. },
  7969. {
  7970. name: "Normal",
  7971. height: math.unit(5 + 7 / 12, "feet"),
  7972. default: true
  7973. },
  7974. {
  7975. name: "Macro",
  7976. height: math.unit(56, "feet")
  7977. },
  7978. {
  7979. name: "Megamacro",
  7980. height: math.unit(1.9, "miles")
  7981. },
  7982. ]
  7983. ))
  7984. characterMakers.push(() => makeCharacter(
  7985. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  7986. {
  7987. front: {
  7988. height: math.unit(9 + 6 / 12, "feet"),
  7989. weight: math.unit(523, "lbs"),
  7990. name: "Side",
  7991. image: {
  7992. source: "./media/characters/aurora/side.svg"
  7993. }
  7994. }
  7995. },
  7996. [
  7997. {
  7998. name: "Normal",
  7999. height: math.unit(9 + 6 / 12, "feet")
  8000. },
  8001. {
  8002. name: "Macro",
  8003. height: math.unit(96, "feet"),
  8004. default: true
  8005. },
  8006. {
  8007. name: "Macro+",
  8008. height: math.unit(243, "feet")
  8009. },
  8010. ]
  8011. ))
  8012. characterMakers.push(() => makeCharacter(
  8013. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  8014. {
  8015. front: {
  8016. height: math.unit(194, "cm"),
  8017. weight: math.unit(90, "kg"),
  8018. name: "Front",
  8019. image: {
  8020. source: "./media/characters/ranek/front.svg",
  8021. extra: 1862/1791,
  8022. bottom: 80/1942
  8023. }
  8024. },
  8025. back: {
  8026. height: math.unit(194, "cm"),
  8027. weight: math.unit(90, "kg"),
  8028. name: "Back",
  8029. image: {
  8030. source: "./media/characters/ranek/back.svg",
  8031. extra: 1853/1787,
  8032. bottom: 74/1927
  8033. }
  8034. },
  8035. feral: {
  8036. height: math.unit(30, "cm"),
  8037. weight: math.unit(1.6, "lbs"),
  8038. name: "Feral",
  8039. image: {
  8040. source: "./media/characters/ranek/feral.svg",
  8041. extra: 990/631,
  8042. bottom: 29/1019
  8043. }
  8044. },
  8045. },
  8046. [
  8047. {
  8048. name: "Normal",
  8049. height: math.unit(194, "cm"),
  8050. default: true
  8051. },
  8052. {
  8053. name: "Macro",
  8054. height: math.unit(100, "meters")
  8055. },
  8056. ]
  8057. ))
  8058. characterMakers.push(() => makeCharacter(
  8059. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  8060. {
  8061. front: {
  8062. height: math.unit(5 + 6 / 12, "feet"),
  8063. weight: math.unit(153, "lbs"),
  8064. name: "Front",
  8065. image: {
  8066. source: "./media/characters/andrew-cooper/front.svg"
  8067. }
  8068. },
  8069. },
  8070. [
  8071. {
  8072. name: "Nano",
  8073. height: math.unit(1, "mm")
  8074. },
  8075. {
  8076. name: "Micro",
  8077. height: math.unit(2, "inches")
  8078. },
  8079. {
  8080. name: "Normal",
  8081. height: math.unit(5 + 6 / 12, "feet"),
  8082. default: true
  8083. }
  8084. ]
  8085. ))
  8086. characterMakers.push(() => makeCharacter(
  8087. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  8088. {
  8089. front: {
  8090. height: math.unit(6, "feet"),
  8091. weight: math.unit(180, "lbs"),
  8092. name: "Front",
  8093. image: {
  8094. source: "./media/characters/akane-sato/front.svg",
  8095. extra: 1219 / 1140
  8096. }
  8097. },
  8098. back: {
  8099. height: math.unit(6, "feet"),
  8100. weight: math.unit(180, "lbs"),
  8101. name: "Back",
  8102. image: {
  8103. source: "./media/characters/akane-sato/back.svg",
  8104. extra: 1219 / 1170
  8105. }
  8106. },
  8107. },
  8108. [
  8109. {
  8110. name: "Normal",
  8111. height: math.unit(2.5, "meters")
  8112. },
  8113. {
  8114. name: "Macro",
  8115. height: math.unit(250, "meters"),
  8116. default: true
  8117. },
  8118. {
  8119. name: "Megamacro",
  8120. height: math.unit(25, "km")
  8121. },
  8122. ]
  8123. ))
  8124. characterMakers.push(() => makeCharacter(
  8125. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  8126. {
  8127. front: {
  8128. height: math.unit(6, "feet"),
  8129. weight: math.unit(65, "kg"),
  8130. name: "Front",
  8131. image: {
  8132. source: "./media/characters/rook/front.svg",
  8133. extra: 960 / 950
  8134. }
  8135. }
  8136. },
  8137. [
  8138. {
  8139. name: "Normal",
  8140. height: math.unit(8.8, "feet")
  8141. },
  8142. {
  8143. name: "Macro",
  8144. height: math.unit(88, "feet"),
  8145. default: true
  8146. },
  8147. {
  8148. name: "Megamacro",
  8149. height: math.unit(8, "miles")
  8150. },
  8151. ]
  8152. ))
  8153. characterMakers.push(() => makeCharacter(
  8154. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  8155. {
  8156. front: {
  8157. height: math.unit(12 + 2 / 12, "feet"),
  8158. weight: math.unit(808, "lbs"),
  8159. name: "Front",
  8160. image: {
  8161. source: "./media/characters/prodigy/front.svg"
  8162. }
  8163. }
  8164. },
  8165. [
  8166. {
  8167. name: "Normal",
  8168. height: math.unit(12 + 2 / 12, "feet"),
  8169. default: true
  8170. },
  8171. {
  8172. name: "Macro",
  8173. height: math.unit(143, "feet")
  8174. },
  8175. {
  8176. name: "Macro+",
  8177. height: math.unit(400, "feet")
  8178. },
  8179. ]
  8180. ))
  8181. characterMakers.push(() => makeCharacter(
  8182. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  8183. {
  8184. front: {
  8185. height: math.unit(6, "feet"),
  8186. weight: math.unit(225, "lbs"),
  8187. name: "Front",
  8188. image: {
  8189. source: "./media/characters/daniel/front.svg"
  8190. }
  8191. },
  8192. leaning: {
  8193. height: math.unit(6, "feet"),
  8194. weight: math.unit(225, "lbs"),
  8195. name: "Leaning",
  8196. image: {
  8197. source: "./media/characters/daniel/leaning.svg"
  8198. }
  8199. },
  8200. },
  8201. [
  8202. {
  8203. name: "Macro",
  8204. height: math.unit(1000, "feet"),
  8205. default: true
  8206. },
  8207. ]
  8208. ))
  8209. characterMakers.push(() => makeCharacter(
  8210. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  8211. {
  8212. front: {
  8213. height: math.unit(6, "feet"),
  8214. weight: math.unit(88, "lbs"),
  8215. name: "Front",
  8216. image: {
  8217. source: "./media/characters/chiros/front.svg",
  8218. extra: 306 / 226
  8219. }
  8220. },
  8221. side: {
  8222. height: math.unit(6, "feet"),
  8223. weight: math.unit(88, "lbs"),
  8224. name: "Side",
  8225. image: {
  8226. source: "./media/characters/chiros/side.svg",
  8227. extra: 306 / 226
  8228. }
  8229. },
  8230. },
  8231. [
  8232. {
  8233. name: "Normal",
  8234. height: math.unit(6, "cm"),
  8235. default: true
  8236. },
  8237. ]
  8238. ))
  8239. characterMakers.push(() => makeCharacter(
  8240. { name: "Selka", species: ["snake"], tags: ["naga"] },
  8241. {
  8242. front: {
  8243. height: math.unit(6, "feet"),
  8244. weight: math.unit(100, "lbs"),
  8245. name: "Front",
  8246. image: {
  8247. source: "./media/characters/selka/front.svg",
  8248. extra: 947 / 887
  8249. }
  8250. }
  8251. },
  8252. [
  8253. {
  8254. name: "Normal",
  8255. height: math.unit(5, "cm"),
  8256. default: true
  8257. },
  8258. ]
  8259. ))
  8260. characterMakers.push(() => makeCharacter(
  8261. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  8262. {
  8263. front: {
  8264. height: math.unit(8 + 3 / 12, "feet"),
  8265. weight: math.unit(424, "lbs"),
  8266. name: "Front",
  8267. image: {
  8268. source: "./media/characters/verin/front.svg",
  8269. extra: 1845 / 1550
  8270. }
  8271. },
  8272. frontArmored: {
  8273. height: math.unit(8 + 3 / 12, "feet"),
  8274. weight: math.unit(424, "lbs"),
  8275. name: "Front (Armored)",
  8276. image: {
  8277. source: "./media/characters/verin/front-armor.svg",
  8278. extra: 1845 / 1550,
  8279. bottom: 0.01
  8280. }
  8281. },
  8282. back: {
  8283. height: math.unit(8 + 3 / 12, "feet"),
  8284. weight: math.unit(424, "lbs"),
  8285. name: "Back",
  8286. image: {
  8287. source: "./media/characters/verin/back.svg",
  8288. bottom: 0.1,
  8289. extra: 1
  8290. }
  8291. },
  8292. foot: {
  8293. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  8294. name: "Foot",
  8295. image: {
  8296. source: "./media/characters/verin/foot.svg"
  8297. }
  8298. },
  8299. },
  8300. [
  8301. {
  8302. name: "Normal",
  8303. height: math.unit(8 + 3 / 12, "feet")
  8304. },
  8305. {
  8306. name: "Minimacro",
  8307. height: math.unit(21, "feet"),
  8308. default: true
  8309. },
  8310. {
  8311. name: "Macro",
  8312. height: math.unit(626, "feet")
  8313. },
  8314. ]
  8315. ))
  8316. characterMakers.push(() => makeCharacter(
  8317. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  8318. {
  8319. front: {
  8320. height: math.unit(2.718, "meters"),
  8321. weight: math.unit(150, "lbs"),
  8322. name: "Front",
  8323. image: {
  8324. source: "./media/characters/sovrim-terraquian/front.svg",
  8325. extra: 1752/1689,
  8326. bottom: 36/1788
  8327. }
  8328. },
  8329. back: {
  8330. height: math.unit(2.718, "meters"),
  8331. weight: math.unit(150, "lbs"),
  8332. name: "Back",
  8333. image: {
  8334. source: "./media/characters/sovrim-terraquian/back.svg",
  8335. extra: 1698/1657,
  8336. bottom: 58/1756
  8337. }
  8338. },
  8339. tongue: {
  8340. height: math.unit(2.865, "feet"),
  8341. name: "Tongue",
  8342. image: {
  8343. source: "./media/characters/sovrim-terraquian/tongue.svg"
  8344. }
  8345. },
  8346. hand: {
  8347. height: math.unit(1.61, "feet"),
  8348. name: "Hand",
  8349. image: {
  8350. source: "./media/characters/sovrim-terraquian/hand.svg"
  8351. }
  8352. },
  8353. foot: {
  8354. height: math.unit(1.05, "feet"),
  8355. name: "Foot",
  8356. image: {
  8357. source: "./media/characters/sovrim-terraquian/foot.svg"
  8358. }
  8359. },
  8360. footAlt: {
  8361. height: math.unit(0.88, "feet"),
  8362. name: "Foot (Alt)",
  8363. image: {
  8364. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  8365. }
  8366. },
  8367. },
  8368. [
  8369. {
  8370. name: "Micro",
  8371. height: math.unit(2, "inches")
  8372. },
  8373. {
  8374. name: "Small",
  8375. height: math.unit(1, "meter")
  8376. },
  8377. {
  8378. name: "Normal",
  8379. height: math.unit(Math.E, "meters"),
  8380. default: true
  8381. },
  8382. {
  8383. name: "Macro",
  8384. height: math.unit(20, "meters")
  8385. },
  8386. {
  8387. name: "Macro+",
  8388. height: math.unit(400, "meters")
  8389. },
  8390. ]
  8391. ))
  8392. characterMakers.push(() => makeCharacter(
  8393. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  8394. {
  8395. front: {
  8396. height: math.unit(7, "feet"),
  8397. weight: math.unit(489, "lbs"),
  8398. name: "Front",
  8399. image: {
  8400. source: "./media/characters/reece-silvermane/front.svg",
  8401. bottom: 0.02,
  8402. extra: 1
  8403. }
  8404. },
  8405. },
  8406. [
  8407. {
  8408. name: "Macro",
  8409. height: math.unit(1.5, "miles"),
  8410. default: true
  8411. },
  8412. ]
  8413. ))
  8414. characterMakers.push(() => makeCharacter(
  8415. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  8416. {
  8417. front: {
  8418. height: math.unit(6, "feet"),
  8419. weight: math.unit(78, "kg"),
  8420. name: "Front",
  8421. image: {
  8422. source: "./media/characters/kane/front.svg",
  8423. extra: 978 / 899
  8424. }
  8425. },
  8426. },
  8427. [
  8428. {
  8429. name: "Normal",
  8430. height: math.unit(2.1, "m"),
  8431. },
  8432. {
  8433. name: "Macro",
  8434. height: math.unit(1, "km"),
  8435. default: true
  8436. },
  8437. ]
  8438. ))
  8439. characterMakers.push(() => makeCharacter(
  8440. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  8441. {
  8442. front: {
  8443. height: math.unit(6, "feet"),
  8444. weight: math.unit(200, "kg"),
  8445. name: "Front",
  8446. image: {
  8447. source: "./media/characters/tegon/front.svg",
  8448. bottom: 0.01,
  8449. extra: 1
  8450. }
  8451. },
  8452. },
  8453. [
  8454. {
  8455. name: "Micro",
  8456. height: math.unit(1, "inch")
  8457. },
  8458. {
  8459. name: "Normal",
  8460. height: math.unit(6 + 3 / 12, "feet"),
  8461. default: true
  8462. },
  8463. {
  8464. name: "Macro",
  8465. height: math.unit(300, "feet")
  8466. },
  8467. {
  8468. name: "Megamacro",
  8469. height: math.unit(69, "miles")
  8470. },
  8471. ]
  8472. ))
  8473. characterMakers.push(() => makeCharacter(
  8474. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  8475. {
  8476. side: {
  8477. height: math.unit(6, "feet"),
  8478. weight: math.unit(2304, "lbs"),
  8479. name: "Side",
  8480. image: {
  8481. source: "./media/characters/arcturax/side.svg",
  8482. extra: 790 / 376,
  8483. bottom: 0.01
  8484. }
  8485. },
  8486. },
  8487. [
  8488. {
  8489. name: "Micro",
  8490. height: math.unit(2, "inch")
  8491. },
  8492. {
  8493. name: "Normal",
  8494. height: math.unit(6, "feet")
  8495. },
  8496. {
  8497. name: "Macro",
  8498. height: math.unit(39, "feet"),
  8499. default: true
  8500. },
  8501. {
  8502. name: "Megamacro",
  8503. height: math.unit(7, "miles")
  8504. },
  8505. ]
  8506. ))
  8507. characterMakers.push(() => makeCharacter(
  8508. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  8509. {
  8510. front: {
  8511. height: math.unit(6, "feet"),
  8512. weight: math.unit(50, "lbs"),
  8513. name: "Front",
  8514. image: {
  8515. source: "./media/characters/sentri/front.svg",
  8516. extra: 1750 / 1570,
  8517. bottom: 0.025
  8518. }
  8519. },
  8520. frontAlt: {
  8521. height: math.unit(6, "feet"),
  8522. weight: math.unit(50, "lbs"),
  8523. name: "Front (Alt)",
  8524. image: {
  8525. source: "./media/characters/sentri/front-alt.svg",
  8526. extra: 1750 / 1570,
  8527. bottom: 0.025
  8528. }
  8529. },
  8530. },
  8531. [
  8532. {
  8533. name: "Normal",
  8534. height: math.unit(15, "feet"),
  8535. default: true
  8536. },
  8537. {
  8538. name: "Macro",
  8539. height: math.unit(2500, "feet")
  8540. }
  8541. ]
  8542. ))
  8543. characterMakers.push(() => makeCharacter(
  8544. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  8545. {
  8546. front: {
  8547. height: math.unit(5 + 8 / 12, "feet"),
  8548. weight: math.unit(130, "lbs"),
  8549. name: "Front",
  8550. image: {
  8551. source: "./media/characters/corvin/front.svg",
  8552. extra: 1803 / 1629
  8553. }
  8554. },
  8555. frontShirt: {
  8556. height: math.unit(5 + 8 / 12, "feet"),
  8557. weight: math.unit(130, "lbs"),
  8558. name: "Front (Shirt)",
  8559. image: {
  8560. source: "./media/characters/corvin/front-shirt.svg",
  8561. extra: 1803 / 1629
  8562. }
  8563. },
  8564. frontPoncho: {
  8565. height: math.unit(5 + 8 / 12, "feet"),
  8566. weight: math.unit(130, "lbs"),
  8567. name: "Front (Poncho)",
  8568. image: {
  8569. source: "./media/characters/corvin/front-poncho.svg",
  8570. extra: 1803 / 1629
  8571. }
  8572. },
  8573. side: {
  8574. height: math.unit(5 + 8 / 12, "feet"),
  8575. weight: math.unit(130, "lbs"),
  8576. name: "Side",
  8577. image: {
  8578. source: "./media/characters/corvin/side.svg",
  8579. extra: 1012 / 945
  8580. }
  8581. },
  8582. back: {
  8583. height: math.unit(5 + 8 / 12, "feet"),
  8584. weight: math.unit(130, "lbs"),
  8585. name: "Back",
  8586. image: {
  8587. source: "./media/characters/corvin/back.svg",
  8588. extra: 1803 / 1629
  8589. }
  8590. },
  8591. },
  8592. [
  8593. {
  8594. name: "Micro",
  8595. height: math.unit(3, "inches")
  8596. },
  8597. {
  8598. name: "Normal",
  8599. height: math.unit(5 + 8 / 12, "feet")
  8600. },
  8601. {
  8602. name: "Macro",
  8603. height: math.unit(300, "feet"),
  8604. default: true
  8605. },
  8606. {
  8607. name: "Megamacro",
  8608. height: math.unit(500, "miles")
  8609. }
  8610. ]
  8611. ))
  8612. characterMakers.push(() => makeCharacter(
  8613. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  8614. {
  8615. front: {
  8616. height: math.unit(6, "feet"),
  8617. weight: math.unit(135, "lbs"),
  8618. name: "Front",
  8619. image: {
  8620. source: "./media/characters/q/front.svg",
  8621. extra: 854 / 752,
  8622. bottom: 0.005
  8623. }
  8624. },
  8625. back: {
  8626. height: math.unit(6, "feet"),
  8627. weight: math.unit(130, "lbs"),
  8628. name: "Back",
  8629. image: {
  8630. source: "./media/characters/q/back.svg",
  8631. extra: 854 / 752
  8632. }
  8633. },
  8634. },
  8635. [
  8636. {
  8637. name: "Macro",
  8638. height: math.unit(90, "feet"),
  8639. default: true
  8640. },
  8641. {
  8642. name: "Extra Macro",
  8643. height: math.unit(300, "feet"),
  8644. },
  8645. {
  8646. name: "BIG WALF",
  8647. height: math.unit(750, "feet"),
  8648. },
  8649. ]
  8650. ))
  8651. characterMakers.push(() => makeCharacter(
  8652. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  8653. {
  8654. front: {
  8655. height: math.unit(6, "feet"),
  8656. weight: math.unit(150, "lbs"),
  8657. name: "Front",
  8658. image: {
  8659. source: "./media/characters/carley/front.svg",
  8660. extra: 3927 / 3540,
  8661. bottom: 29.2 / 735
  8662. }
  8663. }
  8664. },
  8665. [
  8666. {
  8667. name: "Normal",
  8668. height: math.unit(6 + 3 / 12, "feet")
  8669. },
  8670. {
  8671. name: "Macro",
  8672. height: math.unit(185, "feet"),
  8673. default: true
  8674. },
  8675. {
  8676. name: "Megamacro",
  8677. height: math.unit(8, "miles"),
  8678. },
  8679. ]
  8680. ))
  8681. characterMakers.push(() => makeCharacter(
  8682. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  8683. {
  8684. front: {
  8685. height: math.unit(3, "feet"),
  8686. weight: math.unit(28, "lbs"),
  8687. name: "Front",
  8688. image: {
  8689. source: "./media/characters/citrine/front.svg"
  8690. }
  8691. }
  8692. },
  8693. [
  8694. {
  8695. name: "Normal",
  8696. height: math.unit(3, "feet"),
  8697. default: true
  8698. }
  8699. ]
  8700. ))
  8701. characterMakers.push(() => makeCharacter(
  8702. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  8703. {
  8704. front: {
  8705. height: math.unit(14, "feet"),
  8706. weight: math.unit(1450, "kg"),
  8707. capacity: math.unit(15, "people"),
  8708. name: "Front",
  8709. image: {
  8710. source: "./media/characters/aura-starwind/front.svg",
  8711. extra: 1440/1327,
  8712. bottom: 11/1451
  8713. }
  8714. },
  8715. side: {
  8716. height: math.unit(14, "feet"),
  8717. weight: math.unit(1450, "kg"),
  8718. capacity: math.unit(15, "people"),
  8719. name: "Side",
  8720. image: {
  8721. source: "./media/characters/aura-starwind/side.svg",
  8722. extra: 1654 / 1497
  8723. }
  8724. },
  8725. taur: {
  8726. height: math.unit(18, "feet"),
  8727. weight: math.unit(5500, "kg"),
  8728. capacity: math.unit(50, "people"),
  8729. name: "Taur",
  8730. image: {
  8731. source: "./media/characters/aura-starwind/taur.svg",
  8732. extra: 1760 / 1650
  8733. }
  8734. },
  8735. feral: {
  8736. height: math.unit(46, "feet"),
  8737. weight: math.unit(25000, "kg"),
  8738. capacity: math.unit(120, "people"),
  8739. name: "Feral",
  8740. image: {
  8741. source: "./media/characters/aura-starwind/feral.svg"
  8742. }
  8743. },
  8744. },
  8745. [
  8746. {
  8747. name: "Normal",
  8748. height: math.unit(14, "feet"),
  8749. default: true
  8750. },
  8751. {
  8752. name: "Macro",
  8753. height: math.unit(50, "meters")
  8754. },
  8755. {
  8756. name: "Megamacro",
  8757. height: math.unit(5000, "meters")
  8758. },
  8759. {
  8760. name: "Gigamacro",
  8761. height: math.unit(100000, "kilometers")
  8762. },
  8763. ]
  8764. ))
  8765. characterMakers.push(() => makeCharacter(
  8766. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  8767. {
  8768. front: {
  8769. height: math.unit(2 + 7 / 12, "feet"),
  8770. weight: math.unit(32, "lbs"),
  8771. name: "Front",
  8772. image: {
  8773. source: "./media/characters/rivet/front.svg",
  8774. extra: 1716 / 1658,
  8775. bottom: 0.03
  8776. }
  8777. },
  8778. foot: {
  8779. height: math.unit(0.551, "feet"),
  8780. name: "Rivet's Foot",
  8781. image: {
  8782. source: "./media/characters/rivet/foot.svg"
  8783. },
  8784. rename: true
  8785. }
  8786. },
  8787. [
  8788. {
  8789. name: "Micro",
  8790. height: math.unit(1.5, "inches"),
  8791. },
  8792. {
  8793. name: "Normal",
  8794. height: math.unit(2 + 7 / 12, "feet"),
  8795. default: true
  8796. },
  8797. {
  8798. name: "Macro",
  8799. height: math.unit(85, "feet")
  8800. },
  8801. {
  8802. name: "Megamacro",
  8803. height: math.unit(2.2, "km")
  8804. }
  8805. ]
  8806. ))
  8807. characterMakers.push(() => makeCharacter(
  8808. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  8809. {
  8810. front: {
  8811. height: math.unit(5 + 9 / 12, "feet"),
  8812. weight: math.unit(150, "lbs"),
  8813. name: "Front",
  8814. image: {
  8815. source: "./media/characters/coffee/front.svg",
  8816. extra: 3666 / 3032,
  8817. bottom: 0.04
  8818. }
  8819. },
  8820. foot: {
  8821. height: math.unit(1.29, "feet"),
  8822. name: "Foot",
  8823. image: {
  8824. source: "./media/characters/coffee/foot.svg"
  8825. }
  8826. },
  8827. },
  8828. [
  8829. {
  8830. name: "Micro",
  8831. height: math.unit(2, "inches"),
  8832. },
  8833. {
  8834. name: "Normal",
  8835. height: math.unit(5 + 9 / 12, "feet"),
  8836. default: true
  8837. },
  8838. {
  8839. name: "Macro",
  8840. height: math.unit(800, "feet")
  8841. },
  8842. {
  8843. name: "Megamacro",
  8844. height: math.unit(25, "miles")
  8845. }
  8846. ]
  8847. ))
  8848. characterMakers.push(() => makeCharacter(
  8849. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  8850. {
  8851. front: {
  8852. height: math.unit(6, "feet"),
  8853. weight: math.unit(200, "lbs"),
  8854. name: "Front",
  8855. image: {
  8856. source: "./media/characters/chari-gal/front.svg",
  8857. extra: 1568 / 1385,
  8858. bottom: 0.047
  8859. }
  8860. },
  8861. gigantamax: {
  8862. height: math.unit(6 * 16, "feet"),
  8863. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  8864. name: "Gigantamax",
  8865. image: {
  8866. source: "./media/characters/chari-gal/gigantamax.svg",
  8867. extra: 1124 / 888,
  8868. bottom: 0.03
  8869. }
  8870. },
  8871. },
  8872. [
  8873. {
  8874. name: "Normal",
  8875. height: math.unit(5 + 7 / 12, "feet")
  8876. },
  8877. {
  8878. name: "Macro",
  8879. height: math.unit(200, "feet"),
  8880. default: true
  8881. }
  8882. ]
  8883. ))
  8884. characterMakers.push(() => makeCharacter(
  8885. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  8886. {
  8887. front: {
  8888. height: math.unit(6, "feet"),
  8889. weight: math.unit(150, "lbs"),
  8890. name: "Front",
  8891. image: {
  8892. source: "./media/characters/nova/front.svg",
  8893. extra: 5000 / 4722,
  8894. bottom: 0.02
  8895. }
  8896. }
  8897. },
  8898. [
  8899. {
  8900. name: "Micro-",
  8901. height: math.unit(0.8, "inches")
  8902. },
  8903. {
  8904. name: "Micro",
  8905. height: math.unit(2, "inches"),
  8906. default: true
  8907. },
  8908. ]
  8909. ))
  8910. characterMakers.push(() => makeCharacter(
  8911. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  8912. {
  8913. front: {
  8914. height: math.unit(3 + 1 / 12, "feet"),
  8915. weight: math.unit(21.7, "lbs"),
  8916. name: "Front",
  8917. image: {
  8918. source: "./media/characters/argent/front.svg",
  8919. extra: 1471 / 1331,
  8920. bottom: 100.8 / 1575.5
  8921. }
  8922. }
  8923. },
  8924. [
  8925. {
  8926. name: "Micro",
  8927. height: math.unit(2, "inches")
  8928. },
  8929. {
  8930. name: "Normal",
  8931. height: math.unit(3 + 1 / 12, "feet"),
  8932. default: true
  8933. },
  8934. {
  8935. name: "Macro",
  8936. height: math.unit(120, "feet")
  8937. },
  8938. ]
  8939. ))
  8940. characterMakers.push(() => makeCharacter(
  8941. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  8942. {
  8943. lamp: {
  8944. height: math.unit(7 * 1559 / 989, "feet"),
  8945. name: "Magic Lamp",
  8946. image: {
  8947. source: "./media/characters/mira-al-cul/lamp.svg",
  8948. extra: 1617 / 1559
  8949. }
  8950. },
  8951. front: {
  8952. height: math.unit(7, "feet"),
  8953. name: "Front",
  8954. image: {
  8955. source: "./media/characters/mira-al-cul/front.svg",
  8956. extra: 1044 / 990
  8957. }
  8958. },
  8959. },
  8960. [
  8961. {
  8962. name: "Heavily Restricted",
  8963. height: math.unit(7 * 1559 / 989, "feet")
  8964. },
  8965. {
  8966. name: "Freshly Freed",
  8967. height: math.unit(50 * 1559 / 989, "feet")
  8968. },
  8969. {
  8970. name: "World Encompassing",
  8971. height: math.unit(10000 * 1559 / 989, "miles")
  8972. },
  8973. {
  8974. name: "Galactic",
  8975. height: math.unit(1.433 * 1559 / 989, "zettameters")
  8976. },
  8977. {
  8978. name: "Palmed Universe",
  8979. height: math.unit(6000 * 1559 / 989, "yottameters"),
  8980. default: true
  8981. },
  8982. {
  8983. name: "Multiversal Matriarch",
  8984. height: math.unit(8.87e10, "yottameters")
  8985. },
  8986. {
  8987. name: "Void Mother",
  8988. height: math.unit(3.14e110, "yottaparsecs")
  8989. },
  8990. {
  8991. name: "Toying with Transcendence",
  8992. height: math.unit(1e307, "meters")
  8993. },
  8994. ]
  8995. ))
  8996. characterMakers.push(() => makeCharacter(
  8997. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  8998. {
  8999. front: {
  9000. height: math.unit(17 + 1 / 12, "feet"),
  9001. weight: math.unit(476.2 * 5, "lbs"),
  9002. name: "Front",
  9003. image: {
  9004. source: "./media/characters/kuro-shi-uchū/front.svg",
  9005. extra: 2329 / 1835,
  9006. bottom: 0.02
  9007. }
  9008. },
  9009. },
  9010. [
  9011. {
  9012. name: "Micro",
  9013. height: math.unit(2, "inches")
  9014. },
  9015. {
  9016. name: "Normal",
  9017. height: math.unit(12, "meters")
  9018. },
  9019. {
  9020. name: "Planetary",
  9021. height: math.unit(0.00929, "AU"),
  9022. default: true
  9023. },
  9024. {
  9025. name: "Universal",
  9026. height: math.unit(20, "gigaparsecs")
  9027. },
  9028. ]
  9029. ))
  9030. characterMakers.push(() => makeCharacter(
  9031. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  9032. {
  9033. front: {
  9034. height: math.unit(5 + 2 / 12, "feet"),
  9035. weight: math.unit(120, "lbs"),
  9036. name: "Front",
  9037. image: {
  9038. source: "./media/characters/katherine/front.svg",
  9039. extra: 2075 / 1969
  9040. }
  9041. },
  9042. dress: {
  9043. height: math.unit(5 + 2 / 12, "feet"),
  9044. weight: math.unit(120, "lbs"),
  9045. name: "Dress",
  9046. image: {
  9047. source: "./media/characters/katherine/dress.svg",
  9048. extra: 2258 / 2064
  9049. }
  9050. },
  9051. },
  9052. [
  9053. {
  9054. name: "Micro",
  9055. height: math.unit(1, "inches"),
  9056. default: true
  9057. },
  9058. {
  9059. name: "Normal",
  9060. height: math.unit(5 + 2 / 12, "feet")
  9061. },
  9062. {
  9063. name: "Macro",
  9064. height: math.unit(100, "meters")
  9065. },
  9066. {
  9067. name: "Megamacro",
  9068. height: math.unit(80, "miles")
  9069. },
  9070. ]
  9071. ))
  9072. characterMakers.push(() => makeCharacter(
  9073. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  9074. {
  9075. front: {
  9076. height: math.unit(7 + 8 / 12, "feet"),
  9077. weight: math.unit(250, "lbs"),
  9078. name: "Front",
  9079. image: {
  9080. source: "./media/characters/yevis/front.svg",
  9081. extra: 1938 / 1755
  9082. }
  9083. }
  9084. },
  9085. [
  9086. {
  9087. name: "Mortal",
  9088. height: math.unit(7 + 8 / 12, "feet")
  9089. },
  9090. {
  9091. name: "Battle",
  9092. height: math.unit(25 + 11 / 12, "feet")
  9093. },
  9094. {
  9095. name: "Wrath",
  9096. height: math.unit(1654 + 11 / 12, "feet")
  9097. },
  9098. {
  9099. name: "Planet Destroyer",
  9100. height: math.unit(12000, "miles")
  9101. },
  9102. {
  9103. name: "Galaxy Conqueror",
  9104. height: math.unit(1.45, "zettameters"),
  9105. default: true
  9106. },
  9107. {
  9108. name: "Universal War",
  9109. height: math.unit(184, "gigaparsecs")
  9110. },
  9111. {
  9112. name: "Eternity War",
  9113. height: math.unit(1.98e55, "yottaparsecs")
  9114. },
  9115. ]
  9116. ))
  9117. characterMakers.push(() => makeCharacter(
  9118. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  9119. {
  9120. front: {
  9121. height: math.unit(5 + 8 / 12, "feet"),
  9122. weight: math.unit(63, "kg"),
  9123. name: "Front",
  9124. image: {
  9125. source: "./media/characters/xavier/front.svg",
  9126. extra: 944 / 883
  9127. }
  9128. },
  9129. frontStretch: {
  9130. height: math.unit(5 + 8 / 12, "feet"),
  9131. weight: math.unit(63, "kg"),
  9132. name: "Stretching",
  9133. image: {
  9134. source: "./media/characters/xavier/front-stretch.svg",
  9135. extra: 962 / 820
  9136. }
  9137. },
  9138. },
  9139. [
  9140. {
  9141. name: "Normal",
  9142. height: math.unit(5 + 8 / 12, "feet")
  9143. },
  9144. {
  9145. name: "Macro",
  9146. height: math.unit(100, "meters"),
  9147. default: true
  9148. },
  9149. {
  9150. name: "McLargeHuge",
  9151. height: math.unit(10, "miles")
  9152. },
  9153. ]
  9154. ))
  9155. characterMakers.push(() => makeCharacter(
  9156. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  9157. {
  9158. front: {
  9159. height: math.unit(5 + 5 / 12, "feet"),
  9160. weight: math.unit(150, "lb"),
  9161. name: "Front",
  9162. image: {
  9163. source: "./media/characters/joshii/front.svg",
  9164. extra: 765 / 653,
  9165. bottom: 51 / 816
  9166. }
  9167. },
  9168. foot: {
  9169. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  9170. name: "Foot",
  9171. image: {
  9172. source: "./media/characters/joshii/foot.svg"
  9173. }
  9174. },
  9175. },
  9176. [
  9177. {
  9178. name: "Micro",
  9179. height: math.unit(2, "inches"),
  9180. default: true
  9181. },
  9182. {
  9183. name: "Normal",
  9184. height: math.unit(5 + 5 / 12, "feet")
  9185. },
  9186. {
  9187. name: "Macro",
  9188. height: math.unit(785, "feet")
  9189. },
  9190. {
  9191. name: "Megamacro",
  9192. height: math.unit(24.5, "miles")
  9193. },
  9194. ]
  9195. ))
  9196. characterMakers.push(() => makeCharacter(
  9197. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  9198. {
  9199. front: {
  9200. height: math.unit(6, "feet"),
  9201. weight: math.unit(150, "lb"),
  9202. name: "Front",
  9203. image: {
  9204. source: "./media/characters/goddess-elizabeth/front.svg",
  9205. extra: 1800 / 1525,
  9206. bottom: 0.005
  9207. }
  9208. },
  9209. foot: {
  9210. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  9211. name: "Foot",
  9212. image: {
  9213. source: "./media/characters/goddess-elizabeth/foot.svg"
  9214. }
  9215. },
  9216. mouth: {
  9217. height: math.unit(6, "feet"),
  9218. name: "Mouth",
  9219. image: {
  9220. source: "./media/characters/goddess-elizabeth/mouth.svg"
  9221. }
  9222. },
  9223. },
  9224. [
  9225. {
  9226. name: "Micro",
  9227. height: math.unit(12, "feet")
  9228. },
  9229. {
  9230. name: "Normal",
  9231. height: math.unit(80, "miles"),
  9232. default: true
  9233. },
  9234. {
  9235. name: "Macro",
  9236. height: math.unit(15000, "parsecs")
  9237. },
  9238. ]
  9239. ))
  9240. characterMakers.push(() => makeCharacter(
  9241. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  9242. {
  9243. front: {
  9244. height: math.unit(5 + 9 / 12, "feet"),
  9245. weight: math.unit(144, "lb"),
  9246. name: "Front",
  9247. image: {
  9248. source: "./media/characters/kara/front.svg"
  9249. }
  9250. },
  9251. feet: {
  9252. height: math.unit(6 / 6.765, "feet"),
  9253. name: "Kara's Feet",
  9254. rename: true,
  9255. image: {
  9256. source: "./media/characters/kara/feet.svg"
  9257. }
  9258. },
  9259. },
  9260. [
  9261. {
  9262. name: "Normal",
  9263. height: math.unit(5 + 9 / 12, "feet")
  9264. },
  9265. {
  9266. name: "Macro",
  9267. height: math.unit(174, "feet"),
  9268. default: true
  9269. },
  9270. ]
  9271. ))
  9272. characterMakers.push(() => makeCharacter(
  9273. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  9274. {
  9275. front: {
  9276. height: math.unit(18, "feet"),
  9277. weight: math.unit(4050, "lb"),
  9278. name: "Front",
  9279. image: {
  9280. source: "./media/characters/tyrone/front.svg",
  9281. extra: 2405 / 2270,
  9282. bottom: 182 / 2587
  9283. }
  9284. },
  9285. },
  9286. [
  9287. {
  9288. name: "Normal",
  9289. height: math.unit(18, "feet"),
  9290. default: true
  9291. },
  9292. {
  9293. name: "Macro",
  9294. height: math.unit(300, "feet")
  9295. },
  9296. {
  9297. name: "Megamacro",
  9298. height: math.unit(15, "km")
  9299. },
  9300. {
  9301. name: "Gigamacro",
  9302. height: math.unit(500, "km")
  9303. },
  9304. {
  9305. name: "Teramacro",
  9306. height: math.unit(0.5, "gigameters")
  9307. },
  9308. {
  9309. name: "Omnimacro",
  9310. height: math.unit(1e252, "yottauniverse")
  9311. },
  9312. ]
  9313. ))
  9314. characterMakers.push(() => makeCharacter(
  9315. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  9316. {
  9317. front: {
  9318. height: math.unit(7 + 8 / 12, "feet"),
  9319. weight: math.unit(120, "lb"),
  9320. name: "Front",
  9321. image: {
  9322. source: "./media/characters/danny/front.svg",
  9323. extra: 1490 / 1350
  9324. }
  9325. },
  9326. back: {
  9327. height: math.unit(7 + 8 / 12, "feet"),
  9328. weight: math.unit(120, "lb"),
  9329. name: "Back",
  9330. image: {
  9331. source: "./media/characters/danny/back.svg",
  9332. extra: 1490 / 1350
  9333. }
  9334. },
  9335. },
  9336. [
  9337. {
  9338. name: "Normal",
  9339. height: math.unit(7 + 8 / 12, "feet"),
  9340. default: true
  9341. },
  9342. ]
  9343. ))
  9344. characterMakers.push(() => makeCharacter(
  9345. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  9346. {
  9347. front: {
  9348. height: math.unit(3.5, "inches"),
  9349. weight: math.unit(19, "grams"),
  9350. name: "Front",
  9351. image: {
  9352. source: "./media/characters/mallow/front.svg",
  9353. extra: 471 / 431
  9354. }
  9355. },
  9356. back: {
  9357. height: math.unit(3.5, "inches"),
  9358. weight: math.unit(19, "grams"),
  9359. name: "Back",
  9360. image: {
  9361. source: "./media/characters/mallow/back.svg",
  9362. extra: 471 / 431
  9363. }
  9364. },
  9365. },
  9366. [
  9367. {
  9368. name: "Normal",
  9369. height: math.unit(3.5, "inches"),
  9370. default: true
  9371. },
  9372. ]
  9373. ))
  9374. characterMakers.push(() => makeCharacter(
  9375. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  9376. {
  9377. front: {
  9378. height: math.unit(9, "feet"),
  9379. weight: math.unit(230, "kg"),
  9380. name: "Front",
  9381. image: {
  9382. source: "./media/characters/starry-aqua/front.svg"
  9383. }
  9384. },
  9385. back: {
  9386. height: math.unit(9, "feet"),
  9387. weight: math.unit(230, "kg"),
  9388. name: "Back",
  9389. image: {
  9390. source: "./media/characters/starry-aqua/back.svg"
  9391. }
  9392. },
  9393. hand: {
  9394. height: math.unit(9 * 0.1168, "feet"),
  9395. name: "Hand",
  9396. image: {
  9397. source: "./media/characters/starry-aqua/hand.svg"
  9398. }
  9399. },
  9400. foot: {
  9401. height: math.unit(9 * 0.18, "feet"),
  9402. name: "Foot",
  9403. image: {
  9404. source: "./media/characters/starry-aqua/foot.svg"
  9405. }
  9406. }
  9407. },
  9408. [
  9409. {
  9410. name: "Micro",
  9411. height: math.unit(3, "inches")
  9412. },
  9413. {
  9414. name: "Normal",
  9415. height: math.unit(9, "feet")
  9416. },
  9417. {
  9418. name: "Macro",
  9419. height: math.unit(300, "feet"),
  9420. default: true
  9421. },
  9422. {
  9423. name: "Megamacro",
  9424. height: math.unit(3200, "feet")
  9425. }
  9426. ]
  9427. ))
  9428. characterMakers.push(() => makeCharacter(
  9429. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  9430. {
  9431. front: {
  9432. height: math.unit(15, "feet"),
  9433. weight: math.unit(5026, "lb"),
  9434. name: "Front",
  9435. image: {
  9436. source: "./media/characters/luka-towers/front.svg",
  9437. extra: 1269/1133,
  9438. bottom: 51/1320
  9439. }
  9440. },
  9441. },
  9442. [
  9443. {
  9444. name: "Normal",
  9445. height: math.unit(15, "feet"),
  9446. default: true
  9447. },
  9448. {
  9449. name: "Minimacro",
  9450. height: math.unit(25, "feet")
  9451. },
  9452. {
  9453. name: "Macro",
  9454. height: math.unit(320, "feet")
  9455. },
  9456. {
  9457. name: "Megamacro",
  9458. height: math.unit(35000, "feet")
  9459. },
  9460. {
  9461. name: "Gigamacro",
  9462. height: math.unit(4000, "miles")
  9463. },
  9464. {
  9465. name: "Teramacro",
  9466. height: math.unit(15000, "miles")
  9467. },
  9468. ]
  9469. ))
  9470. characterMakers.push(() => makeCharacter(
  9471. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  9472. {
  9473. front: {
  9474. height: math.unit(6, "feet"),
  9475. weight: math.unit(150, "lb"),
  9476. name: "Front",
  9477. image: {
  9478. source: "./media/characters/natalie-nightring/front.svg",
  9479. extra: 1,
  9480. bottom: 0.06
  9481. }
  9482. },
  9483. },
  9484. [
  9485. {
  9486. name: "Uh Oh",
  9487. height: math.unit(0.1, "mm")
  9488. },
  9489. {
  9490. name: "Small",
  9491. height: math.unit(3, "inches")
  9492. },
  9493. {
  9494. name: "Human Scale",
  9495. height: math.unit(6, "feet")
  9496. },
  9497. {
  9498. name: "Librarian",
  9499. height: math.unit(50, "feet"),
  9500. default: true
  9501. },
  9502. {
  9503. name: "Immense",
  9504. height: math.unit(200, "miles")
  9505. },
  9506. ]
  9507. ))
  9508. characterMakers.push(() => makeCharacter(
  9509. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  9510. {
  9511. front: {
  9512. height: math.unit(6, "feet"),
  9513. weight: math.unit(180, "lbs"),
  9514. name: "Front",
  9515. image: {
  9516. source: "./media/characters/danni-rosie/front.svg",
  9517. extra: 1260 / 1128,
  9518. bottom: 0.022
  9519. }
  9520. },
  9521. },
  9522. [
  9523. {
  9524. name: "Micro",
  9525. height: math.unit(2, "inches"),
  9526. default: true
  9527. },
  9528. ]
  9529. ))
  9530. characterMakers.push(() => makeCharacter(
  9531. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  9532. {
  9533. front: {
  9534. height: math.unit(5 + 9 / 12, "feet"),
  9535. weight: math.unit(220, "lb"),
  9536. name: "Front",
  9537. image: {
  9538. source: "./media/characters/samantha-kruse/front.svg",
  9539. extra: (985 / 935),
  9540. bottom: 0.03
  9541. }
  9542. },
  9543. frontUndressed: {
  9544. height: math.unit(5 + 9 / 12, "feet"),
  9545. weight: math.unit(220, "lb"),
  9546. name: "Front (Undressed)",
  9547. image: {
  9548. source: "./media/characters/samantha-kruse/front-undressed.svg",
  9549. extra: (973 / 923),
  9550. bottom: 0.025
  9551. }
  9552. },
  9553. fat: {
  9554. height: math.unit(5 + 9 / 12, "feet"),
  9555. weight: math.unit(900, "lb"),
  9556. name: "Front (Fat)",
  9557. image: {
  9558. source: "./media/characters/samantha-kruse/fat.svg",
  9559. extra: 2688 / 2561
  9560. }
  9561. },
  9562. },
  9563. [
  9564. {
  9565. name: "Normal",
  9566. height: math.unit(5 + 9 / 12, "feet"),
  9567. default: true
  9568. }
  9569. ]
  9570. ))
  9571. characterMakers.push(() => makeCharacter(
  9572. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  9573. {
  9574. back: {
  9575. height: math.unit(5 + 4 / 12, "feet"),
  9576. weight: math.unit(4963, "lb"),
  9577. name: "Back",
  9578. image: {
  9579. source: "./media/characters/amelia-rosie/back.svg",
  9580. extra: 1113 / 963,
  9581. bottom: 0.01
  9582. }
  9583. },
  9584. },
  9585. [
  9586. {
  9587. name: "Level 0",
  9588. height: math.unit(5 + 4 / 12, "feet")
  9589. },
  9590. {
  9591. name: "Level 1",
  9592. height: math.unit(164597, "feet"),
  9593. default: true
  9594. },
  9595. {
  9596. name: "Level 2",
  9597. height: math.unit(956243, "miles")
  9598. },
  9599. {
  9600. name: "Level 3",
  9601. height: math.unit(29421709423, "miles")
  9602. },
  9603. {
  9604. name: "Level 4",
  9605. height: math.unit(154, "lightyears")
  9606. },
  9607. {
  9608. name: "Level 5",
  9609. height: math.unit(4738272, "lightyears")
  9610. },
  9611. {
  9612. name: "Level 6",
  9613. height: math.unit(145787152896, "lightyears")
  9614. },
  9615. ]
  9616. ))
  9617. characterMakers.push(() => makeCharacter(
  9618. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  9619. {
  9620. front: {
  9621. height: math.unit(5 + 11 / 12, "feet"),
  9622. weight: math.unit(65, "kg"),
  9623. name: "Front",
  9624. image: {
  9625. source: "./media/characters/rook-kitara/front.svg",
  9626. extra: 1347 / 1274,
  9627. bottom: 0.005
  9628. }
  9629. },
  9630. },
  9631. [
  9632. {
  9633. name: "Totally Unfair",
  9634. height: math.unit(1.8, "mm")
  9635. },
  9636. {
  9637. name: "Lap Rookie",
  9638. height: math.unit(1.4, "feet")
  9639. },
  9640. {
  9641. name: "Normal",
  9642. height: math.unit(5 + 11 / 12, "feet"),
  9643. default: true
  9644. },
  9645. {
  9646. name: "How Did This Happen",
  9647. height: math.unit(80, "miles")
  9648. }
  9649. ]
  9650. ))
  9651. characterMakers.push(() => makeCharacter(
  9652. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  9653. {
  9654. front: {
  9655. height: math.unit(7, "feet"),
  9656. weight: math.unit(300, "lb"),
  9657. name: "Front",
  9658. image: {
  9659. source: "./media/characters/pisces/front.svg",
  9660. extra: 2255 / 2115,
  9661. bottom: 0.03
  9662. }
  9663. },
  9664. back: {
  9665. height: math.unit(7, "feet"),
  9666. weight: math.unit(300, "lb"),
  9667. name: "Back",
  9668. image: {
  9669. source: "./media/characters/pisces/back.svg",
  9670. extra: 2146 / 2055,
  9671. bottom: 0.04
  9672. }
  9673. },
  9674. },
  9675. [
  9676. {
  9677. name: "Normal",
  9678. height: math.unit(7, "feet"),
  9679. default: true
  9680. },
  9681. {
  9682. name: "Swimming Pool",
  9683. height: math.unit(12.2, "meters")
  9684. },
  9685. {
  9686. name: "Olympic Swimming Pool",
  9687. height: math.unit(56.3, "meters")
  9688. },
  9689. {
  9690. name: "Lake Superior",
  9691. height: math.unit(93900, "meters")
  9692. },
  9693. {
  9694. name: "Mediterranean Sea",
  9695. height: math.unit(644457, "meters")
  9696. },
  9697. {
  9698. name: "World's Oceans",
  9699. height: math.unit(4567491, "meters")
  9700. },
  9701. ]
  9702. ))
  9703. characterMakers.push(() => makeCharacter(
  9704. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  9705. {
  9706. front: {
  9707. height: math.unit(2.3, "meters"),
  9708. weight: math.unit(120, "kg"),
  9709. name: "Front",
  9710. image: {
  9711. source: "./media/characters/zelas/front.svg"
  9712. }
  9713. },
  9714. side: {
  9715. height: math.unit(2.3, "meters"),
  9716. weight: math.unit(120, "kg"),
  9717. name: "Side",
  9718. image: {
  9719. source: "./media/characters/zelas/side.svg"
  9720. }
  9721. },
  9722. back: {
  9723. height: math.unit(2.3, "meters"),
  9724. weight: math.unit(120, "kg"),
  9725. name: "Back",
  9726. image: {
  9727. source: "./media/characters/zelas/back.svg"
  9728. }
  9729. },
  9730. foot: {
  9731. height: math.unit(1.116, "feet"),
  9732. name: "Foot",
  9733. image: {
  9734. source: "./media/characters/zelas/foot.svg"
  9735. }
  9736. },
  9737. },
  9738. [
  9739. {
  9740. name: "Normal",
  9741. height: math.unit(2.3, "meters")
  9742. },
  9743. {
  9744. name: "Macro",
  9745. height: math.unit(30, "meters"),
  9746. default: true
  9747. },
  9748. ]
  9749. ))
  9750. characterMakers.push(() => makeCharacter(
  9751. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  9752. {
  9753. front: {
  9754. height: math.unit(1, "inch"),
  9755. weight: math.unit(0.21, "grams"),
  9756. name: "Front",
  9757. image: {
  9758. source: "./media/characters/talbot/front.svg",
  9759. extra: 594 / 544
  9760. }
  9761. },
  9762. },
  9763. [
  9764. {
  9765. name: "Micro",
  9766. height: math.unit(1, "inch"),
  9767. default: true
  9768. },
  9769. ]
  9770. ))
  9771. characterMakers.push(() => makeCharacter(
  9772. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  9773. {
  9774. front: {
  9775. height: math.unit(3 + 3 / 12, "feet"),
  9776. weight: math.unit(51.8, "lb"),
  9777. name: "Front",
  9778. image: {
  9779. source: "./media/characters/fliss/front.svg",
  9780. extra: 840 / 640
  9781. }
  9782. },
  9783. },
  9784. [
  9785. {
  9786. name: "Teeny Tiny",
  9787. height: math.unit(1, "mm")
  9788. },
  9789. {
  9790. name: "Small",
  9791. height: math.unit(1, "inch"),
  9792. default: true
  9793. },
  9794. {
  9795. name: "Standard Sylveon",
  9796. height: math.unit(3 + 3 / 12, "feet")
  9797. },
  9798. {
  9799. name: "Large Nuisance",
  9800. height: math.unit(33, "feet")
  9801. },
  9802. {
  9803. name: "City Filler",
  9804. height: math.unit(3000, "feet")
  9805. },
  9806. {
  9807. name: "New Horizon",
  9808. height: math.unit(6000, "miles")
  9809. },
  9810. ]
  9811. ))
  9812. characterMakers.push(() => makeCharacter(
  9813. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  9814. {
  9815. front: {
  9816. height: math.unit(5, "cm"),
  9817. weight: math.unit(1.94, "g"),
  9818. name: "Front",
  9819. image: {
  9820. source: "./media/characters/fleta/front.svg",
  9821. extra: 835 / 803
  9822. }
  9823. },
  9824. back: {
  9825. height: math.unit(5, "cm"),
  9826. weight: math.unit(1.94, "g"),
  9827. name: "Back",
  9828. image: {
  9829. source: "./media/characters/fleta/back.svg",
  9830. extra: 835 / 803
  9831. }
  9832. },
  9833. },
  9834. [
  9835. {
  9836. name: "Micro",
  9837. height: math.unit(5, "cm"),
  9838. default: true
  9839. },
  9840. ]
  9841. ))
  9842. characterMakers.push(() => makeCharacter(
  9843. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  9844. {
  9845. front: {
  9846. height: math.unit(6, "feet"),
  9847. weight: math.unit(225, "lb"),
  9848. name: "Front",
  9849. image: {
  9850. source: "./media/characters/dominic/front.svg",
  9851. extra: 1770 / 1620,
  9852. bottom: 0.025
  9853. }
  9854. },
  9855. back: {
  9856. height: math.unit(6, "feet"),
  9857. weight: math.unit(225, "lb"),
  9858. name: "Back",
  9859. image: {
  9860. source: "./media/characters/dominic/back.svg",
  9861. extra: 1745 / 1620,
  9862. bottom: 0.065
  9863. }
  9864. },
  9865. },
  9866. [
  9867. {
  9868. name: "Nano",
  9869. height: math.unit(0.1, "mm")
  9870. },
  9871. {
  9872. name: "Micro-",
  9873. height: math.unit(1, "mm")
  9874. },
  9875. {
  9876. name: "Micro",
  9877. height: math.unit(4, "inches")
  9878. },
  9879. {
  9880. name: "Normal",
  9881. height: math.unit(6 + 4 / 12, "feet"),
  9882. default: true
  9883. },
  9884. {
  9885. name: "Macro",
  9886. height: math.unit(115, "feet")
  9887. },
  9888. {
  9889. name: "Macro+",
  9890. height: math.unit(955, "feet")
  9891. },
  9892. {
  9893. name: "Megamacro",
  9894. height: math.unit(8990, "feet")
  9895. },
  9896. {
  9897. name: "Gigmacro",
  9898. height: math.unit(9310, "miles")
  9899. },
  9900. {
  9901. name: "Teramacro",
  9902. height: math.unit(1567005010, "miles")
  9903. },
  9904. {
  9905. name: "Examacro",
  9906. height: math.unit(1425, "parsecs")
  9907. },
  9908. ]
  9909. ))
  9910. characterMakers.push(() => makeCharacter(
  9911. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  9912. {
  9913. front: {
  9914. height: math.unit(400, "feet"),
  9915. weight: math.unit(44444444, "lb"),
  9916. name: "Front",
  9917. image: {
  9918. source: "./media/characters/major-colonel/front.svg"
  9919. }
  9920. },
  9921. back: {
  9922. height: math.unit(400, "feet"),
  9923. weight: math.unit(44444444, "lb"),
  9924. name: "Back",
  9925. image: {
  9926. source: "./media/characters/major-colonel/back.svg"
  9927. }
  9928. },
  9929. },
  9930. [
  9931. {
  9932. name: "Macro",
  9933. height: math.unit(400, "feet"),
  9934. default: true
  9935. },
  9936. ]
  9937. ))
  9938. characterMakers.push(() => makeCharacter(
  9939. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  9940. {
  9941. catFront: {
  9942. height: math.unit(6, "feet"),
  9943. weight: math.unit(120, "lb"),
  9944. name: "Front (Cat Side)",
  9945. image: {
  9946. source: "./media/characters/axel-lycan/cat-front.svg",
  9947. extra: 430 / 402,
  9948. bottom: 43 / 472.35
  9949. }
  9950. },
  9951. catBack: {
  9952. height: math.unit(6, "feet"),
  9953. weight: math.unit(120, "lb"),
  9954. name: "Back (Cat Side)",
  9955. image: {
  9956. source: "./media/characters/axel-lycan/cat-back.svg",
  9957. extra: 447 / 419,
  9958. bottom: 23.3 / 469
  9959. }
  9960. },
  9961. wolfFront: {
  9962. height: math.unit(6, "feet"),
  9963. weight: math.unit(120, "lb"),
  9964. name: "Front (Wolf Side)",
  9965. image: {
  9966. source: "./media/characters/axel-lycan/wolf-front.svg",
  9967. extra: 485 / 456,
  9968. bottom: 19 / 504
  9969. }
  9970. },
  9971. wolfBack: {
  9972. height: math.unit(6, "feet"),
  9973. weight: math.unit(120, "lb"),
  9974. name: "Back (Wolf Side)",
  9975. image: {
  9976. source: "./media/characters/axel-lycan/wolf-back.svg",
  9977. extra: 475 / 438,
  9978. bottom: 39.2 / 514
  9979. }
  9980. },
  9981. },
  9982. [
  9983. {
  9984. name: "Macro",
  9985. height: math.unit(1, "km"),
  9986. default: true
  9987. },
  9988. ]
  9989. ))
  9990. characterMakers.push(() => makeCharacter(
  9991. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  9992. {
  9993. front: {
  9994. height: math.unit(5 + 9 / 12, "feet"),
  9995. weight: math.unit(175, "lb"),
  9996. name: "Front",
  9997. image: {
  9998. source: "./media/characters/vanrel-hyena/front.svg",
  9999. extra: 1086 / 1010,
  10000. bottom: 0.04
  10001. }
  10002. },
  10003. },
  10004. [
  10005. {
  10006. name: "Normal",
  10007. height: math.unit(5 + 9 / 12, "feet"),
  10008. default: true
  10009. },
  10010. ]
  10011. ))
  10012. characterMakers.push(() => makeCharacter(
  10013. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  10014. {
  10015. front: {
  10016. height: math.unit(6, "feet"),
  10017. weight: math.unit(103, "lb"),
  10018. name: "Front",
  10019. image: {
  10020. source: "./media/characters/abbott-absol/front.svg",
  10021. extra: 2010 / 1842
  10022. }
  10023. },
  10024. },
  10025. [
  10026. {
  10027. name: "Megamicro",
  10028. height: math.unit(0.1, "mm")
  10029. },
  10030. {
  10031. name: "Micro",
  10032. height: math.unit(1, "inch")
  10033. },
  10034. {
  10035. name: "Normal",
  10036. height: math.unit(6, "feet"),
  10037. default: true
  10038. },
  10039. ]
  10040. ))
  10041. characterMakers.push(() => makeCharacter(
  10042. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  10043. {
  10044. front: {
  10045. height: math.unit(6, "feet"),
  10046. weight: math.unit(264, "lb"),
  10047. name: "Front",
  10048. image: {
  10049. source: "./media/characters/hector/front.svg",
  10050. extra: 2280 / 2130,
  10051. bottom: 0.07
  10052. }
  10053. },
  10054. },
  10055. [
  10056. {
  10057. name: "Normal",
  10058. height: math.unit(12.25, "foot"),
  10059. default: true
  10060. },
  10061. {
  10062. name: "Macro",
  10063. height: math.unit(160, "feet")
  10064. },
  10065. ]
  10066. ))
  10067. characterMakers.push(() => makeCharacter(
  10068. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  10069. {
  10070. front: {
  10071. height: math.unit(6, "feet"),
  10072. weight: math.unit(150, "lb"),
  10073. name: "Front",
  10074. image: {
  10075. source: "./media/characters/sal/front.svg",
  10076. extra: 1846 / 1699,
  10077. bottom: 0.04
  10078. }
  10079. },
  10080. },
  10081. [
  10082. {
  10083. name: "Megamacro",
  10084. height: math.unit(10, "miles"),
  10085. default: true
  10086. },
  10087. ]
  10088. ))
  10089. characterMakers.push(() => makeCharacter(
  10090. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  10091. {
  10092. front: {
  10093. height: math.unit(3, "meters"),
  10094. weight: math.unit(450, "kg"),
  10095. name: "front",
  10096. image: {
  10097. source: "./media/characters/ranger/front.svg",
  10098. extra: 2401 / 2243,
  10099. bottom: 0.05
  10100. }
  10101. },
  10102. },
  10103. [
  10104. {
  10105. name: "Normal",
  10106. height: math.unit(3, "meters"),
  10107. default: true
  10108. },
  10109. ]
  10110. ))
  10111. characterMakers.push(() => makeCharacter(
  10112. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  10113. {
  10114. front: {
  10115. height: math.unit(14, "feet"),
  10116. weight: math.unit(800, "kg"),
  10117. name: "Front",
  10118. image: {
  10119. source: "./media/characters/theresa/front.svg",
  10120. extra: 3575 / 3346,
  10121. bottom: 0.03
  10122. }
  10123. },
  10124. },
  10125. [
  10126. {
  10127. name: "Normal",
  10128. height: math.unit(14, "feet"),
  10129. default: true
  10130. },
  10131. ]
  10132. ))
  10133. characterMakers.push(() => makeCharacter(
  10134. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  10135. {
  10136. front: {
  10137. height: math.unit(6, "feet"),
  10138. weight: math.unit(3, "kg"),
  10139. name: "Front",
  10140. image: {
  10141. source: "./media/characters/ine/front.svg",
  10142. extra: 678 / 539,
  10143. bottom: 0.023
  10144. }
  10145. },
  10146. },
  10147. [
  10148. {
  10149. name: "Normal",
  10150. height: math.unit(2.265, "feet"),
  10151. default: true
  10152. },
  10153. ]
  10154. ))
  10155. characterMakers.push(() => makeCharacter(
  10156. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  10157. {
  10158. front: {
  10159. height: math.unit(5, "feet"),
  10160. weight: math.unit(30, "kg"),
  10161. name: "Front",
  10162. image: {
  10163. source: "./media/characters/vial/front.svg",
  10164. extra: 1365 / 1277,
  10165. bottom: 0.04
  10166. }
  10167. },
  10168. },
  10169. [
  10170. {
  10171. name: "Normal",
  10172. height: math.unit(5, "feet"),
  10173. default: true
  10174. },
  10175. ]
  10176. ))
  10177. characterMakers.push(() => makeCharacter(
  10178. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  10179. {
  10180. side: {
  10181. height: math.unit(3.4, "meters"),
  10182. weight: math.unit(1000, "lb"),
  10183. name: "Side",
  10184. image: {
  10185. source: "./media/characters/rovoska/side.svg",
  10186. extra: 4403 / 1515
  10187. }
  10188. },
  10189. },
  10190. [
  10191. {
  10192. name: "Normal",
  10193. height: math.unit(3.4, "meters"),
  10194. default: true
  10195. },
  10196. ]
  10197. ))
  10198. characterMakers.push(() => makeCharacter(
  10199. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  10200. {
  10201. front: {
  10202. height: math.unit(8, "feet"),
  10203. weight: math.unit(315, "lb"),
  10204. name: "Front",
  10205. image: {
  10206. source: "./media/characters/gunner-rotthbauer/front.svg"
  10207. }
  10208. },
  10209. back: {
  10210. height: math.unit(8, "feet"),
  10211. weight: math.unit(315, "lb"),
  10212. name: "Back",
  10213. image: {
  10214. source: "./media/characters/gunner-rotthbauer/back.svg"
  10215. }
  10216. },
  10217. },
  10218. [
  10219. {
  10220. name: "Micro",
  10221. height: math.unit(3.5, "inches")
  10222. },
  10223. {
  10224. name: "Normal",
  10225. height: math.unit(8, "feet"),
  10226. default: true
  10227. },
  10228. {
  10229. name: "Macro",
  10230. height: math.unit(250, "feet")
  10231. },
  10232. {
  10233. name: "Megamacro",
  10234. height: math.unit(1, "AU")
  10235. },
  10236. ]
  10237. ))
  10238. characterMakers.push(() => makeCharacter(
  10239. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  10240. {
  10241. front: {
  10242. height: math.unit(5 + 5 / 12, "feet"),
  10243. weight: math.unit(140, "lb"),
  10244. name: "Front",
  10245. image: {
  10246. source: "./media/characters/allatia/front.svg",
  10247. extra: 1227 / 1180,
  10248. bottom: 0.027
  10249. }
  10250. },
  10251. },
  10252. [
  10253. {
  10254. name: "Normal",
  10255. height: math.unit(5 + 5 / 12, "feet")
  10256. },
  10257. {
  10258. name: "Macro",
  10259. height: math.unit(250, "feet"),
  10260. default: true
  10261. },
  10262. {
  10263. name: "Megamacro",
  10264. height: math.unit(8, "miles")
  10265. }
  10266. ]
  10267. ))
  10268. characterMakers.push(() => makeCharacter(
  10269. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  10270. {
  10271. front: {
  10272. height: math.unit(6, "feet"),
  10273. weight: math.unit(120, "lb"),
  10274. name: "Front",
  10275. image: {
  10276. source: "./media/characters/tene/front.svg",
  10277. extra: 814/750,
  10278. bottom: 36/850
  10279. }
  10280. },
  10281. stomping: {
  10282. height: math.unit(2.025, "meters"),
  10283. weight: math.unit(120, "lb"),
  10284. name: "Stomping",
  10285. image: {
  10286. source: "./media/characters/tene/stomping.svg",
  10287. extra: 885/821,
  10288. bottom: 15/900
  10289. }
  10290. },
  10291. sitting: {
  10292. height: math.unit(1, "meter"),
  10293. weight: math.unit(120, "lb"),
  10294. name: "Sitting",
  10295. image: {
  10296. source: "./media/characters/tene/sitting.svg",
  10297. extra: 396/366,
  10298. bottom: 79/475
  10299. }
  10300. },
  10301. smiling: {
  10302. height: math.unit(1.2, "feet"),
  10303. name: "Smiling",
  10304. image: {
  10305. source: "./media/characters/tene/smiling.svg",
  10306. extra: 1364/1071,
  10307. bottom: 0/1364
  10308. }
  10309. },
  10310. smug: {
  10311. height: math.unit(1.3, "feet"),
  10312. name: "Smug",
  10313. image: {
  10314. source: "./media/characters/tene/smug.svg",
  10315. extra: 1323/1082,
  10316. bottom: 0/1323
  10317. }
  10318. },
  10319. feral: {
  10320. height: math.unit(3.9, "feet"),
  10321. weight: math.unit(250, "lb"),
  10322. name: "Feral",
  10323. image: {
  10324. source: "./media/characters/tene/feral.svg",
  10325. extra: 717 / 458,
  10326. bottom: 0.179
  10327. }
  10328. },
  10329. },
  10330. [
  10331. {
  10332. name: "Normal",
  10333. height: math.unit(6, "feet")
  10334. },
  10335. {
  10336. name: "Macro",
  10337. height: math.unit(300, "feet"),
  10338. default: true
  10339. },
  10340. {
  10341. name: "Megamacro",
  10342. height: math.unit(5, "miles")
  10343. },
  10344. ]
  10345. ))
  10346. characterMakers.push(() => makeCharacter(
  10347. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  10348. {
  10349. side: {
  10350. height: math.unit(6, "feet"),
  10351. name: "Side",
  10352. image: {
  10353. source: "./media/characters/evander/side.svg",
  10354. extra: 877 / 477
  10355. }
  10356. },
  10357. },
  10358. [
  10359. {
  10360. name: "Normal",
  10361. height: math.unit(0.83, "meters"),
  10362. default: true
  10363. },
  10364. ]
  10365. ))
  10366. characterMakers.push(() => makeCharacter(
  10367. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  10368. {
  10369. front: {
  10370. height: math.unit(12, "feet"),
  10371. weight: math.unit(1000, "lb"),
  10372. name: "Front",
  10373. image: {
  10374. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  10375. extra: 1762 / 1611
  10376. }
  10377. },
  10378. back: {
  10379. height: math.unit(12, "feet"),
  10380. weight: math.unit(1000, "lb"),
  10381. name: "Back",
  10382. image: {
  10383. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  10384. extra: 1762 / 1611
  10385. }
  10386. },
  10387. },
  10388. [
  10389. {
  10390. name: "Normal",
  10391. height: math.unit(12, "feet"),
  10392. default: true
  10393. },
  10394. {
  10395. name: "Kaiju",
  10396. height: math.unit(150, "feet")
  10397. },
  10398. ]
  10399. ))
  10400. characterMakers.push(() => makeCharacter(
  10401. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  10402. {
  10403. front: {
  10404. height: math.unit(6, "feet"),
  10405. weight: math.unit(150, "lb"),
  10406. name: "Front",
  10407. image: {
  10408. source: "./media/characters/zero-alurus/front.svg"
  10409. }
  10410. },
  10411. back: {
  10412. height: math.unit(6, "feet"),
  10413. weight: math.unit(150, "lb"),
  10414. name: "Back",
  10415. image: {
  10416. source: "./media/characters/zero-alurus/back.svg"
  10417. }
  10418. },
  10419. },
  10420. [
  10421. {
  10422. name: "Normal",
  10423. height: math.unit(5 + 10 / 12, "feet")
  10424. },
  10425. {
  10426. name: "Macro",
  10427. height: math.unit(60, "feet"),
  10428. default: true
  10429. },
  10430. {
  10431. name: "Macro+",
  10432. height: math.unit(450, "feet")
  10433. },
  10434. ]
  10435. ))
  10436. characterMakers.push(() => makeCharacter(
  10437. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  10438. {
  10439. front: {
  10440. height: math.unit(6, "feet"),
  10441. weight: math.unit(200, "lb"),
  10442. name: "Front",
  10443. image: {
  10444. source: "./media/characters/mega-shi/front.svg",
  10445. extra: 1279 / 1250,
  10446. bottom: 0.02
  10447. }
  10448. },
  10449. back: {
  10450. height: math.unit(6, "feet"),
  10451. weight: math.unit(200, "lb"),
  10452. name: "Back",
  10453. image: {
  10454. source: "./media/characters/mega-shi/back.svg",
  10455. extra: 1279 / 1250,
  10456. bottom: 0.02
  10457. }
  10458. },
  10459. },
  10460. [
  10461. {
  10462. name: "Micro",
  10463. height: math.unit(16 + 6 / 12, "feet")
  10464. },
  10465. {
  10466. name: "Third Dimension",
  10467. height: math.unit(40, "meters")
  10468. },
  10469. {
  10470. name: "Normal",
  10471. height: math.unit(660, "feet"),
  10472. default: true
  10473. },
  10474. {
  10475. name: "Megamacro",
  10476. height: math.unit(10, "miles")
  10477. },
  10478. {
  10479. name: "Planetary Launch",
  10480. height: math.unit(500, "miles")
  10481. },
  10482. {
  10483. name: "Interstellar",
  10484. height: math.unit(1e9, "miles")
  10485. },
  10486. {
  10487. name: "Leaving the Universe",
  10488. height: math.unit(1, "gigaparsec")
  10489. },
  10490. {
  10491. name: "Travelling Universes",
  10492. height: math.unit(30e15, "parsecs")
  10493. },
  10494. ]
  10495. ))
  10496. characterMakers.push(() => makeCharacter(
  10497. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  10498. {
  10499. front: {
  10500. height: math.unit(5 + 4/12, "feet"),
  10501. weight: math.unit(120, "lb"),
  10502. name: "Front",
  10503. image: {
  10504. source: "./media/characters/odyssey/front.svg",
  10505. extra: 1747/1571,
  10506. bottom: 47/1794
  10507. }
  10508. },
  10509. side: {
  10510. height: math.unit(5.1, "feet"),
  10511. weight: math.unit(120, "lb"),
  10512. name: "Side",
  10513. image: {
  10514. source: "./media/characters/odyssey/side.svg",
  10515. extra: 1847/1619,
  10516. bottom: 47/1894
  10517. }
  10518. },
  10519. lounging: {
  10520. height: math.unit(1.464, "feet"),
  10521. weight: math.unit(120, "lb"),
  10522. name: "Lounging",
  10523. image: {
  10524. source: "./media/characters/odyssey/lounging.svg",
  10525. extra: 1235/837,
  10526. bottom: 551/1786
  10527. }
  10528. },
  10529. },
  10530. [
  10531. {
  10532. name: "Normal",
  10533. height: math.unit(5 + 4 / 12, "feet")
  10534. },
  10535. {
  10536. name: "Macro",
  10537. height: math.unit(1, "km")
  10538. },
  10539. {
  10540. name: "Megamacro",
  10541. height: math.unit(3000, "km")
  10542. },
  10543. {
  10544. name: "Gigamacro",
  10545. height: math.unit(1, "AU"),
  10546. default: true
  10547. },
  10548. {
  10549. name: "Omniversal",
  10550. height: math.unit(100e14, "lightyears")
  10551. },
  10552. ]
  10553. ))
  10554. characterMakers.push(() => makeCharacter(
  10555. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  10556. {
  10557. front: {
  10558. height: math.unit(6, "feet"),
  10559. weight: math.unit(300, "lb"),
  10560. name: "Front",
  10561. image: {
  10562. source: "./media/characters/mekuto/front.svg",
  10563. extra: 921 / 832,
  10564. bottom: 0.03
  10565. }
  10566. },
  10567. hand: {
  10568. height: math.unit(6 / 10.24, "feet"),
  10569. name: "Hand",
  10570. image: {
  10571. source: "./media/characters/mekuto/hand.svg"
  10572. }
  10573. },
  10574. foot: {
  10575. height: math.unit(6 / 5.05, "feet"),
  10576. name: "Foot",
  10577. image: {
  10578. source: "./media/characters/mekuto/foot.svg"
  10579. }
  10580. },
  10581. },
  10582. [
  10583. {
  10584. name: "Minimicro",
  10585. height: math.unit(0.2, "inches")
  10586. },
  10587. {
  10588. name: "Micro",
  10589. height: math.unit(1.5, "inches")
  10590. },
  10591. {
  10592. name: "Normal",
  10593. height: math.unit(5 + 11 / 12, "feet"),
  10594. default: true
  10595. },
  10596. {
  10597. name: "Minimacro",
  10598. height: math.unit(17 + 9 / 12, "feet")
  10599. },
  10600. {
  10601. name: "Macro",
  10602. height: math.unit(177.5, "feet")
  10603. },
  10604. {
  10605. name: "Megamacro",
  10606. height: math.unit(152, "miles")
  10607. },
  10608. ]
  10609. ))
  10610. characterMakers.push(() => makeCharacter(
  10611. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  10612. {
  10613. front: {
  10614. height: math.unit(6.5, "inches"),
  10615. weight: math.unit(13, "oz"),
  10616. name: "Front",
  10617. image: {
  10618. source: "./media/characters/dafydd-tomos/front.svg",
  10619. extra: 2990 / 2603,
  10620. bottom: 0.03
  10621. }
  10622. },
  10623. },
  10624. [
  10625. {
  10626. name: "Micro",
  10627. height: math.unit(6.5, "inches"),
  10628. default: true
  10629. },
  10630. ]
  10631. ))
  10632. characterMakers.push(() => makeCharacter(
  10633. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  10634. {
  10635. front: {
  10636. height: math.unit(6, "feet"),
  10637. weight: math.unit(150, "lb"),
  10638. name: "Front",
  10639. image: {
  10640. source: "./media/characters/splinter/front.svg",
  10641. extra: 2990 / 2882,
  10642. bottom: 0.04
  10643. }
  10644. },
  10645. back: {
  10646. height: math.unit(6, "feet"),
  10647. weight: math.unit(150, "lb"),
  10648. name: "Back",
  10649. image: {
  10650. source: "./media/characters/splinter/back.svg",
  10651. extra: 2990 / 2882,
  10652. bottom: 0.04
  10653. }
  10654. },
  10655. },
  10656. [
  10657. {
  10658. name: "Normal",
  10659. height: math.unit(6, "feet")
  10660. },
  10661. {
  10662. name: "Macro",
  10663. height: math.unit(230, "meters"),
  10664. default: true
  10665. },
  10666. ]
  10667. ))
  10668. characterMakers.push(() => makeCharacter(
  10669. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  10670. {
  10671. front: {
  10672. height: math.unit(4 + 10 / 12, "feet"),
  10673. weight: math.unit(480, "lb"),
  10674. name: "Front",
  10675. image: {
  10676. source: "./media/characters/snow-gabumon/front.svg",
  10677. extra: 1140 / 963,
  10678. bottom: 0.058
  10679. }
  10680. },
  10681. back: {
  10682. height: math.unit(4 + 10 / 12, "feet"),
  10683. weight: math.unit(480, "lb"),
  10684. name: "Back",
  10685. image: {
  10686. source: "./media/characters/snow-gabumon/back.svg",
  10687. extra: 1115 / 962,
  10688. bottom: 0.041
  10689. }
  10690. },
  10691. frontUndresed: {
  10692. height: math.unit(4 + 10 / 12, "feet"),
  10693. weight: math.unit(480, "lb"),
  10694. name: "Front (Undressed)",
  10695. image: {
  10696. source: "./media/characters/snow-gabumon/front-undressed.svg",
  10697. extra: 1061 / 960,
  10698. bottom: 0.045
  10699. }
  10700. },
  10701. },
  10702. [
  10703. {
  10704. name: "Micro",
  10705. height: math.unit(1, "inch")
  10706. },
  10707. {
  10708. name: "Normal",
  10709. height: math.unit(4 + 10 / 12, "feet"),
  10710. default: true
  10711. },
  10712. {
  10713. name: "Macro",
  10714. height: math.unit(200, "feet")
  10715. },
  10716. {
  10717. name: "Megamacro",
  10718. height: math.unit(120, "miles")
  10719. },
  10720. {
  10721. name: "Gigamacro",
  10722. height: math.unit(9800, "miles")
  10723. },
  10724. ]
  10725. ))
  10726. characterMakers.push(() => makeCharacter(
  10727. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  10728. {
  10729. front: {
  10730. height: math.unit(1.7, "meters"),
  10731. weight: math.unit(140, "lb"),
  10732. name: "Front",
  10733. image: {
  10734. source: "./media/characters/moody/front.svg",
  10735. extra: 3226 / 3007,
  10736. bottom: 0.087
  10737. }
  10738. },
  10739. },
  10740. [
  10741. {
  10742. name: "Micro",
  10743. height: math.unit(1, "mm")
  10744. },
  10745. {
  10746. name: "Normal",
  10747. height: math.unit(1.7, "meters"),
  10748. default: true
  10749. },
  10750. {
  10751. name: "Macro",
  10752. height: math.unit(80, "meters")
  10753. },
  10754. {
  10755. name: "Macro+",
  10756. height: math.unit(500, "meters")
  10757. },
  10758. ]
  10759. ))
  10760. characterMakers.push(() => makeCharacter(
  10761. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  10762. {
  10763. front: {
  10764. height: math.unit(6, "feet"),
  10765. weight: math.unit(150, "lb"),
  10766. name: "Front",
  10767. image: {
  10768. source: "./media/characters/zyas/front.svg",
  10769. extra: 1180 / 1120,
  10770. bottom: 0.045
  10771. }
  10772. },
  10773. },
  10774. [
  10775. {
  10776. name: "Normal",
  10777. height: math.unit(10, "feet"),
  10778. default: true
  10779. },
  10780. {
  10781. name: "Macro",
  10782. height: math.unit(500, "feet")
  10783. },
  10784. {
  10785. name: "Megamacro",
  10786. height: math.unit(5, "miles")
  10787. },
  10788. {
  10789. name: "Teramacro",
  10790. height: math.unit(150000, "miles")
  10791. },
  10792. ]
  10793. ))
  10794. characterMakers.push(() => makeCharacter(
  10795. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  10796. {
  10797. front: {
  10798. height: math.unit(6, "feet"),
  10799. weight: math.unit(150, "lb"),
  10800. name: "Front",
  10801. image: {
  10802. source: "./media/characters/cuon/front.svg",
  10803. extra: 1390 / 1320,
  10804. bottom: 0.008
  10805. }
  10806. },
  10807. },
  10808. [
  10809. {
  10810. name: "Micro",
  10811. height: math.unit(3, "inches")
  10812. },
  10813. {
  10814. name: "Normal",
  10815. height: math.unit(18 + 9 / 12, "feet"),
  10816. default: true
  10817. },
  10818. {
  10819. name: "Macro",
  10820. height: math.unit(360, "feet")
  10821. },
  10822. {
  10823. name: "Megamacro",
  10824. height: math.unit(360, "miles")
  10825. },
  10826. ]
  10827. ))
  10828. characterMakers.push(() => makeCharacter(
  10829. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  10830. {
  10831. front: {
  10832. height: math.unit(2.4, "meters"),
  10833. weight: math.unit(70, "kg"),
  10834. name: "Front",
  10835. image: {
  10836. source: "./media/characters/nyanuxk/front.svg",
  10837. extra: 1172 / 1084,
  10838. bottom: 0.065
  10839. }
  10840. },
  10841. side: {
  10842. height: math.unit(2.4, "meters"),
  10843. weight: math.unit(70, "kg"),
  10844. name: "Side",
  10845. image: {
  10846. source: "./media/characters/nyanuxk/side.svg",
  10847. extra: 1190 / 1132,
  10848. bottom: 0.007
  10849. }
  10850. },
  10851. back: {
  10852. height: math.unit(2.4, "meters"),
  10853. weight: math.unit(70, "kg"),
  10854. name: "Back",
  10855. image: {
  10856. source: "./media/characters/nyanuxk/back.svg",
  10857. extra: 1200 / 1141,
  10858. bottom: 0.015
  10859. }
  10860. },
  10861. foot: {
  10862. height: math.unit(0.52, "meters"),
  10863. name: "Foot",
  10864. image: {
  10865. source: "./media/characters/nyanuxk/foot.svg"
  10866. }
  10867. },
  10868. },
  10869. [
  10870. {
  10871. name: "Micro",
  10872. height: math.unit(2, "cm")
  10873. },
  10874. {
  10875. name: "Normal",
  10876. height: math.unit(2.4, "meters"),
  10877. default: true
  10878. },
  10879. {
  10880. name: "Smaller Macro",
  10881. height: math.unit(120, "meters")
  10882. },
  10883. {
  10884. name: "Bigger Macro",
  10885. height: math.unit(1.2, "km")
  10886. },
  10887. {
  10888. name: "Megamacro",
  10889. height: math.unit(15, "kilometers")
  10890. },
  10891. {
  10892. name: "Gigamacro",
  10893. height: math.unit(2000, "km")
  10894. },
  10895. {
  10896. name: "Teramacro",
  10897. height: math.unit(500000, "km")
  10898. },
  10899. ]
  10900. ))
  10901. characterMakers.push(() => makeCharacter(
  10902. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  10903. {
  10904. side: {
  10905. height: math.unit(6, "feet"),
  10906. name: "Side",
  10907. image: {
  10908. source: "./media/characters/ailbhe/side.svg",
  10909. extra: 757 / 464,
  10910. bottom: 0.041
  10911. }
  10912. },
  10913. },
  10914. [
  10915. {
  10916. name: "Normal",
  10917. height: math.unit(1.07, "meters"),
  10918. default: true
  10919. },
  10920. ]
  10921. ))
  10922. characterMakers.push(() => makeCharacter(
  10923. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  10924. {
  10925. front: {
  10926. height: math.unit(6, "feet"),
  10927. weight: math.unit(120, "kg"),
  10928. name: "Front",
  10929. image: {
  10930. source: "./media/characters/zevulfius/front.svg",
  10931. extra: 965 / 903
  10932. }
  10933. },
  10934. side: {
  10935. height: math.unit(6, "feet"),
  10936. weight: math.unit(120, "kg"),
  10937. name: "Side",
  10938. image: {
  10939. source: "./media/characters/zevulfius/side.svg",
  10940. extra: 939 / 900
  10941. }
  10942. },
  10943. back: {
  10944. height: math.unit(6, "feet"),
  10945. weight: math.unit(120, "kg"),
  10946. name: "Back",
  10947. image: {
  10948. source: "./media/characters/zevulfius/back.svg",
  10949. extra: 918 / 854,
  10950. bottom: 0.005
  10951. }
  10952. },
  10953. foot: {
  10954. height: math.unit(6 / 3.72, "feet"),
  10955. name: "Foot",
  10956. image: {
  10957. source: "./media/characters/zevulfius/foot.svg"
  10958. }
  10959. },
  10960. },
  10961. [
  10962. {
  10963. name: "Macro",
  10964. height: math.unit(750, "meters")
  10965. },
  10966. {
  10967. name: "Megamacro",
  10968. height: math.unit(20, "km"),
  10969. default: true
  10970. },
  10971. {
  10972. name: "Gigamacro",
  10973. height: math.unit(2000, "km")
  10974. },
  10975. {
  10976. name: "Teramacro",
  10977. height: math.unit(250000, "km")
  10978. },
  10979. ]
  10980. ))
  10981. characterMakers.push(() => makeCharacter(
  10982. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  10983. {
  10984. front: {
  10985. height: math.unit(100, "feet"),
  10986. weight: math.unit(350, "kg"),
  10987. name: "Front",
  10988. image: {
  10989. source: "./media/characters/rikes/front.svg",
  10990. extra: 1565 / 1483,
  10991. bottom: 0.017
  10992. }
  10993. },
  10994. },
  10995. [
  10996. {
  10997. name: "Macro",
  10998. height: math.unit(100, "feet"),
  10999. default: true
  11000. },
  11001. ]
  11002. ))
  11003. characterMakers.push(() => makeCharacter(
  11004. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  11005. {
  11006. front: {
  11007. height: math.unit(8, "feet"),
  11008. weight: math.unit(356, "lb"),
  11009. name: "Front",
  11010. image: {
  11011. source: "./media/characters/adam-silver-mane/front.svg",
  11012. extra: 1036/937,
  11013. bottom: 63/1099
  11014. }
  11015. },
  11016. side: {
  11017. height: math.unit(8, "feet"),
  11018. weight: math.unit(356, "lb"),
  11019. name: "Side",
  11020. image: {
  11021. source: "./media/characters/adam-silver-mane/side.svg",
  11022. extra: 997/901,
  11023. bottom: 59/1056
  11024. }
  11025. },
  11026. frontNsfw: {
  11027. height: math.unit(8, "feet"),
  11028. weight: math.unit(356, "lb"),
  11029. name: "Front (NSFW)",
  11030. image: {
  11031. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  11032. extra: 1036/937,
  11033. bottom: 63/1099
  11034. }
  11035. },
  11036. sideNsfw: {
  11037. height: math.unit(8, "feet"),
  11038. weight: math.unit(356, "lb"),
  11039. name: "Side (NSFW)",
  11040. image: {
  11041. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  11042. extra: 997/901,
  11043. bottom: 59/1056
  11044. }
  11045. },
  11046. dick: {
  11047. height: math.unit(2.1, "feet"),
  11048. name: "Dick",
  11049. image: {
  11050. source: "./media/characters/adam-silver-mane/dick.svg"
  11051. }
  11052. },
  11053. taur: {
  11054. height: math.unit(16, "feet"),
  11055. weight: math.unit(1500, "kg"),
  11056. name: "Taur",
  11057. image: {
  11058. source: "./media/characters/adam-silver-mane/taur.svg",
  11059. extra: 1713 / 1571,
  11060. bottom: 0.01
  11061. }
  11062. },
  11063. },
  11064. [
  11065. {
  11066. name: "Normal",
  11067. height: math.unit(8, "feet")
  11068. },
  11069. {
  11070. name: "Minimacro",
  11071. height: math.unit(80, "feet")
  11072. },
  11073. {
  11074. name: "MDA",
  11075. height: math.unit(80, "meters")
  11076. },
  11077. {
  11078. name: "Macro",
  11079. height: math.unit(800, "feet"),
  11080. default: true
  11081. },
  11082. {
  11083. name: "Megamacro",
  11084. height: math.unit(8000, "feet")
  11085. },
  11086. {
  11087. name: "Gigamacro",
  11088. height: math.unit(800, "miles")
  11089. },
  11090. {
  11091. name: "Teramacro",
  11092. height: math.unit(80000, "miles")
  11093. },
  11094. {
  11095. name: "Celestial",
  11096. height: math.unit(8e6, "miles")
  11097. },
  11098. {
  11099. name: "Star Dragon",
  11100. height: math.unit(800000, "parsecs")
  11101. },
  11102. {
  11103. name: "Godly",
  11104. height: math.unit(800, "teraparsecs")
  11105. },
  11106. ]
  11107. ))
  11108. characterMakers.push(() => makeCharacter(
  11109. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  11110. {
  11111. front: {
  11112. height: math.unit(6, "feet"),
  11113. weight: math.unit(150, "lb"),
  11114. name: "Front",
  11115. image: {
  11116. source: "./media/characters/ky'owin/front.svg",
  11117. extra: 3888 / 3068,
  11118. bottom: 0.015
  11119. }
  11120. },
  11121. },
  11122. [
  11123. {
  11124. name: "Normal",
  11125. height: math.unit(6 + 8 / 12, "feet")
  11126. },
  11127. {
  11128. name: "Large",
  11129. height: math.unit(68, "feet")
  11130. },
  11131. {
  11132. name: "Macro",
  11133. height: math.unit(132, "feet")
  11134. },
  11135. {
  11136. name: "Macro+",
  11137. height: math.unit(340, "feet")
  11138. },
  11139. {
  11140. name: "Macro++",
  11141. height: math.unit(680, "feet"),
  11142. default: true
  11143. },
  11144. {
  11145. name: "Megamacro",
  11146. height: math.unit(1, "mile")
  11147. },
  11148. {
  11149. name: "Megamacro+",
  11150. height: math.unit(10, "miles")
  11151. },
  11152. ]
  11153. ))
  11154. characterMakers.push(() => makeCharacter(
  11155. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  11156. {
  11157. front: {
  11158. height: math.unit(4, "feet"),
  11159. weight: math.unit(50, "lb"),
  11160. name: "Front",
  11161. image: {
  11162. source: "./media/characters/mal/front.svg",
  11163. extra: 785 / 724,
  11164. bottom: 0.07
  11165. }
  11166. },
  11167. },
  11168. [
  11169. {
  11170. name: "Micro",
  11171. height: math.unit(4, "inches")
  11172. },
  11173. {
  11174. name: "Normal",
  11175. height: math.unit(4, "feet"),
  11176. default: true
  11177. },
  11178. {
  11179. name: "Macro",
  11180. height: math.unit(200, "feet")
  11181. },
  11182. ]
  11183. ))
  11184. characterMakers.push(() => makeCharacter(
  11185. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  11186. {
  11187. front: {
  11188. height: math.unit(6, "feet"),
  11189. weight: math.unit(150, "lb"),
  11190. name: "Front",
  11191. image: {
  11192. source: "./media/characters/jordan-deware/front.svg",
  11193. extra: 1191 / 1012
  11194. }
  11195. },
  11196. },
  11197. [
  11198. {
  11199. name: "Nano",
  11200. height: math.unit(0.01, "mm")
  11201. },
  11202. {
  11203. name: "Minimicro",
  11204. height: math.unit(1, "mm")
  11205. },
  11206. {
  11207. name: "Micro",
  11208. height: math.unit(0.5, "inches")
  11209. },
  11210. {
  11211. name: "Normal",
  11212. height: math.unit(4, "feet"),
  11213. default: true
  11214. },
  11215. {
  11216. name: "Minimacro",
  11217. height: math.unit(40, "meters")
  11218. },
  11219. {
  11220. name: "Small Macro",
  11221. height: math.unit(400, "meters")
  11222. },
  11223. {
  11224. name: "Macro",
  11225. height: math.unit(4, "miles")
  11226. },
  11227. {
  11228. name: "Megamacro",
  11229. height: math.unit(40, "miles")
  11230. },
  11231. {
  11232. name: "Megamacro+",
  11233. height: math.unit(400, "miles")
  11234. },
  11235. {
  11236. name: "Gigamacro",
  11237. height: math.unit(400000, "miles")
  11238. },
  11239. ]
  11240. ))
  11241. characterMakers.push(() => makeCharacter(
  11242. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  11243. {
  11244. side: {
  11245. height: math.unit(6, "feet"),
  11246. weight: math.unit(150, "lb"),
  11247. name: "Side",
  11248. image: {
  11249. source: "./media/characters/kimiko/side.svg",
  11250. extra: 600 / 358
  11251. }
  11252. },
  11253. },
  11254. [
  11255. {
  11256. name: "Normal",
  11257. height: math.unit(15, "feet"),
  11258. default: true
  11259. },
  11260. {
  11261. name: "Macro",
  11262. height: math.unit(220, "feet")
  11263. },
  11264. {
  11265. name: "Macro+",
  11266. height: math.unit(1450, "feet")
  11267. },
  11268. {
  11269. name: "Megamacro",
  11270. height: math.unit(11500, "feet")
  11271. },
  11272. {
  11273. name: "Gigamacro",
  11274. height: math.unit(9500, "miles")
  11275. },
  11276. {
  11277. name: "Teramacro",
  11278. height: math.unit(2208005005, "miles")
  11279. },
  11280. {
  11281. name: "Examacro",
  11282. height: math.unit(2750, "parsecs")
  11283. },
  11284. {
  11285. name: "Zettamacro",
  11286. height: math.unit(101500, "parsecs")
  11287. },
  11288. ]
  11289. ))
  11290. characterMakers.push(() => makeCharacter(
  11291. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  11292. {
  11293. front: {
  11294. height: math.unit(6, "feet"),
  11295. weight: math.unit(70, "kg"),
  11296. name: "Front",
  11297. image: {
  11298. source: "./media/characters/andrew-sleepy/front.svg"
  11299. }
  11300. },
  11301. side: {
  11302. height: math.unit(6, "feet"),
  11303. weight: math.unit(70, "kg"),
  11304. name: "Side",
  11305. image: {
  11306. source: "./media/characters/andrew-sleepy/side.svg"
  11307. }
  11308. },
  11309. },
  11310. [
  11311. {
  11312. name: "Micro",
  11313. height: math.unit(1, "mm"),
  11314. default: true
  11315. },
  11316. ]
  11317. ))
  11318. characterMakers.push(() => makeCharacter(
  11319. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  11320. {
  11321. front: {
  11322. height: math.unit(6, "feet"),
  11323. weight: math.unit(150, "lb"),
  11324. name: "Front",
  11325. image: {
  11326. source: "./media/characters/judio/front.svg",
  11327. extra: 1258 / 1110
  11328. }
  11329. },
  11330. },
  11331. [
  11332. {
  11333. name: "Normal",
  11334. height: math.unit(5 + 6 / 12, "feet")
  11335. },
  11336. {
  11337. name: "Macro",
  11338. height: math.unit(1000, "feet"),
  11339. default: true
  11340. },
  11341. {
  11342. name: "Megamacro",
  11343. height: math.unit(10, "miles")
  11344. },
  11345. ]
  11346. ))
  11347. characterMakers.push(() => makeCharacter(
  11348. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  11349. {
  11350. frontDressed: {
  11351. height: math.unit(6, "feet"),
  11352. weight: math.unit(68, "kg"),
  11353. name: "Front (Dressed)",
  11354. image: {
  11355. source: "./media/characters/nomaxice/front-dressed.svg",
  11356. extra: 1137/824,
  11357. bottom: 74/1211
  11358. }
  11359. },
  11360. frontShorts: {
  11361. height: math.unit(6, "feet"),
  11362. weight: math.unit(68, "kg"),
  11363. name: "Front (Shorts)",
  11364. image: {
  11365. source: "./media/characters/nomaxice/front-shorts.svg",
  11366. extra: 1137/824,
  11367. bottom: 74/1211
  11368. }
  11369. },
  11370. back: {
  11371. height: math.unit(6, "feet"),
  11372. weight: math.unit(68, "kg"),
  11373. name: "Back",
  11374. image: {
  11375. source: "./media/characters/nomaxice/back.svg",
  11376. extra: 822/786,
  11377. bottom: 39/861
  11378. }
  11379. },
  11380. hand: {
  11381. height: math.unit(0.565, "feet"),
  11382. name: "Hand",
  11383. image: {
  11384. source: "./media/characters/nomaxice/hand.svg"
  11385. }
  11386. },
  11387. foot: {
  11388. height: math.unit(1, "feet"),
  11389. name: "Foot",
  11390. image: {
  11391. source: "./media/characters/nomaxice/foot.svg"
  11392. }
  11393. },
  11394. },
  11395. [
  11396. {
  11397. name: "Micro",
  11398. height: math.unit(8, "cm")
  11399. },
  11400. {
  11401. name: "Norm",
  11402. height: math.unit(1.82, "m")
  11403. },
  11404. {
  11405. name: "Norm+",
  11406. height: math.unit(8.8, "feet"),
  11407. default: true
  11408. },
  11409. {
  11410. name: "Big",
  11411. height: math.unit(8, "meters")
  11412. },
  11413. {
  11414. name: "Macro",
  11415. height: math.unit(18, "meters")
  11416. },
  11417. {
  11418. name: "Macro+",
  11419. height: math.unit(88, "meters")
  11420. },
  11421. ]
  11422. ))
  11423. characterMakers.push(() => makeCharacter(
  11424. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  11425. {
  11426. front: {
  11427. height: math.unit(12, "feet"),
  11428. weight: math.unit(1.5, "tons"),
  11429. name: "Front",
  11430. image: {
  11431. source: "./media/characters/dydros/front.svg",
  11432. extra: 863 / 800,
  11433. bottom: 0.015
  11434. }
  11435. },
  11436. back: {
  11437. height: math.unit(12, "feet"),
  11438. weight: math.unit(1.5, "tons"),
  11439. name: "Back",
  11440. image: {
  11441. source: "./media/characters/dydros/back.svg",
  11442. extra: 900 / 843,
  11443. bottom: 0.005
  11444. }
  11445. },
  11446. },
  11447. [
  11448. {
  11449. name: "Normal",
  11450. height: math.unit(12, "feet"),
  11451. default: true
  11452. },
  11453. ]
  11454. ))
  11455. characterMakers.push(() => makeCharacter(
  11456. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  11457. {
  11458. front: {
  11459. height: math.unit(6, "feet"),
  11460. weight: math.unit(100, "kg"),
  11461. name: "Front",
  11462. image: {
  11463. source: "./media/characters/riggi/front.svg",
  11464. extra: 5787 / 5303
  11465. }
  11466. },
  11467. hyper: {
  11468. height: math.unit(6 * 5 / 3, "feet"),
  11469. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  11470. name: "Hyper",
  11471. image: {
  11472. source: "./media/characters/riggi/hyper.svg",
  11473. extra: 3595 / 3485
  11474. }
  11475. },
  11476. },
  11477. [
  11478. {
  11479. name: "Small Macro",
  11480. height: math.unit(50, "feet")
  11481. },
  11482. {
  11483. name: "Default",
  11484. height: math.unit(200, "feet"),
  11485. default: true
  11486. },
  11487. {
  11488. name: "Loom",
  11489. height: math.unit(10000, "feet")
  11490. },
  11491. {
  11492. name: "Cruising Altitude",
  11493. height: math.unit(30000, "feet")
  11494. },
  11495. {
  11496. name: "Megamacro",
  11497. height: math.unit(100, "miles")
  11498. },
  11499. {
  11500. name: "Continent Sized",
  11501. height: math.unit(2800, "miles")
  11502. },
  11503. {
  11504. name: "Earth Sized",
  11505. height: math.unit(8000, "miles")
  11506. },
  11507. ]
  11508. ))
  11509. characterMakers.push(() => makeCharacter(
  11510. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  11511. {
  11512. front: {
  11513. height: math.unit(6, "feet"),
  11514. weight: math.unit(250, "lb"),
  11515. name: "Front",
  11516. image: {
  11517. source: "./media/characters/alexi/front.svg",
  11518. extra: 3483 / 3291,
  11519. bottom: 0.04
  11520. }
  11521. },
  11522. back: {
  11523. height: math.unit(6, "feet"),
  11524. weight: math.unit(250, "lb"),
  11525. name: "Back",
  11526. image: {
  11527. source: "./media/characters/alexi/back.svg",
  11528. extra: 3533 / 3356,
  11529. bottom: 0.021
  11530. }
  11531. },
  11532. frontTransforming: {
  11533. height: math.unit(8.58, "feet"),
  11534. weight: math.unit(1300, "lb"),
  11535. name: "Transforming",
  11536. image: {
  11537. source: "./media/characters/alexi/front-transforming.svg",
  11538. extra: 437 / 409,
  11539. bottom: 19 / 458.66
  11540. }
  11541. },
  11542. frontTransformed: {
  11543. height: math.unit(12.5, "feet"),
  11544. weight: math.unit(4000, "lb"),
  11545. name: "Transformed",
  11546. image: {
  11547. source: "./media/characters/alexi/front-transformed.svg",
  11548. extra: 639 / 614,
  11549. bottom: 30.55 / 671
  11550. }
  11551. },
  11552. },
  11553. [
  11554. {
  11555. name: "Normal",
  11556. height: math.unit(14, "feet"),
  11557. default: true
  11558. },
  11559. {
  11560. name: "Minimacro",
  11561. height: math.unit(30, "meters")
  11562. },
  11563. {
  11564. name: "Macro",
  11565. height: math.unit(500, "meters")
  11566. },
  11567. {
  11568. name: "Megamacro",
  11569. height: math.unit(9000, "km")
  11570. },
  11571. {
  11572. name: "Teramacro",
  11573. height: math.unit(384000, "km")
  11574. },
  11575. ]
  11576. ))
  11577. characterMakers.push(() => makeCharacter(
  11578. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  11579. {
  11580. front: {
  11581. height: math.unit(6, "feet"),
  11582. weight: math.unit(150, "lb"),
  11583. name: "Front",
  11584. image: {
  11585. source: "./media/characters/kayroo/front.svg",
  11586. extra: 1153 / 1038,
  11587. bottom: 0.06
  11588. }
  11589. },
  11590. foot: {
  11591. height: math.unit(6, "feet"),
  11592. weight: math.unit(150, "lb"),
  11593. name: "Foot",
  11594. image: {
  11595. source: "./media/characters/kayroo/foot.svg"
  11596. }
  11597. },
  11598. },
  11599. [
  11600. {
  11601. name: "Normal",
  11602. height: math.unit(8, "feet"),
  11603. default: true
  11604. },
  11605. {
  11606. name: "Minimacro",
  11607. height: math.unit(250, "feet")
  11608. },
  11609. {
  11610. name: "Macro",
  11611. height: math.unit(2800, "feet")
  11612. },
  11613. {
  11614. name: "Megamacro",
  11615. height: math.unit(5200, "feet")
  11616. },
  11617. {
  11618. name: "Gigamacro",
  11619. height: math.unit(27000, "feet")
  11620. },
  11621. {
  11622. name: "Omega",
  11623. height: math.unit(45000, "feet")
  11624. },
  11625. ]
  11626. ))
  11627. characterMakers.push(() => makeCharacter(
  11628. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  11629. {
  11630. front: {
  11631. height: math.unit(18, "feet"),
  11632. weight: math.unit(5800, "lb"),
  11633. name: "Front",
  11634. image: {
  11635. source: "./media/characters/rhys/front.svg",
  11636. extra: 3386 / 3090,
  11637. bottom: 0.07
  11638. }
  11639. },
  11640. },
  11641. [
  11642. {
  11643. name: "Normal",
  11644. height: math.unit(18, "feet"),
  11645. default: true
  11646. },
  11647. {
  11648. name: "Working Size",
  11649. height: math.unit(200, "feet")
  11650. },
  11651. {
  11652. name: "Demolition Size",
  11653. height: math.unit(2000, "feet")
  11654. },
  11655. {
  11656. name: "Maximum Licensed Size",
  11657. height: math.unit(5, "miles")
  11658. },
  11659. {
  11660. name: "Maximum Observed Size",
  11661. height: math.unit(10, "yottameters")
  11662. },
  11663. ]
  11664. ))
  11665. characterMakers.push(() => makeCharacter(
  11666. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  11667. {
  11668. front: {
  11669. height: math.unit(6, "feet"),
  11670. weight: math.unit(250, "lb"),
  11671. name: "Front",
  11672. image: {
  11673. source: "./media/characters/toto/front.svg",
  11674. extra: 527 / 479,
  11675. bottom: 0.05
  11676. }
  11677. },
  11678. },
  11679. [
  11680. {
  11681. name: "Micro",
  11682. height: math.unit(3, "feet")
  11683. },
  11684. {
  11685. name: "Normal",
  11686. height: math.unit(10, "feet")
  11687. },
  11688. {
  11689. name: "Macro",
  11690. height: math.unit(150, "feet"),
  11691. default: true
  11692. },
  11693. {
  11694. name: "Megamacro",
  11695. height: math.unit(1200, "feet")
  11696. },
  11697. ]
  11698. ))
  11699. characterMakers.push(() => makeCharacter(
  11700. { name: "King", species: ["lion"], tags: ["anthro"] },
  11701. {
  11702. back: {
  11703. height: math.unit(6, "feet"),
  11704. weight: math.unit(150, "lb"),
  11705. name: "Back",
  11706. image: {
  11707. source: "./media/characters/king/back.svg"
  11708. }
  11709. },
  11710. },
  11711. [
  11712. {
  11713. name: "Micro",
  11714. height: math.unit(2, "inches")
  11715. },
  11716. {
  11717. name: "Normal",
  11718. height: math.unit(8, "feet")
  11719. },
  11720. {
  11721. name: "Macro",
  11722. height: math.unit(200, "feet"),
  11723. default: true
  11724. },
  11725. {
  11726. name: "Megamacro",
  11727. height: math.unit(50, "miles")
  11728. },
  11729. ]
  11730. ))
  11731. characterMakers.push(() => makeCharacter(
  11732. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  11733. {
  11734. front: {
  11735. height: math.unit(11, "feet"),
  11736. weight: math.unit(1400, "lb"),
  11737. name: "Front",
  11738. image: {
  11739. source: "./media/characters/cordite/front.svg",
  11740. extra: 1919/1827,
  11741. bottom: 40/1959
  11742. }
  11743. },
  11744. side: {
  11745. height: math.unit(11, "feet"),
  11746. weight: math.unit(1400, "lb"),
  11747. name: "Side",
  11748. image: {
  11749. source: "./media/characters/cordite/side.svg",
  11750. extra: 1908/1793,
  11751. bottom: 38/1946
  11752. }
  11753. },
  11754. back: {
  11755. height: math.unit(11, "feet"),
  11756. weight: math.unit(1400, "lb"),
  11757. name: "Back",
  11758. image: {
  11759. source: "./media/characters/cordite/back.svg",
  11760. extra: 1938/1837,
  11761. bottom: 10/1948
  11762. }
  11763. },
  11764. feral: {
  11765. height: math.unit(2, "feet"),
  11766. weight: math.unit(90, "lb"),
  11767. name: "Feral",
  11768. image: {
  11769. source: "./media/characters/cordite/feral.svg",
  11770. extra: 1260 / 755,
  11771. bottom: 0.05
  11772. }
  11773. },
  11774. },
  11775. [
  11776. {
  11777. name: "Normal",
  11778. height: math.unit(11, "feet"),
  11779. default: true
  11780. },
  11781. ]
  11782. ))
  11783. characterMakers.push(() => makeCharacter(
  11784. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  11785. {
  11786. front: {
  11787. height: math.unit(6, "feet"),
  11788. weight: math.unit(150, "lb"),
  11789. name: "Front",
  11790. image: {
  11791. source: "./media/characters/pianostrong/front.svg",
  11792. extra: 6577 / 6254,
  11793. bottom: 0.02
  11794. }
  11795. },
  11796. side: {
  11797. height: math.unit(6, "feet"),
  11798. weight: math.unit(150, "lb"),
  11799. name: "Side",
  11800. image: {
  11801. source: "./media/characters/pianostrong/side.svg",
  11802. extra: 6106 / 5730
  11803. }
  11804. },
  11805. back: {
  11806. height: math.unit(6, "feet"),
  11807. weight: math.unit(150, "lb"),
  11808. name: "Back",
  11809. image: {
  11810. source: "./media/characters/pianostrong/back.svg",
  11811. extra: 6085 / 5733,
  11812. bottom: 0.01
  11813. }
  11814. },
  11815. },
  11816. [
  11817. {
  11818. name: "Macro",
  11819. height: math.unit(100, "feet")
  11820. },
  11821. {
  11822. name: "Macro+",
  11823. height: math.unit(300, "feet"),
  11824. default: true
  11825. },
  11826. {
  11827. name: "Macro++",
  11828. height: math.unit(1000, "feet")
  11829. },
  11830. ]
  11831. ))
  11832. characterMakers.push(() => makeCharacter(
  11833. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  11834. {
  11835. front: {
  11836. height: math.unit(6, "feet"),
  11837. weight: math.unit(150, "lb"),
  11838. name: "Front",
  11839. image: {
  11840. source: "./media/characters/kona/front.svg",
  11841. extra: 2960 / 2629,
  11842. bottom: 0.005
  11843. }
  11844. },
  11845. },
  11846. [
  11847. {
  11848. name: "Normal",
  11849. height: math.unit(11 + 8 / 12, "feet")
  11850. },
  11851. {
  11852. name: "Macro",
  11853. height: math.unit(850, "feet"),
  11854. default: true
  11855. },
  11856. {
  11857. name: "Macro+",
  11858. height: math.unit(1.5, "km"),
  11859. default: true
  11860. },
  11861. {
  11862. name: "Megamacro",
  11863. height: math.unit(80, "miles")
  11864. },
  11865. {
  11866. name: "Gigamacro",
  11867. height: math.unit(3500, "miles")
  11868. },
  11869. ]
  11870. ))
  11871. characterMakers.push(() => makeCharacter(
  11872. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  11873. {
  11874. side: {
  11875. height: math.unit(1.9, "meters"),
  11876. weight: math.unit(326, "kg"),
  11877. name: "Side",
  11878. image: {
  11879. source: "./media/characters/levi/side.svg",
  11880. extra: 1704 / 1334,
  11881. bottom: 0.02
  11882. }
  11883. },
  11884. },
  11885. [
  11886. {
  11887. name: "Normal",
  11888. height: math.unit(1.9, "meters"),
  11889. default: true
  11890. },
  11891. {
  11892. name: "Macro",
  11893. height: math.unit(20, "meters")
  11894. },
  11895. {
  11896. name: "Macro+",
  11897. height: math.unit(200, "meters")
  11898. },
  11899. {
  11900. name: "Megamacro",
  11901. height: math.unit(2, "km")
  11902. },
  11903. {
  11904. name: "Megamacro+",
  11905. height: math.unit(20, "km")
  11906. },
  11907. {
  11908. name: "Gigamacro",
  11909. height: math.unit(2500, "km")
  11910. },
  11911. {
  11912. name: "Gigamacro+",
  11913. height: math.unit(120000, "km")
  11914. },
  11915. {
  11916. name: "Teramacro",
  11917. height: math.unit(7.77e6, "km")
  11918. },
  11919. ]
  11920. ))
  11921. characterMakers.push(() => makeCharacter(
  11922. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  11923. {
  11924. front: {
  11925. height: math.unit(6 + 4/12, "feet"),
  11926. weight: math.unit(190, "lb"),
  11927. name: "Front",
  11928. image: {
  11929. source: "./media/characters/bmc/front.svg",
  11930. extra: 1626/1472,
  11931. bottom: 79/1705
  11932. }
  11933. },
  11934. back: {
  11935. height: math.unit(6 + 4/12, "feet"),
  11936. weight: math.unit(190, "lb"),
  11937. name: "Back",
  11938. image: {
  11939. source: "./media/characters/bmc/back.svg",
  11940. extra: 1640/1479,
  11941. bottom: 45/1685
  11942. }
  11943. },
  11944. frontArmor: {
  11945. height: math.unit(6 + 4/12, "feet"),
  11946. weight: math.unit(190, "lb"),
  11947. name: "Front-armor",
  11948. image: {
  11949. source: "./media/characters/bmc/front-armor.svg",
  11950. extra: 1538/1468,
  11951. bottom: 79/1617
  11952. }
  11953. },
  11954. },
  11955. [
  11956. {
  11957. name: "Human-sized",
  11958. height: math.unit(6 + 4 / 12, "feet")
  11959. },
  11960. {
  11961. name: "Interactive Size",
  11962. height: math.unit(25, "feet")
  11963. },
  11964. {
  11965. name: "Small",
  11966. height: math.unit(250, "feet")
  11967. },
  11968. {
  11969. name: "Normal",
  11970. height: math.unit(1250, "feet"),
  11971. default: true
  11972. },
  11973. {
  11974. name: "Good Day",
  11975. height: math.unit(88, "miles")
  11976. },
  11977. {
  11978. name: "Largest Measured Size",
  11979. height: math.unit(105.960, "galaxies")
  11980. },
  11981. ]
  11982. ))
  11983. characterMakers.push(() => makeCharacter(
  11984. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  11985. {
  11986. front: {
  11987. height: math.unit(20, "feet"),
  11988. weight: math.unit(2016, "kg"),
  11989. name: "Front",
  11990. image: {
  11991. source: "./media/characters/sven-the-kaiju/front.svg",
  11992. extra: 1277/1250,
  11993. bottom: 35/1312
  11994. }
  11995. },
  11996. mouth: {
  11997. height: math.unit(1.85, "feet"),
  11998. name: "Mouth",
  11999. image: {
  12000. source: "./media/characters/sven-the-kaiju/mouth.svg"
  12001. }
  12002. },
  12003. },
  12004. [
  12005. {
  12006. name: "Fairy",
  12007. height: math.unit(6, "inches")
  12008. },
  12009. {
  12010. name: "Normal",
  12011. height: math.unit(20, "feet"),
  12012. default: true
  12013. },
  12014. {
  12015. name: "Rampage",
  12016. height: math.unit(200, "feet")
  12017. },
  12018. {
  12019. name: "Archfey Forest Guardian",
  12020. height: math.unit(1, "mile")
  12021. },
  12022. ]
  12023. ))
  12024. characterMakers.push(() => makeCharacter(
  12025. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  12026. {
  12027. front: {
  12028. height: math.unit(4, "meters"),
  12029. weight: math.unit(2, "tons"),
  12030. name: "Front",
  12031. image: {
  12032. source: "./media/characters/marik/front.svg",
  12033. extra: 1057 / 1003,
  12034. bottom: 0.08
  12035. }
  12036. },
  12037. },
  12038. [
  12039. {
  12040. name: "Normal",
  12041. height: math.unit(4, "meters"),
  12042. default: true
  12043. },
  12044. {
  12045. name: "Macro",
  12046. height: math.unit(20, "meters")
  12047. },
  12048. {
  12049. name: "Megamacro",
  12050. height: math.unit(50, "km")
  12051. },
  12052. {
  12053. name: "Gigamacro",
  12054. height: math.unit(100, "km")
  12055. },
  12056. {
  12057. name: "Alpha Macro",
  12058. height: math.unit(7.88e7, "yottameters")
  12059. },
  12060. ]
  12061. ))
  12062. characterMakers.push(() => makeCharacter(
  12063. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  12064. {
  12065. front: {
  12066. height: math.unit(6, "feet"),
  12067. weight: math.unit(110, "lb"),
  12068. name: "Front",
  12069. image: {
  12070. source: "./media/characters/mel/front.svg",
  12071. extra: 736 / 617,
  12072. bottom: 0.017
  12073. }
  12074. },
  12075. },
  12076. [
  12077. {
  12078. name: "Pico",
  12079. height: math.unit(3, "pm")
  12080. },
  12081. {
  12082. name: "Nano",
  12083. height: math.unit(3, "nm")
  12084. },
  12085. {
  12086. name: "Micro",
  12087. height: math.unit(0.3, "mm"),
  12088. default: true
  12089. },
  12090. {
  12091. name: "Micro+",
  12092. height: math.unit(3, "mm")
  12093. },
  12094. {
  12095. name: "Normal",
  12096. height: math.unit(5 + 10.5 / 12, "feet")
  12097. },
  12098. ]
  12099. ))
  12100. characterMakers.push(() => makeCharacter(
  12101. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  12102. {
  12103. kaiju: {
  12104. height: math.unit(1.75, "meters"),
  12105. weight: math.unit(55, "kg"),
  12106. name: "Kaiju",
  12107. image: {
  12108. source: "./media/characters/lykonous/kaiju.svg",
  12109. extra: 1055 / 946,
  12110. bottom: 0.135
  12111. }
  12112. },
  12113. },
  12114. [
  12115. {
  12116. name: "Normal",
  12117. height: math.unit(2.5, "meters"),
  12118. default: true
  12119. },
  12120. {
  12121. name: "Kaiju Dragon",
  12122. height: math.unit(60, "meters")
  12123. },
  12124. {
  12125. name: "Mega Kaiju",
  12126. height: math.unit(120, "km")
  12127. },
  12128. {
  12129. name: "Giga Kaiju",
  12130. height: math.unit(200, "megameters")
  12131. },
  12132. {
  12133. name: "Terra Kaiju",
  12134. height: math.unit(400, "gigameters")
  12135. },
  12136. {
  12137. name: "Kaiju Dragon God",
  12138. height: math.unit(13000, "exaparsecs")
  12139. },
  12140. ]
  12141. ))
  12142. characterMakers.push(() => makeCharacter(
  12143. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  12144. {
  12145. front: {
  12146. height: math.unit(6, "feet"),
  12147. weight: math.unit(150, "lb"),
  12148. name: "Front",
  12149. image: {
  12150. source: "./media/characters/blü/front.svg",
  12151. extra: 1883 / 1564,
  12152. bottom: 0.031
  12153. }
  12154. },
  12155. },
  12156. [
  12157. {
  12158. name: "Normal",
  12159. height: math.unit(13, "feet"),
  12160. default: true
  12161. },
  12162. {
  12163. name: "Big Boi",
  12164. height: math.unit(150, "meters")
  12165. },
  12166. {
  12167. name: "Mini Stomper",
  12168. height: math.unit(300, "meters")
  12169. },
  12170. {
  12171. name: "Macro",
  12172. height: math.unit(1000, "meters")
  12173. },
  12174. {
  12175. name: "Megamacro",
  12176. height: math.unit(11000, "meters")
  12177. },
  12178. {
  12179. name: "Gigamacro",
  12180. height: math.unit(11000, "km")
  12181. },
  12182. {
  12183. name: "Teramacro",
  12184. height: math.unit(420000, "km")
  12185. },
  12186. {
  12187. name: "Examacro",
  12188. height: math.unit(120, "parsecs")
  12189. },
  12190. {
  12191. name: "God Tho",
  12192. height: math.unit(98000000000, "parsecs")
  12193. },
  12194. ]
  12195. ))
  12196. characterMakers.push(() => makeCharacter(
  12197. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  12198. {
  12199. taurFront: {
  12200. height: math.unit(6, "feet"),
  12201. weight: math.unit(200, "lb"),
  12202. name: "Taur (Front)",
  12203. image: {
  12204. source: "./media/characters/scales/taur-front.svg",
  12205. extra: 1,
  12206. bottom: 0.05
  12207. }
  12208. },
  12209. taurBack: {
  12210. height: math.unit(6, "feet"),
  12211. weight: math.unit(200, "lb"),
  12212. name: "Taur (Back)",
  12213. image: {
  12214. source: "./media/characters/scales/taur-back.svg",
  12215. extra: 1,
  12216. bottom: 0.08
  12217. }
  12218. },
  12219. anthro: {
  12220. height: math.unit(6 * 7 / 12, "feet"),
  12221. weight: math.unit(100, "lb"),
  12222. name: "Anthro",
  12223. image: {
  12224. source: "./media/characters/scales/anthro.svg",
  12225. extra: 1,
  12226. bottom: 0.06
  12227. }
  12228. },
  12229. },
  12230. [
  12231. {
  12232. name: "Normal",
  12233. height: math.unit(12, "feet"),
  12234. default: true
  12235. },
  12236. ]
  12237. ))
  12238. characterMakers.push(() => makeCharacter(
  12239. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  12240. {
  12241. front: {
  12242. height: math.unit(6, "feet"),
  12243. weight: math.unit(150, "lb"),
  12244. name: "Front",
  12245. image: {
  12246. source: "./media/characters/koragos/front.svg",
  12247. extra: 841 / 794,
  12248. bottom: 0.035
  12249. }
  12250. },
  12251. back: {
  12252. height: math.unit(6, "feet"),
  12253. weight: math.unit(150, "lb"),
  12254. name: "Back",
  12255. image: {
  12256. source: "./media/characters/koragos/back.svg",
  12257. extra: 841 / 810,
  12258. bottom: 0.022
  12259. }
  12260. },
  12261. },
  12262. [
  12263. {
  12264. name: "Normal",
  12265. height: math.unit(6 + 11 / 12, "feet"),
  12266. default: true
  12267. },
  12268. {
  12269. name: "Macro",
  12270. height: math.unit(490, "feet")
  12271. },
  12272. {
  12273. name: "Megamacro",
  12274. height: math.unit(10, "miles")
  12275. },
  12276. {
  12277. name: "Gigamacro",
  12278. height: math.unit(50, "miles")
  12279. },
  12280. ]
  12281. ))
  12282. characterMakers.push(() => makeCharacter(
  12283. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  12284. {
  12285. front: {
  12286. height: math.unit(6, "feet"),
  12287. weight: math.unit(250, "lb"),
  12288. name: "Front",
  12289. image: {
  12290. source: "./media/characters/xylrem/front.svg",
  12291. extra: 3323 / 3050,
  12292. bottom: 0.065
  12293. }
  12294. },
  12295. },
  12296. [
  12297. {
  12298. name: "Micro",
  12299. height: math.unit(4, "feet")
  12300. },
  12301. {
  12302. name: "Normal",
  12303. height: math.unit(16, "feet"),
  12304. default: true
  12305. },
  12306. {
  12307. name: "Macro",
  12308. height: math.unit(2720, "feet")
  12309. },
  12310. {
  12311. name: "Megamacro",
  12312. height: math.unit(25000, "miles")
  12313. },
  12314. ]
  12315. ))
  12316. characterMakers.push(() => makeCharacter(
  12317. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  12318. {
  12319. front: {
  12320. height: math.unit(8, "feet"),
  12321. weight: math.unit(250, "kg"),
  12322. name: "Front",
  12323. image: {
  12324. source: "./media/characters/ikideru/front.svg",
  12325. extra: 930 / 870,
  12326. bottom: 0.087
  12327. }
  12328. },
  12329. back: {
  12330. height: math.unit(8, "feet"),
  12331. weight: math.unit(250, "kg"),
  12332. name: "Back",
  12333. image: {
  12334. source: "./media/characters/ikideru/back.svg",
  12335. extra: 919 / 852,
  12336. bottom: 0.055
  12337. }
  12338. },
  12339. },
  12340. [
  12341. {
  12342. name: "Rare",
  12343. height: math.unit(8, "feet"),
  12344. default: true
  12345. },
  12346. {
  12347. name: "Playful Loom",
  12348. height: math.unit(80, "feet")
  12349. },
  12350. {
  12351. name: "City Leaner",
  12352. height: math.unit(230, "feet")
  12353. },
  12354. {
  12355. name: "Megamacro",
  12356. height: math.unit(2500, "feet")
  12357. },
  12358. {
  12359. name: "Gigamacro",
  12360. height: math.unit(26400, "feet")
  12361. },
  12362. {
  12363. name: "Tectonic Shifter",
  12364. height: math.unit(1.7, "megameters")
  12365. },
  12366. {
  12367. name: "Planet Carer",
  12368. height: math.unit(21, "megameters")
  12369. },
  12370. {
  12371. name: "God",
  12372. height: math.unit(11157.22, "parsecs")
  12373. },
  12374. ]
  12375. ))
  12376. characterMakers.push(() => makeCharacter(
  12377. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  12378. {
  12379. front: {
  12380. height: math.unit(6, "feet"),
  12381. weight: math.unit(120, "lb"),
  12382. name: "Front",
  12383. image: {
  12384. source: "./media/characters/neo/front.svg"
  12385. }
  12386. },
  12387. },
  12388. [
  12389. {
  12390. name: "Micro",
  12391. height: math.unit(2, "inches"),
  12392. default: true
  12393. },
  12394. {
  12395. name: "Human Size",
  12396. height: math.unit(5 + 8 / 12, "feet")
  12397. },
  12398. ]
  12399. ))
  12400. characterMakers.push(() => makeCharacter(
  12401. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  12402. {
  12403. front: {
  12404. height: math.unit(13 + 10 / 12, "feet"),
  12405. weight: math.unit(5320, "lb"),
  12406. name: "Front",
  12407. image: {
  12408. source: "./media/characters/chauncey-chantz/front.svg",
  12409. extra: 1587 / 1435,
  12410. bottom: 0.02
  12411. }
  12412. },
  12413. },
  12414. [
  12415. {
  12416. name: "Normal",
  12417. height: math.unit(13 + 10 / 12, "feet"),
  12418. default: true
  12419. },
  12420. {
  12421. name: "Macro",
  12422. height: math.unit(45, "feet")
  12423. },
  12424. {
  12425. name: "Megamacro",
  12426. height: math.unit(250, "miles")
  12427. },
  12428. {
  12429. name: "Planetary",
  12430. height: math.unit(10000, "miles")
  12431. },
  12432. {
  12433. name: "Galactic",
  12434. height: math.unit(40000, "parsecs")
  12435. },
  12436. {
  12437. name: "Universal",
  12438. height: math.unit(1, "yottameter")
  12439. },
  12440. ]
  12441. ))
  12442. characterMakers.push(() => makeCharacter(
  12443. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  12444. {
  12445. front: {
  12446. height: math.unit(6, "feet"),
  12447. weight: math.unit(150, "lb"),
  12448. name: "Front",
  12449. image: {
  12450. source: "./media/characters/epifox/front.svg",
  12451. extra: 1,
  12452. bottom: 0.075
  12453. }
  12454. },
  12455. },
  12456. [
  12457. {
  12458. name: "Micro",
  12459. height: math.unit(6, "inches")
  12460. },
  12461. {
  12462. name: "Normal",
  12463. height: math.unit(12, "feet"),
  12464. default: true
  12465. },
  12466. {
  12467. name: "Macro",
  12468. height: math.unit(3810, "feet")
  12469. },
  12470. {
  12471. name: "Megamacro",
  12472. height: math.unit(500, "miles")
  12473. },
  12474. ]
  12475. ))
  12476. characterMakers.push(() => makeCharacter(
  12477. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  12478. {
  12479. front: {
  12480. height: math.unit(1.8796, "m"),
  12481. weight: math.unit(230, "lb"),
  12482. name: "Front",
  12483. image: {
  12484. source: "./media/characters/colin-t/front.svg",
  12485. extra: 1272 / 1193,
  12486. bottom: 0.07
  12487. }
  12488. },
  12489. },
  12490. [
  12491. {
  12492. name: "Micro",
  12493. height: math.unit(0.571, "meters")
  12494. },
  12495. {
  12496. name: "Normal",
  12497. height: math.unit(1.8796, "meters"),
  12498. default: true
  12499. },
  12500. {
  12501. name: "Tall",
  12502. height: math.unit(4, "meters")
  12503. },
  12504. {
  12505. name: "Macro",
  12506. height: math.unit(67.241, "meters")
  12507. },
  12508. {
  12509. name: "Megamacro",
  12510. height: math.unit(371.856, "meters")
  12511. },
  12512. {
  12513. name: "Planetary",
  12514. height: math.unit(12631.5689, "km")
  12515. },
  12516. ]
  12517. ))
  12518. characterMakers.push(() => makeCharacter(
  12519. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  12520. {
  12521. front: {
  12522. height: math.unit(1.85, "meters"),
  12523. weight: math.unit(80, "kg"),
  12524. name: "Front",
  12525. image: {
  12526. source: "./media/characters/matvei/front.svg",
  12527. extra: 614 / 594,
  12528. bottom: 0.01
  12529. }
  12530. },
  12531. },
  12532. [
  12533. {
  12534. name: "Normal",
  12535. height: math.unit(1.85, "meters"),
  12536. default: true
  12537. },
  12538. ]
  12539. ))
  12540. characterMakers.push(() => makeCharacter(
  12541. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  12542. {
  12543. front: {
  12544. height: math.unit(5 + 9 / 12, "feet"),
  12545. weight: math.unit(70, "lb"),
  12546. name: "Front",
  12547. image: {
  12548. source: "./media/characters/quincy/front.svg",
  12549. extra: 3041 / 2751
  12550. }
  12551. },
  12552. back: {
  12553. height: math.unit(5 + 9 / 12, "feet"),
  12554. weight: math.unit(70, "lb"),
  12555. name: "Back",
  12556. image: {
  12557. source: "./media/characters/quincy/back.svg",
  12558. extra: 3041 / 2751
  12559. }
  12560. },
  12561. flying: {
  12562. height: math.unit(5 + 4 / 12, "feet"),
  12563. weight: math.unit(70, "lb"),
  12564. name: "Flying",
  12565. image: {
  12566. source: "./media/characters/quincy/flying.svg",
  12567. extra: 1044 / 930
  12568. }
  12569. },
  12570. },
  12571. [
  12572. {
  12573. name: "Micro",
  12574. height: math.unit(3, "cm")
  12575. },
  12576. {
  12577. name: "Normal",
  12578. height: math.unit(5 + 9 / 12, "feet")
  12579. },
  12580. {
  12581. name: "Macro",
  12582. height: math.unit(200, "meters"),
  12583. default: true
  12584. },
  12585. {
  12586. name: "Megamacro",
  12587. height: math.unit(1000, "meters")
  12588. },
  12589. ]
  12590. ))
  12591. characterMakers.push(() => makeCharacter(
  12592. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  12593. {
  12594. front: {
  12595. height: math.unit(3 + 11/12, "feet"),
  12596. weight: math.unit(50, "lb"),
  12597. name: "Front",
  12598. image: {
  12599. source: "./media/characters/vanrel/front.svg",
  12600. extra: 1104/949,
  12601. bottom: 52/1156
  12602. }
  12603. },
  12604. back: {
  12605. height: math.unit(3 + 11/12, "feet"),
  12606. weight: math.unit(50, "lb"),
  12607. name: "Back",
  12608. image: {
  12609. source: "./media/characters/vanrel/back.svg",
  12610. extra: 1119/976,
  12611. bottom: 37/1156
  12612. }
  12613. },
  12614. tome: {
  12615. height: math.unit(1.35, "feet"),
  12616. weight: math.unit(10, "lb"),
  12617. name: "Vanrel's Tome",
  12618. rename: true,
  12619. image: {
  12620. source: "./media/characters/vanrel/tome.svg"
  12621. }
  12622. },
  12623. beans: {
  12624. height: math.unit(0.89, "feet"),
  12625. name: "Beans",
  12626. image: {
  12627. source: "./media/characters/vanrel/beans.svg"
  12628. }
  12629. },
  12630. },
  12631. [
  12632. {
  12633. name: "Normal",
  12634. height: math.unit(3 + 11/12, "feet"),
  12635. default: true
  12636. },
  12637. ]
  12638. ))
  12639. characterMakers.push(() => makeCharacter(
  12640. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  12641. {
  12642. front: {
  12643. height: math.unit(7 + 5 / 12, "feet"),
  12644. name: "Front",
  12645. image: {
  12646. source: "./media/characters/kuiper-vanrel/front.svg",
  12647. extra: 1219/1169,
  12648. bottom: 69/1288
  12649. }
  12650. },
  12651. back: {
  12652. height: math.unit(7 + 5 / 12, "feet"),
  12653. name: "Back",
  12654. image: {
  12655. source: "./media/characters/kuiper-vanrel/back.svg",
  12656. extra: 1236/1193,
  12657. bottom: 27/1263
  12658. }
  12659. },
  12660. foot: {
  12661. height: math.unit(0.55, "meters"),
  12662. name: "Foot",
  12663. image: {
  12664. source: "./media/characters/kuiper-vanrel/foot.svg",
  12665. }
  12666. },
  12667. battle: {
  12668. height: math.unit(6.824, "feet"),
  12669. name: "Battle",
  12670. image: {
  12671. source: "./media/characters/kuiper-vanrel/battle.svg",
  12672. extra: 1466 / 1327,
  12673. bottom: 29 / 1492.5
  12674. }
  12675. },
  12676. meerkui: {
  12677. height: math.unit(18, "inches"),
  12678. name: "Meerkui",
  12679. image: {
  12680. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  12681. extra: 1354/1289,
  12682. bottom: 69/1423
  12683. }
  12684. },
  12685. },
  12686. [
  12687. {
  12688. name: "Normal",
  12689. height: math.unit(7 + 5 / 12, "feet"),
  12690. default: true
  12691. },
  12692. ]
  12693. ))
  12694. characterMakers.push(() => makeCharacter(
  12695. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  12696. {
  12697. front: {
  12698. height: math.unit(8 + 5 / 12, "feet"),
  12699. name: "Front",
  12700. image: {
  12701. source: "./media/characters/keset-vanrel/front.svg",
  12702. extra: 1231/1148,
  12703. bottom: 82/1313
  12704. }
  12705. },
  12706. back: {
  12707. height: math.unit(8 + 5 / 12, "feet"),
  12708. name: "Back",
  12709. image: {
  12710. source: "./media/characters/keset-vanrel/back.svg",
  12711. extra: 1240/1174,
  12712. bottom: 33/1273
  12713. }
  12714. },
  12715. hand: {
  12716. height: math.unit(0.6, "meters"),
  12717. name: "Hand",
  12718. image: {
  12719. source: "./media/characters/keset-vanrel/hand.svg"
  12720. }
  12721. },
  12722. foot: {
  12723. height: math.unit(0.94978, "meters"),
  12724. name: "Foot",
  12725. image: {
  12726. source: "./media/characters/keset-vanrel/foot.svg"
  12727. }
  12728. },
  12729. battle: {
  12730. height: math.unit(7.408, "feet"),
  12731. name: "Battle",
  12732. image: {
  12733. source: "./media/characters/keset-vanrel/battle.svg",
  12734. extra: 1890 / 1386,
  12735. bottom: 73.28 / 1970
  12736. }
  12737. },
  12738. },
  12739. [
  12740. {
  12741. name: "Normal",
  12742. height: math.unit(8 + 5 / 12, "feet"),
  12743. default: true
  12744. },
  12745. ]
  12746. ))
  12747. characterMakers.push(() => makeCharacter(
  12748. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  12749. {
  12750. front: {
  12751. height: math.unit(6, "feet"),
  12752. weight: math.unit(150, "lb"),
  12753. name: "Front",
  12754. image: {
  12755. source: "./media/characters/neos/front.svg",
  12756. extra: 1696 / 992,
  12757. bottom: 0.14
  12758. }
  12759. },
  12760. },
  12761. [
  12762. {
  12763. name: "Normal",
  12764. height: math.unit(54, "cm"),
  12765. default: true
  12766. },
  12767. {
  12768. name: "Macro",
  12769. height: math.unit(100, "m")
  12770. },
  12771. {
  12772. name: "Megamacro",
  12773. height: math.unit(10, "km")
  12774. },
  12775. {
  12776. name: "Megamacro+",
  12777. height: math.unit(100, "km")
  12778. },
  12779. {
  12780. name: "Gigamacro",
  12781. height: math.unit(100, "Mm")
  12782. },
  12783. {
  12784. name: "Teramacro",
  12785. height: math.unit(100, "Gm")
  12786. },
  12787. {
  12788. name: "Examacro",
  12789. height: math.unit(100, "Em")
  12790. },
  12791. {
  12792. name: "Godly",
  12793. height: math.unit(10000, "Ym")
  12794. },
  12795. {
  12796. name: "Beyond Godly",
  12797. height: math.unit(25, "multiverses")
  12798. },
  12799. ]
  12800. ))
  12801. characterMakers.push(() => makeCharacter(
  12802. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  12803. {
  12804. feminine: {
  12805. height: math.unit(5, "feet"),
  12806. weight: math.unit(100, "lb"),
  12807. name: "Feminine",
  12808. image: {
  12809. source: "./media/characters/sammy-mouse/feminine.svg",
  12810. extra: 2526 / 2425,
  12811. bottom: 0.123
  12812. }
  12813. },
  12814. masculine: {
  12815. height: math.unit(5, "feet"),
  12816. weight: math.unit(100, "lb"),
  12817. name: "Masculine",
  12818. image: {
  12819. source: "./media/characters/sammy-mouse/masculine.svg",
  12820. extra: 2526 / 2425,
  12821. bottom: 0.123
  12822. }
  12823. },
  12824. },
  12825. [
  12826. {
  12827. name: "Micro",
  12828. height: math.unit(5, "inches")
  12829. },
  12830. {
  12831. name: "Normal",
  12832. height: math.unit(5, "feet"),
  12833. default: true
  12834. },
  12835. {
  12836. name: "Macro",
  12837. height: math.unit(60, "feet")
  12838. },
  12839. ]
  12840. ))
  12841. characterMakers.push(() => makeCharacter(
  12842. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  12843. {
  12844. front: {
  12845. height: math.unit(4, "feet"),
  12846. weight: math.unit(50, "lb"),
  12847. name: "Front",
  12848. image: {
  12849. source: "./media/characters/kole/front.svg",
  12850. extra: 1423 / 1303,
  12851. bottom: 0.025
  12852. }
  12853. },
  12854. back: {
  12855. height: math.unit(4, "feet"),
  12856. weight: math.unit(50, "lb"),
  12857. name: "Back",
  12858. image: {
  12859. source: "./media/characters/kole/back.svg",
  12860. extra: 1426 / 1280,
  12861. bottom: 0.02
  12862. }
  12863. },
  12864. },
  12865. [
  12866. {
  12867. name: "Normal",
  12868. height: math.unit(4, "feet"),
  12869. default: true
  12870. },
  12871. ]
  12872. ))
  12873. characterMakers.push(() => makeCharacter(
  12874. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  12875. {
  12876. front: {
  12877. height: math.unit(2.5, "feet"),
  12878. weight: math.unit(32, "lb"),
  12879. name: "Front",
  12880. image: {
  12881. source: "./media/characters/rufran/front.svg",
  12882. extra: 1313/885,
  12883. bottom: 94/1407
  12884. }
  12885. },
  12886. side: {
  12887. height: math.unit(2.5, "feet"),
  12888. weight: math.unit(32, "lb"),
  12889. name: "Side",
  12890. image: {
  12891. source: "./media/characters/rufran/side.svg",
  12892. extra: 1109/852,
  12893. bottom: 118/1227
  12894. }
  12895. },
  12896. back: {
  12897. height: math.unit(2.5, "feet"),
  12898. weight: math.unit(32, "lb"),
  12899. name: "Back",
  12900. image: {
  12901. source: "./media/characters/rufran/back.svg",
  12902. extra: 1280/878,
  12903. bottom: 131/1411
  12904. }
  12905. },
  12906. mouth: {
  12907. height: math.unit(1.13, "feet"),
  12908. name: "Mouth",
  12909. image: {
  12910. source: "./media/characters/rufran/mouth.svg"
  12911. }
  12912. },
  12913. foot: {
  12914. height: math.unit(1.33, "feet"),
  12915. name: "Foot",
  12916. image: {
  12917. source: "./media/characters/rufran/foot.svg"
  12918. }
  12919. },
  12920. koboldFront: {
  12921. height: math.unit(2 + 6 / 12, "feet"),
  12922. weight: math.unit(20, "lb"),
  12923. name: "Front (Kobold)",
  12924. image: {
  12925. source: "./media/characters/rufran/kobold-front.svg",
  12926. extra: 2041 / 1839,
  12927. bottom: 0.055
  12928. }
  12929. },
  12930. koboldBack: {
  12931. height: math.unit(2 + 6 / 12, "feet"),
  12932. weight: math.unit(20, "lb"),
  12933. name: "Back (Kobold)",
  12934. image: {
  12935. source: "./media/characters/rufran/kobold-back.svg",
  12936. extra: 2054 / 1839,
  12937. bottom: 0.01
  12938. }
  12939. },
  12940. koboldHand: {
  12941. height: math.unit(0.2166, "meters"),
  12942. name: "Hand (Kobold)",
  12943. image: {
  12944. source: "./media/characters/rufran/kobold-hand.svg"
  12945. }
  12946. },
  12947. koboldFoot: {
  12948. height: math.unit(0.185, "meters"),
  12949. name: "Foot (Kobold)",
  12950. image: {
  12951. source: "./media/characters/rufran/kobold-foot.svg"
  12952. }
  12953. },
  12954. },
  12955. [
  12956. {
  12957. name: "Micro",
  12958. height: math.unit(1, "inch")
  12959. },
  12960. {
  12961. name: "Normal",
  12962. height: math.unit(2 + 6 / 12, "feet"),
  12963. default: true
  12964. },
  12965. {
  12966. name: "Big",
  12967. height: math.unit(60, "feet")
  12968. },
  12969. {
  12970. name: "Macro",
  12971. height: math.unit(325, "feet")
  12972. },
  12973. ]
  12974. ))
  12975. characterMakers.push(() => makeCharacter(
  12976. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  12977. {
  12978. front: {
  12979. height: math.unit(0.3, "meters"),
  12980. weight: math.unit(3.5, "kg"),
  12981. name: "Front",
  12982. image: {
  12983. source: "./media/characters/chip/front.svg",
  12984. extra: 748 / 674
  12985. }
  12986. },
  12987. },
  12988. [
  12989. {
  12990. name: "Micro",
  12991. height: math.unit(1, "inch"),
  12992. default: true
  12993. },
  12994. ]
  12995. ))
  12996. characterMakers.push(() => makeCharacter(
  12997. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  12998. {
  12999. side: {
  13000. height: math.unit(2.3, "meters"),
  13001. weight: math.unit(3500, "lb"),
  13002. name: "Side",
  13003. image: {
  13004. source: "./media/characters/torvid/side.svg",
  13005. extra: 1972 / 722,
  13006. bottom: 0.035
  13007. }
  13008. },
  13009. },
  13010. [
  13011. {
  13012. name: "Normal",
  13013. height: math.unit(2.3, "meters"),
  13014. default: true
  13015. },
  13016. ]
  13017. ))
  13018. characterMakers.push(() => makeCharacter(
  13019. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  13020. {
  13021. front: {
  13022. height: math.unit(2, "meters"),
  13023. weight: math.unit(150.5, "kg"),
  13024. name: "Front",
  13025. image: {
  13026. source: "./media/characters/susan/front.svg",
  13027. extra: 693 / 635,
  13028. bottom: 0.05
  13029. }
  13030. },
  13031. },
  13032. [
  13033. {
  13034. name: "Megamacro",
  13035. height: math.unit(505, "miles"),
  13036. default: true
  13037. },
  13038. ]
  13039. ))
  13040. characterMakers.push(() => makeCharacter(
  13041. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  13042. {
  13043. front: {
  13044. height: math.unit(6, "feet"),
  13045. weight: math.unit(150, "lb"),
  13046. name: "Front",
  13047. image: {
  13048. source: "./media/characters/raindrops/front.svg",
  13049. extra: 2655 / 2461,
  13050. bottom: 49 / 2705
  13051. }
  13052. },
  13053. back: {
  13054. height: math.unit(6, "feet"),
  13055. weight: math.unit(150, "lb"),
  13056. name: "Back",
  13057. image: {
  13058. source: "./media/characters/raindrops/back.svg",
  13059. extra: 2574 / 2400,
  13060. bottom: 65 / 2634
  13061. }
  13062. },
  13063. },
  13064. [
  13065. {
  13066. name: "Micro",
  13067. height: math.unit(6, "inches")
  13068. },
  13069. {
  13070. name: "Normal",
  13071. height: math.unit(6 + 2 / 12, "feet")
  13072. },
  13073. {
  13074. name: "Macro",
  13075. height: math.unit(131, "feet"),
  13076. default: true
  13077. },
  13078. {
  13079. name: "Megamacro",
  13080. height: math.unit(15, "miles")
  13081. },
  13082. {
  13083. name: "Gigamacro",
  13084. height: math.unit(4000, "miles")
  13085. },
  13086. {
  13087. name: "Teramacro",
  13088. height: math.unit(315000, "miles")
  13089. },
  13090. ]
  13091. ))
  13092. characterMakers.push(() => makeCharacter(
  13093. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  13094. {
  13095. front: {
  13096. height: math.unit(2.794, "meters"),
  13097. weight: math.unit(325, "kg"),
  13098. name: "Front",
  13099. image: {
  13100. source: "./media/characters/tezwa/front.svg",
  13101. extra: 2083 / 1906,
  13102. bottom: 0.031
  13103. }
  13104. },
  13105. foot: {
  13106. height: math.unit(0.687, "meters"),
  13107. name: "Foot",
  13108. image: {
  13109. source: "./media/characters/tezwa/foot.svg"
  13110. }
  13111. },
  13112. },
  13113. [
  13114. {
  13115. name: "Normal",
  13116. height: math.unit(9 + 2 / 12, "feet"),
  13117. default: true
  13118. },
  13119. ]
  13120. ))
  13121. characterMakers.push(() => makeCharacter(
  13122. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  13123. {
  13124. front: {
  13125. height: math.unit(58, "feet"),
  13126. weight: math.unit(89000, "lb"),
  13127. name: "Front",
  13128. image: {
  13129. source: "./media/characters/typhus/front.svg",
  13130. extra: 816 / 800,
  13131. bottom: 0.065
  13132. }
  13133. },
  13134. },
  13135. [
  13136. {
  13137. name: "Macro",
  13138. height: math.unit(58, "feet"),
  13139. default: true
  13140. },
  13141. ]
  13142. ))
  13143. characterMakers.push(() => makeCharacter(
  13144. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  13145. {
  13146. front: {
  13147. height: math.unit(12, "feet"),
  13148. weight: math.unit(6, "tonnes"),
  13149. name: "Front",
  13150. image: {
  13151. source: "./media/characters/lyra-von-wulf/front.svg",
  13152. extra: 1,
  13153. bottom: 0.10
  13154. }
  13155. },
  13156. frontMecha: {
  13157. height: math.unit(12, "feet"),
  13158. weight: math.unit(12, "tonnes"),
  13159. name: "Front (Mecha)",
  13160. image: {
  13161. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  13162. extra: 1,
  13163. bottom: 0.042
  13164. }
  13165. },
  13166. maw: {
  13167. height: math.unit(2.2, "feet"),
  13168. name: "Maw",
  13169. image: {
  13170. source: "./media/characters/lyra-von-wulf/maw.svg"
  13171. }
  13172. },
  13173. },
  13174. [
  13175. {
  13176. name: "Normal",
  13177. height: math.unit(12, "feet"),
  13178. default: true
  13179. },
  13180. {
  13181. name: "Classic",
  13182. height: math.unit(50, "feet")
  13183. },
  13184. {
  13185. name: "Macro",
  13186. height: math.unit(500, "feet")
  13187. },
  13188. {
  13189. name: "Megamacro",
  13190. height: math.unit(1, "mile")
  13191. },
  13192. {
  13193. name: "Gigamacro",
  13194. height: math.unit(400, "miles")
  13195. },
  13196. {
  13197. name: "Teramacro",
  13198. height: math.unit(22000, "miles")
  13199. },
  13200. {
  13201. name: "Solarmacro",
  13202. height: math.unit(8600000, "miles")
  13203. },
  13204. {
  13205. name: "Galactic",
  13206. height: math.unit(1057000, "lightyears")
  13207. },
  13208. ]
  13209. ))
  13210. characterMakers.push(() => makeCharacter(
  13211. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  13212. {
  13213. front: {
  13214. height: math.unit(6 + 10 / 12, "feet"),
  13215. weight: math.unit(150, "lb"),
  13216. name: "Front",
  13217. image: {
  13218. source: "./media/characters/dixon/front.svg",
  13219. extra: 3361 / 3209,
  13220. bottom: 0.01
  13221. }
  13222. },
  13223. },
  13224. [
  13225. {
  13226. name: "Normal",
  13227. height: math.unit(6 + 10 / 12, "feet"),
  13228. default: true
  13229. },
  13230. {
  13231. name: "Big",
  13232. height: math.unit(12, "meters")
  13233. },
  13234. {
  13235. name: "Macro",
  13236. height: math.unit(500, "meters")
  13237. },
  13238. {
  13239. name: "Megamacro",
  13240. height: math.unit(2, "km")
  13241. },
  13242. ]
  13243. ))
  13244. characterMakers.push(() => makeCharacter(
  13245. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  13246. {
  13247. front: {
  13248. height: math.unit(185, "cm"),
  13249. weight: math.unit(68, "kg"),
  13250. name: "Front",
  13251. image: {
  13252. source: "./media/characters/kauko/front.svg",
  13253. extra: 1455 / 1421,
  13254. bottom: 0.03
  13255. }
  13256. },
  13257. back: {
  13258. height: math.unit(185, "cm"),
  13259. weight: math.unit(68, "kg"),
  13260. name: "Back",
  13261. image: {
  13262. source: "./media/characters/kauko/back.svg",
  13263. extra: 1455 / 1421,
  13264. bottom: 0.004
  13265. }
  13266. },
  13267. },
  13268. [
  13269. {
  13270. name: "Normal",
  13271. height: math.unit(185, "cm"),
  13272. default: true
  13273. },
  13274. ]
  13275. ))
  13276. characterMakers.push(() => makeCharacter(
  13277. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  13278. {
  13279. front: {
  13280. height: math.unit(6, "feet"),
  13281. weight: math.unit(150, "kg"),
  13282. name: "Front",
  13283. image: {
  13284. source: "./media/characters/varg/front.svg",
  13285. extra: 1108 / 1018,
  13286. bottom: 0.0375
  13287. }
  13288. },
  13289. },
  13290. [
  13291. {
  13292. name: "Normal",
  13293. height: math.unit(5, "meters")
  13294. },
  13295. {
  13296. name: "Macro",
  13297. height: math.unit(200, "meters")
  13298. },
  13299. {
  13300. name: "Megamacro",
  13301. height: math.unit(20, "kilometers")
  13302. },
  13303. {
  13304. name: "True Size",
  13305. height: math.unit(211, "km"),
  13306. default: true
  13307. },
  13308. {
  13309. name: "Gigamacro",
  13310. height: math.unit(1000, "km")
  13311. },
  13312. {
  13313. name: "Gigamacro+",
  13314. height: math.unit(8000, "km")
  13315. },
  13316. {
  13317. name: "Teramacro",
  13318. height: math.unit(1000000, "km")
  13319. },
  13320. ]
  13321. ))
  13322. characterMakers.push(() => makeCharacter(
  13323. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  13324. {
  13325. front: {
  13326. height: math.unit(7 + 7 / 12, "feet"),
  13327. weight: math.unit(267, "lb"),
  13328. name: "Front",
  13329. image: {
  13330. source: "./media/characters/dayza/front.svg",
  13331. extra: 1262 / 1200,
  13332. bottom: 0.035
  13333. }
  13334. },
  13335. side: {
  13336. height: math.unit(7 + 7 / 12, "feet"),
  13337. weight: math.unit(267, "lb"),
  13338. name: "Side",
  13339. image: {
  13340. source: "./media/characters/dayza/side.svg",
  13341. extra: 1295 / 1245,
  13342. bottom: 0.05
  13343. }
  13344. },
  13345. back: {
  13346. height: math.unit(7 + 7 / 12, "feet"),
  13347. weight: math.unit(267, "lb"),
  13348. name: "Back",
  13349. image: {
  13350. source: "./media/characters/dayza/back.svg",
  13351. extra: 1241 / 1170
  13352. }
  13353. },
  13354. },
  13355. [
  13356. {
  13357. name: "Normal",
  13358. height: math.unit(7 + 7 / 12, "feet"),
  13359. default: true
  13360. },
  13361. {
  13362. name: "Macro",
  13363. height: math.unit(155, "feet")
  13364. },
  13365. ]
  13366. ))
  13367. characterMakers.push(() => makeCharacter(
  13368. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  13369. {
  13370. front: {
  13371. height: math.unit(6 + 5 / 12, "feet"),
  13372. weight: math.unit(160, "lb"),
  13373. name: "Front",
  13374. image: {
  13375. source: "./media/characters/xanthos/front.svg",
  13376. extra: 1,
  13377. bottom: 0.04
  13378. }
  13379. },
  13380. back: {
  13381. height: math.unit(6 + 5 / 12, "feet"),
  13382. weight: math.unit(160, "lb"),
  13383. name: "Back",
  13384. image: {
  13385. source: "./media/characters/xanthos/back.svg",
  13386. extra: 1,
  13387. bottom: 0.03
  13388. }
  13389. },
  13390. hand: {
  13391. height: math.unit(0.928, "feet"),
  13392. name: "Hand",
  13393. image: {
  13394. source: "./media/characters/xanthos/hand.svg"
  13395. }
  13396. },
  13397. foot: {
  13398. height: math.unit(1.286, "feet"),
  13399. name: "Foot",
  13400. image: {
  13401. source: "./media/characters/xanthos/foot.svg"
  13402. }
  13403. },
  13404. },
  13405. [
  13406. {
  13407. name: "Normal",
  13408. height: math.unit(6 + 5 / 12, "feet"),
  13409. default: true
  13410. },
  13411. {
  13412. name: "Normal+",
  13413. height: math.unit(6, "meters")
  13414. },
  13415. {
  13416. name: "Macro",
  13417. height: math.unit(40, "feet")
  13418. },
  13419. {
  13420. name: "Macro+",
  13421. height: math.unit(200, "meters")
  13422. },
  13423. {
  13424. name: "Megamacro",
  13425. height: math.unit(20, "km")
  13426. },
  13427. {
  13428. name: "Megamacro+",
  13429. height: math.unit(100, "km")
  13430. },
  13431. {
  13432. name: "Gigamacro",
  13433. height: math.unit(200, "megameters")
  13434. },
  13435. {
  13436. name: "Gigamacro+",
  13437. height: math.unit(1.5, "gigameters")
  13438. },
  13439. ]
  13440. ))
  13441. characterMakers.push(() => makeCharacter(
  13442. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  13443. {
  13444. front: {
  13445. height: math.unit(6 + 3 / 12, "feet"),
  13446. weight: math.unit(215, "lb"),
  13447. name: "Front",
  13448. image: {
  13449. source: "./media/characters/grynn/front.svg",
  13450. extra: 4627 / 4209,
  13451. bottom: 0.047
  13452. }
  13453. },
  13454. },
  13455. [
  13456. {
  13457. name: "Micro",
  13458. height: math.unit(6, "inches")
  13459. },
  13460. {
  13461. name: "Normal",
  13462. height: math.unit(6 + 3 / 12, "feet"),
  13463. default: true
  13464. },
  13465. {
  13466. name: "Big",
  13467. height: math.unit(104, "feet")
  13468. },
  13469. {
  13470. name: "Macro",
  13471. height: math.unit(944, "feet")
  13472. },
  13473. {
  13474. name: "Macro+",
  13475. height: math.unit(9480, "feet")
  13476. },
  13477. {
  13478. name: "Megamacro",
  13479. height: math.unit(78752, "feet")
  13480. },
  13481. {
  13482. name: "Megamacro+",
  13483. height: math.unit(630128, "feet")
  13484. },
  13485. {
  13486. name: "Megamacro++",
  13487. height: math.unit(3150695, "feet")
  13488. },
  13489. ]
  13490. ))
  13491. characterMakers.push(() => makeCharacter(
  13492. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  13493. {
  13494. front: {
  13495. height: math.unit(7 + 5 / 12, "feet"),
  13496. weight: math.unit(450, "lb"),
  13497. name: "Front",
  13498. image: {
  13499. source: "./media/characters/mocha-aura/front.svg",
  13500. extra: 1907 / 1817,
  13501. bottom: 0.04
  13502. }
  13503. },
  13504. back: {
  13505. height: math.unit(7 + 5 / 12, "feet"),
  13506. weight: math.unit(450, "lb"),
  13507. name: "Back",
  13508. image: {
  13509. source: "./media/characters/mocha-aura/back.svg",
  13510. extra: 1900 / 1825,
  13511. bottom: 0.045
  13512. }
  13513. },
  13514. },
  13515. [
  13516. {
  13517. name: "Nano",
  13518. height: math.unit(1, "nm")
  13519. },
  13520. {
  13521. name: "Megamicro",
  13522. height: math.unit(1, "mm")
  13523. },
  13524. {
  13525. name: "Micro",
  13526. height: math.unit(3, "inches")
  13527. },
  13528. {
  13529. name: "Normal",
  13530. height: math.unit(7 + 5 / 12, "feet"),
  13531. default: true
  13532. },
  13533. {
  13534. name: "Macro",
  13535. height: math.unit(30, "feet")
  13536. },
  13537. {
  13538. name: "Megamacro",
  13539. height: math.unit(3500, "feet")
  13540. },
  13541. {
  13542. name: "Teramacro",
  13543. height: math.unit(500000, "miles")
  13544. },
  13545. {
  13546. name: "Petamacro",
  13547. height: math.unit(50000000000000000, "parsecs")
  13548. },
  13549. ]
  13550. ))
  13551. characterMakers.push(() => makeCharacter(
  13552. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  13553. {
  13554. front: {
  13555. height: math.unit(6, "feet"),
  13556. weight: math.unit(150, "lb"),
  13557. name: "Front",
  13558. image: {
  13559. source: "./media/characters/ilisha-devya/front.svg",
  13560. extra: 1053/1049,
  13561. bottom: 270/1323
  13562. }
  13563. },
  13564. back: {
  13565. height: math.unit(6, "feet"),
  13566. weight: math.unit(150, "lb"),
  13567. name: "Back",
  13568. image: {
  13569. source: "./media/characters/ilisha-devya/back.svg",
  13570. extra: 1131/1128,
  13571. bottom: 39/1170
  13572. }
  13573. },
  13574. },
  13575. [
  13576. {
  13577. name: "Macro",
  13578. height: math.unit(500, "feet"),
  13579. default: true
  13580. },
  13581. {
  13582. name: "Megamacro",
  13583. height: math.unit(10, "miles")
  13584. },
  13585. {
  13586. name: "Gigamacro",
  13587. height: math.unit(100000, "miles")
  13588. },
  13589. {
  13590. name: "Examacro",
  13591. height: math.unit(1e9, "lightyears")
  13592. },
  13593. {
  13594. name: "Omniversal",
  13595. height: math.unit(1e33, "lightyears")
  13596. },
  13597. {
  13598. name: "Beyond Infinite",
  13599. height: math.unit(1e100, "lightyears")
  13600. },
  13601. ]
  13602. ))
  13603. characterMakers.push(() => makeCharacter(
  13604. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  13605. {
  13606. Side: {
  13607. height: math.unit(6, "feet"),
  13608. weight: math.unit(150, "lb"),
  13609. name: "Side",
  13610. image: {
  13611. source: "./media/characters/mira/side.svg",
  13612. extra: 900 / 799,
  13613. bottom: 0.02
  13614. }
  13615. },
  13616. },
  13617. [
  13618. {
  13619. name: "Human Size",
  13620. height: math.unit(6, "feet")
  13621. },
  13622. {
  13623. name: "Macro",
  13624. height: math.unit(100, "feet"),
  13625. default: true
  13626. },
  13627. {
  13628. name: "Megamacro",
  13629. height: math.unit(10, "miles")
  13630. },
  13631. {
  13632. name: "Gigamacro",
  13633. height: math.unit(25000, "miles")
  13634. },
  13635. {
  13636. name: "Teramacro",
  13637. height: math.unit(300, "AU")
  13638. },
  13639. {
  13640. name: "Full Size",
  13641. height: math.unit(4.5e10, "lightyears")
  13642. },
  13643. ]
  13644. ))
  13645. characterMakers.push(() => makeCharacter(
  13646. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  13647. {
  13648. front: {
  13649. height: math.unit(6, "feet"),
  13650. weight: math.unit(150, "lb"),
  13651. name: "Front",
  13652. image: {
  13653. source: "./media/characters/holly/front.svg",
  13654. extra: 639 / 606
  13655. }
  13656. },
  13657. back: {
  13658. height: math.unit(6, "feet"),
  13659. weight: math.unit(150, "lb"),
  13660. name: "Back",
  13661. image: {
  13662. source: "./media/characters/holly/back.svg",
  13663. extra: 623 / 598
  13664. }
  13665. },
  13666. frontWorking: {
  13667. height: math.unit(6, "feet"),
  13668. weight: math.unit(150, "lb"),
  13669. name: "Front (Working)",
  13670. image: {
  13671. source: "./media/characters/holly/front-working.svg",
  13672. extra: 607 / 577,
  13673. bottom: 0.048
  13674. }
  13675. },
  13676. },
  13677. [
  13678. {
  13679. name: "Normal",
  13680. height: math.unit(12 + 3 / 12, "feet"),
  13681. default: true
  13682. },
  13683. ]
  13684. ))
  13685. characterMakers.push(() => makeCharacter(
  13686. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  13687. {
  13688. front: {
  13689. height: math.unit(6, "feet"),
  13690. weight: math.unit(150, "lb"),
  13691. name: "Front",
  13692. image: {
  13693. source: "./media/characters/porter/front.svg",
  13694. extra: 1,
  13695. bottom: 0.01
  13696. }
  13697. },
  13698. frontRobes: {
  13699. height: math.unit(6, "feet"),
  13700. weight: math.unit(150, "lb"),
  13701. name: "Front (Robes)",
  13702. image: {
  13703. source: "./media/characters/porter/front-robes.svg",
  13704. extra: 1.01,
  13705. bottom: 0.01
  13706. }
  13707. },
  13708. },
  13709. [
  13710. {
  13711. name: "Normal",
  13712. height: math.unit(11 + 9 / 12, "feet"),
  13713. default: true
  13714. },
  13715. ]
  13716. ))
  13717. characterMakers.push(() => makeCharacter(
  13718. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  13719. {
  13720. legendary: {
  13721. height: math.unit(6, "feet"),
  13722. weight: math.unit(150, "lb"),
  13723. name: "Legendary",
  13724. image: {
  13725. source: "./media/characters/lucy/legendary.svg",
  13726. extra: 1355 / 1100,
  13727. bottom: 0.045
  13728. }
  13729. },
  13730. },
  13731. [
  13732. {
  13733. name: "Legendary",
  13734. height: math.unit(86882 * 2, "miles"),
  13735. default: true
  13736. },
  13737. ]
  13738. ))
  13739. characterMakers.push(() => makeCharacter(
  13740. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  13741. {
  13742. front: {
  13743. height: math.unit(6, "feet"),
  13744. weight: math.unit(150, "lb"),
  13745. name: "Front",
  13746. image: {
  13747. source: "./media/characters/drusilla/front.svg",
  13748. extra: 678 / 635,
  13749. bottom: 0.03
  13750. }
  13751. },
  13752. back: {
  13753. height: math.unit(6, "feet"),
  13754. weight: math.unit(150, "lb"),
  13755. name: "Back",
  13756. image: {
  13757. source: "./media/characters/drusilla/back.svg",
  13758. extra: 678 / 635,
  13759. bottom: 0.005
  13760. }
  13761. },
  13762. },
  13763. [
  13764. {
  13765. name: "Macro",
  13766. height: math.unit(100, "feet")
  13767. },
  13768. {
  13769. name: "Canon Height",
  13770. height: math.unit(2000, "feet"),
  13771. default: true
  13772. },
  13773. ]
  13774. ))
  13775. characterMakers.push(() => makeCharacter(
  13776. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  13777. {
  13778. front: {
  13779. height: math.unit(6, "feet"),
  13780. weight: math.unit(180, "lb"),
  13781. name: "Front",
  13782. image: {
  13783. source: "./media/characters/renard-thatch/front.svg",
  13784. extra: 2411 / 2275,
  13785. bottom: 0.01
  13786. }
  13787. },
  13788. frontPosing: {
  13789. height: math.unit(6, "feet"),
  13790. weight: math.unit(180, "lb"),
  13791. name: "Front (Posing)",
  13792. image: {
  13793. source: "./media/characters/renard-thatch/front-posing.svg",
  13794. extra: 2381 / 2261,
  13795. bottom: 0.01
  13796. }
  13797. },
  13798. back: {
  13799. height: math.unit(6, "feet"),
  13800. weight: math.unit(180, "lb"),
  13801. name: "Back",
  13802. image: {
  13803. source: "./media/characters/renard-thatch/back.svg",
  13804. extra: 2428 / 2288
  13805. }
  13806. },
  13807. },
  13808. [
  13809. {
  13810. name: "Micro",
  13811. height: math.unit(3, "inches")
  13812. },
  13813. {
  13814. name: "Default",
  13815. height: math.unit(6, "feet"),
  13816. default: true
  13817. },
  13818. {
  13819. name: "Macro",
  13820. height: math.unit(75, "feet")
  13821. },
  13822. ]
  13823. ))
  13824. characterMakers.push(() => makeCharacter(
  13825. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  13826. {
  13827. front: {
  13828. height: math.unit(1450, "feet"),
  13829. weight: math.unit(1.21e6, "tons"),
  13830. name: "Front",
  13831. image: {
  13832. source: "./media/characters/sekvra/front.svg",
  13833. extra: 1193/1190,
  13834. bottom: 78/1271
  13835. }
  13836. },
  13837. side: {
  13838. height: math.unit(1450, "feet"),
  13839. weight: math.unit(1.21e6, "tons"),
  13840. name: "Side",
  13841. image: {
  13842. source: "./media/characters/sekvra/side.svg",
  13843. extra: 1193/1190,
  13844. bottom: 52/1245
  13845. }
  13846. },
  13847. back: {
  13848. height: math.unit(1450, "feet"),
  13849. weight: math.unit(1.21e6, "tons"),
  13850. name: "Back",
  13851. image: {
  13852. source: "./media/characters/sekvra/back.svg",
  13853. extra: 1219/1216,
  13854. bottom: 21/1240
  13855. }
  13856. },
  13857. frontClothed: {
  13858. height: math.unit(1450, "feet"),
  13859. weight: math.unit(1.21e6, "tons"),
  13860. name: "Front (Clothed)",
  13861. image: {
  13862. source: "./media/characters/sekvra/front-clothed.svg",
  13863. extra: 1192/1189,
  13864. bottom: 79/1271
  13865. }
  13866. },
  13867. },
  13868. [
  13869. {
  13870. name: "Macro",
  13871. height: math.unit(1450, "feet"),
  13872. default: true
  13873. },
  13874. {
  13875. name: "Megamacro",
  13876. height: math.unit(15000, "feet")
  13877. },
  13878. ]
  13879. ))
  13880. characterMakers.push(() => makeCharacter(
  13881. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  13882. {
  13883. front: {
  13884. height: math.unit(6, "feet"),
  13885. weight: math.unit(150, "lb"),
  13886. name: "Front",
  13887. image: {
  13888. source: "./media/characters/carmine/front.svg",
  13889. extra: 1,
  13890. bottom: 0.035
  13891. }
  13892. },
  13893. frontArmor: {
  13894. height: math.unit(6, "feet"),
  13895. weight: math.unit(150, "lb"),
  13896. name: "Front (Armor)",
  13897. image: {
  13898. source: "./media/characters/carmine/front-armor.svg",
  13899. extra: 1,
  13900. bottom: 0.035
  13901. }
  13902. },
  13903. },
  13904. [
  13905. {
  13906. name: "Large",
  13907. height: math.unit(1, "mile")
  13908. },
  13909. {
  13910. name: "Huge",
  13911. height: math.unit(40, "miles"),
  13912. default: true
  13913. },
  13914. {
  13915. name: "Colossal",
  13916. height: math.unit(2500, "miles")
  13917. },
  13918. ]
  13919. ))
  13920. characterMakers.push(() => makeCharacter(
  13921. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  13922. {
  13923. front: {
  13924. height: math.unit(6, "feet"),
  13925. weight: math.unit(150, "lb"),
  13926. name: "Front",
  13927. image: {
  13928. source: "./media/characters/elyssia/front.svg",
  13929. extra: 2201 / 2035,
  13930. bottom: 0.05
  13931. }
  13932. },
  13933. frontClothed: {
  13934. height: math.unit(6, "feet"),
  13935. weight: math.unit(150, "lb"),
  13936. name: "Front (Clothed)",
  13937. image: {
  13938. source: "./media/characters/elyssia/front-clothed.svg",
  13939. extra: 2201 / 2035,
  13940. bottom: 0.05
  13941. }
  13942. },
  13943. back: {
  13944. height: math.unit(6, "feet"),
  13945. weight: math.unit(150, "lb"),
  13946. name: "Back",
  13947. image: {
  13948. source: "./media/characters/elyssia/back.svg",
  13949. extra: 2201 / 2035,
  13950. bottom: 0.013
  13951. }
  13952. },
  13953. },
  13954. [
  13955. {
  13956. name: "Smaller",
  13957. height: math.unit(150, "feet")
  13958. },
  13959. {
  13960. name: "Standard",
  13961. height: math.unit(1400, "feet"),
  13962. default: true
  13963. },
  13964. {
  13965. name: "Distracted",
  13966. height: math.unit(15000, "feet")
  13967. },
  13968. ]
  13969. ))
  13970. characterMakers.push(() => makeCharacter(
  13971. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  13972. {
  13973. front: {
  13974. height: math.unit(7 + 4/12, "feet"),
  13975. weight: math.unit(690, "lb"),
  13976. name: "Front",
  13977. image: {
  13978. source: "./media/characters/geno-maxwell/front.svg",
  13979. extra: 984/856,
  13980. bottom: 87/1071
  13981. }
  13982. },
  13983. back: {
  13984. height: math.unit(7 + 4/12, "feet"),
  13985. weight: math.unit(690, "lb"),
  13986. name: "Back",
  13987. image: {
  13988. source: "./media/characters/geno-maxwell/back.svg",
  13989. extra: 981/854,
  13990. bottom: 57/1038
  13991. }
  13992. },
  13993. frontCostume: {
  13994. height: math.unit(7 + 4/12, "feet"),
  13995. weight: math.unit(690, "lb"),
  13996. name: "Front (Costume)",
  13997. image: {
  13998. source: "./media/characters/geno-maxwell/front-costume.svg",
  13999. extra: 984/856,
  14000. bottom: 87/1071
  14001. }
  14002. },
  14003. backcostume: {
  14004. height: math.unit(7 + 4/12, "feet"),
  14005. weight: math.unit(690, "lb"),
  14006. name: "Back (Costume)",
  14007. image: {
  14008. source: "./media/characters/geno-maxwell/back-costume.svg",
  14009. extra: 981/854,
  14010. bottom: 57/1038
  14011. }
  14012. },
  14013. },
  14014. [
  14015. {
  14016. name: "Micro",
  14017. height: math.unit(3, "inches")
  14018. },
  14019. {
  14020. name: "Normal",
  14021. height: math.unit(7 + 4 / 12, "feet"),
  14022. default: true
  14023. },
  14024. {
  14025. name: "Macro",
  14026. height: math.unit(220, "feet")
  14027. },
  14028. {
  14029. name: "Megamacro",
  14030. height: math.unit(11, "miles")
  14031. },
  14032. ]
  14033. ))
  14034. characterMakers.push(() => makeCharacter(
  14035. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  14036. {
  14037. front: {
  14038. height: math.unit(7 + 4/12, "feet"),
  14039. weight: math.unit(750, "lb"),
  14040. name: "Front",
  14041. image: {
  14042. source: "./media/characters/regena-maxwell/front.svg",
  14043. extra: 984/856,
  14044. bottom: 87/1071
  14045. }
  14046. },
  14047. back: {
  14048. height: math.unit(7 + 4/12, "feet"),
  14049. weight: math.unit(750, "lb"),
  14050. name: "Back",
  14051. image: {
  14052. source: "./media/characters/regena-maxwell/back.svg",
  14053. extra: 981/854,
  14054. bottom: 57/1038
  14055. }
  14056. },
  14057. frontCostume: {
  14058. height: math.unit(7 + 4/12, "feet"),
  14059. weight: math.unit(750, "lb"),
  14060. name: "Front (Costume)",
  14061. image: {
  14062. source: "./media/characters/regena-maxwell/front-costume.svg",
  14063. extra: 984/856,
  14064. bottom: 87/1071
  14065. }
  14066. },
  14067. backcostume: {
  14068. height: math.unit(7 + 4/12, "feet"),
  14069. weight: math.unit(750, "lb"),
  14070. name: "Back (Costume)",
  14071. image: {
  14072. source: "./media/characters/regena-maxwell/back-costume.svg",
  14073. extra: 981/854,
  14074. bottom: 57/1038
  14075. }
  14076. },
  14077. },
  14078. [
  14079. {
  14080. name: "Normal",
  14081. height: math.unit(7 + 4 / 12, "feet"),
  14082. default: true
  14083. },
  14084. {
  14085. name: "Macro",
  14086. height: math.unit(220, "feet")
  14087. },
  14088. {
  14089. name: "Megamacro",
  14090. height: math.unit(11, "miles")
  14091. },
  14092. ]
  14093. ))
  14094. characterMakers.push(() => makeCharacter(
  14095. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  14096. {
  14097. front: {
  14098. height: math.unit(6, "feet"),
  14099. weight: math.unit(150, "lb"),
  14100. name: "Front",
  14101. image: {
  14102. source: "./media/characters/x-gliding-dragon-x/front.svg",
  14103. extra: 860 / 690,
  14104. bottom: 0.03
  14105. }
  14106. },
  14107. },
  14108. [
  14109. {
  14110. name: "Normal",
  14111. height: math.unit(1.7, "meters"),
  14112. default: true
  14113. },
  14114. ]
  14115. ))
  14116. characterMakers.push(() => makeCharacter(
  14117. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  14118. {
  14119. front: {
  14120. height: math.unit(6, "feet"),
  14121. weight: math.unit(150, "lb"),
  14122. name: "Front",
  14123. image: {
  14124. source: "./media/characters/quilly/front.svg",
  14125. extra: 890 / 776
  14126. }
  14127. },
  14128. },
  14129. [
  14130. {
  14131. name: "Gigamacro",
  14132. height: math.unit(404090, "miles"),
  14133. default: true
  14134. },
  14135. ]
  14136. ))
  14137. characterMakers.push(() => makeCharacter(
  14138. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  14139. {
  14140. front: {
  14141. height: math.unit(7 + 8 / 12, "feet"),
  14142. weight: math.unit(350, "lb"),
  14143. name: "Front",
  14144. image: {
  14145. source: "./media/characters/tempest/front.svg",
  14146. extra: 1175 / 1086,
  14147. bottom: 0.02
  14148. }
  14149. },
  14150. },
  14151. [
  14152. {
  14153. name: "Normal",
  14154. height: math.unit(7 + 8 / 12, "feet"),
  14155. default: true
  14156. },
  14157. ]
  14158. ))
  14159. characterMakers.push(() => makeCharacter(
  14160. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  14161. {
  14162. side: {
  14163. height: math.unit(4 + 5 / 12, "feet"),
  14164. weight: math.unit(80, "lb"),
  14165. name: "Side",
  14166. image: {
  14167. source: "./media/characters/rodger/side.svg",
  14168. extra: 1235 / 1118
  14169. }
  14170. },
  14171. },
  14172. [
  14173. {
  14174. name: "Micro",
  14175. height: math.unit(1, "inch")
  14176. },
  14177. {
  14178. name: "Normal",
  14179. height: math.unit(4 + 5 / 12, "feet"),
  14180. default: true
  14181. },
  14182. {
  14183. name: "Macro",
  14184. height: math.unit(120, "feet")
  14185. },
  14186. ]
  14187. ))
  14188. characterMakers.push(() => makeCharacter(
  14189. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  14190. {
  14191. front: {
  14192. height: math.unit(6, "feet"),
  14193. weight: math.unit(150, "lb"),
  14194. name: "Front",
  14195. image: {
  14196. source: "./media/characters/danyel/front.svg",
  14197. extra: 1185 / 1123,
  14198. bottom: 0.05
  14199. }
  14200. },
  14201. },
  14202. [
  14203. {
  14204. name: "Shrunken",
  14205. height: math.unit(0.5, "mm")
  14206. },
  14207. {
  14208. name: "Micro",
  14209. height: math.unit(1, "mm"),
  14210. default: true
  14211. },
  14212. {
  14213. name: "Upsized",
  14214. height: math.unit(5 + 5 / 12, "feet")
  14215. },
  14216. ]
  14217. ))
  14218. characterMakers.push(() => makeCharacter(
  14219. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  14220. {
  14221. front: {
  14222. height: math.unit(5 + 6 / 12, "feet"),
  14223. weight: math.unit(200, "lb"),
  14224. name: "Front",
  14225. image: {
  14226. source: "./media/characters/vivian-bijoux/front.svg",
  14227. extra: 1217/1209,
  14228. bottom: 76/1293
  14229. }
  14230. },
  14231. back: {
  14232. height: math.unit(5 + 6 / 12, "feet"),
  14233. weight: math.unit(200, "lb"),
  14234. name: "Back",
  14235. image: {
  14236. source: "./media/characters/vivian-bijoux/back.svg",
  14237. extra: 1214/1208,
  14238. bottom: 51/1265
  14239. }
  14240. },
  14241. dressed: {
  14242. height: math.unit(5 + 6 / 12, "feet"),
  14243. weight: math.unit(200, "lb"),
  14244. name: "Dressed",
  14245. image: {
  14246. source: "./media/characters/vivian-bijoux/dressed.svg",
  14247. extra: 1217/1209,
  14248. bottom: 76/1293
  14249. }
  14250. },
  14251. },
  14252. [
  14253. {
  14254. name: "Normal",
  14255. height: math.unit(5 + 6 / 12, "feet"),
  14256. default: true
  14257. },
  14258. {
  14259. name: "Bad Dream",
  14260. height: math.unit(500, "feet")
  14261. },
  14262. {
  14263. name: "Nightmare",
  14264. height: math.unit(500, "miles")
  14265. },
  14266. ]
  14267. ))
  14268. characterMakers.push(() => makeCharacter(
  14269. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  14270. {
  14271. front: {
  14272. height: math.unit(6 + 1 / 12, "feet"),
  14273. weight: math.unit(260, "lb"),
  14274. name: "Front",
  14275. image: {
  14276. source: "./media/characters/zeta/front.svg",
  14277. extra: 1968 / 1889,
  14278. bottom: 0.06
  14279. }
  14280. },
  14281. back: {
  14282. height: math.unit(6 + 1 / 12, "feet"),
  14283. weight: math.unit(260, "lb"),
  14284. name: "Back",
  14285. image: {
  14286. source: "./media/characters/zeta/back.svg",
  14287. extra: 1944 / 1858,
  14288. bottom: 0.03
  14289. }
  14290. },
  14291. hand: {
  14292. height: math.unit(1.112, "feet"),
  14293. name: "Hand",
  14294. image: {
  14295. source: "./media/characters/zeta/hand.svg"
  14296. }
  14297. },
  14298. foot: {
  14299. height: math.unit(1.48, "feet"),
  14300. name: "Foot",
  14301. image: {
  14302. source: "./media/characters/zeta/foot.svg"
  14303. }
  14304. },
  14305. },
  14306. [
  14307. {
  14308. name: "Micro",
  14309. height: math.unit(6, "inches")
  14310. },
  14311. {
  14312. name: "Normal",
  14313. height: math.unit(6 + 1 / 12, "feet"),
  14314. default: true
  14315. },
  14316. {
  14317. name: "Macro",
  14318. height: math.unit(20, "feet")
  14319. },
  14320. ]
  14321. ))
  14322. characterMakers.push(() => makeCharacter(
  14323. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  14324. {
  14325. front: {
  14326. height: math.unit(6, "feet"),
  14327. weight: math.unit(150, "lb"),
  14328. name: "Front",
  14329. image: {
  14330. source: "./media/characters/jamie-larsen/front.svg",
  14331. extra: 962 / 933,
  14332. bottom: 0.02
  14333. }
  14334. },
  14335. back: {
  14336. height: math.unit(6, "feet"),
  14337. weight: math.unit(150, "lb"),
  14338. name: "Back",
  14339. image: {
  14340. source: "./media/characters/jamie-larsen/back.svg",
  14341. extra: 997 / 946
  14342. }
  14343. },
  14344. },
  14345. [
  14346. {
  14347. name: "Macro",
  14348. height: math.unit(28 + 7 / 12, "feet"),
  14349. default: true
  14350. },
  14351. {
  14352. name: "Macro+",
  14353. height: math.unit(180, "feet")
  14354. },
  14355. {
  14356. name: "Megamacro",
  14357. height: math.unit(10, "miles")
  14358. },
  14359. {
  14360. name: "Gigamacro",
  14361. height: math.unit(200000, "miles")
  14362. },
  14363. ]
  14364. ))
  14365. characterMakers.push(() => makeCharacter(
  14366. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  14367. {
  14368. front: {
  14369. height: math.unit(6, "feet"),
  14370. weight: math.unit(120, "lb"),
  14371. name: "Front",
  14372. image: {
  14373. source: "./media/characters/vance/front.svg",
  14374. extra: 1980 / 1890,
  14375. bottom: 0.09
  14376. }
  14377. },
  14378. back: {
  14379. height: math.unit(6, "feet"),
  14380. weight: math.unit(120, "lb"),
  14381. name: "Back",
  14382. image: {
  14383. source: "./media/characters/vance/back.svg",
  14384. extra: 2081 / 1994,
  14385. bottom: 0.014
  14386. }
  14387. },
  14388. hand: {
  14389. height: math.unit(0.88, "feet"),
  14390. name: "Hand",
  14391. image: {
  14392. source: "./media/characters/vance/hand.svg"
  14393. }
  14394. },
  14395. foot: {
  14396. height: math.unit(0.64, "feet"),
  14397. name: "Foot",
  14398. image: {
  14399. source: "./media/characters/vance/foot.svg"
  14400. }
  14401. },
  14402. },
  14403. [
  14404. {
  14405. name: "Small",
  14406. height: math.unit(90, "feet"),
  14407. default: true
  14408. },
  14409. {
  14410. name: "Macro",
  14411. height: math.unit(100, "meters")
  14412. },
  14413. {
  14414. name: "Megamacro",
  14415. height: math.unit(15, "miles")
  14416. },
  14417. ]
  14418. ))
  14419. characterMakers.push(() => makeCharacter(
  14420. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  14421. {
  14422. front: {
  14423. height: math.unit(6, "feet"),
  14424. weight: math.unit(180, "lb"),
  14425. name: "Front",
  14426. image: {
  14427. source: "./media/characters/xochitl/front.svg",
  14428. extra: 2297 / 2261,
  14429. bottom: 0.065
  14430. }
  14431. },
  14432. back: {
  14433. height: math.unit(6, "feet"),
  14434. weight: math.unit(180, "lb"),
  14435. name: "Back",
  14436. image: {
  14437. source: "./media/characters/xochitl/back.svg",
  14438. extra: 2386 / 2354,
  14439. bottom: 0.01
  14440. }
  14441. },
  14442. foot: {
  14443. height: math.unit(6 / 5 * 1.15, "feet"),
  14444. weight: math.unit(150, "lb"),
  14445. name: "Foot",
  14446. image: {
  14447. source: "./media/characters/xochitl/foot.svg"
  14448. }
  14449. },
  14450. },
  14451. [
  14452. {
  14453. name: "Macro",
  14454. height: math.unit(80, "feet")
  14455. },
  14456. {
  14457. name: "Macro+",
  14458. height: math.unit(400, "feet"),
  14459. default: true
  14460. },
  14461. {
  14462. name: "Gigamacro",
  14463. height: math.unit(80000, "miles")
  14464. },
  14465. {
  14466. name: "Gigamacro+",
  14467. height: math.unit(400000, "miles")
  14468. },
  14469. {
  14470. name: "Teramacro",
  14471. height: math.unit(300, "AU")
  14472. },
  14473. ]
  14474. ))
  14475. characterMakers.push(() => makeCharacter(
  14476. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  14477. {
  14478. front: {
  14479. height: math.unit(6, "feet"),
  14480. weight: math.unit(150, "lb"),
  14481. name: "Front",
  14482. image: {
  14483. source: "./media/characters/vincent/front.svg",
  14484. extra: 1130 / 1080,
  14485. bottom: 0.055
  14486. }
  14487. },
  14488. beak: {
  14489. height: math.unit(6 * 0.1, "feet"),
  14490. name: "Beak",
  14491. image: {
  14492. source: "./media/characters/vincent/beak.svg"
  14493. }
  14494. },
  14495. hand: {
  14496. height: math.unit(6 * 0.85, "feet"),
  14497. weight: math.unit(150, "lb"),
  14498. name: "Hand",
  14499. image: {
  14500. source: "./media/characters/vincent/hand.svg"
  14501. }
  14502. },
  14503. foot: {
  14504. height: math.unit(6 * 0.19, "feet"),
  14505. weight: math.unit(150, "lb"),
  14506. name: "Foot",
  14507. image: {
  14508. source: "./media/characters/vincent/foot.svg"
  14509. }
  14510. },
  14511. },
  14512. [
  14513. {
  14514. name: "Base",
  14515. height: math.unit(6 + 5 / 12, "feet"),
  14516. default: true
  14517. },
  14518. {
  14519. name: "Macro",
  14520. height: math.unit(300, "feet")
  14521. },
  14522. {
  14523. name: "Megamacro",
  14524. height: math.unit(2, "miles")
  14525. },
  14526. {
  14527. name: "Gigamacro",
  14528. height: math.unit(1000, "miles")
  14529. },
  14530. ]
  14531. ))
  14532. characterMakers.push(() => makeCharacter(
  14533. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  14534. {
  14535. front: {
  14536. height: math.unit(2, "meters"),
  14537. weight: math.unit(500, "kg"),
  14538. name: "Front",
  14539. image: {
  14540. source: "./media/characters/coatl/front.svg",
  14541. extra: 3948 / 3500,
  14542. bottom: 0.082
  14543. }
  14544. },
  14545. },
  14546. [
  14547. {
  14548. name: "Normal",
  14549. height: math.unit(4, "meters")
  14550. },
  14551. {
  14552. name: "Macro",
  14553. height: math.unit(100, "meters"),
  14554. default: true
  14555. },
  14556. {
  14557. name: "Macro+",
  14558. height: math.unit(300, "meters")
  14559. },
  14560. {
  14561. name: "Megamacro",
  14562. height: math.unit(3, "gigameters")
  14563. },
  14564. {
  14565. name: "Megamacro+",
  14566. height: math.unit(300, "terameters")
  14567. },
  14568. {
  14569. name: "Megamacro++",
  14570. height: math.unit(3, "lightyears")
  14571. },
  14572. ]
  14573. ))
  14574. characterMakers.push(() => makeCharacter(
  14575. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  14576. {
  14577. front: {
  14578. height: math.unit(6, "feet"),
  14579. weight: math.unit(50, "kg"),
  14580. name: "front",
  14581. image: {
  14582. source: "./media/characters/shiroryu/front.svg",
  14583. extra: 1990 / 1935
  14584. }
  14585. },
  14586. },
  14587. [
  14588. {
  14589. name: "Mortal Mingling",
  14590. height: math.unit(3, "meters")
  14591. },
  14592. {
  14593. name: "Kaiju-ish",
  14594. height: math.unit(250, "meters")
  14595. },
  14596. {
  14597. name: "Somewhat Godly",
  14598. height: math.unit(400, "km"),
  14599. default: true
  14600. },
  14601. {
  14602. name: "Planetary",
  14603. height: math.unit(300, "megameters")
  14604. },
  14605. {
  14606. name: "Galaxy-dwarfing",
  14607. height: math.unit(450, "kiloparsecs")
  14608. },
  14609. {
  14610. name: "Universe Eater",
  14611. height: math.unit(150, "gigaparsecs")
  14612. },
  14613. {
  14614. name: "Almost Immeasurable",
  14615. height: math.unit(1.3e266, "yottaparsecs")
  14616. },
  14617. ]
  14618. ))
  14619. characterMakers.push(() => makeCharacter(
  14620. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  14621. {
  14622. front: {
  14623. height: math.unit(6, "feet"),
  14624. weight: math.unit(150, "lb"),
  14625. name: "Front",
  14626. image: {
  14627. source: "./media/characters/umeko/front.svg",
  14628. extra: 1,
  14629. bottom: 0.019
  14630. }
  14631. },
  14632. frontArmored: {
  14633. height: math.unit(6, "feet"),
  14634. weight: math.unit(150, "lb"),
  14635. name: "Front (Armored)",
  14636. image: {
  14637. source: "./media/characters/umeko/front-armored.svg",
  14638. extra: 1,
  14639. bottom: 0.021
  14640. }
  14641. },
  14642. },
  14643. [
  14644. {
  14645. name: "Macro",
  14646. height: math.unit(220, "feet"),
  14647. default: true
  14648. },
  14649. {
  14650. name: "Guardian Dragon",
  14651. height: math.unit(50, "miles")
  14652. },
  14653. {
  14654. name: "Cosmic",
  14655. height: math.unit(800000, "miles")
  14656. },
  14657. ]
  14658. ))
  14659. characterMakers.push(() => makeCharacter(
  14660. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  14661. {
  14662. front: {
  14663. height: math.unit(6, "feet"),
  14664. weight: math.unit(150, "lb"),
  14665. name: "Front",
  14666. image: {
  14667. source: "./media/characters/cassidy/front.svg",
  14668. extra: 810/808,
  14669. bottom: 41/851
  14670. }
  14671. },
  14672. },
  14673. [
  14674. {
  14675. name: "Canon Height",
  14676. height: math.unit(120, "feet"),
  14677. default: true
  14678. },
  14679. {
  14680. name: "Macro+",
  14681. height: math.unit(400, "feet")
  14682. },
  14683. {
  14684. name: "Macro++",
  14685. height: math.unit(4000, "feet")
  14686. },
  14687. {
  14688. name: "Megamacro",
  14689. height: math.unit(3, "miles")
  14690. },
  14691. ]
  14692. ))
  14693. characterMakers.push(() => makeCharacter(
  14694. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  14695. {
  14696. front: {
  14697. height: math.unit(6, "feet"),
  14698. weight: math.unit(150, "lb"),
  14699. name: "Front",
  14700. image: {
  14701. source: "./media/characters/isaac/front.svg",
  14702. extra: 896 / 815,
  14703. bottom: 0.11
  14704. }
  14705. },
  14706. },
  14707. [
  14708. {
  14709. name: "Human Size",
  14710. height: math.unit(8, "feet"),
  14711. default: true
  14712. },
  14713. {
  14714. name: "Macro",
  14715. height: math.unit(400, "feet")
  14716. },
  14717. {
  14718. name: "Megamacro",
  14719. height: math.unit(50, "miles")
  14720. },
  14721. {
  14722. name: "Canon Height",
  14723. height: math.unit(200, "AU")
  14724. },
  14725. ]
  14726. ))
  14727. characterMakers.push(() => makeCharacter(
  14728. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  14729. {
  14730. front: {
  14731. height: math.unit(6, "feet"),
  14732. weight: math.unit(72, "kg"),
  14733. name: "Front",
  14734. image: {
  14735. source: "./media/characters/sleekit/front.svg",
  14736. extra: 4693 / 4487,
  14737. bottom: 0.012
  14738. }
  14739. },
  14740. },
  14741. [
  14742. {
  14743. name: "Minimum Height",
  14744. height: math.unit(10, "meters")
  14745. },
  14746. {
  14747. name: "Smaller",
  14748. height: math.unit(25, "meters")
  14749. },
  14750. {
  14751. name: "Larger",
  14752. height: math.unit(38, "meters"),
  14753. default: true
  14754. },
  14755. {
  14756. name: "Maximum height",
  14757. height: math.unit(100, "meters")
  14758. },
  14759. ]
  14760. ))
  14761. characterMakers.push(() => makeCharacter(
  14762. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  14763. {
  14764. front: {
  14765. height: math.unit(6, "feet"),
  14766. weight: math.unit(150, "lb"),
  14767. name: "Front",
  14768. image: {
  14769. source: "./media/characters/nillia/front.svg",
  14770. extra: 2195 / 2037,
  14771. bottom: 0.005
  14772. }
  14773. },
  14774. back: {
  14775. height: math.unit(6, "feet"),
  14776. weight: math.unit(150, "lb"),
  14777. name: "Back",
  14778. image: {
  14779. source: "./media/characters/nillia/back.svg",
  14780. extra: 2195 / 2037,
  14781. bottom: 0.005
  14782. }
  14783. },
  14784. },
  14785. [
  14786. {
  14787. name: "Canon Height",
  14788. height: math.unit(489, "feet"),
  14789. default: true
  14790. }
  14791. ]
  14792. ))
  14793. characterMakers.push(() => makeCharacter(
  14794. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  14795. {
  14796. front: {
  14797. height: math.unit(6, "feet"),
  14798. weight: math.unit(150, "lb"),
  14799. name: "Front",
  14800. image: {
  14801. source: "./media/characters/mesmyriza/front.svg",
  14802. extra: 2067 / 1784,
  14803. bottom: 0.035
  14804. }
  14805. },
  14806. foot: {
  14807. height: math.unit(6 / (250 / 35), "feet"),
  14808. name: "Foot",
  14809. image: {
  14810. source: "./media/characters/mesmyriza/foot.svg"
  14811. }
  14812. },
  14813. },
  14814. [
  14815. {
  14816. name: "Macro",
  14817. height: math.unit(457, "meters"),
  14818. default: true
  14819. },
  14820. {
  14821. name: "Megamacro",
  14822. height: math.unit(8, "megameters")
  14823. },
  14824. ]
  14825. ))
  14826. characterMakers.push(() => makeCharacter(
  14827. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  14828. {
  14829. front: {
  14830. height: math.unit(6, "feet"),
  14831. weight: math.unit(250, "lb"),
  14832. name: "Front",
  14833. image: {
  14834. source: "./media/characters/saudade/front.svg",
  14835. extra: 1172 / 1139,
  14836. bottom: 0.035
  14837. }
  14838. },
  14839. },
  14840. [
  14841. {
  14842. name: "Micro",
  14843. height: math.unit(3, "inches")
  14844. },
  14845. {
  14846. name: "Normal",
  14847. height: math.unit(6, "feet"),
  14848. default: true
  14849. },
  14850. {
  14851. name: "Macro",
  14852. height: math.unit(50, "feet")
  14853. },
  14854. {
  14855. name: "Megamacro",
  14856. height: math.unit(2800, "feet")
  14857. },
  14858. ]
  14859. ))
  14860. characterMakers.push(() => makeCharacter(
  14861. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  14862. {
  14863. front: {
  14864. height: math.unit(5 + 4 / 12, "feet"),
  14865. weight: math.unit(100, "lb"),
  14866. name: "Front",
  14867. image: {
  14868. source: "./media/characters/keireer/front.svg",
  14869. extra: 716 / 666,
  14870. bottom: 0.05
  14871. }
  14872. },
  14873. },
  14874. [
  14875. {
  14876. name: "Normal",
  14877. height: math.unit(5 + 4 / 12, "feet"),
  14878. default: true
  14879. },
  14880. ]
  14881. ))
  14882. characterMakers.push(() => makeCharacter(
  14883. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  14884. {
  14885. front: {
  14886. height: math.unit(6, "feet"),
  14887. weight: math.unit(90, "kg"),
  14888. name: "Front",
  14889. image: {
  14890. source: "./media/characters/mirja/front.svg",
  14891. extra: 1789 / 1683,
  14892. bottom: 0.05
  14893. }
  14894. },
  14895. frontDressed: {
  14896. height: math.unit(6, "feet"),
  14897. weight: math.unit(90, "lb"),
  14898. name: "Front (Dressed)",
  14899. image: {
  14900. source: "./media/characters/mirja/front-dressed.svg",
  14901. extra: 1789 / 1683,
  14902. bottom: 0.05
  14903. }
  14904. },
  14905. back: {
  14906. height: math.unit(6, "feet"),
  14907. weight: math.unit(90, "lb"),
  14908. name: "Back",
  14909. image: {
  14910. source: "./media/characters/mirja/back.svg",
  14911. extra: 953 / 917,
  14912. bottom: 0.017
  14913. }
  14914. },
  14915. },
  14916. [
  14917. {
  14918. name: "\"Incognito\"",
  14919. height: math.unit(3, "meters")
  14920. },
  14921. {
  14922. name: "Strolling Size",
  14923. height: math.unit(15, "km")
  14924. },
  14925. {
  14926. name: "Larger Strolling Size",
  14927. height: math.unit(400, "km")
  14928. },
  14929. {
  14930. name: "Preferred Size",
  14931. height: math.unit(5000, "km")
  14932. },
  14933. {
  14934. name: "True Size",
  14935. height: math.unit(30657809462086840000000000000000, "parsecs"),
  14936. default: true
  14937. },
  14938. ]
  14939. ))
  14940. characterMakers.push(() => makeCharacter(
  14941. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  14942. {
  14943. front: {
  14944. height: math.unit(15, "feet"),
  14945. weight: math.unit(880, "kg"),
  14946. name: "Front",
  14947. image: {
  14948. source: "./media/characters/nightraver/front.svg",
  14949. extra: 2444 / 2160,
  14950. bottom: 0.027
  14951. }
  14952. },
  14953. back: {
  14954. height: math.unit(15, "feet"),
  14955. weight: math.unit(880, "kg"),
  14956. name: "Back",
  14957. image: {
  14958. source: "./media/characters/nightraver/back.svg",
  14959. extra: 2309 / 2180,
  14960. bottom: 0.005
  14961. }
  14962. },
  14963. sole: {
  14964. height: math.unit(2.878, "feet"),
  14965. name: "Sole",
  14966. image: {
  14967. source: "./media/characters/nightraver/sole.svg"
  14968. }
  14969. },
  14970. foot: {
  14971. height: math.unit(2.285, "feet"),
  14972. name: "Foot",
  14973. image: {
  14974. source: "./media/characters/nightraver/foot.svg"
  14975. }
  14976. },
  14977. maw: {
  14978. height: math.unit(2.67, "feet"),
  14979. name: "Maw",
  14980. image: {
  14981. source: "./media/characters/nightraver/maw.svg"
  14982. }
  14983. },
  14984. },
  14985. [
  14986. {
  14987. name: "Micro",
  14988. height: math.unit(1, "cm")
  14989. },
  14990. {
  14991. name: "Normal",
  14992. height: math.unit(15, "feet"),
  14993. default: true
  14994. },
  14995. {
  14996. name: "Macro",
  14997. height: math.unit(300, "feet")
  14998. },
  14999. {
  15000. name: "Megamacro",
  15001. height: math.unit(300, "miles")
  15002. },
  15003. {
  15004. name: "Gigamacro",
  15005. height: math.unit(10000, "miles")
  15006. },
  15007. ]
  15008. ))
  15009. characterMakers.push(() => makeCharacter(
  15010. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  15011. {
  15012. side: {
  15013. height: math.unit(2, "inches"),
  15014. weight: math.unit(5, "grams"),
  15015. name: "Side",
  15016. image: {
  15017. source: "./media/characters/arc/side.svg"
  15018. }
  15019. },
  15020. },
  15021. [
  15022. {
  15023. name: "Micro",
  15024. height: math.unit(2, "inches"),
  15025. default: true
  15026. },
  15027. ]
  15028. ))
  15029. characterMakers.push(() => makeCharacter(
  15030. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  15031. {
  15032. front: {
  15033. height: math.unit(1.1938, "meters"),
  15034. weight: math.unit(54, "kg"),
  15035. name: "Front",
  15036. image: {
  15037. source: "./media/characters/nebula-shahar/front.svg",
  15038. extra: 1642 / 1436,
  15039. bottom: 0.06
  15040. }
  15041. },
  15042. },
  15043. [
  15044. {
  15045. name: "Megamicro",
  15046. height: math.unit(0.3, "mm")
  15047. },
  15048. {
  15049. name: "Micro",
  15050. height: math.unit(3, "cm")
  15051. },
  15052. {
  15053. name: "Normal",
  15054. height: math.unit(138, "cm"),
  15055. default: true
  15056. },
  15057. {
  15058. name: "Macro",
  15059. height: math.unit(30, "m")
  15060. },
  15061. ]
  15062. ))
  15063. characterMakers.push(() => makeCharacter(
  15064. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  15065. {
  15066. front: {
  15067. height: math.unit(5.24, "feet"),
  15068. weight: math.unit(150, "lb"),
  15069. name: "Front",
  15070. image: {
  15071. source: "./media/characters/shayla/front.svg",
  15072. extra: 1512 / 1414,
  15073. bottom: 0.01
  15074. }
  15075. },
  15076. back: {
  15077. height: math.unit(5.24, "feet"),
  15078. weight: math.unit(150, "lb"),
  15079. name: "Back",
  15080. image: {
  15081. source: "./media/characters/shayla/back.svg",
  15082. extra: 1512 / 1414
  15083. }
  15084. },
  15085. hand: {
  15086. height: math.unit(0.7781496062992126, "feet"),
  15087. name: "Hand",
  15088. image: {
  15089. source: "./media/characters/shayla/hand.svg"
  15090. }
  15091. },
  15092. foot: {
  15093. height: math.unit(1.4206036745406823, "feet"),
  15094. name: "Foot",
  15095. image: {
  15096. source: "./media/characters/shayla/foot.svg"
  15097. }
  15098. },
  15099. },
  15100. [
  15101. {
  15102. name: "Micro",
  15103. height: math.unit(0.32, "feet")
  15104. },
  15105. {
  15106. name: "Normal",
  15107. height: math.unit(5.24, "feet"),
  15108. default: true
  15109. },
  15110. {
  15111. name: "Macro",
  15112. height: math.unit(492.12, "feet")
  15113. },
  15114. {
  15115. name: "Megamacro",
  15116. height: math.unit(186.41, "miles")
  15117. },
  15118. ]
  15119. ))
  15120. characterMakers.push(() => makeCharacter(
  15121. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  15122. {
  15123. front: {
  15124. height: math.unit(2.2, "m"),
  15125. weight: math.unit(120, "kg"),
  15126. name: "Front",
  15127. image: {
  15128. source: "./media/characters/pia-jr/front.svg",
  15129. extra: 1000 / 970,
  15130. bottom: 0.035
  15131. }
  15132. },
  15133. hand: {
  15134. height: math.unit(0.759 * 7.21 / 6, "feet"),
  15135. name: "Hand",
  15136. image: {
  15137. source: "./media/characters/pia-jr/hand.svg"
  15138. }
  15139. },
  15140. paw: {
  15141. height: math.unit(1.185 * 7.21 / 6, "feet"),
  15142. name: "Paw",
  15143. image: {
  15144. source: "./media/characters/pia-jr/paw.svg"
  15145. }
  15146. },
  15147. },
  15148. [
  15149. {
  15150. name: "Micro",
  15151. height: math.unit(1.2, "cm")
  15152. },
  15153. {
  15154. name: "Normal",
  15155. height: math.unit(2.2, "m"),
  15156. default: true
  15157. },
  15158. {
  15159. name: "Macro",
  15160. height: math.unit(180, "m")
  15161. },
  15162. {
  15163. name: "Megamacro",
  15164. height: math.unit(420, "km")
  15165. },
  15166. ]
  15167. ))
  15168. characterMakers.push(() => makeCharacter(
  15169. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  15170. {
  15171. front: {
  15172. height: math.unit(2, "m"),
  15173. weight: math.unit(115, "kg"),
  15174. name: "Front",
  15175. image: {
  15176. source: "./media/characters/pia-sr/front.svg",
  15177. extra: 760 / 730,
  15178. bottom: 0.015
  15179. }
  15180. },
  15181. back: {
  15182. height: math.unit(2, "m"),
  15183. weight: math.unit(115, "kg"),
  15184. name: "Back",
  15185. image: {
  15186. source: "./media/characters/pia-sr/back.svg",
  15187. extra: 760 / 730,
  15188. bottom: 0.01
  15189. }
  15190. },
  15191. hand: {
  15192. height: math.unit(0.89 * 6.56 / 6, "feet"),
  15193. name: "Hand",
  15194. image: {
  15195. source: "./media/characters/pia-sr/hand.svg"
  15196. }
  15197. },
  15198. foot: {
  15199. height: math.unit(1.83, "feet"),
  15200. name: "Foot",
  15201. image: {
  15202. source: "./media/characters/pia-sr/foot.svg"
  15203. }
  15204. },
  15205. },
  15206. [
  15207. {
  15208. name: "Micro",
  15209. height: math.unit(88, "mm")
  15210. },
  15211. {
  15212. name: "Normal",
  15213. height: math.unit(2, "m"),
  15214. default: true
  15215. },
  15216. {
  15217. name: "Macro",
  15218. height: math.unit(200, "m")
  15219. },
  15220. {
  15221. name: "Megamacro",
  15222. height: math.unit(420, "km")
  15223. },
  15224. ]
  15225. ))
  15226. characterMakers.push(() => makeCharacter(
  15227. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  15228. {
  15229. front: {
  15230. height: math.unit(8 + 2 / 12, "feet"),
  15231. weight: math.unit(300, "lb"),
  15232. name: "Front",
  15233. image: {
  15234. source: "./media/characters/kibibyte/front.svg",
  15235. extra: 2221 / 2098,
  15236. bottom: 0.04
  15237. }
  15238. },
  15239. },
  15240. [
  15241. {
  15242. name: "Normal",
  15243. height: math.unit(8 + 2 / 12, "feet"),
  15244. default: true
  15245. },
  15246. {
  15247. name: "Socialable Macro",
  15248. height: math.unit(50, "feet")
  15249. },
  15250. {
  15251. name: "Macro",
  15252. height: math.unit(300, "feet")
  15253. },
  15254. {
  15255. name: "Megamacro",
  15256. height: math.unit(500, "miles")
  15257. },
  15258. ]
  15259. ))
  15260. characterMakers.push(() => makeCharacter(
  15261. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  15262. {
  15263. front: {
  15264. height: math.unit(6, "feet"),
  15265. weight: math.unit(150, "lb"),
  15266. name: "Front",
  15267. image: {
  15268. source: "./media/characters/felix/front.svg",
  15269. extra: 762 / 722,
  15270. bottom: 0.02
  15271. }
  15272. },
  15273. frontClothed: {
  15274. height: math.unit(6, "feet"),
  15275. weight: math.unit(150, "lb"),
  15276. name: "Front (Clothed)",
  15277. image: {
  15278. source: "./media/characters/felix/front-clothed.svg",
  15279. extra: 762 / 722,
  15280. bottom: 0.02
  15281. }
  15282. },
  15283. },
  15284. [
  15285. {
  15286. name: "Normal",
  15287. height: math.unit(6 + 8 / 12, "feet"),
  15288. default: true
  15289. },
  15290. {
  15291. name: "Macro",
  15292. height: math.unit(2600, "feet")
  15293. },
  15294. {
  15295. name: "Megamacro",
  15296. height: math.unit(450, "miles")
  15297. },
  15298. ]
  15299. ))
  15300. characterMakers.push(() => makeCharacter(
  15301. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  15302. {
  15303. front: {
  15304. height: math.unit(6 + 1 / 12, "feet"),
  15305. weight: math.unit(250, "lb"),
  15306. name: "Front",
  15307. image: {
  15308. source: "./media/characters/tobo/front.svg",
  15309. extra: 608 / 586,
  15310. bottom: 0.023
  15311. }
  15312. },
  15313. back: {
  15314. height: math.unit(6 + 1 / 12, "feet"),
  15315. weight: math.unit(250, "lb"),
  15316. name: "Back",
  15317. image: {
  15318. source: "./media/characters/tobo/back.svg",
  15319. extra: 608 / 586
  15320. }
  15321. },
  15322. },
  15323. [
  15324. {
  15325. name: "Nano",
  15326. height: math.unit(2, "nm")
  15327. },
  15328. {
  15329. name: "Megamicro",
  15330. height: math.unit(0.1, "mm")
  15331. },
  15332. {
  15333. name: "Micro",
  15334. height: math.unit(1, "inch"),
  15335. default: true
  15336. },
  15337. {
  15338. name: "Human-sized",
  15339. height: math.unit(6 + 1 / 12, "feet")
  15340. },
  15341. {
  15342. name: "Macro",
  15343. height: math.unit(250, "feet")
  15344. },
  15345. {
  15346. name: "Megamacro",
  15347. height: math.unit(75, "miles")
  15348. },
  15349. {
  15350. name: "Texas-sized",
  15351. height: math.unit(750, "miles")
  15352. },
  15353. {
  15354. name: "Teramacro",
  15355. height: math.unit(50000, "miles")
  15356. },
  15357. ]
  15358. ))
  15359. characterMakers.push(() => makeCharacter(
  15360. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  15361. {
  15362. front: {
  15363. height: math.unit(6, "feet"),
  15364. weight: math.unit(269, "lb"),
  15365. name: "Front",
  15366. image: {
  15367. source: "./media/characters/danny-kapowsky/front.svg",
  15368. extra: 766 / 736,
  15369. bottom: 0.044
  15370. }
  15371. },
  15372. back: {
  15373. height: math.unit(6, "feet"),
  15374. weight: math.unit(269, "lb"),
  15375. name: "Back",
  15376. image: {
  15377. source: "./media/characters/danny-kapowsky/back.svg",
  15378. extra: 797 / 760,
  15379. bottom: 0.025
  15380. }
  15381. },
  15382. },
  15383. [
  15384. {
  15385. name: "Macro",
  15386. height: math.unit(150, "feet"),
  15387. default: true
  15388. },
  15389. {
  15390. name: "Macro+",
  15391. height: math.unit(200, "feet")
  15392. },
  15393. {
  15394. name: "Macro++",
  15395. height: math.unit(300, "feet")
  15396. },
  15397. {
  15398. name: "Macro+++",
  15399. height: math.unit(400, "feet")
  15400. },
  15401. ]
  15402. ))
  15403. characterMakers.push(() => makeCharacter(
  15404. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  15405. {
  15406. side: {
  15407. height: math.unit(6, "feet"),
  15408. weight: math.unit(170, "lb"),
  15409. name: "Side",
  15410. image: {
  15411. source: "./media/characters/finn/side.svg",
  15412. extra: 1953 / 1807,
  15413. bottom: 0.057
  15414. }
  15415. },
  15416. },
  15417. [
  15418. {
  15419. name: "Megamacro",
  15420. height: math.unit(14445, "feet"),
  15421. default: true
  15422. },
  15423. ]
  15424. ))
  15425. characterMakers.push(() => makeCharacter(
  15426. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  15427. {
  15428. front: {
  15429. height: math.unit(5 + 6 / 12, "feet"),
  15430. weight: math.unit(125, "lb"),
  15431. name: "Front",
  15432. image: {
  15433. source: "./media/characters/roy/front.svg",
  15434. extra: 1,
  15435. bottom: 0.11
  15436. }
  15437. },
  15438. },
  15439. [
  15440. {
  15441. name: "Micro",
  15442. height: math.unit(3, "inches"),
  15443. default: true
  15444. },
  15445. {
  15446. name: "Normal",
  15447. height: math.unit(5 + 6 / 12, "feet")
  15448. },
  15449. {
  15450. name: "Lesser Macro",
  15451. height: math.unit(60, "feet")
  15452. },
  15453. {
  15454. name: "Greater Macro",
  15455. height: math.unit(120, "feet")
  15456. },
  15457. ]
  15458. ))
  15459. characterMakers.push(() => makeCharacter(
  15460. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  15461. {
  15462. front: {
  15463. height: math.unit(6, "feet"),
  15464. weight: math.unit(100, "lb"),
  15465. name: "Front",
  15466. image: {
  15467. source: "./media/characters/aevsivs/front.svg",
  15468. extra: 1,
  15469. bottom: 0.03
  15470. }
  15471. },
  15472. back: {
  15473. height: math.unit(6, "feet"),
  15474. weight: math.unit(100, "lb"),
  15475. name: "Back",
  15476. image: {
  15477. source: "./media/characters/aevsivs/back.svg"
  15478. }
  15479. },
  15480. },
  15481. [
  15482. {
  15483. name: "Micro",
  15484. height: math.unit(2, "inches"),
  15485. default: true
  15486. },
  15487. {
  15488. name: "Normal",
  15489. height: math.unit(5, "feet")
  15490. },
  15491. ]
  15492. ))
  15493. characterMakers.push(() => makeCharacter(
  15494. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  15495. {
  15496. front: {
  15497. height: math.unit(5 + 7 / 12, "feet"),
  15498. weight: math.unit(159, "lb"),
  15499. name: "Front",
  15500. image: {
  15501. source: "./media/characters/hildegard/front.svg",
  15502. extra: 289 / 269,
  15503. bottom: 7.63 / 297.8
  15504. }
  15505. },
  15506. back: {
  15507. height: math.unit(5 + 7 / 12, "feet"),
  15508. weight: math.unit(159, "lb"),
  15509. name: "Back",
  15510. image: {
  15511. source: "./media/characters/hildegard/back.svg",
  15512. extra: 280 / 260,
  15513. bottom: 2.3 / 282
  15514. }
  15515. },
  15516. },
  15517. [
  15518. {
  15519. name: "Normal",
  15520. height: math.unit(5 + 7 / 12, "feet"),
  15521. default: true
  15522. },
  15523. ]
  15524. ))
  15525. characterMakers.push(() => makeCharacter(
  15526. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  15527. {
  15528. bernard: {
  15529. height: math.unit(2 + 7 / 12, "feet"),
  15530. weight: math.unit(66, "lb"),
  15531. name: "Bernard",
  15532. rename: true,
  15533. image: {
  15534. source: "./media/characters/bernard-wilder/bernard.svg",
  15535. extra: 192 / 128,
  15536. bottom: 0.05
  15537. }
  15538. },
  15539. wilder: {
  15540. height: math.unit(5 + 8 / 12, "feet"),
  15541. weight: math.unit(143, "lb"),
  15542. name: "Wilder",
  15543. rename: true,
  15544. image: {
  15545. source: "./media/characters/bernard-wilder/wilder.svg",
  15546. extra: 361 / 312,
  15547. bottom: 0.02
  15548. }
  15549. },
  15550. },
  15551. [
  15552. {
  15553. name: "Normal",
  15554. height: math.unit(2 + 7 / 12, "feet"),
  15555. default: true
  15556. },
  15557. ]
  15558. ))
  15559. characterMakers.push(() => makeCharacter(
  15560. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  15561. {
  15562. anthro: {
  15563. height: math.unit(6 + 1 / 12, "feet"),
  15564. weight: math.unit(155, "lb"),
  15565. name: "Anthro",
  15566. image: {
  15567. source: "./media/characters/hearth/anthro.svg",
  15568. extra: 1178/1136,
  15569. bottom: 28/1206
  15570. }
  15571. },
  15572. feral: {
  15573. height: math.unit(3.78, "feet"),
  15574. weight: math.unit(35, "kg"),
  15575. name: "Feral",
  15576. image: {
  15577. source: "./media/characters/hearth/feral.svg",
  15578. extra: 153 / 135,
  15579. bottom: 0.03
  15580. }
  15581. },
  15582. },
  15583. [
  15584. {
  15585. name: "Normal",
  15586. height: math.unit(6 + 1 / 12, "feet"),
  15587. default: true
  15588. },
  15589. ]
  15590. ))
  15591. characterMakers.push(() => makeCharacter(
  15592. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  15593. {
  15594. front: {
  15595. height: math.unit(6, "feet"),
  15596. weight: math.unit(182, "lb"),
  15597. name: "Front",
  15598. image: {
  15599. source: "./media/characters/ingrid/front.svg",
  15600. extra: 294 / 268,
  15601. bottom: 0.027
  15602. }
  15603. },
  15604. },
  15605. [
  15606. {
  15607. name: "Normal",
  15608. height: math.unit(6, "feet"),
  15609. default: true
  15610. },
  15611. ]
  15612. ))
  15613. characterMakers.push(() => makeCharacter(
  15614. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  15615. {
  15616. eevee: {
  15617. height: math.unit(2 + 10 / 12, "feet"),
  15618. weight: math.unit(86, "lb"),
  15619. name: "Malgam",
  15620. image: {
  15621. source: "./media/characters/malgam/eevee.svg",
  15622. extra: 952/784,
  15623. bottom: 38/990
  15624. }
  15625. },
  15626. sylveon: {
  15627. height: math.unit(4, "feet"),
  15628. weight: math.unit(101, "lb"),
  15629. name: "Future Malgam",
  15630. rename: true,
  15631. image: {
  15632. source: "./media/characters/malgam/sylveon.svg",
  15633. extra: 371 / 325,
  15634. bottom: 0.015
  15635. }
  15636. },
  15637. gigantamax: {
  15638. height: math.unit(50, "feet"),
  15639. name: "Gigantamax Malgam",
  15640. rename: true,
  15641. image: {
  15642. source: "./media/characters/malgam/gigantamax.svg"
  15643. }
  15644. },
  15645. },
  15646. [
  15647. {
  15648. name: "Normal",
  15649. height: math.unit(2 + 10 / 12, "feet"),
  15650. default: true
  15651. },
  15652. ]
  15653. ))
  15654. characterMakers.push(() => makeCharacter(
  15655. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  15656. {
  15657. front: {
  15658. height: math.unit(5 + 11 / 12, "feet"),
  15659. weight: math.unit(188, "lb"),
  15660. name: "Front",
  15661. image: {
  15662. source: "./media/characters/fleur/front.svg",
  15663. extra: 309 / 283,
  15664. bottom: 0.007
  15665. }
  15666. },
  15667. },
  15668. [
  15669. {
  15670. name: "Normal",
  15671. height: math.unit(5 + 11 / 12, "feet"),
  15672. default: true
  15673. },
  15674. ]
  15675. ))
  15676. characterMakers.push(() => makeCharacter(
  15677. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  15678. {
  15679. front: {
  15680. height: math.unit(5 + 4 / 12, "feet"),
  15681. weight: math.unit(122, "lb"),
  15682. name: "Front",
  15683. image: {
  15684. source: "./media/characters/jude/front.svg",
  15685. extra: 288 / 273,
  15686. bottom: 0.03
  15687. }
  15688. },
  15689. },
  15690. [
  15691. {
  15692. name: "Normal",
  15693. height: math.unit(5 + 4 / 12, "feet"),
  15694. default: true
  15695. },
  15696. ]
  15697. ))
  15698. characterMakers.push(() => makeCharacter(
  15699. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  15700. {
  15701. front: {
  15702. height: math.unit(5 + 11 / 12, "feet"),
  15703. weight: math.unit(190, "lb"),
  15704. name: "Front",
  15705. image: {
  15706. source: "./media/characters/seara/front.svg",
  15707. extra: 1,
  15708. bottom: 0.05
  15709. }
  15710. },
  15711. },
  15712. [
  15713. {
  15714. name: "Normal",
  15715. height: math.unit(5 + 11 / 12, "feet"),
  15716. default: true
  15717. },
  15718. ]
  15719. ))
  15720. characterMakers.push(() => makeCharacter(
  15721. { name: "Caspian (Lugia)", species: ["lugia"], tags: ["anthro"] },
  15722. {
  15723. front: {
  15724. height: math.unit(16 + 5 / 12, "feet"),
  15725. weight: math.unit(524, "lb"),
  15726. name: "Front",
  15727. image: {
  15728. source: "./media/characters/caspian-lugia/front.svg",
  15729. extra: 1,
  15730. bottom: 0.04
  15731. }
  15732. },
  15733. },
  15734. [
  15735. {
  15736. name: "Normal",
  15737. height: math.unit(16 + 5 / 12, "feet"),
  15738. default: true
  15739. },
  15740. ]
  15741. ))
  15742. characterMakers.push(() => makeCharacter(
  15743. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  15744. {
  15745. front: {
  15746. height: math.unit(5 + 7 / 12, "feet"),
  15747. weight: math.unit(170, "lb"),
  15748. name: "Front",
  15749. image: {
  15750. source: "./media/characters/mika/front.svg",
  15751. extra: 1,
  15752. bottom: 0.016
  15753. }
  15754. },
  15755. },
  15756. [
  15757. {
  15758. name: "Normal",
  15759. height: math.unit(5 + 7 / 12, "feet"),
  15760. default: true
  15761. },
  15762. ]
  15763. ))
  15764. characterMakers.push(() => makeCharacter(
  15765. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  15766. {
  15767. front: {
  15768. height: math.unit(6 + 2 / 12, "feet"),
  15769. weight: math.unit(268, "lb"),
  15770. name: "Front",
  15771. image: {
  15772. source: "./media/characters/sol/front.svg",
  15773. extra: 247 / 231,
  15774. bottom: 0.05
  15775. }
  15776. },
  15777. },
  15778. [
  15779. {
  15780. name: "Normal",
  15781. height: math.unit(6 + 2 / 12, "feet"),
  15782. default: true
  15783. },
  15784. ]
  15785. ))
  15786. characterMakers.push(() => makeCharacter(
  15787. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  15788. {
  15789. buizel: {
  15790. height: math.unit(2 + 5 / 12, "feet"),
  15791. weight: math.unit(87, "lb"),
  15792. name: "Front",
  15793. image: {
  15794. source: "./media/characters/umiko/buizel.svg",
  15795. extra: 172 / 157,
  15796. bottom: 0.01
  15797. },
  15798. form: "buizel",
  15799. default: true
  15800. },
  15801. floatzel: {
  15802. height: math.unit(5 + 9 / 12, "feet"),
  15803. weight: math.unit(250, "lb"),
  15804. name: "Front",
  15805. image: {
  15806. source: "./media/characters/umiko/floatzel.svg",
  15807. extra: 1076/1006,
  15808. bottom: 15/1091
  15809. },
  15810. form: "floatzel",
  15811. default: true
  15812. },
  15813. },
  15814. [
  15815. {
  15816. name: "Normal",
  15817. height: math.unit(2 + 5 / 12, "feet"),
  15818. form: "buizel",
  15819. default: true
  15820. },
  15821. {
  15822. name: "Normal",
  15823. height: math.unit(5 + 9 / 12, "feet"),
  15824. form: "floatzel",
  15825. default: true
  15826. },
  15827. ],
  15828. {
  15829. "buizel": {
  15830. name: "Buizel"
  15831. },
  15832. "floatzel": {
  15833. name: "Floatzel",
  15834. default: true
  15835. }
  15836. }
  15837. ))
  15838. characterMakers.push(() => makeCharacter(
  15839. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  15840. {
  15841. front: {
  15842. height: math.unit(6 + 2 / 12, "feet"),
  15843. weight: math.unit(146, "lb"),
  15844. name: "Front",
  15845. image: {
  15846. source: "./media/characters/iliac/front.svg",
  15847. extra: 389 / 365,
  15848. bottom: 0.035
  15849. }
  15850. },
  15851. },
  15852. [
  15853. {
  15854. name: "Normal",
  15855. height: math.unit(6 + 2 / 12, "feet"),
  15856. default: true
  15857. },
  15858. ]
  15859. ))
  15860. characterMakers.push(() => makeCharacter(
  15861. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  15862. {
  15863. front: {
  15864. height: math.unit(6, "feet"),
  15865. weight: math.unit(170, "lb"),
  15866. name: "Front",
  15867. image: {
  15868. source: "./media/characters/topaz/front.svg",
  15869. extra: 317 / 303,
  15870. bottom: 0.055
  15871. }
  15872. },
  15873. },
  15874. [
  15875. {
  15876. name: "Normal",
  15877. height: math.unit(6, "feet"),
  15878. default: true
  15879. },
  15880. ]
  15881. ))
  15882. characterMakers.push(() => makeCharacter(
  15883. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  15884. {
  15885. front: {
  15886. height: math.unit(5 + 11 / 12, "feet"),
  15887. weight: math.unit(144, "lb"),
  15888. name: "Front",
  15889. image: {
  15890. source: "./media/characters/gabriel/front.svg",
  15891. extra: 285 / 262,
  15892. bottom: 0.004
  15893. }
  15894. },
  15895. },
  15896. [
  15897. {
  15898. name: "Normal",
  15899. height: math.unit(5 + 11 / 12, "feet"),
  15900. default: true
  15901. },
  15902. ]
  15903. ))
  15904. characterMakers.push(() => makeCharacter(
  15905. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  15906. {
  15907. side: {
  15908. height: math.unit(6 + 5 / 12, "feet"),
  15909. weight: math.unit(300, "lb"),
  15910. name: "Side",
  15911. image: {
  15912. source: "./media/characters/tempest-suicune/side.svg",
  15913. extra: 195 / 154,
  15914. bottom: 0.04
  15915. }
  15916. },
  15917. },
  15918. [
  15919. {
  15920. name: "Normal",
  15921. height: math.unit(6 + 5 / 12, "feet"),
  15922. default: true
  15923. },
  15924. ]
  15925. ))
  15926. characterMakers.push(() => makeCharacter(
  15927. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  15928. {
  15929. front: {
  15930. height: math.unit(7 + 2 / 12, "feet"),
  15931. weight: math.unit(322, "lb"),
  15932. name: "Front",
  15933. image: {
  15934. source: "./media/characters/vulcan/front.svg",
  15935. extra: 154 / 147,
  15936. bottom: 0.04
  15937. }
  15938. },
  15939. },
  15940. [
  15941. {
  15942. name: "Normal",
  15943. height: math.unit(7 + 2 / 12, "feet"),
  15944. default: true
  15945. },
  15946. ]
  15947. ))
  15948. characterMakers.push(() => makeCharacter(
  15949. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  15950. {
  15951. front: {
  15952. height: math.unit(5 + 10 / 12, "feet"),
  15953. weight: math.unit(264, "lb"),
  15954. name: "Front",
  15955. image: {
  15956. source: "./media/characters/gault/front.svg",
  15957. extra: 161 / 140,
  15958. bottom: 0.028
  15959. }
  15960. },
  15961. },
  15962. [
  15963. {
  15964. name: "Normal",
  15965. height: math.unit(5 + 10 / 12, "feet"),
  15966. default: true
  15967. },
  15968. ]
  15969. ))
  15970. characterMakers.push(() => makeCharacter(
  15971. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  15972. {
  15973. front: {
  15974. height: math.unit(6, "feet"),
  15975. weight: math.unit(150, "lb"),
  15976. name: "Front",
  15977. image: {
  15978. source: "./media/characters/shard/front.svg",
  15979. extra: 273 / 238,
  15980. bottom: 0.02
  15981. }
  15982. },
  15983. },
  15984. [
  15985. {
  15986. name: "Normal",
  15987. height: math.unit(3 + 6 / 12, "feet"),
  15988. default: true
  15989. },
  15990. ]
  15991. ))
  15992. characterMakers.push(() => makeCharacter(
  15993. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  15994. {
  15995. front: {
  15996. height: math.unit(5 + 11 / 12, "feet"),
  15997. weight: math.unit(146, "lb"),
  15998. name: "Front",
  15999. image: {
  16000. source: "./media/characters/ashe/front.svg",
  16001. extra: 400 / 373,
  16002. bottom: 0.01
  16003. }
  16004. },
  16005. },
  16006. [
  16007. {
  16008. name: "Normal",
  16009. height: math.unit(5 + 11 / 12, "feet"),
  16010. default: true
  16011. },
  16012. ]
  16013. ))
  16014. characterMakers.push(() => makeCharacter(
  16015. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  16016. {
  16017. front: {
  16018. height: math.unit(5 + 5 / 12, "feet"),
  16019. weight: math.unit(135, "lb"),
  16020. name: "Front",
  16021. image: {
  16022. source: "./media/characters/beatrix/front.svg",
  16023. extra: 392 / 379,
  16024. bottom: 0.01
  16025. }
  16026. },
  16027. },
  16028. [
  16029. {
  16030. name: "Normal",
  16031. height: math.unit(6, "feet"),
  16032. default: true
  16033. },
  16034. ]
  16035. ))
  16036. characterMakers.push(() => makeCharacter(
  16037. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  16038. {
  16039. front: {
  16040. height: math.unit(6 + 2/12, "feet"),
  16041. weight: math.unit(135, "lb"),
  16042. name: "Front",
  16043. image: {
  16044. source: "./media/characters/ignatius/front.svg",
  16045. extra: 1380/1259,
  16046. bottom: 27/1407
  16047. }
  16048. },
  16049. },
  16050. [
  16051. {
  16052. name: "Normal",
  16053. height: math.unit(6 + 2/12, "feet"),
  16054. default: true
  16055. },
  16056. ]
  16057. ))
  16058. characterMakers.push(() => makeCharacter(
  16059. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  16060. {
  16061. front: {
  16062. height: math.unit(6 + 2 / 12, "feet"),
  16063. weight: math.unit(138, "lb"),
  16064. name: "Front",
  16065. image: {
  16066. source: "./media/characters/mei-li/front.svg",
  16067. extra: 237 / 229,
  16068. bottom: 0.03
  16069. }
  16070. },
  16071. },
  16072. [
  16073. {
  16074. name: "Normal",
  16075. height: math.unit(6 + 2 / 12, "feet"),
  16076. default: true
  16077. },
  16078. ]
  16079. ))
  16080. characterMakers.push(() => makeCharacter(
  16081. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  16082. {
  16083. front: {
  16084. height: math.unit(2 + 4 / 12, "feet"),
  16085. weight: math.unit(62, "lb"),
  16086. name: "Front",
  16087. image: {
  16088. source: "./media/characters/puru/front.svg",
  16089. extra: 206 / 149,
  16090. bottom: 0.06
  16091. }
  16092. },
  16093. },
  16094. [
  16095. {
  16096. name: "Normal",
  16097. height: math.unit(2 + 4 / 12, "feet"),
  16098. default: true
  16099. },
  16100. ]
  16101. ))
  16102. characterMakers.push(() => makeCharacter(
  16103. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  16104. {
  16105. anthro: {
  16106. height: math.unit(5 + 8/12, "feet"),
  16107. weight: math.unit(200, "lb"),
  16108. energyNeed: math.unit(2000, "kcal"),
  16109. name: "Anthro",
  16110. image: {
  16111. source: "./media/characters/kee/anthro.svg",
  16112. extra: 3251/3184,
  16113. bottom: 250/3501
  16114. }
  16115. },
  16116. taur: {
  16117. height: math.unit(11, "feet"),
  16118. weight: math.unit(500, "lb"),
  16119. energyNeed: math.unit(5000, "kcal"),
  16120. name: "Taur",
  16121. image: {
  16122. source: "./media/characters/kee/taur.svg",
  16123. extra: 1362/1320,
  16124. bottom: 83/1445
  16125. }
  16126. },
  16127. },
  16128. [
  16129. {
  16130. name: "Normal",
  16131. height: math.unit(5 + 8/12, "feet"),
  16132. default: true
  16133. },
  16134. {
  16135. name: "Macro",
  16136. height: math.unit(35, "feet")
  16137. },
  16138. ]
  16139. ))
  16140. characterMakers.push(() => makeCharacter(
  16141. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  16142. {
  16143. anthro: {
  16144. height: math.unit(7, "feet"),
  16145. weight: math.unit(190, "lb"),
  16146. name: "Anthro",
  16147. image: {
  16148. source: "./media/characters/cobalt-dracha/anthro.svg",
  16149. extra: 231 / 225,
  16150. bottom: 0.04
  16151. }
  16152. },
  16153. feral: {
  16154. height: math.unit(9 + 7 / 12, "feet"),
  16155. weight: math.unit(294, "lb"),
  16156. name: "Feral",
  16157. image: {
  16158. source: "./media/characters/cobalt-dracha/feral.svg",
  16159. extra: 692 / 633,
  16160. bottom: 0.05
  16161. }
  16162. },
  16163. },
  16164. [
  16165. {
  16166. name: "Normal",
  16167. height: math.unit(7, "feet"),
  16168. default: true
  16169. },
  16170. ]
  16171. ))
  16172. characterMakers.push(() => makeCharacter(
  16173. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  16174. {
  16175. fallen: {
  16176. height: math.unit(11 + 8 / 12, "feet"),
  16177. weight: math.unit(485, "lb"),
  16178. name: "Java (Fallen)",
  16179. rename: true,
  16180. image: {
  16181. source: "./media/characters/java/fallen.svg",
  16182. extra: 226 / 208,
  16183. bottom: 0.005
  16184. }
  16185. },
  16186. godkin: {
  16187. height: math.unit(10 + 6 / 12, "feet"),
  16188. weight: math.unit(328, "lb"),
  16189. name: "Java (Godkin)",
  16190. rename: true,
  16191. image: {
  16192. source: "./media/characters/java/godkin.svg",
  16193. extra: 1104/1068,
  16194. bottom: 36/1140
  16195. }
  16196. },
  16197. },
  16198. [
  16199. {
  16200. name: "Normal",
  16201. height: math.unit(11 + 8 / 12, "feet"),
  16202. default: true
  16203. },
  16204. ]
  16205. ))
  16206. characterMakers.push(() => makeCharacter(
  16207. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  16208. {
  16209. front: {
  16210. height: math.unit(5 + 9 / 12, "feet"),
  16211. weight: math.unit(170, "lb"),
  16212. name: "Front",
  16213. image: {
  16214. source: "./media/characters/purna/front.svg",
  16215. extra: 239 / 229,
  16216. bottom: 0.01
  16217. }
  16218. },
  16219. },
  16220. [
  16221. {
  16222. name: "Normal",
  16223. height: math.unit(5 + 9 / 12, "feet"),
  16224. default: true
  16225. },
  16226. ]
  16227. ))
  16228. characterMakers.push(() => makeCharacter(
  16229. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  16230. {
  16231. front: {
  16232. height: math.unit(5 + 9 / 12, "feet"),
  16233. weight: math.unit(142, "lb"),
  16234. name: "Front",
  16235. image: {
  16236. source: "./media/characters/kuva/front.svg",
  16237. extra: 281 / 271,
  16238. bottom: 0.006
  16239. }
  16240. },
  16241. },
  16242. [
  16243. {
  16244. name: "Normal",
  16245. height: math.unit(5 + 9 / 12, "feet"),
  16246. default: true
  16247. },
  16248. ]
  16249. ))
  16250. characterMakers.push(() => makeCharacter(
  16251. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  16252. {
  16253. anthro: {
  16254. height: math.unit(9 + 2 / 12, "feet"),
  16255. weight: math.unit(270, "lb"),
  16256. name: "Anthro",
  16257. image: {
  16258. source: "./media/characters/embra/anthro.svg",
  16259. extra: 200 / 187,
  16260. bottom: 0.02
  16261. }
  16262. },
  16263. feral: {
  16264. height: math.unit(18 + 8 / 12, "feet"),
  16265. weight: math.unit(576, "lb"),
  16266. name: "Feral",
  16267. image: {
  16268. source: "./media/characters/embra/feral.svg",
  16269. extra: 152 / 137,
  16270. bottom: 0.037
  16271. }
  16272. },
  16273. },
  16274. [
  16275. {
  16276. name: "Normal",
  16277. height: math.unit(9 + 2 / 12, "feet"),
  16278. default: true
  16279. },
  16280. ]
  16281. ))
  16282. characterMakers.push(() => makeCharacter(
  16283. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  16284. {
  16285. anthro: {
  16286. height: math.unit(10 + 9 / 12, "feet"),
  16287. weight: math.unit(224, "lb"),
  16288. name: "Anthro",
  16289. image: {
  16290. source: "./media/characters/grottos/anthro.svg",
  16291. extra: 350 / 332,
  16292. bottom: 0.045
  16293. }
  16294. },
  16295. feral: {
  16296. height: math.unit(20 + 7 / 12, "feet"),
  16297. weight: math.unit(629, "lb"),
  16298. name: "Feral",
  16299. image: {
  16300. source: "./media/characters/grottos/feral.svg",
  16301. extra: 207 / 190,
  16302. bottom: 0.05
  16303. }
  16304. },
  16305. },
  16306. [
  16307. {
  16308. name: "Normal",
  16309. height: math.unit(10 + 9 / 12, "feet"),
  16310. default: true
  16311. },
  16312. ]
  16313. ))
  16314. characterMakers.push(() => makeCharacter(
  16315. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  16316. {
  16317. anthro: {
  16318. height: math.unit(9 + 6 / 12, "feet"),
  16319. weight: math.unit(298, "lb"),
  16320. name: "Anthro",
  16321. image: {
  16322. source: "./media/characters/frifna/anthro.svg",
  16323. extra: 282 / 269,
  16324. bottom: 0.015
  16325. }
  16326. },
  16327. feral: {
  16328. height: math.unit(16 + 2 / 12, "feet"),
  16329. weight: math.unit(624, "lb"),
  16330. name: "Feral",
  16331. image: {
  16332. source: "./media/characters/frifna/feral.svg"
  16333. }
  16334. },
  16335. },
  16336. [
  16337. {
  16338. name: "Normal",
  16339. height: math.unit(9 + 6 / 12, "feet"),
  16340. default: true
  16341. },
  16342. ]
  16343. ))
  16344. characterMakers.push(() => makeCharacter(
  16345. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  16346. {
  16347. front: {
  16348. height: math.unit(6 + 2 / 12, "feet"),
  16349. weight: math.unit(168, "lb"),
  16350. name: "Front",
  16351. image: {
  16352. source: "./media/characters/elise/front.svg",
  16353. extra: 276 / 271
  16354. }
  16355. },
  16356. },
  16357. [
  16358. {
  16359. name: "Normal",
  16360. height: math.unit(6 + 2 / 12, "feet"),
  16361. default: true
  16362. },
  16363. ]
  16364. ))
  16365. characterMakers.push(() => makeCharacter(
  16366. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  16367. {
  16368. front: {
  16369. height: math.unit(5 + 10 / 12, "feet"),
  16370. weight: math.unit(210, "lb"),
  16371. name: "Front",
  16372. image: {
  16373. source: "./media/characters/glade/front.svg",
  16374. extra: 258 / 247,
  16375. bottom: 0.008
  16376. }
  16377. },
  16378. },
  16379. [
  16380. {
  16381. name: "Normal",
  16382. height: math.unit(5 + 10 / 12, "feet"),
  16383. default: true
  16384. },
  16385. ]
  16386. ))
  16387. characterMakers.push(() => makeCharacter(
  16388. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  16389. {
  16390. front: {
  16391. height: math.unit(5 + 10 / 12, "feet"),
  16392. weight: math.unit(129, "lb"),
  16393. name: "Front",
  16394. image: {
  16395. source: "./media/characters/rina/front.svg",
  16396. extra: 266 / 255,
  16397. bottom: 0.005
  16398. }
  16399. },
  16400. },
  16401. [
  16402. {
  16403. name: "Normal",
  16404. height: math.unit(5 + 10 / 12, "feet"),
  16405. default: true
  16406. },
  16407. ]
  16408. ))
  16409. characterMakers.push(() => makeCharacter(
  16410. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  16411. {
  16412. front: {
  16413. height: math.unit(6 + 1 / 12, "feet"),
  16414. weight: math.unit(192, "lb"),
  16415. name: "Front",
  16416. image: {
  16417. source: "./media/characters/veronica/front.svg",
  16418. extra: 319 / 309,
  16419. bottom: 0.005
  16420. }
  16421. },
  16422. },
  16423. [
  16424. {
  16425. name: "Normal",
  16426. height: math.unit(6 + 1 / 12, "feet"),
  16427. default: true
  16428. },
  16429. ]
  16430. ))
  16431. characterMakers.push(() => makeCharacter(
  16432. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  16433. {
  16434. front: {
  16435. height: math.unit(9 + 3 / 12, "feet"),
  16436. weight: math.unit(1100, "lb"),
  16437. name: "Front",
  16438. image: {
  16439. source: "./media/characters/braxton/front.svg",
  16440. extra: 1057 / 984,
  16441. bottom: 0.05
  16442. }
  16443. },
  16444. },
  16445. [
  16446. {
  16447. name: "Normal",
  16448. height: math.unit(9 + 3 / 12, "feet")
  16449. },
  16450. {
  16451. name: "Giant",
  16452. height: math.unit(300, "feet"),
  16453. default: true
  16454. },
  16455. {
  16456. name: "Macro",
  16457. height: math.unit(700, "feet")
  16458. },
  16459. {
  16460. name: "Megamacro",
  16461. height: math.unit(6000, "feet")
  16462. },
  16463. ]
  16464. ))
  16465. characterMakers.push(() => makeCharacter(
  16466. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  16467. {
  16468. front: {
  16469. height: math.unit(6 + 7 / 12, "feet"),
  16470. weight: math.unit(150, "lb"),
  16471. name: "Front",
  16472. image: {
  16473. source: "./media/characters/blue-feyonics/front.svg",
  16474. extra: 1403 / 1306,
  16475. bottom: 0.047
  16476. }
  16477. },
  16478. },
  16479. [
  16480. {
  16481. name: "Normal",
  16482. height: math.unit(6 + 7 / 12, "feet"),
  16483. default: true
  16484. },
  16485. ]
  16486. ))
  16487. characterMakers.push(() => makeCharacter(
  16488. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  16489. {
  16490. front: {
  16491. height: math.unit(1.8, "meters"),
  16492. weight: math.unit(60, "kg"),
  16493. name: "Front",
  16494. image: {
  16495. source: "./media/characters/maxwell/front.svg",
  16496. extra: 2060 / 1873
  16497. }
  16498. },
  16499. },
  16500. [
  16501. {
  16502. name: "Micro",
  16503. height: math.unit(1, "mm")
  16504. },
  16505. {
  16506. name: "Normal",
  16507. height: math.unit(1.8, "meter"),
  16508. default: true
  16509. },
  16510. {
  16511. name: "Macro",
  16512. height: math.unit(30, "meters")
  16513. },
  16514. {
  16515. name: "Megamacro",
  16516. height: math.unit(10, "km")
  16517. },
  16518. ]
  16519. ))
  16520. characterMakers.push(() => makeCharacter(
  16521. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  16522. {
  16523. front: {
  16524. height: math.unit(6, "feet"),
  16525. weight: math.unit(150, "lb"),
  16526. name: "Front",
  16527. image: {
  16528. source: "./media/characters/jack/front.svg",
  16529. extra: 1754 / 1640,
  16530. bottom: 0.01
  16531. }
  16532. },
  16533. },
  16534. [
  16535. {
  16536. name: "Normal",
  16537. height: math.unit(80000, "feet"),
  16538. default: true
  16539. },
  16540. {
  16541. name: "Max size",
  16542. height: math.unit(10, "lightyears")
  16543. },
  16544. ]
  16545. ))
  16546. characterMakers.push(() => makeCharacter(
  16547. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  16548. {
  16549. urban: {
  16550. height: math.unit(5, "feet"),
  16551. weight: math.unit(240, "lb"),
  16552. name: "Urban",
  16553. image: {
  16554. source: "./media/characters/cafat/urban.svg",
  16555. extra: 1223/1126,
  16556. bottom: 205/1428
  16557. }
  16558. },
  16559. summer: {
  16560. height: math.unit(5, "feet"),
  16561. weight: math.unit(240, "lb"),
  16562. name: "Summer",
  16563. image: {
  16564. source: "./media/characters/cafat/summer.svg",
  16565. extra: 1223/1126,
  16566. bottom: 205/1428
  16567. }
  16568. },
  16569. winter: {
  16570. height: math.unit(5, "feet"),
  16571. weight: math.unit(240, "lb"),
  16572. name: "Winter",
  16573. image: {
  16574. source: "./media/characters/cafat/winter.svg",
  16575. extra: 1223/1126,
  16576. bottom: 205/1428
  16577. }
  16578. },
  16579. lingerie: {
  16580. height: math.unit(5, "feet"),
  16581. weight: math.unit(240, "lb"),
  16582. name: "Lingerie",
  16583. image: {
  16584. source: "./media/characters/cafat/lingerie.svg",
  16585. extra: 1223/1126,
  16586. bottom: 205/1428
  16587. }
  16588. },
  16589. upright: {
  16590. height: math.unit(6.3, "feet"),
  16591. weight: math.unit(240, "lb"),
  16592. name: "Upright",
  16593. image: {
  16594. source: "./media/characters/cafat/upright.svg",
  16595. bottom: 0.01
  16596. }
  16597. },
  16598. uprightFull: {
  16599. height: math.unit(6.3, "feet"),
  16600. weight: math.unit(240, "lb"),
  16601. name: "Upright (Full)",
  16602. image: {
  16603. source: "./media/characters/cafat/upright-full.svg",
  16604. bottom: 0.01
  16605. }
  16606. },
  16607. },
  16608. [
  16609. {
  16610. name: "Small",
  16611. height: math.unit(5, "feet"),
  16612. default: true
  16613. },
  16614. {
  16615. name: "Large",
  16616. height: math.unit(13, "feet")
  16617. },
  16618. ]
  16619. ))
  16620. characterMakers.push(() => makeCharacter(
  16621. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  16622. {
  16623. front: {
  16624. height: math.unit(6, "feet"),
  16625. weight: math.unit(150, "lb"),
  16626. name: "Front",
  16627. image: {
  16628. source: "./media/characters/verin-raharra/front.svg",
  16629. extra: 5019 / 4835,
  16630. bottom: 0.023
  16631. }
  16632. },
  16633. },
  16634. [
  16635. {
  16636. name: "Normal",
  16637. height: math.unit(7 + 5 / 12, "feet"),
  16638. default: true
  16639. },
  16640. {
  16641. name: "Upsized",
  16642. height: math.unit(20, "feet")
  16643. },
  16644. ]
  16645. ))
  16646. characterMakers.push(() => makeCharacter(
  16647. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  16648. {
  16649. front: {
  16650. height: math.unit(7, "feet"),
  16651. weight: math.unit(230, "lb"),
  16652. name: "Front",
  16653. image: {
  16654. source: "./media/characters/nakata/front.svg",
  16655. extra: 1.005,
  16656. bottom: 0.01
  16657. }
  16658. },
  16659. },
  16660. [
  16661. {
  16662. name: "Normal",
  16663. height: math.unit(7, "feet"),
  16664. default: true
  16665. },
  16666. {
  16667. name: "Big",
  16668. height: math.unit(14, "feet")
  16669. },
  16670. {
  16671. name: "Macro",
  16672. height: math.unit(400, "feet")
  16673. },
  16674. ]
  16675. ))
  16676. characterMakers.push(() => makeCharacter(
  16677. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  16678. {
  16679. front: {
  16680. height: math.unit(4.91, "feet"),
  16681. weight: math.unit(100, "lb"),
  16682. name: "Front",
  16683. image: {
  16684. source: "./media/characters/lily/front.svg",
  16685. extra: 1585 / 1415,
  16686. bottom: 0.02
  16687. }
  16688. },
  16689. },
  16690. [
  16691. {
  16692. name: "Normal",
  16693. height: math.unit(4.91, "feet"),
  16694. default: true
  16695. },
  16696. ]
  16697. ))
  16698. characterMakers.push(() => makeCharacter(
  16699. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  16700. {
  16701. laying: {
  16702. height: math.unit(4 + 4 / 12, "feet"),
  16703. weight: math.unit(600, "lb"),
  16704. name: "Laying",
  16705. image: {
  16706. source: "./media/characters/sheila/laying.svg",
  16707. extra: 1333 / 1265,
  16708. bottom: 0.16
  16709. }
  16710. },
  16711. },
  16712. [
  16713. {
  16714. name: "Normal",
  16715. height: math.unit(4 + 4 / 12, "feet"),
  16716. default: true
  16717. },
  16718. ]
  16719. ))
  16720. characterMakers.push(() => makeCharacter(
  16721. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  16722. {
  16723. front: {
  16724. height: math.unit(6, "feet"),
  16725. weight: math.unit(190, "lb"),
  16726. name: "Front",
  16727. image: {
  16728. source: "./media/characters/sax/front.svg",
  16729. extra: 1187 / 973,
  16730. bottom: 0.042
  16731. }
  16732. },
  16733. },
  16734. [
  16735. {
  16736. name: "Micro",
  16737. height: math.unit(4, "inches"),
  16738. default: true
  16739. },
  16740. ]
  16741. ))
  16742. characterMakers.push(() => makeCharacter(
  16743. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  16744. {
  16745. front: {
  16746. height: math.unit(6, "feet"),
  16747. weight: math.unit(150, "lb"),
  16748. name: "Front",
  16749. image: {
  16750. source: "./media/characters/pandora/front.svg",
  16751. extra: 2720 / 2556,
  16752. bottom: 0.015
  16753. }
  16754. },
  16755. back: {
  16756. height: math.unit(6, "feet"),
  16757. weight: math.unit(150, "lb"),
  16758. name: "Back",
  16759. image: {
  16760. source: "./media/characters/pandora/back.svg",
  16761. extra: 2720 / 2556,
  16762. bottom: 0.01
  16763. }
  16764. },
  16765. beans: {
  16766. height: math.unit(6 / 8, "feet"),
  16767. name: "Beans",
  16768. image: {
  16769. source: "./media/characters/pandora/beans.svg"
  16770. }
  16771. },
  16772. collar: {
  16773. height: math.unit(0.31, "feet"),
  16774. name: "Collar",
  16775. image: {
  16776. source: "./media/characters/pandora/collar.svg"
  16777. }
  16778. },
  16779. skirt: {
  16780. height: math.unit(6, "feet"),
  16781. weight: math.unit(150, "lb"),
  16782. name: "Skirt",
  16783. image: {
  16784. source: "./media/characters/pandora/skirt.svg",
  16785. extra: 1622 / 1525,
  16786. bottom: 0.015
  16787. }
  16788. },
  16789. hoodie: {
  16790. height: math.unit(6, "feet"),
  16791. weight: math.unit(150, "lb"),
  16792. name: "Hoodie",
  16793. image: {
  16794. source: "./media/characters/pandora/hoodie.svg",
  16795. extra: 1622 / 1525,
  16796. bottom: 0.015
  16797. }
  16798. },
  16799. casual: {
  16800. height: math.unit(6, "feet"),
  16801. weight: math.unit(150, "lb"),
  16802. name: "Casual",
  16803. image: {
  16804. source: "./media/characters/pandora/casual.svg",
  16805. extra: 1622 / 1525,
  16806. bottom: 0.015
  16807. }
  16808. },
  16809. },
  16810. [
  16811. {
  16812. name: "Normal",
  16813. height: math.unit(6, "feet")
  16814. },
  16815. {
  16816. name: "Big Steppy",
  16817. height: math.unit(1, "km"),
  16818. default: true
  16819. },
  16820. {
  16821. name: "Galactic Steppy",
  16822. height: math.unit(2, "gigameters")
  16823. },
  16824. ]
  16825. ))
  16826. characterMakers.push(() => makeCharacter(
  16827. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  16828. {
  16829. side: {
  16830. height: math.unit(10, "feet"),
  16831. weight: math.unit(800, "kg"),
  16832. name: "Side",
  16833. image: {
  16834. source: "./media/characters/venio-darcony/side.svg",
  16835. extra: 1373 / 1003,
  16836. bottom: 0.037
  16837. }
  16838. },
  16839. front: {
  16840. height: math.unit(19, "feet"),
  16841. weight: math.unit(800, "kg"),
  16842. name: "Front",
  16843. image: {
  16844. source: "./media/characters/venio-darcony/front.svg"
  16845. }
  16846. },
  16847. back: {
  16848. height: math.unit(19, "feet"),
  16849. weight: math.unit(800, "kg"),
  16850. name: "Back",
  16851. image: {
  16852. source: "./media/characters/venio-darcony/back.svg"
  16853. }
  16854. },
  16855. sideNsfw: {
  16856. height: math.unit(10, "feet"),
  16857. weight: math.unit(800, "kg"),
  16858. name: "Side (NSFW)",
  16859. image: {
  16860. source: "./media/characters/venio-darcony/side-nsfw.svg",
  16861. extra: 1373 / 1003,
  16862. bottom: 0.037
  16863. }
  16864. },
  16865. frontNsfw: {
  16866. height: math.unit(19, "feet"),
  16867. weight: math.unit(800, "kg"),
  16868. name: "Front (NSFW)",
  16869. image: {
  16870. source: "./media/characters/venio-darcony/front-nsfw.svg"
  16871. }
  16872. },
  16873. backNsfw: {
  16874. height: math.unit(19, "feet"),
  16875. weight: math.unit(800, "kg"),
  16876. name: "Back (NSFW)",
  16877. image: {
  16878. source: "./media/characters/venio-darcony/back-nsfw.svg"
  16879. }
  16880. },
  16881. sideArmored: {
  16882. height: math.unit(10, "feet"),
  16883. weight: math.unit(800, "kg"),
  16884. name: "Side (Armored)",
  16885. image: {
  16886. source: "./media/characters/venio-darcony/side-armored.svg",
  16887. extra: 1373 / 1003,
  16888. bottom: 0.037
  16889. }
  16890. },
  16891. frontArmored: {
  16892. height: math.unit(19, "feet"),
  16893. weight: math.unit(900, "kg"),
  16894. name: "Front (Armored)",
  16895. image: {
  16896. source: "./media/characters/venio-darcony/front-armored.svg"
  16897. }
  16898. },
  16899. backArmored: {
  16900. height: math.unit(19, "feet"),
  16901. weight: math.unit(900, "kg"),
  16902. name: "Back (Armored)",
  16903. image: {
  16904. source: "./media/characters/venio-darcony/back-armored.svg"
  16905. }
  16906. },
  16907. sword: {
  16908. height: math.unit(10, "feet"),
  16909. weight: math.unit(50, "lb"),
  16910. name: "Sword",
  16911. image: {
  16912. source: "./media/characters/venio-darcony/sword.svg"
  16913. }
  16914. },
  16915. },
  16916. [
  16917. {
  16918. name: "Normal",
  16919. height: math.unit(10, "feet")
  16920. },
  16921. {
  16922. name: "Macro",
  16923. height: math.unit(130, "feet"),
  16924. default: true
  16925. },
  16926. {
  16927. name: "Macro+",
  16928. height: math.unit(240, "feet")
  16929. },
  16930. ]
  16931. ))
  16932. characterMakers.push(() => makeCharacter(
  16933. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  16934. {
  16935. front: {
  16936. height: math.unit(6, "feet"),
  16937. weight: math.unit(150, "lb"),
  16938. name: "Front",
  16939. image: {
  16940. source: "./media/characters/veski/front.svg",
  16941. extra: 1299 / 1225,
  16942. bottom: 0.04
  16943. }
  16944. },
  16945. back: {
  16946. height: math.unit(6, "feet"),
  16947. weight: math.unit(150, "lb"),
  16948. name: "Back",
  16949. image: {
  16950. source: "./media/characters/veski/back.svg",
  16951. extra: 1299 / 1225,
  16952. bottom: 0.008
  16953. }
  16954. },
  16955. maw: {
  16956. height: math.unit(1.5 * 1.21, "feet"),
  16957. name: "Maw",
  16958. image: {
  16959. source: "./media/characters/veski/maw.svg"
  16960. }
  16961. },
  16962. },
  16963. [
  16964. {
  16965. name: "Macro",
  16966. height: math.unit(2, "km"),
  16967. default: true
  16968. },
  16969. ]
  16970. ))
  16971. characterMakers.push(() => makeCharacter(
  16972. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  16973. {
  16974. front: {
  16975. height: math.unit(5 + 7 / 12, "feet"),
  16976. name: "Front",
  16977. image: {
  16978. source: "./media/characters/isabelle/front.svg",
  16979. extra: 2130 / 1976,
  16980. bottom: 0.05
  16981. }
  16982. },
  16983. },
  16984. [
  16985. {
  16986. name: "Supermicro",
  16987. height: math.unit(10, "micrometers")
  16988. },
  16989. {
  16990. name: "Micro",
  16991. height: math.unit(1, "inch")
  16992. },
  16993. {
  16994. name: "Tiny",
  16995. height: math.unit(5, "inches")
  16996. },
  16997. {
  16998. name: "Standard",
  16999. height: math.unit(5 + 7 / 12, "inches")
  17000. },
  17001. {
  17002. name: "Macro",
  17003. height: math.unit(80, "meters"),
  17004. default: true
  17005. },
  17006. {
  17007. name: "Megamacro",
  17008. height: math.unit(250, "meters")
  17009. },
  17010. {
  17011. name: "Gigamacro",
  17012. height: math.unit(5, "km")
  17013. },
  17014. {
  17015. name: "Cosmic",
  17016. height: math.unit(2.5e6, "miles")
  17017. },
  17018. ]
  17019. ))
  17020. characterMakers.push(() => makeCharacter(
  17021. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  17022. {
  17023. front: {
  17024. height: math.unit(6, "feet"),
  17025. weight: math.unit(150, "lb"),
  17026. name: "Front",
  17027. image: {
  17028. source: "./media/characters/hanzo/front.svg",
  17029. extra: 374 / 344,
  17030. bottom: 0.02
  17031. }
  17032. },
  17033. },
  17034. [
  17035. {
  17036. name: "Normal",
  17037. height: math.unit(8, "feet"),
  17038. default: true
  17039. },
  17040. ]
  17041. ))
  17042. characterMakers.push(() => makeCharacter(
  17043. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  17044. {
  17045. front: {
  17046. height: math.unit(7, "feet"),
  17047. weight: math.unit(130, "lb"),
  17048. name: "Front",
  17049. image: {
  17050. source: "./media/characters/anna/front.svg",
  17051. extra: 169 / 145,
  17052. bottom: 0.06
  17053. }
  17054. },
  17055. full: {
  17056. height: math.unit(4.96, "feet"),
  17057. weight: math.unit(220, "lb"),
  17058. name: "Full",
  17059. image: {
  17060. source: "./media/characters/anna/full.svg",
  17061. extra: 138 / 114,
  17062. bottom: 0.15
  17063. }
  17064. },
  17065. tongue: {
  17066. height: math.unit(2.53, "feet"),
  17067. name: "Tongue",
  17068. image: {
  17069. source: "./media/characters/anna/tongue.svg"
  17070. }
  17071. },
  17072. },
  17073. [
  17074. {
  17075. name: "Normal",
  17076. height: math.unit(7, "feet"),
  17077. default: true
  17078. },
  17079. ]
  17080. ))
  17081. characterMakers.push(() => makeCharacter(
  17082. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  17083. {
  17084. front: {
  17085. height: math.unit(7, "feet"),
  17086. weight: math.unit(150, "lb"),
  17087. name: "Front",
  17088. image: {
  17089. source: "./media/characters/ian-corvid/front.svg",
  17090. extra: 150 / 142,
  17091. bottom: 0.02
  17092. }
  17093. },
  17094. back: {
  17095. height: math.unit(7, "feet"),
  17096. weight: math.unit(150, "lb"),
  17097. name: "Back",
  17098. image: {
  17099. source: "./media/characters/ian-corvid/back.svg",
  17100. extra: 150 / 143,
  17101. bottom: 0.01
  17102. }
  17103. },
  17104. stomping: {
  17105. height: math.unit(7, "feet"),
  17106. weight: math.unit(150, "lb"),
  17107. name: "Stomping",
  17108. image: {
  17109. source: "./media/characters/ian-corvid/stomping.svg",
  17110. extra: 76 / 72
  17111. }
  17112. },
  17113. sitting: {
  17114. height: math.unit(7 / 1.8, "feet"),
  17115. weight: math.unit(150, "lb"),
  17116. name: "Sitting",
  17117. image: {
  17118. source: "./media/characters/ian-corvid/sitting.svg",
  17119. extra: 1400 / 1269,
  17120. bottom: 0.15
  17121. }
  17122. },
  17123. },
  17124. [
  17125. {
  17126. name: "Tiny Microw",
  17127. height: math.unit(1, "inch")
  17128. },
  17129. {
  17130. name: "Microw",
  17131. height: math.unit(6, "inches")
  17132. },
  17133. {
  17134. name: "Crow",
  17135. height: math.unit(7 + 1 / 12, "feet"),
  17136. default: true
  17137. },
  17138. {
  17139. name: "Macrow",
  17140. height: math.unit(176, "feet")
  17141. },
  17142. ]
  17143. ))
  17144. characterMakers.push(() => makeCharacter(
  17145. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  17146. {
  17147. front: {
  17148. height: math.unit(5 + 7 / 12, "feet"),
  17149. weight: math.unit(147, "lb"),
  17150. name: "Front",
  17151. image: {
  17152. source: "./media/characters/natalie-kellon/front.svg",
  17153. extra: 1214 / 1141,
  17154. bottom: 0.02
  17155. }
  17156. },
  17157. },
  17158. [
  17159. {
  17160. name: "Micro",
  17161. height: math.unit(1 / 16, "inch")
  17162. },
  17163. {
  17164. name: "Tiny",
  17165. height: math.unit(4, "inches")
  17166. },
  17167. {
  17168. name: "Normal",
  17169. height: math.unit(5 + 7 / 12, "feet"),
  17170. default: true
  17171. },
  17172. {
  17173. name: "Amazon",
  17174. height: math.unit(12, "feet")
  17175. },
  17176. {
  17177. name: "Giantess",
  17178. height: math.unit(160, "meters")
  17179. },
  17180. {
  17181. name: "Titaness",
  17182. height: math.unit(800, "meters")
  17183. },
  17184. ]
  17185. ))
  17186. characterMakers.push(() => makeCharacter(
  17187. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  17188. {
  17189. front: {
  17190. height: math.unit(6, "feet"),
  17191. weight: math.unit(150, "lb"),
  17192. name: "Front",
  17193. image: {
  17194. source: "./media/characters/alluria/front.svg",
  17195. extra: 806 / 738,
  17196. bottom: 0.01
  17197. }
  17198. },
  17199. side: {
  17200. height: math.unit(6, "feet"),
  17201. weight: math.unit(150, "lb"),
  17202. name: "Side",
  17203. image: {
  17204. source: "./media/characters/alluria/side.svg",
  17205. extra: 800 / 750,
  17206. }
  17207. },
  17208. back: {
  17209. height: math.unit(6, "feet"),
  17210. weight: math.unit(150, "lb"),
  17211. name: "Back",
  17212. image: {
  17213. source: "./media/characters/alluria/back.svg",
  17214. extra: 806 / 738,
  17215. }
  17216. },
  17217. frontMaid: {
  17218. height: math.unit(6, "feet"),
  17219. weight: math.unit(150, "lb"),
  17220. name: "Front (Maid)",
  17221. image: {
  17222. source: "./media/characters/alluria/front-maid.svg",
  17223. extra: 806 / 738,
  17224. bottom: 0.01
  17225. }
  17226. },
  17227. sideMaid: {
  17228. height: math.unit(6, "feet"),
  17229. weight: math.unit(150, "lb"),
  17230. name: "Side (Maid)",
  17231. image: {
  17232. source: "./media/characters/alluria/side-maid.svg",
  17233. extra: 800 / 750,
  17234. bottom: 0.005
  17235. }
  17236. },
  17237. backMaid: {
  17238. height: math.unit(6, "feet"),
  17239. weight: math.unit(150, "lb"),
  17240. name: "Back (Maid)",
  17241. image: {
  17242. source: "./media/characters/alluria/back-maid.svg",
  17243. extra: 806 / 738,
  17244. }
  17245. },
  17246. },
  17247. [
  17248. {
  17249. name: "Micro",
  17250. height: math.unit(6, "inches"),
  17251. default: true
  17252. },
  17253. ]
  17254. ))
  17255. characterMakers.push(() => makeCharacter(
  17256. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  17257. {
  17258. front: {
  17259. height: math.unit(6, "feet"),
  17260. weight: math.unit(150, "lb"),
  17261. name: "Front",
  17262. image: {
  17263. source: "./media/characters/kyle/front.svg",
  17264. extra: 1069 / 962,
  17265. bottom: 77.228 / 1727.45
  17266. }
  17267. },
  17268. },
  17269. [
  17270. {
  17271. name: "Macro",
  17272. height: math.unit(150, "feet"),
  17273. default: true
  17274. },
  17275. ]
  17276. ))
  17277. characterMakers.push(() => makeCharacter(
  17278. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  17279. {
  17280. front: {
  17281. height: math.unit(6, "feet"),
  17282. weight: math.unit(300, "lb"),
  17283. name: "Front",
  17284. image: {
  17285. source: "./media/characters/duncan/front.svg",
  17286. extra: 1650 / 1482,
  17287. bottom: 0.05
  17288. }
  17289. },
  17290. },
  17291. [
  17292. {
  17293. name: "Macro",
  17294. height: math.unit(100, "feet"),
  17295. default: true
  17296. },
  17297. ]
  17298. ))
  17299. characterMakers.push(() => makeCharacter(
  17300. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  17301. {
  17302. front: {
  17303. height: math.unit(5 + 4 / 12, "feet"),
  17304. weight: math.unit(220, "lb"),
  17305. name: "Front",
  17306. image: {
  17307. source: "./media/characters/memory/front.svg",
  17308. extra: 3641 / 3545,
  17309. bottom: 0.03
  17310. }
  17311. },
  17312. back: {
  17313. height: math.unit(5 + 4 / 12, "feet"),
  17314. weight: math.unit(220, "lb"),
  17315. name: "Back",
  17316. image: {
  17317. source: "./media/characters/memory/back.svg",
  17318. extra: 3641 / 3545,
  17319. bottom: 0.025
  17320. }
  17321. },
  17322. frontSkirt: {
  17323. height: math.unit(5 + 4 / 12, "feet"),
  17324. weight: math.unit(220, "lb"),
  17325. name: "Front (Skirt)",
  17326. image: {
  17327. source: "./media/characters/memory/front-skirt.svg",
  17328. extra: 3641 / 3545,
  17329. bottom: 0.03
  17330. }
  17331. },
  17332. frontDress: {
  17333. height: math.unit(5 + 4 / 12, "feet"),
  17334. weight: math.unit(220, "lb"),
  17335. name: "Front (Dress)",
  17336. image: {
  17337. source: "./media/characters/memory/front-dress.svg",
  17338. extra: 3641 / 3545,
  17339. bottom: 0.03
  17340. }
  17341. },
  17342. },
  17343. [
  17344. {
  17345. name: "Micro",
  17346. height: math.unit(6, "inches"),
  17347. default: true
  17348. },
  17349. {
  17350. name: "Normal",
  17351. height: math.unit(5 + 4 / 12, "feet")
  17352. },
  17353. ]
  17354. ))
  17355. characterMakers.push(() => makeCharacter(
  17356. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  17357. {
  17358. front: {
  17359. height: math.unit(4 + 11 / 12, "feet"),
  17360. weight: math.unit(100, "lb"),
  17361. name: "Front",
  17362. image: {
  17363. source: "./media/characters/luno/front.svg",
  17364. extra: 1535 / 1487,
  17365. bottom: 0.03
  17366. }
  17367. },
  17368. },
  17369. [
  17370. {
  17371. name: "Micro",
  17372. height: math.unit(3, "inches")
  17373. },
  17374. {
  17375. name: "Normal",
  17376. height: math.unit(4 + 11 / 12, "feet"),
  17377. default: true
  17378. },
  17379. {
  17380. name: "Macro",
  17381. height: math.unit(300, "feet")
  17382. },
  17383. {
  17384. name: "Megamacro",
  17385. height: math.unit(700, "miles")
  17386. },
  17387. ]
  17388. ))
  17389. characterMakers.push(() => makeCharacter(
  17390. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  17391. {
  17392. front: {
  17393. height: math.unit(6 + 2 / 12, "feet"),
  17394. weight: math.unit(170, "lb"),
  17395. name: "Front",
  17396. image: {
  17397. source: "./media/characters/jamesy/front.svg",
  17398. extra: 440 / 382,
  17399. bottom: 0.005
  17400. }
  17401. },
  17402. },
  17403. [
  17404. {
  17405. name: "Micro",
  17406. height: math.unit(3, "inches")
  17407. },
  17408. {
  17409. name: "Normal",
  17410. height: math.unit(6 + 2 / 12, "feet"),
  17411. default: true
  17412. },
  17413. {
  17414. name: "Macro",
  17415. height: math.unit(300, "feet")
  17416. },
  17417. {
  17418. name: "Megamacro",
  17419. height: math.unit(700, "miles")
  17420. },
  17421. ]
  17422. ))
  17423. characterMakers.push(() => makeCharacter(
  17424. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  17425. {
  17426. front: {
  17427. height: math.unit(6, "feet"),
  17428. weight: math.unit(160, "lb"),
  17429. name: "Front",
  17430. image: {
  17431. source: "./media/characters/mark/front.svg",
  17432. extra: 3300 / 3100,
  17433. bottom: 136.42 / 3440.47
  17434. }
  17435. },
  17436. },
  17437. [
  17438. {
  17439. name: "Macro",
  17440. height: math.unit(120, "meters")
  17441. },
  17442. {
  17443. name: "Bigger Macro",
  17444. height: math.unit(350, "meters")
  17445. },
  17446. {
  17447. name: "Megamacro",
  17448. height: math.unit(8, "km"),
  17449. default: true
  17450. },
  17451. {
  17452. name: "Continental",
  17453. height: math.unit(4550, "km")
  17454. },
  17455. {
  17456. name: "Planetary",
  17457. height: math.unit(65000, "km")
  17458. },
  17459. ]
  17460. ))
  17461. characterMakers.push(() => makeCharacter(
  17462. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  17463. {
  17464. front: {
  17465. height: math.unit(6, "feet"),
  17466. weight: math.unit(400, "lb"),
  17467. name: "Front",
  17468. image: {
  17469. source: "./media/characters/mac/front.svg",
  17470. extra: 1048 / 987.7,
  17471. bottom: 60 / 1107.6,
  17472. }
  17473. },
  17474. },
  17475. [
  17476. {
  17477. name: "Macro",
  17478. height: math.unit(500, "feet"),
  17479. default: true
  17480. },
  17481. ]
  17482. ))
  17483. characterMakers.push(() => makeCharacter(
  17484. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  17485. {
  17486. front: {
  17487. height: math.unit(5 + 2 / 12, "feet"),
  17488. weight: math.unit(190, "lb"),
  17489. name: "Front",
  17490. image: {
  17491. source: "./media/characters/bari/front.svg",
  17492. extra: 3156 / 2880,
  17493. bottom: 0.03
  17494. }
  17495. },
  17496. back: {
  17497. height: math.unit(5 + 2 / 12, "feet"),
  17498. weight: math.unit(190, "lb"),
  17499. name: "Back",
  17500. image: {
  17501. source: "./media/characters/bari/back.svg",
  17502. extra: 3260 / 2834,
  17503. bottom: 0.025
  17504. }
  17505. },
  17506. frontPlush: {
  17507. height: math.unit(5 + 2 / 12, "feet"),
  17508. weight: math.unit(190, "lb"),
  17509. name: "Front (Plush)",
  17510. image: {
  17511. source: "./media/characters/bari/front-plush.svg",
  17512. extra: 1112 / 1061,
  17513. bottom: 0.002
  17514. }
  17515. },
  17516. },
  17517. [
  17518. {
  17519. name: "Micro",
  17520. height: math.unit(3, "inches")
  17521. },
  17522. {
  17523. name: "Normal",
  17524. height: math.unit(5 + 2 / 12, "feet"),
  17525. default: true
  17526. },
  17527. {
  17528. name: "Macro",
  17529. height: math.unit(20, "feet")
  17530. },
  17531. ]
  17532. ))
  17533. characterMakers.push(() => makeCharacter(
  17534. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  17535. {
  17536. front: {
  17537. height: math.unit(6 + 1 / 12, "feet"),
  17538. weight: math.unit(275, "lb"),
  17539. name: "Front",
  17540. image: {
  17541. source: "./media/characters/hunter-misha-raven/front.svg"
  17542. }
  17543. },
  17544. },
  17545. [
  17546. {
  17547. name: "Mortal",
  17548. height: math.unit(6 + 1 / 12, "feet")
  17549. },
  17550. {
  17551. name: "Divine",
  17552. height: math.unit(1.12134e34, "parsecs"),
  17553. default: true
  17554. },
  17555. ]
  17556. ))
  17557. characterMakers.push(() => makeCharacter(
  17558. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  17559. {
  17560. front: {
  17561. height: math.unit(6 + 3 / 12, "feet"),
  17562. weight: math.unit(220, "lb"),
  17563. name: "Front",
  17564. image: {
  17565. source: "./media/characters/max-calore/front.svg",
  17566. extra: 1700 / 1648,
  17567. bottom: 0.01
  17568. }
  17569. },
  17570. back: {
  17571. height: math.unit(6 + 3 / 12, "feet"),
  17572. weight: math.unit(220, "lb"),
  17573. name: "Back",
  17574. image: {
  17575. source: "./media/characters/max-calore/back.svg",
  17576. extra: 1700 / 1648,
  17577. bottom: 0.01
  17578. }
  17579. },
  17580. },
  17581. [
  17582. {
  17583. name: "Normal",
  17584. height: math.unit(6 + 3 / 12, "feet"),
  17585. default: true
  17586. },
  17587. ]
  17588. ))
  17589. characterMakers.push(() => makeCharacter(
  17590. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  17591. {
  17592. side: {
  17593. height: math.unit(2 + 8 / 12, "feet"),
  17594. weight: math.unit(99, "lb"),
  17595. name: "Side",
  17596. image: {
  17597. source: "./media/characters/aspen/side.svg",
  17598. extra: 152 / 138,
  17599. bottom: 0.032
  17600. }
  17601. },
  17602. },
  17603. [
  17604. {
  17605. name: "Normal",
  17606. height: math.unit(2 + 8 / 12, "feet"),
  17607. default: true
  17608. },
  17609. ]
  17610. ))
  17611. characterMakers.push(() => makeCharacter(
  17612. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  17613. {
  17614. side: {
  17615. height: math.unit(3 + 2 / 12, "feet"),
  17616. weight: math.unit(224, "lb"),
  17617. name: "Side",
  17618. image: {
  17619. source: "./media/characters/sheila-feral-wolf/side.svg",
  17620. extra: 179 / 166,
  17621. bottom: 0.03
  17622. }
  17623. },
  17624. },
  17625. [
  17626. {
  17627. name: "Normal",
  17628. height: math.unit(3 + 2 / 12, "feet"),
  17629. default: true
  17630. },
  17631. ]
  17632. ))
  17633. characterMakers.push(() => makeCharacter(
  17634. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  17635. {
  17636. side: {
  17637. height: math.unit(1 + 9 / 12, "feet"),
  17638. weight: math.unit(38, "lb"),
  17639. name: "Side",
  17640. image: {
  17641. source: "./media/characters/michelle/side.svg",
  17642. extra: 147 / 136.7,
  17643. bottom: 0.03
  17644. }
  17645. },
  17646. },
  17647. [
  17648. {
  17649. name: "Normal",
  17650. height: math.unit(1 + 9 / 12, "feet"),
  17651. default: true
  17652. },
  17653. ]
  17654. ))
  17655. characterMakers.push(() => makeCharacter(
  17656. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  17657. {
  17658. front: {
  17659. height: math.unit(1.54, "feet"),
  17660. weight: math.unit(50, "lb"),
  17661. name: "Front",
  17662. image: {
  17663. source: "./media/characters/nino/front.svg"
  17664. }
  17665. },
  17666. },
  17667. [
  17668. {
  17669. name: "Normal",
  17670. height: math.unit(1.54, "feet"),
  17671. default: true
  17672. },
  17673. ]
  17674. ))
  17675. characterMakers.push(() => makeCharacter(
  17676. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  17677. {
  17678. front: {
  17679. height: math.unit(1.49, "feet"),
  17680. weight: math.unit(45, "lb"),
  17681. name: "Front",
  17682. image: {
  17683. source: "./media/characters/viola/front.svg"
  17684. }
  17685. },
  17686. },
  17687. [
  17688. {
  17689. name: "Normal",
  17690. height: math.unit(1.49, "feet"),
  17691. default: true
  17692. },
  17693. ]
  17694. ))
  17695. characterMakers.push(() => makeCharacter(
  17696. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  17697. {
  17698. front: {
  17699. height: math.unit(6 + 5 / 12, "feet"),
  17700. weight: math.unit(580, "lb"),
  17701. name: "Front",
  17702. image: {
  17703. source: "./media/characters/atlas/front.svg",
  17704. extra: 298.5 / 290,
  17705. bottom: 0.015
  17706. }
  17707. },
  17708. },
  17709. [
  17710. {
  17711. name: "Normal",
  17712. height: math.unit(6 + 5 / 12, "feet"),
  17713. default: true
  17714. },
  17715. ]
  17716. ))
  17717. characterMakers.push(() => makeCharacter(
  17718. { name: "Davy", species: ["cat"], tags: ["feral"] },
  17719. {
  17720. side: {
  17721. height: math.unit(15.6, "inches"),
  17722. weight: math.unit(10, "lb"),
  17723. name: "Side",
  17724. image: {
  17725. source: "./media/characters/davy/side.svg",
  17726. extra: 200 / 170,
  17727. bottom: 0.01
  17728. }
  17729. },
  17730. },
  17731. [
  17732. {
  17733. name: "Normal",
  17734. height: math.unit(15.6, "inches"),
  17735. default: true
  17736. },
  17737. ]
  17738. ))
  17739. characterMakers.push(() => makeCharacter(
  17740. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  17741. {
  17742. side: {
  17743. height: math.unit(4 + 8 / 12, "feet"),
  17744. weight: math.unit(166, "lb"),
  17745. name: "Side",
  17746. image: {
  17747. source: "./media/characters/fiona/side.svg",
  17748. extra: 232 / 220,
  17749. bottom: 0.03
  17750. }
  17751. },
  17752. },
  17753. [
  17754. {
  17755. name: "Normal",
  17756. height: math.unit(4 + 8 / 12, "feet"),
  17757. default: true
  17758. },
  17759. ]
  17760. ))
  17761. characterMakers.push(() => makeCharacter(
  17762. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  17763. {
  17764. front: {
  17765. height: math.unit(26, "inches"),
  17766. weight: math.unit(35, "lb"),
  17767. name: "Front",
  17768. image: {
  17769. source: "./media/characters/lyla/front.svg",
  17770. bottom: 0.1
  17771. }
  17772. },
  17773. },
  17774. [
  17775. {
  17776. name: "Normal",
  17777. height: math.unit(3, "feet"),
  17778. default: true
  17779. },
  17780. ]
  17781. ))
  17782. characterMakers.push(() => makeCharacter(
  17783. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  17784. {
  17785. side: {
  17786. height: math.unit(1.8, "feet"),
  17787. weight: math.unit(44, "lb"),
  17788. name: "Side",
  17789. image: {
  17790. source: "./media/characters/perseus/side.svg",
  17791. bottom: 0.21
  17792. }
  17793. },
  17794. },
  17795. [
  17796. {
  17797. name: "Normal",
  17798. height: math.unit(1.8, "feet"),
  17799. default: true
  17800. },
  17801. ]
  17802. ))
  17803. characterMakers.push(() => makeCharacter(
  17804. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  17805. {
  17806. side: {
  17807. height: math.unit(4 + 2 / 12, "feet"),
  17808. weight: math.unit(20, "lb"),
  17809. name: "Side",
  17810. image: {
  17811. source: "./media/characters/remus/side.svg"
  17812. }
  17813. },
  17814. },
  17815. [
  17816. {
  17817. name: "Normal",
  17818. height: math.unit(4 + 2 / 12, "feet"),
  17819. default: true
  17820. },
  17821. ]
  17822. ))
  17823. characterMakers.push(() => makeCharacter(
  17824. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  17825. {
  17826. front: {
  17827. height: math.unit(4 + 11 / 12, "feet"),
  17828. weight: math.unit(114, "lb"),
  17829. name: "Front",
  17830. image: {
  17831. source: "./media/characters/raf/front.svg",
  17832. extra: 1504/1339,
  17833. bottom: 26/1530
  17834. }
  17835. },
  17836. side: {
  17837. height: math.unit(4 + 11 / 12, "feet"),
  17838. weight: math.unit(114, "lb"),
  17839. name: "Side",
  17840. image: {
  17841. source: "./media/characters/raf/side.svg",
  17842. extra: 1466/1316,
  17843. bottom: 29/1495
  17844. }
  17845. },
  17846. },
  17847. [
  17848. {
  17849. name: "Micro",
  17850. height: math.unit(2, "inches")
  17851. },
  17852. {
  17853. name: "Normal",
  17854. height: math.unit(4 + 11 / 12, "feet"),
  17855. default: true
  17856. },
  17857. {
  17858. name: "Macro",
  17859. height: math.unit(70, "feet")
  17860. },
  17861. ]
  17862. ))
  17863. characterMakers.push(() => makeCharacter(
  17864. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  17865. {
  17866. front: {
  17867. height: math.unit(1.5, "meters"),
  17868. weight: math.unit(68, "kg"),
  17869. name: "Front",
  17870. image: {
  17871. source: "./media/characters/liam-einarr/front.svg",
  17872. extra: 2822 / 2666
  17873. }
  17874. },
  17875. back: {
  17876. height: math.unit(1.5, "meters"),
  17877. weight: math.unit(68, "kg"),
  17878. name: "Back",
  17879. image: {
  17880. source: "./media/characters/liam-einarr/back.svg",
  17881. extra: 2822 / 2666,
  17882. bottom: 0.015
  17883. }
  17884. },
  17885. },
  17886. [
  17887. {
  17888. name: "Normal",
  17889. height: math.unit(1.5, "meters"),
  17890. default: true
  17891. },
  17892. {
  17893. name: "Macro",
  17894. height: math.unit(150, "meters")
  17895. },
  17896. {
  17897. name: "Megamacro",
  17898. height: math.unit(35, "km")
  17899. },
  17900. ]
  17901. ))
  17902. characterMakers.push(() => makeCharacter(
  17903. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  17904. {
  17905. front: {
  17906. height: math.unit(6, "feet"),
  17907. weight: math.unit(75, "kg"),
  17908. name: "Front",
  17909. image: {
  17910. source: "./media/characters/linda/front.svg",
  17911. extra: 930 / 874,
  17912. bottom: 0.004
  17913. }
  17914. },
  17915. },
  17916. [
  17917. {
  17918. name: "Normal",
  17919. height: math.unit(6, "feet"),
  17920. default: true
  17921. },
  17922. ]
  17923. ))
  17924. characterMakers.push(() => makeCharacter(
  17925. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  17926. {
  17927. front: {
  17928. height: math.unit(6 + 8 / 12, "feet"),
  17929. weight: math.unit(220, "lb"),
  17930. name: "Front",
  17931. image: {
  17932. source: "./media/characters/caylex/front.svg",
  17933. extra: 821 / 772,
  17934. bottom: 0.07
  17935. }
  17936. },
  17937. back: {
  17938. height: math.unit(6 + 8 / 12, "feet"),
  17939. weight: math.unit(220, "lb"),
  17940. name: "Back",
  17941. image: {
  17942. source: "./media/characters/caylex/back.svg",
  17943. extra: 821 / 772,
  17944. bottom: 0.022
  17945. }
  17946. },
  17947. hand: {
  17948. height: math.unit(1.25, "feet"),
  17949. name: "Hand",
  17950. image: {
  17951. source: "./media/characters/caylex/hand.svg"
  17952. }
  17953. },
  17954. foot: {
  17955. height: math.unit(1.6, "feet"),
  17956. name: "Foot",
  17957. image: {
  17958. source: "./media/characters/caylex/foot.svg"
  17959. }
  17960. },
  17961. armored: {
  17962. height: math.unit(6 + 8 / 12, "feet"),
  17963. weight: math.unit(250, "lb"),
  17964. name: "Armored",
  17965. image: {
  17966. source: "./media/characters/caylex/armored.svg",
  17967. extra: 1420 / 1310,
  17968. bottom: 0.045
  17969. }
  17970. },
  17971. },
  17972. [
  17973. {
  17974. name: "Normal",
  17975. height: math.unit(6 + 8 / 12, "feet"),
  17976. default: true
  17977. },
  17978. {
  17979. name: "Normal+",
  17980. height: math.unit(12, "feet")
  17981. },
  17982. ]
  17983. ))
  17984. characterMakers.push(() => makeCharacter(
  17985. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  17986. {
  17987. front: {
  17988. height: math.unit(7 + 6 / 12, "feet"),
  17989. weight: math.unit(288, "lb"),
  17990. name: "Front",
  17991. image: {
  17992. source: "./media/characters/alana/front.svg",
  17993. extra: 679 / 653,
  17994. bottom: 22.5 / 701
  17995. }
  17996. },
  17997. },
  17998. [
  17999. {
  18000. name: "Normal",
  18001. height: math.unit(7 + 6 / 12, "feet")
  18002. },
  18003. {
  18004. name: "Large",
  18005. height: math.unit(50, "feet")
  18006. },
  18007. {
  18008. name: "Macro",
  18009. height: math.unit(100, "feet"),
  18010. default: true
  18011. },
  18012. {
  18013. name: "Macro+",
  18014. height: math.unit(200, "feet")
  18015. },
  18016. ]
  18017. ))
  18018. characterMakers.push(() => makeCharacter(
  18019. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  18020. {
  18021. front: {
  18022. height: math.unit(6 + 1 / 12, "feet"),
  18023. weight: math.unit(210, "lb"),
  18024. name: "Front",
  18025. image: {
  18026. source: "./media/characters/hasani/front.svg",
  18027. extra: 244 / 232,
  18028. bottom: 0.01
  18029. }
  18030. },
  18031. back: {
  18032. height: math.unit(6 + 1 / 12, "feet"),
  18033. weight: math.unit(210, "lb"),
  18034. name: "Back",
  18035. image: {
  18036. source: "./media/characters/hasani/back.svg",
  18037. extra: 244 / 232,
  18038. bottom: 0.01
  18039. }
  18040. },
  18041. },
  18042. [
  18043. {
  18044. name: "Normal",
  18045. height: math.unit(6 + 1 / 12, "feet")
  18046. },
  18047. {
  18048. name: "Macro",
  18049. height: math.unit(175, "feet"),
  18050. default: true
  18051. },
  18052. ]
  18053. ))
  18054. characterMakers.push(() => makeCharacter(
  18055. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  18056. {
  18057. front: {
  18058. height: math.unit(1.82, "meters"),
  18059. weight: math.unit(140, "lb"),
  18060. name: "Front",
  18061. image: {
  18062. source: "./media/characters/nita/front.svg",
  18063. extra: 2473 / 2363,
  18064. bottom: 0.01
  18065. }
  18066. },
  18067. },
  18068. [
  18069. {
  18070. name: "Normal",
  18071. height: math.unit(1.82, "m")
  18072. },
  18073. {
  18074. name: "Macro",
  18075. height: math.unit(300, "m")
  18076. },
  18077. {
  18078. name: "Mistake Canon",
  18079. height: math.unit(0.5, "miles"),
  18080. default: true
  18081. },
  18082. {
  18083. name: "Big Mistake",
  18084. height: math.unit(13, "miles")
  18085. },
  18086. {
  18087. name: "Playing God",
  18088. height: math.unit(2450, "miles")
  18089. },
  18090. ]
  18091. ))
  18092. characterMakers.push(() => makeCharacter(
  18093. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  18094. {
  18095. front: {
  18096. height: math.unit(4, "feet"),
  18097. weight: math.unit(120, "lb"),
  18098. name: "Front",
  18099. image: {
  18100. source: "./media/characters/shiriko/front.svg",
  18101. extra: 970/934,
  18102. bottom: 5/975
  18103. }
  18104. },
  18105. },
  18106. [
  18107. {
  18108. name: "Normal",
  18109. height: math.unit(4, "feet"),
  18110. default: true
  18111. },
  18112. ]
  18113. ))
  18114. characterMakers.push(() => makeCharacter(
  18115. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  18116. {
  18117. front: {
  18118. height: math.unit(6, "feet"),
  18119. name: "front",
  18120. image: {
  18121. source: "./media/characters/deja/front.svg",
  18122. extra: 926 / 840,
  18123. bottom: 0.07
  18124. }
  18125. },
  18126. },
  18127. [
  18128. {
  18129. name: "Planck Length",
  18130. height: math.unit(1.6e-35, "meters")
  18131. },
  18132. {
  18133. name: "Normal",
  18134. height: math.unit(30.48, "meters"),
  18135. default: true
  18136. },
  18137. {
  18138. name: "Universal",
  18139. height: math.unit(8.8e26, "meters")
  18140. },
  18141. ]
  18142. ))
  18143. characterMakers.push(() => makeCharacter(
  18144. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  18145. {
  18146. side: {
  18147. height: math.unit(8, "feet"),
  18148. weight: math.unit(6300, "lb"),
  18149. name: "Side",
  18150. image: {
  18151. source: "./media/characters/anima/side.svg",
  18152. bottom: 0.035
  18153. }
  18154. },
  18155. },
  18156. [
  18157. {
  18158. name: "Normal",
  18159. height: math.unit(8, "feet"),
  18160. default: true
  18161. },
  18162. ]
  18163. ))
  18164. characterMakers.push(() => makeCharacter(
  18165. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  18166. {
  18167. front: {
  18168. height: math.unit(8, "feet"),
  18169. weight: math.unit(350, "lb"),
  18170. name: "Front",
  18171. image: {
  18172. source: "./media/characters/bianca/front.svg",
  18173. extra: 234 / 225,
  18174. bottom: 0.03
  18175. }
  18176. },
  18177. },
  18178. [
  18179. {
  18180. name: "Normal",
  18181. height: math.unit(8, "feet"),
  18182. default: true
  18183. },
  18184. ]
  18185. ))
  18186. characterMakers.push(() => makeCharacter(
  18187. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  18188. {
  18189. front: {
  18190. height: math.unit(6, "feet"),
  18191. weight: math.unit(150, "lb"),
  18192. name: "Front",
  18193. image: {
  18194. source: "./media/characters/adinia/front.svg",
  18195. extra: 1845 / 1672,
  18196. bottom: 0.02
  18197. }
  18198. },
  18199. back: {
  18200. height: math.unit(6, "feet"),
  18201. weight: math.unit(150, "lb"),
  18202. name: "Back",
  18203. image: {
  18204. source: "./media/characters/adinia/back.svg",
  18205. extra: 1845 / 1672,
  18206. bottom: 0.002
  18207. }
  18208. },
  18209. },
  18210. [
  18211. {
  18212. name: "Normal",
  18213. height: math.unit(11 + 5 / 12, "feet"),
  18214. default: true
  18215. },
  18216. ]
  18217. ))
  18218. characterMakers.push(() => makeCharacter(
  18219. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  18220. {
  18221. front: {
  18222. height: math.unit(3, "meters"),
  18223. weight: math.unit(200, "kg"),
  18224. name: "Front",
  18225. image: {
  18226. source: "./media/characters/lykasa/front.svg",
  18227. extra: 1076 / 976,
  18228. bottom: 0.06
  18229. }
  18230. },
  18231. },
  18232. [
  18233. {
  18234. name: "Normal",
  18235. height: math.unit(3, "meters")
  18236. },
  18237. {
  18238. name: "Kaiju",
  18239. height: math.unit(120, "meters"),
  18240. default: true
  18241. },
  18242. {
  18243. name: "Mega Kaiju",
  18244. height: math.unit(240, "km")
  18245. },
  18246. {
  18247. name: "Giga Kaiju",
  18248. height: math.unit(400, "megameters")
  18249. },
  18250. {
  18251. name: "Tera Kaiju",
  18252. height: math.unit(800, "gigameters")
  18253. },
  18254. {
  18255. name: "Kaiju Dragon Goddess",
  18256. height: math.unit(26, "zettaparsecs")
  18257. },
  18258. ]
  18259. ))
  18260. characterMakers.push(() => makeCharacter(
  18261. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  18262. {
  18263. side: {
  18264. height: math.unit(283 / 124 * 6, "feet"),
  18265. weight: math.unit(35000, "lb"),
  18266. name: "Side",
  18267. image: {
  18268. source: "./media/characters/malfaren/side.svg",
  18269. extra: 1310/529,
  18270. bottom: 24/1334
  18271. }
  18272. },
  18273. front: {
  18274. height: math.unit(22.36, "feet"),
  18275. weight: math.unit(35000, "lb"),
  18276. name: "Front",
  18277. image: {
  18278. source: "./media/characters/malfaren/front.svg",
  18279. extra: 1237/1115,
  18280. bottom: 32/1269
  18281. }
  18282. },
  18283. maw: {
  18284. height: math.unit(6.9, "feet"),
  18285. name: "Maw",
  18286. image: {
  18287. source: "./media/characters/malfaren/maw.svg"
  18288. }
  18289. },
  18290. dick: {
  18291. height: math.unit(6.19, "feet"),
  18292. name: "Dick",
  18293. image: {
  18294. source: "./media/characters/malfaren/dick.svg"
  18295. }
  18296. },
  18297. eye: {
  18298. height: math.unit(0.69, "feet"),
  18299. name: "Eye",
  18300. image: {
  18301. source: "./media/characters/malfaren/eye.svg"
  18302. }
  18303. },
  18304. },
  18305. [
  18306. {
  18307. name: "Big",
  18308. height: math.unit(283 / 162 * 6, "feet"),
  18309. },
  18310. {
  18311. name: "Bigger",
  18312. height: math.unit(283 / 124 * 6, "feet")
  18313. },
  18314. {
  18315. name: "Massive",
  18316. height: math.unit(283 / 92 * 6, "feet"),
  18317. default: true
  18318. },
  18319. {
  18320. name: "👀💦",
  18321. height: math.unit(283 / 73 * 6, "feet"),
  18322. },
  18323. ]
  18324. ))
  18325. characterMakers.push(() => makeCharacter(
  18326. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  18327. {
  18328. front: {
  18329. height: math.unit(1.7, "m"),
  18330. weight: math.unit(70, "kg"),
  18331. name: "Front",
  18332. image: {
  18333. source: "./media/characters/kernel/front.svg",
  18334. extra: 222 / 210,
  18335. bottom: 0.007
  18336. }
  18337. },
  18338. },
  18339. [
  18340. {
  18341. name: "Nano",
  18342. height: math.unit(17, "micrometers")
  18343. },
  18344. {
  18345. name: "Micro",
  18346. height: math.unit(1.7, "mm")
  18347. },
  18348. {
  18349. name: "Small",
  18350. height: math.unit(1.7, "cm")
  18351. },
  18352. {
  18353. name: "Normal",
  18354. height: math.unit(1.7, "m"),
  18355. default: true
  18356. },
  18357. ]
  18358. ))
  18359. characterMakers.push(() => makeCharacter(
  18360. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  18361. {
  18362. front: {
  18363. height: math.unit(1.75, "meters"),
  18364. weight: math.unit(65, "kg"),
  18365. name: "Front",
  18366. image: {
  18367. source: "./media/characters/jayne-folest/front.svg",
  18368. extra: 2115 / 2007,
  18369. bottom: 0.02
  18370. }
  18371. },
  18372. back: {
  18373. height: math.unit(1.75, "meters"),
  18374. weight: math.unit(65, "kg"),
  18375. name: "Back",
  18376. image: {
  18377. source: "./media/characters/jayne-folest/back.svg",
  18378. extra: 2115 / 2007,
  18379. bottom: 0.005
  18380. }
  18381. },
  18382. frontClothed: {
  18383. height: math.unit(1.75, "meters"),
  18384. weight: math.unit(65, "kg"),
  18385. name: "Front (Clothed)",
  18386. image: {
  18387. source: "./media/characters/jayne-folest/front-clothed.svg",
  18388. extra: 2115 / 2007,
  18389. bottom: 0.035
  18390. }
  18391. },
  18392. hand: {
  18393. height: math.unit(1 / 1.260, "feet"),
  18394. name: "Hand",
  18395. image: {
  18396. source: "./media/characters/jayne-folest/hand.svg"
  18397. }
  18398. },
  18399. foot: {
  18400. height: math.unit(1 / 0.918, "feet"),
  18401. name: "Foot",
  18402. image: {
  18403. source: "./media/characters/jayne-folest/foot.svg"
  18404. }
  18405. },
  18406. },
  18407. [
  18408. {
  18409. name: "Micro",
  18410. height: math.unit(4, "cm")
  18411. },
  18412. {
  18413. name: "Normal",
  18414. height: math.unit(1.75, "meters")
  18415. },
  18416. {
  18417. name: "Macro",
  18418. height: math.unit(47.5, "meters"),
  18419. default: true
  18420. },
  18421. ]
  18422. ))
  18423. characterMakers.push(() => makeCharacter(
  18424. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  18425. {
  18426. front: {
  18427. height: math.unit(180, "cm"),
  18428. weight: math.unit(70, "kg"),
  18429. name: "Front",
  18430. image: {
  18431. source: "./media/characters/algier/front.svg",
  18432. extra: 596 / 572,
  18433. bottom: 0.04
  18434. }
  18435. },
  18436. back: {
  18437. height: math.unit(180, "cm"),
  18438. weight: math.unit(70, "kg"),
  18439. name: "Back",
  18440. image: {
  18441. source: "./media/characters/algier/back.svg",
  18442. extra: 596 / 572,
  18443. bottom: 0.025
  18444. }
  18445. },
  18446. frontdressed: {
  18447. height: math.unit(180, "cm"),
  18448. weight: math.unit(150, "kg"),
  18449. name: "Front-dressed",
  18450. image: {
  18451. source: "./media/characters/algier/front-dressed.svg",
  18452. extra: 596 / 572,
  18453. bottom: 0.038
  18454. }
  18455. },
  18456. },
  18457. [
  18458. {
  18459. name: "Micro",
  18460. height: math.unit(5, "cm")
  18461. },
  18462. {
  18463. name: "Normal",
  18464. height: math.unit(180, "cm"),
  18465. default: true
  18466. },
  18467. {
  18468. name: "Macro",
  18469. height: math.unit(64, "m")
  18470. },
  18471. ]
  18472. ))
  18473. characterMakers.push(() => makeCharacter(
  18474. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  18475. {
  18476. upright: {
  18477. height: math.unit(7, "feet"),
  18478. weight: math.unit(300, "lb"),
  18479. name: "Upright",
  18480. image: {
  18481. source: "./media/characters/pretzel/upright.svg",
  18482. extra: 534 / 522,
  18483. bottom: 0.065
  18484. }
  18485. },
  18486. sprawling: {
  18487. height: math.unit(3.75, "feet"),
  18488. weight: math.unit(300, "lb"),
  18489. name: "Sprawling",
  18490. image: {
  18491. source: "./media/characters/pretzel/sprawling.svg",
  18492. extra: 314 / 281,
  18493. bottom: 0.1
  18494. }
  18495. },
  18496. tongue: {
  18497. height: math.unit(2, "feet"),
  18498. name: "Tongue",
  18499. image: {
  18500. source: "./media/characters/pretzel/tongue.svg"
  18501. }
  18502. },
  18503. },
  18504. [
  18505. {
  18506. name: "Normal",
  18507. height: math.unit(7, "feet"),
  18508. default: true
  18509. },
  18510. {
  18511. name: "Oversized",
  18512. height: math.unit(15, "feet")
  18513. },
  18514. {
  18515. name: "Huge",
  18516. height: math.unit(30, "feet")
  18517. },
  18518. {
  18519. name: "Macro",
  18520. height: math.unit(250, "feet")
  18521. },
  18522. ]
  18523. ))
  18524. characterMakers.push(() => makeCharacter(
  18525. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  18526. {
  18527. sideFront: {
  18528. height: math.unit(5 + 2 / 12, "feet"),
  18529. weight: math.unit(120, "lb"),
  18530. name: "Front Side",
  18531. image: {
  18532. source: "./media/characters/roxi/side-front.svg",
  18533. extra: 2924 / 2717,
  18534. bottom: 0.08
  18535. }
  18536. },
  18537. sideBack: {
  18538. height: math.unit(5 + 2 / 12, "feet"),
  18539. weight: math.unit(120, "lb"),
  18540. name: "Back Side",
  18541. image: {
  18542. source: "./media/characters/roxi/side-back.svg",
  18543. extra: 2904 / 2693,
  18544. bottom: 0.06
  18545. }
  18546. },
  18547. front: {
  18548. height: math.unit(5 + 2 / 12, "feet"),
  18549. weight: math.unit(120, "lb"),
  18550. name: "Front",
  18551. image: {
  18552. source: "./media/characters/roxi/front.svg",
  18553. extra: 2028 / 1907,
  18554. bottom: 0.01
  18555. }
  18556. },
  18557. frontAlt: {
  18558. height: math.unit(5 + 2 / 12, "feet"),
  18559. weight: math.unit(120, "lb"),
  18560. name: "Front (Alt)",
  18561. image: {
  18562. source: "./media/characters/roxi/front-alt.svg",
  18563. extra: 1828 / 1798,
  18564. bottom: 0.01
  18565. }
  18566. },
  18567. sitting: {
  18568. height: math.unit(2.8, "feet"),
  18569. weight: math.unit(120, "lb"),
  18570. name: "Sitting",
  18571. image: {
  18572. source: "./media/characters/roxi/sitting.svg",
  18573. extra: 2660 / 2462,
  18574. bottom: 0.1
  18575. }
  18576. },
  18577. },
  18578. [
  18579. {
  18580. name: "Normal",
  18581. height: math.unit(5 + 2 / 12, "feet"),
  18582. default: true
  18583. },
  18584. ]
  18585. ))
  18586. characterMakers.push(() => makeCharacter(
  18587. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  18588. {
  18589. side: {
  18590. height: math.unit(55, "feet"),
  18591. weight: math.unit(153, "tons"),
  18592. name: "Side",
  18593. image: {
  18594. source: "./media/characters/shadow/side.svg",
  18595. extra: 701 / 628,
  18596. bottom: 0.02
  18597. }
  18598. },
  18599. flying: {
  18600. height: math.unit(145, "feet"),
  18601. weight: math.unit(153, "tons"),
  18602. name: "Flying",
  18603. image: {
  18604. source: "./media/characters/shadow/flying.svg"
  18605. }
  18606. },
  18607. },
  18608. [
  18609. {
  18610. name: "Normal",
  18611. height: math.unit(55, "feet"),
  18612. default: true
  18613. },
  18614. ]
  18615. ))
  18616. characterMakers.push(() => makeCharacter(
  18617. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  18618. {
  18619. front: {
  18620. height: math.unit(6, "feet"),
  18621. weight: math.unit(200, "lb"),
  18622. name: "Front",
  18623. image: {
  18624. source: "./media/characters/marcie/front.svg",
  18625. extra: 960 / 876,
  18626. bottom: 58 / 1017.87
  18627. }
  18628. },
  18629. },
  18630. [
  18631. {
  18632. name: "Macro",
  18633. height: math.unit(1, "mile"),
  18634. default: true
  18635. },
  18636. ]
  18637. ))
  18638. characterMakers.push(() => makeCharacter(
  18639. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  18640. {
  18641. front: {
  18642. height: math.unit(7, "feet"),
  18643. weight: math.unit(200, "lb"),
  18644. name: "Front",
  18645. image: {
  18646. source: "./media/characters/kachina/front.svg",
  18647. extra: 1290.68 / 1119,
  18648. bottom: 36.5 / 1327.18
  18649. }
  18650. },
  18651. },
  18652. [
  18653. {
  18654. name: "Normal",
  18655. height: math.unit(7, "feet"),
  18656. default: true
  18657. },
  18658. ]
  18659. ))
  18660. characterMakers.push(() => makeCharacter(
  18661. { name: "Kash", species: ["canine"], tags: ["feral"] },
  18662. {
  18663. looking: {
  18664. height: math.unit(2, "meters"),
  18665. weight: math.unit(300, "kg"),
  18666. name: "Looking",
  18667. image: {
  18668. source: "./media/characters/kash/looking.svg",
  18669. extra: 474 / 344,
  18670. bottom: 0.03
  18671. }
  18672. },
  18673. side: {
  18674. height: math.unit(2, "meters"),
  18675. weight: math.unit(300, "kg"),
  18676. name: "Side",
  18677. image: {
  18678. source: "./media/characters/kash/side.svg",
  18679. extra: 302 / 251,
  18680. bottom: 0.03
  18681. }
  18682. },
  18683. front: {
  18684. height: math.unit(2, "meters"),
  18685. weight: math.unit(300, "kg"),
  18686. name: "Front",
  18687. image: {
  18688. source: "./media/characters/kash/front.svg",
  18689. extra: 495 / 360,
  18690. bottom: 0.015
  18691. }
  18692. },
  18693. },
  18694. [
  18695. {
  18696. name: "Normal",
  18697. height: math.unit(2, "meters"),
  18698. default: true
  18699. },
  18700. {
  18701. name: "Big",
  18702. height: math.unit(3, "meters")
  18703. },
  18704. {
  18705. name: "Large",
  18706. height: math.unit(5, "meters")
  18707. },
  18708. ]
  18709. ))
  18710. characterMakers.push(() => makeCharacter(
  18711. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  18712. {
  18713. feeding: {
  18714. height: math.unit(6.7, "feet"),
  18715. weight: math.unit(350, "lb"),
  18716. name: "Feeding",
  18717. image: {
  18718. source: "./media/characters/lalim/feeding.svg",
  18719. }
  18720. },
  18721. },
  18722. [
  18723. {
  18724. name: "Normal",
  18725. height: math.unit(6.7, "feet"),
  18726. default: true
  18727. },
  18728. ]
  18729. ))
  18730. characterMakers.push(() => makeCharacter(
  18731. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  18732. {
  18733. front: {
  18734. height: math.unit(9.5, "feet"),
  18735. weight: math.unit(600, "lb"),
  18736. name: "Front",
  18737. image: {
  18738. source: "./media/characters/de'vout/front.svg",
  18739. extra: 1443 / 1328,
  18740. bottom: 0.025
  18741. }
  18742. },
  18743. back: {
  18744. height: math.unit(9.5, "feet"),
  18745. weight: math.unit(600, "lb"),
  18746. name: "Back",
  18747. image: {
  18748. source: "./media/characters/de'vout/back.svg",
  18749. extra: 1443 / 1328
  18750. }
  18751. },
  18752. frontDressed: {
  18753. height: math.unit(9.5, "feet"),
  18754. weight: math.unit(600, "lb"),
  18755. name: "Front (Dressed",
  18756. image: {
  18757. source: "./media/characters/de'vout/front-dressed.svg",
  18758. extra: 1443 / 1328,
  18759. bottom: 0.025
  18760. }
  18761. },
  18762. backDressed: {
  18763. height: math.unit(9.5, "feet"),
  18764. weight: math.unit(600, "lb"),
  18765. name: "Back (Dressed",
  18766. image: {
  18767. source: "./media/characters/de'vout/back-dressed.svg",
  18768. extra: 1443 / 1328
  18769. }
  18770. },
  18771. },
  18772. [
  18773. {
  18774. name: "Normal",
  18775. height: math.unit(9.5, "feet"),
  18776. default: true
  18777. },
  18778. ]
  18779. ))
  18780. characterMakers.push(() => makeCharacter(
  18781. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  18782. {
  18783. front: {
  18784. height: math.unit(8, "feet"),
  18785. weight: math.unit(225, "lb"),
  18786. name: "Front",
  18787. image: {
  18788. source: "./media/characters/talana/front.svg",
  18789. extra: 1410 / 1300,
  18790. bottom: 0.015
  18791. }
  18792. },
  18793. frontDressed: {
  18794. height: math.unit(8, "feet"),
  18795. weight: math.unit(225, "lb"),
  18796. name: "Front (Dressed",
  18797. image: {
  18798. source: "./media/characters/talana/front-dressed.svg",
  18799. extra: 1410 / 1300,
  18800. bottom: 0.015
  18801. }
  18802. },
  18803. },
  18804. [
  18805. {
  18806. name: "Normal",
  18807. height: math.unit(8, "feet"),
  18808. default: true
  18809. },
  18810. ]
  18811. ))
  18812. characterMakers.push(() => makeCharacter(
  18813. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  18814. {
  18815. side: {
  18816. height: math.unit(7.2, "feet"),
  18817. weight: math.unit(150, "lb"),
  18818. name: "Side",
  18819. image: {
  18820. source: "./media/characters/xeauvok/side.svg",
  18821. extra: 1975 / 1523,
  18822. bottom: 0.07
  18823. }
  18824. },
  18825. },
  18826. [
  18827. {
  18828. name: "Normal",
  18829. height: math.unit(7.2, "feet"),
  18830. default: true
  18831. },
  18832. ]
  18833. ))
  18834. characterMakers.push(() => makeCharacter(
  18835. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  18836. {
  18837. side: {
  18838. height: math.unit(4, "meters"),
  18839. weight: math.unit(2200, "kg"),
  18840. name: "Side",
  18841. image: {
  18842. source: "./media/characters/zara/side.svg",
  18843. extra: 765/744,
  18844. bottom: 156/921
  18845. }
  18846. },
  18847. },
  18848. [
  18849. {
  18850. name: "Normal",
  18851. height: math.unit(4, "meters"),
  18852. default: true
  18853. },
  18854. ]
  18855. ))
  18856. characterMakers.push(() => makeCharacter(
  18857. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  18858. {
  18859. side: {
  18860. height: math.unit(6, "feet"),
  18861. weight: math.unit(150, "lb"),
  18862. name: "Side",
  18863. image: {
  18864. source: "./media/characters/richard-dragon/side.svg",
  18865. extra: 845 / 340,
  18866. bottom: 0.017
  18867. }
  18868. },
  18869. maw: {
  18870. height: math.unit(2.97, "feet"),
  18871. name: "Maw",
  18872. image: {
  18873. source: "./media/characters/richard-dragon/maw.svg"
  18874. }
  18875. },
  18876. },
  18877. [
  18878. ]
  18879. ))
  18880. characterMakers.push(() => makeCharacter(
  18881. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  18882. {
  18883. front: {
  18884. height: math.unit(4, "feet"),
  18885. weight: math.unit(100, "lb"),
  18886. name: "Front",
  18887. image: {
  18888. source: "./media/characters/richard-smeargle/front.svg",
  18889. extra: 2952 / 2820,
  18890. bottom: 0.028
  18891. }
  18892. },
  18893. },
  18894. [
  18895. {
  18896. name: "Normal",
  18897. height: math.unit(4, "feet"),
  18898. default: true
  18899. },
  18900. {
  18901. name: "Dynamax",
  18902. height: math.unit(20, "meters")
  18903. },
  18904. ]
  18905. ))
  18906. characterMakers.push(() => makeCharacter(
  18907. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  18908. {
  18909. front: {
  18910. height: math.unit(6, "feet"),
  18911. weight: math.unit(110, "lb"),
  18912. name: "Front",
  18913. image: {
  18914. source: "./media/characters/klay/front.svg",
  18915. extra: 962 / 883,
  18916. bottom: 0.04
  18917. }
  18918. },
  18919. back: {
  18920. height: math.unit(6, "feet"),
  18921. weight: math.unit(110, "lb"),
  18922. name: "Back",
  18923. image: {
  18924. source: "./media/characters/klay/back.svg",
  18925. extra: 962 / 883
  18926. }
  18927. },
  18928. beans: {
  18929. height: math.unit(1.15, "feet"),
  18930. name: "Beans",
  18931. image: {
  18932. source: "./media/characters/klay/beans.svg"
  18933. }
  18934. },
  18935. },
  18936. [
  18937. {
  18938. name: "Micro",
  18939. height: math.unit(6, "inches")
  18940. },
  18941. {
  18942. name: "Mini",
  18943. height: math.unit(3, "feet")
  18944. },
  18945. {
  18946. name: "Normal",
  18947. height: math.unit(6, "feet"),
  18948. default: true
  18949. },
  18950. {
  18951. name: "Big",
  18952. height: math.unit(25, "feet")
  18953. },
  18954. {
  18955. name: "Macro",
  18956. height: math.unit(100, "feet")
  18957. },
  18958. {
  18959. name: "Megamacro",
  18960. height: math.unit(400, "feet")
  18961. },
  18962. ]
  18963. ))
  18964. characterMakers.push(() => makeCharacter(
  18965. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  18966. {
  18967. front: {
  18968. height: math.unit(6, "feet"),
  18969. weight: math.unit(160, "lb"),
  18970. name: "Front",
  18971. image: {
  18972. source: "./media/characters/marcus/front.svg",
  18973. extra: 734 / 676,
  18974. bottom: 0.03
  18975. }
  18976. },
  18977. },
  18978. [
  18979. {
  18980. name: "Little",
  18981. height: math.unit(6, "feet")
  18982. },
  18983. {
  18984. name: "Normal",
  18985. height: math.unit(110, "feet"),
  18986. default: true
  18987. },
  18988. {
  18989. name: "Macro",
  18990. height: math.unit(250, "feet")
  18991. },
  18992. {
  18993. name: "Megamacro",
  18994. height: math.unit(1000, "feet")
  18995. },
  18996. ]
  18997. ))
  18998. characterMakers.push(() => makeCharacter(
  18999. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  19000. {
  19001. front: {
  19002. height: math.unit(7, "feet"),
  19003. weight: math.unit(275, "lb"),
  19004. name: "Front",
  19005. image: {
  19006. source: "./media/characters/claude-delroute/front.svg",
  19007. extra: 902/827,
  19008. bottom: 26/928
  19009. }
  19010. },
  19011. side: {
  19012. height: math.unit(7, "feet"),
  19013. weight: math.unit(275, "lb"),
  19014. name: "Side",
  19015. image: {
  19016. source: "./media/characters/claude-delroute/side.svg",
  19017. extra: 908/853,
  19018. bottom: 16/924
  19019. }
  19020. },
  19021. back: {
  19022. height: math.unit(7, "feet"),
  19023. weight: math.unit(275, "lb"),
  19024. name: "Back",
  19025. image: {
  19026. source: "./media/characters/claude-delroute/back.svg",
  19027. extra: 911/829,
  19028. bottom: 18/929
  19029. }
  19030. },
  19031. maw: {
  19032. height: math.unit(0.6407, "meters"),
  19033. name: "Maw",
  19034. image: {
  19035. source: "./media/characters/claude-delroute/maw.svg"
  19036. }
  19037. },
  19038. },
  19039. [
  19040. {
  19041. name: "Normal",
  19042. height: math.unit(7, "feet"),
  19043. default: true
  19044. },
  19045. {
  19046. name: "Lorge",
  19047. height: math.unit(20, "feet")
  19048. },
  19049. ]
  19050. ))
  19051. characterMakers.push(() => makeCharacter(
  19052. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  19053. {
  19054. front: {
  19055. height: math.unit(8 + 4 / 12, "feet"),
  19056. weight: math.unit(600, "lb"),
  19057. name: "Front",
  19058. image: {
  19059. source: "./media/characters/dragonien/front.svg",
  19060. extra: 100 / 94,
  19061. bottom: 3.3 / 103.3445
  19062. }
  19063. },
  19064. back: {
  19065. height: math.unit(8 + 4 / 12, "feet"),
  19066. weight: math.unit(600, "lb"),
  19067. name: "Back",
  19068. image: {
  19069. source: "./media/characters/dragonien/back.svg",
  19070. extra: 776 / 746,
  19071. bottom: 6.4 / 782.0616
  19072. }
  19073. },
  19074. foot: {
  19075. height: math.unit(1.54, "feet"),
  19076. name: "Foot",
  19077. image: {
  19078. source: "./media/characters/dragonien/foot.svg",
  19079. }
  19080. },
  19081. },
  19082. [
  19083. {
  19084. name: "Normal",
  19085. height: math.unit(8 + 4 / 12, "feet"),
  19086. default: true
  19087. },
  19088. {
  19089. name: "Macro",
  19090. height: math.unit(200, "feet")
  19091. },
  19092. {
  19093. name: "Megamacro",
  19094. height: math.unit(1, "mile")
  19095. },
  19096. {
  19097. name: "Gigamacro",
  19098. height: math.unit(1000, "miles")
  19099. },
  19100. ]
  19101. ))
  19102. characterMakers.push(() => makeCharacter(
  19103. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  19104. {
  19105. front: {
  19106. height: math.unit(5 + 2 / 12, "feet"),
  19107. weight: math.unit(110, "lb"),
  19108. name: "Front",
  19109. image: {
  19110. source: "./media/characters/desta/front.svg",
  19111. extra: 767 / 726,
  19112. bottom: 11.7 / 779
  19113. }
  19114. },
  19115. back: {
  19116. height: math.unit(5 + 2 / 12, "feet"),
  19117. weight: math.unit(110, "lb"),
  19118. name: "Back",
  19119. image: {
  19120. source: "./media/characters/desta/back.svg",
  19121. extra: 777 / 728,
  19122. bottom: 6 / 784
  19123. }
  19124. },
  19125. frontAlt: {
  19126. height: math.unit(5 + 2 / 12, "feet"),
  19127. weight: math.unit(110, "lb"),
  19128. name: "Front",
  19129. image: {
  19130. source: "./media/characters/desta/front-alt.svg",
  19131. extra: 1482 / 1417
  19132. }
  19133. },
  19134. side: {
  19135. height: math.unit(5 + 2 / 12, "feet"),
  19136. weight: math.unit(110, "lb"),
  19137. name: "Side",
  19138. image: {
  19139. source: "./media/characters/desta/side.svg",
  19140. extra: 2579 / 2491,
  19141. bottom: 0.053
  19142. }
  19143. },
  19144. },
  19145. [
  19146. {
  19147. name: "Micro",
  19148. height: math.unit(6, "inches")
  19149. },
  19150. {
  19151. name: "Normal",
  19152. height: math.unit(5 + 2 / 12, "feet"),
  19153. default: true
  19154. },
  19155. {
  19156. name: "Macro",
  19157. height: math.unit(62, "feet")
  19158. },
  19159. {
  19160. name: "Megamacro",
  19161. height: math.unit(1800, "feet")
  19162. },
  19163. ]
  19164. ))
  19165. characterMakers.push(() => makeCharacter(
  19166. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  19167. {
  19168. front: {
  19169. height: math.unit(10, "feet"),
  19170. weight: math.unit(700, "lb"),
  19171. name: "Front",
  19172. image: {
  19173. source: "./media/characters/storm-alystar/front.svg",
  19174. extra: 2112 / 1898,
  19175. bottom: 0.034
  19176. }
  19177. },
  19178. },
  19179. [
  19180. {
  19181. name: "Micro",
  19182. height: math.unit(3.5, "inches")
  19183. },
  19184. {
  19185. name: "Normal",
  19186. height: math.unit(10, "feet"),
  19187. default: true
  19188. },
  19189. {
  19190. name: "Macro",
  19191. height: math.unit(400, "feet")
  19192. },
  19193. {
  19194. name: "Deific",
  19195. height: math.unit(60, "miles")
  19196. },
  19197. ]
  19198. ))
  19199. characterMakers.push(() => makeCharacter(
  19200. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  19201. {
  19202. front: {
  19203. height: math.unit(2.35, "meters"),
  19204. weight: math.unit(119, "kg"),
  19205. name: "Front",
  19206. image: {
  19207. source: "./media/characters/ilia/front.svg",
  19208. extra: 1285 / 1255,
  19209. bottom: 0.06
  19210. }
  19211. },
  19212. },
  19213. [
  19214. {
  19215. name: "Normal",
  19216. height: math.unit(2.35, "meters")
  19217. },
  19218. {
  19219. name: "Macro",
  19220. height: math.unit(140, "meters"),
  19221. default: true
  19222. },
  19223. {
  19224. name: "Megamacro",
  19225. height: math.unit(100, "miles")
  19226. },
  19227. ]
  19228. ))
  19229. characterMakers.push(() => makeCharacter(
  19230. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  19231. {
  19232. front: {
  19233. height: math.unit(6 + 5 / 12, "feet"),
  19234. weight: math.unit(190, "lb"),
  19235. name: "Front",
  19236. image: {
  19237. source: "./media/characters/kingdead/front.svg",
  19238. extra: 1228 / 1177
  19239. }
  19240. },
  19241. },
  19242. [
  19243. {
  19244. name: "Micro",
  19245. height: math.unit(7, "inches")
  19246. },
  19247. {
  19248. name: "Normal",
  19249. height: math.unit(6 + 5 / 12, "feet")
  19250. },
  19251. {
  19252. name: "Macro",
  19253. height: math.unit(150, "feet"),
  19254. default: true
  19255. },
  19256. {
  19257. name: "Megamacro",
  19258. height: math.unit(200, "miles")
  19259. },
  19260. ]
  19261. ))
  19262. characterMakers.push(() => makeCharacter(
  19263. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  19264. {
  19265. front: {
  19266. height: math.unit(8, "feet"),
  19267. weight: math.unit(600, "lb"),
  19268. name: "Front",
  19269. image: {
  19270. source: "./media/characters/kyrehx/front.svg",
  19271. extra: 1195 / 1095,
  19272. bottom: 0.034
  19273. }
  19274. },
  19275. },
  19276. [
  19277. {
  19278. name: "Micro",
  19279. height: math.unit(2, "inches")
  19280. },
  19281. {
  19282. name: "Normal",
  19283. height: math.unit(8, "feet"),
  19284. default: true
  19285. },
  19286. {
  19287. name: "Macro",
  19288. height: math.unit(255, "feet")
  19289. },
  19290. ]
  19291. ))
  19292. characterMakers.push(() => makeCharacter(
  19293. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  19294. {
  19295. front: {
  19296. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  19297. weight: math.unit(184, "lb"),
  19298. name: "Front",
  19299. image: {
  19300. source: "./media/characters/xang/front.svg",
  19301. extra: 845 / 755
  19302. }
  19303. },
  19304. },
  19305. [
  19306. {
  19307. name: "Normal",
  19308. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  19309. default: true
  19310. },
  19311. {
  19312. name: "Macro",
  19313. height: math.unit(0.935 * 146, "feet")
  19314. },
  19315. {
  19316. name: "Megamacro",
  19317. height: math.unit(0.935 * 3, "miles")
  19318. },
  19319. ]
  19320. ))
  19321. characterMakers.push(() => makeCharacter(
  19322. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  19323. {
  19324. frontDressed: {
  19325. height: math.unit(5 + 7 / 12, "feet"),
  19326. weight: math.unit(140, "lb"),
  19327. name: "Front (Dressed)",
  19328. image: {
  19329. source: "./media/characters/doc-weardno/front-dressed.svg",
  19330. extra: 263 / 234
  19331. }
  19332. },
  19333. backDressed: {
  19334. height: math.unit(5 + 7 / 12, "feet"),
  19335. weight: math.unit(140, "lb"),
  19336. name: "Back (Dressed)",
  19337. image: {
  19338. source: "./media/characters/doc-weardno/back-dressed.svg",
  19339. extra: 266 / 238
  19340. }
  19341. },
  19342. front: {
  19343. height: math.unit(5 + 7 / 12, "feet"),
  19344. weight: math.unit(140, "lb"),
  19345. name: "Front",
  19346. image: {
  19347. source: "./media/characters/doc-weardno/front.svg",
  19348. extra: 254 / 233
  19349. }
  19350. },
  19351. },
  19352. [
  19353. {
  19354. name: "Micro",
  19355. height: math.unit(3, "inches")
  19356. },
  19357. {
  19358. name: "Normal",
  19359. height: math.unit(5 + 7 / 12, "feet"),
  19360. default: true
  19361. },
  19362. {
  19363. name: "Macro",
  19364. height: math.unit(25, "feet")
  19365. },
  19366. {
  19367. name: "Megamacro",
  19368. height: math.unit(2, "miles")
  19369. },
  19370. ]
  19371. ))
  19372. characterMakers.push(() => makeCharacter(
  19373. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  19374. {
  19375. front: {
  19376. height: math.unit(6 + 2 / 12, "feet"),
  19377. weight: math.unit(153, "lb"),
  19378. name: "Front",
  19379. image: {
  19380. source: "./media/characters/seth-whilst/front.svg",
  19381. bottom: 0.07
  19382. }
  19383. },
  19384. },
  19385. [
  19386. {
  19387. name: "Micro",
  19388. height: math.unit(5, "inches")
  19389. },
  19390. {
  19391. name: "Normal",
  19392. height: math.unit(6 + 2 / 12, "feet"),
  19393. default: true
  19394. },
  19395. ]
  19396. ))
  19397. characterMakers.push(() => makeCharacter(
  19398. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  19399. {
  19400. front: {
  19401. height: math.unit(3, "inches"),
  19402. weight: math.unit(8, "grams"),
  19403. name: "Front",
  19404. image: {
  19405. source: "./media/characters/pocket-jabari/front.svg",
  19406. extra: 1024 / 974,
  19407. bottom: 0.039
  19408. }
  19409. },
  19410. },
  19411. [
  19412. {
  19413. name: "Minimicro",
  19414. height: math.unit(8, "mm")
  19415. },
  19416. {
  19417. name: "Micro",
  19418. height: math.unit(3, "inches"),
  19419. default: true
  19420. },
  19421. {
  19422. name: "Normal",
  19423. height: math.unit(3, "feet")
  19424. },
  19425. ]
  19426. ))
  19427. characterMakers.push(() => makeCharacter(
  19428. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  19429. {
  19430. frontDressed: {
  19431. height: math.unit(15, "feet"),
  19432. weight: math.unit(3280, "lb"),
  19433. name: "Front (Dressed)",
  19434. image: {
  19435. source: "./media/characters/sapphy/front-dressed.svg",
  19436. extra: 1951/1654,
  19437. bottom: 194/2145
  19438. },
  19439. form: "anthro",
  19440. default: true
  19441. },
  19442. backDressed: {
  19443. height: math.unit(15, "feet"),
  19444. weight: math.unit(3280, "lb"),
  19445. name: "Back (Dressed)",
  19446. image: {
  19447. source: "./media/characters/sapphy/back-dressed.svg",
  19448. extra: 2058/1918,
  19449. bottom: 125/2183
  19450. },
  19451. form: "anthro"
  19452. },
  19453. frontNude: {
  19454. height: math.unit(15, "feet"),
  19455. weight: math.unit(3280, "lb"),
  19456. name: "Front (Nude)",
  19457. image: {
  19458. source: "./media/characters/sapphy/front-nude.svg",
  19459. extra: 1951/1654,
  19460. bottom: 194/2145
  19461. },
  19462. form: "anthro"
  19463. },
  19464. backNude: {
  19465. height: math.unit(15, "feet"),
  19466. weight: math.unit(3280, "lb"),
  19467. name: "Back (Nude)",
  19468. image: {
  19469. source: "./media/characters/sapphy/back-nude.svg",
  19470. extra: 2058/1918,
  19471. bottom: 125/2183
  19472. },
  19473. form: "anthro"
  19474. },
  19475. full: {
  19476. height: math.unit(15, "feet"),
  19477. weight: math.unit(3280, "lb"),
  19478. name: "Full",
  19479. image: {
  19480. source: "./media/characters/sapphy/full.svg",
  19481. extra: 1396/1317,
  19482. bottom: 44/1440
  19483. },
  19484. form: "anthro"
  19485. },
  19486. dick: {
  19487. height: math.unit(3.8, "feet"),
  19488. name: "Dick",
  19489. image: {
  19490. source: "./media/characters/sapphy/dick.svg"
  19491. },
  19492. form: "anthro"
  19493. },
  19494. feral: {
  19495. height: math.unit(35, "feet"),
  19496. weight: math.unit(160, "tons"),
  19497. name: "Feral",
  19498. image: {
  19499. source: "./media/characters/sapphy/feral.svg",
  19500. extra: 1050/573,
  19501. bottom: 60/1110
  19502. },
  19503. form: "feral",
  19504. default: true
  19505. },
  19506. },
  19507. [
  19508. {
  19509. name: "Normal",
  19510. height: math.unit(15, "feet"),
  19511. form: "anthro"
  19512. },
  19513. {
  19514. name: "Casual Macro",
  19515. height: math.unit(120, "feet"),
  19516. form: "anthro"
  19517. },
  19518. {
  19519. name: "Macro",
  19520. height: math.unit(2150, "feet"),
  19521. default: true,
  19522. form: "anthro"
  19523. },
  19524. {
  19525. name: "Megamacro",
  19526. height: math.unit(8, "miles"),
  19527. form: "anthro"
  19528. },
  19529. {
  19530. name: "Galaxy Mom",
  19531. height: math.unit(6, "megalightyears"),
  19532. form: "anthro"
  19533. },
  19534. {
  19535. name: "Normal",
  19536. height: math.unit(35, "feet"),
  19537. form: "feral",
  19538. default: true
  19539. },
  19540. {
  19541. name: "Macro",
  19542. height: math.unit(300, "feet"),
  19543. form: "feral"
  19544. },
  19545. {
  19546. name: "Galaxy Mom",
  19547. height: math.unit(10, "megalightyears"),
  19548. form: "feral"
  19549. },
  19550. ],
  19551. {
  19552. "anthro": {
  19553. name: "Anthro",
  19554. default: true
  19555. },
  19556. "feral": {
  19557. name: "Feral"
  19558. }
  19559. }
  19560. ))
  19561. characterMakers.push(() => makeCharacter(
  19562. { name: "Kiro", species: ["folf"], tags: ["anthro"] },
  19563. {
  19564. front: {
  19565. height: math.unit(6, "feet"),
  19566. weight: math.unit(170, "lb"),
  19567. name: "Front",
  19568. image: {
  19569. source: "./media/characters/kiro/front.svg",
  19570. extra: 1064 / 1012,
  19571. bottom: 0.052
  19572. }
  19573. },
  19574. },
  19575. [
  19576. {
  19577. name: "Micro",
  19578. height: math.unit(6, "inches")
  19579. },
  19580. {
  19581. name: "Normal",
  19582. height: math.unit(6, "feet"),
  19583. default: true
  19584. },
  19585. {
  19586. name: "Macro",
  19587. height: math.unit(72, "feet")
  19588. },
  19589. ]
  19590. ))
  19591. characterMakers.push(() => makeCharacter(
  19592. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  19593. {
  19594. front: {
  19595. height: math.unit(5 + 9 / 12, "feet"),
  19596. weight: math.unit(175, "lb"),
  19597. name: "Front",
  19598. image: {
  19599. source: "./media/characters/irishfox/front.svg",
  19600. extra: 1912 / 1680,
  19601. bottom: 0.02
  19602. }
  19603. },
  19604. },
  19605. [
  19606. {
  19607. name: "Nano",
  19608. height: math.unit(1, "mm")
  19609. },
  19610. {
  19611. name: "Micro",
  19612. height: math.unit(2, "inches")
  19613. },
  19614. {
  19615. name: "Normal",
  19616. height: math.unit(5 + 9 / 12, "feet"),
  19617. default: true
  19618. },
  19619. {
  19620. name: "Macro",
  19621. height: math.unit(45, "feet")
  19622. },
  19623. ]
  19624. ))
  19625. characterMakers.push(() => makeCharacter(
  19626. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  19627. {
  19628. front: {
  19629. height: math.unit(6 + 1 / 12, "feet"),
  19630. weight: math.unit(75, "lb"),
  19631. name: "Front",
  19632. image: {
  19633. source: "./media/characters/aronai-sieyes/front.svg",
  19634. extra: 1532/1450,
  19635. bottom: 42/1574
  19636. }
  19637. },
  19638. side: {
  19639. height: math.unit(6 + 1 / 12, "feet"),
  19640. weight: math.unit(75, "lb"),
  19641. name: "Side",
  19642. image: {
  19643. source: "./media/characters/aronai-sieyes/side.svg",
  19644. extra: 1422/1365,
  19645. bottom: 148/1570
  19646. }
  19647. },
  19648. back: {
  19649. height: math.unit(6 + 1 / 12, "feet"),
  19650. weight: math.unit(75, "lb"),
  19651. name: "Back",
  19652. image: {
  19653. source: "./media/characters/aronai-sieyes/back.svg",
  19654. extra: 1526/1464,
  19655. bottom: 51/1577
  19656. }
  19657. },
  19658. dressed: {
  19659. height: math.unit(6 + 1 / 12, "feet"),
  19660. weight: math.unit(75, "lb"),
  19661. name: "Dressed",
  19662. image: {
  19663. source: "./media/characters/aronai-sieyes/dressed.svg",
  19664. extra: 1559/1483,
  19665. bottom: 39/1598
  19666. }
  19667. },
  19668. slit: {
  19669. height: math.unit(1.3, "feet"),
  19670. name: "Slit",
  19671. image: {
  19672. source: "./media/characters/aronai-sieyes/slit.svg"
  19673. }
  19674. },
  19675. slitSpread: {
  19676. height: math.unit(0.9, "feet"),
  19677. name: "Slit (Spread)",
  19678. image: {
  19679. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  19680. }
  19681. },
  19682. rump: {
  19683. height: math.unit(1.3, "feet"),
  19684. name: "Rump",
  19685. image: {
  19686. source: "./media/characters/aronai-sieyes/rump.svg"
  19687. }
  19688. },
  19689. maw: {
  19690. height: math.unit(1.25, "feet"),
  19691. name: "Maw",
  19692. image: {
  19693. source: "./media/characters/aronai-sieyes/maw.svg"
  19694. }
  19695. },
  19696. feral: {
  19697. height: math.unit(18, "feet"),
  19698. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  19699. name: "Feral",
  19700. image: {
  19701. source: "./media/characters/aronai-sieyes/feral.svg",
  19702. extra: 1530 / 1240,
  19703. bottom: 0.035
  19704. }
  19705. },
  19706. },
  19707. [
  19708. {
  19709. name: "Micro",
  19710. height: math.unit(2, "inches")
  19711. },
  19712. {
  19713. name: "Normal",
  19714. height: math.unit(6 + 1 / 12, "feet"),
  19715. default: true
  19716. }
  19717. ]
  19718. ))
  19719. characterMakers.push(() => makeCharacter(
  19720. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  19721. {
  19722. front: {
  19723. height: math.unit(12, "feet"),
  19724. weight: math.unit(410, "kg"),
  19725. name: "Front",
  19726. image: {
  19727. source: "./media/characters/xuna/front.svg",
  19728. extra: 2184 / 1980
  19729. }
  19730. },
  19731. side: {
  19732. height: math.unit(12, "feet"),
  19733. weight: math.unit(410, "kg"),
  19734. name: "Side",
  19735. image: {
  19736. source: "./media/characters/xuna/side.svg",
  19737. extra: 2184 / 1980
  19738. }
  19739. },
  19740. back: {
  19741. height: math.unit(12, "feet"),
  19742. weight: math.unit(410, "kg"),
  19743. name: "Back",
  19744. image: {
  19745. source: "./media/characters/xuna/back.svg",
  19746. extra: 2184 / 1980
  19747. }
  19748. },
  19749. },
  19750. [
  19751. {
  19752. name: "Nano glow",
  19753. height: math.unit(10, "nm")
  19754. },
  19755. {
  19756. name: "Micro floof",
  19757. height: math.unit(0.3, "m")
  19758. },
  19759. {
  19760. name: "Huggable softy boi",
  19761. height: math.unit(3.6576, "m"),
  19762. default: true
  19763. },
  19764. {
  19765. name: "Admirable floof",
  19766. height: math.unit(80, "meters")
  19767. },
  19768. {
  19769. name: "Gentle macro",
  19770. height: math.unit(300, "meters")
  19771. },
  19772. {
  19773. name: "Very careful floof",
  19774. height: math.unit(3200, "meters")
  19775. },
  19776. {
  19777. name: "The mega floof",
  19778. height: math.unit(36000, "meters")
  19779. },
  19780. {
  19781. name: "Giga-fur-Wicker",
  19782. height: math.unit(4800000, "meters")
  19783. },
  19784. {
  19785. name: "Licky world",
  19786. height: math.unit(20000000, "meters")
  19787. },
  19788. {
  19789. name: "Floofy cyan sun",
  19790. height: math.unit(1500000000, "meters")
  19791. },
  19792. {
  19793. name: "Milky Wicker",
  19794. height: math.unit(1000000000000000000000, "meters")
  19795. },
  19796. {
  19797. name: "The observing Wicker",
  19798. height: math.unit(999999999999999999999999999, "meters")
  19799. },
  19800. ]
  19801. ))
  19802. characterMakers.push(() => makeCharacter(
  19803. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19804. {
  19805. front: {
  19806. height: math.unit(5 + 9 / 12, "feet"),
  19807. weight: math.unit(150, "lb"),
  19808. name: "Front",
  19809. image: {
  19810. source: "./media/characters/arokha-sieyes/front.svg",
  19811. extra: 1425 / 1284,
  19812. bottom: 0.05
  19813. }
  19814. },
  19815. },
  19816. [
  19817. {
  19818. name: "Normal",
  19819. height: math.unit(5 + 9 / 12, "feet")
  19820. },
  19821. {
  19822. name: "Macro",
  19823. height: math.unit(30, "meters"),
  19824. default: true
  19825. },
  19826. ]
  19827. ))
  19828. characterMakers.push(() => makeCharacter(
  19829. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19830. {
  19831. front: {
  19832. height: math.unit(6, "feet"),
  19833. weight: math.unit(180, "lb"),
  19834. name: "Front",
  19835. image: {
  19836. source: "./media/characters/arokh-sieyes/front.svg",
  19837. extra: 1830 / 1769,
  19838. bottom: 0.01
  19839. }
  19840. },
  19841. },
  19842. [
  19843. {
  19844. name: "Normal",
  19845. height: math.unit(6, "feet")
  19846. },
  19847. {
  19848. name: "Macro",
  19849. height: math.unit(30, "meters"),
  19850. default: true
  19851. },
  19852. ]
  19853. ))
  19854. characterMakers.push(() => makeCharacter(
  19855. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  19856. {
  19857. side: {
  19858. height: math.unit(13 + 1 / 12, "feet"),
  19859. weight: math.unit(8.5, "tonnes"),
  19860. name: "Side",
  19861. image: {
  19862. source: "./media/characters/goldeneye/side.svg",
  19863. extra: 1182 / 778,
  19864. bottom: 0.067
  19865. }
  19866. },
  19867. paw: {
  19868. height: math.unit(3.4, "feet"),
  19869. name: "Paw",
  19870. image: {
  19871. source: "./media/characters/goldeneye/paw.svg"
  19872. }
  19873. },
  19874. },
  19875. [
  19876. {
  19877. name: "Normal",
  19878. height: math.unit(13 + 1 / 12, "feet"),
  19879. default: true
  19880. },
  19881. ]
  19882. ))
  19883. characterMakers.push(() => makeCharacter(
  19884. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  19885. {
  19886. front: {
  19887. height: math.unit(6 + 1 / 12, "feet"),
  19888. weight: math.unit(210, "lb"),
  19889. name: "Front",
  19890. image: {
  19891. source: "./media/characters/leonardo-lycheborne/front.svg",
  19892. extra: 776/723,
  19893. bottom: 34/810
  19894. }
  19895. },
  19896. side: {
  19897. height: math.unit(6 + 1 / 12, "feet"),
  19898. weight: math.unit(210, "lb"),
  19899. name: "Side",
  19900. image: {
  19901. source: "./media/characters/leonardo-lycheborne/side.svg",
  19902. extra: 780/728,
  19903. bottom: 12/792
  19904. }
  19905. },
  19906. back: {
  19907. height: math.unit(6 + 1 / 12, "feet"),
  19908. weight: math.unit(210, "lb"),
  19909. name: "Back",
  19910. image: {
  19911. source: "./media/characters/leonardo-lycheborne/back.svg",
  19912. extra: 775/721,
  19913. bottom: 17/792
  19914. }
  19915. },
  19916. hand: {
  19917. height: math.unit(1.08, "feet"),
  19918. name: "Hand",
  19919. image: {
  19920. source: "./media/characters/leonardo-lycheborne/hand.svg"
  19921. }
  19922. },
  19923. foot: {
  19924. height: math.unit(1.32, "feet"),
  19925. name: "Foot",
  19926. image: {
  19927. source: "./media/characters/leonardo-lycheborne/foot.svg"
  19928. }
  19929. },
  19930. maw: {
  19931. height: math.unit(1, "feet"),
  19932. name: "Maw",
  19933. image: {
  19934. source: "./media/characters/leonardo-lycheborne/maw.svg"
  19935. }
  19936. },
  19937. were: {
  19938. height: math.unit(20, "feet"),
  19939. weight: math.unit(7800, "lb"),
  19940. name: "Were",
  19941. image: {
  19942. source: "./media/characters/leonardo-lycheborne/were.svg",
  19943. extra: 1224/1165,
  19944. bottom: 72/1296
  19945. }
  19946. },
  19947. feral: {
  19948. height: math.unit(7.5, "feet"),
  19949. weight: math.unit(600, "lb"),
  19950. name: "Feral",
  19951. image: {
  19952. source: "./media/characters/leonardo-lycheborne/feral.svg",
  19953. extra: 797/702,
  19954. bottom: 139/936
  19955. }
  19956. },
  19957. taur: {
  19958. height: math.unit(11, "feet"),
  19959. weight: math.unit(3300, "lb"),
  19960. name: "Taur",
  19961. image: {
  19962. source: "./media/characters/leonardo-lycheborne/taur.svg",
  19963. extra: 1271/1197,
  19964. bottom: 47/1318
  19965. }
  19966. },
  19967. barghest: {
  19968. height: math.unit(11, "feet"),
  19969. weight: math.unit(1300, "lb"),
  19970. name: "Barghest",
  19971. image: {
  19972. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  19973. extra: 1291/1204,
  19974. bottom: 37/1328
  19975. }
  19976. },
  19977. dick: {
  19978. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  19979. name: "Dick",
  19980. image: {
  19981. source: "./media/characters/leonardo-lycheborne/dick.svg"
  19982. }
  19983. },
  19984. dickWere: {
  19985. height: math.unit((20) / 3.8, "feet"),
  19986. name: "Dick (Were)",
  19987. image: {
  19988. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  19989. }
  19990. },
  19991. },
  19992. [
  19993. {
  19994. name: "Normal",
  19995. height: math.unit(6 + 1 / 12, "feet"),
  19996. default: true
  19997. },
  19998. ]
  19999. ))
  20000. characterMakers.push(() => makeCharacter(
  20001. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  20002. {
  20003. front: {
  20004. height: math.unit(10, "feet"),
  20005. weight: math.unit(350, "lb"),
  20006. name: "Front",
  20007. image: {
  20008. source: "./media/characters/jet/front.svg",
  20009. extra: 2050 / 1980,
  20010. bottom: 0.013
  20011. }
  20012. },
  20013. back: {
  20014. height: math.unit(10, "feet"),
  20015. weight: math.unit(350, "lb"),
  20016. name: "Back",
  20017. image: {
  20018. source: "./media/characters/jet/back.svg",
  20019. extra: 2050 / 1980,
  20020. bottom: 0.013
  20021. }
  20022. },
  20023. },
  20024. [
  20025. {
  20026. name: "Micro",
  20027. height: math.unit(6, "inches")
  20028. },
  20029. {
  20030. name: "Normal",
  20031. height: math.unit(10, "feet"),
  20032. default: true
  20033. },
  20034. {
  20035. name: "Macro",
  20036. height: math.unit(100, "feet")
  20037. },
  20038. ]
  20039. ))
  20040. characterMakers.push(() => makeCharacter(
  20041. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  20042. {
  20043. front: {
  20044. height: math.unit(15, "feet"),
  20045. weight: math.unit(2800, "lb"),
  20046. name: "Front",
  20047. image: {
  20048. source: "./media/characters/tanarath/front.svg",
  20049. extra: 2392 / 2220,
  20050. bottom: 0.03
  20051. }
  20052. },
  20053. back: {
  20054. height: math.unit(15, "feet"),
  20055. weight: math.unit(2800, "lb"),
  20056. name: "Back",
  20057. image: {
  20058. source: "./media/characters/tanarath/back.svg",
  20059. extra: 2392 / 2220,
  20060. bottom: 0.03
  20061. }
  20062. },
  20063. },
  20064. [
  20065. {
  20066. name: "Normal",
  20067. height: math.unit(15, "feet"),
  20068. default: true
  20069. },
  20070. ]
  20071. ))
  20072. characterMakers.push(() => makeCharacter(
  20073. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  20074. {
  20075. front: {
  20076. height: math.unit(7 + 1 / 12, "feet"),
  20077. weight: math.unit(175, "lb"),
  20078. name: "Front",
  20079. image: {
  20080. source: "./media/characters/patty-cattybatty/front.svg",
  20081. extra: 908 / 874,
  20082. bottom: 0.025
  20083. }
  20084. },
  20085. },
  20086. [
  20087. {
  20088. name: "Micro",
  20089. height: math.unit(1, "inch")
  20090. },
  20091. {
  20092. name: "Normal",
  20093. height: math.unit(7 + 1 / 12, "feet")
  20094. },
  20095. {
  20096. name: "Mini Macro",
  20097. height: math.unit(155, "feet")
  20098. },
  20099. {
  20100. name: "Macro",
  20101. height: math.unit(1077, "feet")
  20102. },
  20103. {
  20104. name: "Mega Macro",
  20105. height: math.unit(47650, "feet"),
  20106. default: true
  20107. },
  20108. {
  20109. name: "Giga Macro",
  20110. height: math.unit(440, "miles")
  20111. },
  20112. {
  20113. name: "Tera Macro",
  20114. height: math.unit(8700, "miles")
  20115. },
  20116. {
  20117. name: "Planetary Macro",
  20118. height: math.unit(32700, "miles")
  20119. },
  20120. {
  20121. name: "Solar Macro",
  20122. height: math.unit(550000, "miles")
  20123. },
  20124. {
  20125. name: "Celestial Macro",
  20126. height: math.unit(2.5, "AU")
  20127. },
  20128. ]
  20129. ))
  20130. characterMakers.push(() => makeCharacter(
  20131. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  20132. {
  20133. front: {
  20134. height: math.unit(4 + 5 / 12, "feet"),
  20135. weight: math.unit(90, "lb"),
  20136. name: "Front",
  20137. image: {
  20138. source: "./media/characters/cappu/front.svg",
  20139. extra: 1247 / 1152,
  20140. bottom: 0.012
  20141. }
  20142. },
  20143. },
  20144. [
  20145. {
  20146. name: "Normal",
  20147. height: math.unit(4 + 5 / 12, "feet"),
  20148. default: true
  20149. },
  20150. ]
  20151. ))
  20152. characterMakers.push(() => makeCharacter(
  20153. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  20154. {
  20155. frontDressed: {
  20156. height: math.unit(70, "cm"),
  20157. weight: math.unit(6, "kg"),
  20158. name: "Front (Dressed)",
  20159. image: {
  20160. source: "./media/characters/sebi/front-dressed.svg",
  20161. extra: 713.5 / 686.5,
  20162. bottom: 0.003
  20163. }
  20164. },
  20165. front: {
  20166. height: math.unit(70, "cm"),
  20167. weight: math.unit(5, "kg"),
  20168. name: "Front",
  20169. image: {
  20170. source: "./media/characters/sebi/front.svg",
  20171. extra: 713.5 / 686.5,
  20172. bottom: 0.003
  20173. }
  20174. }
  20175. },
  20176. [
  20177. {
  20178. name: "Normal",
  20179. height: math.unit(70, "cm"),
  20180. default: true
  20181. },
  20182. {
  20183. name: "Macro",
  20184. height: math.unit(8, "meters")
  20185. },
  20186. ]
  20187. ))
  20188. characterMakers.push(() => makeCharacter(
  20189. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  20190. {
  20191. front: {
  20192. height: math.unit(6, "feet"),
  20193. weight: math.unit(150, "lb"),
  20194. name: "Front",
  20195. image: {
  20196. source: "./media/characters/typhek/front.svg",
  20197. extra: 1948 / 1929,
  20198. bottom: 0.025
  20199. }
  20200. },
  20201. side: {
  20202. height: math.unit(6, "feet"),
  20203. weight: math.unit(150, "lb"),
  20204. name: "Side",
  20205. image: {
  20206. source: "./media/characters/typhek/side.svg",
  20207. extra: 2034 / 2010,
  20208. bottom: 0.003
  20209. }
  20210. },
  20211. back: {
  20212. height: math.unit(6, "feet"),
  20213. weight: math.unit(150, "lb"),
  20214. name: "Back",
  20215. image: {
  20216. source: "./media/characters/typhek/back.svg",
  20217. extra: 2005 / 1978,
  20218. bottom: 0.004
  20219. }
  20220. },
  20221. palm: {
  20222. height: math.unit(1.2, "feet"),
  20223. name: "Palm",
  20224. image: {
  20225. source: "./media/characters/typhek/palm.svg"
  20226. }
  20227. },
  20228. fist: {
  20229. height: math.unit(1.1, "feet"),
  20230. name: "Fist",
  20231. image: {
  20232. source: "./media/characters/typhek/fist.svg"
  20233. }
  20234. },
  20235. foot: {
  20236. height: math.unit(1.57, "feet"),
  20237. name: "Foot",
  20238. image: {
  20239. source: "./media/characters/typhek/foot.svg"
  20240. }
  20241. },
  20242. sole: {
  20243. height: math.unit(2.05, "feet"),
  20244. name: "Sole",
  20245. image: {
  20246. source: "./media/characters/typhek/sole.svg"
  20247. }
  20248. },
  20249. },
  20250. [
  20251. {
  20252. name: "Macro",
  20253. height: math.unit(40, "stories"),
  20254. default: true
  20255. },
  20256. {
  20257. name: "Megamacro",
  20258. height: math.unit(1, "mile")
  20259. },
  20260. {
  20261. name: "Gigamacro",
  20262. height: math.unit(4000, "solarradii")
  20263. },
  20264. {
  20265. name: "Universal",
  20266. height: math.unit(1.1, "universes")
  20267. }
  20268. ]
  20269. ))
  20270. characterMakers.push(() => makeCharacter(
  20271. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  20272. {
  20273. side: {
  20274. height: math.unit(5 + 7 / 12, "feet"),
  20275. weight: math.unit(150, "lb"),
  20276. name: "Side",
  20277. image: {
  20278. source: "./media/characters/kassy/side.svg",
  20279. extra: 1280 / 1225,
  20280. bottom: 0.002
  20281. }
  20282. },
  20283. front: {
  20284. height: math.unit(5 + 7 / 12, "feet"),
  20285. weight: math.unit(150, "lb"),
  20286. name: "Front",
  20287. image: {
  20288. source: "./media/characters/kassy/front.svg",
  20289. extra: 1280 / 1225,
  20290. bottom: 0.025
  20291. }
  20292. },
  20293. back: {
  20294. height: math.unit(5 + 7 / 12, "feet"),
  20295. weight: math.unit(150, "lb"),
  20296. name: "Back",
  20297. image: {
  20298. source: "./media/characters/kassy/back.svg",
  20299. extra: 1280 / 1225,
  20300. bottom: 0.002
  20301. }
  20302. },
  20303. foot: {
  20304. height: math.unit(1.266, "feet"),
  20305. name: "Foot",
  20306. image: {
  20307. source: "./media/characters/kassy/foot.svg"
  20308. }
  20309. },
  20310. },
  20311. [
  20312. {
  20313. name: "Normal",
  20314. height: math.unit(5 + 7 / 12, "feet")
  20315. },
  20316. {
  20317. name: "Macro",
  20318. height: math.unit(137, "feet"),
  20319. default: true
  20320. },
  20321. {
  20322. name: "Megamacro",
  20323. height: math.unit(1, "mile")
  20324. },
  20325. ]
  20326. ))
  20327. characterMakers.push(() => makeCharacter(
  20328. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  20329. {
  20330. front: {
  20331. height: math.unit(6 + 1 / 12, "feet"),
  20332. weight: math.unit(200, "lb"),
  20333. name: "Front",
  20334. image: {
  20335. source: "./media/characters/neil/front.svg",
  20336. extra: 1326 / 1250,
  20337. bottom: 0.023
  20338. }
  20339. },
  20340. },
  20341. [
  20342. {
  20343. name: "Normal",
  20344. height: math.unit(6 + 1 / 12, "feet"),
  20345. default: true
  20346. },
  20347. {
  20348. name: "Macro",
  20349. height: math.unit(200, "feet")
  20350. },
  20351. ]
  20352. ))
  20353. characterMakers.push(() => makeCharacter(
  20354. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  20355. {
  20356. front: {
  20357. height: math.unit(5 + 9 / 12, "feet"),
  20358. weight: math.unit(190, "lb"),
  20359. name: "Front",
  20360. image: {
  20361. source: "./media/characters/atticus/front.svg",
  20362. extra: 2934 / 2785,
  20363. bottom: 0.025
  20364. }
  20365. },
  20366. },
  20367. [
  20368. {
  20369. name: "Normal",
  20370. height: math.unit(5 + 9 / 12, "feet"),
  20371. default: true
  20372. },
  20373. {
  20374. name: "Macro",
  20375. height: math.unit(180, "feet")
  20376. },
  20377. ]
  20378. ))
  20379. characterMakers.push(() => makeCharacter(
  20380. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  20381. {
  20382. side: {
  20383. height: math.unit(9, "feet"),
  20384. weight: math.unit(650, "lb"),
  20385. name: "Side",
  20386. image: {
  20387. source: "./media/characters/milo/side.svg",
  20388. extra: 2644 / 2310,
  20389. bottom: 0.032
  20390. }
  20391. },
  20392. },
  20393. [
  20394. {
  20395. name: "Normal",
  20396. height: math.unit(9, "feet"),
  20397. default: true
  20398. },
  20399. {
  20400. name: "Macro",
  20401. height: math.unit(300, "feet")
  20402. },
  20403. ]
  20404. ))
  20405. characterMakers.push(() => makeCharacter(
  20406. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  20407. {
  20408. side: {
  20409. height: math.unit(8, "meters"),
  20410. weight: math.unit(90000, "kg"),
  20411. name: "Side",
  20412. image: {
  20413. source: "./media/characters/ijzer/side.svg",
  20414. extra: 2756 / 1600,
  20415. bottom: 0.01
  20416. }
  20417. },
  20418. },
  20419. [
  20420. {
  20421. name: "Small",
  20422. height: math.unit(3, "meters")
  20423. },
  20424. {
  20425. name: "Normal",
  20426. height: math.unit(8, "meters"),
  20427. default: true
  20428. },
  20429. {
  20430. name: "Normal+",
  20431. height: math.unit(10, "meters")
  20432. },
  20433. {
  20434. name: "Bigger",
  20435. height: math.unit(24, "meters")
  20436. },
  20437. {
  20438. name: "Huge",
  20439. height: math.unit(80, "meters")
  20440. },
  20441. ]
  20442. ))
  20443. characterMakers.push(() => makeCharacter(
  20444. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  20445. {
  20446. front: {
  20447. height: math.unit(6 + 2 / 12, "feet"),
  20448. weight: math.unit(153, "lb"),
  20449. name: "Front",
  20450. image: {
  20451. source: "./media/characters/luca-cervicum/front.svg",
  20452. extra: 370 / 327,
  20453. bottom: 0.015
  20454. }
  20455. },
  20456. back: {
  20457. height: math.unit(6 + 2 / 12, "feet"),
  20458. weight: math.unit(153, "lb"),
  20459. name: "Back",
  20460. image: {
  20461. source: "./media/characters/luca-cervicum/back.svg",
  20462. extra: 367 / 333,
  20463. bottom: 0.005
  20464. }
  20465. },
  20466. frontGear: {
  20467. height: math.unit(6 + 2 / 12, "feet"),
  20468. weight: math.unit(173, "lb"),
  20469. name: "Front (Gear)",
  20470. image: {
  20471. source: "./media/characters/luca-cervicum/front-gear.svg",
  20472. extra: 377 / 333,
  20473. bottom: 0.006
  20474. }
  20475. },
  20476. },
  20477. [
  20478. {
  20479. name: "Normal",
  20480. height: math.unit(6 + 2 / 12, "feet"),
  20481. default: true
  20482. },
  20483. ]
  20484. ))
  20485. characterMakers.push(() => makeCharacter(
  20486. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  20487. {
  20488. front: {
  20489. height: math.unit(6 + 1 / 12, "feet"),
  20490. weight: math.unit(304, "lb"),
  20491. name: "Front",
  20492. image: {
  20493. source: "./media/characters/oliver/front.svg",
  20494. extra: 157 / 143,
  20495. bottom: 0.08
  20496. }
  20497. },
  20498. },
  20499. [
  20500. {
  20501. name: "Normal",
  20502. height: math.unit(6 + 1 / 12, "feet"),
  20503. default: true
  20504. },
  20505. ]
  20506. ))
  20507. characterMakers.push(() => makeCharacter(
  20508. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  20509. {
  20510. front: {
  20511. height: math.unit(5 + 7 / 12, "feet"),
  20512. weight: math.unit(140, "lb"),
  20513. name: "Front",
  20514. image: {
  20515. source: "./media/characters/shane/front.svg",
  20516. extra: 304 / 289,
  20517. bottom: 0.005
  20518. }
  20519. },
  20520. },
  20521. [
  20522. {
  20523. name: "Normal",
  20524. height: math.unit(5 + 7 / 12, "feet"),
  20525. default: true
  20526. },
  20527. ]
  20528. ))
  20529. characterMakers.push(() => makeCharacter(
  20530. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  20531. {
  20532. front: {
  20533. height: math.unit(5 + 9 / 12, "feet"),
  20534. weight: math.unit(178, "lb"),
  20535. name: "Front",
  20536. image: {
  20537. source: "./media/characters/shin/front.svg",
  20538. extra: 159 / 151,
  20539. bottom: 0.015
  20540. }
  20541. },
  20542. },
  20543. [
  20544. {
  20545. name: "Normal",
  20546. height: math.unit(5 + 9 / 12, "feet"),
  20547. default: true
  20548. },
  20549. ]
  20550. ))
  20551. characterMakers.push(() => makeCharacter(
  20552. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  20553. {
  20554. front: {
  20555. height: math.unit(5 + 10 / 12, "feet"),
  20556. weight: math.unit(168, "lb"),
  20557. name: "Front",
  20558. image: {
  20559. source: "./media/characters/xerxes/front.svg",
  20560. extra: 282 / 260,
  20561. bottom: 0.045
  20562. }
  20563. },
  20564. },
  20565. [
  20566. {
  20567. name: "Normal",
  20568. height: math.unit(5 + 10 / 12, "feet"),
  20569. default: true
  20570. },
  20571. ]
  20572. ))
  20573. characterMakers.push(() => makeCharacter(
  20574. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  20575. {
  20576. front: {
  20577. height: math.unit(6 + 7 / 12, "feet"),
  20578. weight: math.unit(208, "lb"),
  20579. name: "Front",
  20580. image: {
  20581. source: "./media/characters/chaska/front.svg",
  20582. extra: 332 / 319,
  20583. bottom: 0.015
  20584. }
  20585. },
  20586. },
  20587. [
  20588. {
  20589. name: "Normal",
  20590. height: math.unit(6 + 7 / 12, "feet"),
  20591. default: true
  20592. },
  20593. ]
  20594. ))
  20595. characterMakers.push(() => makeCharacter(
  20596. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  20597. {
  20598. front: {
  20599. height: math.unit(5 + 8 / 12, "feet"),
  20600. weight: math.unit(208, "lb"),
  20601. name: "Front",
  20602. image: {
  20603. source: "./media/characters/enuk/front.svg",
  20604. extra: 437 / 406,
  20605. bottom: 0.02
  20606. }
  20607. },
  20608. },
  20609. [
  20610. {
  20611. name: "Normal",
  20612. height: math.unit(5 + 8 / 12, "feet"),
  20613. default: true
  20614. },
  20615. ]
  20616. ))
  20617. characterMakers.push(() => makeCharacter(
  20618. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  20619. {
  20620. front: {
  20621. height: math.unit(5 + 10 / 12, "feet"),
  20622. weight: math.unit(252, "lb"),
  20623. name: "Front",
  20624. image: {
  20625. source: "./media/characters/bruun/front.svg",
  20626. extra: 197 / 187,
  20627. bottom: 0.012
  20628. }
  20629. },
  20630. },
  20631. [
  20632. {
  20633. name: "Normal",
  20634. height: math.unit(5 + 10 / 12, "feet"),
  20635. default: true
  20636. },
  20637. ]
  20638. ))
  20639. characterMakers.push(() => makeCharacter(
  20640. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  20641. {
  20642. front: {
  20643. height: math.unit(6 + 10 / 12, "feet"),
  20644. weight: math.unit(255, "lb"),
  20645. name: "Front",
  20646. image: {
  20647. source: "./media/characters/alexeev/front.svg",
  20648. extra: 213 / 200,
  20649. bottom: 0.05
  20650. }
  20651. },
  20652. },
  20653. [
  20654. {
  20655. name: "Normal",
  20656. height: math.unit(6 + 10 / 12, "feet"),
  20657. default: true
  20658. },
  20659. ]
  20660. ))
  20661. characterMakers.push(() => makeCharacter(
  20662. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  20663. {
  20664. front: {
  20665. height: math.unit(2 + 8 / 12, "feet"),
  20666. weight: math.unit(22, "lb"),
  20667. name: "Front",
  20668. image: {
  20669. source: "./media/characters/evelyn/front.svg",
  20670. extra: 208 / 180
  20671. }
  20672. },
  20673. },
  20674. [
  20675. {
  20676. name: "Normal",
  20677. height: math.unit(2 + 8 / 12, "feet"),
  20678. default: true
  20679. },
  20680. ]
  20681. ))
  20682. characterMakers.push(() => makeCharacter(
  20683. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  20684. {
  20685. front: {
  20686. height: math.unit(5 + 9 / 12, "feet"),
  20687. weight: math.unit(139, "lb"),
  20688. name: "Front",
  20689. image: {
  20690. source: "./media/characters/inca/front.svg",
  20691. extra: 294 / 291,
  20692. bottom: 0.03
  20693. }
  20694. },
  20695. },
  20696. [
  20697. {
  20698. name: "Normal",
  20699. height: math.unit(5 + 9 / 12, "feet"),
  20700. default: true
  20701. },
  20702. ]
  20703. ))
  20704. characterMakers.push(() => makeCharacter(
  20705. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  20706. {
  20707. front: {
  20708. height: math.unit(6 + 3 / 12, "feet"),
  20709. weight: math.unit(185, "lb"),
  20710. name: "Front",
  20711. image: {
  20712. source: "./media/characters/mera/front.svg",
  20713. extra: 291 / 277,
  20714. bottom: 0.03
  20715. }
  20716. },
  20717. },
  20718. [
  20719. {
  20720. name: "Normal",
  20721. height: math.unit(6 + 3 / 12, "feet"),
  20722. default: true
  20723. },
  20724. ]
  20725. ))
  20726. characterMakers.push(() => makeCharacter(
  20727. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  20728. {
  20729. front: {
  20730. height: math.unit(6 + 7 / 12, "feet"),
  20731. weight: math.unit(160, "lb"),
  20732. name: "Front",
  20733. image: {
  20734. source: "./media/characters/ceres/front.svg",
  20735. extra: 1023 / 950,
  20736. bottom: 0.027
  20737. }
  20738. },
  20739. back: {
  20740. height: math.unit(6 + 7 / 12, "feet"),
  20741. weight: math.unit(160, "lb"),
  20742. name: "Back",
  20743. image: {
  20744. source: "./media/characters/ceres/back.svg",
  20745. extra: 1023 / 950
  20746. }
  20747. },
  20748. },
  20749. [
  20750. {
  20751. name: "Normal",
  20752. height: math.unit(6 + 7 / 12, "feet"),
  20753. default: true
  20754. },
  20755. ]
  20756. ))
  20757. characterMakers.push(() => makeCharacter(
  20758. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  20759. {
  20760. front: {
  20761. height: math.unit(5 + 10 / 12, "feet"),
  20762. weight: math.unit(150, "lb"),
  20763. name: "Front",
  20764. image: {
  20765. source: "./media/characters/kris/front.svg",
  20766. extra: 885 / 803,
  20767. bottom: 0.03
  20768. }
  20769. },
  20770. },
  20771. [
  20772. {
  20773. name: "Normal",
  20774. height: math.unit(5 + 10 / 12, "feet"),
  20775. default: true
  20776. },
  20777. ]
  20778. ))
  20779. characterMakers.push(() => makeCharacter(
  20780. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  20781. {
  20782. front: {
  20783. height: math.unit(7, "feet"),
  20784. weight: math.unit(120, "kg"),
  20785. name: "Front",
  20786. image: {
  20787. source: "./media/characters/taluthus/front.svg",
  20788. extra: 903 / 833,
  20789. bottom: 0.015
  20790. }
  20791. },
  20792. },
  20793. [
  20794. {
  20795. name: "Normal",
  20796. height: math.unit(7, "feet"),
  20797. default: true
  20798. },
  20799. {
  20800. name: "Macro",
  20801. height: math.unit(300, "feet")
  20802. },
  20803. ]
  20804. ))
  20805. characterMakers.push(() => makeCharacter(
  20806. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  20807. {
  20808. front: {
  20809. height: math.unit(5 + 9 / 12, "feet"),
  20810. weight: math.unit(145, "lb"),
  20811. name: "Front",
  20812. image: {
  20813. source: "./media/characters/dawn/front.svg",
  20814. extra: 2094 / 2016,
  20815. bottom: 0.025
  20816. }
  20817. },
  20818. back: {
  20819. height: math.unit(5 + 9 / 12, "feet"),
  20820. weight: math.unit(160, "lb"),
  20821. name: "Back",
  20822. image: {
  20823. source: "./media/characters/dawn/back.svg",
  20824. extra: 2112 / 2080,
  20825. bottom: 0.005
  20826. }
  20827. },
  20828. },
  20829. [
  20830. {
  20831. name: "Normal",
  20832. height: math.unit(6 + 7 / 12, "feet"),
  20833. default: true
  20834. },
  20835. ]
  20836. ))
  20837. characterMakers.push(() => makeCharacter(
  20838. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  20839. {
  20840. anthro: {
  20841. height: math.unit(8 + 3 / 12, "feet"),
  20842. weight: math.unit(450, "lb"),
  20843. name: "Anthro",
  20844. image: {
  20845. source: "./media/characters/arador/anthro.svg",
  20846. extra: 1835 / 1718,
  20847. bottom: 0.025
  20848. }
  20849. },
  20850. feral: {
  20851. height: math.unit(4, "feet"),
  20852. weight: math.unit(200, "lb"),
  20853. name: "Feral",
  20854. image: {
  20855. source: "./media/characters/arador/feral.svg",
  20856. extra: 1683 / 1514,
  20857. bottom: 0.07
  20858. }
  20859. },
  20860. },
  20861. [
  20862. {
  20863. name: "Normal",
  20864. height: math.unit(8 + 3 / 12, "feet")
  20865. },
  20866. {
  20867. name: "Macro",
  20868. height: math.unit(82.5, "feet"),
  20869. default: true
  20870. },
  20871. ]
  20872. ))
  20873. characterMakers.push(() => makeCharacter(
  20874. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  20875. {
  20876. front: {
  20877. height: math.unit(5 + 10 / 12, "feet"),
  20878. weight: math.unit(125, "lb"),
  20879. name: "Front",
  20880. image: {
  20881. source: "./media/characters/dharsi/front.svg",
  20882. extra: 716 / 630,
  20883. bottom: 0.035
  20884. }
  20885. },
  20886. },
  20887. [
  20888. {
  20889. name: "Nano",
  20890. height: math.unit(100, "nm")
  20891. },
  20892. {
  20893. name: "Micro",
  20894. height: math.unit(2, "inches")
  20895. },
  20896. {
  20897. name: "Normal",
  20898. height: math.unit(5 + 10 / 12, "feet"),
  20899. default: true
  20900. },
  20901. {
  20902. name: "Macro",
  20903. height: math.unit(1000, "feet")
  20904. },
  20905. {
  20906. name: "Megamacro",
  20907. height: math.unit(10, "miles")
  20908. },
  20909. {
  20910. name: "Gigamacro",
  20911. height: math.unit(3000, "miles")
  20912. },
  20913. {
  20914. name: "Teramacro",
  20915. height: math.unit(500000, "miles")
  20916. },
  20917. {
  20918. name: "Teramacro+",
  20919. height: math.unit(30, "galaxies")
  20920. },
  20921. ]
  20922. ))
  20923. characterMakers.push(() => makeCharacter(
  20924. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  20925. {
  20926. front: {
  20927. height: math.unit(6, "feet"),
  20928. weight: math.unit(150, "lb"),
  20929. name: "Front",
  20930. image: {
  20931. source: "./media/characters/deathy/front.svg",
  20932. extra: 1552 / 1463,
  20933. bottom: 0.025
  20934. }
  20935. },
  20936. side: {
  20937. height: math.unit(6, "feet"),
  20938. weight: math.unit(150, "lb"),
  20939. name: "Side",
  20940. image: {
  20941. source: "./media/characters/deathy/side.svg",
  20942. extra: 1604 / 1455,
  20943. bottom: 0.025
  20944. }
  20945. },
  20946. back: {
  20947. height: math.unit(6, "feet"),
  20948. weight: math.unit(150, "lb"),
  20949. name: "Back",
  20950. image: {
  20951. source: "./media/characters/deathy/back.svg",
  20952. extra: 1580 / 1463,
  20953. bottom: 0.005
  20954. }
  20955. },
  20956. },
  20957. [
  20958. {
  20959. name: "Micro",
  20960. height: math.unit(5, "millimeters")
  20961. },
  20962. {
  20963. name: "Normal",
  20964. height: math.unit(6 + 5 / 12, "feet"),
  20965. default: true
  20966. },
  20967. ]
  20968. ))
  20969. characterMakers.push(() => makeCharacter(
  20970. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  20971. {
  20972. front: {
  20973. height: math.unit(16, "feet"),
  20974. weight: math.unit(4000, "lb"),
  20975. name: "Front",
  20976. image: {
  20977. source: "./media/characters/juniper/front.svg",
  20978. bottom: 0.04
  20979. }
  20980. },
  20981. },
  20982. [
  20983. {
  20984. name: "Normal",
  20985. height: math.unit(16, "feet"),
  20986. default: true
  20987. },
  20988. ]
  20989. ))
  20990. characterMakers.push(() => makeCharacter(
  20991. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  20992. {
  20993. front: {
  20994. height: math.unit(6, "feet"),
  20995. weight: math.unit(150, "lb"),
  20996. name: "Front",
  20997. image: {
  20998. source: "./media/characters/hipster/front.svg",
  20999. extra: 1312 / 1209,
  21000. bottom: 0.025
  21001. }
  21002. },
  21003. back: {
  21004. height: math.unit(6, "feet"),
  21005. weight: math.unit(150, "lb"),
  21006. name: "Back",
  21007. image: {
  21008. source: "./media/characters/hipster/back.svg",
  21009. extra: 1281 / 1196,
  21010. bottom: 0.01
  21011. }
  21012. },
  21013. },
  21014. [
  21015. {
  21016. name: "Micro",
  21017. height: math.unit(1, "mm")
  21018. },
  21019. {
  21020. name: "Normal",
  21021. height: math.unit(4, "inches"),
  21022. default: true
  21023. },
  21024. {
  21025. name: "Macro",
  21026. height: math.unit(500, "feet")
  21027. },
  21028. {
  21029. name: "Megamacro",
  21030. height: math.unit(1000, "miles")
  21031. },
  21032. ]
  21033. ))
  21034. characterMakers.push(() => makeCharacter(
  21035. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  21036. {
  21037. front: {
  21038. height: math.unit(6, "feet"),
  21039. weight: math.unit(150, "lb"),
  21040. name: "Front",
  21041. image: {
  21042. source: "./media/characters/tendirmuldr/front.svg",
  21043. extra: 1878 / 1772,
  21044. bottom: 0.015
  21045. }
  21046. },
  21047. },
  21048. [
  21049. {
  21050. name: "Megamacro",
  21051. height: math.unit(1500, "miles"),
  21052. default: true
  21053. },
  21054. ]
  21055. ))
  21056. characterMakers.push(() => makeCharacter(
  21057. { name: "Mort", species: ["demon"], tags: ["feral"] },
  21058. {
  21059. front: {
  21060. height: math.unit(14, "feet"),
  21061. weight: math.unit(12000, "lb"),
  21062. name: "Front",
  21063. image: {
  21064. source: "./media/characters/mort/front.svg",
  21065. extra: 365 / 318,
  21066. bottom: 0.01
  21067. }
  21068. },
  21069. side: {
  21070. height: math.unit(14, "feet"),
  21071. weight: math.unit(12000, "lb"),
  21072. name: "Side",
  21073. image: {
  21074. source: "./media/characters/mort/side.svg",
  21075. extra: 365 / 318,
  21076. bottom: 0.052
  21077. },
  21078. default: true
  21079. },
  21080. back: {
  21081. height: math.unit(14, "feet"),
  21082. weight: math.unit(12000, "lb"),
  21083. name: "Back",
  21084. image: {
  21085. source: "./media/characters/mort/back.svg",
  21086. extra: 371 / 332,
  21087. bottom: 0.18
  21088. }
  21089. },
  21090. },
  21091. [
  21092. {
  21093. name: "Normal",
  21094. height: math.unit(14, "feet"),
  21095. default: true
  21096. },
  21097. ]
  21098. ))
  21099. characterMakers.push(() => makeCharacter(
  21100. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  21101. {
  21102. front: {
  21103. height: math.unit(8, "feet"),
  21104. weight: math.unit(1, "ton"),
  21105. name: "Front",
  21106. image: {
  21107. source: "./media/characters/lycoa/front.svg",
  21108. extra: 1836/1728,
  21109. bottom: 81/1917
  21110. }
  21111. },
  21112. back: {
  21113. height: math.unit(8, "feet"),
  21114. weight: math.unit(1, "ton"),
  21115. name: "Back",
  21116. image: {
  21117. source: "./media/characters/lycoa/back.svg",
  21118. extra: 1785/1720,
  21119. bottom: 91/1876
  21120. }
  21121. },
  21122. head: {
  21123. height: math.unit(1.6243, "feet"),
  21124. name: "Head",
  21125. image: {
  21126. source: "./media/characters/lycoa/head.svg",
  21127. extra: 1011/782,
  21128. bottom: 0/1011
  21129. }
  21130. },
  21131. tailmaw: {
  21132. height: math.unit(1.9, "feet"),
  21133. name: "Tailmaw",
  21134. image: {
  21135. source: "./media/characters/lycoa/tailmaw.svg"
  21136. }
  21137. },
  21138. tentacles: {
  21139. height: math.unit(2.1, "feet"),
  21140. name: "Tentacles",
  21141. image: {
  21142. source: "./media/characters/lycoa/tentacles.svg"
  21143. }
  21144. },
  21145. dick: {
  21146. height: math.unit(1.73, "feet"),
  21147. name: "Dick",
  21148. image: {
  21149. source: "./media/characters/lycoa/dick.svg"
  21150. }
  21151. },
  21152. },
  21153. [
  21154. {
  21155. name: "Normal",
  21156. height: math.unit(8, "feet"),
  21157. default: true
  21158. },
  21159. {
  21160. name: "Macro",
  21161. height: math.unit(30, "feet")
  21162. },
  21163. ]
  21164. ))
  21165. characterMakers.push(() => makeCharacter(
  21166. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  21167. {
  21168. front: {
  21169. height: math.unit(4 + 2 / 12, "feet"),
  21170. weight: math.unit(70, "lb"),
  21171. name: "Front",
  21172. image: {
  21173. source: "./media/characters/naldara/front.svg",
  21174. extra: 1664/1387,
  21175. bottom: 81/1745
  21176. },
  21177. form: "anthro",
  21178. default: true
  21179. },
  21180. naga: {
  21181. height: math.unit(20, "feet"),
  21182. weight: math.unit(15000, "kg"),
  21183. name: "Front",
  21184. image: {
  21185. source: "./media/characters/naldara/naga.svg",
  21186. extra: 1590/1396,
  21187. bottom: 285/1875
  21188. },
  21189. form: "naga",
  21190. default: true
  21191. },
  21192. },
  21193. [
  21194. {
  21195. name: "Normal",
  21196. height: math.unit(4 + 2 / 12, "feet"),
  21197. form: "anthro",
  21198. default: true
  21199. },
  21200. {
  21201. name: "Normal",
  21202. height: math.unit(20, "feet"),
  21203. form: "naga",
  21204. default: true
  21205. },
  21206. ],
  21207. {
  21208. "anthro": {
  21209. name: "Anthro",
  21210. default: true
  21211. },
  21212. "naga": {
  21213. name: "Naga"
  21214. }
  21215. }
  21216. ))
  21217. characterMakers.push(() => makeCharacter(
  21218. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  21219. {
  21220. front: {
  21221. height: math.unit(13 + 7 / 12, "feet"),
  21222. weight: math.unit(1500, "lb"),
  21223. name: "Front",
  21224. image: {
  21225. source: "./media/characters/briar/front.svg",
  21226. extra: 1223/1157,
  21227. bottom: 123/1346
  21228. }
  21229. },
  21230. },
  21231. [
  21232. {
  21233. name: "Normal",
  21234. height: math.unit(13 + 7 / 12, "feet"),
  21235. default: true
  21236. },
  21237. ]
  21238. ))
  21239. characterMakers.push(() => makeCharacter(
  21240. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  21241. {
  21242. side: {
  21243. height: math.unit(16, "feet"),
  21244. weight: math.unit(500, "lb"),
  21245. name: "Side",
  21246. image: {
  21247. source: "./media/characters/vanguard/side.svg",
  21248. extra: 1022/914,
  21249. bottom: 30/1052
  21250. }
  21251. },
  21252. sideAlt: {
  21253. height: math.unit(10, "feet"),
  21254. weight: math.unit(500, "lb"),
  21255. name: "Side (Alt)",
  21256. image: {
  21257. source: "./media/characters/vanguard/side-alt.svg",
  21258. extra: 502 / 425,
  21259. bottom: 0.087
  21260. }
  21261. },
  21262. },
  21263. [
  21264. {
  21265. name: "Normal",
  21266. height: math.unit(17.71, "feet"),
  21267. default: true
  21268. },
  21269. ]
  21270. ))
  21271. characterMakers.push(() => makeCharacter(
  21272. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  21273. {
  21274. front: {
  21275. height: math.unit(7.5, "feet"),
  21276. weight: math.unit(2, "lb"),
  21277. name: "Front",
  21278. image: {
  21279. source: "./media/characters/artemis/work-safe-front.svg",
  21280. extra: 1192 / 1075,
  21281. bottom: 0.07
  21282. },
  21283. form: "work-safe",
  21284. default: true
  21285. },
  21286. frontNsfw: {
  21287. height: math.unit(7.5, "feet"),
  21288. weight: math.unit(2, "lb"),
  21289. name: "Front",
  21290. image: {
  21291. source: "./media/characters/artemis/calibrating-front.svg",
  21292. extra: 1192 / 1075,
  21293. bottom: 0.07
  21294. },
  21295. form: "calibrating",
  21296. default: true
  21297. },
  21298. frontNsfwer: {
  21299. height: math.unit(7.5, "feet"),
  21300. weight: math.unit(2, "lb"),
  21301. name: "Front",
  21302. image: {
  21303. source: "./media/characters/artemis/oversize-load-front.svg",
  21304. extra: 1192 / 1075,
  21305. bottom: 0.07
  21306. },
  21307. form: "oversize-load",
  21308. default: true
  21309. },
  21310. side: {
  21311. height: math.unit(7.5, "feet"),
  21312. weight: math.unit(2, "lb"),
  21313. name: "Side",
  21314. image: {
  21315. source: "./media/characters/artemis/work-safe-side.svg",
  21316. extra: 1192 / 1075,
  21317. bottom: 0.07
  21318. },
  21319. form: "work-safe"
  21320. },
  21321. sideNsfw: {
  21322. height: math.unit(7.5, "feet"),
  21323. weight: math.unit(2, "lb"),
  21324. name: "Side",
  21325. image: {
  21326. source: "./media/characters/artemis/calibrating-side.svg",
  21327. extra: 1192 / 1075,
  21328. bottom: 0.07
  21329. },
  21330. form: "calibrating"
  21331. },
  21332. sideNsfwer: {
  21333. height: math.unit(7.5, "feet"),
  21334. weight: math.unit(2, "lb"),
  21335. name: "Side",
  21336. image: {
  21337. source: "./media/characters/artemis/oversize-load-side.svg",
  21338. extra: 1192 / 1075,
  21339. bottom: 0.07
  21340. },
  21341. form: "oversize-load"
  21342. },
  21343. maw: {
  21344. height: math.unit(1.1, "feet"),
  21345. name: "Maw",
  21346. image: {
  21347. source: "./media/characters/artemis/maw.svg"
  21348. },
  21349. form: "work-safe"
  21350. },
  21351. stomach: {
  21352. height: math.unit(0.95, "feet"),
  21353. name: "Stomach",
  21354. image: {
  21355. source: "./media/characters/artemis/stomach.svg"
  21356. },
  21357. form: "work-safe"
  21358. },
  21359. dickCanine: {
  21360. height: math.unit(1, "feet"),
  21361. name: "Dick (Canine)",
  21362. image: {
  21363. source: "./media/characters/artemis/dick-canine.svg"
  21364. },
  21365. form: "calibrating"
  21366. },
  21367. dickEquine: {
  21368. height: math.unit(0.85, "feet"),
  21369. name: "Dick (Equine)",
  21370. image: {
  21371. source: "./media/characters/artemis/dick-equine.svg"
  21372. },
  21373. form: "calibrating"
  21374. },
  21375. dickExotic: {
  21376. height: math.unit(0.85, "feet"),
  21377. name: "Dick (Exotic)",
  21378. image: {
  21379. source: "./media/characters/artemis/dick-exotic.svg"
  21380. },
  21381. form: "calibrating"
  21382. },
  21383. dickCanineBigger: {
  21384. height: math.unit(1 * 1.33, "feet"),
  21385. name: "Dick (Canine)",
  21386. image: {
  21387. source: "./media/characters/artemis/dick-canine.svg"
  21388. },
  21389. form: "oversize-load"
  21390. },
  21391. dickEquineBigger: {
  21392. height: math.unit(0.85 * 1.33, "feet"),
  21393. name: "Dick (Equine)",
  21394. image: {
  21395. source: "./media/characters/artemis/dick-equine.svg"
  21396. },
  21397. form: "oversize-load"
  21398. },
  21399. dickExoticBigger: {
  21400. height: math.unit(0.85 * 1.33, "feet"),
  21401. name: "Dick (Exotic)",
  21402. image: {
  21403. source: "./media/characters/artemis/dick-exotic.svg"
  21404. },
  21405. form: "oversize-load"
  21406. },
  21407. },
  21408. [
  21409. {
  21410. name: "Normal",
  21411. height: math.unit(7.5, "feet"),
  21412. form: "work-safe",
  21413. default: true
  21414. },
  21415. {
  21416. name: "Normal",
  21417. height: math.unit(7.5, "feet"),
  21418. form: "calibrating",
  21419. default: true
  21420. },
  21421. {
  21422. name: "Normal",
  21423. height: math.unit(7.5, "feet"),
  21424. form: "oversize-load",
  21425. default: true
  21426. },
  21427. {
  21428. name: "Enlarged",
  21429. height: math.unit(12, "feet"),
  21430. form: "work-safe",
  21431. },
  21432. {
  21433. name: "Enlarged",
  21434. height: math.unit(12, "feet"),
  21435. form: "calibrating",
  21436. },
  21437. {
  21438. name: "Enlarged",
  21439. height: math.unit(12, "feet"),
  21440. form: "oversize-load",
  21441. },
  21442. ],
  21443. {
  21444. "work-safe": {
  21445. name: "Work-Safe",
  21446. default: true
  21447. },
  21448. "calibrating": {
  21449. name: "Calibrating"
  21450. },
  21451. "oversize-load": {
  21452. name: "Oversize Load"
  21453. }
  21454. }
  21455. ))
  21456. characterMakers.push(() => makeCharacter(
  21457. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  21458. {
  21459. front: {
  21460. height: math.unit(5 + 3 / 12, "feet"),
  21461. weight: math.unit(160, "lb"),
  21462. name: "Front",
  21463. image: {
  21464. source: "./media/characters/kira/front.svg",
  21465. extra: 906 / 786,
  21466. bottom: 0.01
  21467. }
  21468. },
  21469. back: {
  21470. height: math.unit(5 + 3 / 12, "feet"),
  21471. weight: math.unit(160, "lb"),
  21472. name: "Back",
  21473. image: {
  21474. source: "./media/characters/kira/back.svg",
  21475. extra: 882 / 757,
  21476. bottom: 0.005
  21477. }
  21478. },
  21479. frontDressed: {
  21480. height: math.unit(5 + 3 / 12, "feet"),
  21481. weight: math.unit(160, "lb"),
  21482. name: "Front (Dressed)",
  21483. image: {
  21484. source: "./media/characters/kira/front-dressed.svg",
  21485. extra: 906 / 786,
  21486. bottom: 0.01
  21487. }
  21488. },
  21489. beans: {
  21490. height: math.unit(0.92, "feet"),
  21491. name: "Beans",
  21492. image: {
  21493. source: "./media/characters/kira/beans.svg"
  21494. }
  21495. },
  21496. },
  21497. [
  21498. {
  21499. name: "Normal",
  21500. height: math.unit(5 + 3 / 12, "feet"),
  21501. default: true
  21502. },
  21503. ]
  21504. ))
  21505. characterMakers.push(() => makeCharacter(
  21506. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  21507. {
  21508. front: {
  21509. height: math.unit(5 + 4 / 12, "feet"),
  21510. weight: math.unit(145, "lb"),
  21511. name: "Front",
  21512. image: {
  21513. source: "./media/characters/scramble/front.svg",
  21514. extra: 763 / 727,
  21515. bottom: 0.05
  21516. }
  21517. },
  21518. back: {
  21519. height: math.unit(5 + 4 / 12, "feet"),
  21520. weight: math.unit(145, "lb"),
  21521. name: "Back",
  21522. image: {
  21523. source: "./media/characters/scramble/back.svg",
  21524. extra: 826 / 737,
  21525. bottom: 0.002
  21526. }
  21527. },
  21528. },
  21529. [
  21530. {
  21531. name: "Normal",
  21532. height: math.unit(5 + 4 / 12, "feet"),
  21533. default: true
  21534. },
  21535. ]
  21536. ))
  21537. characterMakers.push(() => makeCharacter(
  21538. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  21539. {
  21540. side: {
  21541. height: math.unit(6 + 2 / 12, "feet"),
  21542. weight: math.unit(190, "lb"),
  21543. name: "Side",
  21544. image: {
  21545. source: "./media/characters/biscuit/side.svg",
  21546. extra: 858 / 791,
  21547. bottom: 0.044
  21548. }
  21549. },
  21550. },
  21551. [
  21552. {
  21553. name: "Normal",
  21554. height: math.unit(6 + 2 / 12, "feet"),
  21555. default: true
  21556. },
  21557. ]
  21558. ))
  21559. characterMakers.push(() => makeCharacter(
  21560. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  21561. {
  21562. front: {
  21563. height: math.unit(5 + 2 / 12, "feet"),
  21564. weight: math.unit(120, "lb"),
  21565. name: "Front",
  21566. image: {
  21567. source: "./media/characters/poffin/front.svg",
  21568. extra: 786 / 680,
  21569. bottom: 0.005
  21570. }
  21571. },
  21572. },
  21573. [
  21574. {
  21575. name: "Normal",
  21576. height: math.unit(5 + 2 / 12, "feet"),
  21577. default: true
  21578. },
  21579. ]
  21580. ))
  21581. characterMakers.push(() => makeCharacter(
  21582. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  21583. {
  21584. front: {
  21585. height: math.unit(6 + 3 / 12, "feet"),
  21586. weight: math.unit(519, "lb"),
  21587. name: "Front",
  21588. image: {
  21589. source: "./media/characters/dhari/front.svg",
  21590. extra: 1048 / 946,
  21591. bottom: 0.015
  21592. }
  21593. },
  21594. back: {
  21595. height: math.unit(6 + 3 / 12, "feet"),
  21596. weight: math.unit(519, "lb"),
  21597. name: "Back",
  21598. image: {
  21599. source: "./media/characters/dhari/back.svg",
  21600. extra: 1048 / 931,
  21601. bottom: 0.005
  21602. }
  21603. },
  21604. frontDressed: {
  21605. height: math.unit(6 + 3 / 12, "feet"),
  21606. weight: math.unit(519, "lb"),
  21607. name: "Front (Dressed)",
  21608. image: {
  21609. source: "./media/characters/dhari/front-dressed.svg",
  21610. extra: 1713 / 1546,
  21611. bottom: 0.02
  21612. }
  21613. },
  21614. backDressed: {
  21615. height: math.unit(6 + 3 / 12, "feet"),
  21616. weight: math.unit(519, "lb"),
  21617. name: "Back (Dressed)",
  21618. image: {
  21619. source: "./media/characters/dhari/back-dressed.svg",
  21620. extra: 1699 / 1537,
  21621. bottom: 0.01
  21622. }
  21623. },
  21624. maw: {
  21625. height: math.unit(0.95, "feet"),
  21626. name: "Maw",
  21627. image: {
  21628. source: "./media/characters/dhari/maw.svg"
  21629. }
  21630. },
  21631. wereFront: {
  21632. height: math.unit(12 + 8 / 12, "feet"),
  21633. weight: math.unit(4000, "lb"),
  21634. name: "Front (Were)",
  21635. image: {
  21636. source: "./media/characters/dhari/were-front.svg",
  21637. extra: 1065 / 969,
  21638. bottom: 0.015
  21639. }
  21640. },
  21641. wereBack: {
  21642. height: math.unit(12 + 8 / 12, "feet"),
  21643. weight: math.unit(4000, "lb"),
  21644. name: "Back (Were)",
  21645. image: {
  21646. source: "./media/characters/dhari/were-back.svg",
  21647. extra: 1065 / 969,
  21648. bottom: 0.012
  21649. }
  21650. },
  21651. wereMaw: {
  21652. height: math.unit(0.625, "meters"),
  21653. name: "Maw (Were)",
  21654. image: {
  21655. source: "./media/characters/dhari/were-maw.svg"
  21656. }
  21657. },
  21658. },
  21659. [
  21660. {
  21661. name: "Normal",
  21662. height: math.unit(6 + 3 / 12, "feet"),
  21663. default: true
  21664. },
  21665. ]
  21666. ))
  21667. characterMakers.push(() => makeCharacter(
  21668. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  21669. {
  21670. anthro: {
  21671. height: math.unit(5 + 7 / 12, "feet"),
  21672. weight: math.unit(175, "lb"),
  21673. name: "Anthro",
  21674. image: {
  21675. source: "./media/characters/rena-dyne/anthro.svg",
  21676. extra: 1849 / 1785,
  21677. bottom: 0.005
  21678. }
  21679. },
  21680. taur: {
  21681. height: math.unit(15 + 6 / 12, "feet"),
  21682. weight: math.unit(8000, "lb"),
  21683. name: "Taur",
  21684. image: {
  21685. source: "./media/characters/rena-dyne/taur.svg",
  21686. extra: 2315 / 2234,
  21687. bottom: 0.033
  21688. }
  21689. },
  21690. },
  21691. [
  21692. {
  21693. name: "Normal",
  21694. height: math.unit(5 + 7 / 12, "feet"),
  21695. default: true
  21696. },
  21697. ]
  21698. ))
  21699. characterMakers.push(() => makeCharacter(
  21700. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  21701. {
  21702. front: {
  21703. height: math.unit(8, "feet"),
  21704. weight: math.unit(600, "lb"),
  21705. name: "Front",
  21706. image: {
  21707. source: "./media/characters/weremeep/front.svg",
  21708. extra: 967 / 862,
  21709. bottom: 0.01
  21710. }
  21711. },
  21712. },
  21713. [
  21714. {
  21715. name: "Normal",
  21716. height: math.unit(8, "feet"),
  21717. default: true
  21718. },
  21719. {
  21720. name: "Lorg",
  21721. height: math.unit(12, "feet")
  21722. },
  21723. {
  21724. name: "Oh Lawd She Comin'",
  21725. height: math.unit(20, "feet")
  21726. },
  21727. ]
  21728. ))
  21729. characterMakers.push(() => makeCharacter(
  21730. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  21731. {
  21732. front: {
  21733. height: math.unit(4, "feet"),
  21734. weight: math.unit(90, "lb"),
  21735. name: "Front",
  21736. image: {
  21737. source: "./media/characters/reza/front.svg",
  21738. extra: 1183 / 1111,
  21739. bottom: 0.017
  21740. }
  21741. },
  21742. back: {
  21743. height: math.unit(4, "feet"),
  21744. weight: math.unit(90, "lb"),
  21745. name: "Back",
  21746. image: {
  21747. source: "./media/characters/reza/back.svg",
  21748. extra: 1183 / 1111,
  21749. bottom: 0.01
  21750. }
  21751. },
  21752. drake: {
  21753. height: math.unit(30, "feet"),
  21754. weight: math.unit(246960, "lb"),
  21755. name: "Drake",
  21756. image: {
  21757. source: "./media/characters/reza/drake.svg",
  21758. extra: 2350 / 2024,
  21759. bottom: 60.7 / 2403
  21760. }
  21761. },
  21762. },
  21763. [
  21764. {
  21765. name: "Normal",
  21766. height: math.unit(4, "feet"),
  21767. default: true
  21768. },
  21769. ]
  21770. ))
  21771. characterMakers.push(() => makeCharacter(
  21772. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  21773. {
  21774. side: {
  21775. height: math.unit(15, "feet"),
  21776. weight: math.unit(14, "tons"),
  21777. name: "Side",
  21778. image: {
  21779. source: "./media/characters/athea/side.svg",
  21780. extra: 960 / 540,
  21781. bottom: 0.003
  21782. }
  21783. },
  21784. sitting: {
  21785. height: math.unit(6 * 2.85, "feet"),
  21786. weight: math.unit(14, "tons"),
  21787. name: "Sitting",
  21788. image: {
  21789. source: "./media/characters/athea/sitting.svg",
  21790. extra: 621 / 581,
  21791. bottom: 0.075
  21792. }
  21793. },
  21794. maw: {
  21795. height: math.unit(7.59498031496063, "feet"),
  21796. name: "Maw",
  21797. image: {
  21798. source: "./media/characters/athea/maw.svg"
  21799. }
  21800. },
  21801. },
  21802. [
  21803. {
  21804. name: "Lap Cat",
  21805. height: math.unit(2.5, "feet")
  21806. },
  21807. {
  21808. name: "Minimacro",
  21809. height: math.unit(15, "feet"),
  21810. default: true
  21811. },
  21812. {
  21813. name: "Macro",
  21814. height: math.unit(120, "feet")
  21815. },
  21816. {
  21817. name: "Macro+",
  21818. height: math.unit(640, "feet")
  21819. },
  21820. {
  21821. name: "Colossus",
  21822. height: math.unit(2.2, "miles")
  21823. },
  21824. ]
  21825. ))
  21826. characterMakers.push(() => makeCharacter(
  21827. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  21828. {
  21829. front: {
  21830. height: math.unit(8 + 8 / 12, "feet"),
  21831. weight: math.unit(130, "kg"),
  21832. name: "Front",
  21833. image: {
  21834. source: "./media/characters/seroko/front.svg",
  21835. extra: 1385 / 1280,
  21836. bottom: 0.025
  21837. }
  21838. },
  21839. back: {
  21840. height: math.unit(8 + 8 / 12, "feet"),
  21841. weight: math.unit(130, "kg"),
  21842. name: "Back",
  21843. image: {
  21844. source: "./media/characters/seroko/back.svg",
  21845. extra: 1369 / 1238,
  21846. bottom: 0.018
  21847. }
  21848. },
  21849. frontDressed: {
  21850. height: math.unit(8 + 8 / 12, "feet"),
  21851. weight: math.unit(130, "kg"),
  21852. name: "Front (Dressed)",
  21853. image: {
  21854. source: "./media/characters/seroko/front-dressed.svg",
  21855. extra: 1366 / 1275,
  21856. bottom: 0.03
  21857. }
  21858. },
  21859. },
  21860. [
  21861. {
  21862. name: "Normal",
  21863. height: math.unit(8 + 8 / 12, "feet"),
  21864. default: true
  21865. },
  21866. ]
  21867. ))
  21868. characterMakers.push(() => makeCharacter(
  21869. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  21870. {
  21871. front: {
  21872. height: math.unit(5.5, "feet"),
  21873. weight: math.unit(160, "lb"),
  21874. name: "Front",
  21875. image: {
  21876. source: "./media/characters/quatzi/front.svg",
  21877. extra: 2346 / 2242,
  21878. bottom: 0.015
  21879. }
  21880. },
  21881. },
  21882. [
  21883. {
  21884. name: "Normal",
  21885. height: math.unit(5.5, "feet"),
  21886. default: true
  21887. },
  21888. {
  21889. name: "Big",
  21890. height: math.unit(7.7, "feet")
  21891. },
  21892. ]
  21893. ))
  21894. characterMakers.push(() => makeCharacter(
  21895. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  21896. {
  21897. front: {
  21898. height: math.unit(5 + 11 / 12, "feet"),
  21899. weight: math.unit(180, "lb"),
  21900. name: "Front",
  21901. image: {
  21902. source: "./media/characters/sen/front.svg",
  21903. extra: 1321 / 1254,
  21904. bottom: 0.015
  21905. }
  21906. },
  21907. side: {
  21908. height: math.unit(5 + 11 / 12, "feet"),
  21909. weight: math.unit(180, "lb"),
  21910. name: "Side",
  21911. image: {
  21912. source: "./media/characters/sen/side.svg",
  21913. extra: 1321 / 1254,
  21914. bottom: 0.007
  21915. }
  21916. },
  21917. back: {
  21918. height: math.unit(5 + 11 / 12, "feet"),
  21919. weight: math.unit(180, "lb"),
  21920. name: "Back",
  21921. image: {
  21922. source: "./media/characters/sen/back.svg",
  21923. extra: 1321 / 1254
  21924. }
  21925. },
  21926. },
  21927. [
  21928. {
  21929. name: "Normal",
  21930. height: math.unit(5 + 11 / 12, "feet"),
  21931. default: true
  21932. },
  21933. ]
  21934. ))
  21935. characterMakers.push(() => makeCharacter(
  21936. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  21937. {
  21938. front: {
  21939. height: math.unit(166.6, "cm"),
  21940. weight: math.unit(66.6, "kg"),
  21941. name: "Front",
  21942. image: {
  21943. source: "./media/characters/fruity/front.svg",
  21944. extra: 1510 / 1386,
  21945. bottom: 0.04
  21946. }
  21947. },
  21948. back: {
  21949. height: math.unit(166.6, "cm"),
  21950. weight: math.unit(66.6, "lb"),
  21951. name: "Back",
  21952. image: {
  21953. source: "./media/characters/fruity/back.svg",
  21954. extra: 1563 / 1435,
  21955. bottom: 0.005
  21956. }
  21957. },
  21958. },
  21959. [
  21960. {
  21961. name: "Normal",
  21962. height: math.unit(166.6, "cm"),
  21963. default: true
  21964. },
  21965. {
  21966. name: "Demonic",
  21967. height: math.unit(166.6, "feet")
  21968. },
  21969. ]
  21970. ))
  21971. characterMakers.push(() => makeCharacter(
  21972. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  21973. {
  21974. side: {
  21975. height: math.unit(10, "feet"),
  21976. weight: math.unit(500, "lb"),
  21977. name: "Side",
  21978. image: {
  21979. source: "./media/characters/zost/side.svg",
  21980. extra: 2870/2533,
  21981. bottom: 252/3122
  21982. }
  21983. },
  21984. mawFront: {
  21985. height: math.unit(1.08, "meters"),
  21986. name: "Maw (Front)",
  21987. image: {
  21988. source: "./media/characters/zost/maw-front.svg"
  21989. }
  21990. },
  21991. mawSide: {
  21992. height: math.unit(2.66, "feet"),
  21993. name: "Maw (Side)",
  21994. image: {
  21995. source: "./media/characters/zost/maw-side.svg"
  21996. }
  21997. },
  21998. wingspan: {
  21999. height: math.unit(7.4, "feet"),
  22000. name: "Wingspan",
  22001. image: {
  22002. source: "./media/characters/zost/wingspan.svg"
  22003. }
  22004. },
  22005. },
  22006. [
  22007. {
  22008. name: "Normal",
  22009. height: math.unit(10, "feet"),
  22010. default: true
  22011. },
  22012. ]
  22013. ))
  22014. characterMakers.push(() => makeCharacter(
  22015. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  22016. {
  22017. front: {
  22018. height: math.unit(5 + 4 / 12, "feet"),
  22019. weight: math.unit(120, "lb"),
  22020. name: "Front",
  22021. image: {
  22022. source: "./media/characters/luci/front.svg",
  22023. extra: 1985 / 1884,
  22024. bottom: 0.04
  22025. }
  22026. },
  22027. back: {
  22028. height: math.unit(5 + 4 / 12, "feet"),
  22029. weight: math.unit(120, "lb"),
  22030. name: "Back",
  22031. image: {
  22032. source: "./media/characters/luci/back.svg",
  22033. extra: 1892 / 1791,
  22034. bottom: 0.002
  22035. }
  22036. },
  22037. },
  22038. [
  22039. {
  22040. name: "Normal",
  22041. height: math.unit(5 + 4 / 12, "feet"),
  22042. default: true
  22043. },
  22044. ]
  22045. ))
  22046. characterMakers.push(() => makeCharacter(
  22047. { name: "2th", species: ["monster"], tags: ["anthro"] },
  22048. {
  22049. front: {
  22050. height: math.unit(1500, "feet"),
  22051. weight: math.unit(3.8e6, "tons"),
  22052. name: "Front",
  22053. image: {
  22054. source: "./media/characters/2th/front.svg",
  22055. extra: 3489 / 3350,
  22056. bottom: 0.1
  22057. }
  22058. },
  22059. foot: {
  22060. height: math.unit(461, "feet"),
  22061. name: "Foot",
  22062. image: {
  22063. source: "./media/characters/2th/foot.svg"
  22064. }
  22065. },
  22066. },
  22067. [
  22068. {
  22069. name: "\"Micro\"",
  22070. height: math.unit(15 + 7 / 12, "feet")
  22071. },
  22072. {
  22073. name: "Normal",
  22074. height: math.unit(1500, "feet"),
  22075. default: true
  22076. },
  22077. {
  22078. name: "Macro",
  22079. height: math.unit(5000, "feet")
  22080. },
  22081. {
  22082. name: "Megamacro",
  22083. height: math.unit(15, "miles")
  22084. },
  22085. {
  22086. name: "Gigamacro",
  22087. height: math.unit(4000, "miles")
  22088. },
  22089. {
  22090. name: "Galactic",
  22091. height: math.unit(50, "AU")
  22092. },
  22093. ]
  22094. ))
  22095. characterMakers.push(() => makeCharacter(
  22096. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  22097. {
  22098. front: {
  22099. height: math.unit(5 + 6 / 12, "feet"),
  22100. weight: math.unit(220, "lb"),
  22101. name: "Front",
  22102. image: {
  22103. source: "./media/characters/amethyst/front.svg",
  22104. extra: 2078 / 2040,
  22105. bottom: 0.045
  22106. }
  22107. },
  22108. back: {
  22109. height: math.unit(5 + 6 / 12, "feet"),
  22110. weight: math.unit(220, "lb"),
  22111. name: "Back",
  22112. image: {
  22113. source: "./media/characters/amethyst/back.svg",
  22114. extra: 2021 / 1989,
  22115. bottom: 0.02
  22116. }
  22117. },
  22118. },
  22119. [
  22120. {
  22121. name: "Normal",
  22122. height: math.unit(5 + 6 / 12, "feet"),
  22123. default: true
  22124. },
  22125. ]
  22126. ))
  22127. characterMakers.push(() => makeCharacter(
  22128. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  22129. {
  22130. front: {
  22131. height: math.unit(4 + 11 / 12, "feet"),
  22132. weight: math.unit(120, "lb"),
  22133. name: "Front",
  22134. image: {
  22135. source: "./media/characters/yumi-akiyama/front.svg",
  22136. extra: 1327 / 1235,
  22137. bottom: 0.02
  22138. }
  22139. },
  22140. back: {
  22141. height: math.unit(4 + 11 / 12, "feet"),
  22142. weight: math.unit(120, "lb"),
  22143. name: "Back",
  22144. image: {
  22145. source: "./media/characters/yumi-akiyama/back.svg",
  22146. extra: 1287 / 1245,
  22147. bottom: 0.002
  22148. }
  22149. },
  22150. },
  22151. [
  22152. {
  22153. name: "Galactic",
  22154. height: math.unit(50, "galaxies"),
  22155. default: true
  22156. },
  22157. {
  22158. name: "Universal",
  22159. height: math.unit(100, "universes")
  22160. },
  22161. ]
  22162. ))
  22163. characterMakers.push(() => makeCharacter(
  22164. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  22165. {
  22166. front: {
  22167. height: math.unit(8, "feet"),
  22168. weight: math.unit(500, "lb"),
  22169. name: "Front",
  22170. image: {
  22171. source: "./media/characters/rifter-yrmori/front.svg",
  22172. extra: 1180 / 1125,
  22173. bottom: 0.02
  22174. }
  22175. },
  22176. back: {
  22177. height: math.unit(8, "feet"),
  22178. weight: math.unit(500, "lb"),
  22179. name: "Back",
  22180. image: {
  22181. source: "./media/characters/rifter-yrmori/back.svg",
  22182. extra: 1190 / 1145,
  22183. bottom: 0.001
  22184. }
  22185. },
  22186. wings: {
  22187. height: math.unit(7.75, "feet"),
  22188. weight: math.unit(500, "lb"),
  22189. name: "Wings",
  22190. image: {
  22191. source: "./media/characters/rifter-yrmori/wings.svg",
  22192. extra: 1357 / 1285
  22193. }
  22194. },
  22195. maw: {
  22196. height: math.unit(0.8, "feet"),
  22197. name: "Maw",
  22198. image: {
  22199. source: "./media/characters/rifter-yrmori/maw.svg"
  22200. }
  22201. },
  22202. mawfront: {
  22203. height: math.unit(1.45, "feet"),
  22204. name: "Maw (Front)",
  22205. image: {
  22206. source: "./media/characters/rifter-yrmori/maw-front.svg"
  22207. }
  22208. },
  22209. },
  22210. [
  22211. {
  22212. name: "Normal",
  22213. height: math.unit(8, "feet"),
  22214. default: true
  22215. },
  22216. {
  22217. name: "Macro",
  22218. height: math.unit(42, "meters")
  22219. },
  22220. ]
  22221. ))
  22222. characterMakers.push(() => makeCharacter(
  22223. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  22224. {
  22225. were: {
  22226. height: math.unit(25 + 6 / 12, "feet"),
  22227. weight: math.unit(10000, "lb"),
  22228. name: "Were",
  22229. image: {
  22230. source: "./media/characters/tahajin/were.svg",
  22231. extra: 801 / 770,
  22232. bottom: 0.042
  22233. }
  22234. },
  22235. aquatic: {
  22236. height: math.unit(6 + 4 / 12, "feet"),
  22237. weight: math.unit(160, "lb"),
  22238. name: "Aquatic",
  22239. image: {
  22240. source: "./media/characters/tahajin/aquatic.svg",
  22241. extra: 572 / 542,
  22242. bottom: 0.04
  22243. }
  22244. },
  22245. chow: {
  22246. height: math.unit(8 + 11 / 12, "feet"),
  22247. weight: math.unit(450, "lb"),
  22248. name: "Chow",
  22249. image: {
  22250. source: "./media/characters/tahajin/chow.svg",
  22251. extra: 660 / 640,
  22252. bottom: 0.015
  22253. }
  22254. },
  22255. demiNaga: {
  22256. height: math.unit(6 + 8 / 12, "feet"),
  22257. weight: math.unit(300, "lb"),
  22258. name: "Demi Naga",
  22259. image: {
  22260. source: "./media/characters/tahajin/demi-naga.svg",
  22261. extra: 643 / 615,
  22262. bottom: 0.1
  22263. }
  22264. },
  22265. data: {
  22266. height: math.unit(5, "inches"),
  22267. weight: math.unit(0.1, "lb"),
  22268. name: "Data",
  22269. image: {
  22270. source: "./media/characters/tahajin/data.svg"
  22271. }
  22272. },
  22273. fluu: {
  22274. height: math.unit(5 + 7 / 12, "feet"),
  22275. weight: math.unit(140, "lb"),
  22276. name: "Fluu",
  22277. image: {
  22278. source: "./media/characters/tahajin/fluu.svg",
  22279. extra: 628 / 592,
  22280. bottom: 0.02
  22281. }
  22282. },
  22283. starWarrior: {
  22284. height: math.unit(4 + 5 / 12, "feet"),
  22285. weight: math.unit(50, "lb"),
  22286. name: "Star Warrior",
  22287. image: {
  22288. source: "./media/characters/tahajin/star-warrior.svg"
  22289. }
  22290. },
  22291. },
  22292. [
  22293. {
  22294. name: "Normal",
  22295. height: math.unit(25 + 6 / 12, "feet"),
  22296. default: true
  22297. },
  22298. ]
  22299. ))
  22300. characterMakers.push(() => makeCharacter(
  22301. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  22302. {
  22303. front: {
  22304. height: math.unit(8, "feet"),
  22305. weight: math.unit(350, "lb"),
  22306. name: "Front",
  22307. image: {
  22308. source: "./media/characters/gabira/front.svg",
  22309. extra: 608 / 580,
  22310. bottom: 0.03
  22311. }
  22312. },
  22313. back: {
  22314. height: math.unit(8, "feet"),
  22315. weight: math.unit(350, "lb"),
  22316. name: "Back",
  22317. image: {
  22318. source: "./media/characters/gabira/back.svg",
  22319. extra: 608 / 580,
  22320. bottom: 0.03
  22321. }
  22322. },
  22323. },
  22324. [
  22325. {
  22326. name: "Normal",
  22327. height: math.unit(8, "feet"),
  22328. default: true
  22329. },
  22330. ]
  22331. ))
  22332. characterMakers.push(() => makeCharacter(
  22333. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  22334. {
  22335. front: {
  22336. height: math.unit(5 + 3 / 12, "feet"),
  22337. weight: math.unit(137, "lb"),
  22338. name: "Front",
  22339. image: {
  22340. source: "./media/characters/sasha-katraine/front.svg",
  22341. extra: 1745/1694,
  22342. bottom: 37/1782
  22343. }
  22344. },
  22345. back: {
  22346. height: math.unit(5 + 3 / 12, "feet"),
  22347. weight: math.unit(137, "lb"),
  22348. name: "Back",
  22349. image: {
  22350. source: "./media/characters/sasha-katraine/back.svg",
  22351. extra: 1776/1699,
  22352. bottom: 26/1802
  22353. }
  22354. },
  22355. },
  22356. [
  22357. {
  22358. name: "Micro",
  22359. height: math.unit(5, "inches")
  22360. },
  22361. {
  22362. name: "Normal",
  22363. height: math.unit(5 + 3 / 12, "feet"),
  22364. default: true
  22365. },
  22366. ]
  22367. ))
  22368. characterMakers.push(() => makeCharacter(
  22369. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  22370. {
  22371. side: {
  22372. height: math.unit(4, "inches"),
  22373. weight: math.unit(200, "grams"),
  22374. name: "Side",
  22375. image: {
  22376. source: "./media/characters/der/side.svg",
  22377. extra: 719 / 400,
  22378. bottom: 30.6 / 749.9187
  22379. }
  22380. },
  22381. },
  22382. [
  22383. {
  22384. name: "Micro",
  22385. height: math.unit(4, "inches"),
  22386. default: true
  22387. },
  22388. ]
  22389. ))
  22390. characterMakers.push(() => makeCharacter(
  22391. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  22392. {
  22393. side: {
  22394. height: math.unit(30, "meters"),
  22395. weight: math.unit(700, "tonnes"),
  22396. name: "Side",
  22397. image: {
  22398. source: "./media/characters/fixerdragon/side.svg",
  22399. extra: (1293.0514 - 116.03) / 1106.86,
  22400. bottom: 116.03 / 1293.0514
  22401. }
  22402. },
  22403. },
  22404. [
  22405. {
  22406. name: "Planck",
  22407. height: math.unit(1.6e-35, "meters")
  22408. },
  22409. {
  22410. name: "Micro",
  22411. height: math.unit(0.4, "meters")
  22412. },
  22413. {
  22414. name: "Normal",
  22415. height: math.unit(30, "meters"),
  22416. default: true
  22417. },
  22418. {
  22419. name: "Megamacro",
  22420. height: math.unit(1.2, "megameters")
  22421. },
  22422. {
  22423. name: "Teramacro",
  22424. height: math.unit(130, "terameters")
  22425. },
  22426. {
  22427. name: "Yottamacro",
  22428. height: math.unit(6200, "yottameters")
  22429. },
  22430. ]
  22431. ));
  22432. characterMakers.push(() => makeCharacter(
  22433. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  22434. {
  22435. front: {
  22436. height: math.unit(8, "feet"),
  22437. weight: math.unit(250, "lb"),
  22438. name: "Front",
  22439. image: {
  22440. source: "./media/characters/kite/front.svg",
  22441. extra: 2796 / 2659,
  22442. bottom: 0.002
  22443. }
  22444. },
  22445. },
  22446. [
  22447. {
  22448. name: "Normal",
  22449. height: math.unit(8, "feet"),
  22450. default: true
  22451. },
  22452. {
  22453. name: "Macro",
  22454. height: math.unit(360, "feet")
  22455. },
  22456. {
  22457. name: "Megamacro",
  22458. height: math.unit(1500, "feet")
  22459. },
  22460. ]
  22461. ))
  22462. characterMakers.push(() => makeCharacter(
  22463. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  22464. {
  22465. front: {
  22466. height: math.unit(5 + 11/12, "feet"),
  22467. weight: math.unit(170, "lb"),
  22468. name: "Front",
  22469. image: {
  22470. source: "./media/characters/poojawa-vynar/front.svg",
  22471. extra: 1735/1585,
  22472. bottom: 96/1831
  22473. }
  22474. },
  22475. back: {
  22476. height: math.unit(5 + 11/12, "feet"),
  22477. weight: math.unit(170, "lb"),
  22478. name: "Back",
  22479. image: {
  22480. source: "./media/characters/poojawa-vynar/back.svg",
  22481. extra: 1749/1607,
  22482. bottom: 28/1777
  22483. }
  22484. },
  22485. male: {
  22486. height: math.unit(5 + 11/12, "feet"),
  22487. weight: math.unit(170, "lb"),
  22488. name: "Male",
  22489. image: {
  22490. source: "./media/characters/poojawa-vynar/male.svg",
  22491. extra: 1855/1713,
  22492. bottom: 63/1918
  22493. }
  22494. },
  22495. taur: {
  22496. height: math.unit(5 + 11/12, "feet"),
  22497. weight: math.unit(170, "lb"),
  22498. name: "Taur",
  22499. image: {
  22500. source: "./media/characters/poojawa-vynar/taur.svg",
  22501. extra: 1151/1059,
  22502. bottom: 356/1507
  22503. }
  22504. },
  22505. frontDressed: {
  22506. height: math.unit(5 + 11/12, "feet"),
  22507. weight: math.unit(170, "lb"),
  22508. name: "Front (Dressed)",
  22509. image: {
  22510. source: "./media/characters/poojawa-vynar/front-dressed.svg",
  22511. extra: 1735/1585,
  22512. bottom: 96/1831
  22513. }
  22514. },
  22515. backDressed: {
  22516. height: math.unit(5 + 11/12, "feet"),
  22517. weight: math.unit(170, "lb"),
  22518. name: "Back (Dressed)",
  22519. image: {
  22520. source: "./media/characters/poojawa-vynar/back-dressed.svg",
  22521. extra: 1749/1607,
  22522. bottom: 28/1777
  22523. }
  22524. },
  22525. maleDressed: {
  22526. height: math.unit(5 + 11/12, "feet"),
  22527. weight: math.unit(170, "lb"),
  22528. name: "Male (Dressed)",
  22529. image: {
  22530. source: "./media/characters/poojawa-vynar/male-dressed.svg",
  22531. extra: 1855/1713,
  22532. bottom: 63/1918
  22533. }
  22534. },
  22535. taurDressed: {
  22536. height: math.unit(5 + 11/12, "feet"),
  22537. weight: math.unit(170, "lb"),
  22538. name: "Taur (Dressed)",
  22539. image: {
  22540. source: "./media/characters/poojawa-vynar/taur-dressed.svg",
  22541. extra: 1151/1059,
  22542. bottom: 356/1507
  22543. }
  22544. },
  22545. maw: {
  22546. height: math.unit(1.46, "feet"),
  22547. name: "Maw",
  22548. image: {
  22549. source: "./media/characters/poojawa-vynar/maw.svg"
  22550. }
  22551. },
  22552. head: {
  22553. height: math.unit(2.34, "feet"),
  22554. name: "Head",
  22555. image: {
  22556. source: "./media/characters/poojawa-vynar/head.svg"
  22557. }
  22558. },
  22559. paw: {
  22560. height: math.unit(1.61, "feet"),
  22561. name: "Paw",
  22562. image: {
  22563. source: "./media/characters/poojawa-vynar/paw.svg"
  22564. }
  22565. },
  22566. pawToering: {
  22567. height: math.unit(1.72, "feet"),
  22568. name: "Paw (Toering)",
  22569. image: {
  22570. source: "./media/characters/poojawa-vynar/paw-toering.svg"
  22571. }
  22572. },
  22573. toering: {
  22574. height: math.unit(2.9, "inches"),
  22575. name: "Toering",
  22576. image: {
  22577. source: "./media/characters/poojawa-vynar/toering.svg"
  22578. }
  22579. },
  22580. shaft: {
  22581. height: math.unit(0.625, "feet"),
  22582. name: "Shaft",
  22583. image: {
  22584. source: "./media/characters/poojawa-vynar/shaft.svg"
  22585. }
  22586. },
  22587. spade: {
  22588. height: math.unit(0.42, "feet"),
  22589. name: "Spade",
  22590. image: {
  22591. source: "./media/characters/poojawa-vynar/spade.svg"
  22592. }
  22593. },
  22594. },
  22595. [
  22596. {
  22597. name: "Shortstack",
  22598. height: math.unit(4, "feet")
  22599. },
  22600. {
  22601. name: "Normal",
  22602. height: math.unit(5 + 11 / 12, "feet"),
  22603. default: true
  22604. },
  22605. {
  22606. name: "Tauric",
  22607. height: math.unit(4, "meters")
  22608. },
  22609. ]
  22610. ))
  22611. characterMakers.push(() => makeCharacter(
  22612. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  22613. {
  22614. front: {
  22615. height: math.unit(293, "meters"),
  22616. weight: math.unit(70400, "tons"),
  22617. name: "Front",
  22618. image: {
  22619. source: "./media/characters/violette/front.svg",
  22620. extra: 1227 / 1180,
  22621. bottom: 0.005
  22622. }
  22623. },
  22624. back: {
  22625. height: math.unit(293, "meters"),
  22626. weight: math.unit(70400, "tons"),
  22627. name: "Back",
  22628. image: {
  22629. source: "./media/characters/violette/back.svg",
  22630. extra: 1227 / 1180,
  22631. bottom: 0.005
  22632. }
  22633. },
  22634. },
  22635. [
  22636. {
  22637. name: "Macro",
  22638. height: math.unit(293, "meters"),
  22639. default: true
  22640. },
  22641. ]
  22642. ))
  22643. characterMakers.push(() => makeCharacter(
  22644. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  22645. {
  22646. front: {
  22647. height: math.unit(1050, "feet"),
  22648. weight: math.unit(200000, "tons"),
  22649. name: "Front",
  22650. image: {
  22651. source: "./media/characters/alessandra/front.svg",
  22652. extra: 960 / 912,
  22653. bottom: 0.06
  22654. }
  22655. },
  22656. },
  22657. [
  22658. {
  22659. name: "Macro",
  22660. height: math.unit(1050, "feet")
  22661. },
  22662. {
  22663. name: "Macro+",
  22664. height: math.unit(900, "meters"),
  22665. default: true
  22666. },
  22667. ]
  22668. ))
  22669. characterMakers.push(() => makeCharacter(
  22670. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  22671. {
  22672. front: {
  22673. height: math.unit(5, "feet"),
  22674. weight: math.unit(187, "lb"),
  22675. name: "Front",
  22676. image: {
  22677. source: "./media/characters/person/front.svg",
  22678. extra: 3087 / 2945,
  22679. bottom: 91 / 3181
  22680. }
  22681. },
  22682. },
  22683. [
  22684. {
  22685. name: "Micro",
  22686. height: math.unit(3, "inches")
  22687. },
  22688. {
  22689. name: "Normal",
  22690. height: math.unit(5, "feet"),
  22691. default: true
  22692. },
  22693. {
  22694. name: "Macro",
  22695. height: math.unit(90, "feet")
  22696. },
  22697. {
  22698. name: "Max Size",
  22699. height: math.unit(280, "feet")
  22700. },
  22701. ]
  22702. ))
  22703. characterMakers.push(() => makeCharacter(
  22704. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  22705. {
  22706. front: {
  22707. height: math.unit(4.5, "meters"),
  22708. weight: math.unit(3200, "lb"),
  22709. name: "Front",
  22710. image: {
  22711. source: "./media/characters/ty/front.svg",
  22712. extra: 1038 / 960,
  22713. bottom: 31.156 / 1068
  22714. }
  22715. },
  22716. back: {
  22717. height: math.unit(4.5, "meters"),
  22718. weight: math.unit(3200, "lb"),
  22719. name: "Back",
  22720. image: {
  22721. source: "./media/characters/ty/back.svg",
  22722. extra: 1044 / 966,
  22723. bottom: 7.48 / 1049
  22724. }
  22725. },
  22726. },
  22727. [
  22728. {
  22729. name: "Normal",
  22730. height: math.unit(4.5, "meters"),
  22731. default: true
  22732. },
  22733. ]
  22734. ))
  22735. characterMakers.push(() => makeCharacter(
  22736. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  22737. {
  22738. front: {
  22739. height: math.unit(5 + 4 / 12, "feet"),
  22740. weight: math.unit(115, "lb"),
  22741. name: "Front",
  22742. image: {
  22743. source: "./media/characters/rocky/front.svg",
  22744. extra: 1012 / 975,
  22745. bottom: 54 / 1066
  22746. }
  22747. },
  22748. },
  22749. [
  22750. {
  22751. name: "Normal",
  22752. height: math.unit(5 + 4 / 12, "feet"),
  22753. default: true
  22754. },
  22755. ]
  22756. ))
  22757. characterMakers.push(() => makeCharacter(
  22758. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  22759. {
  22760. upright: {
  22761. height: math.unit(6, "meters"),
  22762. weight: math.unit(4000, "kg"),
  22763. name: "Upright",
  22764. image: {
  22765. source: "./media/characters/ruin/upright.svg",
  22766. extra: 668 / 661,
  22767. bottom: 42 / 799.8396
  22768. }
  22769. },
  22770. },
  22771. [
  22772. {
  22773. name: "Normal",
  22774. height: math.unit(6, "meters"),
  22775. default: true
  22776. },
  22777. ]
  22778. ))
  22779. characterMakers.push(() => makeCharacter(
  22780. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  22781. {
  22782. front: {
  22783. height: math.unit(5, "feet"),
  22784. weight: math.unit(106, "lb"),
  22785. name: "Front",
  22786. image: {
  22787. source: "./media/characters/robin/front.svg",
  22788. extra: 862 / 799,
  22789. bottom: 42.4 / 914.8856
  22790. }
  22791. },
  22792. },
  22793. [
  22794. {
  22795. name: "Normal",
  22796. height: math.unit(5, "feet"),
  22797. default: true
  22798. },
  22799. ]
  22800. ))
  22801. characterMakers.push(() => makeCharacter(
  22802. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  22803. {
  22804. side: {
  22805. height: math.unit(3, "feet"),
  22806. weight: math.unit(225, "lb"),
  22807. name: "Side",
  22808. image: {
  22809. source: "./media/characters/saian/side.svg",
  22810. extra: 566 / 356,
  22811. bottom: 79.7 / 643
  22812. }
  22813. },
  22814. maw: {
  22815. height: math.unit(2.85, "feet"),
  22816. name: "Maw",
  22817. image: {
  22818. source: "./media/characters/saian/maw.svg"
  22819. }
  22820. },
  22821. },
  22822. [
  22823. {
  22824. name: "Normal",
  22825. height: math.unit(3, "feet"),
  22826. default: true
  22827. },
  22828. ]
  22829. ))
  22830. characterMakers.push(() => makeCharacter(
  22831. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  22832. {
  22833. side: {
  22834. height: math.unit(8, "feet"),
  22835. weight: math.unit(300, "lb"),
  22836. name: "Side",
  22837. image: {
  22838. source: "./media/characters/equus-silvermane/side.svg",
  22839. extra: 2176 / 2050,
  22840. bottom: 65.7 / 2245
  22841. }
  22842. },
  22843. front: {
  22844. height: math.unit(8, "feet"),
  22845. weight: math.unit(300, "lb"),
  22846. name: "Front",
  22847. image: {
  22848. source: "./media/characters/equus-silvermane/front.svg",
  22849. extra: 4633 / 4400,
  22850. bottom: 71.3 / 4706.915
  22851. }
  22852. },
  22853. sideStepping: {
  22854. height: math.unit(8, "feet"),
  22855. weight: math.unit(300, "lb"),
  22856. name: "Side (Stepping)",
  22857. image: {
  22858. source: "./media/characters/equus-silvermane/side-stepping.svg",
  22859. extra: 1968 / 1860,
  22860. bottom: 16.4 / 1989
  22861. }
  22862. },
  22863. },
  22864. [
  22865. {
  22866. name: "Normal",
  22867. height: math.unit(8, "feet")
  22868. },
  22869. {
  22870. name: "Minimacro",
  22871. height: math.unit(75, "feet"),
  22872. default: true
  22873. },
  22874. {
  22875. name: "Macro",
  22876. height: math.unit(150, "feet")
  22877. },
  22878. {
  22879. name: "Macro+",
  22880. height: math.unit(1000, "feet")
  22881. },
  22882. {
  22883. name: "Megamacro",
  22884. height: math.unit(1, "mile")
  22885. },
  22886. ]
  22887. ))
  22888. characterMakers.push(() => makeCharacter(
  22889. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  22890. {
  22891. side: {
  22892. height: math.unit(20, "feet"),
  22893. weight: math.unit(30000, "kg"),
  22894. name: "Side",
  22895. image: {
  22896. source: "./media/characters/windar/side.svg",
  22897. extra: 1491 / 1248,
  22898. bottom: 82.56 / 1568
  22899. }
  22900. },
  22901. },
  22902. [
  22903. {
  22904. name: "Normal",
  22905. height: math.unit(20, "feet"),
  22906. default: true
  22907. },
  22908. ]
  22909. ))
  22910. characterMakers.push(() => makeCharacter(
  22911. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  22912. {
  22913. side: {
  22914. height: math.unit(15.66, "feet"),
  22915. weight: math.unit(150, "lb"),
  22916. name: "Side",
  22917. image: {
  22918. source: "./media/characters/melody/side.svg",
  22919. extra: 1097 / 944,
  22920. bottom: 11.8 / 1109
  22921. }
  22922. },
  22923. sideOutfit: {
  22924. height: math.unit(15.66, "feet"),
  22925. weight: math.unit(150, "lb"),
  22926. name: "Side (Outfit)",
  22927. image: {
  22928. source: "./media/characters/melody/side-outfit.svg",
  22929. extra: 1097 / 944,
  22930. bottom: 11.8 / 1109
  22931. }
  22932. },
  22933. },
  22934. [
  22935. {
  22936. name: "Normal",
  22937. height: math.unit(15.66, "feet"),
  22938. default: true
  22939. },
  22940. ]
  22941. ))
  22942. characterMakers.push(() => makeCharacter(
  22943. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  22944. {
  22945. front: {
  22946. height: math.unit(8, "feet"),
  22947. weight: math.unit(325, "lb"),
  22948. name: "Front",
  22949. image: {
  22950. source: "./media/characters/windera/front.svg",
  22951. extra: 3180 / 2845,
  22952. bottom: 178 / 3365
  22953. }
  22954. },
  22955. },
  22956. [
  22957. {
  22958. name: "Normal",
  22959. height: math.unit(8, "feet"),
  22960. default: true
  22961. },
  22962. ]
  22963. ))
  22964. characterMakers.push(() => makeCharacter(
  22965. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  22966. {
  22967. front: {
  22968. height: math.unit(28.75, "feet"),
  22969. weight: math.unit(2000, "kg"),
  22970. name: "Front",
  22971. image: {
  22972. source: "./media/characters/sonear/front.svg",
  22973. extra: 1041.1 / 964.9,
  22974. bottom: 53.7 / 1096.6
  22975. }
  22976. },
  22977. },
  22978. [
  22979. {
  22980. name: "Normal",
  22981. height: math.unit(28.75, "feet"),
  22982. default: true
  22983. },
  22984. ]
  22985. ))
  22986. characterMakers.push(() => makeCharacter(
  22987. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  22988. {
  22989. side: {
  22990. height: math.unit(25.5, "feet"),
  22991. weight: math.unit(23000, "kg"),
  22992. name: "Side",
  22993. image: {
  22994. source: "./media/characters/kanara/side.svg"
  22995. }
  22996. },
  22997. },
  22998. [
  22999. {
  23000. name: "Normal",
  23001. height: math.unit(25.5, "feet"),
  23002. default: true
  23003. },
  23004. ]
  23005. ))
  23006. characterMakers.push(() => makeCharacter(
  23007. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  23008. {
  23009. side: {
  23010. height: math.unit(10, "feet"),
  23011. weight: math.unit(1000, "kg"),
  23012. name: "Side",
  23013. image: {
  23014. source: "./media/characters/ereus/side.svg",
  23015. extra: 1157 / 959,
  23016. bottom: 153 / 1312.5
  23017. }
  23018. },
  23019. },
  23020. [
  23021. {
  23022. name: "Normal",
  23023. height: math.unit(10, "feet"),
  23024. default: true
  23025. },
  23026. ]
  23027. ))
  23028. characterMakers.push(() => makeCharacter(
  23029. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  23030. {
  23031. side: {
  23032. height: math.unit(4.5, "feet"),
  23033. weight: math.unit(500, "lb"),
  23034. name: "Side",
  23035. image: {
  23036. source: "./media/characters/e-ter/side.svg",
  23037. extra: 1550 / 1248,
  23038. bottom: 146 / 1694
  23039. }
  23040. },
  23041. },
  23042. [
  23043. {
  23044. name: "Normal",
  23045. height: math.unit(4.5, "feet"),
  23046. default: true
  23047. },
  23048. ]
  23049. ))
  23050. characterMakers.push(() => makeCharacter(
  23051. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  23052. {
  23053. side: {
  23054. height: math.unit(9.7, "feet"),
  23055. weight: math.unit(4000, "kg"),
  23056. name: "Side",
  23057. image: {
  23058. source: "./media/characters/yamie/side.svg"
  23059. }
  23060. },
  23061. },
  23062. [
  23063. {
  23064. name: "Normal",
  23065. height: math.unit(9.7, "feet"),
  23066. default: true
  23067. },
  23068. ]
  23069. ))
  23070. characterMakers.push(() => makeCharacter(
  23071. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  23072. {
  23073. front: {
  23074. height: math.unit(50, "feet"),
  23075. weight: math.unit(50000, "kg"),
  23076. name: "Front",
  23077. image: {
  23078. source: "./media/characters/anders/front.svg",
  23079. extra: 570 / 539,
  23080. bottom: 14.7 / 586.7
  23081. }
  23082. },
  23083. },
  23084. [
  23085. {
  23086. name: "Large",
  23087. height: math.unit(50, "feet")
  23088. },
  23089. {
  23090. name: "Macro",
  23091. height: math.unit(2000, "feet"),
  23092. default: true
  23093. },
  23094. {
  23095. name: "Megamacro",
  23096. height: math.unit(12, "miles")
  23097. },
  23098. ]
  23099. ))
  23100. characterMakers.push(() => makeCharacter(
  23101. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  23102. {
  23103. front: {
  23104. height: math.unit(7 + 2 / 12, "feet"),
  23105. weight: math.unit(300, "lb"),
  23106. name: "Front",
  23107. image: {
  23108. source: "./media/characters/reban/front.svg",
  23109. extra: 1287/1212,
  23110. bottom: 148/1435
  23111. }
  23112. },
  23113. head: {
  23114. height: math.unit(1.95, "feet"),
  23115. name: "Head",
  23116. image: {
  23117. source: "./media/characters/reban/head.svg"
  23118. }
  23119. },
  23120. maw: {
  23121. height: math.unit(0.95, "feet"),
  23122. name: "Maw",
  23123. image: {
  23124. source: "./media/characters/reban/maw.svg"
  23125. }
  23126. },
  23127. foot: {
  23128. height: math.unit(1.65, "feet"),
  23129. name: "Foot",
  23130. image: {
  23131. source: "./media/characters/reban/foot.svg"
  23132. }
  23133. },
  23134. dick: {
  23135. height: math.unit(7 / 5, "feet"),
  23136. name: "Dick",
  23137. image: {
  23138. source: "./media/characters/reban/dick.svg"
  23139. }
  23140. },
  23141. },
  23142. [
  23143. {
  23144. name: "Natural Height",
  23145. height: math.unit(7 + 2 / 12, "feet")
  23146. },
  23147. {
  23148. name: "Macro",
  23149. height: math.unit(500, "feet"),
  23150. default: true
  23151. },
  23152. {
  23153. name: "Canon Height",
  23154. height: math.unit(50, "AU")
  23155. },
  23156. ]
  23157. ))
  23158. characterMakers.push(() => makeCharacter(
  23159. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  23160. {
  23161. front: {
  23162. height: math.unit(6, "feet"),
  23163. weight: math.unit(150, "lb"),
  23164. name: "Front",
  23165. image: {
  23166. source: "./media/characters/terrance-keayes/front.svg",
  23167. extra: 1.005,
  23168. bottom: 151 / 1615
  23169. }
  23170. },
  23171. side: {
  23172. height: math.unit(6, "feet"),
  23173. weight: math.unit(150, "lb"),
  23174. name: "Side",
  23175. image: {
  23176. source: "./media/characters/terrance-keayes/side.svg",
  23177. extra: 1.005,
  23178. bottom: 129.4 / 1544
  23179. }
  23180. },
  23181. back: {
  23182. height: math.unit(6, "feet"),
  23183. weight: math.unit(150, "lb"),
  23184. name: "Back",
  23185. image: {
  23186. source: "./media/characters/terrance-keayes/back.svg",
  23187. extra: 1.005,
  23188. bottom: 58.4 / 1557.3
  23189. }
  23190. },
  23191. dick: {
  23192. height: math.unit(6 * 0.208, "feet"),
  23193. name: "Dick",
  23194. image: {
  23195. source: "./media/characters/terrance-keayes/dick.svg"
  23196. }
  23197. },
  23198. },
  23199. [
  23200. {
  23201. name: "Canon Height",
  23202. height: math.unit(35, "miles"),
  23203. default: true
  23204. },
  23205. ]
  23206. ))
  23207. characterMakers.push(() => makeCharacter(
  23208. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  23209. {
  23210. front: {
  23211. height: math.unit(6, "feet"),
  23212. weight: math.unit(150, "lb"),
  23213. name: "Front",
  23214. image: {
  23215. source: "./media/characters/ofelia/front.svg",
  23216. extra: 1130/1117,
  23217. bottom: 91/1221
  23218. }
  23219. },
  23220. back: {
  23221. height: math.unit(6, "feet"),
  23222. weight: math.unit(150, "lb"),
  23223. name: "Back",
  23224. image: {
  23225. source: "./media/characters/ofelia/back.svg",
  23226. extra: 1172/1159,
  23227. bottom: 28/1200
  23228. }
  23229. },
  23230. maw: {
  23231. height: math.unit(1, "feet"),
  23232. name: "Maw",
  23233. image: {
  23234. source: "./media/characters/ofelia/maw.svg"
  23235. }
  23236. },
  23237. foot: {
  23238. height: math.unit(1.949, "feet"),
  23239. name: "Foot",
  23240. image: {
  23241. source: "./media/characters/ofelia/foot.svg"
  23242. }
  23243. },
  23244. },
  23245. [
  23246. {
  23247. name: "Canon Height",
  23248. height: math.unit(2000, "miles"),
  23249. default: true
  23250. },
  23251. ]
  23252. ))
  23253. characterMakers.push(() => makeCharacter(
  23254. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  23255. {
  23256. front: {
  23257. height: math.unit(6, "feet"),
  23258. weight: math.unit(150, "lb"),
  23259. name: "Front",
  23260. image: {
  23261. source: "./media/characters/samuel/front.svg",
  23262. extra: 265 / 258,
  23263. bottom: 2 / 266.1566
  23264. }
  23265. },
  23266. },
  23267. [
  23268. {
  23269. name: "Macro",
  23270. height: math.unit(100, "feet"),
  23271. default: true
  23272. },
  23273. {
  23274. name: "Full Size",
  23275. height: math.unit(1000, "miles")
  23276. },
  23277. ]
  23278. ))
  23279. characterMakers.push(() => makeCharacter(
  23280. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  23281. {
  23282. front: {
  23283. height: math.unit(6, "feet"),
  23284. weight: math.unit(300, "lb"),
  23285. name: "Front",
  23286. image: {
  23287. source: "./media/characters/beishir-kiel/front.svg",
  23288. extra: 569 / 547,
  23289. bottom: 41.9 / 609
  23290. }
  23291. },
  23292. maw: {
  23293. height: math.unit(6 * 0.202, "feet"),
  23294. name: "Maw",
  23295. image: {
  23296. source: "./media/characters/beishir-kiel/maw.svg"
  23297. }
  23298. },
  23299. },
  23300. [
  23301. {
  23302. name: "Macro",
  23303. height: math.unit(300, "feet"),
  23304. default: true
  23305. },
  23306. ]
  23307. ))
  23308. characterMakers.push(() => makeCharacter(
  23309. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  23310. {
  23311. front: {
  23312. height: math.unit(5 + 7/12, "feet"),
  23313. weight: math.unit(120, "lb"),
  23314. name: "Front",
  23315. image: {
  23316. source: "./media/characters/logan-grey/front.svg",
  23317. extra: 1836/1738,
  23318. bottom: 108/1944
  23319. }
  23320. },
  23321. back: {
  23322. height: math.unit(5 + 7/12, "feet"),
  23323. weight: math.unit(120, "lb"),
  23324. name: "Back",
  23325. image: {
  23326. source: "./media/characters/logan-grey/back.svg",
  23327. extra: 1880/1794,
  23328. bottom: 24/1904
  23329. }
  23330. },
  23331. frontSfw: {
  23332. height: math.unit(5 + 7/12, "feet"),
  23333. weight: math.unit(120, "lb"),
  23334. name: "Front (SFW)",
  23335. image: {
  23336. source: "./media/characters/logan-grey/front-sfw.svg",
  23337. extra: 1836/1738,
  23338. bottom: 108/1944
  23339. }
  23340. },
  23341. backSfw: {
  23342. height: math.unit(5 + 7/12, "feet"),
  23343. weight: math.unit(120, "lb"),
  23344. name: "Back (SFW)",
  23345. image: {
  23346. source: "./media/characters/logan-grey/back-sfw.svg",
  23347. extra: 1880/1794,
  23348. bottom: 24/1904
  23349. }
  23350. },
  23351. hands: {
  23352. height: math.unit(0.84, "feet"),
  23353. name: "Hands",
  23354. image: {
  23355. source: "./media/characters/logan-grey/hands.svg"
  23356. }
  23357. },
  23358. paws: {
  23359. height: math.unit(0.72, "feet"),
  23360. name: "Paws",
  23361. image: {
  23362. source: "./media/characters/logan-grey/paws.svg"
  23363. }
  23364. },
  23365. cock: {
  23366. height: math.unit(1.45, "feet"),
  23367. name: "Cock",
  23368. image: {
  23369. source: "./media/characters/logan-grey/cock.svg"
  23370. }
  23371. },
  23372. cockAlt: {
  23373. height: math.unit(1.437, "feet"),
  23374. name: "Cock (alt)",
  23375. image: {
  23376. source: "./media/characters/logan-grey/cock-alt.svg"
  23377. }
  23378. },
  23379. },
  23380. [
  23381. {
  23382. name: "Normal",
  23383. height: math.unit(5 + 8 / 12, "feet")
  23384. },
  23385. {
  23386. name: "The 500 Foot Femboy",
  23387. height: math.unit(500, "feet"),
  23388. default: true
  23389. },
  23390. {
  23391. name: "Megmacro",
  23392. height: math.unit(20, "miles")
  23393. },
  23394. ]
  23395. ))
  23396. characterMakers.push(() => makeCharacter(
  23397. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  23398. {
  23399. front: {
  23400. height: math.unit(8 + 2 / 12, "feet"),
  23401. weight: math.unit(275, "lb"),
  23402. name: "Front",
  23403. image: {
  23404. source: "./media/characters/draganta/front.svg",
  23405. extra: 1177 / 1135,
  23406. bottom: 33.46 / 1212.1
  23407. }
  23408. },
  23409. },
  23410. [
  23411. {
  23412. name: "Normal",
  23413. height: math.unit(8 + 6 / 12, "feet"),
  23414. default: true
  23415. },
  23416. {
  23417. name: "Macro",
  23418. height: math.unit(150, "feet")
  23419. },
  23420. {
  23421. name: "Megamacro",
  23422. height: math.unit(1000, "miles")
  23423. },
  23424. ]
  23425. ))
  23426. characterMakers.push(() => makeCharacter(
  23427. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  23428. {
  23429. front: {
  23430. height: math.unit(1.72, "m"),
  23431. weight: math.unit(80, "lb"),
  23432. name: "Front",
  23433. image: {
  23434. source: "./media/characters/voski/front.svg",
  23435. extra: 2076.22 / 2022.4,
  23436. bottom: 102.7 / 2177.3866
  23437. }
  23438. },
  23439. frontFlaccid: {
  23440. height: math.unit(1.72, "m"),
  23441. weight: math.unit(80, "lb"),
  23442. name: "Front (Flaccid)",
  23443. image: {
  23444. source: "./media/characters/voski/front-flaccid.svg",
  23445. extra: 2076.22 / 2022.4,
  23446. bottom: 102.7 / 2177.3866
  23447. }
  23448. },
  23449. frontErect: {
  23450. height: math.unit(1.72, "m"),
  23451. weight: math.unit(80, "lb"),
  23452. name: "Front (Erect)",
  23453. image: {
  23454. source: "./media/characters/voski/front-erect.svg",
  23455. extra: 2076.22 / 2022.4,
  23456. bottom: 102.7 / 2177.3866
  23457. }
  23458. },
  23459. back: {
  23460. height: math.unit(1.72, "m"),
  23461. weight: math.unit(80, "lb"),
  23462. name: "Back",
  23463. image: {
  23464. source: "./media/characters/voski/back.svg",
  23465. extra: 2104 / 2051,
  23466. bottom: 10.45 / 2113.63
  23467. }
  23468. },
  23469. },
  23470. [
  23471. {
  23472. name: "Normal",
  23473. height: math.unit(1.72, "m")
  23474. },
  23475. {
  23476. name: "Macro",
  23477. height: math.unit(55, "m"),
  23478. default: true
  23479. },
  23480. {
  23481. name: "Macro+",
  23482. height: math.unit(300, "m")
  23483. },
  23484. {
  23485. name: "Macro++",
  23486. height: math.unit(700, "m")
  23487. },
  23488. {
  23489. name: "Macro+++",
  23490. height: math.unit(4500, "m")
  23491. },
  23492. {
  23493. name: "Macro++++",
  23494. height: math.unit(45, "km")
  23495. },
  23496. {
  23497. name: "Macro+++++",
  23498. height: math.unit(1220, "km")
  23499. },
  23500. ]
  23501. ))
  23502. characterMakers.push(() => makeCharacter(
  23503. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  23504. {
  23505. front: {
  23506. height: math.unit(2.3, "m"),
  23507. weight: math.unit(304, "kg"),
  23508. name: "Front",
  23509. image: {
  23510. source: "./media/characters/icowom-lee/front.svg",
  23511. extra: 985 / 955,
  23512. bottom: 25.4 / 1012
  23513. }
  23514. },
  23515. fronttentacles: {
  23516. height: math.unit(2.3, "m"),
  23517. weight: math.unit(304, "kg"),
  23518. name: "Front-tentacles",
  23519. image: {
  23520. source: "./media/characters/icowom-lee/front-tentacles.svg",
  23521. extra: 985 / 955,
  23522. bottom: 25.4 / 1012
  23523. }
  23524. },
  23525. back: {
  23526. height: math.unit(2.3, "m"),
  23527. weight: math.unit(304, "kg"),
  23528. name: "Back",
  23529. image: {
  23530. source: "./media/characters/icowom-lee/back.svg",
  23531. extra: 975 / 954,
  23532. bottom: 9.5 / 985
  23533. }
  23534. },
  23535. backtentacles: {
  23536. height: math.unit(2.3, "m"),
  23537. weight: math.unit(304, "kg"),
  23538. name: "Back-tentacles",
  23539. image: {
  23540. source: "./media/characters/icowom-lee/back-tentacles.svg",
  23541. extra: 975 / 954,
  23542. bottom: 9.5 / 985
  23543. }
  23544. },
  23545. frontDressed: {
  23546. height: math.unit(2.3, "m"),
  23547. weight: math.unit(304, "kg"),
  23548. name: "Front (Dressed)",
  23549. image: {
  23550. source: "./media/characters/icowom-lee/front-dressed.svg",
  23551. extra: 3076 / 2933,
  23552. bottom: 51.4 / 3125.1889
  23553. }
  23554. },
  23555. rump: {
  23556. height: math.unit(0.776, "meters"),
  23557. name: "Rump",
  23558. image: {
  23559. source: "./media/characters/icowom-lee/rump.svg"
  23560. }
  23561. },
  23562. genitals: {
  23563. height: math.unit(0.78, "meters"),
  23564. name: "Genitals",
  23565. image: {
  23566. source: "./media/characters/icowom-lee/genitals.svg"
  23567. }
  23568. },
  23569. },
  23570. [
  23571. {
  23572. name: "Normal",
  23573. height: math.unit(2.3, "meters"),
  23574. default: true
  23575. },
  23576. {
  23577. name: "Macro",
  23578. height: math.unit(94, "meters"),
  23579. default: true
  23580. },
  23581. ]
  23582. ))
  23583. characterMakers.push(() => makeCharacter(
  23584. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  23585. {
  23586. front: {
  23587. height: math.unit(22, "meters"),
  23588. weight: math.unit(21000, "kg"),
  23589. name: "Front",
  23590. image: {
  23591. source: "./media/characters/shock-diamond/front.svg",
  23592. extra: 2204 / 2053,
  23593. bottom: 65 / 2239.47
  23594. }
  23595. },
  23596. frontNude: {
  23597. height: math.unit(22, "meters"),
  23598. weight: math.unit(21000, "kg"),
  23599. name: "Front (Nude)",
  23600. image: {
  23601. source: "./media/characters/shock-diamond/front-nude.svg",
  23602. extra: 2514 / 2285,
  23603. bottom: 13 / 2527.56
  23604. }
  23605. },
  23606. },
  23607. [
  23608. {
  23609. name: "Normal",
  23610. height: math.unit(3, "meters")
  23611. },
  23612. {
  23613. name: "Macro",
  23614. height: math.unit(22, "meters"),
  23615. default: true
  23616. },
  23617. ]
  23618. ))
  23619. characterMakers.push(() => makeCharacter(
  23620. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  23621. {
  23622. front: {
  23623. height: math.unit(5 + 4 / 12, "feet"),
  23624. weight: math.unit(120, "lb"),
  23625. name: "Front",
  23626. image: {
  23627. source: "./media/characters/rory/front.svg",
  23628. extra: 1318/1241,
  23629. bottom: 42/1360
  23630. }
  23631. },
  23632. back: {
  23633. height: math.unit(5 + 4 / 12, "feet"),
  23634. weight: math.unit(120, "lb"),
  23635. name: "Back",
  23636. image: {
  23637. source: "./media/characters/rory/back.svg",
  23638. extra: 1318/1241,
  23639. bottom: 42/1360
  23640. }
  23641. },
  23642. butt: {
  23643. height: math.unit(1.74, "feet"),
  23644. name: "Butt",
  23645. image: {
  23646. source: "./media/characters/rory/butt.svg"
  23647. }
  23648. },
  23649. dick: {
  23650. height: math.unit(1.02, "feet"),
  23651. name: "Dick",
  23652. image: {
  23653. source: "./media/characters/rory/dick.svg"
  23654. }
  23655. },
  23656. paws: {
  23657. height: math.unit(1, "feet"),
  23658. name: "Paws",
  23659. image: {
  23660. source: "./media/characters/rory/paws.svg"
  23661. }
  23662. },
  23663. frontAlt: {
  23664. height: math.unit(5 + 4 / 12, "feet"),
  23665. weight: math.unit(120, "lb"),
  23666. name: "Front (Alt)",
  23667. image: {
  23668. source: "./media/characters/rory/front-alt.svg",
  23669. extra: 589 / 556,
  23670. bottom: 45.7 / 635.76
  23671. }
  23672. },
  23673. frontAltNude: {
  23674. height: math.unit(5 + 4 / 12, "feet"),
  23675. weight: math.unit(120, "lb"),
  23676. name: "Front (Alt, Nude)",
  23677. image: {
  23678. source: "./media/characters/rory/front-alt-nude.svg",
  23679. extra: 589 / 556,
  23680. bottom: 45.7 / 635.76
  23681. }
  23682. },
  23683. side: {
  23684. height: math.unit(5 + 4 / 12, "feet"),
  23685. weight: math.unit(120, "lb"),
  23686. name: "Side",
  23687. image: {
  23688. source: "./media/characters/rory/side.svg",
  23689. extra: 597 / 564,
  23690. bottom: 55 / 653
  23691. }
  23692. },
  23693. backAlt: {
  23694. height: math.unit(5 + 4 / 12, "feet"),
  23695. weight: math.unit(120, "lb"),
  23696. name: "Back (Alt)",
  23697. image: {
  23698. source: "./media/characters/rory/back-alt.svg",
  23699. extra: 620 / 585,
  23700. bottom: 8.86 / 630.43
  23701. }
  23702. },
  23703. dickAlt: {
  23704. height: math.unit(0.86, "feet"),
  23705. name: "Dick (Alt)",
  23706. image: {
  23707. source: "./media/characters/rory/dick-alt.svg"
  23708. }
  23709. },
  23710. },
  23711. [
  23712. {
  23713. name: "Normal",
  23714. height: math.unit(5 + 4 / 12, "feet"),
  23715. default: true
  23716. },
  23717. {
  23718. name: "Macro",
  23719. height: math.unit(100, "feet")
  23720. },
  23721. {
  23722. name: "Macro+",
  23723. height: math.unit(140, "feet")
  23724. },
  23725. {
  23726. name: "Macro++",
  23727. height: math.unit(300, "feet")
  23728. },
  23729. ]
  23730. ))
  23731. characterMakers.push(() => makeCharacter(
  23732. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  23733. {
  23734. front: {
  23735. height: math.unit(5 + 9 / 12, "feet"),
  23736. weight: math.unit(190, "lb"),
  23737. name: "Front",
  23738. image: {
  23739. source: "./media/characters/sprisk/front.svg",
  23740. extra: 1225 / 1180,
  23741. bottom: 42.7 / 1266.4
  23742. }
  23743. },
  23744. frontNsfw: {
  23745. height: math.unit(5 + 9 / 12, "feet"),
  23746. weight: math.unit(190, "lb"),
  23747. name: "Front (NSFW)",
  23748. image: {
  23749. source: "./media/characters/sprisk/front-nsfw.svg",
  23750. extra: 1225 / 1180,
  23751. bottom: 42.7 / 1266.4
  23752. }
  23753. },
  23754. back: {
  23755. height: math.unit(5 + 9 / 12, "feet"),
  23756. weight: math.unit(190, "lb"),
  23757. name: "Back",
  23758. image: {
  23759. source: "./media/characters/sprisk/back.svg",
  23760. extra: 1247 / 1200,
  23761. bottom: 5.6 / 1253.04
  23762. }
  23763. },
  23764. },
  23765. [
  23766. {
  23767. name: "Tiny",
  23768. height: math.unit(2, "inches")
  23769. },
  23770. {
  23771. name: "Normal",
  23772. height: math.unit(5 + 9 / 12, "feet"),
  23773. default: true
  23774. },
  23775. {
  23776. name: "Mini Macro",
  23777. height: math.unit(18, "feet")
  23778. },
  23779. {
  23780. name: "Macro",
  23781. height: math.unit(100, "feet")
  23782. },
  23783. {
  23784. name: "MACRO",
  23785. height: math.unit(50, "miles")
  23786. },
  23787. {
  23788. name: "M A C R O",
  23789. height: math.unit(300, "miles")
  23790. },
  23791. ]
  23792. ))
  23793. characterMakers.push(() => makeCharacter(
  23794. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  23795. {
  23796. side: {
  23797. height: math.unit(15.6, "meters"),
  23798. weight: math.unit(700000, "kg"),
  23799. name: "Side",
  23800. image: {
  23801. source: "./media/characters/bunsen/side.svg",
  23802. extra: 1644 / 358
  23803. }
  23804. },
  23805. foot: {
  23806. height: math.unit(1.611 * 1644 / 358, "meter"),
  23807. name: "Foot",
  23808. image: {
  23809. source: "./media/characters/bunsen/foot.svg"
  23810. }
  23811. },
  23812. },
  23813. [
  23814. {
  23815. name: "Small",
  23816. height: math.unit(10, "feet")
  23817. },
  23818. {
  23819. name: "Normal",
  23820. height: math.unit(15.6, "meters"),
  23821. default: true
  23822. },
  23823. ]
  23824. ))
  23825. characterMakers.push(() => makeCharacter(
  23826. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  23827. {
  23828. front: {
  23829. height: math.unit(4 + 11 / 12, "feet"),
  23830. weight: math.unit(140, "lb"),
  23831. name: "Front",
  23832. image: {
  23833. source: "./media/characters/sesh/front.svg",
  23834. extra: 3420 / 3231,
  23835. bottom: 72 / 3949.5
  23836. }
  23837. },
  23838. },
  23839. [
  23840. {
  23841. name: "Normal",
  23842. height: math.unit(4 + 11 / 12, "feet")
  23843. },
  23844. {
  23845. name: "Grown",
  23846. height: math.unit(15, "feet"),
  23847. default: true
  23848. },
  23849. {
  23850. name: "Macro",
  23851. height: math.unit(1500, "feet")
  23852. },
  23853. {
  23854. name: "Megamacro",
  23855. height: math.unit(30, "miles")
  23856. },
  23857. {
  23858. name: "Continental",
  23859. height: math.unit(3000, "miles")
  23860. },
  23861. {
  23862. name: "Gravity Mass",
  23863. height: math.unit(300000, "miles")
  23864. },
  23865. {
  23866. name: "Planet Buster",
  23867. height: math.unit(30000000, "miles")
  23868. },
  23869. {
  23870. name: "Big",
  23871. height: math.unit(3000000000, "miles")
  23872. },
  23873. ]
  23874. ))
  23875. characterMakers.push(() => makeCharacter(
  23876. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  23877. {
  23878. front: {
  23879. height: math.unit(9, "feet"),
  23880. weight: math.unit(350, "lb"),
  23881. name: "Front",
  23882. image: {
  23883. source: "./media/characters/pepper/front.svg",
  23884. extra: 1448 / 1312,
  23885. bottom: 9.4 / 1457.88
  23886. }
  23887. },
  23888. back: {
  23889. height: math.unit(9, "feet"),
  23890. weight: math.unit(350, "lb"),
  23891. name: "Back",
  23892. image: {
  23893. source: "./media/characters/pepper/back.svg",
  23894. extra: 1423 / 1300,
  23895. bottom: 4.6 / 1429
  23896. }
  23897. },
  23898. maw: {
  23899. height: math.unit(0.932, "feet"),
  23900. name: "Maw",
  23901. image: {
  23902. source: "./media/characters/pepper/maw.svg"
  23903. }
  23904. },
  23905. },
  23906. [
  23907. {
  23908. name: "Normal",
  23909. height: math.unit(9, "feet"),
  23910. default: true
  23911. },
  23912. ]
  23913. ))
  23914. characterMakers.push(() => makeCharacter(
  23915. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  23916. {
  23917. front: {
  23918. height: math.unit(6, "feet"),
  23919. weight: math.unit(150, "lb"),
  23920. name: "Front",
  23921. image: {
  23922. source: "./media/characters/maelstrom/front.svg",
  23923. extra: 2100 / 1883,
  23924. bottom: 94 / 2196.7
  23925. }
  23926. },
  23927. },
  23928. [
  23929. {
  23930. name: "Less Kaiju",
  23931. height: math.unit(200, "feet")
  23932. },
  23933. {
  23934. name: "Kaiju",
  23935. height: math.unit(400, "feet"),
  23936. default: true
  23937. },
  23938. {
  23939. name: "Kaiju-er",
  23940. height: math.unit(600, "feet")
  23941. },
  23942. ]
  23943. ))
  23944. characterMakers.push(() => makeCharacter(
  23945. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  23946. {
  23947. front: {
  23948. height: math.unit(6 + 5 / 12, "feet"),
  23949. weight: math.unit(180, "lb"),
  23950. name: "Front",
  23951. image: {
  23952. source: "./media/characters/lexir/front.svg",
  23953. extra: 180 / 172,
  23954. bottom: 12 / 192
  23955. }
  23956. },
  23957. back: {
  23958. height: math.unit(6 + 5 / 12, "feet"),
  23959. weight: math.unit(180, "lb"),
  23960. name: "Back",
  23961. image: {
  23962. source: "./media/characters/lexir/back.svg",
  23963. extra: 1273/1201,
  23964. bottom: 39/1312
  23965. }
  23966. },
  23967. },
  23968. [
  23969. {
  23970. name: "Very Smal",
  23971. height: math.unit(1, "nm")
  23972. },
  23973. {
  23974. name: "Normal",
  23975. height: math.unit(6 + 5 / 12, "feet"),
  23976. default: true
  23977. },
  23978. {
  23979. name: "Macro",
  23980. height: math.unit(1, "mile")
  23981. },
  23982. {
  23983. name: "Megamacro",
  23984. height: math.unit(50, "miles")
  23985. },
  23986. ]
  23987. ))
  23988. characterMakers.push(() => makeCharacter(
  23989. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  23990. {
  23991. front: {
  23992. height: math.unit(1.5, "meters"),
  23993. weight: math.unit(100, "lb"),
  23994. name: "Front",
  23995. image: {
  23996. source: "./media/characters/maksio/front.svg",
  23997. extra: 1549 / 1531,
  23998. bottom: 123.7 / 1674.5429
  23999. }
  24000. },
  24001. back: {
  24002. height: math.unit(1.5, "meters"),
  24003. weight: math.unit(100, "lb"),
  24004. name: "Back",
  24005. image: {
  24006. source: "./media/characters/maksio/back.svg",
  24007. extra: 1541 / 1509,
  24008. bottom: 97 / 1639
  24009. }
  24010. },
  24011. hand: {
  24012. height: math.unit(0.621, "feet"),
  24013. name: "Hand",
  24014. image: {
  24015. source: "./media/characters/maksio/hand.svg"
  24016. }
  24017. },
  24018. foot: {
  24019. height: math.unit(1.611, "feet"),
  24020. name: "Foot",
  24021. image: {
  24022. source: "./media/characters/maksio/foot.svg"
  24023. }
  24024. },
  24025. },
  24026. [
  24027. {
  24028. name: "Shrunken",
  24029. height: math.unit(10, "cm")
  24030. },
  24031. {
  24032. name: "Normal",
  24033. height: math.unit(150, "cm"),
  24034. default: true
  24035. },
  24036. ]
  24037. ))
  24038. characterMakers.push(() => makeCharacter(
  24039. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  24040. {
  24041. front: {
  24042. height: math.unit(100, "feet"),
  24043. name: "Front",
  24044. image: {
  24045. source: "./media/characters/erza-bear/front.svg",
  24046. extra: 2449 / 2390,
  24047. bottom: 46 / 2494
  24048. }
  24049. },
  24050. back: {
  24051. height: math.unit(100, "feet"),
  24052. name: "Back",
  24053. image: {
  24054. source: "./media/characters/erza-bear/back.svg",
  24055. extra: 2489 / 2430,
  24056. bottom: 85.4 / 2480
  24057. }
  24058. },
  24059. tail: {
  24060. height: math.unit(42, "feet"),
  24061. name: "Tail",
  24062. image: {
  24063. source: "./media/characters/erza-bear/tail.svg"
  24064. }
  24065. },
  24066. tongue: {
  24067. height: math.unit(8, "feet"),
  24068. name: "Tongue",
  24069. image: {
  24070. source: "./media/characters/erza-bear/tongue.svg"
  24071. }
  24072. },
  24073. dick: {
  24074. height: math.unit(10.5, "feet"),
  24075. name: "Dick",
  24076. image: {
  24077. source: "./media/characters/erza-bear/dick.svg"
  24078. }
  24079. },
  24080. dickVertical: {
  24081. height: math.unit(16.9, "feet"),
  24082. name: "Dick (Vertical)",
  24083. image: {
  24084. source: "./media/characters/erza-bear/dick-vertical.svg"
  24085. }
  24086. },
  24087. },
  24088. [
  24089. {
  24090. name: "Macro",
  24091. height: math.unit(100, "feet"),
  24092. default: true
  24093. },
  24094. ]
  24095. ))
  24096. characterMakers.push(() => makeCharacter(
  24097. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  24098. {
  24099. front: {
  24100. height: math.unit(172, "cm"),
  24101. weight: math.unit(73, "kg"),
  24102. name: "Front",
  24103. image: {
  24104. source: "./media/characters/violet-flor/front.svg",
  24105. extra: 1530 / 1442,
  24106. bottom: 61.9 / 1588.8
  24107. }
  24108. },
  24109. back: {
  24110. height: math.unit(180, "cm"),
  24111. weight: math.unit(73, "kg"),
  24112. name: "Back",
  24113. image: {
  24114. source: "./media/characters/violet-flor/back.svg",
  24115. extra: 1692 / 1630,
  24116. bottom: 20 / 1712
  24117. }
  24118. },
  24119. },
  24120. [
  24121. {
  24122. name: "Normal",
  24123. height: math.unit(172, "cm"),
  24124. default: true
  24125. },
  24126. ]
  24127. ))
  24128. characterMakers.push(() => makeCharacter(
  24129. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  24130. {
  24131. front: {
  24132. height: math.unit(6, "feet"),
  24133. weight: math.unit(220, "lb"),
  24134. name: "Front",
  24135. image: {
  24136. source: "./media/characters/lynn-rhea/front.svg",
  24137. extra: 310 / 273
  24138. }
  24139. },
  24140. back: {
  24141. height: math.unit(6, "feet"),
  24142. weight: math.unit(220, "lb"),
  24143. name: "Back",
  24144. image: {
  24145. source: "./media/characters/lynn-rhea/back.svg",
  24146. extra: 310 / 273
  24147. }
  24148. },
  24149. dicks: {
  24150. height: math.unit(0.9, "feet"),
  24151. name: "Dicks",
  24152. image: {
  24153. source: "./media/characters/lynn-rhea/dicks.svg"
  24154. }
  24155. },
  24156. slit: {
  24157. height: math.unit(0.4, "feet"),
  24158. name: "Slit",
  24159. image: {
  24160. source: "./media/characters/lynn-rhea/slit.svg"
  24161. }
  24162. },
  24163. },
  24164. [
  24165. {
  24166. name: "Micro",
  24167. height: math.unit(1, "inch")
  24168. },
  24169. {
  24170. name: "Macro",
  24171. height: math.unit(60, "feet"),
  24172. default: true
  24173. },
  24174. {
  24175. name: "Megamacro",
  24176. height: math.unit(2, "miles")
  24177. },
  24178. {
  24179. name: "Gigamacro",
  24180. height: math.unit(3, "earths")
  24181. },
  24182. {
  24183. name: "Galactic",
  24184. height: math.unit(0.8, "galaxies")
  24185. },
  24186. ]
  24187. ))
  24188. characterMakers.push(() => makeCharacter(
  24189. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  24190. {
  24191. front: {
  24192. height: math.unit(1600, "feet"),
  24193. weight: math.unit(85758785169, "kg"),
  24194. name: "Front",
  24195. image: {
  24196. source: "./media/characters/valathos/front.svg",
  24197. extra: 1451 / 1339
  24198. }
  24199. },
  24200. },
  24201. [
  24202. {
  24203. name: "Macro",
  24204. height: math.unit(1600, "feet"),
  24205. default: true
  24206. },
  24207. ]
  24208. ))
  24209. characterMakers.push(() => makeCharacter(
  24210. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  24211. {
  24212. front: {
  24213. height: math.unit(7 + 5 / 12, "feet"),
  24214. weight: math.unit(300, "lb"),
  24215. name: "Front",
  24216. image: {
  24217. source: "./media/characters/azula/front.svg",
  24218. extra: 3208 / 2880,
  24219. bottom: 80.2 / 3277
  24220. }
  24221. },
  24222. back: {
  24223. height: math.unit(7 + 5 / 12, "feet"),
  24224. weight: math.unit(300, "lb"),
  24225. name: "Back",
  24226. image: {
  24227. source: "./media/characters/azula/back.svg",
  24228. extra: 3169 / 2822,
  24229. bottom: 150.6 / 3321
  24230. }
  24231. },
  24232. },
  24233. [
  24234. {
  24235. name: "Normal",
  24236. height: math.unit(7 + 5 / 12, "feet"),
  24237. default: true
  24238. },
  24239. {
  24240. name: "Big",
  24241. height: math.unit(20, "feet")
  24242. },
  24243. ]
  24244. ))
  24245. characterMakers.push(() => makeCharacter(
  24246. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  24247. {
  24248. front: {
  24249. height: math.unit(5 + 1 / 12, "feet"),
  24250. weight: math.unit(110, "lb"),
  24251. name: "Front",
  24252. image: {
  24253. source: "./media/characters/rupert/front.svg",
  24254. extra: 1549 / 1495,
  24255. bottom: 54.2 / 1604.4
  24256. }
  24257. },
  24258. },
  24259. [
  24260. {
  24261. name: "Normal",
  24262. height: math.unit(5 + 1 / 12, "feet"),
  24263. default: true
  24264. },
  24265. ]
  24266. ))
  24267. characterMakers.push(() => makeCharacter(
  24268. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  24269. {
  24270. front: {
  24271. height: math.unit(8 + 4 / 12, "feet"),
  24272. weight: math.unit(350, "lb"),
  24273. name: "Front",
  24274. image: {
  24275. source: "./media/characters/sheera-castellar/front.svg",
  24276. extra: 1957 / 1894,
  24277. bottom: 26.97 / 1975.017
  24278. }
  24279. },
  24280. side: {
  24281. height: math.unit(8 + 4 / 12, "feet"),
  24282. weight: math.unit(350, "lb"),
  24283. name: "Side",
  24284. image: {
  24285. source: "./media/characters/sheera-castellar/side.svg",
  24286. extra: 1957 / 1894
  24287. }
  24288. },
  24289. back: {
  24290. height: math.unit(8 + 4 / 12, "feet"),
  24291. weight: math.unit(350, "lb"),
  24292. name: "Back",
  24293. image: {
  24294. source: "./media/characters/sheera-castellar/back.svg",
  24295. extra: 1957 / 1894
  24296. }
  24297. },
  24298. angled: {
  24299. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  24300. weight: math.unit(350, "lb"),
  24301. name: "Angled",
  24302. image: {
  24303. source: "./media/characters/sheera-castellar/angled.svg",
  24304. extra: 1807 / 1707,
  24305. bottom: 68 / 1875
  24306. }
  24307. },
  24308. genitals: {
  24309. height: math.unit(2.2, "feet"),
  24310. name: "Genitals",
  24311. image: {
  24312. source: "./media/characters/sheera-castellar/genitals.svg"
  24313. }
  24314. },
  24315. taur: {
  24316. height: math.unit(10 + 6/12, "feet"),
  24317. name: "Taur",
  24318. image: {
  24319. source: "./media/characters/sheera-castellar/taur.svg",
  24320. extra: 2017/1909,
  24321. bottom: 185/2202
  24322. }
  24323. },
  24324. },
  24325. [
  24326. {
  24327. name: "Normal",
  24328. height: math.unit(8 + 4 / 12, "feet")
  24329. },
  24330. {
  24331. name: "Macro",
  24332. height: math.unit(150, "feet"),
  24333. default: true
  24334. },
  24335. {
  24336. name: "Macro+",
  24337. height: math.unit(800, "feet")
  24338. },
  24339. ]
  24340. ))
  24341. characterMakers.push(() => makeCharacter(
  24342. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  24343. {
  24344. front: {
  24345. height: math.unit(6, "feet"),
  24346. weight: math.unit(150, "lb"),
  24347. name: "Front",
  24348. image: {
  24349. source: "./media/characters/jaipur/front.svg",
  24350. extra: 3860 / 3731,
  24351. bottom: 287 / 4140
  24352. }
  24353. },
  24354. back: {
  24355. height: math.unit(6, "feet"),
  24356. weight: math.unit(150, "lb"),
  24357. name: "Back",
  24358. image: {
  24359. source: "./media/characters/jaipur/back.svg",
  24360. extra: 1637/1561,
  24361. bottom: 154/1791
  24362. }
  24363. },
  24364. },
  24365. [
  24366. {
  24367. name: "Normal",
  24368. height: math.unit(1.85, "meters"),
  24369. default: true
  24370. },
  24371. {
  24372. name: "Macro",
  24373. height: math.unit(150, "meters")
  24374. },
  24375. {
  24376. name: "Macro+",
  24377. height: math.unit(0.5, "miles")
  24378. },
  24379. {
  24380. name: "Macro++",
  24381. height: math.unit(2.5, "miles")
  24382. },
  24383. {
  24384. name: "Macro+++",
  24385. height: math.unit(12, "miles")
  24386. },
  24387. {
  24388. name: "Macro++++",
  24389. height: math.unit(120, "miles")
  24390. },
  24391. {
  24392. name: "Macro+++++",
  24393. height: math.unit(1200, "miles")
  24394. },
  24395. ]
  24396. ))
  24397. characterMakers.push(() => makeCharacter(
  24398. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  24399. {
  24400. front: {
  24401. height: math.unit(6, "feet"),
  24402. weight: math.unit(150, "lb"),
  24403. name: "Front",
  24404. image: {
  24405. source: "./media/characters/sheila-wolf/front.svg",
  24406. extra: 1931 / 1808,
  24407. bottom: 29.5 / 1960
  24408. }
  24409. },
  24410. dick: {
  24411. height: math.unit(1.464, "feet"),
  24412. name: "Dick",
  24413. image: {
  24414. source: "./media/characters/sheila-wolf/dick.svg"
  24415. }
  24416. },
  24417. muzzle: {
  24418. height: math.unit(0.513, "feet"),
  24419. name: "Muzzle",
  24420. image: {
  24421. source: "./media/characters/sheila-wolf/muzzle.svg"
  24422. }
  24423. },
  24424. },
  24425. [
  24426. {
  24427. name: "Macro",
  24428. height: math.unit(70, "feet"),
  24429. default: true
  24430. },
  24431. ]
  24432. ))
  24433. characterMakers.push(() => makeCharacter(
  24434. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  24435. {
  24436. front: {
  24437. height: math.unit(32, "meters"),
  24438. weight: math.unit(300000, "kg"),
  24439. name: "Front",
  24440. image: {
  24441. source: "./media/characters/almor/front.svg",
  24442. extra: 1408 / 1322,
  24443. bottom: 94.6 / 1506.5
  24444. }
  24445. },
  24446. },
  24447. [
  24448. {
  24449. name: "Macro",
  24450. height: math.unit(32, "meters"),
  24451. default: true
  24452. },
  24453. ]
  24454. ))
  24455. characterMakers.push(() => makeCharacter(
  24456. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  24457. {
  24458. front: {
  24459. height: math.unit(7, "feet"),
  24460. weight: math.unit(200, "lb"),
  24461. name: "Front",
  24462. image: {
  24463. source: "./media/characters/silver/front.svg",
  24464. extra: 472.1 / 450.5,
  24465. bottom: 26.5 / 499.424
  24466. }
  24467. },
  24468. },
  24469. [
  24470. {
  24471. name: "Normal",
  24472. height: math.unit(7, "feet"),
  24473. default: true
  24474. },
  24475. {
  24476. name: "Macro",
  24477. height: math.unit(800, "feet")
  24478. },
  24479. {
  24480. name: "Megamacro",
  24481. height: math.unit(250, "miles")
  24482. },
  24483. ]
  24484. ))
  24485. characterMakers.push(() => makeCharacter(
  24486. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  24487. {
  24488. front: {
  24489. height: math.unit(6, "feet"),
  24490. weight: math.unit(150, "lb"),
  24491. name: "Front",
  24492. image: {
  24493. source: "./media/characters/pliskin/front.svg",
  24494. extra: 1469 / 1359,
  24495. bottom: 70 / 1540
  24496. }
  24497. },
  24498. },
  24499. [
  24500. {
  24501. name: "Micro",
  24502. height: math.unit(3, "inches")
  24503. },
  24504. {
  24505. name: "Normal",
  24506. height: math.unit(5 + 11 / 12, "feet"),
  24507. default: true
  24508. },
  24509. {
  24510. name: "Macro",
  24511. height: math.unit(120, "feet")
  24512. },
  24513. ]
  24514. ))
  24515. characterMakers.push(() => makeCharacter(
  24516. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  24517. {
  24518. front: {
  24519. height: math.unit(6, "feet"),
  24520. weight: math.unit(150, "lb"),
  24521. name: "Front",
  24522. image: {
  24523. source: "./media/characters/sammy/front.svg",
  24524. extra: 1193 / 1089,
  24525. bottom: 30.5 / 1226
  24526. }
  24527. },
  24528. },
  24529. [
  24530. {
  24531. name: "Macro",
  24532. height: math.unit(1700, "feet"),
  24533. default: true
  24534. },
  24535. {
  24536. name: "Examacro",
  24537. height: math.unit(2.5e9, "lightyears")
  24538. },
  24539. ]
  24540. ))
  24541. characterMakers.push(() => makeCharacter(
  24542. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  24543. {
  24544. front: {
  24545. height: math.unit(21, "meters"),
  24546. weight: math.unit(12, "tonnes"),
  24547. name: "Front",
  24548. image: {
  24549. source: "./media/characters/kuru/front.svg",
  24550. extra: 4301 / 3785,
  24551. bottom: 371.3 / 4691
  24552. }
  24553. },
  24554. },
  24555. [
  24556. {
  24557. name: "Macro",
  24558. height: math.unit(21, "meters"),
  24559. default: true
  24560. },
  24561. ]
  24562. ))
  24563. characterMakers.push(() => makeCharacter(
  24564. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  24565. {
  24566. front: {
  24567. height: math.unit(23, "meters"),
  24568. weight: math.unit(12.2, "tonnes"),
  24569. name: "Front",
  24570. image: {
  24571. source: "./media/characters/rakka/front.svg",
  24572. extra: 4670 / 4169,
  24573. bottom: 301 / 4968.7
  24574. }
  24575. },
  24576. },
  24577. [
  24578. {
  24579. name: "Macro",
  24580. height: math.unit(23, "meters"),
  24581. default: true
  24582. },
  24583. ]
  24584. ))
  24585. characterMakers.push(() => makeCharacter(
  24586. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  24587. {
  24588. front: {
  24589. height: math.unit(6, "feet"),
  24590. weight: math.unit(150, "lb"),
  24591. name: "Front",
  24592. image: {
  24593. source: "./media/characters/rhys-feline/front.svg",
  24594. extra: 2488 / 2308,
  24595. bottom: 35.67 / 2519.19
  24596. }
  24597. },
  24598. },
  24599. [
  24600. {
  24601. name: "Really Small",
  24602. height: math.unit(1, "nm")
  24603. },
  24604. {
  24605. name: "Micro",
  24606. height: math.unit(4, "inches")
  24607. },
  24608. {
  24609. name: "Normal",
  24610. height: math.unit(4 + 10 / 12, "feet"),
  24611. default: true
  24612. },
  24613. {
  24614. name: "Macro",
  24615. height: math.unit(100, "feet")
  24616. },
  24617. {
  24618. name: "Megamacto",
  24619. height: math.unit(50, "miles")
  24620. },
  24621. ]
  24622. ))
  24623. characterMakers.push(() => makeCharacter(
  24624. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  24625. {
  24626. side: {
  24627. height: math.unit(30, "feet"),
  24628. weight: math.unit(35000, "kg"),
  24629. name: "Side",
  24630. image: {
  24631. source: "./media/characters/alydar/side.svg",
  24632. extra: 234 / 222,
  24633. bottom: 6.5 / 241
  24634. }
  24635. },
  24636. front: {
  24637. height: math.unit(30, "feet"),
  24638. weight: math.unit(35000, "kg"),
  24639. name: "Front",
  24640. image: {
  24641. source: "./media/characters/alydar/front.svg",
  24642. extra: 223.37 / 210.2,
  24643. bottom: 22.3 / 246.76
  24644. }
  24645. },
  24646. top: {
  24647. height: math.unit(64.54, "feet"),
  24648. weight: math.unit(35000, "kg"),
  24649. name: "Top",
  24650. image: {
  24651. source: "./media/characters/alydar/top.svg"
  24652. }
  24653. },
  24654. anthro: {
  24655. height: math.unit(30, "feet"),
  24656. weight: math.unit(9000, "kg"),
  24657. name: "Anthro",
  24658. image: {
  24659. source: "./media/characters/alydar/anthro.svg",
  24660. extra: 432 / 421,
  24661. bottom: 7.18 / 440
  24662. }
  24663. },
  24664. maw: {
  24665. height: math.unit(11.693, "feet"),
  24666. name: "Maw",
  24667. image: {
  24668. source: "./media/characters/alydar/maw.svg"
  24669. }
  24670. },
  24671. head: {
  24672. height: math.unit(11.693, "feet"),
  24673. name: "Head",
  24674. image: {
  24675. source: "./media/characters/alydar/head.svg"
  24676. }
  24677. },
  24678. headAlt: {
  24679. height: math.unit(12.861, "feet"),
  24680. name: "Head (Alt)",
  24681. image: {
  24682. source: "./media/characters/alydar/head-alt.svg"
  24683. }
  24684. },
  24685. wing: {
  24686. height: math.unit(20.712, "feet"),
  24687. name: "Wing",
  24688. image: {
  24689. source: "./media/characters/alydar/wing.svg"
  24690. }
  24691. },
  24692. wingFeather: {
  24693. height: math.unit(9.662, "feet"),
  24694. name: "Wing Feather",
  24695. image: {
  24696. source: "./media/characters/alydar/wing-feather.svg"
  24697. }
  24698. },
  24699. countourFeather: {
  24700. height: math.unit(4.154, "feet"),
  24701. name: "Contour Feather",
  24702. image: {
  24703. source: "./media/characters/alydar/contour-feather.svg"
  24704. }
  24705. },
  24706. },
  24707. [
  24708. {
  24709. name: "Diplomatic",
  24710. height: math.unit(13, "feet"),
  24711. default: true
  24712. },
  24713. {
  24714. name: "Small",
  24715. height: math.unit(30, "feet")
  24716. },
  24717. {
  24718. name: "Normal",
  24719. height: math.unit(95, "feet"),
  24720. default: true
  24721. },
  24722. {
  24723. name: "Large",
  24724. height: math.unit(285, "feet")
  24725. },
  24726. {
  24727. name: "Incomprehensible",
  24728. height: math.unit(450, "megameters")
  24729. },
  24730. ]
  24731. ))
  24732. characterMakers.push(() => makeCharacter(
  24733. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  24734. {
  24735. side: {
  24736. height: math.unit(11, "feet"),
  24737. weight: math.unit(1750, "kg"),
  24738. name: "Side",
  24739. image: {
  24740. source: "./media/characters/selicia/side.svg",
  24741. extra: 440 / 396,
  24742. bottom: 24.8 / 465.979
  24743. }
  24744. },
  24745. maw: {
  24746. height: math.unit(4.665, "feet"),
  24747. name: "Maw",
  24748. image: {
  24749. source: "./media/characters/selicia/maw.svg"
  24750. }
  24751. },
  24752. },
  24753. [
  24754. {
  24755. name: "Normal",
  24756. height: math.unit(11, "feet"),
  24757. default: true
  24758. },
  24759. ]
  24760. ))
  24761. characterMakers.push(() => makeCharacter(
  24762. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  24763. {
  24764. side: {
  24765. height: math.unit(2 + 6 / 12, "feet"),
  24766. weight: math.unit(30, "lb"),
  24767. name: "Side",
  24768. image: {
  24769. source: "./media/characters/layla/side.svg",
  24770. extra: 244 / 188,
  24771. bottom: 18.2 / 262.1
  24772. }
  24773. },
  24774. back: {
  24775. height: math.unit(2 + 6 / 12, "feet"),
  24776. weight: math.unit(30, "lb"),
  24777. name: "Back",
  24778. image: {
  24779. source: "./media/characters/layla/back.svg",
  24780. extra: 308 / 241.5,
  24781. bottom: 8.9 / 316.8
  24782. }
  24783. },
  24784. cumming: {
  24785. height: math.unit(2 + 6 / 12, "feet"),
  24786. weight: math.unit(30, "lb"),
  24787. name: "Cumming",
  24788. image: {
  24789. source: "./media/characters/layla/cumming.svg",
  24790. extra: 342 / 279,
  24791. bottom: 595 / 938
  24792. }
  24793. },
  24794. dickFlaccid: {
  24795. height: math.unit(2.595, "feet"),
  24796. name: "Flaccid Genitals",
  24797. image: {
  24798. source: "./media/characters/layla/dick-flaccid.svg"
  24799. }
  24800. },
  24801. dickErect: {
  24802. height: math.unit(2.359, "feet"),
  24803. name: "Erect Genitals",
  24804. image: {
  24805. source: "./media/characters/layla/dick-erect.svg"
  24806. }
  24807. },
  24808. dragon: {
  24809. height: math.unit(40, "feet"),
  24810. name: "Dragon",
  24811. image: {
  24812. source: "./media/characters/layla/dragon.svg",
  24813. extra: 610/535,
  24814. bottom: 367/977
  24815. }
  24816. },
  24817. taur: {
  24818. height: math.unit(30, "feet"),
  24819. name: "Taur",
  24820. image: {
  24821. source: "./media/characters/layla/taur.svg",
  24822. extra: 1268/1199,
  24823. bottom: 112/1380
  24824. }
  24825. },
  24826. },
  24827. [
  24828. {
  24829. name: "Micro",
  24830. height: math.unit(1, "inch")
  24831. },
  24832. {
  24833. name: "Small",
  24834. height: math.unit(1, "foot")
  24835. },
  24836. {
  24837. name: "Normal",
  24838. height: math.unit(2 + 6 / 12, "feet"),
  24839. default: true
  24840. },
  24841. {
  24842. name: "Macro",
  24843. height: math.unit(200, "feet")
  24844. },
  24845. {
  24846. name: "Megamacro",
  24847. height: math.unit(1000, "miles")
  24848. },
  24849. {
  24850. name: "Planetary",
  24851. height: math.unit(8000, "miles")
  24852. },
  24853. {
  24854. name: "True Layla",
  24855. height: math.unit(200000 * 7, "multiverses")
  24856. },
  24857. ]
  24858. ))
  24859. characterMakers.push(() => makeCharacter(
  24860. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  24861. {
  24862. back: {
  24863. height: math.unit(10.5, "feet"),
  24864. weight: math.unit(800, "lb"),
  24865. name: "Back",
  24866. image: {
  24867. source: "./media/characters/knox/back.svg",
  24868. extra: 1486 / 1089,
  24869. bottom: 107 / 1601.4
  24870. }
  24871. },
  24872. side: {
  24873. height: math.unit(10.5, "feet"),
  24874. weight: math.unit(800, "lb"),
  24875. name: "Side",
  24876. image: {
  24877. source: "./media/characters/knox/side.svg",
  24878. extra: 244 / 218,
  24879. bottom: 14 / 260
  24880. }
  24881. },
  24882. },
  24883. [
  24884. {
  24885. name: "Compact",
  24886. height: math.unit(10.5, "feet"),
  24887. default: true
  24888. },
  24889. {
  24890. name: "Dynamax",
  24891. height: math.unit(210, "feet")
  24892. },
  24893. {
  24894. name: "Full Macro",
  24895. height: math.unit(850, "feet")
  24896. },
  24897. ]
  24898. ))
  24899. characterMakers.push(() => makeCharacter(
  24900. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  24901. {
  24902. front: {
  24903. height: math.unit(28, "feet"),
  24904. weight: math.unit(10500, "lb"),
  24905. name: "Front",
  24906. image: {
  24907. source: "./media/characters/kayda/front.svg",
  24908. extra: 1536 / 1428,
  24909. bottom: 68.7 / 1603
  24910. }
  24911. },
  24912. back: {
  24913. height: math.unit(28, "feet"),
  24914. weight: math.unit(10500, "lb"),
  24915. name: "Back",
  24916. image: {
  24917. source: "./media/characters/kayda/back.svg",
  24918. extra: 1557 / 1464,
  24919. bottom: 39.5 / 1597.49
  24920. }
  24921. },
  24922. dick: {
  24923. height: math.unit(3.858, "feet"),
  24924. name: "Dick",
  24925. image: {
  24926. source: "./media/characters/kayda/dick.svg"
  24927. }
  24928. },
  24929. },
  24930. [
  24931. {
  24932. name: "Macro",
  24933. height: math.unit(28, "feet"),
  24934. default: true
  24935. },
  24936. ]
  24937. ))
  24938. characterMakers.push(() => makeCharacter(
  24939. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  24940. {
  24941. front: {
  24942. height: math.unit(10 + 11 / 12, "feet"),
  24943. weight: math.unit(1400, "lb"),
  24944. name: "Front",
  24945. image: {
  24946. source: "./media/characters/brian/front.svg",
  24947. extra: 737 / 692,
  24948. bottom: 55.4 / 785
  24949. }
  24950. },
  24951. },
  24952. [
  24953. {
  24954. name: "Normal",
  24955. height: math.unit(10 + 11 / 12, "feet"),
  24956. default: true
  24957. },
  24958. ]
  24959. ))
  24960. characterMakers.push(() => makeCharacter(
  24961. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  24962. {
  24963. front: {
  24964. height: math.unit(5 + 8 / 12, "feet"),
  24965. weight: math.unit(140, "lb"),
  24966. name: "Front",
  24967. image: {
  24968. source: "./media/characters/khemri/front.svg",
  24969. extra: 4780 / 4059,
  24970. bottom: 80.1 / 4859.25
  24971. }
  24972. },
  24973. },
  24974. [
  24975. {
  24976. name: "Micro",
  24977. height: math.unit(6, "inches")
  24978. },
  24979. {
  24980. name: "Normal",
  24981. height: math.unit(5 + 8 / 12, "feet"),
  24982. default: true
  24983. },
  24984. ]
  24985. ))
  24986. characterMakers.push(() => makeCharacter(
  24987. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  24988. {
  24989. front: {
  24990. height: math.unit(13, "feet"),
  24991. weight: math.unit(1700, "lb"),
  24992. name: "Front",
  24993. image: {
  24994. source: "./media/characters/felix-braveheart/front.svg",
  24995. extra: 1222 / 1157,
  24996. bottom: 53.2 / 1280
  24997. }
  24998. },
  24999. back: {
  25000. height: math.unit(13, "feet"),
  25001. weight: math.unit(1700, "lb"),
  25002. name: "Back",
  25003. image: {
  25004. source: "./media/characters/felix-braveheart/back.svg",
  25005. extra: 1277 / 1203,
  25006. bottom: 50.2 / 1327
  25007. }
  25008. },
  25009. feral: {
  25010. height: math.unit(6, "feet"),
  25011. weight: math.unit(400, "lb"),
  25012. name: "Feral",
  25013. image: {
  25014. source: "./media/characters/felix-braveheart/feral.svg",
  25015. extra: 682 / 625,
  25016. bottom: 6.9 / 688
  25017. }
  25018. },
  25019. },
  25020. [
  25021. {
  25022. name: "Normal",
  25023. height: math.unit(13, "feet"),
  25024. default: true
  25025. },
  25026. ]
  25027. ))
  25028. characterMakers.push(() => makeCharacter(
  25029. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  25030. {
  25031. side: {
  25032. height: math.unit(5 + 11 / 12, "feet"),
  25033. weight: math.unit(1400, "lb"),
  25034. name: "Side",
  25035. image: {
  25036. source: "./media/characters/shadow-blade/side.svg",
  25037. extra: 1726 / 1267,
  25038. bottom: 58.4 / 1785
  25039. }
  25040. },
  25041. },
  25042. [
  25043. {
  25044. name: "Normal",
  25045. height: math.unit(5 + 11 / 12, "feet"),
  25046. default: true
  25047. },
  25048. ]
  25049. ))
  25050. characterMakers.push(() => makeCharacter(
  25051. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  25052. {
  25053. front: {
  25054. height: math.unit(1 + 6 / 12, "feet"),
  25055. weight: math.unit(25, "lb"),
  25056. name: "Front",
  25057. image: {
  25058. source: "./media/characters/karla-halldor/front.svg",
  25059. extra: 1459 / 1383,
  25060. bottom: 12 / 1472
  25061. }
  25062. },
  25063. },
  25064. [
  25065. {
  25066. name: "Normal",
  25067. height: math.unit(1 + 6 / 12, "feet"),
  25068. default: true
  25069. },
  25070. ]
  25071. ))
  25072. characterMakers.push(() => makeCharacter(
  25073. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  25074. {
  25075. front: {
  25076. height: math.unit(6 + 2 / 12, "feet"),
  25077. weight: math.unit(160, "lb"),
  25078. name: "Front",
  25079. image: {
  25080. source: "./media/characters/ariam/front.svg",
  25081. extra: 1073/976,
  25082. bottom: 52/1125
  25083. }
  25084. },
  25085. back: {
  25086. height: math.unit(6 + 2/12, "feet"),
  25087. weight: math.unit(160, "lb"),
  25088. name: "Back",
  25089. image: {
  25090. source: "./media/characters/ariam/back.svg",
  25091. extra: 1103/1023,
  25092. bottom: 9/1112
  25093. }
  25094. },
  25095. dressed: {
  25096. height: math.unit(6 + 2/12, "feet"),
  25097. weight: math.unit(160, "lb"),
  25098. name: "Dressed",
  25099. image: {
  25100. source: "./media/characters/ariam/dressed.svg",
  25101. extra: 1099/1009,
  25102. bottom: 25/1124
  25103. }
  25104. },
  25105. squatting: {
  25106. height: math.unit(4.1, "feet"),
  25107. weight: math.unit(160, "lb"),
  25108. name: "Squatting",
  25109. image: {
  25110. source: "./media/characters/ariam/squatting.svg",
  25111. extra: 2617 / 2112,
  25112. bottom: 61.2 / 2681,
  25113. }
  25114. },
  25115. },
  25116. [
  25117. {
  25118. name: "Normal",
  25119. height: math.unit(6 + 2 / 12, "feet"),
  25120. default: true
  25121. },
  25122. {
  25123. name: "Normal+",
  25124. height: math.unit(4, "meters")
  25125. },
  25126. {
  25127. name: "Macro",
  25128. height: math.unit(50, "meters")
  25129. },
  25130. {
  25131. name: "Macro+",
  25132. height: math.unit(100, "meters")
  25133. },
  25134. {
  25135. name: "Megamacro",
  25136. height: math.unit(20, "km")
  25137. },
  25138. {
  25139. name: "Caretaker",
  25140. height: math.unit(444, "megameters")
  25141. },
  25142. ]
  25143. ))
  25144. characterMakers.push(() => makeCharacter(
  25145. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  25146. {
  25147. front: {
  25148. height: math.unit(1.67, "meters"),
  25149. weight: math.unit(140, "lb"),
  25150. name: "Front",
  25151. image: {
  25152. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  25153. extra: 438 / 410,
  25154. bottom: 0.75 / 439
  25155. }
  25156. },
  25157. },
  25158. [
  25159. {
  25160. name: "Shrunken",
  25161. height: math.unit(7.6, "cm")
  25162. },
  25163. {
  25164. name: "Human Scale",
  25165. height: math.unit(1.67, "meters")
  25166. },
  25167. {
  25168. name: "Wolxi Scale",
  25169. height: math.unit(36.7, "meters"),
  25170. default: true
  25171. },
  25172. ]
  25173. ))
  25174. characterMakers.push(() => makeCharacter(
  25175. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  25176. {
  25177. front: {
  25178. height: math.unit(1.73, "meters"),
  25179. weight: math.unit(240, "lb"),
  25180. name: "Front",
  25181. image: {
  25182. source: "./media/characters/izue-two-mothers/front.svg",
  25183. extra: 469 / 437,
  25184. bottom: 1.24 / 470.6
  25185. }
  25186. },
  25187. },
  25188. [
  25189. {
  25190. name: "Shrunken",
  25191. height: math.unit(7.86, "cm")
  25192. },
  25193. {
  25194. name: "Human Scale",
  25195. height: math.unit(1.73, "meters")
  25196. },
  25197. {
  25198. name: "Wolxi Scale",
  25199. height: math.unit(38, "meters"),
  25200. default: true
  25201. },
  25202. ]
  25203. ))
  25204. characterMakers.push(() => makeCharacter(
  25205. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  25206. {
  25207. front: {
  25208. height: math.unit(1.55, "meters"),
  25209. weight: math.unit(120, "lb"),
  25210. name: "Front",
  25211. image: {
  25212. source: "./media/characters/teeku-love-shack/front.svg",
  25213. extra: 387 / 362,
  25214. bottom: 1.51 / 388
  25215. }
  25216. },
  25217. },
  25218. [
  25219. {
  25220. name: "Shrunken",
  25221. height: math.unit(7, "cm")
  25222. },
  25223. {
  25224. name: "Human Scale",
  25225. height: math.unit(1.55, "meters")
  25226. },
  25227. {
  25228. name: "Wolxi Scale",
  25229. height: math.unit(34.1, "meters"),
  25230. default: true
  25231. },
  25232. ]
  25233. ))
  25234. characterMakers.push(() => makeCharacter(
  25235. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  25236. {
  25237. front: {
  25238. height: math.unit(1.83, "meters"),
  25239. weight: math.unit(135, "lb"),
  25240. name: "Front",
  25241. image: {
  25242. source: "./media/characters/dejma-the-red/front.svg",
  25243. extra: 480 / 458,
  25244. bottom: 1.8 / 482
  25245. }
  25246. },
  25247. },
  25248. [
  25249. {
  25250. name: "Shrunken",
  25251. height: math.unit(8.3, "cm")
  25252. },
  25253. {
  25254. name: "Human Scale",
  25255. height: math.unit(1.83, "meters")
  25256. },
  25257. {
  25258. name: "Wolxi Scale",
  25259. height: math.unit(40, "meters"),
  25260. default: true
  25261. },
  25262. ]
  25263. ))
  25264. characterMakers.push(() => makeCharacter(
  25265. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  25266. {
  25267. front: {
  25268. height: math.unit(1.78, "meters"),
  25269. weight: math.unit(65, "kg"),
  25270. name: "Front",
  25271. image: {
  25272. source: "./media/characters/aki/front.svg",
  25273. extra: 452 / 415
  25274. }
  25275. },
  25276. frontNsfw: {
  25277. height: math.unit(1.78, "meters"),
  25278. weight: math.unit(65, "kg"),
  25279. name: "Front (NSFW)",
  25280. image: {
  25281. source: "./media/characters/aki/front-nsfw.svg",
  25282. extra: 452 / 415
  25283. }
  25284. },
  25285. back: {
  25286. height: math.unit(1.78, "meters"),
  25287. weight: math.unit(65, "kg"),
  25288. name: "Back",
  25289. image: {
  25290. source: "./media/characters/aki/back.svg",
  25291. extra: 452 / 415
  25292. }
  25293. },
  25294. rump: {
  25295. height: math.unit(2.05, "feet"),
  25296. name: "Rump",
  25297. image: {
  25298. source: "./media/characters/aki/rump.svg"
  25299. }
  25300. },
  25301. dick: {
  25302. height: math.unit(0.95, "feet"),
  25303. name: "Dick",
  25304. image: {
  25305. source: "./media/characters/aki/dick.svg"
  25306. }
  25307. },
  25308. },
  25309. [
  25310. {
  25311. name: "Micro",
  25312. height: math.unit(15, "cm")
  25313. },
  25314. {
  25315. name: "Normal",
  25316. height: math.unit(178, "cm"),
  25317. default: true
  25318. },
  25319. {
  25320. name: "Macro",
  25321. height: math.unit(214, "m")
  25322. },
  25323. {
  25324. name: "Macro+",
  25325. height: math.unit(534, "m")
  25326. },
  25327. ]
  25328. ))
  25329. characterMakers.push(() => makeCharacter(
  25330. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  25331. {
  25332. front: {
  25333. height: math.unit(5 + 5 / 12, "feet"),
  25334. weight: math.unit(120, "lb"),
  25335. name: "Front",
  25336. image: {
  25337. source: "./media/characters/ari/front.svg",
  25338. extra: 1550/1471,
  25339. bottom: 39/1589
  25340. }
  25341. },
  25342. },
  25343. [
  25344. {
  25345. name: "Normal",
  25346. height: math.unit(5 + 5 / 12, "feet")
  25347. },
  25348. {
  25349. name: "Macro",
  25350. height: math.unit(100, "feet"),
  25351. default: true
  25352. },
  25353. {
  25354. name: "Megamacro",
  25355. height: math.unit(100, "miles")
  25356. },
  25357. {
  25358. name: "Gigamacro",
  25359. height: math.unit(80000, "miles")
  25360. },
  25361. ]
  25362. ))
  25363. characterMakers.push(() => makeCharacter(
  25364. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  25365. {
  25366. side: {
  25367. height: math.unit(9, "feet"),
  25368. weight: math.unit(400, "kg"),
  25369. name: "Side",
  25370. image: {
  25371. source: "./media/characters/bolt/side.svg",
  25372. extra: 1126 / 896,
  25373. bottom: 60 / 1187.3,
  25374. }
  25375. },
  25376. },
  25377. [
  25378. {
  25379. name: "Micro",
  25380. height: math.unit(5, "inches")
  25381. },
  25382. {
  25383. name: "Normal",
  25384. height: math.unit(9, "feet"),
  25385. default: true
  25386. },
  25387. {
  25388. name: "Macro",
  25389. height: math.unit(700, "feet")
  25390. },
  25391. {
  25392. name: "Max Size",
  25393. height: math.unit(1.52e22, "yottameters")
  25394. },
  25395. ]
  25396. ))
  25397. characterMakers.push(() => makeCharacter(
  25398. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  25399. {
  25400. front: {
  25401. height: math.unit(4.3, "meters"),
  25402. weight: math.unit(3, "tons"),
  25403. name: "Front",
  25404. image: {
  25405. source: "./media/characters/draekon-sylviar/front.svg",
  25406. extra: 2072/1512,
  25407. bottom: 74/2146
  25408. }
  25409. },
  25410. back: {
  25411. height: math.unit(4.3, "meters"),
  25412. weight: math.unit(3, "tons"),
  25413. name: "Back",
  25414. image: {
  25415. source: "./media/characters/draekon-sylviar/back.svg",
  25416. extra: 1639/1483,
  25417. bottom: 41/1680
  25418. }
  25419. },
  25420. feral: {
  25421. height: math.unit(1.15, "meters"),
  25422. weight: math.unit(3, "tons"),
  25423. name: "Feral",
  25424. image: {
  25425. source: "./media/characters/draekon-sylviar/feral.svg",
  25426. extra: 1033/395,
  25427. bottom: 130/1163
  25428. }
  25429. },
  25430. maw: {
  25431. height: math.unit(1.3, "meters"),
  25432. name: "Maw",
  25433. image: {
  25434. source: "./media/characters/draekon-sylviar/maw.svg"
  25435. }
  25436. },
  25437. mawSeparated: {
  25438. height: math.unit(1.53, "meters"),
  25439. name: "Separated Maw",
  25440. image: {
  25441. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  25442. }
  25443. },
  25444. tail: {
  25445. height: math.unit(1.15, "meters"),
  25446. name: "Tail",
  25447. image: {
  25448. source: "./media/characters/draekon-sylviar/tail.svg"
  25449. }
  25450. },
  25451. tailDick: {
  25452. height: math.unit(1.15, "meters"),
  25453. name: "Tail (Dick)",
  25454. image: {
  25455. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  25456. }
  25457. },
  25458. tailDickSeparated: {
  25459. height: math.unit(1.19, "meters"),
  25460. name: "Tail (Separated Dick)",
  25461. image: {
  25462. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  25463. }
  25464. },
  25465. slit: {
  25466. height: math.unit(1, "meters"),
  25467. name: "Slit",
  25468. image: {
  25469. source: "./media/characters/draekon-sylviar/slit.svg"
  25470. }
  25471. },
  25472. dick: {
  25473. height: math.unit(1.15, "meters"),
  25474. name: "Dick",
  25475. image: {
  25476. source: "./media/characters/draekon-sylviar/dick.svg"
  25477. }
  25478. },
  25479. dickSeparated: {
  25480. height: math.unit(1.1, "meters"),
  25481. name: "Separated Dick",
  25482. image: {
  25483. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  25484. }
  25485. },
  25486. sheath: {
  25487. height: math.unit(1.15, "meters"),
  25488. name: "Sheath",
  25489. image: {
  25490. source: "./media/characters/draekon-sylviar/sheath.svg"
  25491. }
  25492. },
  25493. },
  25494. [
  25495. {
  25496. name: "Small",
  25497. height: math.unit(4.53 / 2, "meters"),
  25498. default: true
  25499. },
  25500. {
  25501. name: "Normal",
  25502. height: math.unit(4.53, "meters"),
  25503. default: true
  25504. },
  25505. {
  25506. name: "Large",
  25507. height: math.unit(4.53 * 2, "meters"),
  25508. },
  25509. ]
  25510. ))
  25511. characterMakers.push(() => makeCharacter(
  25512. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  25513. {
  25514. front: {
  25515. height: math.unit(6 + 2 / 12, "feet"),
  25516. weight: math.unit(180, "lb"),
  25517. name: "Front",
  25518. image: {
  25519. source: "./media/characters/brawler/front.svg",
  25520. extra: 3301 / 3027,
  25521. bottom: 138 / 3439
  25522. }
  25523. },
  25524. },
  25525. [
  25526. {
  25527. name: "Normal",
  25528. height: math.unit(6 + 2 / 12, "feet"),
  25529. default: true
  25530. },
  25531. ]
  25532. ))
  25533. characterMakers.push(() => makeCharacter(
  25534. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  25535. {
  25536. front: {
  25537. height: math.unit(11, "feet"),
  25538. weight: math.unit(1000, "lb"),
  25539. name: "Front",
  25540. image: {
  25541. source: "./media/characters/alex/front.svg",
  25542. bottom: 44.5 / 620
  25543. }
  25544. },
  25545. },
  25546. [
  25547. {
  25548. name: "Micro",
  25549. height: math.unit(5, "inches")
  25550. },
  25551. {
  25552. name: "Normal",
  25553. height: math.unit(11, "feet"),
  25554. default: true
  25555. },
  25556. {
  25557. name: "Macro",
  25558. height: math.unit(9.5e9, "feet")
  25559. },
  25560. {
  25561. name: "Max Size",
  25562. height: math.unit(1.4e283, "yottameters")
  25563. },
  25564. ]
  25565. ))
  25566. characterMakers.push(() => makeCharacter(
  25567. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  25568. {
  25569. female: {
  25570. height: math.unit(29.9, "m"),
  25571. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  25572. name: "Female",
  25573. image: {
  25574. source: "./media/characters/zenari/female.svg",
  25575. extra: 3281.6 / 3217,
  25576. bottom: 72.2 / 3353
  25577. }
  25578. },
  25579. male: {
  25580. height: math.unit(27.7, "m"),
  25581. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  25582. name: "Male",
  25583. image: {
  25584. source: "./media/characters/zenari/male.svg",
  25585. extra: 3008 / 2991,
  25586. bottom: 54.6 / 3069
  25587. }
  25588. },
  25589. },
  25590. [
  25591. {
  25592. name: "Macro",
  25593. height: math.unit(29.7, "meters"),
  25594. default: true
  25595. },
  25596. ]
  25597. ))
  25598. characterMakers.push(() => makeCharacter(
  25599. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  25600. {
  25601. female: {
  25602. height: math.unit(23.8, "m"),
  25603. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  25604. name: "Female",
  25605. image: {
  25606. source: "./media/characters/mactarian/female.svg",
  25607. extra: 2662 / 2569,
  25608. bottom: 73 / 2736
  25609. }
  25610. },
  25611. male: {
  25612. height: math.unit(23.8, "m"),
  25613. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  25614. name: "Male",
  25615. image: {
  25616. source: "./media/characters/mactarian/male.svg",
  25617. extra: 2673 / 2600,
  25618. bottom: 76 / 2750
  25619. }
  25620. },
  25621. },
  25622. [
  25623. {
  25624. name: "Macro",
  25625. height: math.unit(23.8, "meters"),
  25626. default: true
  25627. },
  25628. ]
  25629. ))
  25630. characterMakers.push(() => makeCharacter(
  25631. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  25632. {
  25633. female: {
  25634. height: math.unit(19.3, "m"),
  25635. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  25636. name: "Female",
  25637. image: {
  25638. source: "./media/characters/umok/female.svg",
  25639. extra: 2186 / 2078,
  25640. bottom: 87 / 2277
  25641. }
  25642. },
  25643. male: {
  25644. height: math.unit(19.5, "m"),
  25645. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  25646. name: "Male",
  25647. image: {
  25648. source: "./media/characters/umok/male.svg",
  25649. extra: 2233 / 2140,
  25650. bottom: 24.4 / 2258
  25651. }
  25652. },
  25653. },
  25654. [
  25655. {
  25656. name: "Macro",
  25657. height: math.unit(19.3, "meters"),
  25658. default: true
  25659. },
  25660. ]
  25661. ))
  25662. characterMakers.push(() => makeCharacter(
  25663. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  25664. {
  25665. female: {
  25666. height: math.unit(26.15, "m"),
  25667. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  25668. name: "Female",
  25669. image: {
  25670. source: "./media/characters/joraxian/female.svg",
  25671. extra: 2912 / 2824,
  25672. bottom: 36 / 2956
  25673. }
  25674. },
  25675. male: {
  25676. height: math.unit(25.4, "m"),
  25677. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  25678. name: "Male",
  25679. image: {
  25680. source: "./media/characters/joraxian/male.svg",
  25681. extra: 2877 / 2721,
  25682. bottom: 82 / 2967
  25683. }
  25684. },
  25685. },
  25686. [
  25687. {
  25688. name: "Macro",
  25689. height: math.unit(26.15, "meters"),
  25690. default: true
  25691. },
  25692. ]
  25693. ))
  25694. characterMakers.push(() => makeCharacter(
  25695. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  25696. {
  25697. female: {
  25698. height: math.unit(21.6, "m"),
  25699. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  25700. name: "Female",
  25701. image: {
  25702. source: "./media/characters/sthara/female.svg",
  25703. extra: 2516 / 2347,
  25704. bottom: 21.5 / 2537
  25705. }
  25706. },
  25707. male: {
  25708. height: math.unit(24, "m"),
  25709. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  25710. name: "Male",
  25711. image: {
  25712. source: "./media/characters/sthara/male.svg",
  25713. extra: 2732 / 2607,
  25714. bottom: 23 / 2732
  25715. }
  25716. },
  25717. },
  25718. [
  25719. {
  25720. name: "Macro",
  25721. height: math.unit(21.6, "meters"),
  25722. default: true
  25723. },
  25724. ]
  25725. ))
  25726. characterMakers.push(() => makeCharacter(
  25727. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  25728. {
  25729. front: {
  25730. height: math.unit(6 + 4 / 12, "feet"),
  25731. weight: math.unit(175, "lb"),
  25732. name: "Front",
  25733. image: {
  25734. source: "./media/characters/luka-bryzant/front.svg",
  25735. extra: 311 / 289,
  25736. bottom: 4 / 315
  25737. }
  25738. },
  25739. back: {
  25740. height: math.unit(6 + 4 / 12, "feet"),
  25741. weight: math.unit(175, "lb"),
  25742. name: "Back",
  25743. image: {
  25744. source: "./media/characters/luka-bryzant/back.svg",
  25745. extra: 311 / 289,
  25746. bottom: 3.8 / 313.7
  25747. }
  25748. },
  25749. },
  25750. [
  25751. {
  25752. name: "Micro",
  25753. height: math.unit(10, "inches")
  25754. },
  25755. {
  25756. name: "Normal",
  25757. height: math.unit(6 + 4 / 12, "feet"),
  25758. default: true
  25759. },
  25760. {
  25761. name: "Large",
  25762. height: math.unit(12, "feet")
  25763. },
  25764. ]
  25765. ))
  25766. characterMakers.push(() => makeCharacter(
  25767. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  25768. {
  25769. front: {
  25770. height: math.unit(5 + 7 / 12, "feet"),
  25771. weight: math.unit(185, "lb"),
  25772. name: "Front",
  25773. image: {
  25774. source: "./media/characters/aman-aquila/front.svg",
  25775. extra: 1013 / 976,
  25776. bottom: 45.6 / 1057
  25777. }
  25778. },
  25779. side: {
  25780. height: math.unit(5 + 7 / 12, "feet"),
  25781. weight: math.unit(185, "lb"),
  25782. name: "Side",
  25783. image: {
  25784. source: "./media/characters/aman-aquila/side.svg",
  25785. extra: 1054 / 1011,
  25786. bottom: 15 / 1070
  25787. }
  25788. },
  25789. back: {
  25790. height: math.unit(5 + 7 / 12, "feet"),
  25791. weight: math.unit(185, "lb"),
  25792. name: "Back",
  25793. image: {
  25794. source: "./media/characters/aman-aquila/back.svg",
  25795. extra: 1026 / 970,
  25796. bottom: 12 / 1039
  25797. }
  25798. },
  25799. head: {
  25800. height: math.unit(1.211, "feet"),
  25801. name: "Head",
  25802. image: {
  25803. source: "./media/characters/aman-aquila/head.svg",
  25804. }
  25805. },
  25806. },
  25807. [
  25808. {
  25809. name: "Minimicro",
  25810. height: math.unit(0.057, "inches")
  25811. },
  25812. {
  25813. name: "Micro",
  25814. height: math.unit(7, "inches")
  25815. },
  25816. {
  25817. name: "Mini",
  25818. height: math.unit(3 + 7 / 12, "feet")
  25819. },
  25820. {
  25821. name: "Normal",
  25822. height: math.unit(5 + 7 / 12, "feet"),
  25823. default: true
  25824. },
  25825. {
  25826. name: "Macro",
  25827. height: math.unit(157 + 7 / 12, "feet")
  25828. },
  25829. {
  25830. name: "Megamacro",
  25831. height: math.unit(1557 + 7 / 12, "feet")
  25832. },
  25833. {
  25834. name: "Gigamacro",
  25835. height: math.unit(15557 + 7 / 12, "feet")
  25836. },
  25837. ]
  25838. ))
  25839. characterMakers.push(() => makeCharacter(
  25840. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  25841. {
  25842. front: {
  25843. height: math.unit(3 + 2 / 12, "inches"),
  25844. weight: math.unit(0.3, "ounces"),
  25845. name: "Front",
  25846. image: {
  25847. source: "./media/characters/hiphae/front.svg",
  25848. extra: 1931 / 1683,
  25849. bottom: 24 / 1955
  25850. }
  25851. },
  25852. },
  25853. [
  25854. {
  25855. name: "Normal",
  25856. height: math.unit(3 + 1 / 2, "inches"),
  25857. default: true
  25858. },
  25859. ]
  25860. ))
  25861. characterMakers.push(() => makeCharacter(
  25862. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  25863. {
  25864. front: {
  25865. height: math.unit(5 + 10 / 12, "feet"),
  25866. weight: math.unit(165, "lb"),
  25867. name: "Front",
  25868. image: {
  25869. source: "./media/characters/nicky/front.svg",
  25870. extra: 3144 / 2886,
  25871. bottom: 45.6 / 3192
  25872. }
  25873. },
  25874. back: {
  25875. height: math.unit(5 + 10 / 12, "feet"),
  25876. weight: math.unit(165, "lb"),
  25877. name: "Back",
  25878. image: {
  25879. source: "./media/characters/nicky/back.svg",
  25880. extra: 3055 / 2804,
  25881. bottom: 28.4 / 3087
  25882. }
  25883. },
  25884. frontclothed: {
  25885. height: math.unit(5 + 10 / 12, "feet"),
  25886. weight: math.unit(165, "lb"),
  25887. name: "Front-clothed",
  25888. image: {
  25889. source: "./media/characters/nicky/front-clothed.svg",
  25890. extra: 3184.9 / 2926.9,
  25891. bottom: 86.5 / 3239.9
  25892. }
  25893. },
  25894. foot: {
  25895. height: math.unit(1.16, "feet"),
  25896. name: "Foot",
  25897. image: {
  25898. source: "./media/characters/nicky/foot.svg"
  25899. }
  25900. },
  25901. feet: {
  25902. height: math.unit(1.34, "feet"),
  25903. name: "Feet",
  25904. image: {
  25905. source: "./media/characters/nicky/feet.svg"
  25906. }
  25907. },
  25908. maw: {
  25909. height: math.unit(0.9, "feet"),
  25910. name: "Maw",
  25911. image: {
  25912. source: "./media/characters/nicky/maw.svg"
  25913. }
  25914. },
  25915. },
  25916. [
  25917. {
  25918. name: "Normal",
  25919. height: math.unit(5 + 10 / 12, "feet"),
  25920. default: true
  25921. },
  25922. {
  25923. name: "Macro",
  25924. height: math.unit(60, "feet")
  25925. },
  25926. {
  25927. name: "Megamacro",
  25928. height: math.unit(1, "mile")
  25929. },
  25930. ]
  25931. ))
  25932. characterMakers.push(() => makeCharacter(
  25933. { name: "Blair", species: ["seal"], tags: ["taur"] },
  25934. {
  25935. side: {
  25936. height: math.unit(10, "feet"),
  25937. weight: math.unit(600, "lb"),
  25938. name: "Side",
  25939. image: {
  25940. source: "./media/characters/blair/side.svg",
  25941. bottom: 16.6 / 475,
  25942. extra: 458 / 431
  25943. }
  25944. },
  25945. },
  25946. [
  25947. {
  25948. name: "Micro",
  25949. height: math.unit(8, "inches")
  25950. },
  25951. {
  25952. name: "Normal",
  25953. height: math.unit(10, "feet"),
  25954. default: true
  25955. },
  25956. {
  25957. name: "Macro",
  25958. height: math.unit(180, "feet")
  25959. },
  25960. ]
  25961. ))
  25962. characterMakers.push(() => makeCharacter(
  25963. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  25964. {
  25965. front: {
  25966. height: math.unit(5 + 4 / 12, "feet"),
  25967. weight: math.unit(125, "lb"),
  25968. name: "Front",
  25969. image: {
  25970. source: "./media/characters/fisher/front.svg",
  25971. extra: 444 / 390,
  25972. bottom: 2 / 444.8
  25973. }
  25974. },
  25975. },
  25976. [
  25977. {
  25978. name: "Micro",
  25979. height: math.unit(4, "inches")
  25980. },
  25981. {
  25982. name: "Normal",
  25983. height: math.unit(5 + 4 / 12, "feet"),
  25984. default: true
  25985. },
  25986. {
  25987. name: "Macro",
  25988. height: math.unit(100, "feet")
  25989. },
  25990. ]
  25991. ))
  25992. characterMakers.push(() => makeCharacter(
  25993. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  25994. {
  25995. front: {
  25996. height: math.unit(6.71, "feet"),
  25997. weight: math.unit(200, "lb"),
  25998. capacity: math.unit(1000000, "people"),
  25999. name: "Front",
  26000. image: {
  26001. source: "./media/characters/gliss/front.svg",
  26002. extra: 2347 / 2231,
  26003. bottom: 113 / 2462
  26004. }
  26005. },
  26006. hammerspaceSize: {
  26007. height: math.unit(6.71 * 717, "feet"),
  26008. weight: math.unit(200, "lb"),
  26009. capacity: math.unit(1000000, "people"),
  26010. name: "Hammerspace Size",
  26011. image: {
  26012. source: "./media/characters/gliss/front.svg",
  26013. extra: 2347 / 2231,
  26014. bottom: 113 / 2462
  26015. }
  26016. },
  26017. },
  26018. [
  26019. {
  26020. name: "Normal",
  26021. height: math.unit(6.71, "feet"),
  26022. default: true
  26023. },
  26024. ]
  26025. ))
  26026. characterMakers.push(() => makeCharacter(
  26027. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  26028. {
  26029. side: {
  26030. height: math.unit(1.44, "m"),
  26031. weight: math.unit(80, "kg"),
  26032. name: "Side",
  26033. image: {
  26034. source: "./media/characters/dune-anderson/side.svg",
  26035. bottom: 49 / 1426
  26036. }
  26037. },
  26038. },
  26039. [
  26040. {
  26041. name: "Wolf-sized",
  26042. height: math.unit(1.44, "meters")
  26043. },
  26044. {
  26045. name: "Normal",
  26046. height: math.unit(5.05, "meters"),
  26047. default: true
  26048. },
  26049. {
  26050. name: "Big",
  26051. height: math.unit(14.4, "meters")
  26052. },
  26053. {
  26054. name: "Huge",
  26055. height: math.unit(144, "meters")
  26056. },
  26057. ]
  26058. ))
  26059. characterMakers.push(() => makeCharacter(
  26060. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  26061. {
  26062. front: {
  26063. height: math.unit(7, "feet"),
  26064. weight: math.unit(425, "lb"),
  26065. name: "Front",
  26066. image: {
  26067. source: "./media/characters/hind/front.svg",
  26068. extra: 2091 / 1860,
  26069. bottom: 129 / 2220
  26070. }
  26071. },
  26072. back: {
  26073. height: math.unit(7, "feet"),
  26074. weight: math.unit(425, "lb"),
  26075. name: "Back",
  26076. image: {
  26077. source: "./media/characters/hind/back.svg",
  26078. extra: 2091 / 1860,
  26079. bottom: 24.6 / 2309
  26080. }
  26081. },
  26082. tail: {
  26083. height: math.unit(2.8, "feet"),
  26084. name: "Tail",
  26085. image: {
  26086. source: "./media/characters/hind/tail.svg"
  26087. }
  26088. },
  26089. head: {
  26090. height: math.unit(2.55, "feet"),
  26091. name: "Head",
  26092. image: {
  26093. source: "./media/characters/hind/head.svg"
  26094. }
  26095. },
  26096. },
  26097. [
  26098. {
  26099. name: "XS",
  26100. height: math.unit(0.7, "feet")
  26101. },
  26102. {
  26103. name: "Normal",
  26104. height: math.unit(7, "feet"),
  26105. default: true
  26106. },
  26107. {
  26108. name: "XL",
  26109. height: math.unit(70, "feet")
  26110. },
  26111. ]
  26112. ))
  26113. characterMakers.push(() => makeCharacter(
  26114. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  26115. {
  26116. front: {
  26117. height: math.unit(2.1, "meters"),
  26118. weight: math.unit(150, "lb"),
  26119. name: "Front",
  26120. image: {
  26121. source: "./media/characters/tharquench-sizestealer/front.svg",
  26122. extra: 1605/1470,
  26123. bottom: 36/1641
  26124. }
  26125. },
  26126. frontAlt: {
  26127. height: math.unit(2.1, "meters"),
  26128. weight: math.unit(150, "lb"),
  26129. name: "Front (Alt)",
  26130. image: {
  26131. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  26132. extra: 2318 / 2063,
  26133. bottom: 93.4 / 2410
  26134. }
  26135. },
  26136. },
  26137. [
  26138. {
  26139. name: "Nano",
  26140. height: math.unit(1, "mm")
  26141. },
  26142. {
  26143. name: "Micro",
  26144. height: math.unit(1, "cm")
  26145. },
  26146. {
  26147. name: "Normal",
  26148. height: math.unit(2.1, "meters"),
  26149. default: true
  26150. },
  26151. ]
  26152. ))
  26153. characterMakers.push(() => makeCharacter(
  26154. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  26155. {
  26156. front: {
  26157. height: math.unit(7 + 5 / 12, "feet"),
  26158. weight: math.unit(357, "lb"),
  26159. name: "Front",
  26160. image: {
  26161. source: "./media/characters/solex-draconov/front.svg",
  26162. extra: 1993 / 1865,
  26163. bottom: 117 / 2111
  26164. }
  26165. },
  26166. },
  26167. [
  26168. {
  26169. name: "Natural Height",
  26170. height: math.unit(7 + 5 / 12, "feet"),
  26171. default: true
  26172. },
  26173. {
  26174. name: "Macro",
  26175. height: math.unit(350, "feet")
  26176. },
  26177. {
  26178. name: "Macro+",
  26179. height: math.unit(1000, "feet")
  26180. },
  26181. {
  26182. name: "Megamacro",
  26183. height: math.unit(20, "km")
  26184. },
  26185. {
  26186. name: "Megamacro+",
  26187. height: math.unit(1000, "km")
  26188. },
  26189. {
  26190. name: "Gigamacro",
  26191. height: math.unit(2.5, "Gm")
  26192. },
  26193. {
  26194. name: "Teramacro",
  26195. height: math.unit(15, "Tm")
  26196. },
  26197. {
  26198. name: "Galactic",
  26199. height: math.unit(30, "Zm")
  26200. },
  26201. {
  26202. name: "Universal",
  26203. height: math.unit(21000, "Ym")
  26204. },
  26205. {
  26206. name: "Omniversal",
  26207. height: math.unit(9.861e50, "Ym")
  26208. },
  26209. {
  26210. name: "Existential",
  26211. height: math.unit(1e300, "meters")
  26212. },
  26213. ]
  26214. ))
  26215. characterMakers.push(() => makeCharacter(
  26216. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  26217. {
  26218. side: {
  26219. height: math.unit(25, "feet"),
  26220. weight: math.unit(90000, "lb"),
  26221. name: "Side",
  26222. image: {
  26223. source: "./media/characters/mandarax/side.svg",
  26224. extra: 614 / 332,
  26225. bottom: 55 / 630
  26226. }
  26227. },
  26228. lounging: {
  26229. height: math.unit(15.4, "feet"),
  26230. weight: math.unit(90000, "lb"),
  26231. name: "Lounging",
  26232. image: {
  26233. source: "./media/characters/mandarax/lounging.svg",
  26234. extra: 817/609,
  26235. bottom: 685/1502
  26236. }
  26237. },
  26238. head: {
  26239. height: math.unit(11.4, "feet"),
  26240. name: "Head",
  26241. image: {
  26242. source: "./media/characters/mandarax/head.svg"
  26243. }
  26244. },
  26245. belly: {
  26246. height: math.unit(33, "feet"),
  26247. name: "Belly",
  26248. capacity: math.unit(500, "people"),
  26249. image: {
  26250. source: "./media/characters/mandarax/belly.svg"
  26251. }
  26252. },
  26253. dick: {
  26254. height: math.unit(8.46, "feet"),
  26255. name: "Dick",
  26256. image: {
  26257. source: "./media/characters/mandarax/dick.svg"
  26258. }
  26259. },
  26260. top: {
  26261. height: math.unit(28, "meters"),
  26262. name: "Top",
  26263. image: {
  26264. source: "./media/characters/mandarax/top.svg"
  26265. }
  26266. },
  26267. },
  26268. [
  26269. {
  26270. name: "Normal",
  26271. height: math.unit(25, "feet"),
  26272. default: true
  26273. },
  26274. ]
  26275. ))
  26276. characterMakers.push(() => makeCharacter(
  26277. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  26278. {
  26279. front: {
  26280. height: math.unit(5, "feet"),
  26281. weight: math.unit(90, "lb"),
  26282. name: "Front",
  26283. image: {
  26284. source: "./media/characters/pixil/front.svg",
  26285. extra: 2000 / 1618,
  26286. bottom: 12.3 / 2011
  26287. }
  26288. },
  26289. },
  26290. [
  26291. {
  26292. name: "Normal",
  26293. height: math.unit(5, "feet"),
  26294. default: true
  26295. },
  26296. {
  26297. name: "Megamacro",
  26298. height: math.unit(10, "miles"),
  26299. },
  26300. ]
  26301. ))
  26302. characterMakers.push(() => makeCharacter(
  26303. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  26304. {
  26305. front: {
  26306. height: math.unit(7 + 2 / 12, "feet"),
  26307. weight: math.unit(200, "lb"),
  26308. name: "Front",
  26309. image: {
  26310. source: "./media/characters/angel/front.svg",
  26311. extra: 1830 / 1737,
  26312. bottom: 22.6 / 1854,
  26313. }
  26314. },
  26315. },
  26316. [
  26317. {
  26318. name: "Normal",
  26319. height: math.unit(7 + 2 / 12, "feet"),
  26320. default: true
  26321. },
  26322. {
  26323. name: "Macro",
  26324. height: math.unit(1000, "feet")
  26325. },
  26326. {
  26327. name: "Megamacro",
  26328. height: math.unit(2, "miles")
  26329. },
  26330. {
  26331. name: "Gigamacro",
  26332. height: math.unit(20, "earths")
  26333. },
  26334. ]
  26335. ))
  26336. characterMakers.push(() => makeCharacter(
  26337. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  26338. {
  26339. front: {
  26340. height: math.unit(5, "feet"),
  26341. weight: math.unit(180, "lb"),
  26342. name: "Front",
  26343. image: {
  26344. source: "./media/characters/mekana/front.svg",
  26345. extra: 1671 / 1605,
  26346. bottom: 3.5 / 1691
  26347. }
  26348. },
  26349. side: {
  26350. height: math.unit(5, "feet"),
  26351. weight: math.unit(180, "lb"),
  26352. name: "Side",
  26353. image: {
  26354. source: "./media/characters/mekana/side.svg",
  26355. extra: 1671 / 1605,
  26356. bottom: 3.5 / 1691
  26357. }
  26358. },
  26359. back: {
  26360. height: math.unit(5, "feet"),
  26361. weight: math.unit(180, "lb"),
  26362. name: "Back",
  26363. image: {
  26364. source: "./media/characters/mekana/back.svg",
  26365. extra: 1671 / 1605,
  26366. bottom: 3.5 / 1691
  26367. }
  26368. },
  26369. },
  26370. [
  26371. {
  26372. name: "Normal",
  26373. height: math.unit(5, "feet"),
  26374. default: true
  26375. },
  26376. ]
  26377. ))
  26378. characterMakers.push(() => makeCharacter(
  26379. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  26380. {
  26381. front: {
  26382. height: math.unit(4 + 6 / 12, "feet"),
  26383. weight: math.unit(80, "lb"),
  26384. name: "Front",
  26385. image: {
  26386. source: "./media/characters/pixie/front.svg",
  26387. extra: 1924 / 1825,
  26388. bottom: 22.4 / 1946
  26389. }
  26390. },
  26391. },
  26392. [
  26393. {
  26394. name: "Normal",
  26395. height: math.unit(4 + 6 / 12, "feet"),
  26396. default: true
  26397. },
  26398. {
  26399. name: "Macro",
  26400. height: math.unit(40, "feet")
  26401. },
  26402. ]
  26403. ))
  26404. characterMakers.push(() => makeCharacter(
  26405. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  26406. {
  26407. front: {
  26408. height: math.unit(2.1, "meters"),
  26409. weight: math.unit(200, "lb"),
  26410. name: "Front",
  26411. image: {
  26412. source: "./media/characters/the-lascivious/front.svg",
  26413. extra: 1 / 0.893,
  26414. bottom: 3.5 / 573.7
  26415. }
  26416. },
  26417. },
  26418. [
  26419. {
  26420. name: "Human Scale",
  26421. height: math.unit(2.1, "meters")
  26422. },
  26423. {
  26424. name: "Wolxi Scale",
  26425. height: math.unit(46.2, "m"),
  26426. default: true
  26427. },
  26428. {
  26429. name: "Boinker of Buildings",
  26430. height: math.unit(10, "km")
  26431. },
  26432. {
  26433. name: "Shagger of Skyscrapers",
  26434. height: math.unit(40, "km")
  26435. },
  26436. {
  26437. name: "Banger of Boroughs",
  26438. height: math.unit(4000, "km")
  26439. },
  26440. {
  26441. name: "Screwer of States",
  26442. height: math.unit(100000, "km")
  26443. },
  26444. {
  26445. name: "Pounder of Planets",
  26446. height: math.unit(2000000, "km")
  26447. },
  26448. ]
  26449. ))
  26450. characterMakers.push(() => makeCharacter(
  26451. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  26452. {
  26453. front: {
  26454. height: math.unit(6, "feet"),
  26455. weight: math.unit(150, "lb"),
  26456. name: "Front",
  26457. image: {
  26458. source: "./media/characters/aj/front.svg",
  26459. extra: 2039 / 1562,
  26460. bottom: 40 / 2079
  26461. }
  26462. },
  26463. },
  26464. [
  26465. {
  26466. name: "Normal",
  26467. height: math.unit(11 + 6 / 12, "feet"),
  26468. default: true
  26469. },
  26470. {
  26471. name: "Megamacro",
  26472. height: math.unit(60, "megameters")
  26473. },
  26474. ]
  26475. ))
  26476. characterMakers.push(() => makeCharacter(
  26477. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  26478. {
  26479. side: {
  26480. height: math.unit(31 + 8 / 12, "feet"),
  26481. weight: math.unit(75000, "kg"),
  26482. name: "Side",
  26483. image: {
  26484. source: "./media/characters/koros/side.svg",
  26485. extra: 1442 / 1297,
  26486. bottom: 122.7 / 1562
  26487. }
  26488. },
  26489. dicksKingsCrown: {
  26490. height: math.unit(6, "feet"),
  26491. name: "Dicks (King's Crown)",
  26492. image: {
  26493. source: "./media/characters/koros/dicks-kings-crown.svg"
  26494. }
  26495. },
  26496. dicksTailSet: {
  26497. height: math.unit(3, "feet"),
  26498. name: "Dicks (Tail Set)",
  26499. image: {
  26500. source: "./media/characters/koros/dicks-tail-set.svg"
  26501. }
  26502. },
  26503. dickCumming: {
  26504. height: math.unit(7.98, "feet"),
  26505. name: "Dick (Cumming)",
  26506. image: {
  26507. source: "./media/characters/koros/dick-cumming.svg"
  26508. }
  26509. },
  26510. dicksBack: {
  26511. height: math.unit(5.9, "feet"),
  26512. name: "Dicks (Back)",
  26513. image: {
  26514. source: "./media/characters/koros/dicks-back.svg"
  26515. }
  26516. },
  26517. dicksFront: {
  26518. height: math.unit(3.72, "feet"),
  26519. name: "Dicks (Front)",
  26520. image: {
  26521. source: "./media/characters/koros/dicks-front.svg"
  26522. }
  26523. },
  26524. dicksPeeking: {
  26525. height: math.unit(3.0, "feet"),
  26526. name: "Dicks (Peeking)",
  26527. image: {
  26528. source: "./media/characters/koros/dicks-peeking.svg"
  26529. }
  26530. },
  26531. eye: {
  26532. height: math.unit(1.7, "feet"),
  26533. name: "Eye",
  26534. image: {
  26535. source: "./media/characters/koros/eye.svg"
  26536. }
  26537. },
  26538. headFront: {
  26539. height: math.unit(11.69, "feet"),
  26540. name: "Head (Front)",
  26541. image: {
  26542. source: "./media/characters/koros/head-front.svg"
  26543. }
  26544. },
  26545. headSide: {
  26546. height: math.unit(14, "feet"),
  26547. name: "Head (Side)",
  26548. image: {
  26549. source: "./media/characters/koros/head-side.svg"
  26550. }
  26551. },
  26552. leg: {
  26553. height: math.unit(17, "feet"),
  26554. name: "Leg",
  26555. image: {
  26556. source: "./media/characters/koros/leg.svg"
  26557. }
  26558. },
  26559. mawSide: {
  26560. height: math.unit(12.8, "feet"),
  26561. name: "Maw (Side)",
  26562. image: {
  26563. source: "./media/characters/koros/maw-side.svg"
  26564. }
  26565. },
  26566. mawSpitting: {
  26567. height: math.unit(17, "feet"),
  26568. name: "Maw (Spitting)",
  26569. image: {
  26570. source: "./media/characters/koros/maw-spitting.svg"
  26571. }
  26572. },
  26573. slit: {
  26574. height: math.unit(2.8, "feet"),
  26575. name: "Slit",
  26576. image: {
  26577. source: "./media/characters/koros/slit.svg"
  26578. }
  26579. },
  26580. stomach: {
  26581. height: math.unit(6.8, "feet"),
  26582. capacity: math.unit(20, "people"),
  26583. name: "Stomach",
  26584. image: {
  26585. source: "./media/characters/koros/stomach.svg"
  26586. }
  26587. },
  26588. wingspanBottom: {
  26589. height: math.unit(114, "feet"),
  26590. name: "Wingspan (Bottom)",
  26591. image: {
  26592. source: "./media/characters/koros/wingspan-bottom.svg"
  26593. }
  26594. },
  26595. wingspanTop: {
  26596. height: math.unit(104, "feet"),
  26597. name: "Wingspan (Top)",
  26598. image: {
  26599. source: "./media/characters/koros/wingspan-top.svg"
  26600. }
  26601. },
  26602. },
  26603. [
  26604. {
  26605. name: "Normal",
  26606. height: math.unit(31 + 8 / 12, "feet"),
  26607. default: true
  26608. },
  26609. ]
  26610. ))
  26611. characterMakers.push(() => makeCharacter(
  26612. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  26613. {
  26614. front: {
  26615. height: math.unit(18 + 5 / 12, "feet"),
  26616. weight: math.unit(3750, "kg"),
  26617. name: "Front",
  26618. image: {
  26619. source: "./media/characters/vexx/front.svg",
  26620. extra: 426 / 396,
  26621. bottom: 31.5 / 458
  26622. }
  26623. },
  26624. maw: {
  26625. height: math.unit(6, "feet"),
  26626. name: "Maw",
  26627. image: {
  26628. source: "./media/characters/vexx/maw.svg"
  26629. }
  26630. },
  26631. },
  26632. [
  26633. {
  26634. name: "Normal",
  26635. height: math.unit(18 + 5 / 12, "feet"),
  26636. default: true
  26637. },
  26638. ]
  26639. ))
  26640. characterMakers.push(() => makeCharacter(
  26641. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  26642. {
  26643. front: {
  26644. height: math.unit(17 + 6 / 12, "feet"),
  26645. weight: math.unit(150, "lb"),
  26646. name: "Front",
  26647. image: {
  26648. source: "./media/characters/baadra/front.svg",
  26649. extra: 1694/1553,
  26650. bottom: 179/1873
  26651. }
  26652. },
  26653. frontAlt: {
  26654. height: math.unit(17 + 6 / 12, "feet"),
  26655. weight: math.unit(150, "lb"),
  26656. name: "Front (Alt)",
  26657. image: {
  26658. source: "./media/characters/baadra/front-alt.svg",
  26659. extra: 3137 / 2890,
  26660. bottom: 168.4 / 3305
  26661. }
  26662. },
  26663. back: {
  26664. height: math.unit(17 + 6 / 12, "feet"),
  26665. weight: math.unit(150, "lb"),
  26666. name: "Back",
  26667. image: {
  26668. source: "./media/characters/baadra/back.svg",
  26669. extra: 3142 / 2890,
  26670. bottom: 220 / 3371
  26671. }
  26672. },
  26673. head: {
  26674. height: math.unit(5.45, "feet"),
  26675. name: "Head",
  26676. image: {
  26677. source: "./media/characters/baadra/head.svg"
  26678. }
  26679. },
  26680. headAngry: {
  26681. height: math.unit(4.95, "feet"),
  26682. name: "Head (Angry)",
  26683. image: {
  26684. source: "./media/characters/baadra/head-angry.svg"
  26685. }
  26686. },
  26687. headOpen: {
  26688. height: math.unit(6, "feet"),
  26689. name: "Head (Open)",
  26690. image: {
  26691. source: "./media/characters/baadra/head-open.svg"
  26692. }
  26693. },
  26694. },
  26695. [
  26696. {
  26697. name: "Normal",
  26698. height: math.unit(17 + 6 / 12, "feet"),
  26699. default: true
  26700. },
  26701. ]
  26702. ))
  26703. characterMakers.push(() => makeCharacter(
  26704. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  26705. {
  26706. front: {
  26707. height: math.unit(7 + 3 / 12, "feet"),
  26708. weight: math.unit(180, "lb"),
  26709. name: "Front",
  26710. image: {
  26711. source: "./media/characters/juri/front.svg",
  26712. extra: 1401 / 1237,
  26713. bottom: 18.5 / 1418
  26714. }
  26715. },
  26716. side: {
  26717. height: math.unit(7 + 3 / 12, "feet"),
  26718. weight: math.unit(180, "lb"),
  26719. name: "Side",
  26720. image: {
  26721. source: "./media/characters/juri/side.svg",
  26722. extra: 1424 / 1242,
  26723. bottom: 18.5 / 1447
  26724. }
  26725. },
  26726. sitting: {
  26727. height: math.unit(6, "feet"),
  26728. weight: math.unit(180, "lb"),
  26729. name: "Sitting",
  26730. image: {
  26731. source: "./media/characters/juri/sitting.svg",
  26732. extra: 1270 / 1143,
  26733. bottom: 100 / 1343
  26734. }
  26735. },
  26736. back: {
  26737. height: math.unit(7 + 3 / 12, "feet"),
  26738. weight: math.unit(180, "lb"),
  26739. name: "Back",
  26740. image: {
  26741. source: "./media/characters/juri/back.svg",
  26742. extra: 1377 / 1240,
  26743. bottom: 23.7 / 1405
  26744. }
  26745. },
  26746. maw: {
  26747. height: math.unit(2.8, "feet"),
  26748. name: "Maw",
  26749. image: {
  26750. source: "./media/characters/juri/maw.svg"
  26751. }
  26752. },
  26753. stomach: {
  26754. height: math.unit(0.89, "feet"),
  26755. capacity: math.unit(4, "liters"),
  26756. name: "Stomach",
  26757. image: {
  26758. source: "./media/characters/juri/stomach.svg"
  26759. }
  26760. },
  26761. },
  26762. [
  26763. {
  26764. name: "Normal",
  26765. height: math.unit(7 + 3 / 12, "feet"),
  26766. default: true
  26767. },
  26768. ]
  26769. ))
  26770. characterMakers.push(() => makeCharacter(
  26771. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  26772. {
  26773. fox: {
  26774. height: math.unit(5 + 6 / 12, "feet"),
  26775. weight: math.unit(140, "lb"),
  26776. name: "Fox",
  26777. image: {
  26778. source: "./media/characters/maxene-sita/fox.svg",
  26779. extra: 146 / 138,
  26780. bottom: 2.1 / 148.19
  26781. }
  26782. },
  26783. foxLaying: {
  26784. height: math.unit(1.70, "feet"),
  26785. weight: math.unit(140, "lb"),
  26786. name: "Fox (Laying)",
  26787. image: {
  26788. source: "./media/characters/maxene-sita/fox-laying.svg",
  26789. extra: 910 / 572,
  26790. bottom: 71 / 981
  26791. }
  26792. },
  26793. kitsune: {
  26794. height: math.unit(10, "feet"),
  26795. weight: math.unit(800, "lb"),
  26796. name: "Kitsune",
  26797. image: {
  26798. source: "./media/characters/maxene-sita/kitsune.svg",
  26799. extra: 185 / 176,
  26800. bottom: 4.7 / 189.9
  26801. }
  26802. },
  26803. hellhound: {
  26804. height: math.unit(10, "feet"),
  26805. weight: math.unit(700, "lb"),
  26806. name: "Hellhound",
  26807. image: {
  26808. source: "./media/characters/maxene-sita/hellhound.svg",
  26809. extra: 1600 / 1545,
  26810. bottom: 81 / 1681
  26811. }
  26812. },
  26813. },
  26814. [
  26815. {
  26816. name: "Normal",
  26817. height: math.unit(5 + 6 / 12, "feet"),
  26818. default: true
  26819. },
  26820. ]
  26821. ))
  26822. characterMakers.push(() => makeCharacter(
  26823. { name: "Maia", species: ["mew"], tags: ["feral"] },
  26824. {
  26825. front: {
  26826. height: math.unit(3 + 4 / 12, "feet"),
  26827. weight: math.unit(70, "lb"),
  26828. name: "Front",
  26829. image: {
  26830. source: "./media/characters/maia/front.svg",
  26831. extra: 227 / 219.5,
  26832. bottom: 40 / 267
  26833. }
  26834. },
  26835. back: {
  26836. height: math.unit(3 + 4 / 12, "feet"),
  26837. weight: math.unit(70, "lb"),
  26838. name: "Back",
  26839. image: {
  26840. source: "./media/characters/maia/back.svg",
  26841. extra: 237 / 225
  26842. }
  26843. },
  26844. },
  26845. [
  26846. {
  26847. name: "Normal",
  26848. height: math.unit(3 + 4 / 12, "feet"),
  26849. default: true
  26850. },
  26851. ]
  26852. ))
  26853. characterMakers.push(() => makeCharacter(
  26854. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  26855. {
  26856. front: {
  26857. height: math.unit(5 + 10 / 12, "feet"),
  26858. weight: math.unit(197, "lb"),
  26859. name: "Front",
  26860. image: {
  26861. source: "./media/characters/jabaro/front.svg",
  26862. extra: 225 / 216,
  26863. bottom: 5.06 / 230
  26864. }
  26865. },
  26866. back: {
  26867. height: math.unit(5 + 10 / 12, "feet"),
  26868. weight: math.unit(197, "lb"),
  26869. name: "Back",
  26870. image: {
  26871. source: "./media/characters/jabaro/back.svg",
  26872. extra: 225 / 219,
  26873. bottom: 1.9 / 227
  26874. }
  26875. },
  26876. },
  26877. [
  26878. {
  26879. name: "Normal",
  26880. height: math.unit(5 + 10 / 12, "feet"),
  26881. default: true
  26882. },
  26883. ]
  26884. ))
  26885. characterMakers.push(() => makeCharacter(
  26886. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  26887. {
  26888. front: {
  26889. height: math.unit(5 + 8 / 12, "feet"),
  26890. weight: math.unit(139, "lb"),
  26891. name: "Front",
  26892. image: {
  26893. source: "./media/characters/risa/front.svg",
  26894. extra: 270 / 260,
  26895. bottom: 11.2 / 282
  26896. }
  26897. },
  26898. back: {
  26899. height: math.unit(5 + 8 / 12, "feet"),
  26900. weight: math.unit(139, "lb"),
  26901. name: "Back",
  26902. image: {
  26903. source: "./media/characters/risa/back.svg",
  26904. extra: 264 / 255,
  26905. bottom: 4 / 268
  26906. }
  26907. },
  26908. },
  26909. [
  26910. {
  26911. name: "Normal",
  26912. height: math.unit(5 + 8 / 12, "feet"),
  26913. default: true
  26914. },
  26915. ]
  26916. ))
  26917. characterMakers.push(() => makeCharacter(
  26918. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  26919. {
  26920. front: {
  26921. height: math.unit(2 + 11 / 12, "feet"),
  26922. weight: math.unit(30, "lb"),
  26923. name: "Front",
  26924. image: {
  26925. source: "./media/characters/weatley/front.svg",
  26926. bottom: 10.7 / 414,
  26927. extra: 403.5 / 362
  26928. }
  26929. },
  26930. back: {
  26931. height: math.unit(2 + 11 / 12, "feet"),
  26932. weight: math.unit(30, "lb"),
  26933. name: "Back",
  26934. image: {
  26935. source: "./media/characters/weatley/back.svg",
  26936. bottom: 10.7 / 414,
  26937. extra: 403.5 / 362
  26938. }
  26939. },
  26940. },
  26941. [
  26942. {
  26943. name: "Normal",
  26944. height: math.unit(2 + 11 / 12, "feet"),
  26945. default: true
  26946. },
  26947. ]
  26948. ))
  26949. characterMakers.push(() => makeCharacter(
  26950. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  26951. {
  26952. front: {
  26953. height: math.unit(5 + 2 / 12, "feet"),
  26954. weight: math.unit(50, "kg"),
  26955. name: "Front",
  26956. image: {
  26957. source: "./media/characters/mercury-crescent/front.svg",
  26958. extra: 1088 / 1033,
  26959. bottom: 18.9 / 1109
  26960. }
  26961. },
  26962. },
  26963. [
  26964. {
  26965. name: "Normal",
  26966. height: math.unit(5 + 2 / 12, "feet"),
  26967. default: true
  26968. },
  26969. ]
  26970. ))
  26971. characterMakers.push(() => makeCharacter(
  26972. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  26973. {
  26974. front: {
  26975. height: math.unit(2, "feet"),
  26976. weight: math.unit(15, "kg"),
  26977. name: "Front",
  26978. image: {
  26979. source: "./media/characters/diamond-jones/front.svg",
  26980. extra: 727/723,
  26981. bottom: 46/773
  26982. }
  26983. },
  26984. },
  26985. [
  26986. {
  26987. name: "Normal",
  26988. height: math.unit(2, "feet"),
  26989. default: true
  26990. },
  26991. ]
  26992. ))
  26993. characterMakers.push(() => makeCharacter(
  26994. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  26995. {
  26996. front: {
  26997. height: math.unit(3, "feet"),
  26998. weight: math.unit(30, "kg"),
  26999. name: "Front",
  27000. image: {
  27001. source: "./media/characters/sweet-bit/front.svg",
  27002. extra: 675 / 567,
  27003. bottom: 27.7 / 703
  27004. }
  27005. },
  27006. },
  27007. [
  27008. {
  27009. name: "Normal",
  27010. height: math.unit(3, "feet"),
  27011. default: true
  27012. },
  27013. ]
  27014. ))
  27015. characterMakers.push(() => makeCharacter(
  27016. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  27017. {
  27018. side: {
  27019. height: math.unit(9.178, "feet"),
  27020. weight: math.unit(500, "lb"),
  27021. name: "Side",
  27022. image: {
  27023. source: "./media/characters/umbrazen/side.svg",
  27024. extra: 1730 / 1473,
  27025. bottom: 34.6 / 1765
  27026. }
  27027. },
  27028. },
  27029. [
  27030. {
  27031. name: "Normal",
  27032. height: math.unit(9.178, "feet"),
  27033. default: true
  27034. },
  27035. ]
  27036. ))
  27037. characterMakers.push(() => makeCharacter(
  27038. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  27039. {
  27040. front: {
  27041. height: math.unit(10, "feet"),
  27042. weight: math.unit(750, "lb"),
  27043. name: "Front",
  27044. image: {
  27045. source: "./media/characters/arlist/front.svg",
  27046. extra: 961 / 778,
  27047. bottom: 6.2 / 986
  27048. }
  27049. },
  27050. },
  27051. [
  27052. {
  27053. name: "Normal",
  27054. height: math.unit(10, "feet"),
  27055. default: true
  27056. },
  27057. ]
  27058. ))
  27059. characterMakers.push(() => makeCharacter(
  27060. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  27061. {
  27062. front: {
  27063. height: math.unit(5 + 1 / 12, "feet"),
  27064. weight: math.unit(110, "lb"),
  27065. name: "Front",
  27066. image: {
  27067. source: "./media/characters/aradel/front.svg",
  27068. extra: 324 / 303,
  27069. bottom: 3.6 / 329.4
  27070. }
  27071. },
  27072. },
  27073. [
  27074. {
  27075. name: "Normal",
  27076. height: math.unit(5 + 1 / 12, "feet"),
  27077. default: true
  27078. },
  27079. ]
  27080. ))
  27081. characterMakers.push(() => makeCharacter(
  27082. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  27083. {
  27084. dressed: {
  27085. height: math.unit(3 + 8 / 12, "feet"),
  27086. weight: math.unit(50, "lb"),
  27087. name: "Dressed",
  27088. image: {
  27089. source: "./media/characters/serryn/dressed.svg",
  27090. extra: 1792 / 1656,
  27091. bottom: 43.5 / 1840
  27092. }
  27093. },
  27094. nude: {
  27095. height: math.unit(3 + 8 / 12, "feet"),
  27096. weight: math.unit(50, "lb"),
  27097. name: "Nude",
  27098. image: {
  27099. source: "./media/characters/serryn/nude.svg",
  27100. extra: 1792 / 1656,
  27101. bottom: 43.5 / 1840
  27102. }
  27103. },
  27104. },
  27105. [
  27106. {
  27107. name: "Normal",
  27108. height: math.unit(3 + 8 / 12, "feet"),
  27109. default: true
  27110. },
  27111. ]
  27112. ))
  27113. characterMakers.push(() => makeCharacter(
  27114. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  27115. {
  27116. front: {
  27117. height: math.unit(7 + 10 / 12, "feet"),
  27118. weight: math.unit(255, "lb"),
  27119. name: "Front",
  27120. image: {
  27121. source: "./media/characters/xavier-thyme/front.svg",
  27122. extra: 3733 / 3642,
  27123. bottom: 131 / 3869
  27124. }
  27125. },
  27126. frontRaven: {
  27127. height: math.unit(7 + 10 / 12, "feet"),
  27128. weight: math.unit(255, "lb"),
  27129. name: "Front (Raven)",
  27130. image: {
  27131. source: "./media/characters/xavier-thyme/front-raven.svg",
  27132. extra: 4385 / 3642,
  27133. bottom: 131 / 4517
  27134. }
  27135. },
  27136. },
  27137. [
  27138. {
  27139. name: "Normal",
  27140. height: math.unit(7 + 10 / 12, "feet"),
  27141. default: true
  27142. },
  27143. ]
  27144. ))
  27145. characterMakers.push(() => makeCharacter(
  27146. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  27147. {
  27148. front: {
  27149. height: math.unit(1.6, "m"),
  27150. weight: math.unit(50, "kg"),
  27151. name: "Front",
  27152. image: {
  27153. source: "./media/characters/kiki/front.svg",
  27154. extra: 4682 / 3610,
  27155. bottom: 115 / 4777
  27156. }
  27157. },
  27158. },
  27159. [
  27160. {
  27161. name: "Normal",
  27162. height: math.unit(1.6, "meters"),
  27163. default: true
  27164. },
  27165. ]
  27166. ))
  27167. characterMakers.push(() => makeCharacter(
  27168. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  27169. {
  27170. front: {
  27171. height: math.unit(50, "m"),
  27172. weight: math.unit(500, "tonnes"),
  27173. name: "Front",
  27174. image: {
  27175. source: "./media/characters/ryoko/front.svg",
  27176. extra: 4632 / 3926,
  27177. bottom: 193 / 4823
  27178. }
  27179. },
  27180. },
  27181. [
  27182. {
  27183. name: "Normal",
  27184. height: math.unit(50, "meters"),
  27185. default: true
  27186. },
  27187. ]
  27188. ))
  27189. characterMakers.push(() => makeCharacter(
  27190. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  27191. {
  27192. front: {
  27193. height: math.unit(30, "m"),
  27194. weight: math.unit(22, "tonnes"),
  27195. name: "Front",
  27196. image: {
  27197. source: "./media/characters/elio/front.svg",
  27198. extra: 4582 / 3720,
  27199. bottom: 236 / 4828
  27200. }
  27201. },
  27202. },
  27203. [
  27204. {
  27205. name: "Normal",
  27206. height: math.unit(30, "meters"),
  27207. default: true
  27208. },
  27209. ]
  27210. ))
  27211. characterMakers.push(() => makeCharacter(
  27212. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  27213. {
  27214. front: {
  27215. height: math.unit(6 + 3 / 12, "feet"),
  27216. weight: math.unit(120, "lb"),
  27217. name: "Front",
  27218. image: {
  27219. source: "./media/characters/azura/front.svg",
  27220. extra: 1149 / 1135,
  27221. bottom: 45 / 1194
  27222. }
  27223. },
  27224. frontClothed: {
  27225. height: math.unit(6 + 3 / 12, "feet"),
  27226. weight: math.unit(120, "lb"),
  27227. name: "Front (Clothed)",
  27228. image: {
  27229. source: "./media/characters/azura/front-clothed.svg",
  27230. extra: 1149 / 1135,
  27231. bottom: 45 / 1194
  27232. }
  27233. },
  27234. },
  27235. [
  27236. {
  27237. name: "Normal",
  27238. height: math.unit(6 + 3 / 12, "feet"),
  27239. default: true
  27240. },
  27241. {
  27242. name: "Macro",
  27243. height: math.unit(20 + 6 / 12, "feet")
  27244. },
  27245. {
  27246. name: "Megamacro",
  27247. height: math.unit(12, "miles")
  27248. },
  27249. {
  27250. name: "Gigamacro",
  27251. height: math.unit(10000, "miles")
  27252. },
  27253. {
  27254. name: "Teramacro",
  27255. height: math.unit(900000, "miles")
  27256. },
  27257. ]
  27258. ))
  27259. characterMakers.push(() => makeCharacter(
  27260. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  27261. {
  27262. front: {
  27263. height: math.unit(12, "feet"),
  27264. weight: math.unit(1, "ton"),
  27265. capacity: math.unit(660000, "gallons"),
  27266. name: "Front",
  27267. image: {
  27268. source: "./media/characters/zeus/front.svg",
  27269. extra: 5005 / 4717,
  27270. bottom: 363 / 5388
  27271. }
  27272. },
  27273. },
  27274. [
  27275. {
  27276. name: "Normal",
  27277. height: math.unit(12, "feet")
  27278. },
  27279. {
  27280. name: "Preferred Size",
  27281. height: math.unit(0.5, "miles"),
  27282. default: true
  27283. },
  27284. {
  27285. name: "Giga Horse",
  27286. height: math.unit(300, "miles")
  27287. },
  27288. {
  27289. name: "Riding Planets",
  27290. height: math.unit(30, "megameters")
  27291. },
  27292. {
  27293. name: "Cosmic Giant",
  27294. height: math.unit(3, "zettameters")
  27295. },
  27296. {
  27297. name: "Breeding God",
  27298. height: math.unit(9.92e22, "yottameters")
  27299. },
  27300. ]
  27301. ))
  27302. characterMakers.push(() => makeCharacter(
  27303. { name: "Fang", species: ["monster"], tags: ["feral"] },
  27304. {
  27305. side: {
  27306. height: math.unit(9, "feet"),
  27307. weight: math.unit(1500, "kg"),
  27308. name: "Side",
  27309. image: {
  27310. source: "./media/characters/fang/side.svg",
  27311. extra: 924 / 866,
  27312. bottom: 47.5 / 972.3
  27313. }
  27314. },
  27315. },
  27316. [
  27317. {
  27318. name: "Normal",
  27319. height: math.unit(9, "feet"),
  27320. default: true
  27321. },
  27322. {
  27323. name: "Macro",
  27324. height: math.unit(75 + 6 / 12, "feet")
  27325. },
  27326. {
  27327. name: "Teramacro",
  27328. height: math.unit(50000, "miles")
  27329. },
  27330. ]
  27331. ))
  27332. characterMakers.push(() => makeCharacter(
  27333. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  27334. {
  27335. front: {
  27336. height: math.unit(10, "feet"),
  27337. weight: math.unit(2, "tons"),
  27338. name: "Front",
  27339. image: {
  27340. source: "./media/characters/rekhit/front.svg",
  27341. extra: 2796 / 2590,
  27342. bottom: 225 / 3022
  27343. }
  27344. },
  27345. },
  27346. [
  27347. {
  27348. name: "Normal",
  27349. height: math.unit(10, "feet"),
  27350. default: true
  27351. },
  27352. {
  27353. name: "Macro",
  27354. height: math.unit(500, "feet")
  27355. },
  27356. ]
  27357. ))
  27358. characterMakers.push(() => makeCharacter(
  27359. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  27360. {
  27361. front: {
  27362. height: math.unit(7 + 6.451 / 12, "feet"),
  27363. weight: math.unit(310, "lb"),
  27364. name: "Front",
  27365. image: {
  27366. source: "./media/characters/dahlia-verrick/front.svg",
  27367. extra: 1488 / 1365,
  27368. bottom: 6.2 / 1495
  27369. }
  27370. },
  27371. back: {
  27372. height: math.unit(7 + 6.451 / 12, "feet"),
  27373. weight: math.unit(310, "lb"),
  27374. name: "Back",
  27375. image: {
  27376. source: "./media/characters/dahlia-verrick/back.svg",
  27377. extra: 1472 / 1351,
  27378. bottom: 5.28 / 1477
  27379. }
  27380. },
  27381. frontBusiness: {
  27382. height: math.unit(7 + 6.451 / 12, "feet"),
  27383. weight: math.unit(200, "lb"),
  27384. name: "Front (Business)",
  27385. image: {
  27386. source: "./media/characters/dahlia-verrick/front-business.svg",
  27387. extra: 1478 / 1381,
  27388. bottom: 5.5 / 1484
  27389. }
  27390. },
  27391. frontCasual: {
  27392. height: math.unit(7 + 6.451 / 12, "feet"),
  27393. weight: math.unit(200, "lb"),
  27394. name: "Front (Casual)",
  27395. image: {
  27396. source: "./media/characters/dahlia-verrick/front-casual.svg",
  27397. extra: 1478 / 1381,
  27398. bottom: 5.5 / 1484
  27399. }
  27400. },
  27401. },
  27402. [
  27403. {
  27404. name: "Travel-Sized",
  27405. height: math.unit(7.45, "inches")
  27406. },
  27407. {
  27408. name: "Normal",
  27409. height: math.unit(7 + 6.451 / 12, "feet"),
  27410. default: true
  27411. },
  27412. {
  27413. name: "Hitting the Town",
  27414. height: math.unit(37 + 8 / 12, "feet")
  27415. },
  27416. {
  27417. name: "Stomp in the Suburbs",
  27418. height: math.unit(964 + 9.728 / 12, "feet")
  27419. },
  27420. {
  27421. name: "Sit on the City",
  27422. height: math.unit(61747 + 10.592 / 12, "feet")
  27423. },
  27424. {
  27425. name: "Glomp the Globe",
  27426. height: math.unit(252919327 + 4.832 / 12, "feet")
  27427. },
  27428. ]
  27429. ))
  27430. characterMakers.push(() => makeCharacter(
  27431. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  27432. {
  27433. front: {
  27434. height: math.unit(6 + 4 / 12, "feet"),
  27435. weight: math.unit(320, "lb"),
  27436. name: "Front",
  27437. image: {
  27438. source: "./media/characters/balina-mahigan/front.svg",
  27439. extra: 447 / 428,
  27440. bottom: 18 / 466
  27441. }
  27442. },
  27443. back: {
  27444. height: math.unit(6 + 4 / 12, "feet"),
  27445. weight: math.unit(320, "lb"),
  27446. name: "Back",
  27447. image: {
  27448. source: "./media/characters/balina-mahigan/back.svg",
  27449. extra: 445 / 428,
  27450. bottom: 4.07 / 448
  27451. }
  27452. },
  27453. arm: {
  27454. height: math.unit(1.88, "feet"),
  27455. name: "Arm",
  27456. image: {
  27457. source: "./media/characters/balina-mahigan/arm.svg"
  27458. }
  27459. },
  27460. backPort: {
  27461. height: math.unit(0.685, "feet"),
  27462. name: "Back Port",
  27463. image: {
  27464. source: "./media/characters/balina-mahigan/back-port.svg"
  27465. }
  27466. },
  27467. hoofpaw: {
  27468. height: math.unit(1.41, "feet"),
  27469. name: "Hoofpaw",
  27470. image: {
  27471. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  27472. }
  27473. },
  27474. leftHandBack: {
  27475. height: math.unit(0.938, "feet"),
  27476. name: "Left Hand (Back)",
  27477. image: {
  27478. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  27479. }
  27480. },
  27481. leftHandFront: {
  27482. height: math.unit(0.938, "feet"),
  27483. name: "Left Hand (Front)",
  27484. image: {
  27485. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  27486. }
  27487. },
  27488. rightHandBack: {
  27489. height: math.unit(0.95, "feet"),
  27490. name: "Right Hand (Back)",
  27491. image: {
  27492. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  27493. }
  27494. },
  27495. rightHandFront: {
  27496. height: math.unit(0.95, "feet"),
  27497. name: "Right Hand (Front)",
  27498. image: {
  27499. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  27500. }
  27501. },
  27502. },
  27503. [
  27504. {
  27505. name: "Normal",
  27506. height: math.unit(6 + 4 / 12, "feet"),
  27507. default: true
  27508. },
  27509. ]
  27510. ))
  27511. characterMakers.push(() => makeCharacter(
  27512. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  27513. {
  27514. front: {
  27515. height: math.unit(6, "feet"),
  27516. weight: math.unit(320, "lb"),
  27517. name: "Front",
  27518. image: {
  27519. source: "./media/characters/balina-mejeri/front.svg",
  27520. extra: 517 / 488,
  27521. bottom: 44.2 / 561
  27522. }
  27523. },
  27524. },
  27525. [
  27526. {
  27527. name: "Normal",
  27528. height: math.unit(6 + 4 / 12, "feet")
  27529. },
  27530. {
  27531. name: "Business",
  27532. height: math.unit(155, "feet"),
  27533. default: true
  27534. },
  27535. ]
  27536. ))
  27537. characterMakers.push(() => makeCharacter(
  27538. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  27539. {
  27540. kneeling: {
  27541. height: math.unit(6 + 4 / 12, "feet"),
  27542. weight: math.unit(300 * 20, "lb"),
  27543. name: "Kneeling",
  27544. image: {
  27545. source: "./media/characters/balbarian/kneeling.svg",
  27546. extra: 922 / 862,
  27547. bottom: 42.4 / 965
  27548. }
  27549. },
  27550. },
  27551. [
  27552. {
  27553. name: "Normal",
  27554. height: math.unit(6 + 4 / 12, "feet")
  27555. },
  27556. {
  27557. name: "Treasured",
  27558. height: math.unit(18 + 9 / 12, "feet"),
  27559. default: true
  27560. },
  27561. {
  27562. name: "Macro",
  27563. height: math.unit(900, "feet")
  27564. },
  27565. ]
  27566. ))
  27567. characterMakers.push(() => makeCharacter(
  27568. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  27569. {
  27570. front: {
  27571. height: math.unit(6 + 4 / 12, "feet"),
  27572. weight: math.unit(325, "lb"),
  27573. name: "Front",
  27574. image: {
  27575. source: "./media/characters/balina-amarini/front.svg",
  27576. extra: 415 / 403,
  27577. bottom: 19 / 433.4
  27578. }
  27579. },
  27580. back: {
  27581. height: math.unit(6 + 4 / 12, "feet"),
  27582. weight: math.unit(325, "lb"),
  27583. name: "Back",
  27584. image: {
  27585. source: "./media/characters/balina-amarini/back.svg",
  27586. extra: 415 / 403,
  27587. bottom: 13.5 / 432
  27588. }
  27589. },
  27590. overdrive: {
  27591. height: math.unit(6 + 4 / 12, "feet"),
  27592. weight: math.unit(400, "lb"),
  27593. name: "Overdrive",
  27594. image: {
  27595. source: "./media/characters/balina-amarini/overdrive.svg",
  27596. extra: 269 / 259,
  27597. bottom: 12 / 282
  27598. }
  27599. },
  27600. },
  27601. [
  27602. {
  27603. name: "Boom",
  27604. height: math.unit(9 + 10 / 12, "feet"),
  27605. default: true
  27606. },
  27607. {
  27608. name: "Macro",
  27609. height: math.unit(280, "feet")
  27610. },
  27611. ]
  27612. ))
  27613. characterMakers.push(() => makeCharacter(
  27614. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  27615. {
  27616. goddess: {
  27617. height: math.unit(600, "feet"),
  27618. weight: math.unit(2000000, "tons"),
  27619. name: "Goddess",
  27620. image: {
  27621. source: "./media/characters/lady-kubwa/goddess.svg",
  27622. extra: 1240.5 / 1223,
  27623. bottom: 22 / 1263
  27624. }
  27625. },
  27626. goddesser: {
  27627. height: math.unit(900, "feet"),
  27628. weight: math.unit(20000000, "lb"),
  27629. name: "Goddess-er",
  27630. image: {
  27631. source: "./media/characters/lady-kubwa/goddess-er.svg",
  27632. extra: 899 / 888,
  27633. bottom: 12.6 / 912
  27634. }
  27635. },
  27636. },
  27637. [
  27638. {
  27639. name: "Macro",
  27640. height: math.unit(600, "feet"),
  27641. default: true
  27642. },
  27643. {
  27644. name: "Megamacro",
  27645. height: math.unit(250, "miles")
  27646. },
  27647. ]
  27648. ))
  27649. characterMakers.push(() => makeCharacter(
  27650. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  27651. {
  27652. front: {
  27653. height: math.unit(7 + 7 / 12, "feet"),
  27654. weight: math.unit(250, "lb"),
  27655. name: "Front",
  27656. image: {
  27657. source: "./media/characters/tala-grovehorn/front.svg",
  27658. extra: 2636 / 2525,
  27659. bottom: 147 / 2781
  27660. }
  27661. },
  27662. back: {
  27663. height: math.unit(7 + 7 / 12, "feet"),
  27664. weight: math.unit(250, "lb"),
  27665. name: "Back",
  27666. image: {
  27667. source: "./media/characters/tala-grovehorn/back.svg",
  27668. extra: 2635 / 2539,
  27669. bottom: 100 / 2732.8
  27670. }
  27671. },
  27672. mouth: {
  27673. height: math.unit(1.15, "feet"),
  27674. name: "Mouth",
  27675. image: {
  27676. source: "./media/characters/tala-grovehorn/mouth.svg"
  27677. }
  27678. },
  27679. dick: {
  27680. height: math.unit(2.36, "feet"),
  27681. name: "Dick",
  27682. image: {
  27683. source: "./media/characters/tala-grovehorn/dick.svg"
  27684. }
  27685. },
  27686. slit: {
  27687. height: math.unit(0.61, "feet"),
  27688. name: "Slit",
  27689. image: {
  27690. source: "./media/characters/tala-grovehorn/slit.svg"
  27691. }
  27692. },
  27693. },
  27694. [
  27695. ]
  27696. ))
  27697. characterMakers.push(() => makeCharacter(
  27698. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  27699. {
  27700. front: {
  27701. height: math.unit(7 + 7 / 12, "feet"),
  27702. weight: math.unit(225, "lb"),
  27703. name: "Front",
  27704. image: {
  27705. source: "./media/characters/epona/front.svg",
  27706. extra: 2445 / 2290,
  27707. bottom: 251 / 2696
  27708. }
  27709. },
  27710. back: {
  27711. height: math.unit(7 + 7 / 12, "feet"),
  27712. weight: math.unit(225, "lb"),
  27713. name: "Back",
  27714. image: {
  27715. source: "./media/characters/epona/back.svg",
  27716. extra: 2546 / 2408,
  27717. bottom: 44 / 2589
  27718. }
  27719. },
  27720. genitals: {
  27721. height: math.unit(1.5, "feet"),
  27722. name: "Genitals",
  27723. image: {
  27724. source: "./media/characters/epona/genitals.svg"
  27725. }
  27726. },
  27727. },
  27728. [
  27729. {
  27730. name: "Normal",
  27731. height: math.unit(7 + 7 / 12, "feet"),
  27732. default: true
  27733. },
  27734. ]
  27735. ))
  27736. characterMakers.push(() => makeCharacter(
  27737. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  27738. {
  27739. front: {
  27740. height: math.unit(7, "feet"),
  27741. weight: math.unit(518, "lb"),
  27742. name: "Front",
  27743. image: {
  27744. source: "./media/characters/avia-bloodbourn/front.svg",
  27745. extra: 1466 / 1350,
  27746. bottom: 65 / 1527
  27747. }
  27748. },
  27749. },
  27750. [
  27751. ]
  27752. ))
  27753. characterMakers.push(() => makeCharacter(
  27754. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  27755. {
  27756. front: {
  27757. height: math.unit(9.35, "feet"),
  27758. weight: math.unit(600, "lb"),
  27759. name: "Front",
  27760. image: {
  27761. source: "./media/characters/amera/front.svg",
  27762. extra: 891 / 818,
  27763. bottom: 30 / 922.7
  27764. }
  27765. },
  27766. back: {
  27767. height: math.unit(9.35, "feet"),
  27768. weight: math.unit(600, "lb"),
  27769. name: "Back",
  27770. image: {
  27771. source: "./media/characters/amera/back.svg",
  27772. extra: 876 / 824,
  27773. bottom: 6.8 / 884
  27774. }
  27775. },
  27776. dick: {
  27777. height: math.unit(2.14, "feet"),
  27778. name: "Dick",
  27779. image: {
  27780. source: "./media/characters/amera/dick.svg"
  27781. }
  27782. },
  27783. },
  27784. [
  27785. {
  27786. name: "Normal",
  27787. height: math.unit(9.35, "feet"),
  27788. default: true
  27789. },
  27790. ]
  27791. ))
  27792. characterMakers.push(() => makeCharacter(
  27793. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  27794. {
  27795. kneeling: {
  27796. height: math.unit(3 + 4 / 12, "feet"),
  27797. weight: math.unit(90, "lb"),
  27798. name: "Kneeling",
  27799. image: {
  27800. source: "./media/characters/rosewen/kneeling.svg",
  27801. extra: 1835 / 1571,
  27802. bottom: 27.7 / 1862
  27803. }
  27804. },
  27805. },
  27806. [
  27807. {
  27808. name: "Normal",
  27809. height: math.unit(3 + 4 / 12, "feet"),
  27810. default: true
  27811. },
  27812. ]
  27813. ))
  27814. characterMakers.push(() => makeCharacter(
  27815. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  27816. {
  27817. front: {
  27818. height: math.unit(5 + 10 / 12, "feet"),
  27819. weight: math.unit(200, "lb"),
  27820. name: "Front",
  27821. image: {
  27822. source: "./media/characters/sabah/front.svg",
  27823. extra: 849 / 763,
  27824. bottom: 33.9 / 881
  27825. }
  27826. },
  27827. },
  27828. [
  27829. {
  27830. name: "Normal",
  27831. height: math.unit(5 + 10 / 12, "feet"),
  27832. default: true
  27833. },
  27834. ]
  27835. ))
  27836. characterMakers.push(() => makeCharacter(
  27837. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  27838. {
  27839. front: {
  27840. height: math.unit(3 + 5 / 12, "feet"),
  27841. weight: math.unit(40, "kg"),
  27842. name: "Front",
  27843. image: {
  27844. source: "./media/characters/purple-flame/front.svg",
  27845. extra: 1577 / 1412,
  27846. bottom: 97 / 1694
  27847. }
  27848. },
  27849. frontDressed: {
  27850. height: math.unit(3 + 5 / 12, "feet"),
  27851. weight: math.unit(40, "kg"),
  27852. name: "Front (Dressed)",
  27853. image: {
  27854. source: "./media/characters/purple-flame/front-dressed.svg",
  27855. extra: 1577 / 1412,
  27856. bottom: 97 / 1694
  27857. }
  27858. },
  27859. headphones: {
  27860. height: math.unit(0.85, "feet"),
  27861. name: "Headphones",
  27862. image: {
  27863. source: "./media/characters/purple-flame/headphones.svg"
  27864. }
  27865. },
  27866. },
  27867. [
  27868. {
  27869. name: "Really Small",
  27870. height: math.unit(5, "cm")
  27871. },
  27872. {
  27873. name: "Micro",
  27874. height: math.unit(1 + 5 / 12, "feet")
  27875. },
  27876. {
  27877. name: "Normal",
  27878. height: math.unit(3 + 5 / 12, "feet"),
  27879. default: true
  27880. },
  27881. {
  27882. name: "Minimacro",
  27883. height: math.unit(125, "feet")
  27884. },
  27885. {
  27886. name: "Macro",
  27887. height: math.unit(0.5, "miles")
  27888. },
  27889. {
  27890. name: "Megamacro",
  27891. height: math.unit(50, "miles")
  27892. },
  27893. {
  27894. name: "Gigantic",
  27895. height: math.unit(750, "miles")
  27896. },
  27897. {
  27898. name: "Planetary",
  27899. height: math.unit(15000, "miles")
  27900. },
  27901. ]
  27902. ))
  27903. characterMakers.push(() => makeCharacter(
  27904. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  27905. {
  27906. front: {
  27907. height: math.unit(14, "feet"),
  27908. weight: math.unit(959, "lb"),
  27909. name: "Front",
  27910. image: {
  27911. source: "./media/characters/arsenal/front.svg",
  27912. extra: 2357 / 2157,
  27913. bottom: 93 / 2458
  27914. }
  27915. },
  27916. },
  27917. [
  27918. {
  27919. name: "Normal",
  27920. height: math.unit(14, "feet"),
  27921. default: true
  27922. },
  27923. ]
  27924. ))
  27925. characterMakers.push(() => makeCharacter(
  27926. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  27927. {
  27928. front: {
  27929. height: math.unit(6, "feet"),
  27930. weight: math.unit(150, "lb"),
  27931. name: "Front",
  27932. image: {
  27933. source: "./media/characters/adira/front.svg",
  27934. extra: 1078 / 1029,
  27935. bottom: 87 / 1166
  27936. }
  27937. },
  27938. },
  27939. [
  27940. {
  27941. name: "Micro",
  27942. height: math.unit(4, "inches"),
  27943. default: true
  27944. },
  27945. {
  27946. name: "Macro",
  27947. height: math.unit(50, "feet")
  27948. },
  27949. ]
  27950. ))
  27951. characterMakers.push(() => makeCharacter(
  27952. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  27953. {
  27954. front: {
  27955. height: math.unit(16, "feet"),
  27956. weight: math.unit(1000, "lb"),
  27957. name: "Front",
  27958. image: {
  27959. source: "./media/characters/grim/front.svg",
  27960. extra: 622 / 614,
  27961. bottom: 18.1 / 642
  27962. }
  27963. },
  27964. back: {
  27965. height: math.unit(16, "feet"),
  27966. weight: math.unit(1000, "lb"),
  27967. name: "Back",
  27968. image: {
  27969. source: "./media/characters/grim/back.svg",
  27970. extra: 610.6 / 602,
  27971. bottom: 40.8 / 652
  27972. }
  27973. },
  27974. hunched: {
  27975. height: math.unit(9.75, "feet"),
  27976. weight: math.unit(1000, "lb"),
  27977. name: "Hunched",
  27978. image: {
  27979. source: "./media/characters/grim/hunched.svg",
  27980. extra: 304 / 297,
  27981. bottom: 35.4 / 394
  27982. }
  27983. },
  27984. },
  27985. [
  27986. {
  27987. name: "Normal",
  27988. height: math.unit(16, "feet"),
  27989. default: true
  27990. },
  27991. ]
  27992. ))
  27993. characterMakers.push(() => makeCharacter(
  27994. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  27995. {
  27996. front: {
  27997. height: math.unit(2.3, "meters"),
  27998. weight: math.unit(300, "lb"),
  27999. name: "Front",
  28000. image: {
  28001. source: "./media/characters/sinja/front-sfw.svg",
  28002. extra: 1393 / 1294,
  28003. bottom: 70 / 1463
  28004. }
  28005. },
  28006. frontNsfw: {
  28007. height: math.unit(2.3, "meters"),
  28008. weight: math.unit(300, "lb"),
  28009. name: "Front (NSFW)",
  28010. image: {
  28011. source: "./media/characters/sinja/front-nsfw.svg",
  28012. extra: 1393 / 1294,
  28013. bottom: 70 / 1463
  28014. }
  28015. },
  28016. back: {
  28017. height: math.unit(2.3, "meters"),
  28018. weight: math.unit(300, "lb"),
  28019. name: "Back",
  28020. image: {
  28021. source: "./media/characters/sinja/back.svg",
  28022. extra: 1393 / 1294,
  28023. bottom: 70 / 1463
  28024. }
  28025. },
  28026. head: {
  28027. height: math.unit(1.771, "feet"),
  28028. name: "Head",
  28029. image: {
  28030. source: "./media/characters/sinja/head.svg"
  28031. }
  28032. },
  28033. slit: {
  28034. height: math.unit(0.8, "feet"),
  28035. name: "Slit",
  28036. image: {
  28037. source: "./media/characters/sinja/slit.svg"
  28038. }
  28039. },
  28040. },
  28041. [
  28042. {
  28043. name: "Normal",
  28044. height: math.unit(2.3, "meters")
  28045. },
  28046. {
  28047. name: "Macro",
  28048. height: math.unit(91, "meters"),
  28049. default: true
  28050. },
  28051. {
  28052. name: "Megamacro",
  28053. height: math.unit(91440, "meters")
  28054. },
  28055. {
  28056. name: "Gigamacro",
  28057. height: math.unit(60960000, "meters")
  28058. },
  28059. {
  28060. name: "Teramacro",
  28061. height: math.unit(9144000000, "meters")
  28062. },
  28063. ]
  28064. ))
  28065. characterMakers.push(() => makeCharacter(
  28066. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  28067. {
  28068. front: {
  28069. height: math.unit(1.7, "meters"),
  28070. weight: math.unit(130, "lb"),
  28071. name: "Front",
  28072. image: {
  28073. source: "./media/characters/kyu/front.svg",
  28074. extra: 415 / 395,
  28075. bottom: 5 / 420
  28076. }
  28077. },
  28078. head: {
  28079. height: math.unit(1.75, "feet"),
  28080. name: "Head",
  28081. image: {
  28082. source: "./media/characters/kyu/head.svg"
  28083. }
  28084. },
  28085. foot: {
  28086. height: math.unit(0.81, "feet"),
  28087. name: "Foot",
  28088. image: {
  28089. source: "./media/characters/kyu/foot.svg"
  28090. }
  28091. },
  28092. },
  28093. [
  28094. {
  28095. name: "Normal",
  28096. height: math.unit(1.7, "meters")
  28097. },
  28098. {
  28099. name: "Macro",
  28100. height: math.unit(131, "feet"),
  28101. default: true
  28102. },
  28103. {
  28104. name: "Megamacro",
  28105. height: math.unit(91440, "meters")
  28106. },
  28107. {
  28108. name: "Gigamacro",
  28109. height: math.unit(60960000, "meters")
  28110. },
  28111. {
  28112. name: "Teramacro",
  28113. height: math.unit(9144000000, "meters")
  28114. },
  28115. ]
  28116. ))
  28117. characterMakers.push(() => makeCharacter(
  28118. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  28119. {
  28120. front: {
  28121. height: math.unit(7 + 1 / 12, "feet"),
  28122. weight: math.unit(250, "lb"),
  28123. name: "Front",
  28124. image: {
  28125. source: "./media/characters/joey/front.svg",
  28126. extra: 1791 / 1537,
  28127. bottom: 28 / 1816
  28128. }
  28129. },
  28130. },
  28131. [
  28132. {
  28133. name: "Micro",
  28134. height: math.unit(3, "inches")
  28135. },
  28136. {
  28137. name: "Normal",
  28138. height: math.unit(7 + 1 / 12, "feet"),
  28139. default: true
  28140. },
  28141. ]
  28142. ))
  28143. characterMakers.push(() => makeCharacter(
  28144. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  28145. {
  28146. front: {
  28147. height: math.unit(165, "cm"),
  28148. weight: math.unit(140, "lb"),
  28149. name: "Front",
  28150. image: {
  28151. source: "./media/characters/sam-evans/front.svg",
  28152. extra: 3417 / 3230,
  28153. bottom: 41.3 / 3417
  28154. }
  28155. },
  28156. frontSixTails: {
  28157. height: math.unit(165, "cm"),
  28158. weight: math.unit(140, "lb"),
  28159. name: "Front-six-tails",
  28160. image: {
  28161. source: "./media/characters/sam-evans/front-six-tails.svg",
  28162. extra: 3417 / 3230,
  28163. bottom: 41.3 / 3417
  28164. }
  28165. },
  28166. back: {
  28167. height: math.unit(165, "cm"),
  28168. weight: math.unit(140, "lb"),
  28169. name: "Back",
  28170. image: {
  28171. source: "./media/characters/sam-evans/back.svg",
  28172. extra: 3227 / 3032,
  28173. bottom: 6.8 / 3234
  28174. }
  28175. },
  28176. face: {
  28177. height: math.unit(0.68, "feet"),
  28178. name: "Face",
  28179. image: {
  28180. source: "./media/characters/sam-evans/face.svg"
  28181. }
  28182. },
  28183. },
  28184. [
  28185. {
  28186. name: "Normal",
  28187. height: math.unit(165, "cm"),
  28188. default: true
  28189. },
  28190. {
  28191. name: "Macro",
  28192. height: math.unit(100, "meters")
  28193. },
  28194. {
  28195. name: "Macro+",
  28196. height: math.unit(800, "meters")
  28197. },
  28198. {
  28199. name: "Macro++",
  28200. height: math.unit(3, "km")
  28201. },
  28202. {
  28203. name: "Macro+++",
  28204. height: math.unit(30, "km")
  28205. },
  28206. ]
  28207. ))
  28208. characterMakers.push(() => makeCharacter(
  28209. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  28210. {
  28211. front: {
  28212. height: math.unit(10, "feet"),
  28213. weight: math.unit(750, "lb"),
  28214. name: "Front",
  28215. image: {
  28216. source: "./media/characters/juliet-a/front.svg",
  28217. extra: 1766 / 1720,
  28218. bottom: 43 / 1809
  28219. }
  28220. },
  28221. back: {
  28222. height: math.unit(10, "feet"),
  28223. weight: math.unit(750, "lb"),
  28224. name: "Back",
  28225. image: {
  28226. source: "./media/characters/juliet-a/back.svg",
  28227. extra: 1781 / 1734,
  28228. bottom: 35 / 1810,
  28229. }
  28230. },
  28231. },
  28232. [
  28233. {
  28234. name: "Normal",
  28235. height: math.unit(10, "feet"),
  28236. default: true
  28237. },
  28238. {
  28239. name: "Dragon Form",
  28240. height: math.unit(250, "feet")
  28241. },
  28242. {
  28243. name: "Macro",
  28244. height: math.unit(1000, "feet")
  28245. },
  28246. {
  28247. name: "Megamacro",
  28248. height: math.unit(10000, "feet")
  28249. }
  28250. ]
  28251. ))
  28252. characterMakers.push(() => makeCharacter(
  28253. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  28254. {
  28255. regular: {
  28256. height: math.unit(7 + 3 / 12, "feet"),
  28257. weight: math.unit(260, "lb"),
  28258. name: "Regular",
  28259. image: {
  28260. source: "./media/characters/wild/regular.svg",
  28261. extra: 97.45 / 92,
  28262. bottom: 6.8 / 104.3
  28263. }
  28264. },
  28265. biggums: {
  28266. height: math.unit(8 + 6 / 12, "feet"),
  28267. weight: math.unit(425, "lb"),
  28268. name: "Biggums",
  28269. image: {
  28270. source: "./media/characters/wild/biggums.svg",
  28271. extra: 97.45 / 92,
  28272. bottom: 7.5 / 132.34
  28273. }
  28274. },
  28275. mawRegular: {
  28276. height: math.unit(1.24, "feet"),
  28277. name: "Maw (Regular)",
  28278. image: {
  28279. source: "./media/characters/wild/maw.svg"
  28280. }
  28281. },
  28282. mawBiggums: {
  28283. height: math.unit(1.47, "feet"),
  28284. name: "Maw (Biggums)",
  28285. image: {
  28286. source: "./media/characters/wild/maw.svg"
  28287. }
  28288. },
  28289. },
  28290. [
  28291. {
  28292. name: "Normal",
  28293. height: math.unit(7 + 3 / 12, "feet"),
  28294. default: true
  28295. },
  28296. ]
  28297. ))
  28298. characterMakers.push(() => makeCharacter(
  28299. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  28300. {
  28301. front: {
  28302. height: math.unit(2.5, "meters"),
  28303. weight: math.unit(200, "kg"),
  28304. name: "Front",
  28305. image: {
  28306. source: "./media/characters/vidar/front.svg",
  28307. extra: 2994 / 2795,
  28308. bottom: 56 / 3061
  28309. }
  28310. },
  28311. back: {
  28312. height: math.unit(2.5, "meters"),
  28313. weight: math.unit(200, "kg"),
  28314. name: "Back",
  28315. image: {
  28316. source: "./media/characters/vidar/back.svg",
  28317. extra: 3131 / 2928,
  28318. bottom: 13.5 / 3141.5
  28319. }
  28320. },
  28321. feral: {
  28322. height: math.unit(2.5, "meters"),
  28323. weight: math.unit(2000, "kg"),
  28324. name: "Feral",
  28325. image: {
  28326. source: "./media/characters/vidar/feral.svg",
  28327. extra: 2790 / 1765,
  28328. bottom: 6 / 2796
  28329. }
  28330. },
  28331. },
  28332. [
  28333. {
  28334. name: "Normal",
  28335. height: math.unit(2.5, "meters"),
  28336. default: true
  28337. },
  28338. {
  28339. name: "Macro",
  28340. height: math.unit(100, "meters")
  28341. },
  28342. ]
  28343. ))
  28344. characterMakers.push(() => makeCharacter(
  28345. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  28346. {
  28347. front: {
  28348. height: math.unit(5 + 9 / 12, "feet"),
  28349. weight: math.unit(120, "lb"),
  28350. name: "Front",
  28351. image: {
  28352. source: "./media/characters/ash/front.svg",
  28353. extra: 2189 / 1961,
  28354. bottom: 5.2 / 2194
  28355. }
  28356. },
  28357. },
  28358. [
  28359. {
  28360. name: "Normal",
  28361. height: math.unit(5 + 9 / 12, "feet"),
  28362. default: true
  28363. },
  28364. ]
  28365. ))
  28366. characterMakers.push(() => makeCharacter(
  28367. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  28368. {
  28369. front: {
  28370. height: math.unit(9, "feet"),
  28371. weight: math.unit(10000, "lb"),
  28372. name: "Front",
  28373. image: {
  28374. source: "./media/characters/gygabite/front.svg",
  28375. bottom: 31.7 / 537.8,
  28376. extra: 505 / 370
  28377. }
  28378. },
  28379. },
  28380. [
  28381. {
  28382. name: "Normal",
  28383. height: math.unit(9, "feet"),
  28384. default: true
  28385. },
  28386. ]
  28387. ))
  28388. characterMakers.push(() => makeCharacter(
  28389. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  28390. {
  28391. front: {
  28392. height: math.unit(12, "feet"),
  28393. weight: math.unit(35000, "lb"),
  28394. name: "Front",
  28395. image: {
  28396. source: "./media/characters/p0tat0/front.svg",
  28397. extra: 1065 / 921,
  28398. bottom: 55.7 / 1121.25
  28399. }
  28400. },
  28401. },
  28402. [
  28403. {
  28404. name: "Normal",
  28405. height: math.unit(12, "feet"),
  28406. default: true
  28407. },
  28408. ]
  28409. ))
  28410. characterMakers.push(() => makeCharacter(
  28411. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  28412. {
  28413. side: {
  28414. height: math.unit(6.5, "feet"),
  28415. weight: math.unit(800, "lb"),
  28416. name: "Side",
  28417. image: {
  28418. source: "./media/characters/dusk/side.svg",
  28419. extra: 615 / 373,
  28420. bottom: 53 / 664
  28421. }
  28422. },
  28423. sitting: {
  28424. height: math.unit(7, "feet"),
  28425. weight: math.unit(800, "lb"),
  28426. name: "Sitting",
  28427. image: {
  28428. source: "./media/characters/dusk/sitting.svg",
  28429. extra: 753 / 425,
  28430. bottom: 33 / 774
  28431. }
  28432. },
  28433. head: {
  28434. height: math.unit(6.1, "feet"),
  28435. name: "Head",
  28436. image: {
  28437. source: "./media/characters/dusk/head.svg"
  28438. }
  28439. },
  28440. },
  28441. [
  28442. {
  28443. name: "Normal",
  28444. height: math.unit(7, "feet"),
  28445. default: true
  28446. },
  28447. ]
  28448. ))
  28449. characterMakers.push(() => makeCharacter(
  28450. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  28451. {
  28452. front: {
  28453. height: math.unit(15, "feet"),
  28454. weight: math.unit(7000, "lb"),
  28455. name: "Front",
  28456. image: {
  28457. source: "./media/characters/jay-direwolf/front.svg",
  28458. extra: 1810 / 1732,
  28459. bottom: 66 / 1892
  28460. }
  28461. },
  28462. },
  28463. [
  28464. {
  28465. name: "Normal",
  28466. height: math.unit(15, "feet"),
  28467. default: true
  28468. },
  28469. ]
  28470. ))
  28471. characterMakers.push(() => makeCharacter(
  28472. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  28473. {
  28474. front: {
  28475. height: math.unit(4 + 9 / 12, "feet"),
  28476. weight: math.unit(130, "lb"),
  28477. name: "Front",
  28478. image: {
  28479. source: "./media/characters/anchovie/front.svg",
  28480. extra: 382 / 350,
  28481. bottom: 25 / 409
  28482. }
  28483. },
  28484. back: {
  28485. height: math.unit(4 + 9 / 12, "feet"),
  28486. weight: math.unit(130, "lb"),
  28487. name: "Back",
  28488. image: {
  28489. source: "./media/characters/anchovie/back.svg",
  28490. extra: 385 / 352,
  28491. bottom: 16.6 / 402
  28492. }
  28493. },
  28494. frontDressed: {
  28495. height: math.unit(4 + 9 / 12, "feet"),
  28496. weight: math.unit(130, "lb"),
  28497. name: "Front (Dressed)",
  28498. image: {
  28499. source: "./media/characters/anchovie/front-dressed.svg",
  28500. extra: 382 / 350,
  28501. bottom: 25 / 409
  28502. }
  28503. },
  28504. backDressed: {
  28505. height: math.unit(4 + 9 / 12, "feet"),
  28506. weight: math.unit(130, "lb"),
  28507. name: "Back (Dressed)",
  28508. image: {
  28509. source: "./media/characters/anchovie/back-dressed.svg",
  28510. extra: 385 / 352,
  28511. bottom: 16.6 / 402
  28512. }
  28513. },
  28514. },
  28515. [
  28516. {
  28517. name: "Micro",
  28518. height: math.unit(6.4, "inches")
  28519. },
  28520. {
  28521. name: "Normal",
  28522. height: math.unit(4 + 9 / 12, "feet"),
  28523. default: true
  28524. },
  28525. ]
  28526. ))
  28527. characterMakers.push(() => makeCharacter(
  28528. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  28529. {
  28530. front: {
  28531. height: math.unit(2, "meters"),
  28532. weight: math.unit(180, "lb"),
  28533. name: "Front",
  28534. image: {
  28535. source: "./media/characters/acidrenamon/front.svg",
  28536. extra: 987 / 890,
  28537. bottom: 22.8 / 1009
  28538. }
  28539. },
  28540. back: {
  28541. height: math.unit(2, "meters"),
  28542. weight: math.unit(180, "lb"),
  28543. name: "Back",
  28544. image: {
  28545. source: "./media/characters/acidrenamon/back.svg",
  28546. extra: 983 / 891,
  28547. bottom: 8.4 / 992
  28548. }
  28549. },
  28550. head: {
  28551. height: math.unit(1.92, "feet"),
  28552. name: "Head",
  28553. image: {
  28554. source: "./media/characters/acidrenamon/head.svg"
  28555. }
  28556. },
  28557. rump: {
  28558. height: math.unit(1.72, "feet"),
  28559. name: "Rump",
  28560. image: {
  28561. source: "./media/characters/acidrenamon/rump.svg"
  28562. }
  28563. },
  28564. tail: {
  28565. height: math.unit(4.2, "feet"),
  28566. name: "Tail",
  28567. image: {
  28568. source: "./media/characters/acidrenamon/tail.svg"
  28569. }
  28570. },
  28571. },
  28572. [
  28573. {
  28574. name: "Normal",
  28575. height: math.unit(2, "meters"),
  28576. default: true
  28577. },
  28578. {
  28579. name: "Minimacro",
  28580. height: math.unit(7, "meters")
  28581. },
  28582. {
  28583. name: "Macro",
  28584. height: math.unit(200, "meters")
  28585. },
  28586. {
  28587. name: "Gigamacro",
  28588. height: math.unit(0.2, "earths")
  28589. },
  28590. ]
  28591. ))
  28592. characterMakers.push(() => makeCharacter(
  28593. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  28594. {
  28595. front: {
  28596. height: math.unit(152, "feet"),
  28597. name: "Front",
  28598. image: {
  28599. source: "./media/characters/kenzie-lee/front.svg",
  28600. extra: 1869/1774,
  28601. bottom: 128/1997
  28602. }
  28603. },
  28604. side: {
  28605. height: math.unit(86, "feet"),
  28606. name: "Side",
  28607. image: {
  28608. source: "./media/characters/kenzie-lee/side.svg",
  28609. extra: 930/815,
  28610. bottom: 177/1107
  28611. }
  28612. },
  28613. paw: {
  28614. height: math.unit(15, "feet"),
  28615. name: "Paw",
  28616. image: {
  28617. source: "./media/characters/kenzie-lee/paw.svg"
  28618. }
  28619. },
  28620. },
  28621. [
  28622. {
  28623. name: "Kenzie Flea",
  28624. height: math.unit(2, "mm"),
  28625. default: true
  28626. },
  28627. {
  28628. name: "Micro",
  28629. height: math.unit(2, "inches")
  28630. },
  28631. {
  28632. name: "Normal",
  28633. height: math.unit(152, "feet")
  28634. },
  28635. {
  28636. name: "Megamacro",
  28637. height: math.unit(7, "miles")
  28638. },
  28639. {
  28640. name: "Gigamacro",
  28641. height: math.unit(8000, "miles")
  28642. },
  28643. ]
  28644. ))
  28645. characterMakers.push(() => makeCharacter(
  28646. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  28647. {
  28648. front: {
  28649. height: math.unit(6, "feet"),
  28650. name: "Front",
  28651. image: {
  28652. source: "./media/characters/withers/front.svg",
  28653. extra: 1935/1760,
  28654. bottom: 72/2007
  28655. }
  28656. },
  28657. back: {
  28658. height: math.unit(6, "feet"),
  28659. name: "Back",
  28660. image: {
  28661. source: "./media/characters/withers/back.svg",
  28662. extra: 1944/1792,
  28663. bottom: 12/1956
  28664. }
  28665. },
  28666. dressed: {
  28667. height: math.unit(6, "feet"),
  28668. name: "Dressed",
  28669. image: {
  28670. source: "./media/characters/withers/dressed.svg",
  28671. extra: 1937/1765,
  28672. bottom: 73/2010
  28673. }
  28674. },
  28675. phase1: {
  28676. height: math.unit(1.1, "feet"),
  28677. name: "Phase 1",
  28678. image: {
  28679. source: "./media/characters/withers/phase-1.svg",
  28680. extra: 1885/1232,
  28681. bottom: 0/1885
  28682. }
  28683. },
  28684. phase2: {
  28685. height: math.unit(1.05, "feet"),
  28686. name: "Phase 2",
  28687. image: {
  28688. source: "./media/characters/withers/phase-2.svg",
  28689. extra: 1792/1090,
  28690. bottom: 0/1792
  28691. }
  28692. },
  28693. partyWipe: {
  28694. height: math.unit(1.1, "feet"),
  28695. name: "Party Wipe",
  28696. image: {
  28697. source: "./media/characters/withers/party-wipe.svg",
  28698. extra: 1864/1207,
  28699. bottom: 0/1864
  28700. }
  28701. },
  28702. },
  28703. [
  28704. {
  28705. name: "Macro",
  28706. height: math.unit(167, "feet"),
  28707. default: true
  28708. },
  28709. {
  28710. name: "Megamacro",
  28711. height: math.unit(15, "miles")
  28712. }
  28713. ]
  28714. ))
  28715. characterMakers.push(() => makeCharacter(
  28716. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  28717. {
  28718. front: {
  28719. height: math.unit(6 + 7 / 12, "feet"),
  28720. weight: math.unit(250, "lb"),
  28721. name: "Front",
  28722. image: {
  28723. source: "./media/characters/nemoskii/front.svg",
  28724. extra: 2270 / 1734,
  28725. bottom: 86 / 2354
  28726. }
  28727. },
  28728. back: {
  28729. height: math.unit(6 + 7 / 12, "feet"),
  28730. weight: math.unit(250, "lb"),
  28731. name: "Back",
  28732. image: {
  28733. source: "./media/characters/nemoskii/back.svg",
  28734. extra: 1845 / 1788,
  28735. bottom: 10.5 / 1852
  28736. }
  28737. },
  28738. head: {
  28739. height: math.unit(1.31, "feet"),
  28740. name: "Head",
  28741. image: {
  28742. source: "./media/characters/nemoskii/head.svg"
  28743. }
  28744. },
  28745. },
  28746. [
  28747. {
  28748. name: "Micro",
  28749. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  28750. },
  28751. {
  28752. name: "Normal",
  28753. height: math.unit(6 + 7 / 12, "feet"),
  28754. default: true
  28755. },
  28756. {
  28757. name: "Macro",
  28758. height: math.unit((6 + 7 / 12) * 150, "feet")
  28759. },
  28760. {
  28761. name: "Macro+",
  28762. height: math.unit((6 + 7 / 12) * 500, "feet")
  28763. },
  28764. {
  28765. name: "Megamacro",
  28766. height: math.unit((6 + 7 / 12) * 100000, "feet")
  28767. },
  28768. ]
  28769. ))
  28770. characterMakers.push(() => makeCharacter(
  28771. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  28772. {
  28773. front: {
  28774. height: math.unit(1, "mile"),
  28775. weight: math.unit(265261.9, "lb"),
  28776. name: "Front",
  28777. image: {
  28778. source: "./media/characters/shui/front.svg",
  28779. extra: 1633 / 1564,
  28780. bottom: 91.5 / 1726
  28781. }
  28782. },
  28783. },
  28784. [
  28785. {
  28786. name: "Macro",
  28787. height: math.unit(1, "mile"),
  28788. default: true
  28789. },
  28790. ]
  28791. ))
  28792. characterMakers.push(() => makeCharacter(
  28793. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  28794. {
  28795. front: {
  28796. height: math.unit(12 + 6 / 12, "feet"),
  28797. weight: math.unit(1342, "lb"),
  28798. name: "Front",
  28799. image: {
  28800. source: "./media/characters/arokh-takakura/front.svg",
  28801. extra: 1089 / 1043,
  28802. bottom: 77.4 / 1176.7
  28803. }
  28804. },
  28805. back: {
  28806. height: math.unit(12 + 6 / 12, "feet"),
  28807. weight: math.unit(1342, "lb"),
  28808. name: "Back",
  28809. image: {
  28810. source: "./media/characters/arokh-takakura/back.svg",
  28811. extra: 1046 / 1019,
  28812. bottom: 102 / 1150
  28813. }
  28814. },
  28815. },
  28816. [
  28817. {
  28818. name: "Big",
  28819. height: math.unit(12 + 6 / 12, "feet"),
  28820. default: true
  28821. },
  28822. ]
  28823. ))
  28824. characterMakers.push(() => makeCharacter(
  28825. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  28826. {
  28827. front: {
  28828. height: math.unit(5 + 6 / 12, "feet"),
  28829. weight: math.unit(150, "lb"),
  28830. name: "Front",
  28831. image: {
  28832. source: "./media/characters/theo/front.svg",
  28833. extra: 1184 / 1131,
  28834. bottom: 7.4 / 1191
  28835. }
  28836. },
  28837. },
  28838. [
  28839. {
  28840. name: "Micro",
  28841. height: math.unit(5, "inches")
  28842. },
  28843. {
  28844. name: "Normal",
  28845. height: math.unit(5 + 6 / 12, "feet"),
  28846. default: true
  28847. },
  28848. ]
  28849. ))
  28850. characterMakers.push(() => makeCharacter(
  28851. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  28852. {
  28853. front: {
  28854. height: math.unit(5 + 9 / 12, "feet"),
  28855. weight: math.unit(130, "lb"),
  28856. name: "Front",
  28857. image: {
  28858. source: "./media/characters/cecelia-swift/front.svg",
  28859. extra: 502 / 484,
  28860. bottom: 23 / 523
  28861. }
  28862. },
  28863. back: {
  28864. height: math.unit(5 + 9 / 12, "feet"),
  28865. weight: math.unit(130, "lb"),
  28866. name: "Back",
  28867. image: {
  28868. source: "./media/characters/cecelia-swift/back.svg",
  28869. extra: 499 / 485,
  28870. bottom: 12 / 511
  28871. }
  28872. },
  28873. head: {
  28874. height: math.unit(0.90, "feet"),
  28875. name: "Head",
  28876. image: {
  28877. source: "./media/characters/cecelia-swift/head.svg"
  28878. }
  28879. },
  28880. rump: {
  28881. height: math.unit(1.75, "feet"),
  28882. name: "Rump",
  28883. image: {
  28884. source: "./media/characters/cecelia-swift/rump.svg"
  28885. }
  28886. },
  28887. },
  28888. [
  28889. {
  28890. name: "Normal",
  28891. height: math.unit(5 + 9 / 12, "feet"),
  28892. default: true
  28893. },
  28894. {
  28895. name: "Big",
  28896. height: math.unit(50, "feet")
  28897. },
  28898. {
  28899. name: "Macro",
  28900. height: math.unit(100, "feet")
  28901. },
  28902. {
  28903. name: "Macro+",
  28904. height: math.unit(500, "feet")
  28905. },
  28906. {
  28907. name: "Macro++",
  28908. height: math.unit(1000, "feet")
  28909. },
  28910. ]
  28911. ))
  28912. characterMakers.push(() => makeCharacter(
  28913. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  28914. {
  28915. front: {
  28916. height: math.unit(6, "feet"),
  28917. weight: math.unit(150, "lb"),
  28918. name: "Front",
  28919. image: {
  28920. source: "./media/characters/kaunan/front.svg",
  28921. extra: 2890 / 2523,
  28922. bottom: 49 / 2939
  28923. }
  28924. },
  28925. },
  28926. [
  28927. {
  28928. name: "Macro",
  28929. height: math.unit(150, "feet"),
  28930. default: true
  28931. },
  28932. ]
  28933. ))
  28934. characterMakers.push(() => makeCharacter(
  28935. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  28936. {
  28937. front: {
  28938. height: math.unit(175, "cm"),
  28939. weight: math.unit(60, "kg"),
  28940. name: "Front",
  28941. image: {
  28942. source: "./media/characters/fei/front.svg",
  28943. extra: 1873/1723,
  28944. bottom: 53/1926
  28945. }
  28946. },
  28947. },
  28948. [
  28949. {
  28950. name: "Mortal",
  28951. height: math.unit(175, "cm")
  28952. },
  28953. {
  28954. name: "Normal",
  28955. height: math.unit(3500, "m"),
  28956. default: true
  28957. },
  28958. {
  28959. name: "Stroll",
  28960. height: math.unit(17.5, "km")
  28961. },
  28962. {
  28963. name: "Showoff",
  28964. height: math.unit(175, "km")
  28965. },
  28966. ]
  28967. ))
  28968. characterMakers.push(() => makeCharacter(
  28969. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  28970. {
  28971. front: {
  28972. height: math.unit(7, "feet"),
  28973. weight: math.unit(1000, "kg"),
  28974. name: "Front",
  28975. image: {
  28976. source: "./media/characters/edrax/front.svg",
  28977. extra: 2838 / 2550,
  28978. bottom: 130 / 2968
  28979. }
  28980. },
  28981. },
  28982. [
  28983. {
  28984. name: "Small",
  28985. height: math.unit(7, "feet")
  28986. },
  28987. {
  28988. name: "Normal",
  28989. height: math.unit(1500, "meters")
  28990. },
  28991. {
  28992. name: "Mega",
  28993. height: math.unit(12000000, "km"),
  28994. default: true
  28995. },
  28996. {
  28997. name: "Megamacro",
  28998. height: math.unit(10600000, "lightyears")
  28999. },
  29000. {
  29001. name: "Hypermacro",
  29002. height: math.unit(256, "yottameters")
  29003. },
  29004. ]
  29005. ))
  29006. characterMakers.push(() => makeCharacter(
  29007. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  29008. {
  29009. front: {
  29010. height: math.unit(10, "feet"),
  29011. weight: math.unit(750, "lb"),
  29012. name: "Front",
  29013. image: {
  29014. source: "./media/characters/clove/front.svg",
  29015. extra: 1918/1751,
  29016. bottom: 52/1970
  29017. }
  29018. },
  29019. back: {
  29020. height: math.unit(10, "feet"),
  29021. weight: math.unit(750, "lb"),
  29022. name: "Back",
  29023. image: {
  29024. source: "./media/characters/clove/back.svg",
  29025. extra: 1912/1747,
  29026. bottom: 50/1962
  29027. }
  29028. },
  29029. },
  29030. [
  29031. {
  29032. name: "Normal",
  29033. height: math.unit(10, "feet"),
  29034. default: true
  29035. },
  29036. ]
  29037. ))
  29038. characterMakers.push(() => makeCharacter(
  29039. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  29040. {
  29041. front: {
  29042. height: math.unit(4, "feet"),
  29043. weight: math.unit(50, "lb"),
  29044. name: "Front",
  29045. image: {
  29046. source: "./media/characters/alex-rabbit/front.svg",
  29047. extra: 507 / 458,
  29048. bottom: 18.5 / 527
  29049. }
  29050. },
  29051. back: {
  29052. height: math.unit(4, "feet"),
  29053. weight: math.unit(50, "lb"),
  29054. name: "Back",
  29055. image: {
  29056. source: "./media/characters/alex-rabbit/back.svg",
  29057. extra: 502 / 460,
  29058. bottom: 18.9 / 521
  29059. }
  29060. },
  29061. },
  29062. [
  29063. {
  29064. name: "Normal",
  29065. height: math.unit(4, "feet"),
  29066. default: true
  29067. },
  29068. ]
  29069. ))
  29070. characterMakers.push(() => makeCharacter(
  29071. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  29072. {
  29073. front: {
  29074. height: math.unit(1 + 3 / 12, "feet"),
  29075. weight: math.unit(80, "lb"),
  29076. name: "Front",
  29077. image: {
  29078. source: "./media/characters/zander-rose/front.svg",
  29079. extra: 916 / 797,
  29080. bottom: 17 / 933
  29081. }
  29082. },
  29083. back: {
  29084. height: math.unit(1 + 3 / 12, "feet"),
  29085. weight: math.unit(80, "lb"),
  29086. name: "Back",
  29087. image: {
  29088. source: "./media/characters/zander-rose/back.svg",
  29089. extra: 903 / 779,
  29090. bottom: 31 / 934
  29091. }
  29092. },
  29093. },
  29094. [
  29095. {
  29096. name: "Normal",
  29097. height: math.unit(1 + 3 / 12, "feet"),
  29098. default: true
  29099. },
  29100. ]
  29101. ))
  29102. characterMakers.push(() => makeCharacter(
  29103. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  29104. {
  29105. anthro: {
  29106. height: math.unit(6, "feet"),
  29107. weight: math.unit(150, "lb"),
  29108. name: "Anthro",
  29109. image: {
  29110. source: "./media/characters/razz/anthro.svg",
  29111. extra: 1437 / 1343,
  29112. bottom: 48 / 1485
  29113. }
  29114. },
  29115. feral: {
  29116. height: math.unit(6, "feet"),
  29117. weight: math.unit(150, "lb"),
  29118. name: "Feral",
  29119. image: {
  29120. source: "./media/characters/razz/feral.svg",
  29121. extra: 2569 / 1385,
  29122. bottom: 95 / 2664
  29123. }
  29124. },
  29125. },
  29126. [
  29127. {
  29128. name: "Normal",
  29129. height: math.unit(6, "feet"),
  29130. default: true
  29131. },
  29132. ]
  29133. ))
  29134. characterMakers.push(() => makeCharacter(
  29135. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  29136. {
  29137. front: {
  29138. height: math.unit(9 + 4 / 12, "feet"),
  29139. weight: math.unit(500, "lb"),
  29140. name: "Front",
  29141. image: {
  29142. source: "./media/characters/morrigan/front.svg",
  29143. extra: 2707 / 2579,
  29144. bottom: 156 / 2863
  29145. }
  29146. },
  29147. },
  29148. [
  29149. {
  29150. name: "Normal",
  29151. height: math.unit(9 + 4 / 12, "feet"),
  29152. default: true
  29153. },
  29154. ]
  29155. ))
  29156. characterMakers.push(() => makeCharacter(
  29157. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  29158. {
  29159. front: {
  29160. height: math.unit(5, "stories"),
  29161. weight: math.unit(4000, "lb"),
  29162. name: "Front",
  29163. image: {
  29164. source: "./media/characters/jenene/front.svg",
  29165. extra: 1780 / 1710,
  29166. bottom: 57 / 1837
  29167. }
  29168. },
  29169. },
  29170. [
  29171. {
  29172. name: "Normal",
  29173. height: math.unit(5, "stories"),
  29174. default: true
  29175. },
  29176. ]
  29177. ))
  29178. characterMakers.push(() => makeCharacter(
  29179. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  29180. {
  29181. taurSfw: {
  29182. height: math.unit(10, "meters"),
  29183. weight: math.unit(17500, "kg"),
  29184. name: "Taur",
  29185. image: {
  29186. source: "./media/characters/faey/taur-sfw.svg",
  29187. extra: 1200 / 968,
  29188. bottom: 41 / 1241
  29189. }
  29190. },
  29191. chestmaw: {
  29192. height: math.unit(2.01, "meters"),
  29193. name: "Chestmaw",
  29194. image: {
  29195. source: "./media/characters/faey/chestmaw.svg"
  29196. }
  29197. },
  29198. foot: {
  29199. height: math.unit(2.43, "meters"),
  29200. name: "Foot",
  29201. image: {
  29202. source: "./media/characters/faey/foot.svg"
  29203. }
  29204. },
  29205. jaws: {
  29206. height: math.unit(1.66, "meters"),
  29207. name: "Jaws",
  29208. image: {
  29209. source: "./media/characters/faey/jaws.svg"
  29210. }
  29211. },
  29212. tongues: {
  29213. height: math.unit(2.01, "meters"),
  29214. name: "Tongues",
  29215. image: {
  29216. source: "./media/characters/faey/tongues.svg"
  29217. }
  29218. },
  29219. },
  29220. [
  29221. {
  29222. name: "Small",
  29223. height: math.unit(10, "meters"),
  29224. default: true
  29225. },
  29226. {
  29227. name: "Big",
  29228. height: math.unit(500000, "km")
  29229. },
  29230. ]
  29231. ))
  29232. characterMakers.push(() => makeCharacter(
  29233. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  29234. {
  29235. front: {
  29236. height: math.unit(7, "feet"),
  29237. weight: math.unit(275, "lb"),
  29238. name: "Front",
  29239. image: {
  29240. source: "./media/characters/roku/front.svg",
  29241. extra: 903 / 878,
  29242. bottom: 37 / 940
  29243. }
  29244. },
  29245. },
  29246. [
  29247. {
  29248. name: "Normal",
  29249. height: math.unit(7, "feet"),
  29250. default: true
  29251. },
  29252. {
  29253. name: "Macro",
  29254. height: math.unit(500, "feet")
  29255. },
  29256. {
  29257. name: "Megamacro",
  29258. height: math.unit(200, "miles")
  29259. },
  29260. ]
  29261. ))
  29262. characterMakers.push(() => makeCharacter(
  29263. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  29264. {
  29265. front: {
  29266. height: math.unit(6 + 2 / 12, "feet"),
  29267. weight: math.unit(150, "lb"),
  29268. name: "Front",
  29269. image: {
  29270. source: "./media/characters/lira/front.svg",
  29271. extra: 1727 / 1605,
  29272. bottom: 26 / 1753
  29273. }
  29274. },
  29275. back: {
  29276. height: math.unit(6 + 2 / 12, "feet"),
  29277. weight: math.unit(150, "lb"),
  29278. name: "Back",
  29279. image: {
  29280. source: "./media/characters/lira/back.svg",
  29281. extra: 1713/1621,
  29282. bottom: 20/1733
  29283. }
  29284. },
  29285. hand: {
  29286. height: math.unit(0.75, "feet"),
  29287. name: "Hand",
  29288. image: {
  29289. source: "./media/characters/lira/hand.svg"
  29290. }
  29291. },
  29292. maw: {
  29293. height: math.unit(0.65, "feet"),
  29294. name: "Maw",
  29295. image: {
  29296. source: "./media/characters/lira/maw.svg"
  29297. }
  29298. },
  29299. pawDigi: {
  29300. height: math.unit(1.6, "feet"),
  29301. name: "Paw Digi",
  29302. image: {
  29303. source: "./media/characters/lira/paw-digi.svg"
  29304. }
  29305. },
  29306. pawPlanti: {
  29307. height: math.unit(1.4, "feet"),
  29308. name: "Paw Planti",
  29309. image: {
  29310. source: "./media/characters/lira/paw-planti.svg"
  29311. }
  29312. },
  29313. },
  29314. [
  29315. {
  29316. name: "Normal",
  29317. height: math.unit(6 + 2 / 12, "feet"),
  29318. default: true
  29319. },
  29320. {
  29321. name: "Macro",
  29322. height: math.unit(100, "feet")
  29323. },
  29324. {
  29325. name: "Macro²",
  29326. height: math.unit(1600, "feet")
  29327. },
  29328. {
  29329. name: "Planetary",
  29330. height: math.unit(20, "earths")
  29331. },
  29332. ]
  29333. ))
  29334. characterMakers.push(() => makeCharacter(
  29335. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  29336. {
  29337. front: {
  29338. height: math.unit(6, "feet"),
  29339. weight: math.unit(150, "lb"),
  29340. name: "Front",
  29341. image: {
  29342. source: "./media/characters/hadjet/front.svg",
  29343. extra: 1480 / 1346,
  29344. bottom: 26 / 1506
  29345. }
  29346. },
  29347. frontNsfw: {
  29348. height: math.unit(6, "feet"),
  29349. weight: math.unit(150, "lb"),
  29350. name: "Front (NSFW)",
  29351. image: {
  29352. source: "./media/characters/hadjet/front-nsfw.svg",
  29353. extra: 1440 / 1358,
  29354. bottom: 52 / 1492
  29355. }
  29356. },
  29357. },
  29358. [
  29359. {
  29360. name: "Macro",
  29361. height: math.unit(10, "stories"),
  29362. default: true
  29363. },
  29364. {
  29365. name: "Megamacro",
  29366. height: math.unit(1.5, "miles")
  29367. },
  29368. {
  29369. name: "Megamacro+",
  29370. height: math.unit(5, "miles")
  29371. },
  29372. ]
  29373. ))
  29374. characterMakers.push(() => makeCharacter(
  29375. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  29376. {
  29377. side: {
  29378. height: math.unit(106, "feet"),
  29379. weight: math.unit(500, "tonnes"),
  29380. name: "Side",
  29381. image: {
  29382. source: "./media/characters/kodran/side.svg",
  29383. extra: 553 / 480,
  29384. bottom: 33 / 586
  29385. }
  29386. },
  29387. front: {
  29388. height: math.unit(132, "feet"),
  29389. weight: math.unit(500, "tonnes"),
  29390. name: "Front",
  29391. image: {
  29392. source: "./media/characters/kodran/front.svg",
  29393. extra: 667 / 643,
  29394. bottom: 42 / 709
  29395. }
  29396. },
  29397. flying: {
  29398. height: math.unit(350, "feet"),
  29399. weight: math.unit(500, "tonnes"),
  29400. name: "Flying",
  29401. image: {
  29402. source: "./media/characters/kodran/flying.svg"
  29403. }
  29404. },
  29405. foot: {
  29406. height: math.unit(33, "feet"),
  29407. name: "Foot",
  29408. image: {
  29409. source: "./media/characters/kodran/foot.svg"
  29410. }
  29411. },
  29412. footFront: {
  29413. height: math.unit(19, "feet"),
  29414. name: "Foot (Front)",
  29415. image: {
  29416. source: "./media/characters/kodran/foot-front.svg",
  29417. extra: 261 / 261,
  29418. bottom: 91 / 352
  29419. }
  29420. },
  29421. headFront: {
  29422. height: math.unit(53, "feet"),
  29423. name: "Head (Front)",
  29424. image: {
  29425. source: "./media/characters/kodran/head-front.svg"
  29426. }
  29427. },
  29428. headSide: {
  29429. height: math.unit(65, "feet"),
  29430. name: "Head (Side)",
  29431. image: {
  29432. source: "./media/characters/kodran/head-side.svg"
  29433. }
  29434. },
  29435. throat: {
  29436. height: math.unit(79, "feet"),
  29437. name: "Throat",
  29438. image: {
  29439. source: "./media/characters/kodran/throat.svg"
  29440. }
  29441. },
  29442. },
  29443. [
  29444. {
  29445. name: "Large",
  29446. height: math.unit(106, "feet"),
  29447. default: true
  29448. },
  29449. ]
  29450. ))
  29451. characterMakers.push(() => makeCharacter(
  29452. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  29453. {
  29454. side: {
  29455. height: math.unit(11, "feet"),
  29456. weight: math.unit(150, "lb"),
  29457. name: "Side",
  29458. image: {
  29459. source: "./media/characters/pyxaron/side.svg",
  29460. extra: 305 / 195,
  29461. bottom: 17 / 322
  29462. }
  29463. },
  29464. },
  29465. [
  29466. {
  29467. name: "Normal",
  29468. height: math.unit(11, "feet"),
  29469. default: true
  29470. },
  29471. ]
  29472. ))
  29473. characterMakers.push(() => makeCharacter(
  29474. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  29475. {
  29476. front: {
  29477. height: math.unit(6, "feet"),
  29478. weight: math.unit(150, "lb"),
  29479. name: "Front",
  29480. image: {
  29481. source: "./media/characters/meep/front.svg",
  29482. extra: 88 / 80,
  29483. bottom: 6 / 94
  29484. }
  29485. },
  29486. },
  29487. [
  29488. {
  29489. name: "Fun Sized",
  29490. height: math.unit(2, "inches"),
  29491. default: true
  29492. },
  29493. {
  29494. name: "Friend Sized",
  29495. height: math.unit(8, "inches")
  29496. },
  29497. ]
  29498. ))
  29499. characterMakers.push(() => makeCharacter(
  29500. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  29501. {
  29502. front: {
  29503. height: math.unit(15, "feet"),
  29504. weight: math.unit(2500, "lb"),
  29505. name: "Front",
  29506. image: {
  29507. source: "./media/characters/holly-rabbit/front.svg",
  29508. extra: 1433 / 1233,
  29509. bottom: 125 / 1558
  29510. }
  29511. },
  29512. dick: {
  29513. height: math.unit(4.6, "feet"),
  29514. name: "Dick",
  29515. image: {
  29516. source: "./media/characters/holly-rabbit/dick.svg"
  29517. }
  29518. },
  29519. },
  29520. [
  29521. {
  29522. name: "Normal",
  29523. height: math.unit(15, "feet"),
  29524. default: true
  29525. },
  29526. {
  29527. name: "Macro",
  29528. height: math.unit(250, "feet")
  29529. },
  29530. {
  29531. name: "Macro+",
  29532. height: math.unit(2500, "feet")
  29533. },
  29534. ]
  29535. ))
  29536. characterMakers.push(() => makeCharacter(
  29537. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  29538. {
  29539. front: {
  29540. height: math.unit(3.02, "meters"),
  29541. weight: math.unit(500, "kg"),
  29542. name: "Front",
  29543. image: {
  29544. source: "./media/characters/drena/front.svg",
  29545. extra: 282 / 243,
  29546. bottom: 8 / 290
  29547. }
  29548. },
  29549. side: {
  29550. height: math.unit(3.02, "meters"),
  29551. weight: math.unit(500, "kg"),
  29552. name: "Side",
  29553. image: {
  29554. source: "./media/characters/drena/side.svg",
  29555. extra: 280 / 245,
  29556. bottom: 10 / 290
  29557. }
  29558. },
  29559. back: {
  29560. height: math.unit(3.02, "meters"),
  29561. weight: math.unit(500, "kg"),
  29562. name: "Back",
  29563. image: {
  29564. source: "./media/characters/drena/back.svg",
  29565. extra: 278 / 243,
  29566. bottom: 2 / 280
  29567. }
  29568. },
  29569. foot: {
  29570. height: math.unit(0.75, "meters"),
  29571. name: "Foot",
  29572. image: {
  29573. source: "./media/characters/drena/foot.svg"
  29574. }
  29575. },
  29576. maw: {
  29577. height: math.unit(0.82, "meters"),
  29578. name: "Maw",
  29579. image: {
  29580. source: "./media/characters/drena/maw.svg"
  29581. }
  29582. },
  29583. eating: {
  29584. height: math.unit(0.75, "meters"),
  29585. name: "Eating",
  29586. image: {
  29587. source: "./media/characters/drena/eating.svg"
  29588. }
  29589. },
  29590. rump: {
  29591. height: math.unit(0.93, "meters"),
  29592. name: "Rump",
  29593. image: {
  29594. source: "./media/characters/drena/rump.svg"
  29595. }
  29596. },
  29597. },
  29598. [
  29599. {
  29600. name: "Normal",
  29601. height: math.unit(3.02, "meters"),
  29602. default: true
  29603. },
  29604. ]
  29605. ))
  29606. characterMakers.push(() => makeCharacter(
  29607. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  29608. {
  29609. front: {
  29610. height: math.unit(6 + 4 / 12, "feet"),
  29611. weight: math.unit(250, "lb"),
  29612. name: "Front",
  29613. image: {
  29614. source: "./media/characters/remmyzilla/front.svg",
  29615. extra: 4033 / 3588,
  29616. bottom: 123 / 4156
  29617. }
  29618. },
  29619. back: {
  29620. height: math.unit(6 + 4 / 12, "feet"),
  29621. weight: math.unit(250, "lb"),
  29622. name: "Back",
  29623. image: {
  29624. source: "./media/characters/remmyzilla/back.svg",
  29625. extra: 2687 / 2555,
  29626. bottom: 48 / 2735
  29627. }
  29628. },
  29629. paw: {
  29630. height: math.unit(1.73, "feet"),
  29631. name: "Paw",
  29632. image: {
  29633. source: "./media/characters/remmyzilla/paw.svg"
  29634. }
  29635. },
  29636. maw: {
  29637. height: math.unit(1.73, "feet"),
  29638. name: "Maw",
  29639. image: {
  29640. source: "./media/characters/remmyzilla/maw.svg"
  29641. }
  29642. },
  29643. },
  29644. [
  29645. {
  29646. name: "Normal",
  29647. height: math.unit(6 + 4 / 12, "feet")
  29648. },
  29649. {
  29650. name: "Minimacro",
  29651. height: math.unit(12 + 8 / 12, "feet")
  29652. },
  29653. {
  29654. name: "Normal",
  29655. height: math.unit(640, "feet"),
  29656. default: true
  29657. },
  29658. {
  29659. name: "Megamacro",
  29660. height: math.unit(6400, "feet")
  29661. },
  29662. {
  29663. name: "Gigamacro",
  29664. height: math.unit(64000, "miles")
  29665. },
  29666. ]
  29667. ))
  29668. characterMakers.push(() => makeCharacter(
  29669. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  29670. {
  29671. front: {
  29672. height: math.unit(2.5, "meters"),
  29673. weight: math.unit(300, "lb"),
  29674. name: "Front",
  29675. image: {
  29676. source: "./media/characters/lawrence/front.svg",
  29677. extra: 357 / 335,
  29678. bottom: 30 / 387
  29679. }
  29680. },
  29681. back: {
  29682. height: math.unit(2.5, "meters"),
  29683. weight: math.unit(300, "lb"),
  29684. name: "Back",
  29685. image: {
  29686. source: "./media/characters/lawrence/back.svg",
  29687. extra: 357 / 338,
  29688. bottom: 16 / 373
  29689. }
  29690. },
  29691. head: {
  29692. height: math.unit(0.9, "meter"),
  29693. name: "Head",
  29694. image: {
  29695. source: "./media/characters/lawrence/head.svg"
  29696. }
  29697. },
  29698. maw: {
  29699. height: math.unit(0.7, "meter"),
  29700. name: "Maw",
  29701. image: {
  29702. source: "./media/characters/lawrence/maw.svg"
  29703. }
  29704. },
  29705. footBottom: {
  29706. height: math.unit(0.5, "meter"),
  29707. name: "Foot (Bottom)",
  29708. image: {
  29709. source: "./media/characters/lawrence/foot-bottom.svg"
  29710. }
  29711. },
  29712. footTop: {
  29713. height: math.unit(0.5, "meter"),
  29714. name: "Foot (Top)",
  29715. image: {
  29716. source: "./media/characters/lawrence/foot-top.svg"
  29717. }
  29718. },
  29719. },
  29720. [
  29721. {
  29722. name: "Normal",
  29723. height: math.unit(2.5, "meters"),
  29724. default: true
  29725. },
  29726. {
  29727. name: "Macro",
  29728. height: math.unit(95, "meters")
  29729. },
  29730. {
  29731. name: "Megamacro",
  29732. height: math.unit(150, "km")
  29733. },
  29734. ]
  29735. ))
  29736. characterMakers.push(() => makeCharacter(
  29737. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  29738. {
  29739. front: {
  29740. height: math.unit(4.2, "meters"),
  29741. name: "Front",
  29742. image: {
  29743. source: "./media/characters/sydney/front.svg",
  29744. extra: 1323 / 1277,
  29745. bottom: 111 / 1434
  29746. }
  29747. },
  29748. },
  29749. [
  29750. {
  29751. name: "Normal",
  29752. height: math.unit(4.2, "meters"),
  29753. default: true
  29754. },
  29755. ]
  29756. ))
  29757. characterMakers.push(() => makeCharacter(
  29758. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  29759. {
  29760. back: {
  29761. height: math.unit(201, "feet"),
  29762. name: "Back",
  29763. image: {
  29764. source: "./media/characters/jessica/back.svg",
  29765. extra: 273 / 259,
  29766. bottom: 7 / 280
  29767. }
  29768. },
  29769. },
  29770. [
  29771. {
  29772. name: "Normal",
  29773. height: math.unit(201, "feet"),
  29774. default: true
  29775. },
  29776. {
  29777. name: "Megamacro",
  29778. height: math.unit(8, "miles")
  29779. },
  29780. ]
  29781. ))
  29782. characterMakers.push(() => makeCharacter(
  29783. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  29784. {
  29785. side: {
  29786. height: math.unit(5.6, "m"),
  29787. weight: math.unit(8000, "kg"),
  29788. name: "Side",
  29789. image: {
  29790. source: "./media/characters/victoria/side.svg",
  29791. extra: 1542/1229,
  29792. bottom: 124/1666
  29793. }
  29794. },
  29795. maw: {
  29796. height: math.unit(7.14, "feet"),
  29797. name: "Maw",
  29798. image: {
  29799. source: "./media/characters/victoria/maw.svg"
  29800. }
  29801. },
  29802. },
  29803. [
  29804. {
  29805. name: "Normal",
  29806. height: math.unit(5.6, "m"),
  29807. default: true
  29808. },
  29809. ]
  29810. ))
  29811. characterMakers.push(() => makeCharacter(
  29812. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  29813. {
  29814. front: {
  29815. height: math.unit(5 + 6 / 12, "feet"),
  29816. name: "Front",
  29817. image: {
  29818. source: "./media/characters/cat/front.svg",
  29819. extra: 1449/1295,
  29820. bottom: 34/1483
  29821. },
  29822. form: "cat",
  29823. default: true
  29824. },
  29825. back: {
  29826. height: math.unit(5 + 6 / 12, "feet"),
  29827. name: "Back",
  29828. image: {
  29829. source: "./media/characters/cat/back.svg",
  29830. extra: 1466/1301,
  29831. bottom: 19/1485
  29832. },
  29833. form: "cat"
  29834. },
  29835. taur: {
  29836. height: math.unit(7, "feet"),
  29837. name: "Taur",
  29838. image: {
  29839. source: "./media/characters/cat/taur.svg",
  29840. extra: 1389/1233,
  29841. bottom: 83/1472
  29842. },
  29843. form: "taur",
  29844. default: true
  29845. },
  29846. lucarioFront: {
  29847. height: math.unit(4, "feet"),
  29848. name: "Lucario (Front)",
  29849. image: {
  29850. source: "./media/characters/cat/lucario-front.svg",
  29851. extra: 1149/1019,
  29852. bottom: 84/1233
  29853. },
  29854. form: "lucario",
  29855. default: true
  29856. },
  29857. lucarioBack: {
  29858. height: math.unit(4, "feet"),
  29859. name: "Lucario (Back)",
  29860. image: {
  29861. source: "./media/characters/cat/lucario-back.svg",
  29862. extra: 1190/1059,
  29863. bottom: 33/1223
  29864. },
  29865. form: "lucario"
  29866. },
  29867. megaLucario: {
  29868. height: math.unit(4, "feet"),
  29869. name: "Mega Lucario",
  29870. image: {
  29871. source: "./media/characters/cat/mega-lucario.svg",
  29872. extra: 1515 / 1319,
  29873. bottom: 63 / 1578
  29874. },
  29875. form: "lucario"
  29876. },
  29877. nickit: {
  29878. height: math.unit(2, "feet"),
  29879. name: "Nickit",
  29880. image: {
  29881. source: "./media/characters/cat/nickit.svg",
  29882. extra: 1980 / 1585,
  29883. bottom: 102 / 2082
  29884. },
  29885. form: "nickit",
  29886. default: true
  29887. },
  29888. lopunnyFront: {
  29889. height: math.unit(5, "feet"),
  29890. name: "Lopunny (Front)",
  29891. image: {
  29892. source: "./media/characters/cat/lopunny-front.svg",
  29893. extra: 1782 / 1469,
  29894. bottom: 38 / 1820
  29895. },
  29896. form: "lopunny",
  29897. default: true
  29898. },
  29899. lopunnyBack: {
  29900. height: math.unit(5, "feet"),
  29901. name: "Lopunny (Back)",
  29902. image: {
  29903. source: "./media/characters/cat/lopunny-back.svg",
  29904. extra: 1660 / 1490,
  29905. bottom: 25 / 1685
  29906. },
  29907. form: "lopunny"
  29908. },
  29909. },
  29910. [
  29911. {
  29912. name: "Really small",
  29913. height: math.unit(1, "nm")
  29914. },
  29915. {
  29916. name: "Micro",
  29917. height: math.unit(5, "inches")
  29918. },
  29919. {
  29920. name: "Normal",
  29921. height: math.unit(5 + 6 / 12, "feet"),
  29922. default: true
  29923. },
  29924. {
  29925. name: "Macro",
  29926. height: math.unit(50, "feet")
  29927. },
  29928. {
  29929. name: "Macro+",
  29930. height: math.unit(150, "feet")
  29931. },
  29932. {
  29933. name: "Megamacro",
  29934. height: math.unit(100, "miles")
  29935. },
  29936. ]
  29937. ))
  29938. characterMakers.push(() => makeCharacter(
  29939. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  29940. {
  29941. front: {
  29942. height: math.unit(63.4, "meters"),
  29943. weight: math.unit(3.28349e+6, "kilograms"),
  29944. name: "Front",
  29945. image: {
  29946. source: "./media/characters/kirina-violet/front.svg",
  29947. extra: 2812 / 2725,
  29948. bottom: 0 / 2812
  29949. }
  29950. },
  29951. back: {
  29952. height: math.unit(63.4, "meters"),
  29953. weight: math.unit(3.28349e+6, "kilograms"),
  29954. name: "Back",
  29955. image: {
  29956. source: "./media/characters/kirina-violet/back.svg",
  29957. extra: 2812 / 2725,
  29958. bottom: 0 / 2812
  29959. }
  29960. },
  29961. mouth: {
  29962. height: math.unit(4.35, "meters"),
  29963. name: "Mouth",
  29964. image: {
  29965. source: "./media/characters/kirina-violet/mouth.svg"
  29966. }
  29967. },
  29968. paw: {
  29969. height: math.unit(5.6, "meters"),
  29970. name: "Paw",
  29971. image: {
  29972. source: "./media/characters/kirina-violet/paw.svg"
  29973. }
  29974. },
  29975. tail: {
  29976. height: math.unit(18, "meters"),
  29977. name: "Tail",
  29978. image: {
  29979. source: "./media/characters/kirina-violet/tail.svg"
  29980. }
  29981. },
  29982. },
  29983. [
  29984. {
  29985. name: "Macro",
  29986. height: math.unit(63.4, "meters"),
  29987. default: true
  29988. },
  29989. ]
  29990. ))
  29991. characterMakers.push(() => makeCharacter(
  29992. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  29993. {
  29994. front: {
  29995. height: math.unit(75, "feet"),
  29996. name: "Front",
  29997. image: {
  29998. source: "./media/characters/cat-gigachu/front.svg",
  29999. extra: 1239/1027,
  30000. bottom: 32/1271
  30001. }
  30002. },
  30003. back: {
  30004. height: math.unit(75, "feet"),
  30005. name: "Back",
  30006. image: {
  30007. source: "./media/characters/cat-gigachu/back.svg",
  30008. extra: 1229/1030,
  30009. bottom: 9/1238
  30010. }
  30011. },
  30012. },
  30013. [
  30014. {
  30015. name: "Dynamax",
  30016. height: math.unit(75, "feet"),
  30017. default: true
  30018. },
  30019. ]
  30020. ))
  30021. characterMakers.push(() => makeCharacter(
  30022. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  30023. {
  30024. front: {
  30025. height: math.unit(6, "feet"),
  30026. weight: math.unit(150, "lb"),
  30027. name: "Front",
  30028. image: {
  30029. source: "./media/characters/sfaiyan/front.svg",
  30030. extra: 999 / 978,
  30031. bottom: 5 / 1004
  30032. }
  30033. },
  30034. },
  30035. [
  30036. {
  30037. name: "Normal",
  30038. height: math.unit(1.82, "meters")
  30039. },
  30040. {
  30041. name: "Giant",
  30042. height: math.unit(2.27, "km"),
  30043. default: true
  30044. },
  30045. ]
  30046. ))
  30047. characterMakers.push(() => makeCharacter(
  30048. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  30049. {
  30050. front: {
  30051. height: math.unit(179, "cm"),
  30052. weight: math.unit(100, "kg"),
  30053. name: "Front",
  30054. image: {
  30055. source: "./media/characters/raunehkeli/front.svg",
  30056. extra: 1934 / 1926,
  30057. bottom: 0 / 1934
  30058. }
  30059. },
  30060. },
  30061. [
  30062. {
  30063. name: "Normal",
  30064. height: math.unit(179, "cm")
  30065. },
  30066. {
  30067. name: "Maximum",
  30068. height: math.unit(575, "meters"),
  30069. default: true
  30070. },
  30071. ]
  30072. ))
  30073. characterMakers.push(() => makeCharacter(
  30074. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  30075. {
  30076. front: {
  30077. height: math.unit(6, "feet"),
  30078. weight: math.unit(150, "lb"),
  30079. name: "Front",
  30080. image: {
  30081. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  30082. extra: 2625 / 2518,
  30083. bottom: 60 / 2685
  30084. }
  30085. },
  30086. },
  30087. [
  30088. {
  30089. name: "Normal",
  30090. height: math.unit(6 + 2 / 12, "feet")
  30091. },
  30092. {
  30093. name: "Macro",
  30094. height: math.unit(1180, "feet"),
  30095. default: true
  30096. },
  30097. ]
  30098. ))
  30099. characterMakers.push(() => makeCharacter(
  30100. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  30101. {
  30102. front: {
  30103. height: math.unit(5 + 6 / 12, "feet"),
  30104. weight: math.unit(108, "lb"),
  30105. name: "Front",
  30106. image: {
  30107. source: "./media/characters/lilith-zott/front.svg",
  30108. extra: 2510 / 2238,
  30109. bottom: 100 / 2610
  30110. }
  30111. },
  30112. frontDressed: {
  30113. height: math.unit(5 + 6 / 12, "feet"),
  30114. weight: math.unit(108, "lb"),
  30115. name: "Front (Dressed)",
  30116. image: {
  30117. source: "./media/characters/lilith-zott/front-dressed.svg",
  30118. extra: 2510 / 2238,
  30119. bottom: 100 / 2610
  30120. }
  30121. },
  30122. },
  30123. [
  30124. {
  30125. name: "Normal",
  30126. height: math.unit(5 + 6 / 12, "feet")
  30127. },
  30128. {
  30129. name: "Macro",
  30130. height: math.unit(1030, "feet"),
  30131. default: true
  30132. },
  30133. ]
  30134. ))
  30135. characterMakers.push(() => makeCharacter(
  30136. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  30137. {
  30138. front: {
  30139. height: math.unit(6, "feet"),
  30140. weight: math.unit(150, "lb"),
  30141. name: "Front",
  30142. image: {
  30143. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  30144. extra: 2567 / 2435,
  30145. bottom: 39 / 2606
  30146. }
  30147. },
  30148. frontSuper: {
  30149. height: math.unit(6, "feet"),
  30150. name: "Front (Super)",
  30151. image: {
  30152. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  30153. extra: 2567 / 2435,
  30154. bottom: 39 / 2606
  30155. }
  30156. },
  30157. },
  30158. [
  30159. {
  30160. name: "Normal",
  30161. height: math.unit(5 + 10 / 12, "feet")
  30162. },
  30163. {
  30164. name: "Macro",
  30165. height: math.unit(1100, "feet"),
  30166. default: true
  30167. },
  30168. ]
  30169. ))
  30170. characterMakers.push(() => makeCharacter(
  30171. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  30172. {
  30173. front: {
  30174. height: math.unit(100, "miles"),
  30175. name: "Front",
  30176. image: {
  30177. source: "./media/characters/sona/front.svg",
  30178. extra: 2433 / 2201,
  30179. bottom: 53 / 2486
  30180. }
  30181. },
  30182. foot: {
  30183. height: math.unit(16.1, "miles"),
  30184. name: "Foot",
  30185. image: {
  30186. source: "./media/characters/sona/foot.svg"
  30187. }
  30188. },
  30189. },
  30190. [
  30191. {
  30192. name: "Macro",
  30193. height: math.unit(100, "miles"),
  30194. default: true
  30195. },
  30196. ]
  30197. ))
  30198. characterMakers.push(() => makeCharacter(
  30199. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  30200. {
  30201. front: {
  30202. height: math.unit(6, "feet"),
  30203. weight: math.unit(150, "lb"),
  30204. name: "Front",
  30205. image: {
  30206. source: "./media/characters/bailey/front.svg",
  30207. extra: 1778 / 1724,
  30208. bottom: 30 / 1808
  30209. }
  30210. },
  30211. },
  30212. [
  30213. {
  30214. name: "Micro",
  30215. height: math.unit(4, "inches")
  30216. },
  30217. {
  30218. name: "Normal",
  30219. height: math.unit(5 + 5 / 12, "feet"),
  30220. default: true
  30221. },
  30222. {
  30223. name: "Macro",
  30224. height: math.unit(250, "feet")
  30225. },
  30226. {
  30227. name: "Megamacro",
  30228. height: math.unit(100, "miles")
  30229. },
  30230. ]
  30231. ))
  30232. characterMakers.push(() => makeCharacter(
  30233. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  30234. {
  30235. front: {
  30236. height: math.unit(5 + 2 / 12, "feet"),
  30237. weight: math.unit(120, "lb"),
  30238. name: "Front",
  30239. image: {
  30240. source: "./media/characters/snaps/front.svg",
  30241. extra: 2370 / 2177,
  30242. bottom: 48 / 2418
  30243. }
  30244. },
  30245. back: {
  30246. height: math.unit(5 + 2 / 12, "feet"),
  30247. weight: math.unit(120, "lb"),
  30248. name: "Back",
  30249. image: {
  30250. source: "./media/characters/snaps/back.svg",
  30251. extra: 2408 / 2258,
  30252. bottom: 15 / 2423
  30253. }
  30254. },
  30255. },
  30256. [
  30257. {
  30258. name: "Micro",
  30259. height: math.unit(9, "inches")
  30260. },
  30261. {
  30262. name: "Normal",
  30263. height: math.unit(5 + 2 / 12, "feet"),
  30264. default: true
  30265. },
  30266. {
  30267. name: "Mini Macro",
  30268. height: math.unit(10, "feet")
  30269. },
  30270. ]
  30271. ))
  30272. characterMakers.push(() => makeCharacter(
  30273. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  30274. {
  30275. front: {
  30276. height: math.unit(1.8, "meters"),
  30277. weight: math.unit(85, "kg"),
  30278. name: "Front",
  30279. image: {
  30280. source: "./media/characters/azteck/front.svg",
  30281. extra: 2815 / 2625,
  30282. bottom: 89 / 2904
  30283. }
  30284. },
  30285. back: {
  30286. height: math.unit(1.8, "meters"),
  30287. weight: math.unit(85, "kg"),
  30288. name: "Back",
  30289. image: {
  30290. source: "./media/characters/azteck/back.svg",
  30291. extra: 2856 / 2648,
  30292. bottom: 85 / 2941
  30293. }
  30294. },
  30295. frontDressed: {
  30296. height: math.unit(1.8, "meters"),
  30297. weight: math.unit(85, "kg"),
  30298. name: "Front (Dressed)",
  30299. image: {
  30300. source: "./media/characters/azteck/front-dressed.svg",
  30301. extra: 2147 / 2003,
  30302. bottom: 68 / 2215
  30303. }
  30304. },
  30305. head: {
  30306. height: math.unit(0.47, "meters"),
  30307. weight: math.unit(85, "kg"),
  30308. name: "Head",
  30309. image: {
  30310. source: "./media/characters/azteck/head.svg"
  30311. }
  30312. },
  30313. },
  30314. [
  30315. {
  30316. name: "Bite sized",
  30317. height: math.unit(16, "cm")
  30318. },
  30319. {
  30320. name: "Normal",
  30321. height: math.unit(1.8, "meters"),
  30322. default: true
  30323. },
  30324. ]
  30325. ))
  30326. characterMakers.push(() => makeCharacter(
  30327. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  30328. {
  30329. front: {
  30330. height: math.unit(6, "feet"),
  30331. weight: math.unit(150, "lb"),
  30332. name: "Front",
  30333. image: {
  30334. source: "./media/characters/pidge/front.svg",
  30335. extra: 1936/1820,
  30336. bottom: 0/1936
  30337. }
  30338. },
  30339. back: {
  30340. height: math.unit(6, "feet"),
  30341. weight: math.unit(150, "lb"),
  30342. name: "Back",
  30343. image: {
  30344. source: "./media/characters/pidge/back.svg",
  30345. extra: 1938/1843,
  30346. bottom: 0/1938
  30347. }
  30348. },
  30349. casual: {
  30350. height: math.unit(6, "feet"),
  30351. weight: math.unit(150, "lb"),
  30352. name: "Casual",
  30353. image: {
  30354. source: "./media/characters/pidge/casual.svg",
  30355. extra: 1936/1820,
  30356. bottom: 0/1936
  30357. }
  30358. },
  30359. tech: {
  30360. height: math.unit(6, "feet"),
  30361. weight: math.unit(150, "lb"),
  30362. name: "Tech",
  30363. image: {
  30364. source: "./media/characters/pidge/tech.svg",
  30365. extra: 1802/1682,
  30366. bottom: 0/1802
  30367. }
  30368. },
  30369. head: {
  30370. height: math.unit(1.61, "feet"),
  30371. name: "Head",
  30372. image: {
  30373. source: "./media/characters/pidge/head.svg"
  30374. }
  30375. },
  30376. collar: {
  30377. height: math.unit(0.82, "feet"),
  30378. name: "Collar",
  30379. image: {
  30380. source: "./media/characters/pidge/collar.svg"
  30381. }
  30382. },
  30383. },
  30384. [
  30385. {
  30386. name: "Macro",
  30387. height: math.unit(2, "mile"),
  30388. default: true
  30389. },
  30390. {
  30391. name: "PUPPY",
  30392. height: math.unit(20, "miles")
  30393. },
  30394. ]
  30395. ))
  30396. characterMakers.push(() => makeCharacter(
  30397. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  30398. {
  30399. front: {
  30400. height: math.unit(6, "feet"),
  30401. weight: math.unit(150, "lb"),
  30402. name: "Front",
  30403. image: {
  30404. source: "./media/characters/en/front.svg",
  30405. extra: 1697 / 1563,
  30406. bottom: 103 / 1800
  30407. }
  30408. },
  30409. back: {
  30410. height: math.unit(6, "feet"),
  30411. weight: math.unit(150, "lb"),
  30412. name: "Back",
  30413. image: {
  30414. source: "./media/characters/en/back.svg",
  30415. extra: 1700 / 1570,
  30416. bottom: 51 / 1751
  30417. }
  30418. },
  30419. frontDressed: {
  30420. height: math.unit(6, "feet"),
  30421. weight: math.unit(150, "lb"),
  30422. name: "Front (Dressed)",
  30423. image: {
  30424. source: "./media/characters/en/front-dressed.svg",
  30425. extra: 1697 / 1563,
  30426. bottom: 103 / 1800
  30427. }
  30428. },
  30429. backDressed: {
  30430. height: math.unit(6, "feet"),
  30431. weight: math.unit(150, "lb"),
  30432. name: "Back (Dressed)",
  30433. image: {
  30434. source: "./media/characters/en/back-dressed.svg",
  30435. extra: 1700 / 1570,
  30436. bottom: 51 / 1751
  30437. }
  30438. },
  30439. },
  30440. [
  30441. {
  30442. name: "Macro",
  30443. height: math.unit(210, "feet"),
  30444. default: true
  30445. },
  30446. ]
  30447. ))
  30448. characterMakers.push(() => makeCharacter(
  30449. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  30450. {
  30451. front: {
  30452. height: math.unit(6, "feet"),
  30453. weight: math.unit(150, "lb"),
  30454. name: "Front",
  30455. image: {
  30456. source: "./media/characters/haze-orris/front.svg",
  30457. extra: 3975 / 3525,
  30458. bottom: 137 / 4112
  30459. }
  30460. },
  30461. },
  30462. [
  30463. {
  30464. name: "Micro",
  30465. height: math.unit(150, "mm"),
  30466. default: true
  30467. },
  30468. ]
  30469. ))
  30470. characterMakers.push(() => makeCharacter(
  30471. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  30472. {
  30473. front: {
  30474. height: math.unit(6, "feet"),
  30475. weight: math.unit(150, "lb"),
  30476. name: "Front",
  30477. image: {
  30478. source: "./media/characters/casselene-yaro/front.svg",
  30479. extra: 4721 / 4541,
  30480. bottom: 82 / 4803
  30481. }
  30482. },
  30483. back: {
  30484. height: math.unit(6, "feet"),
  30485. weight: math.unit(150, "lb"),
  30486. name: "Back",
  30487. image: {
  30488. source: "./media/characters/casselene-yaro/back.svg",
  30489. extra: 4569 / 4377,
  30490. bottom: 69 / 4638
  30491. }
  30492. },
  30493. dressed: {
  30494. height: math.unit(6, "feet"),
  30495. weight: math.unit(150, "lb"),
  30496. name: "Dressed",
  30497. image: {
  30498. source: "./media/characters/casselene-yaro/dressed.svg",
  30499. extra: 4721 / 4541,
  30500. bottom: 82 / 4803
  30501. }
  30502. },
  30503. maw: {
  30504. height: math.unit(1, "feet"),
  30505. name: "Maw",
  30506. image: {
  30507. source: "./media/characters/casselene-yaro/maw.svg"
  30508. }
  30509. },
  30510. },
  30511. [
  30512. {
  30513. name: "Macro",
  30514. height: math.unit(190, "feet"),
  30515. default: true
  30516. },
  30517. ]
  30518. ))
  30519. characterMakers.push(() => makeCharacter(
  30520. { name: "Platine", species: ["raven"], tags: ["anthro"] },
  30521. {
  30522. front: {
  30523. height: math.unit(10, "feet"),
  30524. weight: math.unit(15015, "lb"),
  30525. name: "Front",
  30526. image: {
  30527. source: "./media/characters/platine/front.svg",
  30528. extra: 1428/1353,
  30529. bottom: 31/1459
  30530. }
  30531. },
  30532. },
  30533. [
  30534. {
  30535. name: "Normal",
  30536. height: math.unit(10, "feet"),
  30537. default: true
  30538. },
  30539. {
  30540. name: "Macro",
  30541. height: math.unit(100, "feet")
  30542. },
  30543. {
  30544. name: "Megamacro",
  30545. height: math.unit(1000, "feet")
  30546. },
  30547. ]
  30548. ))
  30549. characterMakers.push(() => makeCharacter(
  30550. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  30551. {
  30552. front: {
  30553. height: math.unit(15 + 5 / 12, "feet"),
  30554. weight: math.unit(4600, "lb"),
  30555. name: "Front",
  30556. image: {
  30557. source: "./media/characters/neapolitan-ananassa/front.svg",
  30558. extra: 2903 / 2736,
  30559. bottom: 0 / 2903
  30560. }
  30561. },
  30562. side: {
  30563. height: math.unit(15 + 5 / 12, "feet"),
  30564. weight: math.unit(4600, "lb"),
  30565. name: "Side",
  30566. image: {
  30567. source: "./media/characters/neapolitan-ananassa/side.svg",
  30568. extra: 2925 / 2719,
  30569. bottom: 0 / 2925
  30570. }
  30571. },
  30572. back: {
  30573. height: math.unit(15 + 5 / 12, "feet"),
  30574. weight: math.unit(4600, "lb"),
  30575. name: "Back",
  30576. image: {
  30577. source: "./media/characters/neapolitan-ananassa/back.svg",
  30578. extra: 2903 / 2736,
  30579. bottom: 0 / 2903
  30580. }
  30581. },
  30582. },
  30583. [
  30584. {
  30585. name: "Normal",
  30586. height: math.unit(15 + 5 / 12, "feet"),
  30587. default: true
  30588. },
  30589. {
  30590. name: "Post-Millenium",
  30591. height: math.unit(35 + 5 / 12, "feet")
  30592. },
  30593. {
  30594. name: "Post-Era",
  30595. height: math.unit(450 + 5 / 12, "feet")
  30596. },
  30597. ]
  30598. ))
  30599. characterMakers.push(() => makeCharacter(
  30600. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  30601. {
  30602. front: {
  30603. height: math.unit(300, "meters"),
  30604. weight: math.unit(125000, "tonnes"),
  30605. name: "Front",
  30606. image: {
  30607. source: "./media/characters/pazuzu/front.svg",
  30608. extra: 877 / 794,
  30609. bottom: 47 / 924
  30610. }
  30611. },
  30612. },
  30613. [
  30614. {
  30615. name: "Macro",
  30616. height: math.unit(300, "meters"),
  30617. default: true
  30618. },
  30619. ]
  30620. ))
  30621. characterMakers.push(() => makeCharacter(
  30622. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  30623. {
  30624. side: {
  30625. height: math.unit(10 + 7 / 12, "feet"),
  30626. weight: math.unit(2.5, "tons"),
  30627. name: "Side",
  30628. image: {
  30629. source: "./media/characters/aasha/side.svg",
  30630. extra: 1345 / 1245,
  30631. bottom: 111 / 1456
  30632. }
  30633. },
  30634. back: {
  30635. height: math.unit(10 + 7 / 12, "feet"),
  30636. weight: math.unit(2.5, "tons"),
  30637. name: "Back",
  30638. image: {
  30639. source: "./media/characters/aasha/back.svg",
  30640. extra: 1133 / 1057,
  30641. bottom: 257 / 1390
  30642. }
  30643. },
  30644. },
  30645. [
  30646. {
  30647. name: "Normal",
  30648. height: math.unit(10 + 7 / 12, "feet"),
  30649. default: true
  30650. },
  30651. ]
  30652. ))
  30653. characterMakers.push(() => makeCharacter(
  30654. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  30655. {
  30656. front: {
  30657. height: math.unit(6 + 3 / 12, "feet"),
  30658. name: "Front",
  30659. image: {
  30660. source: "./media/characters/nevan/front.svg",
  30661. extra: 704 / 704,
  30662. bottom: 28 / 732
  30663. }
  30664. },
  30665. back: {
  30666. height: math.unit(6 + 3 / 12, "feet"),
  30667. name: "Back",
  30668. image: {
  30669. source: "./media/characters/nevan/back.svg",
  30670. extra: 714 / 714,
  30671. bottom: 21 / 735
  30672. }
  30673. },
  30674. frontFlaccid: {
  30675. height: math.unit(6 + 3 / 12, "feet"),
  30676. name: "Front (Flaccid)",
  30677. image: {
  30678. source: "./media/characters/nevan/front-flaccid.svg",
  30679. extra: 704 / 704,
  30680. bottom: 28 / 732
  30681. }
  30682. },
  30683. frontErect: {
  30684. height: math.unit(6 + 3 / 12, "feet"),
  30685. name: "Front (Erect)",
  30686. image: {
  30687. source: "./media/characters/nevan/front-erect.svg",
  30688. extra: 704 / 704,
  30689. bottom: 28 / 732
  30690. }
  30691. },
  30692. backFlaccid: {
  30693. height: math.unit(6 + 3 / 12, "feet"),
  30694. name: "Back (Flaccid)",
  30695. image: {
  30696. source: "./media/characters/nevan/back-flaccid.svg",
  30697. extra: 714 / 714,
  30698. bottom: 21 / 735
  30699. }
  30700. },
  30701. },
  30702. [
  30703. {
  30704. name: "Normal",
  30705. height: math.unit(6 + 3 / 12, "feet"),
  30706. default: true
  30707. },
  30708. ]
  30709. ))
  30710. characterMakers.push(() => makeCharacter(
  30711. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  30712. {
  30713. front: {
  30714. height: math.unit(4, "feet"),
  30715. name: "Front",
  30716. image: {
  30717. source: "./media/characters/arhan/front.svg",
  30718. extra: 3368 / 3133,
  30719. bottom: 0 / 3368
  30720. }
  30721. },
  30722. side: {
  30723. height: math.unit(4, "feet"),
  30724. name: "Side",
  30725. image: {
  30726. source: "./media/characters/arhan/side.svg",
  30727. extra: 3347 / 3105,
  30728. bottom: 0 / 3347
  30729. }
  30730. },
  30731. tongue: {
  30732. height: math.unit(1.42, "feet"),
  30733. name: "Tongue",
  30734. image: {
  30735. source: "./media/characters/arhan/tongue.svg"
  30736. }
  30737. },
  30738. head: {
  30739. height: math.unit(0.85, "feet"),
  30740. name: "Head",
  30741. image: {
  30742. source: "./media/characters/arhan/head.svg"
  30743. }
  30744. },
  30745. },
  30746. [
  30747. {
  30748. name: "Normal",
  30749. height: math.unit(4, "feet"),
  30750. default: true
  30751. },
  30752. ]
  30753. ))
  30754. characterMakers.push(() => makeCharacter(
  30755. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  30756. {
  30757. front: {
  30758. height: math.unit(5 + 7.5 / 12, "feet"),
  30759. weight: math.unit(120, "lb"),
  30760. name: "Front",
  30761. image: {
  30762. source: "./media/characters/digi-duncan/front.svg",
  30763. extra: 330 / 326,
  30764. bottom: 16 / 346
  30765. }
  30766. },
  30767. side: {
  30768. height: math.unit(5 + 7.5 / 12, "feet"),
  30769. weight: math.unit(120, "lb"),
  30770. name: "Side",
  30771. image: {
  30772. source: "./media/characters/digi-duncan/side.svg",
  30773. extra: 341 / 337,
  30774. bottom: 1 / 342
  30775. }
  30776. },
  30777. back: {
  30778. height: math.unit(5 + 7.5 / 12, "feet"),
  30779. weight: math.unit(120, "lb"),
  30780. name: "Back",
  30781. image: {
  30782. source: "./media/characters/digi-duncan/back.svg",
  30783. extra: 330 / 326,
  30784. bottom: 12 / 342
  30785. }
  30786. },
  30787. },
  30788. [
  30789. {
  30790. name: "Speck",
  30791. height: math.unit(0.25, "mm")
  30792. },
  30793. {
  30794. name: "Micro",
  30795. height: math.unit(5, "mm")
  30796. },
  30797. {
  30798. name: "Tiny",
  30799. height: math.unit(0.5, "inches"),
  30800. default: true
  30801. },
  30802. {
  30803. name: "Human",
  30804. height: math.unit(5 + 7.5 / 12, "feet")
  30805. },
  30806. {
  30807. name: "Minigiant",
  30808. height: math.unit(8 + 5.25, "feet")
  30809. },
  30810. {
  30811. name: "Giant",
  30812. height: math.unit(2000, "feet")
  30813. },
  30814. {
  30815. name: "Mega",
  30816. height: math.unit(371.1, "miles")
  30817. },
  30818. ]
  30819. ))
  30820. characterMakers.push(() => makeCharacter(
  30821. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  30822. {
  30823. front: {
  30824. height: math.unit(2, "meters"),
  30825. weight: math.unit(350, "kg"),
  30826. name: "Front",
  30827. image: {
  30828. source: "./media/characters/jagaz-soulbreaker/front.svg",
  30829. extra: 898 / 838,
  30830. bottom: 9 / 907
  30831. }
  30832. },
  30833. },
  30834. [
  30835. {
  30836. name: "Micro",
  30837. height: math.unit(8, "meters")
  30838. },
  30839. {
  30840. name: "Normal",
  30841. height: math.unit(50, "meters"),
  30842. default: true
  30843. },
  30844. {
  30845. name: "Macro",
  30846. height: math.unit(500, "meters")
  30847. },
  30848. ]
  30849. ))
  30850. characterMakers.push(() => makeCharacter(
  30851. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  30852. {
  30853. front: {
  30854. height: math.unit(6 + 6 / 12, "feet"),
  30855. name: "Front",
  30856. image: {
  30857. source: "./media/characters/khardesh/front.svg",
  30858. extra: 1788/1596,
  30859. bottom: 66/1854
  30860. }
  30861. },
  30862. back: {
  30863. height: math.unit(6 + 6 / 12, "feet"),
  30864. name: "Back",
  30865. image: {
  30866. source: "./media/characters/khardesh/back.svg",
  30867. extra: 1781/1584,
  30868. bottom: 68/1849
  30869. }
  30870. },
  30871. },
  30872. [
  30873. {
  30874. name: "Normal",
  30875. height: math.unit(6 + 6 / 12, "feet"),
  30876. default: true
  30877. },
  30878. {
  30879. name: "Normal+",
  30880. height: math.unit(4, "meters")
  30881. },
  30882. {
  30883. name: "Macro",
  30884. height: math.unit(50, "meters")
  30885. },
  30886. {
  30887. name: "Macro+",
  30888. height: math.unit(100, "meters")
  30889. },
  30890. {
  30891. name: "Megamacro",
  30892. height: math.unit(20, "km")
  30893. },
  30894. ]
  30895. ))
  30896. characterMakers.push(() => makeCharacter(
  30897. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  30898. {
  30899. front: {
  30900. height: math.unit(6, "feet"),
  30901. weight: math.unit(150, "lb"),
  30902. name: "Front",
  30903. image: {
  30904. source: "./media/characters/kosho/front.svg",
  30905. extra: 1847 / 1847,
  30906. bottom: 86 / 1933
  30907. }
  30908. },
  30909. },
  30910. [
  30911. {
  30912. name: "Second-stage micro",
  30913. height: math.unit(0.5, "inches")
  30914. },
  30915. {
  30916. name: "First-stage micro",
  30917. height: math.unit(6, "inches")
  30918. },
  30919. {
  30920. name: "Normal",
  30921. height: math.unit(6, "feet"),
  30922. default: true
  30923. },
  30924. {
  30925. name: "First-stage macro",
  30926. height: math.unit(72, "feet")
  30927. },
  30928. {
  30929. name: "Second-stage macro",
  30930. height: math.unit(864, "feet")
  30931. },
  30932. ]
  30933. ))
  30934. characterMakers.push(() => makeCharacter(
  30935. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  30936. {
  30937. normal: {
  30938. height: math.unit(4 + 6 / 12, "feet"),
  30939. name: "Normal",
  30940. image: {
  30941. source: "./media/characters/hydra/normal.svg",
  30942. extra: 2833 / 2634,
  30943. bottom: 68 / 2901
  30944. }
  30945. },
  30946. smol: {
  30947. height: math.unit(0.705, "inches"),
  30948. name: "Smol",
  30949. image: {
  30950. source: "./media/characters/hydra/smol.svg",
  30951. extra: 2715 / 2540,
  30952. bottom: 0 / 2715
  30953. }
  30954. },
  30955. },
  30956. [
  30957. {
  30958. name: "Normal",
  30959. height: math.unit(4 + 6 / 12, "feet"),
  30960. default: true
  30961. }
  30962. ]
  30963. ))
  30964. characterMakers.push(() => makeCharacter(
  30965. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  30966. {
  30967. front: {
  30968. height: math.unit(0.6, "cm"),
  30969. name: "Front",
  30970. image: {
  30971. source: "./media/characters/daz/front.svg",
  30972. extra: 1682 / 1164,
  30973. bottom: 42 / 1724
  30974. }
  30975. },
  30976. },
  30977. [
  30978. {
  30979. name: "Normal",
  30980. height: math.unit(0.6, "cm"),
  30981. default: true
  30982. },
  30983. ]
  30984. ))
  30985. characterMakers.push(() => makeCharacter(
  30986. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  30987. {
  30988. front: {
  30989. height: math.unit(6, "feet"),
  30990. weight: math.unit(235, "lb"),
  30991. name: "Front",
  30992. image: {
  30993. source: "./media/characters/theo-pangolin/front.svg",
  30994. extra: 1996 / 1969,
  30995. bottom: 115 / 2111
  30996. }
  30997. },
  30998. back: {
  30999. height: math.unit(6, "feet"),
  31000. weight: math.unit(235, "lb"),
  31001. name: "Back",
  31002. image: {
  31003. source: "./media/characters/theo-pangolin/back.svg",
  31004. extra: 1979 / 1979,
  31005. bottom: 40 / 2019
  31006. }
  31007. },
  31008. feral: {
  31009. height: math.unit(2, "feet"),
  31010. weight: math.unit(30, "lb"),
  31011. name: "Feral",
  31012. image: {
  31013. source: "./media/characters/theo-pangolin/feral.svg",
  31014. extra: 803 / 791,
  31015. bottom: 181 / 984
  31016. }
  31017. },
  31018. footFive: {
  31019. height: math.unit(1.43, "feet"),
  31020. name: "Foot (Five Toes)",
  31021. image: {
  31022. source: "./media/characters/theo-pangolin/foot-five.svg"
  31023. }
  31024. },
  31025. footFour: {
  31026. height: math.unit(1.43, "feet"),
  31027. name: "Foot (Four Toes)",
  31028. image: {
  31029. source: "./media/characters/theo-pangolin/foot-four.svg"
  31030. }
  31031. },
  31032. handFour: {
  31033. height: math.unit(0.81, "feet"),
  31034. name: "Hand (Four Fingers)",
  31035. image: {
  31036. source: "./media/characters/theo-pangolin/hand-four.svg"
  31037. }
  31038. },
  31039. handThree: {
  31040. height: math.unit(0.81, "feet"),
  31041. name: "Hand (Three Fingers)",
  31042. image: {
  31043. source: "./media/characters/theo-pangolin/hand-three.svg"
  31044. }
  31045. },
  31046. headFront: {
  31047. height: math.unit(1.37, "feet"),
  31048. name: "Head (Front)",
  31049. image: {
  31050. source: "./media/characters/theo-pangolin/head-front.svg"
  31051. }
  31052. },
  31053. headSide: {
  31054. height: math.unit(1.43, "feet"),
  31055. name: "Head (Side)",
  31056. image: {
  31057. source: "./media/characters/theo-pangolin/head-side.svg"
  31058. }
  31059. },
  31060. tongue: {
  31061. height: math.unit(2.29, "feet"),
  31062. name: "Tongue",
  31063. image: {
  31064. source: "./media/characters/theo-pangolin/tongue.svg"
  31065. }
  31066. },
  31067. },
  31068. [
  31069. {
  31070. name: "Normal",
  31071. height: math.unit(6, "feet")
  31072. },
  31073. {
  31074. name: "Macro",
  31075. height: math.unit(400, "feet"),
  31076. default: true
  31077. },
  31078. ]
  31079. ))
  31080. characterMakers.push(() => makeCharacter(
  31081. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  31082. {
  31083. front: {
  31084. height: math.unit(6, "inches"),
  31085. weight: math.unit(0.036, "kg"),
  31086. name: "Front",
  31087. image: {
  31088. source: "./media/characters/renée/front.svg",
  31089. extra: 900 / 886,
  31090. bottom: 8 / 908
  31091. }
  31092. },
  31093. },
  31094. [
  31095. {
  31096. name: "Nano",
  31097. height: math.unit(1, "nm")
  31098. },
  31099. {
  31100. name: "Micro",
  31101. height: math.unit(1, "mm")
  31102. },
  31103. {
  31104. name: "Normal",
  31105. height: math.unit(6, "inches")
  31106. },
  31107. {
  31108. name: "Macro",
  31109. height: math.unit(2000, "feet"),
  31110. default: true
  31111. },
  31112. {
  31113. name: "Megamacro",
  31114. height: math.unit(2, "km")
  31115. },
  31116. {
  31117. name: "Gigamacro",
  31118. height: math.unit(2000, "km")
  31119. },
  31120. {
  31121. name: "Teramacro",
  31122. height: math.unit(250000, "km")
  31123. },
  31124. ]
  31125. ))
  31126. characterMakers.push(() => makeCharacter(
  31127. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  31128. {
  31129. front: {
  31130. height: math.unit(4, "meters"),
  31131. weight: math.unit(150, "kg"),
  31132. name: "Front",
  31133. image: {
  31134. source: "./media/characters/caledvwlch/front.svg",
  31135. extra: 1760 / 1551,
  31136. bottom: 28 / 1788
  31137. }
  31138. },
  31139. side: {
  31140. height: math.unit(4, "meters"),
  31141. weight: math.unit(150, "kg"),
  31142. name: "Side",
  31143. image: {
  31144. source: "./media/characters/caledvwlch/side.svg",
  31145. extra: 1605 / 1536,
  31146. bottom: 31 / 1636
  31147. }
  31148. },
  31149. back: {
  31150. height: math.unit(4, "meters"),
  31151. weight: math.unit(150, "kg"),
  31152. name: "Back",
  31153. image: {
  31154. source: "./media/characters/caledvwlch/back.svg",
  31155. extra: 1635 / 1565,
  31156. bottom: 27 / 1662
  31157. }
  31158. },
  31159. },
  31160. [
  31161. {
  31162. name: "\"Incognito\"",
  31163. height: math.unit(4, "meters")
  31164. },
  31165. {
  31166. name: "Small rampage",
  31167. height: math.unit(600, "meters")
  31168. },
  31169. {
  31170. name: "Mega",
  31171. height: math.unit(30, "km")
  31172. },
  31173. {
  31174. name: "Home-size",
  31175. height: math.unit(50, "km"),
  31176. default: true
  31177. },
  31178. {
  31179. name: "Giga",
  31180. height: math.unit(300, "km")
  31181. },
  31182. {
  31183. name: "Lounging",
  31184. height: math.unit(11000, "km")
  31185. },
  31186. {
  31187. name: "Planet snacking",
  31188. height: math.unit(2000000, "km")
  31189. },
  31190. ]
  31191. ))
  31192. characterMakers.push(() => makeCharacter(
  31193. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  31194. {
  31195. front: {
  31196. height: math.unit(6, "feet"),
  31197. weight: math.unit(215, "lb"),
  31198. name: "Front",
  31199. image: {
  31200. source: "./media/characters/sapphire-svell/front.svg",
  31201. extra: 495 / 455,
  31202. bottom: 20 / 515
  31203. }
  31204. },
  31205. back: {
  31206. height: math.unit(6, "feet"),
  31207. weight: math.unit(216, "lb"),
  31208. name: "Back",
  31209. image: {
  31210. source: "./media/characters/sapphire-svell/back.svg",
  31211. extra: 497 / 477,
  31212. bottom: 7 / 504
  31213. }
  31214. },
  31215. maw: {
  31216. height: math.unit(1.57, "feet"),
  31217. name: "Maw",
  31218. image: {
  31219. source: "./media/characters/sapphire-svell/maw.svg"
  31220. }
  31221. },
  31222. foot: {
  31223. height: math.unit(1.07, "feet"),
  31224. name: "Foot",
  31225. image: {
  31226. source: "./media/characters/sapphire-svell/foot.svg"
  31227. }
  31228. },
  31229. toering: {
  31230. height: math.unit(1.7, "inch"),
  31231. name: "Toering",
  31232. image: {
  31233. source: "./media/characters/sapphire-svell/toering.svg"
  31234. }
  31235. },
  31236. },
  31237. [
  31238. {
  31239. name: "Normal",
  31240. height: math.unit(300, "feet"),
  31241. default: true
  31242. },
  31243. {
  31244. name: "Augmented",
  31245. height: math.unit(1250, "feet")
  31246. },
  31247. {
  31248. name: "Unleashed",
  31249. height: math.unit(3000, "feet")
  31250. },
  31251. ]
  31252. ))
  31253. characterMakers.push(() => makeCharacter(
  31254. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  31255. {
  31256. side: {
  31257. height: math.unit(2 + 3 / 12, "feet"),
  31258. weight: math.unit(110, "lb"),
  31259. name: "Side",
  31260. image: {
  31261. source: "./media/characters/glitch-flux/side.svg",
  31262. extra: 997 / 805,
  31263. bottom: 20 / 1017
  31264. }
  31265. },
  31266. },
  31267. [
  31268. {
  31269. name: "Normal",
  31270. height: math.unit(2 + 3 / 12, "feet"),
  31271. default: true
  31272. },
  31273. ]
  31274. ))
  31275. characterMakers.push(() => makeCharacter(
  31276. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  31277. {
  31278. front: {
  31279. height: math.unit(4, "meters"),
  31280. name: "Front",
  31281. image: {
  31282. source: "./media/characters/mid/front.svg",
  31283. extra: 507 / 476,
  31284. bottom: 17 / 524
  31285. }
  31286. },
  31287. back: {
  31288. height: math.unit(4, "meters"),
  31289. name: "Back",
  31290. image: {
  31291. source: "./media/characters/mid/back.svg",
  31292. extra: 519 / 487,
  31293. bottom: 7 / 526
  31294. }
  31295. },
  31296. stuck: {
  31297. height: math.unit(2.2, "meters"),
  31298. name: "Stuck",
  31299. image: {
  31300. source: "./media/characters/mid/stuck.svg",
  31301. extra: 1951 / 1869,
  31302. bottom: 88 / 2039
  31303. }
  31304. }
  31305. },
  31306. [
  31307. {
  31308. name: "Normal",
  31309. height: math.unit(4, "meters"),
  31310. default: true
  31311. },
  31312. {
  31313. name: "Big",
  31314. height: math.unit(10, "meters")
  31315. },
  31316. {
  31317. name: "Macro",
  31318. height: math.unit(800, "meters")
  31319. },
  31320. {
  31321. name: "Megamacro",
  31322. height: math.unit(100, "km")
  31323. },
  31324. {
  31325. name: "Overgrown",
  31326. height: math.unit(1, "parsec")
  31327. },
  31328. ]
  31329. ))
  31330. characterMakers.push(() => makeCharacter(
  31331. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  31332. {
  31333. front: {
  31334. height: math.unit(2.5, "meters"),
  31335. weight: math.unit(225, "kg"),
  31336. name: "Front",
  31337. image: {
  31338. source: "./media/characters/iris/front.svg",
  31339. extra: 3348 / 3251,
  31340. bottom: 205 / 3553
  31341. }
  31342. },
  31343. maw: {
  31344. height: math.unit(0.56, "meter"),
  31345. name: "Maw",
  31346. image: {
  31347. source: "./media/characters/iris/maw.svg"
  31348. }
  31349. },
  31350. },
  31351. [
  31352. {
  31353. name: "Mewter cat",
  31354. height: math.unit(1.2, "meters")
  31355. },
  31356. {
  31357. name: "Minimacro",
  31358. height: math.unit(2.5, "meters"),
  31359. default: true
  31360. },
  31361. {
  31362. name: "Macro",
  31363. height: math.unit(180, "meters")
  31364. },
  31365. {
  31366. name: "Megamacro",
  31367. height: math.unit(2746, "meters")
  31368. },
  31369. ]
  31370. ))
  31371. characterMakers.push(() => makeCharacter(
  31372. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  31373. {
  31374. front: {
  31375. height: math.unit(6, "feet"),
  31376. weight: math.unit(135, "lb"),
  31377. name: "Front",
  31378. image: {
  31379. source: "./media/characters/axel/front.svg",
  31380. extra: 908 / 908,
  31381. bottom: 58 / 966
  31382. }
  31383. },
  31384. side: {
  31385. height: math.unit(6, "feet"),
  31386. weight: math.unit(135, "lb"),
  31387. name: "Side",
  31388. image: {
  31389. source: "./media/characters/axel/side.svg",
  31390. extra: 958 / 958,
  31391. bottom: 11 / 969
  31392. }
  31393. },
  31394. back: {
  31395. height: math.unit(6, "feet"),
  31396. weight: math.unit(135, "lb"),
  31397. name: "Back",
  31398. image: {
  31399. source: "./media/characters/axel/back.svg",
  31400. extra: 887 / 887,
  31401. bottom: 34 / 921
  31402. }
  31403. },
  31404. head: {
  31405. height: math.unit(1.07, "feet"),
  31406. name: "Head",
  31407. image: {
  31408. source: "./media/characters/axel/head.svg"
  31409. }
  31410. },
  31411. beak: {
  31412. height: math.unit(1.4, "feet"),
  31413. name: "Beak",
  31414. image: {
  31415. source: "./media/characters/axel/beak.svg"
  31416. }
  31417. },
  31418. beakSide: {
  31419. height: math.unit(1.4, "feet"),
  31420. name: "Beak Side",
  31421. image: {
  31422. source: "./media/characters/axel/beak-side.svg"
  31423. }
  31424. },
  31425. sheath: {
  31426. height: math.unit(0.5, "feet"),
  31427. name: "Sheath",
  31428. image: {
  31429. source: "./media/characters/axel/sheath.svg"
  31430. }
  31431. },
  31432. dick: {
  31433. height: math.unit(0.98, "feet"),
  31434. name: "Dick",
  31435. image: {
  31436. source: "./media/characters/axel/dick.svg"
  31437. }
  31438. },
  31439. },
  31440. [
  31441. {
  31442. name: "Macro",
  31443. height: math.unit(68, "meters"),
  31444. default: true
  31445. },
  31446. ]
  31447. ))
  31448. characterMakers.push(() => makeCharacter(
  31449. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  31450. {
  31451. front: {
  31452. height: math.unit(3.5, "meters"),
  31453. weight: math.unit(1200, "kg"),
  31454. name: "Front",
  31455. image: {
  31456. source: "./media/characters/joanna/front.svg",
  31457. extra: 1596 / 1488,
  31458. bottom: 29 / 1625
  31459. }
  31460. },
  31461. back: {
  31462. height: math.unit(3.5, "meters"),
  31463. weight: math.unit(1200, "kg"),
  31464. name: "Back",
  31465. image: {
  31466. source: "./media/characters/joanna/back.svg",
  31467. extra: 1594 / 1495,
  31468. bottom: 26 / 1620
  31469. }
  31470. },
  31471. frontShorts: {
  31472. height: math.unit(3.5, "meters"),
  31473. weight: math.unit(1200, "kg"),
  31474. name: "Front (Shorts)",
  31475. image: {
  31476. source: "./media/characters/joanna/front-shorts.svg",
  31477. extra: 1596 / 1488,
  31478. bottom: 29 / 1625
  31479. }
  31480. },
  31481. frontBiker: {
  31482. height: math.unit(3.5, "meters"),
  31483. weight: math.unit(1200, "kg"),
  31484. name: "Front (Biker)",
  31485. image: {
  31486. source: "./media/characters/joanna/front-biker.svg",
  31487. extra: 1596 / 1488,
  31488. bottom: 29 / 1625
  31489. }
  31490. },
  31491. backBiker: {
  31492. height: math.unit(3.5, "meters"),
  31493. weight: math.unit(1200, "kg"),
  31494. name: "Back (Biker)",
  31495. image: {
  31496. source: "./media/characters/joanna/back-biker.svg",
  31497. extra: 1594 / 1495,
  31498. bottom: 88 / 1682
  31499. }
  31500. },
  31501. bikeLeft: {
  31502. height: math.unit(2.4, "meters"),
  31503. weight: math.unit(1600, "kg"),
  31504. name: "Bike (Left)",
  31505. image: {
  31506. source: "./media/characters/joanna/bike-left.svg",
  31507. extra: 720 / 720,
  31508. bottom: 8 / 728
  31509. }
  31510. },
  31511. bikeRight: {
  31512. height: math.unit(2.4, "meters"),
  31513. weight: math.unit(1600, "kg"),
  31514. name: "Bike (Right)",
  31515. image: {
  31516. source: "./media/characters/joanna/bike-right.svg",
  31517. extra: 720 / 720,
  31518. bottom: 8 / 728
  31519. }
  31520. },
  31521. },
  31522. [
  31523. {
  31524. name: "Incognito",
  31525. height: math.unit(3.5, "meters")
  31526. },
  31527. {
  31528. name: "Casual Big",
  31529. height: math.unit(200, "meters")
  31530. },
  31531. {
  31532. name: "Macro",
  31533. height: math.unit(600, "meters")
  31534. },
  31535. {
  31536. name: "Original",
  31537. height: math.unit(20, "km"),
  31538. default: true
  31539. },
  31540. {
  31541. name: "Giga",
  31542. height: math.unit(400, "km")
  31543. },
  31544. {
  31545. name: "Lounging",
  31546. height: math.unit(1500, "km")
  31547. },
  31548. {
  31549. name: "Planetary",
  31550. height: math.unit(200000, "km")
  31551. },
  31552. ]
  31553. ))
  31554. characterMakers.push(() => makeCharacter(
  31555. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  31556. {
  31557. front: {
  31558. height: math.unit(6, "feet"),
  31559. weight: math.unit(150, "lb"),
  31560. name: "Front",
  31561. image: {
  31562. source: "./media/characters/hugo-sigil/front.svg",
  31563. extra: 522 / 500,
  31564. bottom: 2 / 524
  31565. }
  31566. },
  31567. back: {
  31568. height: math.unit(6, "feet"),
  31569. weight: math.unit(150, "lb"),
  31570. name: "Back",
  31571. image: {
  31572. source: "./media/characters/hugo-sigil/back.svg",
  31573. extra: 519 / 495,
  31574. bottom: 5 / 524
  31575. }
  31576. },
  31577. maw: {
  31578. height: math.unit(1.4, "feet"),
  31579. weight: math.unit(150, "lb"),
  31580. name: "Maw",
  31581. image: {
  31582. source: "./media/characters/hugo-sigil/maw.svg"
  31583. }
  31584. },
  31585. feet: {
  31586. height: math.unit(1.56, "feet"),
  31587. weight: math.unit(150, "lb"),
  31588. name: "Feet",
  31589. image: {
  31590. source: "./media/characters/hugo-sigil/feet.svg",
  31591. extra: 177 / 177,
  31592. bottom: 12 / 189
  31593. }
  31594. },
  31595. },
  31596. [
  31597. {
  31598. name: "Normal",
  31599. height: math.unit(6, "feet")
  31600. },
  31601. {
  31602. name: "Macro",
  31603. height: math.unit(200, "feet"),
  31604. default: true
  31605. },
  31606. ]
  31607. ))
  31608. characterMakers.push(() => makeCharacter(
  31609. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  31610. {
  31611. front: {
  31612. height: math.unit(6, "feet"),
  31613. weight: math.unit(150, "lb"),
  31614. name: "Front",
  31615. image: {
  31616. source: "./media/characters/peri/front.svg",
  31617. extra: 2354 / 2233,
  31618. bottom: 49 / 2403
  31619. }
  31620. },
  31621. },
  31622. [
  31623. {
  31624. name: "Really Small",
  31625. height: math.unit(1, "nm")
  31626. },
  31627. {
  31628. name: "Micro",
  31629. height: math.unit(4, "inches")
  31630. },
  31631. {
  31632. name: "Normal",
  31633. height: math.unit(7, "inches"),
  31634. default: true
  31635. },
  31636. {
  31637. name: "Macro",
  31638. height: math.unit(400, "feet")
  31639. },
  31640. {
  31641. name: "Megamacro",
  31642. height: math.unit(100, "miles")
  31643. },
  31644. ]
  31645. ))
  31646. characterMakers.push(() => makeCharacter(
  31647. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  31648. {
  31649. frontSlim: {
  31650. height: math.unit(7, "feet"),
  31651. name: "Front (Slim)",
  31652. image: {
  31653. source: "./media/characters/issilora/front-slim.svg",
  31654. extra: 529 / 449,
  31655. bottom: 53 / 582
  31656. }
  31657. },
  31658. sideSlim: {
  31659. height: math.unit(7, "feet"),
  31660. name: "Side (Slim)",
  31661. image: {
  31662. source: "./media/characters/issilora/side-slim.svg",
  31663. extra: 570 / 480,
  31664. bottom: 30 / 600
  31665. }
  31666. },
  31667. backSlim: {
  31668. height: math.unit(7, "feet"),
  31669. name: "Back (Slim)",
  31670. image: {
  31671. source: "./media/characters/issilora/back-slim.svg",
  31672. extra: 537 / 455,
  31673. bottom: 46 / 583
  31674. }
  31675. },
  31676. frontBuff: {
  31677. height: math.unit(7, "feet"),
  31678. name: "Front (Buff)",
  31679. image: {
  31680. source: "./media/characters/issilora/front-buff.svg",
  31681. extra: 2310 / 2035,
  31682. bottom: 335 / 2645
  31683. }
  31684. },
  31685. head: {
  31686. height: math.unit(1.94, "feet"),
  31687. name: "Head",
  31688. image: {
  31689. source: "./media/characters/issilora/head.svg"
  31690. }
  31691. },
  31692. },
  31693. [
  31694. {
  31695. name: "Minimum",
  31696. height: math.unit(7, "feet")
  31697. },
  31698. {
  31699. name: "Comfortable",
  31700. height: math.unit(17, "feet")
  31701. },
  31702. {
  31703. name: "Fun Size",
  31704. height: math.unit(47, "feet")
  31705. },
  31706. {
  31707. name: "Natural Macro",
  31708. height: math.unit(137, "feet"),
  31709. default: true
  31710. },
  31711. {
  31712. name: "Maximum Kaiju",
  31713. height: math.unit(397, "feet")
  31714. },
  31715. ]
  31716. ))
  31717. characterMakers.push(() => makeCharacter(
  31718. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  31719. {
  31720. front: {
  31721. height: math.unit(50 + 9/12, "feet"),
  31722. weight: math.unit(32.8, "tons"),
  31723. name: "Front",
  31724. image: {
  31725. source: "./media/characters/irb'iiritaahn/front.svg",
  31726. extra: 1878/1826,
  31727. bottom: 326/2204
  31728. }
  31729. },
  31730. back: {
  31731. height: math.unit(50 + 9/12, "feet"),
  31732. weight: math.unit(32.8, "tons"),
  31733. name: "Back",
  31734. image: {
  31735. source: "./media/characters/irb'iiritaahn/back.svg",
  31736. extra: 2052/2018,
  31737. bottom: 152/2204
  31738. }
  31739. },
  31740. head: {
  31741. height: math.unit(12.86, "feet"),
  31742. name: "Head",
  31743. image: {
  31744. source: "./media/characters/irb'iiritaahn/head.svg"
  31745. }
  31746. },
  31747. maw: {
  31748. height: math.unit(9.66, "feet"),
  31749. name: "Maw",
  31750. image: {
  31751. source: "./media/characters/irb'iiritaahn/maw.svg"
  31752. }
  31753. },
  31754. frontDick: {
  31755. height: math.unit(8.78461, "feet"),
  31756. name: "Front Dick",
  31757. image: {
  31758. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  31759. }
  31760. },
  31761. rearDick: {
  31762. height: math.unit(8.78461, "feet"),
  31763. name: "Rear Dick",
  31764. image: {
  31765. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  31766. }
  31767. },
  31768. rearDickUnfolded: {
  31769. height: math.unit(8.78, "feet"),
  31770. name: "Rear Dick (Unfolded)",
  31771. image: {
  31772. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  31773. }
  31774. },
  31775. wings: {
  31776. height: math.unit(43, "feet"),
  31777. name: "Wings",
  31778. image: {
  31779. source: "./media/characters/irb'iiritaahn/wings.svg"
  31780. }
  31781. },
  31782. },
  31783. [
  31784. {
  31785. name: "Macro",
  31786. height: math.unit(50 + 9/12, "feet"),
  31787. default: true
  31788. },
  31789. ]
  31790. ))
  31791. characterMakers.push(() => makeCharacter(
  31792. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  31793. {
  31794. front: {
  31795. height: math.unit(205, "cm"),
  31796. weight: math.unit(102, "kg"),
  31797. name: "Front",
  31798. image: {
  31799. source: "./media/characters/irbisgreif/front.svg",
  31800. extra: 785/706,
  31801. bottom: 13/798
  31802. }
  31803. },
  31804. back: {
  31805. height: math.unit(205, "cm"),
  31806. weight: math.unit(102, "kg"),
  31807. name: "Back",
  31808. image: {
  31809. source: "./media/characters/irbisgreif/back.svg",
  31810. extra: 713/701,
  31811. bottom: 26/739
  31812. }
  31813. },
  31814. frontDressed: {
  31815. height: math.unit(216, "cm"),
  31816. weight: math.unit(102, "kg"),
  31817. name: "Front-dressed",
  31818. image: {
  31819. source: "./media/characters/irbisgreif/front-dressed.svg",
  31820. extra: 902/776,
  31821. bottom: 14/916
  31822. }
  31823. },
  31824. sideDressed: {
  31825. height: math.unit(195, "cm"),
  31826. weight: math.unit(102, "kg"),
  31827. name: "Side-dressed",
  31828. image: {
  31829. source: "./media/characters/irbisgreif/side-dressed.svg",
  31830. extra: 788/688,
  31831. bottom: 21/809
  31832. }
  31833. },
  31834. backDressed: {
  31835. height: math.unit(216, "cm"),
  31836. weight: math.unit(102, "kg"),
  31837. name: "Back-dressed",
  31838. image: {
  31839. source: "./media/characters/irbisgreif/back-dressed.svg",
  31840. extra: 901/783,
  31841. bottom: 10/911
  31842. }
  31843. },
  31844. dick: {
  31845. height: math.unit(0.49, "feet"),
  31846. name: "Dick",
  31847. image: {
  31848. source: "./media/characters/irbisgreif/dick.svg"
  31849. }
  31850. },
  31851. wingTop: {
  31852. height: math.unit(1.93 , "feet"),
  31853. name: "Wing-top",
  31854. image: {
  31855. source: "./media/characters/irbisgreif/wing-top.svg"
  31856. }
  31857. },
  31858. wingBottom: {
  31859. height: math.unit(1.93 , "feet"),
  31860. name: "Wing-bottom",
  31861. image: {
  31862. source: "./media/characters/irbisgreif/wing-bottom.svg"
  31863. }
  31864. },
  31865. },
  31866. [
  31867. {
  31868. name: "Normal",
  31869. height: math.unit(216, "cm"),
  31870. default: true
  31871. },
  31872. ]
  31873. ))
  31874. characterMakers.push(() => makeCharacter(
  31875. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  31876. {
  31877. front: {
  31878. height: math.unit(6, "feet"),
  31879. weight: math.unit(150, "lb"),
  31880. name: "Front",
  31881. image: {
  31882. source: "./media/characters/pride/front.svg",
  31883. extra: 1299/1230,
  31884. bottom: 18/1317
  31885. }
  31886. },
  31887. },
  31888. [
  31889. {
  31890. name: "Normal",
  31891. height: math.unit(7, "feet")
  31892. },
  31893. {
  31894. name: "Mini-macro",
  31895. height: math.unit(11, "feet")
  31896. },
  31897. {
  31898. name: "Macro",
  31899. height: math.unit(15, "meters"),
  31900. default: true
  31901. },
  31902. {
  31903. name: "Macro+",
  31904. height: math.unit(40, "meters")
  31905. },
  31906. ]
  31907. ))
  31908. characterMakers.push(() => makeCharacter(
  31909. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  31910. {
  31911. front: {
  31912. height: math.unit(4 + 2 / 12, "feet"),
  31913. weight: math.unit(95, "lb"),
  31914. name: "Front",
  31915. image: {
  31916. source: "./media/characters/vaelophis-nyx/front.svg",
  31917. extra: 2532/2330,
  31918. bottom: 0/2532
  31919. }
  31920. },
  31921. back: {
  31922. height: math.unit(4 + 2 / 12, "feet"),
  31923. weight: math.unit(95, "lb"),
  31924. name: "Back",
  31925. image: {
  31926. source: "./media/characters/vaelophis-nyx/back.svg",
  31927. extra: 2484/2361,
  31928. bottom: 0/2484
  31929. }
  31930. },
  31931. feralSide: {
  31932. height: math.unit(2 + 1/12, "feet"),
  31933. weight: math.unit(20, "lb"),
  31934. name: "Feral (Side)",
  31935. image: {
  31936. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  31937. extra: 1721/1581,
  31938. bottom: 70/1791
  31939. }
  31940. },
  31941. feralLazing: {
  31942. height: math.unit(1.08, "feet"),
  31943. weight: math.unit(20, "lb"),
  31944. name: "Feral (Lazing)",
  31945. image: {
  31946. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  31947. extra: 822/822,
  31948. bottom: 248/1070
  31949. }
  31950. },
  31951. ear: {
  31952. height: math.unit(0.416, "feet"),
  31953. name: "Ear",
  31954. image: {
  31955. source: "./media/characters/vaelophis-nyx/ear.svg"
  31956. }
  31957. },
  31958. eye: {
  31959. height: math.unit(0.0748, "feet"),
  31960. name: "Eye",
  31961. image: {
  31962. source: "./media/characters/vaelophis-nyx/eye.svg"
  31963. }
  31964. },
  31965. mouth: {
  31966. height: math.unit(0.378, "feet"),
  31967. name: "Mouth",
  31968. image: {
  31969. source: "./media/characters/vaelophis-nyx/mouth.svg"
  31970. }
  31971. },
  31972. spade: {
  31973. height: math.unit(0.55, "feet"),
  31974. name: "Spade",
  31975. image: {
  31976. source: "./media/characters/vaelophis-nyx/spade.svg"
  31977. }
  31978. },
  31979. },
  31980. [
  31981. {
  31982. name: "Normal",
  31983. height: math.unit(4 + 2/12, "feet"),
  31984. default: true
  31985. },
  31986. ]
  31987. ))
  31988. characterMakers.push(() => makeCharacter(
  31989. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  31990. {
  31991. front: {
  31992. height: math.unit(7, "feet"),
  31993. weight: math.unit(231, "lb"),
  31994. name: "Front",
  31995. image: {
  31996. source: "./media/characters/flux/front.svg",
  31997. extra: 919/871,
  31998. bottom: 0/919
  31999. }
  32000. },
  32001. back: {
  32002. height: math.unit(7, "feet"),
  32003. weight: math.unit(231, "lb"),
  32004. name: "Back",
  32005. image: {
  32006. source: "./media/characters/flux/back.svg",
  32007. extra: 1040/992,
  32008. bottom: 0/1040
  32009. }
  32010. },
  32011. frontDressed: {
  32012. height: math.unit(7, "feet"),
  32013. weight: math.unit(231, "lb"),
  32014. name: "Front (Dressed)",
  32015. image: {
  32016. source: "./media/characters/flux/front-dressed.svg",
  32017. extra: 919/871,
  32018. bottom: 0/919
  32019. }
  32020. },
  32021. feralSide: {
  32022. height: math.unit(5, "feet"),
  32023. weight: math.unit(150, "lb"),
  32024. name: "Feral (Side)",
  32025. image: {
  32026. source: "./media/characters/flux/feral-side.svg",
  32027. extra: 598/528,
  32028. bottom: 28/626
  32029. }
  32030. },
  32031. head: {
  32032. height: math.unit(1.585, "feet"),
  32033. name: "Head",
  32034. image: {
  32035. source: "./media/characters/flux/head.svg"
  32036. }
  32037. },
  32038. headSide: {
  32039. height: math.unit(1.74, "feet"),
  32040. name: "Head (Side)",
  32041. image: {
  32042. source: "./media/characters/flux/head-side.svg"
  32043. }
  32044. },
  32045. headSideFire: {
  32046. height: math.unit(1.76, "feet"),
  32047. name: "Head (Side, Fire)",
  32048. image: {
  32049. source: "./media/characters/flux/head-side-fire.svg"
  32050. }
  32051. },
  32052. },
  32053. [
  32054. {
  32055. name: "Normal",
  32056. height: math.unit(7, "feet"),
  32057. default: true
  32058. },
  32059. ]
  32060. ))
  32061. characterMakers.push(() => makeCharacter(
  32062. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  32063. {
  32064. front: {
  32065. height: math.unit(9, "feet"),
  32066. weight: math.unit(1012, "lb"),
  32067. name: "Front",
  32068. image: {
  32069. source: "./media/characters/ulfra-lupae/front.svg",
  32070. extra: 1083/1011,
  32071. bottom: 67/1150
  32072. }
  32073. },
  32074. },
  32075. [
  32076. {
  32077. name: "Micro",
  32078. height: math.unit(6, "inches")
  32079. },
  32080. {
  32081. name: "Socializing",
  32082. height: math.unit(6 + 5/12, "feet")
  32083. },
  32084. {
  32085. name: "Normal",
  32086. height: math.unit(9, "feet"),
  32087. default: true
  32088. },
  32089. {
  32090. name: "Macro",
  32091. height: math.unit(150, "feet")
  32092. },
  32093. ]
  32094. ))
  32095. characterMakers.push(() => makeCharacter(
  32096. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  32097. {
  32098. front: {
  32099. height: math.unit(5 + 2/12, "feet"),
  32100. weight: math.unit(120, "lb"),
  32101. name: "Front",
  32102. image: {
  32103. source: "./media/characters/timber/front.svg",
  32104. extra: 2814/2705,
  32105. bottom: 181/2995
  32106. }
  32107. },
  32108. },
  32109. [
  32110. {
  32111. name: "Normal",
  32112. height: math.unit(5 + 2/12, "feet"),
  32113. default: true
  32114. },
  32115. ]
  32116. ))
  32117. characterMakers.push(() => makeCharacter(
  32118. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  32119. {
  32120. front: {
  32121. height: math.unit(9, "feet"),
  32122. name: "Front",
  32123. image: {
  32124. source: "./media/characters/nicki/front.svg",
  32125. extra: 1240/990,
  32126. bottom: 45/1285
  32127. },
  32128. form: "anthro",
  32129. default: true
  32130. },
  32131. side: {
  32132. height: math.unit(9, "feet"),
  32133. name: "Side",
  32134. image: {
  32135. source: "./media/characters/nicki/side.svg",
  32136. extra: 1047/973,
  32137. bottom: 61/1108
  32138. },
  32139. form: "anthro"
  32140. },
  32141. back: {
  32142. height: math.unit(9, "feet"),
  32143. name: "Back",
  32144. image: {
  32145. source: "./media/characters/nicki/back.svg",
  32146. extra: 1006/965,
  32147. bottom: 39/1045
  32148. },
  32149. form: "anthro"
  32150. },
  32151. taur: {
  32152. height: math.unit(15, "feet"),
  32153. name: "Taur",
  32154. image: {
  32155. source: "./media/characters/nicki/taur.svg",
  32156. extra: 1592/1347,
  32157. bottom: 0/1592
  32158. },
  32159. form: "taur",
  32160. default: true
  32161. },
  32162. },
  32163. [
  32164. {
  32165. name: "Normal",
  32166. height: math.unit(9, "feet"),
  32167. form: "anthro",
  32168. default: true
  32169. },
  32170. {
  32171. name: "Normal",
  32172. height: math.unit(15, "feet"),
  32173. form: "taur",
  32174. default: true
  32175. }
  32176. ],
  32177. {
  32178. "anthro": {
  32179. name: "Anthro",
  32180. default: true
  32181. },
  32182. "taur": {
  32183. name: "Taur"
  32184. }
  32185. }
  32186. ))
  32187. characterMakers.push(() => makeCharacter(
  32188. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  32189. {
  32190. front: {
  32191. height: math.unit(7 + 10/12, "feet"),
  32192. weight: math.unit(3.5, "tons"),
  32193. name: "Front",
  32194. image: {
  32195. source: "./media/characters/lee/front.svg",
  32196. extra: 1773/1615,
  32197. bottom: 86/1859
  32198. }
  32199. },
  32200. hand: {
  32201. height: math.unit(1.78, "feet"),
  32202. name: "Hand",
  32203. image: {
  32204. source: "./media/characters/lee/hand.svg"
  32205. }
  32206. },
  32207. maw: {
  32208. height: math.unit(1.18, "feet"),
  32209. name: "Maw",
  32210. image: {
  32211. source: "./media/characters/lee/maw.svg"
  32212. }
  32213. },
  32214. },
  32215. [
  32216. {
  32217. name: "Normal",
  32218. height: math.unit(7 + 10/12, "feet"),
  32219. default: true
  32220. },
  32221. ]
  32222. ))
  32223. characterMakers.push(() => makeCharacter(
  32224. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  32225. {
  32226. front: {
  32227. height: math.unit(9, "feet"),
  32228. name: "Front",
  32229. image: {
  32230. source: "./media/characters/guti/front.svg",
  32231. extra: 4551/4355,
  32232. bottom: 123/4674
  32233. }
  32234. },
  32235. tongue: {
  32236. height: math.unit(1, "feet"),
  32237. name: "Tongue",
  32238. image: {
  32239. source: "./media/characters/guti/tongue.svg"
  32240. }
  32241. },
  32242. paw: {
  32243. height: math.unit(1.18, "feet"),
  32244. name: "Paw",
  32245. image: {
  32246. source: "./media/characters/guti/paw.svg"
  32247. }
  32248. },
  32249. },
  32250. [
  32251. {
  32252. name: "Normal",
  32253. height: math.unit(9, "feet"),
  32254. default: true
  32255. },
  32256. ]
  32257. ))
  32258. characterMakers.push(() => makeCharacter(
  32259. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  32260. {
  32261. side: {
  32262. height: math.unit(5, "meters"),
  32263. name: "Side",
  32264. image: {
  32265. source: "./media/characters/vesper/side.svg",
  32266. extra: 1605/1518,
  32267. bottom: 0/1605
  32268. }
  32269. },
  32270. },
  32271. [
  32272. {
  32273. name: "Small",
  32274. height: math.unit(5, "meters")
  32275. },
  32276. {
  32277. name: "Sage",
  32278. height: math.unit(100, "meters"),
  32279. default: true
  32280. },
  32281. {
  32282. name: "Fun Size",
  32283. height: math.unit(600, "meters")
  32284. },
  32285. {
  32286. name: "Goddess",
  32287. height: math.unit(20000, "km")
  32288. },
  32289. {
  32290. name: "Maximum",
  32291. height: math.unit(5, "galaxies")
  32292. },
  32293. ]
  32294. ))
  32295. characterMakers.push(() => makeCharacter(
  32296. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  32297. {
  32298. front: {
  32299. height: math.unit(6 + 3/12, "feet"),
  32300. weight: math.unit(190, "lb"),
  32301. name: "Front",
  32302. image: {
  32303. source: "./media/characters/gawain/front.svg",
  32304. extra: 2222/2139,
  32305. bottom: 90/2312
  32306. }
  32307. },
  32308. back: {
  32309. height: math.unit(6 + 3/12, "feet"),
  32310. weight: math.unit(190, "lb"),
  32311. name: "Back",
  32312. image: {
  32313. source: "./media/characters/gawain/back.svg",
  32314. extra: 2199/2111,
  32315. bottom: 73/2272
  32316. }
  32317. },
  32318. },
  32319. [
  32320. {
  32321. name: "Normal",
  32322. height: math.unit(6 + 3/12, "feet"),
  32323. default: true
  32324. },
  32325. ]
  32326. ))
  32327. characterMakers.push(() => makeCharacter(
  32328. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  32329. {
  32330. side: {
  32331. height: math.unit(3.5, "meters"),
  32332. weight: math.unit(16000, "lb"),
  32333. name: "Side",
  32334. image: {
  32335. source: "./media/characters/dascalti/side.svg",
  32336. extra: 392/273,
  32337. bottom: 47/439
  32338. }
  32339. },
  32340. breath: {
  32341. height: math.unit(7.4, "feet"),
  32342. name: "Breath",
  32343. image: {
  32344. source: "./media/characters/dascalti/breath.svg"
  32345. }
  32346. },
  32347. fed: {
  32348. height: math.unit(3.6, "meters"),
  32349. weight: math.unit(16000, "lb"),
  32350. name: "Fed",
  32351. image: {
  32352. source: "./media/characters/dascalti/fed.svg",
  32353. extra: 1419/820,
  32354. bottom: 95/1514
  32355. }
  32356. },
  32357. },
  32358. [
  32359. {
  32360. name: "Normal",
  32361. height: math.unit(3.5, "meters"),
  32362. default: true
  32363. },
  32364. ]
  32365. ))
  32366. characterMakers.push(() => makeCharacter(
  32367. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  32368. {
  32369. front: {
  32370. height: math.unit(3 + 5/12, "feet"),
  32371. name: "Front",
  32372. image: {
  32373. source: "./media/characters/mauve/front.svg",
  32374. extra: 1126/1033,
  32375. bottom: 65/1191
  32376. }
  32377. },
  32378. side: {
  32379. height: math.unit(3 + 5/12, "feet"),
  32380. name: "Side",
  32381. image: {
  32382. source: "./media/characters/mauve/side.svg",
  32383. extra: 1089/1001,
  32384. bottom: 29/1118
  32385. }
  32386. },
  32387. back: {
  32388. height: math.unit(3 + 5/12, "feet"),
  32389. name: "Back",
  32390. image: {
  32391. source: "./media/characters/mauve/back.svg",
  32392. extra: 1173/1053,
  32393. bottom: 109/1282
  32394. }
  32395. },
  32396. },
  32397. [
  32398. {
  32399. name: "Normal",
  32400. height: math.unit(3 + 5/12, "feet"),
  32401. default: true
  32402. },
  32403. ]
  32404. ))
  32405. characterMakers.push(() => makeCharacter(
  32406. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  32407. {
  32408. front: {
  32409. height: math.unit(6 + 3/12, "feet"),
  32410. weight: math.unit(430, "lb"),
  32411. name: "Front",
  32412. image: {
  32413. source: "./media/characters/carlos/front.svg",
  32414. extra: 1964/1913,
  32415. bottom: 70/2034
  32416. }
  32417. },
  32418. },
  32419. [
  32420. {
  32421. name: "Normal",
  32422. height: math.unit(6 + 3/12, "feet"),
  32423. default: true
  32424. },
  32425. ]
  32426. ))
  32427. characterMakers.push(() => makeCharacter(
  32428. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  32429. {
  32430. back: {
  32431. height: math.unit(5 + 10/12, "feet"),
  32432. weight: math.unit(200, "lb"),
  32433. name: "Back",
  32434. image: {
  32435. source: "./media/characters/jax/back.svg",
  32436. extra: 764/739,
  32437. bottom: 25/789
  32438. }
  32439. },
  32440. },
  32441. [
  32442. {
  32443. name: "Normal",
  32444. height: math.unit(5 + 10/12, "feet"),
  32445. default: true
  32446. },
  32447. ]
  32448. ))
  32449. characterMakers.push(() => makeCharacter(
  32450. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  32451. {
  32452. front: {
  32453. height: math.unit(8, "feet"),
  32454. weight: math.unit(250, "lb"),
  32455. name: "Front",
  32456. image: {
  32457. source: "./media/characters/eikthynir/front.svg",
  32458. extra: 1332/1166,
  32459. bottom: 82/1414
  32460. }
  32461. },
  32462. back: {
  32463. height: math.unit(8, "feet"),
  32464. weight: math.unit(250, "lb"),
  32465. name: "Back",
  32466. image: {
  32467. source: "./media/characters/eikthynir/back.svg",
  32468. extra: 1342/1190,
  32469. bottom: 19/1361
  32470. }
  32471. },
  32472. dick: {
  32473. height: math.unit(2.35, "feet"),
  32474. name: "Dick",
  32475. image: {
  32476. source: "./media/characters/eikthynir/dick.svg"
  32477. }
  32478. },
  32479. },
  32480. [
  32481. {
  32482. name: "Normal",
  32483. height: math.unit(8, "feet"),
  32484. default: true
  32485. },
  32486. ]
  32487. ))
  32488. characterMakers.push(() => makeCharacter(
  32489. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  32490. {
  32491. front: {
  32492. height: math.unit(99, "meters"),
  32493. weight: math.unit(13000, "tons"),
  32494. name: "Front",
  32495. image: {
  32496. source: "./media/characters/zlmos/front.svg",
  32497. extra: 2202/1992,
  32498. bottom: 315/2517
  32499. }
  32500. },
  32501. },
  32502. [
  32503. {
  32504. name: "Macro",
  32505. height: math.unit(99, "meters"),
  32506. default: true
  32507. },
  32508. ]
  32509. ))
  32510. characterMakers.push(() => makeCharacter(
  32511. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  32512. {
  32513. front: {
  32514. height: math.unit(6 + 5/12, "feet"),
  32515. name: "Front",
  32516. image: {
  32517. source: "./media/characters/purri/front.svg",
  32518. extra: 1698/1610,
  32519. bottom: 32/1730
  32520. }
  32521. },
  32522. frontAlt: {
  32523. height: math.unit(6 + 5/12, "feet"),
  32524. name: "Front (Alt)",
  32525. image: {
  32526. source: "./media/characters/purri/front-alt.svg",
  32527. extra: 450/420,
  32528. bottom: 26/476
  32529. }
  32530. },
  32531. boots: {
  32532. height: math.unit(5.5, "feet"),
  32533. name: "Boots",
  32534. image: {
  32535. source: "./media/characters/purri/boots.svg",
  32536. extra: 905/853,
  32537. bottom: 18/923
  32538. }
  32539. },
  32540. lying: {
  32541. height: math.unit(2, "feet"),
  32542. name: "Lying",
  32543. image: {
  32544. source: "./media/characters/purri/lying.svg",
  32545. extra: 940/843,
  32546. bottom: 146/1086
  32547. }
  32548. },
  32549. devious: {
  32550. height: math.unit(1.77, "feet"),
  32551. name: "Devious",
  32552. image: {
  32553. source: "./media/characters/purri/devious.svg",
  32554. extra: 1440/1155,
  32555. bottom: 147/1587
  32556. }
  32557. },
  32558. bean: {
  32559. height: math.unit(1.94, "feet"),
  32560. name: "Bean",
  32561. image: {
  32562. source: "./media/characters/purri/bean.svg"
  32563. }
  32564. },
  32565. },
  32566. [
  32567. {
  32568. name: "Micro",
  32569. height: math.unit(1, "mm")
  32570. },
  32571. {
  32572. name: "Normal",
  32573. height: math.unit(6 + 5/12, "feet"),
  32574. default: true
  32575. },
  32576. {
  32577. name: "Macro :3c",
  32578. height: math.unit(2, "miles")
  32579. },
  32580. ]
  32581. ))
  32582. characterMakers.push(() => makeCharacter(
  32583. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  32584. {
  32585. front: {
  32586. height: math.unit(6 + 2/12, "feet"),
  32587. weight: math.unit(250, "lb"),
  32588. name: "Front",
  32589. image: {
  32590. source: "./media/characters/moonlight/front.svg",
  32591. extra: 1044/908,
  32592. bottom: 56/1100
  32593. }
  32594. },
  32595. feral: {
  32596. height: math.unit(3 + 1/12, "feet"),
  32597. weight: math.unit(50, "kg"),
  32598. name: "Feral",
  32599. image: {
  32600. source: "./media/characters/moonlight/feral.svg",
  32601. extra: 3705/2791,
  32602. bottom: 145/3850
  32603. }
  32604. },
  32605. paw: {
  32606. height: math.unit(1, "feet"),
  32607. name: "Paw",
  32608. image: {
  32609. source: "./media/characters/moonlight/paw.svg"
  32610. }
  32611. },
  32612. paws: {
  32613. height: math.unit(0.98, "feet"),
  32614. name: "Paws",
  32615. image: {
  32616. source: "./media/characters/moonlight/paws.svg",
  32617. extra: 939/939,
  32618. bottom: 50/989
  32619. }
  32620. },
  32621. mouth: {
  32622. height: math.unit(0.48, "feet"),
  32623. name: "Mouth",
  32624. image: {
  32625. source: "./media/characters/moonlight/mouth.svg"
  32626. }
  32627. },
  32628. dick: {
  32629. height: math.unit(1.46, "feet"),
  32630. name: "Dick",
  32631. image: {
  32632. source: "./media/characters/moonlight/dick.svg"
  32633. }
  32634. },
  32635. },
  32636. [
  32637. {
  32638. name: "Normal",
  32639. height: math.unit(6 + 2/12, "feet"),
  32640. default: true
  32641. },
  32642. {
  32643. name: "Macro",
  32644. height: math.unit(300, "feet")
  32645. },
  32646. {
  32647. name: "Macro+",
  32648. height: math.unit(1, "mile")
  32649. },
  32650. {
  32651. name: "Mt. Moon",
  32652. height: math.unit(5, "miles")
  32653. },
  32654. {
  32655. name: "Megamacro",
  32656. height: math.unit(15, "miles")
  32657. },
  32658. ]
  32659. ))
  32660. characterMakers.push(() => makeCharacter(
  32661. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  32662. {
  32663. back: {
  32664. height: math.unit(6, "feet"),
  32665. weight: math.unit(150, "lb"),
  32666. name: "Back",
  32667. image: {
  32668. source: "./media/characters/sylen/back.svg",
  32669. extra: 1335/1273,
  32670. bottom: 107/1442
  32671. }
  32672. },
  32673. },
  32674. [
  32675. {
  32676. name: "Normal",
  32677. height: math.unit(5 + 5/12, "feet")
  32678. },
  32679. {
  32680. name: "Megamacro",
  32681. height: math.unit(3, "miles"),
  32682. default: true
  32683. },
  32684. ]
  32685. ))
  32686. characterMakers.push(() => makeCharacter(
  32687. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  32688. {
  32689. front: {
  32690. height: math.unit(6, "feet"),
  32691. weight: math.unit(190, "lb"),
  32692. name: "Front",
  32693. image: {
  32694. source: "./media/characters/huttser/front.svg",
  32695. extra: 1152/1058,
  32696. bottom: 23/1175
  32697. }
  32698. },
  32699. side: {
  32700. height: math.unit(6, "feet"),
  32701. weight: math.unit(190, "lb"),
  32702. name: "Side",
  32703. image: {
  32704. source: "./media/characters/huttser/side.svg",
  32705. extra: 1174/1065,
  32706. bottom: 18/1192
  32707. }
  32708. },
  32709. back: {
  32710. height: math.unit(6, "feet"),
  32711. weight: math.unit(190, "lb"),
  32712. name: "Back",
  32713. image: {
  32714. source: "./media/characters/huttser/back.svg",
  32715. extra: 1158/1056,
  32716. bottom: 12/1170
  32717. }
  32718. },
  32719. },
  32720. [
  32721. ]
  32722. ))
  32723. characterMakers.push(() => makeCharacter(
  32724. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  32725. {
  32726. side: {
  32727. height: math.unit(12 + 9/12, "feet"),
  32728. weight: math.unit(15000, "lb"),
  32729. name: "Side",
  32730. image: {
  32731. source: "./media/characters/faan/side.svg",
  32732. extra: 2747/2697,
  32733. bottom: 0/2747
  32734. }
  32735. },
  32736. front: {
  32737. height: math.unit(12 + 9/12, "feet"),
  32738. weight: math.unit(15000, "lb"),
  32739. name: "Front",
  32740. image: {
  32741. source: "./media/characters/faan/front.svg",
  32742. extra: 607/571,
  32743. bottom: 24/631
  32744. }
  32745. },
  32746. head: {
  32747. height: math.unit(2.85, "feet"),
  32748. name: "Head",
  32749. image: {
  32750. source: "./media/characters/faan/head.svg"
  32751. }
  32752. },
  32753. headAlt: {
  32754. height: math.unit(3.13, "feet"),
  32755. name: "Head-alt",
  32756. image: {
  32757. source: "./media/characters/faan/head-alt.svg"
  32758. }
  32759. },
  32760. },
  32761. [
  32762. {
  32763. name: "Normal",
  32764. height: math.unit(12 + 9/12, "feet"),
  32765. default: true
  32766. },
  32767. ]
  32768. ))
  32769. characterMakers.push(() => makeCharacter(
  32770. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  32771. {
  32772. front: {
  32773. height: math.unit(6, "feet"),
  32774. weight: math.unit(300, "lb"),
  32775. name: "Front",
  32776. image: {
  32777. source: "./media/characters/tanio/front.svg",
  32778. extra: 711/673,
  32779. bottom: 25/736
  32780. }
  32781. },
  32782. },
  32783. [
  32784. {
  32785. name: "Normal",
  32786. height: math.unit(6, "feet"),
  32787. default: true
  32788. },
  32789. ]
  32790. ))
  32791. characterMakers.push(() => makeCharacter(
  32792. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  32793. {
  32794. front: {
  32795. height: math.unit(3, "inches"),
  32796. name: "Front",
  32797. image: {
  32798. source: "./media/characters/noboru/front.svg",
  32799. extra: 1039/932,
  32800. bottom: 18/1057
  32801. }
  32802. },
  32803. },
  32804. [
  32805. {
  32806. name: "Micro",
  32807. height: math.unit(3, "inches"),
  32808. default: true
  32809. },
  32810. ]
  32811. ))
  32812. characterMakers.push(() => makeCharacter(
  32813. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  32814. {
  32815. front: {
  32816. height: math.unit(1.85, "meters"),
  32817. weight: math.unit(80, "kg"),
  32818. name: "Front",
  32819. image: {
  32820. source: "./media/characters/daniel-barrett/front.svg",
  32821. extra: 355/337,
  32822. bottom: 9/364
  32823. }
  32824. },
  32825. },
  32826. [
  32827. {
  32828. name: "Pico",
  32829. height: math.unit(0.0433, "mm")
  32830. },
  32831. {
  32832. name: "Nano",
  32833. height: math.unit(1.5, "mm")
  32834. },
  32835. {
  32836. name: "Micro",
  32837. height: math.unit(5.3, "cm"),
  32838. default: true
  32839. },
  32840. {
  32841. name: "Normal",
  32842. height: math.unit(1.85, "meters")
  32843. },
  32844. {
  32845. name: "Macro",
  32846. height: math.unit(64.7, "meters")
  32847. },
  32848. {
  32849. name: "Megamacro",
  32850. height: math.unit(2.26, "km")
  32851. },
  32852. {
  32853. name: "Gigamacro",
  32854. height: math.unit(79, "km")
  32855. },
  32856. {
  32857. name: "Teramacro",
  32858. height: math.unit(2765, "km")
  32859. },
  32860. {
  32861. name: "Petamacro",
  32862. height: math.unit(96678, "km")
  32863. },
  32864. ]
  32865. ))
  32866. characterMakers.push(() => makeCharacter(
  32867. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  32868. {
  32869. front: {
  32870. height: math.unit(30, "meters"),
  32871. weight: math.unit(400, "tons"),
  32872. name: "Front",
  32873. image: {
  32874. source: "./media/characters/zeel/front.svg",
  32875. extra: 2599/2599,
  32876. bottom: 226/2825
  32877. }
  32878. },
  32879. },
  32880. [
  32881. {
  32882. name: "Macro",
  32883. height: math.unit(30, "meters"),
  32884. default: true
  32885. },
  32886. ]
  32887. ))
  32888. characterMakers.push(() => makeCharacter(
  32889. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  32890. {
  32891. front: {
  32892. height: math.unit(6 + 7/12, "feet"),
  32893. weight: math.unit(210, "lb"),
  32894. name: "Front",
  32895. image: {
  32896. source: "./media/characters/tarn/front.svg",
  32897. extra: 3517/3220,
  32898. bottom: 91/3608
  32899. }
  32900. },
  32901. back: {
  32902. height: math.unit(6 + 7/12, "feet"),
  32903. weight: math.unit(210, "lb"),
  32904. name: "Back",
  32905. image: {
  32906. source: "./media/characters/tarn/back.svg",
  32907. extra: 3566/3241,
  32908. bottom: 34/3600
  32909. }
  32910. },
  32911. dick: {
  32912. height: math.unit(1.65, "feet"),
  32913. name: "Dick",
  32914. image: {
  32915. source: "./media/characters/tarn/dick.svg"
  32916. }
  32917. },
  32918. paw: {
  32919. height: math.unit(1.80, "feet"),
  32920. name: "Paw",
  32921. image: {
  32922. source: "./media/characters/tarn/paw.svg"
  32923. }
  32924. },
  32925. tongue: {
  32926. height: math.unit(0.97, "feet"),
  32927. name: "Tongue",
  32928. image: {
  32929. source: "./media/characters/tarn/tongue.svg"
  32930. }
  32931. },
  32932. },
  32933. [
  32934. {
  32935. name: "Micro",
  32936. height: math.unit(4, "inches")
  32937. },
  32938. {
  32939. name: "Normal",
  32940. height: math.unit(6 + 7/12, "feet"),
  32941. default: true
  32942. },
  32943. {
  32944. name: "Macro",
  32945. height: math.unit(300, "feet")
  32946. },
  32947. ]
  32948. ))
  32949. characterMakers.push(() => makeCharacter(
  32950. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  32951. {
  32952. front: {
  32953. height: math.unit(5 + 7/12, "feet"),
  32954. weight: math.unit(80, "kg"),
  32955. name: "Front",
  32956. image: {
  32957. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  32958. extra: 3023/2865,
  32959. bottom: 33/3056
  32960. }
  32961. },
  32962. back: {
  32963. height: math.unit(5 + 7/12, "feet"),
  32964. weight: math.unit(80, "kg"),
  32965. name: "Back",
  32966. image: {
  32967. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  32968. extra: 3020/2886,
  32969. bottom: 30/3050
  32970. }
  32971. },
  32972. dick: {
  32973. height: math.unit(0.98, "feet"),
  32974. name: "Dick",
  32975. image: {
  32976. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  32977. }
  32978. },
  32979. anatomy: {
  32980. height: math.unit(2.86, "feet"),
  32981. name: "Anatomy",
  32982. image: {
  32983. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  32984. }
  32985. },
  32986. },
  32987. [
  32988. {
  32989. name: "Really Small",
  32990. height: math.unit(2, "inches")
  32991. },
  32992. {
  32993. name: "Micro",
  32994. height: math.unit(5.583, "inches")
  32995. },
  32996. {
  32997. name: "Normal",
  32998. height: math.unit(5 + 7/12, "feet"),
  32999. default: true
  33000. },
  33001. {
  33002. name: "Macro",
  33003. height: math.unit(67, "feet")
  33004. },
  33005. {
  33006. name: "Megamacro",
  33007. height: math.unit(134, "feet")
  33008. },
  33009. ]
  33010. ))
  33011. characterMakers.push(() => makeCharacter(
  33012. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  33013. {
  33014. front: {
  33015. height: math.unit(9, "feet"),
  33016. weight: math.unit(120, "lb"),
  33017. name: "Front",
  33018. image: {
  33019. source: "./media/characters/sally/front.svg",
  33020. extra: 1506/1349,
  33021. bottom: 66/1572
  33022. }
  33023. },
  33024. },
  33025. [
  33026. {
  33027. name: "Normal",
  33028. height: math.unit(9, "feet"),
  33029. default: true
  33030. },
  33031. ]
  33032. ))
  33033. characterMakers.push(() => makeCharacter(
  33034. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  33035. {
  33036. front: {
  33037. height: math.unit(8, "feet"),
  33038. weight: math.unit(900, "lb"),
  33039. name: "Front",
  33040. image: {
  33041. source: "./media/characters/owen/front.svg",
  33042. extra: 1761/1657,
  33043. bottom: 74/1835
  33044. }
  33045. },
  33046. side: {
  33047. height: math.unit(8, "feet"),
  33048. weight: math.unit(900, "lb"),
  33049. name: "Side",
  33050. image: {
  33051. source: "./media/characters/owen/side.svg",
  33052. extra: 1797/1734,
  33053. bottom: 30/1827
  33054. }
  33055. },
  33056. back: {
  33057. height: math.unit(8, "feet"),
  33058. weight: math.unit(900, "lb"),
  33059. name: "Back",
  33060. image: {
  33061. source: "./media/characters/owen/back.svg",
  33062. extra: 1796/1706,
  33063. bottom: 59/1855
  33064. }
  33065. },
  33066. maw: {
  33067. height: math.unit(1.76, "feet"),
  33068. name: "Maw",
  33069. image: {
  33070. source: "./media/characters/owen/maw.svg"
  33071. }
  33072. },
  33073. },
  33074. [
  33075. {
  33076. name: "Normal",
  33077. height: math.unit(8, "feet"),
  33078. default: true
  33079. },
  33080. ]
  33081. ))
  33082. characterMakers.push(() => makeCharacter(
  33083. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  33084. {
  33085. front: {
  33086. height: math.unit(4, "feet"),
  33087. weight: math.unit(400, "lb"),
  33088. name: "Front",
  33089. image: {
  33090. source: "./media/characters/ryth/front.svg",
  33091. extra: 1920/1748,
  33092. bottom: 42/1962
  33093. }
  33094. },
  33095. back: {
  33096. height: math.unit(4, "feet"),
  33097. weight: math.unit(400, "lb"),
  33098. name: "Back",
  33099. image: {
  33100. source: "./media/characters/ryth/back.svg",
  33101. extra: 1897/1690,
  33102. bottom: 89/1986
  33103. }
  33104. },
  33105. mouth: {
  33106. height: math.unit(1.39, "feet"),
  33107. name: "Mouth",
  33108. image: {
  33109. source: "./media/characters/ryth/mouth.svg"
  33110. }
  33111. },
  33112. tailmaw: {
  33113. height: math.unit(1.23, "feet"),
  33114. name: "Tailmaw",
  33115. image: {
  33116. source: "./media/characters/ryth/tailmaw.svg"
  33117. }
  33118. },
  33119. goia: {
  33120. height: math.unit(4, "meters"),
  33121. weight: math.unit(10800, "lb"),
  33122. name: "Goia",
  33123. image: {
  33124. source: "./media/characters/ryth/goia.svg",
  33125. extra: 745/640,
  33126. bottom: 107/852
  33127. }
  33128. },
  33129. goiaFront: {
  33130. height: math.unit(4, "meters"),
  33131. weight: math.unit(10800, "lb"),
  33132. name: "Goia (Front)",
  33133. image: {
  33134. source: "./media/characters/ryth/goia-front.svg",
  33135. extra: 750/586,
  33136. bottom: 114/864
  33137. }
  33138. },
  33139. goiaMaw: {
  33140. height: math.unit(5.55, "feet"),
  33141. name: "Goia Maw",
  33142. image: {
  33143. source: "./media/characters/ryth/goia-maw.svg"
  33144. }
  33145. },
  33146. goiaForepaw: {
  33147. height: math.unit(3.5, "feet"),
  33148. name: "Goia Forepaw",
  33149. image: {
  33150. source: "./media/characters/ryth/goia-forepaw.svg"
  33151. }
  33152. },
  33153. goiaHindpaw: {
  33154. height: math.unit(5.55, "feet"),
  33155. name: "Goia Hindpaw",
  33156. image: {
  33157. source: "./media/characters/ryth/goia-hindpaw.svg"
  33158. }
  33159. },
  33160. },
  33161. [
  33162. {
  33163. name: "Normal",
  33164. height: math.unit(4, "feet"),
  33165. default: true
  33166. },
  33167. ]
  33168. ))
  33169. characterMakers.push(() => makeCharacter(
  33170. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  33171. {
  33172. front: {
  33173. height: math.unit(7, "feet"),
  33174. weight: math.unit(180, "lb"),
  33175. name: "Front",
  33176. image: {
  33177. source: "./media/characters/necrolance/front.svg",
  33178. extra: 1062/947,
  33179. bottom: 41/1103
  33180. }
  33181. },
  33182. back: {
  33183. height: math.unit(7, "feet"),
  33184. weight: math.unit(180, "lb"),
  33185. name: "Back",
  33186. image: {
  33187. source: "./media/characters/necrolance/back.svg",
  33188. extra: 1045/984,
  33189. bottom: 14/1059
  33190. }
  33191. },
  33192. wing: {
  33193. height: math.unit(2.67, "feet"),
  33194. name: "Wing",
  33195. image: {
  33196. source: "./media/characters/necrolance/wing.svg"
  33197. }
  33198. },
  33199. },
  33200. [
  33201. {
  33202. name: "Normal",
  33203. height: math.unit(7, "feet"),
  33204. default: true
  33205. },
  33206. ]
  33207. ))
  33208. characterMakers.push(() => makeCharacter(
  33209. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  33210. {
  33211. front: {
  33212. height: math.unit(76, "meters"),
  33213. weight: math.unit(30000, "tons"),
  33214. name: "Front",
  33215. image: {
  33216. source: "./media/characters/tyler/front.svg",
  33217. extra: 1640/1640,
  33218. bottom: 114/1754
  33219. }
  33220. },
  33221. },
  33222. [
  33223. {
  33224. name: "Macro",
  33225. height: math.unit(76, "meters"),
  33226. default: true
  33227. },
  33228. ]
  33229. ))
  33230. characterMakers.push(() => makeCharacter(
  33231. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  33232. {
  33233. front: {
  33234. height: math.unit(4 + 11/12, "feet"),
  33235. weight: math.unit(132, "lb"),
  33236. name: "Front",
  33237. image: {
  33238. source: "./media/characters/icey/front.svg",
  33239. extra: 2750/2550,
  33240. bottom: 33/2783
  33241. }
  33242. },
  33243. back: {
  33244. height: math.unit(4 + 11/12, "feet"),
  33245. weight: math.unit(132, "lb"),
  33246. name: "Back",
  33247. image: {
  33248. source: "./media/characters/icey/back.svg",
  33249. extra: 2624/2481,
  33250. bottom: 35/2659
  33251. }
  33252. },
  33253. },
  33254. [
  33255. {
  33256. name: "Normal",
  33257. height: math.unit(4 + 11/12, "feet"),
  33258. default: true
  33259. },
  33260. ]
  33261. ))
  33262. characterMakers.push(() => makeCharacter(
  33263. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  33264. {
  33265. front: {
  33266. height: math.unit(100, "feet"),
  33267. weight: math.unit(0, "lb"),
  33268. name: "Front",
  33269. image: {
  33270. source: "./media/characters/smile/front.svg",
  33271. extra: 2983/2912,
  33272. bottom: 162/3145
  33273. }
  33274. },
  33275. back: {
  33276. height: math.unit(100, "feet"),
  33277. weight: math.unit(0, "lb"),
  33278. name: "Back",
  33279. image: {
  33280. source: "./media/characters/smile/back.svg",
  33281. extra: 3143/3031,
  33282. bottom: 91/3234
  33283. }
  33284. },
  33285. head: {
  33286. height: math.unit(26.3, "feet"),
  33287. weight: math.unit(0, "lb"),
  33288. name: "Head",
  33289. image: {
  33290. source: "./media/characters/smile/head.svg"
  33291. }
  33292. },
  33293. collar: {
  33294. height: math.unit(5.3, "feet"),
  33295. weight: math.unit(0, "lb"),
  33296. name: "Collar",
  33297. image: {
  33298. source: "./media/characters/smile/collar.svg"
  33299. }
  33300. },
  33301. },
  33302. [
  33303. {
  33304. name: "Macro",
  33305. height: math.unit(100, "feet"),
  33306. default: true
  33307. },
  33308. ]
  33309. ))
  33310. characterMakers.push(() => makeCharacter(
  33311. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  33312. {
  33313. dragon: {
  33314. height: math.unit(26, "feet"),
  33315. weight: math.unit(36, "tons"),
  33316. name: "Dragon",
  33317. image: {
  33318. source: "./media/characters/arimphae/dragon.svg",
  33319. extra: 1574/983,
  33320. bottom: 357/1931
  33321. }
  33322. },
  33323. drake: {
  33324. height: math.unit(9, "feet"),
  33325. weight: math.unit(1.5, "tons"),
  33326. name: "Drake",
  33327. image: {
  33328. source: "./media/characters/arimphae/drake.svg",
  33329. extra: 1120/925,
  33330. bottom: 435/1555
  33331. }
  33332. },
  33333. },
  33334. [
  33335. {
  33336. name: "Small",
  33337. height: math.unit(26*5/9, "feet")
  33338. },
  33339. {
  33340. name: "Normal",
  33341. height: math.unit(26, "feet"),
  33342. default: true
  33343. },
  33344. ]
  33345. ))
  33346. characterMakers.push(() => makeCharacter(
  33347. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  33348. {
  33349. front: {
  33350. height: math.unit(8 + 9/12, "feet"),
  33351. name: "Front",
  33352. image: {
  33353. source: "./media/characters/xander/front.svg",
  33354. extra: 1237/974,
  33355. bottom: 94/1331
  33356. }
  33357. },
  33358. },
  33359. [
  33360. {
  33361. name: "Normal",
  33362. height: math.unit(8 + 9/12, "feet"),
  33363. default: true
  33364. },
  33365. {
  33366. name: "Gaze Grabber",
  33367. height: math.unit(13 + 8/12, "feet")
  33368. },
  33369. {
  33370. name: "Jaw Dropper",
  33371. height: math.unit(27, "feet")
  33372. },
  33373. {
  33374. name: "Show Stopper",
  33375. height: math.unit(136, "feet")
  33376. },
  33377. {
  33378. name: "Superstar",
  33379. height: math.unit(1.9e6, "miles")
  33380. },
  33381. ]
  33382. ))
  33383. characterMakers.push(() => makeCharacter(
  33384. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  33385. {
  33386. side: {
  33387. height: math.unit(2100, "feet"),
  33388. name: "Side",
  33389. image: {
  33390. source: "./media/characters/osiris/side.svg",
  33391. extra: 1105/939,
  33392. bottom: 167/1272
  33393. }
  33394. },
  33395. },
  33396. [
  33397. {
  33398. name: "Macro",
  33399. height: math.unit(2100, "feet"),
  33400. default: true
  33401. },
  33402. ]
  33403. ))
  33404. characterMakers.push(() => makeCharacter(
  33405. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  33406. {
  33407. front: {
  33408. height: math.unit(6 + 8/12, "feet"),
  33409. weight: math.unit(225, "lb"),
  33410. name: "Front",
  33411. image: {
  33412. source: "./media/characters/rhys-londe/front.svg",
  33413. extra: 2258/2141,
  33414. bottom: 188/2446
  33415. }
  33416. },
  33417. back: {
  33418. height: math.unit(6 + 8/12, "feet"),
  33419. weight: math.unit(225, "lb"),
  33420. name: "Back",
  33421. image: {
  33422. source: "./media/characters/rhys-londe/back.svg",
  33423. extra: 2237/2137,
  33424. bottom: 63/2300
  33425. }
  33426. },
  33427. frontNsfw: {
  33428. height: math.unit(6 + 8/12, "feet"),
  33429. weight: math.unit(225, "lb"),
  33430. name: "Front (NSFW)",
  33431. image: {
  33432. source: "./media/characters/rhys-londe/front-nsfw.svg",
  33433. extra: 2258/2141,
  33434. bottom: 188/2446
  33435. }
  33436. },
  33437. backNsfw: {
  33438. height: math.unit(6 + 8/12, "feet"),
  33439. weight: math.unit(225, "lb"),
  33440. name: "Back (NSFW)",
  33441. image: {
  33442. source: "./media/characters/rhys-londe/back-nsfw.svg",
  33443. extra: 2237/2137,
  33444. bottom: 63/2300
  33445. }
  33446. },
  33447. dick: {
  33448. height: math.unit(30, "inches"),
  33449. name: "Dick",
  33450. image: {
  33451. source: "./media/characters/rhys-londe/dick.svg"
  33452. }
  33453. },
  33454. maw: {
  33455. height: math.unit(1.6, "feet"),
  33456. name: "Maw",
  33457. image: {
  33458. source: "./media/characters/rhys-londe/maw.svg"
  33459. }
  33460. },
  33461. },
  33462. [
  33463. {
  33464. name: "Normal",
  33465. height: math.unit(6 + 8/12, "feet"),
  33466. default: true
  33467. },
  33468. ]
  33469. ))
  33470. characterMakers.push(() => makeCharacter(
  33471. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  33472. {
  33473. front: {
  33474. height: math.unit(3 + 10/12, "feet"),
  33475. weight: math.unit(90, "lb"),
  33476. name: "Front",
  33477. image: {
  33478. source: "./media/characters/taivas-ensim/front.svg",
  33479. extra: 1327/1216,
  33480. bottom: 96/1423
  33481. }
  33482. },
  33483. back: {
  33484. height: math.unit(3 + 10/12, "feet"),
  33485. weight: math.unit(90, "lb"),
  33486. name: "Back",
  33487. image: {
  33488. source: "./media/characters/taivas-ensim/back.svg",
  33489. extra: 1355/1247,
  33490. bottom: 11/1366
  33491. }
  33492. },
  33493. frontNsfw: {
  33494. height: math.unit(3 + 10/12, "feet"),
  33495. weight: math.unit(90, "lb"),
  33496. name: "Front (NSFW)",
  33497. image: {
  33498. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  33499. extra: 1327/1216,
  33500. bottom: 96/1423
  33501. }
  33502. },
  33503. backNsfw: {
  33504. height: math.unit(3 + 10/12, "feet"),
  33505. weight: math.unit(90, "lb"),
  33506. name: "Back (NSFW)",
  33507. image: {
  33508. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  33509. extra: 1355/1247,
  33510. bottom: 11/1366
  33511. }
  33512. },
  33513. },
  33514. [
  33515. {
  33516. name: "Normal",
  33517. height: math.unit(3 + 10/12, "feet"),
  33518. default: true
  33519. },
  33520. ]
  33521. ))
  33522. characterMakers.push(() => makeCharacter(
  33523. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  33524. {
  33525. front: {
  33526. height: math.unit(9 + 6/12, "feet"),
  33527. weight: math.unit(940, "lb"),
  33528. name: "Front",
  33529. image: {
  33530. source: "./media/characters/byliss/front.svg",
  33531. extra: 1327/1290,
  33532. bottom: 82/1409
  33533. }
  33534. },
  33535. back: {
  33536. height: math.unit(9 + 6/12, "feet"),
  33537. weight: math.unit(940, "lb"),
  33538. name: "Back",
  33539. image: {
  33540. source: "./media/characters/byliss/back.svg",
  33541. extra: 1376/1349,
  33542. bottom: 9/1385
  33543. }
  33544. },
  33545. frontNsfw: {
  33546. height: math.unit(9 + 6/12, "feet"),
  33547. weight: math.unit(940, "lb"),
  33548. name: "Front (NSFW)",
  33549. image: {
  33550. source: "./media/characters/byliss/front-nsfw.svg",
  33551. extra: 1327/1290,
  33552. bottom: 82/1409
  33553. }
  33554. },
  33555. backNsfw: {
  33556. height: math.unit(9 + 6/12, "feet"),
  33557. weight: math.unit(940, "lb"),
  33558. name: "Back (NSFW)",
  33559. image: {
  33560. source: "./media/characters/byliss/back-nsfw.svg",
  33561. extra: 1376/1349,
  33562. bottom: 9/1385
  33563. }
  33564. },
  33565. },
  33566. [
  33567. {
  33568. name: "Normal",
  33569. height: math.unit(9 + 6/12, "feet"),
  33570. default: true
  33571. },
  33572. ]
  33573. ))
  33574. characterMakers.push(() => makeCharacter(
  33575. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  33576. {
  33577. front: {
  33578. height: math.unit(5 + 2/12, "feet"),
  33579. weight: math.unit(200, "lb"),
  33580. name: "Front",
  33581. image: {
  33582. source: "./media/characters/noraly/front.svg",
  33583. extra: 4985/4773,
  33584. bottom: 150/5135
  33585. }
  33586. },
  33587. full: {
  33588. height: math.unit(5 + 2/12, "feet"),
  33589. weight: math.unit(164, "lb"),
  33590. name: "Full",
  33591. image: {
  33592. source: "./media/characters/noraly/full.svg",
  33593. extra: 1114/1059,
  33594. bottom: 35/1149
  33595. }
  33596. },
  33597. fuller: {
  33598. height: math.unit(5 + 2/12, "feet"),
  33599. weight: math.unit(230, "lb"),
  33600. name: "Fuller",
  33601. image: {
  33602. source: "./media/characters/noraly/fuller.svg",
  33603. extra: 1114/1059,
  33604. bottom: 35/1149
  33605. }
  33606. },
  33607. fullest: {
  33608. height: math.unit(5 + 2/12, "feet"),
  33609. weight: math.unit(300, "lb"),
  33610. name: "Fullest",
  33611. image: {
  33612. source: "./media/characters/noraly/fullest.svg",
  33613. extra: 1114/1059,
  33614. bottom: 35/1149
  33615. }
  33616. },
  33617. },
  33618. [
  33619. {
  33620. name: "Normal",
  33621. height: math.unit(5 + 2/12, "feet"),
  33622. default: true
  33623. },
  33624. ]
  33625. ))
  33626. characterMakers.push(() => makeCharacter(
  33627. { name: "Pera", species: ["snake"], tags: ["naga"] },
  33628. {
  33629. front: {
  33630. height: math.unit(5 + 2/12, "feet"),
  33631. weight: math.unit(210, "lb"),
  33632. name: "Front",
  33633. image: {
  33634. source: "./media/characters/pera/front.svg",
  33635. extra: 1560/1531,
  33636. bottom: 165/1725
  33637. }
  33638. },
  33639. back: {
  33640. height: math.unit(5 + 2/12, "feet"),
  33641. weight: math.unit(210, "lb"),
  33642. name: "Back",
  33643. image: {
  33644. source: "./media/characters/pera/back.svg",
  33645. extra: 1523/1493,
  33646. bottom: 152/1675
  33647. }
  33648. },
  33649. dick: {
  33650. height: math.unit(2.4, "feet"),
  33651. name: "Dick",
  33652. image: {
  33653. source: "./media/characters/pera/dick.svg"
  33654. }
  33655. },
  33656. },
  33657. [
  33658. {
  33659. name: "Normal",
  33660. height: math.unit(5 + 2/12, "feet"),
  33661. default: true
  33662. },
  33663. ]
  33664. ))
  33665. characterMakers.push(() => makeCharacter(
  33666. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  33667. {
  33668. front: {
  33669. height: math.unit(12, "feet"),
  33670. weight: math.unit(3200, "lb"),
  33671. name: "Front",
  33672. image: {
  33673. source: "./media/characters/julian/front.svg",
  33674. extra: 2962/2701,
  33675. bottom: 184/3146
  33676. }
  33677. },
  33678. maw: {
  33679. height: math.unit(5.35, "feet"),
  33680. name: "Maw",
  33681. image: {
  33682. source: "./media/characters/julian/maw.svg"
  33683. }
  33684. },
  33685. paw: {
  33686. height: math.unit(3.07, "feet"),
  33687. name: "Paw",
  33688. image: {
  33689. source: "./media/characters/julian/paw.svg"
  33690. }
  33691. },
  33692. },
  33693. [
  33694. {
  33695. name: "Default",
  33696. height: math.unit(12, "feet"),
  33697. default: true
  33698. },
  33699. {
  33700. name: "Big",
  33701. height: math.unit(50, "feet")
  33702. },
  33703. {
  33704. name: "Really Big",
  33705. height: math.unit(1, "mile")
  33706. },
  33707. {
  33708. name: "Extremely Big",
  33709. height: math.unit(100, "miles")
  33710. },
  33711. {
  33712. name: "Planet Hugger",
  33713. height: math.unit(200, "megameters")
  33714. },
  33715. {
  33716. name: "Unreasonably Big",
  33717. height: math.unit(1e300, "meters")
  33718. },
  33719. ]
  33720. ))
  33721. characterMakers.push(() => makeCharacter(
  33722. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  33723. {
  33724. solgooleo: {
  33725. height: math.unit(4, "meters"),
  33726. weight: math.unit(6000*1.5, "kg"),
  33727. volume: math.unit(6000, "liters"),
  33728. name: "Solgooleo",
  33729. image: {
  33730. source: "./media/characters/pi/solgooleo.svg",
  33731. extra: 388/331,
  33732. bottom: 29/417
  33733. }
  33734. },
  33735. },
  33736. [
  33737. {
  33738. name: "Normal",
  33739. height: math.unit(4, "meters"),
  33740. default: true
  33741. },
  33742. ]
  33743. ))
  33744. characterMakers.push(() => makeCharacter(
  33745. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  33746. {
  33747. front: {
  33748. height: math.unit(8, "feet"),
  33749. weight: math.unit(4, "tons"),
  33750. name: "Front",
  33751. image: {
  33752. source: "./media/characters/shaun/front.svg",
  33753. extra: 503/495,
  33754. bottom: 20/523
  33755. }
  33756. },
  33757. back: {
  33758. height: math.unit(8, "feet"),
  33759. weight: math.unit(4, "tons"),
  33760. name: "Back",
  33761. image: {
  33762. source: "./media/characters/shaun/back.svg",
  33763. extra: 487/480,
  33764. bottom: 20/507
  33765. }
  33766. },
  33767. },
  33768. [
  33769. {
  33770. name: "Lorg",
  33771. height: math.unit(8, "feet"),
  33772. default: true
  33773. },
  33774. ]
  33775. ))
  33776. characterMakers.push(() => makeCharacter(
  33777. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  33778. {
  33779. frontAnthro: {
  33780. height: math.unit(7, "feet"),
  33781. name: "Front",
  33782. image: {
  33783. source: "./media/characters/sini/front-anthro.svg",
  33784. extra: 726/678,
  33785. bottom: 35/761
  33786. },
  33787. form: "anthro",
  33788. default: true
  33789. },
  33790. backAnthro: {
  33791. height: math.unit(7, "feet"),
  33792. name: "Back",
  33793. image: {
  33794. source: "./media/characters/sini/back-anthro.svg",
  33795. extra: 743/701,
  33796. bottom: 12/755
  33797. },
  33798. form: "anthro",
  33799. },
  33800. frontAnthroNsfw: {
  33801. height: math.unit(7, "feet"),
  33802. name: "Front (NSFW)",
  33803. image: {
  33804. source: "./media/characters/sini/front-anthro-nsfw.svg",
  33805. extra: 726/678,
  33806. bottom: 35/761
  33807. },
  33808. form: "anthro"
  33809. },
  33810. backAnthroNsfw: {
  33811. height: math.unit(7, "feet"),
  33812. name: "Back (NSFW)",
  33813. image: {
  33814. source: "./media/characters/sini/back-anthro-nsfw.svg",
  33815. extra: 743/701,
  33816. bottom: 12/755
  33817. },
  33818. form: "anthro",
  33819. },
  33820. mawAnthro: {
  33821. height: math.unit(2.14, "feet"),
  33822. name: "Maw",
  33823. image: {
  33824. source: "./media/characters/sini/maw-anthro.svg"
  33825. },
  33826. form: "anthro"
  33827. },
  33828. dick: {
  33829. height: math.unit(1.45, "feet"),
  33830. name: "Dick",
  33831. image: {
  33832. source: "./media/characters/sini/dick-anthro.svg"
  33833. },
  33834. form: "anthro"
  33835. },
  33836. feral: {
  33837. height: math.unit(16, "feet"),
  33838. name: "Feral",
  33839. image: {
  33840. source: "./media/characters/sini/feral.svg",
  33841. extra: 814/605,
  33842. bottom: 11/825
  33843. },
  33844. form: "feral",
  33845. default: true
  33846. },
  33847. feralNsfw: {
  33848. height: math.unit(16, "feet"),
  33849. name: "Feral (NSFW)",
  33850. image: {
  33851. source: "./media/characters/sini/feral-nsfw.svg",
  33852. extra: 814/605,
  33853. bottom: 11/825
  33854. },
  33855. form: "feral"
  33856. },
  33857. mawFeral: {
  33858. height: math.unit(5.66, "feet"),
  33859. name: "Maw",
  33860. image: {
  33861. source: "./media/characters/sini/maw-feral.svg"
  33862. },
  33863. form: "feral",
  33864. },
  33865. pawFeral: {
  33866. height: math.unit(5.17, "feet"),
  33867. name: "Paw",
  33868. image: {
  33869. source: "./media/characters/sini/paw-feral.svg"
  33870. },
  33871. form: "feral",
  33872. },
  33873. rumpFeral: {
  33874. height: math.unit(13.11, "feet"),
  33875. name: "Rump",
  33876. image: {
  33877. source: "./media/characters/sini/rump-feral.svg"
  33878. },
  33879. form: "feral",
  33880. },
  33881. dickFeral: {
  33882. height: math.unit(1, "feet"),
  33883. name: "Dick",
  33884. image: {
  33885. source: "./media/characters/sini/dick-feral.svg"
  33886. },
  33887. form: "feral",
  33888. },
  33889. eyeFeral: {
  33890. height: math.unit(1.23, "feet"),
  33891. name: "Eye",
  33892. image: {
  33893. source: "./media/characters/sini/eye-feral.svg"
  33894. },
  33895. form: "feral",
  33896. },
  33897. },
  33898. [
  33899. {
  33900. name: "Normal",
  33901. height: math.unit(7, "feet"),
  33902. default: true,
  33903. form: "anthro"
  33904. },
  33905. {
  33906. name: "Normal",
  33907. height: math.unit(16, "feet"),
  33908. default: true,
  33909. form: "feral"
  33910. },
  33911. ],
  33912. {
  33913. "anthro": {
  33914. name: "Anthro",
  33915. default: true
  33916. },
  33917. "feral": {
  33918. name: "Feral",
  33919. }
  33920. }
  33921. ))
  33922. characterMakers.push(() => makeCharacter(
  33923. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  33924. {
  33925. side: {
  33926. height: math.unit(47.2, "meters"),
  33927. weight: math.unit(10000, "tons"),
  33928. name: "Side",
  33929. image: {
  33930. source: "./media/characters/raylldo/side.svg",
  33931. extra: 2363/642,
  33932. bottom: 221/2584
  33933. }
  33934. },
  33935. top: {
  33936. height: math.unit(240, "meters"),
  33937. weight: math.unit(10000, "tons"),
  33938. name: "Top",
  33939. image: {
  33940. source: "./media/characters/raylldo/top.svg"
  33941. }
  33942. },
  33943. bottom: {
  33944. height: math.unit(240, "meters"),
  33945. weight: math.unit(10000, "tons"),
  33946. name: "Bottom",
  33947. image: {
  33948. source: "./media/characters/raylldo/bottom.svg"
  33949. }
  33950. },
  33951. head: {
  33952. height: math.unit(38.6, "meters"),
  33953. name: "Head",
  33954. image: {
  33955. source: "./media/characters/raylldo/head.svg",
  33956. extra: 1335/1112,
  33957. bottom: 0/1335
  33958. }
  33959. },
  33960. maw: {
  33961. height: math.unit(16.37, "meters"),
  33962. name: "Maw",
  33963. image: {
  33964. source: "./media/characters/raylldo/maw.svg",
  33965. extra: 883/660,
  33966. bottom: 0/883
  33967. },
  33968. extraAttributes: {
  33969. preyCapacity: {
  33970. name: "Capacity",
  33971. power: 3,
  33972. type: "volume",
  33973. base: math.unit(1000, "people")
  33974. },
  33975. tongueSize: {
  33976. name: "Tongue Size",
  33977. power: 2,
  33978. type: "area",
  33979. base: math.unit(21, "m^2")
  33980. }
  33981. }
  33982. },
  33983. forepaw: {
  33984. height: math.unit(18, "meters"),
  33985. name: "Forepaw",
  33986. image: {
  33987. source: "./media/characters/raylldo/forepaw.svg"
  33988. }
  33989. },
  33990. hindpaw: {
  33991. height: math.unit(23, "meters"),
  33992. name: "Hindpaw",
  33993. image: {
  33994. source: "./media/characters/raylldo/hindpaw.svg"
  33995. }
  33996. },
  33997. genitals: {
  33998. height: math.unit(42, "meters"),
  33999. name: "Genitals",
  34000. image: {
  34001. source: "./media/characters/raylldo/genitals.svg"
  34002. }
  34003. },
  34004. },
  34005. [
  34006. {
  34007. name: "Normal",
  34008. height: math.unit(47.2, "meters"),
  34009. default: true
  34010. },
  34011. ]
  34012. ))
  34013. characterMakers.push(() => makeCharacter(
  34014. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  34015. {
  34016. anthroFront: {
  34017. height: math.unit(9, "feet"),
  34018. weight: math.unit(600, "lb"),
  34019. name: "Anthro (Front)",
  34020. image: {
  34021. source: "./media/characters/glint/anthro-front.svg",
  34022. extra: 1097/1018,
  34023. bottom: 28/1125
  34024. }
  34025. },
  34026. anthroBack: {
  34027. height: math.unit(9, "feet"),
  34028. weight: math.unit(600, "lb"),
  34029. name: "Anthro (Back)",
  34030. image: {
  34031. source: "./media/characters/glint/anthro-back.svg",
  34032. extra: 1154/997,
  34033. bottom: 36/1190
  34034. }
  34035. },
  34036. feral: {
  34037. height: math.unit(11, "feet"),
  34038. weight: math.unit(50000, "lb"),
  34039. name: "Feral",
  34040. image: {
  34041. source: "./media/characters/glint/feral.svg",
  34042. extra: 3035/1585,
  34043. bottom: 1169/4204
  34044. }
  34045. },
  34046. dickAnthro: {
  34047. height: math.unit(0.7, "meters"),
  34048. name: "Dick (Anthro)",
  34049. image: {
  34050. source: "./media/characters/glint/dick-anthro.svg"
  34051. }
  34052. },
  34053. dickFeral: {
  34054. height: math.unit(2.65, "meters"),
  34055. name: "Dick (Feral)",
  34056. image: {
  34057. source: "./media/characters/glint/dick-feral.svg"
  34058. }
  34059. },
  34060. slitHidden: {
  34061. height: math.unit(5.85, "meters"),
  34062. name: "Slit (Hidden)",
  34063. image: {
  34064. source: "./media/characters/glint/slit-hidden.svg"
  34065. }
  34066. },
  34067. slitErect: {
  34068. height: math.unit(5.85, "meters"),
  34069. name: "Slit (Erect)",
  34070. image: {
  34071. source: "./media/characters/glint/slit-erect.svg"
  34072. }
  34073. },
  34074. mawAnthro: {
  34075. height: math.unit(0.63, "meters"),
  34076. name: "Maw (Anthro)",
  34077. image: {
  34078. source: "./media/characters/glint/maw.svg"
  34079. }
  34080. },
  34081. mawFeral: {
  34082. height: math.unit(2.89, "meters"),
  34083. name: "Maw (Feral)",
  34084. image: {
  34085. source: "./media/characters/glint/maw.svg"
  34086. }
  34087. },
  34088. },
  34089. [
  34090. {
  34091. name: "Normal",
  34092. height: math.unit(9, "feet"),
  34093. default: true
  34094. },
  34095. ]
  34096. ))
  34097. characterMakers.push(() => makeCharacter(
  34098. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  34099. {
  34100. side: {
  34101. height: math.unit(15, "feet"),
  34102. weight: math.unit(5000, "kg"),
  34103. name: "Side",
  34104. image: {
  34105. source: "./media/characters/kairne/side.svg",
  34106. extra: 979/811,
  34107. bottom: 13/992
  34108. }
  34109. },
  34110. front: {
  34111. height: math.unit(15, "feet"),
  34112. weight: math.unit(5000, "kg"),
  34113. name: "Front",
  34114. image: {
  34115. source: "./media/characters/kairne/front.svg",
  34116. extra: 908/814,
  34117. bottom: 26/934
  34118. }
  34119. },
  34120. sideNsfw: {
  34121. height: math.unit(15, "feet"),
  34122. weight: math.unit(5000, "kg"),
  34123. name: "Side (NSFW)",
  34124. image: {
  34125. source: "./media/characters/kairne/side-nsfw.svg",
  34126. extra: 979/811,
  34127. bottom: 13/992
  34128. }
  34129. },
  34130. frontNsfw: {
  34131. height: math.unit(15, "feet"),
  34132. weight: math.unit(5000, "kg"),
  34133. name: "Front (NSFW)",
  34134. image: {
  34135. source: "./media/characters/kairne/front-nsfw.svg",
  34136. extra: 908/814,
  34137. bottom: 26/934
  34138. }
  34139. },
  34140. dickCaged: {
  34141. height: math.unit(0.65, "meters"),
  34142. name: "Dick-caged",
  34143. image: {
  34144. source: "./media/characters/kairne/dick-caged.svg"
  34145. }
  34146. },
  34147. dick: {
  34148. height: math.unit(0.79, "meters"),
  34149. name: "Dick",
  34150. image: {
  34151. source: "./media/characters/kairne/dick.svg"
  34152. }
  34153. },
  34154. genitals: {
  34155. height: math.unit(1.29, "meters"),
  34156. name: "Genitals",
  34157. image: {
  34158. source: "./media/characters/kairne/genitals.svg"
  34159. }
  34160. },
  34161. maw: {
  34162. height: math.unit(1.73, "meters"),
  34163. name: "Maw",
  34164. image: {
  34165. source: "./media/characters/kairne/maw.svg"
  34166. }
  34167. },
  34168. },
  34169. [
  34170. {
  34171. name: "Normal",
  34172. height: math.unit(15, "feet"),
  34173. default: true
  34174. },
  34175. ]
  34176. ))
  34177. characterMakers.push(() => makeCharacter(
  34178. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  34179. {
  34180. front: {
  34181. height: math.unit(5 + 8/12, "feet"),
  34182. weight: math.unit(139, "lb"),
  34183. name: "Front",
  34184. image: {
  34185. source: "./media/characters/biscuit-jackal/front.svg",
  34186. extra: 2106/1961,
  34187. bottom: 58/2164
  34188. }
  34189. },
  34190. back: {
  34191. height: math.unit(5 + 8/12, "feet"),
  34192. weight: math.unit(139, "lb"),
  34193. name: "Back",
  34194. image: {
  34195. source: "./media/characters/biscuit-jackal/back.svg",
  34196. extra: 2132/1976,
  34197. bottom: 57/2189
  34198. }
  34199. },
  34200. werejackal: {
  34201. height: math.unit(6 + 3/12, "feet"),
  34202. weight: math.unit(188, "lb"),
  34203. name: "Werejackal",
  34204. image: {
  34205. source: "./media/characters/biscuit-jackal/werejackal.svg",
  34206. extra: 2373/2178,
  34207. bottom: 53/2426
  34208. }
  34209. },
  34210. },
  34211. [
  34212. {
  34213. name: "Normal",
  34214. height: math.unit(5 + 8/12, "feet"),
  34215. default: true
  34216. },
  34217. ]
  34218. ))
  34219. characterMakers.push(() => makeCharacter(
  34220. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  34221. {
  34222. front: {
  34223. height: math.unit(140, "cm"),
  34224. weight: math.unit(45, "kg"),
  34225. name: "Front",
  34226. image: {
  34227. source: "./media/characters/tayra-white/front.svg",
  34228. extra: 2229/2192,
  34229. bottom: 75/2304
  34230. }
  34231. },
  34232. },
  34233. [
  34234. {
  34235. name: "Normal",
  34236. height: math.unit(140, "cm"),
  34237. default: true
  34238. },
  34239. ]
  34240. ))
  34241. characterMakers.push(() => makeCharacter(
  34242. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  34243. {
  34244. front: {
  34245. height: math.unit(4 + 5/12, "feet"),
  34246. name: "Front",
  34247. image: {
  34248. source: "./media/characters/scoop/front.svg",
  34249. extra: 1257/1136,
  34250. bottom: 69/1326
  34251. }
  34252. },
  34253. back: {
  34254. height: math.unit(4 + 5/12, "feet"),
  34255. name: "Back",
  34256. image: {
  34257. source: "./media/characters/scoop/back.svg",
  34258. extra: 1321/1152,
  34259. bottom: 32/1353
  34260. }
  34261. },
  34262. maw: {
  34263. height: math.unit(0.68, "feet"),
  34264. name: "Maw",
  34265. image: {
  34266. source: "./media/characters/scoop/maw.svg"
  34267. }
  34268. },
  34269. },
  34270. [
  34271. {
  34272. name: "Really Small",
  34273. height: math.unit(1, "mm")
  34274. },
  34275. {
  34276. name: "Micro",
  34277. height: math.unit(1, "inch")
  34278. },
  34279. {
  34280. name: "Normal",
  34281. height: math.unit(4 + 5/12, "feet"),
  34282. default: true
  34283. },
  34284. {
  34285. name: "Macro",
  34286. height: math.unit(200, "feet")
  34287. },
  34288. {
  34289. name: "Megamacro",
  34290. height: math.unit(3240, "feet")
  34291. },
  34292. {
  34293. name: "Teramacro",
  34294. height: math.unit(2500, "miles")
  34295. },
  34296. ]
  34297. ))
  34298. characterMakers.push(() => makeCharacter(
  34299. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  34300. {
  34301. front: {
  34302. height: math.unit(15 + 7/12, "feet"),
  34303. weight: math.unit(1150, "tons"),
  34304. name: "Front",
  34305. image: {
  34306. source: "./media/characters/saphinara/front.svg",
  34307. extra: 1837/1643,
  34308. bottom: 84/1921
  34309. },
  34310. form: "normal",
  34311. default: true
  34312. },
  34313. side: {
  34314. height: math.unit(15 + 7/12, "feet"),
  34315. weight: math.unit(1150, "tons"),
  34316. name: "Side",
  34317. image: {
  34318. source: "./media/characters/saphinara/side.svg",
  34319. extra: 605/547,
  34320. bottom: 6/611
  34321. },
  34322. form: "normal"
  34323. },
  34324. back: {
  34325. height: math.unit(15 + 7/12, "feet"),
  34326. weight: math.unit(1150, "tons"),
  34327. name: "Back",
  34328. image: {
  34329. source: "./media/characters/saphinara/back.svg",
  34330. extra: 591/531,
  34331. bottom: 13/604
  34332. },
  34333. form: "normal"
  34334. },
  34335. frontTail: {
  34336. height: math.unit(15 + 7/12, "feet"),
  34337. weight: math.unit(1150, "tons"),
  34338. name: "Front (Full Tail)",
  34339. image: {
  34340. source: "./media/characters/saphinara/front-tail.svg",
  34341. extra: 2256/1630,
  34342. bottom: 261/2517
  34343. },
  34344. form: "normal"
  34345. },
  34346. insides: {
  34347. height: math.unit(11.92, "feet"),
  34348. name: "Insides",
  34349. image: {
  34350. source: "./media/characters/saphinara/insides.svg"
  34351. },
  34352. form: "normal"
  34353. },
  34354. head: {
  34355. height: math.unit(4.17, "feet"),
  34356. name: "Head",
  34357. image: {
  34358. source: "./media/characters/saphinara/head.svg"
  34359. },
  34360. form: "normal"
  34361. },
  34362. tongue: {
  34363. height: math.unit(4.60, "feet"),
  34364. name: "Tongue",
  34365. image: {
  34366. source: "./media/characters/saphinara/tongue.svg"
  34367. },
  34368. form: "normal"
  34369. },
  34370. headEnraged: {
  34371. height: math.unit(5.55, "feet"),
  34372. name: "Head (Enraged)",
  34373. image: {
  34374. source: "./media/characters/saphinara/head-enraged.svg"
  34375. },
  34376. form: "normal"
  34377. },
  34378. wings: {
  34379. height: math.unit(11.95, "feet"),
  34380. name: "Wings",
  34381. image: {
  34382. source: "./media/characters/saphinara/wings.svg"
  34383. },
  34384. form: "normal"
  34385. },
  34386. feathers: {
  34387. height: math.unit(8.92, "feet"),
  34388. name: "Feathers",
  34389. image: {
  34390. source: "./media/characters/saphinara/feathers.svg"
  34391. },
  34392. form: "normal"
  34393. },
  34394. shackles: {
  34395. height: math.unit(2, "feet"),
  34396. name: "Shackles",
  34397. image: {
  34398. source: "./media/characters/saphinara/shackles.svg"
  34399. },
  34400. form: "normal"
  34401. },
  34402. eyes: {
  34403. height: math.unit(1.331, "feet"),
  34404. name: "Eyes",
  34405. image: {
  34406. source: "./media/characters/saphinara/eyes.svg"
  34407. },
  34408. form: "normal"
  34409. },
  34410. eyesEnraged: {
  34411. height: math.unit(1.331, "feet"),
  34412. name: "Eyes (Enraged)",
  34413. image: {
  34414. source: "./media/characters/saphinara/eyes-enraged.svg"
  34415. },
  34416. form: "normal"
  34417. },
  34418. trueFormSide: {
  34419. height: math.unit(200, "feet"),
  34420. weight: math.unit(1e7, "tons"),
  34421. name: "Side",
  34422. image: {
  34423. source: "./media/characters/saphinara/true-form-side.svg",
  34424. extra: 1399/770,
  34425. bottom: 97/1496
  34426. },
  34427. form: "true-form",
  34428. default: true
  34429. },
  34430. trueFormMaw: {
  34431. height: math.unit(71.5, "feet"),
  34432. name: "Maw",
  34433. image: {
  34434. source: "./media/characters/saphinara/true-form-maw.svg",
  34435. extra: 2302/1453,
  34436. bottom: 0/2302
  34437. },
  34438. form: "true-form"
  34439. },
  34440. },
  34441. [
  34442. {
  34443. name: "Normal",
  34444. height: math.unit(15 + 7/12, "feet"),
  34445. default: true,
  34446. form: "normal"
  34447. },
  34448. {
  34449. name: "Angry",
  34450. height: math.unit(30 + 6/12, "feet"),
  34451. form: "normal"
  34452. },
  34453. {
  34454. name: "Enraged",
  34455. height: math.unit(102 + 1/12, "feet"),
  34456. form: "normal"
  34457. },
  34458. {
  34459. name: "True",
  34460. height: math.unit(200, "feet"),
  34461. default: true,
  34462. form: "true-form"
  34463. }
  34464. ],
  34465. {
  34466. "normal": {
  34467. name: "Normal",
  34468. default: true
  34469. },
  34470. "true-form": {
  34471. name: "True Form"
  34472. }
  34473. }
  34474. ))
  34475. characterMakers.push(() => makeCharacter(
  34476. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  34477. {
  34478. front: {
  34479. height: math.unit(6 + 8/12, "feet"),
  34480. weight: math.unit(300, "lb"),
  34481. name: "Front",
  34482. image: {
  34483. source: "./media/characters/jrain/front.svg",
  34484. extra: 3039/2865,
  34485. bottom: 399/3438
  34486. }
  34487. },
  34488. back: {
  34489. height: math.unit(6 + 8/12, "feet"),
  34490. weight: math.unit(300, "lb"),
  34491. name: "Back",
  34492. image: {
  34493. source: "./media/characters/jrain/back.svg",
  34494. extra: 3089/2938,
  34495. bottom: 172/3261
  34496. }
  34497. },
  34498. head: {
  34499. height: math.unit(2.14, "feet"),
  34500. name: "Head",
  34501. image: {
  34502. source: "./media/characters/jrain/head.svg"
  34503. }
  34504. },
  34505. maw: {
  34506. height: math.unit(1.77, "feet"),
  34507. name: "Maw",
  34508. image: {
  34509. source: "./media/characters/jrain/maw.svg"
  34510. }
  34511. },
  34512. leftHand: {
  34513. height: math.unit(1.1, "feet"),
  34514. name: "Left Hand",
  34515. image: {
  34516. source: "./media/characters/jrain/left-hand.svg"
  34517. }
  34518. },
  34519. rightHand: {
  34520. height: math.unit(1.1, "feet"),
  34521. name: "Right Hand",
  34522. image: {
  34523. source: "./media/characters/jrain/right-hand.svg"
  34524. }
  34525. },
  34526. eye: {
  34527. height: math.unit(0.35, "feet"),
  34528. name: "Eye",
  34529. image: {
  34530. source: "./media/characters/jrain/eye.svg"
  34531. }
  34532. },
  34533. },
  34534. [
  34535. {
  34536. name: "Normal",
  34537. height: math.unit(6 + 8/12, "feet"),
  34538. default: true
  34539. },
  34540. {
  34541. name: "Casually Large",
  34542. height: math.unit(25, "feet")
  34543. },
  34544. {
  34545. name: "Giant",
  34546. height: math.unit(100, "feet")
  34547. },
  34548. {
  34549. name: "Kaiju",
  34550. height: math.unit(300, "feet")
  34551. },
  34552. ]
  34553. ))
  34554. characterMakers.push(() => makeCharacter(
  34555. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  34556. {
  34557. dragon: {
  34558. height: math.unit(5, "meters"),
  34559. name: "Dragon",
  34560. image: {
  34561. source: "./media/characters/sabrina/dragon.svg",
  34562. extra: 3670 / 2365,
  34563. bottom: 333 / 4003
  34564. }
  34565. },
  34566. gryphon: {
  34567. height: math.unit(3, "meters"),
  34568. name: "Gryphon",
  34569. image: {
  34570. source: "./media/characters/sabrina/gryphon.svg",
  34571. extra: 1576 / 945,
  34572. bottom: 71 / 1647
  34573. }
  34574. },
  34575. snake: {
  34576. height: math.unit(12, "meters"),
  34577. name: "Snake",
  34578. image: {
  34579. source: "./media/characters/sabrina/snake.svg",
  34580. extra: 1758 / 1320,
  34581. bottom: 186 / 1944
  34582. }
  34583. },
  34584. collar: {
  34585. height: math.unit(1.86, "meters"),
  34586. name: "Collar",
  34587. image: {
  34588. source: "./media/characters/sabrina/collar.svg"
  34589. }
  34590. },
  34591. eye: {
  34592. height: math.unit(0.53, "meters"),
  34593. name: "Eye",
  34594. image: {
  34595. source: "./media/characters/sabrina/eye.svg"
  34596. }
  34597. },
  34598. foot: {
  34599. height: math.unit(1.86, "meters"),
  34600. name: "Foot",
  34601. image: {
  34602. source: "./media/characters/sabrina/foot.svg"
  34603. }
  34604. },
  34605. hand: {
  34606. height: math.unit(1.32, "meters"),
  34607. name: "Hand",
  34608. image: {
  34609. source: "./media/characters/sabrina/hand.svg"
  34610. }
  34611. },
  34612. head: {
  34613. height: math.unit(2.44, "meters"),
  34614. name: "Head",
  34615. image: {
  34616. source: "./media/characters/sabrina/head.svg"
  34617. }
  34618. },
  34619. headAngry: {
  34620. height: math.unit(2.44, "meters"),
  34621. name: "Head (Angry))",
  34622. image: {
  34623. source: "./media/characters/sabrina/head-angry.svg"
  34624. }
  34625. },
  34626. maw: {
  34627. height: math.unit(1.65, "meters"),
  34628. name: "Maw",
  34629. image: {
  34630. source: "./media/characters/sabrina/maw.svg"
  34631. }
  34632. },
  34633. spikes: {
  34634. height: math.unit(1.69, "meters"),
  34635. name: "Spikes",
  34636. image: {
  34637. source: "./media/characters/sabrina/spikes.svg"
  34638. }
  34639. },
  34640. stomach: {
  34641. height: math.unit(1.15, "meters"),
  34642. name: "Stomach",
  34643. image: {
  34644. source: "./media/characters/sabrina/stomach.svg"
  34645. }
  34646. },
  34647. tongue: {
  34648. height: math.unit(1.27, "meters"),
  34649. name: "Tongue",
  34650. image: {
  34651. source: "./media/characters/sabrina/tongue.svg"
  34652. }
  34653. },
  34654. wingDorsal: {
  34655. height: math.unit(4.85, "meters"),
  34656. name: "Wing (Dorsal)",
  34657. image: {
  34658. source: "./media/characters/sabrina/wing-dorsal.svg"
  34659. }
  34660. },
  34661. wingVentral: {
  34662. height: math.unit(4.85, "meters"),
  34663. name: "Wing (Ventral)",
  34664. image: {
  34665. source: "./media/characters/sabrina/wing-ventral.svg"
  34666. }
  34667. },
  34668. },
  34669. [
  34670. {
  34671. name: "Normal",
  34672. height: math.unit(5, "meters"),
  34673. default: true
  34674. },
  34675. ]
  34676. ))
  34677. characterMakers.push(() => makeCharacter(
  34678. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  34679. {
  34680. frontMaid: {
  34681. height: math.unit(5 + 5/12, "feet"),
  34682. weight: math.unit(130, "lb"),
  34683. name: "Front (Maid)",
  34684. image: {
  34685. source: "./media/characters/midnight-tales/front-maid.svg",
  34686. extra: 489/454,
  34687. bottom: 61/550
  34688. }
  34689. },
  34690. frontFormal: {
  34691. height: math.unit(5 + 5/12, "feet"),
  34692. weight: math.unit(130, "lb"),
  34693. name: "Front (Formal)",
  34694. image: {
  34695. source: "./media/characters/midnight-tales/front-formal.svg",
  34696. extra: 489/454,
  34697. bottom: 61/550
  34698. }
  34699. },
  34700. back: {
  34701. height: math.unit(5 + 5/12, "feet"),
  34702. weight: math.unit(130, "lb"),
  34703. name: "Back",
  34704. image: {
  34705. source: "./media/characters/midnight-tales/back.svg",
  34706. extra: 498/456,
  34707. bottom: 33/531
  34708. }
  34709. },
  34710. frontBeast: {
  34711. height: math.unit(40, "feet"),
  34712. weight: math.unit(64000, "lb"),
  34713. name: "Front (Beast)",
  34714. image: {
  34715. source: "./media/characters/midnight-tales/front-beast.svg",
  34716. extra: 927/860,
  34717. bottom: 53/980
  34718. }
  34719. },
  34720. backBeast: {
  34721. height: math.unit(40, "feet"),
  34722. weight: math.unit(64000, "lb"),
  34723. name: "Back (Beast)",
  34724. image: {
  34725. source: "./media/characters/midnight-tales/back-beast.svg",
  34726. extra: 929/855,
  34727. bottom: 16/945
  34728. }
  34729. },
  34730. footBeast: {
  34731. height: math.unit(6.7, "feet"),
  34732. name: "Foot (Beast)",
  34733. image: {
  34734. source: "./media/characters/midnight-tales/foot-beast.svg"
  34735. }
  34736. },
  34737. headBeast: {
  34738. height: math.unit(8, "feet"),
  34739. name: "Head (Beast)",
  34740. image: {
  34741. source: "./media/characters/midnight-tales/head-beast.svg"
  34742. }
  34743. },
  34744. },
  34745. [
  34746. {
  34747. name: "Normal",
  34748. height: math.unit(5 + 5 / 12, "feet"),
  34749. default: true
  34750. },
  34751. {
  34752. name: "Macro",
  34753. height: math.unit(25, "feet")
  34754. },
  34755. ]
  34756. ))
  34757. characterMakers.push(() => makeCharacter(
  34758. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  34759. {
  34760. front: {
  34761. height: math.unit(5 + 10/12, "feet"),
  34762. name: "Front",
  34763. image: {
  34764. source: "./media/characters/argon/front.svg",
  34765. extra: 2009/1935,
  34766. bottom: 118/2127
  34767. }
  34768. },
  34769. back: {
  34770. height: math.unit(5 + 10/12, "feet"),
  34771. name: "Back",
  34772. image: {
  34773. source: "./media/characters/argon/back.svg",
  34774. extra: 2047/1992,
  34775. bottom: 20/2067
  34776. }
  34777. },
  34778. frontDressed: {
  34779. height: math.unit(5 + 10/12, "feet"),
  34780. name: "Front (Dressed)",
  34781. image: {
  34782. source: "./media/characters/argon/front-dressed.svg",
  34783. extra: 2009/1935,
  34784. bottom: 118/2127
  34785. }
  34786. },
  34787. },
  34788. [
  34789. {
  34790. name: "Normal",
  34791. height: math.unit(5 + 10/12, "feet"),
  34792. default: true
  34793. },
  34794. ]
  34795. ))
  34796. characterMakers.push(() => makeCharacter(
  34797. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  34798. {
  34799. front: {
  34800. height: math.unit(8 + 6/12, "feet"),
  34801. weight: math.unit(1150, "lb"),
  34802. name: "Front",
  34803. image: {
  34804. source: "./media/characters/kichi/front.svg",
  34805. extra: 1267/1164,
  34806. bottom: 61/1328
  34807. }
  34808. },
  34809. back: {
  34810. height: math.unit(8 + 6/12, "feet"),
  34811. weight: math.unit(1150, "lb"),
  34812. name: "Back",
  34813. image: {
  34814. source: "./media/characters/kichi/back.svg",
  34815. extra: 1273/1166,
  34816. bottom: 33/1306
  34817. }
  34818. },
  34819. },
  34820. [
  34821. {
  34822. name: "Normal",
  34823. height: math.unit(8 + 6/12, "feet"),
  34824. default: true
  34825. },
  34826. ]
  34827. ))
  34828. characterMakers.push(() => makeCharacter(
  34829. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  34830. {
  34831. front: {
  34832. height: math.unit(6, "feet"),
  34833. weight: math.unit(210, "lb"),
  34834. name: "Front",
  34835. image: {
  34836. source: "./media/characters/manetel-greyscale/front.svg",
  34837. extra: 350/312,
  34838. bottom: 8/358
  34839. }
  34840. },
  34841. },
  34842. [
  34843. {
  34844. name: "Micro",
  34845. height: math.unit(2, "inches")
  34846. },
  34847. {
  34848. name: "Normal",
  34849. height: math.unit(6, "feet"),
  34850. default: true
  34851. },
  34852. {
  34853. name: "Minimacro",
  34854. height: math.unit(17, "feet")
  34855. },
  34856. {
  34857. name: "Macro",
  34858. height: math.unit(117, "feet")
  34859. },
  34860. ]
  34861. ))
  34862. characterMakers.push(() => makeCharacter(
  34863. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  34864. {
  34865. side: {
  34866. height: math.unit(5 + 1/12, "feet"),
  34867. weight: math.unit(418, "lb"),
  34868. name: "Side",
  34869. image: {
  34870. source: "./media/characters/softpurr/side.svg",
  34871. extra: 1993/1945,
  34872. bottom: 134/2127
  34873. }
  34874. },
  34875. front: {
  34876. height: math.unit(5 + 1/12, "feet"),
  34877. weight: math.unit(418, "lb"),
  34878. name: "Front",
  34879. image: {
  34880. source: "./media/characters/softpurr/front.svg",
  34881. extra: 1950/1856,
  34882. bottom: 174/2124
  34883. }
  34884. },
  34885. paw: {
  34886. height: math.unit(1, "feet"),
  34887. name: "Paw",
  34888. image: {
  34889. source: "./media/characters/softpurr/paw.svg"
  34890. }
  34891. },
  34892. },
  34893. [
  34894. {
  34895. name: "Normal",
  34896. height: math.unit(5 + 1/12, "feet"),
  34897. default: true
  34898. },
  34899. ]
  34900. ))
  34901. characterMakers.push(() => makeCharacter(
  34902. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  34903. {
  34904. front: {
  34905. height: math.unit(260, "meters"),
  34906. name: "Front",
  34907. image: {
  34908. source: "./media/characters/anahita/front.svg",
  34909. extra: 665/635,
  34910. bottom: 89/754
  34911. }
  34912. },
  34913. },
  34914. [
  34915. {
  34916. name: "Macro",
  34917. height: math.unit(260, "meters"),
  34918. default: true
  34919. },
  34920. ]
  34921. ))
  34922. characterMakers.push(() => makeCharacter(
  34923. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  34924. {
  34925. front: {
  34926. height: math.unit(4 + 10/12, "feet"),
  34927. weight: math.unit(160, "lb"),
  34928. name: "Front",
  34929. image: {
  34930. source: "./media/characters/chip-mouse/front.svg",
  34931. extra: 3528/3408,
  34932. bottom: 0/3528
  34933. }
  34934. },
  34935. frontNsfw: {
  34936. height: math.unit(4 + 10/12, "feet"),
  34937. weight: math.unit(160, "lb"),
  34938. name: "Front (NSFW)",
  34939. image: {
  34940. source: "./media/characters/chip-mouse/front-nsfw.svg",
  34941. extra: 3528/3408,
  34942. bottom: 0/3528
  34943. }
  34944. },
  34945. },
  34946. [
  34947. {
  34948. name: "Normal",
  34949. height: math.unit(4 + 10/12, "feet"),
  34950. default: true
  34951. },
  34952. ]
  34953. ))
  34954. characterMakers.push(() => makeCharacter(
  34955. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  34956. {
  34957. side: {
  34958. height: math.unit(10, "feet"),
  34959. weight: math.unit(14000, "lb"),
  34960. name: "Side",
  34961. image: {
  34962. source: "./media/characters/kremm/side.svg",
  34963. extra: 1390/1053,
  34964. bottom: 90/1480
  34965. }
  34966. },
  34967. gut: {
  34968. height: math.unit(5.8, "feet"),
  34969. name: "Gut",
  34970. image: {
  34971. source: "./media/characters/kremm/gut.svg"
  34972. }
  34973. },
  34974. ass: {
  34975. height: math.unit(6.1, "feet"),
  34976. name: "Ass",
  34977. image: {
  34978. source: "./media/characters/kremm/ass.svg"
  34979. }
  34980. },
  34981. jaws: {
  34982. height: math.unit(2.2, "feet"),
  34983. name: "Jaws",
  34984. image: {
  34985. source: "./media/characters/kremm/jaws.svg"
  34986. }
  34987. },
  34988. dick: {
  34989. height: math.unit(4.26, "feet"),
  34990. name: "Dick",
  34991. image: {
  34992. source: "./media/characters/kremm/dick.svg"
  34993. }
  34994. },
  34995. },
  34996. [
  34997. {
  34998. name: "Normal",
  34999. height: math.unit(10, "feet"),
  35000. default: true
  35001. },
  35002. ]
  35003. ))
  35004. characterMakers.push(() => makeCharacter(
  35005. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  35006. {
  35007. front: {
  35008. height: math.unit(30, "stories"),
  35009. name: "Front",
  35010. image: {
  35011. source: "./media/characters/kai/front.svg",
  35012. extra: 1892/1718,
  35013. bottom: 162/2054
  35014. }
  35015. },
  35016. },
  35017. [
  35018. {
  35019. name: "Macro",
  35020. height: math.unit(30, "stories"),
  35021. default: true
  35022. },
  35023. ]
  35024. ))
  35025. characterMakers.push(() => makeCharacter(
  35026. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  35027. {
  35028. front: {
  35029. height: math.unit(6 + 4/12, "feet"),
  35030. weight: math.unit(145, "lb"),
  35031. name: "Front",
  35032. image: {
  35033. source: "./media/characters/sykes/front.svg",
  35034. extra: 1321 / 1187,
  35035. bottom: 66 / 1387
  35036. }
  35037. },
  35038. back: {
  35039. height: math.unit(6 + 4/12, "feet"),
  35040. weight: math.unit(145, "lb"),
  35041. name: "Back",
  35042. image: {
  35043. source: "./media/characters/sykes/back.svg",
  35044. extra: 1326/1181,
  35045. bottom: 31/1357
  35046. }
  35047. },
  35048. traditionalOutfit: {
  35049. height: math.unit(6 + 4/12, "feet"),
  35050. weight: math.unit(145, "lb"),
  35051. name: "Traditional Outfit",
  35052. image: {
  35053. source: "./media/characters/sykes/traditional-outfit.svg",
  35054. extra: 1321 / 1187,
  35055. bottom: 66 / 1387
  35056. }
  35057. },
  35058. adventureOutfit: {
  35059. height: math.unit(6 + 4/12, "feet"),
  35060. weight: math.unit(145, "lb"),
  35061. name: "Adventure Outfit",
  35062. image: {
  35063. source: "./media/characters/sykes/adventure-outfit.svg",
  35064. extra: 1321 / 1187,
  35065. bottom: 66 / 1387
  35066. }
  35067. },
  35068. handLeft: {
  35069. height: math.unit(0.9, "feet"),
  35070. name: "Hand (Left)",
  35071. image: {
  35072. source: "./media/characters/sykes/hand-left.svg"
  35073. }
  35074. },
  35075. handRight: {
  35076. height: math.unit(0.839, "feet"),
  35077. name: "Hand (Right)",
  35078. image: {
  35079. source: "./media/characters/sykes/hand-right.svg"
  35080. }
  35081. },
  35082. leftFoot: {
  35083. height: math.unit(1.2, "feet"),
  35084. name: "Foot (Left)",
  35085. image: {
  35086. source: "./media/characters/sykes/foot-left.svg"
  35087. }
  35088. },
  35089. rightFoot: {
  35090. height: math.unit(1.2, "feet"),
  35091. name: "Foot (Right)",
  35092. image: {
  35093. source: "./media/characters/sykes/foot-right.svg"
  35094. }
  35095. },
  35096. maw: {
  35097. height: math.unit(1.93, "feet"),
  35098. name: "Maw",
  35099. image: {
  35100. source: "./media/characters/sykes/maw.svg"
  35101. }
  35102. },
  35103. teeth: {
  35104. height: math.unit(0.51, "feet"),
  35105. name: "Teeth",
  35106. image: {
  35107. source: "./media/characters/sykes/teeth.svg"
  35108. }
  35109. },
  35110. tongue: {
  35111. height: math.unit(2.13, "feet"),
  35112. name: "Tongue",
  35113. image: {
  35114. source: "./media/characters/sykes/tongue.svg"
  35115. }
  35116. },
  35117. uvula: {
  35118. height: math.unit(0.16, "feet"),
  35119. name: "Uvula",
  35120. image: {
  35121. source: "./media/characters/sykes/uvula.svg"
  35122. }
  35123. },
  35124. collar: {
  35125. height: math.unit(0.287, "feet"),
  35126. name: "Collar",
  35127. image: {
  35128. source: "./media/characters/sykes/collar.svg"
  35129. }
  35130. },
  35131. tail: {
  35132. height: math.unit(3.8, "feet"),
  35133. name: "Tail",
  35134. image: {
  35135. source: "./media/characters/sykes/tail.svg"
  35136. }
  35137. },
  35138. },
  35139. [
  35140. {
  35141. name: "Shrunken",
  35142. height: math.unit(5, "inches")
  35143. },
  35144. {
  35145. name: "Normal",
  35146. height: math.unit(6 + 4 / 12, "feet"),
  35147. default: true
  35148. },
  35149. {
  35150. name: "Big",
  35151. height: math.unit(15, "feet")
  35152. },
  35153. ]
  35154. ))
  35155. characterMakers.push(() => makeCharacter(
  35156. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  35157. {
  35158. front: {
  35159. height: math.unit(5 + 8/12, "feet"),
  35160. weight: math.unit(190, "lb"),
  35161. name: "Front",
  35162. image: {
  35163. source: "./media/characters/oven-otter/front.svg",
  35164. extra: 1809/1740,
  35165. bottom: 181/1990
  35166. }
  35167. },
  35168. back: {
  35169. height: math.unit(5 + 8/12, "feet"),
  35170. weight: math.unit(190, "lb"),
  35171. name: "Back",
  35172. image: {
  35173. source: "./media/characters/oven-otter/back.svg",
  35174. extra: 1709/1635,
  35175. bottom: 118/1827
  35176. }
  35177. },
  35178. hand: {
  35179. height: math.unit(1.07, "feet"),
  35180. name: "Hand",
  35181. image: {
  35182. source: "./media/characters/oven-otter/hand.svg"
  35183. }
  35184. },
  35185. beans: {
  35186. height: math.unit(1.74, "feet"),
  35187. name: "Beans",
  35188. image: {
  35189. source: "./media/characters/oven-otter/beans.svg"
  35190. }
  35191. },
  35192. },
  35193. [
  35194. {
  35195. name: "Micro",
  35196. height: math.unit(0.5, "inches")
  35197. },
  35198. {
  35199. name: "Normal",
  35200. height: math.unit(5 + 8/12, "feet"),
  35201. default: true
  35202. },
  35203. {
  35204. name: "Macro",
  35205. height: math.unit(250, "feet")
  35206. },
  35207. {
  35208. name: "Really High",
  35209. height: math.unit(420, "feet")
  35210. },
  35211. ]
  35212. ))
  35213. characterMakers.push(() => makeCharacter(
  35214. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  35215. {
  35216. front: {
  35217. height: math.unit(5, "meters"),
  35218. weight: math.unit(292000000000000, "kg"),
  35219. name: "Front",
  35220. image: {
  35221. source: "./media/characters/devourer/front.svg",
  35222. extra: 1800/1733,
  35223. bottom: 211/2011
  35224. }
  35225. },
  35226. maw: {
  35227. height: math.unit(1.1, "meter"),
  35228. name: "Maw",
  35229. image: {
  35230. source: "./media/characters/devourer/maw.svg"
  35231. }
  35232. },
  35233. },
  35234. [
  35235. {
  35236. name: "Small",
  35237. height: math.unit(3, "meters")
  35238. },
  35239. {
  35240. name: "Large",
  35241. height: math.unit(5, "meters"),
  35242. default: true
  35243. },
  35244. ]
  35245. ))
  35246. characterMakers.push(() => makeCharacter(
  35247. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  35248. {
  35249. front: {
  35250. height: math.unit(6, "feet"),
  35251. weight: math.unit(400, "lb"),
  35252. name: "Front",
  35253. image: {
  35254. source: "./media/characters/ellarby/front.svg",
  35255. extra: 1909/1763,
  35256. bottom: 80/1989
  35257. }
  35258. },
  35259. back: {
  35260. height: math.unit(6, "feet"),
  35261. weight: math.unit(400, "lb"),
  35262. name: "Back",
  35263. image: {
  35264. source: "./media/characters/ellarby/back.svg",
  35265. extra: 1914/1784,
  35266. bottom: 172/2086
  35267. }
  35268. },
  35269. },
  35270. [
  35271. {
  35272. name: "Mischief",
  35273. height: math.unit(18, "inches")
  35274. },
  35275. {
  35276. name: "Trouble",
  35277. height: math.unit(12, "feet")
  35278. },
  35279. {
  35280. name: "Havoc",
  35281. height: math.unit(200, "feet"),
  35282. default: true
  35283. },
  35284. {
  35285. name: "Pandemonium",
  35286. height: math.unit(1, "mile")
  35287. },
  35288. {
  35289. name: "Catastrophe",
  35290. height: math.unit(100, "miles")
  35291. },
  35292. ]
  35293. ))
  35294. characterMakers.push(() => makeCharacter(
  35295. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  35296. {
  35297. front: {
  35298. height: math.unit(4.7, "meters"),
  35299. weight: math.unit(6500, "kg"),
  35300. name: "Front",
  35301. image: {
  35302. source: "./media/characters/vex/front.svg",
  35303. extra: 1288/1140,
  35304. bottom: 100/1388
  35305. }
  35306. },
  35307. },
  35308. [
  35309. {
  35310. name: "Normal",
  35311. height: math.unit(4.7, "meters"),
  35312. default: true
  35313. },
  35314. ]
  35315. ))
  35316. characterMakers.push(() => makeCharacter(
  35317. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  35318. {
  35319. normal: {
  35320. height: math.unit(6, "feet"),
  35321. weight: math.unit(350, "lb"),
  35322. name: "Normal",
  35323. image: {
  35324. source: "./media/characters/teshy/normal.svg",
  35325. extra: 1795/1735,
  35326. bottom: 16/1811
  35327. }
  35328. },
  35329. monsterFront: {
  35330. height: math.unit(12, "feet"),
  35331. weight: math.unit(4700, "lb"),
  35332. name: "Monster (Front)",
  35333. image: {
  35334. source: "./media/characters/teshy/monster-front.svg",
  35335. extra: 2042/2034,
  35336. bottom: 128/2170
  35337. }
  35338. },
  35339. monsterSide: {
  35340. height: math.unit(12, "feet"),
  35341. weight: math.unit(4700, "lb"),
  35342. name: "Monster (Side)",
  35343. image: {
  35344. source: "./media/characters/teshy/monster-side.svg",
  35345. extra: 2067/2056,
  35346. bottom: 70/2137
  35347. }
  35348. },
  35349. monsterBack: {
  35350. height: math.unit(12, "feet"),
  35351. weight: math.unit(4700, "lb"),
  35352. name: "Monster (Back)",
  35353. image: {
  35354. source: "./media/characters/teshy/monster-back.svg",
  35355. extra: 1921/1914,
  35356. bottom: 171/2092
  35357. }
  35358. },
  35359. },
  35360. [
  35361. {
  35362. name: "Normal",
  35363. height: math.unit(6, "feet"),
  35364. default: true
  35365. },
  35366. ]
  35367. ))
  35368. characterMakers.push(() => makeCharacter(
  35369. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  35370. {
  35371. front: {
  35372. height: math.unit(6, "feet"),
  35373. name: "Front",
  35374. image: {
  35375. source: "./media/characters/ramey/front.svg",
  35376. extra: 790/787,
  35377. bottom: 27/817
  35378. }
  35379. },
  35380. },
  35381. [
  35382. {
  35383. name: "Normal",
  35384. height: math.unit(6, "feet"),
  35385. default: true
  35386. },
  35387. ]
  35388. ))
  35389. characterMakers.push(() => makeCharacter(
  35390. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  35391. {
  35392. front: {
  35393. height: math.unit(5 + 5/12, "feet"),
  35394. weight: math.unit(120, "lb"),
  35395. name: "Front",
  35396. image: {
  35397. source: "./media/characters/phirae/front.svg",
  35398. extra: 2491/2436,
  35399. bottom: 38/2529
  35400. }
  35401. },
  35402. },
  35403. [
  35404. {
  35405. name: "Normal",
  35406. height: math.unit(5 + 5/12, "feet"),
  35407. default: true
  35408. },
  35409. ]
  35410. ))
  35411. characterMakers.push(() => makeCharacter(
  35412. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  35413. {
  35414. front: {
  35415. height: math.unit(5 + 3/12, "feet"),
  35416. name: "Front",
  35417. image: {
  35418. source: "./media/characters/stagglas/front.svg",
  35419. extra: 962/882,
  35420. bottom: 53/1015
  35421. }
  35422. },
  35423. feral: {
  35424. height: math.unit(335, "cm"),
  35425. name: "Feral",
  35426. image: {
  35427. source: "./media/characters/stagglas/feral.svg",
  35428. extra: 1732/1090,
  35429. bottom: 48/1780
  35430. }
  35431. },
  35432. },
  35433. [
  35434. {
  35435. name: "Normal",
  35436. height: math.unit(5 + 3/12, "feet"),
  35437. default: true
  35438. },
  35439. ]
  35440. ))
  35441. characterMakers.push(() => makeCharacter(
  35442. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  35443. {
  35444. front: {
  35445. height: math.unit(5 + 4/12, "feet"),
  35446. weight: math.unit(145, "lb"),
  35447. name: "Front",
  35448. image: {
  35449. source: "./media/characters/starra/front.svg",
  35450. extra: 1790/1691,
  35451. bottom: 91/1881
  35452. }
  35453. },
  35454. },
  35455. [
  35456. {
  35457. name: "Normal",
  35458. height: math.unit(5 + 4/12, "feet"),
  35459. default: true
  35460. },
  35461. ]
  35462. ))
  35463. characterMakers.push(() => makeCharacter(
  35464. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  35465. {
  35466. front: {
  35467. height: math.unit(2.2, "meters"),
  35468. name: "Front",
  35469. image: {
  35470. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  35471. extra: 1194/1005,
  35472. bottom: 25/1219
  35473. }
  35474. },
  35475. },
  35476. [
  35477. {
  35478. name: "Normal",
  35479. height: math.unit(2.2, "meters"),
  35480. default: true
  35481. },
  35482. ]
  35483. ))
  35484. characterMakers.push(() => makeCharacter(
  35485. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  35486. {
  35487. side: {
  35488. height: math.unit(8 + 2/12, "feet"),
  35489. weight: math.unit(1240, "lb"),
  35490. name: "Side",
  35491. image: {
  35492. source: "./media/characters/mika-valentine/side.svg",
  35493. extra: 2670/2501,
  35494. bottom: 250/2920
  35495. }
  35496. },
  35497. },
  35498. [
  35499. {
  35500. name: "Normal",
  35501. height: math.unit(8 + 2/12, "feet"),
  35502. default: true
  35503. },
  35504. ]
  35505. ))
  35506. characterMakers.push(() => makeCharacter(
  35507. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  35508. {
  35509. front: {
  35510. height: math.unit(7 + 2/12, "feet"),
  35511. name: "Front",
  35512. image: {
  35513. source: "./media/characters/xoltol/front.svg",
  35514. extra: 2212/2124,
  35515. bottom: 84/2296
  35516. }
  35517. },
  35518. side: {
  35519. height: math.unit(7 + 2/12, "feet"),
  35520. name: "Side",
  35521. image: {
  35522. source: "./media/characters/xoltol/side.svg",
  35523. extra: 2273/2197,
  35524. bottom: 26/2299
  35525. }
  35526. },
  35527. hand: {
  35528. height: math.unit(2.5, "feet"),
  35529. name: "Hand",
  35530. image: {
  35531. source: "./media/characters/xoltol/hand.svg"
  35532. }
  35533. },
  35534. },
  35535. [
  35536. {
  35537. name: "Small-ish",
  35538. height: math.unit(5 + 11/12, "feet")
  35539. },
  35540. {
  35541. name: "Normal",
  35542. height: math.unit(7 + 2/12, "feet")
  35543. },
  35544. {
  35545. name: "\"Macro\"",
  35546. height: math.unit(14 + 9/12, "feet"),
  35547. default: true
  35548. },
  35549. {
  35550. name: "Alternate Height",
  35551. height: math.unit(20, "feet")
  35552. },
  35553. {
  35554. name: "Actually Macro",
  35555. height: math.unit(100, "feet")
  35556. },
  35557. ]
  35558. ))
  35559. characterMakers.push(() => makeCharacter(
  35560. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  35561. {
  35562. front: {
  35563. height: math.unit(5 + 2/12, "feet"),
  35564. name: "Front",
  35565. image: {
  35566. source: "./media/characters/kotetsu-redwood/front.svg",
  35567. extra: 1053/942,
  35568. bottom: 60/1113
  35569. }
  35570. },
  35571. },
  35572. [
  35573. {
  35574. name: "Normal",
  35575. height: math.unit(5 + 2/12, "feet"),
  35576. default: true
  35577. },
  35578. ]
  35579. ))
  35580. characterMakers.push(() => makeCharacter(
  35581. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  35582. {
  35583. front: {
  35584. height: math.unit(2.4, "meters"),
  35585. weight: math.unit(125, "kg"),
  35586. name: "Front",
  35587. image: {
  35588. source: "./media/characters/lilith/front.svg",
  35589. extra: 1590/1513,
  35590. bottom: 203/1793
  35591. }
  35592. },
  35593. },
  35594. [
  35595. {
  35596. name: "Humanoid",
  35597. height: math.unit(2.4, "meters")
  35598. },
  35599. {
  35600. name: "Normal",
  35601. height: math.unit(6, "meters"),
  35602. default: true
  35603. },
  35604. {
  35605. name: "Largest",
  35606. height: math.unit(55, "meters")
  35607. },
  35608. ]
  35609. ))
  35610. characterMakers.push(() => makeCharacter(
  35611. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  35612. {
  35613. front: {
  35614. height: math.unit(8 + 4/12, "feet"),
  35615. weight: math.unit(535, "lb"),
  35616. name: "Front",
  35617. image: {
  35618. source: "./media/characters/beh'kah-bolger/front.svg",
  35619. extra: 1660/1603,
  35620. bottom: 37/1697
  35621. }
  35622. },
  35623. },
  35624. [
  35625. {
  35626. name: "Normal",
  35627. height: math.unit(8 + 4/12, "feet"),
  35628. default: true
  35629. },
  35630. {
  35631. name: "Kaiju",
  35632. height: math.unit(250, "feet")
  35633. },
  35634. {
  35635. name: "Still Growing",
  35636. height: math.unit(10, "miles")
  35637. },
  35638. {
  35639. name: "Continental",
  35640. height: math.unit(5000, "miles")
  35641. },
  35642. {
  35643. name: "Final Form",
  35644. height: math.unit(2500000, "miles")
  35645. },
  35646. ]
  35647. ))
  35648. characterMakers.push(() => makeCharacter(
  35649. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  35650. {
  35651. front: {
  35652. height: math.unit(7 + 2/12, "feet"),
  35653. weight: math.unit(230, "kg"),
  35654. name: "Front",
  35655. image: {
  35656. source: "./media/characters/tatyana-milewska/front.svg",
  35657. extra: 1199/1150,
  35658. bottom: 86/1285
  35659. }
  35660. },
  35661. },
  35662. [
  35663. {
  35664. name: "Normal",
  35665. height: math.unit(7 + 2/12, "feet"),
  35666. default: true
  35667. },
  35668. {
  35669. name: "Big",
  35670. height: math.unit(12, "feet")
  35671. },
  35672. {
  35673. name: "Minimacro",
  35674. height: math.unit(20, "feet")
  35675. },
  35676. {
  35677. name: "Macro",
  35678. height: math.unit(120, "feet")
  35679. },
  35680. ]
  35681. ))
  35682. characterMakers.push(() => makeCharacter(
  35683. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  35684. {
  35685. front: {
  35686. height: math.unit(7 + 8/12, "feet"),
  35687. weight: math.unit(152, "kg"),
  35688. name: "Front",
  35689. image: {
  35690. source: "./media/characters/helen-arri/front.svg",
  35691. extra: 440/423,
  35692. bottom: 14/454
  35693. }
  35694. },
  35695. back: {
  35696. height: math.unit(7 + 8/12, "feet"),
  35697. weight: math.unit(152, "kg"),
  35698. name: "Back",
  35699. image: {
  35700. source: "./media/characters/helen-arri/back.svg",
  35701. extra: 443/426,
  35702. bottom: 8/451
  35703. }
  35704. },
  35705. },
  35706. [
  35707. {
  35708. name: "Normal",
  35709. height: math.unit(7 + 8/12, "feet"),
  35710. default: true
  35711. },
  35712. {
  35713. name: "Big",
  35714. height: math.unit(14, "feet")
  35715. },
  35716. {
  35717. name: "Minimacro",
  35718. height: math.unit(24, "feet")
  35719. },
  35720. {
  35721. name: "Macro",
  35722. height: math.unit(140, "feet")
  35723. },
  35724. ]
  35725. ))
  35726. characterMakers.push(() => makeCharacter(
  35727. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  35728. {
  35729. front: {
  35730. height: math.unit(6, "meters"),
  35731. name: "Front",
  35732. image: {
  35733. source: "./media/characters/ehanu-rehu/front.svg",
  35734. extra: 1800/1800,
  35735. bottom: 59/1859
  35736. }
  35737. },
  35738. },
  35739. [
  35740. {
  35741. name: "Normal",
  35742. height: math.unit(6, "meters"),
  35743. default: true
  35744. },
  35745. ]
  35746. ))
  35747. characterMakers.push(() => makeCharacter(
  35748. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  35749. {
  35750. front: {
  35751. height: math.unit(7 + 3/12, "feet"),
  35752. name: "Front",
  35753. image: {
  35754. source: "./media/characters/renholder/front.svg",
  35755. extra: 3096/2960,
  35756. bottom: 250/3346
  35757. }
  35758. },
  35759. },
  35760. [
  35761. {
  35762. name: "Normal Bat",
  35763. height: math.unit(7 + 3/12, "feet"),
  35764. default: true
  35765. },
  35766. {
  35767. name: "Slightly Tall Bat",
  35768. height: math.unit(100, "feet")
  35769. },
  35770. {
  35771. name: "Big Bat",
  35772. height: math.unit(1000, "feet")
  35773. },
  35774. {
  35775. name: "City-Sized Bat",
  35776. height: math.unit(200000, "feet")
  35777. },
  35778. {
  35779. name: "Bigger Bat",
  35780. height: math.unit(10000, "miles")
  35781. },
  35782. {
  35783. name: "Solar Sized Bat",
  35784. height: math.unit(100, "AU")
  35785. },
  35786. {
  35787. name: "Galactic Bat",
  35788. height: math.unit(200000, "lightyears")
  35789. },
  35790. {
  35791. name: "Universally Known Bat",
  35792. height: math.unit(1, "universe")
  35793. },
  35794. ]
  35795. ))
  35796. characterMakers.push(() => makeCharacter(
  35797. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  35798. {
  35799. front: {
  35800. height: math.unit(6 + 11/12, "feet"),
  35801. weight: math.unit(250, "lb"),
  35802. name: "Front",
  35803. image: {
  35804. source: "./media/characters/cookiecat/front.svg",
  35805. extra: 893/827,
  35806. bottom: 14/907
  35807. }
  35808. },
  35809. },
  35810. [
  35811. {
  35812. name: "Micro",
  35813. height: math.unit(3, "inches")
  35814. },
  35815. {
  35816. name: "Normal",
  35817. height: math.unit(6 + 11/12, "feet"),
  35818. default: true
  35819. },
  35820. {
  35821. name: "Macro",
  35822. height: math.unit(100, "feet")
  35823. },
  35824. {
  35825. name: "Macro+",
  35826. height: math.unit(404, "feet")
  35827. },
  35828. {
  35829. name: "Megamacro",
  35830. height: math.unit(165, "miles")
  35831. },
  35832. {
  35833. name: "Planetary",
  35834. height: math.unit(4600, "miles")
  35835. },
  35836. ]
  35837. ))
  35838. characterMakers.push(() => makeCharacter(
  35839. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  35840. {
  35841. front: {
  35842. height: math.unit(10 + 3/12, "feet"),
  35843. weight: math.unit(1500, "lb"),
  35844. name: "Front",
  35845. image: {
  35846. source: "./media/characters/tux-kusanagi/front.svg",
  35847. extra: 944/840,
  35848. bottom: 39/983
  35849. }
  35850. },
  35851. back: {
  35852. height: math.unit(10 + 3/12, "feet"),
  35853. weight: math.unit(1500, "lb"),
  35854. name: "Back",
  35855. image: {
  35856. source: "./media/characters/tux-kusanagi/back.svg",
  35857. extra: 941/842,
  35858. bottom: 28/969
  35859. }
  35860. },
  35861. rump: {
  35862. height: math.unit(5.25, "feet"),
  35863. name: "Rump",
  35864. image: {
  35865. source: "./media/characters/tux-kusanagi/rump.svg"
  35866. }
  35867. },
  35868. beak: {
  35869. height: math.unit(1.54, "feet"),
  35870. name: "Beak",
  35871. image: {
  35872. source: "./media/characters/tux-kusanagi/beak.svg"
  35873. }
  35874. },
  35875. },
  35876. [
  35877. {
  35878. name: "Normal",
  35879. height: math.unit(10 + 3/12, "feet"),
  35880. default: true
  35881. },
  35882. ]
  35883. ))
  35884. characterMakers.push(() => makeCharacter(
  35885. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  35886. {
  35887. front: {
  35888. height: math.unit(58, "feet"),
  35889. weight: math.unit(200, "tons"),
  35890. name: "Front",
  35891. image: {
  35892. source: "./media/characters/uzarmazari/front.svg",
  35893. extra: 1575/1455,
  35894. bottom: 152/1727
  35895. }
  35896. },
  35897. back: {
  35898. height: math.unit(58, "feet"),
  35899. weight: math.unit(200, "tons"),
  35900. name: "Back",
  35901. image: {
  35902. source: "./media/characters/uzarmazari/back.svg",
  35903. extra: 1585/1510,
  35904. bottom: 157/1742
  35905. }
  35906. },
  35907. head: {
  35908. height: math.unit(26, "feet"),
  35909. name: "Head",
  35910. image: {
  35911. source: "./media/characters/uzarmazari/head.svg"
  35912. }
  35913. },
  35914. },
  35915. [
  35916. {
  35917. name: "Normal",
  35918. height: math.unit(58, "feet"),
  35919. default: true
  35920. },
  35921. ]
  35922. ))
  35923. characterMakers.push(() => makeCharacter(
  35924. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  35925. {
  35926. side: {
  35927. height: math.unit(15, "feet"),
  35928. name: "Side",
  35929. image: {
  35930. source: "./media/characters/akitu/side.svg",
  35931. extra: 1421/1321,
  35932. bottom: 157/1578
  35933. }
  35934. },
  35935. front: {
  35936. height: math.unit(15, "feet"),
  35937. name: "Front",
  35938. image: {
  35939. source: "./media/characters/akitu/front.svg",
  35940. extra: 1435/1326,
  35941. bottom: 232/1667
  35942. }
  35943. },
  35944. },
  35945. [
  35946. {
  35947. name: "Normal",
  35948. height: math.unit(15, "feet"),
  35949. default: true
  35950. },
  35951. ]
  35952. ))
  35953. characterMakers.push(() => makeCharacter(
  35954. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  35955. {
  35956. front: {
  35957. height: math.unit(10 + 8/12, "feet"),
  35958. name: "Front",
  35959. image: {
  35960. source: "./media/characters/azalie-croixland/front.svg",
  35961. extra: 1972/1856,
  35962. bottom: 31/2003
  35963. }
  35964. },
  35965. },
  35966. [
  35967. {
  35968. name: "Original Height",
  35969. height: math.unit(5 + 4/12, "feet")
  35970. },
  35971. {
  35972. name: "Normal Height",
  35973. height: math.unit(10 + 8/12, "feet"),
  35974. default: true
  35975. },
  35976. ]
  35977. ))
  35978. characterMakers.push(() => makeCharacter(
  35979. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  35980. {
  35981. side: {
  35982. height: math.unit(7 + 1/12, "feet"),
  35983. weight: math.unit(245, "lb"),
  35984. name: "Side",
  35985. image: {
  35986. source: "./media/characters/kavus-kazian/side.svg",
  35987. extra: 349/342,
  35988. bottom: 15/364
  35989. }
  35990. },
  35991. },
  35992. [
  35993. {
  35994. name: "Normal",
  35995. height: math.unit(7 + 1/12, "feet"),
  35996. default: true
  35997. },
  35998. ]
  35999. ))
  36000. characterMakers.push(() => makeCharacter(
  36001. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  36002. {
  36003. normalFront: {
  36004. height: math.unit(5 + 11/12, "feet"),
  36005. name: "Front",
  36006. image: {
  36007. source: "./media/characters/moonlight-rose/normal-front.svg",
  36008. extra: 1980/1825,
  36009. bottom: 18/1998
  36010. },
  36011. form: "normal",
  36012. default: true
  36013. },
  36014. normalBack: {
  36015. height: math.unit(5 + 11/12, "feet"),
  36016. name: "Back",
  36017. image: {
  36018. source: "./media/characters/moonlight-rose/normal-back.svg",
  36019. extra: 2010/1839,
  36020. bottom: 10/2020
  36021. },
  36022. form: "normal"
  36023. },
  36024. demonFront: {
  36025. height: math.unit(1.5, "earths"),
  36026. name: "Front",
  36027. image: {
  36028. source: "./media/characters/moonlight-rose/demon.svg",
  36029. extra: 1400/1294,
  36030. bottom: 45/1445
  36031. },
  36032. form: "demon",
  36033. default: true
  36034. },
  36035. terraFront: {
  36036. height: math.unit(1.5, "earths"),
  36037. name: "Front",
  36038. image: {
  36039. source: "./media/characters/moonlight-rose/terra.svg"
  36040. },
  36041. form: "terra",
  36042. default: true
  36043. },
  36044. jupiterFront: {
  36045. height: math.unit(69911*2, "km"),
  36046. name: "Front",
  36047. image: {
  36048. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  36049. extra: 1367/1286,
  36050. bottom: 55/1422
  36051. },
  36052. form: "jupiter",
  36053. default: true
  36054. },
  36055. neptuneFront: {
  36056. height: math.unit(24622*2, "feet"),
  36057. name: "Front",
  36058. image: {
  36059. source: "./media/characters/moonlight-rose/neptune-front.svg",
  36060. extra: 1851/1712,
  36061. bottom: 0/1851
  36062. },
  36063. form: "neptune",
  36064. default: true
  36065. },
  36066. },
  36067. [
  36068. {
  36069. name: "\"Natural\" Height",
  36070. height: math.unit(5 + 11/12, "feet"),
  36071. form: "normal"
  36072. },
  36073. {
  36074. name: "Smallest comfortable size",
  36075. height: math.unit(40, "meters"),
  36076. form: "normal"
  36077. },
  36078. {
  36079. name: "Common size",
  36080. height: math.unit(50, "km"),
  36081. form: "normal",
  36082. default: true
  36083. },
  36084. {
  36085. name: "Normal",
  36086. height: math.unit(1.5, "earths"),
  36087. form: "demon",
  36088. default: true
  36089. },
  36090. {
  36091. name: "Universal",
  36092. height: math.unit(15, "universes"),
  36093. form: "demon"
  36094. },
  36095. {
  36096. name: "Earth",
  36097. height: math.unit(1.5, "earths"),
  36098. form: "terra",
  36099. default: true
  36100. },
  36101. {
  36102. name: "Super Earth",
  36103. height: math.unit(67.5, "earths"),
  36104. form: "terra"
  36105. },
  36106. {
  36107. name: "Doesn't fit in a solar system...",
  36108. height: math.unit(1, "galaxy"),
  36109. form: "terra"
  36110. },
  36111. {
  36112. name: "Saturn",
  36113. height: math.unit(58232*2, "km"),
  36114. form: "jupiter"
  36115. },
  36116. {
  36117. name: "Jupiter",
  36118. height: math.unit(69911*2, "km"),
  36119. form: "jupiter",
  36120. default: true
  36121. },
  36122. {
  36123. name: "HD 100546 b",
  36124. height: math.unit(482938, "km"),
  36125. form: "jupiter"
  36126. },
  36127. {
  36128. name: "Enceladus",
  36129. height: math.unit(513*2, "km"),
  36130. form: "neptune"
  36131. },
  36132. {
  36133. name: "Europe",
  36134. height: math.unit(1560*2, "km"),
  36135. form: "neptune"
  36136. },
  36137. {
  36138. name: "Neptune",
  36139. height: math.unit(24622*2, "km"),
  36140. form: "neptune",
  36141. default: true
  36142. },
  36143. {
  36144. name: "CoRoT-9b",
  36145. height: math.unit(75067*2, "km"),
  36146. form: "neptune"
  36147. },
  36148. ],
  36149. {
  36150. "normal": {
  36151. name: "Normal",
  36152. default: true
  36153. },
  36154. "demon": {
  36155. name: "Demon"
  36156. },
  36157. "terra": {
  36158. name: "Terra"
  36159. },
  36160. "jupiter": {
  36161. name: "Jupiter"
  36162. },
  36163. "neptune": {
  36164. name: "Neptune"
  36165. }
  36166. }
  36167. ))
  36168. characterMakers.push(() => makeCharacter(
  36169. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  36170. {
  36171. front: {
  36172. height: math.unit(16, "feet"),
  36173. weight: math.unit(610, "kg"),
  36174. name: "Front",
  36175. image: {
  36176. source: "./media/characters/huckle/front.svg",
  36177. extra: 1731/1625,
  36178. bottom: 33/1764
  36179. }
  36180. },
  36181. back: {
  36182. height: math.unit(16, "feet"),
  36183. weight: math.unit(610, "kg"),
  36184. name: "Back",
  36185. image: {
  36186. source: "./media/characters/huckle/back.svg",
  36187. extra: 1738/1651,
  36188. bottom: 37/1775
  36189. }
  36190. },
  36191. laughing: {
  36192. height: math.unit(3.75, "feet"),
  36193. name: "Laughing",
  36194. image: {
  36195. source: "./media/characters/huckle/laughing.svg"
  36196. }
  36197. },
  36198. angry: {
  36199. height: math.unit(4.15, "feet"),
  36200. name: "Angry",
  36201. image: {
  36202. source: "./media/characters/huckle/angry.svg"
  36203. }
  36204. },
  36205. },
  36206. [
  36207. {
  36208. name: "Normal",
  36209. height: math.unit(16, "feet"),
  36210. default: true
  36211. },
  36212. {
  36213. name: "Mini Macro",
  36214. height: math.unit(463, "feet")
  36215. },
  36216. {
  36217. name: "Macro",
  36218. height: math.unit(1680, "meters")
  36219. },
  36220. {
  36221. name: "Mega Macro",
  36222. height: math.unit(175, "km")
  36223. },
  36224. {
  36225. name: "Terra Macro",
  36226. height: math.unit(32, "gigameters")
  36227. },
  36228. {
  36229. name: "Multiverse+",
  36230. height: math.unit(2.56e23, "yottameters")
  36231. },
  36232. ]
  36233. ))
  36234. characterMakers.push(() => makeCharacter(
  36235. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  36236. {
  36237. front: {
  36238. height: math.unit(6 + 9/12, "feet"),
  36239. weight: math.unit(280, "lb"),
  36240. name: "Front",
  36241. image: {
  36242. source: "./media/characters/candy/front.svg",
  36243. extra: 234/217,
  36244. bottom: 11/245
  36245. }
  36246. },
  36247. },
  36248. [
  36249. {
  36250. name: "Really Small",
  36251. height: math.unit(0.1, "nm")
  36252. },
  36253. {
  36254. name: "Micro",
  36255. height: math.unit(2, "inches")
  36256. },
  36257. {
  36258. name: "Normal",
  36259. height: math.unit(6 + 9/12, "feet"),
  36260. default: true
  36261. },
  36262. {
  36263. name: "Small Macro",
  36264. height: math.unit(69, "feet")
  36265. },
  36266. {
  36267. name: "Macro",
  36268. height: math.unit(160, "feet")
  36269. },
  36270. {
  36271. name: "Megamacro",
  36272. height: math.unit(22000, "miles")
  36273. },
  36274. {
  36275. name: "Gigamacro",
  36276. height: math.unit(50000, "miles")
  36277. },
  36278. ]
  36279. ))
  36280. characterMakers.push(() => makeCharacter(
  36281. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  36282. {
  36283. front: {
  36284. height: math.unit(4, "feet"),
  36285. weight: math.unit(90, "lb"),
  36286. name: "Front",
  36287. image: {
  36288. source: "./media/characters/joey-mcdonald/front.svg",
  36289. extra: 1059/852,
  36290. bottom: 33/1092
  36291. }
  36292. },
  36293. back: {
  36294. height: math.unit(4, "feet"),
  36295. weight: math.unit(90, "lb"),
  36296. name: "Back",
  36297. image: {
  36298. source: "./media/characters/joey-mcdonald/back.svg",
  36299. extra: 1077/879,
  36300. bottom: 5/1082
  36301. }
  36302. },
  36303. frontKobold: {
  36304. height: math.unit(4, "feet"),
  36305. weight: math.unit(100, "lb"),
  36306. name: "Front-kobold",
  36307. image: {
  36308. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  36309. extra: 1480/1367,
  36310. bottom: 0/1480
  36311. }
  36312. },
  36313. backKobold: {
  36314. height: math.unit(4, "feet"),
  36315. weight: math.unit(100, "lb"),
  36316. name: "Back-kobold",
  36317. image: {
  36318. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  36319. extra: 1449/1361,
  36320. bottom: 0/1449
  36321. }
  36322. },
  36323. },
  36324. [
  36325. {
  36326. name: "Normal",
  36327. height: math.unit(4, "feet"),
  36328. default: true
  36329. },
  36330. ]
  36331. ))
  36332. characterMakers.push(() => makeCharacter(
  36333. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  36334. {
  36335. front: {
  36336. height: math.unit(12 + 6/12, "feet"),
  36337. name: "Front",
  36338. image: {
  36339. source: "./media/characters/kass-lockheed/front.svg",
  36340. extra: 354/343,
  36341. bottom: 9/363
  36342. }
  36343. },
  36344. back: {
  36345. height: math.unit(12 + 6/12, "feet"),
  36346. name: "Back",
  36347. image: {
  36348. source: "./media/characters/kass-lockheed/back.svg",
  36349. extra: 364/352,
  36350. bottom: 3/367
  36351. }
  36352. },
  36353. dick: {
  36354. height: math.unit(3.12, "feet"),
  36355. name: "Dick",
  36356. image: {
  36357. source: "./media/characters/kass-lockheed/dick.svg"
  36358. }
  36359. },
  36360. head: {
  36361. height: math.unit(2.6, "feet"),
  36362. name: "Head",
  36363. image: {
  36364. source: "./media/characters/kass-lockheed/head.svg"
  36365. }
  36366. },
  36367. bleh: {
  36368. height: math.unit(2.85, "feet"),
  36369. name: "Bleh",
  36370. image: {
  36371. source: "./media/characters/kass-lockheed/bleh.svg"
  36372. }
  36373. },
  36374. smug: {
  36375. height: math.unit(2.85, "feet"),
  36376. name: "Smug",
  36377. image: {
  36378. source: "./media/characters/kass-lockheed/smug.svg"
  36379. }
  36380. },
  36381. },
  36382. [
  36383. {
  36384. name: "Normal",
  36385. height: math.unit(12 + 6/12, "feet"),
  36386. default: true
  36387. },
  36388. ]
  36389. ))
  36390. characterMakers.push(() => makeCharacter(
  36391. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  36392. {
  36393. front: {
  36394. height: math.unit(6 + 2/12, "feet"),
  36395. name: "Front",
  36396. image: {
  36397. source: "./media/characters/taylor/front.svg",
  36398. extra: 639/495,
  36399. bottom: 12/651
  36400. }
  36401. },
  36402. },
  36403. [
  36404. {
  36405. name: "Normal",
  36406. height: math.unit(6 + 2/12, "feet"),
  36407. default: true
  36408. },
  36409. {
  36410. name: "Big",
  36411. height: math.unit(15, "feet")
  36412. },
  36413. {
  36414. name: "Lorg",
  36415. height: math.unit(80, "feet")
  36416. },
  36417. {
  36418. name: "Too Lorg",
  36419. height: math.unit(120, "feet")
  36420. },
  36421. ]
  36422. ))
  36423. characterMakers.push(() => makeCharacter(
  36424. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  36425. {
  36426. front: {
  36427. height: math.unit(15, "feet"),
  36428. name: "Front",
  36429. image: {
  36430. source: "./media/characters/kaizer/front.svg",
  36431. extra: 1612/1436,
  36432. bottom: 43/1655
  36433. }
  36434. },
  36435. },
  36436. [
  36437. {
  36438. name: "Normal",
  36439. height: math.unit(15, "feet"),
  36440. default: true
  36441. },
  36442. ]
  36443. ))
  36444. characterMakers.push(() => makeCharacter(
  36445. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  36446. {
  36447. front: {
  36448. height: math.unit(2, "feet"),
  36449. weight: math.unit(30, "lb"),
  36450. name: "Front",
  36451. image: {
  36452. source: "./media/characters/sandy/front.svg",
  36453. extra: 1439/1307,
  36454. bottom: 194/1633
  36455. }
  36456. },
  36457. },
  36458. [
  36459. {
  36460. name: "Normal",
  36461. height: math.unit(2, "feet"),
  36462. default: true
  36463. },
  36464. ]
  36465. ))
  36466. characterMakers.push(() => makeCharacter(
  36467. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  36468. {
  36469. front: {
  36470. height: math.unit(3, "feet"),
  36471. name: "Front",
  36472. image: {
  36473. source: "./media/characters/mellvi/front.svg",
  36474. extra: 1831/1630,
  36475. bottom: 58/1889
  36476. }
  36477. },
  36478. },
  36479. [
  36480. {
  36481. name: "Normal",
  36482. height: math.unit(3, "feet"),
  36483. default: true
  36484. },
  36485. ]
  36486. ))
  36487. characterMakers.push(() => makeCharacter(
  36488. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  36489. {
  36490. front: {
  36491. height: math.unit(5 + 11/12, "feet"),
  36492. weight: math.unit(200, "lb"),
  36493. name: "Front",
  36494. image: {
  36495. source: "./media/characters/shirou/front.svg",
  36496. extra: 2491/2383,
  36497. bottom: 189/2680
  36498. }
  36499. },
  36500. back: {
  36501. height: math.unit(5 + 11/12, "feet"),
  36502. weight: math.unit(200, "lb"),
  36503. name: "Back",
  36504. image: {
  36505. source: "./media/characters/shirou/back.svg",
  36506. extra: 2554/2450,
  36507. bottom: 76/2630
  36508. }
  36509. },
  36510. },
  36511. [
  36512. {
  36513. name: "Normal",
  36514. height: math.unit(5 + 11/12, "feet"),
  36515. default: true
  36516. },
  36517. ]
  36518. ))
  36519. characterMakers.push(() => makeCharacter(
  36520. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  36521. {
  36522. front: {
  36523. height: math.unit(6 + 3/12, "feet"),
  36524. weight: math.unit(177, "lb"),
  36525. name: "Front",
  36526. image: {
  36527. source: "./media/characters/noryu/front.svg",
  36528. extra: 973/885,
  36529. bottom: 10/983
  36530. }
  36531. },
  36532. },
  36533. [
  36534. {
  36535. name: "Normal",
  36536. height: math.unit(6 + 3/12, "feet"),
  36537. default: true
  36538. },
  36539. ]
  36540. ))
  36541. characterMakers.push(() => makeCharacter(
  36542. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  36543. {
  36544. front: {
  36545. height: math.unit(5 + 6/12, "feet"),
  36546. weight: math.unit(170, "lb"),
  36547. name: "Front",
  36548. image: {
  36549. source: "./media/characters/mevolas-rubenido/front.svg",
  36550. extra: 2109/1901,
  36551. bottom: 96/2205
  36552. }
  36553. },
  36554. },
  36555. [
  36556. {
  36557. name: "Normal",
  36558. height: math.unit(5 + 6/12, "feet"),
  36559. default: true
  36560. },
  36561. ]
  36562. ))
  36563. characterMakers.push(() => makeCharacter(
  36564. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  36565. {
  36566. front: {
  36567. height: math.unit(100, "feet"),
  36568. name: "Front",
  36569. image: {
  36570. source: "./media/characters/dee/front.svg",
  36571. extra: 2153/2036,
  36572. bottom: 59/2212
  36573. }
  36574. },
  36575. back: {
  36576. height: math.unit(100, "feet"),
  36577. name: "Back",
  36578. image: {
  36579. source: "./media/characters/dee/back.svg",
  36580. extra: 2183/2058,
  36581. bottom: 75/2258
  36582. }
  36583. },
  36584. foot: {
  36585. height: math.unit(19.43, "feet"),
  36586. name: "Foot",
  36587. image: {
  36588. source: "./media/characters/dee/foot.svg"
  36589. }
  36590. },
  36591. hoof: {
  36592. height: math.unit(20.6, "feet"),
  36593. name: "Hoof",
  36594. image: {
  36595. source: "./media/characters/dee/hoof.svg"
  36596. }
  36597. },
  36598. },
  36599. [
  36600. {
  36601. name: "Macro",
  36602. height: math.unit(100, "feet"),
  36603. default: true
  36604. },
  36605. ]
  36606. ))
  36607. characterMakers.push(() => makeCharacter(
  36608. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  36609. {
  36610. front: {
  36611. height: math.unit(5 + 6/12, "feet"),
  36612. name: "Front",
  36613. image: {
  36614. source: "./media/characters/teh/front.svg",
  36615. extra: 1002/847,
  36616. bottom: 62/1064
  36617. }
  36618. },
  36619. },
  36620. [
  36621. {
  36622. name: "Normal",
  36623. height: math.unit(5 + 6/12, "feet"),
  36624. default: true
  36625. },
  36626. ]
  36627. ))
  36628. characterMakers.push(() => makeCharacter(
  36629. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  36630. {
  36631. side: {
  36632. height: math.unit(6 + 1/12, "feet"),
  36633. weight: math.unit(204, "lb"),
  36634. name: "Side",
  36635. image: {
  36636. source: "./media/characters/quicksilver-ayukoti/side.svg",
  36637. extra: 974/775,
  36638. bottom: 169/1143
  36639. }
  36640. },
  36641. sitting: {
  36642. height: math.unit(6 + 2/12, "feet"),
  36643. weight: math.unit(204, "lb"),
  36644. name: "Sitting",
  36645. image: {
  36646. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  36647. extra: 1175/964,
  36648. bottom: 378/1553
  36649. }
  36650. },
  36651. },
  36652. [
  36653. {
  36654. name: "Normal",
  36655. height: math.unit(6 + 1/12, "feet"),
  36656. default: true
  36657. },
  36658. ]
  36659. ))
  36660. characterMakers.push(() => makeCharacter(
  36661. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  36662. {
  36663. front: {
  36664. height: math.unit(6, "inches"),
  36665. name: "Front",
  36666. image: {
  36667. source: "./media/characters/tululi/front.svg",
  36668. extra: 1997/1876,
  36669. bottom: 20/2017
  36670. }
  36671. },
  36672. },
  36673. [
  36674. {
  36675. name: "Normal",
  36676. height: math.unit(6, "inches"),
  36677. default: true
  36678. },
  36679. ]
  36680. ))
  36681. characterMakers.push(() => makeCharacter(
  36682. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  36683. {
  36684. front: {
  36685. height: math.unit(4 + 1/12, "feet"),
  36686. name: "Front",
  36687. image: {
  36688. source: "./media/characters/star/front.svg",
  36689. extra: 1493/1189,
  36690. bottom: 48/1541
  36691. }
  36692. },
  36693. },
  36694. [
  36695. {
  36696. name: "Normal",
  36697. height: math.unit(4 + 1/12, "feet"),
  36698. default: true
  36699. },
  36700. ]
  36701. ))
  36702. characterMakers.push(() => makeCharacter(
  36703. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  36704. {
  36705. front: {
  36706. height: math.unit(6 + 3/12, "feet"),
  36707. name: "Front",
  36708. image: {
  36709. source: "./media/characters/comet/front.svg",
  36710. extra: 1681/1462,
  36711. bottom: 26/1707
  36712. }
  36713. },
  36714. },
  36715. [
  36716. {
  36717. name: "Normal",
  36718. height: math.unit(6 + 3/12, "feet"),
  36719. default: true
  36720. },
  36721. ]
  36722. ))
  36723. characterMakers.push(() => makeCharacter(
  36724. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  36725. {
  36726. front: {
  36727. height: math.unit(950, "feet"),
  36728. name: "Front",
  36729. image: {
  36730. source: "./media/characters/vortex/front.svg",
  36731. extra: 1497/1434,
  36732. bottom: 56/1553
  36733. }
  36734. },
  36735. maw: {
  36736. height: math.unit(285, "feet"),
  36737. name: "Maw",
  36738. image: {
  36739. source: "./media/characters/vortex/maw.svg"
  36740. }
  36741. },
  36742. },
  36743. [
  36744. {
  36745. name: "Macro",
  36746. height: math.unit(950, "feet"),
  36747. default: true
  36748. },
  36749. ]
  36750. ))
  36751. characterMakers.push(() => makeCharacter(
  36752. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  36753. {
  36754. front: {
  36755. height: math.unit(600, "feet"),
  36756. weight: math.unit(0.02, "grams"),
  36757. name: "Front",
  36758. image: {
  36759. source: "./media/characters/doodle/front.svg",
  36760. extra: 1578/1413,
  36761. bottom: 37/1615
  36762. }
  36763. },
  36764. },
  36765. [
  36766. {
  36767. name: "Macro",
  36768. height: math.unit(600, "feet"),
  36769. default: true
  36770. },
  36771. ]
  36772. ))
  36773. characterMakers.push(() => makeCharacter(
  36774. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  36775. {
  36776. front: {
  36777. height: math.unit(6 + 6/12, "feet"),
  36778. name: "Front",
  36779. image: {
  36780. source: "./media/characters/jai/front.svg",
  36781. extra: 1645/1534,
  36782. bottom: 115/1760
  36783. }
  36784. },
  36785. },
  36786. [
  36787. {
  36788. name: "Normal",
  36789. height: math.unit(6 + 6/12, "feet"),
  36790. default: true
  36791. },
  36792. ]
  36793. ))
  36794. characterMakers.push(() => makeCharacter(
  36795. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  36796. {
  36797. front: {
  36798. height: math.unit(6 + 8/12, "feet"),
  36799. name: "Front",
  36800. image: {
  36801. source: "./media/characters/pixel/front.svg",
  36802. extra: 1900/1735,
  36803. bottom: 63/1963
  36804. }
  36805. },
  36806. },
  36807. [
  36808. {
  36809. name: "Normal",
  36810. height: math.unit(6 + 8/12, "feet"),
  36811. default: true
  36812. },
  36813. ]
  36814. ))
  36815. characterMakers.push(() => makeCharacter(
  36816. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  36817. {
  36818. back: {
  36819. height: math.unit(4 + 1/12, "feet"),
  36820. weight: math.unit(75, "lb"),
  36821. name: "Back",
  36822. image: {
  36823. source: "./media/characters/rhett/back.svg",
  36824. extra: 930/878,
  36825. bottom: 25/955
  36826. }
  36827. },
  36828. front: {
  36829. height: math.unit(4 + 1/12, "feet"),
  36830. weight: math.unit(75, "lb"),
  36831. name: "Front",
  36832. image: {
  36833. source: "./media/characters/rhett/front.svg",
  36834. extra: 1682/1586,
  36835. bottom: 92/1774
  36836. }
  36837. },
  36838. },
  36839. [
  36840. {
  36841. name: "Micro",
  36842. height: math.unit(8, "inches")
  36843. },
  36844. {
  36845. name: "Tiny",
  36846. height: math.unit(2, "feet")
  36847. },
  36848. {
  36849. name: "Normal",
  36850. height: math.unit(4 + 1/12, "feet"),
  36851. default: true
  36852. },
  36853. ]
  36854. ))
  36855. characterMakers.push(() => makeCharacter(
  36856. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  36857. {
  36858. front: {
  36859. height: math.unit(3 + 3/12, "feet"),
  36860. name: "Front",
  36861. image: {
  36862. source: "./media/characters/penny/front.svg",
  36863. extra: 1406/1311,
  36864. bottom: 26/1432
  36865. }
  36866. },
  36867. },
  36868. [
  36869. {
  36870. name: "Normal",
  36871. height: math.unit(3 + 3/12, "feet"),
  36872. default: true
  36873. },
  36874. ]
  36875. ))
  36876. characterMakers.push(() => makeCharacter(
  36877. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  36878. {
  36879. front: {
  36880. height: math.unit(4 + 11/12, "feet"),
  36881. name: "Front",
  36882. image: {
  36883. source: "./media/characters/monty/front.svg",
  36884. extra: 1479/1209,
  36885. bottom: 0/1479
  36886. }
  36887. },
  36888. },
  36889. [
  36890. {
  36891. name: "Normal",
  36892. height: math.unit(4 + 11/12, "feet"),
  36893. default: true
  36894. },
  36895. ]
  36896. ))
  36897. characterMakers.push(() => makeCharacter(
  36898. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  36899. {
  36900. front: {
  36901. height: math.unit(8 + 4/12, "feet"),
  36902. name: "Front",
  36903. image: {
  36904. source: "./media/characters/sterling/front.svg",
  36905. extra: 1420/1236,
  36906. bottom: 27/1447
  36907. }
  36908. },
  36909. },
  36910. [
  36911. {
  36912. name: "Normal",
  36913. height: math.unit(8 + 4/12, "feet"),
  36914. default: true
  36915. },
  36916. ]
  36917. ))
  36918. characterMakers.push(() => makeCharacter(
  36919. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  36920. {
  36921. front: {
  36922. height: math.unit(15, "feet"),
  36923. name: "Front",
  36924. image: {
  36925. source: "./media/characters/marble/front.svg",
  36926. extra: 973/937,
  36927. bottom: 32/1005
  36928. }
  36929. },
  36930. },
  36931. [
  36932. {
  36933. name: "Normal",
  36934. height: math.unit(15, "feet"),
  36935. default: true
  36936. },
  36937. ]
  36938. ))
  36939. characterMakers.push(() => makeCharacter(
  36940. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  36941. {
  36942. front: {
  36943. height: math.unit(3, "inches"),
  36944. name: "Front",
  36945. image: {
  36946. source: "./media/characters/powder/front.svg",
  36947. extra: 1504/1334,
  36948. bottom: 518/2022
  36949. }
  36950. },
  36951. },
  36952. [
  36953. {
  36954. name: "Normal",
  36955. height: math.unit(3, "inches"),
  36956. default: true
  36957. },
  36958. ]
  36959. ))
  36960. characterMakers.push(() => makeCharacter(
  36961. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  36962. {
  36963. front: {
  36964. height: math.unit(4 + 5/12, "feet"),
  36965. name: "Front",
  36966. image: {
  36967. source: "./media/characters/joey-raccoon/front.svg",
  36968. extra: 1273/1197,
  36969. bottom: 0/1273
  36970. }
  36971. },
  36972. },
  36973. [
  36974. {
  36975. name: "Normal",
  36976. height: math.unit(4 + 5/12, "feet"),
  36977. default: true
  36978. },
  36979. ]
  36980. ))
  36981. characterMakers.push(() => makeCharacter(
  36982. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  36983. {
  36984. front: {
  36985. height: math.unit(8 + 4/12, "feet"),
  36986. name: "Front",
  36987. image: {
  36988. source: "./media/characters/vick/front.svg",
  36989. extra: 2187/2118,
  36990. bottom: 47/2234
  36991. }
  36992. },
  36993. },
  36994. [
  36995. {
  36996. name: "Normal",
  36997. height: math.unit(8 + 4/12, "feet"),
  36998. default: true
  36999. },
  37000. ]
  37001. ))
  37002. characterMakers.push(() => makeCharacter(
  37003. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  37004. {
  37005. front: {
  37006. height: math.unit(5 + 5/12, "feet"),
  37007. name: "Front",
  37008. image: {
  37009. source: "./media/characters/mitsy/front.svg",
  37010. extra: 1842/1695,
  37011. bottom: 0/1842
  37012. }
  37013. },
  37014. },
  37015. [
  37016. {
  37017. name: "Normal",
  37018. height: math.unit(5 + 5/12, "feet"),
  37019. default: true
  37020. },
  37021. ]
  37022. ))
  37023. characterMakers.push(() => makeCharacter(
  37024. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  37025. {
  37026. front: {
  37027. height: math.unit(6 + 3/12, "feet"),
  37028. name: "Front",
  37029. image: {
  37030. source: "./media/characters/silvy/front.svg",
  37031. extra: 1995/1836,
  37032. bottom: 225/2220
  37033. }
  37034. },
  37035. },
  37036. [
  37037. {
  37038. name: "Normal",
  37039. height: math.unit(6 + 3/12, "feet"),
  37040. default: true
  37041. },
  37042. ]
  37043. ))
  37044. characterMakers.push(() => makeCharacter(
  37045. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  37046. {
  37047. front: {
  37048. height: math.unit(3 + 8/12, "feet"),
  37049. name: "Front",
  37050. image: {
  37051. source: "./media/characters/rodney/front.svg",
  37052. extra: 1956/1747,
  37053. bottom: 31/1987
  37054. }
  37055. },
  37056. frontDressed: {
  37057. height: math.unit(2.9, "feet"),
  37058. name: "Front (Dressed)",
  37059. image: {
  37060. source: "./media/characters/rodney/front-dressed.svg",
  37061. extra: 1382/1241,
  37062. bottom: 385/1767
  37063. }
  37064. },
  37065. },
  37066. [
  37067. {
  37068. name: "Normal",
  37069. height: math.unit(3 + 8/12, "feet"),
  37070. default: true
  37071. },
  37072. ]
  37073. ))
  37074. characterMakers.push(() => makeCharacter(
  37075. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  37076. {
  37077. front: {
  37078. height: math.unit(5 + 9/12, "feet"),
  37079. weight: math.unit(194, "lbs"),
  37080. name: "Front",
  37081. image: {
  37082. source: "./media/characters/zakail-sudekai/front.svg",
  37083. extra: 2696/2533,
  37084. bottom: 248/2944
  37085. }
  37086. },
  37087. maw: {
  37088. height: math.unit(1.35, "feet"),
  37089. name: "Maw",
  37090. image: {
  37091. source: "./media/characters/zakail-sudekai/maw.svg"
  37092. }
  37093. },
  37094. },
  37095. [
  37096. {
  37097. name: "Normal",
  37098. height: math.unit(5 + 9/12, "feet"),
  37099. default: true
  37100. },
  37101. ]
  37102. ))
  37103. characterMakers.push(() => makeCharacter(
  37104. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  37105. {
  37106. front: {
  37107. height: math.unit(8 + 4/12, "feet"),
  37108. weight: math.unit(1200, "lb"),
  37109. name: "Front",
  37110. image: {
  37111. source: "./media/characters/eleanor/front.svg",
  37112. extra: 1226/1192,
  37113. bottom: 52/1278
  37114. }
  37115. },
  37116. back: {
  37117. height: math.unit(8 + 4/12, "feet"),
  37118. weight: math.unit(1200, "lb"),
  37119. name: "Back",
  37120. image: {
  37121. source: "./media/characters/eleanor/back.svg",
  37122. extra: 1242/1184,
  37123. bottom: 60/1302
  37124. }
  37125. },
  37126. head: {
  37127. height: math.unit(2.62, "feet"),
  37128. name: "Head",
  37129. image: {
  37130. source: "./media/characters/eleanor/head.svg"
  37131. }
  37132. },
  37133. },
  37134. [
  37135. {
  37136. name: "Normal",
  37137. height: math.unit(8 + 4/12, "feet"),
  37138. default: true
  37139. },
  37140. ]
  37141. ))
  37142. characterMakers.push(() => makeCharacter(
  37143. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  37144. {
  37145. front: {
  37146. height: math.unit(8 + 4/12, "feet"),
  37147. weight: math.unit(750, "lb"),
  37148. name: "Front",
  37149. image: {
  37150. source: "./media/characters/tanya/front.svg",
  37151. extra: 1749/1615,
  37152. bottom: 33/1782
  37153. }
  37154. },
  37155. },
  37156. [
  37157. {
  37158. name: "Normal",
  37159. height: math.unit(8 + 4/12, "feet"),
  37160. default: true
  37161. },
  37162. ]
  37163. ))
  37164. characterMakers.push(() => makeCharacter(
  37165. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  37166. {
  37167. front: {
  37168. height: math.unit(5, "feet"),
  37169. weight: math.unit(225, "lb"),
  37170. name: "Front",
  37171. image: {
  37172. source: "./media/characters/cindy/front.svg",
  37173. extra: 1320/1250,
  37174. bottom: 42/1362
  37175. }
  37176. },
  37177. frontDressed: {
  37178. height: math.unit(5, "feet"),
  37179. weight: math.unit(225, "lb"),
  37180. name: "Front (Dressed)",
  37181. image: {
  37182. source: "./media/characters/cindy/front-dressed.svg",
  37183. extra: 1320/1250,
  37184. bottom: 42/1362
  37185. }
  37186. },
  37187. back: {
  37188. height: math.unit(5, "feet"),
  37189. weight: math.unit(225, "lb"),
  37190. name: "Back",
  37191. image: {
  37192. source: "./media/characters/cindy/back.svg",
  37193. extra: 1384/1346,
  37194. bottom: 14/1398
  37195. }
  37196. },
  37197. },
  37198. [
  37199. {
  37200. name: "Normal",
  37201. height: math.unit(5, "feet"),
  37202. default: true
  37203. },
  37204. ]
  37205. ))
  37206. characterMakers.push(() => makeCharacter(
  37207. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  37208. {
  37209. front: {
  37210. height: math.unit(6 + 9/12, "feet"),
  37211. weight: math.unit(440, "lb"),
  37212. name: "Front",
  37213. image: {
  37214. source: "./media/characters/wilbur-owen/front.svg",
  37215. extra: 1575/1448,
  37216. bottom: 72/1647
  37217. }
  37218. },
  37219. back: {
  37220. height: math.unit(6 + 9/12, "feet"),
  37221. weight: math.unit(440, "lb"),
  37222. name: "Back",
  37223. image: {
  37224. source: "./media/characters/wilbur-owen/back.svg",
  37225. extra: 1578/1445,
  37226. bottom: 36/1614
  37227. }
  37228. },
  37229. },
  37230. [
  37231. {
  37232. name: "Normal",
  37233. height: math.unit(6 + 9/12, "feet"),
  37234. default: true
  37235. },
  37236. ]
  37237. ))
  37238. characterMakers.push(() => makeCharacter(
  37239. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  37240. {
  37241. front: {
  37242. height: math.unit(6 + 5/12, "feet"),
  37243. weight: math.unit(650, "lb"),
  37244. name: "Front",
  37245. image: {
  37246. source: "./media/characters/keegan/front.svg",
  37247. extra: 2387/2198,
  37248. bottom: 33/2420
  37249. }
  37250. },
  37251. side: {
  37252. height: math.unit(6 + 5/12, "feet"),
  37253. weight: math.unit(650, "lb"),
  37254. name: "Side",
  37255. image: {
  37256. source: "./media/characters/keegan/side.svg",
  37257. extra: 2390/2202,
  37258. bottom: 47/2437
  37259. }
  37260. },
  37261. back: {
  37262. height: math.unit(6 + 5/12, "feet"),
  37263. weight: math.unit(650, "lb"),
  37264. name: "Back",
  37265. image: {
  37266. source: "./media/characters/keegan/back.svg",
  37267. extra: 2418/2268,
  37268. bottom: 15/2433
  37269. }
  37270. },
  37271. frontSfw: {
  37272. height: math.unit(6 + 5/12, "feet"),
  37273. weight: math.unit(650, "lb"),
  37274. name: "Front (SFW)",
  37275. image: {
  37276. source: "./media/characters/keegan/front-sfw.svg",
  37277. extra: 2387/2198,
  37278. bottom: 33/2420
  37279. }
  37280. },
  37281. beans: {
  37282. height: math.unit(1.85, "feet"),
  37283. name: "Beans",
  37284. image: {
  37285. source: "./media/characters/keegan/beans.svg"
  37286. }
  37287. },
  37288. },
  37289. [
  37290. {
  37291. name: "Normal",
  37292. height: math.unit(6 + 5/12, "feet"),
  37293. default: true
  37294. },
  37295. ]
  37296. ))
  37297. characterMakers.push(() => makeCharacter(
  37298. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  37299. {
  37300. front: {
  37301. height: math.unit(9, "feet"),
  37302. name: "Front",
  37303. image: {
  37304. source: "./media/characters/colton/front.svg",
  37305. extra: 1589/1326,
  37306. bottom: 139/1728
  37307. }
  37308. },
  37309. },
  37310. [
  37311. {
  37312. name: "Normal",
  37313. height: math.unit(9, "feet"),
  37314. default: true
  37315. },
  37316. ]
  37317. ))
  37318. characterMakers.push(() => makeCharacter(
  37319. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  37320. {
  37321. front: {
  37322. height: math.unit(2 + 9/12, "feet"),
  37323. name: "Front",
  37324. image: {
  37325. source: "./media/characters/bora/front.svg",
  37326. extra: 1265/1250,
  37327. bottom: 24/1289
  37328. }
  37329. },
  37330. },
  37331. [
  37332. {
  37333. name: "Normal",
  37334. height: math.unit(2 + 9/12, "feet"),
  37335. default: true
  37336. },
  37337. ]
  37338. ))
  37339. characterMakers.push(() => makeCharacter(
  37340. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  37341. {
  37342. front: {
  37343. height: math.unit(8, "feet"),
  37344. name: "Front",
  37345. image: {
  37346. source: "./media/characters/myu-myu/front.svg",
  37347. extra: 1949/1857,
  37348. bottom: 90/2039
  37349. }
  37350. },
  37351. },
  37352. [
  37353. {
  37354. name: "Normal",
  37355. height: math.unit(8, "feet"),
  37356. default: true
  37357. },
  37358. {
  37359. name: "Big",
  37360. height: math.unit(15, "feet")
  37361. },
  37362. {
  37363. name: "BIG",
  37364. height: math.unit(25, "feet")
  37365. },
  37366. ]
  37367. ))
  37368. characterMakers.push(() => makeCharacter(
  37369. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  37370. {
  37371. side: {
  37372. height: math.unit(7 + 5/12, "feet"),
  37373. weight: math.unit(2800, "lb"),
  37374. name: "Side",
  37375. image: {
  37376. source: "./media/characters/haloren/side.svg",
  37377. extra: 1793/409,
  37378. bottom: 59/1852
  37379. }
  37380. },
  37381. frontPaw: {
  37382. height: math.unit(2.36, "feet"),
  37383. name: "Front paw",
  37384. image: {
  37385. source: "./media/characters/haloren/front-paw.svg"
  37386. }
  37387. },
  37388. hindPaw: {
  37389. height: math.unit(3.18, "feet"),
  37390. name: "Hind paw",
  37391. image: {
  37392. source: "./media/characters/haloren/hind-paw.svg"
  37393. }
  37394. },
  37395. maw: {
  37396. height: math.unit(5.05, "feet"),
  37397. name: "Maw",
  37398. image: {
  37399. source: "./media/characters/haloren/maw.svg"
  37400. }
  37401. },
  37402. dick: {
  37403. height: math.unit(2.90, "feet"),
  37404. name: "Dick",
  37405. image: {
  37406. source: "./media/characters/haloren/dick.svg"
  37407. }
  37408. },
  37409. },
  37410. [
  37411. {
  37412. name: "Normal",
  37413. height: math.unit(7 + 5/12, "feet"),
  37414. default: true
  37415. },
  37416. {
  37417. name: "Enhanced",
  37418. height: math.unit(14 + 3/12, "feet")
  37419. },
  37420. ]
  37421. ))
  37422. characterMakers.push(() => makeCharacter(
  37423. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  37424. {
  37425. front: {
  37426. height: math.unit(171, "cm"),
  37427. name: "Front",
  37428. image: {
  37429. source: "./media/characters/kimmy/front.svg",
  37430. extra: 1491/1435,
  37431. bottom: 53/1544
  37432. }
  37433. },
  37434. },
  37435. [
  37436. {
  37437. name: "Small",
  37438. height: math.unit(9, "cm")
  37439. },
  37440. {
  37441. name: "Normal",
  37442. height: math.unit(171, "cm"),
  37443. default: true
  37444. },
  37445. ]
  37446. ))
  37447. characterMakers.push(() => makeCharacter(
  37448. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  37449. {
  37450. front: {
  37451. height: math.unit(8, "feet"),
  37452. weight: math.unit(300, "lb"),
  37453. name: "Front",
  37454. image: {
  37455. source: "./media/characters/galeboomer/front.svg",
  37456. extra: 4651/4415,
  37457. bottom: 162/4813
  37458. }
  37459. },
  37460. back: {
  37461. height: math.unit(8, "feet"),
  37462. weight: math.unit(300, "lb"),
  37463. name: "Back",
  37464. image: {
  37465. source: "./media/characters/galeboomer/back.svg",
  37466. extra: 4544/4314,
  37467. bottom: 16/4560
  37468. }
  37469. },
  37470. frontAlt: {
  37471. height: math.unit(8, "feet"),
  37472. weight: math.unit(300, "lb"),
  37473. name: "Front (Alt)",
  37474. image: {
  37475. source: "./media/characters/galeboomer/front-alt.svg",
  37476. extra: 4458/4228,
  37477. bottom: 68/4526
  37478. }
  37479. },
  37480. maw: {
  37481. height: math.unit(1.2, "feet"),
  37482. name: "Maw",
  37483. image: {
  37484. source: "./media/characters/galeboomer/maw.svg"
  37485. }
  37486. },
  37487. },
  37488. [
  37489. {
  37490. name: "Normal",
  37491. height: math.unit(8, "feet"),
  37492. default: true
  37493. },
  37494. ]
  37495. ))
  37496. characterMakers.push(() => makeCharacter(
  37497. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  37498. {
  37499. front: {
  37500. height: math.unit(5 + 9/12, "feet"),
  37501. weight: math.unit(120, "lb"),
  37502. name: "Front",
  37503. image: {
  37504. source: "./media/characters/chyr/front.svg",
  37505. extra: 1323/1254,
  37506. bottom: 63/1386
  37507. }
  37508. },
  37509. back: {
  37510. height: math.unit(5 + 9/12, "feet"),
  37511. weight: math.unit(120, "lb"),
  37512. name: "Back",
  37513. image: {
  37514. source: "./media/characters/chyr/back.svg",
  37515. extra: 1323/1252,
  37516. bottom: 48/1371
  37517. }
  37518. },
  37519. },
  37520. [
  37521. {
  37522. name: "Normal",
  37523. height: math.unit(5 + 9/12, "feet"),
  37524. default: true
  37525. },
  37526. ]
  37527. ))
  37528. characterMakers.push(() => makeCharacter(
  37529. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  37530. {
  37531. front: {
  37532. height: math.unit(7, "feet"),
  37533. weight: math.unit(310, "lb"),
  37534. name: "Front",
  37535. image: {
  37536. source: "./media/characters/solarus/front.svg",
  37537. extra: 2415/2021,
  37538. bottom: 103/2518
  37539. }
  37540. },
  37541. back: {
  37542. height: math.unit(7, "feet"),
  37543. weight: math.unit(310, "lb"),
  37544. name: "Back",
  37545. image: {
  37546. source: "./media/characters/solarus/back.svg",
  37547. extra: 2463/2089,
  37548. bottom: 79/2542
  37549. }
  37550. },
  37551. },
  37552. [
  37553. {
  37554. name: "Normal",
  37555. height: math.unit(7, "feet"),
  37556. default: true
  37557. },
  37558. ]
  37559. ))
  37560. characterMakers.push(() => makeCharacter(
  37561. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  37562. {
  37563. front: {
  37564. height: math.unit(16, "feet"),
  37565. name: "Front",
  37566. image: {
  37567. source: "./media/characters/mutsuju-koizaemon/front.svg",
  37568. extra: 1844/1780,
  37569. bottom: 58/1902
  37570. }
  37571. },
  37572. winterCoat: {
  37573. height: math.unit(16, "feet"),
  37574. name: "Winter Coat",
  37575. image: {
  37576. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  37577. extra: 1807/1775,
  37578. bottom: 69/1876
  37579. }
  37580. },
  37581. },
  37582. [
  37583. {
  37584. name: "Normal",
  37585. height: math.unit(16, "feet"),
  37586. default: true
  37587. },
  37588. {
  37589. name: "Chicago Size",
  37590. height: math.unit(560, "feet")
  37591. },
  37592. ]
  37593. ))
  37594. characterMakers.push(() => makeCharacter(
  37595. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  37596. {
  37597. front: {
  37598. height: math.unit(11 + 6/12, "feet"),
  37599. weight: math.unit(1366, "lb"),
  37600. name: "Front",
  37601. image: {
  37602. source: "./media/characters/lexor/front.svg",
  37603. extra: 1560/1481,
  37604. bottom: 211/1771
  37605. }
  37606. },
  37607. back: {
  37608. height: math.unit(11 + 6/12, "feet"),
  37609. weight: math.unit(1366, "lb"),
  37610. name: "Back",
  37611. image: {
  37612. source: "./media/characters/lexor/back.svg",
  37613. extra: 1614/1533,
  37614. bottom: 76/1690
  37615. }
  37616. },
  37617. maw: {
  37618. height: math.unit(3, "feet"),
  37619. name: "Maw",
  37620. image: {
  37621. source: "./media/characters/lexor/maw.svg"
  37622. }
  37623. },
  37624. dick: {
  37625. height: math.unit(2.59, "feet"),
  37626. name: "Dick",
  37627. image: {
  37628. source: "./media/characters/lexor/dick.svg"
  37629. }
  37630. },
  37631. },
  37632. [
  37633. {
  37634. name: "Normal",
  37635. height: math.unit(11 + 6/12, "feet"),
  37636. default: true
  37637. },
  37638. ]
  37639. ))
  37640. characterMakers.push(() => makeCharacter(
  37641. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  37642. {
  37643. front: {
  37644. height: math.unit(5 + 8/12, "feet"),
  37645. name: "Front",
  37646. image: {
  37647. source: "./media/characters/magnum/front.svg",
  37648. extra: 942/855,
  37649. bottom: 26/968
  37650. }
  37651. },
  37652. },
  37653. [
  37654. {
  37655. name: "Normal",
  37656. height: math.unit(5 + 8/12, "feet"),
  37657. default: true
  37658. },
  37659. ]
  37660. ))
  37661. characterMakers.push(() => makeCharacter(
  37662. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  37663. {
  37664. front: {
  37665. height: math.unit(18 + 4/12, "feet"),
  37666. weight: math.unit(1500, "kg"),
  37667. name: "Front",
  37668. image: {
  37669. source: "./media/characters/solas-sharpsman/front.svg",
  37670. extra: 1698/1589,
  37671. bottom: 0/1698
  37672. }
  37673. },
  37674. },
  37675. [
  37676. {
  37677. name: "Normal",
  37678. height: math.unit(18 + 4/12, "feet"),
  37679. default: true
  37680. },
  37681. ]
  37682. ))
  37683. characterMakers.push(() => makeCharacter(
  37684. { name: "October", species: ["tiger"], tags: ["anthro"] },
  37685. {
  37686. front: {
  37687. height: math.unit(5 + 5/12, "feet"),
  37688. weight: math.unit(180, "lb"),
  37689. name: "Front",
  37690. image: {
  37691. source: "./media/characters/october/front.svg",
  37692. extra: 1800/1650,
  37693. bottom: 0/1800
  37694. }
  37695. },
  37696. frontNsfw: {
  37697. height: math.unit(5 + 5/12, "feet"),
  37698. weight: math.unit(180, "lb"),
  37699. name: "Front (NSFW)",
  37700. image: {
  37701. source: "./media/characters/october/front-nsfw.svg",
  37702. extra: 1392/1307,
  37703. bottom: 42/1434
  37704. }
  37705. },
  37706. },
  37707. [
  37708. {
  37709. name: "Normal",
  37710. height: math.unit(5 + 5/12, "feet"),
  37711. default: true
  37712. },
  37713. ]
  37714. ))
  37715. characterMakers.push(() => makeCharacter(
  37716. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  37717. {
  37718. front: {
  37719. height: math.unit(8 + 6/12, "feet"),
  37720. name: "Front",
  37721. image: {
  37722. source: "./media/characters/essynkardi/front.svg",
  37723. extra: 1914/1846,
  37724. bottom: 22/1936
  37725. }
  37726. },
  37727. },
  37728. [
  37729. {
  37730. name: "Normal",
  37731. height: math.unit(8 + 6/12, "feet"),
  37732. default: true
  37733. },
  37734. ]
  37735. ))
  37736. characterMakers.push(() => makeCharacter(
  37737. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  37738. {
  37739. front: {
  37740. height: math.unit(6 + 6/12, "feet"),
  37741. weight: math.unit(7, "lb"),
  37742. name: "Front",
  37743. image: {
  37744. source: "./media/characters/icky/front.svg",
  37745. extra: 813/782,
  37746. bottom: 66/879
  37747. }
  37748. },
  37749. back: {
  37750. height: math.unit(6 + 6/12, "feet"),
  37751. weight: math.unit(7, "lb"),
  37752. name: "Back",
  37753. image: {
  37754. source: "./media/characters/icky/back.svg",
  37755. extra: 754/735,
  37756. bottom: 56/810
  37757. }
  37758. },
  37759. },
  37760. [
  37761. {
  37762. name: "Normal",
  37763. height: math.unit(6 + 6/12, "feet"),
  37764. default: true
  37765. },
  37766. ]
  37767. ))
  37768. characterMakers.push(() => makeCharacter(
  37769. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  37770. {
  37771. front: {
  37772. height: math.unit(15, "feet"),
  37773. name: "Front",
  37774. image: {
  37775. source: "./media/characters/rojas/front.svg",
  37776. extra: 1462/1408,
  37777. bottom: 95/1557
  37778. }
  37779. },
  37780. back: {
  37781. height: math.unit(15, "feet"),
  37782. name: "Back",
  37783. image: {
  37784. source: "./media/characters/rojas/back.svg",
  37785. extra: 1023/954,
  37786. bottom: 28/1051
  37787. }
  37788. },
  37789. },
  37790. [
  37791. {
  37792. name: "Normal",
  37793. height: math.unit(15, "feet"),
  37794. default: true
  37795. },
  37796. ]
  37797. ))
  37798. characterMakers.push(() => makeCharacter(
  37799. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  37800. {
  37801. frontHuman: {
  37802. height: math.unit(5 + 7/12, "feet"),
  37803. name: "Front (Human)",
  37804. image: {
  37805. source: "./media/characters/alek-dryagan/front-human.svg",
  37806. extra: 1687/1667,
  37807. bottom: 69/1756
  37808. }
  37809. },
  37810. backHuman: {
  37811. height: math.unit(5 + 7/12, "feet"),
  37812. name: "Back (Human)",
  37813. image: {
  37814. source: "./media/characters/alek-dryagan/back-human.svg",
  37815. extra: 1670/1649,
  37816. bottom: 65/1735
  37817. }
  37818. },
  37819. frontDemi: {
  37820. height: math.unit(65, "feet"),
  37821. name: "Front (Demi)",
  37822. image: {
  37823. source: "./media/characters/alek-dryagan/front-demi.svg",
  37824. extra: 1669/1642,
  37825. bottom: 49/1718
  37826. }
  37827. },
  37828. backDemi: {
  37829. height: math.unit(65, "feet"),
  37830. name: "Back (Demi)",
  37831. image: {
  37832. source: "./media/characters/alek-dryagan/back-demi.svg",
  37833. extra: 1658/1637,
  37834. bottom: 40/1698
  37835. }
  37836. },
  37837. mawHuman: {
  37838. height: math.unit(0.3, "feet"),
  37839. name: "Maw (Human)",
  37840. image: {
  37841. source: "./media/characters/alek-dryagan/maw-human.svg"
  37842. }
  37843. },
  37844. mawDemi: {
  37845. height: math.unit(3.8, "feet"),
  37846. name: "Maw (Demi)",
  37847. image: {
  37848. source: "./media/characters/alek-dryagan/maw-demi.svg"
  37849. }
  37850. },
  37851. },
  37852. [
  37853. {
  37854. name: "Normal",
  37855. height: math.unit(5 + 7/12, "feet"),
  37856. default: true
  37857. },
  37858. ]
  37859. ))
  37860. characterMakers.push(() => makeCharacter(
  37861. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  37862. {
  37863. frontHuman: {
  37864. height: math.unit(5 + 2/12, "feet"),
  37865. name: "Front (Human)",
  37866. image: {
  37867. source: "./media/characters/gen/front-human.svg",
  37868. extra: 1627/1538,
  37869. bottom: 71/1698
  37870. }
  37871. },
  37872. backHuman: {
  37873. height: math.unit(5 + 2/12, "feet"),
  37874. name: "Back (Human)",
  37875. image: {
  37876. source: "./media/characters/gen/back-human.svg",
  37877. extra: 1638/1548,
  37878. bottom: 69/1707
  37879. }
  37880. },
  37881. frontDemi: {
  37882. height: math.unit(5 + 2/12, "feet"),
  37883. name: "Front (Demi)",
  37884. image: {
  37885. source: "./media/characters/gen/front-demi.svg",
  37886. extra: 1627/1538,
  37887. bottom: 71/1698
  37888. }
  37889. },
  37890. backDemi: {
  37891. height: math.unit(5 + 2/12, "feet"),
  37892. name: "Back (Demi)",
  37893. image: {
  37894. source: "./media/characters/gen/back-demi.svg",
  37895. extra: 1638/1548,
  37896. bottom: 69/1707
  37897. }
  37898. },
  37899. },
  37900. [
  37901. {
  37902. name: "Normal",
  37903. height: math.unit(5 + 2/12, "feet"),
  37904. default: true
  37905. },
  37906. ]
  37907. ))
  37908. characterMakers.push(() => makeCharacter(
  37909. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  37910. {
  37911. frontImp: {
  37912. height: math.unit(1 + 11/12, "feet"),
  37913. name: "Front (Imp)",
  37914. image: {
  37915. source: "./media/characters/max-kobold/front-imp.svg",
  37916. extra: 1238/1134,
  37917. bottom: 81/1319
  37918. }
  37919. },
  37920. backImp: {
  37921. height: math.unit(1 + 11/12, "feet"),
  37922. name: "Back (Imp)",
  37923. image: {
  37924. source: "./media/characters/max-kobold/back-imp.svg",
  37925. extra: 1334/1175,
  37926. bottom: 34/1368
  37927. }
  37928. },
  37929. frontDemi: {
  37930. height: math.unit(5 + 9/12, "feet"),
  37931. name: "Front (Demi)",
  37932. image: {
  37933. source: "./media/characters/max-kobold/front-demi.svg",
  37934. extra: 1715/1685,
  37935. bottom: 54/1769
  37936. }
  37937. },
  37938. backDemi: {
  37939. height: math.unit(5 + 9/12, "feet"),
  37940. name: "Back (Demi)",
  37941. image: {
  37942. source: "./media/characters/max-kobold/back-demi.svg",
  37943. extra: 1752/1729,
  37944. bottom: 41/1793
  37945. }
  37946. },
  37947. handImp: {
  37948. height: math.unit(0.45, "feet"),
  37949. name: "Hand (Imp)",
  37950. image: {
  37951. source: "./media/characters/max-kobold/hand.svg"
  37952. }
  37953. },
  37954. pawImp: {
  37955. height: math.unit(0.46, "feet"),
  37956. name: "Paw (Imp)",
  37957. image: {
  37958. source: "./media/characters/max-kobold/paw.svg"
  37959. }
  37960. },
  37961. handDemi: {
  37962. height: math.unit(0.80, "feet"),
  37963. name: "Hand (Demi)",
  37964. image: {
  37965. source: "./media/characters/max-kobold/hand.svg"
  37966. }
  37967. },
  37968. pawDemi: {
  37969. height: math.unit(1.1, "feet"),
  37970. name: "Paw (Demi)",
  37971. image: {
  37972. source: "./media/characters/max-kobold/paw.svg"
  37973. }
  37974. },
  37975. headImp: {
  37976. height: math.unit(1.33, "feet"),
  37977. name: "Head (Imp)",
  37978. image: {
  37979. source: "./media/characters/max-kobold/head-imp.svg"
  37980. }
  37981. },
  37982. mawImp: {
  37983. height: math.unit(0.75, "feet"),
  37984. name: "Maw (Imp)",
  37985. image: {
  37986. source: "./media/characters/max-kobold/maw-imp.svg"
  37987. }
  37988. },
  37989. mawDemi: {
  37990. height: math.unit(0.42, "feet"),
  37991. name: "Maw (Demi)",
  37992. image: {
  37993. source: "./media/characters/max-kobold/maw-demi.svg"
  37994. }
  37995. },
  37996. },
  37997. [
  37998. {
  37999. name: "Normal",
  38000. height: math.unit(1 + 11/12, "feet"),
  38001. default: true
  38002. },
  38003. ]
  38004. ))
  38005. characterMakers.push(() => makeCharacter(
  38006. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  38007. {
  38008. front: {
  38009. height: math.unit(7 + 5/12, "feet"),
  38010. name: "Front",
  38011. image: {
  38012. source: "./media/characters/carbon/front.svg",
  38013. extra: 1754/1689,
  38014. bottom: 65/1819
  38015. }
  38016. },
  38017. back: {
  38018. height: math.unit(7 + 5/12, "feet"),
  38019. name: "Back",
  38020. image: {
  38021. source: "./media/characters/carbon/back.svg",
  38022. extra: 1762/1695,
  38023. bottom: 24/1786
  38024. }
  38025. },
  38026. frontGigantamax: {
  38027. height: math.unit(150, "feet"),
  38028. name: "Front (Gigantamax)",
  38029. image: {
  38030. source: "./media/characters/carbon/front-gigantamax.svg",
  38031. extra: 1826/1669,
  38032. bottom: 59/1885
  38033. }
  38034. },
  38035. backGigantamax: {
  38036. height: math.unit(150, "feet"),
  38037. name: "Back (Gigantamax)",
  38038. image: {
  38039. source: "./media/characters/carbon/back-gigantamax.svg",
  38040. extra: 1796/1653,
  38041. bottom: 53/1849
  38042. }
  38043. },
  38044. maw: {
  38045. height: math.unit(0.48, "feet"),
  38046. name: "Maw",
  38047. image: {
  38048. source: "./media/characters/carbon/maw.svg"
  38049. }
  38050. },
  38051. mawGigantamax: {
  38052. height: math.unit(7.5, "feet"),
  38053. name: "Maw (Gigantamax)",
  38054. image: {
  38055. source: "./media/characters/carbon/maw-gigantamax.svg"
  38056. }
  38057. },
  38058. },
  38059. [
  38060. {
  38061. name: "Normal",
  38062. height: math.unit(7 + 5/12, "feet"),
  38063. default: true
  38064. },
  38065. ]
  38066. ))
  38067. characterMakers.push(() => makeCharacter(
  38068. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  38069. {
  38070. front: {
  38071. height: math.unit(6, "feet"),
  38072. name: "Front",
  38073. image: {
  38074. source: "./media/characters/maverick/front.svg",
  38075. extra: 1672/1661,
  38076. bottom: 85/1757
  38077. }
  38078. },
  38079. back: {
  38080. height: math.unit(6, "feet"),
  38081. name: "Back",
  38082. image: {
  38083. source: "./media/characters/maverick/back.svg",
  38084. extra: 1642/1631,
  38085. bottom: 38/1680
  38086. }
  38087. },
  38088. },
  38089. [
  38090. {
  38091. name: "Normal",
  38092. height: math.unit(6, "feet"),
  38093. default: true
  38094. },
  38095. ]
  38096. ))
  38097. characterMakers.push(() => makeCharacter(
  38098. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  38099. {
  38100. front: {
  38101. height: math.unit(15, "feet"),
  38102. weight: math.unit(615, "lb"),
  38103. name: "Front",
  38104. image: {
  38105. source: "./media/characters/grockle/front.svg",
  38106. extra: 1535/1427,
  38107. bottom: 56/1591
  38108. }
  38109. },
  38110. },
  38111. [
  38112. {
  38113. name: "Normal",
  38114. height: math.unit(15, "feet"),
  38115. default: true
  38116. },
  38117. {
  38118. name: "Large",
  38119. height: math.unit(150, "feet")
  38120. },
  38121. {
  38122. name: "Macro",
  38123. height: math.unit(1876, "feet")
  38124. },
  38125. {
  38126. name: "Mega Macro",
  38127. height: math.unit(121940, "feet")
  38128. },
  38129. {
  38130. name: "Giga Macro",
  38131. height: math.unit(750, "km")
  38132. },
  38133. {
  38134. name: "Tera Macro",
  38135. height: math.unit(750000, "km")
  38136. },
  38137. {
  38138. name: "Galactic",
  38139. height: math.unit(1.4e5, "km")
  38140. },
  38141. {
  38142. name: "Godlike",
  38143. height: math.unit(9.8e280, "galaxies")
  38144. },
  38145. ]
  38146. ))
  38147. characterMakers.push(() => makeCharacter(
  38148. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  38149. {
  38150. front: {
  38151. height: math.unit(11, "meters"),
  38152. weight: math.unit(20, "tonnes"),
  38153. name: "Front",
  38154. image: {
  38155. source: "./media/characters/alistair/front.svg",
  38156. extra: 1265/1009,
  38157. bottom: 93/1358
  38158. }
  38159. },
  38160. },
  38161. [
  38162. {
  38163. name: "Normal",
  38164. height: math.unit(11, "meters"),
  38165. default: true
  38166. },
  38167. ]
  38168. ))
  38169. characterMakers.push(() => makeCharacter(
  38170. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  38171. {
  38172. front: {
  38173. height: math.unit(5 + 8/12, "feet"),
  38174. name: "Front",
  38175. image: {
  38176. source: "./media/characters/haruka/front.svg",
  38177. extra: 2012/1952,
  38178. bottom: 0/2012
  38179. }
  38180. },
  38181. },
  38182. [
  38183. {
  38184. name: "Normal",
  38185. height: math.unit(5 + 8/12, "feet"),
  38186. default: true
  38187. },
  38188. ]
  38189. ))
  38190. characterMakers.push(() => makeCharacter(
  38191. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  38192. {
  38193. back: {
  38194. height: math.unit(9, "feet"),
  38195. name: "Back",
  38196. image: {
  38197. source: "./media/characters/vivian-sylveon/back.svg",
  38198. extra: 1853/1714,
  38199. bottom: 0/1853
  38200. }
  38201. },
  38202. },
  38203. [
  38204. {
  38205. name: "Normal",
  38206. height: math.unit(9, "feet"),
  38207. default: true
  38208. },
  38209. {
  38210. name: "Macro",
  38211. height: math.unit(500, "feet")
  38212. },
  38213. {
  38214. name: "Megamacro",
  38215. height: math.unit(600, "miles")
  38216. },
  38217. {
  38218. name: "Gigamacro",
  38219. height: math.unit(30000, "miles")
  38220. },
  38221. ]
  38222. ))
  38223. characterMakers.push(() => makeCharacter(
  38224. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  38225. {
  38226. anthro: {
  38227. height: math.unit(5 + 10/12, "feet"),
  38228. weight: math.unit(100, "lb"),
  38229. name: "Anthro",
  38230. image: {
  38231. source: "./media/characters/daiki/anthro.svg",
  38232. extra: 1115/1027,
  38233. bottom: 69/1184
  38234. }
  38235. },
  38236. feral: {
  38237. height: math.unit(200, "feet"),
  38238. name: "Feral",
  38239. image: {
  38240. source: "./media/characters/daiki/feral.svg",
  38241. extra: 1256/313,
  38242. bottom: 39/1295
  38243. }
  38244. },
  38245. feralHead: {
  38246. height: math.unit(171, "feet"),
  38247. name: "Feral Head",
  38248. image: {
  38249. source: "./media/characters/daiki/feral-head.svg"
  38250. }
  38251. },
  38252. manaDragon: {
  38253. height: math.unit(170, "meters"),
  38254. name: "Mana-dragon",
  38255. image: {
  38256. source: "./media/characters/daiki/mana-dragon.svg",
  38257. extra: 763/420,
  38258. bottom: 97/860
  38259. }
  38260. },
  38261. },
  38262. [
  38263. {
  38264. name: "Normal",
  38265. height: math.unit(5 + 10/12, "feet"),
  38266. default: true
  38267. },
  38268. ]
  38269. ))
  38270. characterMakers.push(() => makeCharacter(
  38271. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  38272. {
  38273. fullyEquippedFront: {
  38274. height: math.unit(3 + 1/12, "feet"),
  38275. weight: math.unit(24, "lb"),
  38276. name: "Fully Equipped (Front)",
  38277. image: {
  38278. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  38279. extra: 687/605,
  38280. bottom: 18/705
  38281. }
  38282. },
  38283. fullyEquippedBack: {
  38284. height: math.unit(3 + 1/12, "feet"),
  38285. weight: math.unit(24, "lb"),
  38286. name: "Fully Equipped (Back)",
  38287. image: {
  38288. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  38289. extra: 689/590,
  38290. bottom: 18/707
  38291. }
  38292. },
  38293. dailyWear: {
  38294. height: math.unit(3 + 1/12, "feet"),
  38295. weight: math.unit(24, "lb"),
  38296. name: "Daily Wear",
  38297. image: {
  38298. source: "./media/characters/tea-spot/daily-wear.svg",
  38299. extra: 701/620,
  38300. bottom: 21/722
  38301. }
  38302. },
  38303. maidWork: {
  38304. height: math.unit(3 + 1/12, "feet"),
  38305. weight: math.unit(24, "lb"),
  38306. name: "Maid Work",
  38307. image: {
  38308. source: "./media/characters/tea-spot/maid-work.svg",
  38309. extra: 693/609,
  38310. bottom: 15/708
  38311. }
  38312. },
  38313. },
  38314. [
  38315. {
  38316. name: "Normal",
  38317. height: math.unit(3 + 1/12, "feet"),
  38318. default: true
  38319. },
  38320. ]
  38321. ))
  38322. characterMakers.push(() => makeCharacter(
  38323. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  38324. {
  38325. front: {
  38326. height: math.unit(175, "cm"),
  38327. weight: math.unit(75, "kg"),
  38328. name: "Front",
  38329. image: {
  38330. source: "./media/characters/chee/front.svg",
  38331. extra: 1796/1740,
  38332. bottom: 40/1836
  38333. }
  38334. },
  38335. },
  38336. [
  38337. {
  38338. name: "Micro-Micro",
  38339. height: math.unit(1, "nm")
  38340. },
  38341. {
  38342. name: "Micro-erst",
  38343. height: math.unit(1, "micrometer")
  38344. },
  38345. {
  38346. name: "Micro-er",
  38347. height: math.unit(1, "cm")
  38348. },
  38349. {
  38350. name: "Normal",
  38351. height: math.unit(175, "cm"),
  38352. default: true
  38353. },
  38354. {
  38355. name: "Macro",
  38356. height: math.unit(100, "m")
  38357. },
  38358. {
  38359. name: "Macro-er",
  38360. height: math.unit(1, "km")
  38361. },
  38362. {
  38363. name: "Macro-erst",
  38364. height: math.unit(10, "km")
  38365. },
  38366. {
  38367. name: "Macro-Macro",
  38368. height: math.unit(100, "km")
  38369. },
  38370. ]
  38371. ))
  38372. characterMakers.push(() => makeCharacter(
  38373. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  38374. {
  38375. front: {
  38376. height: math.unit(11 + 9/12, "feet"),
  38377. weight: math.unit(935, "lb"),
  38378. name: "Front",
  38379. image: {
  38380. source: "./media/characters/kingsley/front.svg",
  38381. extra: 1803/1674,
  38382. bottom: 127/1930
  38383. }
  38384. },
  38385. frontNude: {
  38386. height: math.unit(11 + 9/12, "feet"),
  38387. weight: math.unit(935, "lb"),
  38388. name: "Front (Nude)",
  38389. image: {
  38390. source: "./media/characters/kingsley/front-nude.svg",
  38391. extra: 1803/1674,
  38392. bottom: 127/1930
  38393. }
  38394. },
  38395. },
  38396. [
  38397. {
  38398. name: "Normal",
  38399. height: math.unit(11 + 9/12, "feet"),
  38400. default: true
  38401. },
  38402. ]
  38403. ))
  38404. characterMakers.push(() => makeCharacter(
  38405. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  38406. {
  38407. side: {
  38408. height: math.unit(9, "feet"),
  38409. name: "Side",
  38410. image: {
  38411. source: "./media/characters/rymel/side.svg",
  38412. extra: 792/469,
  38413. bottom: 121/913
  38414. }
  38415. },
  38416. maw: {
  38417. height: math.unit(2.4, "meters"),
  38418. name: "Maw",
  38419. image: {
  38420. source: "./media/characters/rymel/maw.svg"
  38421. }
  38422. },
  38423. },
  38424. [
  38425. {
  38426. name: "House Drake",
  38427. height: math.unit(2, "feet")
  38428. },
  38429. {
  38430. name: "Reduced",
  38431. height: math.unit(4.5, "feet")
  38432. },
  38433. {
  38434. name: "Normal",
  38435. height: math.unit(9, "feet"),
  38436. default: true
  38437. },
  38438. ]
  38439. ))
  38440. characterMakers.push(() => makeCharacter(
  38441. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  38442. {
  38443. front: {
  38444. height: math.unit(1.74, "meters"),
  38445. weight: math.unit(55, "kg"),
  38446. name: "Front",
  38447. image: {
  38448. source: "./media/characters/rubus/front.svg",
  38449. extra: 1894/1742,
  38450. bottom: 44/1938
  38451. }
  38452. },
  38453. },
  38454. [
  38455. {
  38456. name: "Normal",
  38457. height: math.unit(1.74, "meters"),
  38458. default: true
  38459. },
  38460. ]
  38461. ))
  38462. characterMakers.push(() => makeCharacter(
  38463. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  38464. {
  38465. front: {
  38466. height: math.unit(5 + 2/12, "feet"),
  38467. weight: math.unit(112, "lb"),
  38468. name: "Front",
  38469. image: {
  38470. source: "./media/characters/cassie-kingston/front.svg",
  38471. extra: 1438/1390,
  38472. bottom: 47/1485
  38473. }
  38474. },
  38475. },
  38476. [
  38477. {
  38478. name: "Normal",
  38479. height: math.unit(5 + 2/12, "feet"),
  38480. default: true
  38481. },
  38482. {
  38483. name: "Macro",
  38484. height: math.unit(128, "feet")
  38485. },
  38486. {
  38487. name: "Megamacro",
  38488. height: math.unit(2.56, "miles")
  38489. },
  38490. ]
  38491. ))
  38492. characterMakers.push(() => makeCharacter(
  38493. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  38494. {
  38495. front: {
  38496. height: math.unit(7, "feet"),
  38497. name: "Front",
  38498. image: {
  38499. source: "./media/characters/fox/front.svg",
  38500. extra: 1798/1703,
  38501. bottom: 55/1853
  38502. }
  38503. },
  38504. back: {
  38505. height: math.unit(7, "feet"),
  38506. name: "Back",
  38507. image: {
  38508. source: "./media/characters/fox/back.svg",
  38509. extra: 1748/1649,
  38510. bottom: 32/1780
  38511. }
  38512. },
  38513. head: {
  38514. height: math.unit(1.95, "feet"),
  38515. name: "Head",
  38516. image: {
  38517. source: "./media/characters/fox/head.svg"
  38518. }
  38519. },
  38520. dick: {
  38521. height: math.unit(1.33, "feet"),
  38522. name: "Dick",
  38523. image: {
  38524. source: "./media/characters/fox/dick.svg"
  38525. }
  38526. },
  38527. foot: {
  38528. height: math.unit(1, "feet"),
  38529. name: "Foot",
  38530. image: {
  38531. source: "./media/characters/fox/foot.svg"
  38532. }
  38533. },
  38534. paw: {
  38535. height: math.unit(0.92, "feet"),
  38536. name: "Paw",
  38537. image: {
  38538. source: "./media/characters/fox/paw.svg"
  38539. }
  38540. },
  38541. },
  38542. [
  38543. {
  38544. name: "Small",
  38545. height: math.unit(3, "inches")
  38546. },
  38547. {
  38548. name: "\"Realistic\"",
  38549. height: math.unit(7, "feet")
  38550. },
  38551. {
  38552. name: "Normal",
  38553. height: math.unit(150, "feet"),
  38554. default: true
  38555. },
  38556. {
  38557. name: "BIG",
  38558. height: math.unit(1200, "feet")
  38559. },
  38560. {
  38561. name: "👀",
  38562. height: math.unit(5, "miles")
  38563. },
  38564. {
  38565. name: "👀👀👀",
  38566. height: math.unit(64, "miles")
  38567. },
  38568. ]
  38569. ))
  38570. characterMakers.push(() => makeCharacter(
  38571. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  38572. {
  38573. front: {
  38574. height: math.unit(625, "feet"),
  38575. name: "Front",
  38576. image: {
  38577. source: "./media/characters/asonja-rossa/front.svg",
  38578. extra: 1833/1686,
  38579. bottom: 24/1857
  38580. }
  38581. },
  38582. back: {
  38583. height: math.unit(625, "feet"),
  38584. name: "Back",
  38585. image: {
  38586. source: "./media/characters/asonja-rossa/back.svg",
  38587. extra: 1852/1753,
  38588. bottom: 26/1878
  38589. }
  38590. },
  38591. },
  38592. [
  38593. {
  38594. name: "Macro",
  38595. height: math.unit(625, "feet"),
  38596. default: true
  38597. },
  38598. ]
  38599. ))
  38600. characterMakers.push(() => makeCharacter(
  38601. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  38602. {
  38603. side: {
  38604. height: math.unit(8, "feet"),
  38605. name: "Side",
  38606. image: {
  38607. source: "./media/characters/rezukii/side.svg",
  38608. extra: 979/542,
  38609. bottom: 87/1066
  38610. }
  38611. },
  38612. sitting: {
  38613. height: math.unit(14.6, "feet"),
  38614. name: "Sitting",
  38615. image: {
  38616. source: "./media/characters/rezukii/sitting.svg",
  38617. extra: 1023/813,
  38618. bottom: 45/1068
  38619. }
  38620. },
  38621. },
  38622. [
  38623. {
  38624. name: "Tiny",
  38625. height: math.unit(2, "feet")
  38626. },
  38627. {
  38628. name: "Smol",
  38629. height: math.unit(4, "feet")
  38630. },
  38631. {
  38632. name: "Normal",
  38633. height: math.unit(8, "feet"),
  38634. default: true
  38635. },
  38636. {
  38637. name: "Big",
  38638. height: math.unit(12, "feet")
  38639. },
  38640. {
  38641. name: "Macro",
  38642. height: math.unit(30, "feet")
  38643. },
  38644. ]
  38645. ))
  38646. characterMakers.push(() => makeCharacter(
  38647. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  38648. {
  38649. front: {
  38650. height: math.unit(14, "feet"),
  38651. weight: math.unit(9.5, "tonnes"),
  38652. name: "Front",
  38653. image: {
  38654. source: "./media/characters/dawnheart/front.svg",
  38655. extra: 2792/2675,
  38656. bottom: 64/2856
  38657. }
  38658. },
  38659. },
  38660. [
  38661. {
  38662. name: "Normal",
  38663. height: math.unit(14, "feet"),
  38664. default: true
  38665. },
  38666. ]
  38667. ))
  38668. characterMakers.push(() => makeCharacter(
  38669. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  38670. {
  38671. front: {
  38672. height: math.unit(1.7, "m"),
  38673. name: "Front",
  38674. image: {
  38675. source: "./media/characters/gladi/front.svg",
  38676. extra: 1460/1362,
  38677. bottom: 19/1479
  38678. }
  38679. },
  38680. back: {
  38681. height: math.unit(1.7, "m"),
  38682. name: "Back",
  38683. image: {
  38684. source: "./media/characters/gladi/back.svg",
  38685. extra: 1459/1357,
  38686. bottom: 12/1471
  38687. }
  38688. },
  38689. feral: {
  38690. height: math.unit(2.05, "m"),
  38691. name: "Feral",
  38692. image: {
  38693. source: "./media/characters/gladi/feral.svg",
  38694. extra: 821/557,
  38695. bottom: 91/912
  38696. }
  38697. },
  38698. },
  38699. [
  38700. {
  38701. name: "Shortest",
  38702. height: math.unit(70, "cm")
  38703. },
  38704. {
  38705. name: "Normal",
  38706. height: math.unit(1.7, "m")
  38707. },
  38708. {
  38709. name: "Macro",
  38710. height: math.unit(10, "m"),
  38711. default: true
  38712. },
  38713. {
  38714. name: "Tallest",
  38715. height: math.unit(200, "m")
  38716. },
  38717. ]
  38718. ))
  38719. characterMakers.push(() => makeCharacter(
  38720. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  38721. {
  38722. front: {
  38723. height: math.unit(5 + 7/12, "feet"),
  38724. weight: math.unit(2, "tons"),
  38725. name: "Front",
  38726. image: {
  38727. source: "./media/characters/erdno/front.svg",
  38728. extra: 1234/1129,
  38729. bottom: 35/1269
  38730. }
  38731. },
  38732. angled: {
  38733. height: math.unit(5 + 7/12, "feet"),
  38734. weight: math.unit(2, "tons"),
  38735. name: "Angled",
  38736. image: {
  38737. source: "./media/characters/erdno/angled.svg",
  38738. extra: 1185/1139,
  38739. bottom: 36/1221
  38740. }
  38741. },
  38742. side: {
  38743. height: math.unit(5 + 7/12, "feet"),
  38744. weight: math.unit(2, "tons"),
  38745. name: "Side",
  38746. image: {
  38747. source: "./media/characters/erdno/side.svg",
  38748. extra: 1191/1144,
  38749. bottom: 40/1231
  38750. }
  38751. },
  38752. back: {
  38753. height: math.unit(5 + 7/12, "feet"),
  38754. weight: math.unit(2, "tons"),
  38755. name: "Back",
  38756. image: {
  38757. source: "./media/characters/erdno/back.svg",
  38758. extra: 1202/1146,
  38759. bottom: 17/1219
  38760. }
  38761. },
  38762. frontNsfw: {
  38763. height: math.unit(5 + 7/12, "feet"),
  38764. weight: math.unit(2, "tons"),
  38765. name: "Front (NSFW)",
  38766. image: {
  38767. source: "./media/characters/erdno/front-nsfw.svg",
  38768. extra: 1234/1129,
  38769. bottom: 35/1269
  38770. }
  38771. },
  38772. angledNsfw: {
  38773. height: math.unit(5 + 7/12, "feet"),
  38774. weight: math.unit(2, "tons"),
  38775. name: "Angled (NSFW)",
  38776. image: {
  38777. source: "./media/characters/erdno/angled-nsfw.svg",
  38778. extra: 1185/1139,
  38779. bottom: 36/1221
  38780. }
  38781. },
  38782. sideNsfw: {
  38783. height: math.unit(5 + 7/12, "feet"),
  38784. weight: math.unit(2, "tons"),
  38785. name: "Side (NSFW)",
  38786. image: {
  38787. source: "./media/characters/erdno/side-nsfw.svg",
  38788. extra: 1191/1144,
  38789. bottom: 40/1231
  38790. }
  38791. },
  38792. backNsfw: {
  38793. height: math.unit(5 + 7/12, "feet"),
  38794. weight: math.unit(2, "tons"),
  38795. name: "Back (NSFW)",
  38796. image: {
  38797. source: "./media/characters/erdno/back-nsfw.svg",
  38798. extra: 1202/1146,
  38799. bottom: 17/1219
  38800. }
  38801. },
  38802. frontHyper: {
  38803. height: math.unit(5 + 7/12, "feet"),
  38804. weight: math.unit(2, "tons"),
  38805. name: "Front (Hyper)",
  38806. image: {
  38807. source: "./media/characters/erdno/front-hyper.svg",
  38808. extra: 1298/1136,
  38809. bottom: 35/1333
  38810. }
  38811. },
  38812. },
  38813. [
  38814. {
  38815. name: "Normal",
  38816. height: math.unit(5 + 7/12, "feet"),
  38817. default: true
  38818. },
  38819. {
  38820. name: "Big",
  38821. height: math.unit(5.7, "meters")
  38822. },
  38823. {
  38824. name: "Macro",
  38825. height: math.unit(5.7, "kilometers")
  38826. },
  38827. {
  38828. name: "Megamacro",
  38829. height: math.unit(5.7, "earths")
  38830. },
  38831. ]
  38832. ))
  38833. characterMakers.push(() => makeCharacter(
  38834. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  38835. {
  38836. front: {
  38837. height: math.unit(5 + 10/12, "feet"),
  38838. weight: math.unit(150, "lb"),
  38839. name: "Front",
  38840. image: {
  38841. source: "./media/characters/jamie/front.svg",
  38842. extra: 1908/1768,
  38843. bottom: 19/1927
  38844. }
  38845. },
  38846. },
  38847. [
  38848. {
  38849. name: "Minimum",
  38850. height: math.unit(2, "cm")
  38851. },
  38852. {
  38853. name: "Micro",
  38854. height: math.unit(3, "inches")
  38855. },
  38856. {
  38857. name: "Normal",
  38858. height: math.unit(5 + 10/12, "feet"),
  38859. default: true
  38860. },
  38861. {
  38862. name: "Macro",
  38863. height: math.unit(150, "feet")
  38864. },
  38865. {
  38866. name: "Megamacro",
  38867. height: math.unit(10000, "m")
  38868. },
  38869. ]
  38870. ))
  38871. characterMakers.push(() => makeCharacter(
  38872. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  38873. {
  38874. front: {
  38875. height: math.unit(2, "meters"),
  38876. weight: math.unit(100, "kg"),
  38877. name: "Front",
  38878. image: {
  38879. source: "./media/characters/shiron/front.svg",
  38880. extra: 2103/1985,
  38881. bottom: 98/2201
  38882. }
  38883. },
  38884. back: {
  38885. height: math.unit(2, "meters"),
  38886. weight: math.unit(100, "kg"),
  38887. name: "Back",
  38888. image: {
  38889. source: "./media/characters/shiron/back.svg",
  38890. extra: 2110/2015,
  38891. bottom: 89/2199
  38892. }
  38893. },
  38894. hand: {
  38895. height: math.unit(0.96, "feet"),
  38896. name: "Hand",
  38897. image: {
  38898. source: "./media/characters/shiron/hand.svg"
  38899. }
  38900. },
  38901. foot: {
  38902. height: math.unit(1.464, "feet"),
  38903. name: "Foot",
  38904. image: {
  38905. source: "./media/characters/shiron/foot.svg"
  38906. }
  38907. },
  38908. },
  38909. [
  38910. {
  38911. name: "Normal",
  38912. height: math.unit(2, "meters")
  38913. },
  38914. {
  38915. name: "Macro",
  38916. height: math.unit(500, "meters"),
  38917. default: true
  38918. },
  38919. {
  38920. name: "Megamacro",
  38921. height: math.unit(20, "km")
  38922. },
  38923. ]
  38924. ))
  38925. characterMakers.push(() => makeCharacter(
  38926. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  38927. {
  38928. front: {
  38929. height: math.unit(6, "feet"),
  38930. name: "Front",
  38931. image: {
  38932. source: "./media/characters/sam/front.svg",
  38933. extra: 849/826,
  38934. bottom: 19/868
  38935. }
  38936. },
  38937. },
  38938. [
  38939. {
  38940. name: "Normal",
  38941. height: math.unit(6, "feet"),
  38942. default: true
  38943. },
  38944. ]
  38945. ))
  38946. characterMakers.push(() => makeCharacter(
  38947. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  38948. {
  38949. front: {
  38950. height: math.unit(8 + 4/12, "feet"),
  38951. weight: math.unit(122, "kg"),
  38952. name: "Front",
  38953. image: {
  38954. source: "./media/characters/namori-kurogawa/front.svg",
  38955. extra: 1894/1576,
  38956. bottom: 34/1928
  38957. }
  38958. },
  38959. },
  38960. [
  38961. {
  38962. name: "Normal",
  38963. height: math.unit(8 + 4/12, "feet"),
  38964. default: true
  38965. },
  38966. ]
  38967. ))
  38968. characterMakers.push(() => makeCharacter(
  38969. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  38970. {
  38971. front: {
  38972. height: math.unit(9, "feet"),
  38973. weight: math.unit(621, "lb"),
  38974. name: "Front",
  38975. image: {
  38976. source: "./media/characters/unmru/front.svg",
  38977. extra: 1853/1747,
  38978. bottom: 73/1926
  38979. }
  38980. },
  38981. side: {
  38982. height: math.unit(9, "feet"),
  38983. weight: math.unit(621, "lb"),
  38984. name: "Side",
  38985. image: {
  38986. source: "./media/characters/unmru/side.svg",
  38987. extra: 1781/1671,
  38988. bottom: 127/1908
  38989. }
  38990. },
  38991. back: {
  38992. height: math.unit(9, "feet"),
  38993. weight: math.unit(621, "lb"),
  38994. name: "Back",
  38995. image: {
  38996. source: "./media/characters/unmru/back.svg",
  38997. extra: 1894/1765,
  38998. bottom: 75/1969
  38999. }
  39000. },
  39001. dick: {
  39002. height: math.unit(3, "feet"),
  39003. weight: math.unit(35, "lb"),
  39004. name: "Dick",
  39005. image: {
  39006. source: "./media/characters/unmru/dick.svg"
  39007. }
  39008. },
  39009. },
  39010. [
  39011. {
  39012. name: "Normal",
  39013. height: math.unit(9, "feet")
  39014. },
  39015. {
  39016. name: "Natural",
  39017. height: math.unit(27, "feet"),
  39018. default: true
  39019. },
  39020. {
  39021. name: "Giant",
  39022. height: math.unit(90, "feet")
  39023. },
  39024. {
  39025. name: "Kaiju",
  39026. height: math.unit(270, "feet")
  39027. },
  39028. {
  39029. name: "Macro",
  39030. height: math.unit(900, "feet")
  39031. },
  39032. {
  39033. name: "Macro+",
  39034. height: math.unit(2700, "feet")
  39035. },
  39036. {
  39037. name: "Megamacro",
  39038. height: math.unit(9000, "feet")
  39039. },
  39040. {
  39041. name: "City-Crushing",
  39042. height: math.unit(27000, "feet")
  39043. },
  39044. {
  39045. name: "Mountain-Mashing",
  39046. height: math.unit(90000, "feet")
  39047. },
  39048. {
  39049. name: "Earth-Eclipsing",
  39050. height: math.unit(2.7e8, "feet")
  39051. },
  39052. {
  39053. name: "Sol-Swallowing",
  39054. height: math.unit(9e10, "feet")
  39055. },
  39056. {
  39057. name: "Majoris-Munching",
  39058. height: math.unit(2.7e13, "feet")
  39059. },
  39060. ]
  39061. ))
  39062. characterMakers.push(() => makeCharacter(
  39063. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  39064. {
  39065. front: {
  39066. height: math.unit(1, "inch"),
  39067. name: "Front",
  39068. image: {
  39069. source: "./media/characters/squeaks-mouse/front.svg",
  39070. extra: 352/308,
  39071. bottom: 25/377
  39072. }
  39073. },
  39074. },
  39075. [
  39076. {
  39077. name: "Micro",
  39078. height: math.unit(1, "inch"),
  39079. default: true
  39080. },
  39081. ]
  39082. ))
  39083. characterMakers.push(() => makeCharacter(
  39084. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  39085. {
  39086. side: {
  39087. height: math.unit(35, "feet"),
  39088. name: "Side",
  39089. image: {
  39090. source: "./media/characters/sayko/side.svg",
  39091. extra: 1697/1021,
  39092. bottom: 82/1779
  39093. }
  39094. },
  39095. head: {
  39096. height: math.unit(16, "feet"),
  39097. name: "Head",
  39098. image: {
  39099. source: "./media/characters/sayko/head.svg"
  39100. }
  39101. },
  39102. forepaw: {
  39103. height: math.unit(7.85, "feet"),
  39104. name: "Forepaw",
  39105. image: {
  39106. source: "./media/characters/sayko/forepaw.svg"
  39107. }
  39108. },
  39109. hindpaw: {
  39110. height: math.unit(8.8, "feet"),
  39111. name: "Hindpaw",
  39112. image: {
  39113. source: "./media/characters/sayko/hindpaw.svg"
  39114. }
  39115. },
  39116. },
  39117. [
  39118. {
  39119. name: "Normal",
  39120. height: math.unit(35, "feet"),
  39121. default: true
  39122. },
  39123. {
  39124. name: "Colossus",
  39125. height: math.unit(100, "meters")
  39126. },
  39127. {
  39128. name: "\"Small\" Deity",
  39129. height: math.unit(1, "km")
  39130. },
  39131. {
  39132. name: "\"Large\" Deity",
  39133. height: math.unit(15, "km")
  39134. },
  39135. ]
  39136. ))
  39137. characterMakers.push(() => makeCharacter(
  39138. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  39139. {
  39140. front: {
  39141. height: math.unit(6, "feet"),
  39142. weight: math.unit(250, "lb"),
  39143. name: "Front",
  39144. image: {
  39145. source: "./media/characters/mukiro/front.svg",
  39146. extra: 1368/1310,
  39147. bottom: 34/1402
  39148. }
  39149. },
  39150. },
  39151. [
  39152. {
  39153. name: "Normal",
  39154. height: math.unit(6, "feet"),
  39155. default: true
  39156. },
  39157. ]
  39158. ))
  39159. characterMakers.push(() => makeCharacter(
  39160. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  39161. {
  39162. front: {
  39163. height: math.unit(12 + 4/12, "feet"),
  39164. name: "Front",
  39165. image: {
  39166. source: "./media/characters/zeph-the-tiger-god/front.svg",
  39167. extra: 1346/1311,
  39168. bottom: 65/1411
  39169. }
  39170. },
  39171. },
  39172. [
  39173. {
  39174. name: "Base",
  39175. height: math.unit(12 + 4/12, "feet"),
  39176. default: true
  39177. },
  39178. {
  39179. name: "Macro",
  39180. height: math.unit(150, "feet")
  39181. },
  39182. {
  39183. name: "Mega",
  39184. height: math.unit(2, "miles")
  39185. },
  39186. {
  39187. name: "Demi God",
  39188. height: math.unit(4, "AU")
  39189. },
  39190. {
  39191. name: "God Size",
  39192. height: math.unit(1, "universe")
  39193. },
  39194. ]
  39195. ))
  39196. characterMakers.push(() => makeCharacter(
  39197. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  39198. {
  39199. front: {
  39200. height: math.unit(3 + 3/12, "feet"),
  39201. weight: math.unit(88, "lb"),
  39202. name: "Front",
  39203. image: {
  39204. source: "./media/characters/trey/front.svg",
  39205. extra: 1815/1509,
  39206. bottom: 60/1875
  39207. }
  39208. },
  39209. },
  39210. [
  39211. {
  39212. name: "Normal",
  39213. height: math.unit(3 + 3/12, "feet"),
  39214. default: true
  39215. },
  39216. ]
  39217. ))
  39218. characterMakers.push(() => makeCharacter(
  39219. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  39220. {
  39221. front: {
  39222. height: math.unit(4, "meters"),
  39223. name: "Front",
  39224. image: {
  39225. source: "./media/characters/adelonda/front.svg",
  39226. extra: 1077/982,
  39227. bottom: 39/1116
  39228. }
  39229. },
  39230. back: {
  39231. height: math.unit(4, "meters"),
  39232. name: "Back",
  39233. image: {
  39234. source: "./media/characters/adelonda/back.svg",
  39235. extra: 1105/1003,
  39236. bottom: 25/1130
  39237. }
  39238. },
  39239. feral: {
  39240. height: math.unit(40/1.5, "meters"),
  39241. name: "Feral",
  39242. image: {
  39243. source: "./media/characters/adelonda/feral.svg",
  39244. extra: 597/271,
  39245. bottom: 387/984
  39246. }
  39247. },
  39248. },
  39249. [
  39250. {
  39251. name: "Normal",
  39252. height: math.unit(4, "meters"),
  39253. default: true
  39254. },
  39255. ]
  39256. ))
  39257. characterMakers.push(() => makeCharacter(
  39258. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  39259. {
  39260. front: {
  39261. height: math.unit(8 + 4/12, "feet"),
  39262. weight: math.unit(670, "lb"),
  39263. name: "Front",
  39264. image: {
  39265. source: "./media/characters/acadiel/front.svg",
  39266. extra: 1901/1595,
  39267. bottom: 142/2043
  39268. }
  39269. },
  39270. },
  39271. [
  39272. {
  39273. name: "Normal",
  39274. height: math.unit(8 + 4/12, "feet"),
  39275. default: true
  39276. },
  39277. {
  39278. name: "Macro",
  39279. height: math.unit(200, "feet")
  39280. },
  39281. ]
  39282. ))
  39283. characterMakers.push(() => makeCharacter(
  39284. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  39285. {
  39286. front: {
  39287. height: math.unit(6 + 2/12, "feet"),
  39288. weight: math.unit(185, "lb"),
  39289. name: "Front",
  39290. image: {
  39291. source: "./media/characters/kayne-ein/front.svg",
  39292. extra: 1780/1560,
  39293. bottom: 81/1861
  39294. }
  39295. },
  39296. },
  39297. [
  39298. {
  39299. name: "Normal",
  39300. height: math.unit(6 + 2/12, "feet"),
  39301. default: true
  39302. },
  39303. {
  39304. name: "Transformation Stage",
  39305. height: math.unit(15, "feet")
  39306. },
  39307. {
  39308. name: "Macro",
  39309. height: math.unit(150, "feet")
  39310. },
  39311. {
  39312. name: "Earth's Shadow",
  39313. height: math.unit(6200, "miles")
  39314. },
  39315. {
  39316. name: "Universal Demon",
  39317. height: math.unit(28e9, "parsecs")
  39318. },
  39319. {
  39320. name: "Multiverse God",
  39321. height: math.unit(3, "multiverses")
  39322. },
  39323. ]
  39324. ))
  39325. characterMakers.push(() => makeCharacter(
  39326. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  39327. {
  39328. front: {
  39329. height: math.unit(5 + 5/12, "feet"),
  39330. name: "Front",
  39331. image: {
  39332. source: "./media/characters/fawn/front.svg",
  39333. extra: 1873/1731,
  39334. bottom: 95/1968
  39335. }
  39336. },
  39337. back: {
  39338. height: math.unit(5 + 5/12, "feet"),
  39339. name: "Back",
  39340. image: {
  39341. source: "./media/characters/fawn/back.svg",
  39342. extra: 1813/1700,
  39343. bottom: 14/1827
  39344. }
  39345. },
  39346. hoof: {
  39347. height: math.unit(1.45, "feet"),
  39348. name: "Hoof",
  39349. image: {
  39350. source: "./media/characters/fawn/hoof.svg"
  39351. }
  39352. },
  39353. },
  39354. [
  39355. {
  39356. name: "Normal",
  39357. height: math.unit(5 + 5/12, "feet"),
  39358. default: true
  39359. },
  39360. ]
  39361. ))
  39362. characterMakers.push(() => makeCharacter(
  39363. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  39364. {
  39365. front: {
  39366. height: math.unit(2 + 5/12, "feet"),
  39367. name: "Front",
  39368. image: {
  39369. source: "./media/characters/orion/front.svg",
  39370. extra: 1366/1304,
  39371. bottom: 43/1409
  39372. }
  39373. },
  39374. paw: {
  39375. height: math.unit(0.52, "feet"),
  39376. name: "Paw",
  39377. image: {
  39378. source: "./media/characters/orion/paw.svg"
  39379. }
  39380. },
  39381. },
  39382. [
  39383. {
  39384. name: "Normal",
  39385. height: math.unit(2 + 5/12, "feet"),
  39386. default: true
  39387. },
  39388. ]
  39389. ))
  39390. characterMakers.push(() => makeCharacter(
  39391. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  39392. {
  39393. front: {
  39394. height: math.unit(5 + 10/12, "feet"),
  39395. name: "Front",
  39396. image: {
  39397. source: "./media/characters/vera/front.svg",
  39398. extra: 1680/1575,
  39399. bottom: 49/1729
  39400. }
  39401. },
  39402. back: {
  39403. height: math.unit(5 + 10/12, "feet"),
  39404. name: "Back",
  39405. image: {
  39406. source: "./media/characters/vera/back.svg",
  39407. extra: 1700/1588,
  39408. bottom: 18/1718
  39409. }
  39410. },
  39411. arcanine: {
  39412. height: math.unit(6 + 8/12, "feet"),
  39413. name: "Arcanine",
  39414. image: {
  39415. source: "./media/characters/vera/arcanine.svg",
  39416. extra: 1590/1511,
  39417. bottom: 71/1661
  39418. }
  39419. },
  39420. maw: {
  39421. height: math.unit(0.82, "feet"),
  39422. name: "Maw",
  39423. image: {
  39424. source: "./media/characters/vera/maw.svg"
  39425. }
  39426. },
  39427. mawArcanine: {
  39428. height: math.unit(0.97, "feet"),
  39429. name: "Maw (Arcanine)",
  39430. image: {
  39431. source: "./media/characters/vera/maw-arcanine.svg"
  39432. }
  39433. },
  39434. paw: {
  39435. height: math.unit(0.75, "feet"),
  39436. name: "Paw",
  39437. image: {
  39438. source: "./media/characters/vera/paw.svg"
  39439. }
  39440. },
  39441. pawprint: {
  39442. height: math.unit(0.52, "feet"),
  39443. name: "Pawprint",
  39444. image: {
  39445. source: "./media/characters/vera/pawprint.svg"
  39446. }
  39447. },
  39448. },
  39449. [
  39450. {
  39451. name: "Normal",
  39452. height: math.unit(5 + 10/12, "feet"),
  39453. default: true
  39454. },
  39455. {
  39456. name: "Macro",
  39457. height: math.unit(75, "feet")
  39458. },
  39459. ]
  39460. ))
  39461. characterMakers.push(() => makeCharacter(
  39462. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  39463. {
  39464. front: {
  39465. height: math.unit(4, "feet"),
  39466. weight: math.unit(40, "lb"),
  39467. name: "Front",
  39468. image: {
  39469. source: "./media/characters/orvan-rabbit/front.svg",
  39470. extra: 1896/1642,
  39471. bottom: 29/1925
  39472. }
  39473. },
  39474. },
  39475. [
  39476. {
  39477. name: "Normal",
  39478. height: math.unit(4, "feet"),
  39479. default: true
  39480. },
  39481. ]
  39482. ))
  39483. characterMakers.push(() => makeCharacter(
  39484. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  39485. {
  39486. front: {
  39487. height: math.unit(6, "feet"),
  39488. weight: math.unit(168, "lb"),
  39489. name: "Front",
  39490. image: {
  39491. source: "./media/characters/lisa/front.svg",
  39492. extra: 2065/1867,
  39493. bottom: 46/2111
  39494. }
  39495. },
  39496. back: {
  39497. height: math.unit(6, "feet"),
  39498. weight: math.unit(168, "lb"),
  39499. name: "Back",
  39500. image: {
  39501. source: "./media/characters/lisa/back.svg",
  39502. extra: 1982/1838,
  39503. bottom: 29/2011
  39504. }
  39505. },
  39506. maw: {
  39507. height: math.unit(0.81, "feet"),
  39508. name: "Maw",
  39509. image: {
  39510. source: "./media/characters/lisa/maw.svg"
  39511. }
  39512. },
  39513. paw: {
  39514. height: math.unit(0.9, "feet"),
  39515. name: "Paw",
  39516. image: {
  39517. source: "./media/characters/lisa/paw.svg"
  39518. }
  39519. },
  39520. caribousune: {
  39521. height: math.unit(7 + 2/12, "feet"),
  39522. weight: math.unit(268, "lb"),
  39523. name: "Caribousune",
  39524. image: {
  39525. source: "./media/characters/lisa/caribousune.svg",
  39526. extra: 1843/1633,
  39527. bottom: 29/1872
  39528. }
  39529. },
  39530. frontCaribousune: {
  39531. height: math.unit(7 + 2/12, "feet"),
  39532. weight: math.unit(268, "lb"),
  39533. name: "Front (Caribousune)",
  39534. image: {
  39535. source: "./media/characters/lisa/front-caribousune.svg",
  39536. extra: 1818/1638,
  39537. bottom: 52/1870
  39538. }
  39539. },
  39540. sideCaribousune: {
  39541. height: math.unit(7 + 2/12, "feet"),
  39542. weight: math.unit(268, "lb"),
  39543. name: "Side (Caribousune)",
  39544. image: {
  39545. source: "./media/characters/lisa/side-caribousune.svg",
  39546. extra: 1851/1635,
  39547. bottom: 16/1867
  39548. }
  39549. },
  39550. backCaribousune: {
  39551. height: math.unit(7 + 2/12, "feet"),
  39552. weight: math.unit(268, "lb"),
  39553. name: "Back (Caribousune)",
  39554. image: {
  39555. source: "./media/characters/lisa/back-caribousune.svg",
  39556. extra: 1801/1604,
  39557. bottom: 44/1845
  39558. }
  39559. },
  39560. caribou: {
  39561. height: math.unit(7 + 2/12, "feet"),
  39562. weight: math.unit(268, "lb"),
  39563. name: "Caribou",
  39564. image: {
  39565. source: "./media/characters/lisa/caribou.svg",
  39566. extra: 1843/1633,
  39567. bottom: 29/1872
  39568. }
  39569. },
  39570. frontCaribou: {
  39571. height: math.unit(7 + 2/12, "feet"),
  39572. weight: math.unit(268, "lb"),
  39573. name: "Front (Caribou)",
  39574. image: {
  39575. source: "./media/characters/lisa/front-caribou.svg",
  39576. extra: 1818/1638,
  39577. bottom: 52/1870
  39578. }
  39579. },
  39580. sideCaribou: {
  39581. height: math.unit(7 + 2/12, "feet"),
  39582. weight: math.unit(268, "lb"),
  39583. name: "Side (Caribou)",
  39584. image: {
  39585. source: "./media/characters/lisa/side-caribou.svg",
  39586. extra: 1851/1635,
  39587. bottom: 16/1867
  39588. }
  39589. },
  39590. backCaribou: {
  39591. height: math.unit(7 + 2/12, "feet"),
  39592. weight: math.unit(268, "lb"),
  39593. name: "Back (Caribou)",
  39594. image: {
  39595. source: "./media/characters/lisa/back-caribou.svg",
  39596. extra: 1801/1604,
  39597. bottom: 44/1845
  39598. }
  39599. },
  39600. mawCaribou: {
  39601. height: math.unit(1.45, "feet"),
  39602. name: "Maw (Caribou)",
  39603. image: {
  39604. source: "./media/characters/lisa/maw-caribou.svg"
  39605. }
  39606. },
  39607. mawCaribousune: {
  39608. height: math.unit(1.45, "feet"),
  39609. name: "Maw (Caribousune)",
  39610. image: {
  39611. source: "./media/characters/lisa/maw-caribousune.svg"
  39612. }
  39613. },
  39614. pawCaribousune: {
  39615. height: math.unit(1.61, "feet"),
  39616. name: "Paw (Caribou)",
  39617. image: {
  39618. source: "./media/characters/lisa/paw-caribousune.svg"
  39619. }
  39620. },
  39621. },
  39622. [
  39623. {
  39624. name: "Normal",
  39625. height: math.unit(6, "feet")
  39626. },
  39627. {
  39628. name: "God Size",
  39629. height: math.unit(72, "feet"),
  39630. default: true
  39631. },
  39632. {
  39633. name: "Towering",
  39634. height: math.unit(288, "feet")
  39635. },
  39636. {
  39637. name: "City Size",
  39638. height: math.unit(48384, "feet")
  39639. },
  39640. {
  39641. name: "Continental",
  39642. height: math.unit(4200, "miles")
  39643. },
  39644. {
  39645. name: "Planet Eater",
  39646. height: math.unit(42, "earths")
  39647. },
  39648. {
  39649. name: "Star Swallower",
  39650. height: math.unit(42, "solarradii")
  39651. },
  39652. {
  39653. name: "System Swallower",
  39654. height: math.unit(84000, "AU")
  39655. },
  39656. {
  39657. name: "Galaxy Gobbler",
  39658. height: math.unit(42, "galaxies")
  39659. },
  39660. {
  39661. name: "Universe Devourer",
  39662. height: math.unit(42, "universes")
  39663. },
  39664. {
  39665. name: "Multiverse Muncher",
  39666. height: math.unit(42, "multiverses")
  39667. },
  39668. ]
  39669. ))
  39670. characterMakers.push(() => makeCharacter(
  39671. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  39672. {
  39673. front: {
  39674. height: math.unit(36, "feet"),
  39675. name: "Front",
  39676. image: {
  39677. source: "./media/characters/shadow-rat/front.svg",
  39678. extra: 1845/1758,
  39679. bottom: 83/1928
  39680. }
  39681. },
  39682. },
  39683. [
  39684. {
  39685. name: "Macro",
  39686. height: math.unit(36, "feet"),
  39687. default: true
  39688. },
  39689. ]
  39690. ))
  39691. characterMakers.push(() => makeCharacter(
  39692. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  39693. {
  39694. side: {
  39695. height: math.unit(8, "feet"),
  39696. weight: math.unit(2630, "lb"),
  39697. name: "Side",
  39698. image: {
  39699. source: "./media/characters/torallia/side.svg",
  39700. extra: 2164/2021,
  39701. bottom: 371/2535
  39702. }
  39703. },
  39704. },
  39705. [
  39706. {
  39707. name: "Mortal Interaction",
  39708. height: math.unit(8, "feet")
  39709. },
  39710. {
  39711. name: "Natural",
  39712. height: math.unit(24, "feet"),
  39713. default: true
  39714. },
  39715. {
  39716. name: "Giant",
  39717. height: math.unit(80, "feet")
  39718. },
  39719. {
  39720. name: "Kaiju",
  39721. height: math.unit(240, "feet")
  39722. },
  39723. {
  39724. name: "Macro",
  39725. height: math.unit(800, "feet")
  39726. },
  39727. {
  39728. name: "Macro+",
  39729. height: math.unit(2400, "feet")
  39730. },
  39731. {
  39732. name: "Macro++",
  39733. height: math.unit(8000, "feet")
  39734. },
  39735. {
  39736. name: "City-Crushing",
  39737. height: math.unit(24000, "feet")
  39738. },
  39739. {
  39740. name: "Mountain-Mashing",
  39741. height: math.unit(80000, "feet")
  39742. },
  39743. {
  39744. name: "District Demolisher",
  39745. height: math.unit(240000, "feet")
  39746. },
  39747. {
  39748. name: "Tri-County Terror",
  39749. height: math.unit(800000, "feet")
  39750. },
  39751. {
  39752. name: "State Smasher",
  39753. height: math.unit(2.4e6, "feet")
  39754. },
  39755. {
  39756. name: "Nation Nemesis",
  39757. height: math.unit(8e6, "feet")
  39758. },
  39759. {
  39760. name: "Continent Cracker",
  39761. height: math.unit(2.4e7, "feet")
  39762. },
  39763. {
  39764. name: "Planet-Pillaging",
  39765. height: math.unit(8e7, "feet")
  39766. },
  39767. {
  39768. name: "Earth-Eclipsing",
  39769. height: math.unit(2.4e8, "feet")
  39770. },
  39771. {
  39772. name: "Jovian-Jostling",
  39773. height: math.unit(8e8, "feet")
  39774. },
  39775. {
  39776. name: "Gas Giant Gulper",
  39777. height: math.unit(2.4e9, "feet")
  39778. },
  39779. {
  39780. name: "Astral Annihilator",
  39781. height: math.unit(8e9, "feet")
  39782. },
  39783. {
  39784. name: "Celestial Conqueror",
  39785. height: math.unit(2.4e10, "feet")
  39786. },
  39787. {
  39788. name: "Sol-Swallowing",
  39789. height: math.unit(8e10, "feet")
  39790. },
  39791. {
  39792. name: "Hunter of the Heavens",
  39793. height: math.unit(2.4e13, "feet")
  39794. },
  39795. ]
  39796. ))
  39797. characterMakers.push(() => makeCharacter(
  39798. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  39799. {
  39800. front: {
  39801. height: math.unit(6 + 8/12, "feet"),
  39802. weight: math.unit(250, "kilograms"),
  39803. volume: math.unit(28, "liters"),
  39804. name: "Front",
  39805. image: {
  39806. source: "./media/characters/rebecca-pawlson/front.svg",
  39807. extra: 1737/1596,
  39808. bottom: 107/1844
  39809. }
  39810. },
  39811. back: {
  39812. height: math.unit(6 + 8/12, "feet"),
  39813. weight: math.unit(250, "kilograms"),
  39814. volume: math.unit(28, "liters"),
  39815. name: "Back",
  39816. image: {
  39817. source: "./media/characters/rebecca-pawlson/back.svg",
  39818. extra: 1702/1523,
  39819. bottom: 86/1788
  39820. }
  39821. },
  39822. },
  39823. [
  39824. {
  39825. name: "Normal",
  39826. height: math.unit(6 + 8/12, "feet")
  39827. },
  39828. {
  39829. name: "Mini Macro",
  39830. height: math.unit(10, "feet"),
  39831. default: true
  39832. },
  39833. {
  39834. name: "Macro",
  39835. height: math.unit(100, "feet")
  39836. },
  39837. {
  39838. name: "Mega Macro",
  39839. height: math.unit(2500, "feet")
  39840. },
  39841. {
  39842. name: "Giga Macro",
  39843. height: math.unit(50, "miles")
  39844. },
  39845. ]
  39846. ))
  39847. characterMakers.push(() => makeCharacter(
  39848. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  39849. {
  39850. front: {
  39851. height: math.unit(7 + 6/12, "feet"),
  39852. weight: math.unit(600, "lb"),
  39853. name: "Front",
  39854. image: {
  39855. source: "./media/characters/moxie-nova/front.svg",
  39856. extra: 1734/1652,
  39857. bottom: 41/1775
  39858. }
  39859. },
  39860. },
  39861. [
  39862. {
  39863. name: "Normal",
  39864. height: math.unit(7 + 6/12, "feet"),
  39865. default: true
  39866. },
  39867. ]
  39868. ))
  39869. characterMakers.push(() => makeCharacter(
  39870. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  39871. {
  39872. goat: {
  39873. height: math.unit(4, "feet"),
  39874. weight: math.unit(180, "lb"),
  39875. name: "Goat",
  39876. image: {
  39877. source: "./media/characters/tiffany/goat.svg",
  39878. extra: 1845/1595,
  39879. bottom: 106/1951
  39880. }
  39881. },
  39882. front: {
  39883. height: math.unit(5, "feet"),
  39884. weight: math.unit(150, "lb"),
  39885. name: "Foxcoon",
  39886. image: {
  39887. source: "./media/characters/tiffany/foxcoon.svg",
  39888. extra: 1941/1845,
  39889. bottom: 58/1999
  39890. }
  39891. },
  39892. },
  39893. [
  39894. {
  39895. name: "Normal",
  39896. height: math.unit(5, "feet"),
  39897. default: true
  39898. },
  39899. ]
  39900. ))
  39901. characterMakers.push(() => makeCharacter(
  39902. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  39903. {
  39904. front: {
  39905. height: math.unit(8, "feet"),
  39906. weight: math.unit(300, "lb"),
  39907. name: "Front",
  39908. image: {
  39909. source: "./media/characters/raxinath/front.svg",
  39910. extra: 1407/1309,
  39911. bottom: 39/1446
  39912. }
  39913. },
  39914. back: {
  39915. height: math.unit(8, "feet"),
  39916. weight: math.unit(300, "lb"),
  39917. name: "Back",
  39918. image: {
  39919. source: "./media/characters/raxinath/back.svg",
  39920. extra: 1405/1315,
  39921. bottom: 9/1414
  39922. }
  39923. },
  39924. },
  39925. [
  39926. {
  39927. name: "Speck",
  39928. height: math.unit(0.5, "nm")
  39929. },
  39930. {
  39931. name: "Micro",
  39932. height: math.unit(3, "inches")
  39933. },
  39934. {
  39935. name: "Kobold",
  39936. height: math.unit(3, "feet")
  39937. },
  39938. {
  39939. name: "Normal",
  39940. height: math.unit(8, "feet"),
  39941. default: true
  39942. },
  39943. {
  39944. name: "Giant",
  39945. height: math.unit(50, "feet")
  39946. },
  39947. {
  39948. name: "Macro",
  39949. height: math.unit(1000, "feet")
  39950. },
  39951. {
  39952. name: "Megamacro",
  39953. height: math.unit(1, "mile")
  39954. },
  39955. ]
  39956. ))
  39957. characterMakers.push(() => makeCharacter(
  39958. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  39959. {
  39960. front: {
  39961. height: math.unit(10, "feet"),
  39962. weight: math.unit(1442, "lb"),
  39963. name: "Front",
  39964. image: {
  39965. source: "./media/characters/mal-dragon/front.svg",
  39966. extra: 1515/1444,
  39967. bottom: 113/1628
  39968. }
  39969. },
  39970. back: {
  39971. height: math.unit(10, "feet"),
  39972. weight: math.unit(1442, "lb"),
  39973. name: "Back",
  39974. image: {
  39975. source: "./media/characters/mal-dragon/back.svg",
  39976. extra: 1527/1434,
  39977. bottom: 25/1552
  39978. }
  39979. },
  39980. },
  39981. [
  39982. {
  39983. name: "Mortal Interaction",
  39984. height: math.unit(10, "feet"),
  39985. default: true
  39986. },
  39987. {
  39988. name: "Large",
  39989. height: math.unit(30, "feet")
  39990. },
  39991. {
  39992. name: "Kaiju",
  39993. height: math.unit(300, "feet")
  39994. },
  39995. {
  39996. name: "Megamacro",
  39997. height: math.unit(10000, "feet")
  39998. },
  39999. {
  40000. name: "Continent Cracker",
  40001. height: math.unit(30000000, "feet")
  40002. },
  40003. {
  40004. name: "Sol-Swallowing",
  40005. height: math.unit(1e11, "feet")
  40006. },
  40007. {
  40008. name: "Light Universal",
  40009. height: math.unit(5, "universes")
  40010. },
  40011. {
  40012. name: "Universe Atoms",
  40013. height: math.unit(1.829e9, "universes")
  40014. },
  40015. {
  40016. name: "Light Multiversal",
  40017. height: math.unit(5, "multiverses")
  40018. },
  40019. {
  40020. name: "Multiverse Atoms",
  40021. height: math.unit(1.829e9, "multiverses")
  40022. },
  40023. {
  40024. name: "Fabric of Time",
  40025. height: math.unit(1e262, "multiverses")
  40026. },
  40027. ]
  40028. ))
  40029. characterMakers.push(() => makeCharacter(
  40030. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  40031. {
  40032. front: {
  40033. height: math.unit(9, "feet"),
  40034. weight: math.unit(1050, "lb"),
  40035. name: "Front",
  40036. image: {
  40037. source: "./media/characters/tabitha/front.svg",
  40038. extra: 2083/1994,
  40039. bottom: 68/2151
  40040. }
  40041. },
  40042. },
  40043. [
  40044. {
  40045. name: "Baseline",
  40046. height: math.unit(9, "feet"),
  40047. default: true
  40048. },
  40049. {
  40050. name: "Giant",
  40051. height: math.unit(90, "feet")
  40052. },
  40053. {
  40054. name: "Macro",
  40055. height: math.unit(900, "feet")
  40056. },
  40057. {
  40058. name: "Megamacro",
  40059. height: math.unit(9000, "feet")
  40060. },
  40061. {
  40062. name: "City-Crushing",
  40063. height: math.unit(27000, "feet")
  40064. },
  40065. {
  40066. name: "Mountain-Mashing",
  40067. height: math.unit(90000, "feet")
  40068. },
  40069. {
  40070. name: "Nation Nemesis",
  40071. height: math.unit(9e6, "feet")
  40072. },
  40073. {
  40074. name: "Continent Cracker",
  40075. height: math.unit(27e6, "feet")
  40076. },
  40077. {
  40078. name: "Earth-Eclipsing",
  40079. height: math.unit(2.7e8, "feet")
  40080. },
  40081. {
  40082. name: "Gas Giant Gulper",
  40083. height: math.unit(2.7e9, "feet")
  40084. },
  40085. {
  40086. name: "Sol-Swallowing",
  40087. height: math.unit(9e10, "feet")
  40088. },
  40089. {
  40090. name: "Galaxy Gulper",
  40091. height: math.unit(9, "galaxies")
  40092. },
  40093. {
  40094. name: "Cosmos Churner",
  40095. height: math.unit(9, "universes")
  40096. },
  40097. ]
  40098. ))
  40099. characterMakers.push(() => makeCharacter(
  40100. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  40101. {
  40102. front: {
  40103. height: math.unit(160, "cm"),
  40104. weight: math.unit(55, "kg"),
  40105. name: "Front",
  40106. image: {
  40107. source: "./media/characters/tow/front.svg",
  40108. extra: 1751/1722,
  40109. bottom: 74/1825
  40110. }
  40111. },
  40112. },
  40113. [
  40114. {
  40115. name: "Norm",
  40116. height: math.unit(160, "cm")
  40117. },
  40118. {
  40119. name: "Casual",
  40120. height: math.unit(3200, "m"),
  40121. default: true
  40122. },
  40123. {
  40124. name: "Show-Off",
  40125. height: math.unit(160, "km")
  40126. },
  40127. ]
  40128. ))
  40129. characterMakers.push(() => makeCharacter(
  40130. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  40131. {
  40132. front: {
  40133. height: math.unit(7 + 11/12, "feet"),
  40134. weight: math.unit(342.8, "lb"),
  40135. name: "Front",
  40136. image: {
  40137. source: "./media/characters/vivian-orca-dragon/front.svg",
  40138. extra: 1890/1865,
  40139. bottom: 28/1918
  40140. }
  40141. },
  40142. },
  40143. [
  40144. {
  40145. name: "Micro",
  40146. height: math.unit(5, "inches")
  40147. },
  40148. {
  40149. name: "Normal",
  40150. height: math.unit(7 + 11/12, "feet"),
  40151. default: true
  40152. },
  40153. {
  40154. name: "Macro",
  40155. height: math.unit(395 + 7/12, "feet")
  40156. },
  40157. ]
  40158. ))
  40159. characterMakers.push(() => makeCharacter(
  40160. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  40161. {
  40162. side: {
  40163. height: math.unit(10, "feet"),
  40164. weight: math.unit(1442, "lb"),
  40165. name: "Side",
  40166. image: {
  40167. source: "./media/characters/lotherakon/side.svg",
  40168. extra: 1604/1497,
  40169. bottom: 89/1693
  40170. }
  40171. },
  40172. },
  40173. [
  40174. {
  40175. name: "Mortal Interaction",
  40176. height: math.unit(10, "feet")
  40177. },
  40178. {
  40179. name: "Large",
  40180. height: math.unit(30, "feet"),
  40181. default: true
  40182. },
  40183. {
  40184. name: "Giant",
  40185. height: math.unit(100, "feet")
  40186. },
  40187. {
  40188. name: "Kaiju",
  40189. height: math.unit(300, "feet")
  40190. },
  40191. {
  40192. name: "Macro",
  40193. height: math.unit(1000, "feet")
  40194. },
  40195. {
  40196. name: "Macro+",
  40197. height: math.unit(3000, "feet")
  40198. },
  40199. {
  40200. name: "Megamacro",
  40201. height: math.unit(10000, "feet")
  40202. },
  40203. {
  40204. name: "City-Crushing",
  40205. height: math.unit(30000, "feet")
  40206. },
  40207. {
  40208. name: "Continent Cracker",
  40209. height: math.unit(30e6, "feet")
  40210. },
  40211. {
  40212. name: "Earth Eclipsing",
  40213. height: math.unit(3e8, "feet")
  40214. },
  40215. {
  40216. name: "Gas Giant Gulper",
  40217. height: math.unit(3e9, "feet")
  40218. },
  40219. {
  40220. name: "Sol-Swallowing",
  40221. height: math.unit(1e11, "feet")
  40222. },
  40223. {
  40224. name: "System Swallower",
  40225. height: math.unit(3e14, "feet")
  40226. },
  40227. {
  40228. name: "Galaxy Gulper",
  40229. height: math.unit(10, "galaxies")
  40230. },
  40231. {
  40232. name: "Light Universal",
  40233. height: math.unit(5, "universes")
  40234. },
  40235. {
  40236. name: "Universe Palm",
  40237. height: math.unit(20, "universes")
  40238. },
  40239. {
  40240. name: "Light Multiversal",
  40241. height: math.unit(5, "multiverses")
  40242. },
  40243. {
  40244. name: "Multiverse Palm",
  40245. height: math.unit(20, "multiverses")
  40246. },
  40247. {
  40248. name: "Inferno Incarnate",
  40249. height: math.unit(1e7, "multiverses")
  40250. },
  40251. ]
  40252. ))
  40253. characterMakers.push(() => makeCharacter(
  40254. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  40255. {
  40256. front: {
  40257. height: math.unit(8, "feet"),
  40258. weight: math.unit(1200, "lb"),
  40259. name: "Front",
  40260. image: {
  40261. source: "./media/characters/malithee/front.svg",
  40262. extra: 1675/1640,
  40263. bottom: 162/1837
  40264. }
  40265. },
  40266. },
  40267. [
  40268. {
  40269. name: "Mortal Interaction",
  40270. height: math.unit(8, "feet"),
  40271. default: true
  40272. },
  40273. {
  40274. name: "Large",
  40275. height: math.unit(24, "feet")
  40276. },
  40277. {
  40278. name: "Kaiju",
  40279. height: math.unit(240, "feet")
  40280. },
  40281. {
  40282. name: "Megamacro",
  40283. height: math.unit(8000, "feet")
  40284. },
  40285. {
  40286. name: "Continent Cracker",
  40287. height: math.unit(24e6, "feet")
  40288. },
  40289. {
  40290. name: "Earth-Eclipsing",
  40291. height: math.unit(2.4e8, "feet")
  40292. },
  40293. {
  40294. name: "Sol-Swallowing",
  40295. height: math.unit(8e10, "feet")
  40296. },
  40297. {
  40298. name: "Galaxy Gulper",
  40299. height: math.unit(8, "galaxies")
  40300. },
  40301. {
  40302. name: "Light Universal",
  40303. height: math.unit(4, "universes")
  40304. },
  40305. {
  40306. name: "Universe Atoms",
  40307. height: math.unit(1.829e9, "universes")
  40308. },
  40309. {
  40310. name: "Light Multiversal",
  40311. height: math.unit(4, "multiverses")
  40312. },
  40313. {
  40314. name: "Multiverse Atoms",
  40315. height: math.unit(1.829e9, "multiverses")
  40316. },
  40317. {
  40318. name: "Nigh-Omnipresence",
  40319. height: math.unit(8e261, "multiverses")
  40320. },
  40321. ]
  40322. ))
  40323. characterMakers.push(() => makeCharacter(
  40324. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  40325. {
  40326. front: {
  40327. height: math.unit(10, "feet"),
  40328. weight: math.unit(1500, "lb"),
  40329. name: "Front",
  40330. image: {
  40331. source: "./media/characters/miles-thestia/front.svg",
  40332. extra: 1812/1727,
  40333. bottom: 86/1898
  40334. }
  40335. },
  40336. back: {
  40337. height: math.unit(10, "feet"),
  40338. weight: math.unit(1500, "lb"),
  40339. name: "Back",
  40340. image: {
  40341. source: "./media/characters/miles-thestia/back.svg",
  40342. extra: 1799/1690,
  40343. bottom: 47/1846
  40344. }
  40345. },
  40346. frontNsfw: {
  40347. height: math.unit(10, "feet"),
  40348. weight: math.unit(1500, "lb"),
  40349. name: "Front (NSFW)",
  40350. image: {
  40351. source: "./media/characters/miles-thestia/front-nsfw.svg",
  40352. extra: 1812/1727,
  40353. bottom: 86/1898
  40354. }
  40355. },
  40356. },
  40357. [
  40358. {
  40359. name: "Mini-Macro",
  40360. height: math.unit(10, "feet"),
  40361. default: true
  40362. },
  40363. ]
  40364. ))
  40365. characterMakers.push(() => makeCharacter(
  40366. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  40367. {
  40368. front: {
  40369. height: math.unit(25, "feet"),
  40370. name: "Front",
  40371. image: {
  40372. source: "./media/characters/titan-s-wulf/front.svg",
  40373. extra: 1560/1484,
  40374. bottom: 76/1636
  40375. }
  40376. },
  40377. },
  40378. [
  40379. {
  40380. name: "Smallest",
  40381. height: math.unit(25, "feet"),
  40382. default: true
  40383. },
  40384. {
  40385. name: "Normal",
  40386. height: math.unit(200, "feet")
  40387. },
  40388. {
  40389. name: "Macro",
  40390. height: math.unit(200000, "feet")
  40391. },
  40392. {
  40393. name: "Multiversal Original",
  40394. height: math.unit(10000, "multiverses")
  40395. },
  40396. ]
  40397. ))
  40398. characterMakers.push(() => makeCharacter(
  40399. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  40400. {
  40401. front: {
  40402. height: math.unit(8, "feet"),
  40403. weight: math.unit(553, "lb"),
  40404. name: "Front",
  40405. image: {
  40406. source: "./media/characters/tawendeh/front.svg",
  40407. extra: 2365/2268,
  40408. bottom: 83/2448
  40409. }
  40410. },
  40411. frontClothed: {
  40412. height: math.unit(8, "feet"),
  40413. weight: math.unit(553, "lb"),
  40414. name: "Front (Clothed)",
  40415. image: {
  40416. source: "./media/characters/tawendeh/front-clothed.svg",
  40417. extra: 2365/2268,
  40418. bottom: 83/2448
  40419. }
  40420. },
  40421. back: {
  40422. height: math.unit(8, "feet"),
  40423. weight: math.unit(553, "lb"),
  40424. name: "Back",
  40425. image: {
  40426. source: "./media/characters/tawendeh/back.svg",
  40427. extra: 2397/2294,
  40428. bottom: 42/2439
  40429. }
  40430. },
  40431. },
  40432. [
  40433. {
  40434. name: "Mortal Interaction",
  40435. height: math.unit(8, "feet"),
  40436. default: true
  40437. },
  40438. {
  40439. name: "Giant",
  40440. height: math.unit(80, "feet")
  40441. },
  40442. {
  40443. name: "Macro",
  40444. height: math.unit(800, "feet")
  40445. },
  40446. {
  40447. name: "Megamacro",
  40448. height: math.unit(8000, "feet")
  40449. },
  40450. {
  40451. name: "City-Crushing",
  40452. height: math.unit(24000, "feet")
  40453. },
  40454. {
  40455. name: "Mountain-Mashing",
  40456. height: math.unit(80000, "feet")
  40457. },
  40458. {
  40459. name: "Nation Nemesis",
  40460. height: math.unit(8e6, "feet")
  40461. },
  40462. {
  40463. name: "Continent Cracker",
  40464. height: math.unit(24e6, "feet")
  40465. },
  40466. {
  40467. name: "Earth-Eclipsing",
  40468. height: math.unit(2.4e8, "feet")
  40469. },
  40470. {
  40471. name: "Gas Giant Gulper",
  40472. height: math.unit(2.4e9, "feet")
  40473. },
  40474. {
  40475. name: "Sol-Swallowing",
  40476. height: math.unit(8e10, "feet")
  40477. },
  40478. {
  40479. name: "Galaxy Gulper",
  40480. height: math.unit(8, "galaxies")
  40481. },
  40482. {
  40483. name: "Cosmos Churner",
  40484. height: math.unit(8, "universes")
  40485. },
  40486. {
  40487. name: "Omnipotent Otter",
  40488. height: math.unit(80, "universes")
  40489. },
  40490. ]
  40491. ))
  40492. characterMakers.push(() => makeCharacter(
  40493. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  40494. {
  40495. front: {
  40496. height: math.unit(2.6, "meters"),
  40497. weight: math.unit(900, "kg"),
  40498. name: "Front",
  40499. image: {
  40500. source: "./media/characters/neesha/front.svg",
  40501. extra: 1803/1653,
  40502. bottom: 128/1931
  40503. }
  40504. },
  40505. },
  40506. [
  40507. {
  40508. name: "Normal",
  40509. height: math.unit(2.6, "meters"),
  40510. default: true
  40511. },
  40512. {
  40513. name: "Macro",
  40514. height: math.unit(50, "meters")
  40515. },
  40516. ]
  40517. ))
  40518. characterMakers.push(() => makeCharacter(
  40519. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  40520. {
  40521. front: {
  40522. height: math.unit(5, "feet"),
  40523. weight: math.unit(185, "lb"),
  40524. name: "Front",
  40525. image: {
  40526. source: "./media/characters/kyera/front.svg",
  40527. extra: 1875/1790,
  40528. bottom: 96/1971
  40529. }
  40530. },
  40531. },
  40532. [
  40533. {
  40534. name: "Normal",
  40535. height: math.unit(5, "feet"),
  40536. default: true
  40537. },
  40538. ]
  40539. ))
  40540. characterMakers.push(() => makeCharacter(
  40541. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  40542. {
  40543. front: {
  40544. height: math.unit(7 + 6/12, "feet"),
  40545. weight: math.unit(540, "lb"),
  40546. name: "Front",
  40547. image: {
  40548. source: "./media/characters/yuko/front.svg",
  40549. extra: 1282/1222,
  40550. bottom: 101/1383
  40551. }
  40552. },
  40553. frontClothed: {
  40554. height: math.unit(7 + 6/12, "feet"),
  40555. weight: math.unit(540, "lb"),
  40556. name: "Front (Clothed)",
  40557. image: {
  40558. source: "./media/characters/yuko/front-clothed.svg",
  40559. extra: 1282/1222,
  40560. bottom: 101/1383
  40561. }
  40562. },
  40563. },
  40564. [
  40565. {
  40566. name: "Normal",
  40567. height: math.unit(7 + 6/12, "feet"),
  40568. default: true
  40569. },
  40570. {
  40571. name: "Macro",
  40572. height: math.unit(26 + 9/12, "feet")
  40573. },
  40574. {
  40575. name: "Megamacro",
  40576. height: math.unit(300, "feet")
  40577. },
  40578. {
  40579. name: "Gigamacro",
  40580. height: math.unit(5000, "feet")
  40581. },
  40582. {
  40583. name: "Planetary",
  40584. height: math.unit(10000, "miles")
  40585. },
  40586. ]
  40587. ))
  40588. characterMakers.push(() => makeCharacter(
  40589. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  40590. {
  40591. front: {
  40592. height: math.unit(8 + 2/12, "feet"),
  40593. weight: math.unit(600, "lb"),
  40594. name: "Front",
  40595. image: {
  40596. source: "./media/characters/deam-nitrel/front.svg",
  40597. extra: 1308/1234,
  40598. bottom: 125/1433
  40599. }
  40600. },
  40601. },
  40602. [
  40603. {
  40604. name: "Normal",
  40605. height: math.unit(8 + 2/12, "feet"),
  40606. default: true
  40607. },
  40608. ]
  40609. ))
  40610. characterMakers.push(() => makeCharacter(
  40611. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  40612. {
  40613. front: {
  40614. height: math.unit(6.1, "feet"),
  40615. weight: math.unit(180, "lb"),
  40616. name: "Front",
  40617. image: {
  40618. source: "./media/characters/skyress/front.svg",
  40619. extra: 1045/915,
  40620. bottom: 28/1073
  40621. }
  40622. },
  40623. maw: {
  40624. height: math.unit(1, "feet"),
  40625. name: "Maw",
  40626. image: {
  40627. source: "./media/characters/skyress/maw.svg"
  40628. }
  40629. },
  40630. },
  40631. [
  40632. {
  40633. name: "Normal",
  40634. height: math.unit(6.1, "feet"),
  40635. default: true
  40636. },
  40637. {
  40638. name: "Macro",
  40639. height: math.unit(200, "feet")
  40640. },
  40641. ]
  40642. ))
  40643. characterMakers.push(() => makeCharacter(
  40644. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  40645. {
  40646. front: {
  40647. height: math.unit(4 + 2/12, "feet"),
  40648. weight: math.unit(40, "kg"),
  40649. name: "Front",
  40650. image: {
  40651. source: "./media/characters/amethyst-jones/front.svg",
  40652. extra: 1220/1150,
  40653. bottom: 101/1321
  40654. }
  40655. },
  40656. },
  40657. [
  40658. {
  40659. name: "Normal",
  40660. height: math.unit(4 + 2/12, "feet"),
  40661. default: true
  40662. },
  40663. ]
  40664. ))
  40665. characterMakers.push(() => makeCharacter(
  40666. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  40667. {
  40668. front: {
  40669. height: math.unit(1.7, "m"),
  40670. weight: math.unit(135, "lb"),
  40671. name: "Front",
  40672. image: {
  40673. source: "./media/characters/jade/front.svg",
  40674. extra: 1818/1767,
  40675. bottom: 32/1850
  40676. }
  40677. },
  40678. back: {
  40679. height: math.unit(1.7, "m"),
  40680. weight: math.unit(135, "lb"),
  40681. name: "Back",
  40682. image: {
  40683. source: "./media/characters/jade/back.svg",
  40684. extra: 1869/1809,
  40685. bottom: 35/1904
  40686. }
  40687. },
  40688. hand: {
  40689. height: math.unit(0.24, "m"),
  40690. name: "Hand",
  40691. image: {
  40692. source: "./media/characters/jade/hand.svg"
  40693. }
  40694. },
  40695. foot: {
  40696. height: math.unit(0.263, "m"),
  40697. name: "Foot",
  40698. image: {
  40699. source: "./media/characters/jade/foot.svg"
  40700. }
  40701. },
  40702. dick: {
  40703. height: math.unit(0.47, "m"),
  40704. name: "Dick",
  40705. image: {
  40706. source: "./media/characters/jade/dick.svg"
  40707. }
  40708. },
  40709. },
  40710. [
  40711. {
  40712. name: "Micro",
  40713. height: math.unit(22, "cm")
  40714. },
  40715. {
  40716. name: "Normal",
  40717. height: math.unit(1.7, "m"),
  40718. default: true
  40719. },
  40720. {
  40721. name: "Macro",
  40722. height: math.unit(152, "m")
  40723. },
  40724. ]
  40725. ))
  40726. characterMakers.push(() => makeCharacter(
  40727. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  40728. {
  40729. front: {
  40730. height: math.unit(100, "miles"),
  40731. weight: math.unit(20000, "tons"),
  40732. name: "Front",
  40733. image: {
  40734. source: "./media/characters/cookie/front.svg",
  40735. extra: 1125/1070,
  40736. bottom: 30/1155
  40737. }
  40738. },
  40739. },
  40740. [
  40741. {
  40742. name: "Big",
  40743. height: math.unit(50, "feet")
  40744. },
  40745. {
  40746. name: "Macro",
  40747. height: math.unit(100, "miles"),
  40748. default: true
  40749. },
  40750. {
  40751. name: "Megamacro",
  40752. height: math.unit(90000, "miles")
  40753. },
  40754. ]
  40755. ))
  40756. characterMakers.push(() => makeCharacter(
  40757. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  40758. {
  40759. front: {
  40760. height: math.unit(6, "feet"),
  40761. weight: math.unit(145, "lb"),
  40762. name: "Front",
  40763. image: {
  40764. source: "./media/characters/farzian/front.svg",
  40765. extra: 1902/1693,
  40766. bottom: 108/2010
  40767. }
  40768. },
  40769. },
  40770. [
  40771. {
  40772. name: "Macro",
  40773. height: math.unit(500, "feet"),
  40774. default: true
  40775. },
  40776. ]
  40777. ))
  40778. characterMakers.push(() => makeCharacter(
  40779. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  40780. {
  40781. front: {
  40782. height: math.unit(3 + 6/12, "feet"),
  40783. weight: math.unit(50, "lb"),
  40784. name: "Front",
  40785. image: {
  40786. source: "./media/characters/kimberly-tilson/front.svg",
  40787. extra: 1400/1322,
  40788. bottom: 36/1436
  40789. }
  40790. },
  40791. back: {
  40792. height: math.unit(3 + 6/12, "feet"),
  40793. weight: math.unit(50, "lb"),
  40794. name: "Back",
  40795. image: {
  40796. source: "./media/characters/kimberly-tilson/back.svg",
  40797. extra: 1370/1307,
  40798. bottom: 20/1390
  40799. }
  40800. },
  40801. },
  40802. [
  40803. {
  40804. name: "Normal",
  40805. height: math.unit(3 + 6/12, "feet"),
  40806. default: true
  40807. },
  40808. ]
  40809. ))
  40810. characterMakers.push(() => makeCharacter(
  40811. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  40812. {
  40813. front: {
  40814. height: math.unit(1148, "feet"),
  40815. weight: math.unit(34057, "lb"),
  40816. name: "Front",
  40817. image: {
  40818. source: "./media/characters/harthos/front.svg",
  40819. extra: 1391/1339,
  40820. bottom: 13/1404
  40821. }
  40822. },
  40823. },
  40824. [
  40825. {
  40826. name: "Macro",
  40827. height: math.unit(1148, "feet"),
  40828. default: true
  40829. },
  40830. ]
  40831. ))
  40832. characterMakers.push(() => makeCharacter(
  40833. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  40834. {
  40835. front: {
  40836. height: math.unit(15, "feet"),
  40837. name: "Front",
  40838. image: {
  40839. source: "./media/characters/hypatia/front.svg",
  40840. extra: 1653/1591,
  40841. bottom: 79/1732
  40842. }
  40843. },
  40844. },
  40845. [
  40846. {
  40847. name: "Normal",
  40848. height: math.unit(15, "feet")
  40849. },
  40850. {
  40851. name: "Small",
  40852. height: math.unit(300, "feet")
  40853. },
  40854. {
  40855. name: "Macro",
  40856. height: math.unit(2500, "feet"),
  40857. default: true
  40858. },
  40859. {
  40860. name: "Mega Macro",
  40861. height: math.unit(1500, "miles")
  40862. },
  40863. {
  40864. name: "Giga Macro",
  40865. height: math.unit(1.5e6, "miles")
  40866. },
  40867. ]
  40868. ))
  40869. characterMakers.push(() => makeCharacter(
  40870. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  40871. {
  40872. front: {
  40873. height: math.unit(6, "feet"),
  40874. weight: math.unit(200, "lb"),
  40875. name: "Front",
  40876. image: {
  40877. source: "./media/characters/wulver/front.svg",
  40878. extra: 1724/1632,
  40879. bottom: 130/1854
  40880. }
  40881. },
  40882. frontNsfw: {
  40883. height: math.unit(6, "feet"),
  40884. weight: math.unit(200, "lb"),
  40885. name: "Front (NSFW)",
  40886. image: {
  40887. source: "./media/characters/wulver/front-nsfw.svg",
  40888. extra: 1724/1632,
  40889. bottom: 130/1854
  40890. }
  40891. },
  40892. },
  40893. [
  40894. {
  40895. name: "Human-Sized",
  40896. height: math.unit(6, "feet")
  40897. },
  40898. {
  40899. name: "Normal",
  40900. height: math.unit(4, "meters"),
  40901. default: true
  40902. },
  40903. {
  40904. name: "Large",
  40905. height: math.unit(6, "m")
  40906. },
  40907. ]
  40908. ))
  40909. characterMakers.push(() => makeCharacter(
  40910. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  40911. {
  40912. front: {
  40913. height: math.unit(7, "feet"),
  40914. name: "Front",
  40915. image: {
  40916. source: "./media/characters/maru/front.svg",
  40917. extra: 1595/1570,
  40918. bottom: 0/1595
  40919. }
  40920. },
  40921. },
  40922. [
  40923. {
  40924. name: "Normal",
  40925. height: math.unit(7, "feet"),
  40926. default: true
  40927. },
  40928. {
  40929. name: "Macro",
  40930. height: math.unit(700, "feet")
  40931. },
  40932. {
  40933. name: "Mega Macro",
  40934. height: math.unit(25, "miles")
  40935. },
  40936. ]
  40937. ))
  40938. characterMakers.push(() => makeCharacter(
  40939. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  40940. {
  40941. front: {
  40942. height: math.unit(6, "feet"),
  40943. weight: math.unit(170, "lb"),
  40944. name: "Front",
  40945. image: {
  40946. source: "./media/characters/xenon/front.svg",
  40947. extra: 1376/1305,
  40948. bottom: 56/1432
  40949. }
  40950. },
  40951. back: {
  40952. height: math.unit(6, "feet"),
  40953. weight: math.unit(170, "lb"),
  40954. name: "Back",
  40955. image: {
  40956. source: "./media/characters/xenon/back.svg",
  40957. extra: 1328/1259,
  40958. bottom: 95/1423
  40959. }
  40960. },
  40961. maw: {
  40962. height: math.unit(0.52, "feet"),
  40963. name: "Maw",
  40964. image: {
  40965. source: "./media/characters/xenon/maw.svg"
  40966. }
  40967. },
  40968. hand: {
  40969. height: math.unit(0.82, "feet"),
  40970. name: "Hand",
  40971. image: {
  40972. source: "./media/characters/xenon/hand.svg"
  40973. }
  40974. },
  40975. foot: {
  40976. height: math.unit(1.13, "feet"),
  40977. name: "Foot",
  40978. image: {
  40979. source: "./media/characters/xenon/foot.svg"
  40980. }
  40981. },
  40982. },
  40983. [
  40984. {
  40985. name: "Micro",
  40986. height: math.unit(0.8, "inches")
  40987. },
  40988. {
  40989. name: "Normal",
  40990. height: math.unit(6, "feet")
  40991. },
  40992. {
  40993. name: "Macro",
  40994. height: math.unit(50, "feet"),
  40995. default: true
  40996. },
  40997. {
  40998. name: "Macro+",
  40999. height: math.unit(250, "feet")
  41000. },
  41001. {
  41002. name: "Megamacro",
  41003. height: math.unit(1500, "feet")
  41004. },
  41005. ]
  41006. ))
  41007. characterMakers.push(() => makeCharacter(
  41008. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  41009. {
  41010. front: {
  41011. height: math.unit(7 + 5/12, "feet"),
  41012. name: "Front",
  41013. image: {
  41014. source: "./media/characters/zane/front.svg",
  41015. extra: 1260/1203,
  41016. bottom: 94/1354
  41017. }
  41018. },
  41019. back: {
  41020. height: math.unit(5.05, "feet"),
  41021. name: "Back",
  41022. image: {
  41023. source: "./media/characters/zane/back.svg",
  41024. extra: 893/829,
  41025. bottom: 30/923
  41026. }
  41027. },
  41028. werewolf: {
  41029. height: math.unit(11, "feet"),
  41030. name: "Werewolf",
  41031. image: {
  41032. source: "./media/characters/zane/werewolf.svg",
  41033. extra: 1383/1323,
  41034. bottom: 89/1472
  41035. }
  41036. },
  41037. foot: {
  41038. height: math.unit(1.46, "feet"),
  41039. name: "Foot",
  41040. image: {
  41041. source: "./media/characters/zane/foot.svg"
  41042. }
  41043. },
  41044. footFront: {
  41045. height: math.unit(0.784, "feet"),
  41046. name: "Foot (Front)",
  41047. image: {
  41048. source: "./media/characters/zane/foot-front.svg"
  41049. }
  41050. },
  41051. dick: {
  41052. height: math.unit(1.95, "feet"),
  41053. name: "Dick",
  41054. image: {
  41055. source: "./media/characters/zane/dick.svg"
  41056. }
  41057. },
  41058. dickWerewolf: {
  41059. height: math.unit(3.77, "feet"),
  41060. name: "Dick (Werewolf)",
  41061. image: {
  41062. source: "./media/characters/zane/dick.svg"
  41063. }
  41064. },
  41065. },
  41066. [
  41067. {
  41068. name: "Normal",
  41069. height: math.unit(7 + 5/12, "feet"),
  41070. default: true
  41071. },
  41072. ]
  41073. ))
  41074. characterMakers.push(() => makeCharacter(
  41075. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  41076. {
  41077. front: {
  41078. height: math.unit(6 + 2/12, "feet"),
  41079. weight: math.unit(284, "lb"),
  41080. name: "Front",
  41081. image: {
  41082. source: "./media/characters/benni-desparque/front.svg",
  41083. extra: 1353/1126,
  41084. bottom: 69/1422
  41085. }
  41086. },
  41087. },
  41088. [
  41089. {
  41090. name: "Civilian",
  41091. height: math.unit(6 + 2/12, "feet")
  41092. },
  41093. {
  41094. name: "Normal",
  41095. height: math.unit(98, "feet"),
  41096. default: true
  41097. },
  41098. {
  41099. name: "Kaiju Fighter",
  41100. height: math.unit(268, "feet")
  41101. },
  41102. ]
  41103. ))
  41104. characterMakers.push(() => makeCharacter(
  41105. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  41106. {
  41107. front: {
  41108. height: math.unit(5, "feet"),
  41109. weight: math.unit(105, "lb"),
  41110. name: "Front",
  41111. image: {
  41112. source: "./media/characters/maxine/front.svg",
  41113. extra: 1386/1250,
  41114. bottom: 71/1457
  41115. }
  41116. },
  41117. },
  41118. [
  41119. {
  41120. name: "Normal",
  41121. height: math.unit(5, "feet"),
  41122. default: true
  41123. },
  41124. ]
  41125. ))
  41126. characterMakers.push(() => makeCharacter(
  41127. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  41128. {
  41129. front: {
  41130. height: math.unit(11 + 7/12, "feet"),
  41131. weight: math.unit(9576, "lb"),
  41132. name: "Front",
  41133. image: {
  41134. source: "./media/characters/scaly/front.svg",
  41135. extra: 888/867,
  41136. bottom: 36/924
  41137. }
  41138. },
  41139. },
  41140. [
  41141. {
  41142. name: "Normal",
  41143. height: math.unit(11 + 7/12, "feet"),
  41144. default: true
  41145. },
  41146. ]
  41147. ))
  41148. characterMakers.push(() => makeCharacter(
  41149. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  41150. {
  41151. front: {
  41152. height: math.unit(6 + 3/12, "feet"),
  41153. name: "Front",
  41154. image: {
  41155. source: "./media/characters/saelria/front.svg",
  41156. extra: 1243/1138,
  41157. bottom: 46/1289
  41158. }
  41159. },
  41160. },
  41161. [
  41162. {
  41163. name: "Micro",
  41164. height: math.unit(6, "inches"),
  41165. },
  41166. {
  41167. name: "Normal",
  41168. height: math.unit(6 + 3/12, "feet"),
  41169. default: true
  41170. },
  41171. {
  41172. name: "Macro",
  41173. height: math.unit(25, "feet")
  41174. },
  41175. ]
  41176. ))
  41177. characterMakers.push(() => makeCharacter(
  41178. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  41179. {
  41180. front: {
  41181. height: math.unit(80, "meters"),
  41182. weight: math.unit(7000, "tonnes"),
  41183. name: "Front",
  41184. image: {
  41185. source: "./media/characters/tef/front.svg",
  41186. extra: 2036/1991,
  41187. bottom: 54/2090
  41188. }
  41189. },
  41190. back: {
  41191. height: math.unit(80, "meters"),
  41192. weight: math.unit(7000, "tonnes"),
  41193. name: "Back",
  41194. image: {
  41195. source: "./media/characters/tef/back.svg",
  41196. extra: 2036/1991,
  41197. bottom: 54/2090
  41198. }
  41199. },
  41200. },
  41201. [
  41202. {
  41203. name: "Macro",
  41204. height: math.unit(80, "meters"),
  41205. default: true
  41206. },
  41207. ]
  41208. ))
  41209. characterMakers.push(() => makeCharacter(
  41210. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  41211. {
  41212. front: {
  41213. height: math.unit(13, "feet"),
  41214. weight: math.unit(6, "tons"),
  41215. name: "Front",
  41216. image: {
  41217. source: "./media/characters/rover/front.svg",
  41218. extra: 1233/1156,
  41219. bottom: 50/1283
  41220. }
  41221. },
  41222. back: {
  41223. height: math.unit(13, "feet"),
  41224. weight: math.unit(6, "tons"),
  41225. name: "Back",
  41226. image: {
  41227. source: "./media/characters/rover/back.svg",
  41228. extra: 1327/1258,
  41229. bottom: 39/1366
  41230. }
  41231. },
  41232. },
  41233. [
  41234. {
  41235. name: "Normal",
  41236. height: math.unit(13, "feet"),
  41237. default: true
  41238. },
  41239. {
  41240. name: "Macro",
  41241. height: math.unit(1300, "feet")
  41242. },
  41243. {
  41244. name: "Megamacro",
  41245. height: math.unit(1300, "miles")
  41246. },
  41247. {
  41248. name: "Gigamacro",
  41249. height: math.unit(1300000, "miles")
  41250. },
  41251. ]
  41252. ))
  41253. characterMakers.push(() => makeCharacter(
  41254. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  41255. {
  41256. front: {
  41257. height: math.unit(6, "feet"),
  41258. weight: math.unit(150, "lb"),
  41259. name: "Front",
  41260. image: {
  41261. source: "./media/characters/ariz/front.svg",
  41262. extra: 1401/1346,
  41263. bottom: 5/1406
  41264. }
  41265. },
  41266. },
  41267. [
  41268. {
  41269. name: "Normal",
  41270. height: math.unit(10, "feet"),
  41271. default: true
  41272. },
  41273. ]
  41274. ))
  41275. characterMakers.push(() => makeCharacter(
  41276. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  41277. {
  41278. front: {
  41279. height: math.unit(6, "feet"),
  41280. weight: math.unit(140, "lb"),
  41281. name: "Front",
  41282. image: {
  41283. source: "./media/characters/sigrun/front.svg",
  41284. extra: 1418/1359,
  41285. bottom: 27/1445
  41286. }
  41287. },
  41288. },
  41289. [
  41290. {
  41291. name: "Macro",
  41292. height: math.unit(35, "feet"),
  41293. default: true
  41294. },
  41295. ]
  41296. ))
  41297. characterMakers.push(() => makeCharacter(
  41298. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  41299. {
  41300. front: {
  41301. height: math.unit(6, "feet"),
  41302. weight: math.unit(150, "lb"),
  41303. name: "Front",
  41304. image: {
  41305. source: "./media/characters/numin/front.svg",
  41306. extra: 1433/1388,
  41307. bottom: 12/1445
  41308. }
  41309. },
  41310. },
  41311. [
  41312. {
  41313. name: "Macro",
  41314. height: math.unit(21.5, "km"),
  41315. default: true
  41316. },
  41317. ]
  41318. ))
  41319. characterMakers.push(() => makeCharacter(
  41320. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  41321. {
  41322. front: {
  41323. height: math.unit(6, "feet"),
  41324. weight: math.unit(463, "lb"),
  41325. name: "Front",
  41326. image: {
  41327. source: "./media/characters/melwa/front.svg",
  41328. extra: 1307/1248,
  41329. bottom: 93/1400
  41330. }
  41331. },
  41332. },
  41333. [
  41334. {
  41335. name: "Macro",
  41336. height: math.unit(50, "meters"),
  41337. default: true
  41338. },
  41339. ]
  41340. ))
  41341. characterMakers.push(() => makeCharacter(
  41342. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  41343. {
  41344. front: {
  41345. height: math.unit(325, "feet"),
  41346. name: "Front",
  41347. image: {
  41348. source: "./media/characters/zorkaiju/front.svg",
  41349. extra: 1955/1814,
  41350. bottom: 40/1995
  41351. }
  41352. },
  41353. frontExtended: {
  41354. height: math.unit(325, "feet"),
  41355. name: "Front (Extended)",
  41356. image: {
  41357. source: "./media/characters/zorkaiju/front-extended.svg",
  41358. extra: 1955/1814,
  41359. bottom: 40/1995
  41360. }
  41361. },
  41362. side: {
  41363. height: math.unit(325, "feet"),
  41364. name: "Side",
  41365. image: {
  41366. source: "./media/characters/zorkaiju/side.svg",
  41367. extra: 1495/1396,
  41368. bottom: 17/1512
  41369. }
  41370. },
  41371. sideExtended: {
  41372. height: math.unit(325, "feet"),
  41373. name: "Side (Extended)",
  41374. image: {
  41375. source: "./media/characters/zorkaiju/side-extended.svg",
  41376. extra: 1495/1396,
  41377. bottom: 17/1512
  41378. }
  41379. },
  41380. back: {
  41381. height: math.unit(325, "feet"),
  41382. name: "Back",
  41383. image: {
  41384. source: "./media/characters/zorkaiju/back.svg",
  41385. extra: 1959/1821,
  41386. bottom: 31/1990
  41387. }
  41388. },
  41389. backExtended: {
  41390. height: math.unit(325, "feet"),
  41391. name: "Back (Extended)",
  41392. image: {
  41393. source: "./media/characters/zorkaiju/back-extended.svg",
  41394. extra: 1959/1821,
  41395. bottom: 31/1990
  41396. }
  41397. },
  41398. hand: {
  41399. height: math.unit(58.4, "feet"),
  41400. name: "Hand",
  41401. image: {
  41402. source: "./media/characters/zorkaiju/hand.svg"
  41403. }
  41404. },
  41405. handExtended: {
  41406. height: math.unit(61.4, "feet"),
  41407. name: "Hand (Extended)",
  41408. image: {
  41409. source: "./media/characters/zorkaiju/hand-extended.svg"
  41410. }
  41411. },
  41412. foot: {
  41413. height: math.unit(95, "feet"),
  41414. name: "Foot",
  41415. image: {
  41416. source: "./media/characters/zorkaiju/foot.svg"
  41417. }
  41418. },
  41419. leftArm: {
  41420. height: math.unit(59, "feet"),
  41421. name: "Left Arm",
  41422. image: {
  41423. source: "./media/characters/zorkaiju/left-arm.svg"
  41424. }
  41425. },
  41426. rightArm: {
  41427. height: math.unit(59, "feet"),
  41428. name: "Right Arm",
  41429. image: {
  41430. source: "./media/characters/zorkaiju/right-arm.svg"
  41431. }
  41432. },
  41433. tail: {
  41434. height: math.unit(104, "feet"),
  41435. name: "Tail",
  41436. image: {
  41437. source: "./media/characters/zorkaiju/tail.svg"
  41438. }
  41439. },
  41440. tailExtended: {
  41441. height: math.unit(104, "feet"),
  41442. name: "Tail (Extended)",
  41443. image: {
  41444. source: "./media/characters/zorkaiju/tail-extended.svg"
  41445. }
  41446. },
  41447. tailBottom: {
  41448. height: math.unit(104, "feet"),
  41449. name: "Tail Bottom",
  41450. image: {
  41451. source: "./media/characters/zorkaiju/tail-bottom.svg"
  41452. }
  41453. },
  41454. crystal: {
  41455. height: math.unit(27.54, "feet"),
  41456. name: "Crystal",
  41457. image: {
  41458. source: "./media/characters/zorkaiju/crystal.svg"
  41459. }
  41460. },
  41461. },
  41462. [
  41463. {
  41464. name: "Kaiju",
  41465. height: math.unit(325, "feet"),
  41466. default: true
  41467. },
  41468. ]
  41469. ))
  41470. characterMakers.push(() => makeCharacter(
  41471. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  41472. {
  41473. front: {
  41474. height: math.unit(6 + 1/12, "feet"),
  41475. weight: math.unit(115, "lb"),
  41476. name: "Front",
  41477. image: {
  41478. source: "./media/characters/bailey-belfry/front.svg",
  41479. extra: 1240/1121,
  41480. bottom: 101/1341
  41481. }
  41482. },
  41483. },
  41484. [
  41485. {
  41486. name: "Normal",
  41487. height: math.unit(6 + 1/12, "feet"),
  41488. default: true
  41489. },
  41490. ]
  41491. ))
  41492. characterMakers.push(() => makeCharacter(
  41493. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  41494. {
  41495. side: {
  41496. height: math.unit(4, "meters"),
  41497. weight: math.unit(250, "kg"),
  41498. name: "Side",
  41499. image: {
  41500. source: "./media/characters/blacky/side.svg",
  41501. extra: 1027/919,
  41502. bottom: 43/1070
  41503. }
  41504. },
  41505. maw: {
  41506. height: math.unit(1, "meters"),
  41507. name: "Maw",
  41508. image: {
  41509. source: "./media/characters/blacky/maw.svg"
  41510. }
  41511. },
  41512. paw: {
  41513. height: math.unit(1, "meters"),
  41514. name: "Paw",
  41515. image: {
  41516. source: "./media/characters/blacky/paw.svg"
  41517. }
  41518. },
  41519. },
  41520. [
  41521. {
  41522. name: "Normal",
  41523. height: math.unit(4, "meters"),
  41524. default: true
  41525. },
  41526. ]
  41527. ))
  41528. characterMakers.push(() => makeCharacter(
  41529. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  41530. {
  41531. front: {
  41532. height: math.unit(170, "cm"),
  41533. weight: math.unit(66, "kg"),
  41534. name: "Front",
  41535. image: {
  41536. source: "./media/characters/thux-ei/front.svg",
  41537. extra: 1109/1011,
  41538. bottom: 8/1117
  41539. }
  41540. },
  41541. },
  41542. [
  41543. {
  41544. name: "Normal",
  41545. height: math.unit(170, "cm"),
  41546. default: true
  41547. },
  41548. ]
  41549. ))
  41550. characterMakers.push(() => makeCharacter(
  41551. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  41552. {
  41553. front: {
  41554. height: math.unit(5, "feet"),
  41555. weight: math.unit(120, "lb"),
  41556. name: "Front",
  41557. image: {
  41558. source: "./media/characters/roxanne-voltaire/front.svg",
  41559. extra: 1901/1779,
  41560. bottom: 53/1954
  41561. }
  41562. },
  41563. },
  41564. [
  41565. {
  41566. name: "Normal",
  41567. height: math.unit(5, "feet"),
  41568. default: true
  41569. },
  41570. {
  41571. name: "Giant",
  41572. height: math.unit(50, "feet")
  41573. },
  41574. {
  41575. name: "Titan",
  41576. height: math.unit(500, "feet")
  41577. },
  41578. {
  41579. name: "Macro",
  41580. height: math.unit(5000, "feet")
  41581. },
  41582. {
  41583. name: "Megamacro",
  41584. height: math.unit(50000, "feet")
  41585. },
  41586. {
  41587. name: "Gigamacro",
  41588. height: math.unit(500000, "feet")
  41589. },
  41590. {
  41591. name: "Teramacro",
  41592. height: math.unit(5e6, "feet")
  41593. },
  41594. ]
  41595. ))
  41596. characterMakers.push(() => makeCharacter(
  41597. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  41598. {
  41599. front: {
  41600. height: math.unit(6 + 2/12, "feet"),
  41601. name: "Front",
  41602. image: {
  41603. source: "./media/characters/squeaks/front.svg",
  41604. extra: 1823/1768,
  41605. bottom: 138/1961
  41606. }
  41607. },
  41608. },
  41609. [
  41610. {
  41611. name: "Micro",
  41612. height: math.unit(0.5, "inches")
  41613. },
  41614. {
  41615. name: "Normal",
  41616. height: math.unit(6 + 2/12, "feet"),
  41617. default: true
  41618. },
  41619. {
  41620. name: "Macro",
  41621. height: math.unit(600, "feet")
  41622. },
  41623. ]
  41624. ))
  41625. characterMakers.push(() => makeCharacter(
  41626. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  41627. {
  41628. front: {
  41629. height: math.unit(1.72, "meters"),
  41630. name: "Front",
  41631. image: {
  41632. source: "./media/characters/archinger/front.svg",
  41633. extra: 1861/1675,
  41634. bottom: 125/1986
  41635. }
  41636. },
  41637. back: {
  41638. height: math.unit(1.72, "meters"),
  41639. name: "Back",
  41640. image: {
  41641. source: "./media/characters/archinger/back.svg",
  41642. extra: 1844/1701,
  41643. bottom: 104/1948
  41644. }
  41645. },
  41646. cock: {
  41647. height: math.unit(0.59, "feet"),
  41648. name: "Cock",
  41649. image: {
  41650. source: "./media/characters/archinger/cock.svg"
  41651. }
  41652. },
  41653. },
  41654. [
  41655. {
  41656. name: "Normal",
  41657. height: math.unit(1.72, "meters"),
  41658. default: true
  41659. },
  41660. {
  41661. name: "Macro",
  41662. height: math.unit(84, "meters")
  41663. },
  41664. {
  41665. name: "Macro+",
  41666. height: math.unit(112, "meters")
  41667. },
  41668. {
  41669. name: "Macro++",
  41670. height: math.unit(960, "meters")
  41671. },
  41672. {
  41673. name: "Macro+++",
  41674. height: math.unit(4, "km")
  41675. },
  41676. {
  41677. name: "Macro++++",
  41678. height: math.unit(48, "km")
  41679. },
  41680. {
  41681. name: "Macro+++++",
  41682. height: math.unit(4500, "km")
  41683. },
  41684. ]
  41685. ))
  41686. characterMakers.push(() => makeCharacter(
  41687. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  41688. {
  41689. front: {
  41690. height: math.unit(5 + 5/12, "feet"),
  41691. name: "Front",
  41692. image: {
  41693. source: "./media/characters/alsnapz/front.svg",
  41694. extra: 1157/1065,
  41695. bottom: 42/1199
  41696. }
  41697. },
  41698. },
  41699. [
  41700. {
  41701. name: "Normal",
  41702. height: math.unit(5 + 5/12, "feet"),
  41703. default: true
  41704. },
  41705. ]
  41706. ))
  41707. characterMakers.push(() => makeCharacter(
  41708. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  41709. {
  41710. side: {
  41711. height: math.unit(3.2, "earths"),
  41712. name: "Side",
  41713. image: {
  41714. source: "./media/characters/mag/side.svg",
  41715. extra: 1331/1008,
  41716. bottom: 52/1383
  41717. }
  41718. },
  41719. wing: {
  41720. height: math.unit(1.94, "earths"),
  41721. name: "Wing",
  41722. image: {
  41723. source: "./media/characters/mag/wing.svg"
  41724. }
  41725. },
  41726. dick: {
  41727. height: math.unit(1.8, "earths"),
  41728. name: "Dick",
  41729. image: {
  41730. source: "./media/characters/mag/dick.svg"
  41731. }
  41732. },
  41733. ass: {
  41734. height: math.unit(1.33, "earths"),
  41735. name: "Ass",
  41736. image: {
  41737. source: "./media/characters/mag/ass.svg"
  41738. }
  41739. },
  41740. head: {
  41741. height: math.unit(1.1, "earths"),
  41742. name: "Head",
  41743. image: {
  41744. source: "./media/characters/mag/head.svg"
  41745. }
  41746. },
  41747. maw: {
  41748. height: math.unit(1.62, "earths"),
  41749. name: "Maw",
  41750. image: {
  41751. source: "./media/characters/mag/maw.svg"
  41752. }
  41753. },
  41754. },
  41755. [
  41756. {
  41757. name: "Small",
  41758. height: math.unit(162, "feet")
  41759. },
  41760. {
  41761. name: "Normal",
  41762. height: math.unit(3.2, "earths"),
  41763. default: true
  41764. },
  41765. ]
  41766. ))
  41767. characterMakers.push(() => makeCharacter(
  41768. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  41769. {
  41770. front: {
  41771. height: math.unit(512, "feet"),
  41772. weight: math.unit(63509, "tonnes"),
  41773. name: "Front",
  41774. image: {
  41775. source: "./media/characters/vorrel-harroc/front.svg",
  41776. extra: 1075/1063,
  41777. bottom: 62/1137
  41778. }
  41779. },
  41780. },
  41781. [
  41782. {
  41783. name: "Normal",
  41784. height: math.unit(10, "feet")
  41785. },
  41786. {
  41787. name: "Macro",
  41788. height: math.unit(512, "feet"),
  41789. default: true
  41790. },
  41791. {
  41792. name: "Megamacro",
  41793. height: math.unit(256, "miles")
  41794. },
  41795. {
  41796. name: "Gigamacro",
  41797. height: math.unit(4096, "miles")
  41798. },
  41799. ]
  41800. ))
  41801. characterMakers.push(() => makeCharacter(
  41802. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  41803. {
  41804. side: {
  41805. height: math.unit(50, "feet"),
  41806. name: "Side",
  41807. image: {
  41808. source: "./media/characters/froimar/side.svg",
  41809. extra: 855/638,
  41810. bottom: 99/954
  41811. }
  41812. },
  41813. },
  41814. [
  41815. {
  41816. name: "Macro",
  41817. height: math.unit(50, "feet"),
  41818. default: true
  41819. },
  41820. ]
  41821. ))
  41822. characterMakers.push(() => makeCharacter(
  41823. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  41824. {
  41825. front: {
  41826. height: math.unit(210, "miles"),
  41827. name: "Front",
  41828. image: {
  41829. source: "./media/characters/timothy/front.svg",
  41830. extra: 1007/943,
  41831. bottom: 62/1069
  41832. }
  41833. },
  41834. frontSkirt: {
  41835. height: math.unit(210, "miles"),
  41836. name: "Front (Skirt)",
  41837. image: {
  41838. source: "./media/characters/timothy/front-skirt.svg",
  41839. extra: 1007/943,
  41840. bottom: 62/1069
  41841. }
  41842. },
  41843. frontCoat: {
  41844. height: math.unit(210, "miles"),
  41845. name: "Front (Coat)",
  41846. image: {
  41847. source: "./media/characters/timothy/front-coat.svg",
  41848. extra: 1007/943,
  41849. bottom: 62/1069
  41850. }
  41851. },
  41852. },
  41853. [
  41854. {
  41855. name: "Macro",
  41856. height: math.unit(210, "miles"),
  41857. default: true
  41858. },
  41859. {
  41860. name: "Megamacro",
  41861. height: math.unit(210000, "miles")
  41862. },
  41863. ]
  41864. ))
  41865. characterMakers.push(() => makeCharacter(
  41866. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  41867. {
  41868. front: {
  41869. height: math.unit(188, "feet"),
  41870. name: "Front",
  41871. image: {
  41872. source: "./media/characters/pyotr/front.svg",
  41873. extra: 1912/1826,
  41874. bottom: 18/1930
  41875. }
  41876. },
  41877. },
  41878. [
  41879. {
  41880. name: "Macro",
  41881. height: math.unit(188, "feet"),
  41882. default: true
  41883. },
  41884. {
  41885. name: "Megamacro",
  41886. height: math.unit(8, "miles")
  41887. },
  41888. ]
  41889. ))
  41890. characterMakers.push(() => makeCharacter(
  41891. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  41892. {
  41893. side: {
  41894. height: math.unit(10, "feet"),
  41895. weight: math.unit(4500, "lb"),
  41896. name: "Side",
  41897. image: {
  41898. source: "./media/characters/ackart/side.svg",
  41899. extra: 1776/1668,
  41900. bottom: 116/1892
  41901. }
  41902. },
  41903. },
  41904. [
  41905. {
  41906. name: "Normal",
  41907. height: math.unit(10, "feet"),
  41908. default: true
  41909. },
  41910. ]
  41911. ))
  41912. characterMakers.push(() => makeCharacter(
  41913. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  41914. {
  41915. side: {
  41916. height: math.unit(21, "feet"),
  41917. name: "Side",
  41918. image: {
  41919. source: "./media/characters/nolow/side.svg",
  41920. extra: 1484/1434,
  41921. bottom: 85/1569
  41922. }
  41923. },
  41924. sideErect: {
  41925. height: math.unit(21, "feet"),
  41926. name: "Side-erect",
  41927. image: {
  41928. source: "./media/characters/nolow/side-erect.svg",
  41929. extra: 1484/1434,
  41930. bottom: 85/1569
  41931. }
  41932. },
  41933. },
  41934. [
  41935. {
  41936. name: "Regular",
  41937. height: math.unit(12, "feet")
  41938. },
  41939. {
  41940. name: "Big Chee",
  41941. height: math.unit(21, "feet"),
  41942. default: true
  41943. },
  41944. ]
  41945. ))
  41946. characterMakers.push(() => makeCharacter(
  41947. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  41948. {
  41949. front: {
  41950. height: math.unit(7, "feet"),
  41951. weight: math.unit(250, "lb"),
  41952. name: "Front",
  41953. image: {
  41954. source: "./media/characters/nines/front.svg",
  41955. extra: 1741/1607,
  41956. bottom: 41/1782
  41957. }
  41958. },
  41959. side: {
  41960. height: math.unit(7, "feet"),
  41961. weight: math.unit(250, "lb"),
  41962. name: "Side",
  41963. image: {
  41964. source: "./media/characters/nines/side.svg",
  41965. extra: 1854/1735,
  41966. bottom: 93/1947
  41967. }
  41968. },
  41969. back: {
  41970. height: math.unit(7, "feet"),
  41971. weight: math.unit(250, "lb"),
  41972. name: "Back",
  41973. image: {
  41974. source: "./media/characters/nines/back.svg",
  41975. extra: 1748/1615,
  41976. bottom: 20/1768
  41977. }
  41978. },
  41979. },
  41980. [
  41981. {
  41982. name: "Megamacro",
  41983. height: math.unit(99, "km"),
  41984. default: true
  41985. },
  41986. ]
  41987. ))
  41988. characterMakers.push(() => makeCharacter(
  41989. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  41990. {
  41991. front: {
  41992. height: math.unit(5 + 10/12, "feet"),
  41993. weight: math.unit(210, "lb"),
  41994. name: "Front",
  41995. image: {
  41996. source: "./media/characters/zenith/front.svg",
  41997. extra: 1531/1452,
  41998. bottom: 198/1729
  41999. }
  42000. },
  42001. back: {
  42002. height: math.unit(5 + 10/12, "feet"),
  42003. weight: math.unit(210, "lb"),
  42004. name: "Back",
  42005. image: {
  42006. source: "./media/characters/zenith/back.svg",
  42007. extra: 1571/1487,
  42008. bottom: 75/1646
  42009. }
  42010. },
  42011. },
  42012. [
  42013. {
  42014. name: "Normal",
  42015. height: math.unit(5 + 10/12, "feet"),
  42016. default: true
  42017. }
  42018. ]
  42019. ))
  42020. characterMakers.push(() => makeCharacter(
  42021. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  42022. {
  42023. front: {
  42024. height: math.unit(4, "feet"),
  42025. weight: math.unit(60, "lb"),
  42026. name: "Front",
  42027. image: {
  42028. source: "./media/characters/jasper/front.svg",
  42029. extra: 1450/1379,
  42030. bottom: 19/1469
  42031. }
  42032. },
  42033. },
  42034. [
  42035. {
  42036. name: "Normal",
  42037. height: math.unit(4, "feet"),
  42038. default: true
  42039. },
  42040. ]
  42041. ))
  42042. characterMakers.push(() => makeCharacter(
  42043. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  42044. {
  42045. front: {
  42046. height: math.unit(6 + 5/12, "feet"),
  42047. weight: math.unit(290, "lb"),
  42048. name: "Front",
  42049. image: {
  42050. source: "./media/characters/tiberius-thyben/front.svg",
  42051. extra: 757/739,
  42052. bottom: 39/796
  42053. }
  42054. },
  42055. },
  42056. [
  42057. {
  42058. name: "Micro",
  42059. height: math.unit(1.5, "inches")
  42060. },
  42061. {
  42062. name: "Normal",
  42063. height: math.unit(6 + 5/12, "feet"),
  42064. default: true
  42065. },
  42066. {
  42067. name: "Macro",
  42068. height: math.unit(300, "feet")
  42069. },
  42070. ]
  42071. ))
  42072. characterMakers.push(() => makeCharacter(
  42073. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  42074. {
  42075. front: {
  42076. height: math.unit(5 + 6/12, "feet"),
  42077. weight: math.unit(60, "kg"),
  42078. name: "Front",
  42079. image: {
  42080. source: "./media/characters/sabre/front.svg",
  42081. extra: 738/671,
  42082. bottom: 27/765
  42083. }
  42084. },
  42085. },
  42086. [
  42087. {
  42088. name: "Teeny",
  42089. height: math.unit(2, "inches")
  42090. },
  42091. {
  42092. name: "Smol",
  42093. height: math.unit(8, "inches")
  42094. },
  42095. {
  42096. name: "Normal",
  42097. height: math.unit(5 + 6/12, "feet"),
  42098. default: true
  42099. },
  42100. {
  42101. name: "Mini-Macro",
  42102. height: math.unit(15, "feet")
  42103. },
  42104. {
  42105. name: "Macro",
  42106. height: math.unit(50, "feet")
  42107. },
  42108. ]
  42109. ))
  42110. characterMakers.push(() => makeCharacter(
  42111. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  42112. {
  42113. front: {
  42114. height: math.unit(6 + 4/12, "feet"),
  42115. weight: math.unit(170, "lb"),
  42116. name: "Front",
  42117. image: {
  42118. source: "./media/characters/charlie/front.svg",
  42119. extra: 1348/1228,
  42120. bottom: 15/1363
  42121. }
  42122. },
  42123. },
  42124. [
  42125. {
  42126. name: "Macro",
  42127. height: math.unit(1700, "meters"),
  42128. default: true
  42129. },
  42130. {
  42131. name: "MegaMacro",
  42132. height: math.unit(20400, "meters")
  42133. },
  42134. ]
  42135. ))
  42136. characterMakers.push(() => makeCharacter(
  42137. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  42138. {
  42139. front: {
  42140. height: math.unit(6 + 3/12, "feet"),
  42141. weight: math.unit(185, "lb"),
  42142. name: "Front",
  42143. image: {
  42144. source: "./media/characters/susan-grant/front.svg",
  42145. extra: 1351/1327,
  42146. bottom: 26/1377
  42147. }
  42148. },
  42149. },
  42150. [
  42151. {
  42152. name: "Normal",
  42153. height: math.unit(6 + 3/12, "feet"),
  42154. default: true
  42155. },
  42156. {
  42157. name: "Macro",
  42158. height: math.unit(225, "feet")
  42159. },
  42160. {
  42161. name: "Macro+",
  42162. height: math.unit(900, "feet")
  42163. },
  42164. {
  42165. name: "MegaMacro",
  42166. height: math.unit(14400, "feet")
  42167. },
  42168. ]
  42169. ))
  42170. characterMakers.push(() => makeCharacter(
  42171. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  42172. {
  42173. front: {
  42174. height: math.unit(5 + 4/12, "feet"),
  42175. weight: math.unit(110, "lb"),
  42176. name: "Front",
  42177. image: {
  42178. source: "./media/characters/axel-isanov/front.svg",
  42179. extra: 1096/1065,
  42180. bottom: 13/1109
  42181. }
  42182. },
  42183. },
  42184. [
  42185. {
  42186. name: "Normal",
  42187. height: math.unit(5 + 4/12, "feet"),
  42188. default: true
  42189. },
  42190. ]
  42191. ))
  42192. characterMakers.push(() => makeCharacter(
  42193. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  42194. {
  42195. front: {
  42196. height: math.unit(9, "feet"),
  42197. weight: math.unit(467, "lb"),
  42198. name: "Front",
  42199. image: {
  42200. source: "./media/characters/necahual/front.svg",
  42201. extra: 920/873,
  42202. bottom: 26/946
  42203. }
  42204. },
  42205. back: {
  42206. height: math.unit(9, "feet"),
  42207. weight: math.unit(467, "lb"),
  42208. name: "Back",
  42209. image: {
  42210. source: "./media/characters/necahual/back.svg",
  42211. extra: 930/884,
  42212. bottom: 16/946
  42213. }
  42214. },
  42215. frontUnderwear: {
  42216. height: math.unit(9, "feet"),
  42217. weight: math.unit(467, "lb"),
  42218. name: "Front (Underwear)",
  42219. image: {
  42220. source: "./media/characters/necahual/front-underwear.svg",
  42221. extra: 920/873,
  42222. bottom: 26/946
  42223. }
  42224. },
  42225. frontDressed: {
  42226. height: math.unit(9, "feet"),
  42227. weight: math.unit(467, "lb"),
  42228. name: "Front (Dressed)",
  42229. image: {
  42230. source: "./media/characters/necahual/front-dressed.svg",
  42231. extra: 920/873,
  42232. bottom: 26/946
  42233. }
  42234. },
  42235. },
  42236. [
  42237. {
  42238. name: "Comprsesed",
  42239. height: math.unit(9, "feet")
  42240. },
  42241. {
  42242. name: "Natural",
  42243. height: math.unit(15, "feet"),
  42244. default: true
  42245. },
  42246. {
  42247. name: "Boosted",
  42248. height: math.unit(50, "feet")
  42249. },
  42250. {
  42251. name: "Boosted+",
  42252. height: math.unit(150, "feet")
  42253. },
  42254. {
  42255. name: "Max",
  42256. height: math.unit(500, "feet")
  42257. },
  42258. ]
  42259. ))
  42260. characterMakers.push(() => makeCharacter(
  42261. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  42262. {
  42263. front: {
  42264. height: math.unit(22 + 1/12, "feet"),
  42265. weight: math.unit(3200, "lb"),
  42266. name: "Front",
  42267. image: {
  42268. source: "./media/characters/theo-acacia/front.svg",
  42269. extra: 1796/1741,
  42270. bottom: 83/1879
  42271. }
  42272. },
  42273. frontUnderwear: {
  42274. height: math.unit(22 + 1/12, "feet"),
  42275. weight: math.unit(3200, "lb"),
  42276. name: "Front (Underwear)",
  42277. image: {
  42278. source: "./media/characters/theo-acacia/front-underwear.svg",
  42279. extra: 1796/1741,
  42280. bottom: 83/1879
  42281. }
  42282. },
  42283. frontNude: {
  42284. height: math.unit(22 + 1/12, "feet"),
  42285. weight: math.unit(3200, "lb"),
  42286. name: "Front (Nude)",
  42287. image: {
  42288. source: "./media/characters/theo-acacia/front-nude.svg",
  42289. extra: 1796/1741,
  42290. bottom: 83/1879
  42291. }
  42292. },
  42293. },
  42294. [
  42295. {
  42296. name: "Normal",
  42297. height: math.unit(22 + 1/12, "feet"),
  42298. default: true
  42299. },
  42300. ]
  42301. ))
  42302. characterMakers.push(() => makeCharacter(
  42303. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  42304. {
  42305. front: {
  42306. height: math.unit(20, "feet"),
  42307. name: "Front",
  42308. image: {
  42309. source: "./media/characters/astra/front.svg",
  42310. extra: 1850/1714,
  42311. bottom: 106/1956
  42312. }
  42313. },
  42314. frontUndressed: {
  42315. height: math.unit(20, "feet"),
  42316. name: "Front (Undressed)",
  42317. image: {
  42318. source: "./media/characters/astra/front-undressed.svg",
  42319. extra: 1926/1749,
  42320. bottom: 0/1926
  42321. }
  42322. },
  42323. hand: {
  42324. height: math.unit(1.53, "feet"),
  42325. name: "Hand",
  42326. image: {
  42327. source: "./media/characters/astra/hand.svg"
  42328. }
  42329. },
  42330. paw: {
  42331. height: math.unit(1.53, "feet"),
  42332. name: "Paw",
  42333. image: {
  42334. source: "./media/characters/astra/paw.svg"
  42335. }
  42336. },
  42337. },
  42338. [
  42339. {
  42340. name: "Smallest",
  42341. height: math.unit(20, "feet")
  42342. },
  42343. {
  42344. name: "Normal",
  42345. height: math.unit(1e9, "miles"),
  42346. default: true
  42347. },
  42348. {
  42349. name: "Larger",
  42350. height: math.unit(5, "multiverses")
  42351. },
  42352. {
  42353. name: "Largest",
  42354. height: math.unit(1e9, "multiverses")
  42355. },
  42356. ]
  42357. ))
  42358. characterMakers.push(() => makeCharacter(
  42359. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  42360. {
  42361. front: {
  42362. height: math.unit(8, "feet"),
  42363. name: "Front",
  42364. image: {
  42365. source: "./media/characters/breanna/front.svg",
  42366. extra: 1912/1632,
  42367. bottom: 33/1945
  42368. }
  42369. },
  42370. },
  42371. [
  42372. {
  42373. name: "Smallest",
  42374. height: math.unit(8, "feet")
  42375. },
  42376. {
  42377. name: "Normal",
  42378. height: math.unit(1, "mile"),
  42379. default: true
  42380. },
  42381. {
  42382. name: "Maximum",
  42383. height: math.unit(1500000000000, "lightyears")
  42384. },
  42385. ]
  42386. ))
  42387. characterMakers.push(() => makeCharacter(
  42388. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  42389. {
  42390. front: {
  42391. height: math.unit(5 + 11/12, "feet"),
  42392. weight: math.unit(155, "lb"),
  42393. name: "Front",
  42394. image: {
  42395. source: "./media/characters/cai/front.svg",
  42396. extra: 1823/1702,
  42397. bottom: 32/1855
  42398. }
  42399. },
  42400. back: {
  42401. height: math.unit(5 + 11/12, "feet"),
  42402. weight: math.unit(155, "lb"),
  42403. name: "Back",
  42404. image: {
  42405. source: "./media/characters/cai/back.svg",
  42406. extra: 1809/1708,
  42407. bottom: 31/1840
  42408. }
  42409. },
  42410. },
  42411. [
  42412. {
  42413. name: "Normal",
  42414. height: math.unit(5 + 11/12, "feet"),
  42415. default: true
  42416. },
  42417. {
  42418. name: "Big",
  42419. height: math.unit(15, "feet")
  42420. },
  42421. {
  42422. name: "Macro",
  42423. height: math.unit(200, "feet")
  42424. },
  42425. ]
  42426. ))
  42427. characterMakers.push(() => makeCharacter(
  42428. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  42429. {
  42430. front: {
  42431. height: math.unit(5 + 6/12, "feet"),
  42432. weight: math.unit(160, "lb"),
  42433. name: "Front",
  42434. image: {
  42435. source: "./media/characters/zanna-virtuedòttir/front.svg",
  42436. extra: 1227/1174,
  42437. bottom: 37/1264
  42438. }
  42439. },
  42440. },
  42441. [
  42442. {
  42443. name: "Macro",
  42444. height: math.unit(444, "meters"),
  42445. default: true
  42446. },
  42447. ]
  42448. ))
  42449. characterMakers.push(() => makeCharacter(
  42450. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  42451. {
  42452. front: {
  42453. height: math.unit(18 + 7/12, "feet"),
  42454. name: "Front",
  42455. image: {
  42456. source: "./media/characters/rex/front.svg",
  42457. extra: 1941/1807,
  42458. bottom: 66/2007
  42459. }
  42460. },
  42461. back: {
  42462. height: math.unit(18 + 7/12, "feet"),
  42463. name: "Back",
  42464. image: {
  42465. source: "./media/characters/rex/back.svg",
  42466. extra: 1937/1822,
  42467. bottom: 42/1979
  42468. }
  42469. },
  42470. boot: {
  42471. height: math.unit(3.45, "feet"),
  42472. name: "Boot",
  42473. image: {
  42474. source: "./media/characters/rex/boot.svg"
  42475. }
  42476. },
  42477. paw: {
  42478. height: math.unit(4.17, "feet"),
  42479. name: "Paw",
  42480. image: {
  42481. source: "./media/characters/rex/paw.svg"
  42482. }
  42483. },
  42484. head: {
  42485. height: math.unit(6.728, "feet"),
  42486. name: "Head",
  42487. image: {
  42488. source: "./media/characters/rex/head.svg"
  42489. }
  42490. },
  42491. },
  42492. [
  42493. {
  42494. name: "Nano",
  42495. height: math.unit(18 + 7/12, "feet")
  42496. },
  42497. {
  42498. name: "Micro",
  42499. height: math.unit(1.5, "megameters")
  42500. },
  42501. {
  42502. name: "Normal",
  42503. height: math.unit(440, "megameters"),
  42504. default: true
  42505. },
  42506. {
  42507. name: "Macro",
  42508. height: math.unit(2.5, "gigameters")
  42509. },
  42510. {
  42511. name: "Gigamacro",
  42512. height: math.unit(2, "galaxies")
  42513. },
  42514. ]
  42515. ))
  42516. characterMakers.push(() => makeCharacter(
  42517. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  42518. {
  42519. side: {
  42520. height: math.unit(32, "feet"),
  42521. weight: math.unit(250000, "lb"),
  42522. name: "Side",
  42523. image: {
  42524. source: "./media/characters/silverwing/side.svg",
  42525. extra: 1100/1019,
  42526. bottom: 204/1304
  42527. }
  42528. },
  42529. },
  42530. [
  42531. {
  42532. name: "Normal",
  42533. height: math.unit(32, "feet"),
  42534. default: true
  42535. },
  42536. ]
  42537. ))
  42538. characterMakers.push(() => makeCharacter(
  42539. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  42540. {
  42541. front: {
  42542. height: math.unit(6 + 6/12, "feet"),
  42543. weight: math.unit(350, "lb"),
  42544. name: "Front",
  42545. image: {
  42546. source: "./media/characters/tristan-hawthorne/front.svg",
  42547. extra: 1159/1124,
  42548. bottom: 37/1196
  42549. },
  42550. form: "labrador",
  42551. default: true
  42552. },
  42553. skunkFront: {
  42554. height: math.unit(4 + 6/12, "feet"),
  42555. weight: math.unit(120, "lb"),
  42556. name: "Front",
  42557. image: {
  42558. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  42559. extra: 1609/1551,
  42560. bottom: 169/1778
  42561. },
  42562. form: "skunk",
  42563. default: true
  42564. },
  42565. },
  42566. [
  42567. {
  42568. name: "Normal",
  42569. height: math.unit(6 + 6/12, "feet"),
  42570. form: "labrador",
  42571. default: true
  42572. },
  42573. {
  42574. name: "Normal",
  42575. height: math.unit(4 + 6/12, "feet"),
  42576. form: "skunk",
  42577. default: true
  42578. },
  42579. ],
  42580. {
  42581. "labrador": {
  42582. name: "Labrador",
  42583. default: true
  42584. },
  42585. "skunk": {
  42586. name: "Skunk"
  42587. }
  42588. }
  42589. ))
  42590. characterMakers.push(() => makeCharacter(
  42591. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  42592. {
  42593. front: {
  42594. height: math.unit(5 + 11/12, "feet"),
  42595. weight: math.unit(190, "lb"),
  42596. name: "Front",
  42597. image: {
  42598. source: "./media/characters/mizu/front.svg",
  42599. extra: 1988/1788,
  42600. bottom: 14/2002
  42601. }
  42602. },
  42603. },
  42604. [
  42605. {
  42606. name: "Normal",
  42607. height: math.unit(5 + 11/12, "feet"),
  42608. default: true
  42609. },
  42610. ]
  42611. ))
  42612. characterMakers.push(() => makeCharacter(
  42613. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  42614. {
  42615. front: {
  42616. height: math.unit(1.7, "feet"),
  42617. weight: math.unit(50, "lb"),
  42618. name: "Front",
  42619. image: {
  42620. source: "./media/characters/dechroma/front.svg",
  42621. extra: 1095/859,
  42622. bottom: 64/1159
  42623. }
  42624. },
  42625. },
  42626. [
  42627. {
  42628. name: "Normal",
  42629. height: math.unit(1.7, "feet"),
  42630. default: true
  42631. },
  42632. ]
  42633. ))
  42634. characterMakers.push(() => makeCharacter(
  42635. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  42636. {
  42637. side: {
  42638. height: math.unit(30, "feet"),
  42639. name: "Side",
  42640. image: {
  42641. source: "./media/characters/veluren-thanazel/side.svg",
  42642. extra: 1611/633,
  42643. bottom: 118/1729
  42644. }
  42645. },
  42646. front: {
  42647. height: math.unit(30, "feet"),
  42648. name: "Front",
  42649. image: {
  42650. source: "./media/characters/veluren-thanazel/front.svg",
  42651. extra: 1486/636,
  42652. bottom: 238/1724
  42653. }
  42654. },
  42655. head: {
  42656. height: math.unit(21.4, "feet"),
  42657. name: "Head",
  42658. image: {
  42659. source: "./media/characters/veluren-thanazel/head.svg"
  42660. }
  42661. },
  42662. genitals: {
  42663. height: math.unit(19.4, "feet"),
  42664. name: "Genitals",
  42665. image: {
  42666. source: "./media/characters/veluren-thanazel/genitals.svg"
  42667. }
  42668. },
  42669. },
  42670. [
  42671. {
  42672. name: "Social",
  42673. height: math.unit(6, "feet")
  42674. },
  42675. {
  42676. name: "Play",
  42677. height: math.unit(12, "feet")
  42678. },
  42679. {
  42680. name: "True",
  42681. height: math.unit(30, "feet"),
  42682. default: true
  42683. },
  42684. ]
  42685. ))
  42686. characterMakers.push(() => makeCharacter(
  42687. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  42688. {
  42689. front: {
  42690. height: math.unit(7 + 6/12, "feet"),
  42691. weight: math.unit(500, "kg"),
  42692. name: "Front",
  42693. image: {
  42694. source: "./media/characters/arcturas/front.svg",
  42695. extra: 1700/1500,
  42696. bottom: 145/1845
  42697. }
  42698. },
  42699. },
  42700. [
  42701. {
  42702. name: "Normal",
  42703. height: math.unit(7 + 6/12, "feet"),
  42704. default: true
  42705. },
  42706. ]
  42707. ))
  42708. characterMakers.push(() => makeCharacter(
  42709. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  42710. {
  42711. side: {
  42712. height: math.unit(6, "feet"),
  42713. weight: math.unit(2, "tons"),
  42714. name: "Side",
  42715. image: {
  42716. source: "./media/characters/vitaen/side.svg",
  42717. extra: 1157/617,
  42718. bottom: 122/1279
  42719. }
  42720. },
  42721. },
  42722. [
  42723. {
  42724. name: "Normal",
  42725. height: math.unit(6, "feet"),
  42726. default: true
  42727. },
  42728. ]
  42729. ))
  42730. characterMakers.push(() => makeCharacter(
  42731. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  42732. {
  42733. front: {
  42734. height: math.unit(19, "feet"),
  42735. name: "Front",
  42736. image: {
  42737. source: "./media/characters/fia-dreamweaver/front.svg",
  42738. extra: 1630/1504,
  42739. bottom: 25/1655
  42740. }
  42741. },
  42742. },
  42743. [
  42744. {
  42745. name: "Normal",
  42746. height: math.unit(19, "feet"),
  42747. default: true
  42748. },
  42749. ]
  42750. ))
  42751. characterMakers.push(() => makeCharacter(
  42752. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  42753. {
  42754. front: {
  42755. height: math.unit(5 + 4/12, "feet"),
  42756. name: "Front",
  42757. image: {
  42758. source: "./media/characters/artan/front.svg",
  42759. extra: 1618/1535,
  42760. bottom: 46/1664
  42761. }
  42762. },
  42763. back: {
  42764. height: math.unit(5 + 4/12, "feet"),
  42765. name: "Back",
  42766. image: {
  42767. source: "./media/characters/artan/back.svg",
  42768. extra: 1618/1543,
  42769. bottom: 31/1649
  42770. }
  42771. },
  42772. },
  42773. [
  42774. {
  42775. name: "Normal",
  42776. height: math.unit(5 + 4/12, "feet"),
  42777. default: true
  42778. },
  42779. ]
  42780. ))
  42781. characterMakers.push(() => makeCharacter(
  42782. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  42783. {
  42784. side: {
  42785. height: math.unit(182, "cm"),
  42786. weight: math.unit(1000, "lb"),
  42787. name: "Side",
  42788. image: {
  42789. source: "./media/characters/silver-dragon/side.svg",
  42790. extra: 710/287,
  42791. bottom: 88/798
  42792. }
  42793. },
  42794. },
  42795. [
  42796. {
  42797. name: "Normal",
  42798. height: math.unit(182, "cm"),
  42799. default: true
  42800. },
  42801. ]
  42802. ))
  42803. characterMakers.push(() => makeCharacter(
  42804. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  42805. {
  42806. side: {
  42807. height: math.unit(6 + 6/12, "feet"),
  42808. weight: math.unit(1.5, "tons"),
  42809. name: "Side",
  42810. image: {
  42811. source: "./media/characters/zephyr/side.svg",
  42812. extra: 1433/586,
  42813. bottom: 109/1542
  42814. }
  42815. },
  42816. },
  42817. [
  42818. {
  42819. name: "Normal",
  42820. height: math.unit(6 + 6/12, "feet"),
  42821. default: true
  42822. },
  42823. ]
  42824. ))
  42825. characterMakers.push(() => makeCharacter(
  42826. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  42827. {
  42828. side: {
  42829. height: math.unit(1, "feet"),
  42830. name: "Side",
  42831. image: {
  42832. source: "./media/characters/vixye/side.svg",
  42833. extra: 632/541,
  42834. bottom: 0/632
  42835. }
  42836. },
  42837. },
  42838. [
  42839. {
  42840. name: "Normal",
  42841. height: math.unit(1, "feet"),
  42842. default: true
  42843. },
  42844. {
  42845. name: "True",
  42846. height: math.unit(1e15, "multiverses")
  42847. },
  42848. ]
  42849. ))
  42850. characterMakers.push(() => makeCharacter(
  42851. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  42852. {
  42853. front: {
  42854. height: math.unit(8 + 2/12, "feet"),
  42855. weight: math.unit(650, "lb"),
  42856. name: "Front",
  42857. image: {
  42858. source: "./media/characters/darla-mac-lochlainn/front.svg",
  42859. extra: 1174/1137,
  42860. bottom: 82/1256
  42861. }
  42862. },
  42863. back: {
  42864. height: math.unit(8 + 2/12, "feet"),
  42865. weight: math.unit(650, "lb"),
  42866. name: "Back",
  42867. image: {
  42868. source: "./media/characters/darla-mac-lochlainn/back.svg",
  42869. extra: 1204/1157,
  42870. bottom: 46/1250
  42871. }
  42872. },
  42873. },
  42874. [
  42875. {
  42876. name: "Wildform",
  42877. height: math.unit(8 + 2/12, "feet"),
  42878. default: true
  42879. },
  42880. ]
  42881. ))
  42882. characterMakers.push(() => makeCharacter(
  42883. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  42884. {
  42885. front: {
  42886. height: math.unit(18, "feet"),
  42887. name: "Front",
  42888. image: {
  42889. source: "./media/characters/cyphin/front.svg",
  42890. extra: 970/886,
  42891. bottom: 42/1012
  42892. }
  42893. },
  42894. back: {
  42895. height: math.unit(18, "feet"),
  42896. name: "Back",
  42897. image: {
  42898. source: "./media/characters/cyphin/back.svg",
  42899. extra: 1009/894,
  42900. bottom: 24/1033
  42901. }
  42902. },
  42903. head: {
  42904. height: math.unit(5.05, "feet"),
  42905. name: "Head",
  42906. image: {
  42907. source: "./media/characters/cyphin/head.svg"
  42908. }
  42909. },
  42910. tailbud: {
  42911. height: math.unit(5, "feet"),
  42912. name: "Tailbud",
  42913. image: {
  42914. source: "./media/characters/cyphin/tailbud.svg"
  42915. }
  42916. },
  42917. },
  42918. [
  42919. ]
  42920. ))
  42921. characterMakers.push(() => makeCharacter(
  42922. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  42923. {
  42924. side: {
  42925. height: math.unit(10, "feet"),
  42926. weight: math.unit(6, "tons"),
  42927. name: "Side",
  42928. image: {
  42929. source: "./media/characters/raijin/side.svg",
  42930. extra: 1529/613,
  42931. bottom: 337/1866
  42932. }
  42933. },
  42934. },
  42935. [
  42936. {
  42937. name: "Normal",
  42938. height: math.unit(10, "feet"),
  42939. default: true
  42940. },
  42941. ]
  42942. ))
  42943. characterMakers.push(() => makeCharacter(
  42944. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  42945. {
  42946. side: {
  42947. height: math.unit(9, "feet"),
  42948. name: "Side",
  42949. image: {
  42950. source: "./media/characters/nilghais/side.svg",
  42951. extra: 1047/744,
  42952. bottom: 91/1138
  42953. }
  42954. },
  42955. head: {
  42956. height: math.unit(3.14, "feet"),
  42957. name: "Head",
  42958. image: {
  42959. source: "./media/characters/nilghais/head.svg"
  42960. }
  42961. },
  42962. mouth: {
  42963. height: math.unit(4.6, "feet"),
  42964. name: "Mouth",
  42965. image: {
  42966. source: "./media/characters/nilghais/mouth.svg"
  42967. }
  42968. },
  42969. wings: {
  42970. height: math.unit(24, "feet"),
  42971. name: "Wings",
  42972. image: {
  42973. source: "./media/characters/nilghais/wings.svg"
  42974. }
  42975. },
  42976. ass: {
  42977. height: math.unit(6.12, "feet"),
  42978. name: "Ass",
  42979. image: {
  42980. source: "./media/characters/nilghais/ass.svg"
  42981. }
  42982. },
  42983. },
  42984. [
  42985. {
  42986. name: "Normal",
  42987. height: math.unit(9, "feet"),
  42988. default: true
  42989. },
  42990. ]
  42991. ))
  42992. characterMakers.push(() => makeCharacter(
  42993. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  42994. {
  42995. regular: {
  42996. height: math.unit(16 + 2/12, "feet"),
  42997. weight: math.unit(2300, "lb"),
  42998. name: "Regular",
  42999. image: {
  43000. source: "./media/characters/zolgar/regular.svg",
  43001. extra: 1246/1004,
  43002. bottom: 124/1370
  43003. }
  43004. },
  43005. boxers: {
  43006. height: math.unit(16 + 2/12, "feet"),
  43007. weight: math.unit(2300, "lb"),
  43008. name: "Boxers",
  43009. image: {
  43010. source: "./media/characters/zolgar/boxers.svg",
  43011. extra: 1246/1004,
  43012. bottom: 124/1370
  43013. }
  43014. },
  43015. armored: {
  43016. height: math.unit(16 + 2/12, "feet"),
  43017. weight: math.unit(2300, "lb"),
  43018. name: "Armored",
  43019. image: {
  43020. source: "./media/characters/zolgar/armored.svg",
  43021. extra: 1246/1004,
  43022. bottom: 124/1370
  43023. }
  43024. },
  43025. goth: {
  43026. height: math.unit(16 + 2/12, "feet"),
  43027. weight: math.unit(2300, "lb"),
  43028. name: "Goth",
  43029. image: {
  43030. source: "./media/characters/zolgar/goth.svg",
  43031. extra: 1246/1004,
  43032. bottom: 124/1370
  43033. }
  43034. },
  43035. },
  43036. [
  43037. {
  43038. name: "Shrunken Down",
  43039. height: math.unit(9 + 2/12, "feet")
  43040. },
  43041. {
  43042. name: "Normal",
  43043. height: math.unit(16 + 2/12, "feet"),
  43044. default: true
  43045. },
  43046. ]
  43047. ))
  43048. characterMakers.push(() => makeCharacter(
  43049. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  43050. {
  43051. front: {
  43052. height: math.unit(6, "feet"),
  43053. weight: math.unit(168, "lb"),
  43054. name: "Front",
  43055. image: {
  43056. source: "./media/characters/luca/front.svg",
  43057. extra: 841/667,
  43058. bottom: 102/943
  43059. }
  43060. },
  43061. },
  43062. [
  43063. {
  43064. name: "Normal",
  43065. height: math.unit(6, "feet"),
  43066. default: true
  43067. },
  43068. ]
  43069. ))
  43070. characterMakers.push(() => makeCharacter(
  43071. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  43072. {
  43073. side: {
  43074. height: math.unit(7 + 3/12, "feet"),
  43075. weight: math.unit(312, "lb"),
  43076. name: "Side",
  43077. image: {
  43078. source: "./media/characters/zezo/side.svg",
  43079. extra: 1192/1067,
  43080. bottom: 63/1255
  43081. }
  43082. },
  43083. },
  43084. [
  43085. {
  43086. name: "Normal",
  43087. height: math.unit(7 + 3/12, "feet"),
  43088. default: true
  43089. },
  43090. ]
  43091. ))
  43092. characterMakers.push(() => makeCharacter(
  43093. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  43094. {
  43095. front: {
  43096. height: math.unit(5 + 5/12, "feet"),
  43097. weight: math.unit(170, "lb"),
  43098. name: "Front",
  43099. image: {
  43100. source: "./media/characters/mayso/front.svg",
  43101. extra: 1215/1108,
  43102. bottom: 16/1231
  43103. }
  43104. },
  43105. },
  43106. [
  43107. {
  43108. name: "Normal",
  43109. height: math.unit(5 + 5/12, "feet"),
  43110. default: true
  43111. },
  43112. ]
  43113. ))
  43114. characterMakers.push(() => makeCharacter(
  43115. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  43116. {
  43117. front: {
  43118. height: math.unit(4 + 3/12, "feet"),
  43119. weight: math.unit(80, "lb"),
  43120. name: "Front",
  43121. image: {
  43122. source: "./media/characters/hess/front.svg",
  43123. extra: 1200/1123,
  43124. bottom: 16/1216
  43125. }
  43126. },
  43127. },
  43128. [
  43129. {
  43130. name: "Normal",
  43131. height: math.unit(4 + 3/12, "feet"),
  43132. default: true
  43133. },
  43134. ]
  43135. ))
  43136. characterMakers.push(() => makeCharacter(
  43137. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  43138. {
  43139. front: {
  43140. height: math.unit(1.9, "meters"),
  43141. name: "Front",
  43142. image: {
  43143. source: "./media/characters/ashgar/front.svg",
  43144. extra: 1177/1146,
  43145. bottom: 99/1276
  43146. }
  43147. },
  43148. back: {
  43149. height: math.unit(1.9, "meters"),
  43150. name: "Back",
  43151. image: {
  43152. source: "./media/characters/ashgar/back.svg",
  43153. extra: 1201/1183,
  43154. bottom: 53/1254
  43155. }
  43156. },
  43157. feral: {
  43158. height: math.unit(1.4, "meters"),
  43159. name: "Feral",
  43160. image: {
  43161. source: "./media/characters/ashgar/feral.svg",
  43162. extra: 370/345,
  43163. bottom: 45/415
  43164. }
  43165. },
  43166. },
  43167. [
  43168. {
  43169. name: "Normal",
  43170. height: math.unit(1.9, "meters"),
  43171. default: true
  43172. },
  43173. ]
  43174. ))
  43175. characterMakers.push(() => makeCharacter(
  43176. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  43177. {
  43178. regular: {
  43179. height: math.unit(6, "feet"),
  43180. weight: math.unit(220, "lb"),
  43181. name: "Regular",
  43182. image: {
  43183. source: "./media/characters/phillip/regular.svg",
  43184. extra: 1373/1277,
  43185. bottom: 75/1448
  43186. }
  43187. },
  43188. dressed: {
  43189. height: math.unit(6, "feet"),
  43190. weight: math.unit(220, "lb"),
  43191. name: "Dressed",
  43192. image: {
  43193. source: "./media/characters/phillip/dressed.svg",
  43194. extra: 1373/1277,
  43195. bottom: 75/1448
  43196. }
  43197. },
  43198. paw: {
  43199. height: math.unit(1.44, "feet"),
  43200. name: "Paw",
  43201. image: {
  43202. source: "./media/characters/phillip/paw.svg"
  43203. }
  43204. },
  43205. },
  43206. [
  43207. {
  43208. name: "Normal",
  43209. height: math.unit(6, "feet"),
  43210. default: true
  43211. },
  43212. ]
  43213. ))
  43214. characterMakers.push(() => makeCharacter(
  43215. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  43216. {
  43217. side: {
  43218. height: math.unit(42, "feet"),
  43219. name: "Side",
  43220. image: {
  43221. source: "./media/characters/uvula/side.svg",
  43222. extra: 683/586,
  43223. bottom: 60/743
  43224. }
  43225. },
  43226. front: {
  43227. height: math.unit(42, "feet"),
  43228. name: "Front",
  43229. image: {
  43230. source: "./media/characters/uvula/front.svg",
  43231. extra: 705/613,
  43232. bottom: 54/759
  43233. }
  43234. },
  43235. maw: {
  43236. height: math.unit(23.5, "feet"),
  43237. name: "Maw",
  43238. image: {
  43239. source: "./media/characters/uvula/maw.svg"
  43240. }
  43241. },
  43242. },
  43243. [
  43244. {
  43245. name: "Original Size",
  43246. height: math.unit(14, "inches")
  43247. },
  43248. {
  43249. name: "Human Size",
  43250. height: math.unit(6, "feet")
  43251. },
  43252. {
  43253. name: "Big",
  43254. height: math.unit(42, "feet"),
  43255. default: true
  43256. },
  43257. {
  43258. name: "Bigger",
  43259. height: math.unit(100, "feet")
  43260. },
  43261. ]
  43262. ))
  43263. characterMakers.push(() => makeCharacter(
  43264. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  43265. {
  43266. front: {
  43267. height: math.unit(5 + 11/12, "feet"),
  43268. name: "Front",
  43269. image: {
  43270. source: "./media/characters/lannah/front.svg",
  43271. extra: 1208/1113,
  43272. bottom: 97/1305
  43273. }
  43274. },
  43275. },
  43276. [
  43277. {
  43278. name: "Normal",
  43279. height: math.unit(5 + 11/12, "feet"),
  43280. default: true
  43281. },
  43282. ]
  43283. ))
  43284. characterMakers.push(() => makeCharacter(
  43285. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  43286. {
  43287. front: {
  43288. height: math.unit(6 + 3/12, "feet"),
  43289. weight: math.unit(3.5, "tons"),
  43290. name: "Front",
  43291. image: {
  43292. source: "./media/characters/emberflame/front.svg",
  43293. extra: 1198/672,
  43294. bottom: 82/1280
  43295. }
  43296. },
  43297. side: {
  43298. height: math.unit(6 + 3/12, "feet"),
  43299. weight: math.unit(3.5, "tons"),
  43300. name: "Side",
  43301. image: {
  43302. source: "./media/characters/emberflame/side.svg",
  43303. extra: 938/527,
  43304. bottom: 56/994
  43305. }
  43306. },
  43307. },
  43308. [
  43309. {
  43310. name: "Normal",
  43311. height: math.unit(6 + 3/12, "feet"),
  43312. default: true
  43313. },
  43314. ]
  43315. ))
  43316. characterMakers.push(() => makeCharacter(
  43317. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  43318. {
  43319. side: {
  43320. height: math.unit(17.5, "feet"),
  43321. weight: math.unit(35, "tons"),
  43322. name: "Side",
  43323. image: {
  43324. source: "./media/characters/sophie-ambrose/side.svg",
  43325. extra: 1573/1242,
  43326. bottom: 71/1644
  43327. }
  43328. },
  43329. maw: {
  43330. height: math.unit(7.4, "feet"),
  43331. name: "Maw",
  43332. image: {
  43333. source: "./media/characters/sophie-ambrose/maw.svg"
  43334. }
  43335. },
  43336. },
  43337. [
  43338. {
  43339. name: "Normal",
  43340. height: math.unit(17.5, "feet"),
  43341. default: true
  43342. },
  43343. ]
  43344. ))
  43345. characterMakers.push(() => makeCharacter(
  43346. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  43347. {
  43348. front: {
  43349. height: math.unit(280, "feet"),
  43350. weight: math.unit(550, "tons"),
  43351. name: "Front",
  43352. image: {
  43353. source: "./media/characters/king-mugi/front.svg",
  43354. extra: 1102/947,
  43355. bottom: 104/1206
  43356. }
  43357. },
  43358. },
  43359. [
  43360. {
  43361. name: "King Mugi",
  43362. height: math.unit(280, "feet"),
  43363. default: true
  43364. },
  43365. ]
  43366. ))
  43367. characterMakers.push(() => makeCharacter(
  43368. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  43369. {
  43370. front: {
  43371. height: math.unit(64, "meters"),
  43372. name: "Front",
  43373. image: {
  43374. source: "./media/characters/nova-fox/front.svg",
  43375. extra: 1310/1246,
  43376. bottom: 65/1375
  43377. }
  43378. },
  43379. },
  43380. [
  43381. {
  43382. name: "Macro",
  43383. height: math.unit(64, "meters"),
  43384. default: true
  43385. },
  43386. ]
  43387. ))
  43388. characterMakers.push(() => makeCharacter(
  43389. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  43390. {
  43391. front: {
  43392. height: math.unit(6 + 3/12, "feet"),
  43393. weight: math.unit(170, "lb"),
  43394. name: "Front",
  43395. image: {
  43396. source: "./media/characters/sam-bat/front.svg",
  43397. extra: 1601/1411,
  43398. bottom: 125/1726
  43399. }
  43400. },
  43401. back: {
  43402. height: math.unit(6 + 3/12, "feet"),
  43403. weight: math.unit(170, "lb"),
  43404. name: "Back",
  43405. image: {
  43406. source: "./media/characters/sam-bat/back.svg",
  43407. extra: 1577/1405,
  43408. bottom: 58/1635
  43409. }
  43410. },
  43411. },
  43412. [
  43413. {
  43414. name: "Normal",
  43415. height: math.unit(6 + 3/12, "feet"),
  43416. default: true
  43417. },
  43418. ]
  43419. ))
  43420. characterMakers.push(() => makeCharacter(
  43421. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  43422. {
  43423. front: {
  43424. height: math.unit(59, "feet"),
  43425. weight: math.unit(40000, "lb"),
  43426. name: "Front",
  43427. image: {
  43428. source: "./media/characters/inari/front.svg",
  43429. extra: 1884/1350,
  43430. bottom: 95/1979
  43431. }
  43432. },
  43433. },
  43434. [
  43435. {
  43436. name: "Gigantamax",
  43437. height: math.unit(59, "feet"),
  43438. default: true
  43439. },
  43440. ]
  43441. ))
  43442. characterMakers.push(() => makeCharacter(
  43443. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  43444. {
  43445. front: {
  43446. height: math.unit(5 + 8/12, "feet"),
  43447. name: "Front",
  43448. image: {
  43449. source: "./media/characters/elizabeth/front.svg",
  43450. extra: 1395/1298,
  43451. bottom: 54/1449
  43452. }
  43453. },
  43454. mouth: {
  43455. height: math.unit(1.97, "feet"),
  43456. name: "Mouth",
  43457. image: {
  43458. source: "./media/characters/elizabeth/mouth.svg"
  43459. }
  43460. },
  43461. foot: {
  43462. height: math.unit(1.17, "feet"),
  43463. name: "Foot",
  43464. image: {
  43465. source: "./media/characters/elizabeth/foot.svg"
  43466. }
  43467. },
  43468. },
  43469. [
  43470. {
  43471. name: "Normal",
  43472. height: math.unit(5 + 8/12, "feet"),
  43473. default: true
  43474. },
  43475. {
  43476. name: "Minimacro",
  43477. height: math.unit(18, "feet")
  43478. },
  43479. {
  43480. name: "Macro",
  43481. height: math.unit(180, "feet")
  43482. },
  43483. ]
  43484. ))
  43485. characterMakers.push(() => makeCharacter(
  43486. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  43487. {
  43488. front: {
  43489. height: math.unit(5 + 2/12, "feet"),
  43490. name: "Front",
  43491. image: {
  43492. source: "./media/characters/october-gossamer/front.svg",
  43493. extra: 505/454,
  43494. bottom: 7/512
  43495. }
  43496. },
  43497. back: {
  43498. height: math.unit(5 + 2/12, "feet"),
  43499. name: "Back",
  43500. image: {
  43501. source: "./media/characters/october-gossamer/back.svg",
  43502. extra: 501/454,
  43503. bottom: 11/512
  43504. }
  43505. },
  43506. },
  43507. [
  43508. {
  43509. name: "Normal",
  43510. height: math.unit(5 + 2/12, "feet"),
  43511. default: true
  43512. },
  43513. ]
  43514. ))
  43515. characterMakers.push(() => makeCharacter(
  43516. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  43517. {
  43518. front: {
  43519. height: math.unit(5, "feet"),
  43520. name: "Front",
  43521. image: {
  43522. source: "./media/characters/epiglottis/front.svg",
  43523. extra: 923/849,
  43524. bottom: 17/940
  43525. }
  43526. },
  43527. },
  43528. [
  43529. {
  43530. name: "Original Size",
  43531. height: math.unit(10, "inches")
  43532. },
  43533. {
  43534. name: "Human Size",
  43535. height: math.unit(5, "feet"),
  43536. default: true
  43537. },
  43538. {
  43539. name: "Big",
  43540. height: math.unit(25, "feet")
  43541. },
  43542. {
  43543. name: "Bigger",
  43544. height: math.unit(50, "feet")
  43545. },
  43546. {
  43547. name: "oh lawd",
  43548. height: math.unit(75, "feet")
  43549. },
  43550. ]
  43551. ))
  43552. characterMakers.push(() => makeCharacter(
  43553. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  43554. {
  43555. front: {
  43556. height: math.unit(2 + 4/12, "feet"),
  43557. weight: math.unit(60, "lb"),
  43558. name: "Front",
  43559. image: {
  43560. source: "./media/characters/lerm/front.svg",
  43561. extra: 796/790,
  43562. bottom: 79/875
  43563. }
  43564. },
  43565. },
  43566. [
  43567. {
  43568. name: "Normal",
  43569. height: math.unit(2 + 4/12, "feet"),
  43570. default: true
  43571. },
  43572. ]
  43573. ))
  43574. characterMakers.push(() => makeCharacter(
  43575. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  43576. {
  43577. front: {
  43578. height: math.unit(5.5, "feet"),
  43579. weight: math.unit(130, "lb"),
  43580. name: "Front",
  43581. image: {
  43582. source: "./media/characters/xena-nebadon/front.svg",
  43583. extra: 1828/1730,
  43584. bottom: 79/1907
  43585. }
  43586. },
  43587. },
  43588. [
  43589. {
  43590. name: "Tiny Puppy",
  43591. height: math.unit(3, "inches")
  43592. },
  43593. {
  43594. name: "Normal",
  43595. height: math.unit(5.5, "feet"),
  43596. default: true
  43597. },
  43598. {
  43599. name: "Lotta Lady",
  43600. height: math.unit(12, "feet")
  43601. },
  43602. {
  43603. name: "Pretty Big",
  43604. height: math.unit(100, "feet")
  43605. },
  43606. {
  43607. name: "Big",
  43608. height: math.unit(500, "feet")
  43609. },
  43610. {
  43611. name: "Skyscraper Toys",
  43612. height: math.unit(2500, "feet")
  43613. },
  43614. {
  43615. name: "Plane Catcher",
  43616. height: math.unit(8, "miles")
  43617. },
  43618. {
  43619. name: "Planet Toys",
  43620. height: math.unit(15, "earths")
  43621. },
  43622. {
  43623. name: "Stardust",
  43624. height: math.unit(0.25, "galaxies")
  43625. },
  43626. {
  43627. name: "Snacks",
  43628. height: math.unit(70, "universes")
  43629. },
  43630. ]
  43631. ))
  43632. characterMakers.push(() => makeCharacter(
  43633. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  43634. {
  43635. front: {
  43636. height: math.unit(1.6, "meters"),
  43637. weight: math.unit(60, "kg"),
  43638. name: "Front",
  43639. image: {
  43640. source: "./media/characters/bounty/front.svg",
  43641. extra: 1426/1308,
  43642. bottom: 15/1441
  43643. }
  43644. },
  43645. back: {
  43646. height: math.unit(1.6, "meters"),
  43647. weight: math.unit(60, "kg"),
  43648. name: "Back",
  43649. image: {
  43650. source: "./media/characters/bounty/back.svg",
  43651. extra: 1417/1307,
  43652. bottom: 8/1425
  43653. }
  43654. },
  43655. },
  43656. [
  43657. {
  43658. name: "Normal",
  43659. height: math.unit(1.6, "meters"),
  43660. default: true
  43661. },
  43662. {
  43663. name: "Macro",
  43664. height: math.unit(300, "meters")
  43665. },
  43666. ]
  43667. ))
  43668. characterMakers.push(() => makeCharacter(
  43669. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  43670. {
  43671. front: {
  43672. height: math.unit(2 + 8/12, "feet"),
  43673. weight: math.unit(15, "lb"),
  43674. name: "Front",
  43675. image: {
  43676. source: "./media/characters/mochi/front.svg",
  43677. extra: 1022/852,
  43678. bottom: 435/1457
  43679. }
  43680. },
  43681. back: {
  43682. height: math.unit(2 + 8/12, "feet"),
  43683. weight: math.unit(15, "lb"),
  43684. name: "Back",
  43685. image: {
  43686. source: "./media/characters/mochi/back.svg",
  43687. extra: 1335/1119,
  43688. bottom: 39/1374
  43689. }
  43690. },
  43691. bird: {
  43692. height: math.unit(2 + 8/12, "feet"),
  43693. weight: math.unit(15, "lb"),
  43694. name: "Bird",
  43695. image: {
  43696. source: "./media/characters/mochi/bird.svg",
  43697. extra: 1251/1113,
  43698. bottom: 178/1429
  43699. }
  43700. },
  43701. kaiju: {
  43702. height: math.unit(154, "feet"),
  43703. weight: math.unit(1e7, "lb"),
  43704. name: "Kaiju",
  43705. image: {
  43706. source: "./media/characters/mochi/kaiju.svg",
  43707. extra: 460/324,
  43708. bottom: 40/500
  43709. }
  43710. },
  43711. head: {
  43712. height: math.unit(1.21, "feet"),
  43713. name: "Head",
  43714. image: {
  43715. source: "./media/characters/mochi/head.svg"
  43716. }
  43717. },
  43718. alternateTail: {
  43719. height: math.unit(2 + 8/12, "feet"),
  43720. weight: math.unit(45, "lb"),
  43721. name: "Alternate Tail",
  43722. image: {
  43723. source: "./media/characters/mochi/alternate-tail.svg",
  43724. extra: 139/76,
  43725. bottom: 45/184
  43726. }
  43727. },
  43728. },
  43729. [
  43730. {
  43731. name: "Micro",
  43732. height: math.unit(2, "inches")
  43733. },
  43734. {
  43735. name: "Normal",
  43736. height: math.unit(2 + 8/12, "feet"),
  43737. default: true
  43738. },
  43739. {
  43740. name: "Macro",
  43741. height: math.unit(106, "feet")
  43742. },
  43743. ]
  43744. ))
  43745. characterMakers.push(() => makeCharacter(
  43746. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  43747. {
  43748. front: {
  43749. height: math.unit(5.67, "feet"),
  43750. weight: math.unit(135, "lb"),
  43751. name: "Front",
  43752. image: {
  43753. source: "./media/characters/sarel/front.svg",
  43754. extra: 865/788,
  43755. bottom: 97/962
  43756. }
  43757. },
  43758. back: {
  43759. height: math.unit(5.67, "feet"),
  43760. weight: math.unit(135, "lb"),
  43761. name: "Back",
  43762. image: {
  43763. source: "./media/characters/sarel/back.svg",
  43764. extra: 857/777,
  43765. bottom: 32/889
  43766. }
  43767. },
  43768. chozoan: {
  43769. height: math.unit(5.67, "feet"),
  43770. weight: math.unit(135, "lb"),
  43771. name: "Chozoan",
  43772. image: {
  43773. source: "./media/characters/sarel/chozoan.svg",
  43774. extra: 865/788,
  43775. bottom: 97/962
  43776. }
  43777. },
  43778. current: {
  43779. height: math.unit(5.67, "feet"),
  43780. weight: math.unit(135, "lb"),
  43781. name: "Current",
  43782. image: {
  43783. source: "./media/characters/sarel/current.svg",
  43784. extra: 865/788,
  43785. bottom: 97/962
  43786. }
  43787. },
  43788. head: {
  43789. height: math.unit(1.77, "feet"),
  43790. name: "Head",
  43791. image: {
  43792. source: "./media/characters/sarel/head.svg"
  43793. }
  43794. },
  43795. claws: {
  43796. height: math.unit(1.8, "feet"),
  43797. name: "Claws",
  43798. image: {
  43799. source: "./media/characters/sarel/claws.svg"
  43800. }
  43801. },
  43802. clawsAlt: {
  43803. height: math.unit(1.8, "feet"),
  43804. name: "Claws-alt",
  43805. image: {
  43806. source: "./media/characters/sarel/claws-alt.svg"
  43807. }
  43808. },
  43809. },
  43810. [
  43811. {
  43812. name: "Normal",
  43813. height: math.unit(5.67, "feet"),
  43814. default: true
  43815. },
  43816. ]
  43817. ))
  43818. characterMakers.push(() => makeCharacter(
  43819. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  43820. {
  43821. front: {
  43822. height: math.unit(5500, "feet"),
  43823. name: "Front",
  43824. image: {
  43825. source: "./media/characters/alyonia/front.svg",
  43826. extra: 1200/1135,
  43827. bottom: 29/1229
  43828. }
  43829. },
  43830. back: {
  43831. height: math.unit(5500, "feet"),
  43832. name: "Back",
  43833. image: {
  43834. source: "./media/characters/alyonia/back.svg",
  43835. extra: 1205/1138,
  43836. bottom: 10/1215
  43837. }
  43838. },
  43839. },
  43840. [
  43841. {
  43842. name: "Small",
  43843. height: math.unit(10, "feet")
  43844. },
  43845. {
  43846. name: "Macro",
  43847. height: math.unit(500, "feet")
  43848. },
  43849. {
  43850. name: "Mega Macro",
  43851. height: math.unit(5500, "feet"),
  43852. default: true
  43853. },
  43854. {
  43855. name: "Mega Macro+",
  43856. height: math.unit(500000, "feet")
  43857. },
  43858. {
  43859. name: "Giga Macro",
  43860. height: math.unit(3000, "miles")
  43861. },
  43862. {
  43863. name: "Tera Macro",
  43864. height: math.unit(2.8e6, "miles")
  43865. },
  43866. {
  43867. name: "Galactic",
  43868. height: math.unit(120000, "lightyears")
  43869. },
  43870. ]
  43871. ))
  43872. characterMakers.push(() => makeCharacter(
  43873. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  43874. {
  43875. werewolf: {
  43876. height: math.unit(8, "feet"),
  43877. weight: math.unit(425, "lb"),
  43878. name: "Werewolf",
  43879. image: {
  43880. source: "./media/characters/autumn/werewolf.svg",
  43881. extra: 2154/2031,
  43882. bottom: 160/2314
  43883. }
  43884. },
  43885. human: {
  43886. height: math.unit(5 + 8/12, "feet"),
  43887. weight: math.unit(150, "lb"),
  43888. name: "Human",
  43889. image: {
  43890. source: "./media/characters/autumn/human.svg",
  43891. extra: 1200/1149,
  43892. bottom: 30/1230
  43893. }
  43894. },
  43895. },
  43896. [
  43897. {
  43898. name: "Normal",
  43899. height: math.unit(8, "feet"),
  43900. default: true
  43901. },
  43902. ]
  43903. ))
  43904. characterMakers.push(() => makeCharacter(
  43905. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  43906. {
  43907. front: {
  43908. height: math.unit(8 + 5/12, "feet"),
  43909. weight: math.unit(825, "lb"),
  43910. name: "Front",
  43911. image: {
  43912. source: "./media/characters/cobalt-charizard/front.svg",
  43913. extra: 1268/1155,
  43914. bottom: 122/1390
  43915. }
  43916. },
  43917. side: {
  43918. height: math.unit(8 + 5/12, "feet"),
  43919. weight: math.unit(825, "lb"),
  43920. name: "Side",
  43921. image: {
  43922. source: "./media/characters/cobalt-charizard/side.svg",
  43923. extra: 1348/1257,
  43924. bottom: 58/1406
  43925. }
  43926. },
  43927. gMax: {
  43928. height: math.unit(134 + 11/12, "feet"),
  43929. name: "G-Max",
  43930. image: {
  43931. source: "./media/characters/cobalt-charizard/g-max.svg",
  43932. extra: 1835/1541,
  43933. bottom: 151/1986
  43934. }
  43935. },
  43936. },
  43937. [
  43938. {
  43939. name: "Normal",
  43940. height: math.unit(8 + 5/12, "feet"),
  43941. default: true
  43942. },
  43943. ]
  43944. ))
  43945. characterMakers.push(() => makeCharacter(
  43946. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  43947. {
  43948. front: {
  43949. height: math.unit(6 + 3/12, "feet"),
  43950. weight: math.unit(210, "lb"),
  43951. name: "Front",
  43952. image: {
  43953. source: "./media/characters/stella/front.svg",
  43954. extra: 3549/3335,
  43955. bottom: 51/3600
  43956. }
  43957. },
  43958. },
  43959. [
  43960. {
  43961. name: "Normal",
  43962. height: math.unit(6 + 3/12, "feet"),
  43963. default: true
  43964. },
  43965. ]
  43966. ))
  43967. characterMakers.push(() => makeCharacter(
  43968. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  43969. {
  43970. front: {
  43971. height: math.unit(5, "feet"),
  43972. weight: math.unit(90, "lb"),
  43973. name: "Front",
  43974. image: {
  43975. source: "./media/characters/riley-bishop/front.svg",
  43976. extra: 1450/1428,
  43977. bottom: 152/1602
  43978. }
  43979. },
  43980. },
  43981. [
  43982. {
  43983. name: "Normal",
  43984. height: math.unit(5, "feet"),
  43985. default: true
  43986. },
  43987. ]
  43988. ))
  43989. characterMakers.push(() => makeCharacter(
  43990. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  43991. {
  43992. side: {
  43993. height: math.unit(8 + 2/12, "feet"),
  43994. weight: math.unit(500, "kg"),
  43995. name: "Side",
  43996. image: {
  43997. source: "./media/characters/theo-arcanine/side.svg",
  43998. extra: 1342/1074,
  43999. bottom: 111/1453
  44000. }
  44001. },
  44002. },
  44003. [
  44004. {
  44005. name: "Normal",
  44006. height: math.unit(8 + 2/12, "feet"),
  44007. default: true
  44008. },
  44009. ]
  44010. ))
  44011. characterMakers.push(() => makeCharacter(
  44012. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  44013. {
  44014. front: {
  44015. height: math.unit(4, "feet"),
  44016. name: "Front",
  44017. image: {
  44018. source: "./media/characters/kali/front.svg",
  44019. extra: 1921/1357,
  44020. bottom: 70/1991
  44021. }
  44022. },
  44023. },
  44024. [
  44025. {
  44026. name: "Normal",
  44027. height: math.unit(4, "feet"),
  44028. default: true
  44029. },
  44030. {
  44031. name: "Macro",
  44032. height: math.unit(32, "meters")
  44033. },
  44034. {
  44035. name: "Macro+",
  44036. height: math.unit(150, "meters")
  44037. },
  44038. {
  44039. name: "Megamacro",
  44040. height: math.unit(7500, "meters")
  44041. },
  44042. {
  44043. name: "Megamacro+",
  44044. height: math.unit(80, "kilometers")
  44045. },
  44046. ]
  44047. ))
  44048. characterMakers.push(() => makeCharacter(
  44049. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  44050. {
  44051. side: {
  44052. height: math.unit(5 + 11/12, "feet"),
  44053. weight: math.unit(236, "lb"),
  44054. name: "Side",
  44055. image: {
  44056. source: "./media/characters/gapp/side.svg",
  44057. extra: 775/340,
  44058. bottom: 58/833
  44059. }
  44060. },
  44061. mouth: {
  44062. height: math.unit(2.98, "feet"),
  44063. name: "Mouth",
  44064. image: {
  44065. source: "./media/characters/gapp/mouth.svg"
  44066. }
  44067. },
  44068. },
  44069. [
  44070. {
  44071. name: "Normal",
  44072. height: math.unit(5 + 1/12, "feet"),
  44073. default: true
  44074. },
  44075. ]
  44076. ))
  44077. characterMakers.push(() => makeCharacter(
  44078. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  44079. {
  44080. front: {
  44081. height: math.unit(6, "feet"),
  44082. name: "Front",
  44083. image: {
  44084. source: "./media/characters/persephone/front.svg",
  44085. extra: 1895/1717,
  44086. bottom: 96/1991
  44087. }
  44088. },
  44089. back: {
  44090. height: math.unit(6, "feet"),
  44091. name: "Back",
  44092. image: {
  44093. source: "./media/characters/persephone/back.svg",
  44094. extra: 1868/1679,
  44095. bottom: 26/1894
  44096. }
  44097. },
  44098. casual: {
  44099. height: math.unit(6, "feet"),
  44100. name: "Casual",
  44101. image: {
  44102. source: "./media/characters/persephone/casual.svg",
  44103. extra: 1713/1541,
  44104. bottom: 76/1789
  44105. }
  44106. },
  44107. },
  44108. [
  44109. {
  44110. name: "Human Size",
  44111. height: math.unit(6, "feet")
  44112. },
  44113. {
  44114. name: "Big Steppy",
  44115. height: math.unit(600, "meters"),
  44116. default: true
  44117. },
  44118. {
  44119. name: "Galaxy Brain",
  44120. height: math.unit(1, "zettameter")
  44121. },
  44122. ]
  44123. ))
  44124. characterMakers.push(() => makeCharacter(
  44125. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  44126. {
  44127. front: {
  44128. height: math.unit(1.85, "meters"),
  44129. name: "Front",
  44130. image: {
  44131. source: "./media/characters/riley-foxthing/front.svg",
  44132. extra: 1495/1354,
  44133. bottom: 122/1617
  44134. }
  44135. },
  44136. frontAlt: {
  44137. height: math.unit(1.85, "meters"),
  44138. name: "Front (Alt)",
  44139. image: {
  44140. source: "./media/characters/riley-foxthing/front-alt.svg",
  44141. extra: 1572/1389,
  44142. bottom: 116/1688
  44143. }
  44144. },
  44145. },
  44146. [
  44147. {
  44148. name: "Normal Sized",
  44149. height: math.unit(1.85, "meters"),
  44150. default: true
  44151. },
  44152. {
  44153. name: "Quite Sizable",
  44154. height: math.unit(5, "meters")
  44155. },
  44156. {
  44157. name: "Rather Large",
  44158. height: math.unit(20, "meters")
  44159. },
  44160. {
  44161. name: "Macro",
  44162. height: math.unit(450, "meters")
  44163. },
  44164. {
  44165. name: "Giga",
  44166. height: math.unit(5, "km")
  44167. },
  44168. ]
  44169. ))
  44170. characterMakers.push(() => makeCharacter(
  44171. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  44172. {
  44173. front: {
  44174. height: math.unit(6, "feet"),
  44175. weight: math.unit(200, "lb"),
  44176. name: "Front",
  44177. image: {
  44178. source: "./media/characters/blizzard/front.svg",
  44179. extra: 1136/990,
  44180. bottom: 136/1272
  44181. }
  44182. },
  44183. back: {
  44184. height: math.unit(6, "feet"),
  44185. weight: math.unit(200, "lb"),
  44186. name: "Back",
  44187. image: {
  44188. source: "./media/characters/blizzard/back.svg",
  44189. extra: 1175/1034,
  44190. bottom: 97/1272
  44191. }
  44192. },
  44193. sitting: {
  44194. height: math.unit(3.725, "feet"),
  44195. weight: math.unit(200, "lb"),
  44196. name: "Sitting",
  44197. image: {
  44198. source: "./media/characters/blizzard/sitting.svg",
  44199. extra: 581/485,
  44200. bottom: 90/671
  44201. }
  44202. },
  44203. frontWizard: {
  44204. height: math.unit(7.9, "feet"),
  44205. weight: math.unit(200, "lb"),
  44206. name: "Front (Wizard)",
  44207. image: {
  44208. source: "./media/characters/blizzard/front-wizard.svg"
  44209. }
  44210. },
  44211. backWizard: {
  44212. height: math.unit(7.9, "feet"),
  44213. weight: math.unit(200, "lb"),
  44214. name: "Back (Wizard)",
  44215. image: {
  44216. source: "./media/characters/blizzard/back-wizard.svg"
  44217. }
  44218. },
  44219. frontNsfw: {
  44220. height: math.unit(6, "feet"),
  44221. weight: math.unit(200, "lb"),
  44222. name: "Front (NSFW)",
  44223. image: {
  44224. source: "./media/characters/blizzard/front-nsfw.svg",
  44225. extra: 1136/990,
  44226. bottom: 136/1272
  44227. }
  44228. },
  44229. backNsfw: {
  44230. height: math.unit(6, "feet"),
  44231. weight: math.unit(200, "lb"),
  44232. name: "Back (NSFW)",
  44233. image: {
  44234. source: "./media/characters/blizzard/back-nsfw.svg",
  44235. extra: 1175/1034,
  44236. bottom: 97/1272
  44237. }
  44238. },
  44239. sittingNsfw: {
  44240. height: math.unit(3.725, "feet"),
  44241. weight: math.unit(200, "lb"),
  44242. name: "Sitting (NSFW)",
  44243. image: {
  44244. source: "./media/characters/blizzard/sitting-nsfw.svg",
  44245. extra: 581/485,
  44246. bottom: 90/671
  44247. }
  44248. },
  44249. wizardFrontNsfw: {
  44250. height: math.unit(7.9, "feet"),
  44251. weight: math.unit(200, "lb"),
  44252. name: "Wizard (Front, NSFW)",
  44253. image: {
  44254. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  44255. }
  44256. },
  44257. },
  44258. [
  44259. {
  44260. name: "Normal",
  44261. height: math.unit(6, "feet"),
  44262. default: true
  44263. },
  44264. ]
  44265. ))
  44266. characterMakers.push(() => makeCharacter(
  44267. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  44268. {
  44269. front: {
  44270. height: math.unit(5 + 2/12, "feet"),
  44271. name: "Front",
  44272. image: {
  44273. source: "./media/characters/lumi/front.svg",
  44274. extra: 1328/1268,
  44275. bottom: 103/1431
  44276. }
  44277. },
  44278. back: {
  44279. height: math.unit(5 + 2/12, "feet"),
  44280. name: "Back",
  44281. image: {
  44282. source: "./media/characters/lumi/back.svg",
  44283. extra: 1381/1327,
  44284. bottom: 43/1424
  44285. }
  44286. },
  44287. },
  44288. [
  44289. {
  44290. name: "Normal",
  44291. height: math.unit(5 + 2/12, "feet"),
  44292. default: true
  44293. },
  44294. ]
  44295. ))
  44296. characterMakers.push(() => makeCharacter(
  44297. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  44298. {
  44299. front: {
  44300. height: math.unit(5 + 9/12, "feet"),
  44301. name: "Front",
  44302. image: {
  44303. source: "./media/characters/aliya-cotton/front.svg",
  44304. extra: 577/564,
  44305. bottom: 29/606
  44306. }
  44307. },
  44308. },
  44309. [
  44310. {
  44311. name: "Normal",
  44312. height: math.unit(5 + 9/12, "feet"),
  44313. default: true
  44314. },
  44315. ]
  44316. ))
  44317. characterMakers.push(() => makeCharacter(
  44318. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  44319. {
  44320. front: {
  44321. height: math.unit(2.7, "meters"),
  44322. weight: math.unit(25000, "lb"),
  44323. name: "Front",
  44324. image: {
  44325. source: "./media/characters/noah-luxray/front.svg",
  44326. extra: 1644/825,
  44327. bottom: 339/1983
  44328. }
  44329. },
  44330. side: {
  44331. height: math.unit(2.97, "meters"),
  44332. weight: math.unit(25000, "lb"),
  44333. name: "Side",
  44334. image: {
  44335. source: "./media/characters/noah-luxray/side.svg",
  44336. extra: 1319/650,
  44337. bottom: 163/1482
  44338. }
  44339. },
  44340. dick: {
  44341. height: math.unit(7.4, "feet"),
  44342. weight: math.unit(2500, "lb"),
  44343. name: "Dick",
  44344. image: {
  44345. source: "./media/characters/noah-luxray/dick.svg"
  44346. }
  44347. },
  44348. dickAlt: {
  44349. height: math.unit(10.83, "feet"),
  44350. weight: math.unit(2500, "lb"),
  44351. name: "Dick-alt",
  44352. image: {
  44353. source: "./media/characters/noah-luxray/dick-alt.svg"
  44354. }
  44355. },
  44356. },
  44357. [
  44358. {
  44359. name: "BIG",
  44360. height: math.unit(2.7, "meters"),
  44361. default: true
  44362. },
  44363. ]
  44364. ))
  44365. characterMakers.push(() => makeCharacter(
  44366. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  44367. {
  44368. standing: {
  44369. height: math.unit(183, "cm"),
  44370. weight: math.unit(68, "kg"),
  44371. name: "Standing",
  44372. image: {
  44373. source: "./media/characters/arion/standing.svg",
  44374. extra: 1869/1807,
  44375. bottom: 93/1962
  44376. }
  44377. },
  44378. reclining: {
  44379. height: math.unit(70.5, "cm"),
  44380. weight: math.unit(68, "lb"),
  44381. name: "Reclining",
  44382. image: {
  44383. source: "./media/characters/arion/reclining.svg",
  44384. extra: 937/870,
  44385. bottom: 63/1000
  44386. }
  44387. },
  44388. },
  44389. [
  44390. {
  44391. name: "Colossus Size, Low",
  44392. height: math.unit(33, "meters"),
  44393. default: true
  44394. },
  44395. {
  44396. name: "Colossus Size, Mid",
  44397. height: math.unit(52, "meters")
  44398. },
  44399. {
  44400. name: "Colossus Size, High",
  44401. height: math.unit(60, "meters")
  44402. },
  44403. {
  44404. name: "Titan Size, Low",
  44405. height: math.unit(91, "meters"),
  44406. },
  44407. {
  44408. name: "Titan Size, Mid",
  44409. height: math.unit(122, "meters")
  44410. },
  44411. {
  44412. name: "Titan Size, High",
  44413. height: math.unit(162, "meters")
  44414. },
  44415. ]
  44416. ))
  44417. characterMakers.push(() => makeCharacter(
  44418. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  44419. {
  44420. front: {
  44421. height: math.unit(53, "meters"),
  44422. name: "Front",
  44423. image: {
  44424. source: "./media/characters/stellar-marbey/front.svg",
  44425. extra: 1913/1805,
  44426. bottom: 92/2005
  44427. }
  44428. },
  44429. back: {
  44430. height: math.unit(53, "meters"),
  44431. name: "Back",
  44432. image: {
  44433. source: "./media/characters/stellar-marbey/back.svg",
  44434. extra: 1960/1851,
  44435. bottom: 28/1988
  44436. }
  44437. },
  44438. mouth: {
  44439. height: math.unit(3.5, "meters"),
  44440. name: "Mouth",
  44441. image: {
  44442. source: "./media/characters/stellar-marbey/mouth.svg"
  44443. }
  44444. },
  44445. },
  44446. [
  44447. {
  44448. name: "Macro",
  44449. height: math.unit(53, "meters"),
  44450. default: true
  44451. },
  44452. ]
  44453. ))
  44454. characterMakers.push(() => makeCharacter(
  44455. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  44456. {
  44457. front: {
  44458. height: math.unit(8 + 1/12, "feet"),
  44459. weight: math.unit(233, "lb"),
  44460. name: "Front",
  44461. image: {
  44462. source: "./media/characters/matsu/front.svg",
  44463. extra: 832/772,
  44464. bottom: 40/872
  44465. }
  44466. },
  44467. back: {
  44468. height: math.unit(8 + 1/12, "feet"),
  44469. weight: math.unit(233, "lb"),
  44470. name: "Back",
  44471. image: {
  44472. source: "./media/characters/matsu/back.svg",
  44473. extra: 839/780,
  44474. bottom: 47/886
  44475. }
  44476. },
  44477. },
  44478. [
  44479. {
  44480. name: "Normal",
  44481. height: math.unit(8 + 1/12, "feet"),
  44482. default: true
  44483. },
  44484. ]
  44485. ))
  44486. characterMakers.push(() => makeCharacter(
  44487. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  44488. {
  44489. front: {
  44490. height: math.unit(4, "feet"),
  44491. weight: math.unit(148, "lb"),
  44492. name: "Front",
  44493. image: {
  44494. source: "./media/characters/thiz/front.svg",
  44495. extra: 1913/1748,
  44496. bottom: 62/1975
  44497. }
  44498. },
  44499. },
  44500. [
  44501. {
  44502. name: "Normal",
  44503. height: math.unit(4, "feet"),
  44504. default: true
  44505. },
  44506. ]
  44507. ))
  44508. characterMakers.push(() => makeCharacter(
  44509. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  44510. {
  44511. front: {
  44512. height: math.unit(7 + 6/12, "feet"),
  44513. weight: math.unit(267, "lb"),
  44514. name: "Front",
  44515. image: {
  44516. source: "./media/characters/marcel/front.svg",
  44517. extra: 1221/1096,
  44518. bottom: 76/1297
  44519. }
  44520. },
  44521. },
  44522. [
  44523. {
  44524. name: "Normal",
  44525. height: math.unit(7 + 6/12, "feet"),
  44526. default: true
  44527. },
  44528. ]
  44529. ))
  44530. characterMakers.push(() => makeCharacter(
  44531. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  44532. {
  44533. side: {
  44534. height: math.unit(42, "meters"),
  44535. name: "Side",
  44536. image: {
  44537. source: "./media/characters/flake/side.svg",
  44538. extra: 1525/1306,
  44539. bottom: 209/1734
  44540. }
  44541. },
  44542. },
  44543. [
  44544. {
  44545. name: "Normal",
  44546. height: math.unit(42, "meters"),
  44547. default: true
  44548. },
  44549. ]
  44550. ))
  44551. characterMakers.push(() => makeCharacter(
  44552. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  44553. {
  44554. dressed: {
  44555. height: math.unit(6 + 4/12, "feet"),
  44556. weight: math.unit(520, "lb"),
  44557. name: "Dressed",
  44558. image: {
  44559. source: "./media/characters/someonne/dressed.svg",
  44560. extra: 1020/1010,
  44561. bottom: 178/1198
  44562. }
  44563. },
  44564. undressed: {
  44565. height: math.unit(6 + 4/12, "feet"),
  44566. weight: math.unit(520, "lb"),
  44567. name: "Undressed",
  44568. image: {
  44569. source: "./media/characters/someonne/undressed.svg",
  44570. extra: 1019/1014,
  44571. bottom: 169/1188
  44572. }
  44573. },
  44574. },
  44575. [
  44576. {
  44577. name: "Normal",
  44578. height: math.unit(6 + 4/12, "feet"),
  44579. default: true
  44580. },
  44581. ]
  44582. ))
  44583. characterMakers.push(() => makeCharacter(
  44584. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  44585. {
  44586. front: {
  44587. height: math.unit(3, "feet"),
  44588. weight: math.unit(30, "lb"),
  44589. name: "Front",
  44590. image: {
  44591. source: "./media/characters/till/front.svg",
  44592. extra: 892/823,
  44593. bottom: 55/947
  44594. }
  44595. },
  44596. },
  44597. [
  44598. {
  44599. name: "Normal",
  44600. height: math.unit(3, "feet"),
  44601. default: true
  44602. },
  44603. ]
  44604. ))
  44605. characterMakers.push(() => makeCharacter(
  44606. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  44607. {
  44608. front: {
  44609. height: math.unit(9 + 8/12, "feet"),
  44610. weight: math.unit(800, "lb"),
  44611. name: "Front",
  44612. image: {
  44613. source: "./media/characters/sydney-heki/front.svg",
  44614. extra: 1360/1300,
  44615. bottom: 22/1382
  44616. }
  44617. },
  44618. back: {
  44619. height: math.unit(9 + 8/12, "feet"),
  44620. weight: math.unit(800, "lb"),
  44621. name: "Back",
  44622. image: {
  44623. source: "./media/characters/sydney-heki/back.svg",
  44624. extra: 1356/1293,
  44625. bottom: 12/1368
  44626. }
  44627. },
  44628. frontDressed: {
  44629. height: math.unit(9 + 8/12, "feet"),
  44630. weight: math.unit(800, "lb"),
  44631. name: "Front-dressed",
  44632. image: {
  44633. source: "./media/characters/sydney-heki/front-dressed.svg",
  44634. extra: 1360/1300,
  44635. bottom: 22/1382
  44636. }
  44637. },
  44638. },
  44639. [
  44640. {
  44641. name: "Normal",
  44642. height: math.unit(9 + 8/12, "feet"),
  44643. default: true
  44644. },
  44645. {
  44646. name: "Macro",
  44647. height: math.unit(500, "feet")
  44648. },
  44649. {
  44650. name: "Megamacro",
  44651. height: math.unit(3.6, "miles")
  44652. },
  44653. ]
  44654. ))
  44655. characterMakers.push(() => makeCharacter(
  44656. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  44657. {
  44658. front: {
  44659. height: math.unit(200, "cm"),
  44660. weight: math.unit(250, "lb"),
  44661. name: "Front",
  44662. image: {
  44663. source: "./media/characters/fowler-karlsson/front.svg",
  44664. extra: 897/845,
  44665. bottom: 123/1020
  44666. }
  44667. },
  44668. back: {
  44669. height: math.unit(200, "cm"),
  44670. weight: math.unit(250, "lb"),
  44671. name: "Back",
  44672. image: {
  44673. source: "./media/characters/fowler-karlsson/back.svg",
  44674. extra: 999/944,
  44675. bottom: 26/1025
  44676. }
  44677. },
  44678. dick: {
  44679. height: math.unit(1.92, "feet"),
  44680. weight: math.unit(150, "lb"),
  44681. name: "Dick",
  44682. image: {
  44683. source: "./media/characters/fowler-karlsson/dick.svg"
  44684. }
  44685. },
  44686. },
  44687. [
  44688. {
  44689. name: "Normal",
  44690. height: math.unit(200, "cm"),
  44691. default: true
  44692. },
  44693. {
  44694. name: "Smaller Macro",
  44695. height: math.unit(90, "m")
  44696. },
  44697. {
  44698. name: "Macro",
  44699. height: math.unit(150, "m")
  44700. },
  44701. {
  44702. name: "Bigger Macro",
  44703. height: math.unit(300, "m")
  44704. },
  44705. ]
  44706. ))
  44707. characterMakers.push(() => makeCharacter(
  44708. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  44709. {
  44710. side: {
  44711. height: math.unit(8 + 2/12, "feet"),
  44712. weight: math.unit(1, "tonne"),
  44713. name: "Side",
  44714. image: {
  44715. source: "./media/characters/rylide/side.svg",
  44716. extra: 1318/1034,
  44717. bottom: 106/1424
  44718. }
  44719. },
  44720. sitting: {
  44721. height: math.unit(303, "cm"),
  44722. weight: math.unit(1, "tonne"),
  44723. name: "Sitting",
  44724. image: {
  44725. source: "./media/characters/rylide/sitting.svg",
  44726. extra: 1303/1103,
  44727. bottom: 36/1339
  44728. }
  44729. },
  44730. },
  44731. [
  44732. {
  44733. name: "Normal",
  44734. height: math.unit(8 + 2/12, "feet"),
  44735. default: true
  44736. },
  44737. ]
  44738. ))
  44739. characterMakers.push(() => makeCharacter(
  44740. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  44741. {
  44742. front: {
  44743. height: math.unit(5 + 10/12, "feet"),
  44744. weight: math.unit(160, "lb"),
  44745. name: "Front",
  44746. image: {
  44747. source: "./media/characters/pudask/front.svg",
  44748. extra: 1616/1590,
  44749. bottom: 161/1777
  44750. }
  44751. },
  44752. },
  44753. [
  44754. {
  44755. name: "Ferret Height",
  44756. height: math.unit(2 + 5/12, "feet")
  44757. },
  44758. {
  44759. name: "Canon Height",
  44760. height: math.unit(5 + 10/12, "feet"),
  44761. default: true
  44762. },
  44763. ]
  44764. ))
  44765. characterMakers.push(() => makeCharacter(
  44766. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  44767. {
  44768. front: {
  44769. height: math.unit(3 + 6/12, "feet"),
  44770. weight: math.unit(60, "lb"),
  44771. name: "Front",
  44772. image: {
  44773. source: "./media/characters/ramita/front.svg",
  44774. extra: 1402/1232,
  44775. bottom: 62/1464
  44776. }
  44777. },
  44778. dressed: {
  44779. height: math.unit(3 + 6/12, "feet"),
  44780. weight: math.unit(60, "lb"),
  44781. name: "Dressed",
  44782. image: {
  44783. source: "./media/characters/ramita/dressed.svg",
  44784. extra: 1534/1249,
  44785. bottom: 50/1584
  44786. }
  44787. },
  44788. },
  44789. [
  44790. {
  44791. name: "Normal",
  44792. height: math.unit(3 + 6/12, "feet"),
  44793. default: true
  44794. },
  44795. ]
  44796. ))
  44797. characterMakers.push(() => makeCharacter(
  44798. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  44799. {
  44800. front: {
  44801. height: math.unit(8, "feet"),
  44802. name: "Front",
  44803. image: {
  44804. source: "./media/characters/ark/front.svg",
  44805. extra: 772/693,
  44806. bottom: 45/817
  44807. }
  44808. },
  44809. },
  44810. [
  44811. {
  44812. name: "Normal",
  44813. height: math.unit(8, "feet"),
  44814. default: true
  44815. },
  44816. ]
  44817. ))
  44818. characterMakers.push(() => makeCharacter(
  44819. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  44820. {
  44821. front: {
  44822. height: math.unit(6, "feet"),
  44823. weight: math.unit(250, "lb"),
  44824. volume: math.unit(5/8, "gallons"),
  44825. name: "Front",
  44826. image: {
  44827. source: "./media/characters/ludwig-horn/front.svg",
  44828. extra: 1782/1635,
  44829. bottom: 96/1878
  44830. }
  44831. },
  44832. back: {
  44833. height: math.unit(6, "feet"),
  44834. weight: math.unit(250, "lb"),
  44835. volume: math.unit(5/8, "gallons"),
  44836. name: "Back",
  44837. image: {
  44838. source: "./media/characters/ludwig-horn/back.svg",
  44839. extra: 1874/1729,
  44840. bottom: 27/1901
  44841. }
  44842. },
  44843. dick: {
  44844. height: math.unit(1.05, "feet"),
  44845. weight: math.unit(15, "lb"),
  44846. volume: math.unit(5/8, "gallons"),
  44847. name: "Dick",
  44848. image: {
  44849. source: "./media/characters/ludwig-horn/dick.svg"
  44850. }
  44851. },
  44852. },
  44853. [
  44854. {
  44855. name: "Small",
  44856. height: math.unit(6, "feet")
  44857. },
  44858. {
  44859. name: "Typical",
  44860. height: math.unit(12, "feet"),
  44861. default: true
  44862. },
  44863. {
  44864. name: "Building",
  44865. height: math.unit(80, "feet")
  44866. },
  44867. {
  44868. name: "Town",
  44869. height: math.unit(800, "feet")
  44870. },
  44871. {
  44872. name: "Kingdom",
  44873. height: math.unit(80000, "feet")
  44874. },
  44875. {
  44876. name: "Planet",
  44877. height: math.unit(8000000, "feet")
  44878. },
  44879. {
  44880. name: "Universe",
  44881. height: math.unit(8000000000, "feet")
  44882. },
  44883. {
  44884. name: "Transcended",
  44885. height: math.unit(8e27, "feet")
  44886. },
  44887. ]
  44888. ))
  44889. characterMakers.push(() => makeCharacter(
  44890. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  44891. {
  44892. front: {
  44893. height: math.unit(5, "feet"),
  44894. weight: math.unit(50, "kg"),
  44895. name: "Front",
  44896. image: {
  44897. source: "./media/characters/biot-avery/front.svg",
  44898. extra: 1295/1232,
  44899. bottom: 86/1381
  44900. }
  44901. },
  44902. },
  44903. [
  44904. {
  44905. name: "Normal",
  44906. height: math.unit(5, "feet"),
  44907. default: true
  44908. },
  44909. ]
  44910. ))
  44911. characterMakers.push(() => makeCharacter(
  44912. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  44913. {
  44914. front: {
  44915. height: math.unit(6, "feet"),
  44916. name: "Front",
  44917. image: {
  44918. source: "./media/characters/kitsune-kiro/front.svg",
  44919. extra: 1270/1158,
  44920. bottom: 42/1312
  44921. }
  44922. },
  44923. frontAlt: {
  44924. height: math.unit(6, "feet"),
  44925. name: "Front-alt",
  44926. image: {
  44927. source: "./media/characters/kitsune-kiro/front-alt.svg",
  44928. extra: 1130/1081,
  44929. bottom: 36/1166
  44930. }
  44931. },
  44932. },
  44933. [
  44934. {
  44935. name: "Smol",
  44936. height: math.unit(3, "feet")
  44937. },
  44938. {
  44939. name: "Normal",
  44940. height: math.unit(6, "feet"),
  44941. default: true
  44942. },
  44943. ]
  44944. ))
  44945. characterMakers.push(() => makeCharacter(
  44946. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  44947. {
  44948. front: {
  44949. height: math.unit(6, "feet"),
  44950. weight: math.unit(125, "lb"),
  44951. name: "Front",
  44952. image: {
  44953. source: "./media/characters/jack-thatcher/front.svg",
  44954. extra: 1474/1370,
  44955. bottom: 26/1500
  44956. }
  44957. },
  44958. back: {
  44959. height: math.unit(6, "feet"),
  44960. weight: math.unit(125, "lb"),
  44961. name: "Back",
  44962. image: {
  44963. source: "./media/characters/jack-thatcher/back.svg",
  44964. extra: 1489/1384,
  44965. bottom: 18/1507
  44966. }
  44967. },
  44968. },
  44969. [
  44970. {
  44971. name: "Normal",
  44972. height: math.unit(6, "feet"),
  44973. default: true
  44974. },
  44975. {
  44976. name: "Macro",
  44977. height: math.unit(75, "feet")
  44978. },
  44979. {
  44980. name: "Macro-er",
  44981. height: math.unit(250, "feet")
  44982. },
  44983. ]
  44984. ))
  44985. characterMakers.push(() => makeCharacter(
  44986. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  44987. {
  44988. front: {
  44989. height: math.unit(7, "feet"),
  44990. weight: math.unit(110, "kg"),
  44991. name: "Front",
  44992. image: {
  44993. source: "./media/characters/max-hyper/front.svg",
  44994. extra: 1969/1881,
  44995. bottom: 49/2018
  44996. }
  44997. },
  44998. },
  44999. [
  45000. {
  45001. name: "Normal",
  45002. height: math.unit(7, "feet"),
  45003. default: true
  45004. },
  45005. ]
  45006. ))
  45007. characterMakers.push(() => makeCharacter(
  45008. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  45009. {
  45010. front: {
  45011. height: math.unit(5 + 5/12, "feet"),
  45012. weight: math.unit(160, "lb"),
  45013. name: "Front",
  45014. image: {
  45015. source: "./media/characters/spook/front.svg",
  45016. extra: 794/791,
  45017. bottom: 54/848
  45018. }
  45019. },
  45020. back: {
  45021. height: math.unit(5 + 5/12, "feet"),
  45022. weight: math.unit(160, "lb"),
  45023. name: "Back",
  45024. image: {
  45025. source: "./media/characters/spook/back.svg",
  45026. extra: 812/798,
  45027. bottom: 32/844
  45028. }
  45029. },
  45030. },
  45031. [
  45032. {
  45033. name: "Normal",
  45034. height: math.unit(5 + 5/12, "feet"),
  45035. default: true
  45036. },
  45037. ]
  45038. ))
  45039. characterMakers.push(() => makeCharacter(
  45040. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  45041. {
  45042. front: {
  45043. height: math.unit(18, "feet"),
  45044. name: "Front",
  45045. image: {
  45046. source: "./media/characters/xeaduulix/front.svg",
  45047. extra: 1380/1166,
  45048. bottom: 110/1490
  45049. }
  45050. },
  45051. back: {
  45052. height: math.unit(18, "feet"),
  45053. name: "Back",
  45054. image: {
  45055. source: "./media/characters/xeaduulix/back.svg",
  45056. extra: 1592/1170,
  45057. bottom: 128/1720
  45058. }
  45059. },
  45060. frontNsfw: {
  45061. height: math.unit(18, "feet"),
  45062. name: "Front (NSFW)",
  45063. image: {
  45064. source: "./media/characters/xeaduulix/front-nsfw.svg",
  45065. extra: 1380/1166,
  45066. bottom: 110/1490
  45067. }
  45068. },
  45069. backNsfw: {
  45070. height: math.unit(18, "feet"),
  45071. name: "Back (NSFW)",
  45072. image: {
  45073. source: "./media/characters/xeaduulix/back-nsfw.svg",
  45074. extra: 1592/1170,
  45075. bottom: 128/1720
  45076. }
  45077. },
  45078. },
  45079. [
  45080. {
  45081. name: "Normal",
  45082. height: math.unit(18, "feet"),
  45083. default: true
  45084. },
  45085. ]
  45086. ))
  45087. characterMakers.push(() => makeCharacter(
  45088. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  45089. {
  45090. spreadWings: {
  45091. height: math.unit(20, "feet"),
  45092. name: "Spread Wings",
  45093. image: {
  45094. source: "./media/characters/fledge/spread-wings.svg",
  45095. extra: 693/635,
  45096. bottom: 26/719
  45097. }
  45098. },
  45099. front: {
  45100. height: math.unit(20, "feet"),
  45101. name: "Front",
  45102. image: {
  45103. source: "./media/characters/fledge/front.svg",
  45104. extra: 684/637,
  45105. bottom: 18/702
  45106. }
  45107. },
  45108. frontAlt: {
  45109. height: math.unit(20, "feet"),
  45110. name: "Front (Alt)",
  45111. image: {
  45112. source: "./media/characters/fledge/front-alt.svg",
  45113. extra: 708/664,
  45114. bottom: 13/721
  45115. }
  45116. },
  45117. back: {
  45118. height: math.unit(20, "feet"),
  45119. name: "Back",
  45120. image: {
  45121. source: "./media/characters/fledge/back.svg",
  45122. extra: 718/634,
  45123. bottom: 22/740
  45124. }
  45125. },
  45126. head: {
  45127. height: math.unit(5.55, "feet"),
  45128. name: "Head",
  45129. image: {
  45130. source: "./media/characters/fledge/head.svg"
  45131. }
  45132. },
  45133. headAlt: {
  45134. height: math.unit(5.1, "feet"),
  45135. name: "Head (Alt)",
  45136. image: {
  45137. source: "./media/characters/fledge/head-alt.svg"
  45138. }
  45139. },
  45140. },
  45141. [
  45142. {
  45143. name: "Small",
  45144. height: math.unit(6 + 2/12, "feet")
  45145. },
  45146. {
  45147. name: "Big",
  45148. height: math.unit(20, "feet"),
  45149. default: true
  45150. },
  45151. {
  45152. name: "Giant",
  45153. height: math.unit(100, "feet")
  45154. },
  45155. {
  45156. name: "Macro",
  45157. height: math.unit(200, "feet")
  45158. },
  45159. ]
  45160. ))
  45161. characterMakers.push(() => makeCharacter(
  45162. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  45163. {
  45164. front: {
  45165. height: math.unit(1, "meter"),
  45166. name: "Front",
  45167. image: {
  45168. source: "./media/characters/atlas-morenai/front.svg",
  45169. extra: 1275/1043,
  45170. bottom: 19/1294
  45171. }
  45172. },
  45173. back: {
  45174. height: math.unit(1, "meter"),
  45175. name: "Back",
  45176. image: {
  45177. source: "./media/characters/atlas-morenai/back.svg",
  45178. extra: 1141/1001,
  45179. bottom: 25/1166
  45180. }
  45181. },
  45182. },
  45183. [
  45184. {
  45185. name: "Normal",
  45186. height: math.unit(1, "meter"),
  45187. default: true
  45188. },
  45189. {
  45190. name: "Magic-Infused",
  45191. height: math.unit(5, "meters")
  45192. },
  45193. ]
  45194. ))
  45195. characterMakers.push(() => makeCharacter(
  45196. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  45197. {
  45198. front: {
  45199. height: math.unit(5, "meters"),
  45200. name: "Front",
  45201. image: {
  45202. source: "./media/characters/cintia/front.svg",
  45203. extra: 1312/1228,
  45204. bottom: 38/1350
  45205. }
  45206. },
  45207. back: {
  45208. height: math.unit(5, "meters"),
  45209. name: "Back",
  45210. image: {
  45211. source: "./media/characters/cintia/back.svg",
  45212. extra: 1260/1166,
  45213. bottom: 98/1358
  45214. }
  45215. },
  45216. frontDick: {
  45217. height: math.unit(5, "meters"),
  45218. name: "Front (Dick)",
  45219. image: {
  45220. source: "./media/characters/cintia/front-dick.svg",
  45221. extra: 1312/1228,
  45222. bottom: 38/1350
  45223. }
  45224. },
  45225. backDick: {
  45226. height: math.unit(5, "meters"),
  45227. name: "Back (Dick)",
  45228. image: {
  45229. source: "./media/characters/cintia/back-dick.svg",
  45230. extra: 1260/1166,
  45231. bottom: 98/1358
  45232. }
  45233. },
  45234. bust: {
  45235. height: math.unit(1.97, "meters"),
  45236. name: "Bust",
  45237. image: {
  45238. source: "./media/characters/cintia/bust.svg",
  45239. extra: 617/565,
  45240. bottom: 0/617
  45241. }
  45242. },
  45243. },
  45244. [
  45245. {
  45246. name: "Normal",
  45247. height: math.unit(5, "meters"),
  45248. default: true
  45249. },
  45250. ]
  45251. ))
  45252. characterMakers.push(() => makeCharacter(
  45253. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  45254. {
  45255. side: {
  45256. height: math.unit(100, "feet"),
  45257. name: "Side",
  45258. image: {
  45259. source: "./media/characters/denora/side.svg",
  45260. extra: 875/803,
  45261. bottom: 9/884
  45262. }
  45263. },
  45264. },
  45265. [
  45266. {
  45267. name: "Standard",
  45268. height: math.unit(100, "feet"),
  45269. default: true
  45270. },
  45271. {
  45272. name: "Grand",
  45273. height: math.unit(1000, "feet")
  45274. },
  45275. {
  45276. name: "Conquering",
  45277. height: math.unit(10000, "feet")
  45278. },
  45279. ]
  45280. ))
  45281. characterMakers.push(() => makeCharacter(
  45282. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  45283. {
  45284. dressed: {
  45285. height: math.unit(8 + 5/12, "feet"),
  45286. weight: math.unit(700, "lb"),
  45287. name: "Dressed",
  45288. image: {
  45289. source: "./media/characters/kiva/dressed.svg",
  45290. extra: 1102/1055,
  45291. bottom: 60/1162
  45292. }
  45293. },
  45294. nude: {
  45295. height: math.unit(8 + 5/12, "feet"),
  45296. weight: math.unit(700, "lb"),
  45297. name: "Nude",
  45298. image: {
  45299. source: "./media/characters/kiva/nude.svg",
  45300. extra: 1102/1055,
  45301. bottom: 60/1162
  45302. }
  45303. },
  45304. },
  45305. [
  45306. {
  45307. name: "Base Height",
  45308. height: math.unit(8 + 5/12, "feet"),
  45309. default: true
  45310. },
  45311. {
  45312. name: "Macro",
  45313. height: math.unit(100, "feet")
  45314. },
  45315. {
  45316. name: "Max",
  45317. height: math.unit(3280, "feet")
  45318. },
  45319. ]
  45320. ))
  45321. characterMakers.push(() => makeCharacter(
  45322. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  45323. {
  45324. front: {
  45325. height: math.unit(6 + 8/12, "feet"),
  45326. weight: math.unit(250, "lb"),
  45327. name: "Front",
  45328. image: {
  45329. source: "./media/characters/ztragon/front.svg",
  45330. extra: 1825/1684,
  45331. bottom: 98/1923
  45332. }
  45333. },
  45334. },
  45335. [
  45336. {
  45337. name: "Normal",
  45338. height: math.unit(6 + 8/12, "feet"),
  45339. default: true
  45340. },
  45341. {
  45342. name: "Macro",
  45343. height: math.unit(80, "feet")
  45344. },
  45345. ]
  45346. ))
  45347. characterMakers.push(() => makeCharacter(
  45348. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  45349. {
  45350. front: {
  45351. height: math.unit(10.4, "feet"),
  45352. weight: math.unit(2, "tons"),
  45353. name: "Front",
  45354. image: {
  45355. source: "./media/characters/yesenia/front.svg",
  45356. extra: 1479/1474,
  45357. bottom: 233/1712
  45358. }
  45359. },
  45360. },
  45361. [
  45362. {
  45363. name: "Normal",
  45364. height: math.unit(10.4, "feet"),
  45365. default: true
  45366. },
  45367. ]
  45368. ))
  45369. characterMakers.push(() => makeCharacter(
  45370. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  45371. {
  45372. normal: {
  45373. height: math.unit(6 + 1/12, "feet"),
  45374. weight: math.unit(180, "lb"),
  45375. name: "Normal",
  45376. image: {
  45377. source: "./media/characters/leanne-lycheborne/normal.svg",
  45378. extra: 1748/1660,
  45379. bottom: 98/1846
  45380. }
  45381. },
  45382. were: {
  45383. height: math.unit(12, "feet"),
  45384. weight: math.unit(1600, "lb"),
  45385. name: "Were",
  45386. image: {
  45387. source: "./media/characters/leanne-lycheborne/were.svg",
  45388. extra: 1485/1432,
  45389. bottom: 66/1551
  45390. }
  45391. },
  45392. },
  45393. [
  45394. {
  45395. name: "Normal",
  45396. height: math.unit(6 + 1/12, "feet"),
  45397. default: true
  45398. },
  45399. ]
  45400. ))
  45401. characterMakers.push(() => makeCharacter(
  45402. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  45403. {
  45404. side: {
  45405. height: math.unit(13, "feet"),
  45406. name: "Side",
  45407. image: {
  45408. source: "./media/characters/kira-tyler/side.svg",
  45409. extra: 693/393,
  45410. bottom: 58/751
  45411. }
  45412. },
  45413. },
  45414. [
  45415. {
  45416. name: "Normal",
  45417. height: math.unit(13, "feet"),
  45418. default: true
  45419. },
  45420. ]
  45421. ))
  45422. characterMakers.push(() => makeCharacter(
  45423. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  45424. {
  45425. front: {
  45426. height: math.unit(10.3, "feet"),
  45427. weight: math.unit(150, "lb"),
  45428. name: "Front",
  45429. image: {
  45430. source: "./media/characters/blaze/front.svg",
  45431. extra: 1378/1286,
  45432. bottom: 172/1550
  45433. }
  45434. },
  45435. },
  45436. [
  45437. {
  45438. name: "Normal",
  45439. height: math.unit(10.3, "feet"),
  45440. default: true
  45441. },
  45442. ]
  45443. ))
  45444. characterMakers.push(() => makeCharacter(
  45445. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  45446. {
  45447. side: {
  45448. height: math.unit(2, "meters"),
  45449. weight: math.unit(400, "kg"),
  45450. name: "Side",
  45451. image: {
  45452. source: "./media/characters/anu/side.svg",
  45453. extra: 506/394,
  45454. bottom: 18/524
  45455. }
  45456. },
  45457. },
  45458. [
  45459. {
  45460. name: "Humanoid",
  45461. height: math.unit(2, "meters")
  45462. },
  45463. {
  45464. name: "Normal",
  45465. height: math.unit(5, "meters"),
  45466. default: true
  45467. },
  45468. ]
  45469. ))
  45470. characterMakers.push(() => makeCharacter(
  45471. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  45472. {
  45473. front: {
  45474. height: math.unit(5 + 5/12, "feet"),
  45475. weight: math.unit(170, "lb"),
  45476. name: "Front",
  45477. image: {
  45478. source: "./media/characters/synx-the-lynx/front.svg",
  45479. extra: 1893/1745,
  45480. bottom: 17/1910
  45481. }
  45482. },
  45483. side: {
  45484. height: math.unit(5 + 5/12, "feet"),
  45485. weight: math.unit(170, "lb"),
  45486. name: "Side",
  45487. image: {
  45488. source: "./media/characters/synx-the-lynx/side.svg",
  45489. extra: 1884/1740,
  45490. bottom: 39/1923
  45491. }
  45492. },
  45493. back: {
  45494. height: math.unit(5 + 5/12, "feet"),
  45495. weight: math.unit(170, "lb"),
  45496. name: "Back",
  45497. image: {
  45498. source: "./media/characters/synx-the-lynx/back.svg",
  45499. extra: 1903/1755,
  45500. bottom: 14/1917
  45501. }
  45502. },
  45503. },
  45504. [
  45505. {
  45506. name: "Normal",
  45507. height: math.unit(5 + 5/12, "feet"),
  45508. default: true
  45509. },
  45510. ]
  45511. ))
  45512. characterMakers.push(() => makeCharacter(
  45513. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  45514. {
  45515. back: {
  45516. height: math.unit(15, "feet"),
  45517. name: "Back",
  45518. image: {
  45519. source: "./media/characters/nadezda-fex/back.svg",
  45520. extra: 1695/1481,
  45521. bottom: 25/1720
  45522. }
  45523. },
  45524. },
  45525. [
  45526. {
  45527. name: "Normal",
  45528. height: math.unit(15, "feet"),
  45529. default: true
  45530. },
  45531. {
  45532. name: "Macro",
  45533. height: math.unit(2.5, "miles")
  45534. },
  45535. {
  45536. name: "Goddess",
  45537. height: math.unit(2, "multiverses")
  45538. },
  45539. ]
  45540. ))
  45541. characterMakers.push(() => makeCharacter(
  45542. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  45543. {
  45544. front: {
  45545. height: math.unit(216, "cm"),
  45546. name: "Front",
  45547. image: {
  45548. source: "./media/characters/lev/front.svg",
  45549. extra: 1728/1670,
  45550. bottom: 82/1810
  45551. }
  45552. },
  45553. back: {
  45554. height: math.unit(216, "cm"),
  45555. name: "Back",
  45556. image: {
  45557. source: "./media/characters/lev/back.svg",
  45558. extra: 1738/1675,
  45559. bottom: 24/1762
  45560. }
  45561. },
  45562. dressed: {
  45563. height: math.unit(216, "cm"),
  45564. name: "Dressed",
  45565. image: {
  45566. source: "./media/characters/lev/dressed.svg",
  45567. extra: 1397/1351,
  45568. bottom: 73/1470
  45569. }
  45570. },
  45571. head: {
  45572. height: math.unit(0.51, "meter"),
  45573. name: "Head",
  45574. image: {
  45575. source: "./media/characters/lev/head.svg"
  45576. }
  45577. },
  45578. },
  45579. [
  45580. {
  45581. name: "Normal",
  45582. height: math.unit(216, "cm"),
  45583. default: true
  45584. },
  45585. {
  45586. name: "Relatively Macro",
  45587. height: math.unit(80, "meters")
  45588. },
  45589. {
  45590. name: "Megamacro",
  45591. height: math.unit(21600, "meters")
  45592. },
  45593. {
  45594. name: "Megamacro+",
  45595. height: math.unit(64800, "meters")
  45596. },
  45597. ]
  45598. ))
  45599. characterMakers.push(() => makeCharacter(
  45600. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  45601. {
  45602. front: {
  45603. height: math.unit(2, "meters"),
  45604. weight: math.unit(80, "kg"),
  45605. name: "Front",
  45606. image: {
  45607. source: "./media/characters/moka/front.svg",
  45608. extra: 1337/1255,
  45609. bottom: 58/1395
  45610. }
  45611. },
  45612. },
  45613. [
  45614. {
  45615. name: "Micro",
  45616. height: math.unit(15, "cm")
  45617. },
  45618. {
  45619. name: "Normal",
  45620. height: math.unit(2, "meters"),
  45621. default: true
  45622. },
  45623. {
  45624. name: "Macro",
  45625. height: math.unit(20, "meters"),
  45626. },
  45627. ]
  45628. ))
  45629. characterMakers.push(() => makeCharacter(
  45630. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  45631. {
  45632. front: {
  45633. height: math.unit(9, "feet"),
  45634. weight: math.unit(240, "lb"),
  45635. name: "Front",
  45636. image: {
  45637. source: "./media/characters/kuzco/front.svg",
  45638. extra: 1593/1487,
  45639. bottom: 32/1625
  45640. }
  45641. },
  45642. side: {
  45643. height: math.unit(9, "feet"),
  45644. weight: math.unit(240, "lb"),
  45645. name: "Side",
  45646. image: {
  45647. source: "./media/characters/kuzco/side.svg",
  45648. extra: 1575/1485,
  45649. bottom: 30/1605
  45650. }
  45651. },
  45652. back: {
  45653. height: math.unit(9, "feet"),
  45654. weight: math.unit(240, "lb"),
  45655. name: "Back",
  45656. image: {
  45657. source: "./media/characters/kuzco/back.svg",
  45658. extra: 1603/1514,
  45659. bottom: 14/1617
  45660. }
  45661. },
  45662. },
  45663. [
  45664. {
  45665. name: "Normal",
  45666. height: math.unit(9, "feet"),
  45667. default: true
  45668. },
  45669. ]
  45670. ))
  45671. characterMakers.push(() => makeCharacter(
  45672. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  45673. {
  45674. side: {
  45675. height: math.unit(2, "meters"),
  45676. weight: math.unit(300, "kg"),
  45677. name: "Side",
  45678. image: {
  45679. source: "./media/characters/ceruleus/side.svg",
  45680. extra: 1068/974,
  45681. bottom: 126/1194
  45682. }
  45683. },
  45684. },
  45685. [
  45686. {
  45687. name: "Normal",
  45688. height: math.unit(16, "meters"),
  45689. default: true
  45690. },
  45691. ]
  45692. ))
  45693. characterMakers.push(() => makeCharacter(
  45694. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  45695. {
  45696. front: {
  45697. height: math.unit(9, "feet"),
  45698. weight: math.unit(500, "kg"),
  45699. name: "Front",
  45700. image: {
  45701. source: "./media/characters/acouya/front.svg",
  45702. extra: 1660/1473,
  45703. bottom: 28/1688
  45704. }
  45705. },
  45706. },
  45707. [
  45708. {
  45709. name: "Normal",
  45710. height: math.unit(9, "feet"),
  45711. default: true
  45712. },
  45713. ]
  45714. ))
  45715. characterMakers.push(() => makeCharacter(
  45716. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  45717. {
  45718. front: {
  45719. height: math.unit(5 + 6/12, "feet"),
  45720. weight: math.unit(195, "lb"),
  45721. name: "Front",
  45722. image: {
  45723. source: "./media/characters/vant/front.svg",
  45724. extra: 1396/1320,
  45725. bottom: 20/1416
  45726. }
  45727. },
  45728. back: {
  45729. height: math.unit(5 + 6/12, "feet"),
  45730. weight: math.unit(195, "lb"),
  45731. name: "Back",
  45732. image: {
  45733. source: "./media/characters/vant/back.svg",
  45734. extra: 1396/1320,
  45735. bottom: 20/1416
  45736. }
  45737. },
  45738. maw: {
  45739. height: math.unit(0.75, "feet"),
  45740. name: "Maw",
  45741. image: {
  45742. source: "./media/characters/vant/maw.svg"
  45743. }
  45744. },
  45745. paw: {
  45746. height: math.unit(1.07, "feet"),
  45747. name: "Paw",
  45748. image: {
  45749. source: "./media/characters/vant/paw.svg"
  45750. }
  45751. },
  45752. },
  45753. [
  45754. {
  45755. name: "Micro",
  45756. height: math.unit(0.25, "inches")
  45757. },
  45758. {
  45759. name: "Normal",
  45760. height: math.unit(5 + 6/12, "feet"),
  45761. default: true
  45762. },
  45763. {
  45764. name: "Macro",
  45765. height: math.unit(75, "feet")
  45766. },
  45767. ]
  45768. ))
  45769. characterMakers.push(() => makeCharacter(
  45770. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  45771. {
  45772. front: {
  45773. height: math.unit(30, "meters"),
  45774. weight: math.unit(363, "tons"),
  45775. name: "Front",
  45776. image: {
  45777. source: "./media/characters/ahra/front.svg",
  45778. extra: 1914/1814,
  45779. bottom: 46/1960
  45780. }
  45781. },
  45782. },
  45783. [
  45784. {
  45785. name: "Macro",
  45786. height: math.unit(30, "meters"),
  45787. default: true
  45788. },
  45789. ]
  45790. ))
  45791. characterMakers.push(() => makeCharacter(
  45792. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  45793. {
  45794. undressed: {
  45795. height: math.unit(2, "m"),
  45796. weight: math.unit(250, "kg"),
  45797. name: "Undressed",
  45798. image: {
  45799. source: "./media/characters/coriander/undressed.svg",
  45800. extra: 1757/1606,
  45801. bottom: 107/1864
  45802. }
  45803. },
  45804. dressed: {
  45805. height: math.unit(2, "m"),
  45806. weight: math.unit(250, "kg"),
  45807. name: "Dressed",
  45808. image: {
  45809. source: "./media/characters/coriander/dressed.svg",
  45810. extra: 1757/1606,
  45811. bottom: 107/1864
  45812. }
  45813. },
  45814. },
  45815. [
  45816. {
  45817. name: "Normal",
  45818. height: math.unit(4, "meters"),
  45819. default: true
  45820. },
  45821. {
  45822. name: "XL",
  45823. height: math.unit(6, "meters")
  45824. },
  45825. {
  45826. name: "XXL",
  45827. height: math.unit(8, "meters")
  45828. },
  45829. ]
  45830. ))
  45831. characterMakers.push(() => makeCharacter(
  45832. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  45833. {
  45834. front: {
  45835. height: math.unit(6, "feet"),
  45836. name: "Front",
  45837. image: {
  45838. source: "./media/characters/syrinx/front.svg",
  45839. extra: 1557/1259,
  45840. bottom: 171/1728
  45841. }
  45842. },
  45843. },
  45844. [
  45845. {
  45846. name: "Normal",
  45847. height: math.unit(6 + 3/12, "feet"),
  45848. default: true
  45849. },
  45850. ]
  45851. ))
  45852. characterMakers.push(() => makeCharacter(
  45853. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  45854. {
  45855. front: {
  45856. height: math.unit(11 + 6/12, "feet"),
  45857. weight: math.unit(1.5, "tons"),
  45858. name: "Front",
  45859. image: {
  45860. source: "./media/characters/bor/front.svg",
  45861. extra: 1189/1109,
  45862. bottom: 170/1359
  45863. }
  45864. },
  45865. },
  45866. [
  45867. {
  45868. name: "Normal",
  45869. height: math.unit(11 + 6/12, "feet"),
  45870. default: true
  45871. },
  45872. {
  45873. name: "Macro",
  45874. height: math.unit(32 + 9/12, "feet")
  45875. },
  45876. ]
  45877. ))
  45878. characterMakers.push(() => makeCharacter(
  45879. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  45880. {
  45881. anthro: {
  45882. height: math.unit(9, "feet"),
  45883. weight: math.unit(2076, "lb"),
  45884. name: "Anthro",
  45885. image: {
  45886. source: "./media/characters/abacus/anthro.svg",
  45887. extra: 1540/1494,
  45888. bottom: 233/1773
  45889. }
  45890. },
  45891. pigeon: {
  45892. height: math.unit(1, "feet"),
  45893. name: "Pigeon",
  45894. image: {
  45895. source: "./media/characters/abacus/pigeon.svg",
  45896. extra: 528/525,
  45897. bottom: 46/574
  45898. }
  45899. },
  45900. },
  45901. [
  45902. {
  45903. name: "Normal",
  45904. height: math.unit(9, "feet"),
  45905. default: true
  45906. },
  45907. ]
  45908. ))
  45909. characterMakers.push(() => makeCharacter(
  45910. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  45911. {
  45912. side: {
  45913. height: math.unit(6, "feet"),
  45914. name: "Side",
  45915. image: {
  45916. source: "./media/characters/delkhan/side.svg",
  45917. extra: 1884/1786,
  45918. bottom: 308/2192
  45919. }
  45920. },
  45921. head: {
  45922. height: math.unit(3.38, "feet"),
  45923. name: "Head",
  45924. image: {
  45925. source: "./media/characters/delkhan/head.svg"
  45926. }
  45927. },
  45928. },
  45929. [
  45930. {
  45931. name: "Normal",
  45932. height: math.unit(72, "feet"),
  45933. default: true
  45934. },
  45935. {
  45936. name: "Giant",
  45937. height: math.unit(172, "feet")
  45938. },
  45939. ]
  45940. ))
  45941. characterMakers.push(() => makeCharacter(
  45942. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  45943. {
  45944. standing: {
  45945. height: math.unit(6, "feet"),
  45946. name: "Standing",
  45947. image: {
  45948. source: "./media/characters/euchidat/standing.svg",
  45949. extra: 1612/1553,
  45950. bottom: 116/1728
  45951. }
  45952. },
  45953. leaning: {
  45954. height: math.unit(6, "feet"),
  45955. name: "Leaning",
  45956. image: {
  45957. source: "./media/characters/euchidat/leaning.svg",
  45958. extra: 1719/1674,
  45959. bottom: 27/1746
  45960. }
  45961. },
  45962. },
  45963. [
  45964. {
  45965. name: "Normal",
  45966. height: math.unit(175, "feet"),
  45967. default: true
  45968. },
  45969. {
  45970. name: "Megamacro",
  45971. height: math.unit(190, "miles")
  45972. },
  45973. {
  45974. name: "Gigamacro",
  45975. height: math.unit(190000, "miles")
  45976. },
  45977. ]
  45978. ))
  45979. characterMakers.push(() => makeCharacter(
  45980. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  45981. {
  45982. front: {
  45983. height: math.unit(6, "feet"),
  45984. weight: math.unit(150, "lb"),
  45985. name: "Front",
  45986. image: {
  45987. source: "./media/characters/rebecca-stack/front.svg",
  45988. extra: 1256/1201,
  45989. bottom: 18/1274
  45990. }
  45991. },
  45992. },
  45993. [
  45994. {
  45995. name: "Normal",
  45996. height: math.unit(5 + 8/12, "feet"),
  45997. default: true
  45998. },
  45999. {
  46000. name: "Demolitionist",
  46001. height: math.unit(200, "feet")
  46002. },
  46003. {
  46004. name: "Out of Control",
  46005. height: math.unit(2, "miles")
  46006. },
  46007. {
  46008. name: "Giga",
  46009. height: math.unit(7200, "miles")
  46010. },
  46011. ]
  46012. ))
  46013. characterMakers.push(() => makeCharacter(
  46014. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  46015. {
  46016. front: {
  46017. height: math.unit(6, "feet"),
  46018. weight: math.unit(150, "lb"),
  46019. name: "Front",
  46020. image: {
  46021. source: "./media/characters/jenny-cartwright/front.svg",
  46022. extra: 1384/1376,
  46023. bottom: 58/1442
  46024. }
  46025. },
  46026. },
  46027. [
  46028. {
  46029. name: "Normal",
  46030. height: math.unit(6 + 7/12, "feet"),
  46031. default: true
  46032. },
  46033. {
  46034. name: "Librarian",
  46035. height: math.unit(55, "feet")
  46036. },
  46037. {
  46038. name: "Sightseer",
  46039. height: math.unit(50, "miles")
  46040. },
  46041. {
  46042. name: "Giga",
  46043. height: math.unit(30000, "miles")
  46044. },
  46045. ]
  46046. ))
  46047. characterMakers.push(() => makeCharacter(
  46048. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  46049. {
  46050. nude: {
  46051. height: math.unit(8, "feet"),
  46052. weight: math.unit(225, "lb"),
  46053. name: "Nude",
  46054. image: {
  46055. source: "./media/characters/marvy/nude.svg",
  46056. extra: 1900/1683,
  46057. bottom: 89/1989
  46058. }
  46059. },
  46060. dressed: {
  46061. height: math.unit(8, "feet"),
  46062. weight: math.unit(225, "lb"),
  46063. name: "Dressed",
  46064. image: {
  46065. source: "./media/characters/marvy/dressed.svg",
  46066. extra: 1900/1683,
  46067. bottom: 89/1989
  46068. }
  46069. },
  46070. head: {
  46071. height: math.unit(2.85, "feet"),
  46072. name: "Head",
  46073. image: {
  46074. source: "./media/characters/marvy/head.svg"
  46075. }
  46076. },
  46077. },
  46078. [
  46079. {
  46080. name: "Normal",
  46081. height: math.unit(8, "feet"),
  46082. default: true
  46083. },
  46084. ]
  46085. ))
  46086. characterMakers.push(() => makeCharacter(
  46087. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  46088. {
  46089. front: {
  46090. height: math.unit(8, "feet"),
  46091. weight: math.unit(250, "lb"),
  46092. name: "Front",
  46093. image: {
  46094. source: "./media/characters/leah/front.svg",
  46095. extra: 1257/1149,
  46096. bottom: 109/1366
  46097. }
  46098. },
  46099. },
  46100. [
  46101. {
  46102. name: "Normal",
  46103. height: math.unit(8, "feet"),
  46104. default: true
  46105. },
  46106. {
  46107. name: "Minimacro",
  46108. height: math.unit(40, "feet")
  46109. },
  46110. {
  46111. name: "Macro",
  46112. height: math.unit(124, "feet")
  46113. },
  46114. {
  46115. name: "Megamacro",
  46116. height: math.unit(850, "feet")
  46117. },
  46118. ]
  46119. ))
  46120. characterMakers.push(() => makeCharacter(
  46121. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  46122. {
  46123. side: {
  46124. height: math.unit(13 + 6/12, "feet"),
  46125. weight: math.unit(3200, "lb"),
  46126. name: "Side",
  46127. image: {
  46128. source: "./media/characters/alvir/side.svg",
  46129. extra: 896/589,
  46130. bottom: 26/922
  46131. }
  46132. },
  46133. },
  46134. [
  46135. {
  46136. name: "Normal",
  46137. height: math.unit(13 + 6/12, "feet"),
  46138. default: true
  46139. },
  46140. ]
  46141. ))
  46142. characterMakers.push(() => makeCharacter(
  46143. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  46144. {
  46145. front: {
  46146. height: math.unit(5 + 4/12, "feet"),
  46147. weight: math.unit(236, "lb"),
  46148. name: "Front",
  46149. image: {
  46150. source: "./media/characters/zaina-khalil/front.svg",
  46151. extra: 1533/1485,
  46152. bottom: 94/1627
  46153. }
  46154. },
  46155. side: {
  46156. height: math.unit(5 + 4/12, "feet"),
  46157. weight: math.unit(236, "lb"),
  46158. name: "Side",
  46159. image: {
  46160. source: "./media/characters/zaina-khalil/side.svg",
  46161. extra: 1537/1498,
  46162. bottom: 66/1603
  46163. }
  46164. },
  46165. back: {
  46166. height: math.unit(5 + 4/12, "feet"),
  46167. weight: math.unit(236, "lb"),
  46168. name: "Back",
  46169. image: {
  46170. source: "./media/characters/zaina-khalil/back.svg",
  46171. extra: 1546/1494,
  46172. bottom: 89/1635
  46173. }
  46174. },
  46175. },
  46176. [
  46177. {
  46178. name: "Normal",
  46179. height: math.unit(5 + 4/12, "feet"),
  46180. default: true
  46181. },
  46182. ]
  46183. ))
  46184. characterMakers.push(() => makeCharacter(
  46185. { name: "Terry", species: ["husky"], tags: ["taur"] },
  46186. {
  46187. side: {
  46188. height: math.unit(12, "feet"),
  46189. weight: math.unit(4000, "lb"),
  46190. name: "Side",
  46191. image: {
  46192. source: "./media/characters/terry/side.svg",
  46193. extra: 1518/1439,
  46194. bottom: 149/1667
  46195. }
  46196. },
  46197. },
  46198. [
  46199. {
  46200. name: "Normal",
  46201. height: math.unit(12, "feet"),
  46202. default: true
  46203. },
  46204. ]
  46205. ))
  46206. characterMakers.push(() => makeCharacter(
  46207. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  46208. {
  46209. front: {
  46210. height: math.unit(12, "feet"),
  46211. weight: math.unit(1500, "lb"),
  46212. name: "Front",
  46213. image: {
  46214. source: "./media/characters/kahea/front.svg",
  46215. extra: 1722/1617,
  46216. bottom: 179/1901
  46217. }
  46218. },
  46219. },
  46220. [
  46221. {
  46222. name: "Normal",
  46223. height: math.unit(12, "feet"),
  46224. default: true
  46225. },
  46226. ]
  46227. ))
  46228. characterMakers.push(() => makeCharacter(
  46229. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  46230. {
  46231. demonFront: {
  46232. height: math.unit(36, "feet"),
  46233. name: "Front",
  46234. image: {
  46235. source: "./media/characters/alex-xuria/demon-front.svg",
  46236. extra: 1705/1673,
  46237. bottom: 198/1903
  46238. },
  46239. form: "demon",
  46240. default: true
  46241. },
  46242. demonBack: {
  46243. height: math.unit(36, "feet"),
  46244. name: "Back",
  46245. image: {
  46246. source: "./media/characters/alex-xuria/demon-back.svg",
  46247. extra: 1725/1693,
  46248. bottom: 70/1795
  46249. },
  46250. form: "demon"
  46251. },
  46252. demonHead: {
  46253. height: math.unit(2.14, "meters"),
  46254. name: "Head",
  46255. image: {
  46256. source: "./media/characters/alex-xuria/demon-head.svg"
  46257. },
  46258. form: "demon"
  46259. },
  46260. demonHand: {
  46261. height: math.unit(1.61, "meters"),
  46262. name: "Hand",
  46263. image: {
  46264. source: "./media/characters/alex-xuria/demon-hand.svg"
  46265. },
  46266. form: "demon"
  46267. },
  46268. demonPaw: {
  46269. height: math.unit(1.35, "meters"),
  46270. name: "Paw",
  46271. image: {
  46272. source: "./media/characters/alex-xuria/demon-paw.svg"
  46273. },
  46274. form: "demon"
  46275. },
  46276. demonFoot: {
  46277. height: math.unit(2.2, "meters"),
  46278. name: "Foot",
  46279. image: {
  46280. source: "./media/characters/alex-xuria/demon-foot.svg"
  46281. },
  46282. form: "demon"
  46283. },
  46284. demonCock: {
  46285. height: math.unit(1.74, "meters"),
  46286. name: "Cock",
  46287. image: {
  46288. source: "./media/characters/alex-xuria/demon-cock.svg"
  46289. },
  46290. form: "demon"
  46291. },
  46292. demonTailClosed: {
  46293. height: math.unit(1.47, "meters"),
  46294. name: "Tail (Closed)",
  46295. image: {
  46296. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  46297. },
  46298. form: "demon"
  46299. },
  46300. demonTailOpen: {
  46301. height: math.unit(2.85, "meters"),
  46302. name: "Tail (Open)",
  46303. image: {
  46304. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  46305. },
  46306. form: "demon"
  46307. },
  46308. incubusFront: {
  46309. height: math.unit(12, "feet"),
  46310. name: "Front",
  46311. image: {
  46312. source: "./media/characters/alex-xuria/incubus-front.svg",
  46313. extra: 1754/1677,
  46314. bottom: 125/1879
  46315. },
  46316. form: "incubus",
  46317. default: true
  46318. },
  46319. incubusBack: {
  46320. height: math.unit(12, "feet"),
  46321. name: "Back",
  46322. image: {
  46323. source: "./media/characters/alex-xuria/incubus-back.svg",
  46324. extra: 1702/1647,
  46325. bottom: 30/1732
  46326. },
  46327. form: "incubus"
  46328. },
  46329. incubusHead: {
  46330. height: math.unit(3.45, "feet"),
  46331. name: "Head",
  46332. image: {
  46333. source: "./media/characters/alex-xuria/incubus-head.svg"
  46334. },
  46335. form: "incubus"
  46336. },
  46337. rabbitFront: {
  46338. height: math.unit(6, "feet"),
  46339. name: "Front",
  46340. image: {
  46341. source: "./media/characters/alex-xuria/rabbit-front.svg",
  46342. extra: 1369/1349,
  46343. bottom: 45/1414
  46344. },
  46345. form: "rabbit",
  46346. default: true
  46347. },
  46348. rabbitSide: {
  46349. height: math.unit(6, "feet"),
  46350. name: "Side",
  46351. image: {
  46352. source: "./media/characters/alex-xuria/rabbit-side.svg",
  46353. extra: 1370/1356,
  46354. bottom: 37/1407
  46355. },
  46356. form: "rabbit"
  46357. },
  46358. rabbitBack: {
  46359. height: math.unit(6, "feet"),
  46360. name: "Back",
  46361. image: {
  46362. source: "./media/characters/alex-xuria/rabbit-back.svg",
  46363. extra: 1375/1358,
  46364. bottom: 43/1418
  46365. },
  46366. form: "rabbit"
  46367. },
  46368. },
  46369. [
  46370. {
  46371. name: "Normal",
  46372. height: math.unit(6, "feet"),
  46373. default: true,
  46374. form: "rabbit"
  46375. },
  46376. {
  46377. name: "Incubus",
  46378. height: math.unit(12, "feet"),
  46379. default: true,
  46380. form: "incubus"
  46381. },
  46382. {
  46383. name: "Demon",
  46384. height: math.unit(36, "feet"),
  46385. default: true,
  46386. form: "demon"
  46387. }
  46388. ],
  46389. {
  46390. "demon": {
  46391. name: "Demon",
  46392. default: true
  46393. },
  46394. "incubus": {
  46395. name: "Incubus",
  46396. },
  46397. "rabbit": {
  46398. name: "Rabbit"
  46399. }
  46400. }
  46401. ))
  46402. characterMakers.push(() => makeCharacter(
  46403. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  46404. {
  46405. front: {
  46406. height: math.unit(7 + 5/12, "feet"),
  46407. weight: math.unit(510, "lb"),
  46408. name: "Front",
  46409. image: {
  46410. source: "./media/characters/syrup/front.svg",
  46411. extra: 932/916,
  46412. bottom: 26/958
  46413. }
  46414. },
  46415. },
  46416. [
  46417. {
  46418. name: "Normal",
  46419. height: math.unit(7 + 5/12, "feet"),
  46420. default: true
  46421. },
  46422. {
  46423. name: "Big",
  46424. height: math.unit(50, "feet")
  46425. },
  46426. {
  46427. name: "Macro",
  46428. height: math.unit(300, "feet")
  46429. },
  46430. {
  46431. name: "Megamacro",
  46432. height: math.unit(1, "mile")
  46433. },
  46434. ]
  46435. ))
  46436. characterMakers.push(() => makeCharacter(
  46437. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  46438. {
  46439. front: {
  46440. height: math.unit(6 + 9/12, "feet"),
  46441. name: "Front",
  46442. image: {
  46443. source: "./media/characters/zeimne/front.svg",
  46444. extra: 1969/1806,
  46445. bottom: 53/2022
  46446. }
  46447. },
  46448. },
  46449. [
  46450. {
  46451. name: "Normal",
  46452. height: math.unit(6 + 9/12, "feet"),
  46453. default: true
  46454. },
  46455. {
  46456. name: "Giant",
  46457. height: math.unit(550, "feet")
  46458. },
  46459. {
  46460. name: "Mega",
  46461. height: math.unit(3, "miles")
  46462. },
  46463. {
  46464. name: "Giga",
  46465. height: math.unit(250, "miles")
  46466. },
  46467. {
  46468. name: "Tera",
  46469. height: math.unit(1, "AU")
  46470. },
  46471. ]
  46472. ))
  46473. characterMakers.push(() => makeCharacter(
  46474. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  46475. {
  46476. front: {
  46477. height: math.unit(5 + 2/12, "feet"),
  46478. name: "Front",
  46479. image: {
  46480. source: "./media/characters/grar/front.svg",
  46481. extra: 1331/1119,
  46482. bottom: 60/1391
  46483. }
  46484. },
  46485. back: {
  46486. height: math.unit(5 + 2/12, "feet"),
  46487. name: "Back",
  46488. image: {
  46489. source: "./media/characters/grar/back.svg",
  46490. extra: 1385/1169,
  46491. bottom: 23/1408
  46492. }
  46493. },
  46494. },
  46495. [
  46496. {
  46497. name: "Normal",
  46498. height: math.unit(5 + 2/12, "feet"),
  46499. default: true
  46500. },
  46501. ]
  46502. ))
  46503. characterMakers.push(() => makeCharacter(
  46504. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  46505. {
  46506. front: {
  46507. height: math.unit(13 + 7/12, "feet"),
  46508. weight: math.unit(2200, "lb"),
  46509. name: "Front",
  46510. image: {
  46511. source: "./media/characters/endraya/front.svg",
  46512. extra: 1289/1215,
  46513. bottom: 50/1339
  46514. }
  46515. },
  46516. nude: {
  46517. height: math.unit(13 + 7/12, "feet"),
  46518. weight: math.unit(2200, "lb"),
  46519. name: "Nude",
  46520. image: {
  46521. source: "./media/characters/endraya/nude.svg",
  46522. extra: 1247/1171,
  46523. bottom: 40/1287
  46524. }
  46525. },
  46526. head: {
  46527. height: math.unit(2.6, "feet"),
  46528. name: "Head",
  46529. image: {
  46530. source: "./media/characters/endraya/head.svg"
  46531. }
  46532. },
  46533. slit: {
  46534. height: math.unit(3.4, "feet"),
  46535. name: "Slit",
  46536. image: {
  46537. source: "./media/characters/endraya/slit.svg"
  46538. }
  46539. },
  46540. },
  46541. [
  46542. {
  46543. name: "Normal",
  46544. height: math.unit(13 + 7/12, "feet"),
  46545. default: true
  46546. },
  46547. {
  46548. name: "Macro",
  46549. height: math.unit(200, "feet")
  46550. },
  46551. ]
  46552. ))
  46553. characterMakers.push(() => makeCharacter(
  46554. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  46555. {
  46556. front: {
  46557. height: math.unit(1.81, "meters"),
  46558. weight: math.unit(69, "kg"),
  46559. name: "Front",
  46560. image: {
  46561. source: "./media/characters/rodryana/front.svg",
  46562. extra: 2002/1921,
  46563. bottom: 53/2055
  46564. }
  46565. },
  46566. back: {
  46567. height: math.unit(1.81, "meters"),
  46568. weight: math.unit(69, "kg"),
  46569. name: "Back",
  46570. image: {
  46571. source: "./media/characters/rodryana/back.svg",
  46572. extra: 1993/1926,
  46573. bottom: 48/2041
  46574. }
  46575. },
  46576. maw: {
  46577. height: math.unit(0.19769417475, "meters"),
  46578. name: "Maw",
  46579. image: {
  46580. source: "./media/characters/rodryana/maw.svg"
  46581. }
  46582. },
  46583. slit: {
  46584. height: math.unit(0.31631067961, "meters"),
  46585. name: "Slit",
  46586. image: {
  46587. source: "./media/characters/rodryana/slit.svg"
  46588. }
  46589. },
  46590. },
  46591. [
  46592. {
  46593. name: "Normal",
  46594. height: math.unit(1.81, "meters")
  46595. },
  46596. {
  46597. name: "Mini Macro",
  46598. height: math.unit(181, "meters")
  46599. },
  46600. {
  46601. name: "Macro",
  46602. height: math.unit(452, "meters"),
  46603. default: true
  46604. },
  46605. {
  46606. name: "Mega Macro",
  46607. height: math.unit(1.375, "km")
  46608. },
  46609. {
  46610. name: "Giga Macro",
  46611. height: math.unit(13.575, "km")
  46612. },
  46613. ]
  46614. ))
  46615. characterMakers.push(() => makeCharacter(
  46616. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  46617. {
  46618. front: {
  46619. height: math.unit(6, "feet"),
  46620. weight: math.unit(1000, "lb"),
  46621. name: "Front",
  46622. image: {
  46623. source: "./media/characters/asaya/front.svg",
  46624. extra: 1460/1200,
  46625. bottom: 71/1531
  46626. }
  46627. },
  46628. },
  46629. [
  46630. {
  46631. name: "Normal",
  46632. height: math.unit(8, "km"),
  46633. default: true
  46634. },
  46635. ]
  46636. ))
  46637. characterMakers.push(() => makeCharacter(
  46638. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  46639. {
  46640. front: {
  46641. height: math.unit(3.5, "meters"),
  46642. name: "Front",
  46643. image: {
  46644. source: "./media/characters/sarzu-and-israz/front.svg",
  46645. extra: 1570/1558,
  46646. bottom: 150/1720
  46647. },
  46648. },
  46649. back: {
  46650. height: math.unit(3.5, "meters"),
  46651. name: "Back",
  46652. image: {
  46653. source: "./media/characters/sarzu-and-israz/back.svg",
  46654. extra: 1523/1509,
  46655. bottom: 132/1655
  46656. },
  46657. },
  46658. frontFemale: {
  46659. height: math.unit(3.5, "meters"),
  46660. name: "Front (Female)",
  46661. image: {
  46662. source: "./media/characters/sarzu-and-israz/front-female.svg",
  46663. extra: 1570/1558,
  46664. bottom: 150/1720
  46665. },
  46666. },
  46667. frontHerm: {
  46668. height: math.unit(3.5, "meters"),
  46669. name: "Front (Herm)",
  46670. image: {
  46671. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  46672. extra: 1570/1558,
  46673. bottom: 150/1720
  46674. },
  46675. },
  46676. },
  46677. [
  46678. {
  46679. name: "Normal",
  46680. height: math.unit(3.5, "meters"),
  46681. default: true,
  46682. },
  46683. {
  46684. name: "Macro",
  46685. height: math.unit(65.5, "meters"),
  46686. },
  46687. ],
  46688. ))
  46689. characterMakers.push(() => makeCharacter(
  46690. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  46691. {
  46692. front: {
  46693. height: math.unit(6, "feet"),
  46694. weight: math.unit(250, "lb"),
  46695. name: "Front",
  46696. image: {
  46697. source: "./media/characters/zenimma/front.svg",
  46698. extra: 1346/1320,
  46699. bottom: 58/1404
  46700. }
  46701. },
  46702. back: {
  46703. height: math.unit(6, "feet"),
  46704. weight: math.unit(250, "lb"),
  46705. name: "Back",
  46706. image: {
  46707. source: "./media/characters/zenimma/back.svg",
  46708. extra: 1324/1308,
  46709. bottom: 44/1368
  46710. }
  46711. },
  46712. dick: {
  46713. height: math.unit(1.44, "feet"),
  46714. name: "Dick",
  46715. image: {
  46716. source: "./media/characters/zenimma/dick.svg"
  46717. }
  46718. },
  46719. },
  46720. [
  46721. {
  46722. name: "Canon Height",
  46723. height: math.unit(66, "miles"),
  46724. default: true
  46725. },
  46726. ]
  46727. ))
  46728. characterMakers.push(() => makeCharacter(
  46729. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  46730. {
  46731. nude: {
  46732. height: math.unit(6, "feet"),
  46733. weight: math.unit(150, "lb"),
  46734. name: "Nude",
  46735. image: {
  46736. source: "./media/characters/shavon/nude.svg",
  46737. extra: 1242/1096,
  46738. bottom: 98/1340
  46739. }
  46740. },
  46741. dressed: {
  46742. height: math.unit(6, "feet"),
  46743. weight: math.unit(150, "lb"),
  46744. name: "Dressed",
  46745. image: {
  46746. source: "./media/characters/shavon/dressed.svg",
  46747. extra: 1242/1096,
  46748. bottom: 98/1340
  46749. }
  46750. },
  46751. },
  46752. [
  46753. {
  46754. name: "Macro",
  46755. height: math.unit(255, "feet"),
  46756. default: true
  46757. },
  46758. ]
  46759. ))
  46760. characterMakers.push(() => makeCharacter(
  46761. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  46762. {
  46763. front: {
  46764. height: math.unit(6, "feet"),
  46765. name: "Front",
  46766. image: {
  46767. source: "./media/characters/steph/front.svg",
  46768. extra: 1430/1330,
  46769. bottom: 54/1484
  46770. }
  46771. },
  46772. },
  46773. [
  46774. {
  46775. name: "Normal",
  46776. height: math.unit(6, "feet"),
  46777. default: true
  46778. },
  46779. ]
  46780. ))
  46781. characterMakers.push(() => makeCharacter(
  46782. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  46783. {
  46784. front: {
  46785. height: math.unit(9, "feet"),
  46786. weight: math.unit(400, "lb"),
  46787. name: "Front",
  46788. image: {
  46789. source: "./media/characters/kil'aman/front.svg",
  46790. extra: 1210/1159,
  46791. bottom: 109/1319
  46792. }
  46793. },
  46794. head: {
  46795. height: math.unit(2.14, "feet"),
  46796. name: "Head",
  46797. image: {
  46798. source: "./media/characters/kil'aman/head.svg"
  46799. }
  46800. },
  46801. maw: {
  46802. height: math.unit(1.21, "feet"),
  46803. name: "Maw",
  46804. image: {
  46805. source: "./media/characters/kil'aman/maw.svg"
  46806. }
  46807. },
  46808. foot: {
  46809. height: math.unit(1.7, "feet"),
  46810. name: "Foot",
  46811. image: {
  46812. source: "./media/characters/kil'aman/foot.svg"
  46813. }
  46814. },
  46815. dick: {
  46816. height: math.unit(2.1, "feet"),
  46817. name: "Dick",
  46818. image: {
  46819. source: "./media/characters/kil'aman/dick.svg"
  46820. }
  46821. },
  46822. },
  46823. [
  46824. {
  46825. name: "Normal",
  46826. height: math.unit(9, "feet")
  46827. },
  46828. {
  46829. name: "Canon Height",
  46830. height: math.unit(10, "miles"),
  46831. default: true
  46832. },
  46833. {
  46834. name: "Maximum",
  46835. height: math.unit(6e9, "miles")
  46836. },
  46837. ]
  46838. ))
  46839. characterMakers.push(() => makeCharacter(
  46840. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  46841. {
  46842. front: {
  46843. height: math.unit(90, "feet"),
  46844. weight: math.unit(675000, "lb"),
  46845. name: "Front",
  46846. image: {
  46847. source: "./media/characters/qadan/front.svg",
  46848. extra: 1012/1004,
  46849. bottom: 78/1090
  46850. }
  46851. },
  46852. back: {
  46853. height: math.unit(90, "feet"),
  46854. weight: math.unit(675000, "lb"),
  46855. name: "Back",
  46856. image: {
  46857. source: "./media/characters/qadan/back.svg",
  46858. extra: 1042/1031,
  46859. bottom: 55/1097
  46860. }
  46861. },
  46862. armored: {
  46863. height: math.unit(90, "feet"),
  46864. weight: math.unit(675000, "lb"),
  46865. name: "Armored",
  46866. image: {
  46867. source: "./media/characters/qadan/armored.svg",
  46868. extra: 1047/1037,
  46869. bottom: 48/1095
  46870. }
  46871. },
  46872. },
  46873. [
  46874. {
  46875. name: "Normal",
  46876. height: math.unit(90, "feet"),
  46877. default: true
  46878. },
  46879. ]
  46880. ))
  46881. characterMakers.push(() => makeCharacter(
  46882. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  46883. {
  46884. front: {
  46885. height: math.unit(6, "feet"),
  46886. weight: math.unit(225, "lb"),
  46887. name: "Front",
  46888. image: {
  46889. source: "./media/characters/brooke/front.svg",
  46890. extra: 1050/1010,
  46891. bottom: 66/1116
  46892. }
  46893. },
  46894. back: {
  46895. height: math.unit(6, "feet"),
  46896. weight: math.unit(225, "lb"),
  46897. name: "Back",
  46898. image: {
  46899. source: "./media/characters/brooke/back.svg",
  46900. extra: 1053/1013,
  46901. bottom: 41/1094
  46902. }
  46903. },
  46904. dressed: {
  46905. height: math.unit(6, "feet"),
  46906. weight: math.unit(225, "lb"),
  46907. name: "Dressed",
  46908. image: {
  46909. source: "./media/characters/brooke/dressed.svg",
  46910. extra: 1050/1010,
  46911. bottom: 66/1116
  46912. }
  46913. },
  46914. },
  46915. [
  46916. {
  46917. name: "Canon Height",
  46918. height: math.unit(500, "miles"),
  46919. default: true
  46920. },
  46921. ]
  46922. ))
  46923. characterMakers.push(() => makeCharacter(
  46924. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  46925. {
  46926. front: {
  46927. height: math.unit(6 + 2/12, "feet"),
  46928. weight: math.unit(210, "lb"),
  46929. name: "Front",
  46930. image: {
  46931. source: "./media/characters/wubs/front.svg",
  46932. extra: 1345/1325,
  46933. bottom: 70/1415
  46934. }
  46935. },
  46936. back: {
  46937. height: math.unit(6 + 2/12, "feet"),
  46938. weight: math.unit(210, "lb"),
  46939. name: "Back",
  46940. image: {
  46941. source: "./media/characters/wubs/back.svg",
  46942. extra: 1296/1275,
  46943. bottom: 58/1354
  46944. }
  46945. },
  46946. },
  46947. [
  46948. {
  46949. name: "Normal",
  46950. height: math.unit(6 + 2/12, "feet"),
  46951. default: true
  46952. },
  46953. {
  46954. name: "Macro",
  46955. height: math.unit(1000, "feet")
  46956. },
  46957. {
  46958. name: "Megamacro",
  46959. height: math.unit(1, "mile")
  46960. },
  46961. ]
  46962. ))
  46963. characterMakers.push(() => makeCharacter(
  46964. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  46965. {
  46966. front: {
  46967. height: math.unit(4, "feet"),
  46968. weight: math.unit(120, "lb"),
  46969. name: "Front",
  46970. image: {
  46971. source: "./media/characters/blue/front.svg",
  46972. extra: 1636/1525,
  46973. bottom: 43/1679
  46974. }
  46975. },
  46976. back: {
  46977. height: math.unit(4, "feet"),
  46978. weight: math.unit(120, "lb"),
  46979. name: "Back",
  46980. image: {
  46981. source: "./media/characters/blue/back.svg",
  46982. extra: 1660/1560,
  46983. bottom: 57/1717
  46984. }
  46985. },
  46986. paws: {
  46987. height: math.unit(0.826, "feet"),
  46988. name: "Paws",
  46989. image: {
  46990. source: "./media/characters/blue/paws.svg"
  46991. }
  46992. },
  46993. },
  46994. [
  46995. {
  46996. name: "Micro",
  46997. height: math.unit(3, "inches")
  46998. },
  46999. {
  47000. name: "Normal",
  47001. height: math.unit(4, "feet"),
  47002. default: true
  47003. },
  47004. {
  47005. name: "Femenine Form",
  47006. height: math.unit(14, "feet")
  47007. },
  47008. {
  47009. name: "Werebat Form",
  47010. height: math.unit(18, "feet")
  47011. },
  47012. ]
  47013. ))
  47014. characterMakers.push(() => makeCharacter(
  47015. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  47016. {
  47017. female: {
  47018. height: math.unit(7 + 4/12, "feet"),
  47019. weight: math.unit(243, "lb"),
  47020. name: "Female",
  47021. image: {
  47022. source: "./media/characters/kaya/female.svg",
  47023. extra: 975/898,
  47024. bottom: 34/1009
  47025. }
  47026. },
  47027. herm: {
  47028. height: math.unit(7 + 4/12, "feet"),
  47029. weight: math.unit(243, "lb"),
  47030. name: "Herm",
  47031. image: {
  47032. source: "./media/characters/kaya/herm.svg",
  47033. extra: 975/898,
  47034. bottom: 34/1009
  47035. }
  47036. },
  47037. },
  47038. [
  47039. {
  47040. name: "Normal",
  47041. height: math.unit(7 + 4/12, "feet"),
  47042. default: true
  47043. },
  47044. ]
  47045. ))
  47046. characterMakers.push(() => makeCharacter(
  47047. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  47048. {
  47049. female: {
  47050. height: math.unit(9 + 4/12, "feet"),
  47051. weight: math.unit(398, "lb"),
  47052. name: "Female",
  47053. image: {
  47054. source: "./media/characters/kassandra/female.svg",
  47055. extra: 908/839,
  47056. bottom: 61/969
  47057. }
  47058. },
  47059. intersex: {
  47060. height: math.unit(9 + 4/12, "feet"),
  47061. weight: math.unit(398, "lb"),
  47062. name: "Intersex",
  47063. image: {
  47064. source: "./media/characters/kassandra/intersex.svg",
  47065. extra: 908/839,
  47066. bottom: 61/969
  47067. }
  47068. },
  47069. },
  47070. [
  47071. {
  47072. name: "Normal",
  47073. height: math.unit(9 + 4/12, "feet"),
  47074. default: true
  47075. },
  47076. ]
  47077. ))
  47078. characterMakers.push(() => makeCharacter(
  47079. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  47080. {
  47081. front: {
  47082. height: math.unit(3, "meters"),
  47083. name: "Front",
  47084. image: {
  47085. source: "./media/characters/amy/front.svg",
  47086. extra: 1380/1343,
  47087. bottom: 70/1450
  47088. }
  47089. },
  47090. back: {
  47091. height: math.unit(3, "meters"),
  47092. name: "Back",
  47093. image: {
  47094. source: "./media/characters/amy/back.svg",
  47095. extra: 1380/1347,
  47096. bottom: 66/1446
  47097. }
  47098. },
  47099. },
  47100. [
  47101. {
  47102. name: "Normal",
  47103. height: math.unit(3, "meters"),
  47104. default: true
  47105. },
  47106. ]
  47107. ))
  47108. characterMakers.push(() => makeCharacter(
  47109. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  47110. {
  47111. side: {
  47112. height: math.unit(47, "cm"),
  47113. weight: math.unit(10.8, "kg"),
  47114. name: "Side",
  47115. image: {
  47116. source: "./media/characters/alphaschakal/side.svg",
  47117. extra: 1058/568,
  47118. bottom: 62/1120
  47119. }
  47120. },
  47121. back: {
  47122. height: math.unit(78, "cm"),
  47123. weight: math.unit(10.8, "kg"),
  47124. name: "Back",
  47125. image: {
  47126. source: "./media/characters/alphaschakal/back.svg",
  47127. extra: 1102/942,
  47128. bottom: 185/1287
  47129. }
  47130. },
  47131. head: {
  47132. height: math.unit(28, "cm"),
  47133. name: "Head",
  47134. image: {
  47135. source: "./media/characters/alphaschakal/head.svg",
  47136. extra: 696/508,
  47137. bottom: 0/696
  47138. }
  47139. },
  47140. paw: {
  47141. height: math.unit(16, "cm"),
  47142. name: "Paw",
  47143. image: {
  47144. source: "./media/characters/alphaschakal/paw.svg"
  47145. }
  47146. },
  47147. },
  47148. [
  47149. {
  47150. name: "Normal",
  47151. height: math.unit(47, "cm"),
  47152. default: true
  47153. },
  47154. {
  47155. name: "Macro",
  47156. height: math.unit(340, "cm")
  47157. },
  47158. ]
  47159. ))
  47160. characterMakers.push(() => makeCharacter(
  47161. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  47162. {
  47163. front: {
  47164. height: math.unit(36, "earths"),
  47165. name: "Front",
  47166. image: {
  47167. source: "./media/characters/ecobyss/front.svg",
  47168. extra: 1282/1215,
  47169. bottom: 11/1293
  47170. }
  47171. },
  47172. back: {
  47173. height: math.unit(36, "earths"),
  47174. name: "Back",
  47175. image: {
  47176. source: "./media/characters/ecobyss/back.svg",
  47177. extra: 1291/1222,
  47178. bottom: 8/1299
  47179. }
  47180. },
  47181. },
  47182. [
  47183. {
  47184. name: "Normal",
  47185. height: math.unit(36, "earths"),
  47186. default: true
  47187. },
  47188. ]
  47189. ))
  47190. characterMakers.push(() => makeCharacter(
  47191. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  47192. {
  47193. front: {
  47194. height: math.unit(12, "feet"),
  47195. name: "Front",
  47196. image: {
  47197. source: "./media/characters/vasuk/front.svg",
  47198. extra: 1326/1207,
  47199. bottom: 64/1390
  47200. }
  47201. },
  47202. },
  47203. [
  47204. {
  47205. name: "Normal",
  47206. height: math.unit(12, "feet"),
  47207. default: true
  47208. },
  47209. ]
  47210. ))
  47211. characterMakers.push(() => makeCharacter(
  47212. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  47213. {
  47214. side: {
  47215. height: math.unit(100, "feet"),
  47216. name: "Side",
  47217. image: {
  47218. source: "./media/characters/linneaus/side.svg",
  47219. extra: 987/807,
  47220. bottom: 47/1034
  47221. }
  47222. },
  47223. },
  47224. [
  47225. {
  47226. name: "Macro",
  47227. height: math.unit(100, "feet"),
  47228. default: true
  47229. },
  47230. ]
  47231. ))
  47232. characterMakers.push(() => makeCharacter(
  47233. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  47234. {
  47235. front: {
  47236. height: math.unit(8, "feet"),
  47237. weight: math.unit(1200, "lb"),
  47238. name: "Front",
  47239. image: {
  47240. source: "./media/characters/nyterious-daligdig/front.svg",
  47241. extra: 1284/1094,
  47242. bottom: 84/1368
  47243. }
  47244. },
  47245. back: {
  47246. height: math.unit(8, "feet"),
  47247. weight: math.unit(1200, "lb"),
  47248. name: "Back",
  47249. image: {
  47250. source: "./media/characters/nyterious-daligdig/back.svg",
  47251. extra: 1301/1121,
  47252. bottom: 129/1430
  47253. }
  47254. },
  47255. mouth: {
  47256. height: math.unit(1.464, "feet"),
  47257. name: "Mouth",
  47258. image: {
  47259. source: "./media/characters/nyterious-daligdig/mouth.svg"
  47260. }
  47261. },
  47262. },
  47263. [
  47264. {
  47265. name: "Small",
  47266. height: math.unit(8, "feet"),
  47267. default: true
  47268. },
  47269. {
  47270. name: "Normal",
  47271. height: math.unit(15, "feet")
  47272. },
  47273. {
  47274. name: "Macro",
  47275. height: math.unit(90, "feet")
  47276. },
  47277. ]
  47278. ))
  47279. characterMakers.push(() => makeCharacter(
  47280. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  47281. {
  47282. front: {
  47283. height: math.unit(7 + 4/12, "feet"),
  47284. weight: math.unit(252, "lb"),
  47285. name: "Front",
  47286. image: {
  47287. source: "./media/characters/bandel/front.svg",
  47288. extra: 1946/1775,
  47289. bottom: 26/1972
  47290. }
  47291. },
  47292. back: {
  47293. height: math.unit(7 + 4/12, "feet"),
  47294. weight: math.unit(252, "lb"),
  47295. name: "Back",
  47296. image: {
  47297. source: "./media/characters/bandel/back.svg",
  47298. extra: 1940/1770,
  47299. bottom: 25/1965
  47300. }
  47301. },
  47302. maw: {
  47303. height: math.unit(2.15, "feet"),
  47304. name: "Maw",
  47305. image: {
  47306. source: "./media/characters/bandel/maw.svg"
  47307. }
  47308. },
  47309. stomach: {
  47310. height: math.unit(1.95, "feet"),
  47311. name: "Stomach",
  47312. image: {
  47313. source: "./media/characters/bandel/stomach.svg"
  47314. }
  47315. },
  47316. },
  47317. [
  47318. {
  47319. name: "Normal",
  47320. height: math.unit(7 + 4/12, "feet"),
  47321. default: true
  47322. },
  47323. ]
  47324. ))
  47325. characterMakers.push(() => makeCharacter(
  47326. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  47327. {
  47328. front: {
  47329. height: math.unit(10 + 5/12, "feet"),
  47330. weight: math.unit(773.5, "kg"),
  47331. name: "Front",
  47332. image: {
  47333. source: "./media/characters/zed/front.svg",
  47334. extra: 987/941,
  47335. bottom: 52/1039
  47336. }
  47337. },
  47338. },
  47339. [
  47340. {
  47341. name: "Short",
  47342. height: math.unit(5 + 4/12, "feet")
  47343. },
  47344. {
  47345. name: "Average",
  47346. height: math.unit(10 + 5/12, "feet"),
  47347. default: true
  47348. },
  47349. {
  47350. name: "Mini-Macro",
  47351. height: math.unit(24 + 9/12, "feet")
  47352. },
  47353. {
  47354. name: "Macro",
  47355. height: math.unit(249, "feet")
  47356. },
  47357. {
  47358. name: "Mega-Macro",
  47359. height: math.unit(12490, "feet")
  47360. },
  47361. {
  47362. name: "Giga-Macro",
  47363. height: math.unit(24.9, "miles")
  47364. },
  47365. {
  47366. name: "Tera-Macro",
  47367. height: math.unit(24900, "miles")
  47368. },
  47369. {
  47370. name: "Cosmic Scale",
  47371. height: math.unit(38.9, "lightyears")
  47372. },
  47373. {
  47374. name: "Universal Scale",
  47375. height: math.unit(138e12, "lightyears")
  47376. },
  47377. ]
  47378. ))
  47379. characterMakers.push(() => makeCharacter(
  47380. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  47381. {
  47382. front: {
  47383. height: math.unit(1561, "inches"),
  47384. name: "Front",
  47385. image: {
  47386. source: "./media/characters/ivan/front.svg",
  47387. extra: 1126/1071,
  47388. bottom: 26/1152
  47389. }
  47390. },
  47391. back: {
  47392. height: math.unit(1561, "inches"),
  47393. name: "Back",
  47394. image: {
  47395. source: "./media/characters/ivan/back.svg",
  47396. extra: 1134/1079,
  47397. bottom: 30/1164
  47398. }
  47399. },
  47400. },
  47401. [
  47402. {
  47403. name: "Normal",
  47404. height: math.unit(1561, "inches"),
  47405. default: true
  47406. },
  47407. ]
  47408. ))
  47409. characterMakers.push(() => makeCharacter(
  47410. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  47411. {
  47412. front: {
  47413. height: math.unit(5 + 7/12, "feet"),
  47414. weight: math.unit(150, "lb"),
  47415. name: "Front",
  47416. image: {
  47417. source: "./media/characters/robin-arctic-hare/front.svg",
  47418. extra: 1148/974,
  47419. bottom: 20/1168
  47420. }
  47421. },
  47422. },
  47423. [
  47424. {
  47425. name: "Normal",
  47426. height: math.unit(5 + 7/12, "feet"),
  47427. default: true
  47428. },
  47429. ]
  47430. ))
  47431. characterMakers.push(() => makeCharacter(
  47432. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  47433. {
  47434. side: {
  47435. height: math.unit(5, "feet"),
  47436. name: "Side",
  47437. image: {
  47438. source: "./media/characters/birch/side.svg",
  47439. extra: 985/796,
  47440. bottom: 111/1096
  47441. }
  47442. },
  47443. },
  47444. [
  47445. {
  47446. name: "Normal",
  47447. height: math.unit(5, "feet"),
  47448. default: true
  47449. },
  47450. ]
  47451. ))
  47452. characterMakers.push(() => makeCharacter(
  47453. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  47454. {
  47455. front: {
  47456. height: math.unit(4, "feet"),
  47457. name: "Front",
  47458. image: {
  47459. source: "./media/characters/rasp/front.svg",
  47460. extra: 561/478,
  47461. bottom: 74/635
  47462. }
  47463. },
  47464. },
  47465. [
  47466. {
  47467. name: "Normal",
  47468. height: math.unit(4, "feet"),
  47469. default: true
  47470. },
  47471. ]
  47472. ))
  47473. characterMakers.push(() => makeCharacter(
  47474. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  47475. {
  47476. front: {
  47477. height: math.unit(4 + 6/12, "feet"),
  47478. name: "Front",
  47479. image: {
  47480. source: "./media/characters/agatha/front.svg",
  47481. extra: 947/933,
  47482. bottom: 42/989
  47483. }
  47484. },
  47485. back: {
  47486. height: math.unit(4 + 6/12, "feet"),
  47487. name: "Back",
  47488. image: {
  47489. source: "./media/characters/agatha/back.svg",
  47490. extra: 935/922,
  47491. bottom: 48/983
  47492. }
  47493. },
  47494. },
  47495. [
  47496. {
  47497. name: "Normal",
  47498. height: math.unit(4 + 6 /12, "feet"),
  47499. default: true
  47500. },
  47501. {
  47502. name: "Max Size",
  47503. height: math.unit(500, "feet")
  47504. },
  47505. ]
  47506. ))
  47507. characterMakers.push(() => makeCharacter(
  47508. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  47509. {
  47510. side: {
  47511. height: math.unit(30, "feet"),
  47512. name: "Side",
  47513. image: {
  47514. source: "./media/characters/roggy/side.svg",
  47515. extra: 909/643,
  47516. bottom: 63/972
  47517. }
  47518. },
  47519. lounging: {
  47520. height: math.unit(20, "feet"),
  47521. name: "Lounging",
  47522. image: {
  47523. source: "./media/characters/roggy/lounging.svg",
  47524. extra: 643/479,
  47525. bottom: 145/788
  47526. }
  47527. },
  47528. handpaw: {
  47529. height: math.unit(13.1, "feet"),
  47530. name: "Handpaw",
  47531. image: {
  47532. source: "./media/characters/roggy/handpaw.svg"
  47533. }
  47534. },
  47535. footpaw: {
  47536. height: math.unit(15.8, "feet"),
  47537. name: "Footpaw",
  47538. image: {
  47539. source: "./media/characters/roggy/footpaw.svg"
  47540. }
  47541. },
  47542. },
  47543. [
  47544. {
  47545. name: "Menacing",
  47546. height: math.unit(30, "feet"),
  47547. default: true
  47548. },
  47549. ]
  47550. ))
  47551. characterMakers.push(() => makeCharacter(
  47552. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  47553. {
  47554. front: {
  47555. height: math.unit(5 + 7/12, "feet"),
  47556. weight: math.unit(135, "lb"),
  47557. name: "Front",
  47558. image: {
  47559. source: "./media/characters/naomi/front.svg",
  47560. extra: 1209/1154,
  47561. bottom: 129/1338
  47562. }
  47563. },
  47564. back: {
  47565. height: math.unit(5 + 7/12, "feet"),
  47566. weight: math.unit(135, "lb"),
  47567. name: "Back",
  47568. image: {
  47569. source: "./media/characters/naomi/back.svg",
  47570. extra: 1252/1190,
  47571. bottom: 23/1275
  47572. }
  47573. },
  47574. },
  47575. [
  47576. {
  47577. name: "Normal",
  47578. height: math.unit(5 + 7 /12, "feet"),
  47579. default: true
  47580. },
  47581. ]
  47582. ))
  47583. characterMakers.push(() => makeCharacter(
  47584. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  47585. {
  47586. side: {
  47587. height: math.unit(35, "meters"),
  47588. name: "Side",
  47589. image: {
  47590. source: "./media/characters/kimpi/side.svg",
  47591. extra: 419/382,
  47592. bottom: 63/482
  47593. }
  47594. },
  47595. hand: {
  47596. height: math.unit(8.96, "meters"),
  47597. name: "Hand",
  47598. image: {
  47599. source: "./media/characters/kimpi/hand.svg"
  47600. }
  47601. },
  47602. },
  47603. [
  47604. {
  47605. name: "Normal",
  47606. height: math.unit(35, "meters"),
  47607. default: true
  47608. },
  47609. ]
  47610. ))
  47611. characterMakers.push(() => makeCharacter(
  47612. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  47613. {
  47614. front: {
  47615. height: math.unit(4 + 4/12, "feet"),
  47616. name: "Front",
  47617. image: {
  47618. source: "./media/characters/pepper-purrloin/front.svg",
  47619. extra: 1141/1024,
  47620. bottom: 21/1162
  47621. }
  47622. },
  47623. },
  47624. [
  47625. {
  47626. name: "Normal",
  47627. height: math.unit(4 + 4/12, "feet"),
  47628. default: true
  47629. },
  47630. ]
  47631. ))
  47632. characterMakers.push(() => makeCharacter(
  47633. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  47634. {
  47635. front: {
  47636. height: math.unit(6 + 2/12, "feet"),
  47637. name: "Front",
  47638. image: {
  47639. source: "./media/characters/raphael/front.svg",
  47640. extra: 1101/962,
  47641. bottom: 59/1160
  47642. }
  47643. },
  47644. },
  47645. [
  47646. {
  47647. name: "Normal",
  47648. height: math.unit(6 + 2/12, "feet"),
  47649. default: true
  47650. },
  47651. ]
  47652. ))
  47653. characterMakers.push(() => makeCharacter(
  47654. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  47655. {
  47656. front: {
  47657. height: math.unit(6, "feet"),
  47658. weight: math.unit(150, "lb"),
  47659. name: "Front",
  47660. image: {
  47661. source: "./media/characters/victor-williams/front.svg",
  47662. extra: 1894/1825,
  47663. bottom: 67/1961
  47664. }
  47665. },
  47666. },
  47667. [
  47668. {
  47669. name: "Normal",
  47670. height: math.unit(6, "feet"),
  47671. default: true
  47672. },
  47673. ]
  47674. ))
  47675. characterMakers.push(() => makeCharacter(
  47676. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  47677. {
  47678. front: {
  47679. height: math.unit(5 + 8/12, "feet"),
  47680. weight: math.unit(150, "lb"),
  47681. name: "Front",
  47682. image: {
  47683. source: "./media/characters/rachel/front.svg",
  47684. extra: 1902/1787,
  47685. bottom: 46/1948
  47686. }
  47687. },
  47688. },
  47689. [
  47690. {
  47691. name: "Base Height",
  47692. height: math.unit(5 + 8/12, "feet"),
  47693. default: true
  47694. },
  47695. {
  47696. name: "Macro",
  47697. height: math.unit(200, "feet")
  47698. },
  47699. {
  47700. name: "Mega Macro",
  47701. height: math.unit(1, "mile")
  47702. },
  47703. {
  47704. name: "Giga Macro",
  47705. height: math.unit(1500, "miles")
  47706. },
  47707. {
  47708. name: "Tera Macro",
  47709. height: math.unit(8000, "miles")
  47710. },
  47711. {
  47712. name: "Tera Macro+",
  47713. height: math.unit(2e5, "miles")
  47714. },
  47715. ]
  47716. ))
  47717. characterMakers.push(() => makeCharacter(
  47718. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  47719. {
  47720. front: {
  47721. height: math.unit(6.5, "feet"),
  47722. name: "Front",
  47723. image: {
  47724. source: "./media/characters/svetlana-rozovskaya/front.svg",
  47725. extra: 860/819,
  47726. bottom: 307/1167
  47727. }
  47728. },
  47729. back: {
  47730. height: math.unit(6.5, "feet"),
  47731. name: "Back",
  47732. image: {
  47733. source: "./media/characters/svetlana-rozovskaya/back.svg",
  47734. extra: 880/837,
  47735. bottom: 395/1275
  47736. }
  47737. },
  47738. sleeping: {
  47739. height: math.unit(2.79, "feet"),
  47740. name: "Sleeping",
  47741. image: {
  47742. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  47743. extra: 465/383,
  47744. bottom: 263/728
  47745. }
  47746. },
  47747. maw: {
  47748. height: math.unit(2.52, "feet"),
  47749. name: "Maw",
  47750. image: {
  47751. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  47752. }
  47753. },
  47754. },
  47755. [
  47756. {
  47757. name: "Normal",
  47758. height: math.unit(6.5, "feet"),
  47759. default: true
  47760. },
  47761. ]
  47762. ))
  47763. characterMakers.push(() => makeCharacter(
  47764. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  47765. {
  47766. front: {
  47767. height: math.unit(5, "feet"),
  47768. name: "Front",
  47769. image: {
  47770. source: "./media/characters/nova-nerium/front.svg",
  47771. extra: 1548/1392,
  47772. bottom: 374/1922
  47773. }
  47774. },
  47775. back: {
  47776. height: math.unit(5, "feet"),
  47777. name: "Back",
  47778. image: {
  47779. source: "./media/characters/nova-nerium/back.svg",
  47780. extra: 1658/1468,
  47781. bottom: 257/1915
  47782. }
  47783. },
  47784. },
  47785. [
  47786. {
  47787. name: "Normal",
  47788. height: math.unit(5, "feet"),
  47789. default: true
  47790. },
  47791. ]
  47792. ))
  47793. characterMakers.push(() => makeCharacter(
  47794. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  47795. {
  47796. front: {
  47797. height: math.unit(5 + 4/12, "feet"),
  47798. name: "Front",
  47799. image: {
  47800. source: "./media/characters/ashe-pyriph/front.svg",
  47801. extra: 1935/1747,
  47802. bottom: 60/1995
  47803. }
  47804. },
  47805. },
  47806. [
  47807. {
  47808. name: "Normal",
  47809. height: math.unit(5 + 4/12, "feet"),
  47810. default: true
  47811. },
  47812. ]
  47813. ))
  47814. characterMakers.push(() => makeCharacter(
  47815. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  47816. {
  47817. front: {
  47818. height: math.unit(8.7, "feet"),
  47819. name: "Front",
  47820. image: {
  47821. source: "./media/characters/flicker-wisp/front.svg",
  47822. extra: 1835/1613,
  47823. bottom: 449/2284
  47824. }
  47825. },
  47826. side: {
  47827. height: math.unit(8.7, "feet"),
  47828. name: "Side",
  47829. image: {
  47830. source: "./media/characters/flicker-wisp/side.svg",
  47831. extra: 1841/1642,
  47832. bottom: 336/2177
  47833. },
  47834. default: true
  47835. },
  47836. maw: {
  47837. height: math.unit(3.35, "feet"),
  47838. name: "Maw",
  47839. image: {
  47840. source: "./media/characters/flicker-wisp/maw.svg",
  47841. extra: 2338/1506,
  47842. bottom: 0/2338
  47843. }
  47844. },
  47845. ovipositor: {
  47846. height: math.unit(4.95, "feet"),
  47847. name: "Ovipositor",
  47848. image: {
  47849. source: "./media/characters/flicker-wisp/ovipositor.svg"
  47850. }
  47851. },
  47852. egg: {
  47853. height: math.unit(0.385, "feet"),
  47854. weight: math.unit(2, "lb"),
  47855. name: "Egg",
  47856. image: {
  47857. source: "./media/characters/flicker-wisp/egg.svg"
  47858. }
  47859. },
  47860. },
  47861. [
  47862. {
  47863. name: "Normal",
  47864. height: math.unit(8.7, "feet"),
  47865. default: true
  47866. },
  47867. ]
  47868. ))
  47869. characterMakers.push(() => makeCharacter(
  47870. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  47871. {
  47872. side: {
  47873. height: math.unit(11, "feet"),
  47874. name: "Side",
  47875. image: {
  47876. source: "./media/characters/faefnul/side.svg",
  47877. extra: 1100/1007,
  47878. bottom: 0/1100
  47879. }
  47880. },
  47881. },
  47882. [
  47883. {
  47884. name: "Normal",
  47885. height: math.unit(11, "feet"),
  47886. default: true
  47887. },
  47888. ]
  47889. ))
  47890. characterMakers.push(() => makeCharacter(
  47891. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  47892. {
  47893. front: {
  47894. height: math.unit(6 + 2/12, "feet"),
  47895. name: "Front",
  47896. image: {
  47897. source: "./media/characters/shady/front.svg",
  47898. extra: 502/461,
  47899. bottom: 9/511
  47900. }
  47901. },
  47902. kneeling: {
  47903. height: math.unit(4.6, "feet"),
  47904. name: "Kneeling",
  47905. image: {
  47906. source: "./media/characters/shady/kneeling.svg",
  47907. extra: 1328/1219,
  47908. bottom: 117/1445
  47909. }
  47910. },
  47911. maw: {
  47912. height: math.unit(2, "feet"),
  47913. name: "Maw",
  47914. image: {
  47915. source: "./media/characters/shady/maw.svg"
  47916. }
  47917. },
  47918. },
  47919. [
  47920. {
  47921. name: "Nano",
  47922. height: math.unit(1, "mm")
  47923. },
  47924. {
  47925. name: "Micro",
  47926. height: math.unit(12, "mm")
  47927. },
  47928. {
  47929. name: "Tiny",
  47930. height: math.unit(3, "inches")
  47931. },
  47932. {
  47933. name: "Normal",
  47934. height: math.unit(6 + 2/12, "feet"),
  47935. default: true
  47936. },
  47937. {
  47938. name: "Big",
  47939. height: math.unit(15, "feet")
  47940. },
  47941. {
  47942. name: "Macro",
  47943. height: math.unit(150, "feet")
  47944. },
  47945. {
  47946. name: "Titanic",
  47947. height: math.unit(500, "feet")
  47948. },
  47949. ]
  47950. ))
  47951. characterMakers.push(() => makeCharacter(
  47952. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  47953. {
  47954. front: {
  47955. height: math.unit(12, "feet"),
  47956. name: "Front",
  47957. image: {
  47958. source: "./media/characters/fenrir/front.svg",
  47959. extra: 968/875,
  47960. bottom: 22/990
  47961. }
  47962. },
  47963. },
  47964. [
  47965. {
  47966. name: "Big",
  47967. height: math.unit(12, "feet"),
  47968. default: true
  47969. },
  47970. ]
  47971. ))
  47972. characterMakers.push(() => makeCharacter(
  47973. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  47974. {
  47975. front: {
  47976. height: math.unit(5 + 4/12, "feet"),
  47977. name: "Front",
  47978. image: {
  47979. source: "./media/characters/makar/front.svg",
  47980. extra: 1181/1112,
  47981. bottom: 78/1259
  47982. }
  47983. },
  47984. },
  47985. [
  47986. {
  47987. name: "Normal",
  47988. height: math.unit(5 + 4/12, "feet"),
  47989. default: true
  47990. },
  47991. ]
  47992. ))
  47993. characterMakers.push(() => makeCharacter(
  47994. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  47995. {
  47996. front: {
  47997. height: math.unit(5 + 7/12, "feet"),
  47998. name: "Front",
  47999. image: {
  48000. source: "./media/characters/callow/front.svg",
  48001. extra: 1482/1304,
  48002. bottom: 23/1505
  48003. }
  48004. },
  48005. back: {
  48006. height: math.unit(5 + 7/12, "feet"),
  48007. name: "Back",
  48008. image: {
  48009. source: "./media/characters/callow/back.svg",
  48010. extra: 1484/1296,
  48011. bottom: 25/1509
  48012. }
  48013. },
  48014. },
  48015. [
  48016. {
  48017. name: "Micro",
  48018. height: math.unit(3, "inches"),
  48019. default: true
  48020. },
  48021. {
  48022. name: "Normal",
  48023. height: math.unit(5 + 7/12, "feet")
  48024. },
  48025. ]
  48026. ))
  48027. characterMakers.push(() => makeCharacter(
  48028. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  48029. {
  48030. front: {
  48031. height: math.unit(6 + 2/12, "feet"),
  48032. name: "Front",
  48033. image: {
  48034. source: "./media/characters/natel/front.svg",
  48035. extra: 1833/1692,
  48036. bottom: 166/1999
  48037. }
  48038. },
  48039. },
  48040. [
  48041. {
  48042. name: "Normal",
  48043. height: math.unit(6 + 2/12, "feet"),
  48044. default: true
  48045. },
  48046. ]
  48047. ))
  48048. characterMakers.push(() => makeCharacter(
  48049. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  48050. {
  48051. front: {
  48052. height: math.unit(1.75, "meters"),
  48053. name: "Front",
  48054. image: {
  48055. source: "./media/characters/misu/front.svg",
  48056. extra: 1690/1558,
  48057. bottom: 234/1924
  48058. }
  48059. },
  48060. back: {
  48061. height: math.unit(1.75, "meters"),
  48062. name: "Back",
  48063. image: {
  48064. source: "./media/characters/misu/back.svg",
  48065. extra: 1762/1618,
  48066. bottom: 146/1908
  48067. }
  48068. },
  48069. frontNude: {
  48070. height: math.unit(1.75, "meters"),
  48071. name: "Front (Nude)",
  48072. image: {
  48073. source: "./media/characters/misu/front-nude.svg",
  48074. extra: 1690/1558,
  48075. bottom: 234/1924
  48076. }
  48077. },
  48078. backNude: {
  48079. height: math.unit(1.75, "meters"),
  48080. name: "Back (Nude)",
  48081. image: {
  48082. source: "./media/characters/misu/back-nude.svg",
  48083. extra: 1762/1618,
  48084. bottom: 146/1908
  48085. }
  48086. },
  48087. frontErect: {
  48088. height: math.unit(1.75, "meters"),
  48089. name: "Front (Erect)",
  48090. image: {
  48091. source: "./media/characters/misu/front-erect.svg",
  48092. extra: 1690/1558,
  48093. bottom: 234/1924
  48094. }
  48095. },
  48096. maw: {
  48097. height: math.unit(0.47, "meters"),
  48098. name: "Maw",
  48099. image: {
  48100. source: "./media/characters/misu/maw.svg"
  48101. }
  48102. },
  48103. head: {
  48104. height: math.unit(0.35, "meters"),
  48105. name: "Head",
  48106. image: {
  48107. source: "./media/characters/misu/head.svg"
  48108. }
  48109. },
  48110. rear: {
  48111. height: math.unit(0.47, "meters"),
  48112. name: "Rear",
  48113. image: {
  48114. source: "./media/characters/misu/rear.svg"
  48115. }
  48116. },
  48117. },
  48118. [
  48119. {
  48120. name: "Normal",
  48121. height: math.unit(1.75, "meters")
  48122. },
  48123. {
  48124. name: "Not good for the people",
  48125. height: math.unit(42, "meters")
  48126. },
  48127. {
  48128. name: "Not good for the neighborhood",
  48129. height: math.unit(135, "meters")
  48130. },
  48131. {
  48132. name: "Bit bigger problem",
  48133. height: math.unit(380, "meters"),
  48134. default: true
  48135. },
  48136. {
  48137. name: "Not good for the city",
  48138. height: math.unit(1.5, "km")
  48139. },
  48140. {
  48141. name: "Not good for the county",
  48142. height: math.unit(5.5, "km")
  48143. },
  48144. {
  48145. name: "Not good for the state",
  48146. height: math.unit(25, "km")
  48147. },
  48148. {
  48149. name: "Not good for the country",
  48150. height: math.unit(125, "km")
  48151. },
  48152. {
  48153. name: "Not good for the continent",
  48154. height: math.unit(2100, "km")
  48155. },
  48156. {
  48157. name: "Not good for the planet",
  48158. height: math.unit(35000, "km")
  48159. },
  48160. {
  48161. name: "Just no",
  48162. height: math.unit(8.5e18, "km")
  48163. },
  48164. ]
  48165. ))
  48166. characterMakers.push(() => makeCharacter(
  48167. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  48168. {
  48169. front: {
  48170. height: math.unit(6.5, "feet"),
  48171. name: "Front",
  48172. image: {
  48173. source: "./media/characters/poppy/front.svg",
  48174. extra: 1878/1812,
  48175. bottom: 43/1921
  48176. }
  48177. },
  48178. feet: {
  48179. height: math.unit(1.06, "feet"),
  48180. name: "Feet",
  48181. image: {
  48182. source: "./media/characters/poppy/feet.svg",
  48183. extra: 1083/1083,
  48184. bottom: 87/1170
  48185. }
  48186. },
  48187. },
  48188. [
  48189. {
  48190. name: "Human",
  48191. height: math.unit(6.5, "feet")
  48192. },
  48193. {
  48194. name: "Default",
  48195. height: math.unit(300, "feet"),
  48196. default: true
  48197. },
  48198. {
  48199. name: "Huge",
  48200. height: math.unit(850, "feet")
  48201. },
  48202. {
  48203. name: "Mega",
  48204. height: math.unit(8000, "feet")
  48205. },
  48206. {
  48207. name: "Giga",
  48208. height: math.unit(300, "miles")
  48209. },
  48210. ]
  48211. ))
  48212. characterMakers.push(() => makeCharacter(
  48213. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  48214. {
  48215. bipedal: {
  48216. height: math.unit(7, "feet"),
  48217. name: "Bipedal",
  48218. image: {
  48219. source: "./media/characters/zener/bipedal.svg",
  48220. extra: 874/805,
  48221. bottom: 109/983
  48222. }
  48223. },
  48224. quadrupedal: {
  48225. height: math.unit(4.64, "feet"),
  48226. name: "Quadrupedal",
  48227. image: {
  48228. source: "./media/characters/zener/quadrupedal.svg",
  48229. extra: 638/507,
  48230. bottom: 190/828
  48231. }
  48232. },
  48233. cock: {
  48234. height: math.unit(18, "inches"),
  48235. name: "Cock",
  48236. image: {
  48237. source: "./media/characters/zener/cock.svg"
  48238. }
  48239. },
  48240. },
  48241. [
  48242. {
  48243. name: "Normal",
  48244. height: math.unit(7, "feet"),
  48245. default: true
  48246. },
  48247. ]
  48248. ))
  48249. characterMakers.push(() => makeCharacter(
  48250. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  48251. {
  48252. nude: {
  48253. height: math.unit(5 + 6/12, "feet"),
  48254. name: "Nude",
  48255. image: {
  48256. source: "./media/characters/charlie-dog/nude.svg",
  48257. extra: 768/734,
  48258. bottom: 26/794
  48259. }
  48260. },
  48261. dressed: {
  48262. height: math.unit(5 + 6/12, "feet"),
  48263. name: "Dressed",
  48264. image: {
  48265. source: "./media/characters/charlie-dog/dressed.svg",
  48266. extra: 768/734,
  48267. bottom: 26/794
  48268. }
  48269. },
  48270. },
  48271. [
  48272. {
  48273. name: "Normal",
  48274. height: math.unit(5 + 6/12, "feet"),
  48275. default: true
  48276. },
  48277. ]
  48278. ))
  48279. characterMakers.push(() => makeCharacter(
  48280. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  48281. {
  48282. front: {
  48283. height: math.unit(6 + 4/12, "feet"),
  48284. name: "Front",
  48285. image: {
  48286. source: "./media/characters/ir'istrasz/front.svg",
  48287. extra: 1014/977,
  48288. bottom: 65/1079
  48289. }
  48290. },
  48291. back: {
  48292. height: math.unit(6 + 4/12, "feet"),
  48293. name: "Back",
  48294. image: {
  48295. source: "./media/characters/ir'istrasz/back.svg",
  48296. extra: 1024/992,
  48297. bottom: 34/1058
  48298. }
  48299. },
  48300. },
  48301. [
  48302. {
  48303. name: "Normal",
  48304. height: math.unit(6 + 4/12, "feet"),
  48305. default: true
  48306. },
  48307. ]
  48308. ))
  48309. characterMakers.push(() => makeCharacter(
  48310. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  48311. {
  48312. front: {
  48313. height: math.unit(5 + 8/12, "feet"),
  48314. name: "Front",
  48315. image: {
  48316. source: "./media/characters/dee-ditto/front.svg",
  48317. extra: 1874/1785,
  48318. bottom: 68/1942
  48319. }
  48320. },
  48321. back: {
  48322. height: math.unit(5 + 8/12, "feet"),
  48323. name: "Back",
  48324. image: {
  48325. source: "./media/characters/dee-ditto/back.svg",
  48326. extra: 1870/1783,
  48327. bottom: 77/1947
  48328. }
  48329. },
  48330. },
  48331. [
  48332. {
  48333. name: "Normal",
  48334. height: math.unit(5 + 8/12, "feet"),
  48335. default: true
  48336. },
  48337. ]
  48338. ))
  48339. characterMakers.push(() => makeCharacter(
  48340. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  48341. {
  48342. front: {
  48343. height: math.unit(7 + 6/12, "feet"),
  48344. name: "Front",
  48345. image: {
  48346. source: "./media/characters/fey/front.svg",
  48347. extra: 995/979,
  48348. bottom: 30/1025
  48349. }
  48350. },
  48351. back: {
  48352. height: math.unit(7 + 6/12, "feet"),
  48353. name: "Back",
  48354. image: {
  48355. source: "./media/characters/fey/back.svg",
  48356. extra: 1079/1008,
  48357. bottom: 5/1084
  48358. }
  48359. },
  48360. dressed: {
  48361. height: math.unit(7 + 6/12, "feet"),
  48362. name: "Dressed",
  48363. image: {
  48364. source: "./media/characters/fey/dressed.svg",
  48365. extra: 995/979,
  48366. bottom: 30/1025
  48367. }
  48368. },
  48369. },
  48370. [
  48371. {
  48372. name: "Normal",
  48373. height: math.unit(7 + 6/12, "feet"),
  48374. default: true
  48375. },
  48376. ]
  48377. ))
  48378. characterMakers.push(() => makeCharacter(
  48379. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  48380. {
  48381. standing: {
  48382. height: math.unit(17, "feet"),
  48383. name: "Standing",
  48384. image: {
  48385. source: "./media/characters/aster/standing.svg",
  48386. extra: 1798/1598,
  48387. bottom: 117/1915
  48388. }
  48389. },
  48390. },
  48391. [
  48392. {
  48393. name: "Normal",
  48394. height: math.unit(17, "feet"),
  48395. default: true
  48396. },
  48397. {
  48398. name: "Homewrecker",
  48399. height: math.unit(95, "feet")
  48400. },
  48401. {
  48402. name: "Planet Devourer",
  48403. height: math.unit(1008000, "miles")
  48404. },
  48405. ]
  48406. ))
  48407. characterMakers.push(() => makeCharacter(
  48408. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  48409. {
  48410. front: {
  48411. height: math.unit(6 + 5/12, "feet"),
  48412. weight: math.unit(265, "lb"),
  48413. name: "Front",
  48414. image: {
  48415. source: "./media/characters/devon-childs/front.svg",
  48416. extra: 1795/1721,
  48417. bottom: 41/1836
  48418. }
  48419. },
  48420. side: {
  48421. height: math.unit(6 + 5/12, "feet"),
  48422. weight: math.unit(265, "lb"),
  48423. name: "Side",
  48424. image: {
  48425. source: "./media/characters/devon-childs/side.svg",
  48426. extra: 1812/1738,
  48427. bottom: 30/1842
  48428. }
  48429. },
  48430. back: {
  48431. height: math.unit(6 + 5/12, "feet"),
  48432. weight: math.unit(265, "lb"),
  48433. name: "Back",
  48434. image: {
  48435. source: "./media/characters/devon-childs/back.svg",
  48436. extra: 1808/1735,
  48437. bottom: 23/1831
  48438. }
  48439. },
  48440. hand: {
  48441. height: math.unit(1.464, "feet"),
  48442. name: "Hand",
  48443. image: {
  48444. source: "./media/characters/devon-childs/hand.svg"
  48445. }
  48446. },
  48447. foot: {
  48448. height: math.unit(1.6, "feet"),
  48449. name: "Foot",
  48450. image: {
  48451. source: "./media/characters/devon-childs/foot.svg"
  48452. }
  48453. },
  48454. },
  48455. [
  48456. {
  48457. name: "Micro",
  48458. height: math.unit(7, "cm")
  48459. },
  48460. {
  48461. name: "Normal",
  48462. height: math.unit(6 + 5/12, "feet"),
  48463. default: true
  48464. },
  48465. {
  48466. name: "Macro",
  48467. height: math.unit(154, "feet")
  48468. },
  48469. ]
  48470. ))
  48471. characterMakers.push(() => makeCharacter(
  48472. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  48473. {
  48474. front: {
  48475. height: math.unit(6, "feet"),
  48476. weight: math.unit(180, "lb"),
  48477. name: "Front",
  48478. image: {
  48479. source: "./media/characters/lydemox-vir/front.svg",
  48480. extra: 1632/1435,
  48481. bottom: 58/1690
  48482. }
  48483. },
  48484. frontSFW: {
  48485. height: math.unit(6, "feet"),
  48486. weight: math.unit(180, "lb"),
  48487. name: "Front (SFW)",
  48488. image: {
  48489. source: "./media/characters/lydemox-vir/front-sfw.svg",
  48490. extra: 1632/1435,
  48491. bottom: 58/1690
  48492. }
  48493. },
  48494. back: {
  48495. height: math.unit(6, "feet"),
  48496. weight: math.unit(180, "lb"),
  48497. name: "Back",
  48498. image: {
  48499. source: "./media/characters/lydemox-vir/back.svg",
  48500. extra: 1593/1408,
  48501. bottom: 31/1624
  48502. }
  48503. },
  48504. paw: {
  48505. height: math.unit(1.85, "feet"),
  48506. name: "Paw",
  48507. image: {
  48508. source: "./media/characters/lydemox-vir/paw.svg"
  48509. }
  48510. },
  48511. dick: {
  48512. height: math.unit(1.8, "feet"),
  48513. name: "Dick",
  48514. image: {
  48515. source: "./media/characters/lydemox-vir/dick.svg"
  48516. }
  48517. },
  48518. },
  48519. [
  48520. {
  48521. name: "Macro",
  48522. height: math.unit(100, "feet"),
  48523. default: true
  48524. },
  48525. {
  48526. name: "Teramacro",
  48527. height: math.unit(1, "earth")
  48528. },
  48529. {
  48530. name: "Planetary",
  48531. height: math.unit(20, "earths")
  48532. },
  48533. ]
  48534. ))
  48535. characterMakers.push(() => makeCharacter(
  48536. { name: "Mia", species: ["panda"], tags: ["anthro"] },
  48537. {
  48538. front: {
  48539. height: math.unit(15 + 8/12, "feet"),
  48540. weight: math.unit(1237, "kg"),
  48541. name: "Front",
  48542. image: {
  48543. source: "./media/characters/mia/front.svg",
  48544. extra: 1573/1446,
  48545. bottom: 58/1631
  48546. }
  48547. },
  48548. },
  48549. [
  48550. {
  48551. name: "Small",
  48552. height: math.unit(9 + 5/12, "feet")
  48553. },
  48554. {
  48555. name: "Normal",
  48556. height: math.unit(15 + 8/12, "feet"),
  48557. default: true
  48558. },
  48559. ]
  48560. ))
  48561. characterMakers.push(() => makeCharacter(
  48562. { name: "Mr. Graves", species: ["wolf"], tags: ["anthro"] },
  48563. {
  48564. front: {
  48565. height: math.unit(10 + 6/12, "feet"),
  48566. weight: math.unit(1.3, "tons"),
  48567. name: "Front",
  48568. image: {
  48569. source: "./media/characters/mr-graves/front.svg",
  48570. extra: 1779/1695,
  48571. bottom: 198/1977
  48572. }
  48573. },
  48574. },
  48575. [
  48576. {
  48577. name: "Normal",
  48578. height: math.unit(10 + 6 /12, "feet"),
  48579. default: true
  48580. },
  48581. ]
  48582. ))
  48583. characterMakers.push(() => makeCharacter(
  48584. { name: "Jess", species: ["human"], tags: ["anthro"] },
  48585. {
  48586. dressedFront: {
  48587. height: math.unit(5 + 8/12, "feet"),
  48588. weight: math.unit(125, "lb"),
  48589. name: "Dressed (Front)",
  48590. image: {
  48591. source: "./media/characters/jess/dressed-front.svg",
  48592. extra: 1176/1152,
  48593. bottom: 42/1218
  48594. }
  48595. },
  48596. dressedSide: {
  48597. height: math.unit(5 + 8/12, "feet"),
  48598. weight: math.unit(125, "lb"),
  48599. name: "Dressed (Side)",
  48600. image: {
  48601. source: "./media/characters/jess/dressed-side.svg",
  48602. extra: 1204/1190,
  48603. bottom: 6/1210
  48604. }
  48605. },
  48606. nudeFront: {
  48607. height: math.unit(5 + 8/12, "feet"),
  48608. weight: math.unit(125, "lb"),
  48609. name: "Nude (Front)",
  48610. image: {
  48611. source: "./media/characters/jess/nude-front.svg",
  48612. extra: 1176/1152,
  48613. bottom: 42/1218
  48614. }
  48615. },
  48616. nudeSide: {
  48617. height: math.unit(5 + 8/12, "feet"),
  48618. weight: math.unit(125, "lb"),
  48619. name: "Nude (Side)",
  48620. image: {
  48621. source: "./media/characters/jess/nude-side.svg",
  48622. extra: 1204/1190,
  48623. bottom: 6/1210
  48624. }
  48625. },
  48626. organsFront: {
  48627. height: math.unit(2.83799342105, "feet"),
  48628. name: "Organs (Front)",
  48629. image: {
  48630. source: "./media/characters/jess/organs-front.svg"
  48631. }
  48632. },
  48633. organsSide: {
  48634. height: math.unit(2.64225290474, "feet"),
  48635. name: "Organs (Side)",
  48636. image: {
  48637. source: "./media/characters/jess/organs-side.svg"
  48638. }
  48639. },
  48640. digestiveTractFront: {
  48641. height: math.unit(2.8106580871, "feet"),
  48642. name: "Digestive Tract (Front)",
  48643. image: {
  48644. source: "./media/characters/jess/digestive-tract-front.svg"
  48645. }
  48646. },
  48647. digestiveTractSide: {
  48648. height: math.unit(2.54365045014, "feet"),
  48649. name: "Digestive Tract (Side)",
  48650. image: {
  48651. source: "./media/characters/jess/digestive-tract-side.svg"
  48652. }
  48653. },
  48654. respiratorySystemFront: {
  48655. height: math.unit(1.11196233456, "feet"),
  48656. name: "Respiratory System (Front)",
  48657. image: {
  48658. source: "./media/characters/jess/respiratory-system-front.svg"
  48659. }
  48660. },
  48661. respiratorySystemSide: {
  48662. height: math.unit(0.89327966297, "feet"),
  48663. name: "Respiratory System (Side)",
  48664. image: {
  48665. source: "./media/characters/jess/respiratory-system-side.svg"
  48666. }
  48667. },
  48668. urinaryTractFront: {
  48669. height: math.unit(1.16126356186, "feet"),
  48670. name: "Urinary Tract (Front)",
  48671. image: {
  48672. source: "./media/characters/jess/urinary-tract-front.svg"
  48673. }
  48674. },
  48675. urinaryTractSide: {
  48676. height: math.unit(1.20910039627, "feet"),
  48677. name: "Urinary Tract (Side)",
  48678. image: {
  48679. source: "./media/characters/jess/urinary-tract-side.svg"
  48680. }
  48681. },
  48682. reproductiveOrgansFront: {
  48683. height: math.unit(0.48422591566, "feet"),
  48684. name: "Reproductive Organs (Front)",
  48685. image: {
  48686. source: "./media/characters/jess/reproductive-organs-front.svg"
  48687. }
  48688. },
  48689. reproductiveOrgansSide: {
  48690. height: math.unit(0.61553314481, "feet"),
  48691. name: "Reproductive Organs (Side)",
  48692. image: {
  48693. source: "./media/characters/jess/reproductive-organs-side.svg"
  48694. }
  48695. },
  48696. breastsFront: {
  48697. height: math.unit(0.47690395121, "feet"),
  48698. name: "Breasts (Front)",
  48699. image: {
  48700. source: "./media/characters/jess/breasts-front.svg"
  48701. }
  48702. },
  48703. breastsSide: {
  48704. height: math.unit(0.30556998307, "feet"),
  48705. name: "Breasts (Side)",
  48706. image: {
  48707. source: "./media/characters/jess/breasts-side.svg"
  48708. }
  48709. },
  48710. heartFront: {
  48711. height: math.unit(0.53011022622, "feet"),
  48712. name: "Heart (Front)",
  48713. image: {
  48714. source: "./media/characters/jess/heart-front.svg"
  48715. }
  48716. },
  48717. heartSide: {
  48718. height: math.unit(0.51790695213, "feet"),
  48719. name: "Heart (Side)",
  48720. image: {
  48721. source: "./media/characters/jess/heart-side.svg"
  48722. }
  48723. },
  48724. earsAndNoseFront: {
  48725. height: math.unit(0.29385483995, "feet"),
  48726. name: "Ears and Nose (Front)",
  48727. image: {
  48728. source: "./media/characters/jess/ears-and-nose-front.svg"
  48729. }
  48730. },
  48731. earsAndNoseSide: {
  48732. height: math.unit(0.18109658741, "feet"),
  48733. name: "Ears and Nose (Side)",
  48734. image: {
  48735. source: "./media/characters/jess/ears-and-nose-side.svg"
  48736. }
  48737. },
  48738. },
  48739. [
  48740. {
  48741. name: "Normal",
  48742. height: math.unit(5 + 8/12, "feet"),
  48743. default: true
  48744. },
  48745. ]
  48746. ))
  48747. characterMakers.push(() => makeCharacter(
  48748. { name: "Wimpering", species: ["human"], tags: ["anthro"] },
  48749. {
  48750. front: {
  48751. height: math.unit(6, "feet"),
  48752. weight: math.unit(6.64467e-7, "grams"),
  48753. name: "Front",
  48754. image: {
  48755. source: "./media/characters/wimpering/front.svg",
  48756. extra: 597/587,
  48757. bottom: 34/631
  48758. }
  48759. },
  48760. },
  48761. [
  48762. {
  48763. name: "Micro",
  48764. height: math.unit(0.4, "mm"),
  48765. default: true
  48766. },
  48767. ]
  48768. ))
  48769. characterMakers.push(() => makeCharacter(
  48770. { name: "Keltre", species: ["dog"], tags: ["anthro"] },
  48771. {
  48772. front: {
  48773. height: math.unit(5 + 2/12, "feet"),
  48774. weight: math.unit(110, "lb"),
  48775. name: "Front",
  48776. image: {
  48777. source: "./media/characters/keltre/front.svg",
  48778. extra: 1099/1057,
  48779. bottom: 22/1121
  48780. }
  48781. },
  48782. back: {
  48783. height: math.unit(5 + 2/12, "feet"),
  48784. weight: math.unit(110, "lb"),
  48785. name: "Back",
  48786. image: {
  48787. source: "./media/characters/keltre/back.svg",
  48788. extra: 1095/1053,
  48789. bottom: 17/1112
  48790. }
  48791. },
  48792. dressed: {
  48793. height: math.unit(5 + 2/12, "feet"),
  48794. weight: math.unit(110, "lb"),
  48795. name: "Dressed",
  48796. image: {
  48797. source: "./media/characters/keltre/dressed.svg",
  48798. extra: 1099/1057,
  48799. bottom: 22/1121
  48800. }
  48801. },
  48802. winter: {
  48803. height: math.unit(5 + 2/12, "feet"),
  48804. weight: math.unit(110, "lb"),
  48805. name: "Winter",
  48806. image: {
  48807. source: "./media/characters/keltre/winter.svg",
  48808. extra: 1099/1057,
  48809. bottom: 22/1121
  48810. }
  48811. },
  48812. head: {
  48813. height: math.unit(1.61 * 0.86, "feet"),
  48814. name: "Head",
  48815. image: {
  48816. source: "./media/characters/keltre/head.svg",
  48817. extra: 534/421,
  48818. bottom: 0/534
  48819. }
  48820. },
  48821. hand: {
  48822. height: math.unit(1.3 * 0.86, "feet"),
  48823. name: "Hand",
  48824. image: {
  48825. source: "./media/characters/keltre/hand.svg"
  48826. }
  48827. },
  48828. foot: {
  48829. height: math.unit(1.8 * 0.86, "feet"),
  48830. name: "Foot",
  48831. image: {
  48832. source: "./media/characters/keltre/foot.svg"
  48833. }
  48834. },
  48835. },
  48836. [
  48837. {
  48838. name: "Fine",
  48839. height: math.unit(1, "inch")
  48840. },
  48841. {
  48842. name: "Dimnutive",
  48843. height: math.unit(4, "inches")
  48844. },
  48845. {
  48846. name: "Tiny",
  48847. height: math.unit(1, "foot")
  48848. },
  48849. {
  48850. name: "Small",
  48851. height: math.unit(3, "feet")
  48852. },
  48853. {
  48854. name: "Normal",
  48855. height: math.unit(5 + 2/12, "feet"),
  48856. default: true
  48857. },
  48858. ]
  48859. ))
  48860. characterMakers.push(() => makeCharacter(
  48861. { name: "Nox", species: ["cat"], tags: ["anthro"] },
  48862. {
  48863. front: {
  48864. height: math.unit(6 + 2/12, "feet"),
  48865. name: "Front",
  48866. image: {
  48867. source: "./media/characters/nox/front.svg",
  48868. extra: 1917/1830,
  48869. bottom: 74/1991
  48870. }
  48871. },
  48872. back: {
  48873. height: math.unit(6 + 2/12, "feet"),
  48874. name: "Back",
  48875. image: {
  48876. source: "./media/characters/nox/back.svg",
  48877. extra: 1896/1815,
  48878. bottom: 21/1917
  48879. }
  48880. },
  48881. head: {
  48882. height: math.unit(1.1, "feet"),
  48883. name: "Head",
  48884. image: {
  48885. source: "./media/characters/nox/head.svg",
  48886. extra: 874/704,
  48887. bottom: 0/874
  48888. }
  48889. },
  48890. tattoo: {
  48891. height: math.unit(0.729, "feet"),
  48892. name: "Tattoo",
  48893. image: {
  48894. source: "./media/characters/nox/tattoo.svg"
  48895. }
  48896. },
  48897. },
  48898. [
  48899. {
  48900. name: "Normal",
  48901. height: math.unit(6 + 2/12, "feet")
  48902. },
  48903. {
  48904. name: "Gigamacro",
  48905. height: math.unit(2, "earths"),
  48906. default: true
  48907. },
  48908. {
  48909. name: "Cosmic",
  48910. height: math.unit(867, "yottameters")
  48911. },
  48912. ]
  48913. ))
  48914. characterMakers.push(() => makeCharacter(
  48915. { name: "Caspian", species: ["ferret"], tags: ["anthro"] },
  48916. {
  48917. front: {
  48918. height: math.unit(6, "feet"),
  48919. weight: math.unit(150, "lb"),
  48920. name: "Front",
  48921. image: {
  48922. source: "./media/characters/caspian/front.svg",
  48923. extra: 1443/1359,
  48924. bottom: 0/1443
  48925. }
  48926. },
  48927. back: {
  48928. height: math.unit(6, "feet"),
  48929. weight: math.unit(150, "lb"),
  48930. name: "Back",
  48931. image: {
  48932. source: "./media/characters/caspian/back.svg",
  48933. extra: 1379/1309,
  48934. bottom: 0/1379
  48935. }
  48936. },
  48937. head: {
  48938. height: math.unit(0.9, "feet"),
  48939. name: "Head",
  48940. image: {
  48941. source: "./media/characters/caspian/head.svg",
  48942. extra: 692/492,
  48943. bottom: 0/692
  48944. }
  48945. },
  48946. headAlt: {
  48947. height: math.unit(0.95, "feet"),
  48948. name: "Head (Alt)",
  48949. image: {
  48950. source: "./media/characters/caspian/head-alt.svg",
  48951. extra: 668/508,
  48952. bottom: 0/668
  48953. }
  48954. },
  48955. hand: {
  48956. height: math.unit(0.8, "feet"),
  48957. name: "Hand",
  48958. image: {
  48959. source: "./media/characters/caspian/hand.svg"
  48960. }
  48961. },
  48962. paw: {
  48963. height: math.unit(0.95, "feet"),
  48964. name: "Paw",
  48965. image: {
  48966. source: "./media/characters/caspian/paw.svg"
  48967. }
  48968. },
  48969. },
  48970. [
  48971. {
  48972. name: "Normal",
  48973. height: math.unit(162, "feet"),
  48974. default: true
  48975. },
  48976. ]
  48977. ))
  48978. characterMakers.push(() => makeCharacter(
  48979. { name: "Myra Aisling", species: ["coyote"], tags: ["anthro"] },
  48980. {
  48981. front: {
  48982. height: math.unit(6, "feet"),
  48983. name: "Front",
  48984. image: {
  48985. source: "./media/characters/myra-aisling/front.svg",
  48986. extra: 1268/1166,
  48987. bottom: 73/1341
  48988. }
  48989. },
  48990. back: {
  48991. height: math.unit(6, "feet"),
  48992. name: "Back",
  48993. image: {
  48994. source: "./media/characters/myra-aisling/back.svg",
  48995. extra: 1249/1149,
  48996. bottom: 79/1328
  48997. }
  48998. },
  48999. dressed: {
  49000. height: math.unit(6, "feet"),
  49001. name: "Dressed",
  49002. image: {
  49003. source: "./media/characters/myra-aisling/dressed.svg",
  49004. extra: 1290/1189,
  49005. bottom: 47/1337
  49006. }
  49007. },
  49008. hand: {
  49009. height: math.unit(1.1, "feet"),
  49010. name: "Hand",
  49011. image: {
  49012. source: "./media/characters/myra-aisling/hand.svg"
  49013. }
  49014. },
  49015. paw: {
  49016. height: math.unit(1.23, "feet"),
  49017. name: "Paw",
  49018. image: {
  49019. source: "./media/characters/myra-aisling/paw.svg"
  49020. }
  49021. },
  49022. },
  49023. [
  49024. {
  49025. name: "Normal",
  49026. height: math.unit(160, "feet"),
  49027. default: true
  49028. },
  49029. ]
  49030. ))
  49031. characterMakers.push(() => makeCharacter(
  49032. { name: "Tenley Sidero", species: ["lycanroc"], tags: ["anthro"] },
  49033. {
  49034. front: {
  49035. height: math.unit(6, "feet"),
  49036. name: "Front",
  49037. image: {
  49038. source: "./media/characters/tenley-sidero/front.svg",
  49039. extra: 1365/1276,
  49040. bottom: 47/1412
  49041. }
  49042. },
  49043. back: {
  49044. height: math.unit(6, "feet"),
  49045. name: "Back",
  49046. image: {
  49047. source: "./media/characters/tenley-sidero/back.svg",
  49048. extra: 1383/1283,
  49049. bottom: 35/1418
  49050. }
  49051. },
  49052. dressed: {
  49053. height: math.unit(6, "feet"),
  49054. name: "Dressed",
  49055. image: {
  49056. source: "./media/characters/tenley-sidero/dressed.svg",
  49057. extra: 1364/1275,
  49058. bottom: 42/1406
  49059. }
  49060. },
  49061. head: {
  49062. height: math.unit(1.47, "feet"),
  49063. name: "Head",
  49064. image: {
  49065. source: "./media/characters/tenley-sidero/head.svg",
  49066. extra: 610/490,
  49067. bottom: 0/610
  49068. }
  49069. },
  49070. },
  49071. [
  49072. {
  49073. name: "Normal",
  49074. height: math.unit(154, "feet"),
  49075. default: true
  49076. },
  49077. ]
  49078. ))
  49079. characterMakers.push(() => makeCharacter(
  49080. { name: "Mallory", species: ["rabbit"], tags: ["anthro"] },
  49081. {
  49082. front: {
  49083. height: math.unit(5, "inches"),
  49084. name: "Front",
  49085. image: {
  49086. source: "./media/characters/mallory/front.svg",
  49087. extra: 1919/1678,
  49088. bottom: 29/1948
  49089. }
  49090. },
  49091. hand: {
  49092. height: math.unit(0.73, "inches"),
  49093. name: "Hand",
  49094. image: {
  49095. source: "./media/characters/mallory/hand.svg"
  49096. }
  49097. },
  49098. paw: {
  49099. height: math.unit(0.68, "inches"),
  49100. name: "Paw",
  49101. image: {
  49102. source: "./media/characters/mallory/paw.svg"
  49103. }
  49104. },
  49105. },
  49106. [
  49107. {
  49108. name: "Small",
  49109. height: math.unit(5, "inches"),
  49110. default: true
  49111. },
  49112. ]
  49113. ))
  49114. characterMakers.push(() => makeCharacter(
  49115. { name: "Mab", species: ["opossum"], tags: ["anthro"] },
  49116. {
  49117. naked: {
  49118. height: math.unit(6, "feet"),
  49119. name: "Naked",
  49120. image: {
  49121. source: "./media/characters/mab/naked.svg",
  49122. extra: 1855/1757,
  49123. bottom: 208/2063
  49124. }
  49125. },
  49126. outside: {
  49127. height: math.unit(6, "feet"),
  49128. name: "Outside",
  49129. image: {
  49130. source: "./media/characters/mab/outside.svg",
  49131. extra: 1855/1757,
  49132. bottom: 208/2063
  49133. }
  49134. },
  49135. party: {
  49136. height: math.unit(6, "feet"),
  49137. name: "Party",
  49138. image: {
  49139. source: "./media/characters/mab/party.svg",
  49140. extra: 1855/1757,
  49141. bottom: 208/2063
  49142. }
  49143. },
  49144. },
  49145. [
  49146. {
  49147. name: "Normal",
  49148. height: math.unit(165, "feet"),
  49149. default: true
  49150. },
  49151. ]
  49152. ))
  49153. characterMakers.push(() => makeCharacter(
  49154. { name: "Winter", species: ["arcanine"], tags: ["feral"] },
  49155. {
  49156. front: {
  49157. height: math.unit(12, "feet"),
  49158. weight: math.unit(4000, "lb"),
  49159. name: "Front",
  49160. image: {
  49161. source: "./media/characters/winter/front.svg",
  49162. extra: 1286/943,
  49163. bottom: 112/1398
  49164. }
  49165. },
  49166. frontNsfw: {
  49167. height: math.unit(12, "feet"),
  49168. weight: math.unit(4000, "lb"),
  49169. name: "Front (NSFW)",
  49170. image: {
  49171. source: "./media/characters/winter/front-nsfw.svg",
  49172. extra: 1286/943,
  49173. bottom: 112/1398
  49174. }
  49175. },
  49176. dick: {
  49177. height: math.unit(3.79, "feet"),
  49178. name: "Dick",
  49179. image: {
  49180. source: "./media/characters/winter/dick.svg"
  49181. }
  49182. },
  49183. },
  49184. [
  49185. {
  49186. name: "Big",
  49187. height: math.unit(12, "feet"),
  49188. default: true
  49189. },
  49190. ]
  49191. ))
  49192. characterMakers.push(() => makeCharacter(
  49193. { name: "Alto", species: ["mouse", "chinchilla"], tags: ["anthro"] },
  49194. {
  49195. front: {
  49196. height: math.unit(4.1, "inches"),
  49197. name: "Front",
  49198. image: {
  49199. source: "./media/characters/alto/front.svg",
  49200. extra: 736/627,
  49201. bottom: 90/826
  49202. }
  49203. },
  49204. },
  49205. [
  49206. {
  49207. name: "Normal",
  49208. height: math.unit(4.1, "inches"),
  49209. default: true
  49210. },
  49211. ]
  49212. ))
  49213. characterMakers.push(() => makeCharacter(
  49214. { name: "Ratstrid V", species: ["opossum"], tags: ["anthro"] },
  49215. {
  49216. sitting: {
  49217. height: math.unit(3, "feet"),
  49218. name: "Sitting",
  49219. image: {
  49220. source: "./media/characters/ratstrid-v/sitting.svg",
  49221. extra: 355/310,
  49222. bottom: 136/491
  49223. }
  49224. },
  49225. },
  49226. [
  49227. {
  49228. name: "Normal",
  49229. height: math.unit(3, "feet"),
  49230. default: true
  49231. },
  49232. ]
  49233. ))
  49234. characterMakers.push(() => makeCharacter(
  49235. { name: "Siz", species: ["cinderace"], tags: ["anthro"] },
  49236. {
  49237. back: {
  49238. height: math.unit(6, "feet"),
  49239. weight: math.unit(350, "lb"),
  49240. name: "Back",
  49241. image: {
  49242. source: "./media/characters/siz/back.svg",
  49243. extra: 1449/1274,
  49244. bottom: 13/1462
  49245. }
  49246. },
  49247. },
  49248. [
  49249. {
  49250. name: "Over-Overcompressed",
  49251. height: math.unit(8, "feet")
  49252. },
  49253. {
  49254. name: "Overcompressed",
  49255. height: math.unit(32, "feet")
  49256. },
  49257. {
  49258. name: "Compressed",
  49259. height: math.unit(128, "feet"),
  49260. default: true
  49261. },
  49262. {
  49263. name: "Half-Compressed",
  49264. height: math.unit(512, "feet")
  49265. },
  49266. {
  49267. name: "Quarter-Compressed",
  49268. height: math.unit(2048, "feet")
  49269. },
  49270. {
  49271. name: "Uncompressed?",
  49272. height: math.unit(8192, "feet")
  49273. },
  49274. ]
  49275. ))
  49276. characterMakers.push(() => makeCharacter(
  49277. { name: "Ven", species: ["raven"], tags: ["anthro"] },
  49278. {
  49279. front: {
  49280. height: math.unit(5 + 9/12, "feet"),
  49281. weight: math.unit(150, "lb"),
  49282. name: "Front",
  49283. image: {
  49284. source: "./media/characters/ven/front.svg",
  49285. extra: 1372/1320,
  49286. bottom: 73/1445
  49287. }
  49288. },
  49289. side: {
  49290. height: math.unit(5 + 9/12, "feet"),
  49291. weight: math.unit(1150, "lb"),
  49292. name: "Side",
  49293. image: {
  49294. source: "./media/characters/ven/side.svg",
  49295. extra: 1119/1070,
  49296. bottom: 42/1161
  49297. },
  49298. default: true
  49299. },
  49300. },
  49301. [
  49302. {
  49303. name: "Normal",
  49304. height: math.unit(5 + 9/12, "feet"),
  49305. default: true
  49306. },
  49307. ]
  49308. ))
  49309. characterMakers.push(() => makeCharacter(
  49310. { name: "Maple", species: ["caudin"], tags: ["anthro"] },
  49311. {
  49312. front: {
  49313. height: math.unit(12, "feet"),
  49314. weight: math.unit(1000, "kg"),
  49315. name: "Front",
  49316. image: {
  49317. source: "./media/characters/maple/front.svg",
  49318. extra: 1193/1081,
  49319. bottom: 22/1215
  49320. }
  49321. },
  49322. },
  49323. [
  49324. {
  49325. name: "Compressed",
  49326. height: math.unit(7, "feet")
  49327. },
  49328. {
  49329. name: "Normal",
  49330. height: math.unit(12, "feet"),
  49331. default: true
  49332. },
  49333. ]
  49334. ))
  49335. characterMakers.push(() => makeCharacter(
  49336. { name: "Nora", species: ["blaziken"], tags: ["anthro"] },
  49337. {
  49338. front: {
  49339. height: math.unit(9, "feet"),
  49340. weight: math.unit(1500, "lb"),
  49341. name: "Front",
  49342. image: {
  49343. source: "./media/characters/nora/front.svg",
  49344. extra: 1348/1286,
  49345. bottom: 218/1566
  49346. }
  49347. },
  49348. erect: {
  49349. height: math.unit(9, "feet"),
  49350. weight: math.unit(11500, "lb"),
  49351. name: "Erect",
  49352. image: {
  49353. source: "./media/characters/nora/erect.svg",
  49354. extra: 1488/1433,
  49355. bottom: 133/1621
  49356. }
  49357. },
  49358. },
  49359. [
  49360. {
  49361. name: "Normal",
  49362. height: math.unit(9, "feet"),
  49363. default: true
  49364. },
  49365. ]
  49366. ))
  49367. characterMakers.push(() => makeCharacter(
  49368. { name: "North (Caudin)", species: ["caudin"], tags: ["anthro"] },
  49369. {
  49370. front: {
  49371. height: math.unit(25, "feet"),
  49372. weight: math.unit(27500, "lb"),
  49373. name: "Front",
  49374. image: {
  49375. source: "./media/characters/north-caudin/front.svg",
  49376. extra: 1184/1082,
  49377. bottom: 23/1207
  49378. }
  49379. },
  49380. },
  49381. [
  49382. {
  49383. name: "Compressed",
  49384. height: math.unit(10, "feet")
  49385. },
  49386. {
  49387. name: "Normal",
  49388. height: math.unit(25, "feet"),
  49389. default: true
  49390. },
  49391. ]
  49392. ))
  49393. characterMakers.push(() => makeCharacter(
  49394. { name: "Merrian", species: ["caudin", "avian"], tags: ["anthro"] },
  49395. {
  49396. front: {
  49397. height: math.unit(9, "feet"),
  49398. weight: math.unit(1250, "lb"),
  49399. name: "Front",
  49400. image: {
  49401. source: "./media/characters/merrian/front.svg",
  49402. extra: 2393/2304,
  49403. bottom: 40/2433
  49404. }
  49405. },
  49406. },
  49407. [
  49408. {
  49409. name: "Normal",
  49410. height: math.unit(9, "feet"),
  49411. default: true
  49412. },
  49413. ]
  49414. ))
  49415. characterMakers.push(() => makeCharacter(
  49416. { name: "Hazel", species: ["red-winged-blackbird"], tags: ["anthro"] },
  49417. {
  49418. front: {
  49419. height: math.unit(9, "feet"),
  49420. weight: math.unit(1000, "lb"),
  49421. name: "Front",
  49422. image: {
  49423. source: "./media/characters/hazel/front.svg",
  49424. extra: 2351/2298,
  49425. bottom: 38/2389
  49426. }
  49427. },
  49428. },
  49429. [
  49430. {
  49431. name: "Normal",
  49432. height: math.unit(9, "feet"),
  49433. default: true
  49434. },
  49435. ]
  49436. ))
  49437. characterMakers.push(() => makeCharacter(
  49438. { name: "Emma", species: ["caudin"], tags: ["anthro"] },
  49439. {
  49440. front: {
  49441. height: math.unit(13, "feet"),
  49442. weight: math.unit(3200, "lb"),
  49443. name: "Front",
  49444. image: {
  49445. source: "./media/characters/emma/front.svg",
  49446. extra: 2263/2029,
  49447. bottom: 68/2331
  49448. }
  49449. },
  49450. },
  49451. [
  49452. {
  49453. name: "Normal",
  49454. height: math.unit(13, "feet"),
  49455. default: true
  49456. },
  49457. ]
  49458. ))
  49459. characterMakers.push(() => makeCharacter(
  49460. { name: "Ilumina", species: ["hooded-wheater"], tags: ["anthro"] },
  49461. {
  49462. front: {
  49463. height: math.unit(11 + 9/12, "feet"),
  49464. weight: math.unit(2500, "lb"),
  49465. name: "Front",
  49466. image: {
  49467. source: "./media/characters/ilumina/front.svg",
  49468. extra: 2248/2209,
  49469. bottom: 164/2412
  49470. }
  49471. },
  49472. },
  49473. [
  49474. {
  49475. name: "Normal",
  49476. height: math.unit(11 + 9/12, "feet"),
  49477. default: true
  49478. },
  49479. ]
  49480. ))
  49481. characterMakers.push(() => makeCharacter(
  49482. { name: "Moonshine", species: ["caudin"], tags: ["anthro"] },
  49483. {
  49484. front: {
  49485. height: math.unit(8 + 10/12, "feet"),
  49486. weight: math.unit(1350, "lb"),
  49487. name: "Front",
  49488. image: {
  49489. source: "./media/characters/moonshine/front.svg",
  49490. extra: 2395/2288,
  49491. bottom: 40/2435
  49492. }
  49493. },
  49494. },
  49495. [
  49496. {
  49497. name: "Normal",
  49498. height: math.unit(8 + 10/12, "feet"),
  49499. default: true
  49500. },
  49501. ]
  49502. ))
  49503. characterMakers.push(() => makeCharacter(
  49504. { name: "Aletia", species: ["caudin"], tags: ["anthro"] },
  49505. {
  49506. front: {
  49507. height: math.unit(14, "feet"),
  49508. weight: math.unit(3400, "lb"),
  49509. name: "Front",
  49510. image: {
  49511. source: "./media/characters/aletia/front.svg",
  49512. extra: 1185/1052,
  49513. bottom: 21/1206
  49514. }
  49515. },
  49516. },
  49517. [
  49518. {
  49519. name: "Compressed",
  49520. height: math.unit(8, "feet")
  49521. },
  49522. {
  49523. name: "Normal",
  49524. height: math.unit(14, "feet"),
  49525. default: true
  49526. },
  49527. ]
  49528. ))
  49529. characterMakers.push(() => makeCharacter(
  49530. { name: "Deidra", species: ["caudin"], tags: ["anthro"] },
  49531. {
  49532. front: {
  49533. height: math.unit(17, "feet"),
  49534. weight: math.unit(6500, "lb"),
  49535. name: "Front",
  49536. image: {
  49537. source: "./media/characters/deidra/front.svg",
  49538. extra: 1201/1081,
  49539. bottom: 16/1217
  49540. }
  49541. },
  49542. },
  49543. [
  49544. {
  49545. name: "Compressed",
  49546. height: math.unit(9 + 6/12, "feet")
  49547. },
  49548. {
  49549. name: "Normal",
  49550. height: math.unit(17, "feet"),
  49551. default: true
  49552. },
  49553. ]
  49554. ))
  49555. characterMakers.push(() => makeCharacter(
  49556. { name: "Freki Yrmori", species: ["folf"], tags: ["anthro"] },
  49557. {
  49558. front: {
  49559. height: math.unit(7 + 4/12, "feet"),
  49560. weight: math.unit(280, "lb"),
  49561. name: "Front",
  49562. image: {
  49563. source: "./media/characters/freki-yrmori/front.svg",
  49564. extra: 1286/1182,
  49565. bottom: 29/1315
  49566. }
  49567. },
  49568. maw: {
  49569. height: math.unit(0.9, "feet"),
  49570. name: "Maw",
  49571. image: {
  49572. source: "./media/characters/freki-yrmori/maw.svg"
  49573. }
  49574. },
  49575. },
  49576. [
  49577. {
  49578. name: "Normal",
  49579. height: math.unit(7 + 4/12, "feet"),
  49580. default: true
  49581. },
  49582. {
  49583. name: "Macro",
  49584. height: math.unit(38.5, "meters")
  49585. },
  49586. ]
  49587. ))
  49588. characterMakers.push(() => makeCharacter(
  49589. { name: "Aetherios", species: ["dragon"], tags: ["feral"] },
  49590. {
  49591. side: {
  49592. height: math.unit(47.2, "meters"),
  49593. weight: math.unit(10000, "tons"),
  49594. name: "Side",
  49595. image: {
  49596. source: "./media/characters/aetherios/side.svg",
  49597. extra: 2363/642,
  49598. bottom: 221/2584
  49599. }
  49600. },
  49601. top: {
  49602. height: math.unit(240, "meters"),
  49603. weight: math.unit(10000, "tons"),
  49604. name: "Top",
  49605. image: {
  49606. source: "./media/characters/aetherios/top.svg"
  49607. }
  49608. },
  49609. bottom: {
  49610. height: math.unit(240, "meters"),
  49611. weight: math.unit(10000, "tons"),
  49612. name: "Bottom",
  49613. image: {
  49614. source: "./media/characters/aetherios/bottom.svg"
  49615. }
  49616. },
  49617. head: {
  49618. height: math.unit(38.6, "meters"),
  49619. name: "Head",
  49620. image: {
  49621. source: "./media/characters/aetherios/head.svg",
  49622. extra: 1335/1112,
  49623. bottom: 0/1335
  49624. }
  49625. },
  49626. front: {
  49627. height: math.unit(29, "meters"),
  49628. name: "Front",
  49629. image: {
  49630. source: "./media/characters/aetherios/front.svg",
  49631. extra: 1266/953,
  49632. bottom: 158/1424
  49633. }
  49634. },
  49635. maw: {
  49636. height: math.unit(16.37, "meters"),
  49637. name: "Maw",
  49638. image: {
  49639. source: "./media/characters/aetherios/maw.svg",
  49640. extra: 748/637,
  49641. bottom: 0/748
  49642. },
  49643. extraAttributes: {
  49644. preyCapacity: {
  49645. name: "Capacity",
  49646. power: 3,
  49647. type: "volume",
  49648. base: math.unit(1000, "people")
  49649. },
  49650. tongueSize: {
  49651. name: "Tongue Size",
  49652. power: 2,
  49653. type: "area",
  49654. base: math.unit(21, "m^2")
  49655. }
  49656. }
  49657. },
  49658. forepaw: {
  49659. height: math.unit(18, "meters"),
  49660. name: "Forepaw",
  49661. image: {
  49662. source: "./media/characters/aetherios/forepaw.svg"
  49663. }
  49664. },
  49665. hindpaw: {
  49666. height: math.unit(23, "meters"),
  49667. name: "Hindpaw",
  49668. image: {
  49669. source: "./media/characters/aetherios/hindpaw.svg"
  49670. }
  49671. },
  49672. genitals: {
  49673. height: math.unit(42, "meters"),
  49674. name: "Genitals",
  49675. image: {
  49676. source: "./media/characters/aetherios/genitals.svg"
  49677. }
  49678. },
  49679. },
  49680. [
  49681. {
  49682. name: "Normal",
  49683. height: math.unit(47.2, "meters"),
  49684. default: true
  49685. },
  49686. {
  49687. name: "Macro",
  49688. height: math.unit(160, "meters")
  49689. },
  49690. {
  49691. name: "Mega",
  49692. height: math.unit(1.87, "km")
  49693. },
  49694. {
  49695. name: "Giga",
  49696. height: math.unit(40000, "km")
  49697. },
  49698. {
  49699. name: "Stellar",
  49700. height: math.unit(158000000, "km")
  49701. },
  49702. {
  49703. name: "Cosmic",
  49704. height: math.unit(9.46e12, "km")
  49705. },
  49706. ]
  49707. ))
  49708. characterMakers.push(() => makeCharacter(
  49709. { name: "Mizu (Gieeg)", species: ["gieeg"], tags: ["anthro"] },
  49710. {
  49711. front: {
  49712. height: math.unit(5 + 4/12, "feet"),
  49713. weight: math.unit(80, "lb"),
  49714. name: "Front",
  49715. image: {
  49716. source: "./media/characters/mizu-gieeg/front.svg",
  49717. extra: 850/709,
  49718. bottom: 52/902
  49719. }
  49720. },
  49721. back: {
  49722. height: math.unit(5 + 4/12, "feet"),
  49723. weight: math.unit(80, "lb"),
  49724. name: "Back",
  49725. image: {
  49726. source: "./media/characters/mizu-gieeg/back.svg",
  49727. extra: 882/745,
  49728. bottom: 25/907
  49729. }
  49730. },
  49731. },
  49732. [
  49733. {
  49734. name: "Normal",
  49735. height: math.unit(5 + 4/12, "feet"),
  49736. default: true
  49737. },
  49738. ]
  49739. ))
  49740. characterMakers.push(() => makeCharacter(
  49741. { name: "Roselle St. Papier", species: ["ringtail"], tags: ["anthro"] },
  49742. {
  49743. front: {
  49744. height: math.unit(6, "feet"),
  49745. name: "Front",
  49746. image: {
  49747. source: "./media/characters/roselle-st-papier/front.svg",
  49748. extra: 1430/1280,
  49749. bottom: 37/1467
  49750. }
  49751. },
  49752. back: {
  49753. height: math.unit(6, "feet"),
  49754. name: "Back",
  49755. image: {
  49756. source: "./media/characters/roselle-st-papier/back.svg",
  49757. extra: 1491/1296,
  49758. bottom: 23/1514
  49759. }
  49760. },
  49761. ear: {
  49762. height: math.unit(1.26, "feet"),
  49763. name: "Ear",
  49764. image: {
  49765. source: "./media/characters/roselle-st-papier/ear.svg"
  49766. }
  49767. },
  49768. },
  49769. [
  49770. {
  49771. name: "Normal",
  49772. height: math.unit(150, "feet"),
  49773. default: true
  49774. },
  49775. ]
  49776. ))
  49777. characterMakers.push(() => makeCharacter(
  49778. { name: "Valargent", species: ["fox"], tags: ["anthro"] },
  49779. {
  49780. front: {
  49781. height: math.unit(1, "inches"),
  49782. name: "Front",
  49783. image: {
  49784. source: "./media/characters/valargent/front.svg",
  49785. extra: 1825/1694,
  49786. bottom: 62/1887
  49787. }
  49788. },
  49789. back: {
  49790. height: math.unit(1, "inches"),
  49791. name: "Back",
  49792. image: {
  49793. source: "./media/characters/valargent/back.svg",
  49794. extra: 1775/1682,
  49795. bottom: 88/1863
  49796. }
  49797. },
  49798. },
  49799. [
  49800. {
  49801. name: "Micro",
  49802. height: math.unit(1, "inch"),
  49803. default: true
  49804. },
  49805. ]
  49806. ))
  49807. characterMakers.push(() => makeCharacter(
  49808. { name: "Zarina", species: ["hisuian-zoroark"], tags: ["anthro"] },
  49809. {
  49810. front: {
  49811. height: math.unit(3.4, "meters"),
  49812. name: "Front",
  49813. image: {
  49814. source: "./media/characters/zarina/front.svg",
  49815. extra: 1733/1425,
  49816. bottom: 93/1826
  49817. }
  49818. },
  49819. squatting: {
  49820. height: math.unit(2.14, "meters"),
  49821. name: "Squatting",
  49822. image: {
  49823. source: "./media/characters/zarina/squatting.svg",
  49824. extra: 1073/788,
  49825. bottom: 63/1136
  49826. }
  49827. },
  49828. back: {
  49829. height: math.unit(2.14, "meters"),
  49830. name: "Back",
  49831. image: {
  49832. source: "./media/characters/zarina/back.svg",
  49833. extra: 1128/885,
  49834. bottom: 0/1128
  49835. }
  49836. },
  49837. },
  49838. [
  49839. {
  49840. name: "Normal",
  49841. height: math.unit(3.4, "meters"),
  49842. default: true
  49843. },
  49844. {
  49845. name: "Big",
  49846. height: math.unit(5, "meters")
  49847. },
  49848. {
  49849. name: "Macro",
  49850. height: math.unit(110, "meters")
  49851. },
  49852. ]
  49853. ))
  49854. characterMakers.push(() => makeCharacter(
  49855. { name: "VentusAstroFox", species: ["fox"], tags: ["anthro"] },
  49856. {
  49857. front: {
  49858. height: math.unit(7, "feet"),
  49859. name: "Front",
  49860. image: {
  49861. source: "./media/characters/ventus-astro-fox/front.svg",
  49862. extra: 1792/1623,
  49863. bottom: 28/1820
  49864. }
  49865. },
  49866. back: {
  49867. height: math.unit(7, "feet"),
  49868. name: "Back",
  49869. image: {
  49870. source: "./media/characters/ventus-astro-fox/back.svg",
  49871. extra: 1789/1620,
  49872. bottom: 31/1820
  49873. }
  49874. },
  49875. outfit: {
  49876. height: math.unit(7, "feet"),
  49877. name: "Outfit",
  49878. image: {
  49879. source: "./media/characters/ventus-astro-fox/outfit.svg",
  49880. extra: 1054/925,
  49881. bottom: 15/1069
  49882. }
  49883. },
  49884. head: {
  49885. height: math.unit(1.12, "feet"),
  49886. name: "Head",
  49887. image: {
  49888. source: "./media/characters/ventus-astro-fox/head.svg",
  49889. extra: 866/504,
  49890. bottom: 0/866
  49891. }
  49892. },
  49893. hand: {
  49894. height: math.unit(1, "feet"),
  49895. name: "Hand",
  49896. image: {
  49897. source: "./media/characters/ventus-astro-fox/hand.svg"
  49898. }
  49899. },
  49900. paw: {
  49901. height: math.unit(1.5, "feet"),
  49902. name: "Paw",
  49903. image: {
  49904. source: "./media/characters/ventus-astro-fox/paw.svg"
  49905. }
  49906. },
  49907. },
  49908. [
  49909. {
  49910. name: "Normal",
  49911. height: math.unit(7, "feet"),
  49912. default: true
  49913. },
  49914. {
  49915. name: "Macro",
  49916. height: math.unit(200, "feet")
  49917. },
  49918. {
  49919. name: "Cosmic",
  49920. height: math.unit(3, "universes")
  49921. },
  49922. ]
  49923. ))
  49924. characterMakers.push(() => makeCharacter(
  49925. { name: "CORE-T", species: ["cybeast"], tags: ["anthro"] },
  49926. {
  49927. front: {
  49928. height: math.unit(3, "meters"),
  49929. weight: math.unit(7000, "lb"),
  49930. name: "Front",
  49931. image: {
  49932. source: "./media/characters/core-t/front.svg",
  49933. extra: 5729/4941,
  49934. bottom: 1129/6858
  49935. }
  49936. },
  49937. },
  49938. [
  49939. {
  49940. name: "Big",
  49941. height: math.unit(3, "meters"),
  49942. default: true
  49943. },
  49944. ]
  49945. ))
  49946. characterMakers.push(() => makeCharacter(
  49947. { name: "Cadbunny", species: ["cinderace"], tags: ["anthro"] },
  49948. {
  49949. normal: {
  49950. height: math.unit(6 + 6/12, "feet"),
  49951. weight: math.unit(275, "lb"),
  49952. name: "Front",
  49953. image: {
  49954. source: "./media/characters/cadbunny/normal.svg",
  49955. extra: 1129/947,
  49956. bottom: 93/1222
  49957. },
  49958. default: true,
  49959. form: "normal"
  49960. },
  49961. gigantamax: {
  49962. height: math.unit(26, "feet"),
  49963. weight: math.unit(16000, "lb"),
  49964. name: "Front",
  49965. image: {
  49966. source: "./media/characters/cadbunny/gigantamax.svg",
  49967. extra: 1133/944,
  49968. bottom: 90/1223
  49969. },
  49970. default: true,
  49971. form: "gigantamax"
  49972. },
  49973. },
  49974. [
  49975. {
  49976. name: "Normal",
  49977. height: math.unit(6 + 6/12, "feet"),
  49978. default: true,
  49979. form: "normal"
  49980. },
  49981. {
  49982. name: "Small",
  49983. height: math.unit(26, "feet"),
  49984. default: true,
  49985. form: "gigantamax"
  49986. },
  49987. {
  49988. name: "Large",
  49989. height: math.unit(78, "feet"),
  49990. form: "gigantamax"
  49991. },
  49992. ],
  49993. {
  49994. "normal": {
  49995. name: "Normal",
  49996. default: true
  49997. },
  49998. "gigantamax": {
  49999. name: "Gigantamax"
  50000. }
  50001. }
  50002. ))
  50003. characterMakers.push(() => makeCharacter(
  50004. { name: "Blitz Dunkelheit", species: ["wolf"], tags: ["anthro", "feral"] },
  50005. {
  50006. anthroFront: {
  50007. height: math.unit(8, "feet"),
  50008. weight: math.unit(300, "lb"),
  50009. name: "Front",
  50010. image: {
  50011. source: "./media/characters/blitz-dunkelheit/anthro-front.svg",
  50012. extra: 1272/1176,
  50013. bottom: 53/1325
  50014. },
  50015. form: "anthro",
  50016. default: true
  50017. },
  50018. feralSide: {
  50019. height: math.unit(4, "feet"),
  50020. weight: math.unit(250, "lb"),
  50021. name: "Side",
  50022. image: {
  50023. source: "./media/characters/blitz-dunkelheit/feral-side.svg",
  50024. extra: 731/621,
  50025. bottom: 0/731
  50026. },
  50027. form: "feral",
  50028. default: true
  50029. },
  50030. },
  50031. [
  50032. {
  50033. name: "Regular",
  50034. height: math.unit(8, "feet"),
  50035. form: "anthro"
  50036. },
  50037. {
  50038. name: "Macro",
  50039. height: math.unit(250, "feet"),
  50040. form: "anthro",
  50041. default: true
  50042. },
  50043. {
  50044. name: "Regular",
  50045. height: math.unit(4, "feet"),
  50046. form: "feral"
  50047. },
  50048. {
  50049. name: "Macro",
  50050. height: math.unit(125, "feet"),
  50051. form: "feral",
  50052. default: true
  50053. },
  50054. ],
  50055. {
  50056. "anthro": {
  50057. name: "Anthro",
  50058. default: true
  50059. },
  50060. "feral": {
  50061. name: "Feral",
  50062. },
  50063. }
  50064. ))
  50065. characterMakers.push(() => makeCharacter(
  50066. { name: "Maple (Javira Dragon)", species: ["javira-dragon"], tags: ["feral"] },
  50067. {
  50068. front: {
  50069. height: math.unit(11 + 10/12, "feet"),
  50070. weight: math.unit(1587, "kg"),
  50071. name: "Front",
  50072. image: {
  50073. source: "./media/characters/maple-javira-dragon/front.svg",
  50074. extra: 1136/744,
  50075. bottom: 73/1209
  50076. }
  50077. },
  50078. side: {
  50079. height: math.unit(11 + 10/12, "feet"),
  50080. weight: math.unit(1587, "kg"),
  50081. name: "Side",
  50082. image: {
  50083. source: "./media/characters/maple-javira-dragon/side.svg",
  50084. extra: 712/505,
  50085. bottom: 17/729
  50086. }
  50087. },
  50088. head: {
  50089. height: math.unit(8.05, "feet"),
  50090. name: "Head",
  50091. image: {
  50092. source: "./media/characters/maple-javira-dragon/head.svg",
  50093. extra: 1420/1344,
  50094. bottom: 0/1420
  50095. }
  50096. },
  50097. },
  50098. [
  50099. {
  50100. name: "Normal",
  50101. height: math.unit(11 + 10/12, "feet"),
  50102. default: true
  50103. },
  50104. ]
  50105. ))
  50106. characterMakers.push(() => makeCharacter(
  50107. { name: "Sonia Wyverntail", species: ["kobold"], tags: ["anthro"] },
  50108. {
  50109. front: {
  50110. height: math.unit(117, "cm"),
  50111. weight: math.unit(50, "kg"),
  50112. name: "Front",
  50113. image: {
  50114. source: "./media/characters/sonia-wyverntail/front.svg",
  50115. extra: 708/592,
  50116. bottom: 25/733
  50117. }
  50118. },
  50119. },
  50120. [
  50121. {
  50122. name: "Normal",
  50123. height: math.unit(117, "cm"),
  50124. default: true
  50125. },
  50126. ]
  50127. ))
  50128. characterMakers.push(() => makeCharacter(
  50129. { name: "Micah", species: ["moth"], tags: ["anthro"] },
  50130. {
  50131. front: {
  50132. height: math.unit(6 + 5/12, "feet"),
  50133. name: "Front",
  50134. image: {
  50135. source: "./media/characters/micah/front.svg",
  50136. extra: 1758/1546,
  50137. bottom: 214/1972
  50138. }
  50139. },
  50140. },
  50141. [
  50142. {
  50143. name: "Normal",
  50144. height: math.unit(6 + 5/12, "feet"),
  50145. default: true
  50146. },
  50147. ]
  50148. ))
  50149. characterMakers.push(() => makeCharacter(
  50150. { name: "Zarya", species: ["raccoon"], tags: ["anthro"] },
  50151. {
  50152. front: {
  50153. height: math.unit(5 + 10/12, "feet"),
  50154. weight: math.unit(220, "lb"),
  50155. name: "Front",
  50156. image: {
  50157. source: "./media/characters/zarya/front.svg",
  50158. extra: 593/572,
  50159. bottom: 50/643
  50160. }
  50161. },
  50162. back: {
  50163. height: math.unit(5 + 10/12, "feet"),
  50164. weight: math.unit(220, "lb"),
  50165. name: "Back",
  50166. image: {
  50167. source: "./media/characters/zarya/back.svg",
  50168. extra: 603/582,
  50169. bottom: 38/641
  50170. }
  50171. },
  50172. },
  50173. [
  50174. {
  50175. name: "Normal",
  50176. height: math.unit(5 + 10/12, "feet"),
  50177. default: true
  50178. },
  50179. ]
  50180. ))
  50181. characterMakers.push(() => makeCharacter(
  50182. { name: "Sven Hatisson", species: ["wolf"], tags: ["anthro"] },
  50183. {
  50184. front: {
  50185. height: math.unit(7.5, "feet"),
  50186. name: "Front",
  50187. image: {
  50188. source: "./media/characters/sven-hatisson/front.svg",
  50189. extra: 917/857,
  50190. bottom: 42/959
  50191. }
  50192. },
  50193. back: {
  50194. height: math.unit(7.5, "feet"),
  50195. name: "Back",
  50196. image: {
  50197. source: "./media/characters/sven-hatisson/back.svg",
  50198. extra: 903/856,
  50199. bottom: 15/918
  50200. }
  50201. },
  50202. },
  50203. [
  50204. {
  50205. name: "Base Height",
  50206. height: math.unit(7.5, "feet")
  50207. },
  50208. {
  50209. name: "Usual Height",
  50210. height: math.unit(13.5, "feet"),
  50211. default: true
  50212. },
  50213. {
  50214. name: "Smaller Macro",
  50215. height: math.unit(85, "feet")
  50216. },
  50217. {
  50218. name: "Moderate Macro",
  50219. height: math.unit(320, "feet")
  50220. },
  50221. {
  50222. name: "Large Macro",
  50223. height: math.unit(1000, "feet")
  50224. },
  50225. {
  50226. name: "Largest Size",
  50227. height: math.unit(2, "miles")
  50228. },
  50229. ]
  50230. ))
  50231. characterMakers.push(() => makeCharacter(
  50232. { name: "Terra", species: ["dragon", "otter"], tags: ["feral"] },
  50233. {
  50234. side: {
  50235. height: math.unit(1.8, "meters"),
  50236. weight: math.unit(275, "kg"),
  50237. name: "Side",
  50238. image: {
  50239. source: "./media/characters/terra/side.svg",
  50240. extra: 1273/1147,
  50241. bottom: 0/1273
  50242. }
  50243. },
  50244. },
  50245. [
  50246. {
  50247. name: "Normal",
  50248. height: math.unit(16.2, "meters"),
  50249. default: true
  50250. },
  50251. ]
  50252. ))
  50253. characterMakers.push(() => makeCharacter(
  50254. { name: "Rae", species: ["borzoi", "werewolf"], tags: ["anthro"] },
  50255. {
  50256. borzoiFront: {
  50257. height: math.unit(6 + 9/12, "feet"),
  50258. name: "Front",
  50259. image: {
  50260. source: "./media/characters/rae/borzoi-front.svg",
  50261. extra: 1161/1098,
  50262. bottom: 31/1192
  50263. },
  50264. form: "borzoi",
  50265. default: true
  50266. },
  50267. werewolfFront: {
  50268. height: math.unit(8 + 7/12, "feet"),
  50269. name: "Front",
  50270. image: {
  50271. source: "./media/characters/rae/werewolf-front.svg",
  50272. extra: 1411/1334,
  50273. bottom: 127/1538
  50274. },
  50275. form: "werewolf",
  50276. default: true
  50277. },
  50278. },
  50279. [
  50280. {
  50281. name: "Normal",
  50282. height: math.unit(6 + 9/12, "feet"),
  50283. default: true,
  50284. form: "borzoi"
  50285. },
  50286. {
  50287. name: "Normal",
  50288. height: math.unit(8 + 7/12, "feet"),
  50289. default: true,
  50290. form: "werewolf"
  50291. },
  50292. ],
  50293. {
  50294. "borzoi": {
  50295. name: "Borzoi",
  50296. default: true
  50297. },
  50298. "werewolf": {
  50299. name: "Werewolf",
  50300. },
  50301. }
  50302. ))
  50303. characterMakers.push(() => makeCharacter(
  50304. { name: "Kit", species: ["kitsune"], tags: ["anthro"] },
  50305. {
  50306. front: {
  50307. height: math.unit(8 + 7/12, "feet"),
  50308. weight: math.unit(482, "lb"),
  50309. name: "Front",
  50310. image: {
  50311. source: "./media/characters/kit/front.svg",
  50312. extra: 1247/1103,
  50313. bottom: 41/1288
  50314. }
  50315. },
  50316. back: {
  50317. height: math.unit(8 + 7/12, "feet"),
  50318. weight: math.unit(482, "lb"),
  50319. name: "Back",
  50320. image: {
  50321. source: "./media/characters/kit/back.svg",
  50322. extra: 1252/1123,
  50323. bottom: 21/1273
  50324. }
  50325. },
  50326. paw: {
  50327. height: math.unit(1.46, "feet"),
  50328. name: "Paw",
  50329. image: {
  50330. source: "./media/characters/kit/paw.svg"
  50331. }
  50332. },
  50333. },
  50334. [
  50335. {
  50336. name: "Normal",
  50337. height: math.unit(8 + 7/12, "feet"),
  50338. default: true
  50339. },
  50340. {
  50341. name: "Tall",
  50342. height: math.unit(7.8, "meters")
  50343. },
  50344. {
  50345. name: "Very Tall",
  50346. height: math.unit(17.9, "meters")
  50347. },
  50348. {
  50349. name: "Semi-Macro",
  50350. height: math.unit(45.8, "meters")
  50351. },
  50352. {
  50353. name: "Macro",
  50354. height: math.unit(86.1, "meters")
  50355. },
  50356. {
  50357. name: "Godlike",
  50358. height: math.unit(749.9, "meters")
  50359. },
  50360. {
  50361. name: "Second Form",
  50362. height: math.unit(92183.9, "meters")
  50363. },
  50364. {
  50365. name: "Third Form",
  50366. height: math.unit(164665.7, "meters")
  50367. },
  50368. {
  50369. name: "Final Form",
  50370. height: math.unit(745112.2, "meters")
  50371. },
  50372. ]
  50373. ))
  50374. characterMakers.push(() => makeCharacter(
  50375. { name: "Celeste", species: ["raptor", "alien"], tags: ["feral"] },
  50376. {
  50377. side: {
  50378. height: math.unit(0.6, "meters"),
  50379. weight: math.unit(24, "kg"),
  50380. name: "Side",
  50381. image: {
  50382. source: "./media/characters/celeste/side.svg",
  50383. extra: 810/517,
  50384. bottom: 53/863
  50385. }
  50386. },
  50387. },
  50388. [
  50389. {
  50390. name: "Velociraptor",
  50391. height: math.unit(0.6, "meters"),
  50392. default: true
  50393. },
  50394. {
  50395. name: "Utahraptor",
  50396. height: math.unit(1.8, "meters")
  50397. },
  50398. {
  50399. name: "Gallimimus",
  50400. height: math.unit(4.0, "meters")
  50401. },
  50402. {
  50403. name: "Large",
  50404. height: math.unit(20, "meters")
  50405. },
  50406. {
  50407. name: "Planetary",
  50408. height: math.unit(50, "megameters")
  50409. },
  50410. {
  50411. name: "Stellar",
  50412. height: math.unit(1.5, "gigameters")
  50413. },
  50414. {
  50415. name: "Galactic",
  50416. height: math.unit(100, "exameters")
  50417. },
  50418. ]
  50419. ))
  50420. characterMakers.push(() => makeCharacter(
  50421. { name: "Glacia", species: ["koopew"], tags: ["anthro"] },
  50422. {
  50423. front: {
  50424. height: math.unit(6, "feet"),
  50425. weight: math.unit(210, "lb"),
  50426. name: "Front",
  50427. image: {
  50428. source: "./media/characters/glacia/front.svg",
  50429. extra: 958/901,
  50430. bottom: 45/1003
  50431. }
  50432. },
  50433. },
  50434. [
  50435. {
  50436. name: "Macro",
  50437. height: math.unit(1000, "meters"),
  50438. default: true
  50439. },
  50440. ]
  50441. ))
  50442. characterMakers.push(() => makeCharacter(
  50443. { name: "Giri", species: ["giraffe"], tags: ["anthro"] },
  50444. {
  50445. front: {
  50446. height: math.unit(4, "meters"),
  50447. name: "Front",
  50448. image: {
  50449. source: "./media/characters/giri/front.svg",
  50450. extra: 966/894,
  50451. bottom: 21/987
  50452. }
  50453. },
  50454. },
  50455. [
  50456. {
  50457. name: "Normal",
  50458. height: math.unit(4, "meters"),
  50459. default: true
  50460. },
  50461. ]
  50462. ))
  50463. characterMakers.push(() => makeCharacter(
  50464. { name: "Tin", species: ["nevrean"], tags: ["anthro"] },
  50465. {
  50466. back: {
  50467. height: math.unit(4, "feet"),
  50468. weight: math.unit(37, "lb"),
  50469. name: "Back",
  50470. image: {
  50471. source: "./media/characters/tin/back.svg",
  50472. extra: 845/780,
  50473. bottom: 28/873
  50474. }
  50475. },
  50476. },
  50477. [
  50478. {
  50479. name: "Normal",
  50480. height: math.unit(4, "feet"),
  50481. default: true
  50482. },
  50483. ]
  50484. ))
  50485. //characters
  50486. function makeCharacters() {
  50487. const results = [];
  50488. characterMakers.forEach(character => {
  50489. results.push(character());
  50490. });
  50491. return results;
  50492. }