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

52211 строки
1.3 MiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes, forms) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. form: value.form,
  16. name: value.name,
  17. info: value.info,
  18. rename: value.rename,
  19. default: value.default
  20. }
  21. if (value.weight) {
  22. views[key].attributes.weight = {
  23. name: "Mass",
  24. power: 3,
  25. type: "mass",
  26. base: value.weight
  27. };
  28. }
  29. if (value.volume) {
  30. views[key].attributes.volume = {
  31. name: "Volume",
  32. power: 3,
  33. type: "volume",
  34. base: value.volume
  35. };
  36. }
  37. if (value.capacity) {
  38. views[key].attributes.capacity = {
  39. name: "Capacity",
  40. power: 3,
  41. type: "volume",
  42. base: value.capacity
  43. }
  44. }
  45. if (value.preyCapacity) {
  46. views[key].attributes.preyCapacity = {
  47. name: "Prey Capacity",
  48. power: 3,
  49. type: "volume",
  50. base: value.preyCapacity
  51. }
  52. }
  53. if (value.energyNeed) {
  54. views[key].attributes.capacity = {
  55. name: "Food Intake",
  56. power: 3,
  57. type: "energy",
  58. base: value.energyNeed
  59. }
  60. }
  61. if (value.extraAttributes) {
  62. Object.entries(value.extraAttributes).forEach(([attrKey, attrValue]) => {
  63. views[key].attributes[attrKey] = attrValue
  64. })
  65. }
  66. });
  67. return createEntityMaker(info, views, defaultSizes, forms);
  68. }
  69. const speciesData = {
  70. animal: {
  71. name: "Animal"
  72. },
  73. dog: {
  74. name: "Dog",
  75. parents: [
  76. "canine"
  77. ]
  78. },
  79. canine: {
  80. name: "Canine",
  81. parents: [
  82. "mammal"
  83. ]
  84. },
  85. crux: {
  86. name: "Crux",
  87. parents: [
  88. "mammal"
  89. ]
  90. },
  91. mammal: {
  92. name: "Mammal",
  93. parents: [
  94. "animal"
  95. ]
  96. },
  97. "rough-collie": {
  98. name: "Rough Collie",
  99. parents: [
  100. "dog"
  101. ]
  102. },
  103. dragon: {
  104. name: "Dragon",
  105. parents: [
  106. "reptile"
  107. ]
  108. },
  109. reptile: {
  110. name: "Reptile",
  111. parents: [
  112. "animal"
  113. ]
  114. },
  115. woodpecker: {
  116. name: "Woodpecker",
  117. parents: [
  118. "avian"
  119. ]
  120. },
  121. avian: {
  122. name: "Avian",
  123. parents: [
  124. "animal"
  125. ]
  126. },
  127. kitsune: {
  128. name: "Kitsune",
  129. parents: [
  130. "fox"
  131. ]
  132. },
  133. fox: {
  134. name: "Fox",
  135. parents: [
  136. "mammal"
  137. ]
  138. },
  139. pokemon: {
  140. name: "Pokemon",
  141. },
  142. tiger: {
  143. name: "Tiger",
  144. parents: [
  145. "cat"
  146. ]
  147. },
  148. cat: {
  149. name: "Cat",
  150. parents: [
  151. "feliform"
  152. ]
  153. },
  154. "blue-jay": {
  155. name: "Blue Jay",
  156. parents: [
  157. "avian"
  158. ]
  159. },
  160. wolf: {
  161. name: "Wolf",
  162. parents: [
  163. "mammal"
  164. ]
  165. },
  166. coyote: {
  167. name: "Coyote",
  168. parents: [
  169. "mammal"
  170. ]
  171. },
  172. raccoon: {
  173. name: "Raccoon",
  174. parents: [
  175. "mammal"
  176. ]
  177. },
  178. weasel: {
  179. name: "Weasel",
  180. parents: [
  181. "mustelid"
  182. ]
  183. },
  184. "red-panda": {
  185. name: "Red Panda",
  186. parents: [
  187. "mammal"
  188. ]
  189. },
  190. dolphin: {
  191. name: "Dolphin",
  192. parents: [
  193. "mammal"
  194. ]
  195. },
  196. "african-wild-dog": {
  197. name: "African Wild Dog",
  198. parents: [
  199. "canine"
  200. ]
  201. },
  202. "hyena": {
  203. name: "Hyena",
  204. parents: [
  205. "feliform"
  206. ]
  207. },
  208. "carbuncle": {
  209. name: "Carbuncle",
  210. parents: [
  211. "animal"
  212. ]
  213. },
  214. bat: {
  215. name: "Bat",
  216. parents: [
  217. "mammal"
  218. ]
  219. },
  220. "leaf-nosed-bat": {
  221. name: "Leaf-Nosed Bat",
  222. parents: [
  223. "bat"
  224. ]
  225. },
  226. "fish": {
  227. name: "Fish",
  228. parents: [
  229. "animal"
  230. ]
  231. },
  232. "ram": {
  233. name: "Ram",
  234. parents: [
  235. "mammal"
  236. ]
  237. },
  238. "demon": {
  239. name: "Demon",
  240. parents: [
  241. "supernatural"
  242. ]
  243. },
  244. "cougar": {
  245. name: "Cougar",
  246. parents: [
  247. "cat"
  248. ]
  249. },
  250. "goat": {
  251. name: "Goat",
  252. parents: [
  253. "mammal"
  254. ]
  255. },
  256. "lion": {
  257. name: "Lion",
  258. parents: [
  259. "cat"
  260. ]
  261. },
  262. "harpy-eager": {
  263. name: "Harpy Eagle",
  264. parents: [
  265. "avian"
  266. ]
  267. },
  268. "deer": {
  269. name: "Deer",
  270. parents: [
  271. "mammal"
  272. ]
  273. },
  274. "phoenix": {
  275. name: "Phoenix",
  276. parents: [
  277. "avian"
  278. ]
  279. },
  280. "aeromorph": {
  281. name: "Aeromorph",
  282. parents: [
  283. "machine"
  284. ]
  285. },
  286. "machine": {
  287. name: "Machine",
  288. },
  289. "android": {
  290. name: "Android",
  291. parents: [
  292. "machine"
  293. ]
  294. },
  295. "jackal": {
  296. name: "Jackal",
  297. parents: [
  298. "canine"
  299. ]
  300. },
  301. "corvid": {
  302. name: "Corvid",
  303. parents: [
  304. "avian"
  305. ]
  306. },
  307. "pharaoh-hound": {
  308. name: "Pharaoh Hound",
  309. parents: [
  310. "dog"
  311. ]
  312. },
  313. "skunk": {
  314. name: "Skunk",
  315. parents: [
  316. "mammal"
  317. ]
  318. },
  319. "shark": {
  320. name: "Shark",
  321. parents: [
  322. "fish"
  323. ]
  324. },
  325. "black-panther": {
  326. name: "Black Panther",
  327. parents: [
  328. "cat"
  329. ]
  330. },
  331. "umbra": {
  332. name: "Umbra",
  333. parents: [
  334. "animal"
  335. ]
  336. },
  337. "raven": {
  338. name: "Raven",
  339. parents: [
  340. "corvid"
  341. ]
  342. },
  343. "snow-leopard": {
  344. name: "Snow Leopard",
  345. parents: [
  346. "cat"
  347. ]
  348. },
  349. "barbary-lion": {
  350. name: "Barbary Lion",
  351. parents: [
  352. "lion"
  353. ]
  354. },
  355. "dra'gal": {
  356. name: "Dra'Gal",
  357. parents: [
  358. "mammal"
  359. ]
  360. },
  361. "german-shepherd": {
  362. name: "German Shepherd",
  363. parents: [
  364. "dog"
  365. ]
  366. },
  367. "bayleef": {
  368. name: "Bayleef",
  369. parents: [
  370. "pokemon",
  371. "plant",
  372. "animal"
  373. ]
  374. },
  375. "mouse": {
  376. name: "Mouse",
  377. parents: [
  378. "rodent"
  379. ]
  380. },
  381. "rat": {
  382. name: "Rat",
  383. parents: [
  384. "mammal"
  385. ]
  386. },
  387. "hoshiko-beast": {
  388. name: "Hoshiko Beast",
  389. parents: ["animal"]
  390. },
  391. "snow-jugani": {
  392. name: "Snow Jugani",
  393. parents: ["cat"]
  394. },
  395. "patamon": {
  396. name: "Patamon",
  397. parents: ["digimon", "guinea-pig"]
  398. },
  399. "digimon": {
  400. name: "Digimon",
  401. },
  402. "jugani": {
  403. name: "Jugani",
  404. parents: ["cat"]
  405. },
  406. "luxray": {
  407. name: "Luxray",
  408. parents: ["pokemon", "lion"]
  409. },
  410. "mech": {
  411. name: "Mech",
  412. parents: ["machine"]
  413. },
  414. "zoid": {
  415. name: "Zoid",
  416. parents: ["mech"]
  417. },
  418. "monster": {
  419. name: "Monster",
  420. parents: ["animal"]
  421. },
  422. "foo-dog": {
  423. name: "Foo Dog",
  424. parents: ["mammal"]
  425. },
  426. "elephant": {
  427. name: "Elephant",
  428. parents: ["mammal"]
  429. },
  430. "eagle": {
  431. name: "Eagle",
  432. parents: ["avian"]
  433. },
  434. "cow": {
  435. name: "Cow",
  436. parents: ["mammal"]
  437. },
  438. "crocodile": {
  439. name: "Crocodile",
  440. parents: ["reptile"]
  441. },
  442. "borzoi": {
  443. name: "Borzoi",
  444. parents: ["dog"]
  445. },
  446. "snake": {
  447. name: "Snake",
  448. parents: ["reptile"]
  449. },
  450. "horned-bush-viper": {
  451. name: "Horned Bush Viper",
  452. parents: ["viper"]
  453. },
  454. "cobra": {
  455. name: "Cobra",
  456. parents: ["snake"]
  457. },
  458. "harpy-eagle": {
  459. name: "Harpy Eagle",
  460. parents: ["eagle"]
  461. },
  462. "raptor": {
  463. name: "Raptor",
  464. parents: ["dinosaur"]
  465. },
  466. "dinosaur": {
  467. name: "Dinosaur",
  468. parents: ["reptile"]
  469. },
  470. "veilhound": {
  471. name: "Veilhound",
  472. parents: ["hellhound"]
  473. },
  474. "hellhound": {
  475. name: "Hellhound",
  476. parents: ["canine", "demon"]
  477. },
  478. "insect": {
  479. name: "Insect",
  480. parents: ["animal"]
  481. },
  482. "beetle": {
  483. name: "Beetle",
  484. parents: ["insect"]
  485. },
  486. "moth": {
  487. name: "Moth",
  488. parents: ["insect"]
  489. },
  490. "eastern-dragon": {
  491. name: "Eastern Dragon",
  492. parents: ["dragon"]
  493. },
  494. "jaguar": {
  495. name: "Jaguar",
  496. parents: ["cat"]
  497. },
  498. "horse": {
  499. name: "Horse",
  500. parents: ["mammal"]
  501. },
  502. "sergal": {
  503. name: "Sergal",
  504. parents: ["mammal", "avian", "vilous"]
  505. },
  506. "gryphon": {
  507. name: "Gryphon",
  508. parents: ["lion", "eagle"]
  509. },
  510. "robot": {
  511. name: "Robot",
  512. parents: ["machine"]
  513. },
  514. "medihound": {
  515. name: "Medihound",
  516. parents: ["robot", "dog"]
  517. },
  518. "sylveon": {
  519. name: "Sylveon",
  520. parents: ["pokemon"]
  521. },
  522. "catgirl": {
  523. name: "Catgirl",
  524. parents: ["mammal"]
  525. },
  526. "cowgirl": {
  527. name: "Cowgirl",
  528. parents: ["mammal"]
  529. },
  530. "pony": {
  531. name: "Pony",
  532. parents: ["horse"]
  533. },
  534. "rabbit": {
  535. name: "Rabbit",
  536. parents: ["leporidae"]
  537. },
  538. "fennec-fox": {
  539. name: "Fennec Fox",
  540. parents: ["fox"]
  541. },
  542. "azodian": {
  543. name: "Azodian",
  544. parents: ["mouse"]
  545. },
  546. "shiba-inu": {
  547. name: "Shiba Inu",
  548. parents: ["dog"]
  549. },
  550. "changeling": {
  551. name: "Changeling",
  552. parents: ["insect"]
  553. },
  554. "cheetah": {
  555. name: "Cheetah",
  556. parents: ["cat"]
  557. },
  558. "golden-jackal": {
  559. name: "Golden Jackal",
  560. parents: ["jackal"]
  561. },
  562. "manectric": {
  563. name: "Manectric",
  564. parents: ["pokemon", "wolf"]
  565. },
  566. "rat": {
  567. name: "Rat",
  568. parents: ["rodent"]
  569. },
  570. "rodent": {
  571. name: "Rodent",
  572. parents: ["mammal"]
  573. },
  574. "octocoon": {
  575. name: "Octocoon",
  576. parents: ["raccoon", "octopus"]
  577. },
  578. "octopus": {
  579. name: "Octopus",
  580. parents: ["fish"]
  581. },
  582. "werewolf": {
  583. name: "Werewolf",
  584. parents: ["wolf", "werebeast"]
  585. },
  586. "werebeast": {
  587. name: "Werebeast",
  588. parents: ["monster"]
  589. },
  590. "meerkat": {
  591. name: "Meerkat",
  592. parents: ["mammal"]
  593. },
  594. "human": {
  595. name: "Human",
  596. parents: ["mammal"]
  597. },
  598. "geth": {
  599. name: "Geth",
  600. parents: ["android"]
  601. },
  602. "husky": {
  603. name: "Husky",
  604. parents: ["dog"]
  605. },
  606. "long-eared-bat": {
  607. name: "Long Eared Bat",
  608. parents: ["bat"]
  609. },
  610. "lizard": {
  611. name: "Lizard",
  612. parents: ["reptile"]
  613. },
  614. "salamander": {
  615. name: "Salamander",
  616. parents: ["lizard"]
  617. },
  618. "chameleon": {
  619. name: "Chameleon",
  620. parents: ["lizard"]
  621. },
  622. "gecko": {
  623. name: "Gecko",
  624. parents: ["lizard"]
  625. },
  626. "kobold": {
  627. name: "Kobold",
  628. parents: ["reptile"]
  629. },
  630. "charizard": {
  631. name: "Charizard",
  632. parents: ["pokemon", "dragon"]
  633. },
  634. "lugia": {
  635. name: "Lugia",
  636. parents: ["pokemon", "avian"]
  637. },
  638. "cerberus": {
  639. name: "Cerberus",
  640. parents: ["dog"]
  641. },
  642. "tyrantrum": {
  643. name: "Tyrantrum",
  644. parents: ["pokemon"]
  645. },
  646. "lemur": {
  647. name: "Lemur",
  648. parents: ["mammal"]
  649. },
  650. "kelpie": {
  651. name: "Kelpie",
  652. parents: ["horse", "monster"]
  653. },
  654. "labrador": {
  655. name: "Labrador",
  656. parents: ["dog"]
  657. },
  658. "sylveon": {
  659. name: "Sylveon",
  660. parents: ["eeveelution"]
  661. },
  662. "eeveelution": {
  663. name: "Eeveelution",
  664. parents: ["pokemon", "cat"]
  665. },
  666. "polar-bear": {
  667. name: "Polar Bear",
  668. parents: ["bear"]
  669. },
  670. "bear": {
  671. name: "Bear",
  672. parents: ["mammal"]
  673. },
  674. "absol": {
  675. name: "Absol",
  676. parents: ["pokemon", "cat"]
  677. },
  678. "wolver": {
  679. name: "Wolver",
  680. parents: ["mammal"]
  681. },
  682. "rottweiler": {
  683. name: "Rottweiler",
  684. parents: ["dog"]
  685. },
  686. "zebra": {
  687. name: "Zebra",
  688. parents: ["horse"]
  689. },
  690. "yoshi": {
  691. name: "Yoshi",
  692. parents: ["lizard"]
  693. },
  694. "lynx": {
  695. name: "Lynx",
  696. parents: ["cat"]
  697. },
  698. "unknown": {
  699. name: "Unknown",
  700. parents: []
  701. },
  702. "thylacine": {
  703. name: "Thylacine",
  704. parents: ["mammal"]
  705. },
  706. "gabumon": {
  707. name: "Gabumon",
  708. parents: ["digimon"]
  709. },
  710. "border-collie": {
  711. name: "Border Collie",
  712. parents: ["dog"]
  713. },
  714. "imp": {
  715. name: "Imp",
  716. parents: ["demon"]
  717. },
  718. "kangaroo": {
  719. name: "Kangaroo",
  720. parents: ["marsupial"]
  721. },
  722. "renamon": {
  723. name: "Renamon",
  724. parents: ["digimon", "fox"]
  725. },
  726. "candy-orca-dragon": {
  727. name: "Candy Orca Dragon",
  728. parents: ["fish", "dragon", "candy"]
  729. },
  730. "sabertooth-tiger": {
  731. name: "Sabertooth Tiger",
  732. parents: ["cat"]
  733. },
  734. "espurr": {
  735. name: "Espurr",
  736. parents: ["pokemon", "cat"]
  737. },
  738. "otter": {
  739. name: "Otter",
  740. parents: ["mustelid"]
  741. },
  742. "elemental": {
  743. name: "Elemental",
  744. parents: ["mammal"]
  745. },
  746. "mew": {
  747. name: "Mew",
  748. parents: ["pokemon"]
  749. },
  750. "goodra": {
  751. name: "Goodra",
  752. parents: ["pokemon"]
  753. },
  754. "fairy": {
  755. name: "Fairy",
  756. parents: ["magical"]
  757. },
  758. "typhlosion": {
  759. name: "Typhlosion",
  760. parents: ["pokemon"]
  761. },
  762. "magical": {
  763. name: "Magical",
  764. parents: []
  765. },
  766. "xenomorph": {
  767. name: "Xenomorph",
  768. parents: ["monster", "alien"]
  769. },
  770. "charr": {
  771. name: "Charr",
  772. parents: ["cat"]
  773. },
  774. "siberian-husky": {
  775. name: "Siberian Husky",
  776. parents: ["husky"]
  777. },
  778. "alligator": {
  779. name: "Alligator",
  780. parents: ["reptile"]
  781. },
  782. "bernese-mountain-dog": {
  783. name: "Bernese Mountain Dog",
  784. parents: ["dog"]
  785. },
  786. "reshiram": {
  787. name: "Reshiram",
  788. parents: ["pokemon", "dragon"]
  789. },
  790. "grizzly-bear": {
  791. name: "Grizzly Bear",
  792. parents: ["bear"]
  793. },
  794. "water-monitor": {
  795. name: "Water Monitor",
  796. parents: ["lizard"]
  797. },
  798. "banchofossa": {
  799. name: "Banchofossa",
  800. parents: ["mammal"]
  801. },
  802. "kirin": {
  803. name: "Kirin",
  804. parents: ["monster"]
  805. },
  806. "quilava": {
  807. name: "Quilava",
  808. parents: ["pokemon"]
  809. },
  810. "seviper": {
  811. name: "Seviper",
  812. parents: ["pokemon", "viper"]
  813. },
  814. "flying-fox": {
  815. name: "Flying Fox",
  816. parents: ["bat"]
  817. },
  818. "keynain": {
  819. name: "Keynain",
  820. parents: ["avian"]
  821. },
  822. "lucario": {
  823. name: "Lucario",
  824. parents: ["pokemon", "jackal"]
  825. },
  826. "siamese-cat": {
  827. name: "Siamese Cat",
  828. parents: ["cat"]
  829. },
  830. "spider": {
  831. name: "Spider",
  832. parents: ["insect"]
  833. },
  834. "samurott": {
  835. name: "Samurott",
  836. parents: ["pokemon", "otter"]
  837. },
  838. "megalodon": {
  839. name: "Megalodon",
  840. parents: ["shark"]
  841. },
  842. "unicorn": {
  843. name: "Unicorn",
  844. parents: ["horse"]
  845. },
  846. "greninja": {
  847. name: "Greninja",
  848. parents: ["pokemon", "frog"]
  849. },
  850. "water-dragon": {
  851. name: "Water Dragon",
  852. parents: ["dragon"]
  853. },
  854. "cross-fox": {
  855. name: "Cross Fox",
  856. parents: ["fox"]
  857. },
  858. "synth": {
  859. name: "Synth",
  860. parents: ["machine"]
  861. },
  862. "construct": {
  863. name: "Construct",
  864. parents: []
  865. },
  866. "mexican-wolf": {
  867. name: "Mexican Wolf",
  868. parents: ["wolf"]
  869. },
  870. "leopard": {
  871. name: "Leopard",
  872. parents: ["cat"]
  873. },
  874. "pig": {
  875. name: "Pig",
  876. parents: ["mammal"]
  877. },
  878. "ampharos": {
  879. name: "Ampharos",
  880. parents: ["pokemon", "sheep"]
  881. },
  882. "orca": {
  883. name: "Orca",
  884. parents: ["fish"]
  885. },
  886. "lycanroc": {
  887. name: "Lycanroc",
  888. parents: ["pokemon", "wolf"]
  889. },
  890. "surkanu": {
  891. name: "Surkanu",
  892. parents: ["monster"]
  893. },
  894. "seal": {
  895. name: "Seal",
  896. parents: ["mammal"]
  897. },
  898. "keldeo": {
  899. name: "Keldeo",
  900. parents: ["pokemon"]
  901. },
  902. "great-dane": {
  903. name: "Great Dane",
  904. parents: ["dog"]
  905. },
  906. "black-backed-jackal": {
  907. name: "Black Backed Jackal",
  908. parents: ["jackal"]
  909. },
  910. "sheep": {
  911. name: "Sheep",
  912. parents: ["mammal"]
  913. },
  914. "leopard-seal": {
  915. name: "Leopard Seal",
  916. parents: ["seal"]
  917. },
  918. "zoroark": {
  919. name: "Zoroark",
  920. parents: ["pokemon", "fox"]
  921. },
  922. "maned-wolf": {
  923. name: "Maned Wolf",
  924. parents: ["canine"]
  925. },
  926. "dracha": {
  927. name: "Dracha",
  928. parents: ["dragon"]
  929. },
  930. "wolxi": {
  931. name: "Wolxi",
  932. parents: ["mammal", "alien"]
  933. },
  934. "dratini": {
  935. name: "Dratini",
  936. parents: ["pokemon", "dragon"]
  937. },
  938. "skaven": {
  939. name: "Skaven",
  940. parents: ["rat"]
  941. },
  942. "mongoose": {
  943. name: "Mongoose",
  944. parents: ["mammal"]
  945. },
  946. "lopunny": {
  947. name: "Lopunny",
  948. parents: ["pokemon", "rabbit"]
  949. },
  950. "feraligatr": {
  951. name: "Feraligatr",
  952. parents: ["pokemon", "alligator"]
  953. },
  954. "houndoom": {
  955. name: "Houndoom",
  956. parents: ["pokemon", "dog"]
  957. },
  958. "protogen": {
  959. name: "Protogen",
  960. parents: ["machine"]
  961. },
  962. "saint-bernard": {
  963. name: "Saint Bernard",
  964. parents: ["dog"]
  965. },
  966. "crow": {
  967. name: "Crow",
  968. parents: ["corvid"]
  969. },
  970. "delphox": {
  971. name: "Delphox",
  972. parents: ["pokemon", "fox"]
  973. },
  974. "moose": {
  975. name: "Moose",
  976. parents: ["mammal"]
  977. },
  978. "joraxian": {
  979. name: "Joraxian",
  980. parents: ["monster", "canine", "demon"]
  981. },
  982. "nimbat": {
  983. name: "Nimbat",
  984. parents: ["mammal"]
  985. },
  986. "aardwolf": {
  987. name: "Aardwolf",
  988. parents: ["canine"]
  989. },
  990. "fluudrani": {
  991. name: "Fluudrani",
  992. parents: ["animal"]
  993. },
  994. "arcanine": {
  995. name: "Arcanine",
  996. parents: ["pokemon", "dog"]
  997. },
  998. "inteleon": {
  999. name: "Inteleon",
  1000. parents: ["pokemon", "fish"]
  1001. },
  1002. "ninetales": {
  1003. name: "Ninetales",
  1004. parents: ["pokemon", "kitsune"]
  1005. },
  1006. "tigrex": {
  1007. name: "Tigrex",
  1008. parents: ["tiger"]
  1009. },
  1010. "zorua": {
  1011. name: "Zorua",
  1012. parents: ["pokemon", "fox"]
  1013. },
  1014. "vulpix": {
  1015. name: "Vulpix",
  1016. parents: ["pokemon", "fox"]
  1017. },
  1018. "barghest": {
  1019. name: "Barghest",
  1020. parents: ["monster"]
  1021. },
  1022. "gray-wolf": {
  1023. name: "Gray Wolf",
  1024. parents: ["wolf"]
  1025. },
  1026. "ruppells-fox": {
  1027. name: "Rüppell's Fox",
  1028. parents: ["fox"]
  1029. },
  1030. "bull-terrier": {
  1031. name: "Bull Terrier",
  1032. parents: ["dog"]
  1033. },
  1034. "european-honey-buzzard": {
  1035. name: "European Honey Buzzard",
  1036. parents: ["avian"]
  1037. },
  1038. "t-rex": {
  1039. name: "Tyrannosaurus Rex",
  1040. parents: ["dinosaur"]
  1041. },
  1042. "mactarian": {
  1043. name: "Mactarian",
  1044. parents: ["shark", "monster"]
  1045. },
  1046. "mewtwo-y": {
  1047. name: "Mewtwo Y",
  1048. parents: ["mewtwo"]
  1049. },
  1050. "mewtwo": {
  1051. name: "Mewtwo",
  1052. parents: ["pokemon"]
  1053. },
  1054. "eevee": {
  1055. name: "Eevee",
  1056. parents: ["eeveelution"]
  1057. },
  1058. "mienshao": {
  1059. name: "Mienshao",
  1060. parents: ["pokemon"]
  1061. },
  1062. "sugar-glider": {
  1063. name: "Sugar Glider",
  1064. parents: ["opossum"]
  1065. },
  1066. "spectral-bat": {
  1067. name: "Spectral Bat",
  1068. parents: ["bat"]
  1069. },
  1070. "scolipede": {
  1071. name: "Scolipede",
  1072. parents: ["pokemon", "insect"]
  1073. },
  1074. "jackalope": {
  1075. name: "Jackalope",
  1076. parents: ["rabbit", "antelope"]
  1077. },
  1078. "caracal": {
  1079. name: "Caracal",
  1080. parents: ["cat"]
  1081. },
  1082. "stoat": {
  1083. name: "Stoat",
  1084. parents: ["mammal"]
  1085. },
  1086. "african-golden-cat": {
  1087. name: "African Golden Cat",
  1088. parents: ["cat"]
  1089. },
  1090. "gigantosaurus": {
  1091. name: "Gigantosaurus",
  1092. parents: ["dinosaur"]
  1093. },
  1094. "zorgoia": {
  1095. name: "Zorgoia",
  1096. parents: ["mammal"]
  1097. },
  1098. "monitor-lizard": {
  1099. name: "Monitor Lizard",
  1100. parents: ["lizard"]
  1101. },
  1102. "ziralkia": {
  1103. name: "Ziralkia",
  1104. parents: ["mammal"]
  1105. },
  1106. "kiiasi": {
  1107. name: "Kiiasi",
  1108. parents: ["animal"]
  1109. },
  1110. "synx": {
  1111. name: "Synx",
  1112. parents: ["monster"]
  1113. },
  1114. "panther": {
  1115. name: "Panther",
  1116. parents: ["cat"]
  1117. },
  1118. "azumarill": {
  1119. name: "Azumarill",
  1120. parents: ["pokemon"]
  1121. },
  1122. "river-snaptail": {
  1123. name: "River Snaptail",
  1124. parents: ["otter", "crocodile"]
  1125. },
  1126. "great-blue-heron": {
  1127. name: "Great Blue Heron",
  1128. parents: ["avian"]
  1129. },
  1130. "smeargle": {
  1131. name: "Smeargle",
  1132. parents: ["pokemon"]
  1133. },
  1134. "vendeilen": {
  1135. name: "Vendeilen",
  1136. parents: ["monster"]
  1137. },
  1138. "ventura": {
  1139. name: "Ventura",
  1140. parents: ["canine"]
  1141. },
  1142. "clouded-leopard": {
  1143. name: "Clouded Leopard",
  1144. parents: ["leopard"]
  1145. },
  1146. "argonian": {
  1147. name: "Argonian",
  1148. parents: ["lizard"]
  1149. },
  1150. "salazzle": {
  1151. name: "Salazzle",
  1152. parents: ["pokemon", "lizard"]
  1153. },
  1154. "je-stoff-drachen": {
  1155. name: "Je-Stoff Drachen",
  1156. parents: ["dragon"]
  1157. },
  1158. "finnish-spitz-dog": {
  1159. name: "Finnish Spitz Dog",
  1160. parents: ["dog"]
  1161. },
  1162. "gray-fox": {
  1163. name: "Gray Fox",
  1164. parents: ["fox"]
  1165. },
  1166. "opossum": {
  1167. name: "Opossum",
  1168. parents: ["mammal"]
  1169. },
  1170. "antelope": {
  1171. name: "Antelope",
  1172. parents: ["mammal"]
  1173. },
  1174. "weavile": {
  1175. name: "Weavile",
  1176. parents: ["pokemon"]
  1177. },
  1178. "pikachu": {
  1179. name: "Pikachu",
  1180. parents: ["pokemon", "mouse"]
  1181. },
  1182. "grovyle": {
  1183. name: "Grovyle",
  1184. parents: ["pokemon", "plant"]
  1185. },
  1186. "sthara": {
  1187. name: "Sthara",
  1188. parents: ["snow-leopard", "reptile"]
  1189. },
  1190. "star-warrior": {
  1191. name: "Star Warrior",
  1192. parents: ["magical"]
  1193. },
  1194. "dragonoid": {
  1195. name: "Dragonoid",
  1196. parents: ["dragon"]
  1197. },
  1198. "suicune": {
  1199. name: "Suicune",
  1200. parents: ["pokemon"]
  1201. },
  1202. "vole": {
  1203. name: "Vole",
  1204. parents: ["mammal"]
  1205. },
  1206. "blaziken": {
  1207. name: "Blaziken",
  1208. parents: ["pokemon", "avian"]
  1209. },
  1210. "buizel": {
  1211. name: "Buizel",
  1212. parents: ["pokemon", "fish"]
  1213. },
  1214. "floatzel": {
  1215. name: "Floatzel",
  1216. parents: ["pokemon", "fish"]
  1217. },
  1218. "umok": {
  1219. name: "Umok",
  1220. parents: ["avian"]
  1221. },
  1222. "sea-monster": {
  1223. name: "Sea Monster",
  1224. parents: ["monster", "fish"]
  1225. },
  1226. "egyptian-vulture": {
  1227. name: "Egyptian Vulture",
  1228. parents: ["avian"]
  1229. },
  1230. "doberman": {
  1231. name: "Doberman",
  1232. parents: ["dog"]
  1233. },
  1234. "zangoose": {
  1235. name: "Zangoose",
  1236. parents: ["pokemon", "mongoose"]
  1237. },
  1238. "mongoose": {
  1239. name: "Mongoose",
  1240. parents: ["mammal"]
  1241. },
  1242. "wickerbeast": {
  1243. name: "Wickerbeast",
  1244. parents: ["monster"]
  1245. },
  1246. "zenari": {
  1247. name: "Zenari",
  1248. parents: ["lizard"]
  1249. },
  1250. "plant": {
  1251. name: "Plant",
  1252. parents: []
  1253. },
  1254. "raskatox": {
  1255. name: "Raskatox",
  1256. parents: ["raccoon", "skunk", "cat", "fox"]
  1257. },
  1258. "mikromare": {
  1259. name: "mikromare",
  1260. parents: ["alien"]
  1261. },
  1262. "alien": {
  1263. name: "Alien",
  1264. parents: ["animal"]
  1265. },
  1266. "deity": {
  1267. name: "Deity",
  1268. parents: []
  1269. },
  1270. "skarlan": {
  1271. name: "Skarlan",
  1272. parents: ["slug", "dragon"]
  1273. },
  1274. "slug": {
  1275. name: "Slug",
  1276. parents: ["mollusk"]
  1277. },
  1278. "mollusk": {
  1279. name: "Mollusk",
  1280. parents: ["animal"]
  1281. },
  1282. "chimera": {
  1283. name: "Chimera",
  1284. parents: ["monster"]
  1285. },
  1286. "gestalt": {
  1287. name: "Gestalt",
  1288. parents: ["construct"]
  1289. },
  1290. "mimic": {
  1291. name: "Mimic",
  1292. parents: ["monster"]
  1293. },
  1294. "calico-rat": {
  1295. name: "Calico Rat",
  1296. parents: ["rat"]
  1297. },
  1298. "panda": {
  1299. name: "Panda",
  1300. parents: ["mammal"]
  1301. },
  1302. "oni": {
  1303. name: "Oni",
  1304. parents: ["monster"]
  1305. },
  1306. "pegasus": {
  1307. name: "Pegasus",
  1308. parents: ["horse"]
  1309. },
  1310. "vulpera": {
  1311. name: "Vulpera",
  1312. parents: ["fennec-fox"]
  1313. },
  1314. "ceratosaurus": {
  1315. name: "Ceratosaurus",
  1316. parents: ["dinosaur"]
  1317. },
  1318. "nykur": {
  1319. name: "Nykur",
  1320. parents: ["horse", "monster"]
  1321. },
  1322. "giraffe": {
  1323. name: "Giraffe",
  1324. parents: ["mammal"]
  1325. },
  1326. "tauren": {
  1327. name: "Tauren",
  1328. parents: ["cow"]
  1329. },
  1330. "draconi": {
  1331. name: "Draconi",
  1332. parents: ["alien", "cat", "cyborg"]
  1333. },
  1334. "dire-wolf": {
  1335. name: "Dire Wolf",
  1336. parents: ["wolf"]
  1337. },
  1338. "ferromorph": {
  1339. name: "Ferromorph",
  1340. parents: ["construct"]
  1341. },
  1342. "meowth": {
  1343. name: "Meowth",
  1344. parents: ["cat", "pokemon"]
  1345. },
  1346. "pavodragon": {
  1347. name: "Pavodragon",
  1348. parents: ["dragon"]
  1349. },
  1350. "aaltranae": {
  1351. name: "Aaltranae",
  1352. parents: ["dragon"]
  1353. },
  1354. "cyborg": {
  1355. name: "Cyborg",
  1356. parents: ["machine"]
  1357. },
  1358. "draptor": {
  1359. name: "Draptor",
  1360. parents: ["dragon"]
  1361. },
  1362. "candy": {
  1363. name: "Candy",
  1364. parents: []
  1365. },
  1366. "drenath": {
  1367. name: "Drenath",
  1368. parents: ["dragon", "snake", "rabbit"]
  1369. },
  1370. "coyju": {
  1371. name: "Coyju",
  1372. parents: ["coyote", "kaiju"]
  1373. },
  1374. "kaiju": {
  1375. name: "Kaiju",
  1376. parents: ["monster"]
  1377. },
  1378. "nickit": {
  1379. name: "Nickit",
  1380. parents: ["pokemon", "cat"]
  1381. },
  1382. "lopunny": {
  1383. name: "Lopunny",
  1384. parents: ["pokemon", "rabbit"]
  1385. },
  1386. "korean-jindo-dog": {
  1387. name: "Korean Jindo Dog",
  1388. parents: ["dog"]
  1389. },
  1390. "naga": {
  1391. name: "Naga",
  1392. parents: ["snake", "monster"]
  1393. },
  1394. "undead": {
  1395. name: "Undead",
  1396. parents: ["monster"]
  1397. },
  1398. "whale": {
  1399. name: "Whale",
  1400. parents: ["fish"]
  1401. },
  1402. "gelato-bee": {
  1403. name: "Gelato Bee",
  1404. parents: ["bee"]
  1405. },
  1406. "bee": {
  1407. name: "Bee",
  1408. parents: ["insect"]
  1409. },
  1410. "gardevoir": {
  1411. name: "Gardevoir",
  1412. parents: ["pokemon"]
  1413. },
  1414. "ant": {
  1415. name: "Ant",
  1416. parents: ["insect"]
  1417. },
  1418. "frog": {
  1419. name: "Frog",
  1420. parents: ["amphibian"]
  1421. },
  1422. "amphibian": {
  1423. name: "Amphibian",
  1424. parents: ["animal"]
  1425. },
  1426. "pangolin": {
  1427. name: "Pangolin",
  1428. parents: ["mammal"]
  1429. },
  1430. "uragi'viidorn": {
  1431. name: "Uragi'viidorn",
  1432. parents: ["avian", "bear"]
  1433. },
  1434. "gryphdelphais": {
  1435. name: "Gryphdelphais",
  1436. parents: ["dolphin", "gryphon"]
  1437. },
  1438. "plush": {
  1439. name: "Plush",
  1440. parents: ["construct"]
  1441. },
  1442. "draiger": {
  1443. name: "Draiger",
  1444. parents: ["dragon","tiger"]
  1445. },
  1446. "foxsky": {
  1447. name: "Foxsky",
  1448. parents: ["fox", "husky"]
  1449. },
  1450. "umbreon": {
  1451. name: "Umbreon",
  1452. parents: ["eeveelution"]
  1453. },
  1454. "slime-dragon": {
  1455. name: "Slime Dragon",
  1456. parents: ["dragon", "goo"]
  1457. },
  1458. "enderman": {
  1459. name: "Enderman",
  1460. parents: ["monster"]
  1461. },
  1462. "gremlin": {
  1463. name: "Gremlin",
  1464. parents: ["monster"]
  1465. },
  1466. "dragonsune": {
  1467. name: "Dragonsune",
  1468. parents: ["dragon", "kitsune"]
  1469. },
  1470. "ghost": {
  1471. name: "Ghost",
  1472. parents: ["supernatural"]
  1473. },
  1474. "false-vampire-bat": {
  1475. name: "False Vampire Bat",
  1476. parents: ["bat"]
  1477. },
  1478. "succubus": {
  1479. name: "Succubus",
  1480. parents: ["demon"]
  1481. },
  1482. "mia": {
  1483. name: "Mia",
  1484. parents: ["canine"]
  1485. },
  1486. "rainbow": {
  1487. name: "Rainbow",
  1488. parents: ["monster"]
  1489. },
  1490. "solgaleo": {
  1491. name: "Solgaleo",
  1492. parents: ["pokemon"]
  1493. },
  1494. "lucent-nargacuga": {
  1495. name: "Lucent Nargacuga",
  1496. parents: ["monster-hunter"]
  1497. },
  1498. "monster-hunter": {
  1499. name: "Monster Hunter",
  1500. parents: ["monster"]
  1501. },
  1502. "leviathan": {
  1503. "name": "Leviathan",
  1504. "url": "sea-monster"
  1505. },
  1506. "bull": {
  1507. name: "Bull",
  1508. parents: ["mammal"]
  1509. },
  1510. "tanuki": {
  1511. name: "Tanuki",
  1512. parents: ["monster"]
  1513. },
  1514. "chakat": {
  1515. name: "Chakat",
  1516. parents: ["cat"]
  1517. },
  1518. "hydra": {
  1519. name: "Hydra",
  1520. parents: ["monster"]
  1521. },
  1522. "zigzagoon": {
  1523. name: "Zigzagoon",
  1524. parents: ["raccoon", "pokemon"]
  1525. },
  1526. "vulture": {
  1527. name: "Vulture",
  1528. parents: ["avian"]
  1529. },
  1530. "eastern-dragon": {
  1531. name: "Eastern Dragon",
  1532. parents: ["dragon"]
  1533. },
  1534. "gryffon": {
  1535. name: "Gryffon",
  1536. parents: ["phoenix", "red-panda"]
  1537. },
  1538. "amtsvane": {
  1539. name: "Amtsvane",
  1540. parents: ["reptile"]
  1541. },
  1542. "kigavi": {
  1543. name: "Kigavi",
  1544. parents: ["avian"]
  1545. },
  1546. "turian": {
  1547. name: "Turian",
  1548. parents: ["avian"]
  1549. },
  1550. "zeraora": {
  1551. name: "Zeraora",
  1552. parents: ["pokemon", "cat"]
  1553. },
  1554. "sandshrew": {
  1555. name: "Sandshrew",
  1556. parents: ["pokemon", "pangolin"]
  1557. },
  1558. "valais-blacknose-sheep": {
  1559. name: "Valais Blacknose Sheep",
  1560. parents: ["sheep"]
  1561. },
  1562. "novaleit": {
  1563. name: "Novaleit",
  1564. parents: ["mammal"]
  1565. },
  1566. "dunnoh": {
  1567. name: "Dunnoh",
  1568. parents: ["mammal"]
  1569. },
  1570. "lunaral-dragon": {
  1571. name: "Lunaral Dragon",
  1572. parents: ["dragon"]
  1573. },
  1574. "arctic-wolf": {
  1575. name: "Arctic Wolf",
  1576. parents: ["wolf"]
  1577. },
  1578. "donkey": {
  1579. name: "Donkey",
  1580. parents: ["horse"]
  1581. },
  1582. "chinchilla": {
  1583. name: "Chinchilla",
  1584. parents: ["rodent"]
  1585. },
  1586. "felkin": {
  1587. name: "Felkin",
  1588. parents: ["dragon"]
  1589. },
  1590. "tykeriel": {
  1591. name: "Tykeriel",
  1592. parents: ["avian"]
  1593. },
  1594. "folf": {
  1595. name: "Folf",
  1596. parents: ["fox", "wolf"]
  1597. },
  1598. "pooltoy": {
  1599. name: "Pooltoy",
  1600. parents: ["construct"]
  1601. },
  1602. "demi": {
  1603. name: "Demi",
  1604. parents: ["human"]
  1605. },
  1606. "stegosaurus": {
  1607. name: "Stegosaurus",
  1608. parents: ["dinosaur"]
  1609. },
  1610. "computer-virus": {
  1611. name: "Computer Virus",
  1612. parents: ["program"]
  1613. },
  1614. "program": {
  1615. name: "Program",
  1616. parents: ["construct"]
  1617. },
  1618. "space-springhare": {
  1619. name: "Space Springhare",
  1620. parents: ["hare"]
  1621. },
  1622. "river-drake": {
  1623. name: "River Drake",
  1624. parents: ["dragon"]
  1625. },
  1626. "djinn": {
  1627. "name": "Djinn",
  1628. "url": "supernatural"
  1629. },
  1630. "supernatural": {
  1631. name: "Supernatural",
  1632. parents: ["monster"]
  1633. },
  1634. "grasshopper-mouse": {
  1635. name: "Grasshopper Mouse",
  1636. parents: ["mouse"]
  1637. },
  1638. "somali-cat": {
  1639. name: "Somali Cat",
  1640. parents: ["cat"]
  1641. },
  1642. "minccino": {
  1643. name: "Minccino",
  1644. parents: ["pokemon", "chinchilla"]
  1645. },
  1646. "pine-marten": {
  1647. name: "Pine Marten",
  1648. parents: ["marten"]
  1649. },
  1650. "marten": {
  1651. name: "Marten",
  1652. parents: ["mustelid"]
  1653. },
  1654. "mustelid": {
  1655. name: "Mustelid",
  1656. parents: ["mammal"]
  1657. },
  1658. "caribou": {
  1659. name: "Caribou",
  1660. parents: ["deer"]
  1661. },
  1662. "gnoll": {
  1663. name: "Gnoll",
  1664. parents: ["hyena", "monster"]
  1665. },
  1666. "peacekeeper": {
  1667. name: "Peacekeeper",
  1668. parents: ["human"]
  1669. },
  1670. "river-otter": {
  1671. name: "River Otter",
  1672. parents: ["otter"]
  1673. },
  1674. "dhole": {
  1675. name: "Dhole",
  1676. parents: ["canine"]
  1677. },
  1678. "springbok": {
  1679. name: "Springbok",
  1680. parents: ["antelope"]
  1681. },
  1682. "marsupial": {
  1683. name: "Marsupial",
  1684. parents: ["mammal"]
  1685. },
  1686. "townsend-big-eared-bat": {
  1687. name: "Townsend Big-eared Bat",
  1688. parents: ["bat"]
  1689. },
  1690. "squirrel": {
  1691. name: "Squirrel",
  1692. parents: ["rodent"]
  1693. },
  1694. "magpie": {
  1695. name: "Magpie",
  1696. parents: ["corvid"]
  1697. },
  1698. "civet": {
  1699. name: "Civet",
  1700. parents: ["feliform"]
  1701. },
  1702. "feliform": {
  1703. name: "Feliform",
  1704. parents: ["mammal"]
  1705. },
  1706. "tiefling": {
  1707. name: "Tiefling",
  1708. parents: ["devil"]
  1709. },
  1710. "devil": {
  1711. name: "Devil",
  1712. parents: ["supernatural"]
  1713. },
  1714. "sika-deer": {
  1715. name: "Sika Deer",
  1716. parents: ["deer"]
  1717. },
  1718. "vaporeon": {
  1719. name: "Vaporeon",
  1720. parents: ["eeveelution"]
  1721. },
  1722. "leafeon": {
  1723. name: "Leafeon",
  1724. parents: ["eeveelution"]
  1725. },
  1726. "jolteon": {
  1727. name: "Jolteon",
  1728. parents: ["eeveelution"]
  1729. },
  1730. "spireborn": {
  1731. name: "Spireborn",
  1732. parents: ["zorgoia"]
  1733. },
  1734. "vampire": {
  1735. name: "Vampire",
  1736. parents: ["monster"]
  1737. },
  1738. "extraplanar": {
  1739. name: "Extraplanar",
  1740. parents: []
  1741. },
  1742. "goo": {
  1743. name: "Goo",
  1744. parents: []
  1745. },
  1746. "skink": {
  1747. name: "Skink",
  1748. parents: ["lizard"]
  1749. },
  1750. "bat-eared-fox": {
  1751. name: "Bat-eared Fox",
  1752. parents: ["fox"]
  1753. },
  1754. "belted-kingfisher": {
  1755. name: "Belted Kingfisher",
  1756. parents: ["avian"]
  1757. },
  1758. "omnifalcon": {
  1759. name: "Omnifalcon",
  1760. parents: ["gryphon", "falcon", "harpy-eagle"]
  1761. },
  1762. "falcon": {
  1763. name: "Falcon",
  1764. parents: ["avian"]
  1765. },
  1766. "avali": {
  1767. name: "Avali",
  1768. parents: ["avian", "alien"]
  1769. },
  1770. "arctic-fox": {
  1771. name: "Arctic Fox",
  1772. parents: ["fox"]
  1773. },
  1774. "snow-tiger": {
  1775. name: "Snow Tiger",
  1776. parents: ["tiger"]
  1777. },
  1778. "marble-fox": {
  1779. name: "Marble Fox",
  1780. parents: ["fox"]
  1781. },
  1782. "king-wickerbeast": {
  1783. name: "King Wickerbeast",
  1784. parents: ["wickerbeast"]
  1785. },
  1786. "wickerbeast": {
  1787. name: "Wickerbeast",
  1788. parents: ["mammal"]
  1789. },
  1790. "european-polecat": {
  1791. name: "European Polecat",
  1792. parents: ["mustelid"]
  1793. },
  1794. "teshari": {
  1795. name: "Teshari",
  1796. parents: ["avian", "raptor"]
  1797. },
  1798. "alicorn": {
  1799. name: "Alicorn",
  1800. parents: ["horse"]
  1801. },
  1802. "atlas-moth": {
  1803. name: "Atlas Moth",
  1804. parents: ["moth"]
  1805. },
  1806. "owlbear": {
  1807. name: "Owlbear",
  1808. parents: ["owl", "bear", "monster"]
  1809. },
  1810. "owl": {
  1811. name: "Owl",
  1812. parents: ["avian"]
  1813. },
  1814. "silvertongue": {
  1815. name: "Silvertongue",
  1816. parents: ["reptile"]
  1817. },
  1818. "ahuizotl": {
  1819. name: "Ahuizotl",
  1820. parents: ["monster"]
  1821. },
  1822. "ender-dragon": {
  1823. name: "Ender Dragon",
  1824. parents: ["dragon"]
  1825. },
  1826. "bruhathkayosaurus": {
  1827. name: "Bruhathkayosaurus",
  1828. parents: ["sauropod"]
  1829. },
  1830. "sauropod": {
  1831. name: "Sauropod",
  1832. parents: ["dinosaur"]
  1833. },
  1834. "black-sable-antelope": {
  1835. name: "Black Sable Antelope",
  1836. parents: ["antelope"]
  1837. },
  1838. "slime": {
  1839. name: "Slime",
  1840. parents: ["goo"]
  1841. },
  1842. "utahraptor": {
  1843. name: "Utahraptor",
  1844. parents: ["raptor"]
  1845. },
  1846. "indian-giant-squirrel": {
  1847. name: "Indian Giant Squirrel",
  1848. parents: ["squirrel"]
  1849. },
  1850. "golden-retriever": {
  1851. name: "Golden Retriever",
  1852. parents: ["dog"]
  1853. },
  1854. "triceratops": {
  1855. name: "Triceratops",
  1856. parents: ["dinosaur"]
  1857. },
  1858. "drake": {
  1859. name: "Drake",
  1860. parents: ["dragon"]
  1861. },
  1862. "okapi": {
  1863. name: "Okapi",
  1864. parents: ["giraffe"]
  1865. },
  1866. "arctic-hare": {
  1867. name: "Arctic Hare",
  1868. parents: ["hare"]
  1869. },
  1870. "hare": {
  1871. name: "Hare",
  1872. parents: ["leporidae"]
  1873. },
  1874. "leporidae": {
  1875. name: "Leporidae",
  1876. parents: ["mammal"]
  1877. },
  1878. "leopard-gecko": {
  1879. name: "Leopard Gecko",
  1880. parents: ["gecko"]
  1881. },
  1882. "dreamspawn": {
  1883. name: "Dreamspawn",
  1884. parents: ["illusion"]
  1885. },
  1886. "illusion": {
  1887. name: "Illusion",
  1888. parents: []
  1889. },
  1890. "purrloin": {
  1891. name: "Purrloin",
  1892. parents: ["cat", "pokemon"]
  1893. },
  1894. "noivern": {
  1895. name: "Noivern",
  1896. parents: ["bat", "dragon", "pokemon"]
  1897. },
  1898. "hedgehog": {
  1899. name: "Hedgehog",
  1900. parents: ["mammal"]
  1901. },
  1902. "liger": {
  1903. name: "Liger",
  1904. parents: ["lion", "tiger", "hybrid"]
  1905. },
  1906. "hybrid": {
  1907. name: "Hybrid",
  1908. parents: []
  1909. },
  1910. "drider": {
  1911. name: "Drider",
  1912. parents: ["spider"]
  1913. },
  1914. "sabresune": {
  1915. name: "Sabresune",
  1916. parents: ["kitsune", "sabertooth-tiger"]
  1917. },
  1918. "ditto": {
  1919. name: "Ditto",
  1920. parents: ["pokemon", "goo"]
  1921. },
  1922. "amogus": {
  1923. name: "Amogus",
  1924. parents: ["deity"]
  1925. },
  1926. "ferret": {
  1927. name: "Ferret",
  1928. parents: ["mustelid"]
  1929. },
  1930. "guinea-pig": {
  1931. name: "Guinea Pig",
  1932. parents: ["rodent"]
  1933. },
  1934. "viper": {
  1935. name: "Viper",
  1936. parents: ["snake"]
  1937. },
  1938. "cinderace": {
  1939. name: "Cinderace",
  1940. parents: ["pokemon", "rabbit"]
  1941. },
  1942. "caudin": {
  1943. name: "Caudin",
  1944. parents: ["dragon"]
  1945. },
  1946. "red-winged-blackbird": {
  1947. name: "Red-Winged Blackbird",
  1948. parents: ["avian"]
  1949. },
  1950. "hooded-wheater": {
  1951. name: "Hooded Wheater",
  1952. parents: ["passerine"]
  1953. },
  1954. "passerine": {
  1955. name: "Passerine",
  1956. parents: ["avian"]
  1957. },
  1958. "gieeg": {
  1959. name: "Gieeg",
  1960. parents: ["alien"]
  1961. },
  1962. "ringtail": {
  1963. name: "Ringtail",
  1964. parents: ["raccoon"]
  1965. },
  1966. "hisuian-zoroark": {
  1967. name: "Hisuian Zoroark",
  1968. parents: ["zoroark", "hisuian"]
  1969. },
  1970. "hisuian": {
  1971. name: "Hisuian",
  1972. parents: ["regional-pokemon"]
  1973. },
  1974. "regional-pokemon": {
  1975. name: "Regional Pokemon",
  1976. parents: ["pokemon"]
  1977. },
  1978. "cybeast": {
  1979. name: "Cybeast",
  1980. parents: ["computer-virus"]
  1981. },
  1982. "javira-dragon": {
  1983. name: "Javira Dragon",
  1984. parents: ["dragon"]
  1985. },
  1986. "koopew": {
  1987. name: "Koopew",
  1988. parents: ["dragon", "alien"]
  1989. },
  1990. "nevrean": {
  1991. name: "Nevrean",
  1992. parents: ["avian", "vilous"]
  1993. },
  1994. "vilous": {
  1995. name: "Vilous Species",
  1996. parents: []
  1997. },
  1998. "titanoboa": {
  1999. name: "Titanoboa",
  2000. parents: ["snake"]
  2001. },
  2002. "raichu": {
  2003. name: "Raichu",
  2004. parents: ["pikachu"]
  2005. },
  2006. }
  2007. //species
  2008. function getSpeciesInfo(speciesList) {
  2009. let result = new Set();
  2010. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  2011. result.add(entry)
  2012. });
  2013. return Array.from(result);
  2014. };
  2015. function getSpeciesInfoHelper(species) {
  2016. if (!speciesData[species]) {
  2017. console.warn(species + " doesn't exist");
  2018. return [];
  2019. }
  2020. if (speciesData[species].parents) {
  2021. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  2022. } else {
  2023. return [species];
  2024. }
  2025. }
  2026. characterMakers.push(() => makeCharacter(
  2027. {
  2028. name: "Fen",
  2029. species: ["crux"],
  2030. description: {
  2031. title: "Bio",
  2032. text: "Very furry. Sheds on everything."
  2033. },
  2034. tags: [
  2035. "anthro",
  2036. "goo"
  2037. ]
  2038. },
  2039. {
  2040. front: {
  2041. height: math.unit(12, "feet"),
  2042. weight: math.unit(2400, "lb"),
  2043. name: "Front",
  2044. image: {
  2045. source: "./media/characters/fen/front.svg",
  2046. extra: 1804/1562,
  2047. bottom: 205/2009
  2048. },
  2049. extraAttributes: {
  2050. pawSize: {
  2051. name: "Paw Size",
  2052. power: 2,
  2053. type: "area",
  2054. base: math.unit(0.35, "m^2")
  2055. }
  2056. }
  2057. },
  2058. diving: {
  2059. height: math.unit(4.9, "meters"),
  2060. weight: math.unit(2400, "lb"),
  2061. name: "Diving",
  2062. image: {
  2063. source: "./media/characters/fen/diving.svg"
  2064. }
  2065. },
  2066. goo: {
  2067. height: math.unit(12, "feet"),
  2068. weight: math.unit(3600, "lb"),
  2069. volume: math.unit(1000, "liters"),
  2070. preyCapacity: math.unit(6, "people"),
  2071. name: "Goo",
  2072. image: {
  2073. source: "./media/characters/fen/goo.svg",
  2074. extra: 1307/1071,
  2075. bottom: 134/1441
  2076. }
  2077. },
  2078. maw: {
  2079. height: math.unit(5.03, "feet"),
  2080. name: "Maw",
  2081. image: {
  2082. source: "./media/characters/fen/maw.svg"
  2083. }
  2084. },
  2085. gooCeiling: {
  2086. height: math.unit(6.6, "feet"),
  2087. weight: math.unit(3000, "lb"),
  2088. volume: math.unit(1000, "liters"),
  2089. preyCapacity: math.unit(6, "people"),
  2090. name: "Goo (Ceiling)",
  2091. image: {
  2092. source: "./media/characters/fen/goo-ceiling.svg"
  2093. }
  2094. },
  2095. back: {
  2096. height: math.unit(12, "feet"),
  2097. weight: math.unit(2400, "lb"),
  2098. name: "Back",
  2099. image: {
  2100. source: "./media/characters/fen/back.svg",
  2101. },
  2102. info: {
  2103. description: {
  2104. mode: "append",
  2105. text: "\n\nHe is not currently looking at you."
  2106. }
  2107. }
  2108. },
  2109. full: {
  2110. height: math.unit(1.85, "meter"),
  2111. weight: math.unit(3200, "lb"),
  2112. name: "Full",
  2113. image: {
  2114. source: "./media/characters/fen/full.svg",
  2115. extra: 1133/859,
  2116. bottom: 145/1278
  2117. },
  2118. info: {
  2119. description: {
  2120. mode: "append",
  2121. text: "\n\nMunch."
  2122. }
  2123. }
  2124. },
  2125. gooLounging: {
  2126. height: math.unit(4.53, "feet"),
  2127. weight: math.unit(3000, "lb"),
  2128. preyCapacity: math.unit(6, "people"),
  2129. name: "Goo (Lounging)",
  2130. image: {
  2131. source: "./media/characters/fen/goo-lounging.svg",
  2132. bottom: 116 / 613
  2133. }
  2134. },
  2135. lounging: {
  2136. height: math.unit(10.52, "feet"),
  2137. weight: math.unit(2400, "lb"),
  2138. name: "Lounging",
  2139. image: {
  2140. source: "./media/characters/fen/lounging.svg"
  2141. }
  2142. },
  2143. },
  2144. [
  2145. {
  2146. name: "Small",
  2147. height: math.unit(2.2428, "meter")
  2148. },
  2149. {
  2150. name: "Normal",
  2151. height: math.unit(12, "feet"),
  2152. default: true,
  2153. },
  2154. {
  2155. name: "Big",
  2156. height: math.unit(20, "feet")
  2157. },
  2158. {
  2159. name: "Minimacro",
  2160. height: math.unit(40, "feet"),
  2161. info: {
  2162. description: {
  2163. mode: "append",
  2164. text: "\n\nTOO DAMN BIG"
  2165. }
  2166. }
  2167. },
  2168. {
  2169. name: "Macro",
  2170. height: math.unit(100, "feet"),
  2171. info: {
  2172. description: {
  2173. mode: "append",
  2174. text: "\n\nTOO DAMN BIG"
  2175. }
  2176. }
  2177. },
  2178. {
  2179. name: "Megamacro",
  2180. height: math.unit(2, "miles")
  2181. },
  2182. {
  2183. name: "Gigamacro",
  2184. height: math.unit(10, "earths")
  2185. },
  2186. ]
  2187. ))
  2188. characterMakers.push(() => makeCharacter(
  2189. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2190. {
  2191. front: {
  2192. height: math.unit(183, "cm"),
  2193. weight: math.unit(80, "kg"),
  2194. name: "Front",
  2195. image: {
  2196. source: "./media/characters/sofia-fluttertail/front.svg",
  2197. bottom: 0.01,
  2198. extra: 2154 / 2081
  2199. }
  2200. },
  2201. frontAlt: {
  2202. height: math.unit(183, "cm"),
  2203. weight: math.unit(80, "kg"),
  2204. name: "Front (alt)",
  2205. image: {
  2206. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2207. }
  2208. },
  2209. back: {
  2210. height: math.unit(183, "cm"),
  2211. weight: math.unit(80, "kg"),
  2212. name: "Back",
  2213. image: {
  2214. source: "./media/characters/sofia-fluttertail/back.svg"
  2215. }
  2216. },
  2217. kneeling: {
  2218. height: math.unit(125, "cm"),
  2219. weight: math.unit(80, "kg"),
  2220. name: "Kneeling",
  2221. image: {
  2222. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2223. extra: 1033 / 977,
  2224. bottom: 23.7 / 1057
  2225. }
  2226. },
  2227. maw: {
  2228. height: math.unit(183 / 5, "cm"),
  2229. name: "Maw",
  2230. image: {
  2231. source: "./media/characters/sofia-fluttertail/maw.svg"
  2232. }
  2233. },
  2234. mawcloseup: {
  2235. height: math.unit(183 / 5 * 0.41, "cm"),
  2236. name: "Maw (Closeup)",
  2237. image: {
  2238. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2239. }
  2240. },
  2241. paws: {
  2242. height: math.unit(1.17, "feet"),
  2243. name: "Paws",
  2244. image: {
  2245. source: "./media/characters/sofia-fluttertail/paws.svg",
  2246. extra: 851 / 851,
  2247. bottom: 17 / 868
  2248. }
  2249. },
  2250. },
  2251. [
  2252. {
  2253. name: "Normal",
  2254. height: math.unit(1.83, "meter")
  2255. },
  2256. {
  2257. name: "Size Thief",
  2258. height: math.unit(18, "feet")
  2259. },
  2260. {
  2261. name: "50 Foot Collie",
  2262. height: math.unit(50, "feet")
  2263. },
  2264. {
  2265. name: "Macro",
  2266. height: math.unit(96, "feet"),
  2267. default: true
  2268. },
  2269. {
  2270. name: "Megamerger",
  2271. height: math.unit(650, "feet")
  2272. },
  2273. ]
  2274. ))
  2275. characterMakers.push(() => makeCharacter(
  2276. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2277. {
  2278. front: {
  2279. height: math.unit(7, "feet"),
  2280. weight: math.unit(100, "kg"),
  2281. name: "Front",
  2282. image: {
  2283. source: "./media/characters/march/front.svg",
  2284. extra: 1992/1851,
  2285. bottom: 39/2031
  2286. }
  2287. },
  2288. foot: {
  2289. height: math.unit(0.9, "feet"),
  2290. name: "Foot",
  2291. image: {
  2292. source: "./media/characters/march/foot.svg"
  2293. }
  2294. },
  2295. },
  2296. [
  2297. {
  2298. name: "Normal",
  2299. height: math.unit(7.9, "feet")
  2300. },
  2301. {
  2302. name: "Macro",
  2303. height: math.unit(220, "meters")
  2304. },
  2305. {
  2306. name: "Megamacro",
  2307. height: math.unit(2.98, "km"),
  2308. default: true
  2309. },
  2310. {
  2311. name: "Gigamacro",
  2312. height: math.unit(15963, "km")
  2313. },
  2314. {
  2315. name: "Teramacro",
  2316. height: math.unit(2980000000, "km")
  2317. },
  2318. {
  2319. name: "Examacro",
  2320. height: math.unit(250, "parsecs")
  2321. },
  2322. ]
  2323. ))
  2324. characterMakers.push(() => makeCharacter(
  2325. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2326. {
  2327. front: {
  2328. height: math.unit(6, "feet"),
  2329. weight: math.unit(60, "kg"),
  2330. name: "Front",
  2331. image: {
  2332. source: "./media/characters/noir/front.svg",
  2333. extra: 1,
  2334. bottom: 0.032
  2335. }
  2336. },
  2337. },
  2338. [
  2339. {
  2340. name: "Normal",
  2341. height: math.unit(6.6, "feet")
  2342. },
  2343. {
  2344. name: "Macro",
  2345. height: math.unit(500, "feet")
  2346. },
  2347. {
  2348. name: "Megamacro",
  2349. height: math.unit(2.5, "km"),
  2350. default: true
  2351. },
  2352. {
  2353. name: "Gigamacro",
  2354. height: math.unit(22500, "km")
  2355. },
  2356. {
  2357. name: "Teramacro",
  2358. height: math.unit(2500000000, "km")
  2359. },
  2360. {
  2361. name: "Examacro",
  2362. height: math.unit(200, "parsecs")
  2363. },
  2364. ]
  2365. ))
  2366. characterMakers.push(() => makeCharacter(
  2367. { name: "Okuri", species: ["sabresune"], tags: ["anthro"] },
  2368. {
  2369. front: {
  2370. height: math.unit(7, "feet"),
  2371. weight: math.unit(100, "kg"),
  2372. name: "Front",
  2373. image: {
  2374. source: "./media/characters/okuri/front.svg",
  2375. extra: 739/665,
  2376. bottom: 39/778
  2377. }
  2378. },
  2379. back: {
  2380. height: math.unit(7, "feet"),
  2381. weight: math.unit(100, "kg"),
  2382. name: "Back",
  2383. image: {
  2384. source: "./media/characters/okuri/back.svg",
  2385. extra: 734/653,
  2386. bottom: 13/747
  2387. }
  2388. },
  2389. sitting: {
  2390. height: math.unit(2.95, "feet"),
  2391. weight: math.unit(100, "kg"),
  2392. name: "Sitting",
  2393. image: {
  2394. source: "./media/characters/okuri/sitting.svg",
  2395. extra: 370/318,
  2396. bottom: 99/469
  2397. }
  2398. },
  2399. },
  2400. [
  2401. {
  2402. name: "Smallest",
  2403. height: math.unit(5 + 2/12, "feet")
  2404. },
  2405. {
  2406. name: "Smaller",
  2407. height: math.unit(300, "feet")
  2408. },
  2409. {
  2410. name: "Small",
  2411. height: math.unit(1000, "feet")
  2412. },
  2413. {
  2414. name: "Macro",
  2415. height: math.unit(1, "mile")
  2416. },
  2417. {
  2418. name: "Mega Macro (Small)",
  2419. height: math.unit(20, "km")
  2420. },
  2421. {
  2422. name: "Mega Macro (Large)",
  2423. height: math.unit(600, "km")
  2424. },
  2425. {
  2426. name: "Giga Macro",
  2427. height: math.unit(10000, "km")
  2428. },
  2429. {
  2430. name: "Normal",
  2431. height: math.unit(577560, "km"),
  2432. default: true
  2433. },
  2434. {
  2435. name: "Large",
  2436. height: math.unit(4, "galaxies")
  2437. },
  2438. {
  2439. name: "Largest",
  2440. height: math.unit(15, "multiverses")
  2441. },
  2442. ]
  2443. ))
  2444. characterMakers.push(() => makeCharacter(
  2445. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2446. {
  2447. front: {
  2448. height: math.unit(7, "feet"),
  2449. weight: math.unit(100, "kg"),
  2450. name: "Front",
  2451. image: {
  2452. source: "./media/characters/manny/front.svg",
  2453. extra: 1,
  2454. bottom: 0.06
  2455. }
  2456. },
  2457. back: {
  2458. height: math.unit(7, "feet"),
  2459. weight: math.unit(100, "kg"),
  2460. name: "Back",
  2461. image: {
  2462. source: "./media/characters/manny/back.svg",
  2463. extra: 1,
  2464. bottom: 0.014
  2465. }
  2466. },
  2467. },
  2468. [
  2469. {
  2470. name: "Normal",
  2471. height: math.unit(7, "feet"),
  2472. },
  2473. {
  2474. name: "Macro",
  2475. height: math.unit(78, "feet"),
  2476. default: true
  2477. },
  2478. {
  2479. name: "Macro+",
  2480. height: math.unit(300, "meters")
  2481. },
  2482. {
  2483. name: "Macro++",
  2484. height: math.unit(2400, "meters")
  2485. },
  2486. {
  2487. name: "Megamacro",
  2488. height: math.unit(5167, "meters")
  2489. },
  2490. {
  2491. name: "Gigamacro",
  2492. height: math.unit(41769, "miles")
  2493. },
  2494. ]
  2495. ))
  2496. characterMakers.push(() => makeCharacter(
  2497. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2498. {
  2499. front: {
  2500. height: math.unit(7, "feet"),
  2501. weight: math.unit(100, "kg"),
  2502. name: "Front",
  2503. image: {
  2504. source: "./media/characters/adake/front-1.svg"
  2505. }
  2506. },
  2507. frontAlt: {
  2508. height: math.unit(7, "feet"),
  2509. weight: math.unit(100, "kg"),
  2510. name: "Front (Alt)",
  2511. image: {
  2512. source: "./media/characters/adake/front-2.svg",
  2513. extra: 1,
  2514. bottom: 0.01
  2515. }
  2516. },
  2517. back: {
  2518. height: math.unit(7, "feet"),
  2519. weight: math.unit(100, "kg"),
  2520. name: "Back",
  2521. image: {
  2522. source: "./media/characters/adake/back.svg",
  2523. }
  2524. },
  2525. kneel: {
  2526. height: math.unit(5.385, "feet"),
  2527. weight: math.unit(100, "kg"),
  2528. name: "Kneeling",
  2529. image: {
  2530. source: "./media/characters/adake/kneel.svg",
  2531. bottom: 0.052
  2532. }
  2533. },
  2534. },
  2535. [
  2536. {
  2537. name: "Normal",
  2538. height: math.unit(7, "feet"),
  2539. },
  2540. {
  2541. name: "Macro",
  2542. height: math.unit(78, "feet"),
  2543. default: true
  2544. },
  2545. {
  2546. name: "Macro+",
  2547. height: math.unit(300, "meters")
  2548. },
  2549. {
  2550. name: "Macro++",
  2551. height: math.unit(2400, "meters")
  2552. },
  2553. {
  2554. name: "Megamacro",
  2555. height: math.unit(5167, "meters")
  2556. },
  2557. {
  2558. name: "Gigamacro",
  2559. height: math.unit(41769, "miles")
  2560. },
  2561. ]
  2562. ))
  2563. characterMakers.push(() => makeCharacter(
  2564. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2565. {
  2566. front: {
  2567. height: math.unit(1.65, "meters"),
  2568. weight: math.unit(50, "kg"),
  2569. name: "Front",
  2570. image: {
  2571. source: "./media/characters/elijah/front.svg",
  2572. extra: 858 / 830,
  2573. bottom: 95.5 / 953.8559
  2574. }
  2575. },
  2576. back: {
  2577. height: math.unit(1.65, "meters"),
  2578. weight: math.unit(50, "kg"),
  2579. name: "Back",
  2580. image: {
  2581. source: "./media/characters/elijah/back.svg",
  2582. extra: 895 / 850,
  2583. bottom: 5.3 / 897.956
  2584. }
  2585. },
  2586. frontNsfw: {
  2587. height: math.unit(1.65, "meters"),
  2588. weight: math.unit(50, "kg"),
  2589. name: "Front (NSFW)",
  2590. image: {
  2591. source: "./media/characters/elijah/front-nsfw.svg",
  2592. extra: 858 / 830,
  2593. bottom: 95.5 / 953.8559
  2594. }
  2595. },
  2596. backNsfw: {
  2597. height: math.unit(1.65, "meters"),
  2598. weight: math.unit(50, "kg"),
  2599. name: "Back (NSFW)",
  2600. image: {
  2601. source: "./media/characters/elijah/back-nsfw.svg",
  2602. extra: 895 / 850,
  2603. bottom: 5.3 / 897.956
  2604. }
  2605. },
  2606. dick: {
  2607. height: math.unit(1, "feet"),
  2608. name: "Dick",
  2609. image: {
  2610. source: "./media/characters/elijah/dick.svg"
  2611. }
  2612. },
  2613. beakOpen: {
  2614. height: math.unit(1.25, "feet"),
  2615. name: "Beak (Open)",
  2616. image: {
  2617. source: "./media/characters/elijah/beak-open.svg"
  2618. }
  2619. },
  2620. beakShut: {
  2621. height: math.unit(1.25, "feet"),
  2622. name: "Beak (Shut)",
  2623. image: {
  2624. source: "./media/characters/elijah/beak-shut.svg"
  2625. }
  2626. },
  2627. footFlexing: {
  2628. height: math.unit(1.61, "feet"),
  2629. name: "Foot (Flexing)",
  2630. image: {
  2631. source: "./media/characters/elijah/foot-flexing.svg"
  2632. }
  2633. },
  2634. footStepping: {
  2635. height: math.unit(1.44, "feet"),
  2636. name: "Foot (Stepping)",
  2637. image: {
  2638. source: "./media/characters/elijah/foot-stepping.svg"
  2639. }
  2640. },
  2641. plantigradeLeg: {
  2642. height: math.unit(2.34, "feet"),
  2643. name: "Plantigrade Leg",
  2644. image: {
  2645. source: "./media/characters/elijah/plantigrade-leg.svg"
  2646. }
  2647. },
  2648. plantigradeFootLeft: {
  2649. height: math.unit(0.9, "feet"),
  2650. name: "Plantigrade Foot (Left)",
  2651. image: {
  2652. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2653. }
  2654. },
  2655. plantigradeFootRight: {
  2656. height: math.unit(0.9, "feet"),
  2657. name: "Plantigrade Foot (Right)",
  2658. image: {
  2659. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2660. }
  2661. },
  2662. },
  2663. [
  2664. {
  2665. name: "Normal",
  2666. height: math.unit(1.65, "meters")
  2667. },
  2668. {
  2669. name: "Macro",
  2670. height: math.unit(55, "meters"),
  2671. default: true
  2672. },
  2673. {
  2674. name: "Macro+",
  2675. height: math.unit(105, "meters")
  2676. },
  2677. ]
  2678. ))
  2679. characterMakers.push(() => makeCharacter(
  2680. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2681. {
  2682. front: {
  2683. height: math.unit(7 + 2/12, "feet"),
  2684. weight: math.unit(320, "kg"),
  2685. name: "Front",
  2686. image: {
  2687. source: "./media/characters/rai/front.svg",
  2688. extra: 1802/1696,
  2689. bottom: 68/1870
  2690. }
  2691. },
  2692. frontDressed: {
  2693. height: math.unit(7 + 2/12, "feet"),
  2694. weight: math.unit(320, "kg"),
  2695. name: "Front (Dressed)",
  2696. image: {
  2697. source: "./media/characters/rai/front-dressed.svg",
  2698. extra: 1802/1696,
  2699. bottom: 68/1870
  2700. }
  2701. },
  2702. side: {
  2703. height: math.unit(7 + 2/12, "feet"),
  2704. weight: math.unit(320, "kg"),
  2705. name: "Side",
  2706. image: {
  2707. source: "./media/characters/rai/side.svg",
  2708. extra: 1789/1710,
  2709. bottom: 115/1904
  2710. }
  2711. },
  2712. back: {
  2713. height: math.unit(7 + 2/12, "feet"),
  2714. weight: math.unit(320, "kg"),
  2715. name: "Back",
  2716. image: {
  2717. source: "./media/characters/rai/back.svg",
  2718. extra: 1770/1707,
  2719. bottom: 28/1798
  2720. }
  2721. },
  2722. feral: {
  2723. height: math.unit(9.5, "feet"),
  2724. weight: math.unit(640, "kg"),
  2725. name: "Feral",
  2726. image: {
  2727. source: "./media/characters/rai/feral.svg",
  2728. extra: 945/553,
  2729. bottom: 176/1121
  2730. }
  2731. },
  2732. dragon: {
  2733. height: math.unit(23, "feet"),
  2734. weight: math.unit(50000, "lb"),
  2735. name: "Dragon",
  2736. image: {
  2737. source: "./media/characters/rai/dragon.svg",
  2738. extra: 2498 / 2030,
  2739. bottom: 85.2 / 2584
  2740. }
  2741. },
  2742. maw: {
  2743. height: math.unit(1.69, "feet"),
  2744. name: "Maw",
  2745. image: {
  2746. source: "./media/characters/rai/maw.svg"
  2747. }
  2748. },
  2749. },
  2750. [
  2751. {
  2752. name: "Normal",
  2753. height: math.unit(7 + 2/12, "feet")
  2754. },
  2755. {
  2756. name: "Big",
  2757. height: math.unit(11, "feet")
  2758. },
  2759. {
  2760. name: "Macro",
  2761. height: math.unit(302, "feet"),
  2762. default: true
  2763. },
  2764. ]
  2765. ))
  2766. characterMakers.push(() => makeCharacter(
  2767. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2768. {
  2769. frontDressed: {
  2770. height: math.unit(216, "feet"),
  2771. weight: math.unit(7000000, "lb"),
  2772. name: "Front (Dressed)",
  2773. image: {
  2774. source: "./media/characters/jazzy/front-dressed.svg",
  2775. extra: 2738 / 2651,
  2776. bottom: 41.8 / 2786
  2777. }
  2778. },
  2779. backDressed: {
  2780. height: math.unit(216, "feet"),
  2781. weight: math.unit(7000000, "lb"),
  2782. name: "Back (Dressed)",
  2783. image: {
  2784. source: "./media/characters/jazzy/back-dressed.svg",
  2785. extra: 2775 / 2673,
  2786. bottom: 36.8 / 2817
  2787. }
  2788. },
  2789. front: {
  2790. height: math.unit(216, "feet"),
  2791. weight: math.unit(7000000, "lb"),
  2792. name: "Front",
  2793. image: {
  2794. source: "./media/characters/jazzy/front.svg",
  2795. extra: 2738 / 2651,
  2796. bottom: 41.8 / 2786
  2797. }
  2798. },
  2799. back: {
  2800. height: math.unit(216, "feet"),
  2801. weight: math.unit(7000000, "lb"),
  2802. name: "Back",
  2803. image: {
  2804. source: "./media/characters/jazzy/back.svg",
  2805. extra: 2775 / 2673,
  2806. bottom: 36.8 / 2817
  2807. }
  2808. },
  2809. maw: {
  2810. height: math.unit(20, "feet"),
  2811. name: "Maw",
  2812. image: {
  2813. source: "./media/characters/jazzy/maw.svg"
  2814. }
  2815. },
  2816. paws: {
  2817. height: math.unit(27.5, "feet"),
  2818. name: "Paws",
  2819. image: {
  2820. source: "./media/characters/jazzy/paws.svg"
  2821. }
  2822. },
  2823. eye: {
  2824. height: math.unit(4.4, "feet"),
  2825. name: "Eye",
  2826. image: {
  2827. source: "./media/characters/jazzy/eye.svg"
  2828. }
  2829. },
  2830. droneOffense: {
  2831. height: math.unit(9.5, "inches"),
  2832. name: "Drone (Offense)",
  2833. image: {
  2834. source: "./media/characters/jazzy/drone-offense.svg"
  2835. }
  2836. },
  2837. droneRecon: {
  2838. height: math.unit(9.5, "inches"),
  2839. name: "Drone (Recon)",
  2840. image: {
  2841. source: "./media/characters/jazzy/drone-recon.svg"
  2842. }
  2843. },
  2844. droneDefense: {
  2845. height: math.unit(9.5, "inches"),
  2846. name: "Drone (Defense)",
  2847. image: {
  2848. source: "./media/characters/jazzy/drone-defense.svg"
  2849. }
  2850. },
  2851. },
  2852. [
  2853. {
  2854. name: "Macro",
  2855. height: math.unit(216, "feet"),
  2856. default: true
  2857. },
  2858. ]
  2859. ))
  2860. characterMakers.push(() => makeCharacter(
  2861. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2862. {
  2863. front: {
  2864. height: math.unit(9 + 6/12, "feet"),
  2865. weight: math.unit(700, "lb"),
  2866. name: "Front",
  2867. image: {
  2868. source: "./media/characters/flamm/front.svg",
  2869. extra: 1751/1632,
  2870. bottom: 46/1797
  2871. }
  2872. },
  2873. buff: {
  2874. height: math.unit(9 + 6/12, "feet"),
  2875. weight: math.unit(950, "lb"),
  2876. name: "Buff",
  2877. image: {
  2878. source: "./media/characters/flamm/buff.svg",
  2879. extra: 3018/2874,
  2880. bottom: 221/3239
  2881. }
  2882. },
  2883. },
  2884. [
  2885. {
  2886. name: "Normal",
  2887. height: math.unit(9.5, "feet")
  2888. },
  2889. {
  2890. name: "Macro",
  2891. height: math.unit(200, "feet"),
  2892. default: true
  2893. },
  2894. ]
  2895. ))
  2896. characterMakers.push(() => makeCharacter(
  2897. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2898. {
  2899. front: {
  2900. height: math.unit(5 + 3/12, "feet"),
  2901. weight: math.unit(60, "kg"),
  2902. name: "Front",
  2903. image: {
  2904. source: "./media/characters/zephiro/front.svg",
  2905. extra: 2309 / 2162,
  2906. bottom: 0.069
  2907. }
  2908. },
  2909. side: {
  2910. height: math.unit(5 + 3/12, "feet"),
  2911. weight: math.unit(60, "kg"),
  2912. name: "Side",
  2913. image: {
  2914. source: "./media/characters/zephiro/side.svg",
  2915. extra: 2403 / 2279,
  2916. bottom: 0.015
  2917. }
  2918. },
  2919. back: {
  2920. height: math.unit(5 + 3/12, "feet"),
  2921. weight: math.unit(60, "kg"),
  2922. name: "Back",
  2923. image: {
  2924. source: "./media/characters/zephiro/back.svg",
  2925. extra: 2373 / 2244,
  2926. bottom: 0.013
  2927. }
  2928. },
  2929. hand: {
  2930. height: math.unit(0.68, "feet"),
  2931. name: "Hand",
  2932. image: {
  2933. source: "./media/characters/zephiro/hand.svg"
  2934. }
  2935. },
  2936. paw: {
  2937. height: math.unit(1, "feet"),
  2938. name: "Paw",
  2939. image: {
  2940. source: "./media/characters/zephiro/paw.svg"
  2941. }
  2942. },
  2943. beans: {
  2944. height: math.unit(0.93, "feet"),
  2945. name: "Beans",
  2946. image: {
  2947. source: "./media/characters/zephiro/beans.svg"
  2948. }
  2949. },
  2950. },
  2951. [
  2952. {
  2953. name: "Micro",
  2954. height: math.unit(3, "inches")
  2955. },
  2956. {
  2957. name: "Normal",
  2958. height: math.unit(5 + 3 / 12, "feet"),
  2959. default: true
  2960. },
  2961. {
  2962. name: "Macro",
  2963. height: math.unit(118, "feet")
  2964. },
  2965. ]
  2966. ))
  2967. characterMakers.push(() => makeCharacter(
  2968. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2969. {
  2970. front: {
  2971. height: math.unit(5, "feet"),
  2972. weight: math.unit(90, "kg"),
  2973. name: "Front",
  2974. image: {
  2975. source: "./media/characters/fory/front.svg",
  2976. extra: 2862 / 2674,
  2977. bottom: 180 / 3043.8
  2978. }
  2979. },
  2980. back: {
  2981. height: math.unit(5, "feet"),
  2982. weight: math.unit(90, "kg"),
  2983. name: "Back",
  2984. image: {
  2985. source: "./media/characters/fory/back.svg",
  2986. extra: 2962 / 2791,
  2987. bottom: 106 / 3071.8
  2988. }
  2989. },
  2990. foot: {
  2991. height: math.unit(2.14, "feet"),
  2992. name: "Foot",
  2993. image: {
  2994. source: "./media/characters/fory/foot.svg"
  2995. }
  2996. },
  2997. },
  2998. [
  2999. {
  3000. name: "Normal",
  3001. height: math.unit(5, "feet")
  3002. },
  3003. {
  3004. name: "Macro",
  3005. height: math.unit(50, "feet"),
  3006. default: true
  3007. },
  3008. {
  3009. name: "Megamacro",
  3010. height: math.unit(10, "miles")
  3011. },
  3012. {
  3013. name: "Gigamacro",
  3014. height: math.unit(5, "earths")
  3015. },
  3016. ]
  3017. ))
  3018. characterMakers.push(() => makeCharacter(
  3019. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  3020. {
  3021. front: {
  3022. height: math.unit(7, "feet"),
  3023. weight: math.unit(90, "kg"),
  3024. name: "Front",
  3025. image: {
  3026. source: "./media/characters/kurrikage/front.svg",
  3027. extra: 1845/1733,
  3028. bottom: 119/1964
  3029. }
  3030. },
  3031. back: {
  3032. height: math.unit(7, "feet"),
  3033. weight: math.unit(90, "kg"),
  3034. name: "Back",
  3035. image: {
  3036. source: "./media/characters/kurrikage/back.svg",
  3037. extra: 1790/1677,
  3038. bottom: 61/1851
  3039. }
  3040. },
  3041. dressed: {
  3042. height: math.unit(7, "feet"),
  3043. weight: math.unit(90, "kg"),
  3044. name: "Dressed",
  3045. image: {
  3046. source: "./media/characters/kurrikage/dressed.svg",
  3047. extra: 1845/1733,
  3048. bottom: 119/1964
  3049. }
  3050. },
  3051. foot: {
  3052. height: math.unit(1.5, "feet"),
  3053. name: "Foot",
  3054. image: {
  3055. source: "./media/characters/kurrikage/foot.svg"
  3056. }
  3057. },
  3058. staff: {
  3059. height: math.unit(6.7, "feet"),
  3060. name: "Staff",
  3061. image: {
  3062. source: "./media/characters/kurrikage/staff.svg"
  3063. }
  3064. },
  3065. peek: {
  3066. height: math.unit(1.05, "feet"),
  3067. name: "Peeking",
  3068. image: {
  3069. source: "./media/characters/kurrikage/peek.svg",
  3070. bottom: 0.08
  3071. }
  3072. },
  3073. },
  3074. [
  3075. {
  3076. name: "Normal",
  3077. height: math.unit(12, "feet"),
  3078. default: true
  3079. },
  3080. {
  3081. name: "Big",
  3082. height: math.unit(20, "feet")
  3083. },
  3084. {
  3085. name: "Macro",
  3086. height: math.unit(500, "feet")
  3087. },
  3088. {
  3089. name: "Megamacro",
  3090. height: math.unit(20, "miles")
  3091. },
  3092. ]
  3093. ))
  3094. characterMakers.push(() => makeCharacter(
  3095. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  3096. {
  3097. front: {
  3098. height: math.unit(6, "feet"),
  3099. weight: math.unit(75, "kg"),
  3100. name: "Front",
  3101. image: {
  3102. source: "./media/characters/shingo/front.svg",
  3103. extra: 1900/1825,
  3104. bottom: 82/1982
  3105. }
  3106. },
  3107. side: {
  3108. height: math.unit(6, "feet"),
  3109. weight: math.unit(75, "kg"),
  3110. name: "Side",
  3111. image: {
  3112. source: "./media/characters/shingo/side.svg",
  3113. extra: 1930/1865,
  3114. bottom: 16/1946
  3115. }
  3116. },
  3117. back: {
  3118. height: math.unit(6, "feet"),
  3119. weight: math.unit(75, "kg"),
  3120. name: "Back",
  3121. image: {
  3122. source: "./media/characters/shingo/back.svg",
  3123. extra: 1922/1852,
  3124. bottom: 16/1938
  3125. }
  3126. },
  3127. frontDressed: {
  3128. height: math.unit(6, "feet"),
  3129. weight: math.unit(150, "lb"),
  3130. name: "Front-dressed",
  3131. image: {
  3132. source: "./media/characters/shingo/front-dressed.svg",
  3133. extra: 1900/1825,
  3134. bottom: 82/1982
  3135. }
  3136. },
  3137. paw: {
  3138. height: math.unit(1.29, "feet"),
  3139. name: "Paw",
  3140. image: {
  3141. source: "./media/characters/shingo/paw.svg"
  3142. }
  3143. },
  3144. hand: {
  3145. height: math.unit(1.07, "feet"),
  3146. name: "Hand",
  3147. image: {
  3148. source: "./media/characters/shingo/hand.svg"
  3149. }
  3150. },
  3151. frontAlt: {
  3152. height: math.unit(6, "feet"),
  3153. weight: math.unit(75, "kg"),
  3154. name: "Front (Alt)",
  3155. image: {
  3156. source: "./media/characters/shingo/front-alt.svg",
  3157. extra: 3511 / 3338,
  3158. bottom: 0.005
  3159. }
  3160. },
  3161. frontAlt2: {
  3162. height: math.unit(6, "feet"),
  3163. weight: math.unit(75, "kg"),
  3164. name: "Front (Alt 2)",
  3165. image: {
  3166. source: "./media/characters/shingo/front-alt-2.svg",
  3167. extra: 706/681,
  3168. bottom: 11/717
  3169. }
  3170. },
  3171. pawAlt: {
  3172. height: math.unit(1, "feet"),
  3173. name: "Paw (Alt)",
  3174. image: {
  3175. source: "./media/characters/shingo/paw-alt.svg"
  3176. }
  3177. },
  3178. },
  3179. [
  3180. {
  3181. name: "Micro",
  3182. height: math.unit(4, "inches")
  3183. },
  3184. {
  3185. name: "Normal",
  3186. height: math.unit(6, "feet"),
  3187. default: true
  3188. },
  3189. {
  3190. name: "Macro",
  3191. height: math.unit(108, "feet")
  3192. },
  3193. {
  3194. name: "Macro+",
  3195. height: math.unit(1500, "feet")
  3196. },
  3197. ]
  3198. ))
  3199. characterMakers.push(() => makeCharacter(
  3200. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3201. {
  3202. side: {
  3203. height: math.unit(6, "feet"),
  3204. weight: math.unit(75, "kg"),
  3205. name: "Side",
  3206. image: {
  3207. source: "./media/characters/aigey/side.svg"
  3208. }
  3209. },
  3210. },
  3211. [
  3212. {
  3213. name: "Macro",
  3214. height: math.unit(200, "feet"),
  3215. default: true
  3216. },
  3217. {
  3218. name: "Megamacro",
  3219. height: math.unit(100, "miles")
  3220. },
  3221. ]
  3222. )
  3223. )
  3224. characterMakers.push(() => makeCharacter(
  3225. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3226. {
  3227. front: {
  3228. height: math.unit(5 + 5 / 12, "feet"),
  3229. weight: math.unit(75, "kg"),
  3230. name: "Front",
  3231. image: {
  3232. source: "./media/characters/natasha/front.svg",
  3233. extra: 859 / 824,
  3234. bottom: 23 / 879.6
  3235. }
  3236. },
  3237. frontNsfw: {
  3238. height: math.unit(5 + 5 / 12, "feet"),
  3239. weight: math.unit(75, "kg"),
  3240. name: "Front (NSFW)",
  3241. image: {
  3242. source: "./media/characters/natasha/front-nsfw.svg",
  3243. extra: 859 / 824,
  3244. bottom: 23 / 879.6
  3245. }
  3246. },
  3247. frontErect: {
  3248. height: math.unit(5 + 5 / 12, "feet"),
  3249. weight: math.unit(75, "kg"),
  3250. name: "Front (Erect)",
  3251. image: {
  3252. source: "./media/characters/natasha/front-erect.svg",
  3253. extra: 859 / 824,
  3254. bottom: 23 / 879.6
  3255. }
  3256. },
  3257. back: {
  3258. height: math.unit(5 + 5 / 12, "feet"),
  3259. weight: math.unit(75, "kg"),
  3260. name: "Back",
  3261. image: {
  3262. source: "./media/characters/natasha/back.svg",
  3263. extra: 887.9 / 852.6,
  3264. bottom: 9.7 / 896.4
  3265. }
  3266. },
  3267. backAlt: {
  3268. height: math.unit(5 + 5 / 12, "feet"),
  3269. weight: math.unit(75, "kg"),
  3270. name: "Back (Alt)",
  3271. image: {
  3272. source: "./media/characters/natasha/back-alt.svg",
  3273. extra: 1236.7 / 1192,
  3274. bottom: 22.3 / 1258.2
  3275. }
  3276. },
  3277. dick: {
  3278. height: math.unit(1.772, "feet"),
  3279. name: "Dick",
  3280. image: {
  3281. source: "./media/characters/natasha/dick.svg"
  3282. }
  3283. },
  3284. paw: {
  3285. height: math.unit(0.250, "meters"),
  3286. name: "Paw",
  3287. image: {
  3288. source: "./media/characters/natasha/paw.svg"
  3289. },
  3290. extraAttributes: {
  3291. "toeSize": {
  3292. name: "Toe Size",
  3293. power: 2,
  3294. type: "area",
  3295. base: math.unit(0.0024, "m^2")
  3296. },
  3297. "padSize": {
  3298. name: "Pad Size",
  3299. power: 2,
  3300. type: "area",
  3301. base: math.unit(0.00889, "m^2")
  3302. },
  3303. "pawSize": {
  3304. name: "Paw Size",
  3305. power: 2,
  3306. type: "area",
  3307. base: math.unit(0.023667, "m^2")
  3308. },
  3309. }
  3310. },
  3311. },
  3312. [
  3313. {
  3314. name: "Normal",
  3315. height: math.unit(5 + 5 / 12, "feet")
  3316. },
  3317. {
  3318. name: "Large",
  3319. height: math.unit(12, "feet")
  3320. },
  3321. {
  3322. name: "Macro",
  3323. height: math.unit(100, "feet"),
  3324. default: true
  3325. },
  3326. {
  3327. name: "Macro+",
  3328. height: math.unit(260, "feet")
  3329. },
  3330. {
  3331. name: "Macro++",
  3332. height: math.unit(1, "mile")
  3333. },
  3334. ]
  3335. ))
  3336. characterMakers.push(() => makeCharacter(
  3337. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3338. {
  3339. front: {
  3340. height: math.unit(6, "feet"),
  3341. weight: math.unit(75, "kg"),
  3342. name: "Front",
  3343. image: {
  3344. source: "./media/characters/malik/front.svg"
  3345. }
  3346. },
  3347. side: {
  3348. height: math.unit(6, "feet"),
  3349. weight: math.unit(75, "kg"),
  3350. name: "Side",
  3351. image: {
  3352. source: "./media/characters/malik/side.svg",
  3353. extra: 1.1539
  3354. }
  3355. },
  3356. back: {
  3357. height: math.unit(6, "feet"),
  3358. weight: math.unit(75, "kg"),
  3359. name: "Back",
  3360. image: {
  3361. source: "./media/characters/malik/back.svg"
  3362. }
  3363. },
  3364. },
  3365. [
  3366. {
  3367. name: "Macro",
  3368. height: math.unit(156, "feet"),
  3369. default: true
  3370. },
  3371. {
  3372. name: "Macro+",
  3373. height: math.unit(1188, "feet")
  3374. },
  3375. ]
  3376. ))
  3377. characterMakers.push(() => makeCharacter(
  3378. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3379. {
  3380. front: {
  3381. height: math.unit(6, "feet"),
  3382. weight: math.unit(75, "kg"),
  3383. name: "Front",
  3384. image: {
  3385. source: "./media/characters/sefer/front.svg",
  3386. extra: 848 / 659,
  3387. bottom: 28.3 / 876.442
  3388. }
  3389. },
  3390. back: {
  3391. height: math.unit(6, "feet"),
  3392. weight: math.unit(75, "kg"),
  3393. name: "Back",
  3394. image: {
  3395. source: "./media/characters/sefer/back.svg",
  3396. extra: 864 / 695,
  3397. bottom: 10 / 871
  3398. }
  3399. },
  3400. frontDressed: {
  3401. height: math.unit(6, "feet"),
  3402. weight: math.unit(75, "kg"),
  3403. name: "Front (Dressed)",
  3404. image: {
  3405. source: "./media/characters/sefer/front-dressed.svg",
  3406. extra: 839 / 653,
  3407. bottom: 37.6 / 878
  3408. }
  3409. },
  3410. },
  3411. [
  3412. {
  3413. name: "Normal",
  3414. height: math.unit(6, "feet"),
  3415. default: true
  3416. },
  3417. ]
  3418. ))
  3419. characterMakers.push(() => makeCharacter(
  3420. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3421. {
  3422. body: {
  3423. height: math.unit(2.2428, "meter"),
  3424. weight: math.unit(124.738, "kg"),
  3425. name: "Body",
  3426. image: {
  3427. extra: 1225 / 1050,
  3428. source: "./media/characters/north/front.svg"
  3429. }
  3430. }
  3431. },
  3432. [
  3433. {
  3434. name: "Micro",
  3435. height: math.unit(4, "inches")
  3436. },
  3437. {
  3438. name: "Macro",
  3439. height: math.unit(63, "meters")
  3440. },
  3441. {
  3442. name: "Megamacro",
  3443. height: math.unit(101, "miles"),
  3444. default: true
  3445. }
  3446. ]
  3447. ))
  3448. characterMakers.push(() => makeCharacter(
  3449. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3450. {
  3451. angled: {
  3452. height: math.unit(4, "meter"),
  3453. weight: math.unit(150, "kg"),
  3454. name: "Angled",
  3455. image: {
  3456. source: "./media/characters/talan/angled-sfw.svg",
  3457. bottom: 29 / 3734
  3458. }
  3459. },
  3460. angledNsfw: {
  3461. height: math.unit(4, "meter"),
  3462. weight: math.unit(150, "kg"),
  3463. name: "Angled (NSFW)",
  3464. image: {
  3465. source: "./media/characters/talan/angled-nsfw.svg",
  3466. bottom: 29 / 3734
  3467. }
  3468. },
  3469. frontNsfw: {
  3470. height: math.unit(4, "meter"),
  3471. weight: math.unit(150, "kg"),
  3472. name: "Front (NSFW)",
  3473. image: {
  3474. source: "./media/characters/talan/front-nsfw.svg",
  3475. bottom: 29 / 3734
  3476. }
  3477. },
  3478. sideNsfw: {
  3479. height: math.unit(4, "meter"),
  3480. weight: math.unit(150, "kg"),
  3481. name: "Side (NSFW)",
  3482. image: {
  3483. source: "./media/characters/talan/side-nsfw.svg",
  3484. bottom: 29 / 3734
  3485. }
  3486. },
  3487. back: {
  3488. height: math.unit(4, "meter"),
  3489. weight: math.unit(150, "kg"),
  3490. name: "Back",
  3491. image: {
  3492. source: "./media/characters/talan/back.svg"
  3493. }
  3494. },
  3495. dickBottom: {
  3496. height: math.unit(0.621, "meter"),
  3497. name: "Dick (Bottom)",
  3498. image: {
  3499. source: "./media/characters/talan/dick-bottom.svg"
  3500. }
  3501. },
  3502. dickTop: {
  3503. height: math.unit(0.621, "meter"),
  3504. name: "Dick (Top)",
  3505. image: {
  3506. source: "./media/characters/talan/dick-top.svg"
  3507. }
  3508. },
  3509. dickSide: {
  3510. height: math.unit(0.305, "meter"),
  3511. name: "Dick (Side)",
  3512. image: {
  3513. source: "./media/characters/talan/dick-side.svg"
  3514. }
  3515. },
  3516. dickFront: {
  3517. height: math.unit(0.305, "meter"),
  3518. name: "Dick (Front)",
  3519. image: {
  3520. source: "./media/characters/talan/dick-front.svg"
  3521. }
  3522. },
  3523. },
  3524. [
  3525. {
  3526. name: "Normal",
  3527. height: math.unit(4, "meters")
  3528. },
  3529. {
  3530. name: "Macro",
  3531. height: math.unit(100, "meters")
  3532. },
  3533. {
  3534. name: "Megamacro",
  3535. height: math.unit(2, "miles"),
  3536. default: true
  3537. },
  3538. {
  3539. name: "Gigamacro",
  3540. height: math.unit(5000, "miles")
  3541. },
  3542. {
  3543. name: "Teramacro",
  3544. height: math.unit(100, "parsecs")
  3545. }
  3546. ]
  3547. ))
  3548. characterMakers.push(() => makeCharacter(
  3549. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3550. {
  3551. front: {
  3552. height: math.unit(2, "meter"),
  3553. weight: math.unit(90, "kg"),
  3554. name: "Front",
  3555. image: {
  3556. source: "./media/characters/gael'rathus/front.svg"
  3557. }
  3558. },
  3559. frontAlt: {
  3560. height: math.unit(2, "meter"),
  3561. weight: math.unit(90, "kg"),
  3562. name: "Front (alt)",
  3563. image: {
  3564. source: "./media/characters/gael'rathus/front-alt.svg"
  3565. }
  3566. },
  3567. frontAlt2: {
  3568. height: math.unit(2, "meter"),
  3569. weight: math.unit(90, "kg"),
  3570. name: "Front (alt 2)",
  3571. image: {
  3572. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3573. }
  3574. }
  3575. },
  3576. [
  3577. {
  3578. name: "Normal",
  3579. height: math.unit(9, "feet"),
  3580. default: true
  3581. },
  3582. {
  3583. name: "Large",
  3584. height: math.unit(25, "feet")
  3585. },
  3586. {
  3587. name: "Macro",
  3588. height: math.unit(0.25, "miles")
  3589. },
  3590. {
  3591. name: "Megamacro",
  3592. height: math.unit(10, "miles")
  3593. }
  3594. ]
  3595. ))
  3596. characterMakers.push(() => makeCharacter(
  3597. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3598. {
  3599. side: {
  3600. height: math.unit(2, "meter"),
  3601. weight: math.unit(140, "kg"),
  3602. name: "Side",
  3603. image: {
  3604. source: "./media/characters/sosha/side.svg",
  3605. extra: 1170/1006,
  3606. bottom: 94/1264
  3607. }
  3608. },
  3609. maw: {
  3610. height: math.unit(2.87, "feet"),
  3611. name: "Maw",
  3612. image: {
  3613. source: "./media/characters/sosha/maw.svg",
  3614. extra: 966/865,
  3615. bottom: 0/966
  3616. }
  3617. },
  3618. cooch: {
  3619. height: math.unit(5.6, "feet"),
  3620. name: "Cooch",
  3621. image: {
  3622. source: "./media/characters/sosha/cooch.svg"
  3623. }
  3624. },
  3625. },
  3626. [
  3627. {
  3628. name: "Normal",
  3629. height: math.unit(12, "feet"),
  3630. default: true
  3631. }
  3632. ]
  3633. ))
  3634. characterMakers.push(() => makeCharacter(
  3635. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3636. {
  3637. side: {
  3638. height: math.unit(5 + 5 / 12, "feet"),
  3639. weight: math.unit(170, "kg"),
  3640. name: "Side",
  3641. image: {
  3642. source: "./media/characters/runnola/side.svg",
  3643. extra: 741 / 448,
  3644. bottom: 0.05
  3645. }
  3646. },
  3647. },
  3648. [
  3649. {
  3650. name: "Small",
  3651. height: math.unit(3, "feet")
  3652. },
  3653. {
  3654. name: "Normal",
  3655. height: math.unit(5 + 5 / 12, "feet"),
  3656. default: true
  3657. },
  3658. {
  3659. name: "Big",
  3660. height: math.unit(10, "feet")
  3661. },
  3662. ]
  3663. ))
  3664. characterMakers.push(() => makeCharacter(
  3665. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3666. {
  3667. front: {
  3668. height: math.unit(2, "meter"),
  3669. weight: math.unit(50, "kg"),
  3670. name: "Front",
  3671. image: {
  3672. source: "./media/characters/kurribird/front.svg",
  3673. bottom: 0.015
  3674. }
  3675. },
  3676. frontAlt: {
  3677. height: math.unit(1.5, "meter"),
  3678. weight: math.unit(50, "kg"),
  3679. name: "Front (Alt)",
  3680. image: {
  3681. source: "./media/characters/kurribird/front-alt.svg",
  3682. extra: 1.45
  3683. }
  3684. },
  3685. },
  3686. [
  3687. {
  3688. name: "Normal",
  3689. height: math.unit(7, "feet")
  3690. },
  3691. {
  3692. name: "Big",
  3693. height: math.unit(12, "feet"),
  3694. default: true
  3695. },
  3696. {
  3697. name: "Macro",
  3698. height: math.unit(1500, "feet")
  3699. },
  3700. {
  3701. name: "Megamacro",
  3702. height: math.unit(2, "miles")
  3703. }
  3704. ]
  3705. ))
  3706. characterMakers.push(() => makeCharacter(
  3707. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3708. {
  3709. front: {
  3710. height: math.unit(2, "meter"),
  3711. weight: math.unit(80, "kg"),
  3712. name: "Front",
  3713. image: {
  3714. source: "./media/characters/elbial/front.svg",
  3715. extra: 1643 / 1556,
  3716. bottom: 60.2 / 1696
  3717. }
  3718. },
  3719. side: {
  3720. height: math.unit(2, "meter"),
  3721. weight: math.unit(80, "kg"),
  3722. name: "Side",
  3723. image: {
  3724. source: "./media/characters/elbial/side.svg",
  3725. extra: 1601/1528,
  3726. bottom: 97/1698
  3727. }
  3728. },
  3729. back: {
  3730. height: math.unit(2, "meter"),
  3731. weight: math.unit(80, "kg"),
  3732. name: "Back",
  3733. image: {
  3734. source: "./media/characters/elbial/back.svg",
  3735. extra: 1653/1569,
  3736. bottom: 20/1673
  3737. }
  3738. },
  3739. frontDressed: {
  3740. height: math.unit(2, "meter"),
  3741. weight: math.unit(80, "kg"),
  3742. name: "Front (Dressed)",
  3743. image: {
  3744. source: "./media/characters/elbial/front-dressed.svg",
  3745. extra: 1638/1569,
  3746. bottom: 70/1708
  3747. }
  3748. },
  3749. genitals: {
  3750. height: math.unit(2 / 3.367, "meter"),
  3751. name: "Genitals",
  3752. image: {
  3753. source: "./media/characters/elbial/genitals.svg"
  3754. }
  3755. },
  3756. },
  3757. [
  3758. {
  3759. name: "Large",
  3760. height: math.unit(100, "feet")
  3761. },
  3762. {
  3763. name: "Macro",
  3764. height: math.unit(500, "feet"),
  3765. default: true
  3766. },
  3767. {
  3768. name: "Megamacro",
  3769. height: math.unit(10, "miles")
  3770. },
  3771. {
  3772. name: "Gigamacro",
  3773. height: math.unit(25000, "miles")
  3774. },
  3775. {
  3776. name: "Full-Size",
  3777. height: math.unit(8000000, "gigaparsecs")
  3778. }
  3779. ]
  3780. ))
  3781. characterMakers.push(() => makeCharacter(
  3782. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3783. {
  3784. front: {
  3785. height: math.unit(2, "meter"),
  3786. weight: math.unit(60, "kg"),
  3787. name: "Front",
  3788. image: {
  3789. source: "./media/characters/noah/front.svg"
  3790. }
  3791. },
  3792. talons: {
  3793. height: math.unit(0.315, "meter"),
  3794. name: "Talons",
  3795. image: {
  3796. source: "./media/characters/noah/talons.svg"
  3797. }
  3798. }
  3799. },
  3800. [
  3801. {
  3802. name: "Large",
  3803. height: math.unit(50, "feet")
  3804. },
  3805. {
  3806. name: "Macro",
  3807. height: math.unit(750, "feet"),
  3808. default: true
  3809. },
  3810. {
  3811. name: "Megamacro",
  3812. height: math.unit(50, "miles")
  3813. },
  3814. {
  3815. name: "Gigamacro",
  3816. height: math.unit(100000, "miles")
  3817. },
  3818. {
  3819. name: "Full-Size",
  3820. height: math.unit(3000000000, "miles")
  3821. }
  3822. ]
  3823. ))
  3824. characterMakers.push(() => makeCharacter(
  3825. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3826. {
  3827. front: {
  3828. height: math.unit(2, "meter"),
  3829. weight: math.unit(80, "kg"),
  3830. name: "Front",
  3831. image: {
  3832. source: "./media/characters/natalya/front.svg"
  3833. }
  3834. },
  3835. back: {
  3836. height: math.unit(2, "meter"),
  3837. weight: math.unit(80, "kg"),
  3838. name: "Back",
  3839. image: {
  3840. source: "./media/characters/natalya/back.svg"
  3841. }
  3842. }
  3843. },
  3844. [
  3845. {
  3846. name: "Normal",
  3847. height: math.unit(150, "feet"),
  3848. default: true
  3849. },
  3850. {
  3851. name: "Megamacro",
  3852. height: math.unit(5, "miles")
  3853. },
  3854. {
  3855. name: "Full-Size",
  3856. height: math.unit(600, "kiloparsecs")
  3857. }
  3858. ]
  3859. ))
  3860. characterMakers.push(() => makeCharacter(
  3861. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3862. {
  3863. front: {
  3864. height: math.unit(2, "meter"),
  3865. weight: math.unit(50, "kg"),
  3866. name: "Front",
  3867. image: {
  3868. source: "./media/characters/erestrebah/front.svg",
  3869. extra: 1262/1162,
  3870. bottom: 96/1358
  3871. }
  3872. },
  3873. back: {
  3874. height: math.unit(2, "meter"),
  3875. weight: math.unit(50, "kg"),
  3876. name: "Back",
  3877. image: {
  3878. source: "./media/characters/erestrebah/back.svg",
  3879. extra: 1257/1139,
  3880. bottom: 13/1270
  3881. }
  3882. },
  3883. wing: {
  3884. height: math.unit(2, "meter"),
  3885. weight: math.unit(50, "kg"),
  3886. name: "Wing",
  3887. image: {
  3888. source: "./media/characters/erestrebah/wing.svg",
  3889. extra: 1262/1162,
  3890. bottom: 96/1358
  3891. }
  3892. },
  3893. mouth: {
  3894. height: math.unit(0.39, "feet"),
  3895. name: "Mouth",
  3896. image: {
  3897. source: "./media/characters/erestrebah/mouth.svg"
  3898. }
  3899. }
  3900. },
  3901. [
  3902. {
  3903. name: "Normal",
  3904. height: math.unit(10, "feet")
  3905. },
  3906. {
  3907. name: "Large",
  3908. height: math.unit(50, "feet"),
  3909. default: true
  3910. },
  3911. {
  3912. name: "Macro",
  3913. height: math.unit(300, "feet")
  3914. },
  3915. {
  3916. name: "Macro+",
  3917. height: math.unit(750, "feet")
  3918. },
  3919. {
  3920. name: "Megamacro",
  3921. height: math.unit(3, "miles")
  3922. }
  3923. ]
  3924. ))
  3925. characterMakers.push(() => makeCharacter(
  3926. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3927. {
  3928. front: {
  3929. height: math.unit(2, "meter"),
  3930. weight: math.unit(80, "kg"),
  3931. name: "Front",
  3932. image: {
  3933. source: "./media/characters/jennifer/front.svg",
  3934. bottom: 0.11,
  3935. extra: 1.16
  3936. }
  3937. },
  3938. frontAlt: {
  3939. height: math.unit(2, "meter"),
  3940. weight: math.unit(80, "kg"),
  3941. name: "Front (Alt)",
  3942. image: {
  3943. source: "./media/characters/jennifer/front-alt.svg"
  3944. }
  3945. }
  3946. },
  3947. [
  3948. {
  3949. name: "Canon Height",
  3950. height: math.unit(120, "feet"),
  3951. default: true
  3952. },
  3953. {
  3954. name: "Macro+",
  3955. height: math.unit(300, "feet")
  3956. },
  3957. {
  3958. name: "Megamacro",
  3959. height: math.unit(20000, "feet")
  3960. }
  3961. ]
  3962. ))
  3963. characterMakers.push(() => makeCharacter(
  3964. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3965. {
  3966. front: {
  3967. height: math.unit(2, "meter"),
  3968. weight: math.unit(50, "kg"),
  3969. name: "Front",
  3970. image: {
  3971. source: "./media/characters/kalista/front.svg",
  3972. extra: 1314/1145,
  3973. bottom: 101/1415
  3974. }
  3975. },
  3976. back: {
  3977. height: math.unit(2, "meter"),
  3978. weight: math.unit(50, "kg"),
  3979. name: "Back",
  3980. image: {
  3981. source: "./media/characters/kalista/back.svg",
  3982. extra: 1366 / 1156,
  3983. bottom: 33.9 / 1362.78
  3984. }
  3985. }
  3986. },
  3987. [
  3988. {
  3989. name: "Uncomfortably Small",
  3990. height: math.unit(10, "feet")
  3991. },
  3992. {
  3993. name: "Small",
  3994. height: math.unit(30, "feet")
  3995. },
  3996. {
  3997. name: "Macro",
  3998. height: math.unit(100, "feet"),
  3999. default: true
  4000. },
  4001. {
  4002. name: "Macro+",
  4003. height: math.unit(2000, "feet")
  4004. },
  4005. {
  4006. name: "True Form",
  4007. height: math.unit(8924, "miles")
  4008. }
  4009. ]
  4010. ))
  4011. characterMakers.push(() => makeCharacter(
  4012. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  4013. {
  4014. front: {
  4015. height: math.unit(2, "meter"),
  4016. weight: math.unit(120, "kg"),
  4017. name: "Front",
  4018. image: {
  4019. source: "./media/characters/ggv/front.svg"
  4020. }
  4021. },
  4022. side: {
  4023. height: math.unit(2, "meter"),
  4024. weight: math.unit(120, "kg"),
  4025. name: "Side",
  4026. image: {
  4027. source: "./media/characters/ggv/side.svg"
  4028. }
  4029. }
  4030. },
  4031. [
  4032. {
  4033. name: "Extremely Puny",
  4034. height: math.unit(9 + 5 / 12, "feet")
  4035. },
  4036. {
  4037. name: "Horribly Small",
  4038. height: math.unit(47.7, "miles"),
  4039. default: true
  4040. },
  4041. {
  4042. name: "Reasonably Sized",
  4043. height: math.unit(25000, "parsecs")
  4044. },
  4045. {
  4046. name: "Slightly Uncompressed",
  4047. height: math.unit(7.77e31, "parsecs")
  4048. },
  4049. {
  4050. name: "Omniversal",
  4051. height: math.unit(1e300, "meters")
  4052. },
  4053. ]
  4054. ))
  4055. characterMakers.push(() => makeCharacter(
  4056. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  4057. {
  4058. front: {
  4059. height: math.unit(2, "meter"),
  4060. weight: math.unit(75, "lb"),
  4061. name: "Front",
  4062. image: {
  4063. source: "./media/characters/napalm/front.svg"
  4064. }
  4065. },
  4066. back: {
  4067. height: math.unit(2, "meter"),
  4068. weight: math.unit(75, "lb"),
  4069. name: "Back",
  4070. image: {
  4071. source: "./media/characters/napalm/back.svg"
  4072. }
  4073. }
  4074. },
  4075. [
  4076. {
  4077. name: "Standard",
  4078. height: math.unit(55, "feet"),
  4079. default: true
  4080. }
  4081. ]
  4082. ))
  4083. characterMakers.push(() => makeCharacter(
  4084. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  4085. {
  4086. front: {
  4087. height: math.unit(7 + 5 / 6, "feet"),
  4088. weight: math.unit(325, "lb"),
  4089. name: "Front",
  4090. image: {
  4091. source: "./media/characters/asana/front.svg",
  4092. extra: 1133 / 1060,
  4093. bottom: 15.2 / 1148.6
  4094. }
  4095. },
  4096. back: {
  4097. height: math.unit(7 + 5 / 6, "feet"),
  4098. weight: math.unit(325, "lb"),
  4099. name: "Back",
  4100. image: {
  4101. source: "./media/characters/asana/back.svg",
  4102. extra: 1114 / 1043,
  4103. bottom: 5 / 1120
  4104. }
  4105. },
  4106. dressedDark: {
  4107. height: math.unit(7 + 5 / 6, "feet"),
  4108. weight: math.unit(325, "lb"),
  4109. name: "Dressed (Dark)",
  4110. image: {
  4111. source: "./media/characters/asana/dressed-dark.svg",
  4112. extra: 1133 / 1060,
  4113. bottom: 15.2 / 1148.6
  4114. }
  4115. },
  4116. dressedLight: {
  4117. height: math.unit(7 + 5 / 6, "feet"),
  4118. weight: math.unit(325, "lb"),
  4119. name: "Dressed (Light)",
  4120. image: {
  4121. source: "./media/characters/asana/dressed-light.svg",
  4122. extra: 1133 / 1060,
  4123. bottom: 15.2 / 1148.6
  4124. }
  4125. },
  4126. },
  4127. [
  4128. {
  4129. name: "Standard",
  4130. height: math.unit(7 + 5 / 6, "feet"),
  4131. default: true
  4132. },
  4133. {
  4134. name: "Large",
  4135. height: math.unit(10, "meters")
  4136. },
  4137. {
  4138. name: "Macro",
  4139. height: math.unit(2500, "meters")
  4140. },
  4141. {
  4142. name: "Megamacro",
  4143. height: math.unit(5e6, "meters")
  4144. },
  4145. {
  4146. name: "Examacro",
  4147. height: math.unit(5e12, "lightyears")
  4148. },
  4149. {
  4150. name: "Max Size",
  4151. height: math.unit(1e31, "lightyears")
  4152. }
  4153. ]
  4154. ))
  4155. characterMakers.push(() => makeCharacter(
  4156. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  4157. {
  4158. front: {
  4159. height: math.unit(2, "meter"),
  4160. weight: math.unit(60, "kg"),
  4161. name: "Front",
  4162. image: {
  4163. source: "./media/characters/ebony/front.svg",
  4164. bottom: 0.03,
  4165. extra: 1045 / 810 + 0.03
  4166. }
  4167. },
  4168. side: {
  4169. height: math.unit(2, "meter"),
  4170. weight: math.unit(60, "kg"),
  4171. name: "Side",
  4172. image: {
  4173. source: "./media/characters/ebony/side.svg",
  4174. bottom: 0.03,
  4175. extra: 1045 / 810 + 0.03
  4176. }
  4177. },
  4178. back: {
  4179. height: math.unit(2, "meter"),
  4180. weight: math.unit(60, "kg"),
  4181. name: "Back",
  4182. image: {
  4183. source: "./media/characters/ebony/back.svg",
  4184. bottom: 0.01,
  4185. extra: 1045 / 810 + 0.01
  4186. }
  4187. },
  4188. },
  4189. [
  4190. // TODO check why I did this lol
  4191. {
  4192. name: "Standard",
  4193. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  4194. default: true
  4195. },
  4196. {
  4197. name: "Macro",
  4198. height: math.unit(200, "feet")
  4199. },
  4200. {
  4201. name: "Gigamacro",
  4202. height: math.unit(13000, "km")
  4203. }
  4204. ]
  4205. ))
  4206. characterMakers.push(() => makeCharacter(
  4207. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4208. {
  4209. front: {
  4210. height: math.unit(6, "feet"),
  4211. weight: math.unit(175, "lb"),
  4212. name: "Front",
  4213. image: {
  4214. source: "./media/characters/mountain/front.svg",
  4215. extra: 972 / 955,
  4216. bottom: 64 / 1036.6
  4217. }
  4218. },
  4219. back: {
  4220. height: math.unit(6, "feet"),
  4221. weight: math.unit(175, "lb"),
  4222. name: "Back",
  4223. image: {
  4224. source: "./media/characters/mountain/back.svg",
  4225. extra: 970 / 950,
  4226. bottom: 28.25 / 999
  4227. }
  4228. },
  4229. },
  4230. [
  4231. {
  4232. name: "Large",
  4233. height: math.unit(20, "meters")
  4234. },
  4235. {
  4236. name: "Macro",
  4237. height: math.unit(300, "meters")
  4238. },
  4239. {
  4240. name: "Gigamacro",
  4241. height: math.unit(10000, "km"),
  4242. default: true
  4243. },
  4244. {
  4245. name: "Examacro",
  4246. height: math.unit(10e9, "lightyears")
  4247. }
  4248. ]
  4249. ))
  4250. characterMakers.push(() => makeCharacter(
  4251. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4252. {
  4253. front: {
  4254. height: math.unit(8, "feet"),
  4255. weight: math.unit(500, "lb"),
  4256. name: "Front",
  4257. image: {
  4258. source: "./media/characters/rick/front.svg"
  4259. }
  4260. }
  4261. },
  4262. [
  4263. {
  4264. name: "Normal",
  4265. height: math.unit(8, "feet"),
  4266. default: true
  4267. },
  4268. {
  4269. name: "Macro",
  4270. height: math.unit(5, "km")
  4271. }
  4272. ]
  4273. ))
  4274. characterMakers.push(() => makeCharacter(
  4275. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4276. {
  4277. front: {
  4278. height: math.unit(8, "feet"),
  4279. weight: math.unit(120, "lb"),
  4280. name: "Front",
  4281. image: {
  4282. source: "./media/characters/ona/front.svg"
  4283. }
  4284. },
  4285. frontAlt: {
  4286. height: math.unit(8, "feet"),
  4287. weight: math.unit(120, "lb"),
  4288. name: "Front (Alt)",
  4289. image: {
  4290. source: "./media/characters/ona/front-alt.svg"
  4291. }
  4292. },
  4293. back: {
  4294. height: math.unit(8, "feet"),
  4295. weight: math.unit(120, "lb"),
  4296. name: "Back",
  4297. image: {
  4298. source: "./media/characters/ona/back.svg"
  4299. }
  4300. },
  4301. foot: {
  4302. height: math.unit(1.1, "feet"),
  4303. name: "Foot",
  4304. image: {
  4305. source: "./media/characters/ona/foot.svg"
  4306. }
  4307. }
  4308. },
  4309. [
  4310. {
  4311. name: "Megamacro",
  4312. height: math.unit(70, "km"),
  4313. default: true
  4314. },
  4315. {
  4316. name: "Gigamacro",
  4317. height: math.unit(681818, "miles")
  4318. },
  4319. {
  4320. name: "Examacro",
  4321. height: math.unit(3800000, "lightyears")
  4322. },
  4323. ]
  4324. ))
  4325. characterMakers.push(() => makeCharacter(
  4326. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  4327. {
  4328. front: {
  4329. height: math.unit(12, "feet"),
  4330. weight: math.unit(3000, "lb"),
  4331. name: "Front",
  4332. image: {
  4333. source: "./media/characters/mech/front.svg",
  4334. extra: 2900 / 2770,
  4335. bottom: 110 / 3010
  4336. }
  4337. },
  4338. back: {
  4339. height: math.unit(12, "feet"),
  4340. weight: math.unit(3000, "lb"),
  4341. name: "Back",
  4342. image: {
  4343. source: "./media/characters/mech/back.svg",
  4344. extra: 3011 / 2890,
  4345. bottom: 94 / 3105
  4346. }
  4347. },
  4348. maw: {
  4349. height: math.unit(3.07, "feet"),
  4350. name: "Maw",
  4351. image: {
  4352. source: "./media/characters/mech/maw.svg"
  4353. }
  4354. },
  4355. head: {
  4356. height: math.unit(2.82, "feet"),
  4357. name: "Head",
  4358. image: {
  4359. source: "./media/characters/mech/head.svg"
  4360. }
  4361. },
  4362. dick: {
  4363. height: math.unit(1.43, "feet"),
  4364. name: "Dick",
  4365. image: {
  4366. source: "./media/characters/mech/dick.svg"
  4367. }
  4368. },
  4369. },
  4370. [
  4371. {
  4372. name: "Normal",
  4373. height: math.unit(12, "feet")
  4374. },
  4375. {
  4376. name: "Macro",
  4377. height: math.unit(300, "feet"),
  4378. default: true
  4379. },
  4380. {
  4381. name: "Macro+",
  4382. height: math.unit(1500, "feet")
  4383. },
  4384. ]
  4385. ))
  4386. characterMakers.push(() => makeCharacter(
  4387. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  4388. {
  4389. front: {
  4390. height: math.unit(1.3, "meter"),
  4391. weight: math.unit(30, "kg"),
  4392. name: "Front",
  4393. image: {
  4394. source: "./media/characters/gregory/front.svg",
  4395. }
  4396. }
  4397. },
  4398. [
  4399. {
  4400. name: "Normal",
  4401. height: math.unit(1.3, "meter"),
  4402. default: true
  4403. },
  4404. {
  4405. name: "Macro",
  4406. height: math.unit(20, "meter")
  4407. }
  4408. ]
  4409. ))
  4410. characterMakers.push(() => makeCharacter(
  4411. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  4412. {
  4413. front: {
  4414. height: math.unit(2.8, "meter"),
  4415. weight: math.unit(200, "kg"),
  4416. name: "Front",
  4417. image: {
  4418. source: "./media/characters/elory/front.svg",
  4419. }
  4420. }
  4421. },
  4422. [
  4423. {
  4424. name: "Normal",
  4425. height: math.unit(2.8, "meter"),
  4426. default: true
  4427. },
  4428. {
  4429. name: "Macro",
  4430. height: math.unit(38, "meter")
  4431. }
  4432. ]
  4433. ))
  4434. characterMakers.push(() => makeCharacter(
  4435. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4436. {
  4437. front: {
  4438. height: math.unit(470, "feet"),
  4439. weight: math.unit(924, "tons"),
  4440. name: "Front",
  4441. image: {
  4442. source: "./media/characters/angelpatamon/front.svg",
  4443. }
  4444. }
  4445. },
  4446. [
  4447. {
  4448. name: "Normal",
  4449. height: math.unit(470, "feet"),
  4450. default: true
  4451. },
  4452. {
  4453. name: "Deity Size I",
  4454. height: math.unit(28651.2, "km")
  4455. },
  4456. {
  4457. name: "Deity Size II",
  4458. height: math.unit(171907.2, "km")
  4459. }
  4460. ]
  4461. ))
  4462. characterMakers.push(() => makeCharacter(
  4463. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4464. {
  4465. side: {
  4466. height: math.unit(7.2, "meter"),
  4467. weight: math.unit(8.2, "tons"),
  4468. name: "Side",
  4469. image: {
  4470. source: "./media/characters/cryae/side.svg",
  4471. extra: 3500 / 1500
  4472. }
  4473. }
  4474. },
  4475. [
  4476. {
  4477. name: "Normal",
  4478. height: math.unit(7.2, "meter"),
  4479. default: true
  4480. }
  4481. ]
  4482. ))
  4483. characterMakers.push(() => makeCharacter(
  4484. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4485. {
  4486. front: {
  4487. height: math.unit(6, "feet"),
  4488. weight: math.unit(175, "lb"),
  4489. name: "Front",
  4490. image: {
  4491. source: "./media/characters/xera/front.svg",
  4492. extra: 2377 / 1972,
  4493. bottom: 75.5 / 2452
  4494. }
  4495. },
  4496. side: {
  4497. height: math.unit(6, "feet"),
  4498. weight: math.unit(175, "lb"),
  4499. name: "Side",
  4500. image: {
  4501. source: "./media/characters/xera/side.svg",
  4502. extra: 2345 / 2019,
  4503. bottom: 39.7 / 2384
  4504. }
  4505. },
  4506. back: {
  4507. height: math.unit(6, "feet"),
  4508. weight: math.unit(175, "lb"),
  4509. name: "Back",
  4510. image: {
  4511. source: "./media/characters/xera/back.svg",
  4512. extra: 2095 / 1984,
  4513. bottom: 67 / 2166
  4514. }
  4515. },
  4516. },
  4517. [
  4518. {
  4519. name: "Small",
  4520. height: math.unit(10, "feet")
  4521. },
  4522. {
  4523. name: "Macro",
  4524. height: math.unit(500, "meters"),
  4525. default: true
  4526. },
  4527. {
  4528. name: "Macro+",
  4529. height: math.unit(10, "km")
  4530. },
  4531. {
  4532. name: "Gigamacro",
  4533. height: math.unit(25000, "km")
  4534. },
  4535. {
  4536. name: "Teramacro",
  4537. height: math.unit(3e6, "km")
  4538. }
  4539. ]
  4540. ))
  4541. characterMakers.push(() => makeCharacter(
  4542. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4543. {
  4544. front: {
  4545. height: math.unit(6, "feet"),
  4546. weight: math.unit(175, "lb"),
  4547. name: "Front",
  4548. image: {
  4549. source: "./media/characters/nebula/front.svg",
  4550. extra: 2566 / 2362,
  4551. bottom: 81 / 2644
  4552. }
  4553. }
  4554. },
  4555. [
  4556. {
  4557. name: "Small",
  4558. height: math.unit(4.5, "meters")
  4559. },
  4560. {
  4561. name: "Macro",
  4562. height: math.unit(1500, "meters"),
  4563. default: true
  4564. },
  4565. {
  4566. name: "Megamacro",
  4567. height: math.unit(150, "km")
  4568. },
  4569. {
  4570. name: "Gigamacro",
  4571. height: math.unit(27000, "km")
  4572. }
  4573. ]
  4574. ))
  4575. characterMakers.push(() => makeCharacter(
  4576. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4577. {
  4578. front: {
  4579. height: math.unit(6, "feet"),
  4580. weight: math.unit(225, "lb"),
  4581. name: "Front",
  4582. image: {
  4583. source: "./media/characters/abysgar/front.svg",
  4584. extra: 1739/1614,
  4585. bottom: 71/1810
  4586. }
  4587. },
  4588. frontNsfw: {
  4589. height: math.unit(6, "feet"),
  4590. weight: math.unit(225, "lb"),
  4591. name: "Front (NSFW)",
  4592. image: {
  4593. source: "./media/characters/abysgar/front-nsfw.svg",
  4594. extra: 1739/1614,
  4595. bottom: 71/1810
  4596. }
  4597. },
  4598. back: {
  4599. height: math.unit(4.6, "feet"),
  4600. weight: math.unit(225, "lb"),
  4601. name: "Back",
  4602. image: {
  4603. source: "./media/characters/abysgar/back.svg",
  4604. extra: 1384/1327,
  4605. bottom: 0/1384
  4606. }
  4607. },
  4608. head: {
  4609. height: math.unit(1.25, "feet"),
  4610. name: "Head",
  4611. image: {
  4612. source: "./media/characters/abysgar/head.svg",
  4613. extra: 669/569,
  4614. bottom: 0/669
  4615. }
  4616. },
  4617. },
  4618. [
  4619. {
  4620. name: "Small",
  4621. height: math.unit(4.5, "meters")
  4622. },
  4623. {
  4624. name: "Macro",
  4625. height: math.unit(1250, "meters"),
  4626. default: true
  4627. },
  4628. {
  4629. name: "Megamacro",
  4630. height: math.unit(125, "km")
  4631. },
  4632. {
  4633. name: "Gigamacro",
  4634. height: math.unit(26000, "km")
  4635. }
  4636. ]
  4637. ))
  4638. characterMakers.push(() => makeCharacter(
  4639. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  4640. {
  4641. front: {
  4642. height: math.unit(6, "feet"),
  4643. weight: math.unit(180, "lb"),
  4644. name: "Front",
  4645. image: {
  4646. source: "./media/characters/yakuz/front.svg"
  4647. }
  4648. }
  4649. },
  4650. [
  4651. {
  4652. name: "Small",
  4653. height: math.unit(5, "meters")
  4654. },
  4655. {
  4656. name: "Macro",
  4657. height: math.unit(1500, "meters"),
  4658. default: true
  4659. },
  4660. {
  4661. name: "Megamacro",
  4662. height: math.unit(200, "km")
  4663. },
  4664. {
  4665. name: "Gigamacro",
  4666. height: math.unit(100000, "km")
  4667. }
  4668. ]
  4669. ))
  4670. characterMakers.push(() => makeCharacter(
  4671. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4672. {
  4673. front: {
  4674. height: math.unit(6, "feet"),
  4675. weight: math.unit(175, "lb"),
  4676. name: "Front",
  4677. image: {
  4678. source: "./media/characters/mirova/front.svg",
  4679. extra: 3334 / 3071,
  4680. bottom: 42 / 3375.6
  4681. }
  4682. }
  4683. },
  4684. [
  4685. {
  4686. name: "Small",
  4687. height: math.unit(5, "meters")
  4688. },
  4689. {
  4690. name: "Macro",
  4691. height: math.unit(900, "meters"),
  4692. default: true
  4693. },
  4694. {
  4695. name: "Megamacro",
  4696. height: math.unit(135, "km")
  4697. },
  4698. {
  4699. name: "Gigamacro",
  4700. height: math.unit(20000, "km")
  4701. }
  4702. ]
  4703. ))
  4704. characterMakers.push(() => makeCharacter(
  4705. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4706. {
  4707. side: {
  4708. height: math.unit(28.35, "feet"),
  4709. weight: math.unit(99.75, "tons"),
  4710. name: "Side",
  4711. image: {
  4712. source: "./media/characters/asana-mech/side.svg",
  4713. extra: 923 / 699,
  4714. bottom: 50 / 975
  4715. }
  4716. },
  4717. chaingun: {
  4718. height: math.unit(7, "feet"),
  4719. weight: math.unit(2400, "lb"),
  4720. name: "Chaingun",
  4721. image: {
  4722. source: "./media/characters/asana-mech/chaingun.svg"
  4723. }
  4724. },
  4725. laser: {
  4726. height: math.unit(7.12, "feet"),
  4727. weight: math.unit(2000, "lb"),
  4728. name: "Laser",
  4729. image: {
  4730. source: "./media/characters/asana-mech/laser.svg"
  4731. }
  4732. },
  4733. },
  4734. [
  4735. {
  4736. name: "Normal",
  4737. height: math.unit(28.35, "feet"),
  4738. default: true
  4739. },
  4740. {
  4741. name: "Macro",
  4742. height: math.unit(2500, "feet")
  4743. },
  4744. {
  4745. name: "Megamacro",
  4746. height: math.unit(25, "miles")
  4747. },
  4748. {
  4749. name: "Examacro",
  4750. height: math.unit(6e8, "lightyears")
  4751. },
  4752. ]
  4753. ))
  4754. characterMakers.push(() => makeCharacter(
  4755. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4756. {
  4757. front: {
  4758. height: math.unit(5, "meters"),
  4759. weight: math.unit(1000, "kg"),
  4760. name: "Front",
  4761. image: {
  4762. source: "./media/characters/asche/front.svg",
  4763. extra: 1258 / 1190,
  4764. bottom: 47 / 1305
  4765. }
  4766. },
  4767. frontUnderwear: {
  4768. height: math.unit(5, "meters"),
  4769. weight: math.unit(1000, "kg"),
  4770. name: "Front (Underwear)",
  4771. image: {
  4772. source: "./media/characters/asche/front-underwear.svg",
  4773. extra: 1258 / 1190,
  4774. bottom: 47 / 1305
  4775. }
  4776. },
  4777. frontDressed: {
  4778. height: math.unit(5, "meters"),
  4779. weight: math.unit(1000, "kg"),
  4780. name: "Front (Dressed)",
  4781. image: {
  4782. source: "./media/characters/asche/front-dressed.svg",
  4783. extra: 1258 / 1190,
  4784. bottom: 47 / 1305
  4785. }
  4786. },
  4787. frontArmor: {
  4788. height: math.unit(5, "meters"),
  4789. weight: math.unit(1000, "kg"),
  4790. name: "Front (Armored)",
  4791. image: {
  4792. source: "./media/characters/asche/front-armored.svg",
  4793. extra: 1374 / 1308,
  4794. bottom: 23 / 1397
  4795. }
  4796. },
  4797. mp724: {
  4798. height: math.unit(0.96, "meters"),
  4799. weight: math.unit(38, "kg"),
  4800. name: "H&K MP724",
  4801. image: {
  4802. source: "./media/characters/asche/h&k-mp724.svg"
  4803. }
  4804. },
  4805. side: {
  4806. height: math.unit(5, "meters"),
  4807. weight: math.unit(1000, "kg"),
  4808. name: "Side",
  4809. image: {
  4810. source: "./media/characters/asche/side.svg",
  4811. extra: 1717 / 1609,
  4812. bottom: 0.005
  4813. }
  4814. },
  4815. back: {
  4816. height: math.unit(5, "meters"),
  4817. weight: math.unit(1000, "kg"),
  4818. name: "Back",
  4819. image: {
  4820. source: "./media/characters/asche/back.svg",
  4821. extra: 1570 / 1501
  4822. }
  4823. },
  4824. },
  4825. [
  4826. {
  4827. name: "DEFCON 5",
  4828. height: math.unit(5, "meters")
  4829. },
  4830. {
  4831. name: "DEFCON 4",
  4832. height: math.unit(500, "meters"),
  4833. default: true
  4834. },
  4835. {
  4836. name: "DEFCON 3",
  4837. height: math.unit(5, "km")
  4838. },
  4839. {
  4840. name: "DEFCON 2",
  4841. height: math.unit(500, "km")
  4842. },
  4843. {
  4844. name: "DEFCON 1",
  4845. height: math.unit(500000, "km")
  4846. },
  4847. {
  4848. name: "DEFCON 0",
  4849. height: math.unit(3, "gigaparsecs")
  4850. },
  4851. ]
  4852. ))
  4853. characterMakers.push(() => makeCharacter(
  4854. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4855. {
  4856. front: {
  4857. height: math.unit(2, "meters"),
  4858. weight: math.unit(76, "kg"),
  4859. name: "Front",
  4860. image: {
  4861. source: "./media/characters/gale/front.svg"
  4862. }
  4863. },
  4864. frontAlt1: {
  4865. height: math.unit(2, "meters"),
  4866. weight: math.unit(76, "kg"),
  4867. name: "Front (Alt 1)",
  4868. image: {
  4869. source: "./media/characters/gale/front-alt-1.svg"
  4870. }
  4871. },
  4872. frontAlt2: {
  4873. height: math.unit(2, "meters"),
  4874. weight: math.unit(76, "kg"),
  4875. name: "Front (Alt 2)",
  4876. image: {
  4877. source: "./media/characters/gale/front-alt-2.svg"
  4878. }
  4879. },
  4880. },
  4881. [
  4882. {
  4883. name: "Normal",
  4884. height: math.unit(7, "feet")
  4885. },
  4886. {
  4887. name: "Macro",
  4888. height: math.unit(150, "feet"),
  4889. default: true
  4890. },
  4891. {
  4892. name: "Macro+",
  4893. height: math.unit(300, "feet")
  4894. },
  4895. ]
  4896. ))
  4897. characterMakers.push(() => makeCharacter(
  4898. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4899. {
  4900. front: {
  4901. height: math.unit(5 + 10/12, "feet"),
  4902. weight: math.unit(67, "kg"),
  4903. name: "Front",
  4904. image: {
  4905. source: "./media/characters/draylen/front.svg",
  4906. extra: 832/777,
  4907. bottom: 85/917
  4908. }
  4909. }
  4910. },
  4911. [
  4912. {
  4913. name: "Normal",
  4914. height: math.unit(5 + 10/12, "feet")
  4915. },
  4916. {
  4917. name: "Macro",
  4918. height: math.unit(150, "feet"),
  4919. default: true
  4920. }
  4921. ]
  4922. ))
  4923. characterMakers.push(() => makeCharacter(
  4924. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4925. {
  4926. front: {
  4927. height: math.unit(7 + 9 / 12, "feet"),
  4928. weight: math.unit(379, "lbs"),
  4929. name: "Front",
  4930. image: {
  4931. source: "./media/characters/chez/front.svg"
  4932. }
  4933. },
  4934. side: {
  4935. height: math.unit(7 + 9 / 12, "feet"),
  4936. weight: math.unit(379, "lbs"),
  4937. name: "Side",
  4938. image: {
  4939. source: "./media/characters/chez/side.svg"
  4940. }
  4941. }
  4942. },
  4943. [
  4944. {
  4945. name: "Normal",
  4946. height: math.unit(7 + 9 / 12, "feet"),
  4947. default: true
  4948. },
  4949. {
  4950. name: "God King",
  4951. height: math.unit(9750000, "meters")
  4952. }
  4953. ]
  4954. ))
  4955. characterMakers.push(() => makeCharacter(
  4956. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4957. {
  4958. front: {
  4959. height: math.unit(6, "feet"),
  4960. weight: math.unit(275, "lbs"),
  4961. name: "Front",
  4962. image: {
  4963. source: "./media/characters/kaylum/front.svg",
  4964. bottom: 0.01,
  4965. extra: 1166 / 1031
  4966. }
  4967. },
  4968. frontWingless: {
  4969. height: math.unit(6, "feet"),
  4970. weight: math.unit(275, "lbs"),
  4971. name: "Front (Wingless)",
  4972. image: {
  4973. source: "./media/characters/kaylum/front-wingless.svg",
  4974. bottom: 0.01,
  4975. extra: 1117 / 1031
  4976. }
  4977. }
  4978. },
  4979. [
  4980. {
  4981. name: "Normal",
  4982. height: math.unit(3.05, "meters")
  4983. },
  4984. {
  4985. name: "Master",
  4986. height: math.unit(5.5, "meters")
  4987. },
  4988. {
  4989. name: "Rampage",
  4990. height: math.unit(19, "meters")
  4991. },
  4992. {
  4993. name: "Macro Lite",
  4994. height: math.unit(37, "meters")
  4995. },
  4996. {
  4997. name: "Hyper Predator",
  4998. height: math.unit(61, "meters")
  4999. },
  5000. {
  5001. name: "Macro",
  5002. height: math.unit(138, "meters"),
  5003. default: true
  5004. }
  5005. ]
  5006. ))
  5007. characterMakers.push(() => makeCharacter(
  5008. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  5009. {
  5010. front: {
  5011. height: math.unit(5 + 5 / 12, "feet"),
  5012. weight: math.unit(120, "lbs"),
  5013. name: "Front",
  5014. image: {
  5015. source: "./media/characters/geta/front.svg",
  5016. extra: 1003/933,
  5017. bottom: 21/1024
  5018. }
  5019. },
  5020. paw: {
  5021. height: math.unit(0.35, "feet"),
  5022. name: "Paw",
  5023. image: {
  5024. source: "./media/characters/geta/paw.svg"
  5025. }
  5026. },
  5027. },
  5028. [
  5029. {
  5030. name: "Micro",
  5031. height: math.unit(3, "inches"),
  5032. default: true
  5033. },
  5034. {
  5035. name: "Normal",
  5036. height: math.unit(5 + 5 / 12, "feet")
  5037. }
  5038. ]
  5039. ))
  5040. characterMakers.push(() => makeCharacter(
  5041. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  5042. {
  5043. front: {
  5044. height: math.unit(6, "feet"),
  5045. weight: math.unit(300, "lbs"),
  5046. name: "Front",
  5047. image: {
  5048. source: "./media/characters/tyrnn/front.svg"
  5049. }
  5050. }
  5051. },
  5052. [
  5053. {
  5054. name: "Main Height",
  5055. height: math.unit(355, "feet"),
  5056. default: true
  5057. },
  5058. {
  5059. name: "Fave. Height",
  5060. height: math.unit(2400, "feet")
  5061. }
  5062. ]
  5063. ))
  5064. characterMakers.push(() => makeCharacter(
  5065. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  5066. {
  5067. front: {
  5068. height: math.unit(6, "feet"),
  5069. weight: math.unit(300, "lbs"),
  5070. name: "Front",
  5071. image: {
  5072. source: "./media/characters/appledectomy/front.svg"
  5073. }
  5074. }
  5075. },
  5076. [
  5077. {
  5078. name: "Macro",
  5079. height: math.unit(2500, "feet")
  5080. },
  5081. {
  5082. name: "Megamacro",
  5083. height: math.unit(50, "miles"),
  5084. default: true
  5085. },
  5086. {
  5087. name: "Gigamacro",
  5088. height: math.unit(5000, "miles")
  5089. },
  5090. {
  5091. name: "Teramacro",
  5092. height: math.unit(250000, "miles")
  5093. },
  5094. ]
  5095. ))
  5096. characterMakers.push(() => makeCharacter(
  5097. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  5098. {
  5099. front: {
  5100. height: math.unit(6, "feet"),
  5101. weight: math.unit(200, "lbs"),
  5102. name: "Front",
  5103. image: {
  5104. source: "./media/characters/vulpes/front.svg",
  5105. extra: 573 / 543,
  5106. bottom: 0.033
  5107. }
  5108. },
  5109. side: {
  5110. height: math.unit(6, "feet"),
  5111. weight: math.unit(200, "lbs"),
  5112. name: "Side",
  5113. image: {
  5114. source: "./media/characters/vulpes/side.svg",
  5115. extra: 577 / 549,
  5116. bottom: 11 / 588
  5117. }
  5118. },
  5119. back: {
  5120. height: math.unit(6, "feet"),
  5121. weight: math.unit(200, "lbs"),
  5122. name: "Back",
  5123. image: {
  5124. source: "./media/characters/vulpes/back.svg",
  5125. extra: 573 / 549,
  5126. bottom: 20 / 593
  5127. }
  5128. },
  5129. feet: {
  5130. height: math.unit(1.276, "feet"),
  5131. name: "Feet",
  5132. image: {
  5133. source: "./media/characters/vulpes/feet.svg"
  5134. }
  5135. },
  5136. maw: {
  5137. height: math.unit(1.18, "feet"),
  5138. name: "Maw",
  5139. image: {
  5140. source: "./media/characters/vulpes/maw.svg"
  5141. }
  5142. },
  5143. },
  5144. [
  5145. {
  5146. name: "Micro",
  5147. height: math.unit(2, "inches")
  5148. },
  5149. {
  5150. name: "Normal",
  5151. height: math.unit(6.3, "feet")
  5152. },
  5153. {
  5154. name: "Macro",
  5155. height: math.unit(850, "feet")
  5156. },
  5157. {
  5158. name: "Megamacro",
  5159. height: math.unit(7500, "feet"),
  5160. default: true
  5161. },
  5162. {
  5163. name: "Gigamacro",
  5164. height: math.unit(570000, "miles")
  5165. }
  5166. ]
  5167. ))
  5168. characterMakers.push(() => makeCharacter(
  5169. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  5170. {
  5171. front: {
  5172. height: math.unit(6, "feet"),
  5173. weight: math.unit(210, "lbs"),
  5174. name: "Front",
  5175. image: {
  5176. source: "./media/characters/rain-fallen/front.svg"
  5177. }
  5178. },
  5179. side: {
  5180. height: math.unit(6, "feet"),
  5181. weight: math.unit(210, "lbs"),
  5182. name: "Side",
  5183. image: {
  5184. source: "./media/characters/rain-fallen/side.svg"
  5185. }
  5186. },
  5187. back: {
  5188. height: math.unit(6, "feet"),
  5189. weight: math.unit(210, "lbs"),
  5190. name: "Back",
  5191. image: {
  5192. source: "./media/characters/rain-fallen/back.svg"
  5193. }
  5194. },
  5195. feral: {
  5196. height: math.unit(9, "feet"),
  5197. weight: math.unit(700, "lbs"),
  5198. name: "Feral",
  5199. image: {
  5200. source: "./media/characters/rain-fallen/feral.svg"
  5201. }
  5202. },
  5203. },
  5204. [
  5205. {
  5206. name: "Meddling with Mortals",
  5207. height: math.unit(8 + 8/12, "feet")
  5208. },
  5209. {
  5210. name: "Normal",
  5211. height: math.unit(5, "meter")
  5212. },
  5213. {
  5214. name: "Macro",
  5215. height: math.unit(150, "meter"),
  5216. default: true
  5217. },
  5218. {
  5219. name: "Megamacro",
  5220. height: math.unit(278e6, "meter")
  5221. },
  5222. {
  5223. name: "Gigamacro",
  5224. height: math.unit(2e9, "meter")
  5225. },
  5226. {
  5227. name: "Teramacro",
  5228. height: math.unit(8e12, "meter")
  5229. },
  5230. {
  5231. name: "Devourer",
  5232. height: math.unit(14, "zettameters")
  5233. },
  5234. {
  5235. name: "Scarlet King",
  5236. height: math.unit(18, "yottameters")
  5237. },
  5238. {
  5239. name: "Void",
  5240. height: math.unit(1e88, "yottameters")
  5241. }
  5242. ]
  5243. ))
  5244. characterMakers.push(() => makeCharacter(
  5245. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  5246. {
  5247. standing: {
  5248. height: math.unit(6, "feet"),
  5249. weight: math.unit(180, "lbs"),
  5250. name: "Standing",
  5251. image: {
  5252. source: "./media/characters/zaakira/standing.svg",
  5253. extra: 1599/1504,
  5254. bottom: 39/1638
  5255. }
  5256. },
  5257. laying: {
  5258. height: math.unit(3.3, "feet"),
  5259. weight: math.unit(180, "lbs"),
  5260. name: "Laying",
  5261. image: {
  5262. source: "./media/characters/zaakira/laying.svg"
  5263. }
  5264. },
  5265. },
  5266. [
  5267. {
  5268. name: "Normal",
  5269. height: math.unit(12, "feet")
  5270. },
  5271. {
  5272. name: "Macro",
  5273. height: math.unit(279, "feet"),
  5274. default: true
  5275. }
  5276. ]
  5277. ))
  5278. characterMakers.push(() => makeCharacter(
  5279. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  5280. {
  5281. femSfw: {
  5282. height: math.unit(8, "feet"),
  5283. weight: math.unit(350, "lb"),
  5284. name: "Fem",
  5285. image: {
  5286. source: "./media/characters/sigvald/fem-sfw.svg",
  5287. extra: 182 / 164,
  5288. bottom: 8.7 / 190.5
  5289. }
  5290. },
  5291. femNsfw: {
  5292. height: math.unit(8, "feet"),
  5293. weight: math.unit(350, "lb"),
  5294. name: "Fem (NSFW)",
  5295. image: {
  5296. source: "./media/characters/sigvald/fem-nsfw.svg",
  5297. extra: 182 / 164,
  5298. bottom: 8.7 / 190.5
  5299. }
  5300. },
  5301. maleNsfw: {
  5302. height: math.unit(8, "feet"),
  5303. weight: math.unit(350, "lb"),
  5304. name: "Male (NSFW)",
  5305. image: {
  5306. source: "./media/characters/sigvald/male-nsfw.svg",
  5307. extra: 182 / 164,
  5308. bottom: 8.7 / 190.5
  5309. }
  5310. },
  5311. hermNsfw: {
  5312. height: math.unit(8, "feet"),
  5313. weight: math.unit(350, "lb"),
  5314. name: "Herm (NSFW)",
  5315. image: {
  5316. source: "./media/characters/sigvald/herm-nsfw.svg",
  5317. extra: 182 / 164,
  5318. bottom: 8.7 / 190.5
  5319. }
  5320. },
  5321. dick: {
  5322. height: math.unit(2.36, "feet"),
  5323. name: "Dick",
  5324. image: {
  5325. source: "./media/characters/sigvald/dick.svg"
  5326. }
  5327. },
  5328. eye: {
  5329. height: math.unit(0.31, "feet"),
  5330. name: "Eye",
  5331. image: {
  5332. source: "./media/characters/sigvald/eye.svg"
  5333. }
  5334. },
  5335. mouth: {
  5336. height: math.unit(0.92, "feet"),
  5337. name: "Mouth",
  5338. image: {
  5339. source: "./media/characters/sigvald/mouth.svg"
  5340. }
  5341. },
  5342. paws: {
  5343. height: math.unit(2.2, "feet"),
  5344. name: "Paws",
  5345. image: {
  5346. source: "./media/characters/sigvald/paws.svg"
  5347. }
  5348. }
  5349. },
  5350. [
  5351. {
  5352. name: "Normal",
  5353. height: math.unit(8, "feet")
  5354. },
  5355. {
  5356. name: "Large",
  5357. height: math.unit(12, "feet")
  5358. },
  5359. {
  5360. name: "Larger",
  5361. height: math.unit(20, "feet")
  5362. },
  5363. {
  5364. name: "Macro",
  5365. height: math.unit(150, "feet")
  5366. },
  5367. {
  5368. name: "Macro+",
  5369. height: math.unit(200, "feet"),
  5370. default: true
  5371. },
  5372. ]
  5373. ))
  5374. characterMakers.push(() => makeCharacter(
  5375. { name: "Scott", species: ["fox"], tags: ["taur"] },
  5376. {
  5377. side: {
  5378. height: math.unit(12, "feet"),
  5379. weight: math.unit(2000, "kg"),
  5380. name: "Side",
  5381. image: {
  5382. source: "./media/characters/scott/side.svg",
  5383. extra: 754 / 724,
  5384. bottom: 0.069
  5385. }
  5386. },
  5387. upright: {
  5388. height: math.unit(12, "feet"),
  5389. weight: math.unit(2000, "kg"),
  5390. name: "Upright",
  5391. image: {
  5392. source: "./media/characters/scott/upright.svg",
  5393. extra: 3881 / 3722,
  5394. bottom: 0.05
  5395. }
  5396. },
  5397. },
  5398. [
  5399. {
  5400. name: "Normal",
  5401. height: math.unit(12, "feet"),
  5402. default: true
  5403. },
  5404. ]
  5405. ))
  5406. characterMakers.push(() => makeCharacter(
  5407. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  5408. {
  5409. side: {
  5410. height: math.unit(8, "meters"),
  5411. weight: math.unit(84755, "lbs"),
  5412. name: "Side",
  5413. image: {
  5414. source: "./media/characters/tobias/side.svg",
  5415. extra: 1474 / 1096,
  5416. bottom: 38.9 / 1513.1235
  5417. }
  5418. },
  5419. },
  5420. [
  5421. {
  5422. name: "Normal",
  5423. height: math.unit(8, "meters"),
  5424. default: true
  5425. },
  5426. ]
  5427. ))
  5428. characterMakers.push(() => makeCharacter(
  5429. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  5430. {
  5431. front: {
  5432. height: math.unit(5.5, "feet"),
  5433. weight: math.unit(400, "lbs"),
  5434. name: "Front",
  5435. image: {
  5436. source: "./media/characters/kieran/front.svg",
  5437. extra: 2694 / 2364,
  5438. bottom: 217 / 2908
  5439. }
  5440. },
  5441. side: {
  5442. height: math.unit(5.5, "feet"),
  5443. weight: math.unit(400, "lbs"),
  5444. name: "Side",
  5445. image: {
  5446. source: "./media/characters/kieran/side.svg",
  5447. extra: 875 / 777,
  5448. bottom: 84.6 / 959
  5449. }
  5450. },
  5451. },
  5452. [
  5453. {
  5454. name: "Normal",
  5455. height: math.unit(5.5, "feet"),
  5456. default: true
  5457. },
  5458. ]
  5459. ))
  5460. characterMakers.push(() => makeCharacter(
  5461. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  5462. {
  5463. side: {
  5464. height: math.unit(2, "meters"),
  5465. weight: math.unit(70, "kg"),
  5466. name: "Side",
  5467. image: {
  5468. source: "./media/characters/sanya/side.svg",
  5469. bottom: 0.02,
  5470. extra: 1.02
  5471. }
  5472. },
  5473. },
  5474. [
  5475. {
  5476. name: "Small",
  5477. height: math.unit(2, "meters")
  5478. },
  5479. {
  5480. name: "Normal",
  5481. height: math.unit(3, "meters")
  5482. },
  5483. {
  5484. name: "Macro",
  5485. height: math.unit(16, "meters"),
  5486. default: true
  5487. },
  5488. ]
  5489. ))
  5490. characterMakers.push(() => makeCharacter(
  5491. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  5492. {
  5493. front: {
  5494. height: math.unit(2, "meters"),
  5495. weight: math.unit(120, "kg"),
  5496. name: "Front",
  5497. image: {
  5498. source: "./media/characters/miranda/front.svg",
  5499. extra: 195 / 185,
  5500. bottom: 10.9 / 206.5
  5501. }
  5502. },
  5503. back: {
  5504. height: math.unit(2, "meters"),
  5505. weight: math.unit(120, "kg"),
  5506. name: "Back",
  5507. image: {
  5508. source: "./media/characters/miranda/back.svg",
  5509. extra: 201 / 193,
  5510. bottom: 2.3 / 203.7
  5511. }
  5512. },
  5513. },
  5514. [
  5515. {
  5516. name: "Normal",
  5517. height: math.unit(10, "feet"),
  5518. default: true
  5519. }
  5520. ]
  5521. ))
  5522. characterMakers.push(() => makeCharacter(
  5523. { name: "James", species: ["deer"], tags: ["anthro"] },
  5524. {
  5525. side: {
  5526. height: math.unit(2, "meters"),
  5527. weight: math.unit(100, "kg"),
  5528. name: "Front",
  5529. image: {
  5530. source: "./media/characters/james/front.svg",
  5531. extra: 10 / 8.5
  5532. }
  5533. },
  5534. },
  5535. [
  5536. {
  5537. name: "Normal",
  5538. height: math.unit(8.5, "feet"),
  5539. default: true
  5540. }
  5541. ]
  5542. ))
  5543. characterMakers.push(() => makeCharacter(
  5544. { name: "Heather", species: ["cow"], tags: ["taur"] },
  5545. {
  5546. side: {
  5547. height: math.unit(9.5, "feet"),
  5548. weight: math.unit(2500, "lbs"),
  5549. name: "Side",
  5550. image: {
  5551. source: "./media/characters/heather/side.svg"
  5552. }
  5553. },
  5554. },
  5555. [
  5556. {
  5557. name: "Normal",
  5558. height: math.unit(9.5, "feet"),
  5559. default: true
  5560. }
  5561. ]
  5562. ))
  5563. characterMakers.push(() => makeCharacter(
  5564. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  5565. {
  5566. side: {
  5567. height: math.unit(6.5, "feet"),
  5568. weight: math.unit(400, "lbs"),
  5569. name: "Side",
  5570. image: {
  5571. source: "./media/characters/lukas/side.svg",
  5572. extra: 7.25 / 6.5
  5573. }
  5574. },
  5575. },
  5576. [
  5577. {
  5578. name: "Normal",
  5579. height: math.unit(6.5, "feet"),
  5580. default: true
  5581. }
  5582. ]
  5583. ))
  5584. characterMakers.push(() => makeCharacter(
  5585. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  5586. {
  5587. side: {
  5588. height: math.unit(5, "feet"),
  5589. weight: math.unit(3000, "lbs"),
  5590. name: "Side",
  5591. image: {
  5592. source: "./media/characters/louise/side.svg"
  5593. }
  5594. },
  5595. },
  5596. [
  5597. {
  5598. name: "Normal",
  5599. height: math.unit(5, "feet"),
  5600. default: true
  5601. }
  5602. ]
  5603. ))
  5604. characterMakers.push(() => makeCharacter(
  5605. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  5606. {
  5607. side: {
  5608. height: math.unit(6, "feet"),
  5609. weight: math.unit(150, "lbs"),
  5610. name: "Side",
  5611. image: {
  5612. source: "./media/characters/ramona/side.svg",
  5613. extra: 871/854,
  5614. bottom: 41/912
  5615. }
  5616. },
  5617. },
  5618. [
  5619. {
  5620. name: "Normal",
  5621. height: math.unit(5.3, "meters"),
  5622. default: true
  5623. },
  5624. {
  5625. name: "Macro",
  5626. height: math.unit(20, "stories")
  5627. },
  5628. {
  5629. name: "Macro+",
  5630. height: math.unit(50, "stories")
  5631. },
  5632. ]
  5633. ))
  5634. characterMakers.push(() => makeCharacter(
  5635. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  5636. {
  5637. standing: {
  5638. height: math.unit(5.75, "feet"),
  5639. weight: math.unit(160, "lbs"),
  5640. name: "Standing",
  5641. image: {
  5642. source: "./media/characters/deerpuff/standing.svg",
  5643. extra: 682 / 624
  5644. }
  5645. },
  5646. sitting: {
  5647. height: math.unit(5.75 / 1.79, "feet"),
  5648. weight: math.unit(160, "lbs"),
  5649. name: "Sitting",
  5650. image: {
  5651. source: "./media/characters/deerpuff/sitting.svg",
  5652. bottom: 44 / 400,
  5653. extra: 1
  5654. }
  5655. },
  5656. taurLaying: {
  5657. height: math.unit(6, "feet"),
  5658. weight: math.unit(400, "lbs"),
  5659. name: "Taur (Laying)",
  5660. image: {
  5661. source: "./media/characters/deerpuff/taur-laying.svg"
  5662. }
  5663. },
  5664. },
  5665. [
  5666. {
  5667. name: "Puffball",
  5668. height: math.unit(6, "inches")
  5669. },
  5670. {
  5671. name: "Normalpuff",
  5672. height: math.unit(5.75, "feet")
  5673. },
  5674. {
  5675. name: "Macropuff",
  5676. height: math.unit(1500, "feet"),
  5677. default: true
  5678. },
  5679. {
  5680. name: "Megapuff",
  5681. height: math.unit(500, "miles")
  5682. },
  5683. {
  5684. name: "Gigapuff",
  5685. height: math.unit(250000, "miles")
  5686. },
  5687. {
  5688. name: "Omegapuff",
  5689. height: math.unit(1000, "lightyears")
  5690. },
  5691. ]
  5692. ))
  5693. characterMakers.push(() => makeCharacter(
  5694. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5695. {
  5696. stomping: {
  5697. height: math.unit(6, "feet"),
  5698. weight: math.unit(170, "lbs"),
  5699. name: "Stomping",
  5700. image: {
  5701. source: "./media/characters/vivian/stomping.svg"
  5702. }
  5703. },
  5704. sitting: {
  5705. height: math.unit(6 / 1.75, "feet"),
  5706. weight: math.unit(170, "lbs"),
  5707. name: "Sitting",
  5708. image: {
  5709. source: "./media/characters/vivian/sitting.svg",
  5710. bottom: 1 / 6.4,
  5711. extra: 1,
  5712. }
  5713. },
  5714. },
  5715. [
  5716. {
  5717. name: "Normal",
  5718. height: math.unit(7, "feet"),
  5719. default: true
  5720. },
  5721. {
  5722. name: "Macro",
  5723. height: math.unit(10, "stories")
  5724. },
  5725. {
  5726. name: "Macro+",
  5727. height: math.unit(30, "stories")
  5728. },
  5729. {
  5730. name: "Megamacro",
  5731. height: math.unit(10, "miles")
  5732. },
  5733. {
  5734. name: "Megamacro+",
  5735. height: math.unit(2750000, "meters")
  5736. },
  5737. ]
  5738. ))
  5739. characterMakers.push(() => makeCharacter(
  5740. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5741. {
  5742. front: {
  5743. height: math.unit(6, "feet"),
  5744. weight: math.unit(160, "lbs"),
  5745. name: "Front",
  5746. image: {
  5747. source: "./media/characters/prince/front.svg",
  5748. extra: 3400 / 3000
  5749. }
  5750. },
  5751. jumping: {
  5752. height: math.unit(6, "feet"),
  5753. weight: math.unit(160, "lbs"),
  5754. name: "Jumping",
  5755. image: {
  5756. source: "./media/characters/prince/jump.svg",
  5757. extra: 2555 / 2134
  5758. }
  5759. },
  5760. },
  5761. [
  5762. {
  5763. name: "Normal",
  5764. height: math.unit(7.75, "feet"),
  5765. default: true
  5766. },
  5767. {
  5768. name: "Not cute",
  5769. height: math.unit(17, "feet")
  5770. },
  5771. {
  5772. name: "I said NOT",
  5773. height: math.unit(91, "feet")
  5774. },
  5775. {
  5776. name: "Please stop",
  5777. height: math.unit(560, "feet")
  5778. },
  5779. {
  5780. name: "What have you done",
  5781. height: math.unit(2200, "feet")
  5782. },
  5783. {
  5784. name: "Deer God",
  5785. height: math.unit(3.6, "miles")
  5786. },
  5787. ]
  5788. ))
  5789. characterMakers.push(() => makeCharacter(
  5790. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5791. {
  5792. standing: {
  5793. height: math.unit(6, "feet"),
  5794. weight: math.unit(300, "lbs"),
  5795. name: "Standing",
  5796. image: {
  5797. source: "./media/characters/psymon/standing.svg",
  5798. extra: 1888 / 1810,
  5799. bottom: 0.05
  5800. }
  5801. },
  5802. slithering: {
  5803. height: math.unit(6, "feet"),
  5804. weight: math.unit(300, "lbs"),
  5805. name: "Slithering",
  5806. image: {
  5807. source: "./media/characters/psymon/slithering.svg",
  5808. extra: 1330 / 1224
  5809. }
  5810. },
  5811. slitheringAlt: {
  5812. height: math.unit(6, "feet"),
  5813. weight: math.unit(300, "lbs"),
  5814. name: "Slithering (Alt)",
  5815. image: {
  5816. source: "./media/characters/psymon/slithering-alt.svg",
  5817. extra: 1330 / 1224
  5818. }
  5819. },
  5820. },
  5821. [
  5822. {
  5823. name: "Normal",
  5824. height: math.unit(11.25, "feet"),
  5825. default: true
  5826. },
  5827. {
  5828. name: "Large",
  5829. height: math.unit(27, "feet")
  5830. },
  5831. {
  5832. name: "Giant",
  5833. height: math.unit(87, "feet")
  5834. },
  5835. {
  5836. name: "Macro",
  5837. height: math.unit(365, "feet")
  5838. },
  5839. {
  5840. name: "Megamacro",
  5841. height: math.unit(3, "miles")
  5842. },
  5843. {
  5844. name: "World Serpent",
  5845. height: math.unit(8000, "miles")
  5846. },
  5847. ]
  5848. ))
  5849. characterMakers.push(() => makeCharacter(
  5850. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5851. {
  5852. front: {
  5853. height: math.unit(6, "feet"),
  5854. weight: math.unit(180, "lbs"),
  5855. name: "Front",
  5856. image: {
  5857. source: "./media/characters/daimos/front.svg",
  5858. extra: 4160 / 3897,
  5859. bottom: 0.021
  5860. }
  5861. }
  5862. },
  5863. [
  5864. {
  5865. name: "Normal",
  5866. height: math.unit(8, "feet"),
  5867. default: true
  5868. },
  5869. {
  5870. name: "Big Dog",
  5871. height: math.unit(22, "feet")
  5872. },
  5873. {
  5874. name: "Macro",
  5875. height: math.unit(127, "feet")
  5876. },
  5877. {
  5878. name: "Megamacro",
  5879. height: math.unit(3600, "feet")
  5880. },
  5881. ]
  5882. ))
  5883. characterMakers.push(() => makeCharacter(
  5884. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5885. {
  5886. side: {
  5887. height: math.unit(6, "feet"),
  5888. weight: math.unit(180, "lbs"),
  5889. name: "Side",
  5890. image: {
  5891. source: "./media/characters/blake/side.svg",
  5892. extra: 1212 / 1120,
  5893. bottom: 0.05
  5894. }
  5895. },
  5896. crouched: {
  5897. height: math.unit(6 * 0.57, "feet"),
  5898. weight: math.unit(180, "lbs"),
  5899. name: "Crouched",
  5900. image: {
  5901. source: "./media/characters/blake/crouched.svg",
  5902. extra: 840 / 587,
  5903. bottom: 0.04
  5904. }
  5905. },
  5906. bent: {
  5907. height: math.unit(6 * 0.75, "feet"),
  5908. weight: math.unit(180, "lbs"),
  5909. name: "Bent",
  5910. image: {
  5911. source: "./media/characters/blake/bent.svg",
  5912. extra: 592 / 544,
  5913. bottom: 0.035
  5914. }
  5915. },
  5916. },
  5917. [
  5918. {
  5919. name: "Normal",
  5920. height: math.unit(8 + 1 / 6, "feet"),
  5921. default: true
  5922. },
  5923. {
  5924. name: "Big Backside",
  5925. height: math.unit(37, "feet")
  5926. },
  5927. {
  5928. name: "Subway Shredder",
  5929. height: math.unit(72, "feet")
  5930. },
  5931. {
  5932. name: "City Carver",
  5933. height: math.unit(1675, "feet")
  5934. },
  5935. {
  5936. name: "Tectonic Tweaker",
  5937. height: math.unit(2300, "miles")
  5938. },
  5939. ]
  5940. ))
  5941. characterMakers.push(() => makeCharacter(
  5942. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5943. {
  5944. front: {
  5945. height: math.unit(6, "feet"),
  5946. weight: math.unit(180, "lbs"),
  5947. name: "Front",
  5948. image: {
  5949. source: "./media/characters/guisetto/front.svg",
  5950. extra: 856 / 817,
  5951. bottom: 0.06
  5952. }
  5953. },
  5954. airborne: {
  5955. height: math.unit(6, "feet"),
  5956. weight: math.unit(180, "lbs"),
  5957. name: "Airborne",
  5958. image: {
  5959. source: "./media/characters/guisetto/airborne.svg",
  5960. extra: 584 / 525
  5961. }
  5962. },
  5963. },
  5964. [
  5965. {
  5966. name: "Normal",
  5967. height: math.unit(10 + 11 / 12, "feet"),
  5968. default: true
  5969. },
  5970. {
  5971. name: "Large",
  5972. height: math.unit(35, "feet")
  5973. },
  5974. {
  5975. name: "Macro",
  5976. height: math.unit(475, "feet")
  5977. },
  5978. ]
  5979. ))
  5980. characterMakers.push(() => makeCharacter(
  5981. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5982. {
  5983. front: {
  5984. height: math.unit(6, "feet"),
  5985. weight: math.unit(180, "lbs"),
  5986. name: "Front",
  5987. image: {
  5988. source: "./media/characters/luxor/front.svg",
  5989. extra: 2940 / 2152
  5990. }
  5991. },
  5992. back: {
  5993. height: math.unit(6, "feet"),
  5994. weight: math.unit(180, "lbs"),
  5995. name: "Back",
  5996. image: {
  5997. source: "./media/characters/luxor/back.svg",
  5998. extra: 1083 / 960
  5999. }
  6000. },
  6001. },
  6002. [
  6003. {
  6004. name: "Normal",
  6005. height: math.unit(5 + 5 / 6, "feet"),
  6006. default: true
  6007. },
  6008. {
  6009. name: "Lamp",
  6010. height: math.unit(50, "feet")
  6011. },
  6012. {
  6013. name: "Lämp",
  6014. height: math.unit(300, "feet")
  6015. },
  6016. {
  6017. name: "The sun is a lamp",
  6018. height: math.unit(250000, "miles")
  6019. },
  6020. ]
  6021. ))
  6022. characterMakers.push(() => makeCharacter(
  6023. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  6024. {
  6025. front: {
  6026. height: math.unit(6, "feet"),
  6027. weight: math.unit(50, "lbs"),
  6028. name: "Front",
  6029. image: {
  6030. source: "./media/characters/huoyan/front.svg"
  6031. }
  6032. },
  6033. side: {
  6034. height: math.unit(6, "feet"),
  6035. weight: math.unit(180, "lbs"),
  6036. name: "Side",
  6037. image: {
  6038. source: "./media/characters/huoyan/side.svg"
  6039. }
  6040. },
  6041. },
  6042. [
  6043. {
  6044. name: "Chef",
  6045. height: math.unit(9, "feet")
  6046. },
  6047. {
  6048. name: "Normal",
  6049. height: math.unit(65, "feet"),
  6050. default: true
  6051. },
  6052. {
  6053. name: "Macro",
  6054. height: math.unit(780, "feet")
  6055. },
  6056. {
  6057. name: "Flaming Mountain",
  6058. height: math.unit(4.8, "miles")
  6059. },
  6060. {
  6061. name: "Celestial",
  6062. height: math.unit(765000, "miles")
  6063. },
  6064. ]
  6065. ))
  6066. characterMakers.push(() => makeCharacter(
  6067. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  6068. {
  6069. front: {
  6070. height: math.unit(5 + 3 / 4, "feet"),
  6071. weight: math.unit(120, "lbs"),
  6072. name: "Front",
  6073. image: {
  6074. source: "./media/characters/tails/front.svg"
  6075. }
  6076. }
  6077. },
  6078. [
  6079. {
  6080. name: "Normal",
  6081. height: math.unit(5 + 3 / 4, "feet"),
  6082. default: true
  6083. }
  6084. ]
  6085. ))
  6086. characterMakers.push(() => makeCharacter(
  6087. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  6088. {
  6089. front: {
  6090. height: math.unit(4, "feet"),
  6091. weight: math.unit(50, "lbs"),
  6092. name: "Front",
  6093. image: {
  6094. source: "./media/characters/rainy/front.svg"
  6095. }
  6096. }
  6097. },
  6098. [
  6099. {
  6100. name: "Macro",
  6101. height: math.unit(800, "feet"),
  6102. default: true
  6103. }
  6104. ]
  6105. ))
  6106. characterMakers.push(() => makeCharacter(
  6107. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  6108. {
  6109. front: {
  6110. height: math.unit(6, "feet"),
  6111. weight: math.unit(150, "lbs"),
  6112. name: "Front",
  6113. image: {
  6114. source: "./media/characters/rainier/front.svg"
  6115. }
  6116. }
  6117. },
  6118. [
  6119. {
  6120. name: "Micro",
  6121. height: math.unit(2, "mm"),
  6122. default: true
  6123. }
  6124. ]
  6125. ))
  6126. characterMakers.push(() => makeCharacter(
  6127. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  6128. {
  6129. front: {
  6130. height: math.unit(8 + 4/12, "feet"),
  6131. weight: math.unit(450, "kilograms"),
  6132. volume: math.unit(5, "cups"),
  6133. name: "Front",
  6134. image: {
  6135. source: "./media/characters/andy-renard/front.svg",
  6136. extra: 1839/1726,
  6137. bottom: 134/1973
  6138. }
  6139. },
  6140. back: {
  6141. height: math.unit(8 + 4/12, "feet"),
  6142. weight: math.unit(450, "kilograms"),
  6143. volume: math.unit(5, "cups"),
  6144. name: "Back",
  6145. image: {
  6146. source: "./media/characters/andy-renard/back.svg",
  6147. extra: 1838/1710,
  6148. bottom: 105/1943
  6149. }
  6150. },
  6151. },
  6152. [
  6153. {
  6154. name: "Tall",
  6155. height: math.unit(8 + 4/12, "feet")
  6156. },
  6157. {
  6158. name: "Mini Macro",
  6159. height: math.unit(15, "feet"),
  6160. default: true
  6161. },
  6162. {
  6163. name: "Macro",
  6164. height: math.unit(100, "feet")
  6165. },
  6166. {
  6167. name: "Mega Macro",
  6168. height: math.unit(1000, "feet")
  6169. },
  6170. {
  6171. name: "Giga Macro",
  6172. height: math.unit(10, "miles")
  6173. },
  6174. {
  6175. name: "God Macro",
  6176. height: math.unit(1, "multiverse")
  6177. },
  6178. ]
  6179. ))
  6180. characterMakers.push(() => makeCharacter(
  6181. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  6182. {
  6183. front: {
  6184. height: math.unit(6, "feet"),
  6185. weight: math.unit(210, "lbs"),
  6186. name: "Front",
  6187. image: {
  6188. source: "./media/characters/cimmaron/front-sfw.svg",
  6189. extra: 701 / 676,
  6190. bottom: 0.046
  6191. }
  6192. },
  6193. back: {
  6194. height: math.unit(6, "feet"),
  6195. weight: math.unit(210, "lbs"),
  6196. name: "Back",
  6197. image: {
  6198. source: "./media/characters/cimmaron/back-sfw.svg",
  6199. extra: 701 / 676,
  6200. bottom: 0.046
  6201. }
  6202. },
  6203. frontNsfw: {
  6204. height: math.unit(6, "feet"),
  6205. weight: math.unit(210, "lbs"),
  6206. name: "Front (NSFW)",
  6207. image: {
  6208. source: "./media/characters/cimmaron/front-nsfw.svg",
  6209. extra: 701 / 676,
  6210. bottom: 0.046
  6211. }
  6212. },
  6213. backNsfw: {
  6214. height: math.unit(6, "feet"),
  6215. weight: math.unit(210, "lbs"),
  6216. name: "Back (NSFW)",
  6217. image: {
  6218. source: "./media/characters/cimmaron/back-nsfw.svg",
  6219. extra: 701 / 676,
  6220. bottom: 0.046
  6221. }
  6222. },
  6223. dick: {
  6224. height: math.unit(1.714, "feet"),
  6225. name: "Dick",
  6226. image: {
  6227. source: "./media/characters/cimmaron/dick.svg"
  6228. }
  6229. },
  6230. },
  6231. [
  6232. {
  6233. name: "Normal",
  6234. height: math.unit(6, "feet"),
  6235. default: true
  6236. },
  6237. {
  6238. name: "Macro Mayor",
  6239. height: math.unit(350, "meters")
  6240. },
  6241. ]
  6242. ))
  6243. characterMakers.push(() => makeCharacter(
  6244. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  6245. {
  6246. front: {
  6247. height: math.unit(6, "feet"),
  6248. weight: math.unit(200, "lbs"),
  6249. name: "Front",
  6250. image: {
  6251. source: "./media/characters/akari/front.svg",
  6252. extra: 962 / 901,
  6253. bottom: 0.04
  6254. }
  6255. }
  6256. },
  6257. [
  6258. {
  6259. name: "Micro",
  6260. height: math.unit(5, "inches"),
  6261. default: true
  6262. },
  6263. {
  6264. name: "Normal",
  6265. height: math.unit(7, "feet")
  6266. },
  6267. ]
  6268. ))
  6269. characterMakers.push(() => makeCharacter(
  6270. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  6271. {
  6272. front: {
  6273. height: math.unit(6, "feet"),
  6274. weight: math.unit(140, "lbs"),
  6275. name: "Front",
  6276. image: {
  6277. source: "./media/characters/cynosura/front.svg",
  6278. extra: 896 / 847
  6279. }
  6280. },
  6281. back: {
  6282. height: math.unit(6, "feet"),
  6283. weight: math.unit(140, "lbs"),
  6284. name: "Back",
  6285. image: {
  6286. source: "./media/characters/cynosura/back.svg",
  6287. extra: 1365 / 1250
  6288. }
  6289. },
  6290. },
  6291. [
  6292. {
  6293. name: "Micro",
  6294. height: math.unit(4, "inches")
  6295. },
  6296. {
  6297. name: "Normal",
  6298. height: math.unit(5.75, "feet"),
  6299. default: true
  6300. },
  6301. {
  6302. name: "Tall",
  6303. height: math.unit(10, "feet")
  6304. },
  6305. {
  6306. name: "Big",
  6307. height: math.unit(20, "feet")
  6308. },
  6309. {
  6310. name: "Macro",
  6311. height: math.unit(50, "feet")
  6312. },
  6313. ]
  6314. ))
  6315. characterMakers.push(() => makeCharacter(
  6316. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  6317. {
  6318. front: {
  6319. height: math.unit(13 + 2/12, "feet"),
  6320. weight: math.unit(800, "kg"),
  6321. name: "Front",
  6322. image: {
  6323. source: "./media/characters/gin/front.svg",
  6324. extra: 1312/1191,
  6325. bottom: 45/1357
  6326. }
  6327. },
  6328. mouth: {
  6329. height: math.unit(2.39 * 1.8, "feet"),
  6330. name: "Mouth",
  6331. image: {
  6332. source: "./media/characters/gin/mouth.svg"
  6333. }
  6334. },
  6335. hand: {
  6336. height: math.unit(1.57 * 2.19, "feet"),
  6337. name: "Hand",
  6338. image: {
  6339. source: "./media/characters/gin/hand.svg"
  6340. }
  6341. },
  6342. foot: {
  6343. height: math.unit(6 / 4.25 * 2.19, "feet"),
  6344. name: "Foot",
  6345. image: {
  6346. source: "./media/characters/gin/foot.svg"
  6347. }
  6348. },
  6349. sole: {
  6350. height: math.unit(6 / 4.40 * 2.19, "feet"),
  6351. name: "Sole",
  6352. image: {
  6353. source: "./media/characters/gin/sole.svg"
  6354. }
  6355. },
  6356. },
  6357. [
  6358. {
  6359. name: "Very Small",
  6360. height: math.unit(13 + 2 / 12, "feet")
  6361. },
  6362. {
  6363. name: "Micro",
  6364. height: math.unit(600, "miles")
  6365. },
  6366. {
  6367. name: "Regular",
  6368. height: math.unit(20, "earths"),
  6369. default: true
  6370. },
  6371. {
  6372. name: "Macro",
  6373. height: math.unit(2.2, "solarradii")
  6374. },
  6375. {
  6376. name: "Teramacro",
  6377. height: math.unit(1.2, "galaxies")
  6378. },
  6379. {
  6380. name: "Omegamacro",
  6381. height: math.unit(200, "universes")
  6382. },
  6383. ]
  6384. ))
  6385. characterMakers.push(() => makeCharacter(
  6386. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  6387. {
  6388. front: {
  6389. height: math.unit(6 + 1 / 6, "feet"),
  6390. weight: math.unit(178, "lbs"),
  6391. name: "Front",
  6392. image: {
  6393. source: "./media/characters/guy/front.svg"
  6394. }
  6395. }
  6396. },
  6397. [
  6398. {
  6399. name: "Normal",
  6400. height: math.unit(6 + 1 / 6, "feet"),
  6401. default: true
  6402. },
  6403. {
  6404. name: "Large",
  6405. height: math.unit(25 + 7 / 12, "feet")
  6406. },
  6407. {
  6408. name: "Macro",
  6409. height: math.unit(60 + 9 / 12, "feet")
  6410. },
  6411. {
  6412. name: "Macro+",
  6413. height: math.unit(246, "feet")
  6414. },
  6415. {
  6416. name: "Macro++",
  6417. height: math.unit(878, "feet")
  6418. }
  6419. ]
  6420. ))
  6421. characterMakers.push(() => makeCharacter(
  6422. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  6423. {
  6424. front: {
  6425. height: math.unit(9, "feet"),
  6426. weight: math.unit(800, "lbs"),
  6427. name: "Front",
  6428. image: {
  6429. source: "./media/characters/tiberius/front.svg",
  6430. extra: 2295 / 2071
  6431. }
  6432. },
  6433. back: {
  6434. height: math.unit(9, "feet"),
  6435. weight: math.unit(800, "lbs"),
  6436. name: "Back",
  6437. image: {
  6438. source: "./media/characters/tiberius/back.svg",
  6439. extra: 2373 / 2160
  6440. }
  6441. },
  6442. },
  6443. [
  6444. {
  6445. name: "Normal",
  6446. height: math.unit(9, "feet"),
  6447. default: true
  6448. }
  6449. ]
  6450. ))
  6451. characterMakers.push(() => makeCharacter(
  6452. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  6453. {
  6454. front: {
  6455. height: math.unit(6, "feet"),
  6456. weight: math.unit(600, "lbs"),
  6457. name: "Front",
  6458. image: {
  6459. source: "./media/characters/surgo/front.svg",
  6460. extra: 3591 / 2227
  6461. }
  6462. },
  6463. back: {
  6464. height: math.unit(6, "feet"),
  6465. weight: math.unit(600, "lbs"),
  6466. name: "Back",
  6467. image: {
  6468. source: "./media/characters/surgo/back.svg",
  6469. extra: 3557 / 2228
  6470. }
  6471. },
  6472. laying: {
  6473. height: math.unit(6 * 0.85, "feet"),
  6474. weight: math.unit(600, "lbs"),
  6475. name: "Laying",
  6476. image: {
  6477. source: "./media/characters/surgo/laying.svg"
  6478. }
  6479. },
  6480. },
  6481. [
  6482. {
  6483. name: "Normal",
  6484. height: math.unit(6, "feet"),
  6485. default: true
  6486. }
  6487. ]
  6488. ))
  6489. characterMakers.push(() => makeCharacter(
  6490. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  6491. {
  6492. side: {
  6493. height: math.unit(6, "feet"),
  6494. weight: math.unit(150, "lbs"),
  6495. name: "Side",
  6496. image: {
  6497. source: "./media/characters/cibus/side.svg",
  6498. extra: 800 / 400
  6499. }
  6500. },
  6501. },
  6502. [
  6503. {
  6504. name: "Normal",
  6505. height: math.unit(6, "feet"),
  6506. default: true
  6507. }
  6508. ]
  6509. ))
  6510. characterMakers.push(() => makeCharacter(
  6511. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  6512. {
  6513. front: {
  6514. height: math.unit(6, "feet"),
  6515. weight: math.unit(240, "lbs"),
  6516. name: "Front",
  6517. image: {
  6518. source: "./media/characters/nibbles/front.svg"
  6519. }
  6520. },
  6521. side: {
  6522. height: math.unit(6, "feet"),
  6523. weight: math.unit(240, "lbs"),
  6524. name: "Side",
  6525. image: {
  6526. source: "./media/characters/nibbles/side.svg"
  6527. }
  6528. },
  6529. },
  6530. [
  6531. {
  6532. name: "Normal",
  6533. height: math.unit(9, "feet"),
  6534. default: true
  6535. }
  6536. ]
  6537. ))
  6538. characterMakers.push(() => makeCharacter(
  6539. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  6540. {
  6541. side: {
  6542. height: math.unit(5 + 1 / 6, "feet"),
  6543. weight: math.unit(130, "lbs"),
  6544. name: "Side",
  6545. image: {
  6546. source: "./media/characters/rikky/side.svg",
  6547. extra: 851 / 801
  6548. }
  6549. },
  6550. },
  6551. [
  6552. {
  6553. name: "Normal",
  6554. height: math.unit(5 + 1 / 6, "feet")
  6555. },
  6556. {
  6557. name: "Macro",
  6558. height: math.unit(152, "feet"),
  6559. default: true
  6560. },
  6561. {
  6562. name: "Megamacro",
  6563. height: math.unit(7, "miles")
  6564. }
  6565. ]
  6566. ))
  6567. characterMakers.push(() => makeCharacter(
  6568. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  6569. {
  6570. side: {
  6571. height: math.unit(370, "cm"),
  6572. weight: math.unit(350, "lbs"),
  6573. name: "Side",
  6574. image: {
  6575. source: "./media/characters/malfressa/side.svg"
  6576. }
  6577. },
  6578. walking: {
  6579. height: math.unit(370, "cm"),
  6580. weight: math.unit(350, "lbs"),
  6581. name: "Walking",
  6582. image: {
  6583. source: "./media/characters/malfressa/walking.svg"
  6584. }
  6585. },
  6586. feral: {
  6587. height: math.unit(2500, "cm"),
  6588. weight: math.unit(100000, "lbs"),
  6589. name: "Feral",
  6590. image: {
  6591. source: "./media/characters/malfressa/feral.svg",
  6592. extra: 2108 / 837,
  6593. bottom: 0.02
  6594. }
  6595. },
  6596. },
  6597. [
  6598. {
  6599. name: "Normal",
  6600. height: math.unit(370, "cm")
  6601. },
  6602. {
  6603. name: "Macro",
  6604. height: math.unit(300, "meters"),
  6605. default: true
  6606. }
  6607. ]
  6608. ))
  6609. characterMakers.push(() => makeCharacter(
  6610. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  6611. {
  6612. front: {
  6613. height: math.unit(6, "feet"),
  6614. weight: math.unit(60, "kg"),
  6615. name: "Front",
  6616. image: {
  6617. source: "./media/characters/jaro/front.svg",
  6618. extra: 845/817,
  6619. bottom: 45/890
  6620. }
  6621. },
  6622. back: {
  6623. height: math.unit(6, "feet"),
  6624. weight: math.unit(60, "kg"),
  6625. name: "Back",
  6626. image: {
  6627. source: "./media/characters/jaro/back.svg",
  6628. extra: 847/817,
  6629. bottom: 34/881
  6630. }
  6631. },
  6632. },
  6633. [
  6634. {
  6635. name: "Micro",
  6636. height: math.unit(7, "inches")
  6637. },
  6638. {
  6639. name: "Normal",
  6640. height: math.unit(5.5, "feet"),
  6641. default: true
  6642. },
  6643. {
  6644. name: "Minimacro",
  6645. height: math.unit(20, "feet")
  6646. },
  6647. {
  6648. name: "Macro",
  6649. height: math.unit(200, "meters")
  6650. }
  6651. ]
  6652. ))
  6653. characterMakers.push(() => makeCharacter(
  6654. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  6655. {
  6656. front: {
  6657. height: math.unit(6, "feet"),
  6658. weight: math.unit(195, "lb"),
  6659. name: "Front",
  6660. image: {
  6661. source: "./media/characters/rogue/front.svg"
  6662. }
  6663. },
  6664. },
  6665. [
  6666. {
  6667. name: "Macro",
  6668. height: math.unit(90, "feet"),
  6669. default: true
  6670. },
  6671. ]
  6672. ))
  6673. characterMakers.push(() => makeCharacter(
  6674. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  6675. {
  6676. standing: {
  6677. height: math.unit(5 + 8 / 12, "feet"),
  6678. weight: math.unit(140, "lb"),
  6679. name: "Standing",
  6680. image: {
  6681. source: "./media/characters/piper/standing.svg",
  6682. extra: 1440/1284,
  6683. bottom: 66/1506
  6684. }
  6685. },
  6686. running: {
  6687. height: math.unit(5 + 8 / 12, "feet"),
  6688. weight: math.unit(140, "lb"),
  6689. name: "Running",
  6690. image: {
  6691. source: "./media/characters/piper/running.svg",
  6692. extra: 3948/3655,
  6693. bottom: 0/3948
  6694. }
  6695. },
  6696. sole: {
  6697. height: math.unit(0.81, "feet"),
  6698. weight: math.unit(2, "kg"),
  6699. name: "Sole",
  6700. image: {
  6701. source: "./media/characters/piper/sole.svg"
  6702. }
  6703. },
  6704. nipple: {
  6705. height: math.unit(0.25, "feet"),
  6706. weight: math.unit(1.5, "lb"),
  6707. name: "Nipple",
  6708. image: {
  6709. source: "./media/characters/piper/nipple.svg"
  6710. }
  6711. },
  6712. head: {
  6713. height: math.unit(1.1, "feet"),
  6714. name: "Head",
  6715. image: {
  6716. source: "./media/characters/piper/head.svg"
  6717. }
  6718. },
  6719. },
  6720. [
  6721. {
  6722. name: "Micro",
  6723. height: math.unit(2, "inches")
  6724. },
  6725. {
  6726. name: "Normal",
  6727. height: math.unit(5 + 8 / 12, "feet")
  6728. },
  6729. {
  6730. name: "Macro",
  6731. height: math.unit(250, "feet"),
  6732. default: true
  6733. },
  6734. {
  6735. name: "Megamacro",
  6736. height: math.unit(7, "miles")
  6737. },
  6738. ]
  6739. ))
  6740. characterMakers.push(() => makeCharacter(
  6741. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  6742. {
  6743. front: {
  6744. height: math.unit(6, "feet"),
  6745. weight: math.unit(220, "lb"),
  6746. name: "Front",
  6747. image: {
  6748. source: "./media/characters/gemini/front.svg"
  6749. }
  6750. },
  6751. back: {
  6752. height: math.unit(6, "feet"),
  6753. weight: math.unit(220, "lb"),
  6754. name: "Back",
  6755. image: {
  6756. source: "./media/characters/gemini/back.svg"
  6757. }
  6758. },
  6759. kneeling: {
  6760. height: math.unit(6 / 1.5, "feet"),
  6761. weight: math.unit(220, "lb"),
  6762. name: "Kneeling",
  6763. image: {
  6764. source: "./media/characters/gemini/kneeling.svg",
  6765. bottom: 0.02
  6766. }
  6767. },
  6768. },
  6769. [
  6770. {
  6771. name: "Macro",
  6772. height: math.unit(300, "meters"),
  6773. default: true
  6774. },
  6775. {
  6776. name: "Megamacro",
  6777. height: math.unit(6900, "meters")
  6778. },
  6779. ]
  6780. ))
  6781. characterMakers.push(() => makeCharacter(
  6782. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6783. {
  6784. anthro: {
  6785. height: math.unit(2.35, "meters"),
  6786. weight: math.unit(73, "kg"),
  6787. name: "Anthro",
  6788. image: {
  6789. source: "./media/characters/alicia/anthro.svg",
  6790. extra: 2571 / 2385,
  6791. bottom: 75 / 2648
  6792. }
  6793. },
  6794. paw: {
  6795. height: math.unit(1.32, "feet"),
  6796. name: "Paw",
  6797. image: {
  6798. source: "./media/characters/alicia/paw.svg"
  6799. }
  6800. },
  6801. feral: {
  6802. height: math.unit(1.69, "meters"),
  6803. weight: math.unit(73, "kg"),
  6804. name: "Feral",
  6805. image: {
  6806. source: "./media/characters/alicia/feral.svg",
  6807. extra: 2123 / 1715,
  6808. bottom: 222 / 2349
  6809. }
  6810. },
  6811. },
  6812. [
  6813. {
  6814. name: "Normal",
  6815. height: math.unit(2.35, "meters")
  6816. },
  6817. {
  6818. name: "Macro",
  6819. height: math.unit(60, "meters"),
  6820. default: true
  6821. },
  6822. {
  6823. name: "Megamacro",
  6824. height: math.unit(10000, "kilometers")
  6825. },
  6826. ]
  6827. ))
  6828. characterMakers.push(() => makeCharacter(
  6829. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6830. {
  6831. front: {
  6832. height: math.unit(7, "feet"),
  6833. weight: math.unit(250, "lbs"),
  6834. name: "Front",
  6835. image: {
  6836. source: "./media/characters/archy/front.svg"
  6837. }
  6838. }
  6839. },
  6840. [
  6841. {
  6842. name: "Micro",
  6843. height: math.unit(1, "inch")
  6844. },
  6845. {
  6846. name: "Shorty",
  6847. height: math.unit(5, "feet")
  6848. },
  6849. {
  6850. name: "Normal",
  6851. height: math.unit(7, "feet")
  6852. },
  6853. {
  6854. name: "Macro",
  6855. height: math.unit(600, "meters"),
  6856. default: true
  6857. },
  6858. {
  6859. name: "Megamacro",
  6860. height: math.unit(1, "mile")
  6861. },
  6862. ]
  6863. ))
  6864. characterMakers.push(() => makeCharacter(
  6865. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6866. {
  6867. front: {
  6868. height: math.unit(1.65, "meters"),
  6869. weight: math.unit(74, "kg"),
  6870. name: "Front",
  6871. image: {
  6872. source: "./media/characters/berri/front.svg",
  6873. extra: 857 / 837,
  6874. bottom: 18 / 877
  6875. }
  6876. },
  6877. bum: {
  6878. height: math.unit(1.46, "feet"),
  6879. name: "Bum",
  6880. image: {
  6881. source: "./media/characters/berri/bum.svg"
  6882. }
  6883. },
  6884. mouth: {
  6885. height: math.unit(0.44, "feet"),
  6886. name: "Mouth",
  6887. image: {
  6888. source: "./media/characters/berri/mouth.svg"
  6889. }
  6890. },
  6891. paw: {
  6892. height: math.unit(0.826, "feet"),
  6893. name: "Paw",
  6894. image: {
  6895. source: "./media/characters/berri/paw.svg"
  6896. }
  6897. },
  6898. },
  6899. [
  6900. {
  6901. name: "Normal",
  6902. height: math.unit(1.65, "meters")
  6903. },
  6904. {
  6905. name: "Macro",
  6906. height: math.unit(60, "m"),
  6907. default: true
  6908. },
  6909. {
  6910. name: "Megamacro",
  6911. height: math.unit(9.213, "km")
  6912. },
  6913. {
  6914. name: "Planet Eater",
  6915. height: math.unit(489, "megameters")
  6916. },
  6917. {
  6918. name: "Teramacro",
  6919. height: math.unit(2471635000000, "meters")
  6920. },
  6921. {
  6922. name: "Examacro",
  6923. height: math.unit(8.0624e+26, "meters")
  6924. }
  6925. ]
  6926. ))
  6927. characterMakers.push(() => makeCharacter(
  6928. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  6929. {
  6930. front: {
  6931. height: math.unit(1.72, "meters"),
  6932. weight: math.unit(68, "kg"),
  6933. name: "Front",
  6934. image: {
  6935. source: "./media/characters/lexi/front.svg"
  6936. }
  6937. }
  6938. },
  6939. [
  6940. {
  6941. name: "Very Smol",
  6942. height: math.unit(10, "mm")
  6943. },
  6944. {
  6945. name: "Micro",
  6946. height: math.unit(6.8, "cm"),
  6947. default: true
  6948. },
  6949. {
  6950. name: "Normal",
  6951. height: math.unit(1.72, "m")
  6952. }
  6953. ]
  6954. ))
  6955. characterMakers.push(() => makeCharacter(
  6956. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  6957. {
  6958. front: {
  6959. height: math.unit(1.69, "meters"),
  6960. weight: math.unit(68, "kg"),
  6961. name: "Front",
  6962. image: {
  6963. source: "./media/characters/martin/front.svg",
  6964. extra: 596 / 581
  6965. }
  6966. }
  6967. },
  6968. [
  6969. {
  6970. name: "Micro",
  6971. height: math.unit(6.85, "cm"),
  6972. default: true
  6973. },
  6974. {
  6975. name: "Normal",
  6976. height: math.unit(1.69, "m")
  6977. }
  6978. ]
  6979. ))
  6980. characterMakers.push(() => makeCharacter(
  6981. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6982. {
  6983. front: {
  6984. height: math.unit(1.69, "meters"),
  6985. weight: math.unit(68, "kg"),
  6986. name: "Front",
  6987. image: {
  6988. source: "./media/characters/juno/front.svg"
  6989. }
  6990. }
  6991. },
  6992. [
  6993. {
  6994. name: "Micro",
  6995. height: math.unit(7, "cm")
  6996. },
  6997. {
  6998. name: "Normal",
  6999. height: math.unit(1.89, "m")
  7000. },
  7001. {
  7002. name: "Macro",
  7003. height: math.unit(353, "meters"),
  7004. default: true
  7005. }
  7006. ]
  7007. ))
  7008. characterMakers.push(() => makeCharacter(
  7009. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  7010. {
  7011. front: {
  7012. height: math.unit(1.93, "meters"),
  7013. weight: math.unit(83, "kg"),
  7014. name: "Front",
  7015. image: {
  7016. source: "./media/characters/samantha/front.svg"
  7017. }
  7018. },
  7019. frontClothed: {
  7020. height: math.unit(1.93, "meters"),
  7021. weight: math.unit(83, "kg"),
  7022. name: "Front (Clothed)",
  7023. image: {
  7024. source: "./media/characters/samantha/front-clothed.svg"
  7025. }
  7026. },
  7027. back: {
  7028. height: math.unit(1.93, "meters"),
  7029. weight: math.unit(83, "kg"),
  7030. name: "Back",
  7031. image: {
  7032. source: "./media/characters/samantha/back.svg"
  7033. }
  7034. },
  7035. },
  7036. [
  7037. {
  7038. name: "Normal",
  7039. height: math.unit(1.93, "m")
  7040. },
  7041. {
  7042. name: "Macro",
  7043. height: math.unit(74, "meters"),
  7044. default: true
  7045. },
  7046. {
  7047. name: "Macro+",
  7048. height: math.unit(223, "meters"),
  7049. },
  7050. {
  7051. name: "Megamacro",
  7052. height: math.unit(8381, "meters"),
  7053. },
  7054. {
  7055. name: "Megamacro+",
  7056. height: math.unit(12000, "kilometers")
  7057. },
  7058. ]
  7059. ))
  7060. characterMakers.push(() => makeCharacter(
  7061. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  7062. {
  7063. front: {
  7064. height: math.unit(1.92, "meters"),
  7065. weight: math.unit(80, "kg"),
  7066. name: "Front",
  7067. image: {
  7068. source: "./media/characters/dr-clay/front.svg"
  7069. }
  7070. },
  7071. frontClothed: {
  7072. height: math.unit(1.92, "meters"),
  7073. weight: math.unit(80, "kg"),
  7074. name: "Front (Clothed)",
  7075. image: {
  7076. source: "./media/characters/dr-clay/front-clothed.svg"
  7077. }
  7078. }
  7079. },
  7080. [
  7081. {
  7082. name: "Normal",
  7083. height: math.unit(1.92, "m")
  7084. },
  7085. {
  7086. name: "Macro",
  7087. height: math.unit(214, "meters"),
  7088. default: true
  7089. },
  7090. {
  7091. name: "Macro+",
  7092. height: math.unit(12.237, "meters"),
  7093. },
  7094. {
  7095. name: "Megamacro",
  7096. height: math.unit(557, "megameters"),
  7097. },
  7098. {
  7099. name: "Unimaginable",
  7100. height: math.unit(120e9, "lightyears")
  7101. },
  7102. ]
  7103. ))
  7104. characterMakers.push(() => makeCharacter(
  7105. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  7106. {
  7107. front: {
  7108. height: math.unit(2, "meters"),
  7109. weight: math.unit(80, "kg"),
  7110. name: "Front",
  7111. image: {
  7112. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  7113. }
  7114. }
  7115. },
  7116. [
  7117. {
  7118. name: "Teramacro",
  7119. height: math.unit(500000, "lightyears"),
  7120. default: true
  7121. },
  7122. ]
  7123. ))
  7124. characterMakers.push(() => makeCharacter(
  7125. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  7126. {
  7127. crux: {
  7128. height: math.unit(2, "meters"),
  7129. weight: math.unit(150, "kg"),
  7130. name: "Crux",
  7131. image: {
  7132. source: "./media/characters/vemus/crux.svg",
  7133. extra: 1074/936,
  7134. bottom: 23/1097
  7135. }
  7136. },
  7137. skunkTanuki: {
  7138. height: math.unit(2, "meters"),
  7139. weight: math.unit(150, "kg"),
  7140. name: "Skunk-Tanuki",
  7141. image: {
  7142. source: "./media/characters/vemus/skunk-tanuki.svg",
  7143. extra: 926/893,
  7144. bottom: 20/946
  7145. }
  7146. },
  7147. },
  7148. [
  7149. {
  7150. name: "Normal",
  7151. height: math.unit(3.75, "meters"),
  7152. default: true
  7153. },
  7154. {
  7155. name: "Big",
  7156. height: math.unit(8, "meters")
  7157. },
  7158. {
  7159. name: "Macro",
  7160. height: math.unit(100, "meters")
  7161. },
  7162. {
  7163. name: "Macro+",
  7164. height: math.unit(1500, "meters")
  7165. },
  7166. {
  7167. name: "Stellar",
  7168. height: math.unit(14e8, "meters")
  7169. },
  7170. ]
  7171. ))
  7172. characterMakers.push(() => makeCharacter(
  7173. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  7174. {
  7175. front: {
  7176. height: math.unit(2, "meters"),
  7177. weight: math.unit(70, "kg"),
  7178. name: "Front",
  7179. image: {
  7180. source: "./media/characters/beherit/front.svg",
  7181. extra: 1234/1109,
  7182. bottom: 55/1289
  7183. }
  7184. }
  7185. },
  7186. [
  7187. {
  7188. name: "Normal",
  7189. height: math.unit(6, "feet")
  7190. },
  7191. {
  7192. name: "Lorg",
  7193. height: math.unit(25, "feet"),
  7194. default: true
  7195. },
  7196. {
  7197. name: "Lorger",
  7198. height: math.unit(75, "feet")
  7199. },
  7200. {
  7201. name: "Macro",
  7202. height: math.unit(200, "meters")
  7203. },
  7204. ]
  7205. ))
  7206. characterMakers.push(() => makeCharacter(
  7207. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  7208. {
  7209. front: {
  7210. height: math.unit(2, "meters"),
  7211. weight: math.unit(150, "kg"),
  7212. name: "Front",
  7213. image: {
  7214. source: "./media/characters/everett/front.svg",
  7215. extra: 1017/866,
  7216. bottom: 86/1103
  7217. }
  7218. },
  7219. paw: {
  7220. height: math.unit(2 / 3.6, "meters"),
  7221. name: "Paw",
  7222. image: {
  7223. source: "./media/characters/everett/paw.svg"
  7224. }
  7225. },
  7226. },
  7227. [
  7228. {
  7229. name: "Normal",
  7230. height: math.unit(15, "feet"),
  7231. default: true
  7232. },
  7233. {
  7234. name: "Lorg",
  7235. height: math.unit(70, "feet"),
  7236. default: true
  7237. },
  7238. {
  7239. name: "Lorger",
  7240. height: math.unit(250, "feet")
  7241. },
  7242. {
  7243. name: "Macro",
  7244. height: math.unit(500, "meters")
  7245. },
  7246. ]
  7247. ))
  7248. characterMakers.push(() => makeCharacter(
  7249. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  7250. {
  7251. front: {
  7252. height: math.unit(2, "meters"),
  7253. weight: math.unit(86, "kg"),
  7254. name: "Front",
  7255. image: {
  7256. source: "./media/characters/rose/front.svg",
  7257. extra: 1785/1636,
  7258. bottom: 30/1815
  7259. },
  7260. form: "liom",
  7261. default: true
  7262. },
  7263. frontSporty: {
  7264. height: math.unit(2, "meters"),
  7265. weight: math.unit(86, "kg"),
  7266. name: "Front (Sporty)",
  7267. image: {
  7268. source: "./media/characters/rose/front-sporty.svg",
  7269. extra: 350/335,
  7270. bottom: 10/360
  7271. },
  7272. form: "liom"
  7273. },
  7274. frontAlt: {
  7275. height: math.unit(1.6, "meters"),
  7276. weight: math.unit(86, "kg"),
  7277. name: "Front (Alt)",
  7278. image: {
  7279. source: "./media/characters/rose/front-alt.svg",
  7280. extra: 299/283,
  7281. bottom: 3/302
  7282. },
  7283. form: "liom"
  7284. },
  7285. plush: {
  7286. height: math.unit(2, "meters"),
  7287. weight: math.unit(86/3, "kg"),
  7288. name: "Plush",
  7289. image: {
  7290. source: "./media/characters/rose/plush.svg",
  7291. extra: 361/337,
  7292. bottom: 11/372
  7293. },
  7294. form: "plush",
  7295. default: true
  7296. },
  7297. faeStanding: {
  7298. height: math.unit(10, "cm"),
  7299. weight: math.unit(10, "grams"),
  7300. name: "Standing",
  7301. image: {
  7302. source: "./media/characters/rose/fae-standing.svg",
  7303. extra: 1189/1060,
  7304. bottom: 27/1216
  7305. },
  7306. form: "fae",
  7307. default: true
  7308. },
  7309. faeSitting: {
  7310. height: math.unit(5, "cm"),
  7311. weight: math.unit(10, "grams"),
  7312. name: "Sitting",
  7313. image: {
  7314. source: "./media/characters/rose/fae-sitting.svg",
  7315. extra: 737/577,
  7316. bottom: 356/1093
  7317. },
  7318. form: "fae"
  7319. },
  7320. faePaw: {
  7321. height: math.unit(1.35, "cm"),
  7322. name: "Paw",
  7323. image: {
  7324. source: "./media/characters/rose/fae-paw.svg"
  7325. },
  7326. form: "fae"
  7327. },
  7328. },
  7329. [
  7330. {
  7331. name: "True Micro",
  7332. height: math.unit(9, "cm"),
  7333. form: "liom"
  7334. },
  7335. {
  7336. name: "Micro",
  7337. height: math.unit(16, "cm"),
  7338. form: "liom"
  7339. },
  7340. {
  7341. name: "Normal",
  7342. height: math.unit(1.85, "meters"),
  7343. default: true,
  7344. form: "liom"
  7345. },
  7346. {
  7347. name: "Mini-Macro",
  7348. height: math.unit(5, "meters"),
  7349. form: "liom"
  7350. },
  7351. {
  7352. name: "Macro",
  7353. height: math.unit(15, "meters"),
  7354. form: "liom"
  7355. },
  7356. {
  7357. name: "True Macro",
  7358. height: math.unit(40, "meters"),
  7359. form: "liom"
  7360. },
  7361. {
  7362. name: "City Scale",
  7363. height: math.unit(1, "km"),
  7364. form: "liom"
  7365. },
  7366. {
  7367. name: "Plushie",
  7368. height: math.unit(9, "cm"),
  7369. form: "plush",
  7370. default: true
  7371. },
  7372. {
  7373. name: "Fae",
  7374. height: math.unit(10, "cm"),
  7375. form: "fae",
  7376. default: true
  7377. },
  7378. ],
  7379. {
  7380. "liom": {
  7381. name: "Liom"
  7382. },
  7383. "plush": {
  7384. name: "Plush"
  7385. },
  7386. "fae": {
  7387. name: "Fae Fox",
  7388. default: true
  7389. }
  7390. }
  7391. ))
  7392. characterMakers.push(() => makeCharacter(
  7393. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  7394. {
  7395. front: {
  7396. height: math.unit(2, "meters"),
  7397. weight: math.unit(350, "lbs"),
  7398. name: "Front",
  7399. image: {
  7400. source: "./media/characters/regal/front.svg"
  7401. }
  7402. },
  7403. back: {
  7404. height: math.unit(2, "meters"),
  7405. weight: math.unit(350, "lbs"),
  7406. name: "Back",
  7407. image: {
  7408. source: "./media/characters/regal/back.svg"
  7409. }
  7410. },
  7411. },
  7412. [
  7413. {
  7414. name: "Macro",
  7415. height: math.unit(350, "feet"),
  7416. default: true
  7417. }
  7418. ]
  7419. ))
  7420. characterMakers.push(() => makeCharacter(
  7421. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  7422. {
  7423. front: {
  7424. height: math.unit(4 + 11 / 12, "feet"),
  7425. weight: math.unit(100, "lbs"),
  7426. name: "Front",
  7427. image: {
  7428. source: "./media/characters/opal/front.svg"
  7429. }
  7430. },
  7431. frontAlt: {
  7432. height: math.unit(4 + 11 / 12, "feet"),
  7433. weight: math.unit(100, "lbs"),
  7434. name: "Front (Alt)",
  7435. image: {
  7436. source: "./media/characters/opal/front-alt.svg"
  7437. }
  7438. },
  7439. },
  7440. [
  7441. {
  7442. name: "Small",
  7443. height: math.unit(4 + 11 / 12, "feet")
  7444. },
  7445. {
  7446. name: "Normal",
  7447. height: math.unit(20, "feet"),
  7448. default: true
  7449. },
  7450. {
  7451. name: "Macro",
  7452. height: math.unit(120, "feet")
  7453. },
  7454. {
  7455. name: "Megamacro",
  7456. height: math.unit(80, "miles")
  7457. },
  7458. {
  7459. name: "True Size",
  7460. height: math.unit(100000, "lightyears")
  7461. },
  7462. ]
  7463. ))
  7464. characterMakers.push(() => makeCharacter(
  7465. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  7466. {
  7467. front: {
  7468. height: math.unit(6, "feet"),
  7469. weight: math.unit(200, "lbs"),
  7470. name: "Front",
  7471. image: {
  7472. source: "./media/characters/vector-wuff/front.svg"
  7473. }
  7474. }
  7475. },
  7476. [
  7477. {
  7478. name: "Normal",
  7479. height: math.unit(2.8, "meters")
  7480. },
  7481. {
  7482. name: "Macro",
  7483. height: math.unit(450, "meters"),
  7484. default: true
  7485. },
  7486. {
  7487. name: "Megamacro",
  7488. height: math.unit(15, "kilometers")
  7489. }
  7490. ]
  7491. ))
  7492. characterMakers.push(() => makeCharacter(
  7493. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  7494. {
  7495. front: {
  7496. height: math.unit(6, "feet"),
  7497. weight: math.unit(256, "lbs"),
  7498. name: "Front",
  7499. image: {
  7500. source: "./media/characters/dannik/front.svg"
  7501. }
  7502. }
  7503. },
  7504. [
  7505. {
  7506. name: "Macro",
  7507. height: math.unit(69.57, "meters"),
  7508. default: true
  7509. },
  7510. ]
  7511. ))
  7512. characterMakers.push(() => makeCharacter(
  7513. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  7514. {
  7515. front: {
  7516. height: math.unit(6, "feet"),
  7517. weight: math.unit(120, "lbs"),
  7518. name: "Front",
  7519. image: {
  7520. source: "./media/characters/azura-saharah/front.svg"
  7521. }
  7522. },
  7523. back: {
  7524. height: math.unit(6, "feet"),
  7525. weight: math.unit(120, "lbs"),
  7526. name: "Back",
  7527. image: {
  7528. source: "./media/characters/azura-saharah/back.svg"
  7529. }
  7530. },
  7531. },
  7532. [
  7533. {
  7534. name: "Macro",
  7535. height: math.unit(100, "feet"),
  7536. default: true
  7537. },
  7538. ]
  7539. ))
  7540. characterMakers.push(() => makeCharacter(
  7541. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  7542. {
  7543. side: {
  7544. height: math.unit(5 + 4 / 12, "feet"),
  7545. weight: math.unit(163, "lbs"),
  7546. name: "Side",
  7547. image: {
  7548. source: "./media/characters/kennedy/side.svg"
  7549. }
  7550. }
  7551. },
  7552. [
  7553. {
  7554. name: "Standard Doggo",
  7555. height: math.unit(5 + 4 / 12, "feet")
  7556. },
  7557. {
  7558. name: "Big Doggo",
  7559. height: math.unit(25 + 3 / 12, "feet"),
  7560. default: true
  7561. },
  7562. ]
  7563. ))
  7564. characterMakers.push(() => makeCharacter(
  7565. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  7566. {
  7567. front: {
  7568. height: math.unit(5 + 5/12, "feet"),
  7569. weight: math.unit(100, "lbs"),
  7570. name: "Front",
  7571. image: {
  7572. source: "./media/characters/odios-de-lunar/front.svg",
  7573. extra: 1468/1323,
  7574. bottom: 22/1490
  7575. }
  7576. }
  7577. },
  7578. [
  7579. {
  7580. name: "Micro",
  7581. height: math.unit(3, "inches")
  7582. },
  7583. {
  7584. name: "Normal",
  7585. height: math.unit(5.5, "feet"),
  7586. default: true
  7587. },
  7588. {
  7589. name: "Macro",
  7590. height: math.unit(100, "feet")
  7591. },
  7592. ]
  7593. ))
  7594. characterMakers.push(() => makeCharacter(
  7595. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  7596. {
  7597. back: {
  7598. height: math.unit(6, "feet"),
  7599. weight: math.unit(220, "lbs"),
  7600. name: "Back",
  7601. image: {
  7602. source: "./media/characters/mandake/back.svg"
  7603. }
  7604. }
  7605. },
  7606. [
  7607. {
  7608. name: "Normal",
  7609. height: math.unit(7, "feet"),
  7610. default: true
  7611. },
  7612. {
  7613. name: "Macro",
  7614. height: math.unit(78, "feet")
  7615. },
  7616. {
  7617. name: "Macro+",
  7618. height: math.unit(300, "meters")
  7619. },
  7620. {
  7621. name: "Macro++",
  7622. height: math.unit(2400, "feet")
  7623. },
  7624. {
  7625. name: "Megamacro",
  7626. height: math.unit(5167, "meters")
  7627. },
  7628. {
  7629. name: "Gigamacro",
  7630. height: math.unit(41769, "miles")
  7631. },
  7632. ]
  7633. ))
  7634. characterMakers.push(() => makeCharacter(
  7635. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  7636. {
  7637. front: {
  7638. height: math.unit(6, "feet"),
  7639. weight: math.unit(120, "lbs"),
  7640. name: "Front",
  7641. image: {
  7642. source: "./media/characters/yozey/front.svg"
  7643. }
  7644. },
  7645. frontAlt: {
  7646. height: math.unit(6, "feet"),
  7647. weight: math.unit(120, "lbs"),
  7648. name: "Front (Alt)",
  7649. image: {
  7650. source: "./media/characters/yozey/front-alt.svg"
  7651. }
  7652. },
  7653. side: {
  7654. height: math.unit(6, "feet"),
  7655. weight: math.unit(120, "lbs"),
  7656. name: "Side",
  7657. image: {
  7658. source: "./media/characters/yozey/side.svg"
  7659. }
  7660. },
  7661. },
  7662. [
  7663. {
  7664. name: "Micro",
  7665. height: math.unit(3, "inches"),
  7666. default: true
  7667. },
  7668. {
  7669. name: "Normal",
  7670. height: math.unit(6, "feet")
  7671. }
  7672. ]
  7673. ))
  7674. characterMakers.push(() => makeCharacter(
  7675. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  7676. {
  7677. front: {
  7678. height: math.unit(6, "feet"),
  7679. weight: math.unit(103, "lbs"),
  7680. name: "Front",
  7681. image: {
  7682. source: "./media/characters/valeska-voss/front.svg"
  7683. }
  7684. }
  7685. },
  7686. [
  7687. {
  7688. name: "Mini-Sized Sub",
  7689. height: math.unit(3.1, "inches")
  7690. },
  7691. {
  7692. name: "Mid-Sized Sub",
  7693. height: math.unit(6.2, "inches")
  7694. },
  7695. {
  7696. name: "Full-Sized Sub",
  7697. height: math.unit(9.3, "inches")
  7698. },
  7699. {
  7700. name: "Normal",
  7701. height: math.unit(5 + 2 / 12, "foot"),
  7702. default: true
  7703. },
  7704. ]
  7705. ))
  7706. characterMakers.push(() => makeCharacter(
  7707. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  7708. {
  7709. front: {
  7710. height: math.unit(6, "feet"),
  7711. weight: math.unit(160, "lbs"),
  7712. name: "Front",
  7713. image: {
  7714. source: "./media/characters/gene-zeta/front.svg",
  7715. extra: 3006 / 2826,
  7716. bottom: 182 / 3188
  7717. }
  7718. }
  7719. },
  7720. [
  7721. {
  7722. name: "Micro",
  7723. height: math.unit(6, "inches")
  7724. },
  7725. {
  7726. name: "Normal",
  7727. height: math.unit(5 + 11 / 12, "foot"),
  7728. default: true
  7729. },
  7730. {
  7731. name: "Macro",
  7732. height: math.unit(140, "feet")
  7733. },
  7734. {
  7735. name: "Supercharged",
  7736. height: math.unit(2500, "feet")
  7737. },
  7738. ]
  7739. ))
  7740. characterMakers.push(() => makeCharacter(
  7741. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  7742. {
  7743. front: {
  7744. height: math.unit(6, "feet"),
  7745. weight: math.unit(350, "lbs"),
  7746. name: "Front",
  7747. image: {
  7748. source: "./media/characters/razinox/front.svg",
  7749. extra: 1686 / 1548,
  7750. bottom: 28.2 / 1868
  7751. }
  7752. },
  7753. back: {
  7754. height: math.unit(6, "feet"),
  7755. weight: math.unit(350, "lbs"),
  7756. name: "Back",
  7757. image: {
  7758. source: "./media/characters/razinox/back.svg",
  7759. extra: 1660 / 1590,
  7760. bottom: 15 / 1665
  7761. }
  7762. },
  7763. },
  7764. [
  7765. {
  7766. name: "Normal",
  7767. height: math.unit(10 + 8 / 12, "foot")
  7768. },
  7769. {
  7770. name: "Minimacro",
  7771. height: math.unit(15, "foot")
  7772. },
  7773. {
  7774. name: "Macro",
  7775. height: math.unit(60, "foot"),
  7776. default: true
  7777. },
  7778. {
  7779. name: "Megamacro",
  7780. height: math.unit(5, "miles")
  7781. },
  7782. {
  7783. name: "Gigamacro",
  7784. height: math.unit(6000, "miles")
  7785. },
  7786. ]
  7787. ))
  7788. characterMakers.push(() => makeCharacter(
  7789. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  7790. {
  7791. front: {
  7792. height: math.unit(6, "feet"),
  7793. weight: math.unit(150, "lbs"),
  7794. name: "Front",
  7795. image: {
  7796. source: "./media/characters/cobalt/front.svg"
  7797. }
  7798. }
  7799. },
  7800. [
  7801. {
  7802. name: "Normal",
  7803. height: math.unit(8 + 1 / 12, "foot")
  7804. },
  7805. {
  7806. name: "Macro",
  7807. height: math.unit(111, "foot"),
  7808. default: true
  7809. },
  7810. {
  7811. name: "Supracosmic",
  7812. height: math.unit(1e42, "feet")
  7813. },
  7814. ]
  7815. ))
  7816. characterMakers.push(() => makeCharacter(
  7817. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  7818. {
  7819. front: {
  7820. height: math.unit(5, "inches"),
  7821. name: "Front",
  7822. image: {
  7823. source: "./media/characters/amanda/front.svg",
  7824. extra: 926/791,
  7825. bottom: 38/964
  7826. }
  7827. },
  7828. back: {
  7829. height: math.unit(5, "inches"),
  7830. name: "Back",
  7831. image: {
  7832. source: "./media/characters/amanda/back.svg",
  7833. extra: 909/805,
  7834. bottom: 43/952
  7835. }
  7836. },
  7837. },
  7838. [
  7839. {
  7840. name: "Micro",
  7841. height: math.unit(5, "inches"),
  7842. default: true
  7843. },
  7844. ]
  7845. ))
  7846. characterMakers.push(() => makeCharacter(
  7847. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  7848. {
  7849. front: {
  7850. height: math.unit(2.75, "meters"),
  7851. weight: math.unit(1200, "lb"),
  7852. name: "Front",
  7853. image: {
  7854. source: "./media/characters/teal/front.svg",
  7855. extra: 2463 / 2320,
  7856. bottom: 166 / 2629
  7857. }
  7858. },
  7859. back: {
  7860. height: math.unit(2.75, "meters"),
  7861. weight: math.unit(1200, "lb"),
  7862. name: "Back",
  7863. image: {
  7864. source: "./media/characters/teal/back.svg",
  7865. extra: 2580 / 2489,
  7866. bottom: 151 / 2731
  7867. }
  7868. },
  7869. sitting: {
  7870. height: math.unit(1.9, "meters"),
  7871. weight: math.unit(1200, "lb"),
  7872. name: "Sitting",
  7873. image: {
  7874. source: "./media/characters/teal/sitting.svg",
  7875. extra: 623 / 590,
  7876. bottom: 121 / 744
  7877. }
  7878. },
  7879. standing: {
  7880. height: math.unit(2.75, "meters"),
  7881. weight: math.unit(1200, "lb"),
  7882. name: "Standing",
  7883. image: {
  7884. source: "./media/characters/teal/standing.svg",
  7885. extra: 923 / 893,
  7886. bottom: 60 / 983
  7887. }
  7888. },
  7889. stretching: {
  7890. height: math.unit(3.65, "meters"),
  7891. weight: math.unit(1200, "lb"),
  7892. name: "Stretching",
  7893. image: {
  7894. source: "./media/characters/teal/stretching.svg",
  7895. extra: 1276 / 1244,
  7896. bottom: 0 / 1276
  7897. }
  7898. },
  7899. legged: {
  7900. height: math.unit(1.3, "meters"),
  7901. weight: math.unit(100, "lb"),
  7902. name: "Legged",
  7903. image: {
  7904. source: "./media/characters/teal/legged.svg",
  7905. extra: 462 / 437,
  7906. bottom: 24 / 486
  7907. }
  7908. },
  7909. naga: {
  7910. height: math.unit(5.4, "meters"),
  7911. weight: math.unit(4000, "lb"),
  7912. name: "Naga",
  7913. image: {
  7914. source: "./media/characters/teal/naga.svg",
  7915. extra: 1902 / 1858,
  7916. bottom: 0 / 1902
  7917. }
  7918. },
  7919. hand: {
  7920. height: math.unit(0.52, "meters"),
  7921. name: "Hand",
  7922. image: {
  7923. source: "./media/characters/teal/hand.svg"
  7924. }
  7925. },
  7926. maw: {
  7927. height: math.unit(0.43, "meters"),
  7928. name: "Maw",
  7929. image: {
  7930. source: "./media/characters/teal/maw.svg"
  7931. }
  7932. },
  7933. slit: {
  7934. height: math.unit(0.25, "meters"),
  7935. name: "Slit",
  7936. image: {
  7937. source: "./media/characters/teal/slit.svg"
  7938. }
  7939. },
  7940. },
  7941. [
  7942. {
  7943. name: "Normal",
  7944. height: math.unit(2.75, "meters"),
  7945. default: true
  7946. },
  7947. {
  7948. name: "Macro",
  7949. height: math.unit(300, "feet")
  7950. },
  7951. {
  7952. name: "Macro+",
  7953. height: math.unit(2000, "feet")
  7954. },
  7955. ]
  7956. ))
  7957. characterMakers.push(() => makeCharacter(
  7958. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  7959. {
  7960. frontCat: {
  7961. height: math.unit(6, "feet"),
  7962. weight: math.unit(180, "lbs"),
  7963. name: "Front (Cat)",
  7964. image: {
  7965. source: "./media/characters/ravin-amulet/front-cat.svg"
  7966. }
  7967. },
  7968. frontCatAlt: {
  7969. height: math.unit(6, "feet"),
  7970. weight: math.unit(180, "lbs"),
  7971. name: "Front (Alt, Cat)",
  7972. image: {
  7973. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  7974. }
  7975. },
  7976. frontWerewolf: {
  7977. height: math.unit(6 * 1.2, "feet"),
  7978. weight: math.unit(225, "lbs"),
  7979. name: "Front (Werewolf)",
  7980. image: {
  7981. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  7982. }
  7983. },
  7984. backWerewolf: {
  7985. height: math.unit(6 * 1.2, "feet"),
  7986. weight: math.unit(225, "lbs"),
  7987. name: "Back (Werewolf)",
  7988. image: {
  7989. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  7990. }
  7991. },
  7992. },
  7993. [
  7994. {
  7995. name: "Nano",
  7996. height: math.unit(1, "micrometer")
  7997. },
  7998. {
  7999. name: "Micro",
  8000. height: math.unit(1, "inch")
  8001. },
  8002. {
  8003. name: "Normal",
  8004. height: math.unit(6, "feet"),
  8005. default: true
  8006. },
  8007. {
  8008. name: "Macro",
  8009. height: math.unit(60, "feet")
  8010. }
  8011. ]
  8012. ))
  8013. characterMakers.push(() => makeCharacter(
  8014. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  8015. {
  8016. front: {
  8017. height: math.unit(6, "feet"),
  8018. weight: math.unit(165, "lbs"),
  8019. name: "Front",
  8020. image: {
  8021. source: "./media/characters/fluoresce/front.svg"
  8022. }
  8023. }
  8024. },
  8025. [
  8026. {
  8027. name: "Micro",
  8028. height: math.unit(6, "cm")
  8029. },
  8030. {
  8031. name: "Normal",
  8032. height: math.unit(5 + 7 / 12, "feet"),
  8033. default: true
  8034. },
  8035. {
  8036. name: "Macro",
  8037. height: math.unit(56, "feet")
  8038. },
  8039. {
  8040. name: "Megamacro",
  8041. height: math.unit(1.9, "miles")
  8042. },
  8043. ]
  8044. ))
  8045. characterMakers.push(() => makeCharacter(
  8046. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  8047. {
  8048. front: {
  8049. height: math.unit(9 + 6 / 12, "feet"),
  8050. weight: math.unit(523, "lbs"),
  8051. name: "Side",
  8052. image: {
  8053. source: "./media/characters/aurora/side.svg"
  8054. }
  8055. }
  8056. },
  8057. [
  8058. {
  8059. name: "Normal",
  8060. height: math.unit(9 + 6 / 12, "feet")
  8061. },
  8062. {
  8063. name: "Macro",
  8064. height: math.unit(96, "feet"),
  8065. default: true
  8066. },
  8067. {
  8068. name: "Macro+",
  8069. height: math.unit(243, "feet")
  8070. },
  8071. ]
  8072. ))
  8073. characterMakers.push(() => makeCharacter(
  8074. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  8075. {
  8076. front: {
  8077. height: math.unit(194, "cm"),
  8078. weight: math.unit(90, "kg"),
  8079. name: "Front",
  8080. image: {
  8081. source: "./media/characters/ranek/front.svg",
  8082. extra: 1862/1791,
  8083. bottom: 80/1942
  8084. }
  8085. },
  8086. back: {
  8087. height: math.unit(194, "cm"),
  8088. weight: math.unit(90, "kg"),
  8089. name: "Back",
  8090. image: {
  8091. source: "./media/characters/ranek/back.svg",
  8092. extra: 1853/1787,
  8093. bottom: 74/1927
  8094. }
  8095. },
  8096. feral: {
  8097. height: math.unit(30, "cm"),
  8098. weight: math.unit(1.6, "lbs"),
  8099. name: "Feral",
  8100. image: {
  8101. source: "./media/characters/ranek/feral.svg",
  8102. extra: 990/631,
  8103. bottom: 29/1019
  8104. }
  8105. },
  8106. },
  8107. [
  8108. {
  8109. name: "Normal",
  8110. height: math.unit(194, "cm"),
  8111. default: true
  8112. },
  8113. {
  8114. name: "Macro",
  8115. height: math.unit(100, "meters")
  8116. },
  8117. ]
  8118. ))
  8119. characterMakers.push(() => makeCharacter(
  8120. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  8121. {
  8122. front: {
  8123. height: math.unit(5 + 6 / 12, "feet"),
  8124. weight: math.unit(153, "lbs"),
  8125. name: "Front",
  8126. image: {
  8127. source: "./media/characters/andrew-cooper/front.svg"
  8128. }
  8129. },
  8130. },
  8131. [
  8132. {
  8133. name: "Nano",
  8134. height: math.unit(1, "mm")
  8135. },
  8136. {
  8137. name: "Micro",
  8138. height: math.unit(2, "inches")
  8139. },
  8140. {
  8141. name: "Normal",
  8142. height: math.unit(5 + 6 / 12, "feet"),
  8143. default: true
  8144. }
  8145. ]
  8146. ))
  8147. characterMakers.push(() => makeCharacter(
  8148. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  8149. {
  8150. front: {
  8151. height: math.unit(6, "feet"),
  8152. weight: math.unit(180, "lbs"),
  8153. name: "Front",
  8154. image: {
  8155. source: "./media/characters/akane-sato/front.svg",
  8156. extra: 1219 / 1140
  8157. }
  8158. },
  8159. back: {
  8160. height: math.unit(6, "feet"),
  8161. weight: math.unit(180, "lbs"),
  8162. name: "Back",
  8163. image: {
  8164. source: "./media/characters/akane-sato/back.svg",
  8165. extra: 1219 / 1170
  8166. }
  8167. },
  8168. },
  8169. [
  8170. {
  8171. name: "Normal",
  8172. height: math.unit(2.5, "meters")
  8173. },
  8174. {
  8175. name: "Macro",
  8176. height: math.unit(250, "meters"),
  8177. default: true
  8178. },
  8179. {
  8180. name: "Megamacro",
  8181. height: math.unit(25, "km")
  8182. },
  8183. ]
  8184. ))
  8185. characterMakers.push(() => makeCharacter(
  8186. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  8187. {
  8188. front: {
  8189. height: math.unit(6, "feet"),
  8190. weight: math.unit(65, "kg"),
  8191. name: "Front",
  8192. image: {
  8193. source: "./media/characters/rook/front.svg",
  8194. extra: 960 / 950
  8195. }
  8196. }
  8197. },
  8198. [
  8199. {
  8200. name: "Normal",
  8201. height: math.unit(8.8, "feet")
  8202. },
  8203. {
  8204. name: "Macro",
  8205. height: math.unit(88, "feet"),
  8206. default: true
  8207. },
  8208. {
  8209. name: "Megamacro",
  8210. height: math.unit(8, "miles")
  8211. },
  8212. ]
  8213. ))
  8214. characterMakers.push(() => makeCharacter(
  8215. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  8216. {
  8217. front: {
  8218. height: math.unit(12 + 2 / 12, "feet"),
  8219. weight: math.unit(808, "lbs"),
  8220. name: "Front",
  8221. image: {
  8222. source: "./media/characters/prodigy/front.svg"
  8223. }
  8224. }
  8225. },
  8226. [
  8227. {
  8228. name: "Normal",
  8229. height: math.unit(12 + 2 / 12, "feet"),
  8230. default: true
  8231. },
  8232. {
  8233. name: "Macro",
  8234. height: math.unit(143, "feet")
  8235. },
  8236. {
  8237. name: "Macro+",
  8238. height: math.unit(400, "feet")
  8239. },
  8240. ]
  8241. ))
  8242. characterMakers.push(() => makeCharacter(
  8243. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  8244. {
  8245. front: {
  8246. height: math.unit(6, "feet"),
  8247. weight: math.unit(225, "lbs"),
  8248. name: "Front",
  8249. image: {
  8250. source: "./media/characters/daniel/front.svg"
  8251. }
  8252. },
  8253. leaning: {
  8254. height: math.unit(6, "feet"),
  8255. weight: math.unit(225, "lbs"),
  8256. name: "Leaning",
  8257. image: {
  8258. source: "./media/characters/daniel/leaning.svg"
  8259. }
  8260. },
  8261. },
  8262. [
  8263. {
  8264. name: "Macro",
  8265. height: math.unit(1000, "feet"),
  8266. default: true
  8267. },
  8268. ]
  8269. ))
  8270. characterMakers.push(() => makeCharacter(
  8271. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  8272. {
  8273. front: {
  8274. height: math.unit(6, "feet"),
  8275. weight: math.unit(88, "lbs"),
  8276. name: "Front",
  8277. image: {
  8278. source: "./media/characters/chiros/front.svg",
  8279. extra: 306 / 226
  8280. }
  8281. },
  8282. side: {
  8283. height: math.unit(6, "feet"),
  8284. weight: math.unit(88, "lbs"),
  8285. name: "Side",
  8286. image: {
  8287. source: "./media/characters/chiros/side.svg",
  8288. extra: 306 / 226
  8289. }
  8290. },
  8291. },
  8292. [
  8293. {
  8294. name: "Normal",
  8295. height: math.unit(6, "cm"),
  8296. default: true
  8297. },
  8298. ]
  8299. ))
  8300. characterMakers.push(() => makeCharacter(
  8301. { name: "Selka", species: ["snake"], tags: ["naga"] },
  8302. {
  8303. front: {
  8304. height: math.unit(6, "feet"),
  8305. weight: math.unit(100, "lbs"),
  8306. name: "Front",
  8307. image: {
  8308. source: "./media/characters/selka/front.svg",
  8309. extra: 947 / 887
  8310. }
  8311. }
  8312. },
  8313. [
  8314. {
  8315. name: "Normal",
  8316. height: math.unit(5, "cm"),
  8317. default: true
  8318. },
  8319. ]
  8320. ))
  8321. characterMakers.push(() => makeCharacter(
  8322. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  8323. {
  8324. front: {
  8325. height: math.unit(8 + 3 / 12, "feet"),
  8326. weight: math.unit(424, "lbs"),
  8327. name: "Front",
  8328. image: {
  8329. source: "./media/characters/verin/front.svg",
  8330. extra: 1845 / 1550
  8331. }
  8332. },
  8333. frontArmored: {
  8334. height: math.unit(8 + 3 / 12, "feet"),
  8335. weight: math.unit(424, "lbs"),
  8336. name: "Front (Armored)",
  8337. image: {
  8338. source: "./media/characters/verin/front-armor.svg",
  8339. extra: 1845 / 1550,
  8340. bottom: 0.01
  8341. }
  8342. },
  8343. back: {
  8344. height: math.unit(8 + 3 / 12, "feet"),
  8345. weight: math.unit(424, "lbs"),
  8346. name: "Back",
  8347. image: {
  8348. source: "./media/characters/verin/back.svg",
  8349. bottom: 0.1,
  8350. extra: 1
  8351. }
  8352. },
  8353. foot: {
  8354. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  8355. name: "Foot",
  8356. image: {
  8357. source: "./media/characters/verin/foot.svg"
  8358. }
  8359. },
  8360. },
  8361. [
  8362. {
  8363. name: "Normal",
  8364. height: math.unit(8 + 3 / 12, "feet")
  8365. },
  8366. {
  8367. name: "Minimacro",
  8368. height: math.unit(21, "feet"),
  8369. default: true
  8370. },
  8371. {
  8372. name: "Macro",
  8373. height: math.unit(626, "feet")
  8374. },
  8375. ]
  8376. ))
  8377. characterMakers.push(() => makeCharacter(
  8378. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  8379. {
  8380. front: {
  8381. height: math.unit(2.718, "meters"),
  8382. weight: math.unit(150, "lbs"),
  8383. name: "Front",
  8384. image: {
  8385. source: "./media/characters/sovrim-terraquian/front.svg",
  8386. extra: 1752/1689,
  8387. bottom: 36/1788
  8388. }
  8389. },
  8390. back: {
  8391. height: math.unit(2.718, "meters"),
  8392. weight: math.unit(150, "lbs"),
  8393. name: "Back",
  8394. image: {
  8395. source: "./media/characters/sovrim-terraquian/back.svg",
  8396. extra: 1698/1657,
  8397. bottom: 58/1756
  8398. }
  8399. },
  8400. tongue: {
  8401. height: math.unit(2.865, "feet"),
  8402. name: "Tongue",
  8403. image: {
  8404. source: "./media/characters/sovrim-terraquian/tongue.svg"
  8405. }
  8406. },
  8407. hand: {
  8408. height: math.unit(1.61, "feet"),
  8409. name: "Hand",
  8410. image: {
  8411. source: "./media/characters/sovrim-terraquian/hand.svg"
  8412. }
  8413. },
  8414. foot: {
  8415. height: math.unit(1.05, "feet"),
  8416. name: "Foot",
  8417. image: {
  8418. source: "./media/characters/sovrim-terraquian/foot.svg"
  8419. }
  8420. },
  8421. footAlt: {
  8422. height: math.unit(0.88, "feet"),
  8423. name: "Foot (Alt)",
  8424. image: {
  8425. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  8426. }
  8427. },
  8428. },
  8429. [
  8430. {
  8431. name: "Micro",
  8432. height: math.unit(2, "inches")
  8433. },
  8434. {
  8435. name: "Small",
  8436. height: math.unit(1, "meter")
  8437. },
  8438. {
  8439. name: "Normal",
  8440. height: math.unit(Math.E, "meters"),
  8441. default: true
  8442. },
  8443. {
  8444. name: "Macro",
  8445. height: math.unit(20, "meters")
  8446. },
  8447. {
  8448. name: "Macro+",
  8449. height: math.unit(400, "meters")
  8450. },
  8451. ]
  8452. ))
  8453. characterMakers.push(() => makeCharacter(
  8454. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  8455. {
  8456. front: {
  8457. height: math.unit(7, "feet"),
  8458. weight: math.unit(489, "lbs"),
  8459. name: "Front",
  8460. image: {
  8461. source: "./media/characters/reece-silvermane/front.svg",
  8462. bottom: 0.02,
  8463. extra: 1
  8464. }
  8465. },
  8466. },
  8467. [
  8468. {
  8469. name: "Macro",
  8470. height: math.unit(1.5, "miles"),
  8471. default: true
  8472. },
  8473. ]
  8474. ))
  8475. characterMakers.push(() => makeCharacter(
  8476. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  8477. {
  8478. front: {
  8479. height: math.unit(6, "feet"),
  8480. weight: math.unit(78, "kg"),
  8481. name: "Front",
  8482. image: {
  8483. source: "./media/characters/kane/front.svg",
  8484. extra: 978 / 899
  8485. }
  8486. },
  8487. },
  8488. [
  8489. {
  8490. name: "Normal",
  8491. height: math.unit(2.1, "m"),
  8492. },
  8493. {
  8494. name: "Macro",
  8495. height: math.unit(1, "km"),
  8496. default: true
  8497. },
  8498. ]
  8499. ))
  8500. characterMakers.push(() => makeCharacter(
  8501. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  8502. {
  8503. front: {
  8504. height: math.unit(6, "feet"),
  8505. weight: math.unit(200, "kg"),
  8506. name: "Front",
  8507. image: {
  8508. source: "./media/characters/tegon/front.svg",
  8509. bottom: 0.01,
  8510. extra: 1
  8511. }
  8512. },
  8513. },
  8514. [
  8515. {
  8516. name: "Micro",
  8517. height: math.unit(1, "inch")
  8518. },
  8519. {
  8520. name: "Normal",
  8521. height: math.unit(6 + 3 / 12, "feet"),
  8522. default: true
  8523. },
  8524. {
  8525. name: "Macro",
  8526. height: math.unit(300, "feet")
  8527. },
  8528. {
  8529. name: "Megamacro",
  8530. height: math.unit(69, "miles")
  8531. },
  8532. ]
  8533. ))
  8534. characterMakers.push(() => makeCharacter(
  8535. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  8536. {
  8537. side: {
  8538. height: math.unit(6, "feet"),
  8539. weight: math.unit(2304, "lbs"),
  8540. name: "Side",
  8541. image: {
  8542. source: "./media/characters/arcturax/side.svg",
  8543. extra: 790 / 376,
  8544. bottom: 0.01
  8545. }
  8546. },
  8547. },
  8548. [
  8549. {
  8550. name: "Micro",
  8551. height: math.unit(2, "inch")
  8552. },
  8553. {
  8554. name: "Normal",
  8555. height: math.unit(6, "feet")
  8556. },
  8557. {
  8558. name: "Macro",
  8559. height: math.unit(39, "feet"),
  8560. default: true
  8561. },
  8562. {
  8563. name: "Megamacro",
  8564. height: math.unit(7, "miles")
  8565. },
  8566. ]
  8567. ))
  8568. characterMakers.push(() => makeCharacter(
  8569. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  8570. {
  8571. front: {
  8572. height: math.unit(6, "feet"),
  8573. weight: math.unit(50, "lbs"),
  8574. name: "Front",
  8575. image: {
  8576. source: "./media/characters/sentri/front.svg",
  8577. extra: 1750 / 1570,
  8578. bottom: 0.025
  8579. }
  8580. },
  8581. frontAlt: {
  8582. height: math.unit(6, "feet"),
  8583. weight: math.unit(50, "lbs"),
  8584. name: "Front (Alt)",
  8585. image: {
  8586. source: "./media/characters/sentri/front-alt.svg",
  8587. extra: 1750 / 1570,
  8588. bottom: 0.025
  8589. }
  8590. },
  8591. },
  8592. [
  8593. {
  8594. name: "Normal",
  8595. height: math.unit(15, "feet"),
  8596. default: true
  8597. },
  8598. {
  8599. name: "Macro",
  8600. height: math.unit(2500, "feet")
  8601. }
  8602. ]
  8603. ))
  8604. characterMakers.push(() => makeCharacter(
  8605. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  8606. {
  8607. front: {
  8608. height: math.unit(5 + 8 / 12, "feet"),
  8609. weight: math.unit(130, "lbs"),
  8610. name: "Front",
  8611. image: {
  8612. source: "./media/characters/corvin/front.svg",
  8613. extra: 1803 / 1629
  8614. }
  8615. },
  8616. frontShirt: {
  8617. height: math.unit(5 + 8 / 12, "feet"),
  8618. weight: math.unit(130, "lbs"),
  8619. name: "Front (Shirt)",
  8620. image: {
  8621. source: "./media/characters/corvin/front-shirt.svg",
  8622. extra: 1803 / 1629
  8623. }
  8624. },
  8625. frontPoncho: {
  8626. height: math.unit(5 + 8 / 12, "feet"),
  8627. weight: math.unit(130, "lbs"),
  8628. name: "Front (Poncho)",
  8629. image: {
  8630. source: "./media/characters/corvin/front-poncho.svg",
  8631. extra: 1803 / 1629
  8632. }
  8633. },
  8634. side: {
  8635. height: math.unit(5 + 8 / 12, "feet"),
  8636. weight: math.unit(130, "lbs"),
  8637. name: "Side",
  8638. image: {
  8639. source: "./media/characters/corvin/side.svg",
  8640. extra: 1012 / 945
  8641. }
  8642. },
  8643. back: {
  8644. height: math.unit(5 + 8 / 12, "feet"),
  8645. weight: math.unit(130, "lbs"),
  8646. name: "Back",
  8647. image: {
  8648. source: "./media/characters/corvin/back.svg",
  8649. extra: 1803 / 1629
  8650. }
  8651. },
  8652. },
  8653. [
  8654. {
  8655. name: "Micro",
  8656. height: math.unit(3, "inches")
  8657. },
  8658. {
  8659. name: "Normal",
  8660. height: math.unit(5 + 8 / 12, "feet")
  8661. },
  8662. {
  8663. name: "Macro",
  8664. height: math.unit(300, "feet"),
  8665. default: true
  8666. },
  8667. {
  8668. name: "Megamacro",
  8669. height: math.unit(500, "miles")
  8670. }
  8671. ]
  8672. ))
  8673. characterMakers.push(() => makeCharacter(
  8674. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  8675. {
  8676. front: {
  8677. height: math.unit(6, "feet"),
  8678. weight: math.unit(135, "lbs"),
  8679. name: "Front",
  8680. image: {
  8681. source: "./media/characters/q/front.svg",
  8682. extra: 854 / 752,
  8683. bottom: 0.005
  8684. }
  8685. },
  8686. back: {
  8687. height: math.unit(6, "feet"),
  8688. weight: math.unit(130, "lbs"),
  8689. name: "Back",
  8690. image: {
  8691. source: "./media/characters/q/back.svg",
  8692. extra: 854 / 752
  8693. }
  8694. },
  8695. },
  8696. [
  8697. {
  8698. name: "Macro",
  8699. height: math.unit(90, "feet"),
  8700. default: true
  8701. },
  8702. {
  8703. name: "Extra Macro",
  8704. height: math.unit(300, "feet"),
  8705. },
  8706. {
  8707. name: "BIG WALF",
  8708. height: math.unit(750, "feet"),
  8709. },
  8710. ]
  8711. ))
  8712. characterMakers.push(() => makeCharacter(
  8713. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  8714. {
  8715. front: {
  8716. height: math.unit(6, "feet"),
  8717. weight: math.unit(150, "lbs"),
  8718. name: "Front",
  8719. image: {
  8720. source: "./media/characters/carley/front.svg",
  8721. extra: 3927 / 3540,
  8722. bottom: 29.2 / 735
  8723. }
  8724. }
  8725. },
  8726. [
  8727. {
  8728. name: "Normal",
  8729. height: math.unit(6 + 3 / 12, "feet")
  8730. },
  8731. {
  8732. name: "Macro",
  8733. height: math.unit(185, "feet"),
  8734. default: true
  8735. },
  8736. {
  8737. name: "Megamacro",
  8738. height: math.unit(8, "miles"),
  8739. },
  8740. ]
  8741. ))
  8742. characterMakers.push(() => makeCharacter(
  8743. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  8744. {
  8745. front: {
  8746. height: math.unit(3, "feet"),
  8747. weight: math.unit(28, "lbs"),
  8748. name: "Front",
  8749. image: {
  8750. source: "./media/characters/citrine/front.svg"
  8751. }
  8752. }
  8753. },
  8754. [
  8755. {
  8756. name: "Normal",
  8757. height: math.unit(3, "feet"),
  8758. default: true
  8759. }
  8760. ]
  8761. ))
  8762. characterMakers.push(() => makeCharacter(
  8763. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  8764. {
  8765. front: {
  8766. height: math.unit(14, "feet"),
  8767. weight: math.unit(1450, "kg"),
  8768. preyCapacity: math.unit(15, "people"),
  8769. name: "Front",
  8770. image: {
  8771. source: "./media/characters/aura-starwind/front.svg",
  8772. extra: 1440/1327,
  8773. bottom: 11/1451
  8774. }
  8775. },
  8776. side: {
  8777. height: math.unit(14, "feet"),
  8778. weight: math.unit(1450, "kg"),
  8779. preyCapacity: math.unit(15, "people"),
  8780. name: "Side",
  8781. image: {
  8782. source: "./media/characters/aura-starwind/side.svg",
  8783. extra: 1654 / 1497
  8784. }
  8785. },
  8786. taur: {
  8787. height: math.unit(18, "feet"),
  8788. weight: math.unit(5500, "kg"),
  8789. preyCapacity: math.unit(50, "people"),
  8790. name: "Taur",
  8791. image: {
  8792. source: "./media/characters/aura-starwind/taur.svg",
  8793. extra: 1760 / 1650
  8794. }
  8795. },
  8796. feral: {
  8797. height: math.unit(46, "feet"),
  8798. weight: math.unit(25000, "kg"),
  8799. preyCapacity: math.unit(120, "people"),
  8800. name: "Feral",
  8801. image: {
  8802. source: "./media/characters/aura-starwind/feral.svg"
  8803. }
  8804. },
  8805. },
  8806. [
  8807. {
  8808. name: "Normal",
  8809. height: math.unit(14, "feet"),
  8810. default: true
  8811. },
  8812. {
  8813. name: "Macro",
  8814. height: math.unit(50, "meters")
  8815. },
  8816. {
  8817. name: "Megamacro",
  8818. height: math.unit(5000, "meters")
  8819. },
  8820. {
  8821. name: "Gigamacro",
  8822. height: math.unit(100000, "kilometers")
  8823. },
  8824. ]
  8825. ))
  8826. characterMakers.push(() => makeCharacter(
  8827. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  8828. {
  8829. front: {
  8830. height: math.unit(2 + 7 / 12, "feet"),
  8831. weight: math.unit(32, "lbs"),
  8832. name: "Front",
  8833. image: {
  8834. source: "./media/characters/rivet/front.svg",
  8835. extra: 1716 / 1658,
  8836. bottom: 0.03
  8837. }
  8838. },
  8839. foot: {
  8840. height: math.unit(0.551, "feet"),
  8841. name: "Rivet's Foot",
  8842. image: {
  8843. source: "./media/characters/rivet/foot.svg"
  8844. },
  8845. rename: true
  8846. }
  8847. },
  8848. [
  8849. {
  8850. name: "Micro",
  8851. height: math.unit(1.5, "inches"),
  8852. },
  8853. {
  8854. name: "Normal",
  8855. height: math.unit(2 + 7 / 12, "feet"),
  8856. default: true
  8857. },
  8858. {
  8859. name: "Macro",
  8860. height: math.unit(85, "feet")
  8861. },
  8862. {
  8863. name: "Megamacro",
  8864. height: math.unit(2.2, "km")
  8865. }
  8866. ]
  8867. ))
  8868. characterMakers.push(() => makeCharacter(
  8869. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  8870. {
  8871. front: {
  8872. height: math.unit(5 + 9 / 12, "feet"),
  8873. weight: math.unit(150, "lbs"),
  8874. name: "Front",
  8875. image: {
  8876. source: "./media/characters/coffee/front.svg",
  8877. extra: 3666 / 3032,
  8878. bottom: 0.04
  8879. }
  8880. },
  8881. foot: {
  8882. height: math.unit(1.29, "feet"),
  8883. name: "Foot",
  8884. image: {
  8885. source: "./media/characters/coffee/foot.svg"
  8886. }
  8887. },
  8888. },
  8889. [
  8890. {
  8891. name: "Micro",
  8892. height: math.unit(2, "inches"),
  8893. },
  8894. {
  8895. name: "Normal",
  8896. height: math.unit(5 + 9 / 12, "feet"),
  8897. default: true
  8898. },
  8899. {
  8900. name: "Macro",
  8901. height: math.unit(800, "feet")
  8902. },
  8903. {
  8904. name: "Megamacro",
  8905. height: math.unit(25, "miles")
  8906. }
  8907. ]
  8908. ))
  8909. characterMakers.push(() => makeCharacter(
  8910. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  8911. {
  8912. front: {
  8913. height: math.unit(6, "feet"),
  8914. weight: math.unit(200, "lbs"),
  8915. name: "Front",
  8916. image: {
  8917. source: "./media/characters/chari-gal/front.svg",
  8918. extra: 1568 / 1385,
  8919. bottom: 0.047
  8920. }
  8921. },
  8922. gigantamax: {
  8923. height: math.unit(6 * 16, "feet"),
  8924. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  8925. name: "Gigantamax",
  8926. image: {
  8927. source: "./media/characters/chari-gal/gigantamax.svg",
  8928. extra: 1124 / 888,
  8929. bottom: 0.03
  8930. }
  8931. },
  8932. },
  8933. [
  8934. {
  8935. name: "Normal",
  8936. height: math.unit(5 + 7 / 12, "feet")
  8937. },
  8938. {
  8939. name: "Macro",
  8940. height: math.unit(200, "feet"),
  8941. default: true
  8942. }
  8943. ]
  8944. ))
  8945. characterMakers.push(() => makeCharacter(
  8946. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  8947. {
  8948. front: {
  8949. height: math.unit(6, "feet"),
  8950. weight: math.unit(150, "lbs"),
  8951. name: "Front",
  8952. image: {
  8953. source: "./media/characters/nova/front.svg",
  8954. extra: 5000 / 4722,
  8955. bottom: 0.02
  8956. }
  8957. }
  8958. },
  8959. [
  8960. {
  8961. name: "Micro-",
  8962. height: math.unit(0.8, "inches")
  8963. },
  8964. {
  8965. name: "Micro",
  8966. height: math.unit(2, "inches"),
  8967. default: true
  8968. },
  8969. ]
  8970. ))
  8971. characterMakers.push(() => makeCharacter(
  8972. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  8973. {
  8974. front: {
  8975. height: math.unit(3 + 1 / 12, "feet"),
  8976. weight: math.unit(21.7, "lbs"),
  8977. name: "Front",
  8978. image: {
  8979. source: "./media/characters/argent/front.svg",
  8980. extra: 1471 / 1331,
  8981. bottom: 100.8 / 1575.5
  8982. }
  8983. }
  8984. },
  8985. [
  8986. {
  8987. name: "Micro",
  8988. height: math.unit(2, "inches")
  8989. },
  8990. {
  8991. name: "Normal",
  8992. height: math.unit(3 + 1 / 12, "feet"),
  8993. default: true
  8994. },
  8995. {
  8996. name: "Macro",
  8997. height: math.unit(120, "feet")
  8998. },
  8999. ]
  9000. ))
  9001. characterMakers.push(() => makeCharacter(
  9002. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  9003. {
  9004. lamp: {
  9005. height: math.unit(7 * 1559 / 989, "feet"),
  9006. name: "Magic Lamp",
  9007. image: {
  9008. source: "./media/characters/mira-al-cul/lamp.svg",
  9009. extra: 1617 / 1559
  9010. }
  9011. },
  9012. front: {
  9013. height: math.unit(7, "feet"),
  9014. name: "Front",
  9015. image: {
  9016. source: "./media/characters/mira-al-cul/front.svg",
  9017. extra: 1044 / 990
  9018. }
  9019. },
  9020. },
  9021. [
  9022. {
  9023. name: "Heavily Restricted",
  9024. height: math.unit(7 * 1559 / 989, "feet")
  9025. },
  9026. {
  9027. name: "Freshly Freed",
  9028. height: math.unit(50 * 1559 / 989, "feet")
  9029. },
  9030. {
  9031. name: "World Encompassing",
  9032. height: math.unit(10000 * 1559 / 989, "miles")
  9033. },
  9034. {
  9035. name: "Galactic",
  9036. height: math.unit(1.433 * 1559 / 989, "zettameters")
  9037. },
  9038. {
  9039. name: "Palmed Universe",
  9040. height: math.unit(6000 * 1559 / 989, "yottameters"),
  9041. default: true
  9042. },
  9043. {
  9044. name: "Multiversal Matriarch",
  9045. height: math.unit(8.87e10, "yottameters")
  9046. },
  9047. {
  9048. name: "Void Mother",
  9049. height: math.unit(3.14e110, "yottaparsecs")
  9050. },
  9051. {
  9052. name: "Toying with Transcendence",
  9053. height: math.unit(1e307, "meters")
  9054. },
  9055. ]
  9056. ))
  9057. characterMakers.push(() => makeCharacter(
  9058. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  9059. {
  9060. front: {
  9061. height: math.unit(17 + 1 / 12, "feet"),
  9062. weight: math.unit(476.2 * 5, "lbs"),
  9063. name: "Front",
  9064. image: {
  9065. source: "./media/characters/kuro-shi-uchū/front.svg",
  9066. extra: 2329 / 1835,
  9067. bottom: 0.02
  9068. }
  9069. },
  9070. },
  9071. [
  9072. {
  9073. name: "Micro",
  9074. height: math.unit(2, "inches")
  9075. },
  9076. {
  9077. name: "Normal",
  9078. height: math.unit(12, "meters")
  9079. },
  9080. {
  9081. name: "Planetary",
  9082. height: math.unit(0.00929, "AU"),
  9083. default: true
  9084. },
  9085. {
  9086. name: "Universal",
  9087. height: math.unit(20, "gigaparsecs")
  9088. },
  9089. ]
  9090. ))
  9091. characterMakers.push(() => makeCharacter(
  9092. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  9093. {
  9094. front: {
  9095. height: math.unit(5 + 2 / 12, "feet"),
  9096. weight: math.unit(120, "lbs"),
  9097. name: "Front",
  9098. image: {
  9099. source: "./media/characters/katherine/front.svg",
  9100. extra: 2075 / 1969
  9101. }
  9102. },
  9103. dress: {
  9104. height: math.unit(5 + 2 / 12, "feet"),
  9105. weight: math.unit(120, "lbs"),
  9106. name: "Dress",
  9107. image: {
  9108. source: "./media/characters/katherine/dress.svg",
  9109. extra: 2258 / 2064
  9110. }
  9111. },
  9112. },
  9113. [
  9114. {
  9115. name: "Micro",
  9116. height: math.unit(1, "inches"),
  9117. default: true
  9118. },
  9119. {
  9120. name: "Normal",
  9121. height: math.unit(5 + 2 / 12, "feet")
  9122. },
  9123. {
  9124. name: "Macro",
  9125. height: math.unit(100, "meters")
  9126. },
  9127. {
  9128. name: "Megamacro",
  9129. height: math.unit(80, "miles")
  9130. },
  9131. ]
  9132. ))
  9133. characterMakers.push(() => makeCharacter(
  9134. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  9135. {
  9136. front: {
  9137. height: math.unit(7 + 8 / 12, "feet"),
  9138. weight: math.unit(250, "lbs"),
  9139. name: "Front",
  9140. image: {
  9141. source: "./media/characters/yevis/front.svg",
  9142. extra: 1938 / 1755
  9143. }
  9144. }
  9145. },
  9146. [
  9147. {
  9148. name: "Mortal",
  9149. height: math.unit(7 + 8 / 12, "feet")
  9150. },
  9151. {
  9152. name: "Battle",
  9153. height: math.unit(25 + 11 / 12, "feet")
  9154. },
  9155. {
  9156. name: "Wrath",
  9157. height: math.unit(1654 + 11 / 12, "feet")
  9158. },
  9159. {
  9160. name: "Planet Destroyer",
  9161. height: math.unit(12000, "miles")
  9162. },
  9163. {
  9164. name: "Galaxy Conqueror",
  9165. height: math.unit(1.45, "zettameters"),
  9166. default: true
  9167. },
  9168. {
  9169. name: "Universal War",
  9170. height: math.unit(184, "gigaparsecs")
  9171. },
  9172. {
  9173. name: "Eternity War",
  9174. height: math.unit(1.98e55, "yottaparsecs")
  9175. },
  9176. ]
  9177. ))
  9178. characterMakers.push(() => makeCharacter(
  9179. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  9180. {
  9181. front: {
  9182. height: math.unit(5 + 8 / 12, "feet"),
  9183. weight: math.unit(63, "kg"),
  9184. name: "Front",
  9185. image: {
  9186. source: "./media/characters/xavier/front.svg",
  9187. extra: 944 / 883
  9188. }
  9189. },
  9190. frontStretch: {
  9191. height: math.unit(5 + 8 / 12, "feet"),
  9192. weight: math.unit(63, "kg"),
  9193. name: "Stretching",
  9194. image: {
  9195. source: "./media/characters/xavier/front-stretch.svg",
  9196. extra: 962 / 820
  9197. }
  9198. },
  9199. },
  9200. [
  9201. {
  9202. name: "Normal",
  9203. height: math.unit(5 + 8 / 12, "feet")
  9204. },
  9205. {
  9206. name: "Macro",
  9207. height: math.unit(100, "meters"),
  9208. default: true
  9209. },
  9210. {
  9211. name: "McLargeHuge",
  9212. height: math.unit(10, "miles")
  9213. },
  9214. ]
  9215. ))
  9216. characterMakers.push(() => makeCharacter(
  9217. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  9218. {
  9219. front: {
  9220. height: math.unit(5 + 5 / 12, "feet"),
  9221. weight: math.unit(150, "lb"),
  9222. name: "Front",
  9223. image: {
  9224. source: "./media/characters/joshii/front.svg",
  9225. extra: 765 / 653,
  9226. bottom: 51 / 816
  9227. }
  9228. },
  9229. foot: {
  9230. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  9231. name: "Foot",
  9232. image: {
  9233. source: "./media/characters/joshii/foot.svg"
  9234. }
  9235. },
  9236. },
  9237. [
  9238. {
  9239. name: "Micro",
  9240. height: math.unit(2, "inches"),
  9241. default: true
  9242. },
  9243. {
  9244. name: "Normal",
  9245. height: math.unit(5 + 5 / 12, "feet")
  9246. },
  9247. {
  9248. name: "Macro",
  9249. height: math.unit(785, "feet")
  9250. },
  9251. {
  9252. name: "Megamacro",
  9253. height: math.unit(24.5, "miles")
  9254. },
  9255. ]
  9256. ))
  9257. characterMakers.push(() => makeCharacter(
  9258. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  9259. {
  9260. front: {
  9261. height: math.unit(6, "feet"),
  9262. weight: math.unit(150, "lb"),
  9263. name: "Front",
  9264. image: {
  9265. source: "./media/characters/goddess-elizabeth/front.svg",
  9266. extra: 1800 / 1525,
  9267. bottom: 0.005
  9268. }
  9269. },
  9270. foot: {
  9271. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  9272. name: "Foot",
  9273. image: {
  9274. source: "./media/characters/goddess-elizabeth/foot.svg"
  9275. }
  9276. },
  9277. mouth: {
  9278. height: math.unit(6, "feet"),
  9279. name: "Mouth",
  9280. image: {
  9281. source: "./media/characters/goddess-elizabeth/mouth.svg"
  9282. }
  9283. },
  9284. },
  9285. [
  9286. {
  9287. name: "Micro",
  9288. height: math.unit(12, "feet")
  9289. },
  9290. {
  9291. name: "Normal",
  9292. height: math.unit(80, "miles"),
  9293. default: true
  9294. },
  9295. {
  9296. name: "Macro",
  9297. height: math.unit(15000, "parsecs")
  9298. },
  9299. ]
  9300. ))
  9301. characterMakers.push(() => makeCharacter(
  9302. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  9303. {
  9304. front: {
  9305. height: math.unit(5 + 9 / 12, "feet"),
  9306. weight: math.unit(144, "lb"),
  9307. name: "Front",
  9308. image: {
  9309. source: "./media/characters/kara/front.svg"
  9310. }
  9311. },
  9312. feet: {
  9313. height: math.unit(6 / 6.765, "feet"),
  9314. name: "Kara's Feet",
  9315. rename: true,
  9316. image: {
  9317. source: "./media/characters/kara/feet.svg"
  9318. }
  9319. },
  9320. },
  9321. [
  9322. {
  9323. name: "Normal",
  9324. height: math.unit(5 + 9 / 12, "feet")
  9325. },
  9326. {
  9327. name: "Macro",
  9328. height: math.unit(174, "feet"),
  9329. default: true
  9330. },
  9331. ]
  9332. ))
  9333. characterMakers.push(() => makeCharacter(
  9334. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  9335. {
  9336. front: {
  9337. height: math.unit(18, "feet"),
  9338. weight: math.unit(4050, "lb"),
  9339. name: "Front",
  9340. image: {
  9341. source: "./media/characters/tyrone/front.svg",
  9342. extra: 2405 / 2270,
  9343. bottom: 182 / 2587
  9344. }
  9345. },
  9346. },
  9347. [
  9348. {
  9349. name: "Normal",
  9350. height: math.unit(18, "feet"),
  9351. default: true
  9352. },
  9353. {
  9354. name: "Macro",
  9355. height: math.unit(300, "feet")
  9356. },
  9357. {
  9358. name: "Megamacro",
  9359. height: math.unit(15, "km")
  9360. },
  9361. {
  9362. name: "Gigamacro",
  9363. height: math.unit(500, "km")
  9364. },
  9365. {
  9366. name: "Teramacro",
  9367. height: math.unit(0.5, "gigameters")
  9368. },
  9369. {
  9370. name: "Omnimacro",
  9371. height: math.unit(1e252, "yottauniverse")
  9372. },
  9373. ]
  9374. ))
  9375. characterMakers.push(() => makeCharacter(
  9376. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  9377. {
  9378. front: {
  9379. height: math.unit(7 + 8 / 12, "feet"),
  9380. weight: math.unit(120, "lb"),
  9381. name: "Front",
  9382. image: {
  9383. source: "./media/characters/danny/front.svg",
  9384. extra: 1490 / 1350
  9385. }
  9386. },
  9387. back: {
  9388. height: math.unit(7 + 8 / 12, "feet"),
  9389. weight: math.unit(120, "lb"),
  9390. name: "Back",
  9391. image: {
  9392. source: "./media/characters/danny/back.svg",
  9393. extra: 1490 / 1350
  9394. }
  9395. },
  9396. },
  9397. [
  9398. {
  9399. name: "Normal",
  9400. height: math.unit(7 + 8 / 12, "feet"),
  9401. default: true
  9402. },
  9403. ]
  9404. ))
  9405. characterMakers.push(() => makeCharacter(
  9406. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  9407. {
  9408. front: {
  9409. height: math.unit(3.5, "inches"),
  9410. weight: math.unit(19, "grams"),
  9411. name: "Front",
  9412. image: {
  9413. source: "./media/characters/mallow/front.svg",
  9414. extra: 471 / 431
  9415. }
  9416. },
  9417. back: {
  9418. height: math.unit(3.5, "inches"),
  9419. weight: math.unit(19, "grams"),
  9420. name: "Back",
  9421. image: {
  9422. source: "./media/characters/mallow/back.svg",
  9423. extra: 471 / 431
  9424. }
  9425. },
  9426. },
  9427. [
  9428. {
  9429. name: "Normal",
  9430. height: math.unit(3.5, "inches"),
  9431. default: true
  9432. },
  9433. ]
  9434. ))
  9435. characterMakers.push(() => makeCharacter(
  9436. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  9437. {
  9438. front: {
  9439. height: math.unit(9, "feet"),
  9440. weight: math.unit(230, "kg"),
  9441. name: "Front",
  9442. image: {
  9443. source: "./media/characters/starry-aqua/front.svg"
  9444. }
  9445. },
  9446. back: {
  9447. height: math.unit(9, "feet"),
  9448. weight: math.unit(230, "kg"),
  9449. name: "Back",
  9450. image: {
  9451. source: "./media/characters/starry-aqua/back.svg"
  9452. }
  9453. },
  9454. hand: {
  9455. height: math.unit(9 * 0.1168, "feet"),
  9456. name: "Hand",
  9457. image: {
  9458. source: "./media/characters/starry-aqua/hand.svg"
  9459. }
  9460. },
  9461. foot: {
  9462. height: math.unit(9 * 0.18, "feet"),
  9463. name: "Foot",
  9464. image: {
  9465. source: "./media/characters/starry-aqua/foot.svg"
  9466. }
  9467. }
  9468. },
  9469. [
  9470. {
  9471. name: "Micro",
  9472. height: math.unit(3, "inches")
  9473. },
  9474. {
  9475. name: "Normal",
  9476. height: math.unit(9, "feet")
  9477. },
  9478. {
  9479. name: "Macro",
  9480. height: math.unit(300, "feet"),
  9481. default: true
  9482. },
  9483. {
  9484. name: "Megamacro",
  9485. height: math.unit(3200, "feet")
  9486. }
  9487. ]
  9488. ))
  9489. characterMakers.push(() => makeCharacter(
  9490. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  9491. {
  9492. front: {
  9493. height: math.unit(15, "feet"),
  9494. weight: math.unit(5026, "lb"),
  9495. name: "Front",
  9496. image: {
  9497. source: "./media/characters/luka-towers/front.svg",
  9498. extra: 1269/1133,
  9499. bottom: 51/1320
  9500. }
  9501. },
  9502. },
  9503. [
  9504. {
  9505. name: "Normal",
  9506. height: math.unit(15, "feet"),
  9507. default: true
  9508. },
  9509. {
  9510. name: "Minimacro",
  9511. height: math.unit(25, "feet")
  9512. },
  9513. {
  9514. name: "Macro",
  9515. height: math.unit(320, "feet")
  9516. },
  9517. {
  9518. name: "Megamacro",
  9519. height: math.unit(35000, "feet")
  9520. },
  9521. {
  9522. name: "Gigamacro",
  9523. height: math.unit(4000, "miles")
  9524. },
  9525. {
  9526. name: "Teramacro",
  9527. height: math.unit(15000, "miles")
  9528. },
  9529. ]
  9530. ))
  9531. characterMakers.push(() => makeCharacter(
  9532. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  9533. {
  9534. front: {
  9535. height: math.unit(6, "feet"),
  9536. weight: math.unit(150, "lb"),
  9537. name: "Front",
  9538. image: {
  9539. source: "./media/characters/natalie-nightring/front.svg",
  9540. extra: 1,
  9541. bottom: 0.06
  9542. }
  9543. },
  9544. },
  9545. [
  9546. {
  9547. name: "Uh Oh",
  9548. height: math.unit(0.1, "mm")
  9549. },
  9550. {
  9551. name: "Small",
  9552. height: math.unit(3, "inches")
  9553. },
  9554. {
  9555. name: "Human Scale",
  9556. height: math.unit(6, "feet")
  9557. },
  9558. {
  9559. name: "Librarian",
  9560. height: math.unit(50, "feet"),
  9561. default: true
  9562. },
  9563. {
  9564. name: "Immense",
  9565. height: math.unit(200, "miles")
  9566. },
  9567. ]
  9568. ))
  9569. characterMakers.push(() => makeCharacter(
  9570. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  9571. {
  9572. front: {
  9573. height: math.unit(6, "feet"),
  9574. weight: math.unit(180, "lbs"),
  9575. name: "Front",
  9576. image: {
  9577. source: "./media/characters/danni-rosie/front.svg",
  9578. extra: 1260 / 1128,
  9579. bottom: 0.022
  9580. }
  9581. },
  9582. },
  9583. [
  9584. {
  9585. name: "Micro",
  9586. height: math.unit(2, "inches"),
  9587. default: true
  9588. },
  9589. ]
  9590. ))
  9591. characterMakers.push(() => makeCharacter(
  9592. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  9593. {
  9594. front: {
  9595. height: math.unit(5 + 9 / 12, "feet"),
  9596. weight: math.unit(220, "lb"),
  9597. name: "Front",
  9598. image: {
  9599. source: "./media/characters/samantha-kruse/front.svg",
  9600. extra: (985 / 935),
  9601. bottom: 0.03
  9602. }
  9603. },
  9604. frontUndressed: {
  9605. height: math.unit(5 + 9 / 12, "feet"),
  9606. weight: math.unit(220, "lb"),
  9607. name: "Front (Undressed)",
  9608. image: {
  9609. source: "./media/characters/samantha-kruse/front-undressed.svg",
  9610. extra: (973 / 923),
  9611. bottom: 0.025
  9612. }
  9613. },
  9614. fat: {
  9615. height: math.unit(5 + 9 / 12, "feet"),
  9616. weight: math.unit(900, "lb"),
  9617. name: "Front (Fat)",
  9618. image: {
  9619. source: "./media/characters/samantha-kruse/fat.svg",
  9620. extra: 2688 / 2561
  9621. }
  9622. },
  9623. },
  9624. [
  9625. {
  9626. name: "Normal",
  9627. height: math.unit(5 + 9 / 12, "feet"),
  9628. default: true
  9629. }
  9630. ]
  9631. ))
  9632. characterMakers.push(() => makeCharacter(
  9633. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  9634. {
  9635. back: {
  9636. height: math.unit(5 + 4 / 12, "feet"),
  9637. weight: math.unit(4963, "lb"),
  9638. name: "Back",
  9639. image: {
  9640. source: "./media/characters/amelia-rosie/back.svg",
  9641. extra: 1113 / 963,
  9642. bottom: 0.01
  9643. }
  9644. },
  9645. },
  9646. [
  9647. {
  9648. name: "Level 0",
  9649. height: math.unit(5 + 4 / 12, "feet")
  9650. },
  9651. {
  9652. name: "Level 1",
  9653. height: math.unit(164597, "feet"),
  9654. default: true
  9655. },
  9656. {
  9657. name: "Level 2",
  9658. height: math.unit(956243, "miles")
  9659. },
  9660. {
  9661. name: "Level 3",
  9662. height: math.unit(29421709423, "miles")
  9663. },
  9664. {
  9665. name: "Level 4",
  9666. height: math.unit(154, "lightyears")
  9667. },
  9668. {
  9669. name: "Level 5",
  9670. height: math.unit(4738272, "lightyears")
  9671. },
  9672. {
  9673. name: "Level 6",
  9674. height: math.unit(145787152896, "lightyears")
  9675. },
  9676. ]
  9677. ))
  9678. characterMakers.push(() => makeCharacter(
  9679. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  9680. {
  9681. front: {
  9682. height: math.unit(5 + 11 / 12, "feet"),
  9683. weight: math.unit(65, "kg"),
  9684. name: "Front",
  9685. image: {
  9686. source: "./media/characters/rook-kitara/front.svg",
  9687. extra: 1347 / 1274,
  9688. bottom: 0.005
  9689. }
  9690. },
  9691. },
  9692. [
  9693. {
  9694. name: "Totally Unfair",
  9695. height: math.unit(1.8, "mm")
  9696. },
  9697. {
  9698. name: "Lap Rookie",
  9699. height: math.unit(1.4, "feet")
  9700. },
  9701. {
  9702. name: "Normal",
  9703. height: math.unit(5 + 11 / 12, "feet"),
  9704. default: true
  9705. },
  9706. {
  9707. name: "How Did This Happen",
  9708. height: math.unit(80, "miles")
  9709. }
  9710. ]
  9711. ))
  9712. characterMakers.push(() => makeCharacter(
  9713. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  9714. {
  9715. front: {
  9716. height: math.unit(7, "feet"),
  9717. weight: math.unit(300, "lb"),
  9718. name: "Front",
  9719. image: {
  9720. source: "./media/characters/pisces/front.svg",
  9721. extra: 2255 / 2115,
  9722. bottom: 0.03
  9723. }
  9724. },
  9725. back: {
  9726. height: math.unit(7, "feet"),
  9727. weight: math.unit(300, "lb"),
  9728. name: "Back",
  9729. image: {
  9730. source: "./media/characters/pisces/back.svg",
  9731. extra: 2146 / 2055,
  9732. bottom: 0.04
  9733. }
  9734. },
  9735. },
  9736. [
  9737. {
  9738. name: "Normal",
  9739. height: math.unit(7, "feet"),
  9740. default: true
  9741. },
  9742. {
  9743. name: "Swimming Pool",
  9744. height: math.unit(12.2, "meters")
  9745. },
  9746. {
  9747. name: "Olympic Swimming Pool",
  9748. height: math.unit(56.3, "meters")
  9749. },
  9750. {
  9751. name: "Lake Superior",
  9752. height: math.unit(93900, "meters")
  9753. },
  9754. {
  9755. name: "Mediterranean Sea",
  9756. height: math.unit(644457, "meters")
  9757. },
  9758. {
  9759. name: "World's Oceans",
  9760. height: math.unit(4567491, "meters")
  9761. },
  9762. ]
  9763. ))
  9764. characterMakers.push(() => makeCharacter(
  9765. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  9766. {
  9767. front: {
  9768. height: math.unit(2.3, "meters"),
  9769. weight: math.unit(120, "kg"),
  9770. name: "Front",
  9771. image: {
  9772. source: "./media/characters/zelas/front.svg"
  9773. }
  9774. },
  9775. side: {
  9776. height: math.unit(2.3, "meters"),
  9777. weight: math.unit(120, "kg"),
  9778. name: "Side",
  9779. image: {
  9780. source: "./media/characters/zelas/side.svg"
  9781. }
  9782. },
  9783. back: {
  9784. height: math.unit(2.3, "meters"),
  9785. weight: math.unit(120, "kg"),
  9786. name: "Back",
  9787. image: {
  9788. source: "./media/characters/zelas/back.svg"
  9789. }
  9790. },
  9791. foot: {
  9792. height: math.unit(1.116, "feet"),
  9793. name: "Foot",
  9794. image: {
  9795. source: "./media/characters/zelas/foot.svg"
  9796. }
  9797. },
  9798. },
  9799. [
  9800. {
  9801. name: "Normal",
  9802. height: math.unit(2.3, "meters")
  9803. },
  9804. {
  9805. name: "Macro",
  9806. height: math.unit(30, "meters"),
  9807. default: true
  9808. },
  9809. ]
  9810. ))
  9811. characterMakers.push(() => makeCharacter(
  9812. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  9813. {
  9814. front: {
  9815. height: math.unit(1, "inch"),
  9816. weight: math.unit(0.21, "grams"),
  9817. name: "Front",
  9818. image: {
  9819. source: "./media/characters/talbot/front.svg",
  9820. extra: 594 / 544
  9821. }
  9822. },
  9823. },
  9824. [
  9825. {
  9826. name: "Micro",
  9827. height: math.unit(1, "inch"),
  9828. default: true
  9829. },
  9830. ]
  9831. ))
  9832. characterMakers.push(() => makeCharacter(
  9833. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  9834. {
  9835. front: {
  9836. height: math.unit(3 + 3 / 12, "feet"),
  9837. weight: math.unit(51.8, "lb"),
  9838. name: "Front",
  9839. image: {
  9840. source: "./media/characters/fliss/front.svg",
  9841. extra: 840 / 640
  9842. }
  9843. },
  9844. },
  9845. [
  9846. {
  9847. name: "Teeny Tiny",
  9848. height: math.unit(1, "mm")
  9849. },
  9850. {
  9851. name: "Small",
  9852. height: math.unit(1, "inch"),
  9853. default: true
  9854. },
  9855. {
  9856. name: "Standard Sylveon",
  9857. height: math.unit(3 + 3 / 12, "feet")
  9858. },
  9859. {
  9860. name: "Large Nuisance",
  9861. height: math.unit(33, "feet")
  9862. },
  9863. {
  9864. name: "City Filler",
  9865. height: math.unit(3000, "feet")
  9866. },
  9867. {
  9868. name: "New Horizon",
  9869. height: math.unit(6000, "miles")
  9870. },
  9871. ]
  9872. ))
  9873. characterMakers.push(() => makeCharacter(
  9874. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  9875. {
  9876. front: {
  9877. height: math.unit(5, "cm"),
  9878. weight: math.unit(1.94, "g"),
  9879. name: "Front",
  9880. image: {
  9881. source: "./media/characters/fleta/front.svg",
  9882. extra: 835 / 803
  9883. }
  9884. },
  9885. back: {
  9886. height: math.unit(5, "cm"),
  9887. weight: math.unit(1.94, "g"),
  9888. name: "Back",
  9889. image: {
  9890. source: "./media/characters/fleta/back.svg",
  9891. extra: 835 / 803
  9892. }
  9893. },
  9894. },
  9895. [
  9896. {
  9897. name: "Micro",
  9898. height: math.unit(5, "cm"),
  9899. default: true
  9900. },
  9901. ]
  9902. ))
  9903. characterMakers.push(() => makeCharacter(
  9904. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  9905. {
  9906. front: {
  9907. height: math.unit(6, "feet"),
  9908. weight: math.unit(225, "lb"),
  9909. name: "Front",
  9910. image: {
  9911. source: "./media/characters/dominic/front.svg",
  9912. extra: 1770 / 1620,
  9913. bottom: 0.025
  9914. }
  9915. },
  9916. back: {
  9917. height: math.unit(6, "feet"),
  9918. weight: math.unit(225, "lb"),
  9919. name: "Back",
  9920. image: {
  9921. source: "./media/characters/dominic/back.svg",
  9922. extra: 1745 / 1620,
  9923. bottom: 0.065
  9924. }
  9925. },
  9926. },
  9927. [
  9928. {
  9929. name: "Nano",
  9930. height: math.unit(0.1, "mm")
  9931. },
  9932. {
  9933. name: "Micro-",
  9934. height: math.unit(1, "mm")
  9935. },
  9936. {
  9937. name: "Micro",
  9938. height: math.unit(4, "inches")
  9939. },
  9940. {
  9941. name: "Normal",
  9942. height: math.unit(6 + 4 / 12, "feet"),
  9943. default: true
  9944. },
  9945. {
  9946. name: "Macro",
  9947. height: math.unit(115, "feet")
  9948. },
  9949. {
  9950. name: "Macro+",
  9951. height: math.unit(955, "feet")
  9952. },
  9953. {
  9954. name: "Megamacro",
  9955. height: math.unit(8990, "feet")
  9956. },
  9957. {
  9958. name: "Gigmacro",
  9959. height: math.unit(9310, "miles")
  9960. },
  9961. {
  9962. name: "Teramacro",
  9963. height: math.unit(1567005010, "miles")
  9964. },
  9965. {
  9966. name: "Examacro",
  9967. height: math.unit(1425, "parsecs")
  9968. },
  9969. ]
  9970. ))
  9971. characterMakers.push(() => makeCharacter(
  9972. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  9973. {
  9974. front: {
  9975. height: math.unit(400, "feet"),
  9976. weight: math.unit(44444444, "lb"),
  9977. name: "Front",
  9978. image: {
  9979. source: "./media/characters/major-colonel/front.svg"
  9980. }
  9981. },
  9982. back: {
  9983. height: math.unit(400, "feet"),
  9984. weight: math.unit(44444444, "lb"),
  9985. name: "Back",
  9986. image: {
  9987. source: "./media/characters/major-colonel/back.svg"
  9988. }
  9989. },
  9990. },
  9991. [
  9992. {
  9993. name: "Macro",
  9994. height: math.unit(400, "feet"),
  9995. default: true
  9996. },
  9997. ]
  9998. ))
  9999. characterMakers.push(() => makeCharacter(
  10000. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  10001. {
  10002. catFront: {
  10003. height: math.unit(6, "feet"),
  10004. weight: math.unit(120, "lb"),
  10005. name: "Front (Cat Side)",
  10006. image: {
  10007. source: "./media/characters/axel-lycan/cat-front.svg",
  10008. extra: 430 / 402,
  10009. bottom: 43 / 472.35
  10010. }
  10011. },
  10012. catBack: {
  10013. height: math.unit(6, "feet"),
  10014. weight: math.unit(120, "lb"),
  10015. name: "Back (Cat Side)",
  10016. image: {
  10017. source: "./media/characters/axel-lycan/cat-back.svg",
  10018. extra: 447 / 419,
  10019. bottom: 23.3 / 469
  10020. }
  10021. },
  10022. wolfFront: {
  10023. height: math.unit(6, "feet"),
  10024. weight: math.unit(120, "lb"),
  10025. name: "Front (Wolf Side)",
  10026. image: {
  10027. source: "./media/characters/axel-lycan/wolf-front.svg",
  10028. extra: 485 / 456,
  10029. bottom: 19 / 504
  10030. }
  10031. },
  10032. wolfBack: {
  10033. height: math.unit(6, "feet"),
  10034. weight: math.unit(120, "lb"),
  10035. name: "Back (Wolf Side)",
  10036. image: {
  10037. source: "./media/characters/axel-lycan/wolf-back.svg",
  10038. extra: 475 / 438,
  10039. bottom: 39.2 / 514
  10040. }
  10041. },
  10042. },
  10043. [
  10044. {
  10045. name: "Macro",
  10046. height: math.unit(1, "km"),
  10047. default: true
  10048. },
  10049. ]
  10050. ))
  10051. characterMakers.push(() => makeCharacter(
  10052. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  10053. {
  10054. front: {
  10055. height: math.unit(5 + 9 / 12, "feet"),
  10056. weight: math.unit(175, "lb"),
  10057. name: "Front",
  10058. image: {
  10059. source: "./media/characters/vanrel-hyena/front.svg",
  10060. extra: 1086 / 1010,
  10061. bottom: 0.04
  10062. }
  10063. },
  10064. },
  10065. [
  10066. {
  10067. name: "Normal",
  10068. height: math.unit(5 + 9 / 12, "feet"),
  10069. default: true
  10070. },
  10071. ]
  10072. ))
  10073. characterMakers.push(() => makeCharacter(
  10074. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  10075. {
  10076. front: {
  10077. height: math.unit(6, "feet"),
  10078. weight: math.unit(103, "lb"),
  10079. name: "Front",
  10080. image: {
  10081. source: "./media/characters/abbott-absol/front.svg",
  10082. extra: 2010 / 1842
  10083. }
  10084. },
  10085. },
  10086. [
  10087. {
  10088. name: "Megamicro",
  10089. height: math.unit(0.1, "mm")
  10090. },
  10091. {
  10092. name: "Micro",
  10093. height: math.unit(1, "inch")
  10094. },
  10095. {
  10096. name: "Normal",
  10097. height: math.unit(6, "feet"),
  10098. default: true
  10099. },
  10100. ]
  10101. ))
  10102. characterMakers.push(() => makeCharacter(
  10103. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  10104. {
  10105. front: {
  10106. height: math.unit(6, "feet"),
  10107. weight: math.unit(264, "lb"),
  10108. name: "Front",
  10109. image: {
  10110. source: "./media/characters/hector/front.svg",
  10111. extra: 2280 / 2130,
  10112. bottom: 0.07
  10113. }
  10114. },
  10115. },
  10116. [
  10117. {
  10118. name: "Normal",
  10119. height: math.unit(12.25, "foot"),
  10120. default: true
  10121. },
  10122. {
  10123. name: "Macro",
  10124. height: math.unit(160, "feet")
  10125. },
  10126. ]
  10127. ))
  10128. characterMakers.push(() => makeCharacter(
  10129. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  10130. {
  10131. front: {
  10132. height: math.unit(6, "feet"),
  10133. weight: math.unit(150, "lb"),
  10134. name: "Front",
  10135. image: {
  10136. source: "./media/characters/sal/front.svg",
  10137. extra: 1846 / 1699,
  10138. bottom: 0.04
  10139. }
  10140. },
  10141. },
  10142. [
  10143. {
  10144. name: "Megamacro",
  10145. height: math.unit(10, "miles"),
  10146. default: true
  10147. },
  10148. ]
  10149. ))
  10150. characterMakers.push(() => makeCharacter(
  10151. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  10152. {
  10153. front: {
  10154. height: math.unit(3, "meters"),
  10155. weight: math.unit(450, "kg"),
  10156. name: "front",
  10157. image: {
  10158. source: "./media/characters/ranger/front.svg",
  10159. extra: 2401 / 2243,
  10160. bottom: 0.05
  10161. }
  10162. },
  10163. },
  10164. [
  10165. {
  10166. name: "Normal",
  10167. height: math.unit(3, "meters"),
  10168. default: true
  10169. },
  10170. ]
  10171. ))
  10172. characterMakers.push(() => makeCharacter(
  10173. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  10174. {
  10175. front: {
  10176. height: math.unit(14, "feet"),
  10177. weight: math.unit(800, "kg"),
  10178. name: "Front",
  10179. image: {
  10180. source: "./media/characters/theresa/front.svg",
  10181. extra: 3575 / 3346,
  10182. bottom: 0.03
  10183. }
  10184. },
  10185. },
  10186. [
  10187. {
  10188. name: "Normal",
  10189. height: math.unit(14, "feet"),
  10190. default: true
  10191. },
  10192. ]
  10193. ))
  10194. characterMakers.push(() => makeCharacter(
  10195. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  10196. {
  10197. front: {
  10198. height: math.unit(6, "feet"),
  10199. weight: math.unit(3, "kg"),
  10200. name: "Front",
  10201. image: {
  10202. source: "./media/characters/ine/front.svg",
  10203. extra: 678 / 539,
  10204. bottom: 0.023
  10205. }
  10206. },
  10207. },
  10208. [
  10209. {
  10210. name: "Normal",
  10211. height: math.unit(2.265, "feet"),
  10212. default: true
  10213. },
  10214. ]
  10215. ))
  10216. characterMakers.push(() => makeCharacter(
  10217. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  10218. {
  10219. front: {
  10220. height: math.unit(5, "feet"),
  10221. weight: math.unit(30, "kg"),
  10222. name: "Front",
  10223. image: {
  10224. source: "./media/characters/vial/front.svg",
  10225. extra: 1365 / 1277,
  10226. bottom: 0.04
  10227. }
  10228. },
  10229. },
  10230. [
  10231. {
  10232. name: "Normal",
  10233. height: math.unit(5, "feet"),
  10234. default: true
  10235. },
  10236. ]
  10237. ))
  10238. characterMakers.push(() => makeCharacter(
  10239. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  10240. {
  10241. side: {
  10242. height: math.unit(3.4, "meters"),
  10243. weight: math.unit(1000, "lb"),
  10244. name: "Side",
  10245. image: {
  10246. source: "./media/characters/rovoska/side.svg",
  10247. extra: 4403 / 1515
  10248. }
  10249. },
  10250. },
  10251. [
  10252. {
  10253. name: "Normal",
  10254. height: math.unit(3.4, "meters"),
  10255. default: true
  10256. },
  10257. ]
  10258. ))
  10259. characterMakers.push(() => makeCharacter(
  10260. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  10261. {
  10262. front: {
  10263. height: math.unit(8, "feet"),
  10264. weight: math.unit(315, "lb"),
  10265. name: "Front",
  10266. image: {
  10267. source: "./media/characters/gunner-rotthbauer/front.svg"
  10268. }
  10269. },
  10270. back: {
  10271. height: math.unit(8, "feet"),
  10272. weight: math.unit(315, "lb"),
  10273. name: "Back",
  10274. image: {
  10275. source: "./media/characters/gunner-rotthbauer/back.svg"
  10276. }
  10277. },
  10278. },
  10279. [
  10280. {
  10281. name: "Micro",
  10282. height: math.unit(3.5, "inches")
  10283. },
  10284. {
  10285. name: "Normal",
  10286. height: math.unit(8, "feet"),
  10287. default: true
  10288. },
  10289. {
  10290. name: "Macro",
  10291. height: math.unit(250, "feet")
  10292. },
  10293. {
  10294. name: "Megamacro",
  10295. height: math.unit(1, "AU")
  10296. },
  10297. ]
  10298. ))
  10299. characterMakers.push(() => makeCharacter(
  10300. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  10301. {
  10302. front: {
  10303. height: math.unit(5 + 5 / 12, "feet"),
  10304. weight: math.unit(140, "lb"),
  10305. name: "Front",
  10306. image: {
  10307. source: "./media/characters/allatia/front.svg",
  10308. extra: 1227 / 1180,
  10309. bottom: 0.027
  10310. }
  10311. },
  10312. },
  10313. [
  10314. {
  10315. name: "Normal",
  10316. height: math.unit(5 + 5 / 12, "feet")
  10317. },
  10318. {
  10319. name: "Macro",
  10320. height: math.unit(250, "feet"),
  10321. default: true
  10322. },
  10323. {
  10324. name: "Megamacro",
  10325. height: math.unit(8, "miles")
  10326. }
  10327. ]
  10328. ))
  10329. characterMakers.push(() => makeCharacter(
  10330. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  10331. {
  10332. front: {
  10333. height: math.unit(6, "feet"),
  10334. weight: math.unit(120, "lb"),
  10335. name: "Front",
  10336. image: {
  10337. source: "./media/characters/tene/front.svg",
  10338. extra: 814/750,
  10339. bottom: 36/850
  10340. }
  10341. },
  10342. stomping: {
  10343. height: math.unit(2.025, "meters"),
  10344. weight: math.unit(120, "lb"),
  10345. name: "Stomping",
  10346. image: {
  10347. source: "./media/characters/tene/stomping.svg",
  10348. extra: 885/821,
  10349. bottom: 15/900
  10350. }
  10351. },
  10352. sitting: {
  10353. height: math.unit(1, "meter"),
  10354. weight: math.unit(120, "lb"),
  10355. name: "Sitting",
  10356. image: {
  10357. source: "./media/characters/tene/sitting.svg",
  10358. extra: 396/366,
  10359. bottom: 79/475
  10360. }
  10361. },
  10362. smiling: {
  10363. height: math.unit(1.2, "feet"),
  10364. name: "Smiling",
  10365. image: {
  10366. source: "./media/characters/tene/smiling.svg",
  10367. extra: 1364/1071,
  10368. bottom: 0/1364
  10369. }
  10370. },
  10371. smug: {
  10372. height: math.unit(1.3, "feet"),
  10373. name: "Smug",
  10374. image: {
  10375. source: "./media/characters/tene/smug.svg",
  10376. extra: 1323/1082,
  10377. bottom: 0/1323
  10378. }
  10379. },
  10380. feral: {
  10381. height: math.unit(3.9, "feet"),
  10382. weight: math.unit(250, "lb"),
  10383. name: "Feral",
  10384. image: {
  10385. source: "./media/characters/tene/feral.svg",
  10386. extra: 717 / 458,
  10387. bottom: 0.179
  10388. }
  10389. },
  10390. },
  10391. [
  10392. {
  10393. name: "Normal",
  10394. height: math.unit(6, "feet")
  10395. },
  10396. {
  10397. name: "Macro",
  10398. height: math.unit(300, "feet"),
  10399. default: true
  10400. },
  10401. {
  10402. name: "Megamacro",
  10403. height: math.unit(5, "miles")
  10404. },
  10405. ]
  10406. ))
  10407. characterMakers.push(() => makeCharacter(
  10408. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  10409. {
  10410. side: {
  10411. height: math.unit(6, "feet"),
  10412. name: "Side",
  10413. image: {
  10414. source: "./media/characters/evander/side.svg",
  10415. extra: 877 / 477
  10416. }
  10417. },
  10418. },
  10419. [
  10420. {
  10421. name: "Normal",
  10422. height: math.unit(0.83, "meters"),
  10423. default: true
  10424. },
  10425. ]
  10426. ))
  10427. characterMakers.push(() => makeCharacter(
  10428. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  10429. {
  10430. front: {
  10431. height: math.unit(12, "feet"),
  10432. weight: math.unit(1000, "lb"),
  10433. name: "Front",
  10434. image: {
  10435. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  10436. extra: 1762 / 1611
  10437. }
  10438. },
  10439. back: {
  10440. height: math.unit(12, "feet"),
  10441. weight: math.unit(1000, "lb"),
  10442. name: "Back",
  10443. image: {
  10444. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  10445. extra: 1762 / 1611
  10446. }
  10447. },
  10448. },
  10449. [
  10450. {
  10451. name: "Normal",
  10452. height: math.unit(12, "feet"),
  10453. default: true
  10454. },
  10455. {
  10456. name: "Kaiju",
  10457. height: math.unit(150, "feet")
  10458. },
  10459. ]
  10460. ))
  10461. characterMakers.push(() => makeCharacter(
  10462. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  10463. {
  10464. front: {
  10465. height: math.unit(6, "feet"),
  10466. weight: math.unit(150, "lb"),
  10467. name: "Front",
  10468. image: {
  10469. source: "./media/characters/zero-alurus/front.svg"
  10470. }
  10471. },
  10472. back: {
  10473. height: math.unit(6, "feet"),
  10474. weight: math.unit(150, "lb"),
  10475. name: "Back",
  10476. image: {
  10477. source: "./media/characters/zero-alurus/back.svg"
  10478. }
  10479. },
  10480. },
  10481. [
  10482. {
  10483. name: "Normal",
  10484. height: math.unit(5 + 10 / 12, "feet")
  10485. },
  10486. {
  10487. name: "Macro",
  10488. height: math.unit(60, "feet"),
  10489. default: true
  10490. },
  10491. {
  10492. name: "Macro+",
  10493. height: math.unit(450, "feet")
  10494. },
  10495. ]
  10496. ))
  10497. characterMakers.push(() => makeCharacter(
  10498. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  10499. {
  10500. front: {
  10501. height: math.unit(6, "feet"),
  10502. weight: math.unit(200, "lb"),
  10503. name: "Front",
  10504. image: {
  10505. source: "./media/characters/mega-shi/front.svg",
  10506. extra: 1279 / 1250,
  10507. bottom: 0.02
  10508. }
  10509. },
  10510. back: {
  10511. height: math.unit(6, "feet"),
  10512. weight: math.unit(200, "lb"),
  10513. name: "Back",
  10514. image: {
  10515. source: "./media/characters/mega-shi/back.svg",
  10516. extra: 1279 / 1250,
  10517. bottom: 0.02
  10518. }
  10519. },
  10520. },
  10521. [
  10522. {
  10523. name: "Micro",
  10524. height: math.unit(16 + 6 / 12, "feet")
  10525. },
  10526. {
  10527. name: "Third Dimension",
  10528. height: math.unit(40, "meters")
  10529. },
  10530. {
  10531. name: "Normal",
  10532. height: math.unit(660, "feet"),
  10533. default: true
  10534. },
  10535. {
  10536. name: "Megamacro",
  10537. height: math.unit(10, "miles")
  10538. },
  10539. {
  10540. name: "Planetary Launch",
  10541. height: math.unit(500, "miles")
  10542. },
  10543. {
  10544. name: "Interstellar",
  10545. height: math.unit(1e9, "miles")
  10546. },
  10547. {
  10548. name: "Leaving the Universe",
  10549. height: math.unit(1, "gigaparsec")
  10550. },
  10551. {
  10552. name: "Travelling Universes",
  10553. height: math.unit(30e15, "parsecs")
  10554. },
  10555. ]
  10556. ))
  10557. characterMakers.push(() => makeCharacter(
  10558. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  10559. {
  10560. front: {
  10561. height: math.unit(5 + 4/12, "feet"),
  10562. weight: math.unit(120, "lb"),
  10563. name: "Front",
  10564. image: {
  10565. source: "./media/characters/odyssey/front.svg",
  10566. extra: 1747/1571,
  10567. bottom: 47/1794
  10568. }
  10569. },
  10570. side: {
  10571. height: math.unit(5.1, "feet"),
  10572. weight: math.unit(120, "lb"),
  10573. name: "Side",
  10574. image: {
  10575. source: "./media/characters/odyssey/side.svg",
  10576. extra: 1847/1619,
  10577. bottom: 47/1894
  10578. }
  10579. },
  10580. lounging: {
  10581. height: math.unit(1.464, "feet"),
  10582. weight: math.unit(120, "lb"),
  10583. name: "Lounging",
  10584. image: {
  10585. source: "./media/characters/odyssey/lounging.svg",
  10586. extra: 1235/837,
  10587. bottom: 551/1786
  10588. }
  10589. },
  10590. },
  10591. [
  10592. {
  10593. name: "Normal",
  10594. height: math.unit(5 + 4 / 12, "feet")
  10595. },
  10596. {
  10597. name: "Macro",
  10598. height: math.unit(1, "km")
  10599. },
  10600. {
  10601. name: "Megamacro",
  10602. height: math.unit(3000, "km")
  10603. },
  10604. {
  10605. name: "Gigamacro",
  10606. height: math.unit(1, "AU"),
  10607. default: true
  10608. },
  10609. {
  10610. name: "Omniversal",
  10611. height: math.unit(100e14, "lightyears")
  10612. },
  10613. ]
  10614. ))
  10615. characterMakers.push(() => makeCharacter(
  10616. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  10617. {
  10618. front: {
  10619. height: math.unit(6, "feet"),
  10620. weight: math.unit(300, "lb"),
  10621. name: "Front",
  10622. image: {
  10623. source: "./media/characters/mekuto/front.svg",
  10624. extra: 921 / 832,
  10625. bottom: 0.03
  10626. }
  10627. },
  10628. hand: {
  10629. height: math.unit(6 / 10.24, "feet"),
  10630. name: "Hand",
  10631. image: {
  10632. source: "./media/characters/mekuto/hand.svg"
  10633. }
  10634. },
  10635. foot: {
  10636. height: math.unit(6 / 5.05, "feet"),
  10637. name: "Foot",
  10638. image: {
  10639. source: "./media/characters/mekuto/foot.svg"
  10640. }
  10641. },
  10642. },
  10643. [
  10644. {
  10645. name: "Minimicro",
  10646. height: math.unit(0.2, "inches")
  10647. },
  10648. {
  10649. name: "Micro",
  10650. height: math.unit(1.5, "inches")
  10651. },
  10652. {
  10653. name: "Normal",
  10654. height: math.unit(5 + 11 / 12, "feet"),
  10655. default: true
  10656. },
  10657. {
  10658. name: "Minimacro",
  10659. height: math.unit(17 + 9 / 12, "feet")
  10660. },
  10661. {
  10662. name: "Macro",
  10663. height: math.unit(177.5, "feet")
  10664. },
  10665. {
  10666. name: "Megamacro",
  10667. height: math.unit(152, "miles")
  10668. },
  10669. ]
  10670. ))
  10671. characterMakers.push(() => makeCharacter(
  10672. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  10673. {
  10674. front: {
  10675. height: math.unit(6.5, "inches"),
  10676. weight: math.unit(13, "oz"),
  10677. name: "Front",
  10678. image: {
  10679. source: "./media/characters/dafydd-tomos/front.svg",
  10680. extra: 2990 / 2603,
  10681. bottom: 0.03
  10682. }
  10683. },
  10684. },
  10685. [
  10686. {
  10687. name: "Micro",
  10688. height: math.unit(6.5, "inches"),
  10689. default: true
  10690. },
  10691. ]
  10692. ))
  10693. characterMakers.push(() => makeCharacter(
  10694. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  10695. {
  10696. front: {
  10697. height: math.unit(6, "feet"),
  10698. weight: math.unit(150, "lb"),
  10699. name: "Front",
  10700. image: {
  10701. source: "./media/characters/splinter/front.svg",
  10702. extra: 2990 / 2882,
  10703. bottom: 0.04
  10704. }
  10705. },
  10706. back: {
  10707. height: math.unit(6, "feet"),
  10708. weight: math.unit(150, "lb"),
  10709. name: "Back",
  10710. image: {
  10711. source: "./media/characters/splinter/back.svg",
  10712. extra: 2990 / 2882,
  10713. bottom: 0.04
  10714. }
  10715. },
  10716. },
  10717. [
  10718. {
  10719. name: "Normal",
  10720. height: math.unit(6, "feet")
  10721. },
  10722. {
  10723. name: "Macro",
  10724. height: math.unit(230, "meters"),
  10725. default: true
  10726. },
  10727. ]
  10728. ))
  10729. characterMakers.push(() => makeCharacter(
  10730. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  10731. {
  10732. front: {
  10733. height: math.unit(4 + 10 / 12, "feet"),
  10734. weight: math.unit(480, "lb"),
  10735. name: "Front",
  10736. image: {
  10737. source: "./media/characters/snow-gabumon/front.svg",
  10738. extra: 1140 / 963,
  10739. bottom: 0.058
  10740. }
  10741. },
  10742. back: {
  10743. height: math.unit(4 + 10 / 12, "feet"),
  10744. weight: math.unit(480, "lb"),
  10745. name: "Back",
  10746. image: {
  10747. source: "./media/characters/snow-gabumon/back.svg",
  10748. extra: 1115 / 962,
  10749. bottom: 0.041
  10750. }
  10751. },
  10752. frontUndresed: {
  10753. height: math.unit(4 + 10 / 12, "feet"),
  10754. weight: math.unit(480, "lb"),
  10755. name: "Front (Undressed)",
  10756. image: {
  10757. source: "./media/characters/snow-gabumon/front-undressed.svg",
  10758. extra: 1061 / 960,
  10759. bottom: 0.045
  10760. }
  10761. },
  10762. },
  10763. [
  10764. {
  10765. name: "Micro",
  10766. height: math.unit(1, "inch")
  10767. },
  10768. {
  10769. name: "Normal",
  10770. height: math.unit(4 + 10 / 12, "feet"),
  10771. default: true
  10772. },
  10773. {
  10774. name: "Macro",
  10775. height: math.unit(200, "feet")
  10776. },
  10777. {
  10778. name: "Megamacro",
  10779. height: math.unit(120, "miles")
  10780. },
  10781. {
  10782. name: "Gigamacro",
  10783. height: math.unit(9800, "miles")
  10784. },
  10785. ]
  10786. ))
  10787. characterMakers.push(() => makeCharacter(
  10788. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  10789. {
  10790. front: {
  10791. height: math.unit(1.7, "meters"),
  10792. weight: math.unit(140, "lb"),
  10793. name: "Front",
  10794. image: {
  10795. source: "./media/characters/moody/front.svg",
  10796. extra: 3226 / 3007,
  10797. bottom: 0.087
  10798. }
  10799. },
  10800. },
  10801. [
  10802. {
  10803. name: "Micro",
  10804. height: math.unit(1, "mm")
  10805. },
  10806. {
  10807. name: "Normal",
  10808. height: math.unit(1.7, "meters"),
  10809. default: true
  10810. },
  10811. {
  10812. name: "Macro",
  10813. height: math.unit(80, "meters")
  10814. },
  10815. {
  10816. name: "Macro+",
  10817. height: math.unit(500, "meters")
  10818. },
  10819. ]
  10820. ))
  10821. characterMakers.push(() => makeCharacter(
  10822. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  10823. {
  10824. front: {
  10825. height: math.unit(6, "feet"),
  10826. weight: math.unit(150, "lb"),
  10827. name: "Front",
  10828. image: {
  10829. source: "./media/characters/zyas/front.svg",
  10830. extra: 1180 / 1120,
  10831. bottom: 0.045
  10832. }
  10833. },
  10834. },
  10835. [
  10836. {
  10837. name: "Normal",
  10838. height: math.unit(10, "feet"),
  10839. default: true
  10840. },
  10841. {
  10842. name: "Macro",
  10843. height: math.unit(500, "feet")
  10844. },
  10845. {
  10846. name: "Megamacro",
  10847. height: math.unit(5, "miles")
  10848. },
  10849. {
  10850. name: "Teramacro",
  10851. height: math.unit(150000, "miles")
  10852. },
  10853. ]
  10854. ))
  10855. characterMakers.push(() => makeCharacter(
  10856. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  10857. {
  10858. front: {
  10859. height: math.unit(6, "feet"),
  10860. weight: math.unit(150, "lb"),
  10861. name: "Front",
  10862. image: {
  10863. source: "./media/characters/cuon/front.svg",
  10864. extra: 1390 / 1320,
  10865. bottom: 0.008
  10866. }
  10867. },
  10868. },
  10869. [
  10870. {
  10871. name: "Micro",
  10872. height: math.unit(3, "inches")
  10873. },
  10874. {
  10875. name: "Normal",
  10876. height: math.unit(18 + 9 / 12, "feet"),
  10877. default: true
  10878. },
  10879. {
  10880. name: "Macro",
  10881. height: math.unit(360, "feet")
  10882. },
  10883. {
  10884. name: "Megamacro",
  10885. height: math.unit(360, "miles")
  10886. },
  10887. ]
  10888. ))
  10889. characterMakers.push(() => makeCharacter(
  10890. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  10891. {
  10892. front: {
  10893. height: math.unit(2.4, "meters"),
  10894. weight: math.unit(70, "kg"),
  10895. name: "Front",
  10896. image: {
  10897. source: "./media/characters/nyanuxk/front.svg",
  10898. extra: 1172 / 1084,
  10899. bottom: 0.065
  10900. }
  10901. },
  10902. side: {
  10903. height: math.unit(2.4, "meters"),
  10904. weight: math.unit(70, "kg"),
  10905. name: "Side",
  10906. image: {
  10907. source: "./media/characters/nyanuxk/side.svg",
  10908. extra: 1190 / 1132,
  10909. bottom: 0.007
  10910. }
  10911. },
  10912. back: {
  10913. height: math.unit(2.4, "meters"),
  10914. weight: math.unit(70, "kg"),
  10915. name: "Back",
  10916. image: {
  10917. source: "./media/characters/nyanuxk/back.svg",
  10918. extra: 1200 / 1141,
  10919. bottom: 0.015
  10920. }
  10921. },
  10922. foot: {
  10923. height: math.unit(0.52, "meters"),
  10924. name: "Foot",
  10925. image: {
  10926. source: "./media/characters/nyanuxk/foot.svg"
  10927. }
  10928. },
  10929. },
  10930. [
  10931. {
  10932. name: "Micro",
  10933. height: math.unit(2, "cm")
  10934. },
  10935. {
  10936. name: "Normal",
  10937. height: math.unit(2.4, "meters"),
  10938. default: true
  10939. },
  10940. {
  10941. name: "Smaller Macro",
  10942. height: math.unit(120, "meters")
  10943. },
  10944. {
  10945. name: "Bigger Macro",
  10946. height: math.unit(1.2, "km")
  10947. },
  10948. {
  10949. name: "Megamacro",
  10950. height: math.unit(15, "kilometers")
  10951. },
  10952. {
  10953. name: "Gigamacro",
  10954. height: math.unit(2000, "km")
  10955. },
  10956. {
  10957. name: "Teramacro",
  10958. height: math.unit(500000, "km")
  10959. },
  10960. ]
  10961. ))
  10962. characterMakers.push(() => makeCharacter(
  10963. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  10964. {
  10965. side: {
  10966. height: math.unit(6, "feet"),
  10967. name: "Side",
  10968. image: {
  10969. source: "./media/characters/ailbhe/side.svg",
  10970. extra: 757 / 464,
  10971. bottom: 0.041
  10972. }
  10973. },
  10974. },
  10975. [
  10976. {
  10977. name: "Normal",
  10978. height: math.unit(1.07, "meters"),
  10979. default: true
  10980. },
  10981. ]
  10982. ))
  10983. characterMakers.push(() => makeCharacter(
  10984. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  10985. {
  10986. front: {
  10987. height: math.unit(6, "feet"),
  10988. weight: math.unit(120, "kg"),
  10989. name: "Front",
  10990. image: {
  10991. source: "./media/characters/zevulfius/front.svg",
  10992. extra: 965 / 903
  10993. }
  10994. },
  10995. side: {
  10996. height: math.unit(6, "feet"),
  10997. weight: math.unit(120, "kg"),
  10998. name: "Side",
  10999. image: {
  11000. source: "./media/characters/zevulfius/side.svg",
  11001. extra: 939 / 900
  11002. }
  11003. },
  11004. back: {
  11005. height: math.unit(6, "feet"),
  11006. weight: math.unit(120, "kg"),
  11007. name: "Back",
  11008. image: {
  11009. source: "./media/characters/zevulfius/back.svg",
  11010. extra: 918 / 854,
  11011. bottom: 0.005
  11012. }
  11013. },
  11014. foot: {
  11015. height: math.unit(6 / 3.72, "feet"),
  11016. name: "Foot",
  11017. image: {
  11018. source: "./media/characters/zevulfius/foot.svg"
  11019. }
  11020. },
  11021. },
  11022. [
  11023. {
  11024. name: "Macro",
  11025. height: math.unit(750, "meters")
  11026. },
  11027. {
  11028. name: "Megamacro",
  11029. height: math.unit(20, "km"),
  11030. default: true
  11031. },
  11032. {
  11033. name: "Gigamacro",
  11034. height: math.unit(2000, "km")
  11035. },
  11036. {
  11037. name: "Teramacro",
  11038. height: math.unit(250000, "km")
  11039. },
  11040. ]
  11041. ))
  11042. characterMakers.push(() => makeCharacter(
  11043. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  11044. {
  11045. front: {
  11046. height: math.unit(100, "feet"),
  11047. weight: math.unit(350, "kg"),
  11048. name: "Front",
  11049. image: {
  11050. source: "./media/characters/rikes/front.svg",
  11051. extra: 1565 / 1483,
  11052. bottom: 0.017
  11053. }
  11054. },
  11055. },
  11056. [
  11057. {
  11058. name: "Macro",
  11059. height: math.unit(100, "feet"),
  11060. default: true
  11061. },
  11062. ]
  11063. ))
  11064. characterMakers.push(() => makeCharacter(
  11065. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  11066. {
  11067. front: {
  11068. height: math.unit(8, "feet"),
  11069. weight: math.unit(356, "lb"),
  11070. name: "Front",
  11071. image: {
  11072. source: "./media/characters/adam-silver-mane/front.svg",
  11073. extra: 1036/937,
  11074. bottom: 63/1099
  11075. }
  11076. },
  11077. side: {
  11078. height: math.unit(8, "feet"),
  11079. weight: math.unit(356, "lb"),
  11080. name: "Side",
  11081. image: {
  11082. source: "./media/characters/adam-silver-mane/side.svg",
  11083. extra: 997/901,
  11084. bottom: 59/1056
  11085. }
  11086. },
  11087. frontNsfw: {
  11088. height: math.unit(8, "feet"),
  11089. weight: math.unit(356, "lb"),
  11090. name: "Front (NSFW)",
  11091. image: {
  11092. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  11093. extra: 1036/937,
  11094. bottom: 63/1099
  11095. }
  11096. },
  11097. sideNsfw: {
  11098. height: math.unit(8, "feet"),
  11099. weight: math.unit(356, "lb"),
  11100. name: "Side (NSFW)",
  11101. image: {
  11102. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  11103. extra: 997/901,
  11104. bottom: 59/1056
  11105. }
  11106. },
  11107. dick: {
  11108. height: math.unit(2.1, "feet"),
  11109. name: "Dick",
  11110. image: {
  11111. source: "./media/characters/adam-silver-mane/dick.svg"
  11112. }
  11113. },
  11114. taur: {
  11115. height: math.unit(16, "feet"),
  11116. weight: math.unit(1500, "kg"),
  11117. name: "Taur",
  11118. image: {
  11119. source: "./media/characters/adam-silver-mane/taur.svg",
  11120. extra: 1713 / 1571,
  11121. bottom: 0.01
  11122. }
  11123. },
  11124. },
  11125. [
  11126. {
  11127. name: "Normal",
  11128. height: math.unit(8, "feet")
  11129. },
  11130. {
  11131. name: "Minimacro",
  11132. height: math.unit(80, "feet")
  11133. },
  11134. {
  11135. name: "MDA",
  11136. height: math.unit(80, "meters")
  11137. },
  11138. {
  11139. name: "Macro",
  11140. height: math.unit(800, "feet"),
  11141. default: true
  11142. },
  11143. {
  11144. name: "Megamacro",
  11145. height: math.unit(8000, "feet")
  11146. },
  11147. {
  11148. name: "Gigamacro",
  11149. height: math.unit(800, "miles")
  11150. },
  11151. {
  11152. name: "Teramacro",
  11153. height: math.unit(80000, "miles")
  11154. },
  11155. {
  11156. name: "Celestial",
  11157. height: math.unit(8e6, "miles")
  11158. },
  11159. {
  11160. name: "Star Dragon",
  11161. height: math.unit(800000, "parsecs")
  11162. },
  11163. {
  11164. name: "Godly",
  11165. height: math.unit(800, "teraparsecs")
  11166. },
  11167. ]
  11168. ))
  11169. characterMakers.push(() => makeCharacter(
  11170. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  11171. {
  11172. front: {
  11173. height: math.unit(6, "feet"),
  11174. weight: math.unit(150, "lb"),
  11175. name: "Front",
  11176. image: {
  11177. source: "./media/characters/ky'owin/front.svg",
  11178. extra: 3888 / 3068,
  11179. bottom: 0.015
  11180. }
  11181. },
  11182. },
  11183. [
  11184. {
  11185. name: "Normal",
  11186. height: math.unit(6 + 8 / 12, "feet")
  11187. },
  11188. {
  11189. name: "Large",
  11190. height: math.unit(68, "feet")
  11191. },
  11192. {
  11193. name: "Macro",
  11194. height: math.unit(132, "feet")
  11195. },
  11196. {
  11197. name: "Macro+",
  11198. height: math.unit(340, "feet")
  11199. },
  11200. {
  11201. name: "Macro++",
  11202. height: math.unit(680, "feet"),
  11203. default: true
  11204. },
  11205. {
  11206. name: "Megamacro",
  11207. height: math.unit(1, "mile")
  11208. },
  11209. {
  11210. name: "Megamacro+",
  11211. height: math.unit(10, "miles")
  11212. },
  11213. ]
  11214. ))
  11215. characterMakers.push(() => makeCharacter(
  11216. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  11217. {
  11218. front: {
  11219. height: math.unit(4, "feet"),
  11220. weight: math.unit(50, "lb"),
  11221. name: "Front",
  11222. image: {
  11223. source: "./media/characters/mal/front.svg",
  11224. extra: 785 / 724,
  11225. bottom: 0.07
  11226. }
  11227. },
  11228. },
  11229. [
  11230. {
  11231. name: "Micro",
  11232. height: math.unit(4, "inches")
  11233. },
  11234. {
  11235. name: "Normal",
  11236. height: math.unit(4, "feet"),
  11237. default: true
  11238. },
  11239. {
  11240. name: "Macro",
  11241. height: math.unit(200, "feet")
  11242. },
  11243. ]
  11244. ))
  11245. characterMakers.push(() => makeCharacter(
  11246. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  11247. {
  11248. front: {
  11249. height: math.unit(6, "feet"),
  11250. weight: math.unit(150, "lb"),
  11251. name: "Front",
  11252. image: {
  11253. source: "./media/characters/jordan-deware/front.svg",
  11254. extra: 1191 / 1012
  11255. }
  11256. },
  11257. },
  11258. [
  11259. {
  11260. name: "Nano",
  11261. height: math.unit(0.01, "mm")
  11262. },
  11263. {
  11264. name: "Minimicro",
  11265. height: math.unit(1, "mm")
  11266. },
  11267. {
  11268. name: "Micro",
  11269. height: math.unit(0.5, "inches")
  11270. },
  11271. {
  11272. name: "Normal",
  11273. height: math.unit(4, "feet"),
  11274. default: true
  11275. },
  11276. {
  11277. name: "Minimacro",
  11278. height: math.unit(40, "meters")
  11279. },
  11280. {
  11281. name: "Small Macro",
  11282. height: math.unit(400, "meters")
  11283. },
  11284. {
  11285. name: "Macro",
  11286. height: math.unit(4, "miles")
  11287. },
  11288. {
  11289. name: "Megamacro",
  11290. height: math.unit(40, "miles")
  11291. },
  11292. {
  11293. name: "Megamacro+",
  11294. height: math.unit(400, "miles")
  11295. },
  11296. {
  11297. name: "Gigamacro",
  11298. height: math.unit(400000, "miles")
  11299. },
  11300. ]
  11301. ))
  11302. characterMakers.push(() => makeCharacter(
  11303. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  11304. {
  11305. side: {
  11306. height: math.unit(6, "feet"),
  11307. weight: math.unit(150, "lb"),
  11308. name: "Side",
  11309. image: {
  11310. source: "./media/characters/kimiko/side.svg",
  11311. extra: 600 / 358
  11312. }
  11313. },
  11314. },
  11315. [
  11316. {
  11317. name: "Normal",
  11318. height: math.unit(15, "feet"),
  11319. default: true
  11320. },
  11321. {
  11322. name: "Macro",
  11323. height: math.unit(220, "feet")
  11324. },
  11325. {
  11326. name: "Macro+",
  11327. height: math.unit(1450, "feet")
  11328. },
  11329. {
  11330. name: "Megamacro",
  11331. height: math.unit(11500, "feet")
  11332. },
  11333. {
  11334. name: "Gigamacro",
  11335. height: math.unit(9500, "miles")
  11336. },
  11337. {
  11338. name: "Teramacro",
  11339. height: math.unit(2208005005, "miles")
  11340. },
  11341. {
  11342. name: "Examacro",
  11343. height: math.unit(2750, "parsecs")
  11344. },
  11345. {
  11346. name: "Zettamacro",
  11347. height: math.unit(101500, "parsecs")
  11348. },
  11349. ]
  11350. ))
  11351. characterMakers.push(() => makeCharacter(
  11352. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  11353. {
  11354. front: {
  11355. height: math.unit(6, "feet"),
  11356. weight: math.unit(70, "kg"),
  11357. name: "Front",
  11358. image: {
  11359. source: "./media/characters/andrew-sleepy/front.svg"
  11360. }
  11361. },
  11362. side: {
  11363. height: math.unit(6, "feet"),
  11364. weight: math.unit(70, "kg"),
  11365. name: "Side",
  11366. image: {
  11367. source: "./media/characters/andrew-sleepy/side.svg"
  11368. }
  11369. },
  11370. },
  11371. [
  11372. {
  11373. name: "Micro",
  11374. height: math.unit(1, "mm"),
  11375. default: true
  11376. },
  11377. ]
  11378. ))
  11379. characterMakers.push(() => makeCharacter(
  11380. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  11381. {
  11382. front: {
  11383. height: math.unit(6, "feet"),
  11384. weight: math.unit(150, "lb"),
  11385. name: "Front",
  11386. image: {
  11387. source: "./media/characters/judio/front.svg",
  11388. extra: 1258 / 1110
  11389. }
  11390. },
  11391. },
  11392. [
  11393. {
  11394. name: "Normal",
  11395. height: math.unit(5 + 6 / 12, "feet")
  11396. },
  11397. {
  11398. name: "Macro",
  11399. height: math.unit(1000, "feet"),
  11400. default: true
  11401. },
  11402. {
  11403. name: "Megamacro",
  11404. height: math.unit(10, "miles")
  11405. },
  11406. ]
  11407. ))
  11408. characterMakers.push(() => makeCharacter(
  11409. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  11410. {
  11411. frontDressed: {
  11412. height: math.unit(6, "feet"),
  11413. weight: math.unit(68, "kg"),
  11414. name: "Front (Dressed)",
  11415. image: {
  11416. source: "./media/characters/nomaxice/front-dressed.svg",
  11417. extra: 1137/824,
  11418. bottom: 74/1211
  11419. }
  11420. },
  11421. frontShorts: {
  11422. height: math.unit(6, "feet"),
  11423. weight: math.unit(68, "kg"),
  11424. name: "Front (Shorts)",
  11425. image: {
  11426. source: "./media/characters/nomaxice/front-shorts.svg",
  11427. extra: 1137/824,
  11428. bottom: 74/1211
  11429. }
  11430. },
  11431. back: {
  11432. height: math.unit(6, "feet"),
  11433. weight: math.unit(68, "kg"),
  11434. name: "Back",
  11435. image: {
  11436. source: "./media/characters/nomaxice/back.svg",
  11437. extra: 822/786,
  11438. bottom: 39/861
  11439. }
  11440. },
  11441. hand: {
  11442. height: math.unit(0.565, "feet"),
  11443. name: "Hand",
  11444. image: {
  11445. source: "./media/characters/nomaxice/hand.svg"
  11446. }
  11447. },
  11448. foot: {
  11449. height: math.unit(1, "feet"),
  11450. name: "Foot",
  11451. image: {
  11452. source: "./media/characters/nomaxice/foot.svg"
  11453. }
  11454. },
  11455. },
  11456. [
  11457. {
  11458. name: "Micro",
  11459. height: math.unit(8, "cm")
  11460. },
  11461. {
  11462. name: "Norm",
  11463. height: math.unit(1.82, "m")
  11464. },
  11465. {
  11466. name: "Norm+",
  11467. height: math.unit(8.8, "feet"),
  11468. default: true
  11469. },
  11470. {
  11471. name: "Big",
  11472. height: math.unit(8, "meters")
  11473. },
  11474. {
  11475. name: "Macro",
  11476. height: math.unit(18, "meters")
  11477. },
  11478. {
  11479. name: "Macro+",
  11480. height: math.unit(88, "meters")
  11481. },
  11482. ]
  11483. ))
  11484. characterMakers.push(() => makeCharacter(
  11485. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  11486. {
  11487. front: {
  11488. height: math.unit(12, "feet"),
  11489. weight: math.unit(1.5, "tons"),
  11490. name: "Front",
  11491. image: {
  11492. source: "./media/characters/dydros/front.svg",
  11493. extra: 863 / 800,
  11494. bottom: 0.015
  11495. }
  11496. },
  11497. back: {
  11498. height: math.unit(12, "feet"),
  11499. weight: math.unit(1.5, "tons"),
  11500. name: "Back",
  11501. image: {
  11502. source: "./media/characters/dydros/back.svg",
  11503. extra: 900 / 843,
  11504. bottom: 0.005
  11505. }
  11506. },
  11507. },
  11508. [
  11509. {
  11510. name: "Normal",
  11511. height: math.unit(12, "feet"),
  11512. default: true
  11513. },
  11514. ]
  11515. ))
  11516. characterMakers.push(() => makeCharacter(
  11517. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  11518. {
  11519. front: {
  11520. height: math.unit(6, "feet"),
  11521. weight: math.unit(100, "kg"),
  11522. name: "Front",
  11523. image: {
  11524. source: "./media/characters/riggi/front.svg",
  11525. extra: 5787 / 5303
  11526. }
  11527. },
  11528. hyper: {
  11529. height: math.unit(6 * 5 / 3, "feet"),
  11530. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  11531. name: "Hyper",
  11532. image: {
  11533. source: "./media/characters/riggi/hyper.svg",
  11534. extra: 3595 / 3485
  11535. }
  11536. },
  11537. },
  11538. [
  11539. {
  11540. name: "Small Macro",
  11541. height: math.unit(50, "feet")
  11542. },
  11543. {
  11544. name: "Default",
  11545. height: math.unit(200, "feet"),
  11546. default: true
  11547. },
  11548. {
  11549. name: "Loom",
  11550. height: math.unit(10000, "feet")
  11551. },
  11552. {
  11553. name: "Cruising Altitude",
  11554. height: math.unit(30000, "feet")
  11555. },
  11556. {
  11557. name: "Megamacro",
  11558. height: math.unit(100, "miles")
  11559. },
  11560. {
  11561. name: "Continent Sized",
  11562. height: math.unit(2800, "miles")
  11563. },
  11564. {
  11565. name: "Earth Sized",
  11566. height: math.unit(8000, "miles")
  11567. },
  11568. ]
  11569. ))
  11570. characterMakers.push(() => makeCharacter(
  11571. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  11572. {
  11573. front: {
  11574. height: math.unit(6, "feet"),
  11575. weight: math.unit(250, "lb"),
  11576. name: "Front",
  11577. image: {
  11578. source: "./media/characters/alexi/front.svg",
  11579. extra: 3483 / 3291,
  11580. bottom: 0.04
  11581. }
  11582. },
  11583. back: {
  11584. height: math.unit(6, "feet"),
  11585. weight: math.unit(250, "lb"),
  11586. name: "Back",
  11587. image: {
  11588. source: "./media/characters/alexi/back.svg",
  11589. extra: 3533 / 3356,
  11590. bottom: 0.021
  11591. }
  11592. },
  11593. frontTransforming: {
  11594. height: math.unit(8.58, "feet"),
  11595. weight: math.unit(1300, "lb"),
  11596. name: "Transforming",
  11597. image: {
  11598. source: "./media/characters/alexi/front-transforming.svg",
  11599. extra: 437 / 409,
  11600. bottom: 19 / 458.66
  11601. }
  11602. },
  11603. frontTransformed: {
  11604. height: math.unit(12.5, "feet"),
  11605. weight: math.unit(4000, "lb"),
  11606. name: "Transformed",
  11607. image: {
  11608. source: "./media/characters/alexi/front-transformed.svg",
  11609. extra: 639 / 614,
  11610. bottom: 30.55 / 671
  11611. }
  11612. },
  11613. },
  11614. [
  11615. {
  11616. name: "Normal",
  11617. height: math.unit(14, "feet"),
  11618. default: true
  11619. },
  11620. {
  11621. name: "Minimacro",
  11622. height: math.unit(30, "meters")
  11623. },
  11624. {
  11625. name: "Macro",
  11626. height: math.unit(500, "meters")
  11627. },
  11628. {
  11629. name: "Megamacro",
  11630. height: math.unit(9000, "km")
  11631. },
  11632. {
  11633. name: "Teramacro",
  11634. height: math.unit(384000, "km")
  11635. },
  11636. ]
  11637. ))
  11638. characterMakers.push(() => makeCharacter(
  11639. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  11640. {
  11641. front: {
  11642. height: math.unit(6, "feet"),
  11643. weight: math.unit(150, "lb"),
  11644. name: "Front",
  11645. image: {
  11646. source: "./media/characters/kayroo/front.svg",
  11647. extra: 1153 / 1038,
  11648. bottom: 0.06
  11649. }
  11650. },
  11651. foot: {
  11652. height: math.unit(6, "feet"),
  11653. weight: math.unit(150, "lb"),
  11654. name: "Foot",
  11655. image: {
  11656. source: "./media/characters/kayroo/foot.svg"
  11657. }
  11658. },
  11659. },
  11660. [
  11661. {
  11662. name: "Normal",
  11663. height: math.unit(8, "feet"),
  11664. default: true
  11665. },
  11666. {
  11667. name: "Minimacro",
  11668. height: math.unit(250, "feet")
  11669. },
  11670. {
  11671. name: "Macro",
  11672. height: math.unit(2800, "feet")
  11673. },
  11674. {
  11675. name: "Megamacro",
  11676. height: math.unit(5200, "feet")
  11677. },
  11678. {
  11679. name: "Gigamacro",
  11680. height: math.unit(27000, "feet")
  11681. },
  11682. {
  11683. name: "Omega",
  11684. height: math.unit(45000, "feet")
  11685. },
  11686. ]
  11687. ))
  11688. characterMakers.push(() => makeCharacter(
  11689. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  11690. {
  11691. front: {
  11692. height: math.unit(18, "feet"),
  11693. weight: math.unit(5800, "lb"),
  11694. name: "Front",
  11695. image: {
  11696. source: "./media/characters/rhys/front.svg",
  11697. extra: 3386 / 3090,
  11698. bottom: 0.07
  11699. }
  11700. },
  11701. },
  11702. [
  11703. {
  11704. name: "Normal",
  11705. height: math.unit(18, "feet"),
  11706. default: true
  11707. },
  11708. {
  11709. name: "Working Size",
  11710. height: math.unit(200, "feet")
  11711. },
  11712. {
  11713. name: "Demolition Size",
  11714. height: math.unit(2000, "feet")
  11715. },
  11716. {
  11717. name: "Maximum Licensed Size",
  11718. height: math.unit(5, "miles")
  11719. },
  11720. {
  11721. name: "Maximum Observed Size",
  11722. height: math.unit(10, "yottameters")
  11723. },
  11724. ]
  11725. ))
  11726. characterMakers.push(() => makeCharacter(
  11727. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  11728. {
  11729. front: {
  11730. height: math.unit(6, "feet"),
  11731. weight: math.unit(250, "lb"),
  11732. name: "Front",
  11733. image: {
  11734. source: "./media/characters/toto/front.svg",
  11735. extra: 527 / 479,
  11736. bottom: 0.05
  11737. }
  11738. },
  11739. },
  11740. [
  11741. {
  11742. name: "Micro",
  11743. height: math.unit(3, "feet")
  11744. },
  11745. {
  11746. name: "Normal",
  11747. height: math.unit(10, "feet")
  11748. },
  11749. {
  11750. name: "Macro",
  11751. height: math.unit(150, "feet"),
  11752. default: true
  11753. },
  11754. {
  11755. name: "Megamacro",
  11756. height: math.unit(1200, "feet")
  11757. },
  11758. ]
  11759. ))
  11760. characterMakers.push(() => makeCharacter(
  11761. { name: "King", species: ["lion"], tags: ["anthro"] },
  11762. {
  11763. back: {
  11764. height: math.unit(6, "feet"),
  11765. weight: math.unit(150, "lb"),
  11766. name: "Back",
  11767. image: {
  11768. source: "./media/characters/king/back.svg"
  11769. }
  11770. },
  11771. },
  11772. [
  11773. {
  11774. name: "Micro",
  11775. height: math.unit(2, "inches")
  11776. },
  11777. {
  11778. name: "Normal",
  11779. height: math.unit(8, "feet")
  11780. },
  11781. {
  11782. name: "Macro",
  11783. height: math.unit(200, "feet"),
  11784. default: true
  11785. },
  11786. {
  11787. name: "Megamacro",
  11788. height: math.unit(50, "miles")
  11789. },
  11790. ]
  11791. ))
  11792. characterMakers.push(() => makeCharacter(
  11793. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  11794. {
  11795. front: {
  11796. height: math.unit(11, "feet"),
  11797. weight: math.unit(1400, "lb"),
  11798. name: "Front",
  11799. image: {
  11800. source: "./media/characters/cordite/front.svg",
  11801. extra: 1919/1827,
  11802. bottom: 40/1959
  11803. }
  11804. },
  11805. side: {
  11806. height: math.unit(11, "feet"),
  11807. weight: math.unit(1400, "lb"),
  11808. name: "Side",
  11809. image: {
  11810. source: "./media/characters/cordite/side.svg",
  11811. extra: 1908/1793,
  11812. bottom: 38/1946
  11813. }
  11814. },
  11815. back: {
  11816. height: math.unit(11, "feet"),
  11817. weight: math.unit(1400, "lb"),
  11818. name: "Back",
  11819. image: {
  11820. source: "./media/characters/cordite/back.svg",
  11821. extra: 1938/1837,
  11822. bottom: 10/1948
  11823. }
  11824. },
  11825. feral: {
  11826. height: math.unit(2, "feet"),
  11827. weight: math.unit(90, "lb"),
  11828. name: "Feral",
  11829. image: {
  11830. source: "./media/characters/cordite/feral.svg",
  11831. extra: 1260 / 755,
  11832. bottom: 0.05
  11833. }
  11834. },
  11835. },
  11836. [
  11837. {
  11838. name: "Normal",
  11839. height: math.unit(11, "feet"),
  11840. default: true
  11841. },
  11842. ]
  11843. ))
  11844. characterMakers.push(() => makeCharacter(
  11845. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  11846. {
  11847. front: {
  11848. height: math.unit(6, "feet"),
  11849. weight: math.unit(150, "lb"),
  11850. name: "Front",
  11851. image: {
  11852. source: "./media/characters/pianostrong/front.svg",
  11853. extra: 6577 / 6254,
  11854. bottom: 0.02
  11855. }
  11856. },
  11857. side: {
  11858. height: math.unit(6, "feet"),
  11859. weight: math.unit(150, "lb"),
  11860. name: "Side",
  11861. image: {
  11862. source: "./media/characters/pianostrong/side.svg",
  11863. extra: 6106 / 5730
  11864. }
  11865. },
  11866. back: {
  11867. height: math.unit(6, "feet"),
  11868. weight: math.unit(150, "lb"),
  11869. name: "Back",
  11870. image: {
  11871. source: "./media/characters/pianostrong/back.svg",
  11872. extra: 6085 / 5733,
  11873. bottom: 0.01
  11874. }
  11875. },
  11876. },
  11877. [
  11878. {
  11879. name: "Macro",
  11880. height: math.unit(100, "feet")
  11881. },
  11882. {
  11883. name: "Macro+",
  11884. height: math.unit(300, "feet"),
  11885. default: true
  11886. },
  11887. {
  11888. name: "Macro++",
  11889. height: math.unit(1000, "feet")
  11890. },
  11891. ]
  11892. ))
  11893. characterMakers.push(() => makeCharacter(
  11894. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  11895. {
  11896. front: {
  11897. height: math.unit(6, "feet"),
  11898. weight: math.unit(150, "lb"),
  11899. name: "Front",
  11900. image: {
  11901. source: "./media/characters/kona/front.svg",
  11902. extra: 2960 / 2629,
  11903. bottom: 0.005
  11904. }
  11905. },
  11906. },
  11907. [
  11908. {
  11909. name: "Normal",
  11910. height: math.unit(11 + 8 / 12, "feet")
  11911. },
  11912. {
  11913. name: "Macro",
  11914. height: math.unit(850, "feet"),
  11915. default: true
  11916. },
  11917. {
  11918. name: "Macro+",
  11919. height: math.unit(1.5, "km"),
  11920. default: true
  11921. },
  11922. {
  11923. name: "Megamacro",
  11924. height: math.unit(80, "miles")
  11925. },
  11926. {
  11927. name: "Gigamacro",
  11928. height: math.unit(3500, "miles")
  11929. },
  11930. ]
  11931. ))
  11932. characterMakers.push(() => makeCharacter(
  11933. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  11934. {
  11935. side: {
  11936. height: math.unit(1.9, "meters"),
  11937. weight: math.unit(326, "kg"),
  11938. name: "Side",
  11939. image: {
  11940. source: "./media/characters/levi/side.svg",
  11941. extra: 1704 / 1334,
  11942. bottom: 0.02
  11943. }
  11944. },
  11945. },
  11946. [
  11947. {
  11948. name: "Normal",
  11949. height: math.unit(1.9, "meters"),
  11950. default: true
  11951. },
  11952. {
  11953. name: "Macro",
  11954. height: math.unit(20, "meters")
  11955. },
  11956. {
  11957. name: "Macro+",
  11958. height: math.unit(200, "meters")
  11959. },
  11960. {
  11961. name: "Megamacro",
  11962. height: math.unit(2, "km")
  11963. },
  11964. {
  11965. name: "Megamacro+",
  11966. height: math.unit(20, "km")
  11967. },
  11968. {
  11969. name: "Gigamacro",
  11970. height: math.unit(2500, "km")
  11971. },
  11972. {
  11973. name: "Gigamacro+",
  11974. height: math.unit(120000, "km")
  11975. },
  11976. {
  11977. name: "Teramacro",
  11978. height: math.unit(7.77e6, "km")
  11979. },
  11980. ]
  11981. ))
  11982. characterMakers.push(() => makeCharacter(
  11983. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  11984. {
  11985. front: {
  11986. height: math.unit(6 + 4/12, "feet"),
  11987. weight: math.unit(190, "lb"),
  11988. name: "Front",
  11989. image: {
  11990. source: "./media/characters/bmc/front.svg",
  11991. extra: 1626/1472,
  11992. bottom: 79/1705
  11993. }
  11994. },
  11995. back: {
  11996. height: math.unit(6 + 4/12, "feet"),
  11997. weight: math.unit(190, "lb"),
  11998. name: "Back",
  11999. image: {
  12000. source: "./media/characters/bmc/back.svg",
  12001. extra: 1640/1479,
  12002. bottom: 45/1685
  12003. }
  12004. },
  12005. frontArmor: {
  12006. height: math.unit(6 + 4/12, "feet"),
  12007. weight: math.unit(190, "lb"),
  12008. name: "Front-armor",
  12009. image: {
  12010. source: "./media/characters/bmc/front-armor.svg",
  12011. extra: 1538/1468,
  12012. bottom: 79/1617
  12013. }
  12014. },
  12015. },
  12016. [
  12017. {
  12018. name: "Human-sized",
  12019. height: math.unit(6 + 4 / 12, "feet")
  12020. },
  12021. {
  12022. name: "Interactive Size",
  12023. height: math.unit(25, "feet")
  12024. },
  12025. {
  12026. name: "Small",
  12027. height: math.unit(250, "feet")
  12028. },
  12029. {
  12030. name: "Normal",
  12031. height: math.unit(1250, "feet"),
  12032. default: true
  12033. },
  12034. {
  12035. name: "Good Day",
  12036. height: math.unit(88, "miles")
  12037. },
  12038. {
  12039. name: "Largest Measured Size",
  12040. height: math.unit(105.960, "galaxies")
  12041. },
  12042. ]
  12043. ))
  12044. characterMakers.push(() => makeCharacter(
  12045. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  12046. {
  12047. front: {
  12048. height: math.unit(20, "feet"),
  12049. weight: math.unit(2016, "kg"),
  12050. name: "Front",
  12051. image: {
  12052. source: "./media/characters/sven-the-kaiju/front.svg",
  12053. extra: 1277/1250,
  12054. bottom: 35/1312
  12055. }
  12056. },
  12057. mouth: {
  12058. height: math.unit(1.85, "feet"),
  12059. name: "Mouth",
  12060. image: {
  12061. source: "./media/characters/sven-the-kaiju/mouth.svg"
  12062. }
  12063. },
  12064. },
  12065. [
  12066. {
  12067. name: "Fairy",
  12068. height: math.unit(6, "inches")
  12069. },
  12070. {
  12071. name: "Normal",
  12072. height: math.unit(20, "feet"),
  12073. default: true
  12074. },
  12075. {
  12076. name: "Rampage",
  12077. height: math.unit(200, "feet")
  12078. },
  12079. {
  12080. name: "Archfey Forest Guardian",
  12081. height: math.unit(1, "mile")
  12082. },
  12083. ]
  12084. ))
  12085. characterMakers.push(() => makeCharacter(
  12086. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  12087. {
  12088. front: {
  12089. height: math.unit(4, "meters"),
  12090. weight: math.unit(2, "tons"),
  12091. name: "Front",
  12092. image: {
  12093. source: "./media/characters/marik/front.svg",
  12094. extra: 1057 / 1003,
  12095. bottom: 0.08
  12096. }
  12097. },
  12098. },
  12099. [
  12100. {
  12101. name: "Normal",
  12102. height: math.unit(4, "meters"),
  12103. default: true
  12104. },
  12105. {
  12106. name: "Macro",
  12107. height: math.unit(20, "meters")
  12108. },
  12109. {
  12110. name: "Megamacro",
  12111. height: math.unit(50, "km")
  12112. },
  12113. {
  12114. name: "Gigamacro",
  12115. height: math.unit(100, "km")
  12116. },
  12117. {
  12118. name: "Alpha Macro",
  12119. height: math.unit(7.88e7, "yottameters")
  12120. },
  12121. ]
  12122. ))
  12123. characterMakers.push(() => makeCharacter(
  12124. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  12125. {
  12126. front: {
  12127. height: math.unit(6, "feet"),
  12128. weight: math.unit(110, "lb"),
  12129. name: "Front",
  12130. image: {
  12131. source: "./media/characters/mel/front.svg",
  12132. extra: 736 / 617,
  12133. bottom: 0.017
  12134. }
  12135. },
  12136. },
  12137. [
  12138. {
  12139. name: "Pico",
  12140. height: math.unit(3, "pm")
  12141. },
  12142. {
  12143. name: "Nano",
  12144. height: math.unit(3, "nm")
  12145. },
  12146. {
  12147. name: "Micro",
  12148. height: math.unit(0.3, "mm"),
  12149. default: true
  12150. },
  12151. {
  12152. name: "Micro+",
  12153. height: math.unit(3, "mm")
  12154. },
  12155. {
  12156. name: "Normal",
  12157. height: math.unit(5 + 10.5 / 12, "feet")
  12158. },
  12159. ]
  12160. ))
  12161. characterMakers.push(() => makeCharacter(
  12162. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  12163. {
  12164. kaiju: {
  12165. height: math.unit(1.75, "meters"),
  12166. weight: math.unit(55, "kg"),
  12167. name: "Kaiju",
  12168. image: {
  12169. source: "./media/characters/lykonous/kaiju.svg",
  12170. extra: 1055 / 946,
  12171. bottom: 0.135
  12172. }
  12173. },
  12174. },
  12175. [
  12176. {
  12177. name: "Normal",
  12178. height: math.unit(2.5, "meters"),
  12179. default: true
  12180. },
  12181. {
  12182. name: "Kaiju Dragon",
  12183. height: math.unit(60, "meters")
  12184. },
  12185. {
  12186. name: "Mega Kaiju",
  12187. height: math.unit(120, "km")
  12188. },
  12189. {
  12190. name: "Giga Kaiju",
  12191. height: math.unit(200, "megameters")
  12192. },
  12193. {
  12194. name: "Terra Kaiju",
  12195. height: math.unit(400, "gigameters")
  12196. },
  12197. {
  12198. name: "Kaiju Dragon God",
  12199. height: math.unit(13000, "exaparsecs")
  12200. },
  12201. ]
  12202. ))
  12203. characterMakers.push(() => makeCharacter(
  12204. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  12205. {
  12206. front: {
  12207. height: math.unit(6, "feet"),
  12208. weight: math.unit(150, "lb"),
  12209. name: "Front",
  12210. image: {
  12211. source: "./media/characters/blü/front.svg",
  12212. extra: 1883 / 1564,
  12213. bottom: 0.031
  12214. }
  12215. },
  12216. },
  12217. [
  12218. {
  12219. name: "Normal",
  12220. height: math.unit(13, "feet"),
  12221. default: true
  12222. },
  12223. {
  12224. name: "Big Boi",
  12225. height: math.unit(150, "meters")
  12226. },
  12227. {
  12228. name: "Mini Stomper",
  12229. height: math.unit(300, "meters")
  12230. },
  12231. {
  12232. name: "Macro",
  12233. height: math.unit(1000, "meters")
  12234. },
  12235. {
  12236. name: "Megamacro",
  12237. height: math.unit(11000, "meters")
  12238. },
  12239. {
  12240. name: "Gigamacro",
  12241. height: math.unit(11000, "km")
  12242. },
  12243. {
  12244. name: "Teramacro",
  12245. height: math.unit(420000, "km")
  12246. },
  12247. {
  12248. name: "Examacro",
  12249. height: math.unit(120, "parsecs")
  12250. },
  12251. {
  12252. name: "God Tho",
  12253. height: math.unit(98000000000, "parsecs")
  12254. },
  12255. ]
  12256. ))
  12257. characterMakers.push(() => makeCharacter(
  12258. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  12259. {
  12260. taurFront: {
  12261. height: math.unit(6, "feet"),
  12262. weight: math.unit(200, "lb"),
  12263. name: "Taur (Front)",
  12264. image: {
  12265. source: "./media/characters/scales/taur-front.svg",
  12266. extra: 1,
  12267. bottom: 0.05
  12268. }
  12269. },
  12270. taurBack: {
  12271. height: math.unit(6, "feet"),
  12272. weight: math.unit(200, "lb"),
  12273. name: "Taur (Back)",
  12274. image: {
  12275. source: "./media/characters/scales/taur-back.svg",
  12276. extra: 1,
  12277. bottom: 0.08
  12278. }
  12279. },
  12280. anthro: {
  12281. height: math.unit(6 * 7 / 12, "feet"),
  12282. weight: math.unit(100, "lb"),
  12283. name: "Anthro",
  12284. image: {
  12285. source: "./media/characters/scales/anthro.svg",
  12286. extra: 1,
  12287. bottom: 0.06
  12288. }
  12289. },
  12290. },
  12291. [
  12292. {
  12293. name: "Normal",
  12294. height: math.unit(12, "feet"),
  12295. default: true
  12296. },
  12297. ]
  12298. ))
  12299. characterMakers.push(() => makeCharacter(
  12300. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  12301. {
  12302. front: {
  12303. height: math.unit(6, "feet"),
  12304. weight: math.unit(150, "lb"),
  12305. name: "Front",
  12306. image: {
  12307. source: "./media/characters/koragos/front.svg",
  12308. extra: 841 / 794,
  12309. bottom: 0.035
  12310. }
  12311. },
  12312. back: {
  12313. height: math.unit(6, "feet"),
  12314. weight: math.unit(150, "lb"),
  12315. name: "Back",
  12316. image: {
  12317. source: "./media/characters/koragos/back.svg",
  12318. extra: 841 / 810,
  12319. bottom: 0.022
  12320. }
  12321. },
  12322. },
  12323. [
  12324. {
  12325. name: "Normal",
  12326. height: math.unit(6 + 11 / 12, "feet"),
  12327. default: true
  12328. },
  12329. {
  12330. name: "Macro",
  12331. height: math.unit(490, "feet")
  12332. },
  12333. {
  12334. name: "Megamacro",
  12335. height: math.unit(10, "miles")
  12336. },
  12337. {
  12338. name: "Gigamacro",
  12339. height: math.unit(50, "miles")
  12340. },
  12341. ]
  12342. ))
  12343. characterMakers.push(() => makeCharacter(
  12344. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  12345. {
  12346. front: {
  12347. height: math.unit(6, "feet"),
  12348. weight: math.unit(250, "lb"),
  12349. name: "Front",
  12350. image: {
  12351. source: "./media/characters/xylrem/front.svg",
  12352. extra: 3323 / 3050,
  12353. bottom: 0.065
  12354. }
  12355. },
  12356. },
  12357. [
  12358. {
  12359. name: "Micro",
  12360. height: math.unit(4, "feet")
  12361. },
  12362. {
  12363. name: "Normal",
  12364. height: math.unit(16, "feet"),
  12365. default: true
  12366. },
  12367. {
  12368. name: "Macro",
  12369. height: math.unit(2720, "feet")
  12370. },
  12371. {
  12372. name: "Megamacro",
  12373. height: math.unit(25000, "miles")
  12374. },
  12375. ]
  12376. ))
  12377. characterMakers.push(() => makeCharacter(
  12378. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  12379. {
  12380. front: {
  12381. height: math.unit(8, "feet"),
  12382. weight: math.unit(250, "kg"),
  12383. name: "Front",
  12384. image: {
  12385. source: "./media/characters/ikideru/front.svg",
  12386. extra: 930 / 870,
  12387. bottom: 0.087
  12388. }
  12389. },
  12390. back: {
  12391. height: math.unit(8, "feet"),
  12392. weight: math.unit(250, "kg"),
  12393. name: "Back",
  12394. image: {
  12395. source: "./media/characters/ikideru/back.svg",
  12396. extra: 919 / 852,
  12397. bottom: 0.055
  12398. }
  12399. },
  12400. },
  12401. [
  12402. {
  12403. name: "Rare",
  12404. height: math.unit(8, "feet"),
  12405. default: true
  12406. },
  12407. {
  12408. name: "Playful Loom",
  12409. height: math.unit(80, "feet")
  12410. },
  12411. {
  12412. name: "City Leaner",
  12413. height: math.unit(230, "feet")
  12414. },
  12415. {
  12416. name: "Megamacro",
  12417. height: math.unit(2500, "feet")
  12418. },
  12419. {
  12420. name: "Gigamacro",
  12421. height: math.unit(26400, "feet")
  12422. },
  12423. {
  12424. name: "Tectonic Shifter",
  12425. height: math.unit(1.7, "megameters")
  12426. },
  12427. {
  12428. name: "Planet Carer",
  12429. height: math.unit(21, "megameters")
  12430. },
  12431. {
  12432. name: "God",
  12433. height: math.unit(11157.22, "parsecs")
  12434. },
  12435. ]
  12436. ))
  12437. characterMakers.push(() => makeCharacter(
  12438. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  12439. {
  12440. front: {
  12441. height: math.unit(6, "feet"),
  12442. weight: math.unit(120, "lb"),
  12443. name: "Front",
  12444. image: {
  12445. source: "./media/characters/neo/front.svg"
  12446. }
  12447. },
  12448. },
  12449. [
  12450. {
  12451. name: "Micro",
  12452. height: math.unit(2, "inches"),
  12453. default: true
  12454. },
  12455. {
  12456. name: "Human Size",
  12457. height: math.unit(5 + 8 / 12, "feet")
  12458. },
  12459. ]
  12460. ))
  12461. characterMakers.push(() => makeCharacter(
  12462. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  12463. {
  12464. front: {
  12465. height: math.unit(13 + 10 / 12, "feet"),
  12466. weight: math.unit(5320, "lb"),
  12467. name: "Front",
  12468. image: {
  12469. source: "./media/characters/chauncey-chantz/front.svg",
  12470. extra: 1587 / 1435,
  12471. bottom: 0.02
  12472. }
  12473. },
  12474. },
  12475. [
  12476. {
  12477. name: "Normal",
  12478. height: math.unit(13 + 10 / 12, "feet"),
  12479. default: true
  12480. },
  12481. {
  12482. name: "Macro",
  12483. height: math.unit(45, "feet")
  12484. },
  12485. {
  12486. name: "Megamacro",
  12487. height: math.unit(250, "miles")
  12488. },
  12489. {
  12490. name: "Planetary",
  12491. height: math.unit(10000, "miles")
  12492. },
  12493. {
  12494. name: "Galactic",
  12495. height: math.unit(40000, "parsecs")
  12496. },
  12497. {
  12498. name: "Universal",
  12499. height: math.unit(1, "yottameter")
  12500. },
  12501. ]
  12502. ))
  12503. characterMakers.push(() => makeCharacter(
  12504. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  12505. {
  12506. front: {
  12507. height: math.unit(6, "feet"),
  12508. weight: math.unit(150, "lb"),
  12509. name: "Front",
  12510. image: {
  12511. source: "./media/characters/epifox/front.svg",
  12512. extra: 1,
  12513. bottom: 0.075
  12514. }
  12515. },
  12516. },
  12517. [
  12518. {
  12519. name: "Micro",
  12520. height: math.unit(6, "inches")
  12521. },
  12522. {
  12523. name: "Normal",
  12524. height: math.unit(12, "feet"),
  12525. default: true
  12526. },
  12527. {
  12528. name: "Macro",
  12529. height: math.unit(3810, "feet")
  12530. },
  12531. {
  12532. name: "Megamacro",
  12533. height: math.unit(500, "miles")
  12534. },
  12535. ]
  12536. ))
  12537. characterMakers.push(() => makeCharacter(
  12538. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  12539. {
  12540. front: {
  12541. height: math.unit(1.8796, "m"),
  12542. weight: math.unit(230, "lb"),
  12543. name: "Front",
  12544. image: {
  12545. source: "./media/characters/colin-t/front.svg",
  12546. extra: 1272 / 1193,
  12547. bottom: 0.07
  12548. }
  12549. },
  12550. },
  12551. [
  12552. {
  12553. name: "Micro",
  12554. height: math.unit(0.571, "meters")
  12555. },
  12556. {
  12557. name: "Normal",
  12558. height: math.unit(1.8796, "meters"),
  12559. default: true
  12560. },
  12561. {
  12562. name: "Tall",
  12563. height: math.unit(4, "meters")
  12564. },
  12565. {
  12566. name: "Macro",
  12567. height: math.unit(67.241, "meters")
  12568. },
  12569. {
  12570. name: "Megamacro",
  12571. height: math.unit(371.856, "meters")
  12572. },
  12573. {
  12574. name: "Planetary",
  12575. height: math.unit(12631.5689, "km")
  12576. },
  12577. ]
  12578. ))
  12579. characterMakers.push(() => makeCharacter(
  12580. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  12581. {
  12582. front: {
  12583. height: math.unit(1.85, "meters"),
  12584. weight: math.unit(80, "kg"),
  12585. name: "Front",
  12586. image: {
  12587. source: "./media/characters/matvei/front.svg",
  12588. extra: 614 / 594,
  12589. bottom: 0.01
  12590. }
  12591. },
  12592. },
  12593. [
  12594. {
  12595. name: "Normal",
  12596. height: math.unit(1.85, "meters"),
  12597. default: true
  12598. },
  12599. ]
  12600. ))
  12601. characterMakers.push(() => makeCharacter(
  12602. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  12603. {
  12604. front: {
  12605. height: math.unit(5 + 9 / 12, "feet"),
  12606. weight: math.unit(70, "lb"),
  12607. name: "Front",
  12608. image: {
  12609. source: "./media/characters/quincy/front.svg",
  12610. extra: 3041 / 2751
  12611. }
  12612. },
  12613. back: {
  12614. height: math.unit(5 + 9 / 12, "feet"),
  12615. weight: math.unit(70, "lb"),
  12616. name: "Back",
  12617. image: {
  12618. source: "./media/characters/quincy/back.svg",
  12619. extra: 3041 / 2751
  12620. }
  12621. },
  12622. flying: {
  12623. height: math.unit(5 + 4 / 12, "feet"),
  12624. weight: math.unit(70, "lb"),
  12625. name: "Flying",
  12626. image: {
  12627. source: "./media/characters/quincy/flying.svg",
  12628. extra: 1044 / 930
  12629. }
  12630. },
  12631. },
  12632. [
  12633. {
  12634. name: "Micro",
  12635. height: math.unit(3, "cm")
  12636. },
  12637. {
  12638. name: "Normal",
  12639. height: math.unit(5 + 9 / 12, "feet")
  12640. },
  12641. {
  12642. name: "Macro",
  12643. height: math.unit(200, "meters"),
  12644. default: true
  12645. },
  12646. {
  12647. name: "Megamacro",
  12648. height: math.unit(1000, "meters")
  12649. },
  12650. ]
  12651. ))
  12652. characterMakers.push(() => makeCharacter(
  12653. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  12654. {
  12655. front: {
  12656. height: math.unit(3 + 11/12, "feet"),
  12657. weight: math.unit(50, "lb"),
  12658. name: "Front",
  12659. image: {
  12660. source: "./media/characters/vanrel/front.svg",
  12661. extra: 1104/949,
  12662. bottom: 52/1156
  12663. }
  12664. },
  12665. back: {
  12666. height: math.unit(3 + 11/12, "feet"),
  12667. weight: math.unit(50, "lb"),
  12668. name: "Back",
  12669. image: {
  12670. source: "./media/characters/vanrel/back.svg",
  12671. extra: 1119/976,
  12672. bottom: 37/1156
  12673. }
  12674. },
  12675. tome: {
  12676. height: math.unit(1.35, "feet"),
  12677. weight: math.unit(10, "lb"),
  12678. name: "Vanrel's Tome",
  12679. rename: true,
  12680. image: {
  12681. source: "./media/characters/vanrel/tome.svg"
  12682. }
  12683. },
  12684. beans: {
  12685. height: math.unit(0.89, "feet"),
  12686. name: "Beans",
  12687. image: {
  12688. source: "./media/characters/vanrel/beans.svg"
  12689. }
  12690. },
  12691. },
  12692. [
  12693. {
  12694. name: "Normal",
  12695. height: math.unit(3 + 11/12, "feet"),
  12696. default: true
  12697. },
  12698. ]
  12699. ))
  12700. characterMakers.push(() => makeCharacter(
  12701. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  12702. {
  12703. front: {
  12704. height: math.unit(7 + 5 / 12, "feet"),
  12705. name: "Front",
  12706. image: {
  12707. source: "./media/characters/kuiper-vanrel/front.svg",
  12708. extra: 1219/1169,
  12709. bottom: 69/1288
  12710. }
  12711. },
  12712. back: {
  12713. height: math.unit(7 + 5 / 12, "feet"),
  12714. name: "Back",
  12715. image: {
  12716. source: "./media/characters/kuiper-vanrel/back.svg",
  12717. extra: 1236/1193,
  12718. bottom: 27/1263
  12719. }
  12720. },
  12721. foot: {
  12722. height: math.unit(0.55, "meters"),
  12723. name: "Foot",
  12724. image: {
  12725. source: "./media/characters/kuiper-vanrel/foot.svg",
  12726. }
  12727. },
  12728. battle: {
  12729. height: math.unit(6.824, "feet"),
  12730. name: "Battle",
  12731. image: {
  12732. source: "./media/characters/kuiper-vanrel/battle.svg",
  12733. extra: 1466 / 1327,
  12734. bottom: 29 / 1492.5
  12735. }
  12736. },
  12737. meerkui: {
  12738. height: math.unit(18, "inches"),
  12739. name: "Meerkui",
  12740. image: {
  12741. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  12742. extra: 1354/1289,
  12743. bottom: 69/1423
  12744. }
  12745. },
  12746. },
  12747. [
  12748. {
  12749. name: "Normal",
  12750. height: math.unit(7 + 5 / 12, "feet"),
  12751. default: true
  12752. },
  12753. ]
  12754. ))
  12755. characterMakers.push(() => makeCharacter(
  12756. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  12757. {
  12758. front: {
  12759. height: math.unit(8 + 5 / 12, "feet"),
  12760. name: "Front",
  12761. image: {
  12762. source: "./media/characters/keset-vanrel/front.svg",
  12763. extra: 1231/1148,
  12764. bottom: 82/1313
  12765. }
  12766. },
  12767. back: {
  12768. height: math.unit(8 + 5 / 12, "feet"),
  12769. name: "Back",
  12770. image: {
  12771. source: "./media/characters/keset-vanrel/back.svg",
  12772. extra: 1240/1174,
  12773. bottom: 33/1273
  12774. }
  12775. },
  12776. hand: {
  12777. height: math.unit(0.6, "meters"),
  12778. name: "Hand",
  12779. image: {
  12780. source: "./media/characters/keset-vanrel/hand.svg"
  12781. }
  12782. },
  12783. foot: {
  12784. height: math.unit(0.94978, "meters"),
  12785. name: "Foot",
  12786. image: {
  12787. source: "./media/characters/keset-vanrel/foot.svg"
  12788. }
  12789. },
  12790. battle: {
  12791. height: math.unit(7.408, "feet"),
  12792. name: "Battle",
  12793. image: {
  12794. source: "./media/characters/keset-vanrel/battle.svg",
  12795. extra: 1890 / 1386,
  12796. bottom: 73.28 / 1970
  12797. }
  12798. },
  12799. },
  12800. [
  12801. {
  12802. name: "Normal",
  12803. height: math.unit(8 + 5 / 12, "feet"),
  12804. default: true
  12805. },
  12806. ]
  12807. ))
  12808. characterMakers.push(() => makeCharacter(
  12809. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  12810. {
  12811. front: {
  12812. height: math.unit(6, "feet"),
  12813. weight: math.unit(150, "lb"),
  12814. name: "Front",
  12815. image: {
  12816. source: "./media/characters/neos/front.svg",
  12817. extra: 1696 / 992,
  12818. bottom: 0.14
  12819. }
  12820. },
  12821. },
  12822. [
  12823. {
  12824. name: "Normal",
  12825. height: math.unit(54, "cm"),
  12826. default: true
  12827. },
  12828. {
  12829. name: "Macro",
  12830. height: math.unit(100, "m")
  12831. },
  12832. {
  12833. name: "Megamacro",
  12834. height: math.unit(10, "km")
  12835. },
  12836. {
  12837. name: "Megamacro+",
  12838. height: math.unit(100, "km")
  12839. },
  12840. {
  12841. name: "Gigamacro",
  12842. height: math.unit(100, "Mm")
  12843. },
  12844. {
  12845. name: "Teramacro",
  12846. height: math.unit(100, "Gm")
  12847. },
  12848. {
  12849. name: "Examacro",
  12850. height: math.unit(100, "Em")
  12851. },
  12852. {
  12853. name: "Godly",
  12854. height: math.unit(10000, "Ym")
  12855. },
  12856. {
  12857. name: "Beyond Godly",
  12858. height: math.unit(25, "multiverses")
  12859. },
  12860. ]
  12861. ))
  12862. characterMakers.push(() => makeCharacter(
  12863. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  12864. {
  12865. feminine: {
  12866. height: math.unit(5, "feet"),
  12867. weight: math.unit(100, "lb"),
  12868. name: "Feminine",
  12869. image: {
  12870. source: "./media/characters/sammy-mouse/feminine.svg",
  12871. extra: 2526 / 2425,
  12872. bottom: 0.123
  12873. }
  12874. },
  12875. masculine: {
  12876. height: math.unit(5, "feet"),
  12877. weight: math.unit(100, "lb"),
  12878. name: "Masculine",
  12879. image: {
  12880. source: "./media/characters/sammy-mouse/masculine.svg",
  12881. extra: 2526 / 2425,
  12882. bottom: 0.123
  12883. }
  12884. },
  12885. },
  12886. [
  12887. {
  12888. name: "Micro",
  12889. height: math.unit(5, "inches")
  12890. },
  12891. {
  12892. name: "Normal",
  12893. height: math.unit(5, "feet"),
  12894. default: true
  12895. },
  12896. {
  12897. name: "Macro",
  12898. height: math.unit(60, "feet")
  12899. },
  12900. ]
  12901. ))
  12902. characterMakers.push(() => makeCharacter(
  12903. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  12904. {
  12905. front: {
  12906. height: math.unit(4, "feet"),
  12907. weight: math.unit(50, "lb"),
  12908. name: "Front",
  12909. image: {
  12910. source: "./media/characters/kole/front.svg",
  12911. extra: 1423 / 1303,
  12912. bottom: 0.025
  12913. }
  12914. },
  12915. back: {
  12916. height: math.unit(4, "feet"),
  12917. weight: math.unit(50, "lb"),
  12918. name: "Back",
  12919. image: {
  12920. source: "./media/characters/kole/back.svg",
  12921. extra: 1426 / 1280,
  12922. bottom: 0.02
  12923. }
  12924. },
  12925. },
  12926. [
  12927. {
  12928. name: "Normal",
  12929. height: math.unit(4, "feet"),
  12930. default: true
  12931. },
  12932. ]
  12933. ))
  12934. characterMakers.push(() => makeCharacter(
  12935. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  12936. {
  12937. front: {
  12938. height: math.unit(2.5, "feet"),
  12939. weight: math.unit(32, "lb"),
  12940. name: "Front",
  12941. image: {
  12942. source: "./media/characters/rufran/front.svg",
  12943. extra: 1313/885,
  12944. bottom: 94/1407
  12945. }
  12946. },
  12947. side: {
  12948. height: math.unit(2.5, "feet"),
  12949. weight: math.unit(32, "lb"),
  12950. name: "Side",
  12951. image: {
  12952. source: "./media/characters/rufran/side.svg",
  12953. extra: 1109/852,
  12954. bottom: 118/1227
  12955. }
  12956. },
  12957. back: {
  12958. height: math.unit(2.5, "feet"),
  12959. weight: math.unit(32, "lb"),
  12960. name: "Back",
  12961. image: {
  12962. source: "./media/characters/rufran/back.svg",
  12963. extra: 1280/878,
  12964. bottom: 131/1411
  12965. }
  12966. },
  12967. mouth: {
  12968. height: math.unit(1.13, "feet"),
  12969. name: "Mouth",
  12970. image: {
  12971. source: "./media/characters/rufran/mouth.svg"
  12972. }
  12973. },
  12974. foot: {
  12975. height: math.unit(1.33, "feet"),
  12976. name: "Foot",
  12977. image: {
  12978. source: "./media/characters/rufran/foot.svg"
  12979. }
  12980. },
  12981. koboldFront: {
  12982. height: math.unit(2 + 6 / 12, "feet"),
  12983. weight: math.unit(20, "lb"),
  12984. name: "Front (Kobold)",
  12985. image: {
  12986. source: "./media/characters/rufran/kobold-front.svg",
  12987. extra: 2041 / 1839,
  12988. bottom: 0.055
  12989. }
  12990. },
  12991. koboldBack: {
  12992. height: math.unit(2 + 6 / 12, "feet"),
  12993. weight: math.unit(20, "lb"),
  12994. name: "Back (Kobold)",
  12995. image: {
  12996. source: "./media/characters/rufran/kobold-back.svg",
  12997. extra: 2054 / 1839,
  12998. bottom: 0.01
  12999. }
  13000. },
  13001. koboldHand: {
  13002. height: math.unit(0.2166, "meters"),
  13003. name: "Hand (Kobold)",
  13004. image: {
  13005. source: "./media/characters/rufran/kobold-hand.svg"
  13006. }
  13007. },
  13008. koboldFoot: {
  13009. height: math.unit(0.185, "meters"),
  13010. name: "Foot (Kobold)",
  13011. image: {
  13012. source: "./media/characters/rufran/kobold-foot.svg"
  13013. }
  13014. },
  13015. },
  13016. [
  13017. {
  13018. name: "Micro",
  13019. height: math.unit(1, "inch")
  13020. },
  13021. {
  13022. name: "Normal",
  13023. height: math.unit(2 + 6 / 12, "feet"),
  13024. default: true
  13025. },
  13026. {
  13027. name: "Big",
  13028. height: math.unit(60, "feet")
  13029. },
  13030. {
  13031. name: "Macro",
  13032. height: math.unit(325, "feet")
  13033. },
  13034. ]
  13035. ))
  13036. characterMakers.push(() => makeCharacter(
  13037. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  13038. {
  13039. front: {
  13040. height: math.unit(0.3, "meters"),
  13041. weight: math.unit(3.5, "kg"),
  13042. name: "Front",
  13043. image: {
  13044. source: "./media/characters/chip/front.svg",
  13045. extra: 748 / 674
  13046. }
  13047. },
  13048. },
  13049. [
  13050. {
  13051. name: "Micro",
  13052. height: math.unit(1, "inch"),
  13053. default: true
  13054. },
  13055. ]
  13056. ))
  13057. characterMakers.push(() => makeCharacter(
  13058. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  13059. {
  13060. side: {
  13061. height: math.unit(2.3, "meters"),
  13062. weight: math.unit(3500, "lb"),
  13063. name: "Side",
  13064. image: {
  13065. source: "./media/characters/torvid/side.svg",
  13066. extra: 1972 / 722,
  13067. bottom: 0.035
  13068. }
  13069. },
  13070. },
  13071. [
  13072. {
  13073. name: "Normal",
  13074. height: math.unit(2.3, "meters"),
  13075. default: true
  13076. },
  13077. ]
  13078. ))
  13079. characterMakers.push(() => makeCharacter(
  13080. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  13081. {
  13082. front: {
  13083. height: math.unit(2, "meters"),
  13084. weight: math.unit(150.5, "kg"),
  13085. name: "Front",
  13086. image: {
  13087. source: "./media/characters/susan/front.svg",
  13088. extra: 693 / 635,
  13089. bottom: 0.05
  13090. }
  13091. },
  13092. },
  13093. [
  13094. {
  13095. name: "Megamacro",
  13096. height: math.unit(505, "miles"),
  13097. default: true
  13098. },
  13099. ]
  13100. ))
  13101. characterMakers.push(() => makeCharacter(
  13102. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  13103. {
  13104. front: {
  13105. height: math.unit(6, "feet"),
  13106. weight: math.unit(150, "lb"),
  13107. name: "Front",
  13108. image: {
  13109. source: "./media/characters/raindrops/front.svg",
  13110. extra: 2655 / 2461,
  13111. bottom: 49 / 2705
  13112. }
  13113. },
  13114. back: {
  13115. height: math.unit(6, "feet"),
  13116. weight: math.unit(150, "lb"),
  13117. name: "Back",
  13118. image: {
  13119. source: "./media/characters/raindrops/back.svg",
  13120. extra: 2574 / 2400,
  13121. bottom: 65 / 2634
  13122. }
  13123. },
  13124. },
  13125. [
  13126. {
  13127. name: "Micro",
  13128. height: math.unit(6, "inches")
  13129. },
  13130. {
  13131. name: "Normal",
  13132. height: math.unit(6 + 2 / 12, "feet")
  13133. },
  13134. {
  13135. name: "Macro",
  13136. height: math.unit(131, "feet"),
  13137. default: true
  13138. },
  13139. {
  13140. name: "Megamacro",
  13141. height: math.unit(15, "miles")
  13142. },
  13143. {
  13144. name: "Gigamacro",
  13145. height: math.unit(4000, "miles")
  13146. },
  13147. {
  13148. name: "Teramacro",
  13149. height: math.unit(315000, "miles")
  13150. },
  13151. ]
  13152. ))
  13153. characterMakers.push(() => makeCharacter(
  13154. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  13155. {
  13156. front: {
  13157. height: math.unit(2.794, "meters"),
  13158. weight: math.unit(325, "kg"),
  13159. name: "Front",
  13160. image: {
  13161. source: "./media/characters/tezwa/front.svg",
  13162. extra: 2083 / 1906,
  13163. bottom: 0.031
  13164. }
  13165. },
  13166. foot: {
  13167. height: math.unit(0.687, "meters"),
  13168. name: "Foot",
  13169. image: {
  13170. source: "./media/characters/tezwa/foot.svg"
  13171. }
  13172. },
  13173. },
  13174. [
  13175. {
  13176. name: "Normal",
  13177. height: math.unit(9 + 2 / 12, "feet"),
  13178. default: true
  13179. },
  13180. ]
  13181. ))
  13182. characterMakers.push(() => makeCharacter(
  13183. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  13184. {
  13185. front: {
  13186. height: math.unit(58, "feet"),
  13187. weight: math.unit(89000, "lb"),
  13188. name: "Front",
  13189. image: {
  13190. source: "./media/characters/typhus/front.svg",
  13191. extra: 816 / 800,
  13192. bottom: 0.065
  13193. }
  13194. },
  13195. },
  13196. [
  13197. {
  13198. name: "Macro",
  13199. height: math.unit(58, "feet"),
  13200. default: true
  13201. },
  13202. ]
  13203. ))
  13204. characterMakers.push(() => makeCharacter(
  13205. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  13206. {
  13207. front: {
  13208. height: math.unit(12, "feet"),
  13209. weight: math.unit(6, "tonnes"),
  13210. name: "Front",
  13211. image: {
  13212. source: "./media/characters/lyra-von-wulf/front.svg",
  13213. extra: 1,
  13214. bottom: 0.10
  13215. }
  13216. },
  13217. frontMecha: {
  13218. height: math.unit(12, "feet"),
  13219. weight: math.unit(12, "tonnes"),
  13220. name: "Front (Mecha)",
  13221. image: {
  13222. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  13223. extra: 1,
  13224. bottom: 0.042
  13225. }
  13226. },
  13227. maw: {
  13228. height: math.unit(2.2, "feet"),
  13229. name: "Maw",
  13230. image: {
  13231. source: "./media/characters/lyra-von-wulf/maw.svg"
  13232. }
  13233. },
  13234. },
  13235. [
  13236. {
  13237. name: "Normal",
  13238. height: math.unit(12, "feet"),
  13239. default: true
  13240. },
  13241. {
  13242. name: "Classic",
  13243. height: math.unit(50, "feet")
  13244. },
  13245. {
  13246. name: "Macro",
  13247. height: math.unit(500, "feet")
  13248. },
  13249. {
  13250. name: "Megamacro",
  13251. height: math.unit(1, "mile")
  13252. },
  13253. {
  13254. name: "Gigamacro",
  13255. height: math.unit(400, "miles")
  13256. },
  13257. {
  13258. name: "Teramacro",
  13259. height: math.unit(22000, "miles")
  13260. },
  13261. {
  13262. name: "Solarmacro",
  13263. height: math.unit(8600000, "miles")
  13264. },
  13265. {
  13266. name: "Galactic",
  13267. height: math.unit(1057000, "lightyears")
  13268. },
  13269. ]
  13270. ))
  13271. characterMakers.push(() => makeCharacter(
  13272. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  13273. {
  13274. front: {
  13275. height: math.unit(6 + 10 / 12, "feet"),
  13276. weight: math.unit(150, "lb"),
  13277. name: "Front",
  13278. image: {
  13279. source: "./media/characters/dixon/front.svg",
  13280. extra: 3361 / 3209,
  13281. bottom: 0.01
  13282. }
  13283. },
  13284. },
  13285. [
  13286. {
  13287. name: "Normal",
  13288. height: math.unit(6 + 10 / 12, "feet"),
  13289. default: true
  13290. },
  13291. {
  13292. name: "Big",
  13293. height: math.unit(12, "meters")
  13294. },
  13295. {
  13296. name: "Macro",
  13297. height: math.unit(500, "meters")
  13298. },
  13299. {
  13300. name: "Megamacro",
  13301. height: math.unit(2, "km")
  13302. },
  13303. ]
  13304. ))
  13305. characterMakers.push(() => makeCharacter(
  13306. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  13307. {
  13308. front: {
  13309. height: math.unit(185, "cm"),
  13310. weight: math.unit(68, "kg"),
  13311. name: "Front",
  13312. image: {
  13313. source: "./media/characters/kauko/front.svg",
  13314. extra: 1455 / 1421,
  13315. bottom: 0.03
  13316. }
  13317. },
  13318. back: {
  13319. height: math.unit(185, "cm"),
  13320. weight: math.unit(68, "kg"),
  13321. name: "Back",
  13322. image: {
  13323. source: "./media/characters/kauko/back.svg",
  13324. extra: 1455 / 1421,
  13325. bottom: 0.004
  13326. }
  13327. },
  13328. },
  13329. [
  13330. {
  13331. name: "Normal",
  13332. height: math.unit(185, "cm"),
  13333. default: true
  13334. },
  13335. ]
  13336. ))
  13337. characterMakers.push(() => makeCharacter(
  13338. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  13339. {
  13340. front: {
  13341. height: math.unit(6, "feet"),
  13342. weight: math.unit(150, "kg"),
  13343. name: "Front",
  13344. image: {
  13345. source: "./media/characters/varg/front.svg",
  13346. extra: 1108 / 1018,
  13347. bottom: 0.0375
  13348. }
  13349. },
  13350. },
  13351. [
  13352. {
  13353. name: "Normal",
  13354. height: math.unit(5, "meters")
  13355. },
  13356. {
  13357. name: "Macro",
  13358. height: math.unit(200, "meters")
  13359. },
  13360. {
  13361. name: "Megamacro",
  13362. height: math.unit(20, "kilometers")
  13363. },
  13364. {
  13365. name: "True Size",
  13366. height: math.unit(211, "km"),
  13367. default: true
  13368. },
  13369. {
  13370. name: "Gigamacro",
  13371. height: math.unit(1000, "km")
  13372. },
  13373. {
  13374. name: "Gigamacro+",
  13375. height: math.unit(8000, "km")
  13376. },
  13377. {
  13378. name: "Teramacro",
  13379. height: math.unit(1000000, "km")
  13380. },
  13381. ]
  13382. ))
  13383. characterMakers.push(() => makeCharacter(
  13384. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  13385. {
  13386. front: {
  13387. height: math.unit(7 + 7 / 12, "feet"),
  13388. weight: math.unit(267, "lb"),
  13389. name: "Front",
  13390. image: {
  13391. source: "./media/characters/dayza/front.svg",
  13392. extra: 1262 / 1200,
  13393. bottom: 0.035
  13394. }
  13395. },
  13396. side: {
  13397. height: math.unit(7 + 7 / 12, "feet"),
  13398. weight: math.unit(267, "lb"),
  13399. name: "Side",
  13400. image: {
  13401. source: "./media/characters/dayza/side.svg",
  13402. extra: 1295 / 1245,
  13403. bottom: 0.05
  13404. }
  13405. },
  13406. back: {
  13407. height: math.unit(7 + 7 / 12, "feet"),
  13408. weight: math.unit(267, "lb"),
  13409. name: "Back",
  13410. image: {
  13411. source: "./media/characters/dayza/back.svg",
  13412. extra: 1241 / 1170
  13413. }
  13414. },
  13415. },
  13416. [
  13417. {
  13418. name: "Normal",
  13419. height: math.unit(7 + 7 / 12, "feet"),
  13420. default: true
  13421. },
  13422. {
  13423. name: "Macro",
  13424. height: math.unit(155, "feet")
  13425. },
  13426. ]
  13427. ))
  13428. characterMakers.push(() => makeCharacter(
  13429. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  13430. {
  13431. front: {
  13432. height: math.unit(6 + 5 / 12, "feet"),
  13433. weight: math.unit(160, "lb"),
  13434. name: "Front",
  13435. image: {
  13436. source: "./media/characters/xanthos/front.svg",
  13437. extra: 1,
  13438. bottom: 0.04
  13439. }
  13440. },
  13441. back: {
  13442. height: math.unit(6 + 5 / 12, "feet"),
  13443. weight: math.unit(160, "lb"),
  13444. name: "Back",
  13445. image: {
  13446. source: "./media/characters/xanthos/back.svg",
  13447. extra: 1,
  13448. bottom: 0.03
  13449. }
  13450. },
  13451. hand: {
  13452. height: math.unit(0.928, "feet"),
  13453. name: "Hand",
  13454. image: {
  13455. source: "./media/characters/xanthos/hand.svg"
  13456. }
  13457. },
  13458. foot: {
  13459. height: math.unit(1.286, "feet"),
  13460. name: "Foot",
  13461. image: {
  13462. source: "./media/characters/xanthos/foot.svg"
  13463. }
  13464. },
  13465. },
  13466. [
  13467. {
  13468. name: "Normal",
  13469. height: math.unit(6 + 5 / 12, "feet"),
  13470. default: true
  13471. },
  13472. {
  13473. name: "Normal+",
  13474. height: math.unit(6, "meters")
  13475. },
  13476. {
  13477. name: "Macro",
  13478. height: math.unit(40, "feet")
  13479. },
  13480. {
  13481. name: "Macro+",
  13482. height: math.unit(200, "meters")
  13483. },
  13484. {
  13485. name: "Megamacro",
  13486. height: math.unit(20, "km")
  13487. },
  13488. {
  13489. name: "Megamacro+",
  13490. height: math.unit(100, "km")
  13491. },
  13492. {
  13493. name: "Gigamacro",
  13494. height: math.unit(200, "megameters")
  13495. },
  13496. {
  13497. name: "Gigamacro+",
  13498. height: math.unit(1.5, "gigameters")
  13499. },
  13500. ]
  13501. ))
  13502. characterMakers.push(() => makeCharacter(
  13503. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  13504. {
  13505. front: {
  13506. height: math.unit(6 + 3 / 12, "feet"),
  13507. weight: math.unit(215, "lb"),
  13508. name: "Front",
  13509. image: {
  13510. source: "./media/characters/grynn/front.svg",
  13511. extra: 4627 / 4209,
  13512. bottom: 0.047
  13513. }
  13514. },
  13515. },
  13516. [
  13517. {
  13518. name: "Micro",
  13519. height: math.unit(6, "inches")
  13520. },
  13521. {
  13522. name: "Normal",
  13523. height: math.unit(6 + 3 / 12, "feet"),
  13524. default: true
  13525. },
  13526. {
  13527. name: "Big",
  13528. height: math.unit(104, "feet")
  13529. },
  13530. {
  13531. name: "Macro",
  13532. height: math.unit(944, "feet")
  13533. },
  13534. {
  13535. name: "Macro+",
  13536. height: math.unit(9480, "feet")
  13537. },
  13538. {
  13539. name: "Megamacro",
  13540. height: math.unit(78752, "feet")
  13541. },
  13542. {
  13543. name: "Megamacro+",
  13544. height: math.unit(630128, "feet")
  13545. },
  13546. {
  13547. name: "Megamacro++",
  13548. height: math.unit(3150695, "feet")
  13549. },
  13550. ]
  13551. ))
  13552. characterMakers.push(() => makeCharacter(
  13553. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  13554. {
  13555. front: {
  13556. height: math.unit(7 + 5 / 12, "feet"),
  13557. weight: math.unit(450, "lb"),
  13558. name: "Front",
  13559. image: {
  13560. source: "./media/characters/mocha-aura/front.svg",
  13561. extra: 1907 / 1817,
  13562. bottom: 0.04
  13563. }
  13564. },
  13565. back: {
  13566. height: math.unit(7 + 5 / 12, "feet"),
  13567. weight: math.unit(450, "lb"),
  13568. name: "Back",
  13569. image: {
  13570. source: "./media/characters/mocha-aura/back.svg",
  13571. extra: 1900 / 1825,
  13572. bottom: 0.045
  13573. }
  13574. },
  13575. },
  13576. [
  13577. {
  13578. name: "Nano",
  13579. height: math.unit(1, "nm")
  13580. },
  13581. {
  13582. name: "Megamicro",
  13583. height: math.unit(1, "mm")
  13584. },
  13585. {
  13586. name: "Micro",
  13587. height: math.unit(3, "inches")
  13588. },
  13589. {
  13590. name: "Normal",
  13591. height: math.unit(7 + 5 / 12, "feet"),
  13592. default: true
  13593. },
  13594. {
  13595. name: "Macro",
  13596. height: math.unit(30, "feet")
  13597. },
  13598. {
  13599. name: "Megamacro",
  13600. height: math.unit(3500, "feet")
  13601. },
  13602. {
  13603. name: "Teramacro",
  13604. height: math.unit(500000, "miles")
  13605. },
  13606. {
  13607. name: "Petamacro",
  13608. height: math.unit(50000000000000000, "parsecs")
  13609. },
  13610. ]
  13611. ))
  13612. characterMakers.push(() => makeCharacter(
  13613. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  13614. {
  13615. front: {
  13616. height: math.unit(6, "feet"),
  13617. weight: math.unit(150, "lb"),
  13618. name: "Front",
  13619. image: {
  13620. source: "./media/characters/ilisha-devya/front.svg",
  13621. extra: 1053/1049,
  13622. bottom: 270/1323
  13623. }
  13624. },
  13625. back: {
  13626. height: math.unit(6, "feet"),
  13627. weight: math.unit(150, "lb"),
  13628. name: "Back",
  13629. image: {
  13630. source: "./media/characters/ilisha-devya/back.svg",
  13631. extra: 1131/1128,
  13632. bottom: 39/1170
  13633. }
  13634. },
  13635. },
  13636. [
  13637. {
  13638. name: "Macro",
  13639. height: math.unit(500, "feet"),
  13640. default: true
  13641. },
  13642. {
  13643. name: "Megamacro",
  13644. height: math.unit(10, "miles")
  13645. },
  13646. {
  13647. name: "Gigamacro",
  13648. height: math.unit(100000, "miles")
  13649. },
  13650. {
  13651. name: "Examacro",
  13652. height: math.unit(1e9, "lightyears")
  13653. },
  13654. {
  13655. name: "Omniversal",
  13656. height: math.unit(1e33, "lightyears")
  13657. },
  13658. {
  13659. name: "Beyond Infinite",
  13660. height: math.unit(1e100, "lightyears")
  13661. },
  13662. ]
  13663. ))
  13664. characterMakers.push(() => makeCharacter(
  13665. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  13666. {
  13667. Side: {
  13668. height: math.unit(6, "feet"),
  13669. weight: math.unit(150, "lb"),
  13670. name: "Side",
  13671. image: {
  13672. source: "./media/characters/mira/side.svg",
  13673. extra: 900 / 799,
  13674. bottom: 0.02
  13675. }
  13676. },
  13677. },
  13678. [
  13679. {
  13680. name: "Human Size",
  13681. height: math.unit(6, "feet")
  13682. },
  13683. {
  13684. name: "Macro",
  13685. height: math.unit(100, "feet"),
  13686. default: true
  13687. },
  13688. {
  13689. name: "Megamacro",
  13690. height: math.unit(10, "miles")
  13691. },
  13692. {
  13693. name: "Gigamacro",
  13694. height: math.unit(25000, "miles")
  13695. },
  13696. {
  13697. name: "Teramacro",
  13698. height: math.unit(300, "AU")
  13699. },
  13700. {
  13701. name: "Full Size",
  13702. height: math.unit(4.5e10, "lightyears")
  13703. },
  13704. ]
  13705. ))
  13706. characterMakers.push(() => makeCharacter(
  13707. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  13708. {
  13709. front: {
  13710. height: math.unit(6, "feet"),
  13711. weight: math.unit(150, "lb"),
  13712. name: "Front",
  13713. image: {
  13714. source: "./media/characters/holly/front.svg",
  13715. extra: 639 / 606
  13716. }
  13717. },
  13718. back: {
  13719. height: math.unit(6, "feet"),
  13720. weight: math.unit(150, "lb"),
  13721. name: "Back",
  13722. image: {
  13723. source: "./media/characters/holly/back.svg",
  13724. extra: 623 / 598
  13725. }
  13726. },
  13727. frontWorking: {
  13728. height: math.unit(6, "feet"),
  13729. weight: math.unit(150, "lb"),
  13730. name: "Front (Working)",
  13731. image: {
  13732. source: "./media/characters/holly/front-working.svg",
  13733. extra: 607 / 577,
  13734. bottom: 0.048
  13735. }
  13736. },
  13737. },
  13738. [
  13739. {
  13740. name: "Normal",
  13741. height: math.unit(12 + 3 / 12, "feet"),
  13742. default: true
  13743. },
  13744. ]
  13745. ))
  13746. characterMakers.push(() => makeCharacter(
  13747. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  13748. {
  13749. front: {
  13750. height: math.unit(6, "feet"),
  13751. weight: math.unit(150, "lb"),
  13752. name: "Front",
  13753. image: {
  13754. source: "./media/characters/porter/front.svg",
  13755. extra: 1,
  13756. bottom: 0.01
  13757. }
  13758. },
  13759. frontRobes: {
  13760. height: math.unit(6, "feet"),
  13761. weight: math.unit(150, "lb"),
  13762. name: "Front (Robes)",
  13763. image: {
  13764. source: "./media/characters/porter/front-robes.svg",
  13765. extra: 1.01,
  13766. bottom: 0.01
  13767. }
  13768. },
  13769. },
  13770. [
  13771. {
  13772. name: "Normal",
  13773. height: math.unit(11 + 9 / 12, "feet"),
  13774. default: true
  13775. },
  13776. ]
  13777. ))
  13778. characterMakers.push(() => makeCharacter(
  13779. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  13780. {
  13781. legendary: {
  13782. height: math.unit(6, "feet"),
  13783. weight: math.unit(150, "lb"),
  13784. name: "Legendary",
  13785. image: {
  13786. source: "./media/characters/lucy/legendary.svg",
  13787. extra: 1355 / 1100,
  13788. bottom: 0.045
  13789. }
  13790. },
  13791. },
  13792. [
  13793. {
  13794. name: "Legendary",
  13795. height: math.unit(86882 * 2, "miles"),
  13796. default: true
  13797. },
  13798. ]
  13799. ))
  13800. characterMakers.push(() => makeCharacter(
  13801. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  13802. {
  13803. front: {
  13804. height: math.unit(6, "feet"),
  13805. weight: math.unit(150, "lb"),
  13806. name: "Front",
  13807. image: {
  13808. source: "./media/characters/drusilla/front.svg",
  13809. extra: 678 / 635,
  13810. bottom: 0.03
  13811. }
  13812. },
  13813. back: {
  13814. height: math.unit(6, "feet"),
  13815. weight: math.unit(150, "lb"),
  13816. name: "Back",
  13817. image: {
  13818. source: "./media/characters/drusilla/back.svg",
  13819. extra: 678 / 635,
  13820. bottom: 0.005
  13821. }
  13822. },
  13823. },
  13824. [
  13825. {
  13826. name: "Macro",
  13827. height: math.unit(100, "feet")
  13828. },
  13829. {
  13830. name: "Canon Height",
  13831. height: math.unit(2000, "feet"),
  13832. default: true
  13833. },
  13834. ]
  13835. ))
  13836. characterMakers.push(() => makeCharacter(
  13837. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  13838. {
  13839. front: {
  13840. height: math.unit(6, "feet"),
  13841. weight: math.unit(180, "lb"),
  13842. name: "Front",
  13843. image: {
  13844. source: "./media/characters/renard-thatch/front.svg",
  13845. extra: 2411 / 2275,
  13846. bottom: 0.01
  13847. }
  13848. },
  13849. frontPosing: {
  13850. height: math.unit(6, "feet"),
  13851. weight: math.unit(180, "lb"),
  13852. name: "Front (Posing)",
  13853. image: {
  13854. source: "./media/characters/renard-thatch/front-posing.svg",
  13855. extra: 2381 / 2261,
  13856. bottom: 0.01
  13857. }
  13858. },
  13859. back: {
  13860. height: math.unit(6, "feet"),
  13861. weight: math.unit(180, "lb"),
  13862. name: "Back",
  13863. image: {
  13864. source: "./media/characters/renard-thatch/back.svg",
  13865. extra: 2428 / 2288
  13866. }
  13867. },
  13868. },
  13869. [
  13870. {
  13871. name: "Micro",
  13872. height: math.unit(3, "inches")
  13873. },
  13874. {
  13875. name: "Default",
  13876. height: math.unit(6, "feet"),
  13877. default: true
  13878. },
  13879. {
  13880. name: "Macro",
  13881. height: math.unit(75, "feet")
  13882. },
  13883. ]
  13884. ))
  13885. characterMakers.push(() => makeCharacter(
  13886. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  13887. {
  13888. front: {
  13889. height: math.unit(1450, "feet"),
  13890. weight: math.unit(1.21e6, "tons"),
  13891. name: "Front",
  13892. image: {
  13893. source: "./media/characters/sekvra/front.svg",
  13894. extra: 1193/1190,
  13895. bottom: 78/1271
  13896. }
  13897. },
  13898. side: {
  13899. height: math.unit(1450, "feet"),
  13900. weight: math.unit(1.21e6, "tons"),
  13901. name: "Side",
  13902. image: {
  13903. source: "./media/characters/sekvra/side.svg",
  13904. extra: 1193/1190,
  13905. bottom: 52/1245
  13906. }
  13907. },
  13908. back: {
  13909. height: math.unit(1450, "feet"),
  13910. weight: math.unit(1.21e6, "tons"),
  13911. name: "Back",
  13912. image: {
  13913. source: "./media/characters/sekvra/back.svg",
  13914. extra: 1219/1216,
  13915. bottom: 21/1240
  13916. }
  13917. },
  13918. frontClothed: {
  13919. height: math.unit(1450, "feet"),
  13920. weight: math.unit(1.21e6, "tons"),
  13921. name: "Front (Clothed)",
  13922. image: {
  13923. source: "./media/characters/sekvra/front-clothed.svg",
  13924. extra: 1192/1189,
  13925. bottom: 79/1271
  13926. }
  13927. },
  13928. },
  13929. [
  13930. {
  13931. name: "Macro",
  13932. height: math.unit(1450, "feet"),
  13933. default: true
  13934. },
  13935. {
  13936. name: "Megamacro",
  13937. height: math.unit(15000, "feet")
  13938. },
  13939. ]
  13940. ))
  13941. characterMakers.push(() => makeCharacter(
  13942. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  13943. {
  13944. front: {
  13945. height: math.unit(6, "feet"),
  13946. weight: math.unit(150, "lb"),
  13947. name: "Front",
  13948. image: {
  13949. source: "./media/characters/carmine/front.svg",
  13950. extra: 1,
  13951. bottom: 0.035
  13952. }
  13953. },
  13954. frontArmor: {
  13955. height: math.unit(6, "feet"),
  13956. weight: math.unit(150, "lb"),
  13957. name: "Front (Armor)",
  13958. image: {
  13959. source: "./media/characters/carmine/front-armor.svg",
  13960. extra: 1,
  13961. bottom: 0.035
  13962. }
  13963. },
  13964. },
  13965. [
  13966. {
  13967. name: "Large",
  13968. height: math.unit(1, "mile")
  13969. },
  13970. {
  13971. name: "Huge",
  13972. height: math.unit(40, "miles"),
  13973. default: true
  13974. },
  13975. {
  13976. name: "Colossal",
  13977. height: math.unit(2500, "miles")
  13978. },
  13979. ]
  13980. ))
  13981. characterMakers.push(() => makeCharacter(
  13982. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  13983. {
  13984. front: {
  13985. height: math.unit(6, "feet"),
  13986. weight: math.unit(150, "lb"),
  13987. name: "Front",
  13988. image: {
  13989. source: "./media/characters/elyssia/front.svg",
  13990. extra: 2201 / 2035,
  13991. bottom: 0.05
  13992. }
  13993. },
  13994. frontClothed: {
  13995. height: math.unit(6, "feet"),
  13996. weight: math.unit(150, "lb"),
  13997. name: "Front (Clothed)",
  13998. image: {
  13999. source: "./media/characters/elyssia/front-clothed.svg",
  14000. extra: 2201 / 2035,
  14001. bottom: 0.05
  14002. }
  14003. },
  14004. back: {
  14005. height: math.unit(6, "feet"),
  14006. weight: math.unit(150, "lb"),
  14007. name: "Back",
  14008. image: {
  14009. source: "./media/characters/elyssia/back.svg",
  14010. extra: 2201 / 2035,
  14011. bottom: 0.013
  14012. }
  14013. },
  14014. },
  14015. [
  14016. {
  14017. name: "Smaller",
  14018. height: math.unit(150, "feet")
  14019. },
  14020. {
  14021. name: "Standard",
  14022. height: math.unit(1400, "feet"),
  14023. default: true
  14024. },
  14025. {
  14026. name: "Distracted",
  14027. height: math.unit(15000, "feet")
  14028. },
  14029. ]
  14030. ))
  14031. characterMakers.push(() => makeCharacter(
  14032. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  14033. {
  14034. front: {
  14035. height: math.unit(7 + 4/12, "feet"),
  14036. weight: math.unit(690, "lb"),
  14037. name: "Front",
  14038. image: {
  14039. source: "./media/characters/geno-maxwell/front.svg",
  14040. extra: 984/856,
  14041. bottom: 87/1071
  14042. }
  14043. },
  14044. back: {
  14045. height: math.unit(7 + 4/12, "feet"),
  14046. weight: math.unit(690, "lb"),
  14047. name: "Back",
  14048. image: {
  14049. source: "./media/characters/geno-maxwell/back.svg",
  14050. extra: 981/854,
  14051. bottom: 57/1038
  14052. }
  14053. },
  14054. frontCostume: {
  14055. height: math.unit(7 + 4/12, "feet"),
  14056. weight: math.unit(690, "lb"),
  14057. name: "Front (Costume)",
  14058. image: {
  14059. source: "./media/characters/geno-maxwell/front-costume.svg",
  14060. extra: 984/856,
  14061. bottom: 87/1071
  14062. }
  14063. },
  14064. backcostume: {
  14065. height: math.unit(7 + 4/12, "feet"),
  14066. weight: math.unit(690, "lb"),
  14067. name: "Back (Costume)",
  14068. image: {
  14069. source: "./media/characters/geno-maxwell/back-costume.svg",
  14070. extra: 981/854,
  14071. bottom: 57/1038
  14072. }
  14073. },
  14074. },
  14075. [
  14076. {
  14077. name: "Micro",
  14078. height: math.unit(3, "inches")
  14079. },
  14080. {
  14081. name: "Normal",
  14082. height: math.unit(7 + 4 / 12, "feet"),
  14083. default: true
  14084. },
  14085. {
  14086. name: "Macro",
  14087. height: math.unit(220, "feet")
  14088. },
  14089. {
  14090. name: "Megamacro",
  14091. height: math.unit(11, "miles")
  14092. },
  14093. ]
  14094. ))
  14095. characterMakers.push(() => makeCharacter(
  14096. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  14097. {
  14098. front: {
  14099. height: math.unit(7 + 4/12, "feet"),
  14100. weight: math.unit(750, "lb"),
  14101. name: "Front",
  14102. image: {
  14103. source: "./media/characters/regena-maxwell/front.svg",
  14104. extra: 984/856,
  14105. bottom: 87/1071
  14106. }
  14107. },
  14108. back: {
  14109. height: math.unit(7 + 4/12, "feet"),
  14110. weight: math.unit(750, "lb"),
  14111. name: "Back",
  14112. image: {
  14113. source: "./media/characters/regena-maxwell/back.svg",
  14114. extra: 981/854,
  14115. bottom: 57/1038
  14116. }
  14117. },
  14118. frontCostume: {
  14119. height: math.unit(7 + 4/12, "feet"),
  14120. weight: math.unit(750, "lb"),
  14121. name: "Front (Costume)",
  14122. image: {
  14123. source: "./media/characters/regena-maxwell/front-costume.svg",
  14124. extra: 984/856,
  14125. bottom: 87/1071
  14126. }
  14127. },
  14128. backcostume: {
  14129. height: math.unit(7 + 4/12, "feet"),
  14130. weight: math.unit(750, "lb"),
  14131. name: "Back (Costume)",
  14132. image: {
  14133. source: "./media/characters/regena-maxwell/back-costume.svg",
  14134. extra: 981/854,
  14135. bottom: 57/1038
  14136. }
  14137. },
  14138. },
  14139. [
  14140. {
  14141. name: "Normal",
  14142. height: math.unit(7 + 4 / 12, "feet"),
  14143. default: true
  14144. },
  14145. {
  14146. name: "Macro",
  14147. height: math.unit(220, "feet")
  14148. },
  14149. {
  14150. name: "Megamacro",
  14151. height: math.unit(11, "miles")
  14152. },
  14153. ]
  14154. ))
  14155. characterMakers.push(() => makeCharacter(
  14156. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  14157. {
  14158. front: {
  14159. height: math.unit(6, "feet"),
  14160. weight: math.unit(150, "lb"),
  14161. name: "Front",
  14162. image: {
  14163. source: "./media/characters/x-gliding-dragon-x/front.svg",
  14164. extra: 860 / 690,
  14165. bottom: 0.03
  14166. }
  14167. },
  14168. },
  14169. [
  14170. {
  14171. name: "Normal",
  14172. height: math.unit(1.7, "meters"),
  14173. default: true
  14174. },
  14175. ]
  14176. ))
  14177. characterMakers.push(() => makeCharacter(
  14178. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  14179. {
  14180. front: {
  14181. height: math.unit(6, "feet"),
  14182. weight: math.unit(150, "lb"),
  14183. name: "Front",
  14184. image: {
  14185. source: "./media/characters/quilly/front.svg",
  14186. extra: 890 / 776
  14187. }
  14188. },
  14189. },
  14190. [
  14191. {
  14192. name: "Gigamacro",
  14193. height: math.unit(404090, "miles"),
  14194. default: true
  14195. },
  14196. ]
  14197. ))
  14198. characterMakers.push(() => makeCharacter(
  14199. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  14200. {
  14201. front: {
  14202. height: math.unit(7 + 8 / 12, "feet"),
  14203. weight: math.unit(350, "lb"),
  14204. name: "Front",
  14205. image: {
  14206. source: "./media/characters/tempest/front.svg",
  14207. extra: 1175 / 1086,
  14208. bottom: 0.02
  14209. }
  14210. },
  14211. },
  14212. [
  14213. {
  14214. name: "Normal",
  14215. height: math.unit(7 + 8 / 12, "feet"),
  14216. default: true
  14217. },
  14218. ]
  14219. ))
  14220. characterMakers.push(() => makeCharacter(
  14221. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  14222. {
  14223. side: {
  14224. height: math.unit(4 + 5 / 12, "feet"),
  14225. weight: math.unit(80, "lb"),
  14226. name: "Side",
  14227. image: {
  14228. source: "./media/characters/rodger/side.svg",
  14229. extra: 1235 / 1118
  14230. }
  14231. },
  14232. },
  14233. [
  14234. {
  14235. name: "Micro",
  14236. height: math.unit(1, "inch")
  14237. },
  14238. {
  14239. name: "Normal",
  14240. height: math.unit(4 + 5 / 12, "feet"),
  14241. default: true
  14242. },
  14243. {
  14244. name: "Macro",
  14245. height: math.unit(120, "feet")
  14246. },
  14247. ]
  14248. ))
  14249. characterMakers.push(() => makeCharacter(
  14250. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  14251. {
  14252. front: {
  14253. height: math.unit(6, "feet"),
  14254. weight: math.unit(150, "lb"),
  14255. name: "Front",
  14256. image: {
  14257. source: "./media/characters/danyel/front.svg",
  14258. extra: 1185 / 1123,
  14259. bottom: 0.05
  14260. }
  14261. },
  14262. },
  14263. [
  14264. {
  14265. name: "Shrunken",
  14266. height: math.unit(0.5, "mm")
  14267. },
  14268. {
  14269. name: "Micro",
  14270. height: math.unit(1, "mm"),
  14271. default: true
  14272. },
  14273. {
  14274. name: "Upsized",
  14275. height: math.unit(5 + 5 / 12, "feet")
  14276. },
  14277. ]
  14278. ))
  14279. characterMakers.push(() => makeCharacter(
  14280. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  14281. {
  14282. front: {
  14283. height: math.unit(5 + 6 / 12, "feet"),
  14284. weight: math.unit(200, "lb"),
  14285. name: "Front",
  14286. image: {
  14287. source: "./media/characters/vivian-bijoux/front.svg",
  14288. extra: 1217/1209,
  14289. bottom: 76/1293
  14290. }
  14291. },
  14292. back: {
  14293. height: math.unit(5 + 6 / 12, "feet"),
  14294. weight: math.unit(200, "lb"),
  14295. name: "Back",
  14296. image: {
  14297. source: "./media/characters/vivian-bijoux/back.svg",
  14298. extra: 1214/1208,
  14299. bottom: 51/1265
  14300. }
  14301. },
  14302. dressed: {
  14303. height: math.unit(5 + 6 / 12, "feet"),
  14304. weight: math.unit(200, "lb"),
  14305. name: "Dressed",
  14306. image: {
  14307. source: "./media/characters/vivian-bijoux/dressed.svg",
  14308. extra: 1217/1209,
  14309. bottom: 76/1293
  14310. }
  14311. },
  14312. },
  14313. [
  14314. {
  14315. name: "Normal",
  14316. height: math.unit(5 + 6 / 12, "feet"),
  14317. default: true
  14318. },
  14319. {
  14320. name: "Bad Dream",
  14321. height: math.unit(500, "feet")
  14322. },
  14323. {
  14324. name: "Nightmare",
  14325. height: math.unit(500, "miles")
  14326. },
  14327. ]
  14328. ))
  14329. characterMakers.push(() => makeCharacter(
  14330. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  14331. {
  14332. front: {
  14333. height: math.unit(6 + 1 / 12, "feet"),
  14334. weight: math.unit(260, "lb"),
  14335. name: "Front",
  14336. image: {
  14337. source: "./media/characters/zeta/front.svg",
  14338. extra: 1968 / 1889,
  14339. bottom: 0.06
  14340. }
  14341. },
  14342. back: {
  14343. height: math.unit(6 + 1 / 12, "feet"),
  14344. weight: math.unit(260, "lb"),
  14345. name: "Back",
  14346. image: {
  14347. source: "./media/characters/zeta/back.svg",
  14348. extra: 1944 / 1858,
  14349. bottom: 0.03
  14350. }
  14351. },
  14352. hand: {
  14353. height: math.unit(1.112, "feet"),
  14354. name: "Hand",
  14355. image: {
  14356. source: "./media/characters/zeta/hand.svg"
  14357. }
  14358. },
  14359. foot: {
  14360. height: math.unit(1.48, "feet"),
  14361. name: "Foot",
  14362. image: {
  14363. source: "./media/characters/zeta/foot.svg"
  14364. }
  14365. },
  14366. },
  14367. [
  14368. {
  14369. name: "Micro",
  14370. height: math.unit(6, "inches")
  14371. },
  14372. {
  14373. name: "Normal",
  14374. height: math.unit(6 + 1 / 12, "feet"),
  14375. default: true
  14376. },
  14377. {
  14378. name: "Macro",
  14379. height: math.unit(20, "feet")
  14380. },
  14381. ]
  14382. ))
  14383. characterMakers.push(() => makeCharacter(
  14384. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  14385. {
  14386. front: {
  14387. height: math.unit(6, "feet"),
  14388. weight: math.unit(150, "lb"),
  14389. name: "Front",
  14390. image: {
  14391. source: "./media/characters/jamie-larsen/front.svg",
  14392. extra: 962 / 933,
  14393. bottom: 0.02
  14394. }
  14395. },
  14396. back: {
  14397. height: math.unit(6, "feet"),
  14398. weight: math.unit(150, "lb"),
  14399. name: "Back",
  14400. image: {
  14401. source: "./media/characters/jamie-larsen/back.svg",
  14402. extra: 997 / 946
  14403. }
  14404. },
  14405. },
  14406. [
  14407. {
  14408. name: "Macro",
  14409. height: math.unit(28 + 7 / 12, "feet"),
  14410. default: true
  14411. },
  14412. {
  14413. name: "Macro+",
  14414. height: math.unit(180, "feet")
  14415. },
  14416. {
  14417. name: "Megamacro",
  14418. height: math.unit(10, "miles")
  14419. },
  14420. {
  14421. name: "Gigamacro",
  14422. height: math.unit(200000, "miles")
  14423. },
  14424. ]
  14425. ))
  14426. characterMakers.push(() => makeCharacter(
  14427. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  14428. {
  14429. front: {
  14430. height: math.unit(6, "feet"),
  14431. weight: math.unit(120, "lb"),
  14432. name: "Front",
  14433. image: {
  14434. source: "./media/characters/vance/front.svg",
  14435. extra: 1980 / 1890,
  14436. bottom: 0.09
  14437. }
  14438. },
  14439. back: {
  14440. height: math.unit(6, "feet"),
  14441. weight: math.unit(120, "lb"),
  14442. name: "Back",
  14443. image: {
  14444. source: "./media/characters/vance/back.svg",
  14445. extra: 2081 / 1994,
  14446. bottom: 0.014
  14447. }
  14448. },
  14449. hand: {
  14450. height: math.unit(0.88, "feet"),
  14451. name: "Hand",
  14452. image: {
  14453. source: "./media/characters/vance/hand.svg"
  14454. }
  14455. },
  14456. foot: {
  14457. height: math.unit(0.64, "feet"),
  14458. name: "Foot",
  14459. image: {
  14460. source: "./media/characters/vance/foot.svg"
  14461. }
  14462. },
  14463. },
  14464. [
  14465. {
  14466. name: "Small",
  14467. height: math.unit(90, "feet"),
  14468. default: true
  14469. },
  14470. {
  14471. name: "Macro",
  14472. height: math.unit(100, "meters")
  14473. },
  14474. {
  14475. name: "Megamacro",
  14476. height: math.unit(15, "miles")
  14477. },
  14478. ]
  14479. ))
  14480. characterMakers.push(() => makeCharacter(
  14481. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  14482. {
  14483. front: {
  14484. height: math.unit(6, "feet"),
  14485. weight: math.unit(180, "lb"),
  14486. name: "Front",
  14487. image: {
  14488. source: "./media/characters/xochitl/front.svg",
  14489. extra: 2297 / 2261,
  14490. bottom: 0.065
  14491. }
  14492. },
  14493. back: {
  14494. height: math.unit(6, "feet"),
  14495. weight: math.unit(180, "lb"),
  14496. name: "Back",
  14497. image: {
  14498. source: "./media/characters/xochitl/back.svg",
  14499. extra: 2386 / 2354,
  14500. bottom: 0.01
  14501. }
  14502. },
  14503. foot: {
  14504. height: math.unit(6 / 5 * 1.15, "feet"),
  14505. weight: math.unit(150, "lb"),
  14506. name: "Foot",
  14507. image: {
  14508. source: "./media/characters/xochitl/foot.svg"
  14509. }
  14510. },
  14511. },
  14512. [
  14513. {
  14514. name: "Macro",
  14515. height: math.unit(80, "feet")
  14516. },
  14517. {
  14518. name: "Macro+",
  14519. height: math.unit(400, "feet"),
  14520. default: true
  14521. },
  14522. {
  14523. name: "Gigamacro",
  14524. height: math.unit(80000, "miles")
  14525. },
  14526. {
  14527. name: "Gigamacro+",
  14528. height: math.unit(400000, "miles")
  14529. },
  14530. {
  14531. name: "Teramacro",
  14532. height: math.unit(300, "AU")
  14533. },
  14534. ]
  14535. ))
  14536. characterMakers.push(() => makeCharacter(
  14537. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  14538. {
  14539. front: {
  14540. height: math.unit(6, "feet"),
  14541. weight: math.unit(150, "lb"),
  14542. name: "Front",
  14543. image: {
  14544. source: "./media/characters/vincent/front.svg",
  14545. extra: 1130 / 1080,
  14546. bottom: 0.055
  14547. }
  14548. },
  14549. beak: {
  14550. height: math.unit(6 * 0.1, "feet"),
  14551. name: "Beak",
  14552. image: {
  14553. source: "./media/characters/vincent/beak.svg"
  14554. }
  14555. },
  14556. hand: {
  14557. height: math.unit(6 * 0.85, "feet"),
  14558. weight: math.unit(150, "lb"),
  14559. name: "Hand",
  14560. image: {
  14561. source: "./media/characters/vincent/hand.svg"
  14562. }
  14563. },
  14564. foot: {
  14565. height: math.unit(6 * 0.19, "feet"),
  14566. weight: math.unit(150, "lb"),
  14567. name: "Foot",
  14568. image: {
  14569. source: "./media/characters/vincent/foot.svg"
  14570. }
  14571. },
  14572. },
  14573. [
  14574. {
  14575. name: "Base",
  14576. height: math.unit(6 + 5 / 12, "feet"),
  14577. default: true
  14578. },
  14579. {
  14580. name: "Macro",
  14581. height: math.unit(300, "feet")
  14582. },
  14583. {
  14584. name: "Megamacro",
  14585. height: math.unit(2, "miles")
  14586. },
  14587. {
  14588. name: "Gigamacro",
  14589. height: math.unit(1000, "miles")
  14590. },
  14591. ]
  14592. ))
  14593. characterMakers.push(() => makeCharacter(
  14594. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  14595. {
  14596. front: {
  14597. height: math.unit(2, "meters"),
  14598. weight: math.unit(500, "kg"),
  14599. name: "Front",
  14600. image: {
  14601. source: "./media/characters/coatl/front.svg",
  14602. extra: 3948 / 3500,
  14603. bottom: 0.082
  14604. }
  14605. },
  14606. },
  14607. [
  14608. {
  14609. name: "Normal",
  14610. height: math.unit(4, "meters")
  14611. },
  14612. {
  14613. name: "Macro",
  14614. height: math.unit(100, "meters"),
  14615. default: true
  14616. },
  14617. {
  14618. name: "Macro+",
  14619. height: math.unit(300, "meters")
  14620. },
  14621. {
  14622. name: "Megamacro",
  14623. height: math.unit(3, "gigameters")
  14624. },
  14625. {
  14626. name: "Megamacro+",
  14627. height: math.unit(300, "terameters")
  14628. },
  14629. {
  14630. name: "Megamacro++",
  14631. height: math.unit(3, "lightyears")
  14632. },
  14633. ]
  14634. ))
  14635. characterMakers.push(() => makeCharacter(
  14636. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  14637. {
  14638. front: {
  14639. height: math.unit(6, "feet"),
  14640. weight: math.unit(50, "kg"),
  14641. name: "front",
  14642. image: {
  14643. source: "./media/characters/shiroryu/front.svg",
  14644. extra: 1990 / 1935
  14645. }
  14646. },
  14647. },
  14648. [
  14649. {
  14650. name: "Mortal Mingling",
  14651. height: math.unit(3, "meters")
  14652. },
  14653. {
  14654. name: "Kaiju-ish",
  14655. height: math.unit(250, "meters")
  14656. },
  14657. {
  14658. name: "Somewhat Godly",
  14659. height: math.unit(400, "km"),
  14660. default: true
  14661. },
  14662. {
  14663. name: "Planetary",
  14664. height: math.unit(300, "megameters")
  14665. },
  14666. {
  14667. name: "Galaxy-dwarfing",
  14668. height: math.unit(450, "kiloparsecs")
  14669. },
  14670. {
  14671. name: "Universe Eater",
  14672. height: math.unit(150, "gigaparsecs")
  14673. },
  14674. {
  14675. name: "Almost Immeasurable",
  14676. height: math.unit(1.3e266, "yottaparsecs")
  14677. },
  14678. ]
  14679. ))
  14680. characterMakers.push(() => makeCharacter(
  14681. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  14682. {
  14683. front: {
  14684. height: math.unit(6, "feet"),
  14685. weight: math.unit(150, "lb"),
  14686. name: "Front",
  14687. image: {
  14688. source: "./media/characters/umeko/front.svg",
  14689. extra: 1,
  14690. bottom: 0.019
  14691. }
  14692. },
  14693. frontArmored: {
  14694. height: math.unit(6, "feet"),
  14695. weight: math.unit(150, "lb"),
  14696. name: "Front (Armored)",
  14697. image: {
  14698. source: "./media/characters/umeko/front-armored.svg",
  14699. extra: 1,
  14700. bottom: 0.021
  14701. }
  14702. },
  14703. },
  14704. [
  14705. {
  14706. name: "Macro",
  14707. height: math.unit(220, "feet"),
  14708. default: true
  14709. },
  14710. {
  14711. name: "Guardian Dragon",
  14712. height: math.unit(50, "miles")
  14713. },
  14714. {
  14715. name: "Cosmic",
  14716. height: math.unit(800000, "miles")
  14717. },
  14718. ]
  14719. ))
  14720. characterMakers.push(() => makeCharacter(
  14721. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  14722. {
  14723. front: {
  14724. height: math.unit(6, "feet"),
  14725. weight: math.unit(150, "lb"),
  14726. name: "Front",
  14727. image: {
  14728. source: "./media/characters/cassidy/front.svg",
  14729. extra: 810/808,
  14730. bottom: 41/851
  14731. }
  14732. },
  14733. },
  14734. [
  14735. {
  14736. name: "Canon Height",
  14737. height: math.unit(120, "feet"),
  14738. default: true
  14739. },
  14740. {
  14741. name: "Macro+",
  14742. height: math.unit(400, "feet")
  14743. },
  14744. {
  14745. name: "Macro++",
  14746. height: math.unit(4000, "feet")
  14747. },
  14748. {
  14749. name: "Megamacro",
  14750. height: math.unit(3, "miles")
  14751. },
  14752. ]
  14753. ))
  14754. characterMakers.push(() => makeCharacter(
  14755. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  14756. {
  14757. front: {
  14758. height: math.unit(6, "feet"),
  14759. weight: math.unit(150, "lb"),
  14760. name: "Front",
  14761. image: {
  14762. source: "./media/characters/isaac/front.svg",
  14763. extra: 896 / 815,
  14764. bottom: 0.11
  14765. }
  14766. },
  14767. },
  14768. [
  14769. {
  14770. name: "Human Size",
  14771. height: math.unit(8, "feet"),
  14772. default: true
  14773. },
  14774. {
  14775. name: "Macro",
  14776. height: math.unit(400, "feet")
  14777. },
  14778. {
  14779. name: "Megamacro",
  14780. height: math.unit(50, "miles")
  14781. },
  14782. {
  14783. name: "Canon Height",
  14784. height: math.unit(200, "AU")
  14785. },
  14786. ]
  14787. ))
  14788. characterMakers.push(() => makeCharacter(
  14789. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  14790. {
  14791. front: {
  14792. height: math.unit(6, "feet"),
  14793. weight: math.unit(72, "kg"),
  14794. name: "Front",
  14795. image: {
  14796. source: "./media/characters/sleekit/front.svg",
  14797. extra: 4693 / 4487,
  14798. bottom: 0.012
  14799. }
  14800. },
  14801. },
  14802. [
  14803. {
  14804. name: "Minimum Height",
  14805. height: math.unit(10, "meters")
  14806. },
  14807. {
  14808. name: "Smaller",
  14809. height: math.unit(25, "meters")
  14810. },
  14811. {
  14812. name: "Larger",
  14813. height: math.unit(38, "meters"),
  14814. default: true
  14815. },
  14816. {
  14817. name: "Maximum height",
  14818. height: math.unit(100, "meters")
  14819. },
  14820. ]
  14821. ))
  14822. characterMakers.push(() => makeCharacter(
  14823. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  14824. {
  14825. front: {
  14826. height: math.unit(6, "feet"),
  14827. weight: math.unit(150, "lb"),
  14828. name: "Front",
  14829. image: {
  14830. source: "./media/characters/nillia/front.svg",
  14831. extra: 2195 / 2037,
  14832. bottom: 0.005
  14833. }
  14834. },
  14835. back: {
  14836. height: math.unit(6, "feet"),
  14837. weight: math.unit(150, "lb"),
  14838. name: "Back",
  14839. image: {
  14840. source: "./media/characters/nillia/back.svg",
  14841. extra: 2195 / 2037,
  14842. bottom: 0.005
  14843. }
  14844. },
  14845. },
  14846. [
  14847. {
  14848. name: "Canon Height",
  14849. height: math.unit(489, "feet"),
  14850. default: true
  14851. }
  14852. ]
  14853. ))
  14854. characterMakers.push(() => makeCharacter(
  14855. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  14856. {
  14857. front: {
  14858. height: math.unit(6, "feet"),
  14859. weight: math.unit(150, "lb"),
  14860. name: "Front",
  14861. image: {
  14862. source: "./media/characters/mesmyriza/front.svg",
  14863. extra: 2067 / 1784,
  14864. bottom: 0.035
  14865. }
  14866. },
  14867. foot: {
  14868. height: math.unit(6 / (250 / 35), "feet"),
  14869. name: "Foot",
  14870. image: {
  14871. source: "./media/characters/mesmyriza/foot.svg"
  14872. }
  14873. },
  14874. },
  14875. [
  14876. {
  14877. name: "Macro",
  14878. height: math.unit(457, "meters"),
  14879. default: true
  14880. },
  14881. {
  14882. name: "Megamacro",
  14883. height: math.unit(8, "megameters")
  14884. },
  14885. ]
  14886. ))
  14887. characterMakers.push(() => makeCharacter(
  14888. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  14889. {
  14890. front: {
  14891. height: math.unit(6, "feet"),
  14892. weight: math.unit(250, "lb"),
  14893. name: "Front",
  14894. image: {
  14895. source: "./media/characters/saudade/front.svg",
  14896. extra: 1172 / 1139,
  14897. bottom: 0.035
  14898. }
  14899. },
  14900. },
  14901. [
  14902. {
  14903. name: "Micro",
  14904. height: math.unit(3, "inches")
  14905. },
  14906. {
  14907. name: "Normal",
  14908. height: math.unit(6, "feet"),
  14909. default: true
  14910. },
  14911. {
  14912. name: "Macro",
  14913. height: math.unit(50, "feet")
  14914. },
  14915. {
  14916. name: "Megamacro",
  14917. height: math.unit(2800, "feet")
  14918. },
  14919. ]
  14920. ))
  14921. characterMakers.push(() => makeCharacter(
  14922. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  14923. {
  14924. front: {
  14925. height: math.unit(5 + 4 / 12, "feet"),
  14926. weight: math.unit(100, "lb"),
  14927. name: "Front",
  14928. image: {
  14929. source: "./media/characters/keireer/front.svg",
  14930. extra: 716 / 666,
  14931. bottom: 0.05
  14932. }
  14933. },
  14934. },
  14935. [
  14936. {
  14937. name: "Normal",
  14938. height: math.unit(5 + 4 / 12, "feet"),
  14939. default: true
  14940. },
  14941. ]
  14942. ))
  14943. characterMakers.push(() => makeCharacter(
  14944. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  14945. {
  14946. front: {
  14947. height: math.unit(6, "feet"),
  14948. weight: math.unit(90, "kg"),
  14949. name: "Front",
  14950. image: {
  14951. source: "./media/characters/mirja/front.svg",
  14952. extra: 1789 / 1683,
  14953. bottom: 0.05
  14954. }
  14955. },
  14956. frontDressed: {
  14957. height: math.unit(6, "feet"),
  14958. weight: math.unit(90, "lb"),
  14959. name: "Front (Dressed)",
  14960. image: {
  14961. source: "./media/characters/mirja/front-dressed.svg",
  14962. extra: 1789 / 1683,
  14963. bottom: 0.05
  14964. }
  14965. },
  14966. back: {
  14967. height: math.unit(6, "feet"),
  14968. weight: math.unit(90, "lb"),
  14969. name: "Back",
  14970. image: {
  14971. source: "./media/characters/mirja/back.svg",
  14972. extra: 953 / 917,
  14973. bottom: 0.017
  14974. }
  14975. },
  14976. },
  14977. [
  14978. {
  14979. name: "\"Incognito\"",
  14980. height: math.unit(3, "meters")
  14981. },
  14982. {
  14983. name: "Strolling Size",
  14984. height: math.unit(15, "km")
  14985. },
  14986. {
  14987. name: "Larger Strolling Size",
  14988. height: math.unit(400, "km")
  14989. },
  14990. {
  14991. name: "Preferred Size",
  14992. height: math.unit(5000, "km")
  14993. },
  14994. {
  14995. name: "True Size",
  14996. height: math.unit(30657809462086840000000000000000, "parsecs"),
  14997. default: true
  14998. },
  14999. ]
  15000. ))
  15001. characterMakers.push(() => makeCharacter(
  15002. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  15003. {
  15004. front: {
  15005. height: math.unit(15, "feet"),
  15006. weight: math.unit(880, "kg"),
  15007. name: "Front",
  15008. image: {
  15009. source: "./media/characters/nightraver/front.svg",
  15010. extra: 2444 / 2160,
  15011. bottom: 0.027
  15012. }
  15013. },
  15014. back: {
  15015. height: math.unit(15, "feet"),
  15016. weight: math.unit(880, "kg"),
  15017. name: "Back",
  15018. image: {
  15019. source: "./media/characters/nightraver/back.svg",
  15020. extra: 2309 / 2180,
  15021. bottom: 0.005
  15022. }
  15023. },
  15024. sole: {
  15025. height: math.unit(2.878, "feet"),
  15026. name: "Sole",
  15027. image: {
  15028. source: "./media/characters/nightraver/sole.svg"
  15029. }
  15030. },
  15031. foot: {
  15032. height: math.unit(2.285, "feet"),
  15033. name: "Foot",
  15034. image: {
  15035. source: "./media/characters/nightraver/foot.svg"
  15036. }
  15037. },
  15038. maw: {
  15039. height: math.unit(2.67, "feet"),
  15040. name: "Maw",
  15041. image: {
  15042. source: "./media/characters/nightraver/maw.svg"
  15043. }
  15044. },
  15045. },
  15046. [
  15047. {
  15048. name: "Micro",
  15049. height: math.unit(1, "cm")
  15050. },
  15051. {
  15052. name: "Normal",
  15053. height: math.unit(15, "feet"),
  15054. default: true
  15055. },
  15056. {
  15057. name: "Macro",
  15058. height: math.unit(300, "feet")
  15059. },
  15060. {
  15061. name: "Megamacro",
  15062. height: math.unit(300, "miles")
  15063. },
  15064. {
  15065. name: "Gigamacro",
  15066. height: math.unit(10000, "miles")
  15067. },
  15068. ]
  15069. ))
  15070. characterMakers.push(() => makeCharacter(
  15071. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  15072. {
  15073. side: {
  15074. height: math.unit(2, "inches"),
  15075. weight: math.unit(5, "grams"),
  15076. name: "Side",
  15077. image: {
  15078. source: "./media/characters/arc/side.svg"
  15079. }
  15080. },
  15081. },
  15082. [
  15083. {
  15084. name: "Micro",
  15085. height: math.unit(2, "inches"),
  15086. default: true
  15087. },
  15088. ]
  15089. ))
  15090. characterMakers.push(() => makeCharacter(
  15091. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  15092. {
  15093. front: {
  15094. height: math.unit(1.1938, "meters"),
  15095. weight: math.unit(54, "kg"),
  15096. name: "Front",
  15097. image: {
  15098. source: "./media/characters/nebula-shahar/front.svg",
  15099. extra: 1642 / 1436,
  15100. bottom: 0.06
  15101. }
  15102. },
  15103. },
  15104. [
  15105. {
  15106. name: "Megamicro",
  15107. height: math.unit(0.3, "mm")
  15108. },
  15109. {
  15110. name: "Micro",
  15111. height: math.unit(3, "cm")
  15112. },
  15113. {
  15114. name: "Normal",
  15115. height: math.unit(138, "cm"),
  15116. default: true
  15117. },
  15118. {
  15119. name: "Macro",
  15120. height: math.unit(30, "m")
  15121. },
  15122. ]
  15123. ))
  15124. characterMakers.push(() => makeCharacter(
  15125. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  15126. {
  15127. front: {
  15128. height: math.unit(5.24, "feet"),
  15129. weight: math.unit(150, "lb"),
  15130. name: "Front",
  15131. image: {
  15132. source: "./media/characters/shayla/front.svg",
  15133. extra: 1512 / 1414,
  15134. bottom: 0.01
  15135. }
  15136. },
  15137. back: {
  15138. height: math.unit(5.24, "feet"),
  15139. weight: math.unit(150, "lb"),
  15140. name: "Back",
  15141. image: {
  15142. source: "./media/characters/shayla/back.svg",
  15143. extra: 1512 / 1414
  15144. }
  15145. },
  15146. hand: {
  15147. height: math.unit(0.7781496062992126, "feet"),
  15148. name: "Hand",
  15149. image: {
  15150. source: "./media/characters/shayla/hand.svg"
  15151. }
  15152. },
  15153. foot: {
  15154. height: math.unit(1.4206036745406823, "feet"),
  15155. name: "Foot",
  15156. image: {
  15157. source: "./media/characters/shayla/foot.svg"
  15158. }
  15159. },
  15160. },
  15161. [
  15162. {
  15163. name: "Micro",
  15164. height: math.unit(0.32, "feet")
  15165. },
  15166. {
  15167. name: "Normal",
  15168. height: math.unit(5.24, "feet"),
  15169. default: true
  15170. },
  15171. {
  15172. name: "Macro",
  15173. height: math.unit(492.12, "feet")
  15174. },
  15175. {
  15176. name: "Megamacro",
  15177. height: math.unit(186.41, "miles")
  15178. },
  15179. ]
  15180. ))
  15181. characterMakers.push(() => makeCharacter(
  15182. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  15183. {
  15184. front: {
  15185. height: math.unit(2.2, "m"),
  15186. weight: math.unit(120, "kg"),
  15187. name: "Front",
  15188. image: {
  15189. source: "./media/characters/pia-jr/front.svg",
  15190. extra: 1000 / 970,
  15191. bottom: 0.035
  15192. }
  15193. },
  15194. hand: {
  15195. height: math.unit(0.759 * 7.21 / 6, "feet"),
  15196. name: "Hand",
  15197. image: {
  15198. source: "./media/characters/pia-jr/hand.svg"
  15199. }
  15200. },
  15201. paw: {
  15202. height: math.unit(1.185 * 7.21 / 6, "feet"),
  15203. name: "Paw",
  15204. image: {
  15205. source: "./media/characters/pia-jr/paw.svg"
  15206. }
  15207. },
  15208. },
  15209. [
  15210. {
  15211. name: "Micro",
  15212. height: math.unit(1.2, "cm")
  15213. },
  15214. {
  15215. name: "Normal",
  15216. height: math.unit(2.2, "m"),
  15217. default: true
  15218. },
  15219. {
  15220. name: "Macro",
  15221. height: math.unit(180, "m")
  15222. },
  15223. {
  15224. name: "Megamacro",
  15225. height: math.unit(420, "km")
  15226. },
  15227. ]
  15228. ))
  15229. characterMakers.push(() => makeCharacter(
  15230. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  15231. {
  15232. front: {
  15233. height: math.unit(2, "m"),
  15234. weight: math.unit(115, "kg"),
  15235. name: "Front",
  15236. image: {
  15237. source: "./media/characters/pia-sr/front.svg",
  15238. extra: 760 / 730,
  15239. bottom: 0.015
  15240. }
  15241. },
  15242. back: {
  15243. height: math.unit(2, "m"),
  15244. weight: math.unit(115, "kg"),
  15245. name: "Back",
  15246. image: {
  15247. source: "./media/characters/pia-sr/back.svg",
  15248. extra: 760 / 730,
  15249. bottom: 0.01
  15250. }
  15251. },
  15252. hand: {
  15253. height: math.unit(0.89 * 6.56 / 6, "feet"),
  15254. name: "Hand",
  15255. image: {
  15256. source: "./media/characters/pia-sr/hand.svg"
  15257. }
  15258. },
  15259. foot: {
  15260. height: math.unit(1.83, "feet"),
  15261. name: "Foot",
  15262. image: {
  15263. source: "./media/characters/pia-sr/foot.svg"
  15264. }
  15265. },
  15266. },
  15267. [
  15268. {
  15269. name: "Micro",
  15270. height: math.unit(88, "mm")
  15271. },
  15272. {
  15273. name: "Normal",
  15274. height: math.unit(2, "m"),
  15275. default: true
  15276. },
  15277. {
  15278. name: "Macro",
  15279. height: math.unit(200, "m")
  15280. },
  15281. {
  15282. name: "Megamacro",
  15283. height: math.unit(420, "km")
  15284. },
  15285. ]
  15286. ))
  15287. characterMakers.push(() => makeCharacter(
  15288. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  15289. {
  15290. front: {
  15291. height: math.unit(8 + 2 / 12, "feet"),
  15292. weight: math.unit(300, "lb"),
  15293. name: "Front",
  15294. image: {
  15295. source: "./media/characters/kibibyte/front.svg",
  15296. extra: 2221 / 2098,
  15297. bottom: 0.04
  15298. }
  15299. },
  15300. },
  15301. [
  15302. {
  15303. name: "Normal",
  15304. height: math.unit(8 + 2 / 12, "feet"),
  15305. default: true
  15306. },
  15307. {
  15308. name: "Socialable Macro",
  15309. height: math.unit(50, "feet")
  15310. },
  15311. {
  15312. name: "Macro",
  15313. height: math.unit(300, "feet")
  15314. },
  15315. {
  15316. name: "Megamacro",
  15317. height: math.unit(500, "miles")
  15318. },
  15319. ]
  15320. ))
  15321. characterMakers.push(() => makeCharacter(
  15322. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  15323. {
  15324. front: {
  15325. height: math.unit(6, "feet"),
  15326. weight: math.unit(150, "lb"),
  15327. name: "Front",
  15328. image: {
  15329. source: "./media/characters/felix/front.svg",
  15330. extra: 762 / 722,
  15331. bottom: 0.02
  15332. }
  15333. },
  15334. frontClothed: {
  15335. height: math.unit(6, "feet"),
  15336. weight: math.unit(150, "lb"),
  15337. name: "Front (Clothed)",
  15338. image: {
  15339. source: "./media/characters/felix/front-clothed.svg",
  15340. extra: 762 / 722,
  15341. bottom: 0.02
  15342. }
  15343. },
  15344. },
  15345. [
  15346. {
  15347. name: "Normal",
  15348. height: math.unit(6 + 8 / 12, "feet"),
  15349. default: true
  15350. },
  15351. {
  15352. name: "Macro",
  15353. height: math.unit(2600, "feet")
  15354. },
  15355. {
  15356. name: "Megamacro",
  15357. height: math.unit(450, "miles")
  15358. },
  15359. ]
  15360. ))
  15361. characterMakers.push(() => makeCharacter(
  15362. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  15363. {
  15364. front: {
  15365. height: math.unit(6 + 1 / 12, "feet"),
  15366. weight: math.unit(250, "lb"),
  15367. name: "Front",
  15368. image: {
  15369. source: "./media/characters/tobo/front.svg",
  15370. extra: 608 / 586,
  15371. bottom: 0.023
  15372. }
  15373. },
  15374. back: {
  15375. height: math.unit(6 + 1 / 12, "feet"),
  15376. weight: math.unit(250, "lb"),
  15377. name: "Back",
  15378. image: {
  15379. source: "./media/characters/tobo/back.svg",
  15380. extra: 608 / 586
  15381. }
  15382. },
  15383. },
  15384. [
  15385. {
  15386. name: "Nano",
  15387. height: math.unit(2, "nm")
  15388. },
  15389. {
  15390. name: "Megamicro",
  15391. height: math.unit(0.1, "mm")
  15392. },
  15393. {
  15394. name: "Micro",
  15395. height: math.unit(1, "inch"),
  15396. default: true
  15397. },
  15398. {
  15399. name: "Human-sized",
  15400. height: math.unit(6 + 1 / 12, "feet")
  15401. },
  15402. {
  15403. name: "Macro",
  15404. height: math.unit(250, "feet")
  15405. },
  15406. {
  15407. name: "Megamacro",
  15408. height: math.unit(75, "miles")
  15409. },
  15410. {
  15411. name: "Texas-sized",
  15412. height: math.unit(750, "miles")
  15413. },
  15414. {
  15415. name: "Teramacro",
  15416. height: math.unit(50000, "miles")
  15417. },
  15418. ]
  15419. ))
  15420. characterMakers.push(() => makeCharacter(
  15421. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  15422. {
  15423. front: {
  15424. height: math.unit(6, "feet"),
  15425. weight: math.unit(269, "lb"),
  15426. name: "Front",
  15427. image: {
  15428. source: "./media/characters/danny-kapowsky/front.svg",
  15429. extra: 766 / 736,
  15430. bottom: 0.044
  15431. }
  15432. },
  15433. back: {
  15434. height: math.unit(6, "feet"),
  15435. weight: math.unit(269, "lb"),
  15436. name: "Back",
  15437. image: {
  15438. source: "./media/characters/danny-kapowsky/back.svg",
  15439. extra: 797 / 760,
  15440. bottom: 0.025
  15441. }
  15442. },
  15443. },
  15444. [
  15445. {
  15446. name: "Macro",
  15447. height: math.unit(150, "feet"),
  15448. default: true
  15449. },
  15450. {
  15451. name: "Macro+",
  15452. height: math.unit(200, "feet")
  15453. },
  15454. {
  15455. name: "Macro++",
  15456. height: math.unit(300, "feet")
  15457. },
  15458. {
  15459. name: "Macro+++",
  15460. height: math.unit(400, "feet")
  15461. },
  15462. ]
  15463. ))
  15464. characterMakers.push(() => makeCharacter(
  15465. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  15466. {
  15467. side: {
  15468. height: math.unit(6, "feet"),
  15469. weight: math.unit(170, "lb"),
  15470. name: "Side",
  15471. image: {
  15472. source: "./media/characters/finn/side.svg",
  15473. extra: 1953 / 1807,
  15474. bottom: 0.057
  15475. }
  15476. },
  15477. },
  15478. [
  15479. {
  15480. name: "Megamacro",
  15481. height: math.unit(14445, "feet"),
  15482. default: true
  15483. },
  15484. ]
  15485. ))
  15486. characterMakers.push(() => makeCharacter(
  15487. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  15488. {
  15489. front: {
  15490. height: math.unit(5 + 6 / 12, "feet"),
  15491. weight: math.unit(125, "lb"),
  15492. name: "Front",
  15493. image: {
  15494. source: "./media/characters/roy/front.svg",
  15495. extra: 1,
  15496. bottom: 0.11
  15497. }
  15498. },
  15499. },
  15500. [
  15501. {
  15502. name: "Micro",
  15503. height: math.unit(3, "inches"),
  15504. default: true
  15505. },
  15506. {
  15507. name: "Normal",
  15508. height: math.unit(5 + 6 / 12, "feet")
  15509. },
  15510. {
  15511. name: "Lesser Macro",
  15512. height: math.unit(60, "feet")
  15513. },
  15514. {
  15515. name: "Greater Macro",
  15516. height: math.unit(120, "feet")
  15517. },
  15518. ]
  15519. ))
  15520. characterMakers.push(() => makeCharacter(
  15521. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  15522. {
  15523. front: {
  15524. height: math.unit(6, "feet"),
  15525. weight: math.unit(100, "lb"),
  15526. name: "Front",
  15527. image: {
  15528. source: "./media/characters/aevsivs/front.svg",
  15529. extra: 1,
  15530. bottom: 0.03
  15531. }
  15532. },
  15533. back: {
  15534. height: math.unit(6, "feet"),
  15535. weight: math.unit(100, "lb"),
  15536. name: "Back",
  15537. image: {
  15538. source: "./media/characters/aevsivs/back.svg"
  15539. }
  15540. },
  15541. },
  15542. [
  15543. {
  15544. name: "Micro",
  15545. height: math.unit(2, "inches"),
  15546. default: true
  15547. },
  15548. {
  15549. name: "Normal",
  15550. height: math.unit(5, "feet")
  15551. },
  15552. ]
  15553. ))
  15554. characterMakers.push(() => makeCharacter(
  15555. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  15556. {
  15557. front: {
  15558. height: math.unit(5 + 7 / 12, "feet"),
  15559. weight: math.unit(159, "lb"),
  15560. name: "Front",
  15561. image: {
  15562. source: "./media/characters/hildegard/front.svg",
  15563. extra: 289 / 269,
  15564. bottom: 7.63 / 297.8
  15565. }
  15566. },
  15567. back: {
  15568. height: math.unit(5 + 7 / 12, "feet"),
  15569. weight: math.unit(159, "lb"),
  15570. name: "Back",
  15571. image: {
  15572. source: "./media/characters/hildegard/back.svg",
  15573. extra: 280 / 260,
  15574. bottom: 2.3 / 282
  15575. }
  15576. },
  15577. },
  15578. [
  15579. {
  15580. name: "Normal",
  15581. height: math.unit(5 + 7 / 12, "feet"),
  15582. default: true
  15583. },
  15584. ]
  15585. ))
  15586. characterMakers.push(() => makeCharacter(
  15587. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  15588. {
  15589. bernard: {
  15590. height: math.unit(2 + 7 / 12, "feet"),
  15591. weight: math.unit(66, "lb"),
  15592. name: "Bernard",
  15593. rename: true,
  15594. image: {
  15595. source: "./media/characters/bernard-wilder/bernard.svg",
  15596. extra: 192 / 128,
  15597. bottom: 0.05
  15598. }
  15599. },
  15600. wilder: {
  15601. height: math.unit(5 + 8 / 12, "feet"),
  15602. weight: math.unit(143, "lb"),
  15603. name: "Wilder",
  15604. rename: true,
  15605. image: {
  15606. source: "./media/characters/bernard-wilder/wilder.svg",
  15607. extra: 361 / 312,
  15608. bottom: 0.02
  15609. }
  15610. },
  15611. },
  15612. [
  15613. {
  15614. name: "Normal",
  15615. height: math.unit(2 + 7 / 12, "feet"),
  15616. default: true
  15617. },
  15618. ]
  15619. ))
  15620. characterMakers.push(() => makeCharacter(
  15621. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  15622. {
  15623. anthro: {
  15624. height: math.unit(6 + 1 / 12, "feet"),
  15625. weight: math.unit(155, "lb"),
  15626. name: "Anthro",
  15627. image: {
  15628. source: "./media/characters/hearth/anthro.svg",
  15629. extra: 1178/1136,
  15630. bottom: 28/1206
  15631. }
  15632. },
  15633. feral: {
  15634. height: math.unit(3.78, "feet"),
  15635. weight: math.unit(35, "kg"),
  15636. name: "Feral",
  15637. image: {
  15638. source: "./media/characters/hearth/feral.svg",
  15639. extra: 153 / 135,
  15640. bottom: 0.03
  15641. }
  15642. },
  15643. },
  15644. [
  15645. {
  15646. name: "Normal",
  15647. height: math.unit(6 + 1 / 12, "feet"),
  15648. default: true
  15649. },
  15650. ]
  15651. ))
  15652. characterMakers.push(() => makeCharacter(
  15653. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  15654. {
  15655. front: {
  15656. height: math.unit(6, "feet"),
  15657. weight: math.unit(182, "lb"),
  15658. name: "Front",
  15659. image: {
  15660. source: "./media/characters/ingrid/front.svg",
  15661. extra: 294 / 268,
  15662. bottom: 0.027
  15663. }
  15664. },
  15665. },
  15666. [
  15667. {
  15668. name: "Normal",
  15669. height: math.unit(6, "feet"),
  15670. default: true
  15671. },
  15672. ]
  15673. ))
  15674. characterMakers.push(() => makeCharacter(
  15675. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  15676. {
  15677. eevee: {
  15678. height: math.unit(2 + 10 / 12, "feet"),
  15679. weight: math.unit(86, "lb"),
  15680. name: "Malgam",
  15681. image: {
  15682. source: "./media/characters/malgam/eevee.svg",
  15683. extra: 952/784,
  15684. bottom: 38/990
  15685. }
  15686. },
  15687. sylveon: {
  15688. height: math.unit(4, "feet"),
  15689. weight: math.unit(101, "lb"),
  15690. name: "Future Malgam",
  15691. rename: true,
  15692. image: {
  15693. source: "./media/characters/malgam/sylveon.svg",
  15694. extra: 371 / 325,
  15695. bottom: 0.015
  15696. }
  15697. },
  15698. gigantamax: {
  15699. height: math.unit(50, "feet"),
  15700. name: "Gigantamax Malgam",
  15701. rename: true,
  15702. image: {
  15703. source: "./media/characters/malgam/gigantamax.svg"
  15704. }
  15705. },
  15706. },
  15707. [
  15708. {
  15709. name: "Normal",
  15710. height: math.unit(2 + 10 / 12, "feet"),
  15711. default: true
  15712. },
  15713. ]
  15714. ))
  15715. characterMakers.push(() => makeCharacter(
  15716. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  15717. {
  15718. front: {
  15719. height: math.unit(5 + 11 / 12, "feet"),
  15720. weight: math.unit(188, "lb"),
  15721. name: "Front",
  15722. image: {
  15723. source: "./media/characters/fleur/front.svg",
  15724. extra: 309 / 283,
  15725. bottom: 0.007
  15726. }
  15727. },
  15728. },
  15729. [
  15730. {
  15731. name: "Normal",
  15732. height: math.unit(5 + 11 / 12, "feet"),
  15733. default: true
  15734. },
  15735. ]
  15736. ))
  15737. characterMakers.push(() => makeCharacter(
  15738. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  15739. {
  15740. front: {
  15741. height: math.unit(5 + 4 / 12, "feet"),
  15742. weight: math.unit(122, "lb"),
  15743. name: "Front",
  15744. image: {
  15745. source: "./media/characters/jude/front.svg",
  15746. extra: 288 / 273,
  15747. bottom: 0.03
  15748. }
  15749. },
  15750. },
  15751. [
  15752. {
  15753. name: "Normal",
  15754. height: math.unit(5 + 4 / 12, "feet"),
  15755. default: true
  15756. },
  15757. ]
  15758. ))
  15759. characterMakers.push(() => makeCharacter(
  15760. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  15761. {
  15762. front: {
  15763. height: math.unit(5 + 11 / 12, "feet"),
  15764. weight: math.unit(190, "lb"),
  15765. name: "Front",
  15766. image: {
  15767. source: "./media/characters/seara/front.svg",
  15768. extra: 1,
  15769. bottom: 0.05
  15770. }
  15771. },
  15772. },
  15773. [
  15774. {
  15775. name: "Normal",
  15776. height: math.unit(5 + 11 / 12, "feet"),
  15777. default: true
  15778. },
  15779. ]
  15780. ))
  15781. characterMakers.push(() => makeCharacter(
  15782. { name: "Caspian (Lugia)", species: ["lugia"], tags: ["anthro"] },
  15783. {
  15784. front: {
  15785. height: math.unit(16 + 5 / 12, "feet"),
  15786. weight: math.unit(524, "lb"),
  15787. name: "Front",
  15788. image: {
  15789. source: "./media/characters/caspian-lugia/front.svg",
  15790. extra: 1,
  15791. bottom: 0.04
  15792. }
  15793. },
  15794. },
  15795. [
  15796. {
  15797. name: "Normal",
  15798. height: math.unit(16 + 5 / 12, "feet"),
  15799. default: true
  15800. },
  15801. ]
  15802. ))
  15803. characterMakers.push(() => makeCharacter(
  15804. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  15805. {
  15806. front: {
  15807. height: math.unit(5 + 7 / 12, "feet"),
  15808. weight: math.unit(170, "lb"),
  15809. name: "Front",
  15810. image: {
  15811. source: "./media/characters/mika/front.svg",
  15812. extra: 1,
  15813. bottom: 0.016
  15814. }
  15815. },
  15816. },
  15817. [
  15818. {
  15819. name: "Normal",
  15820. height: math.unit(5 + 7 / 12, "feet"),
  15821. default: true
  15822. },
  15823. ]
  15824. ))
  15825. characterMakers.push(() => makeCharacter(
  15826. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  15827. {
  15828. front: {
  15829. height: math.unit(6 + 2 / 12, "feet"),
  15830. weight: math.unit(268, "lb"),
  15831. name: "Front",
  15832. image: {
  15833. source: "./media/characters/sol/front.svg",
  15834. extra: 247 / 231,
  15835. bottom: 0.05
  15836. }
  15837. },
  15838. },
  15839. [
  15840. {
  15841. name: "Normal",
  15842. height: math.unit(6 + 2 / 12, "feet"),
  15843. default: true
  15844. },
  15845. ]
  15846. ))
  15847. characterMakers.push(() => makeCharacter(
  15848. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  15849. {
  15850. buizel: {
  15851. height: math.unit(2 + 5 / 12, "feet"),
  15852. weight: math.unit(87, "lb"),
  15853. name: "Front",
  15854. image: {
  15855. source: "./media/characters/umiko/buizel.svg",
  15856. extra: 172 / 157,
  15857. bottom: 0.01
  15858. },
  15859. form: "buizel",
  15860. default: true
  15861. },
  15862. floatzel: {
  15863. height: math.unit(5 + 9 / 12, "feet"),
  15864. weight: math.unit(250, "lb"),
  15865. name: "Front",
  15866. image: {
  15867. source: "./media/characters/umiko/floatzel.svg",
  15868. extra: 1076/1006,
  15869. bottom: 15/1091
  15870. },
  15871. form: "floatzel",
  15872. default: true
  15873. },
  15874. },
  15875. [
  15876. {
  15877. name: "Normal",
  15878. height: math.unit(2 + 5 / 12, "feet"),
  15879. form: "buizel",
  15880. default: true
  15881. },
  15882. {
  15883. name: "Normal",
  15884. height: math.unit(5 + 9 / 12, "feet"),
  15885. form: "floatzel",
  15886. default: true
  15887. },
  15888. ],
  15889. {
  15890. "buizel": {
  15891. name: "Buizel"
  15892. },
  15893. "floatzel": {
  15894. name: "Floatzel",
  15895. default: true
  15896. }
  15897. }
  15898. ))
  15899. characterMakers.push(() => makeCharacter(
  15900. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  15901. {
  15902. front: {
  15903. height: math.unit(6 + 2 / 12, "feet"),
  15904. weight: math.unit(146, "lb"),
  15905. name: "Front",
  15906. image: {
  15907. source: "./media/characters/iliac/front.svg",
  15908. extra: 389 / 365,
  15909. bottom: 0.035
  15910. }
  15911. },
  15912. },
  15913. [
  15914. {
  15915. name: "Normal",
  15916. height: math.unit(6 + 2 / 12, "feet"),
  15917. default: true
  15918. },
  15919. ]
  15920. ))
  15921. characterMakers.push(() => makeCharacter(
  15922. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  15923. {
  15924. front: {
  15925. height: math.unit(6, "feet"),
  15926. weight: math.unit(170, "lb"),
  15927. name: "Front",
  15928. image: {
  15929. source: "./media/characters/topaz/front.svg",
  15930. extra: 317 / 303,
  15931. bottom: 0.055
  15932. }
  15933. },
  15934. },
  15935. [
  15936. {
  15937. name: "Normal",
  15938. height: math.unit(6, "feet"),
  15939. default: true
  15940. },
  15941. ]
  15942. ))
  15943. characterMakers.push(() => makeCharacter(
  15944. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  15945. {
  15946. front: {
  15947. height: math.unit(5 + 11 / 12, "feet"),
  15948. weight: math.unit(144, "lb"),
  15949. name: "Front",
  15950. image: {
  15951. source: "./media/characters/gabriel/front.svg",
  15952. extra: 285 / 262,
  15953. bottom: 0.004
  15954. }
  15955. },
  15956. },
  15957. [
  15958. {
  15959. name: "Normal",
  15960. height: math.unit(5 + 11 / 12, "feet"),
  15961. default: true
  15962. },
  15963. ]
  15964. ))
  15965. characterMakers.push(() => makeCharacter(
  15966. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  15967. {
  15968. side: {
  15969. height: math.unit(6 + 5 / 12, "feet"),
  15970. weight: math.unit(300, "lb"),
  15971. name: "Side",
  15972. image: {
  15973. source: "./media/characters/tempest-suicune/side.svg",
  15974. extra: 195 / 154,
  15975. bottom: 0.04
  15976. }
  15977. },
  15978. },
  15979. [
  15980. {
  15981. name: "Normal",
  15982. height: math.unit(6 + 5 / 12, "feet"),
  15983. default: true
  15984. },
  15985. ]
  15986. ))
  15987. characterMakers.push(() => makeCharacter(
  15988. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  15989. {
  15990. front: {
  15991. height: math.unit(7 + 2 / 12, "feet"),
  15992. weight: math.unit(322, "lb"),
  15993. name: "Front",
  15994. image: {
  15995. source: "./media/characters/vulcan/front.svg",
  15996. extra: 154 / 147,
  15997. bottom: 0.04
  15998. }
  15999. },
  16000. },
  16001. [
  16002. {
  16003. name: "Normal",
  16004. height: math.unit(7 + 2 / 12, "feet"),
  16005. default: true
  16006. },
  16007. ]
  16008. ))
  16009. characterMakers.push(() => makeCharacter(
  16010. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  16011. {
  16012. front: {
  16013. height: math.unit(5 + 10 / 12, "feet"),
  16014. weight: math.unit(264, "lb"),
  16015. name: "Front",
  16016. image: {
  16017. source: "./media/characters/gault/front.svg",
  16018. extra: 161 / 140,
  16019. bottom: 0.028
  16020. }
  16021. },
  16022. },
  16023. [
  16024. {
  16025. name: "Normal",
  16026. height: math.unit(5 + 10 / 12, "feet"),
  16027. default: true
  16028. },
  16029. ]
  16030. ))
  16031. characterMakers.push(() => makeCharacter(
  16032. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  16033. {
  16034. front: {
  16035. height: math.unit(6, "feet"),
  16036. weight: math.unit(150, "lb"),
  16037. name: "Front",
  16038. image: {
  16039. source: "./media/characters/shard/front.svg",
  16040. extra: 273 / 238,
  16041. bottom: 0.02
  16042. }
  16043. },
  16044. },
  16045. [
  16046. {
  16047. name: "Normal",
  16048. height: math.unit(3 + 6 / 12, "feet"),
  16049. default: true
  16050. },
  16051. ]
  16052. ))
  16053. characterMakers.push(() => makeCharacter(
  16054. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  16055. {
  16056. front: {
  16057. height: math.unit(5 + 11 / 12, "feet"),
  16058. weight: math.unit(146, "lb"),
  16059. name: "Front",
  16060. image: {
  16061. source: "./media/characters/ashe/front.svg",
  16062. extra: 400 / 373,
  16063. bottom: 0.01
  16064. }
  16065. },
  16066. },
  16067. [
  16068. {
  16069. name: "Normal",
  16070. height: math.unit(5 + 11 / 12, "feet"),
  16071. default: true
  16072. },
  16073. ]
  16074. ))
  16075. characterMakers.push(() => makeCharacter(
  16076. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  16077. {
  16078. front: {
  16079. height: math.unit(5 + 5 / 12, "feet"),
  16080. weight: math.unit(135, "lb"),
  16081. name: "Front",
  16082. image: {
  16083. source: "./media/characters/beatrix/front.svg",
  16084. extra: 392 / 379,
  16085. bottom: 0.01
  16086. }
  16087. },
  16088. },
  16089. [
  16090. {
  16091. name: "Normal",
  16092. height: math.unit(6, "feet"),
  16093. default: true
  16094. },
  16095. ]
  16096. ))
  16097. characterMakers.push(() => makeCharacter(
  16098. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  16099. {
  16100. front: {
  16101. height: math.unit(6 + 2/12, "feet"),
  16102. weight: math.unit(135, "lb"),
  16103. name: "Front",
  16104. image: {
  16105. source: "./media/characters/ignatius/front.svg",
  16106. extra: 1380/1259,
  16107. bottom: 27/1407
  16108. }
  16109. },
  16110. },
  16111. [
  16112. {
  16113. name: "Normal",
  16114. height: math.unit(6 + 2/12, "feet"),
  16115. default: true
  16116. },
  16117. ]
  16118. ))
  16119. characterMakers.push(() => makeCharacter(
  16120. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  16121. {
  16122. front: {
  16123. height: math.unit(6 + 2 / 12, "feet"),
  16124. weight: math.unit(138, "lb"),
  16125. name: "Front",
  16126. image: {
  16127. source: "./media/characters/mei-li/front.svg",
  16128. extra: 237 / 229,
  16129. bottom: 0.03
  16130. }
  16131. },
  16132. },
  16133. [
  16134. {
  16135. name: "Normal",
  16136. height: math.unit(6 + 2 / 12, "feet"),
  16137. default: true
  16138. },
  16139. ]
  16140. ))
  16141. characterMakers.push(() => makeCharacter(
  16142. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  16143. {
  16144. front: {
  16145. height: math.unit(2 + 4 / 12, "feet"),
  16146. weight: math.unit(62, "lb"),
  16147. name: "Front",
  16148. image: {
  16149. source: "./media/characters/puru/front.svg",
  16150. extra: 206 / 149,
  16151. bottom: 0.06
  16152. }
  16153. },
  16154. },
  16155. [
  16156. {
  16157. name: "Normal",
  16158. height: math.unit(2 + 4 / 12, "feet"),
  16159. default: true
  16160. },
  16161. ]
  16162. ))
  16163. characterMakers.push(() => makeCharacter(
  16164. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  16165. {
  16166. anthro: {
  16167. height: math.unit(5 + 8/12, "feet"),
  16168. weight: math.unit(200, "lb"),
  16169. energyNeed: math.unit(2000, "kcal"),
  16170. name: "Anthro",
  16171. image: {
  16172. source: "./media/characters/kee/anthro.svg",
  16173. extra: 3251/3184,
  16174. bottom: 250/3501
  16175. }
  16176. },
  16177. taur: {
  16178. height: math.unit(11, "feet"),
  16179. weight: math.unit(500, "lb"),
  16180. energyNeed: math.unit(5000, "kcal"),
  16181. name: "Taur",
  16182. image: {
  16183. source: "./media/characters/kee/taur.svg",
  16184. extra: 1362/1320,
  16185. bottom: 83/1445
  16186. }
  16187. },
  16188. },
  16189. [
  16190. {
  16191. name: "Normal",
  16192. height: math.unit(5 + 8/12, "feet"),
  16193. default: true
  16194. },
  16195. {
  16196. name: "Macro",
  16197. height: math.unit(35, "feet")
  16198. },
  16199. ]
  16200. ))
  16201. characterMakers.push(() => makeCharacter(
  16202. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  16203. {
  16204. anthro: {
  16205. height: math.unit(7, "feet"),
  16206. weight: math.unit(190, "lb"),
  16207. name: "Anthro",
  16208. image: {
  16209. source: "./media/characters/cobalt-dracha/anthro.svg",
  16210. extra: 231 / 225,
  16211. bottom: 0.04
  16212. }
  16213. },
  16214. feral: {
  16215. height: math.unit(9 + 7 / 12, "feet"),
  16216. weight: math.unit(294, "lb"),
  16217. name: "Feral",
  16218. image: {
  16219. source: "./media/characters/cobalt-dracha/feral.svg",
  16220. extra: 692 / 633,
  16221. bottom: 0.05
  16222. }
  16223. },
  16224. },
  16225. [
  16226. {
  16227. name: "Normal",
  16228. height: math.unit(7, "feet"),
  16229. default: true
  16230. },
  16231. ]
  16232. ))
  16233. characterMakers.push(() => makeCharacter(
  16234. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  16235. {
  16236. fallen: {
  16237. height: math.unit(11 + 8 / 12, "feet"),
  16238. weight: math.unit(485, "lb"),
  16239. name: "Java (Fallen)",
  16240. rename: true,
  16241. image: {
  16242. source: "./media/characters/java/fallen.svg",
  16243. extra: 226 / 208,
  16244. bottom: 0.005
  16245. }
  16246. },
  16247. godkin: {
  16248. height: math.unit(10 + 6 / 12, "feet"),
  16249. weight: math.unit(328, "lb"),
  16250. name: "Java (Godkin)",
  16251. rename: true,
  16252. image: {
  16253. source: "./media/characters/java/godkin.svg",
  16254. extra: 1104/1068,
  16255. bottom: 36/1140
  16256. }
  16257. },
  16258. },
  16259. [
  16260. {
  16261. name: "Normal",
  16262. height: math.unit(11 + 8 / 12, "feet"),
  16263. default: true
  16264. },
  16265. ]
  16266. ))
  16267. characterMakers.push(() => makeCharacter(
  16268. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  16269. {
  16270. front: {
  16271. height: math.unit(5 + 9 / 12, "feet"),
  16272. weight: math.unit(170, "lb"),
  16273. name: "Front",
  16274. image: {
  16275. source: "./media/characters/purna/front.svg",
  16276. extra: 239 / 229,
  16277. bottom: 0.01
  16278. }
  16279. },
  16280. },
  16281. [
  16282. {
  16283. name: "Normal",
  16284. height: math.unit(5 + 9 / 12, "feet"),
  16285. default: true
  16286. },
  16287. ]
  16288. ))
  16289. characterMakers.push(() => makeCharacter(
  16290. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  16291. {
  16292. front: {
  16293. height: math.unit(5 + 9 / 12, "feet"),
  16294. weight: math.unit(142, "lb"),
  16295. name: "Front",
  16296. image: {
  16297. source: "./media/characters/kuva/front.svg",
  16298. extra: 281 / 271,
  16299. bottom: 0.006
  16300. }
  16301. },
  16302. },
  16303. [
  16304. {
  16305. name: "Normal",
  16306. height: math.unit(5 + 9 / 12, "feet"),
  16307. default: true
  16308. },
  16309. ]
  16310. ))
  16311. characterMakers.push(() => makeCharacter(
  16312. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  16313. {
  16314. anthro: {
  16315. height: math.unit(9 + 2 / 12, "feet"),
  16316. weight: math.unit(270, "lb"),
  16317. name: "Anthro",
  16318. image: {
  16319. source: "./media/characters/embra/anthro.svg",
  16320. extra: 200 / 187,
  16321. bottom: 0.02
  16322. }
  16323. },
  16324. feral: {
  16325. height: math.unit(18 + 8 / 12, "feet"),
  16326. weight: math.unit(576, "lb"),
  16327. name: "Feral",
  16328. image: {
  16329. source: "./media/characters/embra/feral.svg",
  16330. extra: 152 / 137,
  16331. bottom: 0.037
  16332. }
  16333. },
  16334. },
  16335. [
  16336. {
  16337. name: "Normal",
  16338. height: math.unit(9 + 2 / 12, "feet"),
  16339. default: true
  16340. },
  16341. ]
  16342. ))
  16343. characterMakers.push(() => makeCharacter(
  16344. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  16345. {
  16346. anthro: {
  16347. height: math.unit(10 + 9 / 12, "feet"),
  16348. weight: math.unit(224, "lb"),
  16349. name: "Anthro",
  16350. image: {
  16351. source: "./media/characters/grottos/anthro.svg",
  16352. extra: 350 / 332,
  16353. bottom: 0.045
  16354. }
  16355. },
  16356. feral: {
  16357. height: math.unit(20 + 7 / 12, "feet"),
  16358. weight: math.unit(629, "lb"),
  16359. name: "Feral",
  16360. image: {
  16361. source: "./media/characters/grottos/feral.svg",
  16362. extra: 207 / 190,
  16363. bottom: 0.05
  16364. }
  16365. },
  16366. },
  16367. [
  16368. {
  16369. name: "Normal",
  16370. height: math.unit(10 + 9 / 12, "feet"),
  16371. default: true
  16372. },
  16373. ]
  16374. ))
  16375. characterMakers.push(() => makeCharacter(
  16376. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  16377. {
  16378. anthro: {
  16379. height: math.unit(9 + 6 / 12, "feet"),
  16380. weight: math.unit(298, "lb"),
  16381. name: "Anthro",
  16382. image: {
  16383. source: "./media/characters/frifna/anthro.svg",
  16384. extra: 282 / 269,
  16385. bottom: 0.015
  16386. }
  16387. },
  16388. feral: {
  16389. height: math.unit(16 + 2 / 12, "feet"),
  16390. weight: math.unit(624, "lb"),
  16391. name: "Feral",
  16392. image: {
  16393. source: "./media/characters/frifna/feral.svg"
  16394. }
  16395. },
  16396. },
  16397. [
  16398. {
  16399. name: "Normal",
  16400. height: math.unit(9 + 6 / 12, "feet"),
  16401. default: true
  16402. },
  16403. ]
  16404. ))
  16405. characterMakers.push(() => makeCharacter(
  16406. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  16407. {
  16408. front: {
  16409. height: math.unit(6 + 2 / 12, "feet"),
  16410. weight: math.unit(168, "lb"),
  16411. name: "Front",
  16412. image: {
  16413. source: "./media/characters/elise/front.svg",
  16414. extra: 276 / 271
  16415. }
  16416. },
  16417. },
  16418. [
  16419. {
  16420. name: "Normal",
  16421. height: math.unit(6 + 2 / 12, "feet"),
  16422. default: true
  16423. },
  16424. ]
  16425. ))
  16426. characterMakers.push(() => makeCharacter(
  16427. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  16428. {
  16429. front: {
  16430. height: math.unit(5 + 10 / 12, "feet"),
  16431. weight: math.unit(210, "lb"),
  16432. name: "Front",
  16433. image: {
  16434. source: "./media/characters/glade/front.svg",
  16435. extra: 258 / 247,
  16436. bottom: 0.008
  16437. }
  16438. },
  16439. },
  16440. [
  16441. {
  16442. name: "Normal",
  16443. height: math.unit(5 + 10 / 12, "feet"),
  16444. default: true
  16445. },
  16446. ]
  16447. ))
  16448. characterMakers.push(() => makeCharacter(
  16449. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  16450. {
  16451. front: {
  16452. height: math.unit(5 + 10 / 12, "feet"),
  16453. weight: math.unit(129, "lb"),
  16454. name: "Front",
  16455. image: {
  16456. source: "./media/characters/rina/front.svg",
  16457. extra: 266 / 255,
  16458. bottom: 0.005
  16459. }
  16460. },
  16461. },
  16462. [
  16463. {
  16464. name: "Normal",
  16465. height: math.unit(5 + 10 / 12, "feet"),
  16466. default: true
  16467. },
  16468. ]
  16469. ))
  16470. characterMakers.push(() => makeCharacter(
  16471. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  16472. {
  16473. front: {
  16474. height: math.unit(6 + 1 / 12, "feet"),
  16475. weight: math.unit(192, "lb"),
  16476. name: "Front",
  16477. image: {
  16478. source: "./media/characters/veronica/front.svg",
  16479. extra: 319 / 309,
  16480. bottom: 0.005
  16481. }
  16482. },
  16483. },
  16484. [
  16485. {
  16486. name: "Normal",
  16487. height: math.unit(6 + 1 / 12, "feet"),
  16488. default: true
  16489. },
  16490. ]
  16491. ))
  16492. characterMakers.push(() => makeCharacter(
  16493. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  16494. {
  16495. front: {
  16496. height: math.unit(9 + 3 / 12, "feet"),
  16497. weight: math.unit(1100, "lb"),
  16498. name: "Front",
  16499. image: {
  16500. source: "./media/characters/braxton/front.svg",
  16501. extra: 1057 / 984,
  16502. bottom: 0.05
  16503. }
  16504. },
  16505. },
  16506. [
  16507. {
  16508. name: "Normal",
  16509. height: math.unit(9 + 3 / 12, "feet")
  16510. },
  16511. {
  16512. name: "Giant",
  16513. height: math.unit(300, "feet"),
  16514. default: true
  16515. },
  16516. {
  16517. name: "Macro",
  16518. height: math.unit(700, "feet")
  16519. },
  16520. {
  16521. name: "Megamacro",
  16522. height: math.unit(6000, "feet")
  16523. },
  16524. ]
  16525. ))
  16526. characterMakers.push(() => makeCharacter(
  16527. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  16528. {
  16529. front: {
  16530. height: math.unit(6 + 7 / 12, "feet"),
  16531. weight: math.unit(150, "lb"),
  16532. name: "Front",
  16533. image: {
  16534. source: "./media/characters/blue-feyonics/front.svg",
  16535. extra: 1403 / 1306,
  16536. bottom: 0.047
  16537. }
  16538. },
  16539. },
  16540. [
  16541. {
  16542. name: "Normal",
  16543. height: math.unit(6 + 7 / 12, "feet"),
  16544. default: true
  16545. },
  16546. ]
  16547. ))
  16548. characterMakers.push(() => makeCharacter(
  16549. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  16550. {
  16551. front: {
  16552. height: math.unit(1.8, "meters"),
  16553. weight: math.unit(60, "kg"),
  16554. name: "Front",
  16555. image: {
  16556. source: "./media/characters/maxwell/front.svg",
  16557. extra: 2060 / 1873
  16558. }
  16559. },
  16560. },
  16561. [
  16562. {
  16563. name: "Micro",
  16564. height: math.unit(1, "mm")
  16565. },
  16566. {
  16567. name: "Normal",
  16568. height: math.unit(1.8, "meter"),
  16569. default: true
  16570. },
  16571. {
  16572. name: "Macro",
  16573. height: math.unit(30, "meters")
  16574. },
  16575. {
  16576. name: "Megamacro",
  16577. height: math.unit(10, "km")
  16578. },
  16579. ]
  16580. ))
  16581. characterMakers.push(() => makeCharacter(
  16582. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  16583. {
  16584. front: {
  16585. height: math.unit(6, "feet"),
  16586. weight: math.unit(150, "lb"),
  16587. name: "Front",
  16588. image: {
  16589. source: "./media/characters/jack/front.svg",
  16590. extra: 1754 / 1640,
  16591. bottom: 0.01
  16592. }
  16593. },
  16594. },
  16595. [
  16596. {
  16597. name: "Normal",
  16598. height: math.unit(80000, "feet"),
  16599. default: true
  16600. },
  16601. {
  16602. name: "Max size",
  16603. height: math.unit(10, "lightyears")
  16604. },
  16605. ]
  16606. ))
  16607. characterMakers.push(() => makeCharacter(
  16608. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  16609. {
  16610. urban: {
  16611. height: math.unit(5, "feet"),
  16612. weight: math.unit(240, "lb"),
  16613. name: "Urban",
  16614. image: {
  16615. source: "./media/characters/cafat/urban.svg",
  16616. extra: 1223/1126,
  16617. bottom: 205/1428
  16618. }
  16619. },
  16620. summer: {
  16621. height: math.unit(5, "feet"),
  16622. weight: math.unit(240, "lb"),
  16623. name: "Summer",
  16624. image: {
  16625. source: "./media/characters/cafat/summer.svg",
  16626. extra: 1223/1126,
  16627. bottom: 205/1428
  16628. }
  16629. },
  16630. winter: {
  16631. height: math.unit(5, "feet"),
  16632. weight: math.unit(240, "lb"),
  16633. name: "Winter",
  16634. image: {
  16635. source: "./media/characters/cafat/winter.svg",
  16636. extra: 1223/1126,
  16637. bottom: 205/1428
  16638. }
  16639. },
  16640. lingerie: {
  16641. height: math.unit(5, "feet"),
  16642. weight: math.unit(240, "lb"),
  16643. name: "Lingerie",
  16644. image: {
  16645. source: "./media/characters/cafat/lingerie.svg",
  16646. extra: 1223/1126,
  16647. bottom: 205/1428
  16648. }
  16649. },
  16650. upright: {
  16651. height: math.unit(6.3, "feet"),
  16652. weight: math.unit(240, "lb"),
  16653. name: "Upright",
  16654. image: {
  16655. source: "./media/characters/cafat/upright.svg",
  16656. bottom: 0.01
  16657. }
  16658. },
  16659. uprightFull: {
  16660. height: math.unit(6.3, "feet"),
  16661. weight: math.unit(240, "lb"),
  16662. name: "Upright (Full)",
  16663. image: {
  16664. source: "./media/characters/cafat/upright-full.svg",
  16665. bottom: 0.01
  16666. }
  16667. },
  16668. },
  16669. [
  16670. {
  16671. name: "Small",
  16672. height: math.unit(5, "feet"),
  16673. default: true
  16674. },
  16675. {
  16676. name: "Large",
  16677. height: math.unit(13, "feet")
  16678. },
  16679. ]
  16680. ))
  16681. characterMakers.push(() => makeCharacter(
  16682. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  16683. {
  16684. front: {
  16685. height: math.unit(6, "feet"),
  16686. weight: math.unit(150, "lb"),
  16687. name: "Front",
  16688. image: {
  16689. source: "./media/characters/verin-raharra/front.svg",
  16690. extra: 5019 / 4835,
  16691. bottom: 0.023
  16692. }
  16693. },
  16694. },
  16695. [
  16696. {
  16697. name: "Normal",
  16698. height: math.unit(7 + 5 / 12, "feet"),
  16699. default: true
  16700. },
  16701. {
  16702. name: "Upsized",
  16703. height: math.unit(20, "feet")
  16704. },
  16705. ]
  16706. ))
  16707. characterMakers.push(() => makeCharacter(
  16708. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  16709. {
  16710. front: {
  16711. height: math.unit(7, "feet"),
  16712. weight: math.unit(230, "lb"),
  16713. name: "Front",
  16714. image: {
  16715. source: "./media/characters/nakata/front.svg",
  16716. extra: 1.005,
  16717. bottom: 0.01
  16718. }
  16719. },
  16720. },
  16721. [
  16722. {
  16723. name: "Normal",
  16724. height: math.unit(7, "feet"),
  16725. default: true
  16726. },
  16727. {
  16728. name: "Big",
  16729. height: math.unit(14, "feet")
  16730. },
  16731. {
  16732. name: "Macro",
  16733. height: math.unit(400, "feet")
  16734. },
  16735. ]
  16736. ))
  16737. characterMakers.push(() => makeCharacter(
  16738. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  16739. {
  16740. front: {
  16741. height: math.unit(4.91, "feet"),
  16742. weight: math.unit(100, "lb"),
  16743. name: "Front",
  16744. image: {
  16745. source: "./media/characters/lily/front.svg",
  16746. extra: 1585 / 1415,
  16747. bottom: 0.02
  16748. }
  16749. },
  16750. },
  16751. [
  16752. {
  16753. name: "Normal",
  16754. height: math.unit(4.91, "feet"),
  16755. default: true
  16756. },
  16757. ]
  16758. ))
  16759. characterMakers.push(() => makeCharacter(
  16760. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  16761. {
  16762. laying: {
  16763. height: math.unit(4 + 4 / 12, "feet"),
  16764. weight: math.unit(600, "lb"),
  16765. name: "Laying",
  16766. image: {
  16767. source: "./media/characters/sheila/laying.svg",
  16768. extra: 1333 / 1265,
  16769. bottom: 0.16
  16770. }
  16771. },
  16772. },
  16773. [
  16774. {
  16775. name: "Normal",
  16776. height: math.unit(4 + 4 / 12, "feet"),
  16777. default: true
  16778. },
  16779. ]
  16780. ))
  16781. characterMakers.push(() => makeCharacter(
  16782. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  16783. {
  16784. front: {
  16785. height: math.unit(6, "feet"),
  16786. weight: math.unit(190, "lb"),
  16787. name: "Front",
  16788. image: {
  16789. source: "./media/characters/sax/front.svg",
  16790. extra: 1187 / 973,
  16791. bottom: 0.042
  16792. }
  16793. },
  16794. },
  16795. [
  16796. {
  16797. name: "Micro",
  16798. height: math.unit(4, "inches"),
  16799. default: true
  16800. },
  16801. ]
  16802. ))
  16803. characterMakers.push(() => makeCharacter(
  16804. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  16805. {
  16806. front: {
  16807. height: math.unit(6, "feet"),
  16808. weight: math.unit(150, "lb"),
  16809. name: "Front",
  16810. image: {
  16811. source: "./media/characters/pandora/front.svg",
  16812. extra: 2720 / 2556,
  16813. bottom: 0.015
  16814. }
  16815. },
  16816. back: {
  16817. height: math.unit(6, "feet"),
  16818. weight: math.unit(150, "lb"),
  16819. name: "Back",
  16820. image: {
  16821. source: "./media/characters/pandora/back.svg",
  16822. extra: 2720 / 2556,
  16823. bottom: 0.01
  16824. }
  16825. },
  16826. beans: {
  16827. height: math.unit(6 / 8, "feet"),
  16828. name: "Beans",
  16829. image: {
  16830. source: "./media/characters/pandora/beans.svg"
  16831. }
  16832. },
  16833. collar: {
  16834. height: math.unit(0.31, "feet"),
  16835. name: "Collar",
  16836. image: {
  16837. source: "./media/characters/pandora/collar.svg"
  16838. }
  16839. },
  16840. skirt: {
  16841. height: math.unit(6, "feet"),
  16842. weight: math.unit(150, "lb"),
  16843. name: "Skirt",
  16844. image: {
  16845. source: "./media/characters/pandora/skirt.svg",
  16846. extra: 1622 / 1525,
  16847. bottom: 0.015
  16848. }
  16849. },
  16850. hoodie: {
  16851. height: math.unit(6, "feet"),
  16852. weight: math.unit(150, "lb"),
  16853. name: "Hoodie",
  16854. image: {
  16855. source: "./media/characters/pandora/hoodie.svg",
  16856. extra: 1622 / 1525,
  16857. bottom: 0.015
  16858. }
  16859. },
  16860. casual: {
  16861. height: math.unit(6, "feet"),
  16862. weight: math.unit(150, "lb"),
  16863. name: "Casual",
  16864. image: {
  16865. source: "./media/characters/pandora/casual.svg",
  16866. extra: 1622 / 1525,
  16867. bottom: 0.015
  16868. }
  16869. },
  16870. },
  16871. [
  16872. {
  16873. name: "Normal",
  16874. height: math.unit(6, "feet")
  16875. },
  16876. {
  16877. name: "Big Steppy",
  16878. height: math.unit(1, "km"),
  16879. default: true
  16880. },
  16881. {
  16882. name: "Galactic Steppy",
  16883. height: math.unit(2, "gigameters")
  16884. },
  16885. ]
  16886. ))
  16887. characterMakers.push(() => makeCharacter(
  16888. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  16889. {
  16890. side: {
  16891. height: math.unit(10, "feet"),
  16892. weight: math.unit(800, "kg"),
  16893. name: "Side",
  16894. image: {
  16895. source: "./media/characters/venio-darcony/side.svg",
  16896. extra: 1373 / 1003,
  16897. bottom: 0.037
  16898. }
  16899. },
  16900. front: {
  16901. height: math.unit(19, "feet"),
  16902. weight: math.unit(800, "kg"),
  16903. name: "Front",
  16904. image: {
  16905. source: "./media/characters/venio-darcony/front.svg"
  16906. }
  16907. },
  16908. back: {
  16909. height: math.unit(19, "feet"),
  16910. weight: math.unit(800, "kg"),
  16911. name: "Back",
  16912. image: {
  16913. source: "./media/characters/venio-darcony/back.svg"
  16914. }
  16915. },
  16916. sideNsfw: {
  16917. height: math.unit(10, "feet"),
  16918. weight: math.unit(800, "kg"),
  16919. name: "Side (NSFW)",
  16920. image: {
  16921. source: "./media/characters/venio-darcony/side-nsfw.svg",
  16922. extra: 1373 / 1003,
  16923. bottom: 0.037
  16924. }
  16925. },
  16926. frontNsfw: {
  16927. height: math.unit(19, "feet"),
  16928. weight: math.unit(800, "kg"),
  16929. name: "Front (NSFW)",
  16930. image: {
  16931. source: "./media/characters/venio-darcony/front-nsfw.svg"
  16932. }
  16933. },
  16934. backNsfw: {
  16935. height: math.unit(19, "feet"),
  16936. weight: math.unit(800, "kg"),
  16937. name: "Back (NSFW)",
  16938. image: {
  16939. source: "./media/characters/venio-darcony/back-nsfw.svg"
  16940. }
  16941. },
  16942. sideArmored: {
  16943. height: math.unit(10, "feet"),
  16944. weight: math.unit(800, "kg"),
  16945. name: "Side (Armored)",
  16946. image: {
  16947. source: "./media/characters/venio-darcony/side-armored.svg",
  16948. extra: 1373 / 1003,
  16949. bottom: 0.037
  16950. }
  16951. },
  16952. frontArmored: {
  16953. height: math.unit(19, "feet"),
  16954. weight: math.unit(900, "kg"),
  16955. name: "Front (Armored)",
  16956. image: {
  16957. source: "./media/characters/venio-darcony/front-armored.svg"
  16958. }
  16959. },
  16960. backArmored: {
  16961. height: math.unit(19, "feet"),
  16962. weight: math.unit(900, "kg"),
  16963. name: "Back (Armored)",
  16964. image: {
  16965. source: "./media/characters/venio-darcony/back-armored.svg"
  16966. }
  16967. },
  16968. sword: {
  16969. height: math.unit(10, "feet"),
  16970. weight: math.unit(50, "lb"),
  16971. name: "Sword",
  16972. image: {
  16973. source: "./media/characters/venio-darcony/sword.svg"
  16974. }
  16975. },
  16976. },
  16977. [
  16978. {
  16979. name: "Normal",
  16980. height: math.unit(10, "feet")
  16981. },
  16982. {
  16983. name: "Macro",
  16984. height: math.unit(130, "feet"),
  16985. default: true
  16986. },
  16987. {
  16988. name: "Macro+",
  16989. height: math.unit(240, "feet")
  16990. },
  16991. ]
  16992. ))
  16993. characterMakers.push(() => makeCharacter(
  16994. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  16995. {
  16996. front: {
  16997. height: math.unit(6, "feet"),
  16998. weight: math.unit(150, "lb"),
  16999. name: "Front",
  17000. image: {
  17001. source: "./media/characters/veski/front.svg",
  17002. extra: 1299 / 1225,
  17003. bottom: 0.04
  17004. }
  17005. },
  17006. back: {
  17007. height: math.unit(6, "feet"),
  17008. weight: math.unit(150, "lb"),
  17009. name: "Back",
  17010. image: {
  17011. source: "./media/characters/veski/back.svg",
  17012. extra: 1299 / 1225,
  17013. bottom: 0.008
  17014. }
  17015. },
  17016. maw: {
  17017. height: math.unit(1.5 * 1.21, "feet"),
  17018. name: "Maw",
  17019. image: {
  17020. source: "./media/characters/veski/maw.svg"
  17021. }
  17022. },
  17023. },
  17024. [
  17025. {
  17026. name: "Macro",
  17027. height: math.unit(2, "km"),
  17028. default: true
  17029. },
  17030. ]
  17031. ))
  17032. characterMakers.push(() => makeCharacter(
  17033. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  17034. {
  17035. front: {
  17036. height: math.unit(5 + 7 / 12, "feet"),
  17037. name: "Front",
  17038. image: {
  17039. source: "./media/characters/isabelle/front.svg",
  17040. extra: 2130 / 1976,
  17041. bottom: 0.05
  17042. }
  17043. },
  17044. },
  17045. [
  17046. {
  17047. name: "Supermicro",
  17048. height: math.unit(10, "micrometers")
  17049. },
  17050. {
  17051. name: "Micro",
  17052. height: math.unit(1, "inch")
  17053. },
  17054. {
  17055. name: "Tiny",
  17056. height: math.unit(5, "inches")
  17057. },
  17058. {
  17059. name: "Standard",
  17060. height: math.unit(5 + 7 / 12, "inches")
  17061. },
  17062. {
  17063. name: "Macro",
  17064. height: math.unit(80, "meters"),
  17065. default: true
  17066. },
  17067. {
  17068. name: "Megamacro",
  17069. height: math.unit(250, "meters")
  17070. },
  17071. {
  17072. name: "Gigamacro",
  17073. height: math.unit(5, "km")
  17074. },
  17075. {
  17076. name: "Cosmic",
  17077. height: math.unit(2.5e6, "miles")
  17078. },
  17079. ]
  17080. ))
  17081. characterMakers.push(() => makeCharacter(
  17082. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  17083. {
  17084. front: {
  17085. height: math.unit(6, "feet"),
  17086. weight: math.unit(150, "lb"),
  17087. name: "Front",
  17088. image: {
  17089. source: "./media/characters/hanzo/front.svg",
  17090. extra: 374 / 344,
  17091. bottom: 0.02
  17092. }
  17093. },
  17094. },
  17095. [
  17096. {
  17097. name: "Normal",
  17098. height: math.unit(8, "feet"),
  17099. default: true
  17100. },
  17101. ]
  17102. ))
  17103. characterMakers.push(() => makeCharacter(
  17104. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  17105. {
  17106. front: {
  17107. height: math.unit(7, "feet"),
  17108. weight: math.unit(130, "lb"),
  17109. name: "Front",
  17110. image: {
  17111. source: "./media/characters/anna/front.svg",
  17112. extra: 169 / 145,
  17113. bottom: 0.06
  17114. }
  17115. },
  17116. full: {
  17117. height: math.unit(4.96, "feet"),
  17118. weight: math.unit(220, "lb"),
  17119. name: "Full",
  17120. image: {
  17121. source: "./media/characters/anna/full.svg",
  17122. extra: 138 / 114,
  17123. bottom: 0.15
  17124. }
  17125. },
  17126. tongue: {
  17127. height: math.unit(2.53, "feet"),
  17128. name: "Tongue",
  17129. image: {
  17130. source: "./media/characters/anna/tongue.svg"
  17131. }
  17132. },
  17133. },
  17134. [
  17135. {
  17136. name: "Normal",
  17137. height: math.unit(7, "feet"),
  17138. default: true
  17139. },
  17140. ]
  17141. ))
  17142. characterMakers.push(() => makeCharacter(
  17143. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  17144. {
  17145. front: {
  17146. height: math.unit(7, "feet"),
  17147. weight: math.unit(150, "lb"),
  17148. name: "Front",
  17149. image: {
  17150. source: "./media/characters/ian-corvid/front.svg",
  17151. extra: 150 / 142,
  17152. bottom: 0.02
  17153. }
  17154. },
  17155. back: {
  17156. height: math.unit(7, "feet"),
  17157. weight: math.unit(150, "lb"),
  17158. name: "Back",
  17159. image: {
  17160. source: "./media/characters/ian-corvid/back.svg",
  17161. extra: 150 / 143,
  17162. bottom: 0.01
  17163. }
  17164. },
  17165. stomping: {
  17166. height: math.unit(7, "feet"),
  17167. weight: math.unit(150, "lb"),
  17168. name: "Stomping",
  17169. image: {
  17170. source: "./media/characters/ian-corvid/stomping.svg",
  17171. extra: 76 / 72
  17172. }
  17173. },
  17174. sitting: {
  17175. height: math.unit(7 / 1.8, "feet"),
  17176. weight: math.unit(150, "lb"),
  17177. name: "Sitting",
  17178. image: {
  17179. source: "./media/characters/ian-corvid/sitting.svg",
  17180. extra: 1400 / 1269,
  17181. bottom: 0.15
  17182. }
  17183. },
  17184. },
  17185. [
  17186. {
  17187. name: "Tiny Microw",
  17188. height: math.unit(1, "inch")
  17189. },
  17190. {
  17191. name: "Microw",
  17192. height: math.unit(6, "inches")
  17193. },
  17194. {
  17195. name: "Crow",
  17196. height: math.unit(7 + 1 / 12, "feet"),
  17197. default: true
  17198. },
  17199. {
  17200. name: "Macrow",
  17201. height: math.unit(176, "feet")
  17202. },
  17203. ]
  17204. ))
  17205. characterMakers.push(() => makeCharacter(
  17206. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  17207. {
  17208. front: {
  17209. height: math.unit(5 + 7 / 12, "feet"),
  17210. weight: math.unit(147, "lb"),
  17211. name: "Front",
  17212. image: {
  17213. source: "./media/characters/natalie-kellon/front.svg",
  17214. extra: 1214 / 1141,
  17215. bottom: 0.02
  17216. }
  17217. },
  17218. },
  17219. [
  17220. {
  17221. name: "Micro",
  17222. height: math.unit(1 / 16, "inch")
  17223. },
  17224. {
  17225. name: "Tiny",
  17226. height: math.unit(4, "inches")
  17227. },
  17228. {
  17229. name: "Normal",
  17230. height: math.unit(5 + 7 / 12, "feet"),
  17231. default: true
  17232. },
  17233. {
  17234. name: "Amazon",
  17235. height: math.unit(12, "feet")
  17236. },
  17237. {
  17238. name: "Giantess",
  17239. height: math.unit(160, "meters")
  17240. },
  17241. {
  17242. name: "Titaness",
  17243. height: math.unit(800, "meters")
  17244. },
  17245. ]
  17246. ))
  17247. characterMakers.push(() => makeCharacter(
  17248. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  17249. {
  17250. front: {
  17251. height: math.unit(6, "feet"),
  17252. weight: math.unit(150, "lb"),
  17253. name: "Front",
  17254. image: {
  17255. source: "./media/characters/alluria/front.svg",
  17256. extra: 806 / 738,
  17257. bottom: 0.01
  17258. }
  17259. },
  17260. side: {
  17261. height: math.unit(6, "feet"),
  17262. weight: math.unit(150, "lb"),
  17263. name: "Side",
  17264. image: {
  17265. source: "./media/characters/alluria/side.svg",
  17266. extra: 800 / 750,
  17267. }
  17268. },
  17269. back: {
  17270. height: math.unit(6, "feet"),
  17271. weight: math.unit(150, "lb"),
  17272. name: "Back",
  17273. image: {
  17274. source: "./media/characters/alluria/back.svg",
  17275. extra: 806 / 738,
  17276. }
  17277. },
  17278. frontMaid: {
  17279. height: math.unit(6, "feet"),
  17280. weight: math.unit(150, "lb"),
  17281. name: "Front (Maid)",
  17282. image: {
  17283. source: "./media/characters/alluria/front-maid.svg",
  17284. extra: 806 / 738,
  17285. bottom: 0.01
  17286. }
  17287. },
  17288. sideMaid: {
  17289. height: math.unit(6, "feet"),
  17290. weight: math.unit(150, "lb"),
  17291. name: "Side (Maid)",
  17292. image: {
  17293. source: "./media/characters/alluria/side-maid.svg",
  17294. extra: 800 / 750,
  17295. bottom: 0.005
  17296. }
  17297. },
  17298. backMaid: {
  17299. height: math.unit(6, "feet"),
  17300. weight: math.unit(150, "lb"),
  17301. name: "Back (Maid)",
  17302. image: {
  17303. source: "./media/characters/alluria/back-maid.svg",
  17304. extra: 806 / 738,
  17305. }
  17306. },
  17307. },
  17308. [
  17309. {
  17310. name: "Micro",
  17311. height: math.unit(6, "inches"),
  17312. default: true
  17313. },
  17314. ]
  17315. ))
  17316. characterMakers.push(() => makeCharacter(
  17317. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  17318. {
  17319. front: {
  17320. height: math.unit(6, "feet"),
  17321. weight: math.unit(150, "lb"),
  17322. name: "Front",
  17323. image: {
  17324. source: "./media/characters/kyle/front.svg",
  17325. extra: 1069 / 962,
  17326. bottom: 77.228 / 1727.45
  17327. }
  17328. },
  17329. },
  17330. [
  17331. {
  17332. name: "Macro",
  17333. height: math.unit(150, "feet"),
  17334. default: true
  17335. },
  17336. ]
  17337. ))
  17338. characterMakers.push(() => makeCharacter(
  17339. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  17340. {
  17341. front: {
  17342. height: math.unit(6, "feet"),
  17343. weight: math.unit(300, "lb"),
  17344. name: "Front",
  17345. image: {
  17346. source: "./media/characters/duncan/front.svg",
  17347. extra: 1650 / 1482,
  17348. bottom: 0.05
  17349. }
  17350. },
  17351. },
  17352. [
  17353. {
  17354. name: "Macro",
  17355. height: math.unit(100, "feet"),
  17356. default: true
  17357. },
  17358. ]
  17359. ))
  17360. characterMakers.push(() => makeCharacter(
  17361. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  17362. {
  17363. front: {
  17364. height: math.unit(5 + 4 / 12, "feet"),
  17365. weight: math.unit(220, "lb"),
  17366. name: "Front",
  17367. image: {
  17368. source: "./media/characters/memory/front.svg",
  17369. extra: 3641 / 3545,
  17370. bottom: 0.03
  17371. }
  17372. },
  17373. back: {
  17374. height: math.unit(5 + 4 / 12, "feet"),
  17375. weight: math.unit(220, "lb"),
  17376. name: "Back",
  17377. image: {
  17378. source: "./media/characters/memory/back.svg",
  17379. extra: 3641 / 3545,
  17380. bottom: 0.025
  17381. }
  17382. },
  17383. frontSkirt: {
  17384. height: math.unit(5 + 4 / 12, "feet"),
  17385. weight: math.unit(220, "lb"),
  17386. name: "Front (Skirt)",
  17387. image: {
  17388. source: "./media/characters/memory/front-skirt.svg",
  17389. extra: 3641 / 3545,
  17390. bottom: 0.03
  17391. }
  17392. },
  17393. frontDress: {
  17394. height: math.unit(5 + 4 / 12, "feet"),
  17395. weight: math.unit(220, "lb"),
  17396. name: "Front (Dress)",
  17397. image: {
  17398. source: "./media/characters/memory/front-dress.svg",
  17399. extra: 3641 / 3545,
  17400. bottom: 0.03
  17401. }
  17402. },
  17403. },
  17404. [
  17405. {
  17406. name: "Micro",
  17407. height: math.unit(6, "inches"),
  17408. default: true
  17409. },
  17410. {
  17411. name: "Normal",
  17412. height: math.unit(5 + 4 / 12, "feet")
  17413. },
  17414. ]
  17415. ))
  17416. characterMakers.push(() => makeCharacter(
  17417. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  17418. {
  17419. front: {
  17420. height: math.unit(4 + 11 / 12, "feet"),
  17421. weight: math.unit(100, "lb"),
  17422. name: "Front",
  17423. image: {
  17424. source: "./media/characters/luno/front.svg",
  17425. extra: 1535 / 1487,
  17426. bottom: 0.03
  17427. }
  17428. },
  17429. },
  17430. [
  17431. {
  17432. name: "Micro",
  17433. height: math.unit(3, "inches")
  17434. },
  17435. {
  17436. name: "Normal",
  17437. height: math.unit(4 + 11 / 12, "feet"),
  17438. default: true
  17439. },
  17440. {
  17441. name: "Macro",
  17442. height: math.unit(300, "feet")
  17443. },
  17444. {
  17445. name: "Megamacro",
  17446. height: math.unit(700, "miles")
  17447. },
  17448. ]
  17449. ))
  17450. characterMakers.push(() => makeCharacter(
  17451. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  17452. {
  17453. front: {
  17454. height: math.unit(6 + 2 / 12, "feet"),
  17455. weight: math.unit(170, "lb"),
  17456. name: "Front",
  17457. image: {
  17458. source: "./media/characters/jamesy/front.svg",
  17459. extra: 440 / 382,
  17460. bottom: 0.005
  17461. }
  17462. },
  17463. },
  17464. [
  17465. {
  17466. name: "Micro",
  17467. height: math.unit(3, "inches")
  17468. },
  17469. {
  17470. name: "Normal",
  17471. height: math.unit(6 + 2 / 12, "feet"),
  17472. default: true
  17473. },
  17474. {
  17475. name: "Macro",
  17476. height: math.unit(300, "feet")
  17477. },
  17478. {
  17479. name: "Megamacro",
  17480. height: math.unit(700, "miles")
  17481. },
  17482. ]
  17483. ))
  17484. characterMakers.push(() => makeCharacter(
  17485. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  17486. {
  17487. front: {
  17488. height: math.unit(6, "feet"),
  17489. weight: math.unit(160, "lb"),
  17490. name: "Front",
  17491. image: {
  17492. source: "./media/characters/mark/front.svg",
  17493. extra: 3300 / 3100,
  17494. bottom: 136.42 / 3440.47
  17495. }
  17496. },
  17497. },
  17498. [
  17499. {
  17500. name: "Macro",
  17501. height: math.unit(120, "meters")
  17502. },
  17503. {
  17504. name: "Bigger Macro",
  17505. height: math.unit(350, "meters")
  17506. },
  17507. {
  17508. name: "Megamacro",
  17509. height: math.unit(8, "km"),
  17510. default: true
  17511. },
  17512. {
  17513. name: "Continental",
  17514. height: math.unit(4550, "km")
  17515. },
  17516. {
  17517. name: "Planetary",
  17518. height: math.unit(65000, "km")
  17519. },
  17520. ]
  17521. ))
  17522. characterMakers.push(() => makeCharacter(
  17523. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  17524. {
  17525. front: {
  17526. height: math.unit(6, "feet"),
  17527. weight: math.unit(400, "lb"),
  17528. name: "Front",
  17529. image: {
  17530. source: "./media/characters/mac/front.svg",
  17531. extra: 1048 / 987.7,
  17532. bottom: 60 / 1107.6,
  17533. }
  17534. },
  17535. },
  17536. [
  17537. {
  17538. name: "Macro",
  17539. height: math.unit(500, "feet"),
  17540. default: true
  17541. },
  17542. ]
  17543. ))
  17544. characterMakers.push(() => makeCharacter(
  17545. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  17546. {
  17547. front: {
  17548. height: math.unit(5 + 2 / 12, "feet"),
  17549. weight: math.unit(190, "lb"),
  17550. name: "Front",
  17551. image: {
  17552. source: "./media/characters/bari/front.svg",
  17553. extra: 3156 / 2880,
  17554. bottom: 0.03
  17555. }
  17556. },
  17557. back: {
  17558. height: math.unit(5 + 2 / 12, "feet"),
  17559. weight: math.unit(190, "lb"),
  17560. name: "Back",
  17561. image: {
  17562. source: "./media/characters/bari/back.svg",
  17563. extra: 3260 / 2834,
  17564. bottom: 0.025
  17565. }
  17566. },
  17567. frontPlush: {
  17568. height: math.unit(5 + 2 / 12, "feet"),
  17569. weight: math.unit(190, "lb"),
  17570. name: "Front (Plush)",
  17571. image: {
  17572. source: "./media/characters/bari/front-plush.svg",
  17573. extra: 1112 / 1061,
  17574. bottom: 0.002
  17575. }
  17576. },
  17577. },
  17578. [
  17579. {
  17580. name: "Micro",
  17581. height: math.unit(3, "inches")
  17582. },
  17583. {
  17584. name: "Normal",
  17585. height: math.unit(5 + 2 / 12, "feet"),
  17586. default: true
  17587. },
  17588. {
  17589. name: "Macro",
  17590. height: math.unit(20, "feet")
  17591. },
  17592. ]
  17593. ))
  17594. characterMakers.push(() => makeCharacter(
  17595. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  17596. {
  17597. front: {
  17598. height: math.unit(6 + 1 / 12, "feet"),
  17599. weight: math.unit(275, "lb"),
  17600. name: "Front",
  17601. image: {
  17602. source: "./media/characters/hunter-misha-raven/front.svg"
  17603. }
  17604. },
  17605. },
  17606. [
  17607. {
  17608. name: "Mortal",
  17609. height: math.unit(6 + 1 / 12, "feet")
  17610. },
  17611. {
  17612. name: "Divine",
  17613. height: math.unit(1.12134e34, "parsecs"),
  17614. default: true
  17615. },
  17616. ]
  17617. ))
  17618. characterMakers.push(() => makeCharacter(
  17619. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  17620. {
  17621. front: {
  17622. height: math.unit(6 + 3 / 12, "feet"),
  17623. weight: math.unit(220, "lb"),
  17624. name: "Front",
  17625. image: {
  17626. source: "./media/characters/max-calore/front.svg",
  17627. extra: 1700 / 1648,
  17628. bottom: 0.01
  17629. }
  17630. },
  17631. back: {
  17632. height: math.unit(6 + 3 / 12, "feet"),
  17633. weight: math.unit(220, "lb"),
  17634. name: "Back",
  17635. image: {
  17636. source: "./media/characters/max-calore/back.svg",
  17637. extra: 1700 / 1648,
  17638. bottom: 0.01
  17639. }
  17640. },
  17641. },
  17642. [
  17643. {
  17644. name: "Normal",
  17645. height: math.unit(6 + 3 / 12, "feet"),
  17646. default: true
  17647. },
  17648. ]
  17649. ))
  17650. characterMakers.push(() => makeCharacter(
  17651. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  17652. {
  17653. side: {
  17654. height: math.unit(2 + 8 / 12, "feet"),
  17655. weight: math.unit(99, "lb"),
  17656. name: "Side",
  17657. image: {
  17658. source: "./media/characters/aspen/side.svg",
  17659. extra: 152 / 138,
  17660. bottom: 0.032
  17661. }
  17662. },
  17663. },
  17664. [
  17665. {
  17666. name: "Normal",
  17667. height: math.unit(2 + 8 / 12, "feet"),
  17668. default: true
  17669. },
  17670. ]
  17671. ))
  17672. characterMakers.push(() => makeCharacter(
  17673. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  17674. {
  17675. side: {
  17676. height: math.unit(3 + 2 / 12, "feet"),
  17677. weight: math.unit(224, "lb"),
  17678. name: "Side",
  17679. image: {
  17680. source: "./media/characters/sheila-feral-wolf/side.svg",
  17681. extra: 179 / 166,
  17682. bottom: 0.03
  17683. }
  17684. },
  17685. },
  17686. [
  17687. {
  17688. name: "Normal",
  17689. height: math.unit(3 + 2 / 12, "feet"),
  17690. default: true
  17691. },
  17692. ]
  17693. ))
  17694. characterMakers.push(() => makeCharacter(
  17695. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  17696. {
  17697. side: {
  17698. height: math.unit(1 + 9 / 12, "feet"),
  17699. weight: math.unit(38, "lb"),
  17700. name: "Side",
  17701. image: {
  17702. source: "./media/characters/michelle/side.svg",
  17703. extra: 147 / 136.7,
  17704. bottom: 0.03
  17705. }
  17706. },
  17707. },
  17708. [
  17709. {
  17710. name: "Normal",
  17711. height: math.unit(1 + 9 / 12, "feet"),
  17712. default: true
  17713. },
  17714. ]
  17715. ))
  17716. characterMakers.push(() => makeCharacter(
  17717. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  17718. {
  17719. front: {
  17720. height: math.unit(1.54, "feet"),
  17721. weight: math.unit(50, "lb"),
  17722. name: "Front",
  17723. image: {
  17724. source: "./media/characters/nino/front.svg"
  17725. }
  17726. },
  17727. },
  17728. [
  17729. {
  17730. name: "Normal",
  17731. height: math.unit(1.54, "feet"),
  17732. default: true
  17733. },
  17734. ]
  17735. ))
  17736. characterMakers.push(() => makeCharacter(
  17737. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  17738. {
  17739. front: {
  17740. height: math.unit(1.49, "feet"),
  17741. weight: math.unit(45, "lb"),
  17742. name: "Front",
  17743. image: {
  17744. source: "./media/characters/viola/front.svg"
  17745. }
  17746. },
  17747. },
  17748. [
  17749. {
  17750. name: "Normal",
  17751. height: math.unit(1.49, "feet"),
  17752. default: true
  17753. },
  17754. ]
  17755. ))
  17756. characterMakers.push(() => makeCharacter(
  17757. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  17758. {
  17759. front: {
  17760. height: math.unit(6 + 5 / 12, "feet"),
  17761. weight: math.unit(580, "lb"),
  17762. name: "Front",
  17763. image: {
  17764. source: "./media/characters/atlas/front.svg",
  17765. extra: 298.5 / 290,
  17766. bottom: 0.015
  17767. }
  17768. },
  17769. },
  17770. [
  17771. {
  17772. name: "Normal",
  17773. height: math.unit(6 + 5 / 12, "feet"),
  17774. default: true
  17775. },
  17776. ]
  17777. ))
  17778. characterMakers.push(() => makeCharacter(
  17779. { name: "Davy", species: ["cat"], tags: ["feral"] },
  17780. {
  17781. side: {
  17782. height: math.unit(15.6, "inches"),
  17783. weight: math.unit(10, "lb"),
  17784. name: "Side",
  17785. image: {
  17786. source: "./media/characters/davy/side.svg",
  17787. extra: 200 / 170,
  17788. bottom: 0.01
  17789. }
  17790. },
  17791. },
  17792. [
  17793. {
  17794. name: "Normal",
  17795. height: math.unit(15.6, "inches"),
  17796. default: true
  17797. },
  17798. ]
  17799. ))
  17800. characterMakers.push(() => makeCharacter(
  17801. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  17802. {
  17803. side: {
  17804. height: math.unit(4 + 8 / 12, "feet"),
  17805. weight: math.unit(166, "lb"),
  17806. name: "Side",
  17807. image: {
  17808. source: "./media/characters/fiona/side.svg",
  17809. extra: 232 / 220,
  17810. bottom: 0.03
  17811. }
  17812. },
  17813. },
  17814. [
  17815. {
  17816. name: "Normal",
  17817. height: math.unit(4 + 8 / 12, "feet"),
  17818. default: true
  17819. },
  17820. ]
  17821. ))
  17822. characterMakers.push(() => makeCharacter(
  17823. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  17824. {
  17825. front: {
  17826. height: math.unit(26, "inches"),
  17827. weight: math.unit(35, "lb"),
  17828. name: "Front",
  17829. image: {
  17830. source: "./media/characters/lyla/front.svg",
  17831. bottom: 0.1
  17832. }
  17833. },
  17834. },
  17835. [
  17836. {
  17837. name: "Normal",
  17838. height: math.unit(3, "feet"),
  17839. default: true
  17840. },
  17841. ]
  17842. ))
  17843. characterMakers.push(() => makeCharacter(
  17844. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  17845. {
  17846. side: {
  17847. height: math.unit(1.8, "feet"),
  17848. weight: math.unit(44, "lb"),
  17849. name: "Side",
  17850. image: {
  17851. source: "./media/characters/perseus/side.svg",
  17852. bottom: 0.21
  17853. }
  17854. },
  17855. },
  17856. [
  17857. {
  17858. name: "Normal",
  17859. height: math.unit(1.8, "feet"),
  17860. default: true
  17861. },
  17862. ]
  17863. ))
  17864. characterMakers.push(() => makeCharacter(
  17865. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  17866. {
  17867. side: {
  17868. height: math.unit(4 + 2 / 12, "feet"),
  17869. weight: math.unit(20, "lb"),
  17870. name: "Side",
  17871. image: {
  17872. source: "./media/characters/remus/side.svg"
  17873. }
  17874. },
  17875. },
  17876. [
  17877. {
  17878. name: "Normal",
  17879. height: math.unit(4 + 2 / 12, "feet"),
  17880. default: true
  17881. },
  17882. ]
  17883. ))
  17884. characterMakers.push(() => makeCharacter(
  17885. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  17886. {
  17887. front: {
  17888. height: math.unit(4 + 11 / 12, "feet"),
  17889. weight: math.unit(114, "lb"),
  17890. name: "Front",
  17891. image: {
  17892. source: "./media/characters/raf/front.svg",
  17893. extra: 1504/1339,
  17894. bottom: 26/1530
  17895. }
  17896. },
  17897. side: {
  17898. height: math.unit(4 + 11 / 12, "feet"),
  17899. weight: math.unit(114, "lb"),
  17900. name: "Side",
  17901. image: {
  17902. source: "./media/characters/raf/side.svg",
  17903. extra: 1466/1316,
  17904. bottom: 29/1495
  17905. }
  17906. },
  17907. },
  17908. [
  17909. {
  17910. name: "Micro",
  17911. height: math.unit(2, "inches")
  17912. },
  17913. {
  17914. name: "Normal",
  17915. height: math.unit(4 + 11 / 12, "feet"),
  17916. default: true
  17917. },
  17918. {
  17919. name: "Macro",
  17920. height: math.unit(70, "feet")
  17921. },
  17922. ]
  17923. ))
  17924. characterMakers.push(() => makeCharacter(
  17925. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  17926. {
  17927. front: {
  17928. height: math.unit(1.5, "meters"),
  17929. weight: math.unit(68, "kg"),
  17930. name: "Front",
  17931. image: {
  17932. source: "./media/characters/liam-einarr/front.svg",
  17933. extra: 2822 / 2666
  17934. }
  17935. },
  17936. back: {
  17937. height: math.unit(1.5, "meters"),
  17938. weight: math.unit(68, "kg"),
  17939. name: "Back",
  17940. image: {
  17941. source: "./media/characters/liam-einarr/back.svg",
  17942. extra: 2822 / 2666,
  17943. bottom: 0.015
  17944. }
  17945. },
  17946. },
  17947. [
  17948. {
  17949. name: "Normal",
  17950. height: math.unit(1.5, "meters"),
  17951. default: true
  17952. },
  17953. {
  17954. name: "Macro",
  17955. height: math.unit(150, "meters")
  17956. },
  17957. {
  17958. name: "Megamacro",
  17959. height: math.unit(35, "km")
  17960. },
  17961. ]
  17962. ))
  17963. characterMakers.push(() => makeCharacter(
  17964. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  17965. {
  17966. front: {
  17967. height: math.unit(6, "feet"),
  17968. weight: math.unit(75, "kg"),
  17969. name: "Front",
  17970. image: {
  17971. source: "./media/characters/linda/front.svg",
  17972. extra: 930 / 874,
  17973. bottom: 0.004
  17974. }
  17975. },
  17976. },
  17977. [
  17978. {
  17979. name: "Normal",
  17980. height: math.unit(6, "feet"),
  17981. default: true
  17982. },
  17983. ]
  17984. ))
  17985. characterMakers.push(() => makeCharacter(
  17986. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  17987. {
  17988. front: {
  17989. height: math.unit(6 + 8 / 12, "feet"),
  17990. weight: math.unit(220, "lb"),
  17991. name: "Front",
  17992. image: {
  17993. source: "./media/characters/caylex/front.svg",
  17994. extra: 821 / 772,
  17995. bottom: 0.07
  17996. }
  17997. },
  17998. back: {
  17999. height: math.unit(6 + 8 / 12, "feet"),
  18000. weight: math.unit(220, "lb"),
  18001. name: "Back",
  18002. image: {
  18003. source: "./media/characters/caylex/back.svg",
  18004. extra: 821 / 772,
  18005. bottom: 0.022
  18006. }
  18007. },
  18008. hand: {
  18009. height: math.unit(1.25, "feet"),
  18010. name: "Hand",
  18011. image: {
  18012. source: "./media/characters/caylex/hand.svg"
  18013. }
  18014. },
  18015. foot: {
  18016. height: math.unit(1.6, "feet"),
  18017. name: "Foot",
  18018. image: {
  18019. source: "./media/characters/caylex/foot.svg"
  18020. }
  18021. },
  18022. armored: {
  18023. height: math.unit(6 + 8 / 12, "feet"),
  18024. weight: math.unit(250, "lb"),
  18025. name: "Armored",
  18026. image: {
  18027. source: "./media/characters/caylex/armored.svg",
  18028. extra: 1420 / 1310,
  18029. bottom: 0.045
  18030. }
  18031. },
  18032. },
  18033. [
  18034. {
  18035. name: "Normal",
  18036. height: math.unit(6 + 8 / 12, "feet"),
  18037. default: true
  18038. },
  18039. {
  18040. name: "Normal+",
  18041. height: math.unit(12, "feet")
  18042. },
  18043. ]
  18044. ))
  18045. characterMakers.push(() => makeCharacter(
  18046. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  18047. {
  18048. front: {
  18049. height: math.unit(7 + 6 / 12, "feet"),
  18050. weight: math.unit(288, "lb"),
  18051. name: "Front",
  18052. image: {
  18053. source: "./media/characters/alana/front.svg",
  18054. extra: 679 / 653,
  18055. bottom: 22.5 / 701
  18056. }
  18057. },
  18058. },
  18059. [
  18060. {
  18061. name: "Normal",
  18062. height: math.unit(7 + 6 / 12, "feet")
  18063. },
  18064. {
  18065. name: "Large",
  18066. height: math.unit(50, "feet")
  18067. },
  18068. {
  18069. name: "Macro",
  18070. height: math.unit(100, "feet"),
  18071. default: true
  18072. },
  18073. {
  18074. name: "Macro+",
  18075. height: math.unit(200, "feet")
  18076. },
  18077. ]
  18078. ))
  18079. characterMakers.push(() => makeCharacter(
  18080. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  18081. {
  18082. front: {
  18083. height: math.unit(6 + 1 / 12, "feet"),
  18084. weight: math.unit(210, "lb"),
  18085. name: "Front",
  18086. image: {
  18087. source: "./media/characters/hasani/front.svg",
  18088. extra: 244 / 232,
  18089. bottom: 0.01
  18090. }
  18091. },
  18092. back: {
  18093. height: math.unit(6 + 1 / 12, "feet"),
  18094. weight: math.unit(210, "lb"),
  18095. name: "Back",
  18096. image: {
  18097. source: "./media/characters/hasani/back.svg",
  18098. extra: 244 / 232,
  18099. bottom: 0.01
  18100. }
  18101. },
  18102. },
  18103. [
  18104. {
  18105. name: "Normal",
  18106. height: math.unit(6 + 1 / 12, "feet")
  18107. },
  18108. {
  18109. name: "Macro",
  18110. height: math.unit(175, "feet"),
  18111. default: true
  18112. },
  18113. ]
  18114. ))
  18115. characterMakers.push(() => makeCharacter(
  18116. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  18117. {
  18118. front: {
  18119. height: math.unit(1.82, "meters"),
  18120. weight: math.unit(140, "lb"),
  18121. name: "Front",
  18122. image: {
  18123. source: "./media/characters/nita/front.svg",
  18124. extra: 2473 / 2363,
  18125. bottom: 0.01
  18126. }
  18127. },
  18128. },
  18129. [
  18130. {
  18131. name: "Normal",
  18132. height: math.unit(1.82, "m")
  18133. },
  18134. {
  18135. name: "Macro",
  18136. height: math.unit(300, "m")
  18137. },
  18138. {
  18139. name: "Mistake Canon",
  18140. height: math.unit(0.5, "miles"),
  18141. default: true
  18142. },
  18143. {
  18144. name: "Big Mistake",
  18145. height: math.unit(13, "miles")
  18146. },
  18147. {
  18148. name: "Playing God",
  18149. height: math.unit(2450, "miles")
  18150. },
  18151. ]
  18152. ))
  18153. characterMakers.push(() => makeCharacter(
  18154. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  18155. {
  18156. front: {
  18157. height: math.unit(4, "feet"),
  18158. weight: math.unit(120, "lb"),
  18159. name: "Front",
  18160. image: {
  18161. source: "./media/characters/shiriko/front.svg",
  18162. extra: 970/934,
  18163. bottom: 5/975
  18164. }
  18165. },
  18166. },
  18167. [
  18168. {
  18169. name: "Normal",
  18170. height: math.unit(4, "feet"),
  18171. default: true
  18172. },
  18173. ]
  18174. ))
  18175. characterMakers.push(() => makeCharacter(
  18176. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  18177. {
  18178. front: {
  18179. height: math.unit(6, "feet"),
  18180. name: "front",
  18181. image: {
  18182. source: "./media/characters/deja/front.svg",
  18183. extra: 926 / 840,
  18184. bottom: 0.07
  18185. }
  18186. },
  18187. },
  18188. [
  18189. {
  18190. name: "Planck Length",
  18191. height: math.unit(1.6e-35, "meters")
  18192. },
  18193. {
  18194. name: "Normal",
  18195. height: math.unit(30.48, "meters"),
  18196. default: true
  18197. },
  18198. {
  18199. name: "Universal",
  18200. height: math.unit(8.8e26, "meters")
  18201. },
  18202. ]
  18203. ))
  18204. characterMakers.push(() => makeCharacter(
  18205. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  18206. {
  18207. side: {
  18208. height: math.unit(8, "feet"),
  18209. weight: math.unit(6300, "lb"),
  18210. name: "Side",
  18211. image: {
  18212. source: "./media/characters/anima/side.svg",
  18213. bottom: 0.035
  18214. }
  18215. },
  18216. },
  18217. [
  18218. {
  18219. name: "Normal",
  18220. height: math.unit(8, "feet"),
  18221. default: true
  18222. },
  18223. ]
  18224. ))
  18225. characterMakers.push(() => makeCharacter(
  18226. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  18227. {
  18228. front: {
  18229. height: math.unit(8, "feet"),
  18230. weight: math.unit(350, "lb"),
  18231. name: "Front",
  18232. image: {
  18233. source: "./media/characters/bianca/front.svg",
  18234. extra: 234 / 225,
  18235. bottom: 0.03
  18236. }
  18237. },
  18238. },
  18239. [
  18240. {
  18241. name: "Normal",
  18242. height: math.unit(8, "feet"),
  18243. default: true
  18244. },
  18245. ]
  18246. ))
  18247. characterMakers.push(() => makeCharacter(
  18248. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  18249. {
  18250. front: {
  18251. height: math.unit(11 + 5/12, "feet"),
  18252. weight: math.unit(1200, "lb"),
  18253. name: "Front",
  18254. image: {
  18255. source: "./media/characters/adinia/front.svg",
  18256. extra: 1767/1641,
  18257. bottom: 44/1811
  18258. },
  18259. extraAttributes: {
  18260. "energyIntake": {
  18261. name: "Energy Intake",
  18262. power: 3,
  18263. type: "energy",
  18264. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  18265. },
  18266. }
  18267. },
  18268. back: {
  18269. height: math.unit(11 + 5/12, "feet"),
  18270. weight: math.unit(1200, "lb"),
  18271. name: "Back",
  18272. image: {
  18273. source: "./media/characters/adinia/back.svg",
  18274. extra: 1834/1684,
  18275. bottom: 14/1848
  18276. },
  18277. extraAttributes: {
  18278. "energyIntake": {
  18279. name: "Energy Intake",
  18280. power: 3,
  18281. type: "energy",
  18282. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  18283. },
  18284. }
  18285. },
  18286. maw: {
  18287. height: math.unit(3.79, "feet"),
  18288. name: "Maw",
  18289. image: {
  18290. source: "./media/characters/adinia/maw.svg"
  18291. }
  18292. },
  18293. rump: {
  18294. height: math.unit(4.6, "feet"),
  18295. name: "Rump",
  18296. image: {
  18297. source: "./media/characters/adinia/rump.svg"
  18298. }
  18299. },
  18300. },
  18301. [
  18302. {
  18303. name: "Normal",
  18304. height: math.unit(11 + 5 / 12, "feet"),
  18305. default: true
  18306. },
  18307. ]
  18308. ))
  18309. characterMakers.push(() => makeCharacter(
  18310. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  18311. {
  18312. front: {
  18313. height: math.unit(3, "meters"),
  18314. weight: math.unit(200, "kg"),
  18315. name: "Front",
  18316. image: {
  18317. source: "./media/characters/lykasa/front.svg",
  18318. extra: 1076 / 976,
  18319. bottom: 0.06
  18320. }
  18321. },
  18322. },
  18323. [
  18324. {
  18325. name: "Normal",
  18326. height: math.unit(3, "meters")
  18327. },
  18328. {
  18329. name: "Kaiju",
  18330. height: math.unit(120, "meters"),
  18331. default: true
  18332. },
  18333. {
  18334. name: "Mega Kaiju",
  18335. height: math.unit(240, "km")
  18336. },
  18337. {
  18338. name: "Giga Kaiju",
  18339. height: math.unit(400, "megameters")
  18340. },
  18341. {
  18342. name: "Tera Kaiju",
  18343. height: math.unit(800, "gigameters")
  18344. },
  18345. {
  18346. name: "Kaiju Dragon Goddess",
  18347. height: math.unit(26, "zettaparsecs")
  18348. },
  18349. ]
  18350. ))
  18351. characterMakers.push(() => makeCharacter(
  18352. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  18353. {
  18354. side: {
  18355. height: math.unit(283 / 124 * 6, "feet"),
  18356. weight: math.unit(35000, "lb"),
  18357. name: "Side",
  18358. image: {
  18359. source: "./media/characters/malfaren/side.svg",
  18360. extra: 1310/529,
  18361. bottom: 24/1334
  18362. }
  18363. },
  18364. front: {
  18365. height: math.unit(22.36, "feet"),
  18366. weight: math.unit(35000, "lb"),
  18367. name: "Front",
  18368. image: {
  18369. source: "./media/characters/malfaren/front.svg",
  18370. extra: 1237/1115,
  18371. bottom: 32/1269
  18372. }
  18373. },
  18374. maw: {
  18375. height: math.unit(6.9, "feet"),
  18376. name: "Maw",
  18377. image: {
  18378. source: "./media/characters/malfaren/maw.svg"
  18379. }
  18380. },
  18381. dick: {
  18382. height: math.unit(6.19, "feet"),
  18383. name: "Dick",
  18384. image: {
  18385. source: "./media/characters/malfaren/dick.svg"
  18386. }
  18387. },
  18388. eye: {
  18389. height: math.unit(0.69, "feet"),
  18390. name: "Eye",
  18391. image: {
  18392. source: "./media/characters/malfaren/eye.svg"
  18393. }
  18394. },
  18395. },
  18396. [
  18397. {
  18398. name: "Big",
  18399. height: math.unit(283 / 162 * 6, "feet"),
  18400. },
  18401. {
  18402. name: "Bigger",
  18403. height: math.unit(283 / 124 * 6, "feet")
  18404. },
  18405. {
  18406. name: "Massive",
  18407. height: math.unit(283 / 92 * 6, "feet"),
  18408. default: true
  18409. },
  18410. {
  18411. name: "👀💦",
  18412. height: math.unit(283 / 73 * 6, "feet"),
  18413. },
  18414. ]
  18415. ))
  18416. characterMakers.push(() => makeCharacter(
  18417. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  18418. {
  18419. front: {
  18420. height: math.unit(1.7, "m"),
  18421. weight: math.unit(70, "kg"),
  18422. name: "Front",
  18423. image: {
  18424. source: "./media/characters/kernel/front.svg",
  18425. extra: 222 / 210,
  18426. bottom: 0.007
  18427. }
  18428. },
  18429. },
  18430. [
  18431. {
  18432. name: "Nano",
  18433. height: math.unit(17, "micrometers")
  18434. },
  18435. {
  18436. name: "Micro",
  18437. height: math.unit(1.7, "mm")
  18438. },
  18439. {
  18440. name: "Small",
  18441. height: math.unit(1.7, "cm")
  18442. },
  18443. {
  18444. name: "Normal",
  18445. height: math.unit(1.7, "m"),
  18446. default: true
  18447. },
  18448. ]
  18449. ))
  18450. characterMakers.push(() => makeCharacter(
  18451. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  18452. {
  18453. front: {
  18454. height: math.unit(1.75, "meters"),
  18455. weight: math.unit(65, "kg"),
  18456. name: "Front",
  18457. image: {
  18458. source: "./media/characters/jayne-folest/front.svg",
  18459. extra: 2115 / 2007,
  18460. bottom: 0.02
  18461. }
  18462. },
  18463. back: {
  18464. height: math.unit(1.75, "meters"),
  18465. weight: math.unit(65, "kg"),
  18466. name: "Back",
  18467. image: {
  18468. source: "./media/characters/jayne-folest/back.svg",
  18469. extra: 2115 / 2007,
  18470. bottom: 0.005
  18471. }
  18472. },
  18473. frontClothed: {
  18474. height: math.unit(1.75, "meters"),
  18475. weight: math.unit(65, "kg"),
  18476. name: "Front (Clothed)",
  18477. image: {
  18478. source: "./media/characters/jayne-folest/front-clothed.svg",
  18479. extra: 2115 / 2007,
  18480. bottom: 0.035
  18481. }
  18482. },
  18483. hand: {
  18484. height: math.unit(1 / 1.260, "feet"),
  18485. name: "Hand",
  18486. image: {
  18487. source: "./media/characters/jayne-folest/hand.svg"
  18488. }
  18489. },
  18490. foot: {
  18491. height: math.unit(1 / 0.918, "feet"),
  18492. name: "Foot",
  18493. image: {
  18494. source: "./media/characters/jayne-folest/foot.svg"
  18495. }
  18496. },
  18497. },
  18498. [
  18499. {
  18500. name: "Micro",
  18501. height: math.unit(4, "cm")
  18502. },
  18503. {
  18504. name: "Normal",
  18505. height: math.unit(1.75, "meters")
  18506. },
  18507. {
  18508. name: "Macro",
  18509. height: math.unit(47.5, "meters"),
  18510. default: true
  18511. },
  18512. ]
  18513. ))
  18514. characterMakers.push(() => makeCharacter(
  18515. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  18516. {
  18517. front: {
  18518. height: math.unit(180, "cm"),
  18519. weight: math.unit(70, "kg"),
  18520. name: "Front",
  18521. image: {
  18522. source: "./media/characters/algier/front.svg",
  18523. extra: 596 / 572,
  18524. bottom: 0.04
  18525. }
  18526. },
  18527. back: {
  18528. height: math.unit(180, "cm"),
  18529. weight: math.unit(70, "kg"),
  18530. name: "Back",
  18531. image: {
  18532. source: "./media/characters/algier/back.svg",
  18533. extra: 596 / 572,
  18534. bottom: 0.025
  18535. }
  18536. },
  18537. frontdressed: {
  18538. height: math.unit(180, "cm"),
  18539. weight: math.unit(150, "kg"),
  18540. name: "Front-dressed",
  18541. image: {
  18542. source: "./media/characters/algier/front-dressed.svg",
  18543. extra: 596 / 572,
  18544. bottom: 0.038
  18545. }
  18546. },
  18547. },
  18548. [
  18549. {
  18550. name: "Micro",
  18551. height: math.unit(5, "cm")
  18552. },
  18553. {
  18554. name: "Normal",
  18555. height: math.unit(180, "cm"),
  18556. default: true
  18557. },
  18558. {
  18559. name: "Macro",
  18560. height: math.unit(64, "m")
  18561. },
  18562. ]
  18563. ))
  18564. characterMakers.push(() => makeCharacter(
  18565. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  18566. {
  18567. upright: {
  18568. height: math.unit(7, "feet"),
  18569. weight: math.unit(300, "lb"),
  18570. name: "Upright",
  18571. image: {
  18572. source: "./media/characters/pretzel/upright.svg",
  18573. extra: 534 / 522,
  18574. bottom: 0.065
  18575. }
  18576. },
  18577. sprawling: {
  18578. height: math.unit(3.75, "feet"),
  18579. weight: math.unit(300, "lb"),
  18580. name: "Sprawling",
  18581. image: {
  18582. source: "./media/characters/pretzel/sprawling.svg",
  18583. extra: 314 / 281,
  18584. bottom: 0.1
  18585. }
  18586. },
  18587. tongue: {
  18588. height: math.unit(2, "feet"),
  18589. name: "Tongue",
  18590. image: {
  18591. source: "./media/characters/pretzel/tongue.svg"
  18592. }
  18593. },
  18594. },
  18595. [
  18596. {
  18597. name: "Normal",
  18598. height: math.unit(7, "feet"),
  18599. default: true
  18600. },
  18601. {
  18602. name: "Oversized",
  18603. height: math.unit(15, "feet")
  18604. },
  18605. {
  18606. name: "Huge",
  18607. height: math.unit(30, "feet")
  18608. },
  18609. {
  18610. name: "Macro",
  18611. height: math.unit(250, "feet")
  18612. },
  18613. ]
  18614. ))
  18615. characterMakers.push(() => makeCharacter(
  18616. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  18617. {
  18618. sideFront: {
  18619. height: math.unit(5 + 2 / 12, "feet"),
  18620. weight: math.unit(120, "lb"),
  18621. name: "Front Side",
  18622. image: {
  18623. source: "./media/characters/roxi/side-front.svg",
  18624. extra: 2924 / 2717,
  18625. bottom: 0.08
  18626. }
  18627. },
  18628. sideBack: {
  18629. height: math.unit(5 + 2 / 12, "feet"),
  18630. weight: math.unit(120, "lb"),
  18631. name: "Back Side",
  18632. image: {
  18633. source: "./media/characters/roxi/side-back.svg",
  18634. extra: 2904 / 2693,
  18635. bottom: 0.06
  18636. }
  18637. },
  18638. front: {
  18639. height: math.unit(5 + 2 / 12, "feet"),
  18640. weight: math.unit(120, "lb"),
  18641. name: "Front",
  18642. image: {
  18643. source: "./media/characters/roxi/front.svg",
  18644. extra: 2028 / 1907,
  18645. bottom: 0.01
  18646. }
  18647. },
  18648. frontAlt: {
  18649. height: math.unit(5 + 2 / 12, "feet"),
  18650. weight: math.unit(120, "lb"),
  18651. name: "Front (Alt)",
  18652. image: {
  18653. source: "./media/characters/roxi/front-alt.svg",
  18654. extra: 1828 / 1798,
  18655. bottom: 0.01
  18656. }
  18657. },
  18658. sitting: {
  18659. height: math.unit(2.8, "feet"),
  18660. weight: math.unit(120, "lb"),
  18661. name: "Sitting",
  18662. image: {
  18663. source: "./media/characters/roxi/sitting.svg",
  18664. extra: 2660 / 2462,
  18665. bottom: 0.1
  18666. }
  18667. },
  18668. },
  18669. [
  18670. {
  18671. name: "Normal",
  18672. height: math.unit(5 + 2 / 12, "feet"),
  18673. default: true
  18674. },
  18675. ]
  18676. ))
  18677. characterMakers.push(() => makeCharacter(
  18678. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  18679. {
  18680. side: {
  18681. height: math.unit(55, "feet"),
  18682. weight: math.unit(153, "tons"),
  18683. name: "Side",
  18684. image: {
  18685. source: "./media/characters/shadow/side.svg",
  18686. extra: 701 / 628,
  18687. bottom: 0.02
  18688. }
  18689. },
  18690. flying: {
  18691. height: math.unit(145, "feet"),
  18692. weight: math.unit(153, "tons"),
  18693. name: "Flying",
  18694. image: {
  18695. source: "./media/characters/shadow/flying.svg"
  18696. }
  18697. },
  18698. },
  18699. [
  18700. {
  18701. name: "Normal",
  18702. height: math.unit(55, "feet"),
  18703. default: true
  18704. },
  18705. ]
  18706. ))
  18707. characterMakers.push(() => makeCharacter(
  18708. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  18709. {
  18710. front: {
  18711. height: math.unit(6, "feet"),
  18712. weight: math.unit(200, "lb"),
  18713. name: "Front",
  18714. image: {
  18715. source: "./media/characters/marcie/front.svg",
  18716. extra: 960 / 876,
  18717. bottom: 58 / 1017.87
  18718. }
  18719. },
  18720. },
  18721. [
  18722. {
  18723. name: "Macro",
  18724. height: math.unit(1, "mile"),
  18725. default: true
  18726. },
  18727. ]
  18728. ))
  18729. characterMakers.push(() => makeCharacter(
  18730. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  18731. {
  18732. front: {
  18733. height: math.unit(7, "feet"),
  18734. weight: math.unit(200, "lb"),
  18735. name: "Front",
  18736. image: {
  18737. source: "./media/characters/kachina/front.svg",
  18738. extra: 1290.68 / 1119,
  18739. bottom: 36.5 / 1327.18
  18740. }
  18741. },
  18742. },
  18743. [
  18744. {
  18745. name: "Normal",
  18746. height: math.unit(7, "feet"),
  18747. default: true
  18748. },
  18749. ]
  18750. ))
  18751. characterMakers.push(() => makeCharacter(
  18752. { name: "Kash", species: ["canine"], tags: ["feral"] },
  18753. {
  18754. looking: {
  18755. height: math.unit(2, "meters"),
  18756. weight: math.unit(300, "kg"),
  18757. name: "Looking",
  18758. image: {
  18759. source: "./media/characters/kash/looking.svg",
  18760. extra: 474 / 344,
  18761. bottom: 0.03
  18762. }
  18763. },
  18764. side: {
  18765. height: math.unit(2, "meters"),
  18766. weight: math.unit(300, "kg"),
  18767. name: "Side",
  18768. image: {
  18769. source: "./media/characters/kash/side.svg",
  18770. extra: 302 / 251,
  18771. bottom: 0.03
  18772. }
  18773. },
  18774. front: {
  18775. height: math.unit(2, "meters"),
  18776. weight: math.unit(300, "kg"),
  18777. name: "Front",
  18778. image: {
  18779. source: "./media/characters/kash/front.svg",
  18780. extra: 495 / 360,
  18781. bottom: 0.015
  18782. }
  18783. },
  18784. },
  18785. [
  18786. {
  18787. name: "Normal",
  18788. height: math.unit(2, "meters"),
  18789. default: true
  18790. },
  18791. {
  18792. name: "Big",
  18793. height: math.unit(3, "meters")
  18794. },
  18795. {
  18796. name: "Large",
  18797. height: math.unit(5, "meters")
  18798. },
  18799. ]
  18800. ))
  18801. characterMakers.push(() => makeCharacter(
  18802. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  18803. {
  18804. feeding: {
  18805. height: math.unit(6.7, "feet"),
  18806. weight: math.unit(350, "lb"),
  18807. name: "Feeding",
  18808. image: {
  18809. source: "./media/characters/lalim/feeding.svg",
  18810. }
  18811. },
  18812. },
  18813. [
  18814. {
  18815. name: "Normal",
  18816. height: math.unit(6.7, "feet"),
  18817. default: true
  18818. },
  18819. ]
  18820. ))
  18821. characterMakers.push(() => makeCharacter(
  18822. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  18823. {
  18824. front: {
  18825. height: math.unit(9.5, "feet"),
  18826. weight: math.unit(600, "lb"),
  18827. name: "Front",
  18828. image: {
  18829. source: "./media/characters/de'vout/front.svg",
  18830. extra: 1443 / 1328,
  18831. bottom: 0.025
  18832. }
  18833. },
  18834. back: {
  18835. height: math.unit(9.5, "feet"),
  18836. weight: math.unit(600, "lb"),
  18837. name: "Back",
  18838. image: {
  18839. source: "./media/characters/de'vout/back.svg",
  18840. extra: 1443 / 1328
  18841. }
  18842. },
  18843. frontDressed: {
  18844. height: math.unit(9.5, "feet"),
  18845. weight: math.unit(600, "lb"),
  18846. name: "Front (Dressed",
  18847. image: {
  18848. source: "./media/characters/de'vout/front-dressed.svg",
  18849. extra: 1443 / 1328,
  18850. bottom: 0.025
  18851. }
  18852. },
  18853. backDressed: {
  18854. height: math.unit(9.5, "feet"),
  18855. weight: math.unit(600, "lb"),
  18856. name: "Back (Dressed",
  18857. image: {
  18858. source: "./media/characters/de'vout/back-dressed.svg",
  18859. extra: 1443 / 1328
  18860. }
  18861. },
  18862. },
  18863. [
  18864. {
  18865. name: "Normal",
  18866. height: math.unit(9.5, "feet"),
  18867. default: true
  18868. },
  18869. ]
  18870. ))
  18871. characterMakers.push(() => makeCharacter(
  18872. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  18873. {
  18874. front: {
  18875. height: math.unit(8, "feet"),
  18876. weight: math.unit(225, "lb"),
  18877. name: "Front",
  18878. image: {
  18879. source: "./media/characters/talana/front.svg",
  18880. extra: 1410 / 1300,
  18881. bottom: 0.015
  18882. }
  18883. },
  18884. frontDressed: {
  18885. height: math.unit(8, "feet"),
  18886. weight: math.unit(225, "lb"),
  18887. name: "Front (Dressed",
  18888. image: {
  18889. source: "./media/characters/talana/front-dressed.svg",
  18890. extra: 1410 / 1300,
  18891. bottom: 0.015
  18892. }
  18893. },
  18894. },
  18895. [
  18896. {
  18897. name: "Normal",
  18898. height: math.unit(8, "feet"),
  18899. default: true
  18900. },
  18901. ]
  18902. ))
  18903. characterMakers.push(() => makeCharacter(
  18904. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  18905. {
  18906. side: {
  18907. height: math.unit(7.2, "feet"),
  18908. weight: math.unit(150, "lb"),
  18909. name: "Side",
  18910. image: {
  18911. source: "./media/characters/xeauvok/side.svg",
  18912. extra: 1975 / 1523,
  18913. bottom: 0.07
  18914. }
  18915. },
  18916. },
  18917. [
  18918. {
  18919. name: "Normal",
  18920. height: math.unit(7.2, "feet"),
  18921. default: true
  18922. },
  18923. ]
  18924. ))
  18925. characterMakers.push(() => makeCharacter(
  18926. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  18927. {
  18928. side: {
  18929. height: math.unit(4, "meters"),
  18930. weight: math.unit(2200, "kg"),
  18931. name: "Side",
  18932. image: {
  18933. source: "./media/characters/zara/side.svg",
  18934. extra: 765/744,
  18935. bottom: 156/921
  18936. }
  18937. },
  18938. },
  18939. [
  18940. {
  18941. name: "Normal",
  18942. height: math.unit(4, "meters"),
  18943. default: true
  18944. },
  18945. ]
  18946. ))
  18947. characterMakers.push(() => makeCharacter(
  18948. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  18949. {
  18950. side: {
  18951. height: math.unit(6, "feet"),
  18952. weight: math.unit(150, "lb"),
  18953. name: "Side",
  18954. image: {
  18955. source: "./media/characters/richard-dragon/side.svg",
  18956. extra: 845 / 340,
  18957. bottom: 0.017
  18958. }
  18959. },
  18960. maw: {
  18961. height: math.unit(2.97, "feet"),
  18962. name: "Maw",
  18963. image: {
  18964. source: "./media/characters/richard-dragon/maw.svg"
  18965. }
  18966. },
  18967. },
  18968. [
  18969. ]
  18970. ))
  18971. characterMakers.push(() => makeCharacter(
  18972. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  18973. {
  18974. front: {
  18975. height: math.unit(4, "feet"),
  18976. weight: math.unit(100, "lb"),
  18977. name: "Front",
  18978. image: {
  18979. source: "./media/characters/richard-smeargle/front.svg",
  18980. extra: 2952 / 2820,
  18981. bottom: 0.028
  18982. }
  18983. },
  18984. },
  18985. [
  18986. {
  18987. name: "Normal",
  18988. height: math.unit(4, "feet"),
  18989. default: true
  18990. },
  18991. {
  18992. name: "Dynamax",
  18993. height: math.unit(20, "meters")
  18994. },
  18995. ]
  18996. ))
  18997. characterMakers.push(() => makeCharacter(
  18998. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  18999. {
  19000. front: {
  19001. height: math.unit(6, "feet"),
  19002. weight: math.unit(110, "lb"),
  19003. name: "Front",
  19004. image: {
  19005. source: "./media/characters/klay/front.svg",
  19006. extra: 962 / 883,
  19007. bottom: 0.04
  19008. }
  19009. },
  19010. back: {
  19011. height: math.unit(6, "feet"),
  19012. weight: math.unit(110, "lb"),
  19013. name: "Back",
  19014. image: {
  19015. source: "./media/characters/klay/back.svg",
  19016. extra: 962 / 883
  19017. }
  19018. },
  19019. beans: {
  19020. height: math.unit(1.15, "feet"),
  19021. name: "Beans",
  19022. image: {
  19023. source: "./media/characters/klay/beans.svg"
  19024. }
  19025. },
  19026. },
  19027. [
  19028. {
  19029. name: "Micro",
  19030. height: math.unit(6, "inches")
  19031. },
  19032. {
  19033. name: "Mini",
  19034. height: math.unit(3, "feet")
  19035. },
  19036. {
  19037. name: "Normal",
  19038. height: math.unit(6, "feet"),
  19039. default: true
  19040. },
  19041. {
  19042. name: "Big",
  19043. height: math.unit(25, "feet")
  19044. },
  19045. {
  19046. name: "Macro",
  19047. height: math.unit(100, "feet")
  19048. },
  19049. {
  19050. name: "Megamacro",
  19051. height: math.unit(400, "feet")
  19052. },
  19053. ]
  19054. ))
  19055. characterMakers.push(() => makeCharacter(
  19056. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  19057. {
  19058. front: {
  19059. height: math.unit(6, "feet"),
  19060. weight: math.unit(160, "lb"),
  19061. name: "Front",
  19062. image: {
  19063. source: "./media/characters/marcus/front.svg",
  19064. extra: 734 / 676,
  19065. bottom: 0.03
  19066. }
  19067. },
  19068. },
  19069. [
  19070. {
  19071. name: "Little",
  19072. height: math.unit(6, "feet")
  19073. },
  19074. {
  19075. name: "Normal",
  19076. height: math.unit(110, "feet"),
  19077. default: true
  19078. },
  19079. {
  19080. name: "Macro",
  19081. height: math.unit(250, "feet")
  19082. },
  19083. {
  19084. name: "Megamacro",
  19085. height: math.unit(1000, "feet")
  19086. },
  19087. ]
  19088. ))
  19089. characterMakers.push(() => makeCharacter(
  19090. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  19091. {
  19092. front: {
  19093. height: math.unit(7, "feet"),
  19094. weight: math.unit(275, "lb"),
  19095. name: "Front",
  19096. image: {
  19097. source: "./media/characters/claude-delroute/front.svg",
  19098. extra: 902/827,
  19099. bottom: 26/928
  19100. }
  19101. },
  19102. side: {
  19103. height: math.unit(7, "feet"),
  19104. weight: math.unit(275, "lb"),
  19105. name: "Side",
  19106. image: {
  19107. source: "./media/characters/claude-delroute/side.svg",
  19108. extra: 908/853,
  19109. bottom: 16/924
  19110. }
  19111. },
  19112. back: {
  19113. height: math.unit(7, "feet"),
  19114. weight: math.unit(275, "lb"),
  19115. name: "Back",
  19116. image: {
  19117. source: "./media/characters/claude-delroute/back.svg",
  19118. extra: 911/829,
  19119. bottom: 18/929
  19120. }
  19121. },
  19122. maw: {
  19123. height: math.unit(0.6407, "meters"),
  19124. name: "Maw",
  19125. image: {
  19126. source: "./media/characters/claude-delroute/maw.svg"
  19127. }
  19128. },
  19129. },
  19130. [
  19131. {
  19132. name: "Normal",
  19133. height: math.unit(7, "feet"),
  19134. default: true
  19135. },
  19136. {
  19137. name: "Lorge",
  19138. height: math.unit(20, "feet")
  19139. },
  19140. ]
  19141. ))
  19142. characterMakers.push(() => makeCharacter(
  19143. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  19144. {
  19145. front: {
  19146. height: math.unit(8 + 4 / 12, "feet"),
  19147. weight: math.unit(600, "lb"),
  19148. name: "Front",
  19149. image: {
  19150. source: "./media/characters/dragonien/front.svg",
  19151. extra: 100 / 94,
  19152. bottom: 3.3 / 103.3445
  19153. }
  19154. },
  19155. back: {
  19156. height: math.unit(8 + 4 / 12, "feet"),
  19157. weight: math.unit(600, "lb"),
  19158. name: "Back",
  19159. image: {
  19160. source: "./media/characters/dragonien/back.svg",
  19161. extra: 776 / 746,
  19162. bottom: 6.4 / 782.0616
  19163. }
  19164. },
  19165. foot: {
  19166. height: math.unit(1.54, "feet"),
  19167. name: "Foot",
  19168. image: {
  19169. source: "./media/characters/dragonien/foot.svg",
  19170. }
  19171. },
  19172. },
  19173. [
  19174. {
  19175. name: "Normal",
  19176. height: math.unit(8 + 4 / 12, "feet"),
  19177. default: true
  19178. },
  19179. {
  19180. name: "Macro",
  19181. height: math.unit(200, "feet")
  19182. },
  19183. {
  19184. name: "Megamacro",
  19185. height: math.unit(1, "mile")
  19186. },
  19187. {
  19188. name: "Gigamacro",
  19189. height: math.unit(1000, "miles")
  19190. },
  19191. ]
  19192. ))
  19193. characterMakers.push(() => makeCharacter(
  19194. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  19195. {
  19196. front: {
  19197. height: math.unit(5 + 2 / 12, "feet"),
  19198. weight: math.unit(110, "lb"),
  19199. name: "Front",
  19200. image: {
  19201. source: "./media/characters/desta/front.svg",
  19202. extra: 767 / 726,
  19203. bottom: 11.7 / 779
  19204. }
  19205. },
  19206. back: {
  19207. height: math.unit(5 + 2 / 12, "feet"),
  19208. weight: math.unit(110, "lb"),
  19209. name: "Back",
  19210. image: {
  19211. source: "./media/characters/desta/back.svg",
  19212. extra: 777 / 728,
  19213. bottom: 6 / 784
  19214. }
  19215. },
  19216. frontAlt: {
  19217. height: math.unit(5 + 2 / 12, "feet"),
  19218. weight: math.unit(110, "lb"),
  19219. name: "Front",
  19220. image: {
  19221. source: "./media/characters/desta/front-alt.svg",
  19222. extra: 1482 / 1417
  19223. }
  19224. },
  19225. side: {
  19226. height: math.unit(5 + 2 / 12, "feet"),
  19227. weight: math.unit(110, "lb"),
  19228. name: "Side",
  19229. image: {
  19230. source: "./media/characters/desta/side.svg",
  19231. extra: 2579 / 2491,
  19232. bottom: 0.053
  19233. }
  19234. },
  19235. },
  19236. [
  19237. {
  19238. name: "Micro",
  19239. height: math.unit(6, "inches")
  19240. },
  19241. {
  19242. name: "Normal",
  19243. height: math.unit(5 + 2 / 12, "feet"),
  19244. default: true
  19245. },
  19246. {
  19247. name: "Macro",
  19248. height: math.unit(62, "feet")
  19249. },
  19250. {
  19251. name: "Megamacro",
  19252. height: math.unit(1800, "feet")
  19253. },
  19254. ]
  19255. ))
  19256. characterMakers.push(() => makeCharacter(
  19257. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  19258. {
  19259. front: {
  19260. height: math.unit(10, "feet"),
  19261. weight: math.unit(700, "lb"),
  19262. name: "Front",
  19263. image: {
  19264. source: "./media/characters/storm-alystar/front.svg",
  19265. extra: 2112 / 1898,
  19266. bottom: 0.034
  19267. }
  19268. },
  19269. },
  19270. [
  19271. {
  19272. name: "Micro",
  19273. height: math.unit(3.5, "inches")
  19274. },
  19275. {
  19276. name: "Normal",
  19277. height: math.unit(10, "feet"),
  19278. default: true
  19279. },
  19280. {
  19281. name: "Macro",
  19282. height: math.unit(400, "feet")
  19283. },
  19284. {
  19285. name: "Deific",
  19286. height: math.unit(60, "miles")
  19287. },
  19288. ]
  19289. ))
  19290. characterMakers.push(() => makeCharacter(
  19291. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  19292. {
  19293. front: {
  19294. height: math.unit(2.35, "meters"),
  19295. weight: math.unit(119, "kg"),
  19296. name: "Front",
  19297. image: {
  19298. source: "./media/characters/ilia/front.svg",
  19299. extra: 1285 / 1255,
  19300. bottom: 0.06
  19301. }
  19302. },
  19303. },
  19304. [
  19305. {
  19306. name: "Normal",
  19307. height: math.unit(2.35, "meters")
  19308. },
  19309. {
  19310. name: "Macro",
  19311. height: math.unit(140, "meters"),
  19312. default: true
  19313. },
  19314. {
  19315. name: "Megamacro",
  19316. height: math.unit(100, "miles")
  19317. },
  19318. ]
  19319. ))
  19320. characterMakers.push(() => makeCharacter(
  19321. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  19322. {
  19323. front: {
  19324. height: math.unit(6 + 5 / 12, "feet"),
  19325. weight: math.unit(190, "lb"),
  19326. name: "Front",
  19327. image: {
  19328. source: "./media/characters/kingdead/front.svg",
  19329. extra: 1228 / 1177
  19330. }
  19331. },
  19332. },
  19333. [
  19334. {
  19335. name: "Micro",
  19336. height: math.unit(7, "inches")
  19337. },
  19338. {
  19339. name: "Normal",
  19340. height: math.unit(6 + 5 / 12, "feet")
  19341. },
  19342. {
  19343. name: "Macro",
  19344. height: math.unit(150, "feet"),
  19345. default: true
  19346. },
  19347. {
  19348. name: "Megamacro",
  19349. height: math.unit(200, "miles")
  19350. },
  19351. ]
  19352. ))
  19353. characterMakers.push(() => makeCharacter(
  19354. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  19355. {
  19356. front: {
  19357. height: math.unit(8, "feet"),
  19358. weight: math.unit(600, "lb"),
  19359. name: "Front",
  19360. image: {
  19361. source: "./media/characters/kyrehx/front.svg",
  19362. extra: 1195 / 1095,
  19363. bottom: 0.034
  19364. }
  19365. },
  19366. },
  19367. [
  19368. {
  19369. name: "Micro",
  19370. height: math.unit(2, "inches")
  19371. },
  19372. {
  19373. name: "Normal",
  19374. height: math.unit(8, "feet"),
  19375. default: true
  19376. },
  19377. {
  19378. name: "Macro",
  19379. height: math.unit(255, "feet")
  19380. },
  19381. ]
  19382. ))
  19383. characterMakers.push(() => makeCharacter(
  19384. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  19385. {
  19386. front: {
  19387. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  19388. weight: math.unit(184, "lb"),
  19389. name: "Front",
  19390. image: {
  19391. source: "./media/characters/xang/front.svg",
  19392. extra: 845 / 755
  19393. }
  19394. },
  19395. },
  19396. [
  19397. {
  19398. name: "Normal",
  19399. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  19400. default: true
  19401. },
  19402. {
  19403. name: "Macro",
  19404. height: math.unit(0.935 * 146, "feet")
  19405. },
  19406. {
  19407. name: "Megamacro",
  19408. height: math.unit(0.935 * 3, "miles")
  19409. },
  19410. ]
  19411. ))
  19412. characterMakers.push(() => makeCharacter(
  19413. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  19414. {
  19415. frontDressed: {
  19416. height: math.unit(5 + 7 / 12, "feet"),
  19417. weight: math.unit(140, "lb"),
  19418. name: "Front (Dressed)",
  19419. image: {
  19420. source: "./media/characters/doc-weardno/front-dressed.svg",
  19421. extra: 263 / 234
  19422. }
  19423. },
  19424. backDressed: {
  19425. height: math.unit(5 + 7 / 12, "feet"),
  19426. weight: math.unit(140, "lb"),
  19427. name: "Back (Dressed)",
  19428. image: {
  19429. source: "./media/characters/doc-weardno/back-dressed.svg",
  19430. extra: 266 / 238
  19431. }
  19432. },
  19433. front: {
  19434. height: math.unit(5 + 7 / 12, "feet"),
  19435. weight: math.unit(140, "lb"),
  19436. name: "Front",
  19437. image: {
  19438. source: "./media/characters/doc-weardno/front.svg",
  19439. extra: 254 / 233
  19440. }
  19441. },
  19442. },
  19443. [
  19444. {
  19445. name: "Micro",
  19446. height: math.unit(3, "inches")
  19447. },
  19448. {
  19449. name: "Normal",
  19450. height: math.unit(5 + 7 / 12, "feet"),
  19451. default: true
  19452. },
  19453. {
  19454. name: "Macro",
  19455. height: math.unit(25, "feet")
  19456. },
  19457. {
  19458. name: "Megamacro",
  19459. height: math.unit(2, "miles")
  19460. },
  19461. ]
  19462. ))
  19463. characterMakers.push(() => makeCharacter(
  19464. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  19465. {
  19466. front: {
  19467. height: math.unit(6 + 2 / 12, "feet"),
  19468. weight: math.unit(153, "lb"),
  19469. name: "Front",
  19470. image: {
  19471. source: "./media/characters/seth-whilst/front.svg",
  19472. bottom: 0.07
  19473. }
  19474. },
  19475. },
  19476. [
  19477. {
  19478. name: "Micro",
  19479. height: math.unit(5, "inches")
  19480. },
  19481. {
  19482. name: "Normal",
  19483. height: math.unit(6 + 2 / 12, "feet"),
  19484. default: true
  19485. },
  19486. ]
  19487. ))
  19488. characterMakers.push(() => makeCharacter(
  19489. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  19490. {
  19491. front: {
  19492. height: math.unit(3, "inches"),
  19493. weight: math.unit(8, "grams"),
  19494. name: "Front",
  19495. image: {
  19496. source: "./media/characters/pocket-jabari/front.svg",
  19497. extra: 1024 / 974,
  19498. bottom: 0.039
  19499. }
  19500. },
  19501. },
  19502. [
  19503. {
  19504. name: "Minimicro",
  19505. height: math.unit(8, "mm")
  19506. },
  19507. {
  19508. name: "Micro",
  19509. height: math.unit(3, "inches"),
  19510. default: true
  19511. },
  19512. {
  19513. name: "Normal",
  19514. height: math.unit(3, "feet")
  19515. },
  19516. ]
  19517. ))
  19518. characterMakers.push(() => makeCharacter(
  19519. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  19520. {
  19521. frontDressed: {
  19522. height: math.unit(15, "feet"),
  19523. weight: math.unit(3280, "lb"),
  19524. name: "Front (Dressed)",
  19525. image: {
  19526. source: "./media/characters/sapphy/front-dressed.svg",
  19527. extra: 1951/1654,
  19528. bottom: 194/2145
  19529. },
  19530. form: "anthro",
  19531. default: true
  19532. },
  19533. backDressed: {
  19534. height: math.unit(15, "feet"),
  19535. weight: math.unit(3280, "lb"),
  19536. name: "Back (Dressed)",
  19537. image: {
  19538. source: "./media/characters/sapphy/back-dressed.svg",
  19539. extra: 2058/1918,
  19540. bottom: 125/2183
  19541. },
  19542. form: "anthro"
  19543. },
  19544. frontNude: {
  19545. height: math.unit(15, "feet"),
  19546. weight: math.unit(3280, "lb"),
  19547. name: "Front (Nude)",
  19548. image: {
  19549. source: "./media/characters/sapphy/front-nude.svg",
  19550. extra: 1951/1654,
  19551. bottom: 194/2145
  19552. },
  19553. form: "anthro"
  19554. },
  19555. backNude: {
  19556. height: math.unit(15, "feet"),
  19557. weight: math.unit(3280, "lb"),
  19558. name: "Back (Nude)",
  19559. image: {
  19560. source: "./media/characters/sapphy/back-nude.svg",
  19561. extra: 2058/1918,
  19562. bottom: 125/2183
  19563. },
  19564. form: "anthro"
  19565. },
  19566. full: {
  19567. height: math.unit(15, "feet"),
  19568. weight: math.unit(3280, "lb"),
  19569. name: "Full",
  19570. image: {
  19571. source: "./media/characters/sapphy/full.svg",
  19572. extra: 1396/1317,
  19573. bottom: 44/1440
  19574. },
  19575. form: "anthro"
  19576. },
  19577. dick: {
  19578. height: math.unit(3.8, "feet"),
  19579. name: "Dick",
  19580. image: {
  19581. source: "./media/characters/sapphy/dick.svg"
  19582. },
  19583. form: "anthro"
  19584. },
  19585. feral: {
  19586. height: math.unit(35, "feet"),
  19587. weight: math.unit(160, "tons"),
  19588. name: "Feral",
  19589. image: {
  19590. source: "./media/characters/sapphy/feral.svg",
  19591. extra: 1050/573,
  19592. bottom: 60/1110
  19593. },
  19594. form: "feral",
  19595. default: true
  19596. },
  19597. },
  19598. [
  19599. {
  19600. name: "Normal",
  19601. height: math.unit(15, "feet"),
  19602. form: "anthro"
  19603. },
  19604. {
  19605. name: "Casual Macro",
  19606. height: math.unit(120, "feet"),
  19607. form: "anthro"
  19608. },
  19609. {
  19610. name: "Macro",
  19611. height: math.unit(2150, "feet"),
  19612. default: true,
  19613. form: "anthro"
  19614. },
  19615. {
  19616. name: "Megamacro",
  19617. height: math.unit(8, "miles"),
  19618. form: "anthro"
  19619. },
  19620. {
  19621. name: "Galaxy Mom",
  19622. height: math.unit(6, "megalightyears"),
  19623. form: "anthro"
  19624. },
  19625. {
  19626. name: "Normal",
  19627. height: math.unit(35, "feet"),
  19628. form: "feral",
  19629. default: true
  19630. },
  19631. {
  19632. name: "Macro",
  19633. height: math.unit(300, "feet"),
  19634. form: "feral"
  19635. },
  19636. {
  19637. name: "Galaxy Mom",
  19638. height: math.unit(10, "megalightyears"),
  19639. form: "feral"
  19640. },
  19641. ],
  19642. {
  19643. "anthro": {
  19644. name: "Anthro",
  19645. default: true
  19646. },
  19647. "feral": {
  19648. name: "Feral"
  19649. }
  19650. }
  19651. ))
  19652. characterMakers.push(() => makeCharacter(
  19653. { name: "Kiro", species: ["folf"], tags: ["anthro"] },
  19654. {
  19655. front: {
  19656. height: math.unit(6, "feet"),
  19657. weight: math.unit(170, "lb"),
  19658. name: "Front",
  19659. image: {
  19660. source: "./media/characters/kiro/front.svg",
  19661. extra: 1064 / 1012,
  19662. bottom: 0.052
  19663. }
  19664. },
  19665. },
  19666. [
  19667. {
  19668. name: "Micro",
  19669. height: math.unit(6, "inches")
  19670. },
  19671. {
  19672. name: "Normal",
  19673. height: math.unit(6, "feet"),
  19674. default: true
  19675. },
  19676. {
  19677. name: "Macro",
  19678. height: math.unit(72, "feet")
  19679. },
  19680. ]
  19681. ))
  19682. characterMakers.push(() => makeCharacter(
  19683. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  19684. {
  19685. front: {
  19686. height: math.unit(5 + 9 / 12, "feet"),
  19687. weight: math.unit(175, "lb"),
  19688. name: "Front",
  19689. image: {
  19690. source: "./media/characters/irishfox/front.svg",
  19691. extra: 1912 / 1680,
  19692. bottom: 0.02
  19693. }
  19694. },
  19695. },
  19696. [
  19697. {
  19698. name: "Nano",
  19699. height: math.unit(1, "mm")
  19700. },
  19701. {
  19702. name: "Micro",
  19703. height: math.unit(2, "inches")
  19704. },
  19705. {
  19706. name: "Normal",
  19707. height: math.unit(5 + 9 / 12, "feet"),
  19708. default: true
  19709. },
  19710. {
  19711. name: "Macro",
  19712. height: math.unit(45, "feet")
  19713. },
  19714. ]
  19715. ))
  19716. characterMakers.push(() => makeCharacter(
  19717. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  19718. {
  19719. front: {
  19720. height: math.unit(6 + 1 / 12, "feet"),
  19721. weight: math.unit(75, "lb"),
  19722. name: "Front",
  19723. image: {
  19724. source: "./media/characters/aronai-sieyes/front.svg",
  19725. extra: 1532/1450,
  19726. bottom: 42/1574
  19727. }
  19728. },
  19729. side: {
  19730. height: math.unit(6 + 1 / 12, "feet"),
  19731. weight: math.unit(75, "lb"),
  19732. name: "Side",
  19733. image: {
  19734. source: "./media/characters/aronai-sieyes/side.svg",
  19735. extra: 1422/1365,
  19736. bottom: 148/1570
  19737. }
  19738. },
  19739. back: {
  19740. height: math.unit(6 + 1 / 12, "feet"),
  19741. weight: math.unit(75, "lb"),
  19742. name: "Back",
  19743. image: {
  19744. source: "./media/characters/aronai-sieyes/back.svg",
  19745. extra: 1526/1464,
  19746. bottom: 51/1577
  19747. }
  19748. },
  19749. dressed: {
  19750. height: math.unit(6 + 1 / 12, "feet"),
  19751. weight: math.unit(75, "lb"),
  19752. name: "Dressed",
  19753. image: {
  19754. source: "./media/characters/aronai-sieyes/dressed.svg",
  19755. extra: 1559/1483,
  19756. bottom: 39/1598
  19757. }
  19758. },
  19759. slit: {
  19760. height: math.unit(1.3, "feet"),
  19761. name: "Slit",
  19762. image: {
  19763. source: "./media/characters/aronai-sieyes/slit.svg"
  19764. }
  19765. },
  19766. slitSpread: {
  19767. height: math.unit(0.9, "feet"),
  19768. name: "Slit (Spread)",
  19769. image: {
  19770. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  19771. }
  19772. },
  19773. rump: {
  19774. height: math.unit(1.3, "feet"),
  19775. name: "Rump",
  19776. image: {
  19777. source: "./media/characters/aronai-sieyes/rump.svg"
  19778. }
  19779. },
  19780. maw: {
  19781. height: math.unit(1.25, "feet"),
  19782. name: "Maw",
  19783. image: {
  19784. source: "./media/characters/aronai-sieyes/maw.svg"
  19785. }
  19786. },
  19787. feral: {
  19788. height: math.unit(18, "feet"),
  19789. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  19790. name: "Feral",
  19791. image: {
  19792. source: "./media/characters/aronai-sieyes/feral.svg",
  19793. extra: 1530 / 1240,
  19794. bottom: 0.035
  19795. }
  19796. },
  19797. },
  19798. [
  19799. {
  19800. name: "Micro",
  19801. height: math.unit(2, "inches")
  19802. },
  19803. {
  19804. name: "Normal",
  19805. height: math.unit(6 + 1 / 12, "feet"),
  19806. default: true
  19807. }
  19808. ]
  19809. ))
  19810. characterMakers.push(() => makeCharacter(
  19811. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  19812. {
  19813. front: {
  19814. height: math.unit(12, "feet"),
  19815. weight: math.unit(410, "kg"),
  19816. name: "Front",
  19817. image: {
  19818. source: "./media/characters/xuna/front.svg",
  19819. extra: 2184 / 1980
  19820. }
  19821. },
  19822. side: {
  19823. height: math.unit(12, "feet"),
  19824. weight: math.unit(410, "kg"),
  19825. name: "Side",
  19826. image: {
  19827. source: "./media/characters/xuna/side.svg",
  19828. extra: 2184 / 1980
  19829. }
  19830. },
  19831. back: {
  19832. height: math.unit(12, "feet"),
  19833. weight: math.unit(410, "kg"),
  19834. name: "Back",
  19835. image: {
  19836. source: "./media/characters/xuna/back.svg",
  19837. extra: 2184 / 1980
  19838. }
  19839. },
  19840. },
  19841. [
  19842. {
  19843. name: "Nano glow",
  19844. height: math.unit(10, "nm")
  19845. },
  19846. {
  19847. name: "Micro floof",
  19848. height: math.unit(0.3, "m")
  19849. },
  19850. {
  19851. name: "Huggable softy boi",
  19852. height: math.unit(3.6576, "m"),
  19853. default: true
  19854. },
  19855. {
  19856. name: "Admirable floof",
  19857. height: math.unit(80, "meters")
  19858. },
  19859. {
  19860. name: "Gentle macro",
  19861. height: math.unit(300, "meters")
  19862. },
  19863. {
  19864. name: "Very careful floof",
  19865. height: math.unit(3200, "meters")
  19866. },
  19867. {
  19868. name: "The mega floof",
  19869. height: math.unit(36000, "meters")
  19870. },
  19871. {
  19872. name: "Giga-fur-Wicker",
  19873. height: math.unit(4800000, "meters")
  19874. },
  19875. {
  19876. name: "Licky world",
  19877. height: math.unit(20000000, "meters")
  19878. },
  19879. {
  19880. name: "Floofy cyan sun",
  19881. height: math.unit(1500000000, "meters")
  19882. },
  19883. {
  19884. name: "Milky Wicker",
  19885. height: math.unit(1000000000000000000000, "meters")
  19886. },
  19887. {
  19888. name: "The observing Wicker",
  19889. height: math.unit(999999999999999999999999999, "meters")
  19890. },
  19891. ]
  19892. ))
  19893. characterMakers.push(() => makeCharacter(
  19894. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19895. {
  19896. front: {
  19897. height: math.unit(5 + 9 / 12, "feet"),
  19898. weight: math.unit(150, "lb"),
  19899. name: "Front",
  19900. image: {
  19901. source: "./media/characters/arokha-sieyes/front.svg",
  19902. extra: 1425 / 1284,
  19903. bottom: 0.05
  19904. }
  19905. },
  19906. },
  19907. [
  19908. {
  19909. name: "Normal",
  19910. height: math.unit(5 + 9 / 12, "feet")
  19911. },
  19912. {
  19913. name: "Macro",
  19914. height: math.unit(30, "meters"),
  19915. default: true
  19916. },
  19917. ]
  19918. ))
  19919. characterMakers.push(() => makeCharacter(
  19920. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19921. {
  19922. front: {
  19923. height: math.unit(6, "feet"),
  19924. weight: math.unit(180, "lb"),
  19925. name: "Front",
  19926. image: {
  19927. source: "./media/characters/arokh-sieyes/front.svg",
  19928. extra: 1830 / 1769,
  19929. bottom: 0.01
  19930. }
  19931. },
  19932. },
  19933. [
  19934. {
  19935. name: "Normal",
  19936. height: math.unit(6, "feet")
  19937. },
  19938. {
  19939. name: "Macro",
  19940. height: math.unit(30, "meters"),
  19941. default: true
  19942. },
  19943. ]
  19944. ))
  19945. characterMakers.push(() => makeCharacter(
  19946. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  19947. {
  19948. side: {
  19949. height: math.unit(13 + 1 / 12, "feet"),
  19950. weight: math.unit(8.5, "tonnes"),
  19951. name: "Side",
  19952. image: {
  19953. source: "./media/characters/goldeneye/side.svg",
  19954. extra: 1182 / 778,
  19955. bottom: 0.067
  19956. }
  19957. },
  19958. paw: {
  19959. height: math.unit(3.4, "feet"),
  19960. name: "Paw",
  19961. image: {
  19962. source: "./media/characters/goldeneye/paw.svg"
  19963. }
  19964. },
  19965. },
  19966. [
  19967. {
  19968. name: "Normal",
  19969. height: math.unit(13 + 1 / 12, "feet"),
  19970. default: true
  19971. },
  19972. ]
  19973. ))
  19974. characterMakers.push(() => makeCharacter(
  19975. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  19976. {
  19977. front: {
  19978. height: math.unit(6 + 1 / 12, "feet"),
  19979. weight: math.unit(210, "lb"),
  19980. name: "Front",
  19981. image: {
  19982. source: "./media/characters/leonardo-lycheborne/front.svg",
  19983. extra: 776/723,
  19984. bottom: 34/810
  19985. }
  19986. },
  19987. side: {
  19988. height: math.unit(6 + 1 / 12, "feet"),
  19989. weight: math.unit(210, "lb"),
  19990. name: "Side",
  19991. image: {
  19992. source: "./media/characters/leonardo-lycheborne/side.svg",
  19993. extra: 780/728,
  19994. bottom: 12/792
  19995. }
  19996. },
  19997. back: {
  19998. height: math.unit(6 + 1 / 12, "feet"),
  19999. weight: math.unit(210, "lb"),
  20000. name: "Back",
  20001. image: {
  20002. source: "./media/characters/leonardo-lycheborne/back.svg",
  20003. extra: 775/721,
  20004. bottom: 17/792
  20005. }
  20006. },
  20007. hand: {
  20008. height: math.unit(1.08, "feet"),
  20009. name: "Hand",
  20010. image: {
  20011. source: "./media/characters/leonardo-lycheborne/hand.svg"
  20012. }
  20013. },
  20014. foot: {
  20015. height: math.unit(1.32, "feet"),
  20016. name: "Foot",
  20017. image: {
  20018. source: "./media/characters/leonardo-lycheborne/foot.svg"
  20019. }
  20020. },
  20021. maw: {
  20022. height: math.unit(1, "feet"),
  20023. name: "Maw",
  20024. image: {
  20025. source: "./media/characters/leonardo-lycheborne/maw.svg"
  20026. }
  20027. },
  20028. were: {
  20029. height: math.unit(20, "feet"),
  20030. weight: math.unit(7800, "lb"),
  20031. name: "Were",
  20032. image: {
  20033. source: "./media/characters/leonardo-lycheborne/were.svg",
  20034. extra: 1224/1165,
  20035. bottom: 72/1296
  20036. }
  20037. },
  20038. feral: {
  20039. height: math.unit(7.5, "feet"),
  20040. weight: math.unit(600, "lb"),
  20041. name: "Feral",
  20042. image: {
  20043. source: "./media/characters/leonardo-lycheborne/feral.svg",
  20044. extra: 797/702,
  20045. bottom: 139/936
  20046. }
  20047. },
  20048. taur: {
  20049. height: math.unit(11, "feet"),
  20050. weight: math.unit(3300, "lb"),
  20051. name: "Taur",
  20052. image: {
  20053. source: "./media/characters/leonardo-lycheborne/taur.svg",
  20054. extra: 1271/1197,
  20055. bottom: 47/1318
  20056. }
  20057. },
  20058. barghest: {
  20059. height: math.unit(11, "feet"),
  20060. weight: math.unit(1300, "lb"),
  20061. name: "Barghest",
  20062. image: {
  20063. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  20064. extra: 1291/1204,
  20065. bottom: 37/1328
  20066. }
  20067. },
  20068. dick: {
  20069. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  20070. name: "Dick",
  20071. image: {
  20072. source: "./media/characters/leonardo-lycheborne/dick.svg"
  20073. }
  20074. },
  20075. dickWere: {
  20076. height: math.unit((20) / 3.8, "feet"),
  20077. name: "Dick (Were)",
  20078. image: {
  20079. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  20080. }
  20081. },
  20082. },
  20083. [
  20084. {
  20085. name: "Normal",
  20086. height: math.unit(6 + 1 / 12, "feet"),
  20087. default: true
  20088. },
  20089. ]
  20090. ))
  20091. characterMakers.push(() => makeCharacter(
  20092. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  20093. {
  20094. front: {
  20095. height: math.unit(10, "feet"),
  20096. weight: math.unit(350, "lb"),
  20097. name: "Front",
  20098. image: {
  20099. source: "./media/characters/jet/front.svg",
  20100. extra: 2050 / 1980,
  20101. bottom: 0.013
  20102. }
  20103. },
  20104. back: {
  20105. height: math.unit(10, "feet"),
  20106. weight: math.unit(350, "lb"),
  20107. name: "Back",
  20108. image: {
  20109. source: "./media/characters/jet/back.svg",
  20110. extra: 2050 / 1980,
  20111. bottom: 0.013
  20112. }
  20113. },
  20114. },
  20115. [
  20116. {
  20117. name: "Micro",
  20118. height: math.unit(6, "inches")
  20119. },
  20120. {
  20121. name: "Normal",
  20122. height: math.unit(10, "feet"),
  20123. default: true
  20124. },
  20125. {
  20126. name: "Macro",
  20127. height: math.unit(100, "feet")
  20128. },
  20129. ]
  20130. ))
  20131. characterMakers.push(() => makeCharacter(
  20132. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  20133. {
  20134. front: {
  20135. height: math.unit(15, "feet"),
  20136. weight: math.unit(2800, "lb"),
  20137. name: "Front",
  20138. image: {
  20139. source: "./media/characters/tanarath/front.svg",
  20140. extra: 2392 / 2220,
  20141. bottom: 0.03
  20142. }
  20143. },
  20144. back: {
  20145. height: math.unit(15, "feet"),
  20146. weight: math.unit(2800, "lb"),
  20147. name: "Back",
  20148. image: {
  20149. source: "./media/characters/tanarath/back.svg",
  20150. extra: 2392 / 2220,
  20151. bottom: 0.03
  20152. }
  20153. },
  20154. },
  20155. [
  20156. {
  20157. name: "Normal",
  20158. height: math.unit(15, "feet"),
  20159. default: true
  20160. },
  20161. ]
  20162. ))
  20163. characterMakers.push(() => makeCharacter(
  20164. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  20165. {
  20166. front: {
  20167. height: math.unit(7 + 1 / 12, "feet"),
  20168. weight: math.unit(175, "lb"),
  20169. name: "Front",
  20170. image: {
  20171. source: "./media/characters/patty-cattybatty/front.svg",
  20172. extra: 908 / 874,
  20173. bottom: 0.025
  20174. }
  20175. },
  20176. },
  20177. [
  20178. {
  20179. name: "Micro",
  20180. height: math.unit(1, "inch")
  20181. },
  20182. {
  20183. name: "Normal",
  20184. height: math.unit(7 + 1 / 12, "feet")
  20185. },
  20186. {
  20187. name: "Mini Macro",
  20188. height: math.unit(155, "feet")
  20189. },
  20190. {
  20191. name: "Macro",
  20192. height: math.unit(1077, "feet")
  20193. },
  20194. {
  20195. name: "Mega Macro",
  20196. height: math.unit(47650, "feet"),
  20197. default: true
  20198. },
  20199. {
  20200. name: "Giga Macro",
  20201. height: math.unit(440, "miles")
  20202. },
  20203. {
  20204. name: "Tera Macro",
  20205. height: math.unit(8700, "miles")
  20206. },
  20207. {
  20208. name: "Planetary Macro",
  20209. height: math.unit(32700, "miles")
  20210. },
  20211. {
  20212. name: "Solar Macro",
  20213. height: math.unit(550000, "miles")
  20214. },
  20215. {
  20216. name: "Celestial Macro",
  20217. height: math.unit(2.5, "AU")
  20218. },
  20219. ]
  20220. ))
  20221. characterMakers.push(() => makeCharacter(
  20222. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  20223. {
  20224. front: {
  20225. height: math.unit(4 + 5 / 12, "feet"),
  20226. weight: math.unit(90, "lb"),
  20227. name: "Front",
  20228. image: {
  20229. source: "./media/characters/cappu/front.svg",
  20230. extra: 1247 / 1152,
  20231. bottom: 0.012
  20232. }
  20233. },
  20234. },
  20235. [
  20236. {
  20237. name: "Normal",
  20238. height: math.unit(4 + 5 / 12, "feet"),
  20239. default: true
  20240. },
  20241. ]
  20242. ))
  20243. characterMakers.push(() => makeCharacter(
  20244. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  20245. {
  20246. frontDressed: {
  20247. height: math.unit(70, "cm"),
  20248. weight: math.unit(6, "kg"),
  20249. name: "Front (Dressed)",
  20250. image: {
  20251. source: "./media/characters/sebi/front-dressed.svg",
  20252. extra: 713.5 / 686.5,
  20253. bottom: 0.003
  20254. }
  20255. },
  20256. front: {
  20257. height: math.unit(70, "cm"),
  20258. weight: math.unit(5, "kg"),
  20259. name: "Front",
  20260. image: {
  20261. source: "./media/characters/sebi/front.svg",
  20262. extra: 713.5 / 686.5,
  20263. bottom: 0.003
  20264. }
  20265. }
  20266. },
  20267. [
  20268. {
  20269. name: "Normal",
  20270. height: math.unit(70, "cm"),
  20271. default: true
  20272. },
  20273. {
  20274. name: "Macro",
  20275. height: math.unit(8, "meters")
  20276. },
  20277. ]
  20278. ))
  20279. characterMakers.push(() => makeCharacter(
  20280. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  20281. {
  20282. front: {
  20283. height: math.unit(6, "feet"),
  20284. weight: math.unit(150, "lb"),
  20285. name: "Front",
  20286. image: {
  20287. source: "./media/characters/typhek/front.svg",
  20288. extra: 1948 / 1929,
  20289. bottom: 0.025
  20290. }
  20291. },
  20292. side: {
  20293. height: math.unit(6, "feet"),
  20294. weight: math.unit(150, "lb"),
  20295. name: "Side",
  20296. image: {
  20297. source: "./media/characters/typhek/side.svg",
  20298. extra: 2034 / 2010,
  20299. bottom: 0.003
  20300. }
  20301. },
  20302. back: {
  20303. height: math.unit(6, "feet"),
  20304. weight: math.unit(150, "lb"),
  20305. name: "Back",
  20306. image: {
  20307. source: "./media/characters/typhek/back.svg",
  20308. extra: 2005 / 1978,
  20309. bottom: 0.004
  20310. }
  20311. },
  20312. palm: {
  20313. height: math.unit(1.2, "feet"),
  20314. name: "Palm",
  20315. image: {
  20316. source: "./media/characters/typhek/palm.svg"
  20317. }
  20318. },
  20319. fist: {
  20320. height: math.unit(1.1, "feet"),
  20321. name: "Fist",
  20322. image: {
  20323. source: "./media/characters/typhek/fist.svg"
  20324. }
  20325. },
  20326. foot: {
  20327. height: math.unit(1.57, "feet"),
  20328. name: "Foot",
  20329. image: {
  20330. source: "./media/characters/typhek/foot.svg"
  20331. }
  20332. },
  20333. sole: {
  20334. height: math.unit(2.05, "feet"),
  20335. name: "Sole",
  20336. image: {
  20337. source: "./media/characters/typhek/sole.svg"
  20338. }
  20339. },
  20340. },
  20341. [
  20342. {
  20343. name: "Macro",
  20344. height: math.unit(40, "stories"),
  20345. default: true
  20346. },
  20347. {
  20348. name: "Megamacro",
  20349. height: math.unit(1, "mile")
  20350. },
  20351. {
  20352. name: "Gigamacro",
  20353. height: math.unit(4000, "solarradii")
  20354. },
  20355. {
  20356. name: "Universal",
  20357. height: math.unit(1.1, "universes")
  20358. }
  20359. ]
  20360. ))
  20361. characterMakers.push(() => makeCharacter(
  20362. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  20363. {
  20364. side: {
  20365. height: math.unit(5 + 7 / 12, "feet"),
  20366. weight: math.unit(150, "lb"),
  20367. name: "Side",
  20368. image: {
  20369. source: "./media/characters/kassy/side.svg",
  20370. extra: 1280 / 1225,
  20371. bottom: 0.002
  20372. }
  20373. },
  20374. front: {
  20375. height: math.unit(5 + 7 / 12, "feet"),
  20376. weight: math.unit(150, "lb"),
  20377. name: "Front",
  20378. image: {
  20379. source: "./media/characters/kassy/front.svg",
  20380. extra: 1280 / 1225,
  20381. bottom: 0.025
  20382. }
  20383. },
  20384. back: {
  20385. height: math.unit(5 + 7 / 12, "feet"),
  20386. weight: math.unit(150, "lb"),
  20387. name: "Back",
  20388. image: {
  20389. source: "./media/characters/kassy/back.svg",
  20390. extra: 1280 / 1225,
  20391. bottom: 0.002
  20392. }
  20393. },
  20394. foot: {
  20395. height: math.unit(1.266, "feet"),
  20396. name: "Foot",
  20397. image: {
  20398. source: "./media/characters/kassy/foot.svg"
  20399. }
  20400. },
  20401. },
  20402. [
  20403. {
  20404. name: "Normal",
  20405. height: math.unit(5 + 7 / 12, "feet")
  20406. },
  20407. {
  20408. name: "Macro",
  20409. height: math.unit(137, "feet"),
  20410. default: true
  20411. },
  20412. {
  20413. name: "Megamacro",
  20414. height: math.unit(1, "mile")
  20415. },
  20416. ]
  20417. ))
  20418. characterMakers.push(() => makeCharacter(
  20419. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  20420. {
  20421. front: {
  20422. height: math.unit(6 + 1 / 12, "feet"),
  20423. weight: math.unit(200, "lb"),
  20424. name: "Front",
  20425. image: {
  20426. source: "./media/characters/neil/front.svg",
  20427. extra: 1326 / 1250,
  20428. bottom: 0.023
  20429. }
  20430. },
  20431. },
  20432. [
  20433. {
  20434. name: "Normal",
  20435. height: math.unit(6 + 1 / 12, "feet"),
  20436. default: true
  20437. },
  20438. {
  20439. name: "Macro",
  20440. height: math.unit(200, "feet")
  20441. },
  20442. ]
  20443. ))
  20444. characterMakers.push(() => makeCharacter(
  20445. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  20446. {
  20447. front: {
  20448. height: math.unit(5 + 9 / 12, "feet"),
  20449. weight: math.unit(190, "lb"),
  20450. name: "Front",
  20451. image: {
  20452. source: "./media/characters/atticus/front.svg",
  20453. extra: 2934 / 2785,
  20454. bottom: 0.025
  20455. }
  20456. },
  20457. },
  20458. [
  20459. {
  20460. name: "Normal",
  20461. height: math.unit(5 + 9 / 12, "feet"),
  20462. default: true
  20463. },
  20464. {
  20465. name: "Macro",
  20466. height: math.unit(180, "feet")
  20467. },
  20468. ]
  20469. ))
  20470. characterMakers.push(() => makeCharacter(
  20471. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  20472. {
  20473. side: {
  20474. height: math.unit(9, "feet"),
  20475. weight: math.unit(650, "lb"),
  20476. name: "Side",
  20477. image: {
  20478. source: "./media/characters/milo/side.svg",
  20479. extra: 2644 / 2310,
  20480. bottom: 0.032
  20481. }
  20482. },
  20483. },
  20484. [
  20485. {
  20486. name: "Normal",
  20487. height: math.unit(9, "feet"),
  20488. default: true
  20489. },
  20490. {
  20491. name: "Macro",
  20492. height: math.unit(300, "feet")
  20493. },
  20494. ]
  20495. ))
  20496. characterMakers.push(() => makeCharacter(
  20497. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  20498. {
  20499. side: {
  20500. height: math.unit(8, "meters"),
  20501. weight: math.unit(90000, "kg"),
  20502. name: "Side",
  20503. image: {
  20504. source: "./media/characters/ijzer/side.svg",
  20505. extra: 2756 / 1600,
  20506. bottom: 0.01
  20507. }
  20508. },
  20509. },
  20510. [
  20511. {
  20512. name: "Small",
  20513. height: math.unit(3, "meters")
  20514. },
  20515. {
  20516. name: "Normal",
  20517. height: math.unit(8, "meters"),
  20518. default: true
  20519. },
  20520. {
  20521. name: "Normal+",
  20522. height: math.unit(10, "meters")
  20523. },
  20524. {
  20525. name: "Bigger",
  20526. height: math.unit(24, "meters")
  20527. },
  20528. {
  20529. name: "Huge",
  20530. height: math.unit(80, "meters")
  20531. },
  20532. ]
  20533. ))
  20534. characterMakers.push(() => makeCharacter(
  20535. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  20536. {
  20537. front: {
  20538. height: math.unit(6 + 2 / 12, "feet"),
  20539. weight: math.unit(153, "lb"),
  20540. name: "Front",
  20541. image: {
  20542. source: "./media/characters/luca-cervicum/front.svg",
  20543. extra: 370 / 327,
  20544. bottom: 0.015
  20545. }
  20546. },
  20547. back: {
  20548. height: math.unit(6 + 2 / 12, "feet"),
  20549. weight: math.unit(153, "lb"),
  20550. name: "Back",
  20551. image: {
  20552. source: "./media/characters/luca-cervicum/back.svg",
  20553. extra: 367 / 333,
  20554. bottom: 0.005
  20555. }
  20556. },
  20557. frontGear: {
  20558. height: math.unit(6 + 2 / 12, "feet"),
  20559. weight: math.unit(173, "lb"),
  20560. name: "Front (Gear)",
  20561. image: {
  20562. source: "./media/characters/luca-cervicum/front-gear.svg",
  20563. extra: 377 / 333,
  20564. bottom: 0.006
  20565. }
  20566. },
  20567. },
  20568. [
  20569. {
  20570. name: "Normal",
  20571. height: math.unit(6 + 2 / 12, "feet"),
  20572. default: true
  20573. },
  20574. ]
  20575. ))
  20576. characterMakers.push(() => makeCharacter(
  20577. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  20578. {
  20579. front: {
  20580. height: math.unit(6 + 1 / 12, "feet"),
  20581. weight: math.unit(304, "lb"),
  20582. name: "Front",
  20583. image: {
  20584. source: "./media/characters/oliver/front.svg",
  20585. extra: 157 / 143,
  20586. bottom: 0.08
  20587. }
  20588. },
  20589. },
  20590. [
  20591. {
  20592. name: "Normal",
  20593. height: math.unit(6 + 1 / 12, "feet"),
  20594. default: true
  20595. },
  20596. ]
  20597. ))
  20598. characterMakers.push(() => makeCharacter(
  20599. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  20600. {
  20601. front: {
  20602. height: math.unit(5 + 7 / 12, "feet"),
  20603. weight: math.unit(140, "lb"),
  20604. name: "Front",
  20605. image: {
  20606. source: "./media/characters/shane/front.svg",
  20607. extra: 304 / 289,
  20608. bottom: 0.005
  20609. }
  20610. },
  20611. },
  20612. [
  20613. {
  20614. name: "Normal",
  20615. height: math.unit(5 + 7 / 12, "feet"),
  20616. default: true
  20617. },
  20618. ]
  20619. ))
  20620. characterMakers.push(() => makeCharacter(
  20621. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  20622. {
  20623. front: {
  20624. height: math.unit(5 + 9 / 12, "feet"),
  20625. weight: math.unit(178, "lb"),
  20626. name: "Front",
  20627. image: {
  20628. source: "./media/characters/shin/front.svg",
  20629. extra: 159 / 151,
  20630. bottom: 0.015
  20631. }
  20632. },
  20633. },
  20634. [
  20635. {
  20636. name: "Normal",
  20637. height: math.unit(5 + 9 / 12, "feet"),
  20638. default: true
  20639. },
  20640. ]
  20641. ))
  20642. characterMakers.push(() => makeCharacter(
  20643. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  20644. {
  20645. front: {
  20646. height: math.unit(5 + 10 / 12, "feet"),
  20647. weight: math.unit(168, "lb"),
  20648. name: "Front",
  20649. image: {
  20650. source: "./media/characters/xerxes/front.svg",
  20651. extra: 282 / 260,
  20652. bottom: 0.045
  20653. }
  20654. },
  20655. },
  20656. [
  20657. {
  20658. name: "Normal",
  20659. height: math.unit(5 + 10 / 12, "feet"),
  20660. default: true
  20661. },
  20662. ]
  20663. ))
  20664. characterMakers.push(() => makeCharacter(
  20665. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  20666. {
  20667. front: {
  20668. height: math.unit(6 + 7 / 12, "feet"),
  20669. weight: math.unit(208, "lb"),
  20670. name: "Front",
  20671. image: {
  20672. source: "./media/characters/chaska/front.svg",
  20673. extra: 332 / 319,
  20674. bottom: 0.015
  20675. }
  20676. },
  20677. },
  20678. [
  20679. {
  20680. name: "Normal",
  20681. height: math.unit(6 + 7 / 12, "feet"),
  20682. default: true
  20683. },
  20684. ]
  20685. ))
  20686. characterMakers.push(() => makeCharacter(
  20687. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  20688. {
  20689. front: {
  20690. height: math.unit(5 + 8 / 12, "feet"),
  20691. weight: math.unit(208, "lb"),
  20692. name: "Front",
  20693. image: {
  20694. source: "./media/characters/enuk/front.svg",
  20695. extra: 437 / 406,
  20696. bottom: 0.02
  20697. }
  20698. },
  20699. },
  20700. [
  20701. {
  20702. name: "Normal",
  20703. height: math.unit(5 + 8 / 12, "feet"),
  20704. default: true
  20705. },
  20706. ]
  20707. ))
  20708. characterMakers.push(() => makeCharacter(
  20709. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  20710. {
  20711. front: {
  20712. height: math.unit(5 + 10 / 12, "feet"),
  20713. weight: math.unit(252, "lb"),
  20714. name: "Front",
  20715. image: {
  20716. source: "./media/characters/bruun/front.svg",
  20717. extra: 197 / 187,
  20718. bottom: 0.012
  20719. }
  20720. },
  20721. },
  20722. [
  20723. {
  20724. name: "Normal",
  20725. height: math.unit(5 + 10 / 12, "feet"),
  20726. default: true
  20727. },
  20728. ]
  20729. ))
  20730. characterMakers.push(() => makeCharacter(
  20731. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  20732. {
  20733. front: {
  20734. height: math.unit(6 + 10 / 12, "feet"),
  20735. weight: math.unit(255, "lb"),
  20736. name: "Front",
  20737. image: {
  20738. source: "./media/characters/alexeev/front.svg",
  20739. extra: 213 / 200,
  20740. bottom: 0.05
  20741. }
  20742. },
  20743. },
  20744. [
  20745. {
  20746. name: "Normal",
  20747. height: math.unit(6 + 10 / 12, "feet"),
  20748. default: true
  20749. },
  20750. ]
  20751. ))
  20752. characterMakers.push(() => makeCharacter(
  20753. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  20754. {
  20755. front: {
  20756. height: math.unit(2 + 8 / 12, "feet"),
  20757. weight: math.unit(22, "lb"),
  20758. name: "Front",
  20759. image: {
  20760. source: "./media/characters/evelyn/front.svg",
  20761. extra: 208 / 180
  20762. }
  20763. },
  20764. },
  20765. [
  20766. {
  20767. name: "Normal",
  20768. height: math.unit(2 + 8 / 12, "feet"),
  20769. default: true
  20770. },
  20771. ]
  20772. ))
  20773. characterMakers.push(() => makeCharacter(
  20774. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  20775. {
  20776. front: {
  20777. height: math.unit(5 + 9 / 12, "feet"),
  20778. weight: math.unit(139, "lb"),
  20779. name: "Front",
  20780. image: {
  20781. source: "./media/characters/inca/front.svg",
  20782. extra: 294 / 291,
  20783. bottom: 0.03
  20784. }
  20785. },
  20786. },
  20787. [
  20788. {
  20789. name: "Normal",
  20790. height: math.unit(5 + 9 / 12, "feet"),
  20791. default: true
  20792. },
  20793. ]
  20794. ))
  20795. characterMakers.push(() => makeCharacter(
  20796. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  20797. {
  20798. front: {
  20799. height: math.unit(6 + 3 / 12, "feet"),
  20800. weight: math.unit(185, "lb"),
  20801. name: "Front",
  20802. image: {
  20803. source: "./media/characters/mera/front.svg",
  20804. extra: 291 / 277,
  20805. bottom: 0.03
  20806. }
  20807. },
  20808. },
  20809. [
  20810. {
  20811. name: "Normal",
  20812. height: math.unit(6 + 3 / 12, "feet"),
  20813. default: true
  20814. },
  20815. ]
  20816. ))
  20817. characterMakers.push(() => makeCharacter(
  20818. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  20819. {
  20820. front: {
  20821. height: math.unit(6 + 7 / 12, "feet"),
  20822. weight: math.unit(160, "lb"),
  20823. name: "Front",
  20824. image: {
  20825. source: "./media/characters/ceres/front.svg",
  20826. extra: 1023 / 950,
  20827. bottom: 0.027
  20828. }
  20829. },
  20830. back: {
  20831. height: math.unit(6 + 7 / 12, "feet"),
  20832. weight: math.unit(160, "lb"),
  20833. name: "Back",
  20834. image: {
  20835. source: "./media/characters/ceres/back.svg",
  20836. extra: 1023 / 950
  20837. }
  20838. },
  20839. },
  20840. [
  20841. {
  20842. name: "Normal",
  20843. height: math.unit(6 + 7 / 12, "feet"),
  20844. default: true
  20845. },
  20846. ]
  20847. ))
  20848. characterMakers.push(() => makeCharacter(
  20849. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  20850. {
  20851. front: {
  20852. height: math.unit(5 + 10 / 12, "feet"),
  20853. weight: math.unit(150, "lb"),
  20854. name: "Front",
  20855. image: {
  20856. source: "./media/characters/kris/front.svg",
  20857. extra: 885 / 803,
  20858. bottom: 0.03
  20859. }
  20860. },
  20861. },
  20862. [
  20863. {
  20864. name: "Normal",
  20865. height: math.unit(5 + 10 / 12, "feet"),
  20866. default: true
  20867. },
  20868. ]
  20869. ))
  20870. characterMakers.push(() => makeCharacter(
  20871. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  20872. {
  20873. front: {
  20874. height: math.unit(7, "feet"),
  20875. weight: math.unit(120, "kg"),
  20876. name: "Front",
  20877. image: {
  20878. source: "./media/characters/taluthus/front.svg",
  20879. extra: 903 / 833,
  20880. bottom: 0.015
  20881. }
  20882. },
  20883. },
  20884. [
  20885. {
  20886. name: "Normal",
  20887. height: math.unit(7, "feet"),
  20888. default: true
  20889. },
  20890. {
  20891. name: "Macro",
  20892. height: math.unit(300, "feet")
  20893. },
  20894. ]
  20895. ))
  20896. characterMakers.push(() => makeCharacter(
  20897. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  20898. {
  20899. front: {
  20900. height: math.unit(5 + 9 / 12, "feet"),
  20901. weight: math.unit(145, "lb"),
  20902. name: "Front",
  20903. image: {
  20904. source: "./media/characters/dawn/front.svg",
  20905. extra: 2094 / 2016,
  20906. bottom: 0.025
  20907. }
  20908. },
  20909. back: {
  20910. height: math.unit(5 + 9 / 12, "feet"),
  20911. weight: math.unit(160, "lb"),
  20912. name: "Back",
  20913. image: {
  20914. source: "./media/characters/dawn/back.svg",
  20915. extra: 2112 / 2080,
  20916. bottom: 0.005
  20917. }
  20918. },
  20919. },
  20920. [
  20921. {
  20922. name: "Normal",
  20923. height: math.unit(6 + 7 / 12, "feet"),
  20924. default: true
  20925. },
  20926. ]
  20927. ))
  20928. characterMakers.push(() => makeCharacter(
  20929. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  20930. {
  20931. anthro: {
  20932. height: math.unit(8 + 3 / 12, "feet"),
  20933. weight: math.unit(450, "lb"),
  20934. name: "Anthro",
  20935. image: {
  20936. source: "./media/characters/arador/anthro.svg",
  20937. extra: 1835 / 1718,
  20938. bottom: 0.025
  20939. }
  20940. },
  20941. feral: {
  20942. height: math.unit(4, "feet"),
  20943. weight: math.unit(200, "lb"),
  20944. name: "Feral",
  20945. image: {
  20946. source: "./media/characters/arador/feral.svg",
  20947. extra: 1683 / 1514,
  20948. bottom: 0.07
  20949. }
  20950. },
  20951. },
  20952. [
  20953. {
  20954. name: "Normal",
  20955. height: math.unit(8 + 3 / 12, "feet")
  20956. },
  20957. {
  20958. name: "Macro",
  20959. height: math.unit(82.5, "feet"),
  20960. default: true
  20961. },
  20962. ]
  20963. ))
  20964. characterMakers.push(() => makeCharacter(
  20965. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  20966. {
  20967. front: {
  20968. height: math.unit(5 + 10 / 12, "feet"),
  20969. weight: math.unit(125, "lb"),
  20970. name: "Front",
  20971. image: {
  20972. source: "./media/characters/dharsi/front.svg",
  20973. extra: 716 / 630,
  20974. bottom: 0.035
  20975. }
  20976. },
  20977. },
  20978. [
  20979. {
  20980. name: "Nano",
  20981. height: math.unit(100, "nm")
  20982. },
  20983. {
  20984. name: "Micro",
  20985. height: math.unit(2, "inches")
  20986. },
  20987. {
  20988. name: "Normal",
  20989. height: math.unit(5 + 10 / 12, "feet"),
  20990. default: true
  20991. },
  20992. {
  20993. name: "Macro",
  20994. height: math.unit(1000, "feet")
  20995. },
  20996. {
  20997. name: "Megamacro",
  20998. height: math.unit(10, "miles")
  20999. },
  21000. {
  21001. name: "Gigamacro",
  21002. height: math.unit(3000, "miles")
  21003. },
  21004. {
  21005. name: "Teramacro",
  21006. height: math.unit(500000, "miles")
  21007. },
  21008. {
  21009. name: "Teramacro+",
  21010. height: math.unit(30, "galaxies")
  21011. },
  21012. ]
  21013. ))
  21014. characterMakers.push(() => makeCharacter(
  21015. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  21016. {
  21017. front: {
  21018. height: math.unit(6, "feet"),
  21019. weight: math.unit(150, "lb"),
  21020. name: "Front",
  21021. image: {
  21022. source: "./media/characters/deathy/front.svg",
  21023. extra: 1552 / 1463,
  21024. bottom: 0.025
  21025. }
  21026. },
  21027. side: {
  21028. height: math.unit(6, "feet"),
  21029. weight: math.unit(150, "lb"),
  21030. name: "Side",
  21031. image: {
  21032. source: "./media/characters/deathy/side.svg",
  21033. extra: 1604 / 1455,
  21034. bottom: 0.025
  21035. }
  21036. },
  21037. back: {
  21038. height: math.unit(6, "feet"),
  21039. weight: math.unit(150, "lb"),
  21040. name: "Back",
  21041. image: {
  21042. source: "./media/characters/deathy/back.svg",
  21043. extra: 1580 / 1463,
  21044. bottom: 0.005
  21045. }
  21046. },
  21047. },
  21048. [
  21049. {
  21050. name: "Micro",
  21051. height: math.unit(5, "millimeters")
  21052. },
  21053. {
  21054. name: "Normal",
  21055. height: math.unit(6 + 5 / 12, "feet"),
  21056. default: true
  21057. },
  21058. ]
  21059. ))
  21060. characterMakers.push(() => makeCharacter(
  21061. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  21062. {
  21063. front: {
  21064. height: math.unit(16, "feet"),
  21065. weight: math.unit(4000, "lb"),
  21066. name: "Front",
  21067. image: {
  21068. source: "./media/characters/juniper/front.svg",
  21069. bottom: 0.04
  21070. }
  21071. },
  21072. },
  21073. [
  21074. {
  21075. name: "Normal",
  21076. height: math.unit(16, "feet"),
  21077. default: true
  21078. },
  21079. ]
  21080. ))
  21081. characterMakers.push(() => makeCharacter(
  21082. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  21083. {
  21084. front: {
  21085. height: math.unit(6, "feet"),
  21086. weight: math.unit(150, "lb"),
  21087. name: "Front",
  21088. image: {
  21089. source: "./media/characters/hipster/front.svg",
  21090. extra: 1312 / 1209,
  21091. bottom: 0.025
  21092. }
  21093. },
  21094. back: {
  21095. height: math.unit(6, "feet"),
  21096. weight: math.unit(150, "lb"),
  21097. name: "Back",
  21098. image: {
  21099. source: "./media/characters/hipster/back.svg",
  21100. extra: 1281 / 1196,
  21101. bottom: 0.01
  21102. }
  21103. },
  21104. },
  21105. [
  21106. {
  21107. name: "Micro",
  21108. height: math.unit(1, "mm")
  21109. },
  21110. {
  21111. name: "Normal",
  21112. height: math.unit(4, "inches"),
  21113. default: true
  21114. },
  21115. {
  21116. name: "Macro",
  21117. height: math.unit(500, "feet")
  21118. },
  21119. {
  21120. name: "Megamacro",
  21121. height: math.unit(1000, "miles")
  21122. },
  21123. ]
  21124. ))
  21125. characterMakers.push(() => makeCharacter(
  21126. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  21127. {
  21128. front: {
  21129. height: math.unit(6, "feet"),
  21130. weight: math.unit(150, "lb"),
  21131. name: "Front",
  21132. image: {
  21133. source: "./media/characters/tendirmuldr/front.svg",
  21134. extra: 1878 / 1772,
  21135. bottom: 0.015
  21136. }
  21137. },
  21138. },
  21139. [
  21140. {
  21141. name: "Megamacro",
  21142. height: math.unit(1500, "miles"),
  21143. default: true
  21144. },
  21145. ]
  21146. ))
  21147. characterMakers.push(() => makeCharacter(
  21148. { name: "Mort", species: ["demon"], tags: ["feral"] },
  21149. {
  21150. front: {
  21151. height: math.unit(14, "feet"),
  21152. weight: math.unit(12000, "lb"),
  21153. name: "Front",
  21154. image: {
  21155. source: "./media/characters/mort/front.svg",
  21156. extra: 365 / 318,
  21157. bottom: 0.01
  21158. }
  21159. },
  21160. side: {
  21161. height: math.unit(14, "feet"),
  21162. weight: math.unit(12000, "lb"),
  21163. name: "Side",
  21164. image: {
  21165. source: "./media/characters/mort/side.svg",
  21166. extra: 365 / 318,
  21167. bottom: 0.052
  21168. },
  21169. default: true
  21170. },
  21171. back: {
  21172. height: math.unit(14, "feet"),
  21173. weight: math.unit(12000, "lb"),
  21174. name: "Back",
  21175. image: {
  21176. source: "./media/characters/mort/back.svg",
  21177. extra: 371 / 332,
  21178. bottom: 0.18
  21179. }
  21180. },
  21181. },
  21182. [
  21183. {
  21184. name: "Normal",
  21185. height: math.unit(14, "feet"),
  21186. default: true
  21187. },
  21188. ]
  21189. ))
  21190. characterMakers.push(() => makeCharacter(
  21191. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  21192. {
  21193. front: {
  21194. height: math.unit(8, "feet"),
  21195. weight: math.unit(1, "ton"),
  21196. name: "Front",
  21197. image: {
  21198. source: "./media/characters/lycoa/front.svg",
  21199. extra: 1836/1728,
  21200. bottom: 81/1917
  21201. }
  21202. },
  21203. back: {
  21204. height: math.unit(8, "feet"),
  21205. weight: math.unit(1, "ton"),
  21206. name: "Back",
  21207. image: {
  21208. source: "./media/characters/lycoa/back.svg",
  21209. extra: 1785/1720,
  21210. bottom: 91/1876
  21211. }
  21212. },
  21213. head: {
  21214. height: math.unit(1.6243, "feet"),
  21215. name: "Head",
  21216. image: {
  21217. source: "./media/characters/lycoa/head.svg",
  21218. extra: 1011/782,
  21219. bottom: 0/1011
  21220. }
  21221. },
  21222. tailmaw: {
  21223. height: math.unit(1.9, "feet"),
  21224. name: "Tailmaw",
  21225. image: {
  21226. source: "./media/characters/lycoa/tailmaw.svg"
  21227. }
  21228. },
  21229. tentacles: {
  21230. height: math.unit(2.1, "feet"),
  21231. name: "Tentacles",
  21232. image: {
  21233. source: "./media/characters/lycoa/tentacles.svg"
  21234. }
  21235. },
  21236. dick: {
  21237. height: math.unit(1.73, "feet"),
  21238. name: "Dick",
  21239. image: {
  21240. source: "./media/characters/lycoa/dick.svg"
  21241. }
  21242. },
  21243. },
  21244. [
  21245. {
  21246. name: "Normal",
  21247. height: math.unit(8, "feet"),
  21248. default: true
  21249. },
  21250. {
  21251. name: "Macro",
  21252. height: math.unit(30, "feet")
  21253. },
  21254. ]
  21255. ))
  21256. characterMakers.push(() => makeCharacter(
  21257. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  21258. {
  21259. front: {
  21260. height: math.unit(4 + 2 / 12, "feet"),
  21261. weight: math.unit(70, "lb"),
  21262. name: "Front",
  21263. image: {
  21264. source: "./media/characters/naldara/front.svg",
  21265. extra: 1664/1387,
  21266. bottom: 81/1745
  21267. },
  21268. form: "anthro",
  21269. default: true
  21270. },
  21271. naga: {
  21272. height: math.unit(20, "feet"),
  21273. weight: math.unit(15000, "kg"),
  21274. name: "Front",
  21275. image: {
  21276. source: "./media/characters/naldara/naga.svg",
  21277. extra: 1590/1396,
  21278. bottom: 285/1875
  21279. },
  21280. form: "naga",
  21281. default: true
  21282. },
  21283. },
  21284. [
  21285. {
  21286. name: "Normal",
  21287. height: math.unit(4 + 2 / 12, "feet"),
  21288. form: "anthro",
  21289. default: true
  21290. },
  21291. {
  21292. name: "Normal",
  21293. height: math.unit(20, "feet"),
  21294. form: "naga",
  21295. default: true
  21296. },
  21297. ],
  21298. {
  21299. "anthro": {
  21300. name: "Anthro",
  21301. default: true
  21302. },
  21303. "naga": {
  21304. name: "Naga"
  21305. }
  21306. }
  21307. ))
  21308. characterMakers.push(() => makeCharacter(
  21309. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  21310. {
  21311. front: {
  21312. height: math.unit(13 + 7 / 12, "feet"),
  21313. weight: math.unit(1500, "lb"),
  21314. name: "Front",
  21315. image: {
  21316. source: "./media/characters/briar/front.svg",
  21317. extra: 1223/1157,
  21318. bottom: 123/1346
  21319. }
  21320. },
  21321. },
  21322. [
  21323. {
  21324. name: "Normal",
  21325. height: math.unit(13 + 7 / 12, "feet"),
  21326. default: true
  21327. },
  21328. ]
  21329. ))
  21330. characterMakers.push(() => makeCharacter(
  21331. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  21332. {
  21333. side: {
  21334. height: math.unit(16, "feet"),
  21335. weight: math.unit(500, "lb"),
  21336. name: "Side",
  21337. image: {
  21338. source: "./media/characters/vanguard/side.svg",
  21339. extra: 1022/914,
  21340. bottom: 30/1052
  21341. }
  21342. },
  21343. sideAlt: {
  21344. height: math.unit(10, "feet"),
  21345. weight: math.unit(500, "lb"),
  21346. name: "Side (Alt)",
  21347. image: {
  21348. source: "./media/characters/vanguard/side-alt.svg",
  21349. extra: 502 / 425,
  21350. bottom: 0.087
  21351. }
  21352. },
  21353. },
  21354. [
  21355. {
  21356. name: "Normal",
  21357. height: math.unit(17.71, "feet"),
  21358. default: true
  21359. },
  21360. ]
  21361. ))
  21362. characterMakers.push(() => makeCharacter(
  21363. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  21364. {
  21365. front: {
  21366. height: math.unit(7.5, "feet"),
  21367. weight: math.unit(2, "lb"),
  21368. name: "Front",
  21369. image: {
  21370. source: "./media/characters/artemis/work-safe-front.svg",
  21371. extra: 1192 / 1075,
  21372. bottom: 0.07
  21373. },
  21374. form: "work-safe",
  21375. default: true
  21376. },
  21377. frontNsfw: {
  21378. height: math.unit(7.5, "feet"),
  21379. weight: math.unit(2, "lb"),
  21380. name: "Front",
  21381. image: {
  21382. source: "./media/characters/artemis/calibrating-front.svg",
  21383. extra: 1192 / 1075,
  21384. bottom: 0.07
  21385. },
  21386. form: "calibrating",
  21387. default: true
  21388. },
  21389. frontNsfwer: {
  21390. height: math.unit(7.5, "feet"),
  21391. weight: math.unit(2, "lb"),
  21392. name: "Front",
  21393. image: {
  21394. source: "./media/characters/artemis/oversize-load-front.svg",
  21395. extra: 1192 / 1075,
  21396. bottom: 0.07
  21397. },
  21398. form: "oversize-load",
  21399. default: true
  21400. },
  21401. side: {
  21402. height: math.unit(7.5, "feet"),
  21403. weight: math.unit(2, "lb"),
  21404. name: "Side",
  21405. image: {
  21406. source: "./media/characters/artemis/work-safe-side.svg",
  21407. extra: 1192 / 1075,
  21408. bottom: 0.07
  21409. },
  21410. form: "work-safe"
  21411. },
  21412. sideNsfw: {
  21413. height: math.unit(7.5, "feet"),
  21414. weight: math.unit(2, "lb"),
  21415. name: "Side",
  21416. image: {
  21417. source: "./media/characters/artemis/calibrating-side.svg",
  21418. extra: 1192 / 1075,
  21419. bottom: 0.07
  21420. },
  21421. form: "calibrating"
  21422. },
  21423. sideNsfwer: {
  21424. height: math.unit(7.5, "feet"),
  21425. weight: math.unit(2, "lb"),
  21426. name: "Side",
  21427. image: {
  21428. source: "./media/characters/artemis/oversize-load-side.svg",
  21429. extra: 1192 / 1075,
  21430. bottom: 0.07
  21431. },
  21432. form: "oversize-load"
  21433. },
  21434. maw: {
  21435. height: math.unit(1.1, "feet"),
  21436. name: "Maw",
  21437. image: {
  21438. source: "./media/characters/artemis/maw.svg"
  21439. },
  21440. form: "work-safe"
  21441. },
  21442. stomach: {
  21443. height: math.unit(0.95, "feet"),
  21444. name: "Stomach",
  21445. image: {
  21446. source: "./media/characters/artemis/stomach.svg"
  21447. },
  21448. form: "work-safe"
  21449. },
  21450. dickCanine: {
  21451. height: math.unit(1, "feet"),
  21452. name: "Dick (Canine)",
  21453. image: {
  21454. source: "./media/characters/artemis/dick-canine.svg"
  21455. },
  21456. form: "calibrating"
  21457. },
  21458. dickEquine: {
  21459. height: math.unit(0.85, "feet"),
  21460. name: "Dick (Equine)",
  21461. image: {
  21462. source: "./media/characters/artemis/dick-equine.svg"
  21463. },
  21464. form: "calibrating"
  21465. },
  21466. dickExotic: {
  21467. height: math.unit(0.85, "feet"),
  21468. name: "Dick (Exotic)",
  21469. image: {
  21470. source: "./media/characters/artemis/dick-exotic.svg"
  21471. },
  21472. form: "calibrating"
  21473. },
  21474. dickCanineBigger: {
  21475. height: math.unit(1 * 1.33, "feet"),
  21476. name: "Dick (Canine)",
  21477. image: {
  21478. source: "./media/characters/artemis/dick-canine.svg"
  21479. },
  21480. form: "oversize-load"
  21481. },
  21482. dickEquineBigger: {
  21483. height: math.unit(0.85 * 1.33, "feet"),
  21484. name: "Dick (Equine)",
  21485. image: {
  21486. source: "./media/characters/artemis/dick-equine.svg"
  21487. },
  21488. form: "oversize-load"
  21489. },
  21490. dickExoticBigger: {
  21491. height: math.unit(0.85 * 1.33, "feet"),
  21492. name: "Dick (Exotic)",
  21493. image: {
  21494. source: "./media/characters/artemis/dick-exotic.svg"
  21495. },
  21496. form: "oversize-load"
  21497. },
  21498. },
  21499. [
  21500. {
  21501. name: "Normal",
  21502. height: math.unit(7.5, "feet"),
  21503. form: "work-safe",
  21504. default: true
  21505. },
  21506. {
  21507. name: "Normal",
  21508. height: math.unit(7.5, "feet"),
  21509. form: "calibrating",
  21510. default: true
  21511. },
  21512. {
  21513. name: "Normal",
  21514. height: math.unit(7.5, "feet"),
  21515. form: "oversize-load",
  21516. default: true
  21517. },
  21518. {
  21519. name: "Enlarged",
  21520. height: math.unit(12, "feet"),
  21521. form: "work-safe",
  21522. },
  21523. {
  21524. name: "Enlarged",
  21525. height: math.unit(12, "feet"),
  21526. form: "calibrating",
  21527. },
  21528. {
  21529. name: "Enlarged",
  21530. height: math.unit(12, "feet"),
  21531. form: "oversize-load",
  21532. },
  21533. ],
  21534. {
  21535. "work-safe": {
  21536. name: "Work-Safe",
  21537. default: true
  21538. },
  21539. "calibrating": {
  21540. name: "Calibrating"
  21541. },
  21542. "oversize-load": {
  21543. name: "Oversize Load"
  21544. }
  21545. }
  21546. ))
  21547. characterMakers.push(() => makeCharacter(
  21548. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  21549. {
  21550. front: {
  21551. height: math.unit(5 + 3 / 12, "feet"),
  21552. weight: math.unit(160, "lb"),
  21553. name: "Front",
  21554. image: {
  21555. source: "./media/characters/kira/front.svg",
  21556. extra: 906 / 786,
  21557. bottom: 0.01
  21558. }
  21559. },
  21560. back: {
  21561. height: math.unit(5 + 3 / 12, "feet"),
  21562. weight: math.unit(160, "lb"),
  21563. name: "Back",
  21564. image: {
  21565. source: "./media/characters/kira/back.svg",
  21566. extra: 882 / 757,
  21567. bottom: 0.005
  21568. }
  21569. },
  21570. frontDressed: {
  21571. height: math.unit(5 + 3 / 12, "feet"),
  21572. weight: math.unit(160, "lb"),
  21573. name: "Front (Dressed)",
  21574. image: {
  21575. source: "./media/characters/kira/front-dressed.svg",
  21576. extra: 906 / 786,
  21577. bottom: 0.01
  21578. }
  21579. },
  21580. beans: {
  21581. height: math.unit(0.92, "feet"),
  21582. name: "Beans",
  21583. image: {
  21584. source: "./media/characters/kira/beans.svg"
  21585. }
  21586. },
  21587. },
  21588. [
  21589. {
  21590. name: "Normal",
  21591. height: math.unit(5 + 3 / 12, "feet"),
  21592. default: true
  21593. },
  21594. ]
  21595. ))
  21596. characterMakers.push(() => makeCharacter(
  21597. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  21598. {
  21599. front: {
  21600. height: math.unit(5 + 4 / 12, "feet"),
  21601. weight: math.unit(145, "lb"),
  21602. name: "Front",
  21603. image: {
  21604. source: "./media/characters/scramble/front.svg",
  21605. extra: 763 / 727,
  21606. bottom: 0.05
  21607. }
  21608. },
  21609. back: {
  21610. height: math.unit(5 + 4 / 12, "feet"),
  21611. weight: math.unit(145, "lb"),
  21612. name: "Back",
  21613. image: {
  21614. source: "./media/characters/scramble/back.svg",
  21615. extra: 826 / 737,
  21616. bottom: 0.002
  21617. }
  21618. },
  21619. },
  21620. [
  21621. {
  21622. name: "Normal",
  21623. height: math.unit(5 + 4 / 12, "feet"),
  21624. default: true
  21625. },
  21626. ]
  21627. ))
  21628. characterMakers.push(() => makeCharacter(
  21629. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  21630. {
  21631. side: {
  21632. height: math.unit(6 + 2 / 12, "feet"),
  21633. weight: math.unit(190, "lb"),
  21634. name: "Side",
  21635. image: {
  21636. source: "./media/characters/biscuit/side.svg",
  21637. extra: 858 / 791,
  21638. bottom: 0.044
  21639. }
  21640. },
  21641. },
  21642. [
  21643. {
  21644. name: "Normal",
  21645. height: math.unit(6 + 2 / 12, "feet"),
  21646. default: true
  21647. },
  21648. ]
  21649. ))
  21650. characterMakers.push(() => makeCharacter(
  21651. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  21652. {
  21653. front: {
  21654. height: math.unit(5 + 2 / 12, "feet"),
  21655. weight: math.unit(120, "lb"),
  21656. name: "Front",
  21657. image: {
  21658. source: "./media/characters/poffin/front.svg",
  21659. extra: 786 / 680,
  21660. bottom: 0.005
  21661. }
  21662. },
  21663. },
  21664. [
  21665. {
  21666. name: "Normal",
  21667. height: math.unit(5 + 2 / 12, "feet"),
  21668. default: true
  21669. },
  21670. ]
  21671. ))
  21672. characterMakers.push(() => makeCharacter(
  21673. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  21674. {
  21675. front: {
  21676. height: math.unit(6 + 3 / 12, "feet"),
  21677. weight: math.unit(519, "lb"),
  21678. name: "Front",
  21679. image: {
  21680. source: "./media/characters/dhari/front.svg",
  21681. extra: 1048 / 946,
  21682. bottom: 0.015
  21683. }
  21684. },
  21685. back: {
  21686. height: math.unit(6 + 3 / 12, "feet"),
  21687. weight: math.unit(519, "lb"),
  21688. name: "Back",
  21689. image: {
  21690. source: "./media/characters/dhari/back.svg",
  21691. extra: 1048 / 931,
  21692. bottom: 0.005
  21693. }
  21694. },
  21695. frontDressed: {
  21696. height: math.unit(6 + 3 / 12, "feet"),
  21697. weight: math.unit(519, "lb"),
  21698. name: "Front (Dressed)",
  21699. image: {
  21700. source: "./media/characters/dhari/front-dressed.svg",
  21701. extra: 1713 / 1546,
  21702. bottom: 0.02
  21703. }
  21704. },
  21705. backDressed: {
  21706. height: math.unit(6 + 3 / 12, "feet"),
  21707. weight: math.unit(519, "lb"),
  21708. name: "Back (Dressed)",
  21709. image: {
  21710. source: "./media/characters/dhari/back-dressed.svg",
  21711. extra: 1699 / 1537,
  21712. bottom: 0.01
  21713. }
  21714. },
  21715. maw: {
  21716. height: math.unit(0.95, "feet"),
  21717. name: "Maw",
  21718. image: {
  21719. source: "./media/characters/dhari/maw.svg"
  21720. }
  21721. },
  21722. wereFront: {
  21723. height: math.unit(12 + 8 / 12, "feet"),
  21724. weight: math.unit(4000, "lb"),
  21725. name: "Front (Were)",
  21726. image: {
  21727. source: "./media/characters/dhari/were-front.svg",
  21728. extra: 1065 / 969,
  21729. bottom: 0.015
  21730. }
  21731. },
  21732. wereBack: {
  21733. height: math.unit(12 + 8 / 12, "feet"),
  21734. weight: math.unit(4000, "lb"),
  21735. name: "Back (Were)",
  21736. image: {
  21737. source: "./media/characters/dhari/were-back.svg",
  21738. extra: 1065 / 969,
  21739. bottom: 0.012
  21740. }
  21741. },
  21742. wereMaw: {
  21743. height: math.unit(0.625, "meters"),
  21744. name: "Maw (Were)",
  21745. image: {
  21746. source: "./media/characters/dhari/were-maw.svg"
  21747. }
  21748. },
  21749. },
  21750. [
  21751. {
  21752. name: "Normal",
  21753. height: math.unit(6 + 3 / 12, "feet"),
  21754. default: true
  21755. },
  21756. ]
  21757. ))
  21758. characterMakers.push(() => makeCharacter(
  21759. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  21760. {
  21761. anthro: {
  21762. height: math.unit(5 + 7 / 12, "feet"),
  21763. weight: math.unit(175, "lb"),
  21764. name: "Anthro",
  21765. image: {
  21766. source: "./media/characters/rena-dyne/anthro.svg",
  21767. extra: 1849 / 1785,
  21768. bottom: 0.005
  21769. }
  21770. },
  21771. taur: {
  21772. height: math.unit(15 + 6 / 12, "feet"),
  21773. weight: math.unit(8000, "lb"),
  21774. name: "Taur",
  21775. image: {
  21776. source: "./media/characters/rena-dyne/taur.svg",
  21777. extra: 2315 / 2234,
  21778. bottom: 0.033
  21779. }
  21780. },
  21781. },
  21782. [
  21783. {
  21784. name: "Normal",
  21785. height: math.unit(5 + 7 / 12, "feet"),
  21786. default: true
  21787. },
  21788. ]
  21789. ))
  21790. characterMakers.push(() => makeCharacter(
  21791. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  21792. {
  21793. front: {
  21794. height: math.unit(8, "feet"),
  21795. weight: math.unit(600, "lb"),
  21796. name: "Front",
  21797. image: {
  21798. source: "./media/characters/weremeep/front.svg",
  21799. extra: 967 / 862,
  21800. bottom: 0.01
  21801. }
  21802. },
  21803. },
  21804. [
  21805. {
  21806. name: "Normal",
  21807. height: math.unit(8, "feet"),
  21808. default: true
  21809. },
  21810. {
  21811. name: "Lorg",
  21812. height: math.unit(12, "feet")
  21813. },
  21814. {
  21815. name: "Oh Lawd She Comin'",
  21816. height: math.unit(20, "feet")
  21817. },
  21818. ]
  21819. ))
  21820. characterMakers.push(() => makeCharacter(
  21821. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  21822. {
  21823. front: {
  21824. height: math.unit(4, "feet"),
  21825. weight: math.unit(90, "lb"),
  21826. name: "Front",
  21827. image: {
  21828. source: "./media/characters/reza/front.svg",
  21829. extra: 1183 / 1111,
  21830. bottom: 0.017
  21831. }
  21832. },
  21833. back: {
  21834. height: math.unit(4, "feet"),
  21835. weight: math.unit(90, "lb"),
  21836. name: "Back",
  21837. image: {
  21838. source: "./media/characters/reza/back.svg",
  21839. extra: 1183 / 1111,
  21840. bottom: 0.01
  21841. }
  21842. },
  21843. drake: {
  21844. height: math.unit(30, "feet"),
  21845. weight: math.unit(246960, "lb"),
  21846. name: "Drake",
  21847. image: {
  21848. source: "./media/characters/reza/drake.svg",
  21849. extra: 2350 / 2024,
  21850. bottom: 60.7 / 2403
  21851. }
  21852. },
  21853. },
  21854. [
  21855. {
  21856. name: "Normal",
  21857. height: math.unit(4, "feet"),
  21858. default: true
  21859. },
  21860. ]
  21861. ))
  21862. characterMakers.push(() => makeCharacter(
  21863. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  21864. {
  21865. side: {
  21866. height: math.unit(15, "feet"),
  21867. weight: math.unit(14, "tons"),
  21868. name: "Side",
  21869. image: {
  21870. source: "./media/characters/athea/side.svg",
  21871. extra: 960 / 540,
  21872. bottom: 0.003
  21873. }
  21874. },
  21875. sitting: {
  21876. height: math.unit(6 * 2.85, "feet"),
  21877. weight: math.unit(14, "tons"),
  21878. name: "Sitting",
  21879. image: {
  21880. source: "./media/characters/athea/sitting.svg",
  21881. extra: 621 / 581,
  21882. bottom: 0.075
  21883. }
  21884. },
  21885. maw: {
  21886. height: math.unit(7.59498031496063, "feet"),
  21887. name: "Maw",
  21888. image: {
  21889. source: "./media/characters/athea/maw.svg"
  21890. }
  21891. },
  21892. },
  21893. [
  21894. {
  21895. name: "Lap Cat",
  21896. height: math.unit(2.5, "feet")
  21897. },
  21898. {
  21899. name: "Minimacro",
  21900. height: math.unit(15, "feet"),
  21901. default: true
  21902. },
  21903. {
  21904. name: "Macro",
  21905. height: math.unit(120, "feet")
  21906. },
  21907. {
  21908. name: "Macro+",
  21909. height: math.unit(640, "feet")
  21910. },
  21911. {
  21912. name: "Colossus",
  21913. height: math.unit(2.2, "miles")
  21914. },
  21915. ]
  21916. ))
  21917. characterMakers.push(() => makeCharacter(
  21918. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  21919. {
  21920. front: {
  21921. height: math.unit(8 + 8 / 12, "feet"),
  21922. weight: math.unit(130, "kg"),
  21923. name: "Front",
  21924. image: {
  21925. source: "./media/characters/seroko/front.svg",
  21926. extra: 1385 / 1280,
  21927. bottom: 0.025
  21928. }
  21929. },
  21930. back: {
  21931. height: math.unit(8 + 8 / 12, "feet"),
  21932. weight: math.unit(130, "kg"),
  21933. name: "Back",
  21934. image: {
  21935. source: "./media/characters/seroko/back.svg",
  21936. extra: 1369 / 1238,
  21937. bottom: 0.018
  21938. }
  21939. },
  21940. frontDressed: {
  21941. height: math.unit(8 + 8 / 12, "feet"),
  21942. weight: math.unit(130, "kg"),
  21943. name: "Front (Dressed)",
  21944. image: {
  21945. source: "./media/characters/seroko/front-dressed.svg",
  21946. extra: 1366 / 1275,
  21947. bottom: 0.03
  21948. }
  21949. },
  21950. },
  21951. [
  21952. {
  21953. name: "Normal",
  21954. height: math.unit(8 + 8 / 12, "feet"),
  21955. default: true
  21956. },
  21957. ]
  21958. ))
  21959. characterMakers.push(() => makeCharacter(
  21960. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  21961. {
  21962. front: {
  21963. height: math.unit(5.5, "feet"),
  21964. weight: math.unit(160, "lb"),
  21965. name: "Front",
  21966. image: {
  21967. source: "./media/characters/quatzi/front.svg",
  21968. extra: 2346 / 2242,
  21969. bottom: 0.015
  21970. }
  21971. },
  21972. },
  21973. [
  21974. {
  21975. name: "Normal",
  21976. height: math.unit(5.5, "feet"),
  21977. default: true
  21978. },
  21979. {
  21980. name: "Big",
  21981. height: math.unit(7.7, "feet")
  21982. },
  21983. ]
  21984. ))
  21985. characterMakers.push(() => makeCharacter(
  21986. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  21987. {
  21988. front: {
  21989. height: math.unit(5 + 11 / 12, "feet"),
  21990. weight: math.unit(180, "lb"),
  21991. name: "Front",
  21992. image: {
  21993. source: "./media/characters/sen/front.svg",
  21994. extra: 1321 / 1254,
  21995. bottom: 0.015
  21996. }
  21997. },
  21998. side: {
  21999. height: math.unit(5 + 11 / 12, "feet"),
  22000. weight: math.unit(180, "lb"),
  22001. name: "Side",
  22002. image: {
  22003. source: "./media/characters/sen/side.svg",
  22004. extra: 1321 / 1254,
  22005. bottom: 0.007
  22006. }
  22007. },
  22008. back: {
  22009. height: math.unit(5 + 11 / 12, "feet"),
  22010. weight: math.unit(180, "lb"),
  22011. name: "Back",
  22012. image: {
  22013. source: "./media/characters/sen/back.svg",
  22014. extra: 1321 / 1254
  22015. }
  22016. },
  22017. },
  22018. [
  22019. {
  22020. name: "Normal",
  22021. height: math.unit(5 + 11 / 12, "feet"),
  22022. default: true
  22023. },
  22024. ]
  22025. ))
  22026. characterMakers.push(() => makeCharacter(
  22027. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  22028. {
  22029. front: {
  22030. height: math.unit(166.6, "cm"),
  22031. weight: math.unit(66.6, "kg"),
  22032. name: "Front",
  22033. image: {
  22034. source: "./media/characters/fruity/front.svg",
  22035. extra: 1510 / 1386,
  22036. bottom: 0.04
  22037. }
  22038. },
  22039. back: {
  22040. height: math.unit(166.6, "cm"),
  22041. weight: math.unit(66.6, "lb"),
  22042. name: "Back",
  22043. image: {
  22044. source: "./media/characters/fruity/back.svg",
  22045. extra: 1563 / 1435,
  22046. bottom: 0.005
  22047. }
  22048. },
  22049. },
  22050. [
  22051. {
  22052. name: "Normal",
  22053. height: math.unit(166.6, "cm"),
  22054. default: true
  22055. },
  22056. {
  22057. name: "Demonic",
  22058. height: math.unit(166.6, "feet")
  22059. },
  22060. ]
  22061. ))
  22062. characterMakers.push(() => makeCharacter(
  22063. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  22064. {
  22065. side: {
  22066. height: math.unit(10, "feet"),
  22067. weight: math.unit(500, "lb"),
  22068. name: "Side",
  22069. image: {
  22070. source: "./media/characters/zost/side.svg",
  22071. extra: 2870/2533,
  22072. bottom: 252/3122
  22073. }
  22074. },
  22075. mawFront: {
  22076. height: math.unit(1.08, "meters"),
  22077. name: "Maw (Front)",
  22078. image: {
  22079. source: "./media/characters/zost/maw-front.svg"
  22080. }
  22081. },
  22082. mawSide: {
  22083. height: math.unit(2.66, "feet"),
  22084. name: "Maw (Side)",
  22085. image: {
  22086. source: "./media/characters/zost/maw-side.svg"
  22087. }
  22088. },
  22089. wingspan: {
  22090. height: math.unit(7.4, "feet"),
  22091. name: "Wingspan",
  22092. image: {
  22093. source: "./media/characters/zost/wingspan.svg"
  22094. }
  22095. },
  22096. },
  22097. [
  22098. {
  22099. name: "Normal",
  22100. height: math.unit(10, "feet"),
  22101. default: true
  22102. },
  22103. ]
  22104. ))
  22105. characterMakers.push(() => makeCharacter(
  22106. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  22107. {
  22108. front: {
  22109. height: math.unit(5 + 4 / 12, "feet"),
  22110. weight: math.unit(120, "lb"),
  22111. name: "Front",
  22112. image: {
  22113. source: "./media/characters/luci/front.svg",
  22114. extra: 1985 / 1884,
  22115. bottom: 0.04
  22116. }
  22117. },
  22118. back: {
  22119. height: math.unit(5 + 4 / 12, "feet"),
  22120. weight: math.unit(120, "lb"),
  22121. name: "Back",
  22122. image: {
  22123. source: "./media/characters/luci/back.svg",
  22124. extra: 1892 / 1791,
  22125. bottom: 0.002
  22126. }
  22127. },
  22128. },
  22129. [
  22130. {
  22131. name: "Normal",
  22132. height: math.unit(5 + 4 / 12, "feet"),
  22133. default: true
  22134. },
  22135. ]
  22136. ))
  22137. characterMakers.push(() => makeCharacter(
  22138. { name: "2th", species: ["monster"], tags: ["anthro"] },
  22139. {
  22140. front: {
  22141. height: math.unit(1500, "feet"),
  22142. weight: math.unit(3.8e6, "tons"),
  22143. name: "Front",
  22144. image: {
  22145. source: "./media/characters/2th/front.svg",
  22146. extra: 3489 / 3350,
  22147. bottom: 0.1
  22148. }
  22149. },
  22150. foot: {
  22151. height: math.unit(461, "feet"),
  22152. name: "Foot",
  22153. image: {
  22154. source: "./media/characters/2th/foot.svg"
  22155. }
  22156. },
  22157. },
  22158. [
  22159. {
  22160. name: "\"Micro\"",
  22161. height: math.unit(15 + 7 / 12, "feet")
  22162. },
  22163. {
  22164. name: "Normal",
  22165. height: math.unit(1500, "feet"),
  22166. default: true
  22167. },
  22168. {
  22169. name: "Macro",
  22170. height: math.unit(5000, "feet")
  22171. },
  22172. {
  22173. name: "Megamacro",
  22174. height: math.unit(15, "miles")
  22175. },
  22176. {
  22177. name: "Gigamacro",
  22178. height: math.unit(4000, "miles")
  22179. },
  22180. {
  22181. name: "Galactic",
  22182. height: math.unit(50, "AU")
  22183. },
  22184. ]
  22185. ))
  22186. characterMakers.push(() => makeCharacter(
  22187. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  22188. {
  22189. front: {
  22190. height: math.unit(5 + 6 / 12, "feet"),
  22191. weight: math.unit(220, "lb"),
  22192. name: "Front",
  22193. image: {
  22194. source: "./media/characters/amethyst/front.svg",
  22195. extra: 2078 / 2040,
  22196. bottom: 0.045
  22197. }
  22198. },
  22199. back: {
  22200. height: math.unit(5 + 6 / 12, "feet"),
  22201. weight: math.unit(220, "lb"),
  22202. name: "Back",
  22203. image: {
  22204. source: "./media/characters/amethyst/back.svg",
  22205. extra: 2021 / 1989,
  22206. bottom: 0.02
  22207. }
  22208. },
  22209. },
  22210. [
  22211. {
  22212. name: "Normal",
  22213. height: math.unit(5 + 6 / 12, "feet"),
  22214. default: true
  22215. },
  22216. ]
  22217. ))
  22218. characterMakers.push(() => makeCharacter(
  22219. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  22220. {
  22221. front: {
  22222. height: math.unit(4 + 11 / 12, "feet"),
  22223. weight: math.unit(120, "lb"),
  22224. name: "Front",
  22225. image: {
  22226. source: "./media/characters/yumi-akiyama/front.svg",
  22227. extra: 1327 / 1235,
  22228. bottom: 0.02
  22229. }
  22230. },
  22231. back: {
  22232. height: math.unit(4 + 11 / 12, "feet"),
  22233. weight: math.unit(120, "lb"),
  22234. name: "Back",
  22235. image: {
  22236. source: "./media/characters/yumi-akiyama/back.svg",
  22237. extra: 1287 / 1245,
  22238. bottom: 0.002
  22239. }
  22240. },
  22241. },
  22242. [
  22243. {
  22244. name: "Galactic",
  22245. height: math.unit(50, "galaxies"),
  22246. default: true
  22247. },
  22248. {
  22249. name: "Universal",
  22250. height: math.unit(100, "universes")
  22251. },
  22252. ]
  22253. ))
  22254. characterMakers.push(() => makeCharacter(
  22255. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  22256. {
  22257. front: {
  22258. height: math.unit(8, "feet"),
  22259. weight: math.unit(500, "lb"),
  22260. name: "Front",
  22261. image: {
  22262. source: "./media/characters/rifter-yrmori/front.svg",
  22263. extra: 1180 / 1125,
  22264. bottom: 0.02
  22265. }
  22266. },
  22267. back: {
  22268. height: math.unit(8, "feet"),
  22269. weight: math.unit(500, "lb"),
  22270. name: "Back",
  22271. image: {
  22272. source: "./media/characters/rifter-yrmori/back.svg",
  22273. extra: 1190 / 1145,
  22274. bottom: 0.001
  22275. }
  22276. },
  22277. wings: {
  22278. height: math.unit(7.75, "feet"),
  22279. weight: math.unit(500, "lb"),
  22280. name: "Wings",
  22281. image: {
  22282. source: "./media/characters/rifter-yrmori/wings.svg",
  22283. extra: 1357 / 1285
  22284. }
  22285. },
  22286. maw: {
  22287. height: math.unit(0.8, "feet"),
  22288. name: "Maw",
  22289. image: {
  22290. source: "./media/characters/rifter-yrmori/maw.svg"
  22291. }
  22292. },
  22293. mawfront: {
  22294. height: math.unit(1.45, "feet"),
  22295. name: "Maw (Front)",
  22296. image: {
  22297. source: "./media/characters/rifter-yrmori/maw-front.svg"
  22298. }
  22299. },
  22300. },
  22301. [
  22302. {
  22303. name: "Normal",
  22304. height: math.unit(8, "feet"),
  22305. default: true
  22306. },
  22307. {
  22308. name: "Macro",
  22309. height: math.unit(42, "meters")
  22310. },
  22311. ]
  22312. ))
  22313. characterMakers.push(() => makeCharacter(
  22314. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  22315. {
  22316. were: {
  22317. height: math.unit(25 + 6 / 12, "feet"),
  22318. weight: math.unit(10000, "lb"),
  22319. name: "Were",
  22320. image: {
  22321. source: "./media/characters/tahajin/were.svg",
  22322. extra: 801 / 770,
  22323. bottom: 0.042
  22324. }
  22325. },
  22326. aquatic: {
  22327. height: math.unit(6 + 4 / 12, "feet"),
  22328. weight: math.unit(160, "lb"),
  22329. name: "Aquatic",
  22330. image: {
  22331. source: "./media/characters/tahajin/aquatic.svg",
  22332. extra: 572 / 542,
  22333. bottom: 0.04
  22334. }
  22335. },
  22336. chow: {
  22337. height: math.unit(8 + 11 / 12, "feet"),
  22338. weight: math.unit(450, "lb"),
  22339. name: "Chow",
  22340. image: {
  22341. source: "./media/characters/tahajin/chow.svg",
  22342. extra: 660 / 640,
  22343. bottom: 0.015
  22344. }
  22345. },
  22346. demiNaga: {
  22347. height: math.unit(6 + 8 / 12, "feet"),
  22348. weight: math.unit(300, "lb"),
  22349. name: "Demi Naga",
  22350. image: {
  22351. source: "./media/characters/tahajin/demi-naga.svg",
  22352. extra: 643 / 615,
  22353. bottom: 0.1
  22354. }
  22355. },
  22356. data: {
  22357. height: math.unit(5, "inches"),
  22358. weight: math.unit(0.1, "lb"),
  22359. name: "Data",
  22360. image: {
  22361. source: "./media/characters/tahajin/data.svg"
  22362. }
  22363. },
  22364. fluu: {
  22365. height: math.unit(5 + 7 / 12, "feet"),
  22366. weight: math.unit(140, "lb"),
  22367. name: "Fluu",
  22368. image: {
  22369. source: "./media/characters/tahajin/fluu.svg",
  22370. extra: 628 / 592,
  22371. bottom: 0.02
  22372. }
  22373. },
  22374. starWarrior: {
  22375. height: math.unit(4 + 5 / 12, "feet"),
  22376. weight: math.unit(50, "lb"),
  22377. name: "Star Warrior",
  22378. image: {
  22379. source: "./media/characters/tahajin/star-warrior.svg"
  22380. }
  22381. },
  22382. },
  22383. [
  22384. {
  22385. name: "Normal",
  22386. height: math.unit(25 + 6 / 12, "feet"),
  22387. default: true
  22388. },
  22389. ]
  22390. ))
  22391. characterMakers.push(() => makeCharacter(
  22392. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  22393. {
  22394. front: {
  22395. height: math.unit(8, "feet"),
  22396. weight: math.unit(350, "lb"),
  22397. name: "Front",
  22398. image: {
  22399. source: "./media/characters/gabira/front.svg",
  22400. extra: 608 / 580,
  22401. bottom: 0.03
  22402. }
  22403. },
  22404. back: {
  22405. height: math.unit(8, "feet"),
  22406. weight: math.unit(350, "lb"),
  22407. name: "Back",
  22408. image: {
  22409. source: "./media/characters/gabira/back.svg",
  22410. extra: 608 / 580,
  22411. bottom: 0.03
  22412. }
  22413. },
  22414. },
  22415. [
  22416. {
  22417. name: "Normal",
  22418. height: math.unit(8, "feet"),
  22419. default: true
  22420. },
  22421. ]
  22422. ))
  22423. characterMakers.push(() => makeCharacter(
  22424. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  22425. {
  22426. front: {
  22427. height: math.unit(5 + 3 / 12, "feet"),
  22428. weight: math.unit(137, "lb"),
  22429. name: "Front",
  22430. image: {
  22431. source: "./media/characters/sasha-katraine/front.svg",
  22432. extra: 1745/1694,
  22433. bottom: 37/1782
  22434. }
  22435. },
  22436. back: {
  22437. height: math.unit(5 + 3 / 12, "feet"),
  22438. weight: math.unit(137, "lb"),
  22439. name: "Back",
  22440. image: {
  22441. source: "./media/characters/sasha-katraine/back.svg",
  22442. extra: 1776/1699,
  22443. bottom: 26/1802
  22444. }
  22445. },
  22446. },
  22447. [
  22448. {
  22449. name: "Micro",
  22450. height: math.unit(5, "inches")
  22451. },
  22452. {
  22453. name: "Normal",
  22454. height: math.unit(5 + 3 / 12, "feet"),
  22455. default: true
  22456. },
  22457. ]
  22458. ))
  22459. characterMakers.push(() => makeCharacter(
  22460. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  22461. {
  22462. side: {
  22463. height: math.unit(4, "inches"),
  22464. weight: math.unit(200, "grams"),
  22465. name: "Side",
  22466. image: {
  22467. source: "./media/characters/der/side.svg",
  22468. extra: 719 / 400,
  22469. bottom: 30.6 / 749.9187
  22470. }
  22471. },
  22472. },
  22473. [
  22474. {
  22475. name: "Micro",
  22476. height: math.unit(4, "inches"),
  22477. default: true
  22478. },
  22479. ]
  22480. ))
  22481. characterMakers.push(() => makeCharacter(
  22482. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  22483. {
  22484. side: {
  22485. height: math.unit(30, "meters"),
  22486. weight: math.unit(700, "tonnes"),
  22487. name: "Side",
  22488. image: {
  22489. source: "./media/characters/fixerdragon/side.svg",
  22490. extra: (1293.0514 - 116.03) / 1106.86,
  22491. bottom: 116.03 / 1293.0514
  22492. }
  22493. },
  22494. },
  22495. [
  22496. {
  22497. name: "Planck",
  22498. height: math.unit(1.6e-35, "meters")
  22499. },
  22500. {
  22501. name: "Micro",
  22502. height: math.unit(0.4, "meters")
  22503. },
  22504. {
  22505. name: "Normal",
  22506. height: math.unit(30, "meters"),
  22507. default: true
  22508. },
  22509. {
  22510. name: "Megamacro",
  22511. height: math.unit(1.2, "megameters")
  22512. },
  22513. {
  22514. name: "Teramacro",
  22515. height: math.unit(130, "terameters")
  22516. },
  22517. {
  22518. name: "Yottamacro",
  22519. height: math.unit(6200, "yottameters")
  22520. },
  22521. ]
  22522. ));
  22523. characterMakers.push(() => makeCharacter(
  22524. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  22525. {
  22526. front: {
  22527. height: math.unit(8, "feet"),
  22528. weight: math.unit(250, "lb"),
  22529. name: "Front",
  22530. image: {
  22531. source: "./media/characters/kite/front.svg",
  22532. extra: 2796 / 2659,
  22533. bottom: 0.002
  22534. }
  22535. },
  22536. },
  22537. [
  22538. {
  22539. name: "Normal",
  22540. height: math.unit(8, "feet"),
  22541. default: true
  22542. },
  22543. {
  22544. name: "Macro",
  22545. height: math.unit(360, "feet")
  22546. },
  22547. {
  22548. name: "Megamacro",
  22549. height: math.unit(1500, "feet")
  22550. },
  22551. ]
  22552. ))
  22553. characterMakers.push(() => makeCharacter(
  22554. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  22555. {
  22556. front: {
  22557. height: math.unit(5 + 11/12, "feet"),
  22558. weight: math.unit(170, "lb"),
  22559. name: "Front",
  22560. image: {
  22561. source: "./media/characters/poojawa-vynar/front.svg",
  22562. extra: 1735/1585,
  22563. bottom: 96/1831
  22564. }
  22565. },
  22566. back: {
  22567. height: math.unit(5 + 11/12, "feet"),
  22568. weight: math.unit(170, "lb"),
  22569. name: "Back",
  22570. image: {
  22571. source: "./media/characters/poojawa-vynar/back.svg",
  22572. extra: 1749/1607,
  22573. bottom: 28/1777
  22574. }
  22575. },
  22576. male: {
  22577. height: math.unit(5 + 11/12, "feet"),
  22578. weight: math.unit(170, "lb"),
  22579. name: "Male",
  22580. image: {
  22581. source: "./media/characters/poojawa-vynar/male.svg",
  22582. extra: 1855/1713,
  22583. bottom: 63/1918
  22584. }
  22585. },
  22586. taur: {
  22587. height: math.unit(5 + 11/12, "feet"),
  22588. weight: math.unit(170, "lb"),
  22589. name: "Taur",
  22590. image: {
  22591. source: "./media/characters/poojawa-vynar/taur.svg",
  22592. extra: 1151/1059,
  22593. bottom: 356/1507
  22594. }
  22595. },
  22596. frontDressed: {
  22597. height: math.unit(5 + 11/12, "feet"),
  22598. weight: math.unit(170, "lb"),
  22599. name: "Front (Dressed)",
  22600. image: {
  22601. source: "./media/characters/poojawa-vynar/front-dressed.svg",
  22602. extra: 1735/1585,
  22603. bottom: 96/1831
  22604. }
  22605. },
  22606. backDressed: {
  22607. height: math.unit(5 + 11/12, "feet"),
  22608. weight: math.unit(170, "lb"),
  22609. name: "Back (Dressed)",
  22610. image: {
  22611. source: "./media/characters/poojawa-vynar/back-dressed.svg",
  22612. extra: 1749/1607,
  22613. bottom: 28/1777
  22614. }
  22615. },
  22616. maleDressed: {
  22617. height: math.unit(5 + 11/12, "feet"),
  22618. weight: math.unit(170, "lb"),
  22619. name: "Male (Dressed)",
  22620. image: {
  22621. source: "./media/characters/poojawa-vynar/male-dressed.svg",
  22622. extra: 1855/1713,
  22623. bottom: 63/1918
  22624. }
  22625. },
  22626. taurDressed: {
  22627. height: math.unit(5 + 11/12, "feet"),
  22628. weight: math.unit(170, "lb"),
  22629. name: "Taur (Dressed)",
  22630. image: {
  22631. source: "./media/characters/poojawa-vynar/taur-dressed.svg",
  22632. extra: 1151/1059,
  22633. bottom: 356/1507
  22634. }
  22635. },
  22636. maw: {
  22637. height: math.unit(1.46, "feet"),
  22638. name: "Maw",
  22639. image: {
  22640. source: "./media/characters/poojawa-vynar/maw.svg"
  22641. }
  22642. },
  22643. head: {
  22644. height: math.unit(2.34, "feet"),
  22645. name: "Head",
  22646. image: {
  22647. source: "./media/characters/poojawa-vynar/head.svg"
  22648. }
  22649. },
  22650. paw: {
  22651. height: math.unit(1.61, "feet"),
  22652. name: "Paw",
  22653. image: {
  22654. source: "./media/characters/poojawa-vynar/paw.svg"
  22655. }
  22656. },
  22657. pawToering: {
  22658. height: math.unit(1.72, "feet"),
  22659. name: "Paw (Toering)",
  22660. image: {
  22661. source: "./media/characters/poojawa-vynar/paw-toering.svg"
  22662. }
  22663. },
  22664. toering: {
  22665. height: math.unit(2.9, "inches"),
  22666. name: "Toering",
  22667. image: {
  22668. source: "./media/characters/poojawa-vynar/toering.svg"
  22669. }
  22670. },
  22671. shaft: {
  22672. height: math.unit(0.625, "feet"),
  22673. name: "Shaft",
  22674. image: {
  22675. source: "./media/characters/poojawa-vynar/shaft.svg"
  22676. }
  22677. },
  22678. spade: {
  22679. height: math.unit(0.42, "feet"),
  22680. name: "Spade",
  22681. image: {
  22682. source: "./media/characters/poojawa-vynar/spade.svg"
  22683. }
  22684. },
  22685. },
  22686. [
  22687. {
  22688. name: "Shortstack",
  22689. height: math.unit(4, "feet")
  22690. },
  22691. {
  22692. name: "Normal",
  22693. height: math.unit(5 + 11 / 12, "feet"),
  22694. default: true
  22695. },
  22696. {
  22697. name: "Tauric",
  22698. height: math.unit(4, "meters")
  22699. },
  22700. ]
  22701. ))
  22702. characterMakers.push(() => makeCharacter(
  22703. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  22704. {
  22705. front: {
  22706. height: math.unit(293, "meters"),
  22707. weight: math.unit(70400, "tons"),
  22708. name: "Front",
  22709. image: {
  22710. source: "./media/characters/violette/front.svg",
  22711. extra: 1227 / 1180,
  22712. bottom: 0.005
  22713. }
  22714. },
  22715. back: {
  22716. height: math.unit(293, "meters"),
  22717. weight: math.unit(70400, "tons"),
  22718. name: "Back",
  22719. image: {
  22720. source: "./media/characters/violette/back.svg",
  22721. extra: 1227 / 1180,
  22722. bottom: 0.005
  22723. }
  22724. },
  22725. },
  22726. [
  22727. {
  22728. name: "Macro",
  22729. height: math.unit(293, "meters"),
  22730. default: true
  22731. },
  22732. ]
  22733. ))
  22734. characterMakers.push(() => makeCharacter(
  22735. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  22736. {
  22737. front: {
  22738. height: math.unit(1050, "feet"),
  22739. weight: math.unit(200000, "tons"),
  22740. name: "Front",
  22741. image: {
  22742. source: "./media/characters/alessandra/front.svg",
  22743. extra: 960 / 912,
  22744. bottom: 0.06
  22745. }
  22746. },
  22747. },
  22748. [
  22749. {
  22750. name: "Macro",
  22751. height: math.unit(1050, "feet")
  22752. },
  22753. {
  22754. name: "Macro+",
  22755. height: math.unit(900, "meters"),
  22756. default: true
  22757. },
  22758. ]
  22759. ))
  22760. characterMakers.push(() => makeCharacter(
  22761. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  22762. {
  22763. front: {
  22764. height: math.unit(5, "feet"),
  22765. weight: math.unit(187, "lb"),
  22766. name: "Front",
  22767. image: {
  22768. source: "./media/characters/person/front.svg",
  22769. extra: 3087 / 2945,
  22770. bottom: 91 / 3181
  22771. }
  22772. },
  22773. },
  22774. [
  22775. {
  22776. name: "Micro",
  22777. height: math.unit(3, "inches")
  22778. },
  22779. {
  22780. name: "Normal",
  22781. height: math.unit(5, "feet"),
  22782. default: true
  22783. },
  22784. {
  22785. name: "Macro",
  22786. height: math.unit(90, "feet")
  22787. },
  22788. {
  22789. name: "Max Size",
  22790. height: math.unit(280, "feet")
  22791. },
  22792. ]
  22793. ))
  22794. characterMakers.push(() => makeCharacter(
  22795. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  22796. {
  22797. front: {
  22798. height: math.unit(4.5, "meters"),
  22799. weight: math.unit(3200, "lb"),
  22800. name: "Front",
  22801. image: {
  22802. source: "./media/characters/ty/front.svg",
  22803. extra: 1038 / 960,
  22804. bottom: 31.156 / 1068
  22805. }
  22806. },
  22807. back: {
  22808. height: math.unit(4.5, "meters"),
  22809. weight: math.unit(3200, "lb"),
  22810. name: "Back",
  22811. image: {
  22812. source: "./media/characters/ty/back.svg",
  22813. extra: 1044 / 966,
  22814. bottom: 7.48 / 1049
  22815. }
  22816. },
  22817. },
  22818. [
  22819. {
  22820. name: "Normal",
  22821. height: math.unit(4.5, "meters"),
  22822. default: true
  22823. },
  22824. ]
  22825. ))
  22826. characterMakers.push(() => makeCharacter(
  22827. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  22828. {
  22829. front: {
  22830. height: math.unit(5 + 4 / 12, "feet"),
  22831. weight: math.unit(115, "lb"),
  22832. name: "Front",
  22833. image: {
  22834. source: "./media/characters/rocky/front.svg",
  22835. extra: 1012 / 975,
  22836. bottom: 54 / 1066
  22837. }
  22838. },
  22839. },
  22840. [
  22841. {
  22842. name: "Normal",
  22843. height: math.unit(5 + 4 / 12, "feet"),
  22844. default: true
  22845. },
  22846. ]
  22847. ))
  22848. characterMakers.push(() => makeCharacter(
  22849. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  22850. {
  22851. upright: {
  22852. height: math.unit(6, "meters"),
  22853. weight: math.unit(4000, "kg"),
  22854. name: "Upright",
  22855. image: {
  22856. source: "./media/characters/ruin/upright.svg",
  22857. extra: 668 / 661,
  22858. bottom: 42 / 799.8396
  22859. }
  22860. },
  22861. },
  22862. [
  22863. {
  22864. name: "Normal",
  22865. height: math.unit(6, "meters"),
  22866. default: true
  22867. },
  22868. ]
  22869. ))
  22870. characterMakers.push(() => makeCharacter(
  22871. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  22872. {
  22873. front: {
  22874. height: math.unit(5, "feet"),
  22875. weight: math.unit(106, "lb"),
  22876. name: "Front",
  22877. image: {
  22878. source: "./media/characters/robin/front.svg",
  22879. extra: 862 / 799,
  22880. bottom: 42.4 / 914.8856
  22881. }
  22882. },
  22883. },
  22884. [
  22885. {
  22886. name: "Normal",
  22887. height: math.unit(5, "feet"),
  22888. default: true
  22889. },
  22890. ]
  22891. ))
  22892. characterMakers.push(() => makeCharacter(
  22893. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  22894. {
  22895. side: {
  22896. height: math.unit(3, "feet"),
  22897. weight: math.unit(225, "lb"),
  22898. name: "Side",
  22899. image: {
  22900. source: "./media/characters/saian/side.svg",
  22901. extra: 566 / 356,
  22902. bottom: 79.7 / 643
  22903. }
  22904. },
  22905. maw: {
  22906. height: math.unit(2.85, "feet"),
  22907. name: "Maw",
  22908. image: {
  22909. source: "./media/characters/saian/maw.svg"
  22910. }
  22911. },
  22912. },
  22913. [
  22914. {
  22915. name: "Normal",
  22916. height: math.unit(3, "feet"),
  22917. default: true
  22918. },
  22919. ]
  22920. ))
  22921. characterMakers.push(() => makeCharacter(
  22922. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  22923. {
  22924. side: {
  22925. height: math.unit(8, "feet"),
  22926. weight: math.unit(300, "lb"),
  22927. name: "Side",
  22928. image: {
  22929. source: "./media/characters/equus-silvermane/side.svg",
  22930. extra: 2176 / 2050,
  22931. bottom: 65.7 / 2245
  22932. }
  22933. },
  22934. front: {
  22935. height: math.unit(8, "feet"),
  22936. weight: math.unit(300, "lb"),
  22937. name: "Front",
  22938. image: {
  22939. source: "./media/characters/equus-silvermane/front.svg",
  22940. extra: 4633 / 4400,
  22941. bottom: 71.3 / 4706.915
  22942. }
  22943. },
  22944. sideStepping: {
  22945. height: math.unit(8, "feet"),
  22946. weight: math.unit(300, "lb"),
  22947. name: "Side (Stepping)",
  22948. image: {
  22949. source: "./media/characters/equus-silvermane/side-stepping.svg",
  22950. extra: 1968 / 1860,
  22951. bottom: 16.4 / 1989
  22952. }
  22953. },
  22954. },
  22955. [
  22956. {
  22957. name: "Normal",
  22958. height: math.unit(8, "feet")
  22959. },
  22960. {
  22961. name: "Minimacro",
  22962. height: math.unit(75, "feet"),
  22963. default: true
  22964. },
  22965. {
  22966. name: "Macro",
  22967. height: math.unit(150, "feet")
  22968. },
  22969. {
  22970. name: "Macro+",
  22971. height: math.unit(1000, "feet")
  22972. },
  22973. {
  22974. name: "Megamacro",
  22975. height: math.unit(1, "mile")
  22976. },
  22977. ]
  22978. ))
  22979. characterMakers.push(() => makeCharacter(
  22980. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  22981. {
  22982. side: {
  22983. height: math.unit(20, "feet"),
  22984. weight: math.unit(30000, "kg"),
  22985. name: "Side",
  22986. image: {
  22987. source: "./media/characters/windar/side.svg",
  22988. extra: 1491 / 1248,
  22989. bottom: 82.56 / 1568
  22990. }
  22991. },
  22992. },
  22993. [
  22994. {
  22995. name: "Normal",
  22996. height: math.unit(20, "feet"),
  22997. default: true
  22998. },
  22999. ]
  23000. ))
  23001. characterMakers.push(() => makeCharacter(
  23002. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  23003. {
  23004. side: {
  23005. height: math.unit(15.66, "feet"),
  23006. weight: math.unit(150, "lb"),
  23007. name: "Side",
  23008. image: {
  23009. source: "./media/characters/melody/side.svg",
  23010. extra: 1097 / 944,
  23011. bottom: 11.8 / 1109
  23012. }
  23013. },
  23014. sideOutfit: {
  23015. height: math.unit(15.66, "feet"),
  23016. weight: math.unit(150, "lb"),
  23017. name: "Side (Outfit)",
  23018. image: {
  23019. source: "./media/characters/melody/side-outfit.svg",
  23020. extra: 1097 / 944,
  23021. bottom: 11.8 / 1109
  23022. }
  23023. },
  23024. },
  23025. [
  23026. {
  23027. name: "Normal",
  23028. height: math.unit(15.66, "feet"),
  23029. default: true
  23030. },
  23031. ]
  23032. ))
  23033. characterMakers.push(() => makeCharacter(
  23034. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  23035. {
  23036. armoredFront: {
  23037. height: math.unit(8, "feet"),
  23038. weight: math.unit(325, "lb"),
  23039. name: "Front",
  23040. image: {
  23041. source: "./media/characters/windera/armored-front.svg",
  23042. extra: 1830/1598,
  23043. bottom: 151/1981
  23044. },
  23045. form: "armored",
  23046. default: true
  23047. },
  23048. macroFront: {
  23049. height: math.unit(70, "feet"),
  23050. weight: math.unit(315453, "lb"),
  23051. name: "Front",
  23052. image: {
  23053. source: "./media/characters/windera/macro-front.svg",
  23054. extra: 963/883,
  23055. bottom: 23/986
  23056. },
  23057. form: "macro",
  23058. default: true
  23059. },
  23060. },
  23061. [
  23062. {
  23063. name: "Normal",
  23064. height: math.unit(8, "feet"),
  23065. default: true,
  23066. form: "armored"
  23067. },
  23068. {
  23069. name: "Normal",
  23070. height: math.unit(70, "feet"),
  23071. default: true,
  23072. form: "macro"
  23073. },
  23074. ],
  23075. {
  23076. "armored": {
  23077. name: "Armored",
  23078. default: true
  23079. },
  23080. "macro": {
  23081. name: "Macro",
  23082. },
  23083. }
  23084. ))
  23085. characterMakers.push(() => makeCharacter(
  23086. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  23087. {
  23088. front: {
  23089. height: math.unit(28.75, "feet"),
  23090. weight: math.unit(2000, "kg"),
  23091. name: "Front",
  23092. image: {
  23093. source: "./media/characters/sonear/front.svg",
  23094. extra: 1041.1 / 964.9,
  23095. bottom: 53.7 / 1096.6
  23096. }
  23097. },
  23098. },
  23099. [
  23100. {
  23101. name: "Normal",
  23102. height: math.unit(28.75, "feet"),
  23103. default: true
  23104. },
  23105. ]
  23106. ))
  23107. characterMakers.push(() => makeCharacter(
  23108. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  23109. {
  23110. side: {
  23111. height: math.unit(25.5, "feet"),
  23112. weight: math.unit(23000, "kg"),
  23113. name: "Side",
  23114. image: {
  23115. source: "./media/characters/kanara/side.svg"
  23116. }
  23117. },
  23118. },
  23119. [
  23120. {
  23121. name: "Normal",
  23122. height: math.unit(25.5, "feet"),
  23123. default: true
  23124. },
  23125. ]
  23126. ))
  23127. characterMakers.push(() => makeCharacter(
  23128. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  23129. {
  23130. side: {
  23131. height: math.unit(10, "feet"),
  23132. weight: math.unit(1000, "kg"),
  23133. name: "Side",
  23134. image: {
  23135. source: "./media/characters/ereus/side.svg",
  23136. extra: 1157 / 959,
  23137. bottom: 153 / 1312.5
  23138. }
  23139. },
  23140. },
  23141. [
  23142. {
  23143. name: "Normal",
  23144. height: math.unit(10, "feet"),
  23145. default: true
  23146. },
  23147. ]
  23148. ))
  23149. characterMakers.push(() => makeCharacter(
  23150. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  23151. {
  23152. side: {
  23153. height: math.unit(4.5, "feet"),
  23154. weight: math.unit(500, "lb"),
  23155. name: "Side",
  23156. image: {
  23157. source: "./media/characters/e-ter/side.svg",
  23158. extra: 1550 / 1248,
  23159. bottom: 146 / 1694
  23160. }
  23161. },
  23162. },
  23163. [
  23164. {
  23165. name: "Normal",
  23166. height: math.unit(4.5, "feet"),
  23167. default: true
  23168. },
  23169. ]
  23170. ))
  23171. characterMakers.push(() => makeCharacter(
  23172. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  23173. {
  23174. side: {
  23175. height: math.unit(9.7, "feet"),
  23176. weight: math.unit(4000, "kg"),
  23177. name: "Side",
  23178. image: {
  23179. source: "./media/characters/yamie/side.svg"
  23180. }
  23181. },
  23182. },
  23183. [
  23184. {
  23185. name: "Normal",
  23186. height: math.unit(9.7, "feet"),
  23187. default: true
  23188. },
  23189. ]
  23190. ))
  23191. characterMakers.push(() => makeCharacter(
  23192. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  23193. {
  23194. front: {
  23195. height: math.unit(50, "feet"),
  23196. weight: math.unit(50000, "kg"),
  23197. name: "Front",
  23198. image: {
  23199. source: "./media/characters/anders/front.svg",
  23200. extra: 570 / 539,
  23201. bottom: 14.7 / 586.7
  23202. }
  23203. },
  23204. },
  23205. [
  23206. {
  23207. name: "Large",
  23208. height: math.unit(50, "feet")
  23209. },
  23210. {
  23211. name: "Macro",
  23212. height: math.unit(2000, "feet"),
  23213. default: true
  23214. },
  23215. {
  23216. name: "Megamacro",
  23217. height: math.unit(12, "miles")
  23218. },
  23219. ]
  23220. ))
  23221. characterMakers.push(() => makeCharacter(
  23222. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  23223. {
  23224. front: {
  23225. height: math.unit(7 + 2 / 12, "feet"),
  23226. weight: math.unit(300, "lb"),
  23227. name: "Front",
  23228. image: {
  23229. source: "./media/characters/reban/front.svg",
  23230. extra: 1287/1212,
  23231. bottom: 148/1435
  23232. }
  23233. },
  23234. head: {
  23235. height: math.unit(1.95, "feet"),
  23236. name: "Head",
  23237. image: {
  23238. source: "./media/characters/reban/head.svg"
  23239. }
  23240. },
  23241. maw: {
  23242. height: math.unit(0.95, "feet"),
  23243. name: "Maw",
  23244. image: {
  23245. source: "./media/characters/reban/maw.svg"
  23246. }
  23247. },
  23248. foot: {
  23249. height: math.unit(1.65, "feet"),
  23250. name: "Foot",
  23251. image: {
  23252. source: "./media/characters/reban/foot.svg"
  23253. }
  23254. },
  23255. dick: {
  23256. height: math.unit(7 / 5, "feet"),
  23257. name: "Dick",
  23258. image: {
  23259. source: "./media/characters/reban/dick.svg"
  23260. }
  23261. },
  23262. },
  23263. [
  23264. {
  23265. name: "Natural Height",
  23266. height: math.unit(7 + 2 / 12, "feet")
  23267. },
  23268. {
  23269. name: "Macro",
  23270. height: math.unit(500, "feet"),
  23271. default: true
  23272. },
  23273. {
  23274. name: "Canon Height",
  23275. height: math.unit(50, "AU")
  23276. },
  23277. ]
  23278. ))
  23279. characterMakers.push(() => makeCharacter(
  23280. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  23281. {
  23282. front: {
  23283. height: math.unit(6, "feet"),
  23284. weight: math.unit(150, "lb"),
  23285. name: "Front",
  23286. image: {
  23287. source: "./media/characters/terrance-keayes/front.svg",
  23288. extra: 1.005,
  23289. bottom: 151 / 1615
  23290. }
  23291. },
  23292. side: {
  23293. height: math.unit(6, "feet"),
  23294. weight: math.unit(150, "lb"),
  23295. name: "Side",
  23296. image: {
  23297. source: "./media/characters/terrance-keayes/side.svg",
  23298. extra: 1.005,
  23299. bottom: 129.4 / 1544
  23300. }
  23301. },
  23302. back: {
  23303. height: math.unit(6, "feet"),
  23304. weight: math.unit(150, "lb"),
  23305. name: "Back",
  23306. image: {
  23307. source: "./media/characters/terrance-keayes/back.svg",
  23308. extra: 1.005,
  23309. bottom: 58.4 / 1557.3
  23310. }
  23311. },
  23312. dick: {
  23313. height: math.unit(6 * 0.208, "feet"),
  23314. name: "Dick",
  23315. image: {
  23316. source: "./media/characters/terrance-keayes/dick.svg"
  23317. }
  23318. },
  23319. },
  23320. [
  23321. {
  23322. name: "Canon Height",
  23323. height: math.unit(35, "miles"),
  23324. default: true
  23325. },
  23326. ]
  23327. ))
  23328. characterMakers.push(() => makeCharacter(
  23329. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  23330. {
  23331. front: {
  23332. height: math.unit(6, "feet"),
  23333. weight: math.unit(150, "lb"),
  23334. name: "Front",
  23335. image: {
  23336. source: "./media/characters/ofelia/front.svg",
  23337. extra: 1130/1117,
  23338. bottom: 91/1221
  23339. }
  23340. },
  23341. back: {
  23342. height: math.unit(6, "feet"),
  23343. weight: math.unit(150, "lb"),
  23344. name: "Back",
  23345. image: {
  23346. source: "./media/characters/ofelia/back.svg",
  23347. extra: 1172/1159,
  23348. bottom: 28/1200
  23349. }
  23350. },
  23351. maw: {
  23352. height: math.unit(1, "feet"),
  23353. name: "Maw",
  23354. image: {
  23355. source: "./media/characters/ofelia/maw.svg"
  23356. }
  23357. },
  23358. foot: {
  23359. height: math.unit(1.949, "feet"),
  23360. name: "Foot",
  23361. image: {
  23362. source: "./media/characters/ofelia/foot.svg"
  23363. }
  23364. },
  23365. },
  23366. [
  23367. {
  23368. name: "Canon Height",
  23369. height: math.unit(2000, "miles"),
  23370. default: true
  23371. },
  23372. ]
  23373. ))
  23374. characterMakers.push(() => makeCharacter(
  23375. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  23376. {
  23377. front: {
  23378. height: math.unit(6, "feet"),
  23379. weight: math.unit(150, "lb"),
  23380. name: "Front",
  23381. image: {
  23382. source: "./media/characters/samuel/front.svg",
  23383. extra: 265 / 258,
  23384. bottom: 2 / 266.1566
  23385. }
  23386. },
  23387. },
  23388. [
  23389. {
  23390. name: "Macro",
  23391. height: math.unit(100, "feet"),
  23392. default: true
  23393. },
  23394. {
  23395. name: "Full Size",
  23396. height: math.unit(1000, "miles")
  23397. },
  23398. ]
  23399. ))
  23400. characterMakers.push(() => makeCharacter(
  23401. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  23402. {
  23403. front: {
  23404. height: math.unit(6, "feet"),
  23405. weight: math.unit(300, "lb"),
  23406. name: "Front",
  23407. image: {
  23408. source: "./media/characters/beishir-kiel/front.svg",
  23409. extra: 569 / 547,
  23410. bottom: 41.9 / 609
  23411. }
  23412. },
  23413. maw: {
  23414. height: math.unit(6 * 0.202, "feet"),
  23415. name: "Maw",
  23416. image: {
  23417. source: "./media/characters/beishir-kiel/maw.svg"
  23418. }
  23419. },
  23420. },
  23421. [
  23422. {
  23423. name: "Macro",
  23424. height: math.unit(300, "feet"),
  23425. default: true
  23426. },
  23427. ]
  23428. ))
  23429. characterMakers.push(() => makeCharacter(
  23430. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  23431. {
  23432. front: {
  23433. height: math.unit(5 + 7/12, "feet"),
  23434. weight: math.unit(120, "lb"),
  23435. name: "Front",
  23436. image: {
  23437. source: "./media/characters/logan-grey/front.svg",
  23438. extra: 1836/1738,
  23439. bottom: 108/1944
  23440. }
  23441. },
  23442. back: {
  23443. height: math.unit(5 + 7/12, "feet"),
  23444. weight: math.unit(120, "lb"),
  23445. name: "Back",
  23446. image: {
  23447. source: "./media/characters/logan-grey/back.svg",
  23448. extra: 1880/1794,
  23449. bottom: 24/1904
  23450. }
  23451. },
  23452. frontSfw: {
  23453. height: math.unit(5 + 7/12, "feet"),
  23454. weight: math.unit(120, "lb"),
  23455. name: "Front (SFW)",
  23456. image: {
  23457. source: "./media/characters/logan-grey/front-sfw.svg",
  23458. extra: 1836/1738,
  23459. bottom: 108/1944
  23460. }
  23461. },
  23462. backSfw: {
  23463. height: math.unit(5 + 7/12, "feet"),
  23464. weight: math.unit(120, "lb"),
  23465. name: "Back (SFW)",
  23466. image: {
  23467. source: "./media/characters/logan-grey/back-sfw.svg",
  23468. extra: 1880/1794,
  23469. bottom: 24/1904
  23470. }
  23471. },
  23472. hands: {
  23473. height: math.unit(0.84, "feet"),
  23474. name: "Hands",
  23475. image: {
  23476. source: "./media/characters/logan-grey/hands.svg"
  23477. }
  23478. },
  23479. paws: {
  23480. height: math.unit(0.72, "feet"),
  23481. name: "Paws",
  23482. image: {
  23483. source: "./media/characters/logan-grey/paws.svg"
  23484. }
  23485. },
  23486. cock: {
  23487. height: math.unit(1.45, "feet"),
  23488. name: "Cock",
  23489. image: {
  23490. source: "./media/characters/logan-grey/cock.svg"
  23491. }
  23492. },
  23493. cockAlt: {
  23494. height: math.unit(1.437, "feet"),
  23495. name: "Cock (alt)",
  23496. image: {
  23497. source: "./media/characters/logan-grey/cock-alt.svg"
  23498. }
  23499. },
  23500. },
  23501. [
  23502. {
  23503. name: "Normal",
  23504. height: math.unit(5 + 8 / 12, "feet")
  23505. },
  23506. {
  23507. name: "The 500 Foot Femboy",
  23508. height: math.unit(500, "feet"),
  23509. default: true
  23510. },
  23511. {
  23512. name: "Megmacro",
  23513. height: math.unit(20, "miles")
  23514. },
  23515. ]
  23516. ))
  23517. characterMakers.push(() => makeCharacter(
  23518. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  23519. {
  23520. front: {
  23521. height: math.unit(8 + 2 / 12, "feet"),
  23522. weight: math.unit(275, "lb"),
  23523. name: "Front",
  23524. image: {
  23525. source: "./media/characters/draganta/front.svg",
  23526. extra: 1177 / 1135,
  23527. bottom: 33.46 / 1212.1
  23528. }
  23529. },
  23530. },
  23531. [
  23532. {
  23533. name: "Normal",
  23534. height: math.unit(8 + 6 / 12, "feet"),
  23535. default: true
  23536. },
  23537. {
  23538. name: "Macro",
  23539. height: math.unit(150, "feet")
  23540. },
  23541. {
  23542. name: "Megamacro",
  23543. height: math.unit(1000, "miles")
  23544. },
  23545. ]
  23546. ))
  23547. characterMakers.push(() => makeCharacter(
  23548. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  23549. {
  23550. front: {
  23551. height: math.unit(1.72, "m"),
  23552. weight: math.unit(80, "lb"),
  23553. name: "Front",
  23554. image: {
  23555. source: "./media/characters/voski/front.svg",
  23556. extra: 2076.22 / 2022.4,
  23557. bottom: 102.7 / 2177.3866
  23558. }
  23559. },
  23560. frontFlaccid: {
  23561. height: math.unit(1.72, "m"),
  23562. weight: math.unit(80, "lb"),
  23563. name: "Front (Flaccid)",
  23564. image: {
  23565. source: "./media/characters/voski/front-flaccid.svg",
  23566. extra: 2076.22 / 2022.4,
  23567. bottom: 102.7 / 2177.3866
  23568. }
  23569. },
  23570. frontErect: {
  23571. height: math.unit(1.72, "m"),
  23572. weight: math.unit(80, "lb"),
  23573. name: "Front (Erect)",
  23574. image: {
  23575. source: "./media/characters/voski/front-erect.svg",
  23576. extra: 2076.22 / 2022.4,
  23577. bottom: 102.7 / 2177.3866
  23578. }
  23579. },
  23580. back: {
  23581. height: math.unit(1.72, "m"),
  23582. weight: math.unit(80, "lb"),
  23583. name: "Back",
  23584. image: {
  23585. source: "./media/characters/voski/back.svg",
  23586. extra: 2104 / 2051,
  23587. bottom: 10.45 / 2113.63
  23588. }
  23589. },
  23590. },
  23591. [
  23592. {
  23593. name: "Normal",
  23594. height: math.unit(1.72, "m")
  23595. },
  23596. {
  23597. name: "Macro",
  23598. height: math.unit(55, "m"),
  23599. default: true
  23600. },
  23601. {
  23602. name: "Macro+",
  23603. height: math.unit(300, "m")
  23604. },
  23605. {
  23606. name: "Macro++",
  23607. height: math.unit(700, "m")
  23608. },
  23609. {
  23610. name: "Macro+++",
  23611. height: math.unit(4500, "m")
  23612. },
  23613. {
  23614. name: "Macro++++",
  23615. height: math.unit(45, "km")
  23616. },
  23617. {
  23618. name: "Macro+++++",
  23619. height: math.unit(1220, "km")
  23620. },
  23621. ]
  23622. ))
  23623. characterMakers.push(() => makeCharacter(
  23624. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  23625. {
  23626. front: {
  23627. height: math.unit(2.3, "m"),
  23628. weight: math.unit(304, "kg"),
  23629. name: "Front",
  23630. image: {
  23631. source: "./media/characters/icowom-lee/front.svg",
  23632. extra: 985 / 955,
  23633. bottom: 25.4 / 1012
  23634. }
  23635. },
  23636. fronttentacles: {
  23637. height: math.unit(2.3, "m"),
  23638. weight: math.unit(304, "kg"),
  23639. name: "Front-tentacles",
  23640. image: {
  23641. source: "./media/characters/icowom-lee/front-tentacles.svg",
  23642. extra: 985 / 955,
  23643. bottom: 25.4 / 1012
  23644. }
  23645. },
  23646. back: {
  23647. height: math.unit(2.3, "m"),
  23648. weight: math.unit(304, "kg"),
  23649. name: "Back",
  23650. image: {
  23651. source: "./media/characters/icowom-lee/back.svg",
  23652. extra: 975 / 954,
  23653. bottom: 9.5 / 985
  23654. }
  23655. },
  23656. backtentacles: {
  23657. height: math.unit(2.3, "m"),
  23658. weight: math.unit(304, "kg"),
  23659. name: "Back-tentacles",
  23660. image: {
  23661. source: "./media/characters/icowom-lee/back-tentacles.svg",
  23662. extra: 975 / 954,
  23663. bottom: 9.5 / 985
  23664. }
  23665. },
  23666. frontDressed: {
  23667. height: math.unit(2.3, "m"),
  23668. weight: math.unit(304, "kg"),
  23669. name: "Front (Dressed)",
  23670. image: {
  23671. source: "./media/characters/icowom-lee/front-dressed.svg",
  23672. extra: 3076 / 2933,
  23673. bottom: 51.4 / 3125.1889
  23674. }
  23675. },
  23676. rump: {
  23677. height: math.unit(0.776, "meters"),
  23678. name: "Rump",
  23679. image: {
  23680. source: "./media/characters/icowom-lee/rump.svg"
  23681. }
  23682. },
  23683. genitals: {
  23684. height: math.unit(0.78, "meters"),
  23685. name: "Genitals",
  23686. image: {
  23687. source: "./media/characters/icowom-lee/genitals.svg"
  23688. }
  23689. },
  23690. },
  23691. [
  23692. {
  23693. name: "Normal",
  23694. height: math.unit(2.3, "meters"),
  23695. default: true
  23696. },
  23697. {
  23698. name: "Macro",
  23699. height: math.unit(94, "meters"),
  23700. default: true
  23701. },
  23702. ]
  23703. ))
  23704. characterMakers.push(() => makeCharacter(
  23705. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  23706. {
  23707. front: {
  23708. height: math.unit(22, "meters"),
  23709. weight: math.unit(21000, "kg"),
  23710. name: "Front",
  23711. image: {
  23712. source: "./media/characters/shock-diamond/front.svg",
  23713. extra: 2204 / 2053,
  23714. bottom: 65 / 2239.47
  23715. }
  23716. },
  23717. frontNude: {
  23718. height: math.unit(22, "meters"),
  23719. weight: math.unit(21000, "kg"),
  23720. name: "Front (Nude)",
  23721. image: {
  23722. source: "./media/characters/shock-diamond/front-nude.svg",
  23723. extra: 2514 / 2285,
  23724. bottom: 13 / 2527.56
  23725. }
  23726. },
  23727. },
  23728. [
  23729. {
  23730. name: "Normal",
  23731. height: math.unit(3, "meters")
  23732. },
  23733. {
  23734. name: "Macro",
  23735. height: math.unit(22, "meters"),
  23736. default: true
  23737. },
  23738. ]
  23739. ))
  23740. characterMakers.push(() => makeCharacter(
  23741. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  23742. {
  23743. front: {
  23744. height: math.unit(5 + 4 / 12, "feet"),
  23745. weight: math.unit(120, "lb"),
  23746. name: "Front",
  23747. image: {
  23748. source: "./media/characters/rory/front.svg",
  23749. extra: 1318/1241,
  23750. bottom: 42/1360
  23751. }
  23752. },
  23753. back: {
  23754. height: math.unit(5 + 4 / 12, "feet"),
  23755. weight: math.unit(120, "lb"),
  23756. name: "Back",
  23757. image: {
  23758. source: "./media/characters/rory/back.svg",
  23759. extra: 1318/1241,
  23760. bottom: 42/1360
  23761. }
  23762. },
  23763. butt: {
  23764. height: math.unit(1.74, "feet"),
  23765. name: "Butt",
  23766. image: {
  23767. source: "./media/characters/rory/butt.svg"
  23768. }
  23769. },
  23770. dick: {
  23771. height: math.unit(1.02, "feet"),
  23772. name: "Dick",
  23773. image: {
  23774. source: "./media/characters/rory/dick.svg"
  23775. }
  23776. },
  23777. paws: {
  23778. height: math.unit(1, "feet"),
  23779. name: "Paws",
  23780. image: {
  23781. source: "./media/characters/rory/paws.svg"
  23782. }
  23783. },
  23784. frontAlt: {
  23785. height: math.unit(5 + 4 / 12, "feet"),
  23786. weight: math.unit(120, "lb"),
  23787. name: "Front (Alt)",
  23788. image: {
  23789. source: "./media/characters/rory/front-alt.svg",
  23790. extra: 589 / 556,
  23791. bottom: 45.7 / 635.76
  23792. }
  23793. },
  23794. frontAltNude: {
  23795. height: math.unit(5 + 4 / 12, "feet"),
  23796. weight: math.unit(120, "lb"),
  23797. name: "Front (Alt, Nude)",
  23798. image: {
  23799. source: "./media/characters/rory/front-alt-nude.svg",
  23800. extra: 589 / 556,
  23801. bottom: 45.7 / 635.76
  23802. }
  23803. },
  23804. side: {
  23805. height: math.unit(5 + 4 / 12, "feet"),
  23806. weight: math.unit(120, "lb"),
  23807. name: "Side",
  23808. image: {
  23809. source: "./media/characters/rory/side.svg",
  23810. extra: 597 / 564,
  23811. bottom: 55 / 653
  23812. }
  23813. },
  23814. backAlt: {
  23815. height: math.unit(5 + 4 / 12, "feet"),
  23816. weight: math.unit(120, "lb"),
  23817. name: "Back (Alt)",
  23818. image: {
  23819. source: "./media/characters/rory/back-alt.svg",
  23820. extra: 620 / 585,
  23821. bottom: 8.86 / 630.43
  23822. }
  23823. },
  23824. dickAlt: {
  23825. height: math.unit(0.86, "feet"),
  23826. name: "Dick (Alt)",
  23827. image: {
  23828. source: "./media/characters/rory/dick-alt.svg"
  23829. }
  23830. },
  23831. },
  23832. [
  23833. {
  23834. name: "Normal",
  23835. height: math.unit(5 + 4 / 12, "feet"),
  23836. default: true
  23837. },
  23838. {
  23839. name: "Macro",
  23840. height: math.unit(100, "feet")
  23841. },
  23842. {
  23843. name: "Macro+",
  23844. height: math.unit(140, "feet")
  23845. },
  23846. {
  23847. name: "Macro++",
  23848. height: math.unit(300, "feet")
  23849. },
  23850. ]
  23851. ))
  23852. characterMakers.push(() => makeCharacter(
  23853. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  23854. {
  23855. front: {
  23856. height: math.unit(5 + 9 / 12, "feet"),
  23857. weight: math.unit(190, "lb"),
  23858. name: "Front",
  23859. image: {
  23860. source: "./media/characters/sprisk/front.svg",
  23861. extra: 1225 / 1180,
  23862. bottom: 42.7 / 1266.4
  23863. }
  23864. },
  23865. frontNsfw: {
  23866. height: math.unit(5 + 9 / 12, "feet"),
  23867. weight: math.unit(190, "lb"),
  23868. name: "Front (NSFW)",
  23869. image: {
  23870. source: "./media/characters/sprisk/front-nsfw.svg",
  23871. extra: 1225 / 1180,
  23872. bottom: 42.7 / 1266.4
  23873. }
  23874. },
  23875. back: {
  23876. height: math.unit(5 + 9 / 12, "feet"),
  23877. weight: math.unit(190, "lb"),
  23878. name: "Back",
  23879. image: {
  23880. source: "./media/characters/sprisk/back.svg",
  23881. extra: 1247 / 1200,
  23882. bottom: 5.6 / 1253.04
  23883. }
  23884. },
  23885. },
  23886. [
  23887. {
  23888. name: "Tiny",
  23889. height: math.unit(2, "inches")
  23890. },
  23891. {
  23892. name: "Normal",
  23893. height: math.unit(5 + 9 / 12, "feet"),
  23894. default: true
  23895. },
  23896. {
  23897. name: "Mini Macro",
  23898. height: math.unit(18, "feet")
  23899. },
  23900. {
  23901. name: "Macro",
  23902. height: math.unit(100, "feet")
  23903. },
  23904. {
  23905. name: "MACRO",
  23906. height: math.unit(50, "miles")
  23907. },
  23908. {
  23909. name: "M A C R O",
  23910. height: math.unit(300, "miles")
  23911. },
  23912. ]
  23913. ))
  23914. characterMakers.push(() => makeCharacter(
  23915. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  23916. {
  23917. side: {
  23918. height: math.unit(15.6, "meters"),
  23919. weight: math.unit(700000, "kg"),
  23920. name: "Side",
  23921. image: {
  23922. source: "./media/characters/bunsen/side.svg",
  23923. extra: 1644 / 358
  23924. }
  23925. },
  23926. foot: {
  23927. height: math.unit(1.611 * 1644 / 358, "meter"),
  23928. name: "Foot",
  23929. image: {
  23930. source: "./media/characters/bunsen/foot.svg"
  23931. }
  23932. },
  23933. },
  23934. [
  23935. {
  23936. name: "Small",
  23937. height: math.unit(10, "feet")
  23938. },
  23939. {
  23940. name: "Normal",
  23941. height: math.unit(15.6, "meters"),
  23942. default: true
  23943. },
  23944. ]
  23945. ))
  23946. characterMakers.push(() => makeCharacter(
  23947. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  23948. {
  23949. front: {
  23950. height: math.unit(4 + 11 / 12, "feet"),
  23951. weight: math.unit(140, "lb"),
  23952. name: "Front",
  23953. image: {
  23954. source: "./media/characters/sesh/front.svg",
  23955. extra: 3420 / 3231,
  23956. bottom: 72 / 3949.5
  23957. }
  23958. },
  23959. },
  23960. [
  23961. {
  23962. name: "Normal",
  23963. height: math.unit(4 + 11 / 12, "feet")
  23964. },
  23965. {
  23966. name: "Grown",
  23967. height: math.unit(15, "feet"),
  23968. default: true
  23969. },
  23970. {
  23971. name: "Macro",
  23972. height: math.unit(1500, "feet")
  23973. },
  23974. {
  23975. name: "Megamacro",
  23976. height: math.unit(30, "miles")
  23977. },
  23978. {
  23979. name: "Continental",
  23980. height: math.unit(3000, "miles")
  23981. },
  23982. {
  23983. name: "Gravity Mass",
  23984. height: math.unit(300000, "miles")
  23985. },
  23986. {
  23987. name: "Planet Buster",
  23988. height: math.unit(30000000, "miles")
  23989. },
  23990. {
  23991. name: "Big",
  23992. height: math.unit(3000000000, "miles")
  23993. },
  23994. ]
  23995. ))
  23996. characterMakers.push(() => makeCharacter(
  23997. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  23998. {
  23999. front: {
  24000. height: math.unit(9, "feet"),
  24001. weight: math.unit(350, "lb"),
  24002. name: "Front",
  24003. image: {
  24004. source: "./media/characters/pepper/front.svg",
  24005. extra: 1448 / 1312,
  24006. bottom: 9.4 / 1457.88
  24007. }
  24008. },
  24009. back: {
  24010. height: math.unit(9, "feet"),
  24011. weight: math.unit(350, "lb"),
  24012. name: "Back",
  24013. image: {
  24014. source: "./media/characters/pepper/back.svg",
  24015. extra: 1423 / 1300,
  24016. bottom: 4.6 / 1429
  24017. }
  24018. },
  24019. maw: {
  24020. height: math.unit(0.932, "feet"),
  24021. name: "Maw",
  24022. image: {
  24023. source: "./media/characters/pepper/maw.svg"
  24024. }
  24025. },
  24026. },
  24027. [
  24028. {
  24029. name: "Normal",
  24030. height: math.unit(9, "feet"),
  24031. default: true
  24032. },
  24033. ]
  24034. ))
  24035. characterMakers.push(() => makeCharacter(
  24036. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  24037. {
  24038. front: {
  24039. height: math.unit(6, "feet"),
  24040. weight: math.unit(150, "lb"),
  24041. name: "Front",
  24042. image: {
  24043. source: "./media/characters/maelstrom/front.svg",
  24044. extra: 2100 / 1883,
  24045. bottom: 94 / 2196.7
  24046. }
  24047. },
  24048. },
  24049. [
  24050. {
  24051. name: "Less Kaiju",
  24052. height: math.unit(200, "feet")
  24053. },
  24054. {
  24055. name: "Kaiju",
  24056. height: math.unit(400, "feet"),
  24057. default: true
  24058. },
  24059. {
  24060. name: "Kaiju-er",
  24061. height: math.unit(600, "feet")
  24062. },
  24063. ]
  24064. ))
  24065. characterMakers.push(() => makeCharacter(
  24066. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  24067. {
  24068. front: {
  24069. height: math.unit(6 + 5 / 12, "feet"),
  24070. weight: math.unit(180, "lb"),
  24071. name: "Front",
  24072. image: {
  24073. source: "./media/characters/lexir/front.svg",
  24074. extra: 180 / 172,
  24075. bottom: 12 / 192
  24076. }
  24077. },
  24078. back: {
  24079. height: math.unit(6 + 5 / 12, "feet"),
  24080. weight: math.unit(180, "lb"),
  24081. name: "Back",
  24082. image: {
  24083. source: "./media/characters/lexir/back.svg",
  24084. extra: 1273/1201,
  24085. bottom: 39/1312
  24086. }
  24087. },
  24088. },
  24089. [
  24090. {
  24091. name: "Very Smal",
  24092. height: math.unit(1, "nm")
  24093. },
  24094. {
  24095. name: "Normal",
  24096. height: math.unit(6 + 5 / 12, "feet"),
  24097. default: true
  24098. },
  24099. {
  24100. name: "Macro",
  24101. height: math.unit(1, "mile")
  24102. },
  24103. {
  24104. name: "Megamacro",
  24105. height: math.unit(50, "miles")
  24106. },
  24107. ]
  24108. ))
  24109. characterMakers.push(() => makeCharacter(
  24110. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  24111. {
  24112. front: {
  24113. height: math.unit(1.5, "meters"),
  24114. weight: math.unit(100, "lb"),
  24115. name: "Front",
  24116. image: {
  24117. source: "./media/characters/maksio/front.svg",
  24118. extra: 1549 / 1531,
  24119. bottom: 123.7 / 1674.5429
  24120. }
  24121. },
  24122. back: {
  24123. height: math.unit(1.5, "meters"),
  24124. weight: math.unit(100, "lb"),
  24125. name: "Back",
  24126. image: {
  24127. source: "./media/characters/maksio/back.svg",
  24128. extra: 1541 / 1509,
  24129. bottom: 97 / 1639
  24130. }
  24131. },
  24132. hand: {
  24133. height: math.unit(0.621, "feet"),
  24134. name: "Hand",
  24135. image: {
  24136. source: "./media/characters/maksio/hand.svg"
  24137. }
  24138. },
  24139. foot: {
  24140. height: math.unit(1.611, "feet"),
  24141. name: "Foot",
  24142. image: {
  24143. source: "./media/characters/maksio/foot.svg"
  24144. }
  24145. },
  24146. },
  24147. [
  24148. {
  24149. name: "Shrunken",
  24150. height: math.unit(10, "cm")
  24151. },
  24152. {
  24153. name: "Normal",
  24154. height: math.unit(150, "cm"),
  24155. default: true
  24156. },
  24157. ]
  24158. ))
  24159. characterMakers.push(() => makeCharacter(
  24160. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  24161. {
  24162. front: {
  24163. height: math.unit(100, "feet"),
  24164. name: "Front",
  24165. image: {
  24166. source: "./media/characters/erza-bear/front.svg",
  24167. extra: 2449 / 2390,
  24168. bottom: 46 / 2494
  24169. }
  24170. },
  24171. back: {
  24172. height: math.unit(100, "feet"),
  24173. name: "Back",
  24174. image: {
  24175. source: "./media/characters/erza-bear/back.svg",
  24176. extra: 2489 / 2430,
  24177. bottom: 85.4 / 2480
  24178. }
  24179. },
  24180. tail: {
  24181. height: math.unit(42, "feet"),
  24182. name: "Tail",
  24183. image: {
  24184. source: "./media/characters/erza-bear/tail.svg"
  24185. }
  24186. },
  24187. tongue: {
  24188. height: math.unit(8, "feet"),
  24189. name: "Tongue",
  24190. image: {
  24191. source: "./media/characters/erza-bear/tongue.svg"
  24192. }
  24193. },
  24194. dick: {
  24195. height: math.unit(10.5, "feet"),
  24196. name: "Dick",
  24197. image: {
  24198. source: "./media/characters/erza-bear/dick.svg"
  24199. }
  24200. },
  24201. dickVertical: {
  24202. height: math.unit(16.9, "feet"),
  24203. name: "Dick (Vertical)",
  24204. image: {
  24205. source: "./media/characters/erza-bear/dick-vertical.svg"
  24206. }
  24207. },
  24208. },
  24209. [
  24210. {
  24211. name: "Macro",
  24212. height: math.unit(100, "feet"),
  24213. default: true
  24214. },
  24215. ]
  24216. ))
  24217. characterMakers.push(() => makeCharacter(
  24218. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  24219. {
  24220. front: {
  24221. height: math.unit(172, "cm"),
  24222. weight: math.unit(73, "kg"),
  24223. name: "Front",
  24224. image: {
  24225. source: "./media/characters/violet-flor/front.svg",
  24226. extra: 1530 / 1442,
  24227. bottom: 61.9 / 1588.8
  24228. }
  24229. },
  24230. back: {
  24231. height: math.unit(180, "cm"),
  24232. weight: math.unit(73, "kg"),
  24233. name: "Back",
  24234. image: {
  24235. source: "./media/characters/violet-flor/back.svg",
  24236. extra: 1692 / 1630,
  24237. bottom: 20 / 1712
  24238. }
  24239. },
  24240. },
  24241. [
  24242. {
  24243. name: "Normal",
  24244. height: math.unit(172, "cm"),
  24245. default: true
  24246. },
  24247. ]
  24248. ))
  24249. characterMakers.push(() => makeCharacter(
  24250. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  24251. {
  24252. front: {
  24253. height: math.unit(6, "feet"),
  24254. weight: math.unit(220, "lb"),
  24255. name: "Front",
  24256. image: {
  24257. source: "./media/characters/lynn-rhea/front.svg",
  24258. extra: 310 / 273
  24259. }
  24260. },
  24261. back: {
  24262. height: math.unit(6, "feet"),
  24263. weight: math.unit(220, "lb"),
  24264. name: "Back",
  24265. image: {
  24266. source: "./media/characters/lynn-rhea/back.svg",
  24267. extra: 310 / 273
  24268. }
  24269. },
  24270. dicks: {
  24271. height: math.unit(0.9, "feet"),
  24272. name: "Dicks",
  24273. image: {
  24274. source: "./media/characters/lynn-rhea/dicks.svg"
  24275. }
  24276. },
  24277. slit: {
  24278. height: math.unit(0.4, "feet"),
  24279. name: "Slit",
  24280. image: {
  24281. source: "./media/characters/lynn-rhea/slit.svg"
  24282. }
  24283. },
  24284. },
  24285. [
  24286. {
  24287. name: "Micro",
  24288. height: math.unit(1, "inch")
  24289. },
  24290. {
  24291. name: "Macro",
  24292. height: math.unit(60, "feet"),
  24293. default: true
  24294. },
  24295. {
  24296. name: "Megamacro",
  24297. height: math.unit(2, "miles")
  24298. },
  24299. {
  24300. name: "Gigamacro",
  24301. height: math.unit(3, "earths")
  24302. },
  24303. {
  24304. name: "Galactic",
  24305. height: math.unit(0.8, "galaxies")
  24306. },
  24307. ]
  24308. ))
  24309. characterMakers.push(() => makeCharacter(
  24310. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  24311. {
  24312. front: {
  24313. height: math.unit(1600, "feet"),
  24314. weight: math.unit(85758785169, "kg"),
  24315. name: "Front",
  24316. image: {
  24317. source: "./media/characters/valathos/front.svg",
  24318. extra: 1451 / 1339
  24319. }
  24320. },
  24321. },
  24322. [
  24323. {
  24324. name: "Macro",
  24325. height: math.unit(1600, "feet"),
  24326. default: true
  24327. },
  24328. ]
  24329. ))
  24330. characterMakers.push(() => makeCharacter(
  24331. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  24332. {
  24333. front: {
  24334. height: math.unit(7 + 5 / 12, "feet"),
  24335. weight: math.unit(300, "lb"),
  24336. name: "Front",
  24337. image: {
  24338. source: "./media/characters/azula/front.svg",
  24339. extra: 3208 / 2880,
  24340. bottom: 80.2 / 3277
  24341. }
  24342. },
  24343. back: {
  24344. height: math.unit(7 + 5 / 12, "feet"),
  24345. weight: math.unit(300, "lb"),
  24346. name: "Back",
  24347. image: {
  24348. source: "./media/characters/azula/back.svg",
  24349. extra: 3169 / 2822,
  24350. bottom: 150.6 / 3321
  24351. }
  24352. },
  24353. },
  24354. [
  24355. {
  24356. name: "Normal",
  24357. height: math.unit(7 + 5 / 12, "feet"),
  24358. default: true
  24359. },
  24360. {
  24361. name: "Big",
  24362. height: math.unit(20, "feet")
  24363. },
  24364. ]
  24365. ))
  24366. characterMakers.push(() => makeCharacter(
  24367. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  24368. {
  24369. front: {
  24370. height: math.unit(5 + 1 / 12, "feet"),
  24371. weight: math.unit(110, "lb"),
  24372. name: "Front",
  24373. image: {
  24374. source: "./media/characters/rupert/front.svg",
  24375. extra: 1549 / 1495,
  24376. bottom: 54.2 / 1604.4
  24377. }
  24378. },
  24379. },
  24380. [
  24381. {
  24382. name: "Normal",
  24383. height: math.unit(5 + 1 / 12, "feet"),
  24384. default: true
  24385. },
  24386. ]
  24387. ))
  24388. characterMakers.push(() => makeCharacter(
  24389. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  24390. {
  24391. front: {
  24392. height: math.unit(8 + 4 / 12, "feet"),
  24393. weight: math.unit(350, "lb"),
  24394. name: "Front",
  24395. image: {
  24396. source: "./media/characters/sheera-castellar/front.svg",
  24397. extra: 1957 / 1894,
  24398. bottom: 26.97 / 1975.017
  24399. }
  24400. },
  24401. side: {
  24402. height: math.unit(8 + 4 / 12, "feet"),
  24403. weight: math.unit(350, "lb"),
  24404. name: "Side",
  24405. image: {
  24406. source: "./media/characters/sheera-castellar/side.svg",
  24407. extra: 1957 / 1894
  24408. }
  24409. },
  24410. back: {
  24411. height: math.unit(8 + 4 / 12, "feet"),
  24412. weight: math.unit(350, "lb"),
  24413. name: "Back",
  24414. image: {
  24415. source: "./media/characters/sheera-castellar/back.svg",
  24416. extra: 1957 / 1894
  24417. }
  24418. },
  24419. angled: {
  24420. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  24421. weight: math.unit(350, "lb"),
  24422. name: "Angled",
  24423. image: {
  24424. source: "./media/characters/sheera-castellar/angled.svg",
  24425. extra: 1807 / 1707,
  24426. bottom: 68 / 1875
  24427. }
  24428. },
  24429. genitals: {
  24430. height: math.unit(2.2, "feet"),
  24431. name: "Genitals",
  24432. image: {
  24433. source: "./media/characters/sheera-castellar/genitals.svg"
  24434. }
  24435. },
  24436. taur: {
  24437. height: math.unit(10 + 6/12, "feet"),
  24438. name: "Taur",
  24439. image: {
  24440. source: "./media/characters/sheera-castellar/taur.svg",
  24441. extra: 2017/1909,
  24442. bottom: 185/2202
  24443. }
  24444. },
  24445. },
  24446. [
  24447. {
  24448. name: "Normal",
  24449. height: math.unit(8 + 4 / 12, "feet")
  24450. },
  24451. {
  24452. name: "Macro",
  24453. height: math.unit(150, "feet"),
  24454. default: true
  24455. },
  24456. {
  24457. name: "Macro+",
  24458. height: math.unit(800, "feet")
  24459. },
  24460. ]
  24461. ))
  24462. characterMakers.push(() => makeCharacter(
  24463. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  24464. {
  24465. front: {
  24466. height: math.unit(6, "feet"),
  24467. weight: math.unit(150, "lb"),
  24468. name: "Front",
  24469. image: {
  24470. source: "./media/characters/jaipur/front.svg",
  24471. extra: 3860 / 3731,
  24472. bottom: 287 / 4140
  24473. }
  24474. },
  24475. back: {
  24476. height: math.unit(6, "feet"),
  24477. weight: math.unit(150, "lb"),
  24478. name: "Back",
  24479. image: {
  24480. source: "./media/characters/jaipur/back.svg",
  24481. extra: 1637/1561,
  24482. bottom: 154/1791
  24483. }
  24484. },
  24485. },
  24486. [
  24487. {
  24488. name: "Normal",
  24489. height: math.unit(1.85, "meters"),
  24490. default: true
  24491. },
  24492. {
  24493. name: "Macro",
  24494. height: math.unit(150, "meters")
  24495. },
  24496. {
  24497. name: "Macro+",
  24498. height: math.unit(0.5, "miles")
  24499. },
  24500. {
  24501. name: "Macro++",
  24502. height: math.unit(2.5, "miles")
  24503. },
  24504. {
  24505. name: "Macro+++",
  24506. height: math.unit(12, "miles")
  24507. },
  24508. {
  24509. name: "Macro++++",
  24510. height: math.unit(120, "miles")
  24511. },
  24512. {
  24513. name: "Macro+++++",
  24514. height: math.unit(1200, "miles")
  24515. },
  24516. ]
  24517. ))
  24518. characterMakers.push(() => makeCharacter(
  24519. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  24520. {
  24521. front: {
  24522. height: math.unit(6, "feet"),
  24523. weight: math.unit(150, "lb"),
  24524. name: "Front",
  24525. image: {
  24526. source: "./media/characters/sheila-wolf/front.svg",
  24527. extra: 1931 / 1808,
  24528. bottom: 29.5 / 1960
  24529. }
  24530. },
  24531. dick: {
  24532. height: math.unit(1.464, "feet"),
  24533. name: "Dick",
  24534. image: {
  24535. source: "./media/characters/sheila-wolf/dick.svg"
  24536. }
  24537. },
  24538. muzzle: {
  24539. height: math.unit(0.513, "feet"),
  24540. name: "Muzzle",
  24541. image: {
  24542. source: "./media/characters/sheila-wolf/muzzle.svg"
  24543. }
  24544. },
  24545. },
  24546. [
  24547. {
  24548. name: "Macro",
  24549. height: math.unit(70, "feet"),
  24550. default: true
  24551. },
  24552. ]
  24553. ))
  24554. characterMakers.push(() => makeCharacter(
  24555. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  24556. {
  24557. front: {
  24558. height: math.unit(32, "meters"),
  24559. weight: math.unit(300000, "kg"),
  24560. name: "Front",
  24561. image: {
  24562. source: "./media/characters/almor/front.svg",
  24563. extra: 1408 / 1322,
  24564. bottom: 94.6 / 1506.5
  24565. }
  24566. },
  24567. },
  24568. [
  24569. {
  24570. name: "Macro",
  24571. height: math.unit(32, "meters"),
  24572. default: true
  24573. },
  24574. ]
  24575. ))
  24576. characterMakers.push(() => makeCharacter(
  24577. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  24578. {
  24579. front: {
  24580. height: math.unit(7, "feet"),
  24581. weight: math.unit(200, "lb"),
  24582. name: "Front",
  24583. image: {
  24584. source: "./media/characters/silver/front.svg",
  24585. extra: 472.1 / 450.5,
  24586. bottom: 26.5 / 499.424
  24587. }
  24588. },
  24589. },
  24590. [
  24591. {
  24592. name: "Normal",
  24593. height: math.unit(7, "feet"),
  24594. default: true
  24595. },
  24596. {
  24597. name: "Macro",
  24598. height: math.unit(800, "feet")
  24599. },
  24600. {
  24601. name: "Megamacro",
  24602. height: math.unit(250, "miles")
  24603. },
  24604. ]
  24605. ))
  24606. characterMakers.push(() => makeCharacter(
  24607. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  24608. {
  24609. front: {
  24610. height: math.unit(6, "feet"),
  24611. weight: math.unit(150, "lb"),
  24612. name: "Front",
  24613. image: {
  24614. source: "./media/characters/pliskin/front.svg",
  24615. extra: 1469 / 1359,
  24616. bottom: 70 / 1540
  24617. }
  24618. },
  24619. },
  24620. [
  24621. {
  24622. name: "Micro",
  24623. height: math.unit(3, "inches")
  24624. },
  24625. {
  24626. name: "Normal",
  24627. height: math.unit(5 + 11 / 12, "feet"),
  24628. default: true
  24629. },
  24630. {
  24631. name: "Macro",
  24632. height: math.unit(120, "feet")
  24633. },
  24634. ]
  24635. ))
  24636. characterMakers.push(() => makeCharacter(
  24637. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  24638. {
  24639. front: {
  24640. height: math.unit(6, "feet"),
  24641. weight: math.unit(150, "lb"),
  24642. name: "Front",
  24643. image: {
  24644. source: "./media/characters/sammy/front.svg",
  24645. extra: 1193 / 1089,
  24646. bottom: 30.5 / 1226
  24647. }
  24648. },
  24649. },
  24650. [
  24651. {
  24652. name: "Macro",
  24653. height: math.unit(1700, "feet"),
  24654. default: true
  24655. },
  24656. {
  24657. name: "Examacro",
  24658. height: math.unit(2.5e9, "lightyears")
  24659. },
  24660. ]
  24661. ))
  24662. characterMakers.push(() => makeCharacter(
  24663. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  24664. {
  24665. front: {
  24666. height: math.unit(21, "meters"),
  24667. weight: math.unit(12, "tonnes"),
  24668. name: "Front",
  24669. image: {
  24670. source: "./media/characters/kuru/front.svg",
  24671. extra: 4301 / 3785,
  24672. bottom: 371.3 / 4691
  24673. }
  24674. },
  24675. },
  24676. [
  24677. {
  24678. name: "Macro",
  24679. height: math.unit(21, "meters"),
  24680. default: true
  24681. },
  24682. ]
  24683. ))
  24684. characterMakers.push(() => makeCharacter(
  24685. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  24686. {
  24687. front: {
  24688. height: math.unit(23, "meters"),
  24689. weight: math.unit(12.2, "tonnes"),
  24690. name: "Front",
  24691. image: {
  24692. source: "./media/characters/rakka/front.svg",
  24693. extra: 4670 / 4169,
  24694. bottom: 301 / 4968.7
  24695. }
  24696. },
  24697. },
  24698. [
  24699. {
  24700. name: "Macro",
  24701. height: math.unit(23, "meters"),
  24702. default: true
  24703. },
  24704. ]
  24705. ))
  24706. characterMakers.push(() => makeCharacter(
  24707. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  24708. {
  24709. front: {
  24710. height: math.unit(6, "feet"),
  24711. weight: math.unit(150, "lb"),
  24712. name: "Front",
  24713. image: {
  24714. source: "./media/characters/rhys-feline/front.svg",
  24715. extra: 2488 / 2308,
  24716. bottom: 35.67 / 2519.19
  24717. }
  24718. },
  24719. },
  24720. [
  24721. {
  24722. name: "Really Small",
  24723. height: math.unit(1, "nm")
  24724. },
  24725. {
  24726. name: "Micro",
  24727. height: math.unit(4, "inches")
  24728. },
  24729. {
  24730. name: "Normal",
  24731. height: math.unit(4 + 10 / 12, "feet"),
  24732. default: true
  24733. },
  24734. {
  24735. name: "Macro",
  24736. height: math.unit(100, "feet")
  24737. },
  24738. {
  24739. name: "Megamacto",
  24740. height: math.unit(50, "miles")
  24741. },
  24742. ]
  24743. ))
  24744. characterMakers.push(() => makeCharacter(
  24745. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  24746. {
  24747. side: {
  24748. height: math.unit(30, "feet"),
  24749. weight: math.unit(35000, "kg"),
  24750. name: "Side",
  24751. image: {
  24752. source: "./media/characters/alydar/side.svg",
  24753. extra: 234 / 222,
  24754. bottom: 6.5 / 241
  24755. }
  24756. },
  24757. front: {
  24758. height: math.unit(30, "feet"),
  24759. weight: math.unit(35000, "kg"),
  24760. name: "Front",
  24761. image: {
  24762. source: "./media/characters/alydar/front.svg",
  24763. extra: 223.37 / 210.2,
  24764. bottom: 22.3 / 246.76
  24765. }
  24766. },
  24767. top: {
  24768. height: math.unit(64.54, "feet"),
  24769. weight: math.unit(35000, "kg"),
  24770. name: "Top",
  24771. image: {
  24772. source: "./media/characters/alydar/top.svg"
  24773. }
  24774. },
  24775. anthro: {
  24776. height: math.unit(30, "feet"),
  24777. weight: math.unit(9000, "kg"),
  24778. name: "Anthro",
  24779. image: {
  24780. source: "./media/characters/alydar/anthro.svg",
  24781. extra: 432 / 421,
  24782. bottom: 7.18 / 440
  24783. }
  24784. },
  24785. maw: {
  24786. height: math.unit(11.693, "feet"),
  24787. name: "Maw",
  24788. image: {
  24789. source: "./media/characters/alydar/maw.svg"
  24790. }
  24791. },
  24792. head: {
  24793. height: math.unit(11.693, "feet"),
  24794. name: "Head",
  24795. image: {
  24796. source: "./media/characters/alydar/head.svg"
  24797. }
  24798. },
  24799. headAlt: {
  24800. height: math.unit(12.861, "feet"),
  24801. name: "Head (Alt)",
  24802. image: {
  24803. source: "./media/characters/alydar/head-alt.svg"
  24804. }
  24805. },
  24806. wing: {
  24807. height: math.unit(20.712, "feet"),
  24808. name: "Wing",
  24809. image: {
  24810. source: "./media/characters/alydar/wing.svg"
  24811. }
  24812. },
  24813. wingFeather: {
  24814. height: math.unit(9.662, "feet"),
  24815. name: "Wing Feather",
  24816. image: {
  24817. source: "./media/characters/alydar/wing-feather.svg"
  24818. }
  24819. },
  24820. countourFeather: {
  24821. height: math.unit(4.154, "feet"),
  24822. name: "Contour Feather",
  24823. image: {
  24824. source: "./media/characters/alydar/contour-feather.svg"
  24825. }
  24826. },
  24827. },
  24828. [
  24829. {
  24830. name: "Diplomatic",
  24831. height: math.unit(13, "feet"),
  24832. default: true
  24833. },
  24834. {
  24835. name: "Small",
  24836. height: math.unit(30, "feet")
  24837. },
  24838. {
  24839. name: "Normal",
  24840. height: math.unit(95, "feet"),
  24841. default: true
  24842. },
  24843. {
  24844. name: "Large",
  24845. height: math.unit(285, "feet")
  24846. },
  24847. {
  24848. name: "Incomprehensible",
  24849. height: math.unit(450, "megameters")
  24850. },
  24851. ]
  24852. ))
  24853. characterMakers.push(() => makeCharacter(
  24854. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  24855. {
  24856. side: {
  24857. height: math.unit(11, "feet"),
  24858. weight: math.unit(1750, "kg"),
  24859. name: "Side",
  24860. image: {
  24861. source: "./media/characters/selicia/side.svg",
  24862. extra: 440 / 396,
  24863. bottom: 24.8 / 465.979
  24864. }
  24865. },
  24866. maw: {
  24867. height: math.unit(4.665, "feet"),
  24868. name: "Maw",
  24869. image: {
  24870. source: "./media/characters/selicia/maw.svg"
  24871. }
  24872. },
  24873. },
  24874. [
  24875. {
  24876. name: "Normal",
  24877. height: math.unit(11, "feet"),
  24878. default: true
  24879. },
  24880. ]
  24881. ))
  24882. characterMakers.push(() => makeCharacter(
  24883. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  24884. {
  24885. side: {
  24886. height: math.unit(2 + 6 / 12, "feet"),
  24887. weight: math.unit(30, "lb"),
  24888. name: "Side",
  24889. image: {
  24890. source: "./media/characters/layla/side.svg",
  24891. extra: 244 / 188,
  24892. bottom: 18.2 / 262.1
  24893. }
  24894. },
  24895. back: {
  24896. height: math.unit(2 + 6 / 12, "feet"),
  24897. weight: math.unit(30, "lb"),
  24898. name: "Back",
  24899. image: {
  24900. source: "./media/characters/layla/back.svg",
  24901. extra: 308 / 241.5,
  24902. bottom: 8.9 / 316.8
  24903. }
  24904. },
  24905. cumming: {
  24906. height: math.unit(2 + 6 / 12, "feet"),
  24907. weight: math.unit(30, "lb"),
  24908. name: "Cumming",
  24909. image: {
  24910. source: "./media/characters/layla/cumming.svg",
  24911. extra: 342 / 279,
  24912. bottom: 595 / 938
  24913. }
  24914. },
  24915. dickFlaccid: {
  24916. height: math.unit(2.595, "feet"),
  24917. name: "Flaccid Genitals",
  24918. image: {
  24919. source: "./media/characters/layla/dick-flaccid.svg"
  24920. }
  24921. },
  24922. dickErect: {
  24923. height: math.unit(2.359, "feet"),
  24924. name: "Erect Genitals",
  24925. image: {
  24926. source: "./media/characters/layla/dick-erect.svg"
  24927. }
  24928. },
  24929. dragon: {
  24930. height: math.unit(40, "feet"),
  24931. name: "Dragon",
  24932. image: {
  24933. source: "./media/characters/layla/dragon.svg",
  24934. extra: 610/535,
  24935. bottom: 367/977
  24936. }
  24937. },
  24938. taur: {
  24939. height: math.unit(30, "feet"),
  24940. name: "Taur",
  24941. image: {
  24942. source: "./media/characters/layla/taur.svg",
  24943. extra: 1268/1199,
  24944. bottom: 112/1380
  24945. }
  24946. },
  24947. },
  24948. [
  24949. {
  24950. name: "Micro",
  24951. height: math.unit(1, "inch")
  24952. },
  24953. {
  24954. name: "Small",
  24955. height: math.unit(1, "foot")
  24956. },
  24957. {
  24958. name: "Normal",
  24959. height: math.unit(2 + 6 / 12, "feet"),
  24960. default: true
  24961. },
  24962. {
  24963. name: "Macro",
  24964. height: math.unit(200, "feet")
  24965. },
  24966. {
  24967. name: "Megamacro",
  24968. height: math.unit(1000, "miles")
  24969. },
  24970. {
  24971. name: "Planetary",
  24972. height: math.unit(8000, "miles")
  24973. },
  24974. {
  24975. name: "True Layla",
  24976. height: math.unit(200000 * 7, "multiverses")
  24977. },
  24978. ]
  24979. ))
  24980. characterMakers.push(() => makeCharacter(
  24981. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  24982. {
  24983. back: {
  24984. height: math.unit(10.5, "feet"),
  24985. weight: math.unit(800, "lb"),
  24986. name: "Back",
  24987. image: {
  24988. source: "./media/characters/knox/back.svg",
  24989. extra: 1486 / 1089,
  24990. bottom: 107 / 1601.4
  24991. }
  24992. },
  24993. side: {
  24994. height: math.unit(10.5, "feet"),
  24995. weight: math.unit(800, "lb"),
  24996. name: "Side",
  24997. image: {
  24998. source: "./media/characters/knox/side.svg",
  24999. extra: 244 / 218,
  25000. bottom: 14 / 260
  25001. }
  25002. },
  25003. },
  25004. [
  25005. {
  25006. name: "Compact",
  25007. height: math.unit(10.5, "feet"),
  25008. default: true
  25009. },
  25010. {
  25011. name: "Dynamax",
  25012. height: math.unit(210, "feet")
  25013. },
  25014. {
  25015. name: "Full Macro",
  25016. height: math.unit(850, "feet")
  25017. },
  25018. ]
  25019. ))
  25020. characterMakers.push(() => makeCharacter(
  25021. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  25022. {
  25023. front: {
  25024. height: math.unit(28, "feet"),
  25025. weight: math.unit(10500, "lb"),
  25026. name: "Front",
  25027. image: {
  25028. source: "./media/characters/kayda/front.svg",
  25029. extra: 1536 / 1428,
  25030. bottom: 68.7 / 1603
  25031. }
  25032. },
  25033. back: {
  25034. height: math.unit(28, "feet"),
  25035. weight: math.unit(10500, "lb"),
  25036. name: "Back",
  25037. image: {
  25038. source: "./media/characters/kayda/back.svg",
  25039. extra: 1557 / 1464,
  25040. bottom: 39.5 / 1597.49
  25041. }
  25042. },
  25043. dick: {
  25044. height: math.unit(3.858, "feet"),
  25045. name: "Dick",
  25046. image: {
  25047. source: "./media/characters/kayda/dick.svg"
  25048. }
  25049. },
  25050. },
  25051. [
  25052. {
  25053. name: "Macro",
  25054. height: math.unit(28, "feet"),
  25055. default: true
  25056. },
  25057. ]
  25058. ))
  25059. characterMakers.push(() => makeCharacter(
  25060. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  25061. {
  25062. front: {
  25063. height: math.unit(10 + 11 / 12, "feet"),
  25064. weight: math.unit(1400, "lb"),
  25065. name: "Front",
  25066. image: {
  25067. source: "./media/characters/brian/front.svg",
  25068. extra: 737 / 692,
  25069. bottom: 55.4 / 785
  25070. }
  25071. },
  25072. },
  25073. [
  25074. {
  25075. name: "Normal",
  25076. height: math.unit(10 + 11 / 12, "feet"),
  25077. default: true
  25078. },
  25079. ]
  25080. ))
  25081. characterMakers.push(() => makeCharacter(
  25082. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  25083. {
  25084. front: {
  25085. height: math.unit(5 + 8 / 12, "feet"),
  25086. weight: math.unit(140, "lb"),
  25087. name: "Front",
  25088. image: {
  25089. source: "./media/characters/khemri/front.svg",
  25090. extra: 4780 / 4059,
  25091. bottom: 80.1 / 4859.25
  25092. }
  25093. },
  25094. },
  25095. [
  25096. {
  25097. name: "Micro",
  25098. height: math.unit(6, "inches")
  25099. },
  25100. {
  25101. name: "Normal",
  25102. height: math.unit(5 + 8 / 12, "feet"),
  25103. default: true
  25104. },
  25105. ]
  25106. ))
  25107. characterMakers.push(() => makeCharacter(
  25108. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  25109. {
  25110. front: {
  25111. height: math.unit(13, "feet"),
  25112. weight: math.unit(1700, "lb"),
  25113. name: "Front",
  25114. image: {
  25115. source: "./media/characters/felix-braveheart/front.svg",
  25116. extra: 1222 / 1157,
  25117. bottom: 53.2 / 1280
  25118. }
  25119. },
  25120. back: {
  25121. height: math.unit(13, "feet"),
  25122. weight: math.unit(1700, "lb"),
  25123. name: "Back",
  25124. image: {
  25125. source: "./media/characters/felix-braveheart/back.svg",
  25126. extra: 1277 / 1203,
  25127. bottom: 50.2 / 1327
  25128. }
  25129. },
  25130. feral: {
  25131. height: math.unit(6, "feet"),
  25132. weight: math.unit(400, "lb"),
  25133. name: "Feral",
  25134. image: {
  25135. source: "./media/characters/felix-braveheart/feral.svg",
  25136. extra: 682 / 625,
  25137. bottom: 6.9 / 688
  25138. }
  25139. },
  25140. },
  25141. [
  25142. {
  25143. name: "Normal",
  25144. height: math.unit(13, "feet"),
  25145. default: true
  25146. },
  25147. ]
  25148. ))
  25149. characterMakers.push(() => makeCharacter(
  25150. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  25151. {
  25152. side: {
  25153. height: math.unit(5 + 11 / 12, "feet"),
  25154. weight: math.unit(1400, "lb"),
  25155. name: "Side",
  25156. image: {
  25157. source: "./media/characters/shadow-blade/side.svg",
  25158. extra: 1726 / 1267,
  25159. bottom: 58.4 / 1785
  25160. }
  25161. },
  25162. },
  25163. [
  25164. {
  25165. name: "Normal",
  25166. height: math.unit(5 + 11 / 12, "feet"),
  25167. default: true
  25168. },
  25169. ]
  25170. ))
  25171. characterMakers.push(() => makeCharacter(
  25172. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  25173. {
  25174. front: {
  25175. height: math.unit(1 + 6 / 12, "feet"),
  25176. weight: math.unit(25, "lb"),
  25177. name: "Front",
  25178. image: {
  25179. source: "./media/characters/karla-halldor/front.svg",
  25180. extra: 1459 / 1383,
  25181. bottom: 12 / 1472
  25182. }
  25183. },
  25184. },
  25185. [
  25186. {
  25187. name: "Normal",
  25188. height: math.unit(1 + 6 / 12, "feet"),
  25189. default: true
  25190. },
  25191. ]
  25192. ))
  25193. characterMakers.push(() => makeCharacter(
  25194. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  25195. {
  25196. front: {
  25197. height: math.unit(6 + 2 / 12, "feet"),
  25198. weight: math.unit(160, "lb"),
  25199. name: "Front",
  25200. image: {
  25201. source: "./media/characters/ariam/front.svg",
  25202. extra: 1073/976,
  25203. bottom: 52/1125
  25204. }
  25205. },
  25206. back: {
  25207. height: math.unit(6 + 2/12, "feet"),
  25208. weight: math.unit(160, "lb"),
  25209. name: "Back",
  25210. image: {
  25211. source: "./media/characters/ariam/back.svg",
  25212. extra: 1103/1023,
  25213. bottom: 9/1112
  25214. }
  25215. },
  25216. dressed: {
  25217. height: math.unit(6 + 2/12, "feet"),
  25218. weight: math.unit(160, "lb"),
  25219. name: "Dressed",
  25220. image: {
  25221. source: "./media/characters/ariam/dressed.svg",
  25222. extra: 1099/1009,
  25223. bottom: 25/1124
  25224. }
  25225. },
  25226. squatting: {
  25227. height: math.unit(4.1, "feet"),
  25228. weight: math.unit(160, "lb"),
  25229. name: "Squatting",
  25230. image: {
  25231. source: "./media/characters/ariam/squatting.svg",
  25232. extra: 2617 / 2112,
  25233. bottom: 61.2 / 2681,
  25234. }
  25235. },
  25236. },
  25237. [
  25238. {
  25239. name: "Normal",
  25240. height: math.unit(6 + 2 / 12, "feet"),
  25241. default: true
  25242. },
  25243. {
  25244. name: "Normal+",
  25245. height: math.unit(4, "meters")
  25246. },
  25247. {
  25248. name: "Macro",
  25249. height: math.unit(50, "meters")
  25250. },
  25251. {
  25252. name: "Macro+",
  25253. height: math.unit(100, "meters")
  25254. },
  25255. {
  25256. name: "Megamacro",
  25257. height: math.unit(20, "km")
  25258. },
  25259. {
  25260. name: "Caretaker",
  25261. height: math.unit(444, "megameters")
  25262. },
  25263. ]
  25264. ))
  25265. characterMakers.push(() => makeCharacter(
  25266. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  25267. {
  25268. front: {
  25269. height: math.unit(1.67, "meters"),
  25270. weight: math.unit(140, "lb"),
  25271. name: "Front",
  25272. image: {
  25273. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  25274. extra: 438 / 410,
  25275. bottom: 0.75 / 439
  25276. }
  25277. },
  25278. },
  25279. [
  25280. {
  25281. name: "Shrunken",
  25282. height: math.unit(7.6, "cm")
  25283. },
  25284. {
  25285. name: "Human Scale",
  25286. height: math.unit(1.67, "meters")
  25287. },
  25288. {
  25289. name: "Wolxi Scale",
  25290. height: math.unit(36.7, "meters"),
  25291. default: true
  25292. },
  25293. ]
  25294. ))
  25295. characterMakers.push(() => makeCharacter(
  25296. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  25297. {
  25298. front: {
  25299. height: math.unit(1.73, "meters"),
  25300. weight: math.unit(240, "lb"),
  25301. name: "Front",
  25302. image: {
  25303. source: "./media/characters/izue-two-mothers/front.svg",
  25304. extra: 469 / 437,
  25305. bottom: 1.24 / 470.6
  25306. }
  25307. },
  25308. },
  25309. [
  25310. {
  25311. name: "Shrunken",
  25312. height: math.unit(7.86, "cm")
  25313. },
  25314. {
  25315. name: "Human Scale",
  25316. height: math.unit(1.73, "meters")
  25317. },
  25318. {
  25319. name: "Wolxi Scale",
  25320. height: math.unit(38, "meters"),
  25321. default: true
  25322. },
  25323. ]
  25324. ))
  25325. characterMakers.push(() => makeCharacter(
  25326. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  25327. {
  25328. front: {
  25329. height: math.unit(1.55, "meters"),
  25330. weight: math.unit(120, "lb"),
  25331. name: "Front",
  25332. image: {
  25333. source: "./media/characters/teeku-love-shack/front.svg",
  25334. extra: 387 / 362,
  25335. bottom: 1.51 / 388
  25336. }
  25337. },
  25338. },
  25339. [
  25340. {
  25341. name: "Shrunken",
  25342. height: math.unit(7, "cm")
  25343. },
  25344. {
  25345. name: "Human Scale",
  25346. height: math.unit(1.55, "meters")
  25347. },
  25348. {
  25349. name: "Wolxi Scale",
  25350. height: math.unit(34.1, "meters"),
  25351. default: true
  25352. },
  25353. ]
  25354. ))
  25355. characterMakers.push(() => makeCharacter(
  25356. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  25357. {
  25358. front: {
  25359. height: math.unit(1.83, "meters"),
  25360. weight: math.unit(135, "lb"),
  25361. name: "Front",
  25362. image: {
  25363. source: "./media/characters/dejma-the-red/front.svg",
  25364. extra: 480 / 458,
  25365. bottom: 1.8 / 482
  25366. }
  25367. },
  25368. },
  25369. [
  25370. {
  25371. name: "Shrunken",
  25372. height: math.unit(8.3, "cm")
  25373. },
  25374. {
  25375. name: "Human Scale",
  25376. height: math.unit(1.83, "meters")
  25377. },
  25378. {
  25379. name: "Wolxi Scale",
  25380. height: math.unit(40, "meters"),
  25381. default: true
  25382. },
  25383. ]
  25384. ))
  25385. characterMakers.push(() => makeCharacter(
  25386. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  25387. {
  25388. front: {
  25389. height: math.unit(1.78, "meters"),
  25390. weight: math.unit(65, "kg"),
  25391. name: "Front",
  25392. image: {
  25393. source: "./media/characters/aki/front.svg",
  25394. extra: 452 / 415
  25395. }
  25396. },
  25397. frontNsfw: {
  25398. height: math.unit(1.78, "meters"),
  25399. weight: math.unit(65, "kg"),
  25400. name: "Front (NSFW)",
  25401. image: {
  25402. source: "./media/characters/aki/front-nsfw.svg",
  25403. extra: 452 / 415
  25404. }
  25405. },
  25406. back: {
  25407. height: math.unit(1.78, "meters"),
  25408. weight: math.unit(65, "kg"),
  25409. name: "Back",
  25410. image: {
  25411. source: "./media/characters/aki/back.svg",
  25412. extra: 452 / 415
  25413. }
  25414. },
  25415. rump: {
  25416. height: math.unit(2.05, "feet"),
  25417. name: "Rump",
  25418. image: {
  25419. source: "./media/characters/aki/rump.svg"
  25420. }
  25421. },
  25422. dick: {
  25423. height: math.unit(0.95, "feet"),
  25424. name: "Dick",
  25425. image: {
  25426. source: "./media/characters/aki/dick.svg"
  25427. }
  25428. },
  25429. },
  25430. [
  25431. {
  25432. name: "Micro",
  25433. height: math.unit(15, "cm")
  25434. },
  25435. {
  25436. name: "Normal",
  25437. height: math.unit(178, "cm"),
  25438. default: true
  25439. },
  25440. {
  25441. name: "Macro",
  25442. height: math.unit(214, "m")
  25443. },
  25444. {
  25445. name: "Macro+",
  25446. height: math.unit(534, "m")
  25447. },
  25448. ]
  25449. ))
  25450. characterMakers.push(() => makeCharacter(
  25451. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  25452. {
  25453. front: {
  25454. height: math.unit(5 + 5 / 12, "feet"),
  25455. weight: math.unit(120, "lb"),
  25456. name: "Front",
  25457. image: {
  25458. source: "./media/characters/ari/front.svg",
  25459. extra: 1550/1471,
  25460. bottom: 39/1589
  25461. }
  25462. },
  25463. },
  25464. [
  25465. {
  25466. name: "Normal",
  25467. height: math.unit(5 + 5 / 12, "feet")
  25468. },
  25469. {
  25470. name: "Macro",
  25471. height: math.unit(100, "feet"),
  25472. default: true
  25473. },
  25474. {
  25475. name: "Megamacro",
  25476. height: math.unit(100, "miles")
  25477. },
  25478. {
  25479. name: "Gigamacro",
  25480. height: math.unit(80000, "miles")
  25481. },
  25482. ]
  25483. ))
  25484. characterMakers.push(() => makeCharacter(
  25485. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  25486. {
  25487. side: {
  25488. height: math.unit(9, "feet"),
  25489. weight: math.unit(400, "kg"),
  25490. name: "Side",
  25491. image: {
  25492. source: "./media/characters/bolt/side.svg",
  25493. extra: 1126 / 896,
  25494. bottom: 60 / 1187.3,
  25495. }
  25496. },
  25497. },
  25498. [
  25499. {
  25500. name: "Micro",
  25501. height: math.unit(5, "inches")
  25502. },
  25503. {
  25504. name: "Normal",
  25505. height: math.unit(9, "feet"),
  25506. default: true
  25507. },
  25508. {
  25509. name: "Macro",
  25510. height: math.unit(700, "feet")
  25511. },
  25512. {
  25513. name: "Max Size",
  25514. height: math.unit(1.52e22, "yottameters")
  25515. },
  25516. ]
  25517. ))
  25518. characterMakers.push(() => makeCharacter(
  25519. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  25520. {
  25521. front: {
  25522. height: math.unit(4.3, "meters"),
  25523. weight: math.unit(3, "tons"),
  25524. name: "Front",
  25525. image: {
  25526. source: "./media/characters/draekon-sylviar/front.svg",
  25527. extra: 2072/1512,
  25528. bottom: 74/2146
  25529. }
  25530. },
  25531. back: {
  25532. height: math.unit(4.3, "meters"),
  25533. weight: math.unit(3, "tons"),
  25534. name: "Back",
  25535. image: {
  25536. source: "./media/characters/draekon-sylviar/back.svg",
  25537. extra: 1639/1483,
  25538. bottom: 41/1680
  25539. }
  25540. },
  25541. feral: {
  25542. height: math.unit(1.15, "meters"),
  25543. weight: math.unit(3, "tons"),
  25544. name: "Feral",
  25545. image: {
  25546. source: "./media/characters/draekon-sylviar/feral.svg",
  25547. extra: 1033/395,
  25548. bottom: 130/1163
  25549. }
  25550. },
  25551. maw: {
  25552. height: math.unit(1.3, "meters"),
  25553. name: "Maw",
  25554. image: {
  25555. source: "./media/characters/draekon-sylviar/maw.svg"
  25556. }
  25557. },
  25558. mawSeparated: {
  25559. height: math.unit(1.53, "meters"),
  25560. name: "Separated Maw",
  25561. image: {
  25562. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  25563. }
  25564. },
  25565. tail: {
  25566. height: math.unit(1.15, "meters"),
  25567. name: "Tail",
  25568. image: {
  25569. source: "./media/characters/draekon-sylviar/tail.svg"
  25570. }
  25571. },
  25572. tailDick: {
  25573. height: math.unit(1.15, "meters"),
  25574. name: "Tail (Dick)",
  25575. image: {
  25576. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  25577. }
  25578. },
  25579. tailDickSeparated: {
  25580. height: math.unit(1.19, "meters"),
  25581. name: "Tail (Separated Dick)",
  25582. image: {
  25583. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  25584. }
  25585. },
  25586. slit: {
  25587. height: math.unit(1, "meters"),
  25588. name: "Slit",
  25589. image: {
  25590. source: "./media/characters/draekon-sylviar/slit.svg"
  25591. }
  25592. },
  25593. dick: {
  25594. height: math.unit(1.15, "meters"),
  25595. name: "Dick",
  25596. image: {
  25597. source: "./media/characters/draekon-sylviar/dick.svg"
  25598. }
  25599. },
  25600. dickSeparated: {
  25601. height: math.unit(1.1, "meters"),
  25602. name: "Separated Dick",
  25603. image: {
  25604. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  25605. }
  25606. },
  25607. sheath: {
  25608. height: math.unit(1.15, "meters"),
  25609. name: "Sheath",
  25610. image: {
  25611. source: "./media/characters/draekon-sylviar/sheath.svg"
  25612. }
  25613. },
  25614. },
  25615. [
  25616. {
  25617. name: "Small",
  25618. height: math.unit(4.53 / 2, "meters"),
  25619. default: true
  25620. },
  25621. {
  25622. name: "Normal",
  25623. height: math.unit(4.53, "meters"),
  25624. default: true
  25625. },
  25626. {
  25627. name: "Large",
  25628. height: math.unit(4.53 * 2, "meters"),
  25629. },
  25630. ]
  25631. ))
  25632. characterMakers.push(() => makeCharacter(
  25633. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  25634. {
  25635. front: {
  25636. height: math.unit(6 + 2 / 12, "feet"),
  25637. weight: math.unit(180, "lb"),
  25638. name: "Front",
  25639. image: {
  25640. source: "./media/characters/brawler/front.svg",
  25641. extra: 3301 / 3027,
  25642. bottom: 138 / 3439
  25643. }
  25644. },
  25645. },
  25646. [
  25647. {
  25648. name: "Normal",
  25649. height: math.unit(6 + 2 / 12, "feet"),
  25650. default: true
  25651. },
  25652. ]
  25653. ))
  25654. characterMakers.push(() => makeCharacter(
  25655. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  25656. {
  25657. front: {
  25658. height: math.unit(11, "feet"),
  25659. weight: math.unit(1000, "lb"),
  25660. name: "Front",
  25661. image: {
  25662. source: "./media/characters/alex/front.svg",
  25663. bottom: 44.5 / 620
  25664. }
  25665. },
  25666. },
  25667. [
  25668. {
  25669. name: "Micro",
  25670. height: math.unit(5, "inches")
  25671. },
  25672. {
  25673. name: "Normal",
  25674. height: math.unit(11, "feet"),
  25675. default: true
  25676. },
  25677. {
  25678. name: "Macro",
  25679. height: math.unit(9.5e9, "feet")
  25680. },
  25681. {
  25682. name: "Max Size",
  25683. height: math.unit(1.4e283, "yottameters")
  25684. },
  25685. ]
  25686. ))
  25687. characterMakers.push(() => makeCharacter(
  25688. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  25689. {
  25690. female: {
  25691. height: math.unit(29.9, "m"),
  25692. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  25693. name: "Female",
  25694. image: {
  25695. source: "./media/characters/zenari/female.svg",
  25696. extra: 3281.6 / 3217,
  25697. bottom: 72.2 / 3353
  25698. }
  25699. },
  25700. male: {
  25701. height: math.unit(27.7, "m"),
  25702. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  25703. name: "Male",
  25704. image: {
  25705. source: "./media/characters/zenari/male.svg",
  25706. extra: 3008 / 2991,
  25707. bottom: 54.6 / 3069
  25708. }
  25709. },
  25710. },
  25711. [
  25712. {
  25713. name: "Macro",
  25714. height: math.unit(29.7, "meters"),
  25715. default: true
  25716. },
  25717. ]
  25718. ))
  25719. characterMakers.push(() => makeCharacter(
  25720. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  25721. {
  25722. female: {
  25723. height: math.unit(23.8, "m"),
  25724. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  25725. name: "Female",
  25726. image: {
  25727. source: "./media/characters/mactarian/female.svg",
  25728. extra: 2662 / 2569,
  25729. bottom: 73 / 2736
  25730. }
  25731. },
  25732. male: {
  25733. height: math.unit(23.8, "m"),
  25734. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  25735. name: "Male",
  25736. image: {
  25737. source: "./media/characters/mactarian/male.svg",
  25738. extra: 2673 / 2600,
  25739. bottom: 76 / 2750
  25740. }
  25741. },
  25742. },
  25743. [
  25744. {
  25745. name: "Macro",
  25746. height: math.unit(23.8, "meters"),
  25747. default: true
  25748. },
  25749. ]
  25750. ))
  25751. characterMakers.push(() => makeCharacter(
  25752. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  25753. {
  25754. female: {
  25755. height: math.unit(19.3, "m"),
  25756. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  25757. name: "Female",
  25758. image: {
  25759. source: "./media/characters/umok/female.svg",
  25760. extra: 2186 / 2078,
  25761. bottom: 87 / 2277
  25762. }
  25763. },
  25764. male: {
  25765. height: math.unit(19.5, "m"),
  25766. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  25767. name: "Male",
  25768. image: {
  25769. source: "./media/characters/umok/male.svg",
  25770. extra: 2233 / 2140,
  25771. bottom: 24.4 / 2258
  25772. }
  25773. },
  25774. },
  25775. [
  25776. {
  25777. name: "Macro",
  25778. height: math.unit(19.3, "meters"),
  25779. default: true
  25780. },
  25781. ]
  25782. ))
  25783. characterMakers.push(() => makeCharacter(
  25784. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  25785. {
  25786. female: {
  25787. height: math.unit(26.15, "m"),
  25788. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  25789. name: "Female",
  25790. image: {
  25791. source: "./media/characters/joraxian/female.svg",
  25792. extra: 2912 / 2824,
  25793. bottom: 36 / 2956
  25794. }
  25795. },
  25796. male: {
  25797. height: math.unit(25.4, "m"),
  25798. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  25799. name: "Male",
  25800. image: {
  25801. source: "./media/characters/joraxian/male.svg",
  25802. extra: 2877 / 2721,
  25803. bottom: 82 / 2967
  25804. }
  25805. },
  25806. },
  25807. [
  25808. {
  25809. name: "Macro",
  25810. height: math.unit(26.15, "meters"),
  25811. default: true
  25812. },
  25813. ]
  25814. ))
  25815. characterMakers.push(() => makeCharacter(
  25816. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  25817. {
  25818. female: {
  25819. height: math.unit(21.6, "m"),
  25820. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  25821. name: "Female",
  25822. image: {
  25823. source: "./media/characters/sthara/female.svg",
  25824. extra: 2516 / 2347,
  25825. bottom: 21.5 / 2537
  25826. }
  25827. },
  25828. male: {
  25829. height: math.unit(24, "m"),
  25830. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  25831. name: "Male",
  25832. image: {
  25833. source: "./media/characters/sthara/male.svg",
  25834. extra: 2732 / 2607,
  25835. bottom: 23 / 2732
  25836. }
  25837. },
  25838. },
  25839. [
  25840. {
  25841. name: "Macro",
  25842. height: math.unit(21.6, "meters"),
  25843. default: true
  25844. },
  25845. ]
  25846. ))
  25847. characterMakers.push(() => makeCharacter(
  25848. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  25849. {
  25850. front: {
  25851. height: math.unit(6 + 4 / 12, "feet"),
  25852. weight: math.unit(175, "lb"),
  25853. name: "Front",
  25854. image: {
  25855. source: "./media/characters/luka-bryzant/front.svg",
  25856. extra: 311 / 289,
  25857. bottom: 4 / 315
  25858. }
  25859. },
  25860. back: {
  25861. height: math.unit(6 + 4 / 12, "feet"),
  25862. weight: math.unit(175, "lb"),
  25863. name: "Back",
  25864. image: {
  25865. source: "./media/characters/luka-bryzant/back.svg",
  25866. extra: 311 / 289,
  25867. bottom: 3.8 / 313.7
  25868. }
  25869. },
  25870. },
  25871. [
  25872. {
  25873. name: "Micro",
  25874. height: math.unit(10, "inches")
  25875. },
  25876. {
  25877. name: "Normal",
  25878. height: math.unit(6 + 4 / 12, "feet"),
  25879. default: true
  25880. },
  25881. {
  25882. name: "Large",
  25883. height: math.unit(12, "feet")
  25884. },
  25885. ]
  25886. ))
  25887. characterMakers.push(() => makeCharacter(
  25888. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  25889. {
  25890. front: {
  25891. height: math.unit(5 + 7 / 12, "feet"),
  25892. weight: math.unit(185, "lb"),
  25893. name: "Front",
  25894. image: {
  25895. source: "./media/characters/aman-aquila/front.svg",
  25896. extra: 1013 / 976,
  25897. bottom: 45.6 / 1057
  25898. }
  25899. },
  25900. side: {
  25901. height: math.unit(5 + 7 / 12, "feet"),
  25902. weight: math.unit(185, "lb"),
  25903. name: "Side",
  25904. image: {
  25905. source: "./media/characters/aman-aquila/side.svg",
  25906. extra: 1054 / 1011,
  25907. bottom: 15 / 1070
  25908. }
  25909. },
  25910. back: {
  25911. height: math.unit(5 + 7 / 12, "feet"),
  25912. weight: math.unit(185, "lb"),
  25913. name: "Back",
  25914. image: {
  25915. source: "./media/characters/aman-aquila/back.svg",
  25916. extra: 1026 / 970,
  25917. bottom: 12 / 1039
  25918. }
  25919. },
  25920. head: {
  25921. height: math.unit(1.211, "feet"),
  25922. name: "Head",
  25923. image: {
  25924. source: "./media/characters/aman-aquila/head.svg",
  25925. }
  25926. },
  25927. },
  25928. [
  25929. {
  25930. name: "Minimicro",
  25931. height: math.unit(0.057, "inches")
  25932. },
  25933. {
  25934. name: "Micro",
  25935. height: math.unit(7, "inches")
  25936. },
  25937. {
  25938. name: "Mini",
  25939. height: math.unit(3 + 7 / 12, "feet")
  25940. },
  25941. {
  25942. name: "Normal",
  25943. height: math.unit(5 + 7 / 12, "feet"),
  25944. default: true
  25945. },
  25946. {
  25947. name: "Macro",
  25948. height: math.unit(157 + 7 / 12, "feet")
  25949. },
  25950. {
  25951. name: "Megamacro",
  25952. height: math.unit(1557 + 7 / 12, "feet")
  25953. },
  25954. {
  25955. name: "Gigamacro",
  25956. height: math.unit(15557 + 7 / 12, "feet")
  25957. },
  25958. ]
  25959. ))
  25960. characterMakers.push(() => makeCharacter(
  25961. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  25962. {
  25963. front: {
  25964. height: math.unit(3 + 2 / 12, "inches"),
  25965. weight: math.unit(0.3, "ounces"),
  25966. name: "Front",
  25967. image: {
  25968. source: "./media/characters/hiphae/front.svg",
  25969. extra: 1931 / 1683,
  25970. bottom: 24 / 1955
  25971. }
  25972. },
  25973. },
  25974. [
  25975. {
  25976. name: "Normal",
  25977. height: math.unit(3 + 1 / 2, "inches"),
  25978. default: true
  25979. },
  25980. ]
  25981. ))
  25982. characterMakers.push(() => makeCharacter(
  25983. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  25984. {
  25985. front: {
  25986. height: math.unit(5 + 10 / 12, "feet"),
  25987. weight: math.unit(165, "lb"),
  25988. name: "Front",
  25989. image: {
  25990. source: "./media/characters/nicky/front.svg",
  25991. extra: 3144 / 2886,
  25992. bottom: 45.6 / 3192
  25993. }
  25994. },
  25995. back: {
  25996. height: math.unit(5 + 10 / 12, "feet"),
  25997. weight: math.unit(165, "lb"),
  25998. name: "Back",
  25999. image: {
  26000. source: "./media/characters/nicky/back.svg",
  26001. extra: 3055 / 2804,
  26002. bottom: 28.4 / 3087
  26003. }
  26004. },
  26005. frontclothed: {
  26006. height: math.unit(5 + 10 / 12, "feet"),
  26007. weight: math.unit(165, "lb"),
  26008. name: "Front-clothed",
  26009. image: {
  26010. source: "./media/characters/nicky/front-clothed.svg",
  26011. extra: 3184.9 / 2926.9,
  26012. bottom: 86.5 / 3239.9
  26013. }
  26014. },
  26015. foot: {
  26016. height: math.unit(1.16, "feet"),
  26017. name: "Foot",
  26018. image: {
  26019. source: "./media/characters/nicky/foot.svg"
  26020. }
  26021. },
  26022. feet: {
  26023. height: math.unit(1.34, "feet"),
  26024. name: "Feet",
  26025. image: {
  26026. source: "./media/characters/nicky/feet.svg"
  26027. }
  26028. },
  26029. maw: {
  26030. height: math.unit(0.9, "feet"),
  26031. name: "Maw",
  26032. image: {
  26033. source: "./media/characters/nicky/maw.svg"
  26034. }
  26035. },
  26036. },
  26037. [
  26038. {
  26039. name: "Normal",
  26040. height: math.unit(5 + 10 / 12, "feet"),
  26041. default: true
  26042. },
  26043. {
  26044. name: "Macro",
  26045. height: math.unit(60, "feet")
  26046. },
  26047. {
  26048. name: "Megamacro",
  26049. height: math.unit(1, "mile")
  26050. },
  26051. ]
  26052. ))
  26053. characterMakers.push(() => makeCharacter(
  26054. { name: "Blair", species: ["seal"], tags: ["taur"] },
  26055. {
  26056. side: {
  26057. height: math.unit(10, "feet"),
  26058. weight: math.unit(600, "lb"),
  26059. name: "Side",
  26060. image: {
  26061. source: "./media/characters/blair/side.svg",
  26062. bottom: 16.6 / 475,
  26063. extra: 458 / 431
  26064. }
  26065. },
  26066. },
  26067. [
  26068. {
  26069. name: "Micro",
  26070. height: math.unit(8, "inches")
  26071. },
  26072. {
  26073. name: "Normal",
  26074. height: math.unit(10, "feet"),
  26075. default: true
  26076. },
  26077. {
  26078. name: "Macro",
  26079. height: math.unit(180, "feet")
  26080. },
  26081. ]
  26082. ))
  26083. characterMakers.push(() => makeCharacter(
  26084. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  26085. {
  26086. front: {
  26087. height: math.unit(5 + 4 / 12, "feet"),
  26088. weight: math.unit(125, "lb"),
  26089. name: "Front",
  26090. image: {
  26091. source: "./media/characters/fisher/front.svg",
  26092. extra: 444 / 390,
  26093. bottom: 2 / 444.8
  26094. }
  26095. },
  26096. },
  26097. [
  26098. {
  26099. name: "Micro",
  26100. height: math.unit(4, "inches")
  26101. },
  26102. {
  26103. name: "Normal",
  26104. height: math.unit(5 + 4 / 12, "feet"),
  26105. default: true
  26106. },
  26107. {
  26108. name: "Macro",
  26109. height: math.unit(100, "feet")
  26110. },
  26111. ]
  26112. ))
  26113. characterMakers.push(() => makeCharacter(
  26114. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  26115. {
  26116. front: {
  26117. height: math.unit(6.71, "feet"),
  26118. weight: math.unit(200, "lb"),
  26119. preyCapacity: math.unit(1000000, "people"),
  26120. name: "Front",
  26121. image: {
  26122. source: "./media/characters/gliss/front.svg",
  26123. extra: 2347 / 2231,
  26124. bottom: 113 / 2462
  26125. }
  26126. },
  26127. hammerspaceSize: {
  26128. height: math.unit(6.71 * 717, "feet"),
  26129. weight: math.unit(200, "lb"),
  26130. preyCapacity: math.unit(1000000, "people"),
  26131. name: "Hammerspace Size",
  26132. image: {
  26133. source: "./media/characters/gliss/front.svg",
  26134. extra: 2347 / 2231,
  26135. bottom: 113 / 2462
  26136. }
  26137. },
  26138. },
  26139. [
  26140. {
  26141. name: "Normal",
  26142. height: math.unit(6.71, "feet"),
  26143. default: true
  26144. },
  26145. ]
  26146. ))
  26147. characterMakers.push(() => makeCharacter(
  26148. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  26149. {
  26150. side: {
  26151. height: math.unit(1.44, "m"),
  26152. weight: math.unit(80, "kg"),
  26153. name: "Side",
  26154. image: {
  26155. source: "./media/characters/dune-anderson/side.svg",
  26156. bottom: 49 / 1426
  26157. }
  26158. },
  26159. },
  26160. [
  26161. {
  26162. name: "Wolf-sized",
  26163. height: math.unit(1.44, "meters")
  26164. },
  26165. {
  26166. name: "Normal",
  26167. height: math.unit(5.05, "meters"),
  26168. default: true
  26169. },
  26170. {
  26171. name: "Big",
  26172. height: math.unit(14.4, "meters")
  26173. },
  26174. {
  26175. name: "Huge",
  26176. height: math.unit(144, "meters")
  26177. },
  26178. ]
  26179. ))
  26180. characterMakers.push(() => makeCharacter(
  26181. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  26182. {
  26183. front: {
  26184. height: math.unit(7, "feet"),
  26185. weight: math.unit(425, "lb"),
  26186. name: "Front",
  26187. image: {
  26188. source: "./media/characters/hind/front.svg",
  26189. extra: 2091 / 1860,
  26190. bottom: 129 / 2220
  26191. }
  26192. },
  26193. back: {
  26194. height: math.unit(7, "feet"),
  26195. weight: math.unit(425, "lb"),
  26196. name: "Back",
  26197. image: {
  26198. source: "./media/characters/hind/back.svg",
  26199. extra: 2091 / 1860,
  26200. bottom: 24.6 / 2309
  26201. }
  26202. },
  26203. tail: {
  26204. height: math.unit(2.8, "feet"),
  26205. name: "Tail",
  26206. image: {
  26207. source: "./media/characters/hind/tail.svg"
  26208. }
  26209. },
  26210. head: {
  26211. height: math.unit(2.55, "feet"),
  26212. name: "Head",
  26213. image: {
  26214. source: "./media/characters/hind/head.svg"
  26215. }
  26216. },
  26217. },
  26218. [
  26219. {
  26220. name: "XS",
  26221. height: math.unit(0.7, "feet")
  26222. },
  26223. {
  26224. name: "Normal",
  26225. height: math.unit(7, "feet"),
  26226. default: true
  26227. },
  26228. {
  26229. name: "XL",
  26230. height: math.unit(70, "feet")
  26231. },
  26232. ]
  26233. ))
  26234. characterMakers.push(() => makeCharacter(
  26235. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  26236. {
  26237. front: {
  26238. height: math.unit(2.1, "meters"),
  26239. weight: math.unit(150, "lb"),
  26240. name: "Front",
  26241. image: {
  26242. source: "./media/characters/tharquench-sizestealer/front.svg",
  26243. extra: 1605/1470,
  26244. bottom: 36/1641
  26245. }
  26246. },
  26247. frontAlt: {
  26248. height: math.unit(2.1, "meters"),
  26249. weight: math.unit(150, "lb"),
  26250. name: "Front (Alt)",
  26251. image: {
  26252. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  26253. extra: 2318 / 2063,
  26254. bottom: 93.4 / 2410
  26255. }
  26256. },
  26257. },
  26258. [
  26259. {
  26260. name: "Nano",
  26261. height: math.unit(1, "mm")
  26262. },
  26263. {
  26264. name: "Micro",
  26265. height: math.unit(1, "cm")
  26266. },
  26267. {
  26268. name: "Normal",
  26269. height: math.unit(2.1, "meters"),
  26270. default: true
  26271. },
  26272. ]
  26273. ))
  26274. characterMakers.push(() => makeCharacter(
  26275. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  26276. {
  26277. front: {
  26278. height: math.unit(7 + 5 / 12, "feet"),
  26279. weight: math.unit(357, "lb"),
  26280. name: "Front",
  26281. image: {
  26282. source: "./media/characters/solex-draconov/front.svg",
  26283. extra: 1993 / 1865,
  26284. bottom: 117 / 2111
  26285. }
  26286. },
  26287. },
  26288. [
  26289. {
  26290. name: "Natural Height",
  26291. height: math.unit(7 + 5 / 12, "feet"),
  26292. default: true
  26293. },
  26294. {
  26295. name: "Macro",
  26296. height: math.unit(350, "feet")
  26297. },
  26298. {
  26299. name: "Macro+",
  26300. height: math.unit(1000, "feet")
  26301. },
  26302. {
  26303. name: "Megamacro",
  26304. height: math.unit(20, "km")
  26305. },
  26306. {
  26307. name: "Megamacro+",
  26308. height: math.unit(1000, "km")
  26309. },
  26310. {
  26311. name: "Gigamacro",
  26312. height: math.unit(2.5, "Gm")
  26313. },
  26314. {
  26315. name: "Teramacro",
  26316. height: math.unit(15, "Tm")
  26317. },
  26318. {
  26319. name: "Galactic",
  26320. height: math.unit(30, "Zm")
  26321. },
  26322. {
  26323. name: "Universal",
  26324. height: math.unit(21000, "Ym")
  26325. },
  26326. {
  26327. name: "Omniversal",
  26328. height: math.unit(9.861e50, "Ym")
  26329. },
  26330. {
  26331. name: "Existential",
  26332. height: math.unit(1e300, "meters")
  26333. },
  26334. ]
  26335. ))
  26336. characterMakers.push(() => makeCharacter(
  26337. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  26338. {
  26339. side: {
  26340. height: math.unit(25, "feet"),
  26341. weight: math.unit(90000, "lb"),
  26342. name: "Side",
  26343. image: {
  26344. source: "./media/characters/mandarax/side.svg",
  26345. extra: 614 / 332,
  26346. bottom: 55 / 630
  26347. }
  26348. },
  26349. lounging: {
  26350. height: math.unit(15.4, "feet"),
  26351. weight: math.unit(90000, "lb"),
  26352. name: "Lounging",
  26353. image: {
  26354. source: "./media/characters/mandarax/lounging.svg",
  26355. extra: 817/609,
  26356. bottom: 685/1502
  26357. }
  26358. },
  26359. head: {
  26360. height: math.unit(11.4, "feet"),
  26361. name: "Head",
  26362. image: {
  26363. source: "./media/characters/mandarax/head.svg"
  26364. }
  26365. },
  26366. belly: {
  26367. height: math.unit(33, "feet"),
  26368. name: "Belly",
  26369. preyCapacity: math.unit(500, "people"),
  26370. image: {
  26371. source: "./media/characters/mandarax/belly.svg"
  26372. }
  26373. },
  26374. dick: {
  26375. height: math.unit(8.46, "feet"),
  26376. name: "Dick",
  26377. image: {
  26378. source: "./media/characters/mandarax/dick.svg"
  26379. }
  26380. },
  26381. top: {
  26382. height: math.unit(28, "meters"),
  26383. name: "Top",
  26384. image: {
  26385. source: "./media/characters/mandarax/top.svg"
  26386. }
  26387. },
  26388. },
  26389. [
  26390. {
  26391. name: "Normal",
  26392. height: math.unit(25, "feet"),
  26393. default: true
  26394. },
  26395. ]
  26396. ))
  26397. characterMakers.push(() => makeCharacter(
  26398. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  26399. {
  26400. front: {
  26401. height: math.unit(5, "feet"),
  26402. weight: math.unit(90, "lb"),
  26403. name: "Front",
  26404. image: {
  26405. source: "./media/characters/pixil/front.svg",
  26406. extra: 2000 / 1618,
  26407. bottom: 12.3 / 2011
  26408. }
  26409. },
  26410. },
  26411. [
  26412. {
  26413. name: "Normal",
  26414. height: math.unit(5, "feet"),
  26415. default: true
  26416. },
  26417. {
  26418. name: "Megamacro",
  26419. height: math.unit(10, "miles"),
  26420. },
  26421. ]
  26422. ))
  26423. characterMakers.push(() => makeCharacter(
  26424. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  26425. {
  26426. front: {
  26427. height: math.unit(7 + 2 / 12, "feet"),
  26428. weight: math.unit(200, "lb"),
  26429. name: "Front",
  26430. image: {
  26431. source: "./media/characters/angel/front.svg",
  26432. extra: 1830 / 1737,
  26433. bottom: 22.6 / 1854,
  26434. }
  26435. },
  26436. },
  26437. [
  26438. {
  26439. name: "Normal",
  26440. height: math.unit(7 + 2 / 12, "feet"),
  26441. default: true
  26442. },
  26443. {
  26444. name: "Macro",
  26445. height: math.unit(1000, "feet")
  26446. },
  26447. {
  26448. name: "Megamacro",
  26449. height: math.unit(2, "miles")
  26450. },
  26451. {
  26452. name: "Gigamacro",
  26453. height: math.unit(20, "earths")
  26454. },
  26455. ]
  26456. ))
  26457. characterMakers.push(() => makeCharacter(
  26458. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  26459. {
  26460. front: {
  26461. height: math.unit(5, "feet"),
  26462. weight: math.unit(180, "lb"),
  26463. name: "Front",
  26464. image: {
  26465. source: "./media/characters/mekana/front.svg",
  26466. extra: 1671 / 1605,
  26467. bottom: 3.5 / 1691
  26468. }
  26469. },
  26470. side: {
  26471. height: math.unit(5, "feet"),
  26472. weight: math.unit(180, "lb"),
  26473. name: "Side",
  26474. image: {
  26475. source: "./media/characters/mekana/side.svg",
  26476. extra: 1671 / 1605,
  26477. bottom: 3.5 / 1691
  26478. }
  26479. },
  26480. back: {
  26481. height: math.unit(5, "feet"),
  26482. weight: math.unit(180, "lb"),
  26483. name: "Back",
  26484. image: {
  26485. source: "./media/characters/mekana/back.svg",
  26486. extra: 1671 / 1605,
  26487. bottom: 3.5 / 1691
  26488. }
  26489. },
  26490. },
  26491. [
  26492. {
  26493. name: "Normal",
  26494. height: math.unit(5, "feet"),
  26495. default: true
  26496. },
  26497. ]
  26498. ))
  26499. characterMakers.push(() => makeCharacter(
  26500. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  26501. {
  26502. front: {
  26503. height: math.unit(4 + 6 / 12, "feet"),
  26504. weight: math.unit(80, "lb"),
  26505. name: "Front",
  26506. image: {
  26507. source: "./media/characters/pixie/front.svg",
  26508. extra: 1924 / 1825,
  26509. bottom: 22.4 / 1946
  26510. }
  26511. },
  26512. },
  26513. [
  26514. {
  26515. name: "Normal",
  26516. height: math.unit(4 + 6 / 12, "feet"),
  26517. default: true
  26518. },
  26519. {
  26520. name: "Macro",
  26521. height: math.unit(40, "feet")
  26522. },
  26523. ]
  26524. ))
  26525. characterMakers.push(() => makeCharacter(
  26526. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  26527. {
  26528. front: {
  26529. height: math.unit(2.1, "meters"),
  26530. weight: math.unit(200, "lb"),
  26531. name: "Front",
  26532. image: {
  26533. source: "./media/characters/the-lascivious/front.svg",
  26534. extra: 1 / 0.893,
  26535. bottom: 3.5 / 573.7
  26536. }
  26537. },
  26538. },
  26539. [
  26540. {
  26541. name: "Human Scale",
  26542. height: math.unit(2.1, "meters")
  26543. },
  26544. {
  26545. name: "Wolxi Scale",
  26546. height: math.unit(46.2, "m"),
  26547. default: true
  26548. },
  26549. {
  26550. name: "Boinker of Buildings",
  26551. height: math.unit(10, "km")
  26552. },
  26553. {
  26554. name: "Shagger of Skyscrapers",
  26555. height: math.unit(40, "km")
  26556. },
  26557. {
  26558. name: "Banger of Boroughs",
  26559. height: math.unit(4000, "km")
  26560. },
  26561. {
  26562. name: "Screwer of States",
  26563. height: math.unit(100000, "km")
  26564. },
  26565. {
  26566. name: "Pounder of Planets",
  26567. height: math.unit(2000000, "km")
  26568. },
  26569. ]
  26570. ))
  26571. characterMakers.push(() => makeCharacter(
  26572. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  26573. {
  26574. front: {
  26575. height: math.unit(6, "feet"),
  26576. weight: math.unit(150, "lb"),
  26577. name: "Front",
  26578. image: {
  26579. source: "./media/characters/aj/front.svg",
  26580. extra: 2039 / 1562,
  26581. bottom: 40 / 2079
  26582. }
  26583. },
  26584. },
  26585. [
  26586. {
  26587. name: "Normal",
  26588. height: math.unit(11 + 6 / 12, "feet"),
  26589. default: true
  26590. },
  26591. {
  26592. name: "Megamacro",
  26593. height: math.unit(60, "megameters")
  26594. },
  26595. ]
  26596. ))
  26597. characterMakers.push(() => makeCharacter(
  26598. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  26599. {
  26600. side: {
  26601. height: math.unit(31 + 8 / 12, "feet"),
  26602. weight: math.unit(75000, "kg"),
  26603. name: "Side",
  26604. image: {
  26605. source: "./media/characters/koros/side.svg",
  26606. extra: 1442 / 1297,
  26607. bottom: 122.7 / 1562
  26608. }
  26609. },
  26610. dicksKingsCrown: {
  26611. height: math.unit(6, "feet"),
  26612. name: "Dicks (King's Crown)",
  26613. image: {
  26614. source: "./media/characters/koros/dicks-kings-crown.svg"
  26615. }
  26616. },
  26617. dicksTailSet: {
  26618. height: math.unit(3, "feet"),
  26619. name: "Dicks (Tail Set)",
  26620. image: {
  26621. source: "./media/characters/koros/dicks-tail-set.svg"
  26622. }
  26623. },
  26624. dickCumming: {
  26625. height: math.unit(7.98, "feet"),
  26626. name: "Dick (Cumming)",
  26627. image: {
  26628. source: "./media/characters/koros/dick-cumming.svg"
  26629. }
  26630. },
  26631. dicksBack: {
  26632. height: math.unit(5.9, "feet"),
  26633. name: "Dicks (Back)",
  26634. image: {
  26635. source: "./media/characters/koros/dicks-back.svg"
  26636. }
  26637. },
  26638. dicksFront: {
  26639. height: math.unit(3.72, "feet"),
  26640. name: "Dicks (Front)",
  26641. image: {
  26642. source: "./media/characters/koros/dicks-front.svg"
  26643. }
  26644. },
  26645. dicksPeeking: {
  26646. height: math.unit(3.0, "feet"),
  26647. name: "Dicks (Peeking)",
  26648. image: {
  26649. source: "./media/characters/koros/dicks-peeking.svg"
  26650. }
  26651. },
  26652. eye: {
  26653. height: math.unit(1.7, "feet"),
  26654. name: "Eye",
  26655. image: {
  26656. source: "./media/characters/koros/eye.svg"
  26657. }
  26658. },
  26659. headFront: {
  26660. height: math.unit(11.69, "feet"),
  26661. name: "Head (Front)",
  26662. image: {
  26663. source: "./media/characters/koros/head-front.svg"
  26664. }
  26665. },
  26666. headSide: {
  26667. height: math.unit(14, "feet"),
  26668. name: "Head (Side)",
  26669. image: {
  26670. source: "./media/characters/koros/head-side.svg"
  26671. }
  26672. },
  26673. leg: {
  26674. height: math.unit(17, "feet"),
  26675. name: "Leg",
  26676. image: {
  26677. source: "./media/characters/koros/leg.svg"
  26678. }
  26679. },
  26680. mawSide: {
  26681. height: math.unit(12.8, "feet"),
  26682. name: "Maw (Side)",
  26683. image: {
  26684. source: "./media/characters/koros/maw-side.svg"
  26685. }
  26686. },
  26687. mawSpitting: {
  26688. height: math.unit(17, "feet"),
  26689. name: "Maw (Spitting)",
  26690. image: {
  26691. source: "./media/characters/koros/maw-spitting.svg"
  26692. }
  26693. },
  26694. slit: {
  26695. height: math.unit(2.8, "feet"),
  26696. name: "Slit",
  26697. image: {
  26698. source: "./media/characters/koros/slit.svg"
  26699. }
  26700. },
  26701. stomach: {
  26702. height: math.unit(6.8, "feet"),
  26703. preyCapacity: math.unit(20, "people"),
  26704. name: "Stomach",
  26705. image: {
  26706. source: "./media/characters/koros/stomach.svg"
  26707. }
  26708. },
  26709. wingspanBottom: {
  26710. height: math.unit(114, "feet"),
  26711. name: "Wingspan (Bottom)",
  26712. image: {
  26713. source: "./media/characters/koros/wingspan-bottom.svg"
  26714. }
  26715. },
  26716. wingspanTop: {
  26717. height: math.unit(104, "feet"),
  26718. name: "Wingspan (Top)",
  26719. image: {
  26720. source: "./media/characters/koros/wingspan-top.svg"
  26721. }
  26722. },
  26723. },
  26724. [
  26725. {
  26726. name: "Normal",
  26727. height: math.unit(31 + 8 / 12, "feet"),
  26728. default: true
  26729. },
  26730. ]
  26731. ))
  26732. characterMakers.push(() => makeCharacter(
  26733. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  26734. {
  26735. front: {
  26736. height: math.unit(18 + 5 / 12, "feet"),
  26737. weight: math.unit(3750, "kg"),
  26738. name: "Front",
  26739. image: {
  26740. source: "./media/characters/vexx/front.svg",
  26741. extra: 426 / 396,
  26742. bottom: 31.5 / 458
  26743. }
  26744. },
  26745. maw: {
  26746. height: math.unit(6, "feet"),
  26747. name: "Maw",
  26748. image: {
  26749. source: "./media/characters/vexx/maw.svg"
  26750. }
  26751. },
  26752. },
  26753. [
  26754. {
  26755. name: "Normal",
  26756. height: math.unit(18 + 5 / 12, "feet"),
  26757. default: true
  26758. },
  26759. ]
  26760. ))
  26761. characterMakers.push(() => makeCharacter(
  26762. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  26763. {
  26764. front: {
  26765. height: math.unit(17 + 6 / 12, "feet"),
  26766. weight: math.unit(150, "lb"),
  26767. name: "Front",
  26768. image: {
  26769. source: "./media/characters/baadra/front.svg",
  26770. extra: 1694/1553,
  26771. bottom: 179/1873
  26772. }
  26773. },
  26774. frontAlt: {
  26775. height: math.unit(17 + 6 / 12, "feet"),
  26776. weight: math.unit(150, "lb"),
  26777. name: "Front (Alt)",
  26778. image: {
  26779. source: "./media/characters/baadra/front-alt.svg",
  26780. extra: 3137 / 2890,
  26781. bottom: 168.4 / 3305
  26782. }
  26783. },
  26784. back: {
  26785. height: math.unit(17 + 6 / 12, "feet"),
  26786. weight: math.unit(150, "lb"),
  26787. name: "Back",
  26788. image: {
  26789. source: "./media/characters/baadra/back.svg",
  26790. extra: 3142 / 2890,
  26791. bottom: 220 / 3371
  26792. }
  26793. },
  26794. head: {
  26795. height: math.unit(5.45, "feet"),
  26796. name: "Head",
  26797. image: {
  26798. source: "./media/characters/baadra/head.svg"
  26799. }
  26800. },
  26801. headAngry: {
  26802. height: math.unit(4.95, "feet"),
  26803. name: "Head (Angry)",
  26804. image: {
  26805. source: "./media/characters/baadra/head-angry.svg"
  26806. }
  26807. },
  26808. headOpen: {
  26809. height: math.unit(6, "feet"),
  26810. name: "Head (Open)",
  26811. image: {
  26812. source: "./media/characters/baadra/head-open.svg"
  26813. }
  26814. },
  26815. },
  26816. [
  26817. {
  26818. name: "Normal",
  26819. height: math.unit(17 + 6 / 12, "feet"),
  26820. default: true
  26821. },
  26822. ]
  26823. ))
  26824. characterMakers.push(() => makeCharacter(
  26825. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  26826. {
  26827. front: {
  26828. height: math.unit(7 + 3 / 12, "feet"),
  26829. weight: math.unit(180, "lb"),
  26830. name: "Front",
  26831. image: {
  26832. source: "./media/characters/juri/front.svg",
  26833. extra: 1401 / 1237,
  26834. bottom: 18.5 / 1418
  26835. }
  26836. },
  26837. side: {
  26838. height: math.unit(7 + 3 / 12, "feet"),
  26839. weight: math.unit(180, "lb"),
  26840. name: "Side",
  26841. image: {
  26842. source: "./media/characters/juri/side.svg",
  26843. extra: 1424 / 1242,
  26844. bottom: 18.5 / 1447
  26845. }
  26846. },
  26847. sitting: {
  26848. height: math.unit(6, "feet"),
  26849. weight: math.unit(180, "lb"),
  26850. name: "Sitting",
  26851. image: {
  26852. source: "./media/characters/juri/sitting.svg",
  26853. extra: 1270 / 1143,
  26854. bottom: 100 / 1343
  26855. }
  26856. },
  26857. back: {
  26858. height: math.unit(7 + 3 / 12, "feet"),
  26859. weight: math.unit(180, "lb"),
  26860. name: "Back",
  26861. image: {
  26862. source: "./media/characters/juri/back.svg",
  26863. extra: 1377 / 1240,
  26864. bottom: 23.7 / 1405
  26865. }
  26866. },
  26867. maw: {
  26868. height: math.unit(2.8, "feet"),
  26869. name: "Maw",
  26870. image: {
  26871. source: "./media/characters/juri/maw.svg"
  26872. }
  26873. },
  26874. stomach: {
  26875. height: math.unit(0.89, "feet"),
  26876. preyCapacity: math.unit(4, "liters"),
  26877. name: "Stomach",
  26878. image: {
  26879. source: "./media/characters/juri/stomach.svg"
  26880. }
  26881. },
  26882. },
  26883. [
  26884. {
  26885. name: "Normal",
  26886. height: math.unit(7 + 3 / 12, "feet"),
  26887. default: true
  26888. },
  26889. ]
  26890. ))
  26891. characterMakers.push(() => makeCharacter(
  26892. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  26893. {
  26894. fox: {
  26895. height: math.unit(5 + 6 / 12, "feet"),
  26896. weight: math.unit(140, "lb"),
  26897. name: "Fox",
  26898. image: {
  26899. source: "./media/characters/maxene-sita/fox.svg",
  26900. extra: 146 / 138,
  26901. bottom: 2.1 / 148.19
  26902. }
  26903. },
  26904. foxLaying: {
  26905. height: math.unit(1.70, "feet"),
  26906. weight: math.unit(140, "lb"),
  26907. name: "Fox (Laying)",
  26908. image: {
  26909. source: "./media/characters/maxene-sita/fox-laying.svg",
  26910. extra: 910 / 572,
  26911. bottom: 71 / 981
  26912. }
  26913. },
  26914. kitsune: {
  26915. height: math.unit(10, "feet"),
  26916. weight: math.unit(800, "lb"),
  26917. name: "Kitsune",
  26918. image: {
  26919. source: "./media/characters/maxene-sita/kitsune.svg",
  26920. extra: 185 / 176,
  26921. bottom: 4.7 / 189.9
  26922. }
  26923. },
  26924. hellhound: {
  26925. height: math.unit(10, "feet"),
  26926. weight: math.unit(700, "lb"),
  26927. name: "Hellhound",
  26928. image: {
  26929. source: "./media/characters/maxene-sita/hellhound.svg",
  26930. extra: 1600 / 1545,
  26931. bottom: 81 / 1681
  26932. }
  26933. },
  26934. },
  26935. [
  26936. {
  26937. name: "Normal",
  26938. height: math.unit(5 + 6 / 12, "feet"),
  26939. default: true
  26940. },
  26941. ]
  26942. ))
  26943. characterMakers.push(() => makeCharacter(
  26944. { name: "Maia", species: ["mew"], tags: ["feral"] },
  26945. {
  26946. front: {
  26947. height: math.unit(3 + 4 / 12, "feet"),
  26948. weight: math.unit(70, "lb"),
  26949. name: "Front",
  26950. image: {
  26951. source: "./media/characters/maia/front.svg",
  26952. extra: 227 / 219.5,
  26953. bottom: 40 / 267
  26954. }
  26955. },
  26956. back: {
  26957. height: math.unit(3 + 4 / 12, "feet"),
  26958. weight: math.unit(70, "lb"),
  26959. name: "Back",
  26960. image: {
  26961. source: "./media/characters/maia/back.svg",
  26962. extra: 237 / 225
  26963. }
  26964. },
  26965. },
  26966. [
  26967. {
  26968. name: "Normal",
  26969. height: math.unit(3 + 4 / 12, "feet"),
  26970. default: true
  26971. },
  26972. ]
  26973. ))
  26974. characterMakers.push(() => makeCharacter(
  26975. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  26976. {
  26977. front: {
  26978. height: math.unit(5 + 10 / 12, "feet"),
  26979. weight: math.unit(197, "lb"),
  26980. name: "Front",
  26981. image: {
  26982. source: "./media/characters/jabaro/front.svg",
  26983. extra: 225 / 216,
  26984. bottom: 5.06 / 230
  26985. }
  26986. },
  26987. back: {
  26988. height: math.unit(5 + 10 / 12, "feet"),
  26989. weight: math.unit(197, "lb"),
  26990. name: "Back",
  26991. image: {
  26992. source: "./media/characters/jabaro/back.svg",
  26993. extra: 225 / 219,
  26994. bottom: 1.9 / 227
  26995. }
  26996. },
  26997. },
  26998. [
  26999. {
  27000. name: "Normal",
  27001. height: math.unit(5 + 10 / 12, "feet"),
  27002. default: true
  27003. },
  27004. ]
  27005. ))
  27006. characterMakers.push(() => makeCharacter(
  27007. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  27008. {
  27009. front: {
  27010. height: math.unit(5 + 8 / 12, "feet"),
  27011. weight: math.unit(139, "lb"),
  27012. name: "Front",
  27013. image: {
  27014. source: "./media/characters/risa/front.svg",
  27015. extra: 270 / 260,
  27016. bottom: 11.2 / 282
  27017. }
  27018. },
  27019. back: {
  27020. height: math.unit(5 + 8 / 12, "feet"),
  27021. weight: math.unit(139, "lb"),
  27022. name: "Back",
  27023. image: {
  27024. source: "./media/characters/risa/back.svg",
  27025. extra: 264 / 255,
  27026. bottom: 4 / 268
  27027. }
  27028. },
  27029. },
  27030. [
  27031. {
  27032. name: "Normal",
  27033. height: math.unit(5 + 8 / 12, "feet"),
  27034. default: true
  27035. },
  27036. ]
  27037. ))
  27038. characterMakers.push(() => makeCharacter(
  27039. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  27040. {
  27041. front: {
  27042. height: math.unit(2 + 11 / 12, "feet"),
  27043. weight: math.unit(30, "lb"),
  27044. name: "Front",
  27045. image: {
  27046. source: "./media/characters/weatley/front.svg",
  27047. bottom: 10.7 / 414,
  27048. extra: 403.5 / 362
  27049. }
  27050. },
  27051. back: {
  27052. height: math.unit(2 + 11 / 12, "feet"),
  27053. weight: math.unit(30, "lb"),
  27054. name: "Back",
  27055. image: {
  27056. source: "./media/characters/weatley/back.svg",
  27057. bottom: 10.7 / 414,
  27058. extra: 403.5 / 362
  27059. }
  27060. },
  27061. },
  27062. [
  27063. {
  27064. name: "Normal",
  27065. height: math.unit(2 + 11 / 12, "feet"),
  27066. default: true
  27067. },
  27068. ]
  27069. ))
  27070. characterMakers.push(() => makeCharacter(
  27071. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  27072. {
  27073. front: {
  27074. height: math.unit(5 + 2 / 12, "feet"),
  27075. weight: math.unit(50, "kg"),
  27076. name: "Front",
  27077. image: {
  27078. source: "./media/characters/mercury-crescent/front.svg",
  27079. extra: 1088 / 1033,
  27080. bottom: 18.9 / 1109
  27081. }
  27082. },
  27083. },
  27084. [
  27085. {
  27086. name: "Normal",
  27087. height: math.unit(5 + 2 / 12, "feet"),
  27088. default: true
  27089. },
  27090. ]
  27091. ))
  27092. characterMakers.push(() => makeCharacter(
  27093. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  27094. {
  27095. front: {
  27096. height: math.unit(2, "feet"),
  27097. weight: math.unit(15, "kg"),
  27098. name: "Front",
  27099. image: {
  27100. source: "./media/characters/diamond-jones/front.svg",
  27101. extra: 727/723,
  27102. bottom: 46/773
  27103. }
  27104. },
  27105. },
  27106. [
  27107. {
  27108. name: "Normal",
  27109. height: math.unit(2, "feet"),
  27110. default: true
  27111. },
  27112. ]
  27113. ))
  27114. characterMakers.push(() => makeCharacter(
  27115. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  27116. {
  27117. front: {
  27118. height: math.unit(3, "feet"),
  27119. weight: math.unit(30, "kg"),
  27120. name: "Front",
  27121. image: {
  27122. source: "./media/characters/sweet-bit/front.svg",
  27123. extra: 675 / 567,
  27124. bottom: 27.7 / 703
  27125. }
  27126. },
  27127. },
  27128. [
  27129. {
  27130. name: "Normal",
  27131. height: math.unit(3, "feet"),
  27132. default: true
  27133. },
  27134. ]
  27135. ))
  27136. characterMakers.push(() => makeCharacter(
  27137. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  27138. {
  27139. side: {
  27140. height: math.unit(9.178, "feet"),
  27141. weight: math.unit(500, "lb"),
  27142. name: "Side",
  27143. image: {
  27144. source: "./media/characters/umbrazen/side.svg",
  27145. extra: 1730 / 1473,
  27146. bottom: 34.6 / 1765
  27147. }
  27148. },
  27149. },
  27150. [
  27151. {
  27152. name: "Normal",
  27153. height: math.unit(9.178, "feet"),
  27154. default: true
  27155. },
  27156. ]
  27157. ))
  27158. characterMakers.push(() => makeCharacter(
  27159. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  27160. {
  27161. front: {
  27162. height: math.unit(10, "feet"),
  27163. weight: math.unit(750, "lb"),
  27164. name: "Front",
  27165. image: {
  27166. source: "./media/characters/arlist/front.svg",
  27167. extra: 961 / 778,
  27168. bottom: 6.2 / 986
  27169. }
  27170. },
  27171. },
  27172. [
  27173. {
  27174. name: "Normal",
  27175. height: math.unit(10, "feet"),
  27176. default: true
  27177. },
  27178. ]
  27179. ))
  27180. characterMakers.push(() => makeCharacter(
  27181. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  27182. {
  27183. front: {
  27184. height: math.unit(5 + 1 / 12, "feet"),
  27185. weight: math.unit(110, "lb"),
  27186. name: "Front",
  27187. image: {
  27188. source: "./media/characters/aradel/front.svg",
  27189. extra: 324 / 303,
  27190. bottom: 3.6 / 329.4
  27191. }
  27192. },
  27193. },
  27194. [
  27195. {
  27196. name: "Normal",
  27197. height: math.unit(5 + 1 / 12, "feet"),
  27198. default: true
  27199. },
  27200. ]
  27201. ))
  27202. characterMakers.push(() => makeCharacter(
  27203. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  27204. {
  27205. dressed: {
  27206. height: math.unit(3 + 8 / 12, "feet"),
  27207. weight: math.unit(50, "lb"),
  27208. name: "Dressed",
  27209. image: {
  27210. source: "./media/characters/serryn/dressed.svg",
  27211. extra: 1792 / 1656,
  27212. bottom: 43.5 / 1840
  27213. }
  27214. },
  27215. nude: {
  27216. height: math.unit(3 + 8 / 12, "feet"),
  27217. weight: math.unit(50, "lb"),
  27218. name: "Nude",
  27219. image: {
  27220. source: "./media/characters/serryn/nude.svg",
  27221. extra: 1792 / 1656,
  27222. bottom: 43.5 / 1840
  27223. }
  27224. },
  27225. },
  27226. [
  27227. {
  27228. name: "Normal",
  27229. height: math.unit(3 + 8 / 12, "feet"),
  27230. default: true
  27231. },
  27232. ]
  27233. ))
  27234. characterMakers.push(() => makeCharacter(
  27235. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  27236. {
  27237. front: {
  27238. height: math.unit(7 + 10 / 12, "feet"),
  27239. weight: math.unit(255, "lb"),
  27240. name: "Front",
  27241. image: {
  27242. source: "./media/characters/xavier-thyme/front.svg",
  27243. extra: 3733 / 3642,
  27244. bottom: 131 / 3869
  27245. }
  27246. },
  27247. frontRaven: {
  27248. height: math.unit(7 + 10 / 12, "feet"),
  27249. weight: math.unit(255, "lb"),
  27250. name: "Front (Raven)",
  27251. image: {
  27252. source: "./media/characters/xavier-thyme/front-raven.svg",
  27253. extra: 4385 / 3642,
  27254. bottom: 131 / 4517
  27255. }
  27256. },
  27257. },
  27258. [
  27259. {
  27260. name: "Normal",
  27261. height: math.unit(7 + 10 / 12, "feet"),
  27262. default: true
  27263. },
  27264. ]
  27265. ))
  27266. characterMakers.push(() => makeCharacter(
  27267. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  27268. {
  27269. front: {
  27270. height: math.unit(1.6, "m"),
  27271. weight: math.unit(50, "kg"),
  27272. name: "Front",
  27273. image: {
  27274. source: "./media/characters/kiki/front.svg",
  27275. extra: 4682 / 3610,
  27276. bottom: 115 / 4777
  27277. }
  27278. },
  27279. },
  27280. [
  27281. {
  27282. name: "Normal",
  27283. height: math.unit(1.6, "meters"),
  27284. default: true
  27285. },
  27286. ]
  27287. ))
  27288. characterMakers.push(() => makeCharacter(
  27289. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  27290. {
  27291. front: {
  27292. height: math.unit(50, "m"),
  27293. weight: math.unit(500, "tonnes"),
  27294. name: "Front",
  27295. image: {
  27296. source: "./media/characters/ryoko/front.svg",
  27297. extra: 4632 / 3926,
  27298. bottom: 193 / 4823
  27299. }
  27300. },
  27301. },
  27302. [
  27303. {
  27304. name: "Normal",
  27305. height: math.unit(50, "meters"),
  27306. default: true
  27307. },
  27308. ]
  27309. ))
  27310. characterMakers.push(() => makeCharacter(
  27311. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  27312. {
  27313. front: {
  27314. height: math.unit(30, "m"),
  27315. weight: math.unit(22, "tonnes"),
  27316. name: "Front",
  27317. image: {
  27318. source: "./media/characters/elio/front.svg",
  27319. extra: 4582 / 3720,
  27320. bottom: 236 / 4828
  27321. }
  27322. },
  27323. },
  27324. [
  27325. {
  27326. name: "Normal",
  27327. height: math.unit(30, "meters"),
  27328. default: true
  27329. },
  27330. ]
  27331. ))
  27332. characterMakers.push(() => makeCharacter(
  27333. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  27334. {
  27335. front: {
  27336. height: math.unit(6 + 3 / 12, "feet"),
  27337. weight: math.unit(120, "lb"),
  27338. name: "Front",
  27339. image: {
  27340. source: "./media/characters/azura/front.svg",
  27341. extra: 1149 / 1135,
  27342. bottom: 45 / 1194
  27343. }
  27344. },
  27345. frontClothed: {
  27346. height: math.unit(6 + 3 / 12, "feet"),
  27347. weight: math.unit(120, "lb"),
  27348. name: "Front (Clothed)",
  27349. image: {
  27350. source: "./media/characters/azura/front-clothed.svg",
  27351. extra: 1149 / 1135,
  27352. bottom: 45 / 1194
  27353. }
  27354. },
  27355. },
  27356. [
  27357. {
  27358. name: "Normal",
  27359. height: math.unit(6 + 3 / 12, "feet"),
  27360. default: true
  27361. },
  27362. {
  27363. name: "Macro",
  27364. height: math.unit(20 + 6 / 12, "feet")
  27365. },
  27366. {
  27367. name: "Megamacro",
  27368. height: math.unit(12, "miles")
  27369. },
  27370. {
  27371. name: "Gigamacro",
  27372. height: math.unit(10000, "miles")
  27373. },
  27374. {
  27375. name: "Teramacro",
  27376. height: math.unit(900000, "miles")
  27377. },
  27378. ]
  27379. ))
  27380. characterMakers.push(() => makeCharacter(
  27381. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  27382. {
  27383. front: {
  27384. height: math.unit(12, "feet"),
  27385. weight: math.unit(1, "ton"),
  27386. capacity: math.unit(660000, "gallons"),
  27387. name: "Front",
  27388. image: {
  27389. source: "./media/characters/zeus/front.svg",
  27390. extra: 5005 / 4717,
  27391. bottom: 363 / 5388
  27392. }
  27393. },
  27394. },
  27395. [
  27396. {
  27397. name: "Normal",
  27398. height: math.unit(12, "feet")
  27399. },
  27400. {
  27401. name: "Preferred Size",
  27402. height: math.unit(0.5, "miles"),
  27403. default: true
  27404. },
  27405. {
  27406. name: "Giga Horse",
  27407. height: math.unit(300, "miles")
  27408. },
  27409. {
  27410. name: "Riding Planets",
  27411. height: math.unit(30, "megameters")
  27412. },
  27413. {
  27414. name: "Cosmic Giant",
  27415. height: math.unit(3, "zettameters")
  27416. },
  27417. {
  27418. name: "Breeding God",
  27419. height: math.unit(9.92e22, "yottameters")
  27420. },
  27421. ]
  27422. ))
  27423. characterMakers.push(() => makeCharacter(
  27424. { name: "Fang", species: ["monster"], tags: ["feral"] },
  27425. {
  27426. side: {
  27427. height: math.unit(9, "feet"),
  27428. weight: math.unit(1500, "kg"),
  27429. name: "Side",
  27430. image: {
  27431. source: "./media/characters/fang/side.svg",
  27432. extra: 924 / 866,
  27433. bottom: 47.5 / 972.3
  27434. }
  27435. },
  27436. },
  27437. [
  27438. {
  27439. name: "Normal",
  27440. height: math.unit(9, "feet"),
  27441. default: true
  27442. },
  27443. {
  27444. name: "Macro",
  27445. height: math.unit(75 + 6 / 12, "feet")
  27446. },
  27447. {
  27448. name: "Teramacro",
  27449. height: math.unit(50000, "miles")
  27450. },
  27451. ]
  27452. ))
  27453. characterMakers.push(() => makeCharacter(
  27454. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  27455. {
  27456. front: {
  27457. height: math.unit(10, "feet"),
  27458. weight: math.unit(2, "tons"),
  27459. name: "Front",
  27460. image: {
  27461. source: "./media/characters/rekhit/front.svg",
  27462. extra: 2796 / 2590,
  27463. bottom: 225 / 3022
  27464. }
  27465. },
  27466. },
  27467. [
  27468. {
  27469. name: "Normal",
  27470. height: math.unit(10, "feet"),
  27471. default: true
  27472. },
  27473. {
  27474. name: "Macro",
  27475. height: math.unit(500, "feet")
  27476. },
  27477. ]
  27478. ))
  27479. characterMakers.push(() => makeCharacter(
  27480. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  27481. {
  27482. front: {
  27483. height: math.unit(7 + 6.451 / 12, "feet"),
  27484. weight: math.unit(310, "lb"),
  27485. name: "Front",
  27486. image: {
  27487. source: "./media/characters/dahlia-verrick/front.svg",
  27488. extra: 1488 / 1365,
  27489. bottom: 6.2 / 1495
  27490. }
  27491. },
  27492. back: {
  27493. height: math.unit(7 + 6.451 / 12, "feet"),
  27494. weight: math.unit(310, "lb"),
  27495. name: "Back",
  27496. image: {
  27497. source: "./media/characters/dahlia-verrick/back.svg",
  27498. extra: 1472 / 1351,
  27499. bottom: 5.28 / 1477
  27500. }
  27501. },
  27502. frontBusiness: {
  27503. height: math.unit(7 + 6.451 / 12, "feet"),
  27504. weight: math.unit(200, "lb"),
  27505. name: "Front (Business)",
  27506. image: {
  27507. source: "./media/characters/dahlia-verrick/front-business.svg",
  27508. extra: 1478 / 1381,
  27509. bottom: 5.5 / 1484
  27510. }
  27511. },
  27512. frontCasual: {
  27513. height: math.unit(7 + 6.451 / 12, "feet"),
  27514. weight: math.unit(200, "lb"),
  27515. name: "Front (Casual)",
  27516. image: {
  27517. source: "./media/characters/dahlia-verrick/front-casual.svg",
  27518. extra: 1478 / 1381,
  27519. bottom: 5.5 / 1484
  27520. }
  27521. },
  27522. },
  27523. [
  27524. {
  27525. name: "Travel-Sized",
  27526. height: math.unit(7.45, "inches")
  27527. },
  27528. {
  27529. name: "Normal",
  27530. height: math.unit(7 + 6.451 / 12, "feet"),
  27531. default: true
  27532. },
  27533. {
  27534. name: "Hitting the Town",
  27535. height: math.unit(37 + 8 / 12, "feet")
  27536. },
  27537. {
  27538. name: "Stomp in the Suburbs",
  27539. height: math.unit(964 + 9.728 / 12, "feet")
  27540. },
  27541. {
  27542. name: "Sit on the City",
  27543. height: math.unit(61747 + 10.592 / 12, "feet")
  27544. },
  27545. {
  27546. name: "Glomp the Globe",
  27547. height: math.unit(252919327 + 4.832 / 12, "feet")
  27548. },
  27549. ]
  27550. ))
  27551. characterMakers.push(() => makeCharacter(
  27552. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  27553. {
  27554. front: {
  27555. height: math.unit(6 + 4 / 12, "feet"),
  27556. weight: math.unit(320, "lb"),
  27557. name: "Front",
  27558. image: {
  27559. source: "./media/characters/balina-mahigan/front.svg",
  27560. extra: 447 / 428,
  27561. bottom: 18 / 466
  27562. }
  27563. },
  27564. back: {
  27565. height: math.unit(6 + 4 / 12, "feet"),
  27566. weight: math.unit(320, "lb"),
  27567. name: "Back",
  27568. image: {
  27569. source: "./media/characters/balina-mahigan/back.svg",
  27570. extra: 445 / 428,
  27571. bottom: 4.07 / 448
  27572. }
  27573. },
  27574. arm: {
  27575. height: math.unit(1.88, "feet"),
  27576. name: "Arm",
  27577. image: {
  27578. source: "./media/characters/balina-mahigan/arm.svg"
  27579. }
  27580. },
  27581. backPort: {
  27582. height: math.unit(0.685, "feet"),
  27583. name: "Back Port",
  27584. image: {
  27585. source: "./media/characters/balina-mahigan/back-port.svg"
  27586. }
  27587. },
  27588. hoofpaw: {
  27589. height: math.unit(1.41, "feet"),
  27590. name: "Hoofpaw",
  27591. image: {
  27592. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  27593. }
  27594. },
  27595. leftHandBack: {
  27596. height: math.unit(0.938, "feet"),
  27597. name: "Left Hand (Back)",
  27598. image: {
  27599. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  27600. }
  27601. },
  27602. leftHandFront: {
  27603. height: math.unit(0.938, "feet"),
  27604. name: "Left Hand (Front)",
  27605. image: {
  27606. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  27607. }
  27608. },
  27609. rightHandBack: {
  27610. height: math.unit(0.95, "feet"),
  27611. name: "Right Hand (Back)",
  27612. image: {
  27613. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  27614. }
  27615. },
  27616. rightHandFront: {
  27617. height: math.unit(0.95, "feet"),
  27618. name: "Right Hand (Front)",
  27619. image: {
  27620. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  27621. }
  27622. },
  27623. },
  27624. [
  27625. {
  27626. name: "Normal",
  27627. height: math.unit(6 + 4 / 12, "feet"),
  27628. default: true
  27629. },
  27630. ]
  27631. ))
  27632. characterMakers.push(() => makeCharacter(
  27633. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  27634. {
  27635. front: {
  27636. height: math.unit(6, "feet"),
  27637. weight: math.unit(320, "lb"),
  27638. name: "Front",
  27639. image: {
  27640. source: "./media/characters/balina-mejeri/front.svg",
  27641. extra: 517 / 488,
  27642. bottom: 44.2 / 561
  27643. }
  27644. },
  27645. },
  27646. [
  27647. {
  27648. name: "Normal",
  27649. height: math.unit(6 + 4 / 12, "feet")
  27650. },
  27651. {
  27652. name: "Business",
  27653. height: math.unit(155, "feet"),
  27654. default: true
  27655. },
  27656. ]
  27657. ))
  27658. characterMakers.push(() => makeCharacter(
  27659. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  27660. {
  27661. kneeling: {
  27662. height: math.unit(6 + 4 / 12, "feet"),
  27663. weight: math.unit(300 * 20, "lb"),
  27664. name: "Kneeling",
  27665. image: {
  27666. source: "./media/characters/balbarian/kneeling.svg",
  27667. extra: 922 / 862,
  27668. bottom: 42.4 / 965
  27669. }
  27670. },
  27671. },
  27672. [
  27673. {
  27674. name: "Normal",
  27675. height: math.unit(6 + 4 / 12, "feet")
  27676. },
  27677. {
  27678. name: "Treasured",
  27679. height: math.unit(18 + 9 / 12, "feet"),
  27680. default: true
  27681. },
  27682. {
  27683. name: "Macro",
  27684. height: math.unit(900, "feet")
  27685. },
  27686. ]
  27687. ))
  27688. characterMakers.push(() => makeCharacter(
  27689. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  27690. {
  27691. front: {
  27692. height: math.unit(6 + 4 / 12, "feet"),
  27693. weight: math.unit(325, "lb"),
  27694. name: "Front",
  27695. image: {
  27696. source: "./media/characters/balina-amarini/front.svg",
  27697. extra: 415 / 403,
  27698. bottom: 19 / 433.4
  27699. }
  27700. },
  27701. back: {
  27702. height: math.unit(6 + 4 / 12, "feet"),
  27703. weight: math.unit(325, "lb"),
  27704. name: "Back",
  27705. image: {
  27706. source: "./media/characters/balina-amarini/back.svg",
  27707. extra: 415 / 403,
  27708. bottom: 13.5 / 432
  27709. }
  27710. },
  27711. overdrive: {
  27712. height: math.unit(6 + 4 / 12, "feet"),
  27713. weight: math.unit(400, "lb"),
  27714. name: "Overdrive",
  27715. image: {
  27716. source: "./media/characters/balina-amarini/overdrive.svg",
  27717. extra: 269 / 259,
  27718. bottom: 12 / 282
  27719. }
  27720. },
  27721. },
  27722. [
  27723. {
  27724. name: "Boom",
  27725. height: math.unit(9 + 10 / 12, "feet"),
  27726. default: true
  27727. },
  27728. {
  27729. name: "Macro",
  27730. height: math.unit(280, "feet")
  27731. },
  27732. ]
  27733. ))
  27734. characterMakers.push(() => makeCharacter(
  27735. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  27736. {
  27737. goddess: {
  27738. height: math.unit(600, "feet"),
  27739. weight: math.unit(2000000, "tons"),
  27740. name: "Goddess",
  27741. image: {
  27742. source: "./media/characters/lady-kubwa/goddess.svg",
  27743. extra: 1240.5 / 1223,
  27744. bottom: 22 / 1263
  27745. }
  27746. },
  27747. goddesser: {
  27748. height: math.unit(900, "feet"),
  27749. weight: math.unit(20000000, "lb"),
  27750. name: "Goddess-er",
  27751. image: {
  27752. source: "./media/characters/lady-kubwa/goddess-er.svg",
  27753. extra: 899 / 888,
  27754. bottom: 12.6 / 912
  27755. }
  27756. },
  27757. },
  27758. [
  27759. {
  27760. name: "Macro",
  27761. height: math.unit(600, "feet"),
  27762. default: true
  27763. },
  27764. {
  27765. name: "Megamacro",
  27766. height: math.unit(250, "miles")
  27767. },
  27768. ]
  27769. ))
  27770. characterMakers.push(() => makeCharacter(
  27771. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  27772. {
  27773. front: {
  27774. height: math.unit(7 + 7 / 12, "feet"),
  27775. weight: math.unit(250, "lb"),
  27776. name: "Front",
  27777. image: {
  27778. source: "./media/characters/tala-grovehorn/front.svg",
  27779. extra: 2636 / 2525,
  27780. bottom: 147 / 2781
  27781. }
  27782. },
  27783. back: {
  27784. height: math.unit(7 + 7 / 12, "feet"),
  27785. weight: math.unit(250, "lb"),
  27786. name: "Back",
  27787. image: {
  27788. source: "./media/characters/tala-grovehorn/back.svg",
  27789. extra: 2635 / 2539,
  27790. bottom: 100 / 2732.8
  27791. }
  27792. },
  27793. mouth: {
  27794. height: math.unit(1.15, "feet"),
  27795. name: "Mouth",
  27796. image: {
  27797. source: "./media/characters/tala-grovehorn/mouth.svg"
  27798. }
  27799. },
  27800. dick: {
  27801. height: math.unit(2.36, "feet"),
  27802. name: "Dick",
  27803. image: {
  27804. source: "./media/characters/tala-grovehorn/dick.svg"
  27805. }
  27806. },
  27807. slit: {
  27808. height: math.unit(0.61, "feet"),
  27809. name: "Slit",
  27810. image: {
  27811. source: "./media/characters/tala-grovehorn/slit.svg"
  27812. }
  27813. },
  27814. },
  27815. [
  27816. ]
  27817. ))
  27818. characterMakers.push(() => makeCharacter(
  27819. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  27820. {
  27821. front: {
  27822. height: math.unit(7 + 7 / 12, "feet"),
  27823. weight: math.unit(225, "lb"),
  27824. name: "Front",
  27825. image: {
  27826. source: "./media/characters/epona/front.svg",
  27827. extra: 2445 / 2290,
  27828. bottom: 251 / 2696
  27829. }
  27830. },
  27831. back: {
  27832. height: math.unit(7 + 7 / 12, "feet"),
  27833. weight: math.unit(225, "lb"),
  27834. name: "Back",
  27835. image: {
  27836. source: "./media/characters/epona/back.svg",
  27837. extra: 2546 / 2408,
  27838. bottom: 44 / 2589
  27839. }
  27840. },
  27841. genitals: {
  27842. height: math.unit(1.5, "feet"),
  27843. name: "Genitals",
  27844. image: {
  27845. source: "./media/characters/epona/genitals.svg"
  27846. }
  27847. },
  27848. },
  27849. [
  27850. {
  27851. name: "Normal",
  27852. height: math.unit(7 + 7 / 12, "feet"),
  27853. default: true
  27854. },
  27855. ]
  27856. ))
  27857. characterMakers.push(() => makeCharacter(
  27858. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  27859. {
  27860. front: {
  27861. height: math.unit(7, "feet"),
  27862. weight: math.unit(518, "lb"),
  27863. name: "Front",
  27864. image: {
  27865. source: "./media/characters/avia-bloodbourn/front.svg",
  27866. extra: 1466 / 1350,
  27867. bottom: 65 / 1527
  27868. }
  27869. },
  27870. },
  27871. [
  27872. ]
  27873. ))
  27874. characterMakers.push(() => makeCharacter(
  27875. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  27876. {
  27877. front: {
  27878. height: math.unit(9.35, "feet"),
  27879. weight: math.unit(600, "lb"),
  27880. name: "Front",
  27881. image: {
  27882. source: "./media/characters/amera/front.svg",
  27883. extra: 891 / 818,
  27884. bottom: 30 / 922.7
  27885. }
  27886. },
  27887. back: {
  27888. height: math.unit(9.35, "feet"),
  27889. weight: math.unit(600, "lb"),
  27890. name: "Back",
  27891. image: {
  27892. source: "./media/characters/amera/back.svg",
  27893. extra: 876 / 824,
  27894. bottom: 6.8 / 884
  27895. }
  27896. },
  27897. dick: {
  27898. height: math.unit(2.14, "feet"),
  27899. name: "Dick",
  27900. image: {
  27901. source: "./media/characters/amera/dick.svg"
  27902. }
  27903. },
  27904. },
  27905. [
  27906. {
  27907. name: "Normal",
  27908. height: math.unit(9.35, "feet"),
  27909. default: true
  27910. },
  27911. ]
  27912. ))
  27913. characterMakers.push(() => makeCharacter(
  27914. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  27915. {
  27916. kneeling: {
  27917. height: math.unit(3 + 4 / 12, "feet"),
  27918. weight: math.unit(90, "lb"),
  27919. name: "Kneeling",
  27920. image: {
  27921. source: "./media/characters/rosewen/kneeling.svg",
  27922. extra: 1835 / 1571,
  27923. bottom: 27.7 / 1862
  27924. }
  27925. },
  27926. },
  27927. [
  27928. {
  27929. name: "Normal",
  27930. height: math.unit(3 + 4 / 12, "feet"),
  27931. default: true
  27932. },
  27933. ]
  27934. ))
  27935. characterMakers.push(() => makeCharacter(
  27936. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  27937. {
  27938. front: {
  27939. height: math.unit(5 + 10 / 12, "feet"),
  27940. weight: math.unit(200, "lb"),
  27941. name: "Front",
  27942. image: {
  27943. source: "./media/characters/sabah/front.svg",
  27944. extra: 849 / 763,
  27945. bottom: 33.9 / 881
  27946. }
  27947. },
  27948. },
  27949. [
  27950. {
  27951. name: "Normal",
  27952. height: math.unit(5 + 10 / 12, "feet"),
  27953. default: true
  27954. },
  27955. ]
  27956. ))
  27957. characterMakers.push(() => makeCharacter(
  27958. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  27959. {
  27960. front: {
  27961. height: math.unit(3 + 5 / 12, "feet"),
  27962. weight: math.unit(40, "kg"),
  27963. name: "Front",
  27964. image: {
  27965. source: "./media/characters/purple-flame/front.svg",
  27966. extra: 1577 / 1412,
  27967. bottom: 97 / 1694
  27968. }
  27969. },
  27970. frontDressed: {
  27971. height: math.unit(3 + 5 / 12, "feet"),
  27972. weight: math.unit(40, "kg"),
  27973. name: "Front (Dressed)",
  27974. image: {
  27975. source: "./media/characters/purple-flame/front-dressed.svg",
  27976. extra: 1577 / 1412,
  27977. bottom: 97 / 1694
  27978. }
  27979. },
  27980. headphones: {
  27981. height: math.unit(0.85, "feet"),
  27982. name: "Headphones",
  27983. image: {
  27984. source: "./media/characters/purple-flame/headphones.svg"
  27985. }
  27986. },
  27987. },
  27988. [
  27989. {
  27990. name: "Really Small",
  27991. height: math.unit(5, "cm")
  27992. },
  27993. {
  27994. name: "Micro",
  27995. height: math.unit(1 + 5 / 12, "feet")
  27996. },
  27997. {
  27998. name: "Normal",
  27999. height: math.unit(3 + 5 / 12, "feet"),
  28000. default: true
  28001. },
  28002. {
  28003. name: "Minimacro",
  28004. height: math.unit(125, "feet")
  28005. },
  28006. {
  28007. name: "Macro",
  28008. height: math.unit(0.5, "miles")
  28009. },
  28010. {
  28011. name: "Megamacro",
  28012. height: math.unit(50, "miles")
  28013. },
  28014. {
  28015. name: "Gigantic",
  28016. height: math.unit(750, "miles")
  28017. },
  28018. {
  28019. name: "Planetary",
  28020. height: math.unit(15000, "miles")
  28021. },
  28022. ]
  28023. ))
  28024. characterMakers.push(() => makeCharacter(
  28025. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  28026. {
  28027. front: {
  28028. height: math.unit(14, "feet"),
  28029. weight: math.unit(959, "lb"),
  28030. name: "Front",
  28031. image: {
  28032. source: "./media/characters/arsenal/front.svg",
  28033. extra: 2357 / 2157,
  28034. bottom: 93 / 2458
  28035. }
  28036. },
  28037. },
  28038. [
  28039. {
  28040. name: "Normal",
  28041. height: math.unit(14, "feet"),
  28042. default: true
  28043. },
  28044. ]
  28045. ))
  28046. characterMakers.push(() => makeCharacter(
  28047. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  28048. {
  28049. front: {
  28050. height: math.unit(6, "feet"),
  28051. weight: math.unit(150, "lb"),
  28052. name: "Front",
  28053. image: {
  28054. source: "./media/characters/adira/front.svg",
  28055. extra: 1078 / 1029,
  28056. bottom: 87 / 1166
  28057. }
  28058. },
  28059. },
  28060. [
  28061. {
  28062. name: "Micro",
  28063. height: math.unit(4, "inches"),
  28064. default: true
  28065. },
  28066. {
  28067. name: "Macro",
  28068. height: math.unit(50, "feet")
  28069. },
  28070. ]
  28071. ))
  28072. characterMakers.push(() => makeCharacter(
  28073. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  28074. {
  28075. front: {
  28076. height: math.unit(16, "feet"),
  28077. weight: math.unit(1000, "lb"),
  28078. name: "Front",
  28079. image: {
  28080. source: "./media/characters/grim/front.svg",
  28081. extra: 622 / 614,
  28082. bottom: 18.1 / 642
  28083. }
  28084. },
  28085. back: {
  28086. height: math.unit(16, "feet"),
  28087. weight: math.unit(1000, "lb"),
  28088. name: "Back",
  28089. image: {
  28090. source: "./media/characters/grim/back.svg",
  28091. extra: 610.6 / 602,
  28092. bottom: 40.8 / 652
  28093. }
  28094. },
  28095. hunched: {
  28096. height: math.unit(9.75, "feet"),
  28097. weight: math.unit(1000, "lb"),
  28098. name: "Hunched",
  28099. image: {
  28100. source: "./media/characters/grim/hunched.svg",
  28101. extra: 304 / 297,
  28102. bottom: 35.4 / 394
  28103. }
  28104. },
  28105. },
  28106. [
  28107. {
  28108. name: "Normal",
  28109. height: math.unit(16, "feet"),
  28110. default: true
  28111. },
  28112. ]
  28113. ))
  28114. characterMakers.push(() => makeCharacter(
  28115. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  28116. {
  28117. front: {
  28118. height: math.unit(2.3, "meters"),
  28119. weight: math.unit(300, "lb"),
  28120. name: "Front",
  28121. image: {
  28122. source: "./media/characters/sinja/front-sfw.svg",
  28123. extra: 1393 / 1294,
  28124. bottom: 70 / 1463
  28125. }
  28126. },
  28127. frontNsfw: {
  28128. height: math.unit(2.3, "meters"),
  28129. weight: math.unit(300, "lb"),
  28130. name: "Front (NSFW)",
  28131. image: {
  28132. source: "./media/characters/sinja/front-nsfw.svg",
  28133. extra: 1393 / 1294,
  28134. bottom: 70 / 1463
  28135. }
  28136. },
  28137. back: {
  28138. height: math.unit(2.3, "meters"),
  28139. weight: math.unit(300, "lb"),
  28140. name: "Back",
  28141. image: {
  28142. source: "./media/characters/sinja/back.svg",
  28143. extra: 1393 / 1294,
  28144. bottom: 70 / 1463
  28145. }
  28146. },
  28147. head: {
  28148. height: math.unit(1.771, "feet"),
  28149. name: "Head",
  28150. image: {
  28151. source: "./media/characters/sinja/head.svg"
  28152. }
  28153. },
  28154. slit: {
  28155. height: math.unit(0.8, "feet"),
  28156. name: "Slit",
  28157. image: {
  28158. source: "./media/characters/sinja/slit.svg"
  28159. }
  28160. },
  28161. },
  28162. [
  28163. {
  28164. name: "Normal",
  28165. height: math.unit(2.3, "meters")
  28166. },
  28167. {
  28168. name: "Macro",
  28169. height: math.unit(91, "meters"),
  28170. default: true
  28171. },
  28172. {
  28173. name: "Megamacro",
  28174. height: math.unit(91440, "meters")
  28175. },
  28176. {
  28177. name: "Gigamacro",
  28178. height: math.unit(60960000, "meters")
  28179. },
  28180. {
  28181. name: "Teramacro",
  28182. height: math.unit(9144000000, "meters")
  28183. },
  28184. ]
  28185. ))
  28186. characterMakers.push(() => makeCharacter(
  28187. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  28188. {
  28189. front: {
  28190. height: math.unit(1.7, "meters"),
  28191. weight: math.unit(130, "lb"),
  28192. name: "Front",
  28193. image: {
  28194. source: "./media/characters/kyu/front.svg",
  28195. extra: 415 / 395,
  28196. bottom: 5 / 420
  28197. }
  28198. },
  28199. head: {
  28200. height: math.unit(1.75, "feet"),
  28201. name: "Head",
  28202. image: {
  28203. source: "./media/characters/kyu/head.svg"
  28204. }
  28205. },
  28206. foot: {
  28207. height: math.unit(0.81, "feet"),
  28208. name: "Foot",
  28209. image: {
  28210. source: "./media/characters/kyu/foot.svg"
  28211. }
  28212. },
  28213. },
  28214. [
  28215. {
  28216. name: "Normal",
  28217. height: math.unit(1.7, "meters")
  28218. },
  28219. {
  28220. name: "Macro",
  28221. height: math.unit(131, "feet"),
  28222. default: true
  28223. },
  28224. {
  28225. name: "Megamacro",
  28226. height: math.unit(91440, "meters")
  28227. },
  28228. {
  28229. name: "Gigamacro",
  28230. height: math.unit(60960000, "meters")
  28231. },
  28232. {
  28233. name: "Teramacro",
  28234. height: math.unit(9144000000, "meters")
  28235. },
  28236. ]
  28237. ))
  28238. characterMakers.push(() => makeCharacter(
  28239. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  28240. {
  28241. front: {
  28242. height: math.unit(7 + 1 / 12, "feet"),
  28243. weight: math.unit(250, "lb"),
  28244. name: "Front",
  28245. image: {
  28246. source: "./media/characters/joey/front.svg",
  28247. extra: 1791 / 1537,
  28248. bottom: 28 / 1816
  28249. }
  28250. },
  28251. },
  28252. [
  28253. {
  28254. name: "Micro",
  28255. height: math.unit(3, "inches")
  28256. },
  28257. {
  28258. name: "Normal",
  28259. height: math.unit(7 + 1 / 12, "feet"),
  28260. default: true
  28261. },
  28262. ]
  28263. ))
  28264. characterMakers.push(() => makeCharacter(
  28265. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  28266. {
  28267. front: {
  28268. height: math.unit(165, "cm"),
  28269. weight: math.unit(140, "lb"),
  28270. name: "Front",
  28271. image: {
  28272. source: "./media/characters/sam-evans/front.svg",
  28273. extra: 3417 / 3230,
  28274. bottom: 41.3 / 3417
  28275. }
  28276. },
  28277. frontSixTails: {
  28278. height: math.unit(165, "cm"),
  28279. weight: math.unit(140, "lb"),
  28280. name: "Front-six-tails",
  28281. image: {
  28282. source: "./media/characters/sam-evans/front-six-tails.svg",
  28283. extra: 3417 / 3230,
  28284. bottom: 41.3 / 3417
  28285. }
  28286. },
  28287. back: {
  28288. height: math.unit(165, "cm"),
  28289. weight: math.unit(140, "lb"),
  28290. name: "Back",
  28291. image: {
  28292. source: "./media/characters/sam-evans/back.svg",
  28293. extra: 3227 / 3032,
  28294. bottom: 6.8 / 3234
  28295. }
  28296. },
  28297. face: {
  28298. height: math.unit(0.68, "feet"),
  28299. name: "Face",
  28300. image: {
  28301. source: "./media/characters/sam-evans/face.svg"
  28302. }
  28303. },
  28304. },
  28305. [
  28306. {
  28307. name: "Normal",
  28308. height: math.unit(165, "cm"),
  28309. default: true
  28310. },
  28311. {
  28312. name: "Macro",
  28313. height: math.unit(100, "meters")
  28314. },
  28315. {
  28316. name: "Macro+",
  28317. height: math.unit(800, "meters")
  28318. },
  28319. {
  28320. name: "Macro++",
  28321. height: math.unit(3, "km")
  28322. },
  28323. {
  28324. name: "Macro+++",
  28325. height: math.unit(30, "km")
  28326. },
  28327. ]
  28328. ))
  28329. characterMakers.push(() => makeCharacter(
  28330. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  28331. {
  28332. front: {
  28333. height: math.unit(10, "feet"),
  28334. weight: math.unit(750, "lb"),
  28335. name: "Front",
  28336. image: {
  28337. source: "./media/characters/juliet-a/front.svg",
  28338. extra: 1766 / 1720,
  28339. bottom: 43 / 1809
  28340. }
  28341. },
  28342. back: {
  28343. height: math.unit(10, "feet"),
  28344. weight: math.unit(750, "lb"),
  28345. name: "Back",
  28346. image: {
  28347. source: "./media/characters/juliet-a/back.svg",
  28348. extra: 1781 / 1734,
  28349. bottom: 35 / 1810,
  28350. }
  28351. },
  28352. },
  28353. [
  28354. {
  28355. name: "Normal",
  28356. height: math.unit(10, "feet"),
  28357. default: true
  28358. },
  28359. {
  28360. name: "Dragon Form",
  28361. height: math.unit(250, "feet")
  28362. },
  28363. {
  28364. name: "Macro",
  28365. height: math.unit(1000, "feet")
  28366. },
  28367. {
  28368. name: "Megamacro",
  28369. height: math.unit(10000, "feet")
  28370. }
  28371. ]
  28372. ))
  28373. characterMakers.push(() => makeCharacter(
  28374. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  28375. {
  28376. regular: {
  28377. height: math.unit(7 + 3 / 12, "feet"),
  28378. weight: math.unit(260, "lb"),
  28379. name: "Regular",
  28380. image: {
  28381. source: "./media/characters/wild/regular.svg",
  28382. extra: 97.45 / 92,
  28383. bottom: 6.8 / 104.3
  28384. }
  28385. },
  28386. biggums: {
  28387. height: math.unit(8 + 6 / 12, "feet"),
  28388. weight: math.unit(425, "lb"),
  28389. name: "Biggums",
  28390. image: {
  28391. source: "./media/characters/wild/biggums.svg",
  28392. extra: 97.45 / 92,
  28393. bottom: 7.5 / 132.34
  28394. }
  28395. },
  28396. mawRegular: {
  28397. height: math.unit(1.24, "feet"),
  28398. name: "Maw (Regular)",
  28399. image: {
  28400. source: "./media/characters/wild/maw.svg"
  28401. }
  28402. },
  28403. mawBiggums: {
  28404. height: math.unit(1.47, "feet"),
  28405. name: "Maw (Biggums)",
  28406. image: {
  28407. source: "./media/characters/wild/maw.svg"
  28408. }
  28409. },
  28410. },
  28411. [
  28412. {
  28413. name: "Normal",
  28414. height: math.unit(7 + 3 / 12, "feet"),
  28415. default: true
  28416. },
  28417. ]
  28418. ))
  28419. characterMakers.push(() => makeCharacter(
  28420. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  28421. {
  28422. front: {
  28423. height: math.unit(2.5, "meters"),
  28424. weight: math.unit(200, "kg"),
  28425. name: "Front",
  28426. image: {
  28427. source: "./media/characters/vidar/front.svg",
  28428. extra: 2994 / 2795,
  28429. bottom: 56 / 3061
  28430. }
  28431. },
  28432. back: {
  28433. height: math.unit(2.5, "meters"),
  28434. weight: math.unit(200, "kg"),
  28435. name: "Back",
  28436. image: {
  28437. source: "./media/characters/vidar/back.svg",
  28438. extra: 3131 / 2928,
  28439. bottom: 13.5 / 3141.5
  28440. }
  28441. },
  28442. feral: {
  28443. height: math.unit(2.5, "meters"),
  28444. weight: math.unit(2000, "kg"),
  28445. name: "Feral",
  28446. image: {
  28447. source: "./media/characters/vidar/feral.svg",
  28448. extra: 2790 / 1765,
  28449. bottom: 6 / 2796
  28450. }
  28451. },
  28452. },
  28453. [
  28454. {
  28455. name: "Normal",
  28456. height: math.unit(2.5, "meters"),
  28457. default: true
  28458. },
  28459. {
  28460. name: "Macro",
  28461. height: math.unit(100, "meters")
  28462. },
  28463. ]
  28464. ))
  28465. characterMakers.push(() => makeCharacter(
  28466. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  28467. {
  28468. front: {
  28469. height: math.unit(5 + 9 / 12, "feet"),
  28470. weight: math.unit(120, "lb"),
  28471. name: "Front",
  28472. image: {
  28473. source: "./media/characters/ash/front.svg",
  28474. extra: 2189 / 1961,
  28475. bottom: 5.2 / 2194
  28476. }
  28477. },
  28478. },
  28479. [
  28480. {
  28481. name: "Normal",
  28482. height: math.unit(5 + 9 / 12, "feet"),
  28483. default: true
  28484. },
  28485. ]
  28486. ))
  28487. characterMakers.push(() => makeCharacter(
  28488. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  28489. {
  28490. front: {
  28491. height: math.unit(9, "feet"),
  28492. weight: math.unit(10000, "lb"),
  28493. name: "Front",
  28494. image: {
  28495. source: "./media/characters/gygabite/front.svg",
  28496. bottom: 31.7 / 537.8,
  28497. extra: 505 / 370
  28498. }
  28499. },
  28500. },
  28501. [
  28502. {
  28503. name: "Normal",
  28504. height: math.unit(9, "feet"),
  28505. default: true
  28506. },
  28507. ]
  28508. ))
  28509. characterMakers.push(() => makeCharacter(
  28510. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  28511. {
  28512. front: {
  28513. height: math.unit(12, "feet"),
  28514. weight: math.unit(35000, "lb"),
  28515. name: "Front",
  28516. image: {
  28517. source: "./media/characters/p0tat0/front.svg",
  28518. extra: 1065 / 921,
  28519. bottom: 55.7 / 1121.25
  28520. }
  28521. },
  28522. },
  28523. [
  28524. {
  28525. name: "Normal",
  28526. height: math.unit(12, "feet"),
  28527. default: true
  28528. },
  28529. ]
  28530. ))
  28531. characterMakers.push(() => makeCharacter(
  28532. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  28533. {
  28534. side: {
  28535. height: math.unit(6.5, "feet"),
  28536. weight: math.unit(800, "lb"),
  28537. name: "Side",
  28538. image: {
  28539. source: "./media/characters/dusk/side.svg",
  28540. extra: 615 / 373,
  28541. bottom: 53 / 664
  28542. }
  28543. },
  28544. sitting: {
  28545. height: math.unit(7, "feet"),
  28546. weight: math.unit(800, "lb"),
  28547. name: "Sitting",
  28548. image: {
  28549. source: "./media/characters/dusk/sitting.svg",
  28550. extra: 753 / 425,
  28551. bottom: 33 / 774
  28552. }
  28553. },
  28554. head: {
  28555. height: math.unit(6.1, "feet"),
  28556. name: "Head",
  28557. image: {
  28558. source: "./media/characters/dusk/head.svg"
  28559. }
  28560. },
  28561. },
  28562. [
  28563. {
  28564. name: "Normal",
  28565. height: math.unit(7, "feet"),
  28566. default: true
  28567. },
  28568. ]
  28569. ))
  28570. characterMakers.push(() => makeCharacter(
  28571. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  28572. {
  28573. front: {
  28574. height: math.unit(15, "feet"),
  28575. weight: math.unit(7000, "lb"),
  28576. name: "Front",
  28577. image: {
  28578. source: "./media/characters/jay-direwolf/front.svg",
  28579. extra: 1810 / 1732,
  28580. bottom: 66 / 1892
  28581. }
  28582. },
  28583. },
  28584. [
  28585. {
  28586. name: "Normal",
  28587. height: math.unit(15, "feet"),
  28588. default: true
  28589. },
  28590. ]
  28591. ))
  28592. characterMakers.push(() => makeCharacter(
  28593. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  28594. {
  28595. front: {
  28596. height: math.unit(4 + 9 / 12, "feet"),
  28597. weight: math.unit(130, "lb"),
  28598. name: "Front",
  28599. image: {
  28600. source: "./media/characters/anchovie/front.svg",
  28601. extra: 382 / 350,
  28602. bottom: 25 / 409
  28603. }
  28604. },
  28605. back: {
  28606. height: math.unit(4 + 9 / 12, "feet"),
  28607. weight: math.unit(130, "lb"),
  28608. name: "Back",
  28609. image: {
  28610. source: "./media/characters/anchovie/back.svg",
  28611. extra: 385 / 352,
  28612. bottom: 16.6 / 402
  28613. }
  28614. },
  28615. frontDressed: {
  28616. height: math.unit(4 + 9 / 12, "feet"),
  28617. weight: math.unit(130, "lb"),
  28618. name: "Front (Dressed)",
  28619. image: {
  28620. source: "./media/characters/anchovie/front-dressed.svg",
  28621. extra: 382 / 350,
  28622. bottom: 25 / 409
  28623. }
  28624. },
  28625. backDressed: {
  28626. height: math.unit(4 + 9 / 12, "feet"),
  28627. weight: math.unit(130, "lb"),
  28628. name: "Back (Dressed)",
  28629. image: {
  28630. source: "./media/characters/anchovie/back-dressed.svg",
  28631. extra: 385 / 352,
  28632. bottom: 16.6 / 402
  28633. }
  28634. },
  28635. },
  28636. [
  28637. {
  28638. name: "Micro",
  28639. height: math.unit(6.4, "inches")
  28640. },
  28641. {
  28642. name: "Normal",
  28643. height: math.unit(4 + 9 / 12, "feet"),
  28644. default: true
  28645. },
  28646. ]
  28647. ))
  28648. characterMakers.push(() => makeCharacter(
  28649. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  28650. {
  28651. front: {
  28652. height: math.unit(2, "meters"),
  28653. weight: math.unit(180, "lb"),
  28654. name: "Front",
  28655. image: {
  28656. source: "./media/characters/acidrenamon/front.svg",
  28657. extra: 987 / 890,
  28658. bottom: 22.8 / 1009
  28659. }
  28660. },
  28661. back: {
  28662. height: math.unit(2, "meters"),
  28663. weight: math.unit(180, "lb"),
  28664. name: "Back",
  28665. image: {
  28666. source: "./media/characters/acidrenamon/back.svg",
  28667. extra: 983 / 891,
  28668. bottom: 8.4 / 992
  28669. }
  28670. },
  28671. head: {
  28672. height: math.unit(1.92, "feet"),
  28673. name: "Head",
  28674. image: {
  28675. source: "./media/characters/acidrenamon/head.svg"
  28676. }
  28677. },
  28678. rump: {
  28679. height: math.unit(1.72, "feet"),
  28680. name: "Rump",
  28681. image: {
  28682. source: "./media/characters/acidrenamon/rump.svg"
  28683. }
  28684. },
  28685. tail: {
  28686. height: math.unit(4.2, "feet"),
  28687. name: "Tail",
  28688. image: {
  28689. source: "./media/characters/acidrenamon/tail.svg"
  28690. }
  28691. },
  28692. },
  28693. [
  28694. {
  28695. name: "Normal",
  28696. height: math.unit(2, "meters"),
  28697. default: true
  28698. },
  28699. {
  28700. name: "Minimacro",
  28701. height: math.unit(7, "meters")
  28702. },
  28703. {
  28704. name: "Macro",
  28705. height: math.unit(200, "meters")
  28706. },
  28707. {
  28708. name: "Gigamacro",
  28709. height: math.unit(0.2, "earths")
  28710. },
  28711. ]
  28712. ))
  28713. characterMakers.push(() => makeCharacter(
  28714. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  28715. {
  28716. front: {
  28717. height: math.unit(152, "feet"),
  28718. name: "Front",
  28719. image: {
  28720. source: "./media/characters/kenzie-lee/front.svg",
  28721. extra: 1869/1774,
  28722. bottom: 128/1997
  28723. }
  28724. },
  28725. side: {
  28726. height: math.unit(86, "feet"),
  28727. name: "Side",
  28728. image: {
  28729. source: "./media/characters/kenzie-lee/side.svg",
  28730. extra: 930/815,
  28731. bottom: 177/1107
  28732. }
  28733. },
  28734. paw: {
  28735. height: math.unit(15, "feet"),
  28736. name: "Paw",
  28737. image: {
  28738. source: "./media/characters/kenzie-lee/paw.svg"
  28739. }
  28740. },
  28741. },
  28742. [
  28743. {
  28744. name: "Kenzie Flea",
  28745. height: math.unit(2, "mm"),
  28746. default: true
  28747. },
  28748. {
  28749. name: "Micro",
  28750. height: math.unit(2, "inches")
  28751. },
  28752. {
  28753. name: "Normal",
  28754. height: math.unit(152, "feet")
  28755. },
  28756. {
  28757. name: "Megamacro",
  28758. height: math.unit(7, "miles")
  28759. },
  28760. {
  28761. name: "Gigamacro",
  28762. height: math.unit(8000, "miles")
  28763. },
  28764. ]
  28765. ))
  28766. characterMakers.push(() => makeCharacter(
  28767. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  28768. {
  28769. front: {
  28770. height: math.unit(6, "feet"),
  28771. name: "Front",
  28772. image: {
  28773. source: "./media/characters/withers/front.svg",
  28774. extra: 1935/1760,
  28775. bottom: 72/2007
  28776. }
  28777. },
  28778. back: {
  28779. height: math.unit(6, "feet"),
  28780. name: "Back",
  28781. image: {
  28782. source: "./media/characters/withers/back.svg",
  28783. extra: 1944/1792,
  28784. bottom: 12/1956
  28785. }
  28786. },
  28787. dressed: {
  28788. height: math.unit(6, "feet"),
  28789. name: "Dressed",
  28790. image: {
  28791. source: "./media/characters/withers/dressed.svg",
  28792. extra: 1937/1765,
  28793. bottom: 73/2010
  28794. }
  28795. },
  28796. phase1: {
  28797. height: math.unit(1.1, "feet"),
  28798. name: "Phase 1",
  28799. image: {
  28800. source: "./media/characters/withers/phase-1.svg",
  28801. extra: 1885/1232,
  28802. bottom: 0/1885
  28803. }
  28804. },
  28805. phase2: {
  28806. height: math.unit(1.05, "feet"),
  28807. name: "Phase 2",
  28808. image: {
  28809. source: "./media/characters/withers/phase-2.svg",
  28810. extra: 1792/1090,
  28811. bottom: 0/1792
  28812. }
  28813. },
  28814. partyWipe: {
  28815. height: math.unit(1.1, "feet"),
  28816. name: "Party Wipe",
  28817. image: {
  28818. source: "./media/characters/withers/party-wipe.svg",
  28819. extra: 1864/1207,
  28820. bottom: 0/1864
  28821. }
  28822. },
  28823. },
  28824. [
  28825. {
  28826. name: "Macro",
  28827. height: math.unit(167, "feet"),
  28828. default: true
  28829. },
  28830. {
  28831. name: "Megamacro",
  28832. height: math.unit(15, "miles")
  28833. }
  28834. ]
  28835. ))
  28836. characterMakers.push(() => makeCharacter(
  28837. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  28838. {
  28839. front: {
  28840. height: math.unit(6 + 7 / 12, "feet"),
  28841. weight: math.unit(250, "lb"),
  28842. name: "Front",
  28843. image: {
  28844. source: "./media/characters/nemoskii/front.svg",
  28845. extra: 2270 / 1734,
  28846. bottom: 86 / 2354
  28847. }
  28848. },
  28849. back: {
  28850. height: math.unit(6 + 7 / 12, "feet"),
  28851. weight: math.unit(250, "lb"),
  28852. name: "Back",
  28853. image: {
  28854. source: "./media/characters/nemoskii/back.svg",
  28855. extra: 1845 / 1788,
  28856. bottom: 10.5 / 1852
  28857. }
  28858. },
  28859. head: {
  28860. height: math.unit(1.31, "feet"),
  28861. name: "Head",
  28862. image: {
  28863. source: "./media/characters/nemoskii/head.svg"
  28864. }
  28865. },
  28866. },
  28867. [
  28868. {
  28869. name: "Micro",
  28870. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  28871. },
  28872. {
  28873. name: "Normal",
  28874. height: math.unit(6 + 7 / 12, "feet"),
  28875. default: true
  28876. },
  28877. {
  28878. name: "Macro",
  28879. height: math.unit((6 + 7 / 12) * 150, "feet")
  28880. },
  28881. {
  28882. name: "Macro+",
  28883. height: math.unit((6 + 7 / 12) * 500, "feet")
  28884. },
  28885. {
  28886. name: "Megamacro",
  28887. height: math.unit((6 + 7 / 12) * 100000, "feet")
  28888. },
  28889. ]
  28890. ))
  28891. characterMakers.push(() => makeCharacter(
  28892. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  28893. {
  28894. front: {
  28895. height: math.unit(1, "mile"),
  28896. weight: math.unit(265261.9, "lb"),
  28897. name: "Front",
  28898. image: {
  28899. source: "./media/characters/shui/front.svg",
  28900. extra: 1633 / 1564,
  28901. bottom: 91.5 / 1726
  28902. }
  28903. },
  28904. },
  28905. [
  28906. {
  28907. name: "Macro",
  28908. height: math.unit(1, "mile"),
  28909. default: true
  28910. },
  28911. ]
  28912. ))
  28913. characterMakers.push(() => makeCharacter(
  28914. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  28915. {
  28916. front: {
  28917. height: math.unit(12 + 6 / 12, "feet"),
  28918. weight: math.unit(1342, "lb"),
  28919. name: "Front",
  28920. image: {
  28921. source: "./media/characters/arokh-takakura/front.svg",
  28922. extra: 1089 / 1043,
  28923. bottom: 77.4 / 1176.7
  28924. }
  28925. },
  28926. back: {
  28927. height: math.unit(12 + 6 / 12, "feet"),
  28928. weight: math.unit(1342, "lb"),
  28929. name: "Back",
  28930. image: {
  28931. source: "./media/characters/arokh-takakura/back.svg",
  28932. extra: 1046 / 1019,
  28933. bottom: 102 / 1150
  28934. }
  28935. },
  28936. },
  28937. [
  28938. {
  28939. name: "Big",
  28940. height: math.unit(12 + 6 / 12, "feet"),
  28941. default: true
  28942. },
  28943. ]
  28944. ))
  28945. characterMakers.push(() => makeCharacter(
  28946. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  28947. {
  28948. front: {
  28949. height: math.unit(5 + 6 / 12, "feet"),
  28950. weight: math.unit(150, "lb"),
  28951. name: "Front",
  28952. image: {
  28953. source: "./media/characters/theo/front.svg",
  28954. extra: 1184 / 1131,
  28955. bottom: 7.4 / 1191
  28956. }
  28957. },
  28958. },
  28959. [
  28960. {
  28961. name: "Micro",
  28962. height: math.unit(5, "inches")
  28963. },
  28964. {
  28965. name: "Normal",
  28966. height: math.unit(5 + 6 / 12, "feet"),
  28967. default: true
  28968. },
  28969. ]
  28970. ))
  28971. characterMakers.push(() => makeCharacter(
  28972. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  28973. {
  28974. front: {
  28975. height: math.unit(5 + 9 / 12, "feet"),
  28976. weight: math.unit(130, "lb"),
  28977. name: "Front",
  28978. image: {
  28979. source: "./media/characters/cecelia-swift/front.svg",
  28980. extra: 502 / 484,
  28981. bottom: 23 / 523
  28982. }
  28983. },
  28984. back: {
  28985. height: math.unit(5 + 9 / 12, "feet"),
  28986. weight: math.unit(130, "lb"),
  28987. name: "Back",
  28988. image: {
  28989. source: "./media/characters/cecelia-swift/back.svg",
  28990. extra: 499 / 485,
  28991. bottom: 12 / 511
  28992. }
  28993. },
  28994. head: {
  28995. height: math.unit(0.90, "feet"),
  28996. name: "Head",
  28997. image: {
  28998. source: "./media/characters/cecelia-swift/head.svg"
  28999. }
  29000. },
  29001. rump: {
  29002. height: math.unit(1.75, "feet"),
  29003. name: "Rump",
  29004. image: {
  29005. source: "./media/characters/cecelia-swift/rump.svg"
  29006. }
  29007. },
  29008. },
  29009. [
  29010. {
  29011. name: "Normal",
  29012. height: math.unit(5 + 9 / 12, "feet"),
  29013. default: true
  29014. },
  29015. {
  29016. name: "Big",
  29017. height: math.unit(50, "feet")
  29018. },
  29019. {
  29020. name: "Macro",
  29021. height: math.unit(100, "feet")
  29022. },
  29023. {
  29024. name: "Macro+",
  29025. height: math.unit(500, "feet")
  29026. },
  29027. {
  29028. name: "Macro++",
  29029. height: math.unit(1000, "feet")
  29030. },
  29031. ]
  29032. ))
  29033. characterMakers.push(() => makeCharacter(
  29034. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  29035. {
  29036. front: {
  29037. height: math.unit(6, "feet"),
  29038. weight: math.unit(150, "lb"),
  29039. name: "Front",
  29040. image: {
  29041. source: "./media/characters/kaunan/front.svg",
  29042. extra: 2890 / 2523,
  29043. bottom: 49 / 2939
  29044. }
  29045. },
  29046. },
  29047. [
  29048. {
  29049. name: "Macro",
  29050. height: math.unit(150, "feet"),
  29051. default: true
  29052. },
  29053. ]
  29054. ))
  29055. characterMakers.push(() => makeCharacter(
  29056. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  29057. {
  29058. front: {
  29059. height: math.unit(175, "cm"),
  29060. weight: math.unit(60, "kg"),
  29061. name: "Front",
  29062. image: {
  29063. source: "./media/characters/fei/front.svg",
  29064. extra: 1873/1723,
  29065. bottom: 53/1926
  29066. }
  29067. },
  29068. },
  29069. [
  29070. {
  29071. name: "Mortal",
  29072. height: math.unit(175, "cm")
  29073. },
  29074. {
  29075. name: "Normal",
  29076. height: math.unit(3500, "m"),
  29077. default: true
  29078. },
  29079. {
  29080. name: "Stroll",
  29081. height: math.unit(17.5, "km")
  29082. },
  29083. {
  29084. name: "Showoff",
  29085. height: math.unit(175, "km")
  29086. },
  29087. ]
  29088. ))
  29089. characterMakers.push(() => makeCharacter(
  29090. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  29091. {
  29092. front: {
  29093. height: math.unit(7, "feet"),
  29094. weight: math.unit(1000, "kg"),
  29095. name: "Front",
  29096. image: {
  29097. source: "./media/characters/edrax/front.svg",
  29098. extra: 2838 / 2550,
  29099. bottom: 130 / 2968
  29100. }
  29101. },
  29102. },
  29103. [
  29104. {
  29105. name: "Small",
  29106. height: math.unit(7, "feet")
  29107. },
  29108. {
  29109. name: "Normal",
  29110. height: math.unit(1500, "meters")
  29111. },
  29112. {
  29113. name: "Mega",
  29114. height: math.unit(12000000, "km"),
  29115. default: true
  29116. },
  29117. {
  29118. name: "Megamacro",
  29119. height: math.unit(10600000, "lightyears")
  29120. },
  29121. {
  29122. name: "Hypermacro",
  29123. height: math.unit(256, "yottameters")
  29124. },
  29125. ]
  29126. ))
  29127. characterMakers.push(() => makeCharacter(
  29128. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  29129. {
  29130. front: {
  29131. height: math.unit(10, "feet"),
  29132. weight: math.unit(750, "lb"),
  29133. name: "Front",
  29134. image: {
  29135. source: "./media/characters/clove/front.svg",
  29136. extra: 1918/1751,
  29137. bottom: 52/1970
  29138. }
  29139. },
  29140. back: {
  29141. height: math.unit(10, "feet"),
  29142. weight: math.unit(750, "lb"),
  29143. name: "Back",
  29144. image: {
  29145. source: "./media/characters/clove/back.svg",
  29146. extra: 1912/1747,
  29147. bottom: 50/1962
  29148. }
  29149. },
  29150. },
  29151. [
  29152. {
  29153. name: "Normal",
  29154. height: math.unit(10, "feet"),
  29155. default: true
  29156. },
  29157. ]
  29158. ))
  29159. characterMakers.push(() => makeCharacter(
  29160. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  29161. {
  29162. front: {
  29163. height: math.unit(4, "feet"),
  29164. weight: math.unit(50, "lb"),
  29165. name: "Front",
  29166. image: {
  29167. source: "./media/characters/alex-rabbit/front.svg",
  29168. extra: 507 / 458,
  29169. bottom: 18.5 / 527
  29170. }
  29171. },
  29172. back: {
  29173. height: math.unit(4, "feet"),
  29174. weight: math.unit(50, "lb"),
  29175. name: "Back",
  29176. image: {
  29177. source: "./media/characters/alex-rabbit/back.svg",
  29178. extra: 502 / 460,
  29179. bottom: 18.9 / 521
  29180. }
  29181. },
  29182. },
  29183. [
  29184. {
  29185. name: "Normal",
  29186. height: math.unit(4, "feet"),
  29187. default: true
  29188. },
  29189. ]
  29190. ))
  29191. characterMakers.push(() => makeCharacter(
  29192. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  29193. {
  29194. front: {
  29195. height: math.unit(1 + 3 / 12, "feet"),
  29196. weight: math.unit(80, "lb"),
  29197. name: "Front",
  29198. image: {
  29199. source: "./media/characters/zander-rose/front.svg",
  29200. extra: 916 / 797,
  29201. bottom: 17 / 933
  29202. }
  29203. },
  29204. back: {
  29205. height: math.unit(1 + 3 / 12, "feet"),
  29206. weight: math.unit(80, "lb"),
  29207. name: "Back",
  29208. image: {
  29209. source: "./media/characters/zander-rose/back.svg",
  29210. extra: 903 / 779,
  29211. bottom: 31 / 934
  29212. }
  29213. },
  29214. },
  29215. [
  29216. {
  29217. name: "Normal",
  29218. height: math.unit(1 + 3 / 12, "feet"),
  29219. default: true
  29220. },
  29221. ]
  29222. ))
  29223. characterMakers.push(() => makeCharacter(
  29224. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  29225. {
  29226. anthro: {
  29227. height: math.unit(6, "feet"),
  29228. weight: math.unit(150, "lb"),
  29229. name: "Anthro",
  29230. image: {
  29231. source: "./media/characters/razz/anthro.svg",
  29232. extra: 1437 / 1343,
  29233. bottom: 48 / 1485
  29234. }
  29235. },
  29236. feral: {
  29237. height: math.unit(6, "feet"),
  29238. weight: math.unit(150, "lb"),
  29239. name: "Feral",
  29240. image: {
  29241. source: "./media/characters/razz/feral.svg",
  29242. extra: 2569 / 1385,
  29243. bottom: 95 / 2664
  29244. }
  29245. },
  29246. },
  29247. [
  29248. {
  29249. name: "Normal",
  29250. height: math.unit(6, "feet"),
  29251. default: true
  29252. },
  29253. ]
  29254. ))
  29255. characterMakers.push(() => makeCharacter(
  29256. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  29257. {
  29258. front: {
  29259. height: math.unit(9 + 4 / 12, "feet"),
  29260. weight: math.unit(500, "lb"),
  29261. name: "Front",
  29262. image: {
  29263. source: "./media/characters/morrigan/front.svg",
  29264. extra: 2707 / 2579,
  29265. bottom: 156 / 2863
  29266. }
  29267. },
  29268. },
  29269. [
  29270. {
  29271. name: "Normal",
  29272. height: math.unit(9 + 4 / 12, "feet"),
  29273. default: true
  29274. },
  29275. ]
  29276. ))
  29277. characterMakers.push(() => makeCharacter(
  29278. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  29279. {
  29280. front: {
  29281. height: math.unit(5, "stories"),
  29282. weight: math.unit(4000, "lb"),
  29283. name: "Front",
  29284. image: {
  29285. source: "./media/characters/jenene/front.svg",
  29286. extra: 1780 / 1710,
  29287. bottom: 57 / 1837
  29288. }
  29289. },
  29290. },
  29291. [
  29292. {
  29293. name: "Normal",
  29294. height: math.unit(5, "stories"),
  29295. default: true
  29296. },
  29297. ]
  29298. ))
  29299. characterMakers.push(() => makeCharacter(
  29300. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  29301. {
  29302. taurSfw: {
  29303. height: math.unit(10, "meters"),
  29304. weight: math.unit(17500, "kg"),
  29305. name: "Taur",
  29306. image: {
  29307. source: "./media/characters/faey/taur-sfw.svg",
  29308. extra: 1200 / 968,
  29309. bottom: 41 / 1241
  29310. }
  29311. },
  29312. chestmaw: {
  29313. height: math.unit(2.01, "meters"),
  29314. name: "Chestmaw",
  29315. image: {
  29316. source: "./media/characters/faey/chestmaw.svg"
  29317. }
  29318. },
  29319. foot: {
  29320. height: math.unit(2.43, "meters"),
  29321. name: "Foot",
  29322. image: {
  29323. source: "./media/characters/faey/foot.svg"
  29324. }
  29325. },
  29326. jaws: {
  29327. height: math.unit(1.66, "meters"),
  29328. name: "Jaws",
  29329. image: {
  29330. source: "./media/characters/faey/jaws.svg"
  29331. }
  29332. },
  29333. tongues: {
  29334. height: math.unit(2.01, "meters"),
  29335. name: "Tongues",
  29336. image: {
  29337. source: "./media/characters/faey/tongues.svg"
  29338. }
  29339. },
  29340. },
  29341. [
  29342. {
  29343. name: "Small",
  29344. height: math.unit(10, "meters"),
  29345. default: true
  29346. },
  29347. {
  29348. name: "Big",
  29349. height: math.unit(500000, "km")
  29350. },
  29351. ]
  29352. ))
  29353. characterMakers.push(() => makeCharacter(
  29354. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  29355. {
  29356. front: {
  29357. height: math.unit(7, "feet"),
  29358. weight: math.unit(275, "lb"),
  29359. name: "Front",
  29360. image: {
  29361. source: "./media/characters/roku/front.svg",
  29362. extra: 903 / 878,
  29363. bottom: 37 / 940
  29364. }
  29365. },
  29366. },
  29367. [
  29368. {
  29369. name: "Normal",
  29370. height: math.unit(7, "feet"),
  29371. default: true
  29372. },
  29373. {
  29374. name: "Macro",
  29375. height: math.unit(500, "feet")
  29376. },
  29377. {
  29378. name: "Megamacro",
  29379. height: math.unit(200, "miles")
  29380. },
  29381. ]
  29382. ))
  29383. characterMakers.push(() => makeCharacter(
  29384. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  29385. {
  29386. front: {
  29387. height: math.unit(6 + 2 / 12, "feet"),
  29388. weight: math.unit(150, "lb"),
  29389. name: "Front",
  29390. image: {
  29391. source: "./media/characters/lira/front.svg",
  29392. extra: 1727 / 1605,
  29393. bottom: 26 / 1753
  29394. }
  29395. },
  29396. back: {
  29397. height: math.unit(6 + 2 / 12, "feet"),
  29398. weight: math.unit(150, "lb"),
  29399. name: "Back",
  29400. image: {
  29401. source: "./media/characters/lira/back.svg",
  29402. extra: 1713/1621,
  29403. bottom: 20/1733
  29404. }
  29405. },
  29406. hand: {
  29407. height: math.unit(0.75, "feet"),
  29408. name: "Hand",
  29409. image: {
  29410. source: "./media/characters/lira/hand.svg"
  29411. }
  29412. },
  29413. maw: {
  29414. height: math.unit(0.65, "feet"),
  29415. name: "Maw",
  29416. image: {
  29417. source: "./media/characters/lira/maw.svg"
  29418. }
  29419. },
  29420. pawDigi: {
  29421. height: math.unit(1.6, "feet"),
  29422. name: "Paw Digi",
  29423. image: {
  29424. source: "./media/characters/lira/paw-digi.svg"
  29425. }
  29426. },
  29427. pawPlanti: {
  29428. height: math.unit(1.4, "feet"),
  29429. name: "Paw Planti",
  29430. image: {
  29431. source: "./media/characters/lira/paw-planti.svg"
  29432. }
  29433. },
  29434. },
  29435. [
  29436. {
  29437. name: "Normal",
  29438. height: math.unit(6 + 2 / 12, "feet"),
  29439. default: true
  29440. },
  29441. {
  29442. name: "Macro",
  29443. height: math.unit(100, "feet")
  29444. },
  29445. {
  29446. name: "Macro²",
  29447. height: math.unit(1600, "feet")
  29448. },
  29449. {
  29450. name: "Planetary",
  29451. height: math.unit(20, "earths")
  29452. },
  29453. ]
  29454. ))
  29455. characterMakers.push(() => makeCharacter(
  29456. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  29457. {
  29458. front: {
  29459. height: math.unit(6, "feet"),
  29460. weight: math.unit(150, "lb"),
  29461. name: "Front",
  29462. image: {
  29463. source: "./media/characters/hadjet/front.svg",
  29464. extra: 1480 / 1346,
  29465. bottom: 26 / 1506
  29466. }
  29467. },
  29468. frontNsfw: {
  29469. height: math.unit(6, "feet"),
  29470. weight: math.unit(150, "lb"),
  29471. name: "Front (NSFW)",
  29472. image: {
  29473. source: "./media/characters/hadjet/front-nsfw.svg",
  29474. extra: 1440 / 1358,
  29475. bottom: 52 / 1492
  29476. }
  29477. },
  29478. },
  29479. [
  29480. {
  29481. name: "Macro",
  29482. height: math.unit(10, "stories"),
  29483. default: true
  29484. },
  29485. {
  29486. name: "Megamacro",
  29487. height: math.unit(1.5, "miles")
  29488. },
  29489. {
  29490. name: "Megamacro+",
  29491. height: math.unit(5, "miles")
  29492. },
  29493. ]
  29494. ))
  29495. characterMakers.push(() => makeCharacter(
  29496. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  29497. {
  29498. side: {
  29499. height: math.unit(106, "feet"),
  29500. weight: math.unit(500, "tonnes"),
  29501. name: "Side",
  29502. image: {
  29503. source: "./media/characters/kodran/side.svg",
  29504. extra: 553 / 480,
  29505. bottom: 33 / 586
  29506. }
  29507. },
  29508. front: {
  29509. height: math.unit(132, "feet"),
  29510. weight: math.unit(500, "tonnes"),
  29511. name: "Front",
  29512. image: {
  29513. source: "./media/characters/kodran/front.svg",
  29514. extra: 667 / 643,
  29515. bottom: 42 / 709
  29516. }
  29517. },
  29518. flying: {
  29519. height: math.unit(350, "feet"),
  29520. weight: math.unit(500, "tonnes"),
  29521. name: "Flying",
  29522. image: {
  29523. source: "./media/characters/kodran/flying.svg"
  29524. }
  29525. },
  29526. foot: {
  29527. height: math.unit(33, "feet"),
  29528. name: "Foot",
  29529. image: {
  29530. source: "./media/characters/kodran/foot.svg"
  29531. }
  29532. },
  29533. footFront: {
  29534. height: math.unit(19, "feet"),
  29535. name: "Foot (Front)",
  29536. image: {
  29537. source: "./media/characters/kodran/foot-front.svg",
  29538. extra: 261 / 261,
  29539. bottom: 91 / 352
  29540. }
  29541. },
  29542. headFront: {
  29543. height: math.unit(53, "feet"),
  29544. name: "Head (Front)",
  29545. image: {
  29546. source: "./media/characters/kodran/head-front.svg"
  29547. }
  29548. },
  29549. headSide: {
  29550. height: math.unit(65, "feet"),
  29551. name: "Head (Side)",
  29552. image: {
  29553. source: "./media/characters/kodran/head-side.svg"
  29554. }
  29555. },
  29556. throat: {
  29557. height: math.unit(79, "feet"),
  29558. name: "Throat",
  29559. image: {
  29560. source: "./media/characters/kodran/throat.svg"
  29561. }
  29562. },
  29563. },
  29564. [
  29565. {
  29566. name: "Large",
  29567. height: math.unit(106, "feet"),
  29568. default: true
  29569. },
  29570. ]
  29571. ))
  29572. characterMakers.push(() => makeCharacter(
  29573. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  29574. {
  29575. side: {
  29576. height: math.unit(11, "feet"),
  29577. weight: math.unit(150, "lb"),
  29578. name: "Side",
  29579. image: {
  29580. source: "./media/characters/pyxaron/side.svg",
  29581. extra: 305 / 195,
  29582. bottom: 17 / 322
  29583. }
  29584. },
  29585. },
  29586. [
  29587. {
  29588. name: "Normal",
  29589. height: math.unit(11, "feet"),
  29590. default: true
  29591. },
  29592. ]
  29593. ))
  29594. characterMakers.push(() => makeCharacter(
  29595. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  29596. {
  29597. front: {
  29598. height: math.unit(6, "feet"),
  29599. weight: math.unit(150, "lb"),
  29600. name: "Front",
  29601. image: {
  29602. source: "./media/characters/meep/front.svg",
  29603. extra: 88 / 80,
  29604. bottom: 6 / 94
  29605. }
  29606. },
  29607. },
  29608. [
  29609. {
  29610. name: "Fun Sized",
  29611. height: math.unit(2, "inches"),
  29612. default: true
  29613. },
  29614. {
  29615. name: "Friend Sized",
  29616. height: math.unit(8, "inches")
  29617. },
  29618. ]
  29619. ))
  29620. characterMakers.push(() => makeCharacter(
  29621. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  29622. {
  29623. front: {
  29624. height: math.unit(15, "feet"),
  29625. weight: math.unit(2500, "lb"),
  29626. name: "Front",
  29627. image: {
  29628. source: "./media/characters/holly-rabbit/front.svg",
  29629. extra: 1433 / 1233,
  29630. bottom: 125 / 1558
  29631. }
  29632. },
  29633. dick: {
  29634. height: math.unit(4.6, "feet"),
  29635. name: "Dick",
  29636. image: {
  29637. source: "./media/characters/holly-rabbit/dick.svg"
  29638. }
  29639. },
  29640. },
  29641. [
  29642. {
  29643. name: "Normal",
  29644. height: math.unit(15, "feet"),
  29645. default: true
  29646. },
  29647. {
  29648. name: "Macro",
  29649. height: math.unit(250, "feet")
  29650. },
  29651. {
  29652. name: "Macro+",
  29653. height: math.unit(2500, "feet")
  29654. },
  29655. ]
  29656. ))
  29657. characterMakers.push(() => makeCharacter(
  29658. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  29659. {
  29660. front: {
  29661. height: math.unit(3.02, "meters"),
  29662. weight: math.unit(500, "kg"),
  29663. name: "Front",
  29664. image: {
  29665. source: "./media/characters/drena/front.svg",
  29666. extra: 282 / 243,
  29667. bottom: 8 / 290
  29668. }
  29669. },
  29670. side: {
  29671. height: math.unit(3.02, "meters"),
  29672. weight: math.unit(500, "kg"),
  29673. name: "Side",
  29674. image: {
  29675. source: "./media/characters/drena/side.svg",
  29676. extra: 280 / 245,
  29677. bottom: 10 / 290
  29678. }
  29679. },
  29680. back: {
  29681. height: math.unit(3.02, "meters"),
  29682. weight: math.unit(500, "kg"),
  29683. name: "Back",
  29684. image: {
  29685. source: "./media/characters/drena/back.svg",
  29686. extra: 278 / 243,
  29687. bottom: 2 / 280
  29688. }
  29689. },
  29690. foot: {
  29691. height: math.unit(0.75, "meters"),
  29692. name: "Foot",
  29693. image: {
  29694. source: "./media/characters/drena/foot.svg"
  29695. }
  29696. },
  29697. maw: {
  29698. height: math.unit(0.82, "meters"),
  29699. name: "Maw",
  29700. image: {
  29701. source: "./media/characters/drena/maw.svg"
  29702. }
  29703. },
  29704. eating: {
  29705. height: math.unit(0.75, "meters"),
  29706. name: "Eating",
  29707. image: {
  29708. source: "./media/characters/drena/eating.svg"
  29709. }
  29710. },
  29711. rump: {
  29712. height: math.unit(0.93, "meters"),
  29713. name: "Rump",
  29714. image: {
  29715. source: "./media/characters/drena/rump.svg"
  29716. }
  29717. },
  29718. },
  29719. [
  29720. {
  29721. name: "Normal",
  29722. height: math.unit(3.02, "meters"),
  29723. default: true
  29724. },
  29725. ]
  29726. ))
  29727. characterMakers.push(() => makeCharacter(
  29728. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  29729. {
  29730. front: {
  29731. height: math.unit(6 + 4 / 12, "feet"),
  29732. weight: math.unit(250, "lb"),
  29733. name: "Front",
  29734. image: {
  29735. source: "./media/characters/remmyzilla/front.svg",
  29736. extra: 4033 / 3588,
  29737. bottom: 123 / 4156
  29738. }
  29739. },
  29740. back: {
  29741. height: math.unit(6 + 4 / 12, "feet"),
  29742. weight: math.unit(250, "lb"),
  29743. name: "Back",
  29744. image: {
  29745. source: "./media/characters/remmyzilla/back.svg",
  29746. extra: 2687 / 2555,
  29747. bottom: 48 / 2735
  29748. }
  29749. },
  29750. paw: {
  29751. height: math.unit(1.73, "feet"),
  29752. name: "Paw",
  29753. image: {
  29754. source: "./media/characters/remmyzilla/paw.svg"
  29755. },
  29756. extraAttributes: {
  29757. "toeSize": {
  29758. name: "Toe Size",
  29759. power: 2,
  29760. type: "area",
  29761. base: math.unit(0.0035, "m^2")
  29762. },
  29763. "padSize": {
  29764. name: "Pad Size",
  29765. power: 2,
  29766. type: "area",
  29767. base: math.unit(0.015, "m^2")
  29768. },
  29769. "pawsize": {
  29770. name: "Paw Size",
  29771. power: 2,
  29772. type: "area",
  29773. base: math.unit(0.072, "m^2")
  29774. },
  29775. }
  29776. },
  29777. maw: {
  29778. height: math.unit(1.73, "feet"),
  29779. name: "Maw",
  29780. image: {
  29781. source: "./media/characters/remmyzilla/maw.svg"
  29782. }
  29783. },
  29784. },
  29785. [
  29786. {
  29787. name: "Normal",
  29788. height: math.unit(6 + 4 / 12, "feet")
  29789. },
  29790. {
  29791. name: "Minimacro",
  29792. height: math.unit(12 + 8 / 12, "feet")
  29793. },
  29794. {
  29795. name: "Normal",
  29796. height: math.unit(640, "feet"),
  29797. default: true
  29798. },
  29799. {
  29800. name: "Megamacro",
  29801. height: math.unit(6400, "feet")
  29802. },
  29803. {
  29804. name: "Gigamacro",
  29805. height: math.unit(64000, "miles")
  29806. },
  29807. ]
  29808. ))
  29809. characterMakers.push(() => makeCharacter(
  29810. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  29811. {
  29812. front: {
  29813. height: math.unit(2.5, "meters"),
  29814. weight: math.unit(300, "lb"),
  29815. name: "Front",
  29816. image: {
  29817. source: "./media/characters/lawrence/front.svg",
  29818. extra: 357 / 335,
  29819. bottom: 30 / 387
  29820. }
  29821. },
  29822. back: {
  29823. height: math.unit(2.5, "meters"),
  29824. weight: math.unit(300, "lb"),
  29825. name: "Back",
  29826. image: {
  29827. source: "./media/characters/lawrence/back.svg",
  29828. extra: 357 / 338,
  29829. bottom: 16 / 373
  29830. }
  29831. },
  29832. head: {
  29833. height: math.unit(0.9, "meter"),
  29834. name: "Head",
  29835. image: {
  29836. source: "./media/characters/lawrence/head.svg"
  29837. }
  29838. },
  29839. maw: {
  29840. height: math.unit(0.7, "meter"),
  29841. name: "Maw",
  29842. image: {
  29843. source: "./media/characters/lawrence/maw.svg"
  29844. }
  29845. },
  29846. footBottom: {
  29847. height: math.unit(0.5, "meter"),
  29848. name: "Foot (Bottom)",
  29849. image: {
  29850. source: "./media/characters/lawrence/foot-bottom.svg"
  29851. }
  29852. },
  29853. footTop: {
  29854. height: math.unit(0.5, "meter"),
  29855. name: "Foot (Top)",
  29856. image: {
  29857. source: "./media/characters/lawrence/foot-top.svg"
  29858. }
  29859. },
  29860. },
  29861. [
  29862. {
  29863. name: "Normal",
  29864. height: math.unit(2.5, "meters"),
  29865. default: true
  29866. },
  29867. {
  29868. name: "Macro",
  29869. height: math.unit(95, "meters")
  29870. },
  29871. {
  29872. name: "Megamacro",
  29873. height: math.unit(150, "km")
  29874. },
  29875. ]
  29876. ))
  29877. characterMakers.push(() => makeCharacter(
  29878. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  29879. {
  29880. front: {
  29881. height: math.unit(4.2, "meters"),
  29882. name: "Front",
  29883. image: {
  29884. source: "./media/characters/sydney/front.svg",
  29885. extra: 1323 / 1277,
  29886. bottom: 111 / 1434
  29887. }
  29888. },
  29889. },
  29890. [
  29891. {
  29892. name: "Normal",
  29893. height: math.unit(4.2, "meters"),
  29894. default: true
  29895. },
  29896. ]
  29897. ))
  29898. characterMakers.push(() => makeCharacter(
  29899. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  29900. {
  29901. back: {
  29902. height: math.unit(201, "feet"),
  29903. name: "Back",
  29904. image: {
  29905. source: "./media/characters/jessica/back.svg",
  29906. extra: 273 / 259,
  29907. bottom: 7 / 280
  29908. }
  29909. },
  29910. },
  29911. [
  29912. {
  29913. name: "Normal",
  29914. height: math.unit(201, "feet"),
  29915. default: true
  29916. },
  29917. {
  29918. name: "Megamacro",
  29919. height: math.unit(8, "miles")
  29920. },
  29921. ]
  29922. ))
  29923. characterMakers.push(() => makeCharacter(
  29924. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  29925. {
  29926. side: {
  29927. height: math.unit(5.6, "m"),
  29928. weight: math.unit(8000, "kg"),
  29929. name: "Side",
  29930. image: {
  29931. source: "./media/characters/victoria/side.svg",
  29932. extra: 1542/1229,
  29933. bottom: 124/1666
  29934. }
  29935. },
  29936. maw: {
  29937. height: math.unit(7.14, "feet"),
  29938. name: "Maw",
  29939. image: {
  29940. source: "./media/characters/victoria/maw.svg"
  29941. }
  29942. },
  29943. },
  29944. [
  29945. {
  29946. name: "Normal",
  29947. height: math.unit(5.6, "m"),
  29948. default: true
  29949. },
  29950. ]
  29951. ))
  29952. characterMakers.push(() => makeCharacter(
  29953. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  29954. {
  29955. front: {
  29956. height: math.unit(5 + 6 / 12, "feet"),
  29957. name: "Front",
  29958. image: {
  29959. source: "./media/characters/cat/front.svg",
  29960. extra: 1449/1295,
  29961. bottom: 34/1483
  29962. },
  29963. form: "cat",
  29964. default: true
  29965. },
  29966. back: {
  29967. height: math.unit(5 + 6 / 12, "feet"),
  29968. name: "Back",
  29969. image: {
  29970. source: "./media/characters/cat/back.svg",
  29971. extra: 1466/1301,
  29972. bottom: 19/1485
  29973. },
  29974. form: "cat"
  29975. },
  29976. taur: {
  29977. height: math.unit(7, "feet"),
  29978. name: "Taur",
  29979. image: {
  29980. source: "./media/characters/cat/taur.svg",
  29981. extra: 1389/1233,
  29982. bottom: 83/1472
  29983. },
  29984. form: "taur",
  29985. default: true
  29986. },
  29987. lucarioFront: {
  29988. height: math.unit(4, "feet"),
  29989. name: "Lucario (Front)",
  29990. image: {
  29991. source: "./media/characters/cat/lucario-front.svg",
  29992. extra: 1149/1019,
  29993. bottom: 84/1233
  29994. },
  29995. form: "lucario",
  29996. default: true
  29997. },
  29998. lucarioBack: {
  29999. height: math.unit(4, "feet"),
  30000. name: "Lucario (Back)",
  30001. image: {
  30002. source: "./media/characters/cat/lucario-back.svg",
  30003. extra: 1190/1059,
  30004. bottom: 33/1223
  30005. },
  30006. form: "lucario"
  30007. },
  30008. megaLucario: {
  30009. height: math.unit(4, "feet"),
  30010. name: "Mega Lucario",
  30011. image: {
  30012. source: "./media/characters/cat/mega-lucario.svg",
  30013. extra: 1515 / 1319,
  30014. bottom: 63 / 1578
  30015. },
  30016. form: "lucario"
  30017. },
  30018. nickit: {
  30019. height: math.unit(2, "feet"),
  30020. name: "Nickit",
  30021. image: {
  30022. source: "./media/characters/cat/nickit.svg",
  30023. extra: 1980 / 1585,
  30024. bottom: 102 / 2082
  30025. },
  30026. form: "nickit",
  30027. default: true
  30028. },
  30029. lopunnyFront: {
  30030. height: math.unit(5, "feet"),
  30031. name: "Lopunny (Front)",
  30032. image: {
  30033. source: "./media/characters/cat/lopunny-front.svg",
  30034. extra: 1782 / 1469,
  30035. bottom: 38 / 1820
  30036. },
  30037. form: "lopunny",
  30038. default: true
  30039. },
  30040. lopunnyBack: {
  30041. height: math.unit(5, "feet"),
  30042. name: "Lopunny (Back)",
  30043. image: {
  30044. source: "./media/characters/cat/lopunny-back.svg",
  30045. extra: 1660 / 1490,
  30046. bottom: 25 / 1685
  30047. },
  30048. form: "lopunny"
  30049. },
  30050. },
  30051. [
  30052. {
  30053. name: "Really small",
  30054. height: math.unit(1, "nm")
  30055. },
  30056. {
  30057. name: "Micro",
  30058. height: math.unit(5, "inches")
  30059. },
  30060. {
  30061. name: "Normal",
  30062. height: math.unit(5 + 6 / 12, "feet"),
  30063. default: true
  30064. },
  30065. {
  30066. name: "Macro",
  30067. height: math.unit(50, "feet")
  30068. },
  30069. {
  30070. name: "Macro+",
  30071. height: math.unit(150, "feet")
  30072. },
  30073. {
  30074. name: "Megamacro",
  30075. height: math.unit(100, "miles")
  30076. },
  30077. ]
  30078. ))
  30079. characterMakers.push(() => makeCharacter(
  30080. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  30081. {
  30082. front: {
  30083. height: math.unit(63.4, "meters"),
  30084. weight: math.unit(3.28349e+6, "kilograms"),
  30085. name: "Front",
  30086. image: {
  30087. source: "./media/characters/kirina-violet/front.svg",
  30088. extra: 2812 / 2725,
  30089. bottom: 0 / 2812
  30090. }
  30091. },
  30092. back: {
  30093. height: math.unit(63.4, "meters"),
  30094. weight: math.unit(3.28349e+6, "kilograms"),
  30095. name: "Back",
  30096. image: {
  30097. source: "./media/characters/kirina-violet/back.svg",
  30098. extra: 2812 / 2725,
  30099. bottom: 0 / 2812
  30100. }
  30101. },
  30102. mouth: {
  30103. height: math.unit(4.35, "meters"),
  30104. name: "Mouth",
  30105. image: {
  30106. source: "./media/characters/kirina-violet/mouth.svg"
  30107. }
  30108. },
  30109. paw: {
  30110. height: math.unit(5.6, "meters"),
  30111. name: "Paw",
  30112. image: {
  30113. source: "./media/characters/kirina-violet/paw.svg"
  30114. }
  30115. },
  30116. tail: {
  30117. height: math.unit(18, "meters"),
  30118. name: "Tail",
  30119. image: {
  30120. source: "./media/characters/kirina-violet/tail.svg"
  30121. }
  30122. },
  30123. },
  30124. [
  30125. {
  30126. name: "Macro",
  30127. height: math.unit(63.4, "meters"),
  30128. default: true
  30129. },
  30130. ]
  30131. ))
  30132. characterMakers.push(() => makeCharacter(
  30133. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  30134. {
  30135. front: {
  30136. height: math.unit(75, "feet"),
  30137. name: "Front",
  30138. image: {
  30139. source: "./media/characters/cat-gigachu/front.svg",
  30140. extra: 1239/1027,
  30141. bottom: 32/1271
  30142. }
  30143. },
  30144. back: {
  30145. height: math.unit(75, "feet"),
  30146. name: "Back",
  30147. image: {
  30148. source: "./media/characters/cat-gigachu/back.svg",
  30149. extra: 1229/1030,
  30150. bottom: 9/1238
  30151. }
  30152. },
  30153. },
  30154. [
  30155. {
  30156. name: "Dynamax",
  30157. height: math.unit(75, "feet"),
  30158. default: true
  30159. },
  30160. ]
  30161. ))
  30162. characterMakers.push(() => makeCharacter(
  30163. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  30164. {
  30165. front: {
  30166. height: math.unit(6, "feet"),
  30167. weight: math.unit(150, "lb"),
  30168. name: "Front",
  30169. image: {
  30170. source: "./media/characters/sfaiyan/front.svg",
  30171. extra: 999 / 978,
  30172. bottom: 5 / 1004
  30173. }
  30174. },
  30175. },
  30176. [
  30177. {
  30178. name: "Normal",
  30179. height: math.unit(1.82, "meters")
  30180. },
  30181. {
  30182. name: "Giant",
  30183. height: math.unit(2.27, "km"),
  30184. default: true
  30185. },
  30186. ]
  30187. ))
  30188. characterMakers.push(() => makeCharacter(
  30189. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  30190. {
  30191. front: {
  30192. height: math.unit(179, "cm"),
  30193. weight: math.unit(100, "kg"),
  30194. name: "Front",
  30195. image: {
  30196. source: "./media/characters/raunehkeli/front.svg",
  30197. extra: 1934 / 1926,
  30198. bottom: 0 / 1934
  30199. }
  30200. },
  30201. },
  30202. [
  30203. {
  30204. name: "Normal",
  30205. height: math.unit(179, "cm")
  30206. },
  30207. {
  30208. name: "Maximum",
  30209. height: math.unit(575, "meters"),
  30210. default: true
  30211. },
  30212. ]
  30213. ))
  30214. characterMakers.push(() => makeCharacter(
  30215. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  30216. {
  30217. front: {
  30218. height: math.unit(6, "feet"),
  30219. weight: math.unit(150, "lb"),
  30220. name: "Front",
  30221. image: {
  30222. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  30223. extra: 2625 / 2518,
  30224. bottom: 60 / 2685
  30225. }
  30226. },
  30227. },
  30228. [
  30229. {
  30230. name: "Normal",
  30231. height: math.unit(6 + 2 / 12, "feet")
  30232. },
  30233. {
  30234. name: "Macro",
  30235. height: math.unit(1180, "feet"),
  30236. default: true
  30237. },
  30238. ]
  30239. ))
  30240. characterMakers.push(() => makeCharacter(
  30241. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  30242. {
  30243. front: {
  30244. height: math.unit(5 + 6 / 12, "feet"),
  30245. weight: math.unit(108, "lb"),
  30246. name: "Front",
  30247. image: {
  30248. source: "./media/characters/lilith-zott/front.svg",
  30249. extra: 2510 / 2238,
  30250. bottom: 100 / 2610
  30251. }
  30252. },
  30253. frontDressed: {
  30254. height: math.unit(5 + 6 / 12, "feet"),
  30255. weight: math.unit(108, "lb"),
  30256. name: "Front (Dressed)",
  30257. image: {
  30258. source: "./media/characters/lilith-zott/front-dressed.svg",
  30259. extra: 2510 / 2238,
  30260. bottom: 100 / 2610
  30261. }
  30262. },
  30263. },
  30264. [
  30265. {
  30266. name: "Normal",
  30267. height: math.unit(5 + 6 / 12, "feet")
  30268. },
  30269. {
  30270. name: "Macro",
  30271. height: math.unit(1030, "feet"),
  30272. default: true
  30273. },
  30274. ]
  30275. ))
  30276. characterMakers.push(() => makeCharacter(
  30277. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  30278. {
  30279. front: {
  30280. height: math.unit(6, "feet"),
  30281. weight: math.unit(150, "lb"),
  30282. name: "Front",
  30283. image: {
  30284. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  30285. extra: 2567 / 2435,
  30286. bottom: 39 / 2606
  30287. }
  30288. },
  30289. frontSuper: {
  30290. height: math.unit(6, "feet"),
  30291. name: "Front (Super)",
  30292. image: {
  30293. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  30294. extra: 2567 / 2435,
  30295. bottom: 39 / 2606
  30296. }
  30297. },
  30298. },
  30299. [
  30300. {
  30301. name: "Normal",
  30302. height: math.unit(5 + 10 / 12, "feet")
  30303. },
  30304. {
  30305. name: "Macro",
  30306. height: math.unit(1100, "feet"),
  30307. default: true
  30308. },
  30309. ]
  30310. ))
  30311. characterMakers.push(() => makeCharacter(
  30312. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  30313. {
  30314. front: {
  30315. height: math.unit(100, "miles"),
  30316. name: "Front",
  30317. image: {
  30318. source: "./media/characters/sona/front.svg",
  30319. extra: 2433 / 2201,
  30320. bottom: 53 / 2486
  30321. }
  30322. },
  30323. foot: {
  30324. height: math.unit(16.1, "miles"),
  30325. name: "Foot",
  30326. image: {
  30327. source: "./media/characters/sona/foot.svg"
  30328. }
  30329. },
  30330. },
  30331. [
  30332. {
  30333. name: "Macro",
  30334. height: math.unit(100, "miles"),
  30335. default: true
  30336. },
  30337. ]
  30338. ))
  30339. characterMakers.push(() => makeCharacter(
  30340. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  30341. {
  30342. front: {
  30343. height: math.unit(6, "feet"),
  30344. weight: math.unit(150, "lb"),
  30345. name: "Front",
  30346. image: {
  30347. source: "./media/characters/bailey/front.svg",
  30348. extra: 1778 / 1724,
  30349. bottom: 30 / 1808
  30350. }
  30351. },
  30352. },
  30353. [
  30354. {
  30355. name: "Micro",
  30356. height: math.unit(4, "inches")
  30357. },
  30358. {
  30359. name: "Normal",
  30360. height: math.unit(5 + 5 / 12, "feet"),
  30361. default: true
  30362. },
  30363. {
  30364. name: "Macro",
  30365. height: math.unit(250, "feet")
  30366. },
  30367. {
  30368. name: "Megamacro",
  30369. height: math.unit(100, "miles")
  30370. },
  30371. ]
  30372. ))
  30373. characterMakers.push(() => makeCharacter(
  30374. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  30375. {
  30376. front: {
  30377. height: math.unit(5 + 2 / 12, "feet"),
  30378. weight: math.unit(120, "lb"),
  30379. name: "Front",
  30380. image: {
  30381. source: "./media/characters/snaps/front.svg",
  30382. extra: 2370 / 2177,
  30383. bottom: 48 / 2418
  30384. }
  30385. },
  30386. back: {
  30387. height: math.unit(5 + 2 / 12, "feet"),
  30388. weight: math.unit(120, "lb"),
  30389. name: "Back",
  30390. image: {
  30391. source: "./media/characters/snaps/back.svg",
  30392. extra: 2408 / 2258,
  30393. bottom: 15 / 2423
  30394. }
  30395. },
  30396. },
  30397. [
  30398. {
  30399. name: "Micro",
  30400. height: math.unit(9, "inches")
  30401. },
  30402. {
  30403. name: "Normal",
  30404. height: math.unit(5 + 2 / 12, "feet"),
  30405. default: true
  30406. },
  30407. {
  30408. name: "Mini Macro",
  30409. height: math.unit(10, "feet")
  30410. },
  30411. ]
  30412. ))
  30413. characterMakers.push(() => makeCharacter(
  30414. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  30415. {
  30416. front: {
  30417. height: math.unit(1.8, "meters"),
  30418. weight: math.unit(85, "kg"),
  30419. name: "Front",
  30420. image: {
  30421. source: "./media/characters/azteck/front.svg",
  30422. extra: 2815 / 2625,
  30423. bottom: 89 / 2904
  30424. }
  30425. },
  30426. back: {
  30427. height: math.unit(1.8, "meters"),
  30428. weight: math.unit(85, "kg"),
  30429. name: "Back",
  30430. image: {
  30431. source: "./media/characters/azteck/back.svg",
  30432. extra: 2856 / 2648,
  30433. bottom: 85 / 2941
  30434. }
  30435. },
  30436. frontDressed: {
  30437. height: math.unit(1.8, "meters"),
  30438. weight: math.unit(85, "kg"),
  30439. name: "Front (Dressed)",
  30440. image: {
  30441. source: "./media/characters/azteck/front-dressed.svg",
  30442. extra: 2147 / 2003,
  30443. bottom: 68 / 2215
  30444. }
  30445. },
  30446. head: {
  30447. height: math.unit(0.47, "meters"),
  30448. weight: math.unit(85, "kg"),
  30449. name: "Head",
  30450. image: {
  30451. source: "./media/characters/azteck/head.svg"
  30452. }
  30453. },
  30454. },
  30455. [
  30456. {
  30457. name: "Bite sized",
  30458. height: math.unit(16, "cm")
  30459. },
  30460. {
  30461. name: "Normal",
  30462. height: math.unit(1.8, "meters"),
  30463. default: true
  30464. },
  30465. ]
  30466. ))
  30467. characterMakers.push(() => makeCharacter(
  30468. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  30469. {
  30470. front: {
  30471. height: math.unit(6, "feet"),
  30472. weight: math.unit(150, "lb"),
  30473. name: "Front",
  30474. image: {
  30475. source: "./media/characters/pidge/front.svg",
  30476. extra: 1936/1820,
  30477. bottom: 0/1936
  30478. }
  30479. },
  30480. back: {
  30481. height: math.unit(6, "feet"),
  30482. weight: math.unit(150, "lb"),
  30483. name: "Back",
  30484. image: {
  30485. source: "./media/characters/pidge/back.svg",
  30486. extra: 1938/1843,
  30487. bottom: 0/1938
  30488. }
  30489. },
  30490. casual: {
  30491. height: math.unit(6, "feet"),
  30492. weight: math.unit(150, "lb"),
  30493. name: "Casual",
  30494. image: {
  30495. source: "./media/characters/pidge/casual.svg",
  30496. extra: 1936/1820,
  30497. bottom: 0/1936
  30498. }
  30499. },
  30500. tech: {
  30501. height: math.unit(6, "feet"),
  30502. weight: math.unit(150, "lb"),
  30503. name: "Tech",
  30504. image: {
  30505. source: "./media/characters/pidge/tech.svg",
  30506. extra: 1802/1682,
  30507. bottom: 0/1802
  30508. }
  30509. },
  30510. head: {
  30511. height: math.unit(1.61, "feet"),
  30512. name: "Head",
  30513. image: {
  30514. source: "./media/characters/pidge/head.svg"
  30515. }
  30516. },
  30517. collar: {
  30518. height: math.unit(0.82, "feet"),
  30519. name: "Collar",
  30520. image: {
  30521. source: "./media/characters/pidge/collar.svg"
  30522. }
  30523. },
  30524. },
  30525. [
  30526. {
  30527. name: "Macro",
  30528. height: math.unit(2, "mile"),
  30529. default: true
  30530. },
  30531. {
  30532. name: "PUPPY",
  30533. height: math.unit(20, "miles")
  30534. },
  30535. ]
  30536. ))
  30537. characterMakers.push(() => makeCharacter(
  30538. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  30539. {
  30540. front: {
  30541. height: math.unit(6, "feet"),
  30542. weight: math.unit(150, "lb"),
  30543. name: "Front",
  30544. image: {
  30545. source: "./media/characters/en/front.svg",
  30546. extra: 1697 / 1563,
  30547. bottom: 103 / 1800
  30548. }
  30549. },
  30550. back: {
  30551. height: math.unit(6, "feet"),
  30552. weight: math.unit(150, "lb"),
  30553. name: "Back",
  30554. image: {
  30555. source: "./media/characters/en/back.svg",
  30556. extra: 1700 / 1570,
  30557. bottom: 51 / 1751
  30558. }
  30559. },
  30560. frontDressed: {
  30561. height: math.unit(6, "feet"),
  30562. weight: math.unit(150, "lb"),
  30563. name: "Front (Dressed)",
  30564. image: {
  30565. source: "./media/characters/en/front-dressed.svg",
  30566. extra: 1697 / 1563,
  30567. bottom: 103 / 1800
  30568. }
  30569. },
  30570. backDressed: {
  30571. height: math.unit(6, "feet"),
  30572. weight: math.unit(150, "lb"),
  30573. name: "Back (Dressed)",
  30574. image: {
  30575. source: "./media/characters/en/back-dressed.svg",
  30576. extra: 1700 / 1570,
  30577. bottom: 51 / 1751
  30578. }
  30579. },
  30580. },
  30581. [
  30582. {
  30583. name: "Macro",
  30584. height: math.unit(210, "feet"),
  30585. default: true
  30586. },
  30587. ]
  30588. ))
  30589. characterMakers.push(() => makeCharacter(
  30590. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  30591. {
  30592. front: {
  30593. height: math.unit(6, "feet"),
  30594. weight: math.unit(150, "lb"),
  30595. name: "Front",
  30596. image: {
  30597. source: "./media/characters/haze-orris/front.svg",
  30598. extra: 3975 / 3525,
  30599. bottom: 137 / 4112
  30600. }
  30601. },
  30602. },
  30603. [
  30604. {
  30605. name: "Micro",
  30606. height: math.unit(150, "mm"),
  30607. default: true
  30608. },
  30609. ]
  30610. ))
  30611. characterMakers.push(() => makeCharacter(
  30612. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  30613. {
  30614. front: {
  30615. height: math.unit(6, "feet"),
  30616. weight: math.unit(150, "lb"),
  30617. name: "Front",
  30618. image: {
  30619. source: "./media/characters/casselene-yaro/front.svg",
  30620. extra: 4721 / 4541,
  30621. bottom: 82 / 4803
  30622. }
  30623. },
  30624. back: {
  30625. height: math.unit(6, "feet"),
  30626. weight: math.unit(150, "lb"),
  30627. name: "Back",
  30628. image: {
  30629. source: "./media/characters/casselene-yaro/back.svg",
  30630. extra: 4569 / 4377,
  30631. bottom: 69 / 4638
  30632. }
  30633. },
  30634. dressed: {
  30635. height: math.unit(6, "feet"),
  30636. weight: math.unit(150, "lb"),
  30637. name: "Dressed",
  30638. image: {
  30639. source: "./media/characters/casselene-yaro/dressed.svg",
  30640. extra: 4721 / 4541,
  30641. bottom: 82 / 4803
  30642. }
  30643. },
  30644. maw: {
  30645. height: math.unit(1, "feet"),
  30646. name: "Maw",
  30647. image: {
  30648. source: "./media/characters/casselene-yaro/maw.svg"
  30649. }
  30650. },
  30651. },
  30652. [
  30653. {
  30654. name: "Macro",
  30655. height: math.unit(190, "feet"),
  30656. default: true
  30657. },
  30658. ]
  30659. ))
  30660. characterMakers.push(() => makeCharacter(
  30661. { name: "Platine", species: ["raven"], tags: ["anthro"] },
  30662. {
  30663. front: {
  30664. height: math.unit(10, "feet"),
  30665. weight: math.unit(15015, "lb"),
  30666. name: "Front",
  30667. image: {
  30668. source: "./media/characters/platine/front.svg",
  30669. extra: 1428/1353,
  30670. bottom: 31/1459
  30671. }
  30672. },
  30673. },
  30674. [
  30675. {
  30676. name: "Normal",
  30677. height: math.unit(10, "feet"),
  30678. default: true
  30679. },
  30680. {
  30681. name: "Macro",
  30682. height: math.unit(100, "feet")
  30683. },
  30684. {
  30685. name: "Megamacro",
  30686. height: math.unit(1000, "feet")
  30687. },
  30688. ]
  30689. ))
  30690. characterMakers.push(() => makeCharacter(
  30691. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  30692. {
  30693. front: {
  30694. height: math.unit(15 + 5 / 12, "feet"),
  30695. weight: math.unit(4600, "lb"),
  30696. name: "Front",
  30697. image: {
  30698. source: "./media/characters/neapolitan-ananassa/front.svg",
  30699. extra: 2903 / 2736,
  30700. bottom: 0 / 2903
  30701. }
  30702. },
  30703. side: {
  30704. height: math.unit(15 + 5 / 12, "feet"),
  30705. weight: math.unit(4600, "lb"),
  30706. name: "Side",
  30707. image: {
  30708. source: "./media/characters/neapolitan-ananassa/side.svg",
  30709. extra: 2925 / 2719,
  30710. bottom: 0 / 2925
  30711. }
  30712. },
  30713. back: {
  30714. height: math.unit(15 + 5 / 12, "feet"),
  30715. weight: math.unit(4600, "lb"),
  30716. name: "Back",
  30717. image: {
  30718. source: "./media/characters/neapolitan-ananassa/back.svg",
  30719. extra: 2903 / 2736,
  30720. bottom: 0 / 2903
  30721. }
  30722. },
  30723. },
  30724. [
  30725. {
  30726. name: "Normal",
  30727. height: math.unit(15 + 5 / 12, "feet"),
  30728. default: true
  30729. },
  30730. {
  30731. name: "Post-Millenium",
  30732. height: math.unit(35 + 5 / 12, "feet")
  30733. },
  30734. {
  30735. name: "Post-Era",
  30736. height: math.unit(450 + 5 / 12, "feet")
  30737. },
  30738. ]
  30739. ))
  30740. characterMakers.push(() => makeCharacter(
  30741. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  30742. {
  30743. front: {
  30744. height: math.unit(300, "meters"),
  30745. weight: math.unit(125000, "tonnes"),
  30746. name: "Front",
  30747. image: {
  30748. source: "./media/characters/pazuzu/front.svg",
  30749. extra: 877 / 794,
  30750. bottom: 47 / 924
  30751. }
  30752. },
  30753. },
  30754. [
  30755. {
  30756. name: "Macro",
  30757. height: math.unit(300, "meters"),
  30758. default: true
  30759. },
  30760. ]
  30761. ))
  30762. characterMakers.push(() => makeCharacter(
  30763. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  30764. {
  30765. side: {
  30766. height: math.unit(10 + 7 / 12, "feet"),
  30767. weight: math.unit(2.5, "tons"),
  30768. name: "Side",
  30769. image: {
  30770. source: "./media/characters/aasha/side.svg",
  30771. extra: 1345 / 1245,
  30772. bottom: 111 / 1456
  30773. }
  30774. },
  30775. back: {
  30776. height: math.unit(10 + 7 / 12, "feet"),
  30777. weight: math.unit(2.5, "tons"),
  30778. name: "Back",
  30779. image: {
  30780. source: "./media/characters/aasha/back.svg",
  30781. extra: 1133 / 1057,
  30782. bottom: 257 / 1390
  30783. }
  30784. },
  30785. },
  30786. [
  30787. {
  30788. name: "Normal",
  30789. height: math.unit(10 + 7 / 12, "feet"),
  30790. default: true
  30791. },
  30792. ]
  30793. ))
  30794. characterMakers.push(() => makeCharacter(
  30795. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  30796. {
  30797. front: {
  30798. height: math.unit(6 + 3 / 12, "feet"),
  30799. name: "Front",
  30800. image: {
  30801. source: "./media/characters/nevan/front.svg",
  30802. extra: 704 / 704,
  30803. bottom: 28 / 732
  30804. }
  30805. },
  30806. back: {
  30807. height: math.unit(6 + 3 / 12, "feet"),
  30808. name: "Back",
  30809. image: {
  30810. source: "./media/characters/nevan/back.svg",
  30811. extra: 714 / 714,
  30812. bottom: 21 / 735
  30813. }
  30814. },
  30815. frontFlaccid: {
  30816. height: math.unit(6 + 3 / 12, "feet"),
  30817. name: "Front (Flaccid)",
  30818. image: {
  30819. source: "./media/characters/nevan/front-flaccid.svg",
  30820. extra: 704 / 704,
  30821. bottom: 28 / 732
  30822. }
  30823. },
  30824. frontErect: {
  30825. height: math.unit(6 + 3 / 12, "feet"),
  30826. name: "Front (Erect)",
  30827. image: {
  30828. source: "./media/characters/nevan/front-erect.svg",
  30829. extra: 704 / 704,
  30830. bottom: 28 / 732
  30831. }
  30832. },
  30833. backFlaccid: {
  30834. height: math.unit(6 + 3 / 12, "feet"),
  30835. name: "Back (Flaccid)",
  30836. image: {
  30837. source: "./media/characters/nevan/back-flaccid.svg",
  30838. extra: 714 / 714,
  30839. bottom: 21 / 735
  30840. }
  30841. },
  30842. },
  30843. [
  30844. {
  30845. name: "Normal",
  30846. height: math.unit(6 + 3 / 12, "feet"),
  30847. default: true
  30848. },
  30849. ]
  30850. ))
  30851. characterMakers.push(() => makeCharacter(
  30852. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  30853. {
  30854. front: {
  30855. height: math.unit(4, "feet"),
  30856. name: "Front",
  30857. image: {
  30858. source: "./media/characters/arhan/front.svg",
  30859. extra: 3368 / 3133,
  30860. bottom: 0 / 3368
  30861. }
  30862. },
  30863. side: {
  30864. height: math.unit(4, "feet"),
  30865. name: "Side",
  30866. image: {
  30867. source: "./media/characters/arhan/side.svg",
  30868. extra: 3347 / 3105,
  30869. bottom: 0 / 3347
  30870. }
  30871. },
  30872. tongue: {
  30873. height: math.unit(1.42, "feet"),
  30874. name: "Tongue",
  30875. image: {
  30876. source: "./media/characters/arhan/tongue.svg"
  30877. }
  30878. },
  30879. head: {
  30880. height: math.unit(0.85, "feet"),
  30881. name: "Head",
  30882. image: {
  30883. source: "./media/characters/arhan/head.svg"
  30884. }
  30885. },
  30886. },
  30887. [
  30888. {
  30889. name: "Normal",
  30890. height: math.unit(4, "feet"),
  30891. default: true
  30892. },
  30893. ]
  30894. ))
  30895. characterMakers.push(() => makeCharacter(
  30896. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  30897. {
  30898. front: {
  30899. height: math.unit(5 + 7.5 / 12, "feet"),
  30900. weight: math.unit(120, "lb"),
  30901. name: "Front",
  30902. image: {
  30903. source: "./media/characters/digi-duncan/front.svg",
  30904. extra: 330 / 326,
  30905. bottom: 16 / 346
  30906. }
  30907. },
  30908. side: {
  30909. height: math.unit(5 + 7.5 / 12, "feet"),
  30910. weight: math.unit(120, "lb"),
  30911. name: "Side",
  30912. image: {
  30913. source: "./media/characters/digi-duncan/side.svg",
  30914. extra: 341 / 337,
  30915. bottom: 1 / 342
  30916. }
  30917. },
  30918. back: {
  30919. height: math.unit(5 + 7.5 / 12, "feet"),
  30920. weight: math.unit(120, "lb"),
  30921. name: "Back",
  30922. image: {
  30923. source: "./media/characters/digi-duncan/back.svg",
  30924. extra: 330 / 326,
  30925. bottom: 12 / 342
  30926. }
  30927. },
  30928. },
  30929. [
  30930. {
  30931. name: "Speck",
  30932. height: math.unit(0.25, "mm")
  30933. },
  30934. {
  30935. name: "Micro",
  30936. height: math.unit(5, "mm")
  30937. },
  30938. {
  30939. name: "Tiny",
  30940. height: math.unit(0.5, "inches"),
  30941. default: true
  30942. },
  30943. {
  30944. name: "Human",
  30945. height: math.unit(5 + 7.5 / 12, "feet")
  30946. },
  30947. {
  30948. name: "Minigiant",
  30949. height: math.unit(8 + 5.25, "feet")
  30950. },
  30951. {
  30952. name: "Giant",
  30953. height: math.unit(2000, "feet")
  30954. },
  30955. {
  30956. name: "Mega",
  30957. height: math.unit(371.1, "miles")
  30958. },
  30959. ]
  30960. ))
  30961. characterMakers.push(() => makeCharacter(
  30962. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  30963. {
  30964. front: {
  30965. height: math.unit(2, "meters"),
  30966. weight: math.unit(350, "kg"),
  30967. name: "Front",
  30968. image: {
  30969. source: "./media/characters/jagaz-soulbreaker/front.svg",
  30970. extra: 898 / 838,
  30971. bottom: 9 / 907
  30972. }
  30973. },
  30974. },
  30975. [
  30976. {
  30977. name: "Micro",
  30978. height: math.unit(8, "meters")
  30979. },
  30980. {
  30981. name: "Normal",
  30982. height: math.unit(50, "meters"),
  30983. default: true
  30984. },
  30985. {
  30986. name: "Macro",
  30987. height: math.unit(500, "meters")
  30988. },
  30989. ]
  30990. ))
  30991. characterMakers.push(() => makeCharacter(
  30992. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  30993. {
  30994. front: {
  30995. height: math.unit(6 + 6 / 12, "feet"),
  30996. name: "Front",
  30997. image: {
  30998. source: "./media/characters/khardesh/front.svg",
  30999. extra: 1788/1596,
  31000. bottom: 66/1854
  31001. }
  31002. },
  31003. back: {
  31004. height: math.unit(6 + 6 / 12, "feet"),
  31005. name: "Back",
  31006. image: {
  31007. source: "./media/characters/khardesh/back.svg",
  31008. extra: 1781/1584,
  31009. bottom: 68/1849
  31010. }
  31011. },
  31012. },
  31013. [
  31014. {
  31015. name: "Normal",
  31016. height: math.unit(6 + 6 / 12, "feet"),
  31017. default: true
  31018. },
  31019. {
  31020. name: "Normal+",
  31021. height: math.unit(4, "meters")
  31022. },
  31023. {
  31024. name: "Macro",
  31025. height: math.unit(50, "meters")
  31026. },
  31027. {
  31028. name: "Macro+",
  31029. height: math.unit(100, "meters")
  31030. },
  31031. {
  31032. name: "Megamacro",
  31033. height: math.unit(20, "km")
  31034. },
  31035. ]
  31036. ))
  31037. characterMakers.push(() => makeCharacter(
  31038. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  31039. {
  31040. front: {
  31041. height: math.unit(6, "feet"),
  31042. weight: math.unit(150, "lb"),
  31043. name: "Front",
  31044. image: {
  31045. source: "./media/characters/kosho/front.svg",
  31046. extra: 1847 / 1847,
  31047. bottom: 86 / 1933
  31048. }
  31049. },
  31050. },
  31051. [
  31052. {
  31053. name: "Second-stage micro",
  31054. height: math.unit(0.5, "inches")
  31055. },
  31056. {
  31057. name: "First-stage micro",
  31058. height: math.unit(6, "inches")
  31059. },
  31060. {
  31061. name: "Normal",
  31062. height: math.unit(6, "feet"),
  31063. default: true
  31064. },
  31065. {
  31066. name: "First-stage macro",
  31067. height: math.unit(72, "feet")
  31068. },
  31069. {
  31070. name: "Second-stage macro",
  31071. height: math.unit(864, "feet")
  31072. },
  31073. ]
  31074. ))
  31075. characterMakers.push(() => makeCharacter(
  31076. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  31077. {
  31078. normal: {
  31079. height: math.unit(4 + 6 / 12, "feet"),
  31080. name: "Normal",
  31081. image: {
  31082. source: "./media/characters/hydra/normal.svg",
  31083. extra: 2833 / 2634,
  31084. bottom: 68 / 2901
  31085. }
  31086. },
  31087. smol: {
  31088. height: math.unit(0.705, "inches"),
  31089. name: "Smol",
  31090. image: {
  31091. source: "./media/characters/hydra/smol.svg",
  31092. extra: 2715 / 2540,
  31093. bottom: 0 / 2715
  31094. }
  31095. },
  31096. },
  31097. [
  31098. {
  31099. name: "Normal",
  31100. height: math.unit(4 + 6 / 12, "feet"),
  31101. default: true
  31102. }
  31103. ]
  31104. ))
  31105. characterMakers.push(() => makeCharacter(
  31106. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  31107. {
  31108. front: {
  31109. height: math.unit(0.6, "cm"),
  31110. name: "Front",
  31111. image: {
  31112. source: "./media/characters/daz/front.svg",
  31113. extra: 1682 / 1164,
  31114. bottom: 42 / 1724
  31115. }
  31116. },
  31117. },
  31118. [
  31119. {
  31120. name: "Normal",
  31121. height: math.unit(0.6, "cm"),
  31122. default: true
  31123. },
  31124. ]
  31125. ))
  31126. characterMakers.push(() => makeCharacter(
  31127. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  31128. {
  31129. front: {
  31130. height: math.unit(6, "feet"),
  31131. weight: math.unit(235, "lb"),
  31132. name: "Front",
  31133. image: {
  31134. source: "./media/characters/theo-pangolin/front.svg",
  31135. extra: 1996 / 1969,
  31136. bottom: 115 / 2111
  31137. }
  31138. },
  31139. back: {
  31140. height: math.unit(6, "feet"),
  31141. weight: math.unit(235, "lb"),
  31142. name: "Back",
  31143. image: {
  31144. source: "./media/characters/theo-pangolin/back.svg",
  31145. extra: 1979 / 1979,
  31146. bottom: 40 / 2019
  31147. }
  31148. },
  31149. feral: {
  31150. height: math.unit(2, "feet"),
  31151. weight: math.unit(30, "lb"),
  31152. name: "Feral",
  31153. image: {
  31154. source: "./media/characters/theo-pangolin/feral.svg",
  31155. extra: 803 / 791,
  31156. bottom: 181 / 984
  31157. }
  31158. },
  31159. footFive: {
  31160. height: math.unit(1.43, "feet"),
  31161. name: "Foot (Five Toes)",
  31162. image: {
  31163. source: "./media/characters/theo-pangolin/foot-five.svg"
  31164. }
  31165. },
  31166. footFour: {
  31167. height: math.unit(1.43, "feet"),
  31168. name: "Foot (Four Toes)",
  31169. image: {
  31170. source: "./media/characters/theo-pangolin/foot-four.svg"
  31171. }
  31172. },
  31173. handFour: {
  31174. height: math.unit(0.81, "feet"),
  31175. name: "Hand (Four Fingers)",
  31176. image: {
  31177. source: "./media/characters/theo-pangolin/hand-four.svg"
  31178. }
  31179. },
  31180. handThree: {
  31181. height: math.unit(0.81, "feet"),
  31182. name: "Hand (Three Fingers)",
  31183. image: {
  31184. source: "./media/characters/theo-pangolin/hand-three.svg"
  31185. }
  31186. },
  31187. headFront: {
  31188. height: math.unit(1.37, "feet"),
  31189. name: "Head (Front)",
  31190. image: {
  31191. source: "./media/characters/theo-pangolin/head-front.svg"
  31192. }
  31193. },
  31194. headSide: {
  31195. height: math.unit(1.43, "feet"),
  31196. name: "Head (Side)",
  31197. image: {
  31198. source: "./media/characters/theo-pangolin/head-side.svg"
  31199. }
  31200. },
  31201. tongue: {
  31202. height: math.unit(2.29, "feet"),
  31203. name: "Tongue",
  31204. image: {
  31205. source: "./media/characters/theo-pangolin/tongue.svg"
  31206. }
  31207. },
  31208. },
  31209. [
  31210. {
  31211. name: "Normal",
  31212. height: math.unit(6, "feet")
  31213. },
  31214. {
  31215. name: "Macro",
  31216. height: math.unit(400, "feet"),
  31217. default: true
  31218. },
  31219. ]
  31220. ))
  31221. characterMakers.push(() => makeCharacter(
  31222. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  31223. {
  31224. front: {
  31225. height: math.unit(6, "inches"),
  31226. weight: math.unit(0.036, "kg"),
  31227. name: "Front",
  31228. image: {
  31229. source: "./media/characters/renée/front.svg",
  31230. extra: 900 / 886,
  31231. bottom: 8 / 908
  31232. }
  31233. },
  31234. },
  31235. [
  31236. {
  31237. name: "Nano",
  31238. height: math.unit(1, "nm")
  31239. },
  31240. {
  31241. name: "Micro",
  31242. height: math.unit(1, "mm")
  31243. },
  31244. {
  31245. name: "Normal",
  31246. height: math.unit(6, "inches")
  31247. },
  31248. {
  31249. name: "Macro",
  31250. height: math.unit(2000, "feet"),
  31251. default: true
  31252. },
  31253. {
  31254. name: "Megamacro",
  31255. height: math.unit(2, "km")
  31256. },
  31257. {
  31258. name: "Gigamacro",
  31259. height: math.unit(2000, "km")
  31260. },
  31261. {
  31262. name: "Teramacro",
  31263. height: math.unit(250000, "km")
  31264. },
  31265. ]
  31266. ))
  31267. characterMakers.push(() => makeCharacter(
  31268. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  31269. {
  31270. front: {
  31271. height: math.unit(4, "meters"),
  31272. weight: math.unit(150, "kg"),
  31273. name: "Front",
  31274. image: {
  31275. source: "./media/characters/caledvwlch/front.svg",
  31276. extra: 1760 / 1551,
  31277. bottom: 28 / 1788
  31278. }
  31279. },
  31280. side: {
  31281. height: math.unit(4, "meters"),
  31282. weight: math.unit(150, "kg"),
  31283. name: "Side",
  31284. image: {
  31285. source: "./media/characters/caledvwlch/side.svg",
  31286. extra: 1605 / 1536,
  31287. bottom: 31 / 1636
  31288. }
  31289. },
  31290. back: {
  31291. height: math.unit(4, "meters"),
  31292. weight: math.unit(150, "kg"),
  31293. name: "Back",
  31294. image: {
  31295. source: "./media/characters/caledvwlch/back.svg",
  31296. extra: 1635 / 1565,
  31297. bottom: 27 / 1662
  31298. }
  31299. },
  31300. },
  31301. [
  31302. {
  31303. name: "\"Incognito\"",
  31304. height: math.unit(4, "meters")
  31305. },
  31306. {
  31307. name: "Small rampage",
  31308. height: math.unit(600, "meters")
  31309. },
  31310. {
  31311. name: "Mega",
  31312. height: math.unit(30, "km")
  31313. },
  31314. {
  31315. name: "Home-size",
  31316. height: math.unit(50, "km"),
  31317. default: true
  31318. },
  31319. {
  31320. name: "Giga",
  31321. height: math.unit(300, "km")
  31322. },
  31323. {
  31324. name: "Lounging",
  31325. height: math.unit(11000, "km")
  31326. },
  31327. {
  31328. name: "Planet snacking",
  31329. height: math.unit(2000000, "km")
  31330. },
  31331. ]
  31332. ))
  31333. characterMakers.push(() => makeCharacter(
  31334. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  31335. {
  31336. front: {
  31337. height: math.unit(6, "feet"),
  31338. weight: math.unit(215, "lb"),
  31339. name: "Front",
  31340. image: {
  31341. source: "./media/characters/sapphire-svell/front.svg",
  31342. extra: 495 / 455,
  31343. bottom: 20 / 515
  31344. }
  31345. },
  31346. back: {
  31347. height: math.unit(6, "feet"),
  31348. weight: math.unit(216, "lb"),
  31349. name: "Back",
  31350. image: {
  31351. source: "./media/characters/sapphire-svell/back.svg",
  31352. extra: 497 / 477,
  31353. bottom: 7 / 504
  31354. }
  31355. },
  31356. maw: {
  31357. height: math.unit(1.57, "feet"),
  31358. name: "Maw",
  31359. image: {
  31360. source: "./media/characters/sapphire-svell/maw.svg"
  31361. }
  31362. },
  31363. foot: {
  31364. height: math.unit(1.07, "feet"),
  31365. name: "Foot",
  31366. image: {
  31367. source: "./media/characters/sapphire-svell/foot.svg"
  31368. }
  31369. },
  31370. toering: {
  31371. height: math.unit(1.7, "inch"),
  31372. name: "Toering",
  31373. image: {
  31374. source: "./media/characters/sapphire-svell/toering.svg"
  31375. }
  31376. },
  31377. },
  31378. [
  31379. {
  31380. name: "Normal",
  31381. height: math.unit(300, "feet"),
  31382. default: true
  31383. },
  31384. {
  31385. name: "Augmented",
  31386. height: math.unit(1250, "feet")
  31387. },
  31388. {
  31389. name: "Unleashed",
  31390. height: math.unit(3000, "feet")
  31391. },
  31392. ]
  31393. ))
  31394. characterMakers.push(() => makeCharacter(
  31395. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  31396. {
  31397. side: {
  31398. height: math.unit(2 + 3 / 12, "feet"),
  31399. weight: math.unit(110, "lb"),
  31400. name: "Side",
  31401. image: {
  31402. source: "./media/characters/glitch-flux/side.svg",
  31403. extra: 997 / 805,
  31404. bottom: 20 / 1017
  31405. }
  31406. },
  31407. },
  31408. [
  31409. {
  31410. name: "Normal",
  31411. height: math.unit(2 + 3 / 12, "feet"),
  31412. default: true
  31413. },
  31414. ]
  31415. ))
  31416. characterMakers.push(() => makeCharacter(
  31417. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  31418. {
  31419. front: {
  31420. height: math.unit(4, "meters"),
  31421. name: "Front",
  31422. image: {
  31423. source: "./media/characters/mid/front.svg",
  31424. extra: 507 / 476,
  31425. bottom: 17 / 524
  31426. }
  31427. },
  31428. back: {
  31429. height: math.unit(4, "meters"),
  31430. name: "Back",
  31431. image: {
  31432. source: "./media/characters/mid/back.svg",
  31433. extra: 519 / 487,
  31434. bottom: 7 / 526
  31435. }
  31436. },
  31437. stuck: {
  31438. height: math.unit(2.2, "meters"),
  31439. name: "Stuck",
  31440. image: {
  31441. source: "./media/characters/mid/stuck.svg",
  31442. extra: 1951 / 1869,
  31443. bottom: 88 / 2039
  31444. }
  31445. }
  31446. },
  31447. [
  31448. {
  31449. name: "Normal",
  31450. height: math.unit(4, "meters"),
  31451. default: true
  31452. },
  31453. {
  31454. name: "Big",
  31455. height: math.unit(10, "meters")
  31456. },
  31457. {
  31458. name: "Macro",
  31459. height: math.unit(800, "meters")
  31460. },
  31461. {
  31462. name: "Megamacro",
  31463. height: math.unit(100, "km")
  31464. },
  31465. {
  31466. name: "Overgrown",
  31467. height: math.unit(1, "parsec")
  31468. },
  31469. ]
  31470. ))
  31471. characterMakers.push(() => makeCharacter(
  31472. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  31473. {
  31474. front: {
  31475. height: math.unit(2.5, "meters"),
  31476. weight: math.unit(225, "kg"),
  31477. name: "Front",
  31478. image: {
  31479. source: "./media/characters/iris/front.svg",
  31480. extra: 3348 / 3251,
  31481. bottom: 205 / 3553
  31482. }
  31483. },
  31484. maw: {
  31485. height: math.unit(0.56, "meter"),
  31486. name: "Maw",
  31487. image: {
  31488. source: "./media/characters/iris/maw.svg"
  31489. }
  31490. },
  31491. },
  31492. [
  31493. {
  31494. name: "Mewter cat",
  31495. height: math.unit(1.2, "meters")
  31496. },
  31497. {
  31498. name: "Minimacro",
  31499. height: math.unit(2.5, "meters"),
  31500. default: true
  31501. },
  31502. {
  31503. name: "Macro",
  31504. height: math.unit(180, "meters")
  31505. },
  31506. {
  31507. name: "Megamacro",
  31508. height: math.unit(2746, "meters")
  31509. },
  31510. ]
  31511. ))
  31512. characterMakers.push(() => makeCharacter(
  31513. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  31514. {
  31515. front: {
  31516. height: math.unit(6, "feet"),
  31517. weight: math.unit(135, "lb"),
  31518. name: "Front",
  31519. image: {
  31520. source: "./media/characters/axel/front.svg",
  31521. extra: 908 / 908,
  31522. bottom: 58 / 966
  31523. }
  31524. },
  31525. side: {
  31526. height: math.unit(6, "feet"),
  31527. weight: math.unit(135, "lb"),
  31528. name: "Side",
  31529. image: {
  31530. source: "./media/characters/axel/side.svg",
  31531. extra: 958 / 958,
  31532. bottom: 11 / 969
  31533. }
  31534. },
  31535. back: {
  31536. height: math.unit(6, "feet"),
  31537. weight: math.unit(135, "lb"),
  31538. name: "Back",
  31539. image: {
  31540. source: "./media/characters/axel/back.svg",
  31541. extra: 887 / 887,
  31542. bottom: 34 / 921
  31543. }
  31544. },
  31545. head: {
  31546. height: math.unit(1.07, "feet"),
  31547. name: "Head",
  31548. image: {
  31549. source: "./media/characters/axel/head.svg"
  31550. }
  31551. },
  31552. beak: {
  31553. height: math.unit(1.4, "feet"),
  31554. name: "Beak",
  31555. image: {
  31556. source: "./media/characters/axel/beak.svg"
  31557. }
  31558. },
  31559. beakSide: {
  31560. height: math.unit(1.4, "feet"),
  31561. name: "Beak Side",
  31562. image: {
  31563. source: "./media/characters/axel/beak-side.svg"
  31564. }
  31565. },
  31566. sheath: {
  31567. height: math.unit(0.5, "feet"),
  31568. name: "Sheath",
  31569. image: {
  31570. source: "./media/characters/axel/sheath.svg"
  31571. }
  31572. },
  31573. dick: {
  31574. height: math.unit(0.98, "feet"),
  31575. name: "Dick",
  31576. image: {
  31577. source: "./media/characters/axel/dick.svg"
  31578. }
  31579. },
  31580. },
  31581. [
  31582. {
  31583. name: "Macro",
  31584. height: math.unit(68, "meters"),
  31585. default: true
  31586. },
  31587. ]
  31588. ))
  31589. characterMakers.push(() => makeCharacter(
  31590. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  31591. {
  31592. front: {
  31593. height: math.unit(3.5, "meters"),
  31594. weight: math.unit(1200, "kg"),
  31595. name: "Front",
  31596. image: {
  31597. source: "./media/characters/joanna/front.svg",
  31598. extra: 1596 / 1488,
  31599. bottom: 29 / 1625
  31600. }
  31601. },
  31602. back: {
  31603. height: math.unit(3.5, "meters"),
  31604. weight: math.unit(1200, "kg"),
  31605. name: "Back",
  31606. image: {
  31607. source: "./media/characters/joanna/back.svg",
  31608. extra: 1594 / 1495,
  31609. bottom: 26 / 1620
  31610. }
  31611. },
  31612. frontShorts: {
  31613. height: math.unit(3.5, "meters"),
  31614. weight: math.unit(1200, "kg"),
  31615. name: "Front (Shorts)",
  31616. image: {
  31617. source: "./media/characters/joanna/front-shorts.svg",
  31618. extra: 1596 / 1488,
  31619. bottom: 29 / 1625
  31620. }
  31621. },
  31622. frontBiker: {
  31623. height: math.unit(3.5, "meters"),
  31624. weight: math.unit(1200, "kg"),
  31625. name: "Front (Biker)",
  31626. image: {
  31627. source: "./media/characters/joanna/front-biker.svg",
  31628. extra: 1596 / 1488,
  31629. bottom: 29 / 1625
  31630. }
  31631. },
  31632. backBiker: {
  31633. height: math.unit(3.5, "meters"),
  31634. weight: math.unit(1200, "kg"),
  31635. name: "Back (Biker)",
  31636. image: {
  31637. source: "./media/characters/joanna/back-biker.svg",
  31638. extra: 1594 / 1495,
  31639. bottom: 88 / 1682
  31640. }
  31641. },
  31642. bikeLeft: {
  31643. height: math.unit(2.4, "meters"),
  31644. weight: math.unit(1600, "kg"),
  31645. name: "Bike (Left)",
  31646. image: {
  31647. source: "./media/characters/joanna/bike-left.svg",
  31648. extra: 720 / 720,
  31649. bottom: 8 / 728
  31650. }
  31651. },
  31652. bikeRight: {
  31653. height: math.unit(2.4, "meters"),
  31654. weight: math.unit(1600, "kg"),
  31655. name: "Bike (Right)",
  31656. image: {
  31657. source: "./media/characters/joanna/bike-right.svg",
  31658. extra: 720 / 720,
  31659. bottom: 8 / 728
  31660. }
  31661. },
  31662. },
  31663. [
  31664. {
  31665. name: "Incognito",
  31666. height: math.unit(3.5, "meters")
  31667. },
  31668. {
  31669. name: "Casual Big",
  31670. height: math.unit(200, "meters")
  31671. },
  31672. {
  31673. name: "Macro",
  31674. height: math.unit(600, "meters")
  31675. },
  31676. {
  31677. name: "Original",
  31678. height: math.unit(20, "km"),
  31679. default: true
  31680. },
  31681. {
  31682. name: "Giga",
  31683. height: math.unit(400, "km")
  31684. },
  31685. {
  31686. name: "Lounging",
  31687. height: math.unit(1500, "km")
  31688. },
  31689. {
  31690. name: "Planetary",
  31691. height: math.unit(200000, "km")
  31692. },
  31693. ]
  31694. ))
  31695. characterMakers.push(() => makeCharacter(
  31696. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  31697. {
  31698. front: {
  31699. height: math.unit(6, "feet"),
  31700. weight: math.unit(150, "lb"),
  31701. name: "Front",
  31702. image: {
  31703. source: "./media/characters/hugo-sigil/front.svg",
  31704. extra: 522 / 500,
  31705. bottom: 2 / 524
  31706. }
  31707. },
  31708. back: {
  31709. height: math.unit(6, "feet"),
  31710. weight: math.unit(150, "lb"),
  31711. name: "Back",
  31712. image: {
  31713. source: "./media/characters/hugo-sigil/back.svg",
  31714. extra: 519 / 495,
  31715. bottom: 5 / 524
  31716. }
  31717. },
  31718. maw: {
  31719. height: math.unit(1.4, "feet"),
  31720. weight: math.unit(150, "lb"),
  31721. name: "Maw",
  31722. image: {
  31723. source: "./media/characters/hugo-sigil/maw.svg"
  31724. }
  31725. },
  31726. feet: {
  31727. height: math.unit(1.56, "feet"),
  31728. weight: math.unit(150, "lb"),
  31729. name: "Feet",
  31730. image: {
  31731. source: "./media/characters/hugo-sigil/feet.svg",
  31732. extra: 177 / 177,
  31733. bottom: 12 / 189
  31734. }
  31735. },
  31736. },
  31737. [
  31738. {
  31739. name: "Normal",
  31740. height: math.unit(6, "feet")
  31741. },
  31742. {
  31743. name: "Macro",
  31744. height: math.unit(200, "feet"),
  31745. default: true
  31746. },
  31747. ]
  31748. ))
  31749. characterMakers.push(() => makeCharacter(
  31750. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  31751. {
  31752. front: {
  31753. height: math.unit(6, "feet"),
  31754. weight: math.unit(150, "lb"),
  31755. name: "Front",
  31756. image: {
  31757. source: "./media/characters/peri/front.svg",
  31758. extra: 2354 / 2233,
  31759. bottom: 49 / 2403
  31760. }
  31761. },
  31762. },
  31763. [
  31764. {
  31765. name: "Really Small",
  31766. height: math.unit(1, "nm")
  31767. },
  31768. {
  31769. name: "Micro",
  31770. height: math.unit(4, "inches")
  31771. },
  31772. {
  31773. name: "Normal",
  31774. height: math.unit(7, "inches"),
  31775. default: true
  31776. },
  31777. {
  31778. name: "Macro",
  31779. height: math.unit(400, "feet")
  31780. },
  31781. {
  31782. name: "Megamacro",
  31783. height: math.unit(100, "miles")
  31784. },
  31785. ]
  31786. ))
  31787. characterMakers.push(() => makeCharacter(
  31788. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  31789. {
  31790. frontSlim: {
  31791. height: math.unit(7, "feet"),
  31792. name: "Front (Slim)",
  31793. image: {
  31794. source: "./media/characters/issilora/front-slim.svg",
  31795. extra: 529 / 449,
  31796. bottom: 53 / 582
  31797. }
  31798. },
  31799. sideSlim: {
  31800. height: math.unit(7, "feet"),
  31801. name: "Side (Slim)",
  31802. image: {
  31803. source: "./media/characters/issilora/side-slim.svg",
  31804. extra: 570 / 480,
  31805. bottom: 30 / 600
  31806. }
  31807. },
  31808. backSlim: {
  31809. height: math.unit(7, "feet"),
  31810. name: "Back (Slim)",
  31811. image: {
  31812. source: "./media/characters/issilora/back-slim.svg",
  31813. extra: 537 / 455,
  31814. bottom: 46 / 583
  31815. }
  31816. },
  31817. frontBuff: {
  31818. height: math.unit(7, "feet"),
  31819. name: "Front (Buff)",
  31820. image: {
  31821. source: "./media/characters/issilora/front-buff.svg",
  31822. extra: 2310 / 2035,
  31823. bottom: 335 / 2645
  31824. }
  31825. },
  31826. head: {
  31827. height: math.unit(1.94, "feet"),
  31828. name: "Head",
  31829. image: {
  31830. source: "./media/characters/issilora/head.svg"
  31831. }
  31832. },
  31833. },
  31834. [
  31835. {
  31836. name: "Minimum",
  31837. height: math.unit(7, "feet")
  31838. },
  31839. {
  31840. name: "Comfortable",
  31841. height: math.unit(17, "feet")
  31842. },
  31843. {
  31844. name: "Fun Size",
  31845. height: math.unit(47, "feet")
  31846. },
  31847. {
  31848. name: "Natural Macro",
  31849. height: math.unit(137, "feet"),
  31850. default: true
  31851. },
  31852. {
  31853. name: "Maximum Kaiju",
  31854. height: math.unit(397, "feet")
  31855. },
  31856. ]
  31857. ))
  31858. characterMakers.push(() => makeCharacter(
  31859. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  31860. {
  31861. front: {
  31862. height: math.unit(50 + 9/12, "feet"),
  31863. weight: math.unit(32.8, "tons"),
  31864. name: "Front",
  31865. image: {
  31866. source: "./media/characters/irb'iiritaahn/front.svg",
  31867. extra: 1878/1826,
  31868. bottom: 326/2204
  31869. }
  31870. },
  31871. back: {
  31872. height: math.unit(50 + 9/12, "feet"),
  31873. weight: math.unit(32.8, "tons"),
  31874. name: "Back",
  31875. image: {
  31876. source: "./media/characters/irb'iiritaahn/back.svg",
  31877. extra: 2052/2018,
  31878. bottom: 152/2204
  31879. }
  31880. },
  31881. head: {
  31882. height: math.unit(12.86, "feet"),
  31883. name: "Head",
  31884. image: {
  31885. source: "./media/characters/irb'iiritaahn/head.svg"
  31886. }
  31887. },
  31888. maw: {
  31889. height: math.unit(9.66, "feet"),
  31890. name: "Maw",
  31891. image: {
  31892. source: "./media/characters/irb'iiritaahn/maw.svg"
  31893. }
  31894. },
  31895. frontDick: {
  31896. height: math.unit(8.78461, "feet"),
  31897. name: "Front Dick",
  31898. image: {
  31899. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  31900. }
  31901. },
  31902. rearDick: {
  31903. height: math.unit(8.78461, "feet"),
  31904. name: "Rear Dick",
  31905. image: {
  31906. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  31907. }
  31908. },
  31909. rearDickUnfolded: {
  31910. height: math.unit(8.78, "feet"),
  31911. name: "Rear Dick (Unfolded)",
  31912. image: {
  31913. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  31914. }
  31915. },
  31916. wings: {
  31917. height: math.unit(43, "feet"),
  31918. name: "Wings",
  31919. image: {
  31920. source: "./media/characters/irb'iiritaahn/wings.svg"
  31921. }
  31922. },
  31923. },
  31924. [
  31925. {
  31926. name: "Macro",
  31927. height: math.unit(50 + 9/12, "feet"),
  31928. default: true
  31929. },
  31930. ]
  31931. ))
  31932. characterMakers.push(() => makeCharacter(
  31933. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  31934. {
  31935. front: {
  31936. height: math.unit(205, "cm"),
  31937. weight: math.unit(102, "kg"),
  31938. name: "Front",
  31939. image: {
  31940. source: "./media/characters/irbisgreif/front.svg",
  31941. extra: 785/706,
  31942. bottom: 13/798
  31943. }
  31944. },
  31945. back: {
  31946. height: math.unit(205, "cm"),
  31947. weight: math.unit(102, "kg"),
  31948. name: "Back",
  31949. image: {
  31950. source: "./media/characters/irbisgreif/back.svg",
  31951. extra: 713/701,
  31952. bottom: 26/739
  31953. }
  31954. },
  31955. frontDressed: {
  31956. height: math.unit(216, "cm"),
  31957. weight: math.unit(102, "kg"),
  31958. name: "Front-dressed",
  31959. image: {
  31960. source: "./media/characters/irbisgreif/front-dressed.svg",
  31961. extra: 902/776,
  31962. bottom: 14/916
  31963. }
  31964. },
  31965. sideDressed: {
  31966. height: math.unit(195, "cm"),
  31967. weight: math.unit(102, "kg"),
  31968. name: "Side-dressed",
  31969. image: {
  31970. source: "./media/characters/irbisgreif/side-dressed.svg",
  31971. extra: 788/688,
  31972. bottom: 21/809
  31973. }
  31974. },
  31975. backDressed: {
  31976. height: math.unit(216, "cm"),
  31977. weight: math.unit(102, "kg"),
  31978. name: "Back-dressed",
  31979. image: {
  31980. source: "./media/characters/irbisgreif/back-dressed.svg",
  31981. extra: 901/783,
  31982. bottom: 10/911
  31983. }
  31984. },
  31985. dick: {
  31986. height: math.unit(0.49, "feet"),
  31987. name: "Dick",
  31988. image: {
  31989. source: "./media/characters/irbisgreif/dick.svg"
  31990. }
  31991. },
  31992. wingTop: {
  31993. height: math.unit(1.93 , "feet"),
  31994. name: "Wing-top",
  31995. image: {
  31996. source: "./media/characters/irbisgreif/wing-top.svg"
  31997. }
  31998. },
  31999. wingBottom: {
  32000. height: math.unit(1.93 , "feet"),
  32001. name: "Wing-bottom",
  32002. image: {
  32003. source: "./media/characters/irbisgreif/wing-bottom.svg"
  32004. }
  32005. },
  32006. },
  32007. [
  32008. {
  32009. name: "Normal",
  32010. height: math.unit(216, "cm"),
  32011. default: true
  32012. },
  32013. ]
  32014. ))
  32015. characterMakers.push(() => makeCharacter(
  32016. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  32017. {
  32018. front: {
  32019. height: math.unit(6, "feet"),
  32020. weight: math.unit(150, "lb"),
  32021. name: "Front",
  32022. image: {
  32023. source: "./media/characters/pride/front.svg",
  32024. extra: 1299/1230,
  32025. bottom: 18/1317
  32026. }
  32027. },
  32028. },
  32029. [
  32030. {
  32031. name: "Normal",
  32032. height: math.unit(7, "feet")
  32033. },
  32034. {
  32035. name: "Mini-macro",
  32036. height: math.unit(11, "feet")
  32037. },
  32038. {
  32039. name: "Macro",
  32040. height: math.unit(15, "meters"),
  32041. default: true
  32042. },
  32043. {
  32044. name: "Macro+",
  32045. height: math.unit(40, "meters")
  32046. },
  32047. ]
  32048. ))
  32049. characterMakers.push(() => makeCharacter(
  32050. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  32051. {
  32052. front: {
  32053. height: math.unit(4 + 2 / 12, "feet"),
  32054. weight: math.unit(95, "lb"),
  32055. name: "Front",
  32056. image: {
  32057. source: "./media/characters/vaelophis-nyx/front.svg",
  32058. extra: 2532/2330,
  32059. bottom: 0/2532
  32060. }
  32061. },
  32062. back: {
  32063. height: math.unit(4 + 2 / 12, "feet"),
  32064. weight: math.unit(95, "lb"),
  32065. name: "Back",
  32066. image: {
  32067. source: "./media/characters/vaelophis-nyx/back.svg",
  32068. extra: 2484/2361,
  32069. bottom: 0/2484
  32070. }
  32071. },
  32072. feralSide: {
  32073. height: math.unit(2 + 1/12, "feet"),
  32074. weight: math.unit(20, "lb"),
  32075. name: "Feral (Side)",
  32076. image: {
  32077. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  32078. extra: 1721/1581,
  32079. bottom: 70/1791
  32080. }
  32081. },
  32082. feralLazing: {
  32083. height: math.unit(1.08, "feet"),
  32084. weight: math.unit(20, "lb"),
  32085. name: "Feral (Lazing)",
  32086. image: {
  32087. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  32088. extra: 822/822,
  32089. bottom: 248/1070
  32090. }
  32091. },
  32092. ear: {
  32093. height: math.unit(0.416, "feet"),
  32094. name: "Ear",
  32095. image: {
  32096. source: "./media/characters/vaelophis-nyx/ear.svg"
  32097. }
  32098. },
  32099. eye: {
  32100. height: math.unit(0.0748, "feet"),
  32101. name: "Eye",
  32102. image: {
  32103. source: "./media/characters/vaelophis-nyx/eye.svg"
  32104. }
  32105. },
  32106. mouth: {
  32107. height: math.unit(0.378, "feet"),
  32108. name: "Mouth",
  32109. image: {
  32110. source: "./media/characters/vaelophis-nyx/mouth.svg"
  32111. }
  32112. },
  32113. spade: {
  32114. height: math.unit(0.55, "feet"),
  32115. name: "Spade",
  32116. image: {
  32117. source: "./media/characters/vaelophis-nyx/spade.svg"
  32118. }
  32119. },
  32120. },
  32121. [
  32122. {
  32123. name: "Normal",
  32124. height: math.unit(4 + 2/12, "feet"),
  32125. default: true
  32126. },
  32127. ]
  32128. ))
  32129. characterMakers.push(() => makeCharacter(
  32130. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  32131. {
  32132. front: {
  32133. height: math.unit(7, "feet"),
  32134. weight: math.unit(231, "lb"),
  32135. name: "Front",
  32136. image: {
  32137. source: "./media/characters/flux/front.svg",
  32138. extra: 919/871,
  32139. bottom: 0/919
  32140. }
  32141. },
  32142. back: {
  32143. height: math.unit(7, "feet"),
  32144. weight: math.unit(231, "lb"),
  32145. name: "Back",
  32146. image: {
  32147. source: "./media/characters/flux/back.svg",
  32148. extra: 1040/992,
  32149. bottom: 0/1040
  32150. }
  32151. },
  32152. frontDressed: {
  32153. height: math.unit(7, "feet"),
  32154. weight: math.unit(231, "lb"),
  32155. name: "Front (Dressed)",
  32156. image: {
  32157. source: "./media/characters/flux/front-dressed.svg",
  32158. extra: 919/871,
  32159. bottom: 0/919
  32160. }
  32161. },
  32162. feralSide: {
  32163. height: math.unit(5, "feet"),
  32164. weight: math.unit(150, "lb"),
  32165. name: "Feral (Side)",
  32166. image: {
  32167. source: "./media/characters/flux/feral-side.svg",
  32168. extra: 598/528,
  32169. bottom: 28/626
  32170. }
  32171. },
  32172. head: {
  32173. height: math.unit(1.585, "feet"),
  32174. name: "Head",
  32175. image: {
  32176. source: "./media/characters/flux/head.svg"
  32177. }
  32178. },
  32179. headSide: {
  32180. height: math.unit(1.74, "feet"),
  32181. name: "Head (Side)",
  32182. image: {
  32183. source: "./media/characters/flux/head-side.svg"
  32184. }
  32185. },
  32186. headSideFire: {
  32187. height: math.unit(1.76, "feet"),
  32188. name: "Head (Side, Fire)",
  32189. image: {
  32190. source: "./media/characters/flux/head-side-fire.svg"
  32191. }
  32192. },
  32193. },
  32194. [
  32195. {
  32196. name: "Normal",
  32197. height: math.unit(7, "feet"),
  32198. default: true
  32199. },
  32200. ]
  32201. ))
  32202. characterMakers.push(() => makeCharacter(
  32203. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  32204. {
  32205. front: {
  32206. height: math.unit(9, "feet"),
  32207. weight: math.unit(1012, "lb"),
  32208. name: "Front",
  32209. image: {
  32210. source: "./media/characters/ulfra-lupae/front.svg",
  32211. extra: 1083/1011,
  32212. bottom: 67/1150
  32213. }
  32214. },
  32215. },
  32216. [
  32217. {
  32218. name: "Micro",
  32219. height: math.unit(6, "inches")
  32220. },
  32221. {
  32222. name: "Socializing",
  32223. height: math.unit(6 + 5/12, "feet")
  32224. },
  32225. {
  32226. name: "Normal",
  32227. height: math.unit(9, "feet"),
  32228. default: true
  32229. },
  32230. {
  32231. name: "Macro",
  32232. height: math.unit(150, "feet")
  32233. },
  32234. ]
  32235. ))
  32236. characterMakers.push(() => makeCharacter(
  32237. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  32238. {
  32239. front: {
  32240. height: math.unit(5 + 2/12, "feet"),
  32241. weight: math.unit(120, "lb"),
  32242. name: "Front",
  32243. image: {
  32244. source: "./media/characters/timber/front.svg",
  32245. extra: 2814/2705,
  32246. bottom: 181/2995
  32247. }
  32248. },
  32249. },
  32250. [
  32251. {
  32252. name: "Normal",
  32253. height: math.unit(5 + 2/12, "feet"),
  32254. default: true
  32255. },
  32256. ]
  32257. ))
  32258. characterMakers.push(() => makeCharacter(
  32259. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  32260. {
  32261. front: {
  32262. height: math.unit(9, "feet"),
  32263. name: "Front",
  32264. image: {
  32265. source: "./media/characters/nicki/front.svg",
  32266. extra: 1240/990,
  32267. bottom: 45/1285
  32268. },
  32269. form: "anthro",
  32270. default: true
  32271. },
  32272. side: {
  32273. height: math.unit(9, "feet"),
  32274. name: "Side",
  32275. image: {
  32276. source: "./media/characters/nicki/side.svg",
  32277. extra: 1047/973,
  32278. bottom: 61/1108
  32279. },
  32280. form: "anthro"
  32281. },
  32282. back: {
  32283. height: math.unit(9, "feet"),
  32284. name: "Back",
  32285. image: {
  32286. source: "./media/characters/nicki/back.svg",
  32287. extra: 1006/965,
  32288. bottom: 39/1045
  32289. },
  32290. form: "anthro"
  32291. },
  32292. taur: {
  32293. height: math.unit(15, "feet"),
  32294. name: "Taur",
  32295. image: {
  32296. source: "./media/characters/nicki/taur.svg",
  32297. extra: 1592/1347,
  32298. bottom: 0/1592
  32299. },
  32300. form: "taur",
  32301. default: true
  32302. },
  32303. },
  32304. [
  32305. {
  32306. name: "Normal",
  32307. height: math.unit(9, "feet"),
  32308. form: "anthro",
  32309. default: true
  32310. },
  32311. {
  32312. name: "Normal",
  32313. height: math.unit(15, "feet"),
  32314. form: "taur",
  32315. default: true
  32316. }
  32317. ],
  32318. {
  32319. "anthro": {
  32320. name: "Anthro",
  32321. default: true
  32322. },
  32323. "taur": {
  32324. name: "Taur"
  32325. }
  32326. }
  32327. ))
  32328. characterMakers.push(() => makeCharacter(
  32329. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  32330. {
  32331. front: {
  32332. height: math.unit(7 + 10/12, "feet"),
  32333. weight: math.unit(3.5, "tons"),
  32334. name: "Front",
  32335. image: {
  32336. source: "./media/characters/lee/front.svg",
  32337. extra: 1773/1615,
  32338. bottom: 86/1859
  32339. }
  32340. },
  32341. hand: {
  32342. height: math.unit(1.78, "feet"),
  32343. name: "Hand",
  32344. image: {
  32345. source: "./media/characters/lee/hand.svg"
  32346. }
  32347. },
  32348. maw: {
  32349. height: math.unit(1.18, "feet"),
  32350. name: "Maw",
  32351. image: {
  32352. source: "./media/characters/lee/maw.svg"
  32353. }
  32354. },
  32355. },
  32356. [
  32357. {
  32358. name: "Normal",
  32359. height: math.unit(7 + 10/12, "feet"),
  32360. default: true
  32361. },
  32362. ]
  32363. ))
  32364. characterMakers.push(() => makeCharacter(
  32365. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  32366. {
  32367. front: {
  32368. height: math.unit(9, "feet"),
  32369. name: "Front",
  32370. image: {
  32371. source: "./media/characters/guti/front.svg",
  32372. extra: 4551/4355,
  32373. bottom: 123/4674
  32374. }
  32375. },
  32376. tongue: {
  32377. height: math.unit(1, "feet"),
  32378. name: "Tongue",
  32379. image: {
  32380. source: "./media/characters/guti/tongue.svg"
  32381. }
  32382. },
  32383. paw: {
  32384. height: math.unit(1.18, "feet"),
  32385. name: "Paw",
  32386. image: {
  32387. source: "./media/characters/guti/paw.svg"
  32388. }
  32389. },
  32390. },
  32391. [
  32392. {
  32393. name: "Normal",
  32394. height: math.unit(9, "feet"),
  32395. default: true
  32396. },
  32397. ]
  32398. ))
  32399. characterMakers.push(() => makeCharacter(
  32400. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  32401. {
  32402. side: {
  32403. height: math.unit(5, "meters"),
  32404. name: "Side",
  32405. image: {
  32406. source: "./media/characters/vesper/side.svg",
  32407. extra: 1605/1518,
  32408. bottom: 0/1605
  32409. }
  32410. },
  32411. },
  32412. [
  32413. {
  32414. name: "Small",
  32415. height: math.unit(5, "meters")
  32416. },
  32417. {
  32418. name: "Sage",
  32419. height: math.unit(100, "meters"),
  32420. default: true
  32421. },
  32422. {
  32423. name: "Fun Size",
  32424. height: math.unit(600, "meters")
  32425. },
  32426. {
  32427. name: "Goddess",
  32428. height: math.unit(20000, "km")
  32429. },
  32430. {
  32431. name: "Maximum",
  32432. height: math.unit(5, "galaxies")
  32433. },
  32434. ]
  32435. ))
  32436. characterMakers.push(() => makeCharacter(
  32437. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  32438. {
  32439. front: {
  32440. height: math.unit(6 + 3/12, "feet"),
  32441. weight: math.unit(190, "lb"),
  32442. name: "Front",
  32443. image: {
  32444. source: "./media/characters/gawain/front.svg",
  32445. extra: 2222/2139,
  32446. bottom: 90/2312
  32447. }
  32448. },
  32449. back: {
  32450. height: math.unit(6 + 3/12, "feet"),
  32451. weight: math.unit(190, "lb"),
  32452. name: "Back",
  32453. image: {
  32454. source: "./media/characters/gawain/back.svg",
  32455. extra: 2199/2111,
  32456. bottom: 73/2272
  32457. }
  32458. },
  32459. },
  32460. [
  32461. {
  32462. name: "Normal",
  32463. height: math.unit(6 + 3/12, "feet"),
  32464. default: true
  32465. },
  32466. ]
  32467. ))
  32468. characterMakers.push(() => makeCharacter(
  32469. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  32470. {
  32471. side: {
  32472. height: math.unit(3.5, "meters"),
  32473. weight: math.unit(16000, "lb"),
  32474. name: "Side",
  32475. image: {
  32476. source: "./media/characters/dascalti/side.svg",
  32477. extra: 392/273,
  32478. bottom: 47/439
  32479. }
  32480. },
  32481. breath: {
  32482. height: math.unit(7.4, "feet"),
  32483. name: "Breath",
  32484. image: {
  32485. source: "./media/characters/dascalti/breath.svg"
  32486. }
  32487. },
  32488. fed: {
  32489. height: math.unit(3.6, "meters"),
  32490. weight: math.unit(16000, "lb"),
  32491. name: "Fed",
  32492. image: {
  32493. source: "./media/characters/dascalti/fed.svg",
  32494. extra: 1419/820,
  32495. bottom: 95/1514
  32496. }
  32497. },
  32498. },
  32499. [
  32500. {
  32501. name: "Normal",
  32502. height: math.unit(3.5, "meters"),
  32503. default: true
  32504. },
  32505. ]
  32506. ))
  32507. characterMakers.push(() => makeCharacter(
  32508. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  32509. {
  32510. front: {
  32511. height: math.unit(3 + 5/12, "feet"),
  32512. name: "Front",
  32513. image: {
  32514. source: "./media/characters/mauve/front.svg",
  32515. extra: 1126/1033,
  32516. bottom: 65/1191
  32517. }
  32518. },
  32519. side: {
  32520. height: math.unit(3 + 5/12, "feet"),
  32521. name: "Side",
  32522. image: {
  32523. source: "./media/characters/mauve/side.svg",
  32524. extra: 1089/1001,
  32525. bottom: 29/1118
  32526. }
  32527. },
  32528. back: {
  32529. height: math.unit(3 + 5/12, "feet"),
  32530. name: "Back",
  32531. image: {
  32532. source: "./media/characters/mauve/back.svg",
  32533. extra: 1173/1053,
  32534. bottom: 109/1282
  32535. }
  32536. },
  32537. },
  32538. [
  32539. {
  32540. name: "Normal",
  32541. height: math.unit(3 + 5/12, "feet"),
  32542. default: true
  32543. },
  32544. ]
  32545. ))
  32546. characterMakers.push(() => makeCharacter(
  32547. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  32548. {
  32549. front: {
  32550. height: math.unit(6 + 3/12, "feet"),
  32551. weight: math.unit(430, "lb"),
  32552. name: "Front",
  32553. image: {
  32554. source: "./media/characters/carlos/front.svg",
  32555. extra: 1964/1913,
  32556. bottom: 70/2034
  32557. }
  32558. },
  32559. },
  32560. [
  32561. {
  32562. name: "Normal",
  32563. height: math.unit(6 + 3/12, "feet"),
  32564. default: true
  32565. },
  32566. ]
  32567. ))
  32568. characterMakers.push(() => makeCharacter(
  32569. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  32570. {
  32571. back: {
  32572. height: math.unit(5 + 10/12, "feet"),
  32573. weight: math.unit(200, "lb"),
  32574. name: "Back",
  32575. image: {
  32576. source: "./media/characters/jax/back.svg",
  32577. extra: 764/739,
  32578. bottom: 25/789
  32579. }
  32580. },
  32581. },
  32582. [
  32583. {
  32584. name: "Normal",
  32585. height: math.unit(5 + 10/12, "feet"),
  32586. default: true
  32587. },
  32588. ]
  32589. ))
  32590. characterMakers.push(() => makeCharacter(
  32591. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  32592. {
  32593. front: {
  32594. height: math.unit(8, "feet"),
  32595. weight: math.unit(250, "lb"),
  32596. name: "Front",
  32597. image: {
  32598. source: "./media/characters/eikthynir/front.svg",
  32599. extra: 1332/1166,
  32600. bottom: 82/1414
  32601. }
  32602. },
  32603. back: {
  32604. height: math.unit(8, "feet"),
  32605. weight: math.unit(250, "lb"),
  32606. name: "Back",
  32607. image: {
  32608. source: "./media/characters/eikthynir/back.svg",
  32609. extra: 1342/1190,
  32610. bottom: 19/1361
  32611. }
  32612. },
  32613. dick: {
  32614. height: math.unit(2.35, "feet"),
  32615. name: "Dick",
  32616. image: {
  32617. source: "./media/characters/eikthynir/dick.svg"
  32618. }
  32619. },
  32620. },
  32621. [
  32622. {
  32623. name: "Normal",
  32624. height: math.unit(8, "feet"),
  32625. default: true
  32626. },
  32627. ]
  32628. ))
  32629. characterMakers.push(() => makeCharacter(
  32630. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  32631. {
  32632. front: {
  32633. height: math.unit(99, "meters"),
  32634. weight: math.unit(13000, "tons"),
  32635. name: "Front",
  32636. image: {
  32637. source: "./media/characters/zlmos/front.svg",
  32638. extra: 2202/1992,
  32639. bottom: 315/2517
  32640. }
  32641. },
  32642. },
  32643. [
  32644. {
  32645. name: "Macro",
  32646. height: math.unit(99, "meters"),
  32647. default: true
  32648. },
  32649. ]
  32650. ))
  32651. characterMakers.push(() => makeCharacter(
  32652. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  32653. {
  32654. front: {
  32655. height: math.unit(6 + 5/12, "feet"),
  32656. name: "Front",
  32657. image: {
  32658. source: "./media/characters/purri/front.svg",
  32659. extra: 1698/1610,
  32660. bottom: 32/1730
  32661. }
  32662. },
  32663. frontAlt: {
  32664. height: math.unit(6 + 5/12, "feet"),
  32665. name: "Front (Alt)",
  32666. image: {
  32667. source: "./media/characters/purri/front-alt.svg",
  32668. extra: 450/420,
  32669. bottom: 26/476
  32670. }
  32671. },
  32672. boots: {
  32673. height: math.unit(5.5, "feet"),
  32674. name: "Boots",
  32675. image: {
  32676. source: "./media/characters/purri/boots.svg",
  32677. extra: 905/853,
  32678. bottom: 18/923
  32679. }
  32680. },
  32681. lying: {
  32682. height: math.unit(2, "feet"),
  32683. name: "Lying",
  32684. image: {
  32685. source: "./media/characters/purri/lying.svg",
  32686. extra: 940/843,
  32687. bottom: 146/1086
  32688. }
  32689. },
  32690. devious: {
  32691. height: math.unit(1.77, "feet"),
  32692. name: "Devious",
  32693. image: {
  32694. source: "./media/characters/purri/devious.svg",
  32695. extra: 1440/1155,
  32696. bottom: 147/1587
  32697. }
  32698. },
  32699. bean: {
  32700. height: math.unit(1.94, "feet"),
  32701. name: "Bean",
  32702. image: {
  32703. source: "./media/characters/purri/bean.svg"
  32704. }
  32705. },
  32706. },
  32707. [
  32708. {
  32709. name: "Micro",
  32710. height: math.unit(1, "mm")
  32711. },
  32712. {
  32713. name: "Normal",
  32714. height: math.unit(6 + 5/12, "feet"),
  32715. default: true
  32716. },
  32717. {
  32718. name: "Macro :3c",
  32719. height: math.unit(2, "miles")
  32720. },
  32721. ]
  32722. ))
  32723. characterMakers.push(() => makeCharacter(
  32724. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  32725. {
  32726. front: {
  32727. height: math.unit(6 + 2/12, "feet"),
  32728. weight: math.unit(250, "lb"),
  32729. name: "Front",
  32730. image: {
  32731. source: "./media/characters/moonlight/front.svg",
  32732. extra: 1044/908,
  32733. bottom: 56/1100
  32734. }
  32735. },
  32736. feral: {
  32737. height: math.unit(3 + 1/12, "feet"),
  32738. weight: math.unit(50, "kg"),
  32739. name: "Feral",
  32740. image: {
  32741. source: "./media/characters/moonlight/feral.svg",
  32742. extra: 3705/2791,
  32743. bottom: 145/3850
  32744. }
  32745. },
  32746. paw: {
  32747. height: math.unit(1, "feet"),
  32748. name: "Paw",
  32749. image: {
  32750. source: "./media/characters/moonlight/paw.svg"
  32751. }
  32752. },
  32753. paws: {
  32754. height: math.unit(0.98, "feet"),
  32755. name: "Paws",
  32756. image: {
  32757. source: "./media/characters/moonlight/paws.svg",
  32758. extra: 939/939,
  32759. bottom: 50/989
  32760. }
  32761. },
  32762. mouth: {
  32763. height: math.unit(0.48, "feet"),
  32764. name: "Mouth",
  32765. image: {
  32766. source: "./media/characters/moonlight/mouth.svg"
  32767. }
  32768. },
  32769. dick: {
  32770. height: math.unit(1.46, "feet"),
  32771. name: "Dick",
  32772. image: {
  32773. source: "./media/characters/moonlight/dick.svg"
  32774. }
  32775. },
  32776. },
  32777. [
  32778. {
  32779. name: "Normal",
  32780. height: math.unit(6 + 2/12, "feet"),
  32781. default: true
  32782. },
  32783. {
  32784. name: "Macro",
  32785. height: math.unit(300, "feet")
  32786. },
  32787. {
  32788. name: "Macro+",
  32789. height: math.unit(1, "mile")
  32790. },
  32791. {
  32792. name: "Mt. Moon",
  32793. height: math.unit(5, "miles")
  32794. },
  32795. {
  32796. name: "Megamacro",
  32797. height: math.unit(15, "miles")
  32798. },
  32799. ]
  32800. ))
  32801. characterMakers.push(() => makeCharacter(
  32802. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  32803. {
  32804. back: {
  32805. height: math.unit(6, "feet"),
  32806. weight: math.unit(150, "lb"),
  32807. name: "Back",
  32808. image: {
  32809. source: "./media/characters/sylen/back.svg",
  32810. extra: 1335/1273,
  32811. bottom: 107/1442
  32812. }
  32813. },
  32814. },
  32815. [
  32816. {
  32817. name: "Normal",
  32818. height: math.unit(5 + 5/12, "feet")
  32819. },
  32820. {
  32821. name: "Megamacro",
  32822. height: math.unit(3, "miles"),
  32823. default: true
  32824. },
  32825. ]
  32826. ))
  32827. characterMakers.push(() => makeCharacter(
  32828. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  32829. {
  32830. front: {
  32831. height: math.unit(6, "feet"),
  32832. weight: math.unit(190, "lb"),
  32833. name: "Front",
  32834. image: {
  32835. source: "./media/characters/huttser/front.svg",
  32836. extra: 1152/1058,
  32837. bottom: 23/1175
  32838. }
  32839. },
  32840. side: {
  32841. height: math.unit(6, "feet"),
  32842. weight: math.unit(190, "lb"),
  32843. name: "Side",
  32844. image: {
  32845. source: "./media/characters/huttser/side.svg",
  32846. extra: 1174/1065,
  32847. bottom: 18/1192
  32848. }
  32849. },
  32850. back: {
  32851. height: math.unit(6, "feet"),
  32852. weight: math.unit(190, "lb"),
  32853. name: "Back",
  32854. image: {
  32855. source: "./media/characters/huttser/back.svg",
  32856. extra: 1158/1056,
  32857. bottom: 12/1170
  32858. }
  32859. },
  32860. },
  32861. [
  32862. ]
  32863. ))
  32864. characterMakers.push(() => makeCharacter(
  32865. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  32866. {
  32867. side: {
  32868. height: math.unit(12 + 9/12, "feet"),
  32869. weight: math.unit(15000, "lb"),
  32870. name: "Side",
  32871. image: {
  32872. source: "./media/characters/faan/side.svg",
  32873. extra: 2747/2697,
  32874. bottom: 0/2747
  32875. }
  32876. },
  32877. front: {
  32878. height: math.unit(12 + 9/12, "feet"),
  32879. weight: math.unit(15000, "lb"),
  32880. name: "Front",
  32881. image: {
  32882. source: "./media/characters/faan/front.svg",
  32883. extra: 607/571,
  32884. bottom: 24/631
  32885. }
  32886. },
  32887. head: {
  32888. height: math.unit(2.85, "feet"),
  32889. name: "Head",
  32890. image: {
  32891. source: "./media/characters/faan/head.svg"
  32892. }
  32893. },
  32894. headAlt: {
  32895. height: math.unit(3.13, "feet"),
  32896. name: "Head-alt",
  32897. image: {
  32898. source: "./media/characters/faan/head-alt.svg"
  32899. }
  32900. },
  32901. },
  32902. [
  32903. {
  32904. name: "Normal",
  32905. height: math.unit(12 + 9/12, "feet"),
  32906. default: true
  32907. },
  32908. ]
  32909. ))
  32910. characterMakers.push(() => makeCharacter(
  32911. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  32912. {
  32913. front: {
  32914. height: math.unit(6, "feet"),
  32915. weight: math.unit(300, "lb"),
  32916. name: "Front",
  32917. image: {
  32918. source: "./media/characters/tanio/front.svg",
  32919. extra: 711/673,
  32920. bottom: 25/736
  32921. }
  32922. },
  32923. },
  32924. [
  32925. {
  32926. name: "Normal",
  32927. height: math.unit(6, "feet"),
  32928. default: true
  32929. },
  32930. ]
  32931. ))
  32932. characterMakers.push(() => makeCharacter(
  32933. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  32934. {
  32935. front: {
  32936. height: math.unit(3, "inches"),
  32937. name: "Front",
  32938. image: {
  32939. source: "./media/characters/noboru/front.svg",
  32940. extra: 1039/932,
  32941. bottom: 18/1057
  32942. }
  32943. },
  32944. },
  32945. [
  32946. {
  32947. name: "Micro",
  32948. height: math.unit(3, "inches"),
  32949. default: true
  32950. },
  32951. ]
  32952. ))
  32953. characterMakers.push(() => makeCharacter(
  32954. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  32955. {
  32956. front: {
  32957. height: math.unit(1.85, "meters"),
  32958. weight: math.unit(80, "kg"),
  32959. name: "Front",
  32960. image: {
  32961. source: "./media/characters/daniel-barrett/front.svg",
  32962. extra: 355/337,
  32963. bottom: 9/364
  32964. }
  32965. },
  32966. },
  32967. [
  32968. {
  32969. name: "Pico",
  32970. height: math.unit(0.0433, "mm")
  32971. },
  32972. {
  32973. name: "Nano",
  32974. height: math.unit(1.5, "mm")
  32975. },
  32976. {
  32977. name: "Micro",
  32978. height: math.unit(5.3, "cm"),
  32979. default: true
  32980. },
  32981. {
  32982. name: "Normal",
  32983. height: math.unit(1.85, "meters")
  32984. },
  32985. {
  32986. name: "Macro",
  32987. height: math.unit(64.7, "meters")
  32988. },
  32989. {
  32990. name: "Megamacro",
  32991. height: math.unit(2.26, "km")
  32992. },
  32993. {
  32994. name: "Gigamacro",
  32995. height: math.unit(79, "km")
  32996. },
  32997. {
  32998. name: "Teramacro",
  32999. height: math.unit(2765, "km")
  33000. },
  33001. {
  33002. name: "Petamacro",
  33003. height: math.unit(96678, "km")
  33004. },
  33005. ]
  33006. ))
  33007. characterMakers.push(() => makeCharacter(
  33008. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  33009. {
  33010. front: {
  33011. height: math.unit(30, "meters"),
  33012. weight: math.unit(400, "tons"),
  33013. name: "Front",
  33014. image: {
  33015. source: "./media/characters/zeel/front.svg",
  33016. extra: 2599/2599,
  33017. bottom: 226/2825
  33018. }
  33019. },
  33020. },
  33021. [
  33022. {
  33023. name: "Macro",
  33024. height: math.unit(30, "meters"),
  33025. default: true
  33026. },
  33027. ]
  33028. ))
  33029. characterMakers.push(() => makeCharacter(
  33030. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  33031. {
  33032. front: {
  33033. height: math.unit(6 + 7/12, "feet"),
  33034. weight: math.unit(210, "lb"),
  33035. name: "Front",
  33036. image: {
  33037. source: "./media/characters/tarn/front.svg",
  33038. extra: 3517/3220,
  33039. bottom: 91/3608
  33040. }
  33041. },
  33042. back: {
  33043. height: math.unit(6 + 7/12, "feet"),
  33044. weight: math.unit(210, "lb"),
  33045. name: "Back",
  33046. image: {
  33047. source: "./media/characters/tarn/back.svg",
  33048. extra: 3566/3241,
  33049. bottom: 34/3600
  33050. }
  33051. },
  33052. dick: {
  33053. height: math.unit(1.65, "feet"),
  33054. name: "Dick",
  33055. image: {
  33056. source: "./media/characters/tarn/dick.svg"
  33057. }
  33058. },
  33059. paw: {
  33060. height: math.unit(1.80, "feet"),
  33061. name: "Paw",
  33062. image: {
  33063. source: "./media/characters/tarn/paw.svg"
  33064. }
  33065. },
  33066. tongue: {
  33067. height: math.unit(0.97, "feet"),
  33068. name: "Tongue",
  33069. image: {
  33070. source: "./media/characters/tarn/tongue.svg"
  33071. }
  33072. },
  33073. },
  33074. [
  33075. {
  33076. name: "Micro",
  33077. height: math.unit(4, "inches")
  33078. },
  33079. {
  33080. name: "Normal",
  33081. height: math.unit(6 + 7/12, "feet"),
  33082. default: true
  33083. },
  33084. {
  33085. name: "Macro",
  33086. height: math.unit(300, "feet")
  33087. },
  33088. ]
  33089. ))
  33090. characterMakers.push(() => makeCharacter(
  33091. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  33092. {
  33093. front: {
  33094. height: math.unit(5 + 7/12, "feet"),
  33095. weight: math.unit(80, "kg"),
  33096. name: "Front",
  33097. image: {
  33098. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  33099. extra: 3023/2865,
  33100. bottom: 33/3056
  33101. }
  33102. },
  33103. back: {
  33104. height: math.unit(5 + 7/12, "feet"),
  33105. weight: math.unit(80, "kg"),
  33106. name: "Back",
  33107. image: {
  33108. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  33109. extra: 3020/2886,
  33110. bottom: 30/3050
  33111. }
  33112. },
  33113. dick: {
  33114. height: math.unit(0.98, "feet"),
  33115. name: "Dick",
  33116. image: {
  33117. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  33118. }
  33119. },
  33120. anatomy: {
  33121. height: math.unit(2.86, "feet"),
  33122. name: "Anatomy",
  33123. image: {
  33124. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  33125. }
  33126. },
  33127. },
  33128. [
  33129. {
  33130. name: "Really Small",
  33131. height: math.unit(2, "inches")
  33132. },
  33133. {
  33134. name: "Micro",
  33135. height: math.unit(5.583, "inches")
  33136. },
  33137. {
  33138. name: "Normal",
  33139. height: math.unit(5 + 7/12, "feet"),
  33140. default: true
  33141. },
  33142. {
  33143. name: "Macro",
  33144. height: math.unit(67, "feet")
  33145. },
  33146. {
  33147. name: "Megamacro",
  33148. height: math.unit(134, "feet")
  33149. },
  33150. ]
  33151. ))
  33152. characterMakers.push(() => makeCharacter(
  33153. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  33154. {
  33155. front: {
  33156. height: math.unit(9, "feet"),
  33157. weight: math.unit(120, "lb"),
  33158. name: "Front",
  33159. image: {
  33160. source: "./media/characters/sally/front.svg",
  33161. extra: 1506/1349,
  33162. bottom: 66/1572
  33163. }
  33164. },
  33165. },
  33166. [
  33167. {
  33168. name: "Normal",
  33169. height: math.unit(9, "feet"),
  33170. default: true
  33171. },
  33172. ]
  33173. ))
  33174. characterMakers.push(() => makeCharacter(
  33175. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  33176. {
  33177. front: {
  33178. height: math.unit(8, "feet"),
  33179. weight: math.unit(900, "lb"),
  33180. name: "Front",
  33181. image: {
  33182. source: "./media/characters/owen/front.svg",
  33183. extra: 1761/1657,
  33184. bottom: 74/1835
  33185. }
  33186. },
  33187. side: {
  33188. height: math.unit(8, "feet"),
  33189. weight: math.unit(900, "lb"),
  33190. name: "Side",
  33191. image: {
  33192. source: "./media/characters/owen/side.svg",
  33193. extra: 1797/1734,
  33194. bottom: 30/1827
  33195. }
  33196. },
  33197. back: {
  33198. height: math.unit(8, "feet"),
  33199. weight: math.unit(900, "lb"),
  33200. name: "Back",
  33201. image: {
  33202. source: "./media/characters/owen/back.svg",
  33203. extra: 1796/1706,
  33204. bottom: 59/1855
  33205. }
  33206. },
  33207. maw: {
  33208. height: math.unit(1.76, "feet"),
  33209. name: "Maw",
  33210. image: {
  33211. source: "./media/characters/owen/maw.svg"
  33212. }
  33213. },
  33214. },
  33215. [
  33216. {
  33217. name: "Normal",
  33218. height: math.unit(8, "feet"),
  33219. default: true
  33220. },
  33221. ]
  33222. ))
  33223. characterMakers.push(() => makeCharacter(
  33224. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  33225. {
  33226. front: {
  33227. height: math.unit(4, "feet"),
  33228. weight: math.unit(400, "lb"),
  33229. name: "Front",
  33230. image: {
  33231. source: "./media/characters/ryth/front.svg",
  33232. extra: 1920/1748,
  33233. bottom: 42/1962
  33234. }
  33235. },
  33236. back: {
  33237. height: math.unit(4, "feet"),
  33238. weight: math.unit(400, "lb"),
  33239. name: "Back",
  33240. image: {
  33241. source: "./media/characters/ryth/back.svg",
  33242. extra: 1897/1690,
  33243. bottom: 89/1986
  33244. }
  33245. },
  33246. mouth: {
  33247. height: math.unit(1.39, "feet"),
  33248. name: "Mouth",
  33249. image: {
  33250. source: "./media/characters/ryth/mouth.svg"
  33251. }
  33252. },
  33253. tailmaw: {
  33254. height: math.unit(1.23, "feet"),
  33255. name: "Tailmaw",
  33256. image: {
  33257. source: "./media/characters/ryth/tailmaw.svg"
  33258. }
  33259. },
  33260. goia: {
  33261. height: math.unit(4, "meters"),
  33262. weight: math.unit(10800, "lb"),
  33263. name: "Goia",
  33264. image: {
  33265. source: "./media/characters/ryth/goia.svg",
  33266. extra: 745/640,
  33267. bottom: 107/852
  33268. }
  33269. },
  33270. goiaFront: {
  33271. height: math.unit(4, "meters"),
  33272. weight: math.unit(10800, "lb"),
  33273. name: "Goia (Front)",
  33274. image: {
  33275. source: "./media/characters/ryth/goia-front.svg",
  33276. extra: 750/586,
  33277. bottom: 114/864
  33278. }
  33279. },
  33280. goiaMaw: {
  33281. height: math.unit(5.55, "feet"),
  33282. name: "Goia Maw",
  33283. image: {
  33284. source: "./media/characters/ryth/goia-maw.svg"
  33285. }
  33286. },
  33287. goiaForepaw: {
  33288. height: math.unit(3.5, "feet"),
  33289. name: "Goia Forepaw",
  33290. image: {
  33291. source: "./media/characters/ryth/goia-forepaw.svg"
  33292. }
  33293. },
  33294. goiaHindpaw: {
  33295. height: math.unit(5.55, "feet"),
  33296. name: "Goia Hindpaw",
  33297. image: {
  33298. source: "./media/characters/ryth/goia-hindpaw.svg"
  33299. }
  33300. },
  33301. },
  33302. [
  33303. {
  33304. name: "Normal",
  33305. height: math.unit(4, "feet"),
  33306. default: true
  33307. },
  33308. ]
  33309. ))
  33310. characterMakers.push(() => makeCharacter(
  33311. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  33312. {
  33313. front: {
  33314. height: math.unit(7, "feet"),
  33315. weight: math.unit(180, "lb"),
  33316. name: "Front",
  33317. image: {
  33318. source: "./media/characters/necrolance/front.svg",
  33319. extra: 1062/947,
  33320. bottom: 41/1103
  33321. }
  33322. },
  33323. back: {
  33324. height: math.unit(7, "feet"),
  33325. weight: math.unit(180, "lb"),
  33326. name: "Back",
  33327. image: {
  33328. source: "./media/characters/necrolance/back.svg",
  33329. extra: 1045/984,
  33330. bottom: 14/1059
  33331. }
  33332. },
  33333. wing: {
  33334. height: math.unit(2.67, "feet"),
  33335. name: "Wing",
  33336. image: {
  33337. source: "./media/characters/necrolance/wing.svg"
  33338. }
  33339. },
  33340. },
  33341. [
  33342. {
  33343. name: "Normal",
  33344. height: math.unit(7, "feet"),
  33345. default: true
  33346. },
  33347. ]
  33348. ))
  33349. characterMakers.push(() => makeCharacter(
  33350. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  33351. {
  33352. front: {
  33353. height: math.unit(76, "meters"),
  33354. weight: math.unit(30000, "tons"),
  33355. name: "Front",
  33356. image: {
  33357. source: "./media/characters/tyler/front.svg",
  33358. extra: 1640/1640,
  33359. bottom: 114/1754
  33360. }
  33361. },
  33362. },
  33363. [
  33364. {
  33365. name: "Macro",
  33366. height: math.unit(76, "meters"),
  33367. default: true
  33368. },
  33369. ]
  33370. ))
  33371. characterMakers.push(() => makeCharacter(
  33372. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  33373. {
  33374. front: {
  33375. height: math.unit(4 + 11/12, "feet"),
  33376. weight: math.unit(132, "lb"),
  33377. name: "Front",
  33378. image: {
  33379. source: "./media/characters/icey/front.svg",
  33380. extra: 2750/2550,
  33381. bottom: 33/2783
  33382. }
  33383. },
  33384. back: {
  33385. height: math.unit(4 + 11/12, "feet"),
  33386. weight: math.unit(132, "lb"),
  33387. name: "Back",
  33388. image: {
  33389. source: "./media/characters/icey/back.svg",
  33390. extra: 2624/2481,
  33391. bottom: 35/2659
  33392. }
  33393. },
  33394. },
  33395. [
  33396. {
  33397. name: "Normal",
  33398. height: math.unit(4 + 11/12, "feet"),
  33399. default: true
  33400. },
  33401. ]
  33402. ))
  33403. characterMakers.push(() => makeCharacter(
  33404. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  33405. {
  33406. front: {
  33407. height: math.unit(100, "feet"),
  33408. weight: math.unit(0, "lb"),
  33409. name: "Front",
  33410. image: {
  33411. source: "./media/characters/smile/front.svg",
  33412. extra: 2983/2912,
  33413. bottom: 162/3145
  33414. }
  33415. },
  33416. back: {
  33417. height: math.unit(100, "feet"),
  33418. weight: math.unit(0, "lb"),
  33419. name: "Back",
  33420. image: {
  33421. source: "./media/characters/smile/back.svg",
  33422. extra: 3143/3031,
  33423. bottom: 91/3234
  33424. }
  33425. },
  33426. head: {
  33427. height: math.unit(26.3, "feet"),
  33428. weight: math.unit(0, "lb"),
  33429. name: "Head",
  33430. image: {
  33431. source: "./media/characters/smile/head.svg"
  33432. }
  33433. },
  33434. collar: {
  33435. height: math.unit(5.3, "feet"),
  33436. weight: math.unit(0, "lb"),
  33437. name: "Collar",
  33438. image: {
  33439. source: "./media/characters/smile/collar.svg"
  33440. }
  33441. },
  33442. },
  33443. [
  33444. {
  33445. name: "Macro",
  33446. height: math.unit(100, "feet"),
  33447. default: true
  33448. },
  33449. ]
  33450. ))
  33451. characterMakers.push(() => makeCharacter(
  33452. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  33453. {
  33454. dragon: {
  33455. height: math.unit(26, "feet"),
  33456. weight: math.unit(36, "tons"),
  33457. name: "Dragon",
  33458. image: {
  33459. source: "./media/characters/arimphae/dragon.svg",
  33460. extra: 1574/983,
  33461. bottom: 357/1931
  33462. }
  33463. },
  33464. drake: {
  33465. height: math.unit(9, "feet"),
  33466. weight: math.unit(1.5, "tons"),
  33467. name: "Drake",
  33468. image: {
  33469. source: "./media/characters/arimphae/drake.svg",
  33470. extra: 1120/925,
  33471. bottom: 435/1555
  33472. }
  33473. },
  33474. },
  33475. [
  33476. {
  33477. name: "Small",
  33478. height: math.unit(26*5/9, "feet")
  33479. },
  33480. {
  33481. name: "Normal",
  33482. height: math.unit(26, "feet"),
  33483. default: true
  33484. },
  33485. ]
  33486. ))
  33487. characterMakers.push(() => makeCharacter(
  33488. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  33489. {
  33490. front: {
  33491. height: math.unit(8 + 9/12, "feet"),
  33492. name: "Front",
  33493. image: {
  33494. source: "./media/characters/xander/front.svg",
  33495. extra: 1237/974,
  33496. bottom: 94/1331
  33497. }
  33498. },
  33499. },
  33500. [
  33501. {
  33502. name: "Normal",
  33503. height: math.unit(8 + 9/12, "feet"),
  33504. default: true
  33505. },
  33506. {
  33507. name: "Gaze Grabber",
  33508. height: math.unit(13 + 8/12, "feet")
  33509. },
  33510. {
  33511. name: "Jaw Dropper",
  33512. height: math.unit(27, "feet")
  33513. },
  33514. {
  33515. name: "Show Stopper",
  33516. height: math.unit(136, "feet")
  33517. },
  33518. {
  33519. name: "Superstar",
  33520. height: math.unit(1.9e6, "miles")
  33521. },
  33522. ]
  33523. ))
  33524. characterMakers.push(() => makeCharacter(
  33525. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  33526. {
  33527. side: {
  33528. height: math.unit(2100, "feet"),
  33529. name: "Side",
  33530. image: {
  33531. source: "./media/characters/osiris/side.svg",
  33532. extra: 1105/939,
  33533. bottom: 167/1272
  33534. }
  33535. },
  33536. },
  33537. [
  33538. {
  33539. name: "Macro",
  33540. height: math.unit(2100, "feet"),
  33541. default: true
  33542. },
  33543. ]
  33544. ))
  33545. characterMakers.push(() => makeCharacter(
  33546. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  33547. {
  33548. front: {
  33549. height: math.unit(6 + 8/12, "feet"),
  33550. weight: math.unit(225, "lb"),
  33551. name: "Front",
  33552. image: {
  33553. source: "./media/characters/rhys-londe/front.svg",
  33554. extra: 2258/2141,
  33555. bottom: 188/2446
  33556. }
  33557. },
  33558. back: {
  33559. height: math.unit(6 + 8/12, "feet"),
  33560. weight: math.unit(225, "lb"),
  33561. name: "Back",
  33562. image: {
  33563. source: "./media/characters/rhys-londe/back.svg",
  33564. extra: 2237/2137,
  33565. bottom: 63/2300
  33566. }
  33567. },
  33568. frontNsfw: {
  33569. height: math.unit(6 + 8/12, "feet"),
  33570. weight: math.unit(225, "lb"),
  33571. name: "Front (NSFW)",
  33572. image: {
  33573. source: "./media/characters/rhys-londe/front-nsfw.svg",
  33574. extra: 2258/2141,
  33575. bottom: 188/2446
  33576. }
  33577. },
  33578. backNsfw: {
  33579. height: math.unit(6 + 8/12, "feet"),
  33580. weight: math.unit(225, "lb"),
  33581. name: "Back (NSFW)",
  33582. image: {
  33583. source: "./media/characters/rhys-londe/back-nsfw.svg",
  33584. extra: 2237/2137,
  33585. bottom: 63/2300
  33586. }
  33587. },
  33588. dick: {
  33589. height: math.unit(30, "inches"),
  33590. name: "Dick",
  33591. image: {
  33592. source: "./media/characters/rhys-londe/dick.svg"
  33593. }
  33594. },
  33595. maw: {
  33596. height: math.unit(1.6, "feet"),
  33597. name: "Maw",
  33598. image: {
  33599. source: "./media/characters/rhys-londe/maw.svg"
  33600. }
  33601. },
  33602. },
  33603. [
  33604. {
  33605. name: "Normal",
  33606. height: math.unit(6 + 8/12, "feet"),
  33607. default: true
  33608. },
  33609. ]
  33610. ))
  33611. characterMakers.push(() => makeCharacter(
  33612. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  33613. {
  33614. front: {
  33615. height: math.unit(3 + 10/12, "feet"),
  33616. weight: math.unit(90, "lb"),
  33617. name: "Front",
  33618. image: {
  33619. source: "./media/characters/taivas-ensim/front.svg",
  33620. extra: 1327/1216,
  33621. bottom: 96/1423
  33622. }
  33623. },
  33624. back: {
  33625. height: math.unit(3 + 10/12, "feet"),
  33626. weight: math.unit(90, "lb"),
  33627. name: "Back",
  33628. image: {
  33629. source: "./media/characters/taivas-ensim/back.svg",
  33630. extra: 1355/1247,
  33631. bottom: 11/1366
  33632. }
  33633. },
  33634. frontNsfw: {
  33635. height: math.unit(3 + 10/12, "feet"),
  33636. weight: math.unit(90, "lb"),
  33637. name: "Front (NSFW)",
  33638. image: {
  33639. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  33640. extra: 1327/1216,
  33641. bottom: 96/1423
  33642. }
  33643. },
  33644. backNsfw: {
  33645. height: math.unit(3 + 10/12, "feet"),
  33646. weight: math.unit(90, "lb"),
  33647. name: "Back (NSFW)",
  33648. image: {
  33649. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  33650. extra: 1355/1247,
  33651. bottom: 11/1366
  33652. }
  33653. },
  33654. },
  33655. [
  33656. {
  33657. name: "Normal",
  33658. height: math.unit(3 + 10/12, "feet"),
  33659. default: true
  33660. },
  33661. ]
  33662. ))
  33663. characterMakers.push(() => makeCharacter(
  33664. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  33665. {
  33666. front: {
  33667. height: math.unit(9 + 6/12, "feet"),
  33668. weight: math.unit(940, "lb"),
  33669. name: "Front",
  33670. image: {
  33671. source: "./media/characters/byliss/front.svg",
  33672. extra: 1327/1290,
  33673. bottom: 82/1409
  33674. }
  33675. },
  33676. back: {
  33677. height: math.unit(9 + 6/12, "feet"),
  33678. weight: math.unit(940, "lb"),
  33679. name: "Back",
  33680. image: {
  33681. source: "./media/characters/byliss/back.svg",
  33682. extra: 1376/1349,
  33683. bottom: 9/1385
  33684. }
  33685. },
  33686. frontNsfw: {
  33687. height: math.unit(9 + 6/12, "feet"),
  33688. weight: math.unit(940, "lb"),
  33689. name: "Front (NSFW)",
  33690. image: {
  33691. source: "./media/characters/byliss/front-nsfw.svg",
  33692. extra: 1327/1290,
  33693. bottom: 82/1409
  33694. }
  33695. },
  33696. backNsfw: {
  33697. height: math.unit(9 + 6/12, "feet"),
  33698. weight: math.unit(940, "lb"),
  33699. name: "Back (NSFW)",
  33700. image: {
  33701. source: "./media/characters/byliss/back-nsfw.svg",
  33702. extra: 1376/1349,
  33703. bottom: 9/1385
  33704. }
  33705. },
  33706. },
  33707. [
  33708. {
  33709. name: "Normal",
  33710. height: math.unit(9 + 6/12, "feet"),
  33711. default: true
  33712. },
  33713. ]
  33714. ))
  33715. characterMakers.push(() => makeCharacter(
  33716. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  33717. {
  33718. front: {
  33719. height: math.unit(5 + 2/12, "feet"),
  33720. weight: math.unit(200, "lb"),
  33721. name: "Front",
  33722. image: {
  33723. source: "./media/characters/noraly/front.svg",
  33724. extra: 4985/4773,
  33725. bottom: 150/5135
  33726. }
  33727. },
  33728. full: {
  33729. height: math.unit(5 + 2/12, "feet"),
  33730. weight: math.unit(164, "lb"),
  33731. name: "Full",
  33732. image: {
  33733. source: "./media/characters/noraly/full.svg",
  33734. extra: 1114/1059,
  33735. bottom: 35/1149
  33736. }
  33737. },
  33738. fuller: {
  33739. height: math.unit(5 + 2/12, "feet"),
  33740. weight: math.unit(230, "lb"),
  33741. name: "Fuller",
  33742. image: {
  33743. source: "./media/characters/noraly/fuller.svg",
  33744. extra: 1114/1059,
  33745. bottom: 35/1149
  33746. }
  33747. },
  33748. fullest: {
  33749. height: math.unit(5 + 2/12, "feet"),
  33750. weight: math.unit(300, "lb"),
  33751. name: "Fullest",
  33752. image: {
  33753. source: "./media/characters/noraly/fullest.svg",
  33754. extra: 1114/1059,
  33755. bottom: 35/1149
  33756. }
  33757. },
  33758. },
  33759. [
  33760. {
  33761. name: "Normal",
  33762. height: math.unit(5 + 2/12, "feet"),
  33763. default: true
  33764. },
  33765. ]
  33766. ))
  33767. characterMakers.push(() => makeCharacter(
  33768. { name: "Pera", species: ["snake"], tags: ["naga"] },
  33769. {
  33770. front: {
  33771. height: math.unit(5 + 2/12, "feet"),
  33772. weight: math.unit(210, "lb"),
  33773. name: "Front",
  33774. image: {
  33775. source: "./media/characters/pera/front.svg",
  33776. extra: 1560/1531,
  33777. bottom: 165/1725
  33778. }
  33779. },
  33780. back: {
  33781. height: math.unit(5 + 2/12, "feet"),
  33782. weight: math.unit(210, "lb"),
  33783. name: "Back",
  33784. image: {
  33785. source: "./media/characters/pera/back.svg",
  33786. extra: 1523/1493,
  33787. bottom: 152/1675
  33788. }
  33789. },
  33790. dick: {
  33791. height: math.unit(2.4, "feet"),
  33792. name: "Dick",
  33793. image: {
  33794. source: "./media/characters/pera/dick.svg"
  33795. }
  33796. },
  33797. },
  33798. [
  33799. {
  33800. name: "Normal",
  33801. height: math.unit(5 + 2/12, "feet"),
  33802. default: true
  33803. },
  33804. ]
  33805. ))
  33806. characterMakers.push(() => makeCharacter(
  33807. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  33808. {
  33809. front: {
  33810. height: math.unit(12, "feet"),
  33811. weight: math.unit(3200, "lb"),
  33812. name: "Front",
  33813. image: {
  33814. source: "./media/characters/julian/front.svg",
  33815. extra: 2962/2701,
  33816. bottom: 184/3146
  33817. }
  33818. },
  33819. maw: {
  33820. height: math.unit(5.35, "feet"),
  33821. name: "Maw",
  33822. image: {
  33823. source: "./media/characters/julian/maw.svg"
  33824. }
  33825. },
  33826. paw: {
  33827. height: math.unit(3.07, "feet"),
  33828. name: "Paw",
  33829. image: {
  33830. source: "./media/characters/julian/paw.svg"
  33831. }
  33832. },
  33833. },
  33834. [
  33835. {
  33836. name: "Default",
  33837. height: math.unit(12, "feet"),
  33838. default: true
  33839. },
  33840. {
  33841. name: "Big",
  33842. height: math.unit(50, "feet")
  33843. },
  33844. {
  33845. name: "Really Big",
  33846. height: math.unit(1, "mile")
  33847. },
  33848. {
  33849. name: "Extremely Big",
  33850. height: math.unit(100, "miles")
  33851. },
  33852. {
  33853. name: "Planet Hugger",
  33854. height: math.unit(200, "megameters")
  33855. },
  33856. {
  33857. name: "Unreasonably Big",
  33858. height: math.unit(1e300, "meters")
  33859. },
  33860. ]
  33861. ))
  33862. characterMakers.push(() => makeCharacter(
  33863. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  33864. {
  33865. solgooleo: {
  33866. height: math.unit(4, "meters"),
  33867. weight: math.unit(6000*1.5, "kg"),
  33868. volume: math.unit(6000, "liters"),
  33869. name: "Solgooleo",
  33870. image: {
  33871. source: "./media/characters/pi/solgooleo.svg",
  33872. extra: 388/331,
  33873. bottom: 29/417
  33874. }
  33875. },
  33876. },
  33877. [
  33878. {
  33879. name: "Normal",
  33880. height: math.unit(4, "meters"),
  33881. default: true
  33882. },
  33883. ]
  33884. ))
  33885. characterMakers.push(() => makeCharacter(
  33886. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  33887. {
  33888. front: {
  33889. height: math.unit(8, "feet"),
  33890. weight: math.unit(4, "tons"),
  33891. name: "Front",
  33892. image: {
  33893. source: "./media/characters/shaun/front.svg",
  33894. extra: 503/495,
  33895. bottom: 20/523
  33896. }
  33897. },
  33898. back: {
  33899. height: math.unit(8, "feet"),
  33900. weight: math.unit(4, "tons"),
  33901. name: "Back",
  33902. image: {
  33903. source: "./media/characters/shaun/back.svg",
  33904. extra: 487/480,
  33905. bottom: 20/507
  33906. }
  33907. },
  33908. },
  33909. [
  33910. {
  33911. name: "Lorg",
  33912. height: math.unit(8, "feet"),
  33913. default: true
  33914. },
  33915. ]
  33916. ))
  33917. characterMakers.push(() => makeCharacter(
  33918. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  33919. {
  33920. frontAnthro: {
  33921. height: math.unit(7, "feet"),
  33922. name: "Front",
  33923. image: {
  33924. source: "./media/characters/sini/front-anthro.svg",
  33925. extra: 726/678,
  33926. bottom: 35/761
  33927. },
  33928. form: "anthro",
  33929. default: true
  33930. },
  33931. backAnthro: {
  33932. height: math.unit(7, "feet"),
  33933. name: "Back",
  33934. image: {
  33935. source: "./media/characters/sini/back-anthro.svg",
  33936. extra: 743/701,
  33937. bottom: 12/755
  33938. },
  33939. form: "anthro",
  33940. },
  33941. frontAnthroNsfw: {
  33942. height: math.unit(7, "feet"),
  33943. name: "Front (NSFW)",
  33944. image: {
  33945. source: "./media/characters/sini/front-anthro-nsfw.svg",
  33946. extra: 726/678,
  33947. bottom: 35/761
  33948. },
  33949. form: "anthro"
  33950. },
  33951. backAnthroNsfw: {
  33952. height: math.unit(7, "feet"),
  33953. name: "Back (NSFW)",
  33954. image: {
  33955. source: "./media/characters/sini/back-anthro-nsfw.svg",
  33956. extra: 743/701,
  33957. bottom: 12/755
  33958. },
  33959. form: "anthro",
  33960. },
  33961. mawAnthro: {
  33962. height: math.unit(2.14, "feet"),
  33963. name: "Maw",
  33964. image: {
  33965. source: "./media/characters/sini/maw-anthro.svg"
  33966. },
  33967. form: "anthro"
  33968. },
  33969. dick: {
  33970. height: math.unit(1.45, "feet"),
  33971. name: "Dick",
  33972. image: {
  33973. source: "./media/characters/sini/dick-anthro.svg"
  33974. },
  33975. form: "anthro"
  33976. },
  33977. feral: {
  33978. height: math.unit(16, "feet"),
  33979. name: "Feral",
  33980. image: {
  33981. source: "./media/characters/sini/feral.svg",
  33982. extra: 814/605,
  33983. bottom: 11/825
  33984. },
  33985. form: "feral",
  33986. default: true
  33987. },
  33988. feralNsfw: {
  33989. height: math.unit(16, "feet"),
  33990. name: "Feral (NSFW)",
  33991. image: {
  33992. source: "./media/characters/sini/feral-nsfw.svg",
  33993. extra: 814/605,
  33994. bottom: 11/825
  33995. },
  33996. form: "feral"
  33997. },
  33998. mawFeral: {
  33999. height: math.unit(5.66, "feet"),
  34000. name: "Maw",
  34001. image: {
  34002. source: "./media/characters/sini/maw-feral.svg"
  34003. },
  34004. form: "feral",
  34005. },
  34006. pawFeral: {
  34007. height: math.unit(5.17, "feet"),
  34008. name: "Paw",
  34009. image: {
  34010. source: "./media/characters/sini/paw-feral.svg"
  34011. },
  34012. form: "feral",
  34013. },
  34014. rumpFeral: {
  34015. height: math.unit(13.11, "feet"),
  34016. name: "Rump",
  34017. image: {
  34018. source: "./media/characters/sini/rump-feral.svg"
  34019. },
  34020. form: "feral",
  34021. },
  34022. dickFeral: {
  34023. height: math.unit(1, "feet"),
  34024. name: "Dick",
  34025. image: {
  34026. source: "./media/characters/sini/dick-feral.svg"
  34027. },
  34028. form: "feral",
  34029. },
  34030. eyeFeral: {
  34031. height: math.unit(1.23, "feet"),
  34032. name: "Eye",
  34033. image: {
  34034. source: "./media/characters/sini/eye-feral.svg"
  34035. },
  34036. form: "feral",
  34037. },
  34038. },
  34039. [
  34040. {
  34041. name: "Normal",
  34042. height: math.unit(7, "feet"),
  34043. default: true,
  34044. form: "anthro"
  34045. },
  34046. {
  34047. name: "Normal",
  34048. height: math.unit(16, "feet"),
  34049. default: true,
  34050. form: "feral"
  34051. },
  34052. ],
  34053. {
  34054. "anthro": {
  34055. name: "Anthro",
  34056. default: true
  34057. },
  34058. "feral": {
  34059. name: "Feral",
  34060. }
  34061. }
  34062. ))
  34063. characterMakers.push(() => makeCharacter(
  34064. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  34065. {
  34066. side: {
  34067. height: math.unit(47.2, "meters"),
  34068. weight: math.unit(10000, "tons"),
  34069. name: "Side",
  34070. image: {
  34071. source: "./media/characters/raylldo/side.svg",
  34072. extra: 2363/642,
  34073. bottom: 221/2584
  34074. }
  34075. },
  34076. top: {
  34077. height: math.unit(240, "meters"),
  34078. weight: math.unit(10000, "tons"),
  34079. name: "Top",
  34080. image: {
  34081. source: "./media/characters/raylldo/top.svg"
  34082. }
  34083. },
  34084. bottom: {
  34085. height: math.unit(240, "meters"),
  34086. weight: math.unit(10000, "tons"),
  34087. name: "Bottom",
  34088. image: {
  34089. source: "./media/characters/raylldo/bottom.svg"
  34090. }
  34091. },
  34092. head: {
  34093. height: math.unit(38.6, "meters"),
  34094. name: "Head",
  34095. image: {
  34096. source: "./media/characters/raylldo/head.svg",
  34097. extra: 1335/1112,
  34098. bottom: 0/1335
  34099. }
  34100. },
  34101. maw: {
  34102. height: math.unit(16.37, "meters"),
  34103. name: "Maw",
  34104. image: {
  34105. source: "./media/characters/raylldo/maw.svg",
  34106. extra: 883/660,
  34107. bottom: 0/883
  34108. },
  34109. extraAttributes: {
  34110. preyCapacity: {
  34111. name: "Capacity",
  34112. power: 3,
  34113. type: "volume",
  34114. base: math.unit(1000, "people")
  34115. },
  34116. tongueSize: {
  34117. name: "Tongue Size",
  34118. power: 2,
  34119. type: "area",
  34120. base: math.unit(21, "m^2")
  34121. }
  34122. }
  34123. },
  34124. forepaw: {
  34125. height: math.unit(18, "meters"),
  34126. name: "Forepaw",
  34127. image: {
  34128. source: "./media/characters/raylldo/forepaw.svg"
  34129. }
  34130. },
  34131. hindpaw: {
  34132. height: math.unit(23, "meters"),
  34133. name: "Hindpaw",
  34134. image: {
  34135. source: "./media/characters/raylldo/hindpaw.svg"
  34136. }
  34137. },
  34138. genitals: {
  34139. height: math.unit(42, "meters"),
  34140. name: "Genitals",
  34141. image: {
  34142. source: "./media/characters/raylldo/genitals.svg"
  34143. }
  34144. },
  34145. },
  34146. [
  34147. {
  34148. name: "Normal",
  34149. height: math.unit(47.2, "meters"),
  34150. default: true
  34151. },
  34152. ]
  34153. ))
  34154. characterMakers.push(() => makeCharacter(
  34155. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  34156. {
  34157. anthroFront: {
  34158. height: math.unit(9, "feet"),
  34159. weight: math.unit(600, "lb"),
  34160. name: "Anthro (Front)",
  34161. image: {
  34162. source: "./media/characters/glint/anthro-front.svg",
  34163. extra: 1097/1018,
  34164. bottom: 28/1125
  34165. }
  34166. },
  34167. anthroBack: {
  34168. height: math.unit(9, "feet"),
  34169. weight: math.unit(600, "lb"),
  34170. name: "Anthro (Back)",
  34171. image: {
  34172. source: "./media/characters/glint/anthro-back.svg",
  34173. extra: 1154/997,
  34174. bottom: 36/1190
  34175. }
  34176. },
  34177. feral: {
  34178. height: math.unit(11, "feet"),
  34179. weight: math.unit(50000, "lb"),
  34180. name: "Feral",
  34181. image: {
  34182. source: "./media/characters/glint/feral.svg",
  34183. extra: 3035/1585,
  34184. bottom: 1169/4204
  34185. }
  34186. },
  34187. dickAnthro: {
  34188. height: math.unit(0.7, "meters"),
  34189. name: "Dick (Anthro)",
  34190. image: {
  34191. source: "./media/characters/glint/dick-anthro.svg"
  34192. }
  34193. },
  34194. dickFeral: {
  34195. height: math.unit(2.65, "meters"),
  34196. name: "Dick (Feral)",
  34197. image: {
  34198. source: "./media/characters/glint/dick-feral.svg"
  34199. }
  34200. },
  34201. slitHidden: {
  34202. height: math.unit(5.85, "meters"),
  34203. name: "Slit (Hidden)",
  34204. image: {
  34205. source: "./media/characters/glint/slit-hidden.svg"
  34206. }
  34207. },
  34208. slitErect: {
  34209. height: math.unit(5.85, "meters"),
  34210. name: "Slit (Erect)",
  34211. image: {
  34212. source: "./media/characters/glint/slit-erect.svg"
  34213. }
  34214. },
  34215. mawAnthro: {
  34216. height: math.unit(0.63, "meters"),
  34217. name: "Maw (Anthro)",
  34218. image: {
  34219. source: "./media/characters/glint/maw.svg"
  34220. }
  34221. },
  34222. mawFeral: {
  34223. height: math.unit(2.89, "meters"),
  34224. name: "Maw (Feral)",
  34225. image: {
  34226. source: "./media/characters/glint/maw.svg"
  34227. }
  34228. },
  34229. },
  34230. [
  34231. {
  34232. name: "Normal",
  34233. height: math.unit(9, "feet"),
  34234. default: true
  34235. },
  34236. ]
  34237. ))
  34238. characterMakers.push(() => makeCharacter(
  34239. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  34240. {
  34241. side: {
  34242. height: math.unit(15, "feet"),
  34243. weight: math.unit(5000, "kg"),
  34244. name: "Side",
  34245. image: {
  34246. source: "./media/characters/kairne/side.svg",
  34247. extra: 979/811,
  34248. bottom: 13/992
  34249. }
  34250. },
  34251. front: {
  34252. height: math.unit(15, "feet"),
  34253. weight: math.unit(5000, "kg"),
  34254. name: "Front",
  34255. image: {
  34256. source: "./media/characters/kairne/front.svg",
  34257. extra: 908/814,
  34258. bottom: 26/934
  34259. }
  34260. },
  34261. sideNsfw: {
  34262. height: math.unit(15, "feet"),
  34263. weight: math.unit(5000, "kg"),
  34264. name: "Side (NSFW)",
  34265. image: {
  34266. source: "./media/characters/kairne/side-nsfw.svg",
  34267. extra: 979/811,
  34268. bottom: 13/992
  34269. }
  34270. },
  34271. frontNsfw: {
  34272. height: math.unit(15, "feet"),
  34273. weight: math.unit(5000, "kg"),
  34274. name: "Front (NSFW)",
  34275. image: {
  34276. source: "./media/characters/kairne/front-nsfw.svg",
  34277. extra: 908/814,
  34278. bottom: 26/934
  34279. }
  34280. },
  34281. dickCaged: {
  34282. height: math.unit(0.65, "meters"),
  34283. name: "Dick-caged",
  34284. image: {
  34285. source: "./media/characters/kairne/dick-caged.svg"
  34286. }
  34287. },
  34288. dick: {
  34289. height: math.unit(0.79, "meters"),
  34290. name: "Dick",
  34291. image: {
  34292. source: "./media/characters/kairne/dick.svg"
  34293. }
  34294. },
  34295. genitals: {
  34296. height: math.unit(1.29, "meters"),
  34297. name: "Genitals",
  34298. image: {
  34299. source: "./media/characters/kairne/genitals.svg"
  34300. }
  34301. },
  34302. maw: {
  34303. height: math.unit(1.73, "meters"),
  34304. name: "Maw",
  34305. image: {
  34306. source: "./media/characters/kairne/maw.svg"
  34307. }
  34308. },
  34309. },
  34310. [
  34311. {
  34312. name: "Normal",
  34313. height: math.unit(15, "feet"),
  34314. default: true
  34315. },
  34316. ]
  34317. ))
  34318. characterMakers.push(() => makeCharacter(
  34319. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  34320. {
  34321. front: {
  34322. height: math.unit(5 + 8/12, "feet"),
  34323. weight: math.unit(139, "lb"),
  34324. name: "Front",
  34325. image: {
  34326. source: "./media/characters/biscuit-jackal/front.svg",
  34327. extra: 2106/1961,
  34328. bottom: 58/2164
  34329. }
  34330. },
  34331. back: {
  34332. height: math.unit(5 + 8/12, "feet"),
  34333. weight: math.unit(139, "lb"),
  34334. name: "Back",
  34335. image: {
  34336. source: "./media/characters/biscuit-jackal/back.svg",
  34337. extra: 2132/1976,
  34338. bottom: 57/2189
  34339. }
  34340. },
  34341. werejackal: {
  34342. height: math.unit(6 + 3/12, "feet"),
  34343. weight: math.unit(188, "lb"),
  34344. name: "Werejackal",
  34345. image: {
  34346. source: "./media/characters/biscuit-jackal/werejackal.svg",
  34347. extra: 2373/2178,
  34348. bottom: 53/2426
  34349. }
  34350. },
  34351. },
  34352. [
  34353. {
  34354. name: "Normal",
  34355. height: math.unit(5 + 8/12, "feet"),
  34356. default: true
  34357. },
  34358. ]
  34359. ))
  34360. characterMakers.push(() => makeCharacter(
  34361. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  34362. {
  34363. front: {
  34364. height: math.unit(140, "cm"),
  34365. weight: math.unit(45, "kg"),
  34366. name: "Front",
  34367. image: {
  34368. source: "./media/characters/tayra-white/front.svg",
  34369. extra: 2229/2192,
  34370. bottom: 75/2304
  34371. }
  34372. },
  34373. },
  34374. [
  34375. {
  34376. name: "Normal",
  34377. height: math.unit(140, "cm"),
  34378. default: true
  34379. },
  34380. ]
  34381. ))
  34382. characterMakers.push(() => makeCharacter(
  34383. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  34384. {
  34385. front: {
  34386. height: math.unit(4 + 5/12, "feet"),
  34387. name: "Front",
  34388. image: {
  34389. source: "./media/characters/scoop/front.svg",
  34390. extra: 1257/1136,
  34391. bottom: 69/1326
  34392. }
  34393. },
  34394. back: {
  34395. height: math.unit(4 + 5/12, "feet"),
  34396. name: "Back",
  34397. image: {
  34398. source: "./media/characters/scoop/back.svg",
  34399. extra: 1321/1152,
  34400. bottom: 32/1353
  34401. }
  34402. },
  34403. maw: {
  34404. height: math.unit(0.68, "feet"),
  34405. name: "Maw",
  34406. image: {
  34407. source: "./media/characters/scoop/maw.svg"
  34408. }
  34409. },
  34410. },
  34411. [
  34412. {
  34413. name: "Really Small",
  34414. height: math.unit(1, "mm")
  34415. },
  34416. {
  34417. name: "Micro",
  34418. height: math.unit(1, "inch")
  34419. },
  34420. {
  34421. name: "Normal",
  34422. height: math.unit(4 + 5/12, "feet"),
  34423. default: true
  34424. },
  34425. {
  34426. name: "Macro",
  34427. height: math.unit(200, "feet")
  34428. },
  34429. {
  34430. name: "Megamacro",
  34431. height: math.unit(3240, "feet")
  34432. },
  34433. {
  34434. name: "Teramacro",
  34435. height: math.unit(2500, "miles")
  34436. },
  34437. ]
  34438. ))
  34439. characterMakers.push(() => makeCharacter(
  34440. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  34441. {
  34442. front: {
  34443. height: math.unit(15 + 7/12, "feet"),
  34444. weight: math.unit(1150, "tons"),
  34445. name: "Front",
  34446. image: {
  34447. source: "./media/characters/saphinara/front.svg",
  34448. extra: 1837/1643,
  34449. bottom: 84/1921
  34450. },
  34451. form: "normal",
  34452. default: true
  34453. },
  34454. side: {
  34455. height: math.unit(15 + 7/12, "feet"),
  34456. weight: math.unit(1150, "tons"),
  34457. name: "Side",
  34458. image: {
  34459. source: "./media/characters/saphinara/side.svg",
  34460. extra: 605/547,
  34461. bottom: 6/611
  34462. },
  34463. form: "normal"
  34464. },
  34465. back: {
  34466. height: math.unit(15 + 7/12, "feet"),
  34467. weight: math.unit(1150, "tons"),
  34468. name: "Back",
  34469. image: {
  34470. source: "./media/characters/saphinara/back.svg",
  34471. extra: 591/531,
  34472. bottom: 13/604
  34473. },
  34474. form: "normal"
  34475. },
  34476. frontTail: {
  34477. height: math.unit(15 + 7/12, "feet"),
  34478. weight: math.unit(1150, "tons"),
  34479. name: "Front (Full Tail)",
  34480. image: {
  34481. source: "./media/characters/saphinara/front-tail.svg",
  34482. extra: 2256/1630,
  34483. bottom: 261/2517
  34484. },
  34485. form: "normal"
  34486. },
  34487. insides: {
  34488. height: math.unit(11.92, "feet"),
  34489. name: "Insides",
  34490. image: {
  34491. source: "./media/characters/saphinara/insides.svg"
  34492. },
  34493. form: "normal"
  34494. },
  34495. head: {
  34496. height: math.unit(4.17, "feet"),
  34497. name: "Head",
  34498. image: {
  34499. source: "./media/characters/saphinara/head.svg"
  34500. },
  34501. form: "normal"
  34502. },
  34503. tongue: {
  34504. height: math.unit(4.60, "feet"),
  34505. name: "Tongue",
  34506. image: {
  34507. source: "./media/characters/saphinara/tongue.svg"
  34508. },
  34509. form: "normal"
  34510. },
  34511. headEnraged: {
  34512. height: math.unit(5.55, "feet"),
  34513. name: "Head (Enraged)",
  34514. image: {
  34515. source: "./media/characters/saphinara/head-enraged.svg"
  34516. },
  34517. form: "normal"
  34518. },
  34519. wings: {
  34520. height: math.unit(11.95, "feet"),
  34521. name: "Wings",
  34522. image: {
  34523. source: "./media/characters/saphinara/wings.svg"
  34524. },
  34525. form: "normal"
  34526. },
  34527. feathers: {
  34528. height: math.unit(8.92, "feet"),
  34529. name: "Feathers",
  34530. image: {
  34531. source: "./media/characters/saphinara/feathers.svg"
  34532. },
  34533. form: "normal"
  34534. },
  34535. shackles: {
  34536. height: math.unit(2, "feet"),
  34537. name: "Shackles",
  34538. image: {
  34539. source: "./media/characters/saphinara/shackles.svg"
  34540. },
  34541. form: "normal"
  34542. },
  34543. eyes: {
  34544. height: math.unit(1.331, "feet"),
  34545. name: "Eyes",
  34546. image: {
  34547. source: "./media/characters/saphinara/eyes.svg"
  34548. },
  34549. form: "normal"
  34550. },
  34551. eyesEnraged: {
  34552. height: math.unit(1.331, "feet"),
  34553. name: "Eyes (Enraged)",
  34554. image: {
  34555. source: "./media/characters/saphinara/eyes-enraged.svg"
  34556. },
  34557. form: "normal"
  34558. },
  34559. trueFormSide: {
  34560. height: math.unit(200, "feet"),
  34561. weight: math.unit(1e7, "tons"),
  34562. name: "Side",
  34563. image: {
  34564. source: "./media/characters/saphinara/true-form-side.svg",
  34565. extra: 1399/770,
  34566. bottom: 97/1496
  34567. },
  34568. form: "true-form",
  34569. default: true
  34570. },
  34571. trueFormMaw: {
  34572. height: math.unit(71.5, "feet"),
  34573. name: "Maw",
  34574. image: {
  34575. source: "./media/characters/saphinara/true-form-maw.svg",
  34576. extra: 2302/1453,
  34577. bottom: 0/2302
  34578. },
  34579. form: "true-form"
  34580. },
  34581. meowberusSide: {
  34582. height: math.unit(75, "feet"),
  34583. weight: math.unit(180000, "kg"),
  34584. preyCapacity: math.unit(50000, "people"),
  34585. name: "Side",
  34586. image: {
  34587. source: "./media/characters/saphinara/meowberus-side.svg",
  34588. extra: 1400/711,
  34589. bottom: 126/1526
  34590. },
  34591. form: "meowberus",
  34592. extraAttributes: {
  34593. "pawArea": {
  34594. name: "Paw Size",
  34595. power: 2,
  34596. type: "area",
  34597. base: math.unit(35, "m^2")
  34598. }
  34599. }
  34600. },
  34601. },
  34602. [
  34603. {
  34604. name: "Normal",
  34605. height: math.unit(15 + 7/12, "feet"),
  34606. default: true,
  34607. form: "normal"
  34608. },
  34609. {
  34610. name: "Angry",
  34611. height: math.unit(30 + 6/12, "feet"),
  34612. form: "normal"
  34613. },
  34614. {
  34615. name: "Enraged",
  34616. height: math.unit(102 + 1/12, "feet"),
  34617. form: "normal"
  34618. },
  34619. {
  34620. name: "True",
  34621. height: math.unit(200, "feet"),
  34622. default: true,
  34623. form: "true-form"
  34624. },
  34625. {
  34626. name: "Normal",
  34627. height: math.unit(75, "feet"),
  34628. default: true,
  34629. form: "meowberus"
  34630. },
  34631. ],
  34632. {
  34633. "normal": {
  34634. name: "Normal",
  34635. default: true
  34636. },
  34637. "true-form": {
  34638. name: "True Form"
  34639. },
  34640. "meowberus": {
  34641. name: "Meowberus",
  34642. },
  34643. }
  34644. ))
  34645. characterMakers.push(() => makeCharacter(
  34646. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  34647. {
  34648. front: {
  34649. height: math.unit(6 + 8/12, "feet"),
  34650. weight: math.unit(300, "lb"),
  34651. name: "Front",
  34652. image: {
  34653. source: "./media/characters/jrain/front.svg",
  34654. extra: 3039/2865,
  34655. bottom: 399/3438
  34656. }
  34657. },
  34658. back: {
  34659. height: math.unit(6 + 8/12, "feet"),
  34660. weight: math.unit(300, "lb"),
  34661. name: "Back",
  34662. image: {
  34663. source: "./media/characters/jrain/back.svg",
  34664. extra: 3089/2938,
  34665. bottom: 172/3261
  34666. }
  34667. },
  34668. head: {
  34669. height: math.unit(2.14, "feet"),
  34670. name: "Head",
  34671. image: {
  34672. source: "./media/characters/jrain/head.svg"
  34673. }
  34674. },
  34675. maw: {
  34676. height: math.unit(1.77, "feet"),
  34677. name: "Maw",
  34678. image: {
  34679. source: "./media/characters/jrain/maw.svg"
  34680. }
  34681. },
  34682. leftHand: {
  34683. height: math.unit(1.1, "feet"),
  34684. name: "Left Hand",
  34685. image: {
  34686. source: "./media/characters/jrain/left-hand.svg"
  34687. }
  34688. },
  34689. rightHand: {
  34690. height: math.unit(1.1, "feet"),
  34691. name: "Right Hand",
  34692. image: {
  34693. source: "./media/characters/jrain/right-hand.svg"
  34694. }
  34695. },
  34696. eye: {
  34697. height: math.unit(0.35, "feet"),
  34698. name: "Eye",
  34699. image: {
  34700. source: "./media/characters/jrain/eye.svg"
  34701. }
  34702. },
  34703. },
  34704. [
  34705. {
  34706. name: "Normal",
  34707. height: math.unit(6 + 8/12, "feet"),
  34708. default: true
  34709. },
  34710. {
  34711. name: "Casually Large",
  34712. height: math.unit(25, "feet")
  34713. },
  34714. {
  34715. name: "Giant",
  34716. height: math.unit(100, "feet")
  34717. },
  34718. {
  34719. name: "Kaiju",
  34720. height: math.unit(300, "feet")
  34721. },
  34722. ]
  34723. ))
  34724. characterMakers.push(() => makeCharacter(
  34725. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  34726. {
  34727. dragon: {
  34728. height: math.unit(5, "meters"),
  34729. name: "Dragon",
  34730. image: {
  34731. source: "./media/characters/sabrina/dragon.svg",
  34732. extra: 3670 / 2365,
  34733. bottom: 333 / 4003
  34734. }
  34735. },
  34736. gryphon: {
  34737. height: math.unit(3, "meters"),
  34738. name: "Gryphon",
  34739. image: {
  34740. source: "./media/characters/sabrina/gryphon.svg",
  34741. extra: 1576 / 945,
  34742. bottom: 71 / 1647
  34743. }
  34744. },
  34745. snake: {
  34746. height: math.unit(12, "meters"),
  34747. name: "Snake",
  34748. image: {
  34749. source: "./media/characters/sabrina/snake.svg",
  34750. extra: 1758 / 1320,
  34751. bottom: 186 / 1944
  34752. }
  34753. },
  34754. collar: {
  34755. height: math.unit(1.86, "meters"),
  34756. name: "Collar",
  34757. image: {
  34758. source: "./media/characters/sabrina/collar.svg"
  34759. }
  34760. },
  34761. eye: {
  34762. height: math.unit(0.53, "meters"),
  34763. name: "Eye",
  34764. image: {
  34765. source: "./media/characters/sabrina/eye.svg"
  34766. }
  34767. },
  34768. foot: {
  34769. height: math.unit(1.86, "meters"),
  34770. name: "Foot",
  34771. image: {
  34772. source: "./media/characters/sabrina/foot.svg"
  34773. }
  34774. },
  34775. hand: {
  34776. height: math.unit(1.32, "meters"),
  34777. name: "Hand",
  34778. image: {
  34779. source: "./media/characters/sabrina/hand.svg"
  34780. }
  34781. },
  34782. head: {
  34783. height: math.unit(2.44, "meters"),
  34784. name: "Head",
  34785. image: {
  34786. source: "./media/characters/sabrina/head.svg"
  34787. }
  34788. },
  34789. headAngry: {
  34790. height: math.unit(2.44, "meters"),
  34791. name: "Head (Angry))",
  34792. image: {
  34793. source: "./media/characters/sabrina/head-angry.svg"
  34794. }
  34795. },
  34796. maw: {
  34797. height: math.unit(1.65, "meters"),
  34798. name: "Maw",
  34799. image: {
  34800. source: "./media/characters/sabrina/maw.svg"
  34801. }
  34802. },
  34803. spikes: {
  34804. height: math.unit(1.69, "meters"),
  34805. name: "Spikes",
  34806. image: {
  34807. source: "./media/characters/sabrina/spikes.svg"
  34808. }
  34809. },
  34810. stomach: {
  34811. height: math.unit(1.15, "meters"),
  34812. name: "Stomach",
  34813. image: {
  34814. source: "./media/characters/sabrina/stomach.svg"
  34815. }
  34816. },
  34817. tongue: {
  34818. height: math.unit(1.27, "meters"),
  34819. name: "Tongue",
  34820. image: {
  34821. source: "./media/characters/sabrina/tongue.svg"
  34822. }
  34823. },
  34824. wingDorsal: {
  34825. height: math.unit(4.85, "meters"),
  34826. name: "Wing (Dorsal)",
  34827. image: {
  34828. source: "./media/characters/sabrina/wing-dorsal.svg"
  34829. }
  34830. },
  34831. wingVentral: {
  34832. height: math.unit(4.85, "meters"),
  34833. name: "Wing (Ventral)",
  34834. image: {
  34835. source: "./media/characters/sabrina/wing-ventral.svg"
  34836. }
  34837. },
  34838. },
  34839. [
  34840. {
  34841. name: "Normal",
  34842. height: math.unit(5, "meters"),
  34843. default: true
  34844. },
  34845. ]
  34846. ))
  34847. characterMakers.push(() => makeCharacter(
  34848. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  34849. {
  34850. frontMaid: {
  34851. height: math.unit(5 + 5/12, "feet"),
  34852. weight: math.unit(130, "lb"),
  34853. name: "Front (Maid)",
  34854. image: {
  34855. source: "./media/characters/midnight-tales/front-maid.svg",
  34856. extra: 489/454,
  34857. bottom: 61/550
  34858. }
  34859. },
  34860. frontFormal: {
  34861. height: math.unit(5 + 5/12, "feet"),
  34862. weight: math.unit(130, "lb"),
  34863. name: "Front (Formal)",
  34864. image: {
  34865. source: "./media/characters/midnight-tales/front-formal.svg",
  34866. extra: 489/454,
  34867. bottom: 61/550
  34868. }
  34869. },
  34870. back: {
  34871. height: math.unit(5 + 5/12, "feet"),
  34872. weight: math.unit(130, "lb"),
  34873. name: "Back",
  34874. image: {
  34875. source: "./media/characters/midnight-tales/back.svg",
  34876. extra: 498/456,
  34877. bottom: 33/531
  34878. }
  34879. },
  34880. frontBeast: {
  34881. height: math.unit(40, "feet"),
  34882. weight: math.unit(64000, "lb"),
  34883. name: "Front (Beast)",
  34884. image: {
  34885. source: "./media/characters/midnight-tales/front-beast.svg",
  34886. extra: 927/860,
  34887. bottom: 53/980
  34888. }
  34889. },
  34890. backBeast: {
  34891. height: math.unit(40, "feet"),
  34892. weight: math.unit(64000, "lb"),
  34893. name: "Back (Beast)",
  34894. image: {
  34895. source: "./media/characters/midnight-tales/back-beast.svg",
  34896. extra: 929/855,
  34897. bottom: 16/945
  34898. }
  34899. },
  34900. footBeast: {
  34901. height: math.unit(6.7, "feet"),
  34902. name: "Foot (Beast)",
  34903. image: {
  34904. source: "./media/characters/midnight-tales/foot-beast.svg"
  34905. }
  34906. },
  34907. headBeast: {
  34908. height: math.unit(8, "feet"),
  34909. name: "Head (Beast)",
  34910. image: {
  34911. source: "./media/characters/midnight-tales/head-beast.svg"
  34912. }
  34913. },
  34914. },
  34915. [
  34916. {
  34917. name: "Normal",
  34918. height: math.unit(5 + 5 / 12, "feet"),
  34919. default: true
  34920. },
  34921. {
  34922. name: "Macro",
  34923. height: math.unit(25, "feet")
  34924. },
  34925. ]
  34926. ))
  34927. characterMakers.push(() => makeCharacter(
  34928. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  34929. {
  34930. front: {
  34931. height: math.unit(5 + 10/12, "feet"),
  34932. name: "Front",
  34933. image: {
  34934. source: "./media/characters/argon/front.svg",
  34935. extra: 2009/1935,
  34936. bottom: 118/2127
  34937. }
  34938. },
  34939. back: {
  34940. height: math.unit(5 + 10/12, "feet"),
  34941. name: "Back",
  34942. image: {
  34943. source: "./media/characters/argon/back.svg",
  34944. extra: 2047/1992,
  34945. bottom: 20/2067
  34946. }
  34947. },
  34948. frontDressed: {
  34949. height: math.unit(5 + 10/12, "feet"),
  34950. name: "Front (Dressed)",
  34951. image: {
  34952. source: "./media/characters/argon/front-dressed.svg",
  34953. extra: 2009/1935,
  34954. bottom: 118/2127
  34955. }
  34956. },
  34957. },
  34958. [
  34959. {
  34960. name: "Normal",
  34961. height: math.unit(5 + 10/12, "feet"),
  34962. default: true
  34963. },
  34964. ]
  34965. ))
  34966. characterMakers.push(() => makeCharacter(
  34967. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  34968. {
  34969. front: {
  34970. height: math.unit(8 + 6/12, "feet"),
  34971. weight: math.unit(1150, "lb"),
  34972. name: "Front",
  34973. image: {
  34974. source: "./media/characters/kichi/front.svg",
  34975. extra: 1267/1164,
  34976. bottom: 61/1328
  34977. }
  34978. },
  34979. back: {
  34980. height: math.unit(8 + 6/12, "feet"),
  34981. weight: math.unit(1150, "lb"),
  34982. name: "Back",
  34983. image: {
  34984. source: "./media/characters/kichi/back.svg",
  34985. extra: 1273/1166,
  34986. bottom: 33/1306
  34987. }
  34988. },
  34989. },
  34990. [
  34991. {
  34992. name: "Normal",
  34993. height: math.unit(8 + 6/12, "feet"),
  34994. default: true
  34995. },
  34996. ]
  34997. ))
  34998. characterMakers.push(() => makeCharacter(
  34999. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  35000. {
  35001. front: {
  35002. height: math.unit(6, "feet"),
  35003. weight: math.unit(210, "lb"),
  35004. name: "Front",
  35005. image: {
  35006. source: "./media/characters/manetel-greyscale/front.svg",
  35007. extra: 350/312,
  35008. bottom: 8/358
  35009. }
  35010. },
  35011. },
  35012. [
  35013. {
  35014. name: "Micro",
  35015. height: math.unit(2, "inches")
  35016. },
  35017. {
  35018. name: "Normal",
  35019. height: math.unit(6, "feet"),
  35020. default: true
  35021. },
  35022. {
  35023. name: "Minimacro",
  35024. height: math.unit(17, "feet")
  35025. },
  35026. {
  35027. name: "Macro",
  35028. height: math.unit(117, "feet")
  35029. },
  35030. ]
  35031. ))
  35032. characterMakers.push(() => makeCharacter(
  35033. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  35034. {
  35035. side: {
  35036. height: math.unit(5 + 1/12, "feet"),
  35037. weight: math.unit(418, "lb"),
  35038. name: "Side",
  35039. image: {
  35040. source: "./media/characters/softpurr/side.svg",
  35041. extra: 1993/1945,
  35042. bottom: 134/2127
  35043. }
  35044. },
  35045. front: {
  35046. height: math.unit(5 + 1/12, "feet"),
  35047. weight: math.unit(418, "lb"),
  35048. name: "Front",
  35049. image: {
  35050. source: "./media/characters/softpurr/front.svg",
  35051. extra: 1950/1856,
  35052. bottom: 174/2124
  35053. }
  35054. },
  35055. paw: {
  35056. height: math.unit(1, "feet"),
  35057. name: "Paw",
  35058. image: {
  35059. source: "./media/characters/softpurr/paw.svg"
  35060. }
  35061. },
  35062. },
  35063. [
  35064. {
  35065. name: "Normal",
  35066. height: math.unit(5 + 1/12, "feet"),
  35067. default: true
  35068. },
  35069. ]
  35070. ))
  35071. characterMakers.push(() => makeCharacter(
  35072. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  35073. {
  35074. front: {
  35075. height: math.unit(260, "meters"),
  35076. name: "Front",
  35077. image: {
  35078. source: "./media/characters/anahita/front.svg",
  35079. extra: 665/635,
  35080. bottom: 89/754
  35081. }
  35082. },
  35083. },
  35084. [
  35085. {
  35086. name: "Macro",
  35087. height: math.unit(260, "meters"),
  35088. default: true
  35089. },
  35090. ]
  35091. ))
  35092. characterMakers.push(() => makeCharacter(
  35093. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  35094. {
  35095. front: {
  35096. height: math.unit(4 + 10/12, "feet"),
  35097. weight: math.unit(160, "lb"),
  35098. name: "Front",
  35099. image: {
  35100. source: "./media/characters/chip-mouse/front.svg",
  35101. extra: 3528/3408,
  35102. bottom: 0/3528
  35103. }
  35104. },
  35105. frontNsfw: {
  35106. height: math.unit(4 + 10/12, "feet"),
  35107. weight: math.unit(160, "lb"),
  35108. name: "Front (NSFW)",
  35109. image: {
  35110. source: "./media/characters/chip-mouse/front-nsfw.svg",
  35111. extra: 3528/3408,
  35112. bottom: 0/3528
  35113. }
  35114. },
  35115. },
  35116. [
  35117. {
  35118. name: "Normal",
  35119. height: math.unit(4 + 10/12, "feet"),
  35120. default: true
  35121. },
  35122. ]
  35123. ))
  35124. characterMakers.push(() => makeCharacter(
  35125. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  35126. {
  35127. side: {
  35128. height: math.unit(10, "feet"),
  35129. weight: math.unit(14000, "lb"),
  35130. name: "Side",
  35131. image: {
  35132. source: "./media/characters/kremm/side.svg",
  35133. extra: 1390/1053,
  35134. bottom: 90/1480
  35135. }
  35136. },
  35137. gut: {
  35138. height: math.unit(5.8, "feet"),
  35139. name: "Gut",
  35140. image: {
  35141. source: "./media/characters/kremm/gut.svg"
  35142. }
  35143. },
  35144. ass: {
  35145. height: math.unit(6.1, "feet"),
  35146. name: "Ass",
  35147. image: {
  35148. source: "./media/characters/kremm/ass.svg"
  35149. }
  35150. },
  35151. jaws: {
  35152. height: math.unit(2.2, "feet"),
  35153. name: "Jaws",
  35154. image: {
  35155. source: "./media/characters/kremm/jaws.svg"
  35156. }
  35157. },
  35158. dick: {
  35159. height: math.unit(4.26, "feet"),
  35160. name: "Dick",
  35161. image: {
  35162. source: "./media/characters/kremm/dick.svg"
  35163. }
  35164. },
  35165. },
  35166. [
  35167. {
  35168. name: "Normal",
  35169. height: math.unit(10, "feet"),
  35170. default: true
  35171. },
  35172. ]
  35173. ))
  35174. characterMakers.push(() => makeCharacter(
  35175. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  35176. {
  35177. front: {
  35178. height: math.unit(30, "stories"),
  35179. name: "Front",
  35180. image: {
  35181. source: "./media/characters/kai/front.svg",
  35182. extra: 1892/1718,
  35183. bottom: 162/2054
  35184. }
  35185. },
  35186. },
  35187. [
  35188. {
  35189. name: "Macro",
  35190. height: math.unit(30, "stories"),
  35191. default: true
  35192. },
  35193. ]
  35194. ))
  35195. characterMakers.push(() => makeCharacter(
  35196. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  35197. {
  35198. front: {
  35199. height: math.unit(6 + 4/12, "feet"),
  35200. weight: math.unit(145, "lb"),
  35201. name: "Front",
  35202. image: {
  35203. source: "./media/characters/sykes/front.svg",
  35204. extra: 1321 / 1187,
  35205. bottom: 66 / 1387
  35206. }
  35207. },
  35208. back: {
  35209. height: math.unit(6 + 4/12, "feet"),
  35210. weight: math.unit(145, "lb"),
  35211. name: "Back",
  35212. image: {
  35213. source: "./media/characters/sykes/back.svg",
  35214. extra: 1326/1181,
  35215. bottom: 31/1357
  35216. }
  35217. },
  35218. traditionalOutfit: {
  35219. height: math.unit(6 + 4/12, "feet"),
  35220. weight: math.unit(145, "lb"),
  35221. name: "Traditional Outfit",
  35222. image: {
  35223. source: "./media/characters/sykes/traditional-outfit.svg",
  35224. extra: 1321 / 1187,
  35225. bottom: 66 / 1387
  35226. }
  35227. },
  35228. adventureOutfit: {
  35229. height: math.unit(6 + 4/12, "feet"),
  35230. weight: math.unit(145, "lb"),
  35231. name: "Adventure Outfit",
  35232. image: {
  35233. source: "./media/characters/sykes/adventure-outfit.svg",
  35234. extra: 1321 / 1187,
  35235. bottom: 66 / 1387
  35236. }
  35237. },
  35238. handLeft: {
  35239. height: math.unit(0.9, "feet"),
  35240. name: "Hand (Left)",
  35241. image: {
  35242. source: "./media/characters/sykes/hand-left.svg"
  35243. }
  35244. },
  35245. handRight: {
  35246. height: math.unit(0.839, "feet"),
  35247. name: "Hand (Right)",
  35248. image: {
  35249. source: "./media/characters/sykes/hand-right.svg"
  35250. }
  35251. },
  35252. leftFoot: {
  35253. height: math.unit(1.2, "feet"),
  35254. name: "Foot (Left)",
  35255. image: {
  35256. source: "./media/characters/sykes/foot-left.svg"
  35257. }
  35258. },
  35259. rightFoot: {
  35260. height: math.unit(1.2, "feet"),
  35261. name: "Foot (Right)",
  35262. image: {
  35263. source: "./media/characters/sykes/foot-right.svg"
  35264. }
  35265. },
  35266. maw: {
  35267. height: math.unit(1.93, "feet"),
  35268. name: "Maw",
  35269. image: {
  35270. source: "./media/characters/sykes/maw.svg"
  35271. }
  35272. },
  35273. teeth: {
  35274. height: math.unit(0.51, "feet"),
  35275. name: "Teeth",
  35276. image: {
  35277. source: "./media/characters/sykes/teeth.svg"
  35278. }
  35279. },
  35280. tongue: {
  35281. height: math.unit(2.13, "feet"),
  35282. name: "Tongue",
  35283. image: {
  35284. source: "./media/characters/sykes/tongue.svg"
  35285. }
  35286. },
  35287. uvula: {
  35288. height: math.unit(0.16, "feet"),
  35289. name: "Uvula",
  35290. image: {
  35291. source: "./media/characters/sykes/uvula.svg"
  35292. }
  35293. },
  35294. collar: {
  35295. height: math.unit(0.287, "feet"),
  35296. name: "Collar",
  35297. image: {
  35298. source: "./media/characters/sykes/collar.svg"
  35299. }
  35300. },
  35301. tail: {
  35302. height: math.unit(3.8, "feet"),
  35303. name: "Tail",
  35304. image: {
  35305. source: "./media/characters/sykes/tail.svg"
  35306. }
  35307. },
  35308. },
  35309. [
  35310. {
  35311. name: "Shrunken",
  35312. height: math.unit(5, "inches")
  35313. },
  35314. {
  35315. name: "Normal",
  35316. height: math.unit(6 + 4 / 12, "feet"),
  35317. default: true
  35318. },
  35319. {
  35320. name: "Big",
  35321. height: math.unit(15, "feet")
  35322. },
  35323. ]
  35324. ))
  35325. characterMakers.push(() => makeCharacter(
  35326. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  35327. {
  35328. front: {
  35329. height: math.unit(5 + 8/12, "feet"),
  35330. weight: math.unit(190, "lb"),
  35331. name: "Front",
  35332. image: {
  35333. source: "./media/characters/oven-otter/front.svg",
  35334. extra: 1809/1740,
  35335. bottom: 181/1990
  35336. }
  35337. },
  35338. back: {
  35339. height: math.unit(5 + 8/12, "feet"),
  35340. weight: math.unit(190, "lb"),
  35341. name: "Back",
  35342. image: {
  35343. source: "./media/characters/oven-otter/back.svg",
  35344. extra: 1709/1635,
  35345. bottom: 118/1827
  35346. }
  35347. },
  35348. hand: {
  35349. height: math.unit(1.07, "feet"),
  35350. name: "Hand",
  35351. image: {
  35352. source: "./media/characters/oven-otter/hand.svg"
  35353. }
  35354. },
  35355. beans: {
  35356. height: math.unit(1.74, "feet"),
  35357. name: "Beans",
  35358. image: {
  35359. source: "./media/characters/oven-otter/beans.svg"
  35360. }
  35361. },
  35362. },
  35363. [
  35364. {
  35365. name: "Micro",
  35366. height: math.unit(0.5, "inches")
  35367. },
  35368. {
  35369. name: "Normal",
  35370. height: math.unit(5 + 8/12, "feet"),
  35371. default: true
  35372. },
  35373. {
  35374. name: "Macro",
  35375. height: math.unit(250, "feet")
  35376. },
  35377. {
  35378. name: "Really High",
  35379. height: math.unit(420, "feet")
  35380. },
  35381. ]
  35382. ))
  35383. characterMakers.push(() => makeCharacter(
  35384. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  35385. {
  35386. front: {
  35387. height: math.unit(5, "meters"),
  35388. weight: math.unit(292000000000000, "kg"),
  35389. name: "Front",
  35390. image: {
  35391. source: "./media/characters/devourer/front.svg",
  35392. extra: 1800/1733,
  35393. bottom: 211/2011
  35394. }
  35395. },
  35396. maw: {
  35397. height: math.unit(1.1, "meter"),
  35398. name: "Maw",
  35399. image: {
  35400. source: "./media/characters/devourer/maw.svg"
  35401. }
  35402. },
  35403. },
  35404. [
  35405. {
  35406. name: "Small",
  35407. height: math.unit(3, "meters")
  35408. },
  35409. {
  35410. name: "Large",
  35411. height: math.unit(5, "meters"),
  35412. default: true
  35413. },
  35414. ]
  35415. ))
  35416. characterMakers.push(() => makeCharacter(
  35417. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  35418. {
  35419. front: {
  35420. height: math.unit(6, "feet"),
  35421. weight: math.unit(400, "lb"),
  35422. name: "Front",
  35423. image: {
  35424. source: "./media/characters/ellarby/front.svg",
  35425. extra: 1909/1763,
  35426. bottom: 80/1989
  35427. }
  35428. },
  35429. back: {
  35430. height: math.unit(6, "feet"),
  35431. weight: math.unit(400, "lb"),
  35432. name: "Back",
  35433. image: {
  35434. source: "./media/characters/ellarby/back.svg",
  35435. extra: 1914/1784,
  35436. bottom: 172/2086
  35437. }
  35438. },
  35439. },
  35440. [
  35441. {
  35442. name: "Mischief",
  35443. height: math.unit(18, "inches")
  35444. },
  35445. {
  35446. name: "Trouble",
  35447. height: math.unit(12, "feet")
  35448. },
  35449. {
  35450. name: "Havoc",
  35451. height: math.unit(200, "feet"),
  35452. default: true
  35453. },
  35454. {
  35455. name: "Pandemonium",
  35456. height: math.unit(1, "mile")
  35457. },
  35458. {
  35459. name: "Catastrophe",
  35460. height: math.unit(100, "miles")
  35461. },
  35462. ]
  35463. ))
  35464. characterMakers.push(() => makeCharacter(
  35465. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  35466. {
  35467. front: {
  35468. height: math.unit(4.7, "meters"),
  35469. weight: math.unit(6500, "kg"),
  35470. name: "Front",
  35471. image: {
  35472. source: "./media/characters/vex/front.svg",
  35473. extra: 1288/1140,
  35474. bottom: 100/1388
  35475. }
  35476. },
  35477. },
  35478. [
  35479. {
  35480. name: "Normal",
  35481. height: math.unit(4.7, "meters"),
  35482. default: true
  35483. },
  35484. ]
  35485. ))
  35486. characterMakers.push(() => makeCharacter(
  35487. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  35488. {
  35489. normal: {
  35490. height: math.unit(6, "feet"),
  35491. weight: math.unit(350, "lb"),
  35492. name: "Normal",
  35493. image: {
  35494. source: "./media/characters/teshy/normal.svg",
  35495. extra: 1795/1735,
  35496. bottom: 16/1811
  35497. }
  35498. },
  35499. monsterFront: {
  35500. height: math.unit(12, "feet"),
  35501. weight: math.unit(4700, "lb"),
  35502. name: "Monster (Front)",
  35503. image: {
  35504. source: "./media/characters/teshy/monster-front.svg",
  35505. extra: 2042/2034,
  35506. bottom: 128/2170
  35507. }
  35508. },
  35509. monsterSide: {
  35510. height: math.unit(12, "feet"),
  35511. weight: math.unit(4700, "lb"),
  35512. name: "Monster (Side)",
  35513. image: {
  35514. source: "./media/characters/teshy/monster-side.svg",
  35515. extra: 2067/2056,
  35516. bottom: 70/2137
  35517. }
  35518. },
  35519. monsterBack: {
  35520. height: math.unit(12, "feet"),
  35521. weight: math.unit(4700, "lb"),
  35522. name: "Monster (Back)",
  35523. image: {
  35524. source: "./media/characters/teshy/monster-back.svg",
  35525. extra: 1921/1914,
  35526. bottom: 171/2092
  35527. }
  35528. },
  35529. },
  35530. [
  35531. {
  35532. name: "Normal",
  35533. height: math.unit(6, "feet"),
  35534. default: true
  35535. },
  35536. ]
  35537. ))
  35538. characterMakers.push(() => makeCharacter(
  35539. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  35540. {
  35541. front: {
  35542. height: math.unit(6, "feet"),
  35543. name: "Front",
  35544. image: {
  35545. source: "./media/characters/ramey/front.svg",
  35546. extra: 790/787,
  35547. bottom: 27/817
  35548. }
  35549. },
  35550. },
  35551. [
  35552. {
  35553. name: "Normal",
  35554. height: math.unit(6, "feet"),
  35555. default: true
  35556. },
  35557. ]
  35558. ))
  35559. characterMakers.push(() => makeCharacter(
  35560. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  35561. {
  35562. front: {
  35563. height: math.unit(5 + 5/12, "feet"),
  35564. weight: math.unit(120, "lb"),
  35565. name: "Front",
  35566. image: {
  35567. source: "./media/characters/phirae/front.svg",
  35568. extra: 2491/2436,
  35569. bottom: 38/2529
  35570. }
  35571. },
  35572. },
  35573. [
  35574. {
  35575. name: "Normal",
  35576. height: math.unit(5 + 5/12, "feet"),
  35577. default: true
  35578. },
  35579. ]
  35580. ))
  35581. characterMakers.push(() => makeCharacter(
  35582. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  35583. {
  35584. front: {
  35585. height: math.unit(5 + 3/12, "feet"),
  35586. name: "Front",
  35587. image: {
  35588. source: "./media/characters/stagglas/front.svg",
  35589. extra: 962/882,
  35590. bottom: 53/1015
  35591. }
  35592. },
  35593. feral: {
  35594. height: math.unit(335, "cm"),
  35595. name: "Feral",
  35596. image: {
  35597. source: "./media/characters/stagglas/feral.svg",
  35598. extra: 1732/1090,
  35599. bottom: 48/1780
  35600. }
  35601. },
  35602. },
  35603. [
  35604. {
  35605. name: "Normal",
  35606. height: math.unit(5 + 3/12, "feet"),
  35607. default: true
  35608. },
  35609. ]
  35610. ))
  35611. characterMakers.push(() => makeCharacter(
  35612. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  35613. {
  35614. front: {
  35615. height: math.unit(5 + 4/12, "feet"),
  35616. weight: math.unit(145, "lb"),
  35617. name: "Front",
  35618. image: {
  35619. source: "./media/characters/starra/front.svg",
  35620. extra: 1790/1691,
  35621. bottom: 91/1881
  35622. }
  35623. },
  35624. },
  35625. [
  35626. {
  35627. name: "Normal",
  35628. height: math.unit(5 + 4/12, "feet"),
  35629. default: true
  35630. },
  35631. ]
  35632. ))
  35633. characterMakers.push(() => makeCharacter(
  35634. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  35635. {
  35636. front: {
  35637. height: math.unit(2.2, "meters"),
  35638. name: "Front",
  35639. image: {
  35640. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  35641. extra: 1194/1005,
  35642. bottom: 25/1219
  35643. }
  35644. },
  35645. },
  35646. [
  35647. {
  35648. name: "Normal",
  35649. height: math.unit(2.2, "meters"),
  35650. default: true
  35651. },
  35652. ]
  35653. ))
  35654. characterMakers.push(() => makeCharacter(
  35655. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  35656. {
  35657. side: {
  35658. height: math.unit(8 + 2/12, "feet"),
  35659. weight: math.unit(1240, "lb"),
  35660. name: "Side",
  35661. image: {
  35662. source: "./media/characters/mika-valentine/side.svg",
  35663. extra: 2670/2501,
  35664. bottom: 250/2920
  35665. }
  35666. },
  35667. },
  35668. [
  35669. {
  35670. name: "Normal",
  35671. height: math.unit(8 + 2/12, "feet"),
  35672. default: true
  35673. },
  35674. ]
  35675. ))
  35676. characterMakers.push(() => makeCharacter(
  35677. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  35678. {
  35679. front: {
  35680. height: math.unit(7 + 2/12, "feet"),
  35681. name: "Front",
  35682. image: {
  35683. source: "./media/characters/xoltol/front.svg",
  35684. extra: 2212/2124,
  35685. bottom: 84/2296
  35686. }
  35687. },
  35688. side: {
  35689. height: math.unit(7 + 2/12, "feet"),
  35690. name: "Side",
  35691. image: {
  35692. source: "./media/characters/xoltol/side.svg",
  35693. extra: 2273/2197,
  35694. bottom: 26/2299
  35695. }
  35696. },
  35697. hand: {
  35698. height: math.unit(2.5, "feet"),
  35699. name: "Hand",
  35700. image: {
  35701. source: "./media/characters/xoltol/hand.svg"
  35702. }
  35703. },
  35704. },
  35705. [
  35706. {
  35707. name: "Small-ish",
  35708. height: math.unit(5 + 11/12, "feet")
  35709. },
  35710. {
  35711. name: "Normal",
  35712. height: math.unit(7 + 2/12, "feet")
  35713. },
  35714. {
  35715. name: "\"Macro\"",
  35716. height: math.unit(14 + 9/12, "feet"),
  35717. default: true
  35718. },
  35719. {
  35720. name: "Alternate Height",
  35721. height: math.unit(20, "feet")
  35722. },
  35723. {
  35724. name: "Actually Macro",
  35725. height: math.unit(100, "feet")
  35726. },
  35727. ]
  35728. ))
  35729. characterMakers.push(() => makeCharacter(
  35730. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  35731. {
  35732. front: {
  35733. height: math.unit(5 + 2/12, "feet"),
  35734. name: "Front",
  35735. image: {
  35736. source: "./media/characters/kotetsu-redwood/front.svg",
  35737. extra: 1053/942,
  35738. bottom: 60/1113
  35739. }
  35740. },
  35741. },
  35742. [
  35743. {
  35744. name: "Normal",
  35745. height: math.unit(5 + 2/12, "feet"),
  35746. default: true
  35747. },
  35748. ]
  35749. ))
  35750. characterMakers.push(() => makeCharacter(
  35751. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  35752. {
  35753. front: {
  35754. height: math.unit(2.4, "meters"),
  35755. weight: math.unit(125, "kg"),
  35756. name: "Front",
  35757. image: {
  35758. source: "./media/characters/lilith/front.svg",
  35759. extra: 1590/1513,
  35760. bottom: 203/1793
  35761. }
  35762. },
  35763. },
  35764. [
  35765. {
  35766. name: "Humanoid",
  35767. height: math.unit(2.4, "meters")
  35768. },
  35769. {
  35770. name: "Normal",
  35771. height: math.unit(6, "meters"),
  35772. default: true
  35773. },
  35774. {
  35775. name: "Largest",
  35776. height: math.unit(55, "meters")
  35777. },
  35778. ]
  35779. ))
  35780. characterMakers.push(() => makeCharacter(
  35781. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  35782. {
  35783. front: {
  35784. height: math.unit(8 + 4/12, "feet"),
  35785. weight: math.unit(535, "lb"),
  35786. name: "Front",
  35787. image: {
  35788. source: "./media/characters/beh'kah-bolger/front.svg",
  35789. extra: 1660/1603,
  35790. bottom: 37/1697
  35791. }
  35792. },
  35793. },
  35794. [
  35795. {
  35796. name: "Normal",
  35797. height: math.unit(8 + 4/12, "feet"),
  35798. default: true
  35799. },
  35800. {
  35801. name: "Kaiju",
  35802. height: math.unit(250, "feet")
  35803. },
  35804. {
  35805. name: "Still Growing",
  35806. height: math.unit(10, "miles")
  35807. },
  35808. {
  35809. name: "Continental",
  35810. height: math.unit(5000, "miles")
  35811. },
  35812. {
  35813. name: "Final Form",
  35814. height: math.unit(2500000, "miles")
  35815. },
  35816. ]
  35817. ))
  35818. characterMakers.push(() => makeCharacter(
  35819. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  35820. {
  35821. front: {
  35822. height: math.unit(7 + 2/12, "feet"),
  35823. weight: math.unit(230, "kg"),
  35824. name: "Front",
  35825. image: {
  35826. source: "./media/characters/tatyana-milewska/front.svg",
  35827. extra: 1199/1150,
  35828. bottom: 86/1285
  35829. }
  35830. },
  35831. },
  35832. [
  35833. {
  35834. name: "Normal",
  35835. height: math.unit(7 + 2/12, "feet"),
  35836. default: true
  35837. },
  35838. {
  35839. name: "Big",
  35840. height: math.unit(12, "feet")
  35841. },
  35842. {
  35843. name: "Minimacro",
  35844. height: math.unit(20, "feet")
  35845. },
  35846. {
  35847. name: "Macro",
  35848. height: math.unit(120, "feet")
  35849. },
  35850. ]
  35851. ))
  35852. characterMakers.push(() => makeCharacter(
  35853. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  35854. {
  35855. front: {
  35856. height: math.unit(7 + 8/12, "feet"),
  35857. weight: math.unit(152, "kg"),
  35858. name: "Front",
  35859. image: {
  35860. source: "./media/characters/helen-arri/front.svg",
  35861. extra: 440/423,
  35862. bottom: 14/454
  35863. }
  35864. },
  35865. back: {
  35866. height: math.unit(7 + 8/12, "feet"),
  35867. weight: math.unit(152, "kg"),
  35868. name: "Back",
  35869. image: {
  35870. source: "./media/characters/helen-arri/back.svg",
  35871. extra: 443/426,
  35872. bottom: 8/451
  35873. }
  35874. },
  35875. },
  35876. [
  35877. {
  35878. name: "Normal",
  35879. height: math.unit(7 + 8/12, "feet"),
  35880. default: true
  35881. },
  35882. {
  35883. name: "Big",
  35884. height: math.unit(14, "feet")
  35885. },
  35886. {
  35887. name: "Minimacro",
  35888. height: math.unit(24, "feet")
  35889. },
  35890. {
  35891. name: "Macro",
  35892. height: math.unit(140, "feet")
  35893. },
  35894. ]
  35895. ))
  35896. characterMakers.push(() => makeCharacter(
  35897. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  35898. {
  35899. front: {
  35900. height: math.unit(6, "meters"),
  35901. name: "Front",
  35902. image: {
  35903. source: "./media/characters/ehanu-rehu/front.svg",
  35904. extra: 1800/1800,
  35905. bottom: 59/1859
  35906. }
  35907. },
  35908. },
  35909. [
  35910. {
  35911. name: "Normal",
  35912. height: math.unit(6, "meters"),
  35913. default: true
  35914. },
  35915. ]
  35916. ))
  35917. characterMakers.push(() => makeCharacter(
  35918. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  35919. {
  35920. front: {
  35921. height: math.unit(7 + 3/12, "feet"),
  35922. name: "Front",
  35923. image: {
  35924. source: "./media/characters/renholder/front.svg",
  35925. extra: 3096/2960,
  35926. bottom: 250/3346
  35927. }
  35928. },
  35929. },
  35930. [
  35931. {
  35932. name: "Normal Bat",
  35933. height: math.unit(7 + 3/12, "feet"),
  35934. default: true
  35935. },
  35936. {
  35937. name: "Slightly Tall Bat",
  35938. height: math.unit(100, "feet")
  35939. },
  35940. {
  35941. name: "Big Bat",
  35942. height: math.unit(1000, "feet")
  35943. },
  35944. {
  35945. name: "City-Sized Bat",
  35946. height: math.unit(200000, "feet")
  35947. },
  35948. {
  35949. name: "Bigger Bat",
  35950. height: math.unit(10000, "miles")
  35951. },
  35952. {
  35953. name: "Solar Sized Bat",
  35954. height: math.unit(100, "AU")
  35955. },
  35956. {
  35957. name: "Galactic Bat",
  35958. height: math.unit(200000, "lightyears")
  35959. },
  35960. {
  35961. name: "Universally Known Bat",
  35962. height: math.unit(1, "universe")
  35963. },
  35964. ]
  35965. ))
  35966. characterMakers.push(() => makeCharacter(
  35967. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  35968. {
  35969. front: {
  35970. height: math.unit(6 + 11/12, "feet"),
  35971. weight: math.unit(250, "lb"),
  35972. name: "Front",
  35973. image: {
  35974. source: "./media/characters/cookiecat/front.svg",
  35975. extra: 893/827,
  35976. bottom: 14/907
  35977. }
  35978. },
  35979. },
  35980. [
  35981. {
  35982. name: "Micro",
  35983. height: math.unit(3, "inches")
  35984. },
  35985. {
  35986. name: "Normal",
  35987. height: math.unit(6 + 11/12, "feet"),
  35988. default: true
  35989. },
  35990. {
  35991. name: "Macro",
  35992. height: math.unit(100, "feet")
  35993. },
  35994. {
  35995. name: "Macro+",
  35996. height: math.unit(404, "feet")
  35997. },
  35998. {
  35999. name: "Megamacro",
  36000. height: math.unit(165, "miles")
  36001. },
  36002. {
  36003. name: "Planetary",
  36004. height: math.unit(4600, "miles")
  36005. },
  36006. ]
  36007. ))
  36008. characterMakers.push(() => makeCharacter(
  36009. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  36010. {
  36011. front: {
  36012. height: math.unit(10 + 3/12, "feet"),
  36013. weight: math.unit(1500, "lb"),
  36014. name: "Front",
  36015. image: {
  36016. source: "./media/characters/tux-kusanagi/front.svg",
  36017. extra: 944/840,
  36018. bottom: 39/983
  36019. }
  36020. },
  36021. back: {
  36022. height: math.unit(10 + 3/12, "feet"),
  36023. weight: math.unit(1500, "lb"),
  36024. name: "Back",
  36025. image: {
  36026. source: "./media/characters/tux-kusanagi/back.svg",
  36027. extra: 941/842,
  36028. bottom: 28/969
  36029. }
  36030. },
  36031. rump: {
  36032. height: math.unit(5.25, "feet"),
  36033. name: "Rump",
  36034. image: {
  36035. source: "./media/characters/tux-kusanagi/rump.svg"
  36036. }
  36037. },
  36038. beak: {
  36039. height: math.unit(1.54, "feet"),
  36040. name: "Beak",
  36041. image: {
  36042. source: "./media/characters/tux-kusanagi/beak.svg"
  36043. }
  36044. },
  36045. },
  36046. [
  36047. {
  36048. name: "Normal",
  36049. height: math.unit(10 + 3/12, "feet"),
  36050. default: true
  36051. },
  36052. ]
  36053. ))
  36054. characterMakers.push(() => makeCharacter(
  36055. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  36056. {
  36057. front: {
  36058. height: math.unit(58, "feet"),
  36059. weight: math.unit(200, "tons"),
  36060. name: "Front",
  36061. image: {
  36062. source: "./media/characters/uzarmazari/front.svg",
  36063. extra: 1575/1455,
  36064. bottom: 152/1727
  36065. }
  36066. },
  36067. back: {
  36068. height: math.unit(58, "feet"),
  36069. weight: math.unit(200, "tons"),
  36070. name: "Back",
  36071. image: {
  36072. source: "./media/characters/uzarmazari/back.svg",
  36073. extra: 1585/1510,
  36074. bottom: 157/1742
  36075. }
  36076. },
  36077. head: {
  36078. height: math.unit(26, "feet"),
  36079. name: "Head",
  36080. image: {
  36081. source: "./media/characters/uzarmazari/head.svg"
  36082. }
  36083. },
  36084. },
  36085. [
  36086. {
  36087. name: "Normal",
  36088. height: math.unit(58, "feet"),
  36089. default: true
  36090. },
  36091. ]
  36092. ))
  36093. characterMakers.push(() => makeCharacter(
  36094. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  36095. {
  36096. side: {
  36097. height: math.unit(15, "feet"),
  36098. name: "Side",
  36099. image: {
  36100. source: "./media/characters/akitu/side.svg",
  36101. extra: 1421/1321,
  36102. bottom: 157/1578
  36103. }
  36104. },
  36105. front: {
  36106. height: math.unit(15, "feet"),
  36107. name: "Front",
  36108. image: {
  36109. source: "./media/characters/akitu/front.svg",
  36110. extra: 1435/1326,
  36111. bottom: 232/1667
  36112. }
  36113. },
  36114. },
  36115. [
  36116. {
  36117. name: "Normal",
  36118. height: math.unit(15, "feet"),
  36119. default: true
  36120. },
  36121. ]
  36122. ))
  36123. characterMakers.push(() => makeCharacter(
  36124. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  36125. {
  36126. front: {
  36127. height: math.unit(10 + 8/12, "feet"),
  36128. name: "Front",
  36129. image: {
  36130. source: "./media/characters/azalie-croixland/front.svg",
  36131. extra: 1972/1856,
  36132. bottom: 31/2003
  36133. }
  36134. },
  36135. },
  36136. [
  36137. {
  36138. name: "Original Height",
  36139. height: math.unit(5 + 4/12, "feet")
  36140. },
  36141. {
  36142. name: "Normal Height",
  36143. height: math.unit(10 + 8/12, "feet"),
  36144. default: true
  36145. },
  36146. ]
  36147. ))
  36148. characterMakers.push(() => makeCharacter(
  36149. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  36150. {
  36151. side: {
  36152. height: math.unit(7 + 1/12, "feet"),
  36153. weight: math.unit(245, "lb"),
  36154. name: "Side",
  36155. image: {
  36156. source: "./media/characters/kavus-kazian/side.svg",
  36157. extra: 349/342,
  36158. bottom: 15/364
  36159. }
  36160. },
  36161. },
  36162. [
  36163. {
  36164. name: "Normal",
  36165. height: math.unit(7 + 1/12, "feet"),
  36166. default: true
  36167. },
  36168. ]
  36169. ))
  36170. characterMakers.push(() => makeCharacter(
  36171. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  36172. {
  36173. normalFront: {
  36174. height: math.unit(5 + 11/12, "feet"),
  36175. name: "Front",
  36176. image: {
  36177. source: "./media/characters/moonlight-rose/normal-front.svg",
  36178. extra: 1980/1825,
  36179. bottom: 18/1998
  36180. },
  36181. form: "normal",
  36182. default: true
  36183. },
  36184. normalBack: {
  36185. height: math.unit(5 + 11/12, "feet"),
  36186. name: "Back",
  36187. image: {
  36188. source: "./media/characters/moonlight-rose/normal-back.svg",
  36189. extra: 2010/1839,
  36190. bottom: 10/2020
  36191. },
  36192. form: "normal"
  36193. },
  36194. demonFront: {
  36195. height: math.unit(1.5, "earths"),
  36196. name: "Front",
  36197. image: {
  36198. source: "./media/characters/moonlight-rose/demon.svg",
  36199. extra: 1400/1294,
  36200. bottom: 45/1445
  36201. },
  36202. form: "demon",
  36203. default: true
  36204. },
  36205. terraFront: {
  36206. height: math.unit(1.5, "earths"),
  36207. name: "Front",
  36208. image: {
  36209. source: "./media/characters/moonlight-rose/terra.svg"
  36210. },
  36211. form: "terra",
  36212. default: true
  36213. },
  36214. jupiterFront: {
  36215. height: math.unit(69911*2, "km"),
  36216. name: "Front",
  36217. image: {
  36218. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  36219. extra: 1367/1286,
  36220. bottom: 55/1422
  36221. },
  36222. form: "jupiter",
  36223. default: true
  36224. },
  36225. neptuneFront: {
  36226. height: math.unit(24622*2, "feet"),
  36227. name: "Front",
  36228. image: {
  36229. source: "./media/characters/moonlight-rose/neptune-front.svg",
  36230. extra: 1851/1712,
  36231. bottom: 0/1851
  36232. },
  36233. form: "neptune",
  36234. default: true
  36235. },
  36236. },
  36237. [
  36238. {
  36239. name: "\"Natural\" Height",
  36240. height: math.unit(5 + 11/12, "feet"),
  36241. form: "normal"
  36242. },
  36243. {
  36244. name: "Smallest comfortable size",
  36245. height: math.unit(40, "meters"),
  36246. form: "normal"
  36247. },
  36248. {
  36249. name: "Common size",
  36250. height: math.unit(50, "km"),
  36251. form: "normal",
  36252. default: true
  36253. },
  36254. {
  36255. name: "Normal",
  36256. height: math.unit(1.5, "earths"),
  36257. form: "demon",
  36258. default: true
  36259. },
  36260. {
  36261. name: "Universal",
  36262. height: math.unit(15, "universes"),
  36263. form: "demon"
  36264. },
  36265. {
  36266. name: "Earth",
  36267. height: math.unit(1.5, "earths"),
  36268. form: "terra",
  36269. default: true
  36270. },
  36271. {
  36272. name: "Super Earth",
  36273. height: math.unit(67.5, "earths"),
  36274. form: "terra"
  36275. },
  36276. {
  36277. name: "Doesn't fit in a solar system...",
  36278. height: math.unit(1, "galaxy"),
  36279. form: "terra"
  36280. },
  36281. {
  36282. name: "Saturn",
  36283. height: math.unit(58232*2, "km"),
  36284. form: "jupiter"
  36285. },
  36286. {
  36287. name: "Jupiter",
  36288. height: math.unit(69911*2, "km"),
  36289. form: "jupiter",
  36290. default: true
  36291. },
  36292. {
  36293. name: "HD 100546 b",
  36294. height: math.unit(482938, "km"),
  36295. form: "jupiter"
  36296. },
  36297. {
  36298. name: "Enceladus",
  36299. height: math.unit(513*2, "km"),
  36300. form: "neptune"
  36301. },
  36302. {
  36303. name: "Europe",
  36304. height: math.unit(1560*2, "km"),
  36305. form: "neptune"
  36306. },
  36307. {
  36308. name: "Neptune",
  36309. height: math.unit(24622*2, "km"),
  36310. form: "neptune",
  36311. default: true
  36312. },
  36313. {
  36314. name: "CoRoT-9b",
  36315. height: math.unit(75067*2, "km"),
  36316. form: "neptune"
  36317. },
  36318. ],
  36319. {
  36320. "normal": {
  36321. name: "Normal",
  36322. default: true
  36323. },
  36324. "demon": {
  36325. name: "Demon"
  36326. },
  36327. "terra": {
  36328. name: "Terra"
  36329. },
  36330. "jupiter": {
  36331. name: "Jupiter"
  36332. },
  36333. "neptune": {
  36334. name: "Neptune"
  36335. }
  36336. }
  36337. ))
  36338. characterMakers.push(() => makeCharacter(
  36339. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  36340. {
  36341. front: {
  36342. height: math.unit(16, "feet"),
  36343. weight: math.unit(610, "kg"),
  36344. name: "Front",
  36345. image: {
  36346. source: "./media/characters/huckle/front.svg",
  36347. extra: 1731/1625,
  36348. bottom: 33/1764
  36349. }
  36350. },
  36351. back: {
  36352. height: math.unit(16, "feet"),
  36353. weight: math.unit(610, "kg"),
  36354. name: "Back",
  36355. image: {
  36356. source: "./media/characters/huckle/back.svg",
  36357. extra: 1738/1651,
  36358. bottom: 37/1775
  36359. }
  36360. },
  36361. laughing: {
  36362. height: math.unit(3.75, "feet"),
  36363. name: "Laughing",
  36364. image: {
  36365. source: "./media/characters/huckle/laughing.svg"
  36366. }
  36367. },
  36368. angry: {
  36369. height: math.unit(4.15, "feet"),
  36370. name: "Angry",
  36371. image: {
  36372. source: "./media/characters/huckle/angry.svg"
  36373. }
  36374. },
  36375. },
  36376. [
  36377. {
  36378. name: "Normal",
  36379. height: math.unit(16, "feet"),
  36380. default: true
  36381. },
  36382. {
  36383. name: "Mini Macro",
  36384. height: math.unit(463, "feet")
  36385. },
  36386. {
  36387. name: "Macro",
  36388. height: math.unit(1680, "meters")
  36389. },
  36390. {
  36391. name: "Mega Macro",
  36392. height: math.unit(175, "km")
  36393. },
  36394. {
  36395. name: "Terra Macro",
  36396. height: math.unit(32, "gigameters")
  36397. },
  36398. {
  36399. name: "Multiverse+",
  36400. height: math.unit(2.56e23, "yottameters")
  36401. },
  36402. ]
  36403. ))
  36404. characterMakers.push(() => makeCharacter(
  36405. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  36406. {
  36407. front: {
  36408. height: math.unit(6 + 9/12, "feet"),
  36409. weight: math.unit(280, "lb"),
  36410. name: "Front",
  36411. image: {
  36412. source: "./media/characters/candy/front.svg",
  36413. extra: 234/217,
  36414. bottom: 11/245
  36415. }
  36416. },
  36417. },
  36418. [
  36419. {
  36420. name: "Really Small",
  36421. height: math.unit(0.1, "nm")
  36422. },
  36423. {
  36424. name: "Micro",
  36425. height: math.unit(2, "inches")
  36426. },
  36427. {
  36428. name: "Normal",
  36429. height: math.unit(6 + 9/12, "feet"),
  36430. default: true
  36431. },
  36432. {
  36433. name: "Small Macro",
  36434. height: math.unit(69, "feet")
  36435. },
  36436. {
  36437. name: "Macro",
  36438. height: math.unit(160, "feet")
  36439. },
  36440. {
  36441. name: "Megamacro",
  36442. height: math.unit(22000, "miles")
  36443. },
  36444. {
  36445. name: "Gigamacro",
  36446. height: math.unit(50000, "miles")
  36447. },
  36448. ]
  36449. ))
  36450. characterMakers.push(() => makeCharacter(
  36451. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  36452. {
  36453. front: {
  36454. height: math.unit(4, "feet"),
  36455. weight: math.unit(90, "lb"),
  36456. name: "Front",
  36457. image: {
  36458. source: "./media/characters/joey-mcdonald/front.svg",
  36459. extra: 1059/852,
  36460. bottom: 33/1092
  36461. }
  36462. },
  36463. back: {
  36464. height: math.unit(4, "feet"),
  36465. weight: math.unit(90, "lb"),
  36466. name: "Back",
  36467. image: {
  36468. source: "./media/characters/joey-mcdonald/back.svg",
  36469. extra: 1077/879,
  36470. bottom: 5/1082
  36471. }
  36472. },
  36473. frontKobold: {
  36474. height: math.unit(4, "feet"),
  36475. weight: math.unit(100, "lb"),
  36476. name: "Front-kobold",
  36477. image: {
  36478. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  36479. extra: 1480/1367,
  36480. bottom: 0/1480
  36481. }
  36482. },
  36483. backKobold: {
  36484. height: math.unit(4, "feet"),
  36485. weight: math.unit(100, "lb"),
  36486. name: "Back-kobold",
  36487. image: {
  36488. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  36489. extra: 1449/1361,
  36490. bottom: 0/1449
  36491. }
  36492. },
  36493. },
  36494. [
  36495. {
  36496. name: "Normal",
  36497. height: math.unit(4, "feet"),
  36498. default: true
  36499. },
  36500. ]
  36501. ))
  36502. characterMakers.push(() => makeCharacter(
  36503. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  36504. {
  36505. front: {
  36506. height: math.unit(12 + 6/12, "feet"),
  36507. name: "Front",
  36508. image: {
  36509. source: "./media/characters/kass-lockheed/front.svg",
  36510. extra: 354/343,
  36511. bottom: 9/363
  36512. }
  36513. },
  36514. back: {
  36515. height: math.unit(12 + 6/12, "feet"),
  36516. name: "Back",
  36517. image: {
  36518. source: "./media/characters/kass-lockheed/back.svg",
  36519. extra: 364/352,
  36520. bottom: 3/367
  36521. }
  36522. },
  36523. dick: {
  36524. height: math.unit(3.12, "feet"),
  36525. name: "Dick",
  36526. image: {
  36527. source: "./media/characters/kass-lockheed/dick.svg"
  36528. }
  36529. },
  36530. head: {
  36531. height: math.unit(2.6, "feet"),
  36532. name: "Head",
  36533. image: {
  36534. source: "./media/characters/kass-lockheed/head.svg"
  36535. }
  36536. },
  36537. bleh: {
  36538. height: math.unit(2.85, "feet"),
  36539. name: "Bleh",
  36540. image: {
  36541. source: "./media/characters/kass-lockheed/bleh.svg"
  36542. }
  36543. },
  36544. smug: {
  36545. height: math.unit(2.85, "feet"),
  36546. name: "Smug",
  36547. image: {
  36548. source: "./media/characters/kass-lockheed/smug.svg"
  36549. }
  36550. },
  36551. },
  36552. [
  36553. {
  36554. name: "Normal",
  36555. height: math.unit(12 + 6/12, "feet"),
  36556. default: true
  36557. },
  36558. ]
  36559. ))
  36560. characterMakers.push(() => makeCharacter(
  36561. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  36562. {
  36563. front: {
  36564. height: math.unit(6 + 2/12, "feet"),
  36565. name: "Front",
  36566. image: {
  36567. source: "./media/characters/taylor/front.svg",
  36568. extra: 639/495,
  36569. bottom: 12/651
  36570. }
  36571. },
  36572. },
  36573. [
  36574. {
  36575. name: "Normal",
  36576. height: math.unit(6 + 2/12, "feet"),
  36577. default: true
  36578. },
  36579. {
  36580. name: "Big",
  36581. height: math.unit(15, "feet")
  36582. },
  36583. {
  36584. name: "Lorg",
  36585. height: math.unit(80, "feet")
  36586. },
  36587. {
  36588. name: "Too Lorg",
  36589. height: math.unit(120, "feet")
  36590. },
  36591. ]
  36592. ))
  36593. characterMakers.push(() => makeCharacter(
  36594. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  36595. {
  36596. front: {
  36597. height: math.unit(15, "feet"),
  36598. name: "Front",
  36599. image: {
  36600. source: "./media/characters/kaizer/front.svg",
  36601. extra: 1612/1436,
  36602. bottom: 43/1655
  36603. }
  36604. },
  36605. },
  36606. [
  36607. {
  36608. name: "Normal",
  36609. height: math.unit(15, "feet"),
  36610. default: true
  36611. },
  36612. ]
  36613. ))
  36614. characterMakers.push(() => makeCharacter(
  36615. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  36616. {
  36617. front: {
  36618. height: math.unit(2, "feet"),
  36619. weight: math.unit(30, "lb"),
  36620. name: "Front",
  36621. image: {
  36622. source: "./media/characters/sandy/front.svg",
  36623. extra: 1439/1307,
  36624. bottom: 194/1633
  36625. }
  36626. },
  36627. },
  36628. [
  36629. {
  36630. name: "Normal",
  36631. height: math.unit(2, "feet"),
  36632. default: true
  36633. },
  36634. ]
  36635. ))
  36636. characterMakers.push(() => makeCharacter(
  36637. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  36638. {
  36639. front: {
  36640. height: math.unit(3, "feet"),
  36641. name: "Front",
  36642. image: {
  36643. source: "./media/characters/mellvi/front.svg",
  36644. extra: 1831/1630,
  36645. bottom: 58/1889
  36646. }
  36647. },
  36648. },
  36649. [
  36650. {
  36651. name: "Normal",
  36652. height: math.unit(3, "feet"),
  36653. default: true
  36654. },
  36655. ]
  36656. ))
  36657. characterMakers.push(() => makeCharacter(
  36658. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  36659. {
  36660. front: {
  36661. height: math.unit(5 + 11/12, "feet"),
  36662. weight: math.unit(200, "lb"),
  36663. name: "Front",
  36664. image: {
  36665. source: "./media/characters/shirou/front.svg",
  36666. extra: 2491/2383,
  36667. bottom: 189/2680
  36668. }
  36669. },
  36670. back: {
  36671. height: math.unit(5 + 11/12, "feet"),
  36672. weight: math.unit(200, "lb"),
  36673. name: "Back",
  36674. image: {
  36675. source: "./media/characters/shirou/back.svg",
  36676. extra: 2554/2450,
  36677. bottom: 76/2630
  36678. }
  36679. },
  36680. },
  36681. [
  36682. {
  36683. name: "Normal",
  36684. height: math.unit(5 + 11/12, "feet"),
  36685. default: true
  36686. },
  36687. ]
  36688. ))
  36689. characterMakers.push(() => makeCharacter(
  36690. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  36691. {
  36692. front: {
  36693. height: math.unit(6 + 3/12, "feet"),
  36694. weight: math.unit(177, "lb"),
  36695. name: "Front",
  36696. image: {
  36697. source: "./media/characters/noryu/front.svg",
  36698. extra: 973/885,
  36699. bottom: 10/983
  36700. }
  36701. },
  36702. },
  36703. [
  36704. {
  36705. name: "Normal",
  36706. height: math.unit(6 + 3/12, "feet"),
  36707. default: true
  36708. },
  36709. ]
  36710. ))
  36711. characterMakers.push(() => makeCharacter(
  36712. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  36713. {
  36714. front: {
  36715. height: math.unit(5 + 6/12, "feet"),
  36716. weight: math.unit(170, "lb"),
  36717. name: "Front",
  36718. image: {
  36719. source: "./media/characters/mevolas-rubenido/front.svg",
  36720. extra: 2109/1901,
  36721. bottom: 96/2205
  36722. }
  36723. },
  36724. },
  36725. [
  36726. {
  36727. name: "Normal",
  36728. height: math.unit(5 + 6/12, "feet"),
  36729. default: true
  36730. },
  36731. ]
  36732. ))
  36733. characterMakers.push(() => makeCharacter(
  36734. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  36735. {
  36736. front: {
  36737. height: math.unit(100, "feet"),
  36738. name: "Front",
  36739. image: {
  36740. source: "./media/characters/dee/front.svg",
  36741. extra: 2153/2036,
  36742. bottom: 59/2212
  36743. }
  36744. },
  36745. back: {
  36746. height: math.unit(100, "feet"),
  36747. name: "Back",
  36748. image: {
  36749. source: "./media/characters/dee/back.svg",
  36750. extra: 2183/2058,
  36751. bottom: 75/2258
  36752. }
  36753. },
  36754. foot: {
  36755. height: math.unit(19.43, "feet"),
  36756. name: "Foot",
  36757. image: {
  36758. source: "./media/characters/dee/foot.svg"
  36759. }
  36760. },
  36761. hoof: {
  36762. height: math.unit(20.6, "feet"),
  36763. name: "Hoof",
  36764. image: {
  36765. source: "./media/characters/dee/hoof.svg"
  36766. }
  36767. },
  36768. },
  36769. [
  36770. {
  36771. name: "Macro",
  36772. height: math.unit(100, "feet"),
  36773. default: true
  36774. },
  36775. ]
  36776. ))
  36777. characterMakers.push(() => makeCharacter(
  36778. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  36779. {
  36780. front: {
  36781. height: math.unit(5 + 6/12, "feet"),
  36782. name: "Front",
  36783. image: {
  36784. source: "./media/characters/teh/front.svg",
  36785. extra: 1002/847,
  36786. bottom: 62/1064
  36787. }
  36788. },
  36789. },
  36790. [
  36791. {
  36792. name: "Normal",
  36793. height: math.unit(5 + 6/12, "feet"),
  36794. default: true
  36795. },
  36796. ]
  36797. ))
  36798. characterMakers.push(() => makeCharacter(
  36799. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  36800. {
  36801. side: {
  36802. height: math.unit(6 + 1/12, "feet"),
  36803. weight: math.unit(204, "lb"),
  36804. name: "Side",
  36805. image: {
  36806. source: "./media/characters/quicksilver-ayukoti/side.svg",
  36807. extra: 974/775,
  36808. bottom: 169/1143
  36809. }
  36810. },
  36811. sitting: {
  36812. height: math.unit(6 + 2/12, "feet"),
  36813. weight: math.unit(204, "lb"),
  36814. name: "Sitting",
  36815. image: {
  36816. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  36817. extra: 1175/964,
  36818. bottom: 378/1553
  36819. }
  36820. },
  36821. },
  36822. [
  36823. {
  36824. name: "Normal",
  36825. height: math.unit(6 + 1/12, "feet"),
  36826. default: true
  36827. },
  36828. ]
  36829. ))
  36830. characterMakers.push(() => makeCharacter(
  36831. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  36832. {
  36833. front: {
  36834. height: math.unit(6, "inches"),
  36835. name: "Front",
  36836. image: {
  36837. source: "./media/characters/tululi/front.svg",
  36838. extra: 1997/1876,
  36839. bottom: 20/2017
  36840. }
  36841. },
  36842. },
  36843. [
  36844. {
  36845. name: "Normal",
  36846. height: math.unit(6, "inches"),
  36847. default: true
  36848. },
  36849. ]
  36850. ))
  36851. characterMakers.push(() => makeCharacter(
  36852. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  36853. {
  36854. front: {
  36855. height: math.unit(4 + 1/12, "feet"),
  36856. name: "Front",
  36857. image: {
  36858. source: "./media/characters/star/front.svg",
  36859. extra: 1493/1189,
  36860. bottom: 48/1541
  36861. }
  36862. },
  36863. },
  36864. [
  36865. {
  36866. name: "Normal",
  36867. height: math.unit(4 + 1/12, "feet"),
  36868. default: true
  36869. },
  36870. ]
  36871. ))
  36872. characterMakers.push(() => makeCharacter(
  36873. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  36874. {
  36875. front: {
  36876. height: math.unit(6 + 3/12, "feet"),
  36877. name: "Front",
  36878. image: {
  36879. source: "./media/characters/comet/front.svg",
  36880. extra: 1681/1462,
  36881. bottom: 26/1707
  36882. }
  36883. },
  36884. },
  36885. [
  36886. {
  36887. name: "Normal",
  36888. height: math.unit(6 + 3/12, "feet"),
  36889. default: true
  36890. },
  36891. ]
  36892. ))
  36893. characterMakers.push(() => makeCharacter(
  36894. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  36895. {
  36896. front: {
  36897. height: math.unit(950, "feet"),
  36898. name: "Front",
  36899. image: {
  36900. source: "./media/characters/vortex/front.svg",
  36901. extra: 1497/1434,
  36902. bottom: 56/1553
  36903. }
  36904. },
  36905. maw: {
  36906. height: math.unit(285, "feet"),
  36907. name: "Maw",
  36908. image: {
  36909. source: "./media/characters/vortex/maw.svg"
  36910. }
  36911. },
  36912. },
  36913. [
  36914. {
  36915. name: "Macro",
  36916. height: math.unit(950, "feet"),
  36917. default: true
  36918. },
  36919. ]
  36920. ))
  36921. characterMakers.push(() => makeCharacter(
  36922. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  36923. {
  36924. front: {
  36925. height: math.unit(600, "feet"),
  36926. weight: math.unit(0.02, "grams"),
  36927. name: "Front",
  36928. image: {
  36929. source: "./media/characters/doodle/front.svg",
  36930. extra: 1578/1413,
  36931. bottom: 37/1615
  36932. }
  36933. },
  36934. },
  36935. [
  36936. {
  36937. name: "Macro",
  36938. height: math.unit(600, "feet"),
  36939. default: true
  36940. },
  36941. ]
  36942. ))
  36943. characterMakers.push(() => makeCharacter(
  36944. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  36945. {
  36946. front: {
  36947. height: math.unit(6 + 6/12, "feet"),
  36948. name: "Front",
  36949. image: {
  36950. source: "./media/characters/jai/front.svg",
  36951. extra: 1645/1534,
  36952. bottom: 115/1760
  36953. }
  36954. },
  36955. },
  36956. [
  36957. {
  36958. name: "Normal",
  36959. height: math.unit(6 + 6/12, "feet"),
  36960. default: true
  36961. },
  36962. ]
  36963. ))
  36964. characterMakers.push(() => makeCharacter(
  36965. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  36966. {
  36967. front: {
  36968. height: math.unit(6 + 8/12, "feet"),
  36969. name: "Front",
  36970. image: {
  36971. source: "./media/characters/pixel/front.svg",
  36972. extra: 1900/1735,
  36973. bottom: 63/1963
  36974. }
  36975. },
  36976. },
  36977. [
  36978. {
  36979. name: "Normal",
  36980. height: math.unit(6 + 8/12, "feet"),
  36981. default: true
  36982. },
  36983. ]
  36984. ))
  36985. characterMakers.push(() => makeCharacter(
  36986. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  36987. {
  36988. back: {
  36989. height: math.unit(4 + 1/12, "feet"),
  36990. weight: math.unit(75, "lb"),
  36991. name: "Back",
  36992. image: {
  36993. source: "./media/characters/rhett/back.svg",
  36994. extra: 930/878,
  36995. bottom: 25/955
  36996. }
  36997. },
  36998. front: {
  36999. height: math.unit(4 + 1/12, "feet"),
  37000. weight: math.unit(75, "lb"),
  37001. name: "Front",
  37002. image: {
  37003. source: "./media/characters/rhett/front.svg",
  37004. extra: 1682/1586,
  37005. bottom: 92/1774
  37006. }
  37007. },
  37008. },
  37009. [
  37010. {
  37011. name: "Micro",
  37012. height: math.unit(8, "inches")
  37013. },
  37014. {
  37015. name: "Tiny",
  37016. height: math.unit(2, "feet")
  37017. },
  37018. {
  37019. name: "Normal",
  37020. height: math.unit(4 + 1/12, "feet"),
  37021. default: true
  37022. },
  37023. ]
  37024. ))
  37025. characterMakers.push(() => makeCharacter(
  37026. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  37027. {
  37028. front: {
  37029. height: math.unit(3 + 3/12, "feet"),
  37030. name: "Front",
  37031. image: {
  37032. source: "./media/characters/penny/front.svg",
  37033. extra: 1406/1311,
  37034. bottom: 26/1432
  37035. }
  37036. },
  37037. },
  37038. [
  37039. {
  37040. name: "Normal",
  37041. height: math.unit(3 + 3/12, "feet"),
  37042. default: true
  37043. },
  37044. ]
  37045. ))
  37046. characterMakers.push(() => makeCharacter(
  37047. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  37048. {
  37049. front: {
  37050. height: math.unit(4 + 11/12, "feet"),
  37051. name: "Front",
  37052. image: {
  37053. source: "./media/characters/monty/front.svg",
  37054. extra: 1479/1209,
  37055. bottom: 0/1479
  37056. }
  37057. },
  37058. },
  37059. [
  37060. {
  37061. name: "Normal",
  37062. height: math.unit(4 + 11/12, "feet"),
  37063. default: true
  37064. },
  37065. ]
  37066. ))
  37067. characterMakers.push(() => makeCharacter(
  37068. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  37069. {
  37070. front: {
  37071. height: math.unit(8 + 4/12, "feet"),
  37072. name: "Front",
  37073. image: {
  37074. source: "./media/characters/sterling/front.svg",
  37075. extra: 1420/1236,
  37076. bottom: 27/1447
  37077. }
  37078. },
  37079. },
  37080. [
  37081. {
  37082. name: "Normal",
  37083. height: math.unit(8 + 4/12, "feet"),
  37084. default: true
  37085. },
  37086. ]
  37087. ))
  37088. characterMakers.push(() => makeCharacter(
  37089. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  37090. {
  37091. front: {
  37092. height: math.unit(15, "feet"),
  37093. name: "Front",
  37094. image: {
  37095. source: "./media/characters/marble/front.svg",
  37096. extra: 973/937,
  37097. bottom: 32/1005
  37098. }
  37099. },
  37100. },
  37101. [
  37102. {
  37103. name: "Normal",
  37104. height: math.unit(15, "feet"),
  37105. default: true
  37106. },
  37107. ]
  37108. ))
  37109. characterMakers.push(() => makeCharacter(
  37110. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  37111. {
  37112. front: {
  37113. height: math.unit(3, "inches"),
  37114. name: "Front",
  37115. image: {
  37116. source: "./media/characters/powder/front.svg",
  37117. extra: 1504/1334,
  37118. bottom: 518/2022
  37119. }
  37120. },
  37121. },
  37122. [
  37123. {
  37124. name: "Normal",
  37125. height: math.unit(3, "inches"),
  37126. default: true
  37127. },
  37128. ]
  37129. ))
  37130. characterMakers.push(() => makeCharacter(
  37131. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  37132. {
  37133. front: {
  37134. height: math.unit(4 + 5/12, "feet"),
  37135. name: "Front",
  37136. image: {
  37137. source: "./media/characters/joey-raccoon/front.svg",
  37138. extra: 1273/1197,
  37139. bottom: 0/1273
  37140. }
  37141. },
  37142. },
  37143. [
  37144. {
  37145. name: "Normal",
  37146. height: math.unit(4 + 5/12, "feet"),
  37147. default: true
  37148. },
  37149. ]
  37150. ))
  37151. characterMakers.push(() => makeCharacter(
  37152. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  37153. {
  37154. front: {
  37155. height: math.unit(8 + 4/12, "feet"),
  37156. name: "Front",
  37157. image: {
  37158. source: "./media/characters/vick/front.svg",
  37159. extra: 2187/2118,
  37160. bottom: 47/2234
  37161. }
  37162. },
  37163. },
  37164. [
  37165. {
  37166. name: "Normal",
  37167. height: math.unit(8 + 4/12, "feet"),
  37168. default: true
  37169. },
  37170. ]
  37171. ))
  37172. characterMakers.push(() => makeCharacter(
  37173. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  37174. {
  37175. front: {
  37176. height: math.unit(5 + 5/12, "feet"),
  37177. name: "Front",
  37178. image: {
  37179. source: "./media/characters/mitsy/front.svg",
  37180. extra: 1842/1695,
  37181. bottom: 0/1842
  37182. }
  37183. },
  37184. },
  37185. [
  37186. {
  37187. name: "Normal",
  37188. height: math.unit(5 + 5/12, "feet"),
  37189. default: true
  37190. },
  37191. ]
  37192. ))
  37193. characterMakers.push(() => makeCharacter(
  37194. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  37195. {
  37196. front: {
  37197. height: math.unit(6 + 3/12, "feet"),
  37198. name: "Front",
  37199. image: {
  37200. source: "./media/characters/silvy/front.svg",
  37201. extra: 1995/1836,
  37202. bottom: 225/2220
  37203. }
  37204. },
  37205. },
  37206. [
  37207. {
  37208. name: "Normal",
  37209. height: math.unit(6 + 3/12, "feet"),
  37210. default: true
  37211. },
  37212. ]
  37213. ))
  37214. characterMakers.push(() => makeCharacter(
  37215. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  37216. {
  37217. front: {
  37218. height: math.unit(3 + 8/12, "feet"),
  37219. name: "Front",
  37220. image: {
  37221. source: "./media/characters/rodney/front.svg",
  37222. extra: 1956/1747,
  37223. bottom: 31/1987
  37224. }
  37225. },
  37226. frontDressed: {
  37227. height: math.unit(2.9, "feet"),
  37228. name: "Front (Dressed)",
  37229. image: {
  37230. source: "./media/characters/rodney/front-dressed.svg",
  37231. extra: 1382/1241,
  37232. bottom: 385/1767
  37233. }
  37234. },
  37235. },
  37236. [
  37237. {
  37238. name: "Normal",
  37239. height: math.unit(3 + 8/12, "feet"),
  37240. default: true
  37241. },
  37242. ]
  37243. ))
  37244. characterMakers.push(() => makeCharacter(
  37245. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  37246. {
  37247. front: {
  37248. height: math.unit(5 + 9/12, "feet"),
  37249. weight: math.unit(194, "lbs"),
  37250. name: "Front",
  37251. image: {
  37252. source: "./media/characters/zakail-sudekai/front.svg",
  37253. extra: 2696/2533,
  37254. bottom: 248/2944
  37255. }
  37256. },
  37257. maw: {
  37258. height: math.unit(1.35, "feet"),
  37259. name: "Maw",
  37260. image: {
  37261. source: "./media/characters/zakail-sudekai/maw.svg"
  37262. }
  37263. },
  37264. },
  37265. [
  37266. {
  37267. name: "Normal",
  37268. height: math.unit(5 + 9/12, "feet"),
  37269. default: true
  37270. },
  37271. ]
  37272. ))
  37273. characterMakers.push(() => makeCharacter(
  37274. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  37275. {
  37276. front: {
  37277. height: math.unit(8 + 4/12, "feet"),
  37278. weight: math.unit(1200, "lb"),
  37279. name: "Front",
  37280. image: {
  37281. source: "./media/characters/eleanor/front.svg",
  37282. extra: 1226/1192,
  37283. bottom: 52/1278
  37284. }
  37285. },
  37286. back: {
  37287. height: math.unit(8 + 4/12, "feet"),
  37288. weight: math.unit(1200, "lb"),
  37289. name: "Back",
  37290. image: {
  37291. source: "./media/characters/eleanor/back.svg",
  37292. extra: 1242/1184,
  37293. bottom: 60/1302
  37294. }
  37295. },
  37296. head: {
  37297. height: math.unit(2.62, "feet"),
  37298. name: "Head",
  37299. image: {
  37300. source: "./media/characters/eleanor/head.svg"
  37301. }
  37302. },
  37303. },
  37304. [
  37305. {
  37306. name: "Normal",
  37307. height: math.unit(8 + 4/12, "feet"),
  37308. default: true
  37309. },
  37310. ]
  37311. ))
  37312. characterMakers.push(() => makeCharacter(
  37313. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  37314. {
  37315. front: {
  37316. height: math.unit(8 + 4/12, "feet"),
  37317. weight: math.unit(750, "lb"),
  37318. name: "Front",
  37319. image: {
  37320. source: "./media/characters/tanya/front.svg",
  37321. extra: 1749/1615,
  37322. bottom: 33/1782
  37323. }
  37324. },
  37325. },
  37326. [
  37327. {
  37328. name: "Normal",
  37329. height: math.unit(8 + 4/12, "feet"),
  37330. default: true
  37331. },
  37332. ]
  37333. ))
  37334. characterMakers.push(() => makeCharacter(
  37335. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  37336. {
  37337. front: {
  37338. height: math.unit(5, "feet"),
  37339. weight: math.unit(225, "lb"),
  37340. name: "Front",
  37341. image: {
  37342. source: "./media/characters/cindy/front.svg",
  37343. extra: 1320/1250,
  37344. bottom: 42/1362
  37345. }
  37346. },
  37347. frontDressed: {
  37348. height: math.unit(5, "feet"),
  37349. weight: math.unit(225, "lb"),
  37350. name: "Front (Dressed)",
  37351. image: {
  37352. source: "./media/characters/cindy/front-dressed.svg",
  37353. extra: 1320/1250,
  37354. bottom: 42/1362
  37355. }
  37356. },
  37357. back: {
  37358. height: math.unit(5, "feet"),
  37359. weight: math.unit(225, "lb"),
  37360. name: "Back",
  37361. image: {
  37362. source: "./media/characters/cindy/back.svg",
  37363. extra: 1384/1346,
  37364. bottom: 14/1398
  37365. }
  37366. },
  37367. },
  37368. [
  37369. {
  37370. name: "Normal",
  37371. height: math.unit(5, "feet"),
  37372. default: true
  37373. },
  37374. ]
  37375. ))
  37376. characterMakers.push(() => makeCharacter(
  37377. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  37378. {
  37379. front: {
  37380. height: math.unit(6 + 9/12, "feet"),
  37381. weight: math.unit(440, "lb"),
  37382. name: "Front",
  37383. image: {
  37384. source: "./media/characters/wilbur-owen/front.svg",
  37385. extra: 1575/1448,
  37386. bottom: 72/1647
  37387. }
  37388. },
  37389. back: {
  37390. height: math.unit(6 + 9/12, "feet"),
  37391. weight: math.unit(440, "lb"),
  37392. name: "Back",
  37393. image: {
  37394. source: "./media/characters/wilbur-owen/back.svg",
  37395. extra: 1578/1445,
  37396. bottom: 36/1614
  37397. }
  37398. },
  37399. },
  37400. [
  37401. {
  37402. name: "Normal",
  37403. height: math.unit(6 + 9/12, "feet"),
  37404. default: true
  37405. },
  37406. ]
  37407. ))
  37408. characterMakers.push(() => makeCharacter(
  37409. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  37410. {
  37411. front: {
  37412. height: math.unit(6 + 5/12, "feet"),
  37413. weight: math.unit(650, "lb"),
  37414. name: "Front",
  37415. image: {
  37416. source: "./media/characters/keegan/front.svg",
  37417. extra: 2387/2198,
  37418. bottom: 33/2420
  37419. }
  37420. },
  37421. side: {
  37422. height: math.unit(6 + 5/12, "feet"),
  37423. weight: math.unit(650, "lb"),
  37424. name: "Side",
  37425. image: {
  37426. source: "./media/characters/keegan/side.svg",
  37427. extra: 2390/2202,
  37428. bottom: 47/2437
  37429. }
  37430. },
  37431. back: {
  37432. height: math.unit(6 + 5/12, "feet"),
  37433. weight: math.unit(650, "lb"),
  37434. name: "Back",
  37435. image: {
  37436. source: "./media/characters/keegan/back.svg",
  37437. extra: 2418/2268,
  37438. bottom: 15/2433
  37439. }
  37440. },
  37441. frontSfw: {
  37442. height: math.unit(6 + 5/12, "feet"),
  37443. weight: math.unit(650, "lb"),
  37444. name: "Front (SFW)",
  37445. image: {
  37446. source: "./media/characters/keegan/front-sfw.svg",
  37447. extra: 2387/2198,
  37448. bottom: 33/2420
  37449. }
  37450. },
  37451. beans: {
  37452. height: math.unit(1.85, "feet"),
  37453. name: "Beans",
  37454. image: {
  37455. source: "./media/characters/keegan/beans.svg"
  37456. }
  37457. },
  37458. },
  37459. [
  37460. {
  37461. name: "Normal",
  37462. height: math.unit(6 + 5/12, "feet"),
  37463. default: true
  37464. },
  37465. ]
  37466. ))
  37467. characterMakers.push(() => makeCharacter(
  37468. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  37469. {
  37470. front: {
  37471. height: math.unit(9, "feet"),
  37472. name: "Front",
  37473. image: {
  37474. source: "./media/characters/colton/front.svg",
  37475. extra: 1589/1326,
  37476. bottom: 139/1728
  37477. }
  37478. },
  37479. },
  37480. [
  37481. {
  37482. name: "Normal",
  37483. height: math.unit(9, "feet"),
  37484. default: true
  37485. },
  37486. ]
  37487. ))
  37488. characterMakers.push(() => makeCharacter(
  37489. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  37490. {
  37491. front: {
  37492. height: math.unit(2 + 9/12, "feet"),
  37493. name: "Front",
  37494. image: {
  37495. source: "./media/characters/bora/front.svg",
  37496. extra: 1265/1250,
  37497. bottom: 24/1289
  37498. }
  37499. },
  37500. },
  37501. [
  37502. {
  37503. name: "Normal",
  37504. height: math.unit(2 + 9/12, "feet"),
  37505. default: true
  37506. },
  37507. ]
  37508. ))
  37509. characterMakers.push(() => makeCharacter(
  37510. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  37511. {
  37512. front: {
  37513. height: math.unit(8, "feet"),
  37514. name: "Front",
  37515. image: {
  37516. source: "./media/characters/myu-myu/front.svg",
  37517. extra: 1949/1857,
  37518. bottom: 90/2039
  37519. }
  37520. },
  37521. },
  37522. [
  37523. {
  37524. name: "Normal",
  37525. height: math.unit(8, "feet"),
  37526. default: true
  37527. },
  37528. {
  37529. name: "Big",
  37530. height: math.unit(15, "feet")
  37531. },
  37532. {
  37533. name: "BIG",
  37534. height: math.unit(25, "feet")
  37535. },
  37536. ]
  37537. ))
  37538. characterMakers.push(() => makeCharacter(
  37539. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  37540. {
  37541. side: {
  37542. height: math.unit(7 + 5/12, "feet"),
  37543. weight: math.unit(2800, "lb"),
  37544. name: "Side",
  37545. image: {
  37546. source: "./media/characters/haloren/side.svg",
  37547. extra: 1793/409,
  37548. bottom: 59/1852
  37549. }
  37550. },
  37551. frontPaw: {
  37552. height: math.unit(2.36, "feet"),
  37553. name: "Front paw",
  37554. image: {
  37555. source: "./media/characters/haloren/front-paw.svg"
  37556. }
  37557. },
  37558. hindPaw: {
  37559. height: math.unit(3.18, "feet"),
  37560. name: "Hind paw",
  37561. image: {
  37562. source: "./media/characters/haloren/hind-paw.svg"
  37563. }
  37564. },
  37565. maw: {
  37566. height: math.unit(5.05, "feet"),
  37567. name: "Maw",
  37568. image: {
  37569. source: "./media/characters/haloren/maw.svg"
  37570. }
  37571. },
  37572. dick: {
  37573. height: math.unit(2.90, "feet"),
  37574. name: "Dick",
  37575. image: {
  37576. source: "./media/characters/haloren/dick.svg"
  37577. }
  37578. },
  37579. },
  37580. [
  37581. {
  37582. name: "Normal",
  37583. height: math.unit(7 + 5/12, "feet"),
  37584. default: true
  37585. },
  37586. {
  37587. name: "Enhanced",
  37588. height: math.unit(14 + 3/12, "feet")
  37589. },
  37590. ]
  37591. ))
  37592. characterMakers.push(() => makeCharacter(
  37593. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  37594. {
  37595. front: {
  37596. height: math.unit(171, "cm"),
  37597. name: "Front",
  37598. image: {
  37599. source: "./media/characters/kimmy/front.svg",
  37600. extra: 1491/1435,
  37601. bottom: 53/1544
  37602. }
  37603. },
  37604. },
  37605. [
  37606. {
  37607. name: "Small",
  37608. height: math.unit(9, "cm")
  37609. },
  37610. {
  37611. name: "Normal",
  37612. height: math.unit(171, "cm"),
  37613. default: true
  37614. },
  37615. ]
  37616. ))
  37617. characterMakers.push(() => makeCharacter(
  37618. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  37619. {
  37620. front: {
  37621. height: math.unit(8, "feet"),
  37622. weight: math.unit(300, "lb"),
  37623. name: "Front",
  37624. image: {
  37625. source: "./media/characters/galeboomer/front.svg",
  37626. extra: 4651/4415,
  37627. bottom: 162/4813
  37628. }
  37629. },
  37630. back: {
  37631. height: math.unit(8, "feet"),
  37632. weight: math.unit(300, "lb"),
  37633. name: "Back",
  37634. image: {
  37635. source: "./media/characters/galeboomer/back.svg",
  37636. extra: 4544/4314,
  37637. bottom: 16/4560
  37638. }
  37639. },
  37640. frontAlt: {
  37641. height: math.unit(8, "feet"),
  37642. weight: math.unit(300, "lb"),
  37643. name: "Front (Alt)",
  37644. image: {
  37645. source: "./media/characters/galeboomer/front-alt.svg",
  37646. extra: 4458/4228,
  37647. bottom: 68/4526
  37648. }
  37649. },
  37650. maw: {
  37651. height: math.unit(1.2, "feet"),
  37652. name: "Maw",
  37653. image: {
  37654. source: "./media/characters/galeboomer/maw.svg"
  37655. }
  37656. },
  37657. },
  37658. [
  37659. {
  37660. name: "Normal",
  37661. height: math.unit(8, "feet"),
  37662. default: true
  37663. },
  37664. ]
  37665. ))
  37666. characterMakers.push(() => makeCharacter(
  37667. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  37668. {
  37669. front: {
  37670. height: math.unit(5 + 9/12, "feet"),
  37671. weight: math.unit(120, "lb"),
  37672. name: "Front",
  37673. image: {
  37674. source: "./media/characters/chyr/front.svg",
  37675. extra: 1323/1254,
  37676. bottom: 63/1386
  37677. }
  37678. },
  37679. back: {
  37680. height: math.unit(5 + 9/12, "feet"),
  37681. weight: math.unit(120, "lb"),
  37682. name: "Back",
  37683. image: {
  37684. source: "./media/characters/chyr/back.svg",
  37685. extra: 1323/1252,
  37686. bottom: 48/1371
  37687. }
  37688. },
  37689. },
  37690. [
  37691. {
  37692. name: "Normal",
  37693. height: math.unit(5 + 9/12, "feet"),
  37694. default: true
  37695. },
  37696. ]
  37697. ))
  37698. characterMakers.push(() => makeCharacter(
  37699. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  37700. {
  37701. front: {
  37702. height: math.unit(7, "feet"),
  37703. weight: math.unit(310, "lb"),
  37704. name: "Front",
  37705. image: {
  37706. source: "./media/characters/solarus/front.svg",
  37707. extra: 2415/2021,
  37708. bottom: 103/2518
  37709. }
  37710. },
  37711. back: {
  37712. height: math.unit(7, "feet"),
  37713. weight: math.unit(310, "lb"),
  37714. name: "Back",
  37715. image: {
  37716. source: "./media/characters/solarus/back.svg",
  37717. extra: 2463/2089,
  37718. bottom: 79/2542
  37719. }
  37720. },
  37721. },
  37722. [
  37723. {
  37724. name: "Normal",
  37725. height: math.unit(7, "feet"),
  37726. default: true
  37727. },
  37728. ]
  37729. ))
  37730. characterMakers.push(() => makeCharacter(
  37731. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  37732. {
  37733. front: {
  37734. height: math.unit(16, "feet"),
  37735. name: "Front",
  37736. image: {
  37737. source: "./media/characters/mutsuju-koizaemon/front.svg",
  37738. extra: 1844/1780,
  37739. bottom: 58/1902
  37740. }
  37741. },
  37742. winterCoat: {
  37743. height: math.unit(16, "feet"),
  37744. name: "Winter Coat",
  37745. image: {
  37746. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  37747. extra: 1807/1775,
  37748. bottom: 69/1876
  37749. }
  37750. },
  37751. },
  37752. [
  37753. {
  37754. name: "Normal",
  37755. height: math.unit(16, "feet"),
  37756. default: true
  37757. },
  37758. {
  37759. name: "Chicago Size",
  37760. height: math.unit(560, "feet")
  37761. },
  37762. ]
  37763. ))
  37764. characterMakers.push(() => makeCharacter(
  37765. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  37766. {
  37767. front: {
  37768. height: math.unit(11 + 6/12, "feet"),
  37769. weight: math.unit(1366, "lb"),
  37770. name: "Front",
  37771. image: {
  37772. source: "./media/characters/lexor/front.svg",
  37773. extra: 1560/1481,
  37774. bottom: 211/1771
  37775. }
  37776. },
  37777. back: {
  37778. height: math.unit(11 + 6/12, "feet"),
  37779. weight: math.unit(1366, "lb"),
  37780. name: "Back",
  37781. image: {
  37782. source: "./media/characters/lexor/back.svg",
  37783. extra: 1614/1533,
  37784. bottom: 76/1690
  37785. }
  37786. },
  37787. maw: {
  37788. height: math.unit(3, "feet"),
  37789. name: "Maw",
  37790. image: {
  37791. source: "./media/characters/lexor/maw.svg"
  37792. }
  37793. },
  37794. dick: {
  37795. height: math.unit(2.59, "feet"),
  37796. name: "Dick",
  37797. image: {
  37798. source: "./media/characters/lexor/dick.svg"
  37799. }
  37800. },
  37801. },
  37802. [
  37803. {
  37804. name: "Normal",
  37805. height: math.unit(11 + 6/12, "feet"),
  37806. default: true
  37807. },
  37808. ]
  37809. ))
  37810. characterMakers.push(() => makeCharacter(
  37811. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  37812. {
  37813. front: {
  37814. height: math.unit(5 + 8/12, "feet"),
  37815. name: "Front",
  37816. image: {
  37817. source: "./media/characters/magnum/front.svg",
  37818. extra: 942/855,
  37819. bottom: 26/968
  37820. }
  37821. },
  37822. },
  37823. [
  37824. {
  37825. name: "Normal",
  37826. height: math.unit(5 + 8/12, "feet"),
  37827. default: true
  37828. },
  37829. ]
  37830. ))
  37831. characterMakers.push(() => makeCharacter(
  37832. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  37833. {
  37834. front: {
  37835. height: math.unit(18 + 4/12, "feet"),
  37836. weight: math.unit(1500, "kg"),
  37837. name: "Front",
  37838. image: {
  37839. source: "./media/characters/solas-sharpsman/front.svg",
  37840. extra: 1698/1589,
  37841. bottom: 0/1698
  37842. }
  37843. },
  37844. },
  37845. [
  37846. {
  37847. name: "Normal",
  37848. height: math.unit(18 + 4/12, "feet"),
  37849. default: true
  37850. },
  37851. ]
  37852. ))
  37853. characterMakers.push(() => makeCharacter(
  37854. { name: "October", species: ["tiger"], tags: ["anthro"] },
  37855. {
  37856. front: {
  37857. height: math.unit(5 + 5/12, "feet"),
  37858. weight: math.unit(180, "lb"),
  37859. name: "Front",
  37860. image: {
  37861. source: "./media/characters/october/front.svg",
  37862. extra: 1800/1650,
  37863. bottom: 0/1800
  37864. }
  37865. },
  37866. frontNsfw: {
  37867. height: math.unit(5 + 5/12, "feet"),
  37868. weight: math.unit(180, "lb"),
  37869. name: "Front (NSFW)",
  37870. image: {
  37871. source: "./media/characters/october/front-nsfw.svg",
  37872. extra: 1392/1307,
  37873. bottom: 42/1434
  37874. }
  37875. },
  37876. },
  37877. [
  37878. {
  37879. name: "Normal",
  37880. height: math.unit(5 + 5/12, "feet"),
  37881. default: true
  37882. },
  37883. ]
  37884. ))
  37885. characterMakers.push(() => makeCharacter(
  37886. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  37887. {
  37888. front: {
  37889. height: math.unit(8 + 6/12, "feet"),
  37890. name: "Front",
  37891. image: {
  37892. source: "./media/characters/essynkardi/front.svg",
  37893. extra: 1914/1846,
  37894. bottom: 22/1936
  37895. }
  37896. },
  37897. },
  37898. [
  37899. {
  37900. name: "Normal",
  37901. height: math.unit(8 + 6/12, "feet"),
  37902. default: true
  37903. },
  37904. ]
  37905. ))
  37906. characterMakers.push(() => makeCharacter(
  37907. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  37908. {
  37909. front: {
  37910. height: math.unit(6 + 6/12, "feet"),
  37911. weight: math.unit(7, "lb"),
  37912. name: "Front",
  37913. image: {
  37914. source: "./media/characters/icky/front.svg",
  37915. extra: 813/782,
  37916. bottom: 66/879
  37917. }
  37918. },
  37919. back: {
  37920. height: math.unit(6 + 6/12, "feet"),
  37921. weight: math.unit(7, "lb"),
  37922. name: "Back",
  37923. image: {
  37924. source: "./media/characters/icky/back.svg",
  37925. extra: 754/735,
  37926. bottom: 56/810
  37927. }
  37928. },
  37929. },
  37930. [
  37931. {
  37932. name: "Normal",
  37933. height: math.unit(6 + 6/12, "feet"),
  37934. default: true
  37935. },
  37936. ]
  37937. ))
  37938. characterMakers.push(() => makeCharacter(
  37939. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  37940. {
  37941. front: {
  37942. height: math.unit(15, "feet"),
  37943. name: "Front",
  37944. image: {
  37945. source: "./media/characters/rojas/front.svg",
  37946. extra: 1462/1408,
  37947. bottom: 95/1557
  37948. }
  37949. },
  37950. back: {
  37951. height: math.unit(15, "feet"),
  37952. name: "Back",
  37953. image: {
  37954. source: "./media/characters/rojas/back.svg",
  37955. extra: 1023/954,
  37956. bottom: 28/1051
  37957. }
  37958. },
  37959. },
  37960. [
  37961. {
  37962. name: "Normal",
  37963. height: math.unit(15, "feet"),
  37964. default: true
  37965. },
  37966. ]
  37967. ))
  37968. characterMakers.push(() => makeCharacter(
  37969. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  37970. {
  37971. frontHuman: {
  37972. height: math.unit(5 + 7/12, "feet"),
  37973. name: "Front (Human)",
  37974. image: {
  37975. source: "./media/characters/alek-dryagan/front-human.svg",
  37976. extra: 1687/1667,
  37977. bottom: 69/1756
  37978. }
  37979. },
  37980. backHuman: {
  37981. height: math.unit(5 + 7/12, "feet"),
  37982. name: "Back (Human)",
  37983. image: {
  37984. source: "./media/characters/alek-dryagan/back-human.svg",
  37985. extra: 1670/1649,
  37986. bottom: 65/1735
  37987. }
  37988. },
  37989. frontDemi: {
  37990. height: math.unit(65, "feet"),
  37991. name: "Front (Demi)",
  37992. image: {
  37993. source: "./media/characters/alek-dryagan/front-demi.svg",
  37994. extra: 1669/1642,
  37995. bottom: 49/1718
  37996. }
  37997. },
  37998. backDemi: {
  37999. height: math.unit(65, "feet"),
  38000. name: "Back (Demi)",
  38001. image: {
  38002. source: "./media/characters/alek-dryagan/back-demi.svg",
  38003. extra: 1658/1637,
  38004. bottom: 40/1698
  38005. }
  38006. },
  38007. mawHuman: {
  38008. height: math.unit(0.3, "feet"),
  38009. name: "Maw (Human)",
  38010. image: {
  38011. source: "./media/characters/alek-dryagan/maw-human.svg"
  38012. }
  38013. },
  38014. mawDemi: {
  38015. height: math.unit(3.8, "feet"),
  38016. name: "Maw (Demi)",
  38017. image: {
  38018. source: "./media/characters/alek-dryagan/maw-demi.svg"
  38019. }
  38020. },
  38021. },
  38022. [
  38023. {
  38024. name: "Normal",
  38025. height: math.unit(5 + 7/12, "feet"),
  38026. default: true
  38027. },
  38028. ]
  38029. ))
  38030. characterMakers.push(() => makeCharacter(
  38031. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  38032. {
  38033. frontHuman: {
  38034. height: math.unit(5 + 2/12, "feet"),
  38035. name: "Front (Human)",
  38036. image: {
  38037. source: "./media/characters/gen/front-human.svg",
  38038. extra: 1627/1538,
  38039. bottom: 71/1698
  38040. }
  38041. },
  38042. backHuman: {
  38043. height: math.unit(5 + 2/12, "feet"),
  38044. name: "Back (Human)",
  38045. image: {
  38046. source: "./media/characters/gen/back-human.svg",
  38047. extra: 1638/1548,
  38048. bottom: 69/1707
  38049. }
  38050. },
  38051. frontDemi: {
  38052. height: math.unit(5 + 2/12, "feet"),
  38053. name: "Front (Demi)",
  38054. image: {
  38055. source: "./media/characters/gen/front-demi.svg",
  38056. extra: 1627/1538,
  38057. bottom: 71/1698
  38058. }
  38059. },
  38060. backDemi: {
  38061. height: math.unit(5 + 2/12, "feet"),
  38062. name: "Back (Demi)",
  38063. image: {
  38064. source: "./media/characters/gen/back-demi.svg",
  38065. extra: 1638/1548,
  38066. bottom: 69/1707
  38067. }
  38068. },
  38069. },
  38070. [
  38071. {
  38072. name: "Normal",
  38073. height: math.unit(5 + 2/12, "feet"),
  38074. default: true
  38075. },
  38076. ]
  38077. ))
  38078. characterMakers.push(() => makeCharacter(
  38079. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  38080. {
  38081. frontImp: {
  38082. height: math.unit(1 + 11/12, "feet"),
  38083. name: "Front (Imp)",
  38084. image: {
  38085. source: "./media/characters/max-kobold/front-imp.svg",
  38086. extra: 1238/1134,
  38087. bottom: 81/1319
  38088. }
  38089. },
  38090. backImp: {
  38091. height: math.unit(1 + 11/12, "feet"),
  38092. name: "Back (Imp)",
  38093. image: {
  38094. source: "./media/characters/max-kobold/back-imp.svg",
  38095. extra: 1334/1175,
  38096. bottom: 34/1368
  38097. }
  38098. },
  38099. frontDemi: {
  38100. height: math.unit(5 + 9/12, "feet"),
  38101. name: "Front (Demi)",
  38102. image: {
  38103. source: "./media/characters/max-kobold/front-demi.svg",
  38104. extra: 1715/1685,
  38105. bottom: 54/1769
  38106. }
  38107. },
  38108. backDemi: {
  38109. height: math.unit(5 + 9/12, "feet"),
  38110. name: "Back (Demi)",
  38111. image: {
  38112. source: "./media/characters/max-kobold/back-demi.svg",
  38113. extra: 1752/1729,
  38114. bottom: 41/1793
  38115. }
  38116. },
  38117. handImp: {
  38118. height: math.unit(0.45, "feet"),
  38119. name: "Hand (Imp)",
  38120. image: {
  38121. source: "./media/characters/max-kobold/hand.svg"
  38122. }
  38123. },
  38124. pawImp: {
  38125. height: math.unit(0.46, "feet"),
  38126. name: "Paw (Imp)",
  38127. image: {
  38128. source: "./media/characters/max-kobold/paw.svg"
  38129. }
  38130. },
  38131. handDemi: {
  38132. height: math.unit(0.80, "feet"),
  38133. name: "Hand (Demi)",
  38134. image: {
  38135. source: "./media/characters/max-kobold/hand.svg"
  38136. }
  38137. },
  38138. pawDemi: {
  38139. height: math.unit(1.1, "feet"),
  38140. name: "Paw (Demi)",
  38141. image: {
  38142. source: "./media/characters/max-kobold/paw.svg"
  38143. }
  38144. },
  38145. headImp: {
  38146. height: math.unit(1.33, "feet"),
  38147. name: "Head (Imp)",
  38148. image: {
  38149. source: "./media/characters/max-kobold/head-imp.svg"
  38150. }
  38151. },
  38152. mawImp: {
  38153. height: math.unit(0.75, "feet"),
  38154. name: "Maw (Imp)",
  38155. image: {
  38156. source: "./media/characters/max-kobold/maw-imp.svg"
  38157. }
  38158. },
  38159. mawDemi: {
  38160. height: math.unit(0.42, "feet"),
  38161. name: "Maw (Demi)",
  38162. image: {
  38163. source: "./media/characters/max-kobold/maw-demi.svg"
  38164. }
  38165. },
  38166. },
  38167. [
  38168. {
  38169. name: "Normal",
  38170. height: math.unit(1 + 11/12, "feet"),
  38171. default: true
  38172. },
  38173. ]
  38174. ))
  38175. characterMakers.push(() => makeCharacter(
  38176. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  38177. {
  38178. front: {
  38179. height: math.unit(7 + 5/12, "feet"),
  38180. name: "Front",
  38181. image: {
  38182. source: "./media/characters/carbon/front.svg",
  38183. extra: 1754/1689,
  38184. bottom: 65/1819
  38185. }
  38186. },
  38187. back: {
  38188. height: math.unit(7 + 5/12, "feet"),
  38189. name: "Back",
  38190. image: {
  38191. source: "./media/characters/carbon/back.svg",
  38192. extra: 1762/1695,
  38193. bottom: 24/1786
  38194. }
  38195. },
  38196. frontGigantamax: {
  38197. height: math.unit(150, "feet"),
  38198. name: "Front (Gigantamax)",
  38199. image: {
  38200. source: "./media/characters/carbon/front-gigantamax.svg",
  38201. extra: 1826/1669,
  38202. bottom: 59/1885
  38203. }
  38204. },
  38205. backGigantamax: {
  38206. height: math.unit(150, "feet"),
  38207. name: "Back (Gigantamax)",
  38208. image: {
  38209. source: "./media/characters/carbon/back-gigantamax.svg",
  38210. extra: 1796/1653,
  38211. bottom: 53/1849
  38212. }
  38213. },
  38214. maw: {
  38215. height: math.unit(0.48, "feet"),
  38216. name: "Maw",
  38217. image: {
  38218. source: "./media/characters/carbon/maw.svg"
  38219. }
  38220. },
  38221. mawGigantamax: {
  38222. height: math.unit(7.5, "feet"),
  38223. name: "Maw (Gigantamax)",
  38224. image: {
  38225. source: "./media/characters/carbon/maw-gigantamax.svg"
  38226. }
  38227. },
  38228. },
  38229. [
  38230. {
  38231. name: "Normal",
  38232. height: math.unit(7 + 5/12, "feet"),
  38233. default: true
  38234. },
  38235. ]
  38236. ))
  38237. characterMakers.push(() => makeCharacter(
  38238. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  38239. {
  38240. front: {
  38241. height: math.unit(6, "feet"),
  38242. name: "Front",
  38243. image: {
  38244. source: "./media/characters/maverick/front.svg",
  38245. extra: 1672/1661,
  38246. bottom: 85/1757
  38247. }
  38248. },
  38249. back: {
  38250. height: math.unit(6, "feet"),
  38251. name: "Back",
  38252. image: {
  38253. source: "./media/characters/maverick/back.svg",
  38254. extra: 1642/1631,
  38255. bottom: 38/1680
  38256. }
  38257. },
  38258. },
  38259. [
  38260. {
  38261. name: "Normal",
  38262. height: math.unit(6, "feet"),
  38263. default: true
  38264. },
  38265. ]
  38266. ))
  38267. characterMakers.push(() => makeCharacter(
  38268. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  38269. {
  38270. front: {
  38271. height: math.unit(15, "feet"),
  38272. weight: math.unit(615, "lb"),
  38273. name: "Front",
  38274. image: {
  38275. source: "./media/characters/grockle/front.svg",
  38276. extra: 1535/1427,
  38277. bottom: 56/1591
  38278. }
  38279. },
  38280. },
  38281. [
  38282. {
  38283. name: "Normal",
  38284. height: math.unit(15, "feet"),
  38285. default: true
  38286. },
  38287. {
  38288. name: "Large",
  38289. height: math.unit(150, "feet")
  38290. },
  38291. {
  38292. name: "Macro",
  38293. height: math.unit(1876, "feet")
  38294. },
  38295. {
  38296. name: "Mega Macro",
  38297. height: math.unit(121940, "feet")
  38298. },
  38299. {
  38300. name: "Giga Macro",
  38301. height: math.unit(750, "km")
  38302. },
  38303. {
  38304. name: "Tera Macro",
  38305. height: math.unit(750000, "km")
  38306. },
  38307. {
  38308. name: "Galactic",
  38309. height: math.unit(1.4e5, "km")
  38310. },
  38311. {
  38312. name: "Godlike",
  38313. height: math.unit(9.8e280, "galaxies")
  38314. },
  38315. ]
  38316. ))
  38317. characterMakers.push(() => makeCharacter(
  38318. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  38319. {
  38320. front: {
  38321. height: math.unit(11, "meters"),
  38322. weight: math.unit(20, "tonnes"),
  38323. name: "Front",
  38324. image: {
  38325. source: "./media/characters/alistair/front.svg",
  38326. extra: 1265/1009,
  38327. bottom: 93/1358
  38328. }
  38329. },
  38330. },
  38331. [
  38332. {
  38333. name: "Normal",
  38334. height: math.unit(11, "meters"),
  38335. default: true
  38336. },
  38337. ]
  38338. ))
  38339. characterMakers.push(() => makeCharacter(
  38340. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  38341. {
  38342. front: {
  38343. height: math.unit(5 + 8/12, "feet"),
  38344. name: "Front",
  38345. image: {
  38346. source: "./media/characters/haruka/front.svg",
  38347. extra: 2012/1952,
  38348. bottom: 0/2012
  38349. }
  38350. },
  38351. },
  38352. [
  38353. {
  38354. name: "Normal",
  38355. height: math.unit(5 + 8/12, "feet"),
  38356. default: true
  38357. },
  38358. ]
  38359. ))
  38360. characterMakers.push(() => makeCharacter(
  38361. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  38362. {
  38363. back: {
  38364. height: math.unit(9, "feet"),
  38365. name: "Back",
  38366. image: {
  38367. source: "./media/characters/vivian-sylveon/back.svg",
  38368. extra: 1853/1714,
  38369. bottom: 0/1853
  38370. }
  38371. },
  38372. },
  38373. [
  38374. {
  38375. name: "Normal",
  38376. height: math.unit(9, "feet"),
  38377. default: true
  38378. },
  38379. {
  38380. name: "Macro",
  38381. height: math.unit(500, "feet")
  38382. },
  38383. {
  38384. name: "Megamacro",
  38385. height: math.unit(600, "miles")
  38386. },
  38387. {
  38388. name: "Gigamacro",
  38389. height: math.unit(30000, "miles")
  38390. },
  38391. ]
  38392. ))
  38393. characterMakers.push(() => makeCharacter(
  38394. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  38395. {
  38396. anthro: {
  38397. height: math.unit(5 + 10/12, "feet"),
  38398. weight: math.unit(100, "lb"),
  38399. name: "Anthro",
  38400. image: {
  38401. source: "./media/characters/daiki/anthro.svg",
  38402. extra: 1115/1027,
  38403. bottom: 69/1184
  38404. }
  38405. },
  38406. feral: {
  38407. height: math.unit(200, "feet"),
  38408. name: "Feral",
  38409. image: {
  38410. source: "./media/characters/daiki/feral.svg",
  38411. extra: 1256/313,
  38412. bottom: 39/1295
  38413. }
  38414. },
  38415. feralHead: {
  38416. height: math.unit(171, "feet"),
  38417. name: "Feral Head",
  38418. image: {
  38419. source: "./media/characters/daiki/feral-head.svg"
  38420. }
  38421. },
  38422. manaDragon: {
  38423. height: math.unit(170, "meters"),
  38424. name: "Mana-dragon",
  38425. image: {
  38426. source: "./media/characters/daiki/mana-dragon.svg",
  38427. extra: 763/420,
  38428. bottom: 97/860
  38429. }
  38430. },
  38431. },
  38432. [
  38433. {
  38434. name: "Normal",
  38435. height: math.unit(5 + 10/12, "feet"),
  38436. default: true
  38437. },
  38438. ]
  38439. ))
  38440. characterMakers.push(() => makeCharacter(
  38441. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  38442. {
  38443. fullyEquippedFront: {
  38444. height: math.unit(3 + 1/12, "feet"),
  38445. weight: math.unit(24, "lb"),
  38446. name: "Fully Equipped (Front)",
  38447. image: {
  38448. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  38449. extra: 687/605,
  38450. bottom: 18/705
  38451. }
  38452. },
  38453. fullyEquippedBack: {
  38454. height: math.unit(3 + 1/12, "feet"),
  38455. weight: math.unit(24, "lb"),
  38456. name: "Fully Equipped (Back)",
  38457. image: {
  38458. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  38459. extra: 689/590,
  38460. bottom: 18/707
  38461. }
  38462. },
  38463. dailyWear: {
  38464. height: math.unit(3 + 1/12, "feet"),
  38465. weight: math.unit(24, "lb"),
  38466. name: "Daily Wear",
  38467. image: {
  38468. source: "./media/characters/tea-spot/daily-wear.svg",
  38469. extra: 701/620,
  38470. bottom: 21/722
  38471. }
  38472. },
  38473. maidWork: {
  38474. height: math.unit(3 + 1/12, "feet"),
  38475. weight: math.unit(24, "lb"),
  38476. name: "Maid Work",
  38477. image: {
  38478. source: "./media/characters/tea-spot/maid-work.svg",
  38479. extra: 693/609,
  38480. bottom: 15/708
  38481. }
  38482. },
  38483. },
  38484. [
  38485. {
  38486. name: "Normal",
  38487. height: math.unit(3 + 1/12, "feet"),
  38488. default: true
  38489. },
  38490. ]
  38491. ))
  38492. characterMakers.push(() => makeCharacter(
  38493. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  38494. {
  38495. front: {
  38496. height: math.unit(175, "cm"),
  38497. weight: math.unit(75, "kg"),
  38498. name: "Front",
  38499. image: {
  38500. source: "./media/characters/chee/front.svg",
  38501. extra: 1796/1740,
  38502. bottom: 40/1836
  38503. }
  38504. },
  38505. },
  38506. [
  38507. {
  38508. name: "Micro-Micro",
  38509. height: math.unit(1, "nm")
  38510. },
  38511. {
  38512. name: "Micro-erst",
  38513. height: math.unit(1, "micrometer")
  38514. },
  38515. {
  38516. name: "Micro-er",
  38517. height: math.unit(1, "cm")
  38518. },
  38519. {
  38520. name: "Normal",
  38521. height: math.unit(175, "cm"),
  38522. default: true
  38523. },
  38524. {
  38525. name: "Macro",
  38526. height: math.unit(100, "m")
  38527. },
  38528. {
  38529. name: "Macro-er",
  38530. height: math.unit(1, "km")
  38531. },
  38532. {
  38533. name: "Macro-erst",
  38534. height: math.unit(10, "km")
  38535. },
  38536. {
  38537. name: "Macro-Macro",
  38538. height: math.unit(100, "km")
  38539. },
  38540. ]
  38541. ))
  38542. characterMakers.push(() => makeCharacter(
  38543. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  38544. {
  38545. front: {
  38546. height: math.unit(11 + 9/12, "feet"),
  38547. weight: math.unit(935, "lb"),
  38548. name: "Front",
  38549. image: {
  38550. source: "./media/characters/kingsley/front.svg",
  38551. extra: 1803/1674,
  38552. bottom: 127/1930
  38553. }
  38554. },
  38555. frontNude: {
  38556. height: math.unit(11 + 9/12, "feet"),
  38557. weight: math.unit(935, "lb"),
  38558. name: "Front (Nude)",
  38559. image: {
  38560. source: "./media/characters/kingsley/front-nude.svg",
  38561. extra: 1803/1674,
  38562. bottom: 127/1930
  38563. }
  38564. },
  38565. },
  38566. [
  38567. {
  38568. name: "Normal",
  38569. height: math.unit(11 + 9/12, "feet"),
  38570. default: true
  38571. },
  38572. ]
  38573. ))
  38574. characterMakers.push(() => makeCharacter(
  38575. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  38576. {
  38577. side: {
  38578. height: math.unit(9, "feet"),
  38579. name: "Side",
  38580. image: {
  38581. source: "./media/characters/rymel/side.svg",
  38582. extra: 792/469,
  38583. bottom: 121/913
  38584. }
  38585. },
  38586. maw: {
  38587. height: math.unit(2.4, "meters"),
  38588. name: "Maw",
  38589. image: {
  38590. source: "./media/characters/rymel/maw.svg"
  38591. }
  38592. },
  38593. },
  38594. [
  38595. {
  38596. name: "House Drake",
  38597. height: math.unit(2, "feet")
  38598. },
  38599. {
  38600. name: "Reduced",
  38601. height: math.unit(4.5, "feet")
  38602. },
  38603. {
  38604. name: "Normal",
  38605. height: math.unit(9, "feet"),
  38606. default: true
  38607. },
  38608. ]
  38609. ))
  38610. characterMakers.push(() => makeCharacter(
  38611. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  38612. {
  38613. front: {
  38614. height: math.unit(1.74, "meters"),
  38615. weight: math.unit(55, "kg"),
  38616. name: "Front",
  38617. image: {
  38618. source: "./media/characters/rubus/front.svg",
  38619. extra: 1894/1742,
  38620. bottom: 44/1938
  38621. }
  38622. },
  38623. },
  38624. [
  38625. {
  38626. name: "Normal",
  38627. height: math.unit(1.74, "meters"),
  38628. default: true
  38629. },
  38630. ]
  38631. ))
  38632. characterMakers.push(() => makeCharacter(
  38633. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  38634. {
  38635. front: {
  38636. height: math.unit(5 + 2/12, "feet"),
  38637. weight: math.unit(112, "lb"),
  38638. name: "Front",
  38639. image: {
  38640. source: "./media/characters/cassie-kingston/front.svg",
  38641. extra: 1438/1390,
  38642. bottom: 47/1485
  38643. }
  38644. },
  38645. },
  38646. [
  38647. {
  38648. name: "Normal",
  38649. height: math.unit(5 + 2/12, "feet"),
  38650. default: true
  38651. },
  38652. {
  38653. name: "Macro",
  38654. height: math.unit(128, "feet")
  38655. },
  38656. {
  38657. name: "Megamacro",
  38658. height: math.unit(2.56, "miles")
  38659. },
  38660. ]
  38661. ))
  38662. characterMakers.push(() => makeCharacter(
  38663. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  38664. {
  38665. front: {
  38666. height: math.unit(7, "feet"),
  38667. name: "Front",
  38668. image: {
  38669. source: "./media/characters/fox/front.svg",
  38670. extra: 1798/1703,
  38671. bottom: 55/1853
  38672. }
  38673. },
  38674. back: {
  38675. height: math.unit(7, "feet"),
  38676. name: "Back",
  38677. image: {
  38678. source: "./media/characters/fox/back.svg",
  38679. extra: 1748/1649,
  38680. bottom: 32/1780
  38681. }
  38682. },
  38683. head: {
  38684. height: math.unit(1.95, "feet"),
  38685. name: "Head",
  38686. image: {
  38687. source: "./media/characters/fox/head.svg"
  38688. }
  38689. },
  38690. dick: {
  38691. height: math.unit(1.33, "feet"),
  38692. name: "Dick",
  38693. image: {
  38694. source: "./media/characters/fox/dick.svg"
  38695. }
  38696. },
  38697. foot: {
  38698. height: math.unit(1, "feet"),
  38699. name: "Foot",
  38700. image: {
  38701. source: "./media/characters/fox/foot.svg"
  38702. }
  38703. },
  38704. paw: {
  38705. height: math.unit(0.92, "feet"),
  38706. name: "Paw",
  38707. image: {
  38708. source: "./media/characters/fox/paw.svg"
  38709. }
  38710. },
  38711. },
  38712. [
  38713. {
  38714. name: "Small",
  38715. height: math.unit(3, "inches")
  38716. },
  38717. {
  38718. name: "\"Realistic\"",
  38719. height: math.unit(7, "feet")
  38720. },
  38721. {
  38722. name: "Normal",
  38723. height: math.unit(150, "feet"),
  38724. default: true
  38725. },
  38726. {
  38727. name: "BIG",
  38728. height: math.unit(1200, "feet")
  38729. },
  38730. {
  38731. name: "👀",
  38732. height: math.unit(5, "miles")
  38733. },
  38734. {
  38735. name: "👀👀👀",
  38736. height: math.unit(64, "miles")
  38737. },
  38738. ]
  38739. ))
  38740. characterMakers.push(() => makeCharacter(
  38741. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  38742. {
  38743. front: {
  38744. height: math.unit(625, "feet"),
  38745. name: "Front",
  38746. image: {
  38747. source: "./media/characters/asonja-rossa/front.svg",
  38748. extra: 1833/1686,
  38749. bottom: 24/1857
  38750. }
  38751. },
  38752. back: {
  38753. height: math.unit(625, "feet"),
  38754. name: "Back",
  38755. image: {
  38756. source: "./media/characters/asonja-rossa/back.svg",
  38757. extra: 1852/1753,
  38758. bottom: 26/1878
  38759. }
  38760. },
  38761. },
  38762. [
  38763. {
  38764. name: "Macro",
  38765. height: math.unit(625, "feet"),
  38766. default: true
  38767. },
  38768. ]
  38769. ))
  38770. characterMakers.push(() => makeCharacter(
  38771. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  38772. {
  38773. side: {
  38774. height: math.unit(8, "feet"),
  38775. name: "Side",
  38776. image: {
  38777. source: "./media/characters/rezukii/side.svg",
  38778. extra: 979/542,
  38779. bottom: 87/1066
  38780. }
  38781. },
  38782. sitting: {
  38783. height: math.unit(14.6, "feet"),
  38784. name: "Sitting",
  38785. image: {
  38786. source: "./media/characters/rezukii/sitting.svg",
  38787. extra: 1023/813,
  38788. bottom: 45/1068
  38789. }
  38790. },
  38791. },
  38792. [
  38793. {
  38794. name: "Tiny",
  38795. height: math.unit(2, "feet")
  38796. },
  38797. {
  38798. name: "Smol",
  38799. height: math.unit(4, "feet")
  38800. },
  38801. {
  38802. name: "Normal",
  38803. height: math.unit(8, "feet"),
  38804. default: true
  38805. },
  38806. {
  38807. name: "Big",
  38808. height: math.unit(12, "feet")
  38809. },
  38810. {
  38811. name: "Macro",
  38812. height: math.unit(30, "feet")
  38813. },
  38814. ]
  38815. ))
  38816. characterMakers.push(() => makeCharacter(
  38817. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  38818. {
  38819. front: {
  38820. height: math.unit(14, "feet"),
  38821. weight: math.unit(9.5, "tonnes"),
  38822. name: "Front",
  38823. image: {
  38824. source: "./media/characters/dawnheart/front.svg",
  38825. extra: 2792/2675,
  38826. bottom: 64/2856
  38827. }
  38828. },
  38829. },
  38830. [
  38831. {
  38832. name: "Normal",
  38833. height: math.unit(14, "feet"),
  38834. default: true
  38835. },
  38836. ]
  38837. ))
  38838. characterMakers.push(() => makeCharacter(
  38839. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  38840. {
  38841. front: {
  38842. height: math.unit(1.7, "m"),
  38843. name: "Front",
  38844. image: {
  38845. source: "./media/characters/gladi/front.svg",
  38846. extra: 1460/1362,
  38847. bottom: 19/1479
  38848. }
  38849. },
  38850. back: {
  38851. height: math.unit(1.7, "m"),
  38852. name: "Back",
  38853. image: {
  38854. source: "./media/characters/gladi/back.svg",
  38855. extra: 1459/1357,
  38856. bottom: 12/1471
  38857. }
  38858. },
  38859. feral: {
  38860. height: math.unit(2.05, "m"),
  38861. name: "Feral",
  38862. image: {
  38863. source: "./media/characters/gladi/feral.svg",
  38864. extra: 821/557,
  38865. bottom: 91/912
  38866. }
  38867. },
  38868. },
  38869. [
  38870. {
  38871. name: "Shortest",
  38872. height: math.unit(70, "cm")
  38873. },
  38874. {
  38875. name: "Normal",
  38876. height: math.unit(1.7, "m")
  38877. },
  38878. {
  38879. name: "Macro",
  38880. height: math.unit(10, "m"),
  38881. default: true
  38882. },
  38883. {
  38884. name: "Tallest",
  38885. height: math.unit(200, "m")
  38886. },
  38887. ]
  38888. ))
  38889. characterMakers.push(() => makeCharacter(
  38890. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  38891. {
  38892. front: {
  38893. height: math.unit(5 + 7/12, "feet"),
  38894. weight: math.unit(2, "tons"),
  38895. name: "Front",
  38896. image: {
  38897. source: "./media/characters/erdno/front.svg",
  38898. extra: 1234/1129,
  38899. bottom: 35/1269
  38900. }
  38901. },
  38902. angled: {
  38903. height: math.unit(5 + 7/12, "feet"),
  38904. weight: math.unit(2, "tons"),
  38905. name: "Angled",
  38906. image: {
  38907. source: "./media/characters/erdno/angled.svg",
  38908. extra: 1185/1139,
  38909. bottom: 36/1221
  38910. }
  38911. },
  38912. side: {
  38913. height: math.unit(5 + 7/12, "feet"),
  38914. weight: math.unit(2, "tons"),
  38915. name: "Side",
  38916. image: {
  38917. source: "./media/characters/erdno/side.svg",
  38918. extra: 1191/1144,
  38919. bottom: 40/1231
  38920. }
  38921. },
  38922. back: {
  38923. height: math.unit(5 + 7/12, "feet"),
  38924. weight: math.unit(2, "tons"),
  38925. name: "Back",
  38926. image: {
  38927. source: "./media/characters/erdno/back.svg",
  38928. extra: 1202/1146,
  38929. bottom: 17/1219
  38930. }
  38931. },
  38932. frontNsfw: {
  38933. height: math.unit(5 + 7/12, "feet"),
  38934. weight: math.unit(2, "tons"),
  38935. name: "Front (NSFW)",
  38936. image: {
  38937. source: "./media/characters/erdno/front-nsfw.svg",
  38938. extra: 1234/1129,
  38939. bottom: 35/1269
  38940. }
  38941. },
  38942. angledNsfw: {
  38943. height: math.unit(5 + 7/12, "feet"),
  38944. weight: math.unit(2, "tons"),
  38945. name: "Angled (NSFW)",
  38946. image: {
  38947. source: "./media/characters/erdno/angled-nsfw.svg",
  38948. extra: 1185/1139,
  38949. bottom: 36/1221
  38950. }
  38951. },
  38952. sideNsfw: {
  38953. height: math.unit(5 + 7/12, "feet"),
  38954. weight: math.unit(2, "tons"),
  38955. name: "Side (NSFW)",
  38956. image: {
  38957. source: "./media/characters/erdno/side-nsfw.svg",
  38958. extra: 1191/1144,
  38959. bottom: 40/1231
  38960. }
  38961. },
  38962. backNsfw: {
  38963. height: math.unit(5 + 7/12, "feet"),
  38964. weight: math.unit(2, "tons"),
  38965. name: "Back (NSFW)",
  38966. image: {
  38967. source: "./media/characters/erdno/back-nsfw.svg",
  38968. extra: 1202/1146,
  38969. bottom: 17/1219
  38970. }
  38971. },
  38972. frontHyper: {
  38973. height: math.unit(5 + 7/12, "feet"),
  38974. weight: math.unit(2, "tons"),
  38975. name: "Front (Hyper)",
  38976. image: {
  38977. source: "./media/characters/erdno/front-hyper.svg",
  38978. extra: 1298/1136,
  38979. bottom: 35/1333
  38980. }
  38981. },
  38982. },
  38983. [
  38984. {
  38985. name: "Normal",
  38986. height: math.unit(5 + 7/12, "feet"),
  38987. default: true
  38988. },
  38989. {
  38990. name: "Big",
  38991. height: math.unit(5.7, "meters")
  38992. },
  38993. {
  38994. name: "Macro",
  38995. height: math.unit(5.7, "kilometers")
  38996. },
  38997. {
  38998. name: "Megamacro",
  38999. height: math.unit(5.7, "earths")
  39000. },
  39001. ]
  39002. ))
  39003. characterMakers.push(() => makeCharacter(
  39004. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  39005. {
  39006. front: {
  39007. height: math.unit(5 + 10/12, "feet"),
  39008. weight: math.unit(150, "lb"),
  39009. name: "Front",
  39010. image: {
  39011. source: "./media/characters/jamie/front.svg",
  39012. extra: 1908/1768,
  39013. bottom: 19/1927
  39014. }
  39015. },
  39016. },
  39017. [
  39018. {
  39019. name: "Minimum",
  39020. height: math.unit(2, "cm")
  39021. },
  39022. {
  39023. name: "Micro",
  39024. height: math.unit(3, "inches")
  39025. },
  39026. {
  39027. name: "Normal",
  39028. height: math.unit(5 + 10/12, "feet"),
  39029. default: true
  39030. },
  39031. {
  39032. name: "Macro",
  39033. height: math.unit(150, "feet")
  39034. },
  39035. {
  39036. name: "Megamacro",
  39037. height: math.unit(10000, "m")
  39038. },
  39039. ]
  39040. ))
  39041. characterMakers.push(() => makeCharacter(
  39042. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  39043. {
  39044. front: {
  39045. height: math.unit(2, "meters"),
  39046. weight: math.unit(100, "kg"),
  39047. name: "Front",
  39048. image: {
  39049. source: "./media/characters/shiron/front.svg",
  39050. extra: 2103/1985,
  39051. bottom: 98/2201
  39052. }
  39053. },
  39054. back: {
  39055. height: math.unit(2, "meters"),
  39056. weight: math.unit(100, "kg"),
  39057. name: "Back",
  39058. image: {
  39059. source: "./media/characters/shiron/back.svg",
  39060. extra: 2110/2015,
  39061. bottom: 89/2199
  39062. }
  39063. },
  39064. hand: {
  39065. height: math.unit(0.96, "feet"),
  39066. name: "Hand",
  39067. image: {
  39068. source: "./media/characters/shiron/hand.svg"
  39069. }
  39070. },
  39071. foot: {
  39072. height: math.unit(1.464, "feet"),
  39073. name: "Foot",
  39074. image: {
  39075. source: "./media/characters/shiron/foot.svg"
  39076. }
  39077. },
  39078. },
  39079. [
  39080. {
  39081. name: "Normal",
  39082. height: math.unit(2, "meters")
  39083. },
  39084. {
  39085. name: "Macro",
  39086. height: math.unit(500, "meters"),
  39087. default: true
  39088. },
  39089. {
  39090. name: "Megamacro",
  39091. height: math.unit(20, "km")
  39092. },
  39093. ]
  39094. ))
  39095. characterMakers.push(() => makeCharacter(
  39096. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  39097. {
  39098. front: {
  39099. height: math.unit(6, "feet"),
  39100. name: "Front",
  39101. image: {
  39102. source: "./media/characters/sam/front.svg",
  39103. extra: 849/826,
  39104. bottom: 19/868
  39105. }
  39106. },
  39107. },
  39108. [
  39109. {
  39110. name: "Normal",
  39111. height: math.unit(6, "feet"),
  39112. default: true
  39113. },
  39114. ]
  39115. ))
  39116. characterMakers.push(() => makeCharacter(
  39117. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  39118. {
  39119. front: {
  39120. height: math.unit(8 + 4/12, "feet"),
  39121. weight: math.unit(122, "kg"),
  39122. name: "Front",
  39123. image: {
  39124. source: "./media/characters/namori-kurogawa/front.svg",
  39125. extra: 1894/1576,
  39126. bottom: 34/1928
  39127. }
  39128. },
  39129. },
  39130. [
  39131. {
  39132. name: "Normal",
  39133. height: math.unit(8 + 4/12, "feet"),
  39134. default: true
  39135. },
  39136. ]
  39137. ))
  39138. characterMakers.push(() => makeCharacter(
  39139. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  39140. {
  39141. front: {
  39142. height: math.unit(9, "feet"),
  39143. weight: math.unit(621, "lb"),
  39144. name: "Front",
  39145. image: {
  39146. source: "./media/characters/unmru/front.svg",
  39147. extra: 1853/1747,
  39148. bottom: 73/1926
  39149. }
  39150. },
  39151. side: {
  39152. height: math.unit(9, "feet"),
  39153. weight: math.unit(621, "lb"),
  39154. name: "Side",
  39155. image: {
  39156. source: "./media/characters/unmru/side.svg",
  39157. extra: 1781/1671,
  39158. bottom: 127/1908
  39159. }
  39160. },
  39161. back: {
  39162. height: math.unit(9, "feet"),
  39163. weight: math.unit(621, "lb"),
  39164. name: "Back",
  39165. image: {
  39166. source: "./media/characters/unmru/back.svg",
  39167. extra: 1894/1765,
  39168. bottom: 75/1969
  39169. }
  39170. },
  39171. dick: {
  39172. height: math.unit(3, "feet"),
  39173. weight: math.unit(35, "lb"),
  39174. name: "Dick",
  39175. image: {
  39176. source: "./media/characters/unmru/dick.svg"
  39177. }
  39178. },
  39179. },
  39180. [
  39181. {
  39182. name: "Normal",
  39183. height: math.unit(9, "feet")
  39184. },
  39185. {
  39186. name: "Natural",
  39187. height: math.unit(27, "feet"),
  39188. default: true
  39189. },
  39190. {
  39191. name: "Giant",
  39192. height: math.unit(90, "feet")
  39193. },
  39194. {
  39195. name: "Kaiju",
  39196. height: math.unit(270, "feet")
  39197. },
  39198. {
  39199. name: "Macro",
  39200. height: math.unit(900, "feet")
  39201. },
  39202. {
  39203. name: "Macro+",
  39204. height: math.unit(2700, "feet")
  39205. },
  39206. {
  39207. name: "Megamacro",
  39208. height: math.unit(9000, "feet")
  39209. },
  39210. {
  39211. name: "City-Crushing",
  39212. height: math.unit(27000, "feet")
  39213. },
  39214. {
  39215. name: "Mountain-Mashing",
  39216. height: math.unit(90000, "feet")
  39217. },
  39218. {
  39219. name: "Earth-Eclipsing",
  39220. height: math.unit(2.7e8, "feet")
  39221. },
  39222. {
  39223. name: "Sol-Swallowing",
  39224. height: math.unit(9e10, "feet")
  39225. },
  39226. {
  39227. name: "Majoris-Munching",
  39228. height: math.unit(2.7e13, "feet")
  39229. },
  39230. ]
  39231. ))
  39232. characterMakers.push(() => makeCharacter(
  39233. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  39234. {
  39235. front: {
  39236. height: math.unit(1, "inch"),
  39237. name: "Front",
  39238. image: {
  39239. source: "./media/characters/squeaks-mouse/front.svg",
  39240. extra: 352/308,
  39241. bottom: 25/377
  39242. }
  39243. },
  39244. },
  39245. [
  39246. {
  39247. name: "Micro",
  39248. height: math.unit(1, "inch"),
  39249. default: true
  39250. },
  39251. ]
  39252. ))
  39253. characterMakers.push(() => makeCharacter(
  39254. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  39255. {
  39256. side: {
  39257. height: math.unit(35, "feet"),
  39258. name: "Side",
  39259. image: {
  39260. source: "./media/characters/sayko/side.svg",
  39261. extra: 1697/1021,
  39262. bottom: 82/1779
  39263. }
  39264. },
  39265. head: {
  39266. height: math.unit(16, "feet"),
  39267. name: "Head",
  39268. image: {
  39269. source: "./media/characters/sayko/head.svg"
  39270. }
  39271. },
  39272. forepaw: {
  39273. height: math.unit(7.85, "feet"),
  39274. name: "Forepaw",
  39275. image: {
  39276. source: "./media/characters/sayko/forepaw.svg"
  39277. }
  39278. },
  39279. hindpaw: {
  39280. height: math.unit(8.8, "feet"),
  39281. name: "Hindpaw",
  39282. image: {
  39283. source: "./media/characters/sayko/hindpaw.svg"
  39284. }
  39285. },
  39286. },
  39287. [
  39288. {
  39289. name: "Normal",
  39290. height: math.unit(35, "feet"),
  39291. default: true
  39292. },
  39293. {
  39294. name: "Colossus",
  39295. height: math.unit(100, "meters")
  39296. },
  39297. {
  39298. name: "\"Small\" Deity",
  39299. height: math.unit(1, "km")
  39300. },
  39301. {
  39302. name: "\"Large\" Deity",
  39303. height: math.unit(15, "km")
  39304. },
  39305. ]
  39306. ))
  39307. characterMakers.push(() => makeCharacter(
  39308. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  39309. {
  39310. front: {
  39311. height: math.unit(6, "feet"),
  39312. weight: math.unit(250, "lb"),
  39313. name: "Front",
  39314. image: {
  39315. source: "./media/characters/mukiro/front.svg",
  39316. extra: 1368/1310,
  39317. bottom: 34/1402
  39318. }
  39319. },
  39320. },
  39321. [
  39322. {
  39323. name: "Normal",
  39324. height: math.unit(6, "feet"),
  39325. default: true
  39326. },
  39327. ]
  39328. ))
  39329. characterMakers.push(() => makeCharacter(
  39330. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  39331. {
  39332. front: {
  39333. height: math.unit(12 + 4/12, "feet"),
  39334. name: "Front",
  39335. image: {
  39336. source: "./media/characters/zeph-the-tiger-god/front.svg",
  39337. extra: 1346/1311,
  39338. bottom: 65/1411
  39339. }
  39340. },
  39341. },
  39342. [
  39343. {
  39344. name: "Base",
  39345. height: math.unit(12 + 4/12, "feet"),
  39346. default: true
  39347. },
  39348. {
  39349. name: "Macro",
  39350. height: math.unit(150, "feet")
  39351. },
  39352. {
  39353. name: "Mega",
  39354. height: math.unit(2, "miles")
  39355. },
  39356. {
  39357. name: "Demi God",
  39358. height: math.unit(4, "AU")
  39359. },
  39360. {
  39361. name: "God Size",
  39362. height: math.unit(1, "universe")
  39363. },
  39364. ]
  39365. ))
  39366. characterMakers.push(() => makeCharacter(
  39367. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  39368. {
  39369. front: {
  39370. height: math.unit(3 + 3/12, "feet"),
  39371. weight: math.unit(88, "lb"),
  39372. name: "Front",
  39373. image: {
  39374. source: "./media/characters/trey/front.svg",
  39375. extra: 1815/1509,
  39376. bottom: 60/1875
  39377. }
  39378. },
  39379. },
  39380. [
  39381. {
  39382. name: "Normal",
  39383. height: math.unit(3 + 3/12, "feet"),
  39384. default: true
  39385. },
  39386. ]
  39387. ))
  39388. characterMakers.push(() => makeCharacter(
  39389. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  39390. {
  39391. front: {
  39392. height: math.unit(4, "meters"),
  39393. name: "Front",
  39394. image: {
  39395. source: "./media/characters/adelonda/front.svg",
  39396. extra: 1077/982,
  39397. bottom: 39/1116
  39398. }
  39399. },
  39400. back: {
  39401. height: math.unit(4, "meters"),
  39402. name: "Back",
  39403. image: {
  39404. source: "./media/characters/adelonda/back.svg",
  39405. extra: 1105/1003,
  39406. bottom: 25/1130
  39407. }
  39408. },
  39409. feral: {
  39410. height: math.unit(40/1.5, "meters"),
  39411. name: "Feral",
  39412. image: {
  39413. source: "./media/characters/adelonda/feral.svg",
  39414. extra: 597/271,
  39415. bottom: 387/984
  39416. }
  39417. },
  39418. },
  39419. [
  39420. {
  39421. name: "Normal",
  39422. height: math.unit(4, "meters"),
  39423. default: true
  39424. },
  39425. ]
  39426. ))
  39427. characterMakers.push(() => makeCharacter(
  39428. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  39429. {
  39430. front: {
  39431. height: math.unit(8 + 4/12, "feet"),
  39432. weight: math.unit(670, "lb"),
  39433. name: "Front",
  39434. image: {
  39435. source: "./media/characters/acadiel/front.svg",
  39436. extra: 1901/1595,
  39437. bottom: 142/2043
  39438. }
  39439. },
  39440. },
  39441. [
  39442. {
  39443. name: "Normal",
  39444. height: math.unit(8 + 4/12, "feet"),
  39445. default: true
  39446. },
  39447. {
  39448. name: "Macro",
  39449. height: math.unit(200, "feet")
  39450. },
  39451. ]
  39452. ))
  39453. characterMakers.push(() => makeCharacter(
  39454. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  39455. {
  39456. front: {
  39457. height: math.unit(6 + 2/12, "feet"),
  39458. weight: math.unit(185, "lb"),
  39459. name: "Front",
  39460. image: {
  39461. source: "./media/characters/kayne-ein/front.svg",
  39462. extra: 1780/1560,
  39463. bottom: 81/1861
  39464. }
  39465. },
  39466. },
  39467. [
  39468. {
  39469. name: "Normal",
  39470. height: math.unit(6 + 2/12, "feet"),
  39471. default: true
  39472. },
  39473. {
  39474. name: "Transformation Stage",
  39475. height: math.unit(15, "feet")
  39476. },
  39477. {
  39478. name: "Macro",
  39479. height: math.unit(150, "feet")
  39480. },
  39481. {
  39482. name: "Earth's Shadow",
  39483. height: math.unit(6200, "miles")
  39484. },
  39485. {
  39486. name: "Universal Demon",
  39487. height: math.unit(28e9, "parsecs")
  39488. },
  39489. {
  39490. name: "Multiverse God",
  39491. height: math.unit(3, "multiverses")
  39492. },
  39493. ]
  39494. ))
  39495. characterMakers.push(() => makeCharacter(
  39496. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  39497. {
  39498. front: {
  39499. height: math.unit(5 + 5/12, "feet"),
  39500. name: "Front",
  39501. image: {
  39502. source: "./media/characters/fawn/front.svg",
  39503. extra: 1873/1731,
  39504. bottom: 95/1968
  39505. }
  39506. },
  39507. back: {
  39508. height: math.unit(5 + 5/12, "feet"),
  39509. name: "Back",
  39510. image: {
  39511. source: "./media/characters/fawn/back.svg",
  39512. extra: 1813/1700,
  39513. bottom: 14/1827
  39514. }
  39515. },
  39516. hoof: {
  39517. height: math.unit(1.45, "feet"),
  39518. name: "Hoof",
  39519. image: {
  39520. source: "./media/characters/fawn/hoof.svg"
  39521. }
  39522. },
  39523. },
  39524. [
  39525. {
  39526. name: "Normal",
  39527. height: math.unit(5 + 5/12, "feet"),
  39528. default: true
  39529. },
  39530. ]
  39531. ))
  39532. characterMakers.push(() => makeCharacter(
  39533. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  39534. {
  39535. front: {
  39536. height: math.unit(2 + 5/12, "feet"),
  39537. name: "Front",
  39538. image: {
  39539. source: "./media/characters/orion/front.svg",
  39540. extra: 1366/1304,
  39541. bottom: 43/1409
  39542. }
  39543. },
  39544. paw: {
  39545. height: math.unit(0.52, "feet"),
  39546. name: "Paw",
  39547. image: {
  39548. source: "./media/characters/orion/paw.svg"
  39549. }
  39550. },
  39551. },
  39552. [
  39553. {
  39554. name: "Normal",
  39555. height: math.unit(2 + 5/12, "feet"),
  39556. default: true
  39557. },
  39558. ]
  39559. ))
  39560. characterMakers.push(() => makeCharacter(
  39561. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  39562. {
  39563. front: {
  39564. height: math.unit(5 + 10/12, "feet"),
  39565. name: "Front",
  39566. image: {
  39567. source: "./media/characters/vera/front.svg",
  39568. extra: 1680/1575,
  39569. bottom: 49/1729
  39570. }
  39571. },
  39572. back: {
  39573. height: math.unit(5 + 10/12, "feet"),
  39574. name: "Back",
  39575. image: {
  39576. source: "./media/characters/vera/back.svg",
  39577. extra: 1700/1588,
  39578. bottom: 18/1718
  39579. }
  39580. },
  39581. arcanine: {
  39582. height: math.unit(6 + 8/12, "feet"),
  39583. name: "Arcanine",
  39584. image: {
  39585. source: "./media/characters/vera/arcanine.svg",
  39586. extra: 1590/1511,
  39587. bottom: 71/1661
  39588. }
  39589. },
  39590. maw: {
  39591. height: math.unit(0.82, "feet"),
  39592. name: "Maw",
  39593. image: {
  39594. source: "./media/characters/vera/maw.svg"
  39595. }
  39596. },
  39597. mawArcanine: {
  39598. height: math.unit(0.97, "feet"),
  39599. name: "Maw (Arcanine)",
  39600. image: {
  39601. source: "./media/characters/vera/maw-arcanine.svg"
  39602. }
  39603. },
  39604. paw: {
  39605. height: math.unit(0.75, "feet"),
  39606. name: "Paw",
  39607. image: {
  39608. source: "./media/characters/vera/paw.svg"
  39609. }
  39610. },
  39611. pawprint: {
  39612. height: math.unit(0.52, "feet"),
  39613. name: "Pawprint",
  39614. image: {
  39615. source: "./media/characters/vera/pawprint.svg"
  39616. }
  39617. },
  39618. },
  39619. [
  39620. {
  39621. name: "Normal",
  39622. height: math.unit(5 + 10/12, "feet"),
  39623. default: true
  39624. },
  39625. {
  39626. name: "Macro",
  39627. height: math.unit(75, "feet")
  39628. },
  39629. ]
  39630. ))
  39631. characterMakers.push(() => makeCharacter(
  39632. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  39633. {
  39634. front: {
  39635. height: math.unit(4, "feet"),
  39636. weight: math.unit(40, "lb"),
  39637. name: "Front",
  39638. image: {
  39639. source: "./media/characters/orvan-rabbit/front.svg",
  39640. extra: 1896/1642,
  39641. bottom: 29/1925
  39642. }
  39643. },
  39644. },
  39645. [
  39646. {
  39647. name: "Normal",
  39648. height: math.unit(4, "feet"),
  39649. default: true
  39650. },
  39651. ]
  39652. ))
  39653. characterMakers.push(() => makeCharacter(
  39654. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  39655. {
  39656. front: {
  39657. height: math.unit(6, "feet"),
  39658. weight: math.unit(168, "lb"),
  39659. name: "Front",
  39660. image: {
  39661. source: "./media/characters/lisa/front.svg",
  39662. extra: 2065/1867,
  39663. bottom: 46/2111
  39664. }
  39665. },
  39666. back: {
  39667. height: math.unit(6, "feet"),
  39668. weight: math.unit(168, "lb"),
  39669. name: "Back",
  39670. image: {
  39671. source: "./media/characters/lisa/back.svg",
  39672. extra: 1982/1838,
  39673. bottom: 29/2011
  39674. }
  39675. },
  39676. maw: {
  39677. height: math.unit(0.81, "feet"),
  39678. name: "Maw",
  39679. image: {
  39680. source: "./media/characters/lisa/maw.svg"
  39681. }
  39682. },
  39683. paw: {
  39684. height: math.unit(0.9, "feet"),
  39685. name: "Paw",
  39686. image: {
  39687. source: "./media/characters/lisa/paw.svg"
  39688. }
  39689. },
  39690. caribousune: {
  39691. height: math.unit(7 + 2/12, "feet"),
  39692. weight: math.unit(268, "lb"),
  39693. name: "Caribousune",
  39694. image: {
  39695. source: "./media/characters/lisa/caribousune.svg",
  39696. extra: 1843/1633,
  39697. bottom: 29/1872
  39698. }
  39699. },
  39700. frontCaribousune: {
  39701. height: math.unit(7 + 2/12, "feet"),
  39702. weight: math.unit(268, "lb"),
  39703. name: "Front (Caribousune)",
  39704. image: {
  39705. source: "./media/characters/lisa/front-caribousune.svg",
  39706. extra: 1818/1638,
  39707. bottom: 52/1870
  39708. }
  39709. },
  39710. sideCaribousune: {
  39711. height: math.unit(7 + 2/12, "feet"),
  39712. weight: math.unit(268, "lb"),
  39713. name: "Side (Caribousune)",
  39714. image: {
  39715. source: "./media/characters/lisa/side-caribousune.svg",
  39716. extra: 1851/1635,
  39717. bottom: 16/1867
  39718. }
  39719. },
  39720. backCaribousune: {
  39721. height: math.unit(7 + 2/12, "feet"),
  39722. weight: math.unit(268, "lb"),
  39723. name: "Back (Caribousune)",
  39724. image: {
  39725. source: "./media/characters/lisa/back-caribousune.svg",
  39726. extra: 1801/1604,
  39727. bottom: 44/1845
  39728. }
  39729. },
  39730. caribou: {
  39731. height: math.unit(7 + 2/12, "feet"),
  39732. weight: math.unit(268, "lb"),
  39733. name: "Caribou",
  39734. image: {
  39735. source: "./media/characters/lisa/caribou.svg",
  39736. extra: 1843/1633,
  39737. bottom: 29/1872
  39738. }
  39739. },
  39740. frontCaribou: {
  39741. height: math.unit(7 + 2/12, "feet"),
  39742. weight: math.unit(268, "lb"),
  39743. name: "Front (Caribou)",
  39744. image: {
  39745. source: "./media/characters/lisa/front-caribou.svg",
  39746. extra: 1818/1638,
  39747. bottom: 52/1870
  39748. }
  39749. },
  39750. sideCaribou: {
  39751. height: math.unit(7 + 2/12, "feet"),
  39752. weight: math.unit(268, "lb"),
  39753. name: "Side (Caribou)",
  39754. image: {
  39755. source: "./media/characters/lisa/side-caribou.svg",
  39756. extra: 1851/1635,
  39757. bottom: 16/1867
  39758. }
  39759. },
  39760. backCaribou: {
  39761. height: math.unit(7 + 2/12, "feet"),
  39762. weight: math.unit(268, "lb"),
  39763. name: "Back (Caribou)",
  39764. image: {
  39765. source: "./media/characters/lisa/back-caribou.svg",
  39766. extra: 1801/1604,
  39767. bottom: 44/1845
  39768. }
  39769. },
  39770. mawCaribou: {
  39771. height: math.unit(1.45, "feet"),
  39772. name: "Maw (Caribou)",
  39773. image: {
  39774. source: "./media/characters/lisa/maw-caribou.svg"
  39775. }
  39776. },
  39777. mawCaribousune: {
  39778. height: math.unit(1.45, "feet"),
  39779. name: "Maw (Caribousune)",
  39780. image: {
  39781. source: "./media/characters/lisa/maw-caribousune.svg"
  39782. }
  39783. },
  39784. pawCaribousune: {
  39785. height: math.unit(1.61, "feet"),
  39786. name: "Paw (Caribou)",
  39787. image: {
  39788. source: "./media/characters/lisa/paw-caribousune.svg"
  39789. }
  39790. },
  39791. },
  39792. [
  39793. {
  39794. name: "Normal",
  39795. height: math.unit(6, "feet")
  39796. },
  39797. {
  39798. name: "God Size",
  39799. height: math.unit(72, "feet"),
  39800. default: true
  39801. },
  39802. {
  39803. name: "Towering",
  39804. height: math.unit(288, "feet")
  39805. },
  39806. {
  39807. name: "City Size",
  39808. height: math.unit(48384, "feet")
  39809. },
  39810. {
  39811. name: "Continental",
  39812. height: math.unit(4200, "miles")
  39813. },
  39814. {
  39815. name: "Planet Eater",
  39816. height: math.unit(42, "earths")
  39817. },
  39818. {
  39819. name: "Star Swallower",
  39820. height: math.unit(42, "solarradii")
  39821. },
  39822. {
  39823. name: "System Swallower",
  39824. height: math.unit(84000, "AU")
  39825. },
  39826. {
  39827. name: "Galaxy Gobbler",
  39828. height: math.unit(42, "galaxies")
  39829. },
  39830. {
  39831. name: "Universe Devourer",
  39832. height: math.unit(42, "universes")
  39833. },
  39834. {
  39835. name: "Multiverse Muncher",
  39836. height: math.unit(42, "multiverses")
  39837. },
  39838. ]
  39839. ))
  39840. characterMakers.push(() => makeCharacter(
  39841. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  39842. {
  39843. front: {
  39844. height: math.unit(36, "feet"),
  39845. name: "Front",
  39846. image: {
  39847. source: "./media/characters/shadow-rat/front.svg",
  39848. extra: 1845/1758,
  39849. bottom: 83/1928
  39850. }
  39851. },
  39852. },
  39853. [
  39854. {
  39855. name: "Macro",
  39856. height: math.unit(36, "feet"),
  39857. default: true
  39858. },
  39859. ]
  39860. ))
  39861. characterMakers.push(() => makeCharacter(
  39862. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  39863. {
  39864. side: {
  39865. height: math.unit(8, "feet"),
  39866. weight: math.unit(2630, "lb"),
  39867. name: "Side",
  39868. image: {
  39869. source: "./media/characters/torallia/side.svg",
  39870. extra: 2164/2021,
  39871. bottom: 371/2535
  39872. }
  39873. },
  39874. },
  39875. [
  39876. {
  39877. name: "Mortal Interaction",
  39878. height: math.unit(8, "feet")
  39879. },
  39880. {
  39881. name: "Natural",
  39882. height: math.unit(24, "feet"),
  39883. default: true
  39884. },
  39885. {
  39886. name: "Giant",
  39887. height: math.unit(80, "feet")
  39888. },
  39889. {
  39890. name: "Kaiju",
  39891. height: math.unit(240, "feet")
  39892. },
  39893. {
  39894. name: "Macro",
  39895. height: math.unit(800, "feet")
  39896. },
  39897. {
  39898. name: "Macro+",
  39899. height: math.unit(2400, "feet")
  39900. },
  39901. {
  39902. name: "Macro++",
  39903. height: math.unit(8000, "feet")
  39904. },
  39905. {
  39906. name: "City-Crushing",
  39907. height: math.unit(24000, "feet")
  39908. },
  39909. {
  39910. name: "Mountain-Mashing",
  39911. height: math.unit(80000, "feet")
  39912. },
  39913. {
  39914. name: "District Demolisher",
  39915. height: math.unit(240000, "feet")
  39916. },
  39917. {
  39918. name: "Tri-County Terror",
  39919. height: math.unit(800000, "feet")
  39920. },
  39921. {
  39922. name: "State Smasher",
  39923. height: math.unit(2.4e6, "feet")
  39924. },
  39925. {
  39926. name: "Nation Nemesis",
  39927. height: math.unit(8e6, "feet")
  39928. },
  39929. {
  39930. name: "Continent Cracker",
  39931. height: math.unit(2.4e7, "feet")
  39932. },
  39933. {
  39934. name: "Planet-Pillaging",
  39935. height: math.unit(8e7, "feet")
  39936. },
  39937. {
  39938. name: "Earth-Eclipsing",
  39939. height: math.unit(2.4e8, "feet")
  39940. },
  39941. {
  39942. name: "Jovian-Jostling",
  39943. height: math.unit(8e8, "feet")
  39944. },
  39945. {
  39946. name: "Gas Giant Gulper",
  39947. height: math.unit(2.4e9, "feet")
  39948. },
  39949. {
  39950. name: "Astral Annihilator",
  39951. height: math.unit(8e9, "feet")
  39952. },
  39953. {
  39954. name: "Celestial Conqueror",
  39955. height: math.unit(2.4e10, "feet")
  39956. },
  39957. {
  39958. name: "Sol-Swallowing",
  39959. height: math.unit(8e10, "feet")
  39960. },
  39961. {
  39962. name: "Hunter of the Heavens",
  39963. height: math.unit(2.4e13, "feet")
  39964. },
  39965. ]
  39966. ))
  39967. characterMakers.push(() => makeCharacter(
  39968. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  39969. {
  39970. front: {
  39971. height: math.unit(6 + 8/12, "feet"),
  39972. weight: math.unit(250, "kilograms"),
  39973. volume: math.unit(28, "liters"),
  39974. name: "Front",
  39975. image: {
  39976. source: "./media/characters/rebecca-pawlson/front.svg",
  39977. extra: 1737/1596,
  39978. bottom: 107/1844
  39979. }
  39980. },
  39981. back: {
  39982. height: math.unit(6 + 8/12, "feet"),
  39983. weight: math.unit(250, "kilograms"),
  39984. volume: math.unit(28, "liters"),
  39985. name: "Back",
  39986. image: {
  39987. source: "./media/characters/rebecca-pawlson/back.svg",
  39988. extra: 1702/1523,
  39989. bottom: 86/1788
  39990. }
  39991. },
  39992. },
  39993. [
  39994. {
  39995. name: "Normal",
  39996. height: math.unit(6 + 8/12, "feet")
  39997. },
  39998. {
  39999. name: "Mini Macro",
  40000. height: math.unit(10, "feet"),
  40001. default: true
  40002. },
  40003. {
  40004. name: "Macro",
  40005. height: math.unit(100, "feet")
  40006. },
  40007. {
  40008. name: "Mega Macro",
  40009. height: math.unit(2500, "feet")
  40010. },
  40011. {
  40012. name: "Giga Macro",
  40013. height: math.unit(50, "miles")
  40014. },
  40015. ]
  40016. ))
  40017. characterMakers.push(() => makeCharacter(
  40018. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  40019. {
  40020. front: {
  40021. height: math.unit(7 + 6/12, "feet"),
  40022. weight: math.unit(600, "lb"),
  40023. name: "Front",
  40024. image: {
  40025. source: "./media/characters/moxie-nova/front.svg",
  40026. extra: 1734/1652,
  40027. bottom: 41/1775
  40028. }
  40029. },
  40030. },
  40031. [
  40032. {
  40033. name: "Normal",
  40034. height: math.unit(7 + 6/12, "feet"),
  40035. default: true
  40036. },
  40037. ]
  40038. ))
  40039. characterMakers.push(() => makeCharacter(
  40040. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  40041. {
  40042. goat: {
  40043. height: math.unit(4, "feet"),
  40044. weight: math.unit(180, "lb"),
  40045. name: "Goat",
  40046. image: {
  40047. source: "./media/characters/tiffany/goat.svg",
  40048. extra: 1845/1595,
  40049. bottom: 106/1951
  40050. }
  40051. },
  40052. front: {
  40053. height: math.unit(5, "feet"),
  40054. weight: math.unit(150, "lb"),
  40055. name: "Foxcoon",
  40056. image: {
  40057. source: "./media/characters/tiffany/foxcoon.svg",
  40058. extra: 1941/1845,
  40059. bottom: 58/1999
  40060. }
  40061. },
  40062. },
  40063. [
  40064. {
  40065. name: "Normal",
  40066. height: math.unit(5, "feet"),
  40067. default: true
  40068. },
  40069. ]
  40070. ))
  40071. characterMakers.push(() => makeCharacter(
  40072. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  40073. {
  40074. front: {
  40075. height: math.unit(8, "feet"),
  40076. weight: math.unit(300, "lb"),
  40077. name: "Front",
  40078. image: {
  40079. source: "./media/characters/raxinath/front.svg",
  40080. extra: 1407/1309,
  40081. bottom: 39/1446
  40082. }
  40083. },
  40084. back: {
  40085. height: math.unit(8, "feet"),
  40086. weight: math.unit(300, "lb"),
  40087. name: "Back",
  40088. image: {
  40089. source: "./media/characters/raxinath/back.svg",
  40090. extra: 1405/1315,
  40091. bottom: 9/1414
  40092. }
  40093. },
  40094. },
  40095. [
  40096. {
  40097. name: "Speck",
  40098. height: math.unit(0.5, "nm")
  40099. },
  40100. {
  40101. name: "Micro",
  40102. height: math.unit(3, "inches")
  40103. },
  40104. {
  40105. name: "Kobold",
  40106. height: math.unit(3, "feet")
  40107. },
  40108. {
  40109. name: "Normal",
  40110. height: math.unit(8, "feet"),
  40111. default: true
  40112. },
  40113. {
  40114. name: "Giant",
  40115. height: math.unit(50, "feet")
  40116. },
  40117. {
  40118. name: "Macro",
  40119. height: math.unit(1000, "feet")
  40120. },
  40121. {
  40122. name: "Megamacro",
  40123. height: math.unit(1, "mile")
  40124. },
  40125. ]
  40126. ))
  40127. characterMakers.push(() => makeCharacter(
  40128. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  40129. {
  40130. front: {
  40131. height: math.unit(10, "feet"),
  40132. weight: math.unit(1442, "lb"),
  40133. name: "Front",
  40134. image: {
  40135. source: "./media/characters/mal-dragon/front.svg",
  40136. extra: 1515/1444,
  40137. bottom: 113/1628
  40138. }
  40139. },
  40140. back: {
  40141. height: math.unit(10, "feet"),
  40142. weight: math.unit(1442, "lb"),
  40143. name: "Back",
  40144. image: {
  40145. source: "./media/characters/mal-dragon/back.svg",
  40146. extra: 1527/1434,
  40147. bottom: 25/1552
  40148. }
  40149. },
  40150. },
  40151. [
  40152. {
  40153. name: "Mortal Interaction",
  40154. height: math.unit(10, "feet"),
  40155. default: true
  40156. },
  40157. {
  40158. name: "Large",
  40159. height: math.unit(30, "feet")
  40160. },
  40161. {
  40162. name: "Kaiju",
  40163. height: math.unit(300, "feet")
  40164. },
  40165. {
  40166. name: "Megamacro",
  40167. height: math.unit(10000, "feet")
  40168. },
  40169. {
  40170. name: "Continent Cracker",
  40171. height: math.unit(30000000, "feet")
  40172. },
  40173. {
  40174. name: "Sol-Swallowing",
  40175. height: math.unit(1e11, "feet")
  40176. },
  40177. {
  40178. name: "Light Universal",
  40179. height: math.unit(5, "universes")
  40180. },
  40181. {
  40182. name: "Universe Atoms",
  40183. height: math.unit(1.829e9, "universes")
  40184. },
  40185. {
  40186. name: "Light Multiversal",
  40187. height: math.unit(5, "multiverses")
  40188. },
  40189. {
  40190. name: "Multiverse Atoms",
  40191. height: math.unit(1.829e9, "multiverses")
  40192. },
  40193. {
  40194. name: "Fabric of Time",
  40195. height: math.unit(1e262, "multiverses")
  40196. },
  40197. ]
  40198. ))
  40199. characterMakers.push(() => makeCharacter(
  40200. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  40201. {
  40202. front: {
  40203. height: math.unit(9, "feet"),
  40204. weight: math.unit(1050, "lb"),
  40205. name: "Front",
  40206. image: {
  40207. source: "./media/characters/tabitha/front.svg",
  40208. extra: 2083/1994,
  40209. bottom: 68/2151
  40210. }
  40211. },
  40212. },
  40213. [
  40214. {
  40215. name: "Baseline",
  40216. height: math.unit(9, "feet"),
  40217. default: true
  40218. },
  40219. {
  40220. name: "Giant",
  40221. height: math.unit(90, "feet")
  40222. },
  40223. {
  40224. name: "Macro",
  40225. height: math.unit(900, "feet")
  40226. },
  40227. {
  40228. name: "Megamacro",
  40229. height: math.unit(9000, "feet")
  40230. },
  40231. {
  40232. name: "City-Crushing",
  40233. height: math.unit(27000, "feet")
  40234. },
  40235. {
  40236. name: "Mountain-Mashing",
  40237. height: math.unit(90000, "feet")
  40238. },
  40239. {
  40240. name: "Nation Nemesis",
  40241. height: math.unit(9e6, "feet")
  40242. },
  40243. {
  40244. name: "Continent Cracker",
  40245. height: math.unit(27e6, "feet")
  40246. },
  40247. {
  40248. name: "Earth-Eclipsing",
  40249. height: math.unit(2.7e8, "feet")
  40250. },
  40251. {
  40252. name: "Gas Giant Gulper",
  40253. height: math.unit(2.7e9, "feet")
  40254. },
  40255. {
  40256. name: "Sol-Swallowing",
  40257. height: math.unit(9e10, "feet")
  40258. },
  40259. {
  40260. name: "Galaxy Gulper",
  40261. height: math.unit(9, "galaxies")
  40262. },
  40263. {
  40264. name: "Cosmos Churner",
  40265. height: math.unit(9, "universes")
  40266. },
  40267. ]
  40268. ))
  40269. characterMakers.push(() => makeCharacter(
  40270. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  40271. {
  40272. front: {
  40273. height: math.unit(160, "cm"),
  40274. weight: math.unit(55, "kg"),
  40275. name: "Front",
  40276. image: {
  40277. source: "./media/characters/tow/front.svg",
  40278. extra: 1751/1722,
  40279. bottom: 74/1825
  40280. }
  40281. },
  40282. },
  40283. [
  40284. {
  40285. name: "Norm",
  40286. height: math.unit(160, "cm")
  40287. },
  40288. {
  40289. name: "Casual",
  40290. height: math.unit(3200, "m"),
  40291. default: true
  40292. },
  40293. {
  40294. name: "Show-Off",
  40295. height: math.unit(160, "km")
  40296. },
  40297. ]
  40298. ))
  40299. characterMakers.push(() => makeCharacter(
  40300. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  40301. {
  40302. front: {
  40303. height: math.unit(7 + 11/12, "feet"),
  40304. weight: math.unit(342.8, "lb"),
  40305. name: "Front",
  40306. image: {
  40307. source: "./media/characters/vivian-orca-dragon/front.svg",
  40308. extra: 1890/1865,
  40309. bottom: 28/1918
  40310. }
  40311. },
  40312. },
  40313. [
  40314. {
  40315. name: "Micro",
  40316. height: math.unit(5, "inches")
  40317. },
  40318. {
  40319. name: "Normal",
  40320. height: math.unit(7 + 11/12, "feet"),
  40321. default: true
  40322. },
  40323. {
  40324. name: "Macro",
  40325. height: math.unit(395 + 7/12, "feet")
  40326. },
  40327. ]
  40328. ))
  40329. characterMakers.push(() => makeCharacter(
  40330. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  40331. {
  40332. side: {
  40333. height: math.unit(10, "feet"),
  40334. weight: math.unit(1442, "lb"),
  40335. name: "Side",
  40336. image: {
  40337. source: "./media/characters/lotherakon/side.svg",
  40338. extra: 1604/1497,
  40339. bottom: 89/1693
  40340. }
  40341. },
  40342. },
  40343. [
  40344. {
  40345. name: "Mortal Interaction",
  40346. height: math.unit(10, "feet")
  40347. },
  40348. {
  40349. name: "Large",
  40350. height: math.unit(30, "feet"),
  40351. default: true
  40352. },
  40353. {
  40354. name: "Giant",
  40355. height: math.unit(100, "feet")
  40356. },
  40357. {
  40358. name: "Kaiju",
  40359. height: math.unit(300, "feet")
  40360. },
  40361. {
  40362. name: "Macro",
  40363. height: math.unit(1000, "feet")
  40364. },
  40365. {
  40366. name: "Macro+",
  40367. height: math.unit(3000, "feet")
  40368. },
  40369. {
  40370. name: "Megamacro",
  40371. height: math.unit(10000, "feet")
  40372. },
  40373. {
  40374. name: "City-Crushing",
  40375. height: math.unit(30000, "feet")
  40376. },
  40377. {
  40378. name: "Continent Cracker",
  40379. height: math.unit(30e6, "feet")
  40380. },
  40381. {
  40382. name: "Earth Eclipsing",
  40383. height: math.unit(3e8, "feet")
  40384. },
  40385. {
  40386. name: "Gas Giant Gulper",
  40387. height: math.unit(3e9, "feet")
  40388. },
  40389. {
  40390. name: "Sol-Swallowing",
  40391. height: math.unit(1e11, "feet")
  40392. },
  40393. {
  40394. name: "System Swallower",
  40395. height: math.unit(3e14, "feet")
  40396. },
  40397. {
  40398. name: "Galaxy Gulper",
  40399. height: math.unit(10, "galaxies")
  40400. },
  40401. {
  40402. name: "Light Universal",
  40403. height: math.unit(5, "universes")
  40404. },
  40405. {
  40406. name: "Universe Palm",
  40407. height: math.unit(20, "universes")
  40408. },
  40409. {
  40410. name: "Light Multiversal",
  40411. height: math.unit(5, "multiverses")
  40412. },
  40413. {
  40414. name: "Multiverse Palm",
  40415. height: math.unit(20, "multiverses")
  40416. },
  40417. {
  40418. name: "Inferno Incarnate",
  40419. height: math.unit(1e7, "multiverses")
  40420. },
  40421. ]
  40422. ))
  40423. characterMakers.push(() => makeCharacter(
  40424. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  40425. {
  40426. front: {
  40427. height: math.unit(8, "feet"),
  40428. weight: math.unit(1200, "lb"),
  40429. name: "Front",
  40430. image: {
  40431. source: "./media/characters/malithee/front.svg",
  40432. extra: 1675/1640,
  40433. bottom: 162/1837
  40434. }
  40435. },
  40436. },
  40437. [
  40438. {
  40439. name: "Mortal Interaction",
  40440. height: math.unit(8, "feet"),
  40441. default: true
  40442. },
  40443. {
  40444. name: "Large",
  40445. height: math.unit(24, "feet")
  40446. },
  40447. {
  40448. name: "Kaiju",
  40449. height: math.unit(240, "feet")
  40450. },
  40451. {
  40452. name: "Megamacro",
  40453. height: math.unit(8000, "feet")
  40454. },
  40455. {
  40456. name: "Continent Cracker",
  40457. height: math.unit(24e6, "feet")
  40458. },
  40459. {
  40460. name: "Earth-Eclipsing",
  40461. height: math.unit(2.4e8, "feet")
  40462. },
  40463. {
  40464. name: "Sol-Swallowing",
  40465. height: math.unit(8e10, "feet")
  40466. },
  40467. {
  40468. name: "Galaxy Gulper",
  40469. height: math.unit(8, "galaxies")
  40470. },
  40471. {
  40472. name: "Light Universal",
  40473. height: math.unit(4, "universes")
  40474. },
  40475. {
  40476. name: "Universe Atoms",
  40477. height: math.unit(1.829e9, "universes")
  40478. },
  40479. {
  40480. name: "Light Multiversal",
  40481. height: math.unit(4, "multiverses")
  40482. },
  40483. {
  40484. name: "Multiverse Atoms",
  40485. height: math.unit(1.829e9, "multiverses")
  40486. },
  40487. {
  40488. name: "Nigh-Omnipresence",
  40489. height: math.unit(8e261, "multiverses")
  40490. },
  40491. ]
  40492. ))
  40493. characterMakers.push(() => makeCharacter(
  40494. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  40495. {
  40496. front: {
  40497. height: math.unit(10, "feet"),
  40498. weight: math.unit(1500, "lb"),
  40499. name: "Front",
  40500. image: {
  40501. source: "./media/characters/miles-thestia/front.svg",
  40502. extra: 1812/1727,
  40503. bottom: 86/1898
  40504. }
  40505. },
  40506. back: {
  40507. height: math.unit(10, "feet"),
  40508. weight: math.unit(1500, "lb"),
  40509. name: "Back",
  40510. image: {
  40511. source: "./media/characters/miles-thestia/back.svg",
  40512. extra: 1799/1690,
  40513. bottom: 47/1846
  40514. }
  40515. },
  40516. frontNsfw: {
  40517. height: math.unit(10, "feet"),
  40518. weight: math.unit(1500, "lb"),
  40519. name: "Front (NSFW)",
  40520. image: {
  40521. source: "./media/characters/miles-thestia/front-nsfw.svg",
  40522. extra: 1812/1727,
  40523. bottom: 86/1898
  40524. }
  40525. },
  40526. },
  40527. [
  40528. {
  40529. name: "Mini-Macro",
  40530. height: math.unit(10, "feet"),
  40531. default: true
  40532. },
  40533. ]
  40534. ))
  40535. characterMakers.push(() => makeCharacter(
  40536. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  40537. {
  40538. front: {
  40539. height: math.unit(25, "feet"),
  40540. name: "Front",
  40541. image: {
  40542. source: "./media/characters/titan-s-wulf/front.svg",
  40543. extra: 1560/1484,
  40544. bottom: 76/1636
  40545. }
  40546. },
  40547. },
  40548. [
  40549. {
  40550. name: "Smallest",
  40551. height: math.unit(25, "feet"),
  40552. default: true
  40553. },
  40554. {
  40555. name: "Normal",
  40556. height: math.unit(200, "feet")
  40557. },
  40558. {
  40559. name: "Macro",
  40560. height: math.unit(200000, "feet")
  40561. },
  40562. {
  40563. name: "Multiversal Original",
  40564. height: math.unit(10000, "multiverses")
  40565. },
  40566. ]
  40567. ))
  40568. characterMakers.push(() => makeCharacter(
  40569. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  40570. {
  40571. front: {
  40572. height: math.unit(8, "feet"),
  40573. weight: math.unit(553, "lb"),
  40574. name: "Front",
  40575. image: {
  40576. source: "./media/characters/tawendeh/front.svg",
  40577. extra: 2365/2268,
  40578. bottom: 83/2448
  40579. }
  40580. },
  40581. frontClothed: {
  40582. height: math.unit(8, "feet"),
  40583. weight: math.unit(553, "lb"),
  40584. name: "Front (Clothed)",
  40585. image: {
  40586. source: "./media/characters/tawendeh/front-clothed.svg",
  40587. extra: 2365/2268,
  40588. bottom: 83/2448
  40589. }
  40590. },
  40591. back: {
  40592. height: math.unit(8, "feet"),
  40593. weight: math.unit(553, "lb"),
  40594. name: "Back",
  40595. image: {
  40596. source: "./media/characters/tawendeh/back.svg",
  40597. extra: 2397/2294,
  40598. bottom: 42/2439
  40599. }
  40600. },
  40601. },
  40602. [
  40603. {
  40604. name: "Mortal Interaction",
  40605. height: math.unit(8, "feet"),
  40606. default: true
  40607. },
  40608. {
  40609. name: "Giant",
  40610. height: math.unit(80, "feet")
  40611. },
  40612. {
  40613. name: "Macro",
  40614. height: math.unit(800, "feet")
  40615. },
  40616. {
  40617. name: "Megamacro",
  40618. height: math.unit(8000, "feet")
  40619. },
  40620. {
  40621. name: "City-Crushing",
  40622. height: math.unit(24000, "feet")
  40623. },
  40624. {
  40625. name: "Mountain-Mashing",
  40626. height: math.unit(80000, "feet")
  40627. },
  40628. {
  40629. name: "Nation Nemesis",
  40630. height: math.unit(8e6, "feet")
  40631. },
  40632. {
  40633. name: "Continent Cracker",
  40634. height: math.unit(24e6, "feet")
  40635. },
  40636. {
  40637. name: "Earth-Eclipsing",
  40638. height: math.unit(2.4e8, "feet")
  40639. },
  40640. {
  40641. name: "Gas Giant Gulper",
  40642. height: math.unit(2.4e9, "feet")
  40643. },
  40644. {
  40645. name: "Sol-Swallowing",
  40646. height: math.unit(8e10, "feet")
  40647. },
  40648. {
  40649. name: "Galaxy Gulper",
  40650. height: math.unit(8, "galaxies")
  40651. },
  40652. {
  40653. name: "Cosmos Churner",
  40654. height: math.unit(8, "universes")
  40655. },
  40656. {
  40657. name: "Omnipotent Otter",
  40658. height: math.unit(80, "universes")
  40659. },
  40660. ]
  40661. ))
  40662. characterMakers.push(() => makeCharacter(
  40663. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  40664. {
  40665. front: {
  40666. height: math.unit(2.6, "meters"),
  40667. weight: math.unit(900, "kg"),
  40668. name: "Front",
  40669. image: {
  40670. source: "./media/characters/neesha/front.svg",
  40671. extra: 1803/1653,
  40672. bottom: 128/1931
  40673. }
  40674. },
  40675. },
  40676. [
  40677. {
  40678. name: "Normal",
  40679. height: math.unit(2.6, "meters"),
  40680. default: true
  40681. },
  40682. {
  40683. name: "Macro",
  40684. height: math.unit(50, "meters")
  40685. },
  40686. ]
  40687. ))
  40688. characterMakers.push(() => makeCharacter(
  40689. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  40690. {
  40691. front: {
  40692. height: math.unit(5, "feet"),
  40693. weight: math.unit(185, "lb"),
  40694. name: "Front",
  40695. image: {
  40696. source: "./media/characters/kyera/front.svg",
  40697. extra: 1875/1790,
  40698. bottom: 96/1971
  40699. }
  40700. },
  40701. },
  40702. [
  40703. {
  40704. name: "Normal",
  40705. height: math.unit(5, "feet"),
  40706. default: true
  40707. },
  40708. ]
  40709. ))
  40710. characterMakers.push(() => makeCharacter(
  40711. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  40712. {
  40713. front: {
  40714. height: math.unit(7 + 6/12, "feet"),
  40715. weight: math.unit(540, "lb"),
  40716. name: "Front",
  40717. image: {
  40718. source: "./media/characters/yuko/front.svg",
  40719. extra: 1282/1222,
  40720. bottom: 101/1383
  40721. }
  40722. },
  40723. frontClothed: {
  40724. height: math.unit(7 + 6/12, "feet"),
  40725. weight: math.unit(540, "lb"),
  40726. name: "Front (Clothed)",
  40727. image: {
  40728. source: "./media/characters/yuko/front-clothed.svg",
  40729. extra: 1282/1222,
  40730. bottom: 101/1383
  40731. }
  40732. },
  40733. },
  40734. [
  40735. {
  40736. name: "Normal",
  40737. height: math.unit(7 + 6/12, "feet"),
  40738. default: true
  40739. },
  40740. {
  40741. name: "Macro",
  40742. height: math.unit(26 + 9/12, "feet")
  40743. },
  40744. {
  40745. name: "Megamacro",
  40746. height: math.unit(300, "feet")
  40747. },
  40748. {
  40749. name: "Gigamacro",
  40750. height: math.unit(5000, "feet")
  40751. },
  40752. {
  40753. name: "Planetary",
  40754. height: math.unit(10000, "miles")
  40755. },
  40756. ]
  40757. ))
  40758. characterMakers.push(() => makeCharacter(
  40759. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  40760. {
  40761. front: {
  40762. height: math.unit(8 + 2/12, "feet"),
  40763. weight: math.unit(600, "lb"),
  40764. name: "Front",
  40765. image: {
  40766. source: "./media/characters/deam-nitrel/front.svg",
  40767. extra: 1308/1234,
  40768. bottom: 125/1433
  40769. }
  40770. },
  40771. },
  40772. [
  40773. {
  40774. name: "Normal",
  40775. height: math.unit(8 + 2/12, "feet"),
  40776. default: true
  40777. },
  40778. ]
  40779. ))
  40780. characterMakers.push(() => makeCharacter(
  40781. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  40782. {
  40783. front: {
  40784. height: math.unit(6.1, "feet"),
  40785. weight: math.unit(180, "lb"),
  40786. name: "Front",
  40787. image: {
  40788. source: "./media/characters/skyress/front.svg",
  40789. extra: 1045/915,
  40790. bottom: 28/1073
  40791. }
  40792. },
  40793. maw: {
  40794. height: math.unit(1, "feet"),
  40795. name: "Maw",
  40796. image: {
  40797. source: "./media/characters/skyress/maw.svg"
  40798. }
  40799. },
  40800. },
  40801. [
  40802. {
  40803. name: "Normal",
  40804. height: math.unit(6.1, "feet"),
  40805. default: true
  40806. },
  40807. {
  40808. name: "Macro",
  40809. height: math.unit(200, "feet")
  40810. },
  40811. ]
  40812. ))
  40813. characterMakers.push(() => makeCharacter(
  40814. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  40815. {
  40816. front: {
  40817. height: math.unit(4 + 2/12, "feet"),
  40818. weight: math.unit(40, "kg"),
  40819. name: "Front",
  40820. image: {
  40821. source: "./media/characters/amethyst-jones/front.svg",
  40822. extra: 1220/1150,
  40823. bottom: 101/1321
  40824. }
  40825. },
  40826. },
  40827. [
  40828. {
  40829. name: "Normal",
  40830. height: math.unit(4 + 2/12, "feet"),
  40831. default: true
  40832. },
  40833. ]
  40834. ))
  40835. characterMakers.push(() => makeCharacter(
  40836. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  40837. {
  40838. front: {
  40839. height: math.unit(1.7, "m"),
  40840. weight: math.unit(135, "lb"),
  40841. name: "Front",
  40842. image: {
  40843. source: "./media/characters/jade/front.svg",
  40844. extra: 1818/1767,
  40845. bottom: 32/1850
  40846. }
  40847. },
  40848. back: {
  40849. height: math.unit(1.7, "m"),
  40850. weight: math.unit(135, "lb"),
  40851. name: "Back",
  40852. image: {
  40853. source: "./media/characters/jade/back.svg",
  40854. extra: 1869/1809,
  40855. bottom: 35/1904
  40856. }
  40857. },
  40858. hand: {
  40859. height: math.unit(0.24, "m"),
  40860. name: "Hand",
  40861. image: {
  40862. source: "./media/characters/jade/hand.svg"
  40863. }
  40864. },
  40865. foot: {
  40866. height: math.unit(0.263, "m"),
  40867. name: "Foot",
  40868. image: {
  40869. source: "./media/characters/jade/foot.svg"
  40870. }
  40871. },
  40872. dick: {
  40873. height: math.unit(0.47, "m"),
  40874. name: "Dick",
  40875. image: {
  40876. source: "./media/characters/jade/dick.svg"
  40877. }
  40878. },
  40879. },
  40880. [
  40881. {
  40882. name: "Micro",
  40883. height: math.unit(22, "cm")
  40884. },
  40885. {
  40886. name: "Normal",
  40887. height: math.unit(1.7, "m"),
  40888. default: true
  40889. },
  40890. {
  40891. name: "Macro",
  40892. height: math.unit(152, "m")
  40893. },
  40894. ]
  40895. ))
  40896. characterMakers.push(() => makeCharacter(
  40897. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  40898. {
  40899. front: {
  40900. height: math.unit(100, "miles"),
  40901. weight: math.unit(20000, "tons"),
  40902. name: "Front",
  40903. image: {
  40904. source: "./media/characters/cookie/front.svg",
  40905. extra: 1125/1070,
  40906. bottom: 30/1155
  40907. }
  40908. },
  40909. },
  40910. [
  40911. {
  40912. name: "Big",
  40913. height: math.unit(50, "feet")
  40914. },
  40915. {
  40916. name: "Macro",
  40917. height: math.unit(100, "miles"),
  40918. default: true
  40919. },
  40920. {
  40921. name: "Megamacro",
  40922. height: math.unit(90000, "miles")
  40923. },
  40924. ]
  40925. ))
  40926. characterMakers.push(() => makeCharacter(
  40927. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  40928. {
  40929. front: {
  40930. height: math.unit(6, "feet"),
  40931. weight: math.unit(145, "lb"),
  40932. name: "Front",
  40933. image: {
  40934. source: "./media/characters/farzian/front.svg",
  40935. extra: 1902/1693,
  40936. bottom: 108/2010
  40937. }
  40938. },
  40939. },
  40940. [
  40941. {
  40942. name: "Macro",
  40943. height: math.unit(500, "feet"),
  40944. default: true
  40945. },
  40946. ]
  40947. ))
  40948. characterMakers.push(() => makeCharacter(
  40949. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  40950. {
  40951. front: {
  40952. height: math.unit(3 + 6/12, "feet"),
  40953. weight: math.unit(50, "lb"),
  40954. name: "Front",
  40955. image: {
  40956. source: "./media/characters/kimberly-tilson/front.svg",
  40957. extra: 1400/1322,
  40958. bottom: 36/1436
  40959. }
  40960. },
  40961. back: {
  40962. height: math.unit(3 + 6/12, "feet"),
  40963. weight: math.unit(50, "lb"),
  40964. name: "Back",
  40965. image: {
  40966. source: "./media/characters/kimberly-tilson/back.svg",
  40967. extra: 1370/1307,
  40968. bottom: 20/1390
  40969. }
  40970. },
  40971. },
  40972. [
  40973. {
  40974. name: "Normal",
  40975. height: math.unit(3 + 6/12, "feet"),
  40976. default: true
  40977. },
  40978. ]
  40979. ))
  40980. characterMakers.push(() => makeCharacter(
  40981. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  40982. {
  40983. front: {
  40984. height: math.unit(1148, "feet"),
  40985. weight: math.unit(34057, "lb"),
  40986. name: "Front",
  40987. image: {
  40988. source: "./media/characters/harthos/front.svg",
  40989. extra: 1391/1339,
  40990. bottom: 13/1404
  40991. }
  40992. },
  40993. },
  40994. [
  40995. {
  40996. name: "Macro",
  40997. height: math.unit(1148, "feet"),
  40998. default: true
  40999. },
  41000. ]
  41001. ))
  41002. characterMakers.push(() => makeCharacter(
  41003. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  41004. {
  41005. front: {
  41006. height: math.unit(15, "feet"),
  41007. name: "Front",
  41008. image: {
  41009. source: "./media/characters/hypatia/front.svg",
  41010. extra: 1653/1591,
  41011. bottom: 79/1732
  41012. }
  41013. },
  41014. },
  41015. [
  41016. {
  41017. name: "Normal",
  41018. height: math.unit(15, "feet")
  41019. },
  41020. {
  41021. name: "Small",
  41022. height: math.unit(300, "feet")
  41023. },
  41024. {
  41025. name: "Macro",
  41026. height: math.unit(2500, "feet"),
  41027. default: true
  41028. },
  41029. {
  41030. name: "Mega Macro",
  41031. height: math.unit(1500, "miles")
  41032. },
  41033. {
  41034. name: "Giga Macro",
  41035. height: math.unit(1.5e6, "miles")
  41036. },
  41037. ]
  41038. ))
  41039. characterMakers.push(() => makeCharacter(
  41040. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  41041. {
  41042. front: {
  41043. height: math.unit(6, "feet"),
  41044. weight: math.unit(200, "lb"),
  41045. name: "Front",
  41046. image: {
  41047. source: "./media/characters/wulver/front.svg",
  41048. extra: 1724/1632,
  41049. bottom: 130/1854
  41050. }
  41051. },
  41052. frontNsfw: {
  41053. height: math.unit(6, "feet"),
  41054. weight: math.unit(200, "lb"),
  41055. name: "Front (NSFW)",
  41056. image: {
  41057. source: "./media/characters/wulver/front-nsfw.svg",
  41058. extra: 1724/1632,
  41059. bottom: 130/1854
  41060. }
  41061. },
  41062. },
  41063. [
  41064. {
  41065. name: "Human-Sized",
  41066. height: math.unit(6, "feet")
  41067. },
  41068. {
  41069. name: "Normal",
  41070. height: math.unit(4, "meters"),
  41071. default: true
  41072. },
  41073. {
  41074. name: "Large",
  41075. height: math.unit(6, "m")
  41076. },
  41077. ]
  41078. ))
  41079. characterMakers.push(() => makeCharacter(
  41080. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  41081. {
  41082. front: {
  41083. height: math.unit(7, "feet"),
  41084. name: "Front",
  41085. image: {
  41086. source: "./media/characters/maru/front.svg",
  41087. extra: 1595/1570,
  41088. bottom: 0/1595
  41089. }
  41090. },
  41091. },
  41092. [
  41093. {
  41094. name: "Normal",
  41095. height: math.unit(7, "feet"),
  41096. default: true
  41097. },
  41098. {
  41099. name: "Macro",
  41100. height: math.unit(700, "feet")
  41101. },
  41102. {
  41103. name: "Mega Macro",
  41104. height: math.unit(25, "miles")
  41105. },
  41106. ]
  41107. ))
  41108. characterMakers.push(() => makeCharacter(
  41109. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  41110. {
  41111. front: {
  41112. height: math.unit(6, "feet"),
  41113. weight: math.unit(170, "lb"),
  41114. name: "Front",
  41115. image: {
  41116. source: "./media/characters/xenon/front.svg",
  41117. extra: 1376/1305,
  41118. bottom: 56/1432
  41119. }
  41120. },
  41121. back: {
  41122. height: math.unit(6, "feet"),
  41123. weight: math.unit(170, "lb"),
  41124. name: "Back",
  41125. image: {
  41126. source: "./media/characters/xenon/back.svg",
  41127. extra: 1328/1259,
  41128. bottom: 95/1423
  41129. }
  41130. },
  41131. maw: {
  41132. height: math.unit(0.52, "feet"),
  41133. name: "Maw",
  41134. image: {
  41135. source: "./media/characters/xenon/maw.svg"
  41136. }
  41137. },
  41138. hand: {
  41139. height: math.unit(0.82, "feet"),
  41140. name: "Hand",
  41141. image: {
  41142. source: "./media/characters/xenon/hand.svg"
  41143. }
  41144. },
  41145. foot: {
  41146. height: math.unit(1.13, "feet"),
  41147. name: "Foot",
  41148. image: {
  41149. source: "./media/characters/xenon/foot.svg"
  41150. }
  41151. },
  41152. },
  41153. [
  41154. {
  41155. name: "Micro",
  41156. height: math.unit(0.8, "inches")
  41157. },
  41158. {
  41159. name: "Normal",
  41160. height: math.unit(6, "feet")
  41161. },
  41162. {
  41163. name: "Macro",
  41164. height: math.unit(50, "feet"),
  41165. default: true
  41166. },
  41167. {
  41168. name: "Macro+",
  41169. height: math.unit(250, "feet")
  41170. },
  41171. {
  41172. name: "Megamacro",
  41173. height: math.unit(1500, "feet")
  41174. },
  41175. ]
  41176. ))
  41177. characterMakers.push(() => makeCharacter(
  41178. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  41179. {
  41180. front: {
  41181. height: math.unit(7 + 5/12, "feet"),
  41182. name: "Front",
  41183. image: {
  41184. source: "./media/characters/zane/front.svg",
  41185. extra: 1260/1203,
  41186. bottom: 94/1354
  41187. }
  41188. },
  41189. back: {
  41190. height: math.unit(5.05, "feet"),
  41191. name: "Back",
  41192. image: {
  41193. source: "./media/characters/zane/back.svg",
  41194. extra: 893/829,
  41195. bottom: 30/923
  41196. }
  41197. },
  41198. werewolf: {
  41199. height: math.unit(11, "feet"),
  41200. name: "Werewolf",
  41201. image: {
  41202. source: "./media/characters/zane/werewolf.svg",
  41203. extra: 1383/1323,
  41204. bottom: 89/1472
  41205. }
  41206. },
  41207. foot: {
  41208. height: math.unit(1.46, "feet"),
  41209. name: "Foot",
  41210. image: {
  41211. source: "./media/characters/zane/foot.svg"
  41212. }
  41213. },
  41214. footFront: {
  41215. height: math.unit(0.784, "feet"),
  41216. name: "Foot (Front)",
  41217. image: {
  41218. source: "./media/characters/zane/foot-front.svg"
  41219. }
  41220. },
  41221. dick: {
  41222. height: math.unit(1.95, "feet"),
  41223. name: "Dick",
  41224. image: {
  41225. source: "./media/characters/zane/dick.svg"
  41226. }
  41227. },
  41228. dickWerewolf: {
  41229. height: math.unit(3.77, "feet"),
  41230. name: "Dick (Werewolf)",
  41231. image: {
  41232. source: "./media/characters/zane/dick.svg"
  41233. }
  41234. },
  41235. },
  41236. [
  41237. {
  41238. name: "Normal",
  41239. height: math.unit(7 + 5/12, "feet"),
  41240. default: true
  41241. },
  41242. ]
  41243. ))
  41244. characterMakers.push(() => makeCharacter(
  41245. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  41246. {
  41247. front: {
  41248. height: math.unit(6 + 2/12, "feet"),
  41249. weight: math.unit(284, "lb"),
  41250. name: "Front",
  41251. image: {
  41252. source: "./media/characters/benni-desparque/front.svg",
  41253. extra: 1353/1126,
  41254. bottom: 69/1422
  41255. }
  41256. },
  41257. },
  41258. [
  41259. {
  41260. name: "Civilian",
  41261. height: math.unit(6 + 2/12, "feet")
  41262. },
  41263. {
  41264. name: "Normal",
  41265. height: math.unit(98, "feet"),
  41266. default: true
  41267. },
  41268. {
  41269. name: "Kaiju Fighter",
  41270. height: math.unit(268, "feet")
  41271. },
  41272. ]
  41273. ))
  41274. characterMakers.push(() => makeCharacter(
  41275. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  41276. {
  41277. front: {
  41278. height: math.unit(5, "feet"),
  41279. weight: math.unit(105, "lb"),
  41280. name: "Front",
  41281. image: {
  41282. source: "./media/characters/maxine/front.svg",
  41283. extra: 1386/1250,
  41284. bottom: 71/1457
  41285. }
  41286. },
  41287. },
  41288. [
  41289. {
  41290. name: "Normal",
  41291. height: math.unit(5, "feet"),
  41292. default: true
  41293. },
  41294. ]
  41295. ))
  41296. characterMakers.push(() => makeCharacter(
  41297. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  41298. {
  41299. front: {
  41300. height: math.unit(11 + 7/12, "feet"),
  41301. weight: math.unit(9576, "lb"),
  41302. name: "Front",
  41303. image: {
  41304. source: "./media/characters/scaly/front.svg",
  41305. extra: 888/867,
  41306. bottom: 36/924
  41307. }
  41308. },
  41309. },
  41310. [
  41311. {
  41312. name: "Normal",
  41313. height: math.unit(11 + 7/12, "feet"),
  41314. default: true
  41315. },
  41316. ]
  41317. ))
  41318. characterMakers.push(() => makeCharacter(
  41319. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  41320. {
  41321. front: {
  41322. height: math.unit(6 + 3/12, "feet"),
  41323. name: "Front",
  41324. image: {
  41325. source: "./media/characters/saelria/front.svg",
  41326. extra: 1243/1138,
  41327. bottom: 46/1289
  41328. }
  41329. },
  41330. },
  41331. [
  41332. {
  41333. name: "Micro",
  41334. height: math.unit(6, "inches"),
  41335. },
  41336. {
  41337. name: "Normal",
  41338. height: math.unit(6 + 3/12, "feet"),
  41339. default: true
  41340. },
  41341. {
  41342. name: "Macro",
  41343. height: math.unit(25, "feet")
  41344. },
  41345. ]
  41346. ))
  41347. characterMakers.push(() => makeCharacter(
  41348. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  41349. {
  41350. front: {
  41351. height: math.unit(80, "meters"),
  41352. weight: math.unit(7000, "tonnes"),
  41353. name: "Front",
  41354. image: {
  41355. source: "./media/characters/tef/front.svg",
  41356. extra: 2036/1991,
  41357. bottom: 54/2090
  41358. }
  41359. },
  41360. back: {
  41361. height: math.unit(80, "meters"),
  41362. weight: math.unit(7000, "tonnes"),
  41363. name: "Back",
  41364. image: {
  41365. source: "./media/characters/tef/back.svg",
  41366. extra: 2036/1991,
  41367. bottom: 54/2090
  41368. }
  41369. },
  41370. },
  41371. [
  41372. {
  41373. name: "Macro",
  41374. height: math.unit(80, "meters"),
  41375. default: true
  41376. },
  41377. ]
  41378. ))
  41379. characterMakers.push(() => makeCharacter(
  41380. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  41381. {
  41382. front: {
  41383. height: math.unit(13, "feet"),
  41384. weight: math.unit(6, "tons"),
  41385. name: "Front",
  41386. image: {
  41387. source: "./media/characters/rover/front.svg",
  41388. extra: 1233/1156,
  41389. bottom: 50/1283
  41390. }
  41391. },
  41392. back: {
  41393. height: math.unit(13, "feet"),
  41394. weight: math.unit(6, "tons"),
  41395. name: "Back",
  41396. image: {
  41397. source: "./media/characters/rover/back.svg",
  41398. extra: 1327/1258,
  41399. bottom: 39/1366
  41400. }
  41401. },
  41402. },
  41403. [
  41404. {
  41405. name: "Normal",
  41406. height: math.unit(13, "feet"),
  41407. default: true
  41408. },
  41409. {
  41410. name: "Macro",
  41411. height: math.unit(1300, "feet")
  41412. },
  41413. {
  41414. name: "Megamacro",
  41415. height: math.unit(1300, "miles")
  41416. },
  41417. {
  41418. name: "Gigamacro",
  41419. height: math.unit(1300000, "miles")
  41420. },
  41421. ]
  41422. ))
  41423. characterMakers.push(() => makeCharacter(
  41424. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  41425. {
  41426. front: {
  41427. height: math.unit(6, "feet"),
  41428. weight: math.unit(150, "lb"),
  41429. name: "Front",
  41430. image: {
  41431. source: "./media/characters/ariz/front.svg",
  41432. extra: 1401/1346,
  41433. bottom: 5/1406
  41434. }
  41435. },
  41436. },
  41437. [
  41438. {
  41439. name: "Normal",
  41440. height: math.unit(10, "feet"),
  41441. default: true
  41442. },
  41443. ]
  41444. ))
  41445. characterMakers.push(() => makeCharacter(
  41446. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  41447. {
  41448. front: {
  41449. height: math.unit(6, "feet"),
  41450. weight: math.unit(140, "lb"),
  41451. name: "Front",
  41452. image: {
  41453. source: "./media/characters/sigrun/front.svg",
  41454. extra: 1418/1359,
  41455. bottom: 27/1445
  41456. }
  41457. },
  41458. },
  41459. [
  41460. {
  41461. name: "Macro",
  41462. height: math.unit(35, "feet"),
  41463. default: true
  41464. },
  41465. ]
  41466. ))
  41467. characterMakers.push(() => makeCharacter(
  41468. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  41469. {
  41470. front: {
  41471. height: math.unit(6, "feet"),
  41472. weight: math.unit(150, "lb"),
  41473. name: "Front",
  41474. image: {
  41475. source: "./media/characters/numin/front.svg",
  41476. extra: 1433/1388,
  41477. bottom: 12/1445
  41478. }
  41479. },
  41480. },
  41481. [
  41482. {
  41483. name: "Macro",
  41484. height: math.unit(21.5, "km"),
  41485. default: true
  41486. },
  41487. ]
  41488. ))
  41489. characterMakers.push(() => makeCharacter(
  41490. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  41491. {
  41492. front: {
  41493. height: math.unit(6, "feet"),
  41494. weight: math.unit(463, "lb"),
  41495. name: "Front",
  41496. image: {
  41497. source: "./media/characters/melwa/front.svg",
  41498. extra: 1307/1248,
  41499. bottom: 93/1400
  41500. }
  41501. },
  41502. },
  41503. [
  41504. {
  41505. name: "Macro",
  41506. height: math.unit(50, "meters"),
  41507. default: true
  41508. },
  41509. ]
  41510. ))
  41511. characterMakers.push(() => makeCharacter(
  41512. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  41513. {
  41514. front: {
  41515. height: math.unit(325, "feet"),
  41516. name: "Front",
  41517. image: {
  41518. source: "./media/characters/zorkaiju/front.svg",
  41519. extra: 1955/1814,
  41520. bottom: 40/1995
  41521. }
  41522. },
  41523. frontExtended: {
  41524. height: math.unit(325, "feet"),
  41525. name: "Front (Extended)",
  41526. image: {
  41527. source: "./media/characters/zorkaiju/front-extended.svg",
  41528. extra: 1955/1814,
  41529. bottom: 40/1995
  41530. }
  41531. },
  41532. side: {
  41533. height: math.unit(325, "feet"),
  41534. name: "Side",
  41535. image: {
  41536. source: "./media/characters/zorkaiju/side.svg",
  41537. extra: 1495/1396,
  41538. bottom: 17/1512
  41539. }
  41540. },
  41541. sideExtended: {
  41542. height: math.unit(325, "feet"),
  41543. name: "Side (Extended)",
  41544. image: {
  41545. source: "./media/characters/zorkaiju/side-extended.svg",
  41546. extra: 1495/1396,
  41547. bottom: 17/1512
  41548. }
  41549. },
  41550. back: {
  41551. height: math.unit(325, "feet"),
  41552. name: "Back",
  41553. image: {
  41554. source: "./media/characters/zorkaiju/back.svg",
  41555. extra: 1959/1821,
  41556. bottom: 31/1990
  41557. }
  41558. },
  41559. backExtended: {
  41560. height: math.unit(325, "feet"),
  41561. name: "Back (Extended)",
  41562. image: {
  41563. source: "./media/characters/zorkaiju/back-extended.svg",
  41564. extra: 1959/1821,
  41565. bottom: 31/1990
  41566. }
  41567. },
  41568. hand: {
  41569. height: math.unit(58.4, "feet"),
  41570. name: "Hand",
  41571. image: {
  41572. source: "./media/characters/zorkaiju/hand.svg"
  41573. }
  41574. },
  41575. handExtended: {
  41576. height: math.unit(61.4, "feet"),
  41577. name: "Hand (Extended)",
  41578. image: {
  41579. source: "./media/characters/zorkaiju/hand-extended.svg"
  41580. }
  41581. },
  41582. foot: {
  41583. height: math.unit(95, "feet"),
  41584. name: "Foot",
  41585. image: {
  41586. source: "./media/characters/zorkaiju/foot.svg"
  41587. }
  41588. },
  41589. leftArm: {
  41590. height: math.unit(59, "feet"),
  41591. name: "Left Arm",
  41592. image: {
  41593. source: "./media/characters/zorkaiju/left-arm.svg"
  41594. }
  41595. },
  41596. rightArm: {
  41597. height: math.unit(59, "feet"),
  41598. name: "Right Arm",
  41599. image: {
  41600. source: "./media/characters/zorkaiju/right-arm.svg"
  41601. }
  41602. },
  41603. leftArmExtended: {
  41604. height: math.unit(59 * 1.033546, "feet"),
  41605. name: "Left Arm (Extended)",
  41606. image: {
  41607. source: "./media/characters/zorkaiju/left-arm-extended.svg"
  41608. }
  41609. },
  41610. rightArmExtended: {
  41611. height: math.unit(59 * 1.0496, "feet"),
  41612. name: "Right Arm (Extended)",
  41613. image: {
  41614. source: "./media/characters/zorkaiju/right-arm-extended.svg"
  41615. }
  41616. },
  41617. tail: {
  41618. height: math.unit(104, "feet"),
  41619. name: "Tail",
  41620. image: {
  41621. source: "./media/characters/zorkaiju/tail.svg"
  41622. }
  41623. },
  41624. tailExtended: {
  41625. height: math.unit(104, "feet"),
  41626. name: "Tail (Extended)",
  41627. image: {
  41628. source: "./media/characters/zorkaiju/tail-extended.svg"
  41629. }
  41630. },
  41631. tailBottom: {
  41632. height: math.unit(104, "feet"),
  41633. name: "Tail Bottom",
  41634. image: {
  41635. source: "./media/characters/zorkaiju/tail-bottom.svg"
  41636. }
  41637. },
  41638. crystal: {
  41639. height: math.unit(27.54, "feet"),
  41640. name: "Crystal",
  41641. image: {
  41642. source: "./media/characters/zorkaiju/crystal.svg"
  41643. }
  41644. },
  41645. },
  41646. [
  41647. {
  41648. name: "Kaiju",
  41649. height: math.unit(325, "feet"),
  41650. default: true
  41651. },
  41652. ]
  41653. ))
  41654. characterMakers.push(() => makeCharacter(
  41655. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  41656. {
  41657. front: {
  41658. height: math.unit(6 + 1/12, "feet"),
  41659. weight: math.unit(115, "lb"),
  41660. name: "Front",
  41661. image: {
  41662. source: "./media/characters/bailey-belfry/front.svg",
  41663. extra: 1240/1121,
  41664. bottom: 101/1341
  41665. }
  41666. },
  41667. },
  41668. [
  41669. {
  41670. name: "Normal",
  41671. height: math.unit(6 + 1/12, "feet"),
  41672. default: true
  41673. },
  41674. ]
  41675. ))
  41676. characterMakers.push(() => makeCharacter(
  41677. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  41678. {
  41679. side: {
  41680. height: math.unit(4, "meters"),
  41681. weight: math.unit(250, "kg"),
  41682. name: "Side",
  41683. image: {
  41684. source: "./media/characters/blacky/side.svg",
  41685. extra: 1027/919,
  41686. bottom: 43/1070
  41687. }
  41688. },
  41689. maw: {
  41690. height: math.unit(1, "meters"),
  41691. name: "Maw",
  41692. image: {
  41693. source: "./media/characters/blacky/maw.svg"
  41694. }
  41695. },
  41696. paw: {
  41697. height: math.unit(1, "meters"),
  41698. name: "Paw",
  41699. image: {
  41700. source: "./media/characters/blacky/paw.svg"
  41701. }
  41702. },
  41703. },
  41704. [
  41705. {
  41706. name: "Normal",
  41707. height: math.unit(4, "meters"),
  41708. default: true
  41709. },
  41710. ]
  41711. ))
  41712. characterMakers.push(() => makeCharacter(
  41713. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  41714. {
  41715. front: {
  41716. height: math.unit(170, "cm"),
  41717. weight: math.unit(66, "kg"),
  41718. name: "Front",
  41719. image: {
  41720. source: "./media/characters/thux-ei/front.svg",
  41721. extra: 1109/1011,
  41722. bottom: 8/1117
  41723. }
  41724. },
  41725. },
  41726. [
  41727. {
  41728. name: "Normal",
  41729. height: math.unit(170, "cm"),
  41730. default: true
  41731. },
  41732. ]
  41733. ))
  41734. characterMakers.push(() => makeCharacter(
  41735. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  41736. {
  41737. front: {
  41738. height: math.unit(5, "feet"),
  41739. weight: math.unit(120, "lb"),
  41740. name: "Front",
  41741. image: {
  41742. source: "./media/characters/roxanne-voltaire/front.svg",
  41743. extra: 1901/1779,
  41744. bottom: 53/1954
  41745. }
  41746. },
  41747. },
  41748. [
  41749. {
  41750. name: "Normal",
  41751. height: math.unit(5, "feet"),
  41752. default: true
  41753. },
  41754. {
  41755. name: "Giant",
  41756. height: math.unit(50, "feet")
  41757. },
  41758. {
  41759. name: "Titan",
  41760. height: math.unit(500, "feet")
  41761. },
  41762. {
  41763. name: "Macro",
  41764. height: math.unit(5000, "feet")
  41765. },
  41766. {
  41767. name: "Megamacro",
  41768. height: math.unit(50000, "feet")
  41769. },
  41770. {
  41771. name: "Gigamacro",
  41772. height: math.unit(500000, "feet")
  41773. },
  41774. {
  41775. name: "Teramacro",
  41776. height: math.unit(5e6, "feet")
  41777. },
  41778. ]
  41779. ))
  41780. characterMakers.push(() => makeCharacter(
  41781. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  41782. {
  41783. front: {
  41784. height: math.unit(6 + 2/12, "feet"),
  41785. name: "Front",
  41786. image: {
  41787. source: "./media/characters/squeaks/front.svg",
  41788. extra: 1823/1768,
  41789. bottom: 138/1961
  41790. }
  41791. },
  41792. },
  41793. [
  41794. {
  41795. name: "Micro",
  41796. height: math.unit(0.5, "inches")
  41797. },
  41798. {
  41799. name: "Normal",
  41800. height: math.unit(6 + 2/12, "feet"),
  41801. default: true
  41802. },
  41803. {
  41804. name: "Macro",
  41805. height: math.unit(600, "feet")
  41806. },
  41807. ]
  41808. ))
  41809. characterMakers.push(() => makeCharacter(
  41810. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  41811. {
  41812. front: {
  41813. height: math.unit(1.72, "meters"),
  41814. name: "Front",
  41815. image: {
  41816. source: "./media/characters/archinger/front.svg",
  41817. extra: 1861/1675,
  41818. bottom: 125/1986
  41819. }
  41820. },
  41821. back: {
  41822. height: math.unit(1.72, "meters"),
  41823. name: "Back",
  41824. image: {
  41825. source: "./media/characters/archinger/back.svg",
  41826. extra: 1844/1701,
  41827. bottom: 104/1948
  41828. }
  41829. },
  41830. cock: {
  41831. height: math.unit(0.59, "feet"),
  41832. name: "Cock",
  41833. image: {
  41834. source: "./media/characters/archinger/cock.svg"
  41835. }
  41836. },
  41837. },
  41838. [
  41839. {
  41840. name: "Normal",
  41841. height: math.unit(1.72, "meters"),
  41842. default: true
  41843. },
  41844. {
  41845. name: "Macro",
  41846. height: math.unit(84, "meters")
  41847. },
  41848. {
  41849. name: "Macro+",
  41850. height: math.unit(112, "meters")
  41851. },
  41852. {
  41853. name: "Macro++",
  41854. height: math.unit(960, "meters")
  41855. },
  41856. {
  41857. name: "Macro+++",
  41858. height: math.unit(4, "km")
  41859. },
  41860. {
  41861. name: "Macro++++",
  41862. height: math.unit(48, "km")
  41863. },
  41864. {
  41865. name: "Macro+++++",
  41866. height: math.unit(4500, "km")
  41867. },
  41868. ]
  41869. ))
  41870. characterMakers.push(() => makeCharacter(
  41871. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  41872. {
  41873. front: {
  41874. height: math.unit(5 + 5/12, "feet"),
  41875. name: "Front",
  41876. image: {
  41877. source: "./media/characters/alsnapz/front.svg",
  41878. extra: 1157/1065,
  41879. bottom: 42/1199
  41880. }
  41881. },
  41882. },
  41883. [
  41884. {
  41885. name: "Normal",
  41886. height: math.unit(5 + 5/12, "feet"),
  41887. default: true
  41888. },
  41889. ]
  41890. ))
  41891. characterMakers.push(() => makeCharacter(
  41892. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  41893. {
  41894. side: {
  41895. height: math.unit(3.2, "earths"),
  41896. name: "Side",
  41897. image: {
  41898. source: "./media/characters/mag/side.svg",
  41899. extra: 1331/1008,
  41900. bottom: 52/1383
  41901. }
  41902. },
  41903. wing: {
  41904. height: math.unit(1.94, "earths"),
  41905. name: "Wing",
  41906. image: {
  41907. source: "./media/characters/mag/wing.svg"
  41908. }
  41909. },
  41910. dick: {
  41911. height: math.unit(1.8, "earths"),
  41912. name: "Dick",
  41913. image: {
  41914. source: "./media/characters/mag/dick.svg"
  41915. }
  41916. },
  41917. ass: {
  41918. height: math.unit(1.33, "earths"),
  41919. name: "Ass",
  41920. image: {
  41921. source: "./media/characters/mag/ass.svg"
  41922. }
  41923. },
  41924. head: {
  41925. height: math.unit(1.1, "earths"),
  41926. name: "Head",
  41927. image: {
  41928. source: "./media/characters/mag/head.svg"
  41929. }
  41930. },
  41931. maw: {
  41932. height: math.unit(1.62, "earths"),
  41933. name: "Maw",
  41934. image: {
  41935. source: "./media/characters/mag/maw.svg"
  41936. }
  41937. },
  41938. },
  41939. [
  41940. {
  41941. name: "Small",
  41942. height: math.unit(162, "feet")
  41943. },
  41944. {
  41945. name: "Normal",
  41946. height: math.unit(3.2, "earths"),
  41947. default: true
  41948. },
  41949. ]
  41950. ))
  41951. characterMakers.push(() => makeCharacter(
  41952. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  41953. {
  41954. front: {
  41955. height: math.unit(512, "feet"),
  41956. weight: math.unit(63509, "tonnes"),
  41957. name: "Front",
  41958. image: {
  41959. source: "./media/characters/vorrel-harroc/front.svg",
  41960. extra: 1075/1063,
  41961. bottom: 62/1137
  41962. }
  41963. },
  41964. },
  41965. [
  41966. {
  41967. name: "Normal",
  41968. height: math.unit(10, "feet")
  41969. },
  41970. {
  41971. name: "Macro",
  41972. height: math.unit(512, "feet"),
  41973. default: true
  41974. },
  41975. {
  41976. name: "Megamacro",
  41977. height: math.unit(256, "miles")
  41978. },
  41979. {
  41980. name: "Gigamacro",
  41981. height: math.unit(4096, "miles")
  41982. },
  41983. ]
  41984. ))
  41985. characterMakers.push(() => makeCharacter(
  41986. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  41987. {
  41988. side: {
  41989. height: math.unit(50, "feet"),
  41990. name: "Side",
  41991. image: {
  41992. source: "./media/characters/froimar/side.svg",
  41993. extra: 855/638,
  41994. bottom: 99/954
  41995. }
  41996. },
  41997. },
  41998. [
  41999. {
  42000. name: "Macro",
  42001. height: math.unit(50, "feet"),
  42002. default: true
  42003. },
  42004. ]
  42005. ))
  42006. characterMakers.push(() => makeCharacter(
  42007. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  42008. {
  42009. front: {
  42010. height: math.unit(210, "miles"),
  42011. name: "Front",
  42012. image: {
  42013. source: "./media/characters/timothy/front.svg",
  42014. extra: 1007/943,
  42015. bottom: 62/1069
  42016. }
  42017. },
  42018. frontSkirt: {
  42019. height: math.unit(210, "miles"),
  42020. name: "Front (Skirt)",
  42021. image: {
  42022. source: "./media/characters/timothy/front-skirt.svg",
  42023. extra: 1007/943,
  42024. bottom: 62/1069
  42025. }
  42026. },
  42027. frontCoat: {
  42028. height: math.unit(210, "miles"),
  42029. name: "Front (Coat)",
  42030. image: {
  42031. source: "./media/characters/timothy/front-coat.svg",
  42032. extra: 1007/943,
  42033. bottom: 62/1069
  42034. }
  42035. },
  42036. },
  42037. [
  42038. {
  42039. name: "Macro",
  42040. height: math.unit(210, "miles"),
  42041. default: true
  42042. },
  42043. {
  42044. name: "Megamacro",
  42045. height: math.unit(210000, "miles")
  42046. },
  42047. ]
  42048. ))
  42049. characterMakers.push(() => makeCharacter(
  42050. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  42051. {
  42052. front: {
  42053. height: math.unit(188, "feet"),
  42054. name: "Front",
  42055. image: {
  42056. source: "./media/characters/pyotr/front.svg",
  42057. extra: 1912/1826,
  42058. bottom: 18/1930
  42059. }
  42060. },
  42061. },
  42062. [
  42063. {
  42064. name: "Macro",
  42065. height: math.unit(188, "feet"),
  42066. default: true
  42067. },
  42068. {
  42069. name: "Megamacro",
  42070. height: math.unit(8, "miles")
  42071. },
  42072. ]
  42073. ))
  42074. characterMakers.push(() => makeCharacter(
  42075. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  42076. {
  42077. side: {
  42078. height: math.unit(10, "feet"),
  42079. weight: math.unit(4500, "lb"),
  42080. name: "Side",
  42081. image: {
  42082. source: "./media/characters/ackart/side.svg",
  42083. extra: 1776/1668,
  42084. bottom: 116/1892
  42085. }
  42086. },
  42087. },
  42088. [
  42089. {
  42090. name: "Normal",
  42091. height: math.unit(10, "feet"),
  42092. default: true
  42093. },
  42094. ]
  42095. ))
  42096. characterMakers.push(() => makeCharacter(
  42097. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  42098. {
  42099. side: {
  42100. height: math.unit(21, "feet"),
  42101. name: "Side",
  42102. image: {
  42103. source: "./media/characters/nolow/side.svg",
  42104. extra: 1484/1434,
  42105. bottom: 85/1569
  42106. }
  42107. },
  42108. sideErect: {
  42109. height: math.unit(21, "feet"),
  42110. name: "Side-erect",
  42111. image: {
  42112. source: "./media/characters/nolow/side-erect.svg",
  42113. extra: 1484/1434,
  42114. bottom: 85/1569
  42115. }
  42116. },
  42117. },
  42118. [
  42119. {
  42120. name: "Regular",
  42121. height: math.unit(12, "feet")
  42122. },
  42123. {
  42124. name: "Big Chee",
  42125. height: math.unit(21, "feet"),
  42126. default: true
  42127. },
  42128. ]
  42129. ))
  42130. characterMakers.push(() => makeCharacter(
  42131. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  42132. {
  42133. front: {
  42134. height: math.unit(7, "feet"),
  42135. weight: math.unit(250, "lb"),
  42136. name: "Front",
  42137. image: {
  42138. source: "./media/characters/nines/front.svg",
  42139. extra: 1741/1607,
  42140. bottom: 41/1782
  42141. }
  42142. },
  42143. side: {
  42144. height: math.unit(7, "feet"),
  42145. weight: math.unit(250, "lb"),
  42146. name: "Side",
  42147. image: {
  42148. source: "./media/characters/nines/side.svg",
  42149. extra: 1854/1735,
  42150. bottom: 93/1947
  42151. }
  42152. },
  42153. back: {
  42154. height: math.unit(7, "feet"),
  42155. weight: math.unit(250, "lb"),
  42156. name: "Back",
  42157. image: {
  42158. source: "./media/characters/nines/back.svg",
  42159. extra: 1748/1615,
  42160. bottom: 20/1768
  42161. }
  42162. },
  42163. },
  42164. [
  42165. {
  42166. name: "Megamacro",
  42167. height: math.unit(99, "km"),
  42168. default: true
  42169. },
  42170. ]
  42171. ))
  42172. characterMakers.push(() => makeCharacter(
  42173. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  42174. {
  42175. front: {
  42176. height: math.unit(5 + 10/12, "feet"),
  42177. weight: math.unit(210, "lb"),
  42178. name: "Front",
  42179. image: {
  42180. source: "./media/characters/zenith/front.svg",
  42181. extra: 1531/1452,
  42182. bottom: 198/1729
  42183. }
  42184. },
  42185. back: {
  42186. height: math.unit(5 + 10/12, "feet"),
  42187. weight: math.unit(210, "lb"),
  42188. name: "Back",
  42189. image: {
  42190. source: "./media/characters/zenith/back.svg",
  42191. extra: 1571/1487,
  42192. bottom: 75/1646
  42193. }
  42194. },
  42195. },
  42196. [
  42197. {
  42198. name: "Normal",
  42199. height: math.unit(5 + 10/12, "feet"),
  42200. default: true
  42201. }
  42202. ]
  42203. ))
  42204. characterMakers.push(() => makeCharacter(
  42205. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  42206. {
  42207. front: {
  42208. height: math.unit(4, "feet"),
  42209. weight: math.unit(60, "lb"),
  42210. name: "Front",
  42211. image: {
  42212. source: "./media/characters/jasper/front.svg",
  42213. extra: 1450/1379,
  42214. bottom: 19/1469
  42215. }
  42216. },
  42217. },
  42218. [
  42219. {
  42220. name: "Normal",
  42221. height: math.unit(4, "feet"),
  42222. default: true
  42223. },
  42224. ]
  42225. ))
  42226. characterMakers.push(() => makeCharacter(
  42227. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  42228. {
  42229. front: {
  42230. height: math.unit(6 + 5/12, "feet"),
  42231. weight: math.unit(290, "lb"),
  42232. name: "Front",
  42233. image: {
  42234. source: "./media/characters/tiberius-thyben/front.svg",
  42235. extra: 757/739,
  42236. bottom: 39/796
  42237. }
  42238. },
  42239. },
  42240. [
  42241. {
  42242. name: "Micro",
  42243. height: math.unit(1.5, "inches")
  42244. },
  42245. {
  42246. name: "Normal",
  42247. height: math.unit(6 + 5/12, "feet"),
  42248. default: true
  42249. },
  42250. {
  42251. name: "Macro",
  42252. height: math.unit(300, "feet")
  42253. },
  42254. ]
  42255. ))
  42256. characterMakers.push(() => makeCharacter(
  42257. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  42258. {
  42259. front: {
  42260. height: math.unit(5 + 6/12, "feet"),
  42261. weight: math.unit(60, "kg"),
  42262. name: "Front",
  42263. image: {
  42264. source: "./media/characters/sabre/front.svg",
  42265. extra: 738/671,
  42266. bottom: 27/765
  42267. }
  42268. },
  42269. },
  42270. [
  42271. {
  42272. name: "Teeny",
  42273. height: math.unit(2, "inches")
  42274. },
  42275. {
  42276. name: "Smol",
  42277. height: math.unit(8, "inches")
  42278. },
  42279. {
  42280. name: "Normal",
  42281. height: math.unit(5 + 6/12, "feet"),
  42282. default: true
  42283. },
  42284. {
  42285. name: "Mini-Macro",
  42286. height: math.unit(15, "feet")
  42287. },
  42288. {
  42289. name: "Macro",
  42290. height: math.unit(50, "feet")
  42291. },
  42292. ]
  42293. ))
  42294. characterMakers.push(() => makeCharacter(
  42295. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  42296. {
  42297. front: {
  42298. height: math.unit(6 + 4/12, "feet"),
  42299. weight: math.unit(170, "lb"),
  42300. name: "Front",
  42301. image: {
  42302. source: "./media/characters/charlie/front.svg",
  42303. extra: 1348/1228,
  42304. bottom: 15/1363
  42305. }
  42306. },
  42307. },
  42308. [
  42309. {
  42310. name: "Macro",
  42311. height: math.unit(1700, "meters"),
  42312. default: true
  42313. },
  42314. {
  42315. name: "MegaMacro",
  42316. height: math.unit(20400, "meters")
  42317. },
  42318. ]
  42319. ))
  42320. characterMakers.push(() => makeCharacter(
  42321. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  42322. {
  42323. front: {
  42324. height: math.unit(6 + 3/12, "feet"),
  42325. weight: math.unit(185, "lb"),
  42326. name: "Front",
  42327. image: {
  42328. source: "./media/characters/susan-grant/front.svg",
  42329. extra: 1351/1327,
  42330. bottom: 26/1377
  42331. }
  42332. },
  42333. },
  42334. [
  42335. {
  42336. name: "Normal",
  42337. height: math.unit(6 + 3/12, "feet"),
  42338. default: true
  42339. },
  42340. {
  42341. name: "Macro",
  42342. height: math.unit(225, "feet")
  42343. },
  42344. {
  42345. name: "Macro+",
  42346. height: math.unit(900, "feet")
  42347. },
  42348. {
  42349. name: "MegaMacro",
  42350. height: math.unit(14400, "feet")
  42351. },
  42352. ]
  42353. ))
  42354. characterMakers.push(() => makeCharacter(
  42355. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  42356. {
  42357. front: {
  42358. height: math.unit(5 + 4/12, "feet"),
  42359. weight: math.unit(110, "lb"),
  42360. name: "Front",
  42361. image: {
  42362. source: "./media/characters/axel-isanov/front.svg",
  42363. extra: 1096/1065,
  42364. bottom: 13/1109
  42365. }
  42366. },
  42367. },
  42368. [
  42369. {
  42370. name: "Normal",
  42371. height: math.unit(5 + 4/12, "feet"),
  42372. default: true
  42373. },
  42374. ]
  42375. ))
  42376. characterMakers.push(() => makeCharacter(
  42377. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  42378. {
  42379. front: {
  42380. height: math.unit(9, "feet"),
  42381. weight: math.unit(467, "lb"),
  42382. name: "Front",
  42383. image: {
  42384. source: "./media/characters/necahual/front.svg",
  42385. extra: 920/873,
  42386. bottom: 26/946
  42387. }
  42388. },
  42389. back: {
  42390. height: math.unit(9, "feet"),
  42391. weight: math.unit(467, "lb"),
  42392. name: "Back",
  42393. image: {
  42394. source: "./media/characters/necahual/back.svg",
  42395. extra: 930/884,
  42396. bottom: 16/946
  42397. }
  42398. },
  42399. frontUnderwear: {
  42400. height: math.unit(9, "feet"),
  42401. weight: math.unit(467, "lb"),
  42402. name: "Front (Underwear)",
  42403. image: {
  42404. source: "./media/characters/necahual/front-underwear.svg",
  42405. extra: 920/873,
  42406. bottom: 26/946
  42407. }
  42408. },
  42409. frontDressed: {
  42410. height: math.unit(9, "feet"),
  42411. weight: math.unit(467, "lb"),
  42412. name: "Front (Dressed)",
  42413. image: {
  42414. source: "./media/characters/necahual/front-dressed.svg",
  42415. extra: 920/873,
  42416. bottom: 26/946
  42417. }
  42418. },
  42419. },
  42420. [
  42421. {
  42422. name: "Comprsesed",
  42423. height: math.unit(9, "feet")
  42424. },
  42425. {
  42426. name: "Natural",
  42427. height: math.unit(15, "feet"),
  42428. default: true
  42429. },
  42430. {
  42431. name: "Boosted",
  42432. height: math.unit(50, "feet")
  42433. },
  42434. {
  42435. name: "Boosted+",
  42436. height: math.unit(150, "feet")
  42437. },
  42438. {
  42439. name: "Max",
  42440. height: math.unit(500, "feet")
  42441. },
  42442. ]
  42443. ))
  42444. characterMakers.push(() => makeCharacter(
  42445. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  42446. {
  42447. front: {
  42448. height: math.unit(22 + 1/12, "feet"),
  42449. weight: math.unit(3200, "lb"),
  42450. name: "Front",
  42451. image: {
  42452. source: "./media/characters/theo-acacia/front.svg",
  42453. extra: 1796/1741,
  42454. bottom: 83/1879
  42455. }
  42456. },
  42457. frontUnderwear: {
  42458. height: math.unit(22 + 1/12, "feet"),
  42459. weight: math.unit(3200, "lb"),
  42460. name: "Front (Underwear)",
  42461. image: {
  42462. source: "./media/characters/theo-acacia/front-underwear.svg",
  42463. extra: 1796/1741,
  42464. bottom: 83/1879
  42465. }
  42466. },
  42467. frontNude: {
  42468. height: math.unit(22 + 1/12, "feet"),
  42469. weight: math.unit(3200, "lb"),
  42470. name: "Front (Nude)",
  42471. image: {
  42472. source: "./media/characters/theo-acacia/front-nude.svg",
  42473. extra: 1796/1741,
  42474. bottom: 83/1879
  42475. }
  42476. },
  42477. },
  42478. [
  42479. {
  42480. name: "Normal",
  42481. height: math.unit(22 + 1/12, "feet"),
  42482. default: true
  42483. },
  42484. ]
  42485. ))
  42486. characterMakers.push(() => makeCharacter(
  42487. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  42488. {
  42489. front: {
  42490. height: math.unit(20, "feet"),
  42491. name: "Front",
  42492. image: {
  42493. source: "./media/characters/astra/front.svg",
  42494. extra: 1850/1714,
  42495. bottom: 106/1956
  42496. }
  42497. },
  42498. frontUndressed: {
  42499. height: math.unit(20, "feet"),
  42500. name: "Front (Undressed)",
  42501. image: {
  42502. source: "./media/characters/astra/front-undressed.svg",
  42503. extra: 1926/1749,
  42504. bottom: 0/1926
  42505. }
  42506. },
  42507. hand: {
  42508. height: math.unit(1.53, "feet"),
  42509. name: "Hand",
  42510. image: {
  42511. source: "./media/characters/astra/hand.svg"
  42512. }
  42513. },
  42514. paw: {
  42515. height: math.unit(1.53, "feet"),
  42516. name: "Paw",
  42517. image: {
  42518. source: "./media/characters/astra/paw.svg"
  42519. }
  42520. },
  42521. },
  42522. [
  42523. {
  42524. name: "Smallest",
  42525. height: math.unit(20, "feet")
  42526. },
  42527. {
  42528. name: "Normal",
  42529. height: math.unit(1e9, "miles"),
  42530. default: true
  42531. },
  42532. {
  42533. name: "Larger",
  42534. height: math.unit(5, "multiverses")
  42535. },
  42536. {
  42537. name: "Largest",
  42538. height: math.unit(1e9, "multiverses")
  42539. },
  42540. ]
  42541. ))
  42542. characterMakers.push(() => makeCharacter(
  42543. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  42544. {
  42545. front: {
  42546. height: math.unit(8, "feet"),
  42547. name: "Front",
  42548. image: {
  42549. source: "./media/characters/breanna/front.svg",
  42550. extra: 1912/1632,
  42551. bottom: 33/1945
  42552. }
  42553. },
  42554. },
  42555. [
  42556. {
  42557. name: "Smallest",
  42558. height: math.unit(8, "feet")
  42559. },
  42560. {
  42561. name: "Normal",
  42562. height: math.unit(1, "mile"),
  42563. default: true
  42564. },
  42565. {
  42566. name: "Maximum",
  42567. height: math.unit(1500000000000, "lightyears")
  42568. },
  42569. ]
  42570. ))
  42571. characterMakers.push(() => makeCharacter(
  42572. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  42573. {
  42574. front: {
  42575. height: math.unit(5 + 11/12, "feet"),
  42576. weight: math.unit(155, "lb"),
  42577. name: "Front",
  42578. image: {
  42579. source: "./media/characters/cai/front.svg",
  42580. extra: 1823/1702,
  42581. bottom: 32/1855
  42582. }
  42583. },
  42584. back: {
  42585. height: math.unit(5 + 11/12, "feet"),
  42586. weight: math.unit(155, "lb"),
  42587. name: "Back",
  42588. image: {
  42589. source: "./media/characters/cai/back.svg",
  42590. extra: 1809/1708,
  42591. bottom: 31/1840
  42592. }
  42593. },
  42594. },
  42595. [
  42596. {
  42597. name: "Normal",
  42598. height: math.unit(5 + 11/12, "feet"),
  42599. default: true
  42600. },
  42601. {
  42602. name: "Big",
  42603. height: math.unit(15, "feet")
  42604. },
  42605. {
  42606. name: "Macro",
  42607. height: math.unit(200, "feet")
  42608. },
  42609. ]
  42610. ))
  42611. characterMakers.push(() => makeCharacter(
  42612. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  42613. {
  42614. front: {
  42615. height: math.unit(5 + 6/12, "feet"),
  42616. weight: math.unit(160, "lb"),
  42617. name: "Front",
  42618. image: {
  42619. source: "./media/characters/zanna-virtuedòttir/front.svg",
  42620. extra: 1227/1174,
  42621. bottom: 37/1264
  42622. }
  42623. },
  42624. },
  42625. [
  42626. {
  42627. name: "Macro",
  42628. height: math.unit(444, "meters"),
  42629. default: true
  42630. },
  42631. ]
  42632. ))
  42633. characterMakers.push(() => makeCharacter(
  42634. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  42635. {
  42636. front: {
  42637. height: math.unit(18 + 7/12, "feet"),
  42638. name: "Front",
  42639. image: {
  42640. source: "./media/characters/rex/front.svg",
  42641. extra: 1941/1807,
  42642. bottom: 66/2007
  42643. }
  42644. },
  42645. back: {
  42646. height: math.unit(18 + 7/12, "feet"),
  42647. name: "Back",
  42648. image: {
  42649. source: "./media/characters/rex/back.svg",
  42650. extra: 1937/1822,
  42651. bottom: 42/1979
  42652. }
  42653. },
  42654. boot: {
  42655. height: math.unit(3.45, "feet"),
  42656. name: "Boot",
  42657. image: {
  42658. source: "./media/characters/rex/boot.svg"
  42659. }
  42660. },
  42661. paw: {
  42662. height: math.unit(4.17, "feet"),
  42663. name: "Paw",
  42664. image: {
  42665. source: "./media/characters/rex/paw.svg"
  42666. }
  42667. },
  42668. head: {
  42669. height: math.unit(6.728, "feet"),
  42670. name: "Head",
  42671. image: {
  42672. source: "./media/characters/rex/head.svg"
  42673. }
  42674. },
  42675. },
  42676. [
  42677. {
  42678. name: "Nano",
  42679. height: math.unit(18 + 7/12, "feet")
  42680. },
  42681. {
  42682. name: "Micro",
  42683. height: math.unit(1.5, "megameters")
  42684. },
  42685. {
  42686. name: "Normal",
  42687. height: math.unit(440, "megameters"),
  42688. default: true
  42689. },
  42690. {
  42691. name: "Macro",
  42692. height: math.unit(2.5, "gigameters")
  42693. },
  42694. {
  42695. name: "Gigamacro",
  42696. height: math.unit(2, "galaxies")
  42697. },
  42698. ]
  42699. ))
  42700. characterMakers.push(() => makeCharacter(
  42701. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  42702. {
  42703. side: {
  42704. height: math.unit(32, "feet"),
  42705. weight: math.unit(250000, "lb"),
  42706. name: "Side",
  42707. image: {
  42708. source: "./media/characters/silverwing/side.svg",
  42709. extra: 1100/1019,
  42710. bottom: 204/1304
  42711. }
  42712. },
  42713. },
  42714. [
  42715. {
  42716. name: "Normal",
  42717. height: math.unit(32, "feet"),
  42718. default: true
  42719. },
  42720. ]
  42721. ))
  42722. characterMakers.push(() => makeCharacter(
  42723. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  42724. {
  42725. front: {
  42726. height: math.unit(6 + 6/12, "feet"),
  42727. weight: math.unit(350, "lb"),
  42728. name: "Front",
  42729. image: {
  42730. source: "./media/characters/tristan-hawthorne/front.svg",
  42731. extra: 1159/1124,
  42732. bottom: 37/1196
  42733. },
  42734. form: "labrador",
  42735. default: true
  42736. },
  42737. skunkFront: {
  42738. height: math.unit(4 + 6/12, "feet"),
  42739. weight: math.unit(120, "lb"),
  42740. name: "Front",
  42741. image: {
  42742. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  42743. extra: 1609/1551,
  42744. bottom: 169/1778
  42745. },
  42746. form: "skunk",
  42747. default: true
  42748. },
  42749. },
  42750. [
  42751. {
  42752. name: "Normal",
  42753. height: math.unit(6 + 6/12, "feet"),
  42754. form: "labrador",
  42755. default: true
  42756. },
  42757. {
  42758. name: "Normal",
  42759. height: math.unit(4 + 6/12, "feet"),
  42760. form: "skunk",
  42761. default: true
  42762. },
  42763. ],
  42764. {
  42765. "labrador": {
  42766. name: "Labrador",
  42767. default: true
  42768. },
  42769. "skunk": {
  42770. name: "Skunk"
  42771. }
  42772. }
  42773. ))
  42774. characterMakers.push(() => makeCharacter(
  42775. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  42776. {
  42777. front: {
  42778. height: math.unit(5 + 11/12, "feet"),
  42779. weight: math.unit(190, "lb"),
  42780. name: "Front",
  42781. image: {
  42782. source: "./media/characters/mizu/front.svg",
  42783. extra: 1988/1788,
  42784. bottom: 14/2002
  42785. }
  42786. },
  42787. },
  42788. [
  42789. {
  42790. name: "Normal",
  42791. height: math.unit(5 + 11/12, "feet"),
  42792. default: true
  42793. },
  42794. ]
  42795. ))
  42796. characterMakers.push(() => makeCharacter(
  42797. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  42798. {
  42799. front: {
  42800. height: math.unit(1.7, "feet"),
  42801. weight: math.unit(50, "lb"),
  42802. name: "Front",
  42803. image: {
  42804. source: "./media/characters/dechroma/front.svg",
  42805. extra: 1095/859,
  42806. bottom: 64/1159
  42807. }
  42808. },
  42809. },
  42810. [
  42811. {
  42812. name: "Normal",
  42813. height: math.unit(1.7, "feet"),
  42814. default: true
  42815. },
  42816. ]
  42817. ))
  42818. characterMakers.push(() => makeCharacter(
  42819. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  42820. {
  42821. side: {
  42822. height: math.unit(30, "feet"),
  42823. name: "Side",
  42824. image: {
  42825. source: "./media/characters/veluren-thanazel/side.svg",
  42826. extra: 1611/633,
  42827. bottom: 118/1729
  42828. }
  42829. },
  42830. front: {
  42831. height: math.unit(30, "feet"),
  42832. name: "Front",
  42833. image: {
  42834. source: "./media/characters/veluren-thanazel/front.svg",
  42835. extra: 1486/636,
  42836. bottom: 238/1724
  42837. }
  42838. },
  42839. head: {
  42840. height: math.unit(21.4, "feet"),
  42841. name: "Head",
  42842. image: {
  42843. source: "./media/characters/veluren-thanazel/head.svg"
  42844. }
  42845. },
  42846. genitals: {
  42847. height: math.unit(19.4, "feet"),
  42848. name: "Genitals",
  42849. image: {
  42850. source: "./media/characters/veluren-thanazel/genitals.svg"
  42851. }
  42852. },
  42853. },
  42854. [
  42855. {
  42856. name: "Social",
  42857. height: math.unit(6, "feet")
  42858. },
  42859. {
  42860. name: "Play",
  42861. height: math.unit(12, "feet")
  42862. },
  42863. {
  42864. name: "True",
  42865. height: math.unit(30, "feet"),
  42866. default: true
  42867. },
  42868. ]
  42869. ))
  42870. characterMakers.push(() => makeCharacter(
  42871. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  42872. {
  42873. front: {
  42874. height: math.unit(7 + 6/12, "feet"),
  42875. weight: math.unit(500, "kg"),
  42876. name: "Front",
  42877. image: {
  42878. source: "./media/characters/arcturas/front.svg",
  42879. extra: 1700/1500,
  42880. bottom: 145/1845
  42881. }
  42882. },
  42883. },
  42884. [
  42885. {
  42886. name: "Normal",
  42887. height: math.unit(7 + 6/12, "feet"),
  42888. default: true
  42889. },
  42890. ]
  42891. ))
  42892. characterMakers.push(() => makeCharacter(
  42893. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  42894. {
  42895. side: {
  42896. height: math.unit(6, "feet"),
  42897. weight: math.unit(2, "tons"),
  42898. name: "Side",
  42899. image: {
  42900. source: "./media/characters/vitaen/side.svg",
  42901. extra: 1157/617,
  42902. bottom: 122/1279
  42903. }
  42904. },
  42905. },
  42906. [
  42907. {
  42908. name: "Normal",
  42909. height: math.unit(6, "feet"),
  42910. default: true
  42911. },
  42912. ]
  42913. ))
  42914. characterMakers.push(() => makeCharacter(
  42915. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  42916. {
  42917. front: {
  42918. height: math.unit(19, "feet"),
  42919. name: "Front",
  42920. image: {
  42921. source: "./media/characters/fia-dreamweaver/front.svg",
  42922. extra: 1630/1504,
  42923. bottom: 25/1655
  42924. }
  42925. },
  42926. },
  42927. [
  42928. {
  42929. name: "Normal",
  42930. height: math.unit(19, "feet"),
  42931. default: true
  42932. },
  42933. ]
  42934. ))
  42935. characterMakers.push(() => makeCharacter(
  42936. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  42937. {
  42938. front: {
  42939. height: math.unit(5 + 4/12, "feet"),
  42940. name: "Front",
  42941. image: {
  42942. source: "./media/characters/artan/front.svg",
  42943. extra: 1618/1535,
  42944. bottom: 46/1664
  42945. }
  42946. },
  42947. back: {
  42948. height: math.unit(5 + 4/12, "feet"),
  42949. name: "Back",
  42950. image: {
  42951. source: "./media/characters/artan/back.svg",
  42952. extra: 1618/1543,
  42953. bottom: 31/1649
  42954. }
  42955. },
  42956. },
  42957. [
  42958. {
  42959. name: "Normal",
  42960. height: math.unit(5 + 4/12, "feet"),
  42961. default: true
  42962. },
  42963. ]
  42964. ))
  42965. characterMakers.push(() => makeCharacter(
  42966. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  42967. {
  42968. side: {
  42969. height: math.unit(182, "cm"),
  42970. weight: math.unit(1000, "lb"),
  42971. name: "Side",
  42972. image: {
  42973. source: "./media/characters/silver-dragon/side.svg",
  42974. extra: 710/287,
  42975. bottom: 88/798
  42976. }
  42977. },
  42978. },
  42979. [
  42980. {
  42981. name: "Normal",
  42982. height: math.unit(182, "cm"),
  42983. default: true
  42984. },
  42985. ]
  42986. ))
  42987. characterMakers.push(() => makeCharacter(
  42988. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  42989. {
  42990. side: {
  42991. height: math.unit(6 + 6/12, "feet"),
  42992. weight: math.unit(1.5, "tons"),
  42993. name: "Side",
  42994. image: {
  42995. source: "./media/characters/zephyr/side.svg",
  42996. extra: 1433/586,
  42997. bottom: 109/1542
  42998. }
  42999. },
  43000. },
  43001. [
  43002. {
  43003. name: "Normal",
  43004. height: math.unit(6 + 6/12, "feet"),
  43005. default: true
  43006. },
  43007. ]
  43008. ))
  43009. characterMakers.push(() => makeCharacter(
  43010. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  43011. {
  43012. side: {
  43013. height: math.unit(1, "feet"),
  43014. name: "Side",
  43015. image: {
  43016. source: "./media/characters/vixye/side.svg",
  43017. extra: 632/541,
  43018. bottom: 0/632
  43019. }
  43020. },
  43021. },
  43022. [
  43023. {
  43024. name: "Normal",
  43025. height: math.unit(1, "feet"),
  43026. default: true
  43027. },
  43028. {
  43029. name: "True",
  43030. height: math.unit(1e15, "multiverses")
  43031. },
  43032. ]
  43033. ))
  43034. characterMakers.push(() => makeCharacter(
  43035. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  43036. {
  43037. front: {
  43038. height: math.unit(8 + 2/12, "feet"),
  43039. weight: math.unit(650, "lb"),
  43040. name: "Front",
  43041. image: {
  43042. source: "./media/characters/darla-mac-lochlainn/front.svg",
  43043. extra: 1174/1137,
  43044. bottom: 82/1256
  43045. }
  43046. },
  43047. back: {
  43048. height: math.unit(8 + 2/12, "feet"),
  43049. weight: math.unit(650, "lb"),
  43050. name: "Back",
  43051. image: {
  43052. source: "./media/characters/darla-mac-lochlainn/back.svg",
  43053. extra: 1204/1157,
  43054. bottom: 46/1250
  43055. }
  43056. },
  43057. },
  43058. [
  43059. {
  43060. name: "Wildform",
  43061. height: math.unit(8 + 2/12, "feet"),
  43062. default: true
  43063. },
  43064. ]
  43065. ))
  43066. characterMakers.push(() => makeCharacter(
  43067. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  43068. {
  43069. front: {
  43070. height: math.unit(18, "feet"),
  43071. name: "Front",
  43072. image: {
  43073. source: "./media/characters/cyphin/front.svg",
  43074. extra: 970/886,
  43075. bottom: 42/1012
  43076. }
  43077. },
  43078. back: {
  43079. height: math.unit(18, "feet"),
  43080. name: "Back",
  43081. image: {
  43082. source: "./media/characters/cyphin/back.svg",
  43083. extra: 1009/894,
  43084. bottom: 24/1033
  43085. }
  43086. },
  43087. head: {
  43088. height: math.unit(5.05, "feet"),
  43089. name: "Head",
  43090. image: {
  43091. source: "./media/characters/cyphin/head.svg"
  43092. }
  43093. },
  43094. tailbud: {
  43095. height: math.unit(5, "feet"),
  43096. name: "Tailbud",
  43097. image: {
  43098. source: "./media/characters/cyphin/tailbud.svg"
  43099. }
  43100. },
  43101. },
  43102. [
  43103. ]
  43104. ))
  43105. characterMakers.push(() => makeCharacter(
  43106. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  43107. {
  43108. side: {
  43109. height: math.unit(10, "feet"),
  43110. weight: math.unit(6, "tons"),
  43111. name: "Side",
  43112. image: {
  43113. source: "./media/characters/raijin/side.svg",
  43114. extra: 1529/613,
  43115. bottom: 337/1866
  43116. }
  43117. },
  43118. },
  43119. [
  43120. {
  43121. name: "Normal",
  43122. height: math.unit(10, "feet"),
  43123. default: true
  43124. },
  43125. ]
  43126. ))
  43127. characterMakers.push(() => makeCharacter(
  43128. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  43129. {
  43130. side: {
  43131. height: math.unit(9, "feet"),
  43132. name: "Side",
  43133. image: {
  43134. source: "./media/characters/nilghais/side.svg",
  43135. extra: 1047/744,
  43136. bottom: 91/1138
  43137. }
  43138. },
  43139. head: {
  43140. height: math.unit(3.14, "feet"),
  43141. name: "Head",
  43142. image: {
  43143. source: "./media/characters/nilghais/head.svg"
  43144. }
  43145. },
  43146. mouth: {
  43147. height: math.unit(4.6, "feet"),
  43148. name: "Mouth",
  43149. image: {
  43150. source: "./media/characters/nilghais/mouth.svg"
  43151. }
  43152. },
  43153. wings: {
  43154. height: math.unit(24, "feet"),
  43155. name: "Wings",
  43156. image: {
  43157. source: "./media/characters/nilghais/wings.svg"
  43158. }
  43159. },
  43160. ass: {
  43161. height: math.unit(6.12, "feet"),
  43162. name: "Ass",
  43163. image: {
  43164. source: "./media/characters/nilghais/ass.svg"
  43165. }
  43166. },
  43167. },
  43168. [
  43169. {
  43170. name: "Normal",
  43171. height: math.unit(9, "feet"),
  43172. default: true
  43173. },
  43174. ]
  43175. ))
  43176. characterMakers.push(() => makeCharacter(
  43177. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  43178. {
  43179. regular: {
  43180. height: math.unit(16 + 2/12, "feet"),
  43181. weight: math.unit(2300, "lb"),
  43182. name: "Regular",
  43183. image: {
  43184. source: "./media/characters/zolgar/regular.svg",
  43185. extra: 1246/1004,
  43186. bottom: 124/1370
  43187. }
  43188. },
  43189. boxers: {
  43190. height: math.unit(16 + 2/12, "feet"),
  43191. weight: math.unit(2300, "lb"),
  43192. name: "Boxers",
  43193. image: {
  43194. source: "./media/characters/zolgar/boxers.svg",
  43195. extra: 1246/1004,
  43196. bottom: 124/1370
  43197. }
  43198. },
  43199. armored: {
  43200. height: math.unit(16 + 2/12, "feet"),
  43201. weight: math.unit(2300, "lb"),
  43202. name: "Armored",
  43203. image: {
  43204. source: "./media/characters/zolgar/armored.svg",
  43205. extra: 1246/1004,
  43206. bottom: 124/1370
  43207. }
  43208. },
  43209. goth: {
  43210. height: math.unit(16 + 2/12, "feet"),
  43211. weight: math.unit(2300, "lb"),
  43212. name: "Goth",
  43213. image: {
  43214. source: "./media/characters/zolgar/goth.svg",
  43215. extra: 1246/1004,
  43216. bottom: 124/1370
  43217. }
  43218. },
  43219. },
  43220. [
  43221. {
  43222. name: "Shrunken Down",
  43223. height: math.unit(9 + 2/12, "feet")
  43224. },
  43225. {
  43226. name: "Normal",
  43227. height: math.unit(16 + 2/12, "feet"),
  43228. default: true
  43229. },
  43230. ]
  43231. ))
  43232. characterMakers.push(() => makeCharacter(
  43233. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  43234. {
  43235. front: {
  43236. height: math.unit(6, "feet"),
  43237. weight: math.unit(168, "lb"),
  43238. name: "Front",
  43239. image: {
  43240. source: "./media/characters/luca/front.svg",
  43241. extra: 841/667,
  43242. bottom: 102/943
  43243. }
  43244. },
  43245. },
  43246. [
  43247. {
  43248. name: "Normal",
  43249. height: math.unit(6, "feet"),
  43250. default: true
  43251. },
  43252. ]
  43253. ))
  43254. characterMakers.push(() => makeCharacter(
  43255. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  43256. {
  43257. side: {
  43258. height: math.unit(7 + 3/12, "feet"),
  43259. weight: math.unit(312, "lb"),
  43260. name: "Side",
  43261. image: {
  43262. source: "./media/characters/zezo/side.svg",
  43263. extra: 1192/1067,
  43264. bottom: 63/1255
  43265. }
  43266. },
  43267. },
  43268. [
  43269. {
  43270. name: "Normal",
  43271. height: math.unit(7 + 3/12, "feet"),
  43272. default: true
  43273. },
  43274. ]
  43275. ))
  43276. characterMakers.push(() => makeCharacter(
  43277. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  43278. {
  43279. front: {
  43280. height: math.unit(5 + 5/12, "feet"),
  43281. weight: math.unit(170, "lb"),
  43282. name: "Front",
  43283. image: {
  43284. source: "./media/characters/mayso/front.svg",
  43285. extra: 1215/1108,
  43286. bottom: 16/1231
  43287. }
  43288. },
  43289. },
  43290. [
  43291. {
  43292. name: "Normal",
  43293. height: math.unit(5 + 5/12, "feet"),
  43294. default: true
  43295. },
  43296. ]
  43297. ))
  43298. characterMakers.push(() => makeCharacter(
  43299. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  43300. {
  43301. front: {
  43302. height: math.unit(4 + 3/12, "feet"),
  43303. weight: math.unit(80, "lb"),
  43304. name: "Front",
  43305. image: {
  43306. source: "./media/characters/hess/front.svg",
  43307. extra: 1200/1123,
  43308. bottom: 16/1216
  43309. }
  43310. },
  43311. },
  43312. [
  43313. {
  43314. name: "Normal",
  43315. height: math.unit(4 + 3/12, "feet"),
  43316. default: true
  43317. },
  43318. ]
  43319. ))
  43320. characterMakers.push(() => makeCharacter(
  43321. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  43322. {
  43323. front: {
  43324. height: math.unit(1.9, "meters"),
  43325. name: "Front",
  43326. image: {
  43327. source: "./media/characters/ashgar/front.svg",
  43328. extra: 1177/1146,
  43329. bottom: 99/1276
  43330. }
  43331. },
  43332. back: {
  43333. height: math.unit(1.9, "meters"),
  43334. name: "Back",
  43335. image: {
  43336. source: "./media/characters/ashgar/back.svg",
  43337. extra: 1201/1183,
  43338. bottom: 53/1254
  43339. }
  43340. },
  43341. feral: {
  43342. height: math.unit(1.4, "meters"),
  43343. name: "Feral",
  43344. image: {
  43345. source: "./media/characters/ashgar/feral.svg",
  43346. extra: 370/345,
  43347. bottom: 45/415
  43348. }
  43349. },
  43350. },
  43351. [
  43352. {
  43353. name: "Normal",
  43354. height: math.unit(1.9, "meters"),
  43355. default: true
  43356. },
  43357. ]
  43358. ))
  43359. characterMakers.push(() => makeCharacter(
  43360. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  43361. {
  43362. regular: {
  43363. height: math.unit(6, "feet"),
  43364. weight: math.unit(220, "lb"),
  43365. name: "Regular",
  43366. image: {
  43367. source: "./media/characters/phillip/regular.svg",
  43368. extra: 1373/1277,
  43369. bottom: 75/1448
  43370. }
  43371. },
  43372. dressed: {
  43373. height: math.unit(6, "feet"),
  43374. weight: math.unit(220, "lb"),
  43375. name: "Dressed",
  43376. image: {
  43377. source: "./media/characters/phillip/dressed.svg",
  43378. extra: 1373/1277,
  43379. bottom: 75/1448
  43380. }
  43381. },
  43382. paw: {
  43383. height: math.unit(1.44, "feet"),
  43384. name: "Paw",
  43385. image: {
  43386. source: "./media/characters/phillip/paw.svg"
  43387. }
  43388. },
  43389. },
  43390. [
  43391. {
  43392. name: "Normal",
  43393. height: math.unit(6, "feet"),
  43394. default: true
  43395. },
  43396. ]
  43397. ))
  43398. characterMakers.push(() => makeCharacter(
  43399. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  43400. {
  43401. side: {
  43402. height: math.unit(42, "feet"),
  43403. name: "Side",
  43404. image: {
  43405. source: "./media/characters/uvula/side.svg",
  43406. extra: 683/586,
  43407. bottom: 60/743
  43408. }
  43409. },
  43410. front: {
  43411. height: math.unit(42, "feet"),
  43412. name: "Front",
  43413. image: {
  43414. source: "./media/characters/uvula/front.svg",
  43415. extra: 705/613,
  43416. bottom: 54/759
  43417. }
  43418. },
  43419. maw: {
  43420. height: math.unit(23.5, "feet"),
  43421. name: "Maw",
  43422. image: {
  43423. source: "./media/characters/uvula/maw.svg"
  43424. }
  43425. },
  43426. },
  43427. [
  43428. {
  43429. name: "Original Size",
  43430. height: math.unit(14, "inches")
  43431. },
  43432. {
  43433. name: "Human Size",
  43434. height: math.unit(6, "feet")
  43435. },
  43436. {
  43437. name: "Big",
  43438. height: math.unit(42, "feet"),
  43439. default: true
  43440. },
  43441. {
  43442. name: "Bigger",
  43443. height: math.unit(100, "feet")
  43444. },
  43445. ]
  43446. ))
  43447. characterMakers.push(() => makeCharacter(
  43448. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  43449. {
  43450. front: {
  43451. height: math.unit(5 + 11/12, "feet"),
  43452. name: "Front",
  43453. image: {
  43454. source: "./media/characters/lannah/front.svg",
  43455. extra: 1208/1113,
  43456. bottom: 97/1305
  43457. }
  43458. },
  43459. },
  43460. [
  43461. {
  43462. name: "Normal",
  43463. height: math.unit(5 + 11/12, "feet"),
  43464. default: true
  43465. },
  43466. ]
  43467. ))
  43468. characterMakers.push(() => makeCharacter(
  43469. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  43470. {
  43471. front: {
  43472. height: math.unit(6 + 3/12, "feet"),
  43473. weight: math.unit(3.5, "tons"),
  43474. name: "Front",
  43475. image: {
  43476. source: "./media/characters/emberflame/front.svg",
  43477. extra: 1198/672,
  43478. bottom: 82/1280
  43479. }
  43480. },
  43481. side: {
  43482. height: math.unit(6 + 3/12, "feet"),
  43483. weight: math.unit(3.5, "tons"),
  43484. name: "Side",
  43485. image: {
  43486. source: "./media/characters/emberflame/side.svg",
  43487. extra: 938/527,
  43488. bottom: 56/994
  43489. }
  43490. },
  43491. },
  43492. [
  43493. {
  43494. name: "Normal",
  43495. height: math.unit(6 + 3/12, "feet"),
  43496. default: true
  43497. },
  43498. ]
  43499. ))
  43500. characterMakers.push(() => makeCharacter(
  43501. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  43502. {
  43503. side: {
  43504. height: math.unit(17.5, "feet"),
  43505. weight: math.unit(35, "tons"),
  43506. name: "Side",
  43507. image: {
  43508. source: "./media/characters/sophie-ambrose/side.svg",
  43509. extra: 1573/1242,
  43510. bottom: 71/1644
  43511. }
  43512. },
  43513. maw: {
  43514. height: math.unit(7.4, "feet"),
  43515. name: "Maw",
  43516. image: {
  43517. source: "./media/characters/sophie-ambrose/maw.svg"
  43518. }
  43519. },
  43520. },
  43521. [
  43522. {
  43523. name: "Normal",
  43524. height: math.unit(17.5, "feet"),
  43525. default: true
  43526. },
  43527. ]
  43528. ))
  43529. characterMakers.push(() => makeCharacter(
  43530. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  43531. {
  43532. front: {
  43533. height: math.unit(280, "feet"),
  43534. weight: math.unit(550, "tons"),
  43535. name: "Front",
  43536. image: {
  43537. source: "./media/characters/king-mugi/front.svg",
  43538. extra: 1102/947,
  43539. bottom: 104/1206
  43540. }
  43541. },
  43542. },
  43543. [
  43544. {
  43545. name: "King Mugi",
  43546. height: math.unit(280, "feet"),
  43547. default: true
  43548. },
  43549. ]
  43550. ))
  43551. characterMakers.push(() => makeCharacter(
  43552. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  43553. {
  43554. front: {
  43555. height: math.unit(64, "meters"),
  43556. name: "Front",
  43557. image: {
  43558. source: "./media/characters/nova-fox/front.svg",
  43559. extra: 1310/1246,
  43560. bottom: 65/1375
  43561. }
  43562. },
  43563. },
  43564. [
  43565. {
  43566. name: "Macro",
  43567. height: math.unit(64, "meters"),
  43568. default: true
  43569. },
  43570. ]
  43571. ))
  43572. characterMakers.push(() => makeCharacter(
  43573. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  43574. {
  43575. front: {
  43576. height: math.unit(6 + 3/12, "feet"),
  43577. weight: math.unit(170, "lb"),
  43578. name: "Front",
  43579. image: {
  43580. source: "./media/characters/sam-bat/front.svg",
  43581. extra: 1601/1411,
  43582. bottom: 125/1726
  43583. }
  43584. },
  43585. back: {
  43586. height: math.unit(6 + 3/12, "feet"),
  43587. weight: math.unit(170, "lb"),
  43588. name: "Back",
  43589. image: {
  43590. source: "./media/characters/sam-bat/back.svg",
  43591. extra: 1577/1405,
  43592. bottom: 58/1635
  43593. }
  43594. },
  43595. },
  43596. [
  43597. {
  43598. name: "Normal",
  43599. height: math.unit(6 + 3/12, "feet"),
  43600. default: true
  43601. },
  43602. ]
  43603. ))
  43604. characterMakers.push(() => makeCharacter(
  43605. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  43606. {
  43607. front: {
  43608. height: math.unit(59, "feet"),
  43609. weight: math.unit(40000, "lb"),
  43610. name: "Front",
  43611. image: {
  43612. source: "./media/characters/inari/front.svg",
  43613. extra: 1884/1350,
  43614. bottom: 95/1979
  43615. }
  43616. },
  43617. },
  43618. [
  43619. {
  43620. name: "Gigantamax",
  43621. height: math.unit(59, "feet"),
  43622. default: true
  43623. },
  43624. ]
  43625. ))
  43626. characterMakers.push(() => makeCharacter(
  43627. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  43628. {
  43629. front: {
  43630. height: math.unit(5 + 8/12, "feet"),
  43631. name: "Front",
  43632. image: {
  43633. source: "./media/characters/elizabeth/front.svg",
  43634. extra: 1395/1298,
  43635. bottom: 54/1449
  43636. }
  43637. },
  43638. mouth: {
  43639. height: math.unit(1.97, "feet"),
  43640. name: "Mouth",
  43641. image: {
  43642. source: "./media/characters/elizabeth/mouth.svg"
  43643. }
  43644. },
  43645. foot: {
  43646. height: math.unit(1.17, "feet"),
  43647. name: "Foot",
  43648. image: {
  43649. source: "./media/characters/elizabeth/foot.svg"
  43650. }
  43651. },
  43652. },
  43653. [
  43654. {
  43655. name: "Normal",
  43656. height: math.unit(5 + 8/12, "feet"),
  43657. default: true
  43658. },
  43659. {
  43660. name: "Minimacro",
  43661. height: math.unit(18, "feet")
  43662. },
  43663. {
  43664. name: "Macro",
  43665. height: math.unit(180, "feet")
  43666. },
  43667. ]
  43668. ))
  43669. characterMakers.push(() => makeCharacter(
  43670. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  43671. {
  43672. front: {
  43673. height: math.unit(5 + 2/12, "feet"),
  43674. name: "Front",
  43675. image: {
  43676. source: "./media/characters/october-gossamer/front.svg",
  43677. extra: 505/454,
  43678. bottom: 7/512
  43679. }
  43680. },
  43681. back: {
  43682. height: math.unit(5 + 2/12, "feet"),
  43683. name: "Back",
  43684. image: {
  43685. source: "./media/characters/october-gossamer/back.svg",
  43686. extra: 501/454,
  43687. bottom: 11/512
  43688. }
  43689. },
  43690. },
  43691. [
  43692. {
  43693. name: "Normal",
  43694. height: math.unit(5 + 2/12, "feet"),
  43695. default: true
  43696. },
  43697. ]
  43698. ))
  43699. characterMakers.push(() => makeCharacter(
  43700. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  43701. {
  43702. front: {
  43703. height: math.unit(5, "feet"),
  43704. name: "Front",
  43705. image: {
  43706. source: "./media/characters/epiglottis/front.svg",
  43707. extra: 923/849,
  43708. bottom: 17/940
  43709. }
  43710. },
  43711. },
  43712. [
  43713. {
  43714. name: "Original Size",
  43715. height: math.unit(10, "inches")
  43716. },
  43717. {
  43718. name: "Human Size",
  43719. height: math.unit(5, "feet"),
  43720. default: true
  43721. },
  43722. {
  43723. name: "Big",
  43724. height: math.unit(25, "feet")
  43725. },
  43726. {
  43727. name: "Bigger",
  43728. height: math.unit(50, "feet")
  43729. },
  43730. {
  43731. name: "oh lawd",
  43732. height: math.unit(75, "feet")
  43733. },
  43734. ]
  43735. ))
  43736. characterMakers.push(() => makeCharacter(
  43737. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  43738. {
  43739. front: {
  43740. height: math.unit(2 + 4/12, "feet"),
  43741. weight: math.unit(60, "lb"),
  43742. name: "Front",
  43743. image: {
  43744. source: "./media/characters/lerm/front.svg",
  43745. extra: 796/790,
  43746. bottom: 79/875
  43747. }
  43748. },
  43749. },
  43750. [
  43751. {
  43752. name: "Normal",
  43753. height: math.unit(2 + 4/12, "feet"),
  43754. default: true
  43755. },
  43756. ]
  43757. ))
  43758. characterMakers.push(() => makeCharacter(
  43759. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  43760. {
  43761. front: {
  43762. height: math.unit(5.5, "feet"),
  43763. weight: math.unit(130, "lb"),
  43764. name: "Front",
  43765. image: {
  43766. source: "./media/characters/xena-nebadon/front.svg",
  43767. extra: 1828/1730,
  43768. bottom: 79/1907
  43769. }
  43770. },
  43771. },
  43772. [
  43773. {
  43774. name: "Tiny Puppy",
  43775. height: math.unit(3, "inches")
  43776. },
  43777. {
  43778. name: "Normal",
  43779. height: math.unit(5.5, "feet"),
  43780. default: true
  43781. },
  43782. {
  43783. name: "Lotta Lady",
  43784. height: math.unit(12, "feet")
  43785. },
  43786. {
  43787. name: "Pretty Big",
  43788. height: math.unit(100, "feet")
  43789. },
  43790. {
  43791. name: "Big",
  43792. height: math.unit(500, "feet")
  43793. },
  43794. {
  43795. name: "Skyscraper Toys",
  43796. height: math.unit(2500, "feet")
  43797. },
  43798. {
  43799. name: "Plane Catcher",
  43800. height: math.unit(8, "miles")
  43801. },
  43802. {
  43803. name: "Planet Toys",
  43804. height: math.unit(15, "earths")
  43805. },
  43806. {
  43807. name: "Stardust",
  43808. height: math.unit(0.25, "galaxies")
  43809. },
  43810. {
  43811. name: "Snacks",
  43812. height: math.unit(70, "universes")
  43813. },
  43814. ]
  43815. ))
  43816. characterMakers.push(() => makeCharacter(
  43817. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  43818. {
  43819. front: {
  43820. height: math.unit(1.6, "meters"),
  43821. weight: math.unit(60, "kg"),
  43822. name: "Front",
  43823. image: {
  43824. source: "./media/characters/bounty/front.svg",
  43825. extra: 1426/1308,
  43826. bottom: 15/1441
  43827. }
  43828. },
  43829. back: {
  43830. height: math.unit(1.6, "meters"),
  43831. weight: math.unit(60, "kg"),
  43832. name: "Back",
  43833. image: {
  43834. source: "./media/characters/bounty/back.svg",
  43835. extra: 1417/1307,
  43836. bottom: 8/1425
  43837. }
  43838. },
  43839. },
  43840. [
  43841. {
  43842. name: "Normal",
  43843. height: math.unit(1.6, "meters"),
  43844. default: true
  43845. },
  43846. {
  43847. name: "Macro",
  43848. height: math.unit(300, "meters")
  43849. },
  43850. ]
  43851. ))
  43852. characterMakers.push(() => makeCharacter(
  43853. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  43854. {
  43855. front: {
  43856. height: math.unit(2 + 8/12, "feet"),
  43857. weight: math.unit(15, "lb"),
  43858. name: "Front",
  43859. image: {
  43860. source: "./media/characters/mochi/front.svg",
  43861. extra: 1022/852,
  43862. bottom: 435/1457
  43863. }
  43864. },
  43865. back: {
  43866. height: math.unit(2 + 8/12, "feet"),
  43867. weight: math.unit(15, "lb"),
  43868. name: "Back",
  43869. image: {
  43870. source: "./media/characters/mochi/back.svg",
  43871. extra: 1335/1119,
  43872. bottom: 39/1374
  43873. }
  43874. },
  43875. bird: {
  43876. height: math.unit(2 + 8/12, "feet"),
  43877. weight: math.unit(15, "lb"),
  43878. name: "Bird",
  43879. image: {
  43880. source: "./media/characters/mochi/bird.svg",
  43881. extra: 1251/1113,
  43882. bottom: 178/1429
  43883. }
  43884. },
  43885. kaiju: {
  43886. height: math.unit(154, "feet"),
  43887. weight: math.unit(1e7, "lb"),
  43888. name: "Kaiju",
  43889. image: {
  43890. source: "./media/characters/mochi/kaiju.svg",
  43891. extra: 460/324,
  43892. bottom: 40/500
  43893. }
  43894. },
  43895. head: {
  43896. height: math.unit(1.21, "feet"),
  43897. name: "Head",
  43898. image: {
  43899. source: "./media/characters/mochi/head.svg"
  43900. }
  43901. },
  43902. alternateTail: {
  43903. height: math.unit(2 + 8/12, "feet"),
  43904. weight: math.unit(45, "lb"),
  43905. name: "Alternate Tail",
  43906. image: {
  43907. source: "./media/characters/mochi/alternate-tail.svg",
  43908. extra: 139/76,
  43909. bottom: 45/184
  43910. }
  43911. },
  43912. },
  43913. [
  43914. {
  43915. name: "Micro",
  43916. height: math.unit(2, "inches")
  43917. },
  43918. {
  43919. name: "Normal",
  43920. height: math.unit(2 + 8/12, "feet"),
  43921. default: true
  43922. },
  43923. {
  43924. name: "Macro",
  43925. height: math.unit(106, "feet")
  43926. },
  43927. ]
  43928. ))
  43929. characterMakers.push(() => makeCharacter(
  43930. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  43931. {
  43932. front: {
  43933. height: math.unit(5.67, "feet"),
  43934. weight: math.unit(135, "lb"),
  43935. name: "Front",
  43936. image: {
  43937. source: "./media/characters/sarel/front.svg",
  43938. extra: 865/788,
  43939. bottom: 97/962
  43940. }
  43941. },
  43942. back: {
  43943. height: math.unit(5.67, "feet"),
  43944. weight: math.unit(135, "lb"),
  43945. name: "Back",
  43946. image: {
  43947. source: "./media/characters/sarel/back.svg",
  43948. extra: 857/777,
  43949. bottom: 32/889
  43950. }
  43951. },
  43952. chozoan: {
  43953. height: math.unit(5.67, "feet"),
  43954. weight: math.unit(135, "lb"),
  43955. name: "Chozoan",
  43956. image: {
  43957. source: "./media/characters/sarel/chozoan.svg",
  43958. extra: 865/788,
  43959. bottom: 97/962
  43960. }
  43961. },
  43962. current: {
  43963. height: math.unit(5.67, "feet"),
  43964. weight: math.unit(135, "lb"),
  43965. name: "Current",
  43966. image: {
  43967. source: "./media/characters/sarel/current.svg",
  43968. extra: 865/788,
  43969. bottom: 97/962
  43970. }
  43971. },
  43972. head: {
  43973. height: math.unit(1.77, "feet"),
  43974. name: "Head",
  43975. image: {
  43976. source: "./media/characters/sarel/head.svg"
  43977. }
  43978. },
  43979. claws: {
  43980. height: math.unit(1.8, "feet"),
  43981. name: "Claws",
  43982. image: {
  43983. source: "./media/characters/sarel/claws.svg"
  43984. }
  43985. },
  43986. clawsAlt: {
  43987. height: math.unit(1.8, "feet"),
  43988. name: "Claws-alt",
  43989. image: {
  43990. source: "./media/characters/sarel/claws-alt.svg"
  43991. }
  43992. },
  43993. },
  43994. [
  43995. {
  43996. name: "Normal",
  43997. height: math.unit(5.67, "feet"),
  43998. default: true
  43999. },
  44000. ]
  44001. ))
  44002. characterMakers.push(() => makeCharacter(
  44003. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  44004. {
  44005. front: {
  44006. height: math.unit(5500, "feet"),
  44007. name: "Front",
  44008. image: {
  44009. source: "./media/characters/alyonia/front.svg",
  44010. extra: 1200/1135,
  44011. bottom: 29/1229
  44012. }
  44013. },
  44014. back: {
  44015. height: math.unit(5500, "feet"),
  44016. name: "Back",
  44017. image: {
  44018. source: "./media/characters/alyonia/back.svg",
  44019. extra: 1205/1138,
  44020. bottom: 10/1215
  44021. }
  44022. },
  44023. },
  44024. [
  44025. {
  44026. name: "Small",
  44027. height: math.unit(10, "feet")
  44028. },
  44029. {
  44030. name: "Macro",
  44031. height: math.unit(500, "feet")
  44032. },
  44033. {
  44034. name: "Mega Macro",
  44035. height: math.unit(5500, "feet"),
  44036. default: true
  44037. },
  44038. {
  44039. name: "Mega Macro+",
  44040. height: math.unit(500000, "feet")
  44041. },
  44042. {
  44043. name: "Giga Macro",
  44044. height: math.unit(3000, "miles")
  44045. },
  44046. {
  44047. name: "Tera Macro",
  44048. height: math.unit(2.8e6, "miles")
  44049. },
  44050. {
  44051. name: "Galactic",
  44052. height: math.unit(120000, "lightyears")
  44053. },
  44054. ]
  44055. ))
  44056. characterMakers.push(() => makeCharacter(
  44057. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  44058. {
  44059. werewolf: {
  44060. height: math.unit(8, "feet"),
  44061. weight: math.unit(425, "lb"),
  44062. name: "Werewolf",
  44063. image: {
  44064. source: "./media/characters/autumn/werewolf.svg",
  44065. extra: 2154/2031,
  44066. bottom: 160/2314
  44067. }
  44068. },
  44069. human: {
  44070. height: math.unit(5 + 8/12, "feet"),
  44071. weight: math.unit(150, "lb"),
  44072. name: "Human",
  44073. image: {
  44074. source: "./media/characters/autumn/human.svg",
  44075. extra: 1200/1149,
  44076. bottom: 30/1230
  44077. }
  44078. },
  44079. },
  44080. [
  44081. {
  44082. name: "Normal",
  44083. height: math.unit(8, "feet"),
  44084. default: true
  44085. },
  44086. ]
  44087. ))
  44088. characterMakers.push(() => makeCharacter(
  44089. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  44090. {
  44091. front: {
  44092. height: math.unit(8 + 5/12, "feet"),
  44093. weight: math.unit(825, "lb"),
  44094. name: "Front",
  44095. image: {
  44096. source: "./media/characters/cobalt-charizard/front.svg",
  44097. extra: 1268/1155,
  44098. bottom: 122/1390
  44099. }
  44100. },
  44101. side: {
  44102. height: math.unit(8 + 5/12, "feet"),
  44103. weight: math.unit(825, "lb"),
  44104. name: "Side",
  44105. image: {
  44106. source: "./media/characters/cobalt-charizard/side.svg",
  44107. extra: 1348/1257,
  44108. bottom: 58/1406
  44109. }
  44110. },
  44111. gMax: {
  44112. height: math.unit(134 + 11/12, "feet"),
  44113. name: "G-Max",
  44114. image: {
  44115. source: "./media/characters/cobalt-charizard/g-max.svg",
  44116. extra: 1835/1541,
  44117. bottom: 151/1986
  44118. }
  44119. },
  44120. },
  44121. [
  44122. {
  44123. name: "Normal",
  44124. height: math.unit(8 + 5/12, "feet"),
  44125. default: true
  44126. },
  44127. ]
  44128. ))
  44129. characterMakers.push(() => makeCharacter(
  44130. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  44131. {
  44132. front: {
  44133. height: math.unit(6 + 3/12, "feet"),
  44134. weight: math.unit(210, "lb"),
  44135. name: "Front",
  44136. image: {
  44137. source: "./media/characters/stella/front.svg",
  44138. extra: 3549/3335,
  44139. bottom: 51/3600
  44140. }
  44141. },
  44142. },
  44143. [
  44144. {
  44145. name: "Normal",
  44146. height: math.unit(6 + 3/12, "feet"),
  44147. default: true
  44148. },
  44149. ]
  44150. ))
  44151. characterMakers.push(() => makeCharacter(
  44152. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  44153. {
  44154. front: {
  44155. height: math.unit(5, "feet"),
  44156. weight: math.unit(90, "lb"),
  44157. name: "Front",
  44158. image: {
  44159. source: "./media/characters/riley-bishop/front.svg",
  44160. extra: 1450/1428,
  44161. bottom: 152/1602
  44162. }
  44163. },
  44164. },
  44165. [
  44166. {
  44167. name: "Normal",
  44168. height: math.unit(5, "feet"),
  44169. default: true
  44170. },
  44171. ]
  44172. ))
  44173. characterMakers.push(() => makeCharacter(
  44174. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  44175. {
  44176. side: {
  44177. height: math.unit(8 + 2/12, "feet"),
  44178. weight: math.unit(500, "kg"),
  44179. name: "Side",
  44180. image: {
  44181. source: "./media/characters/theo-arcanine/side.svg",
  44182. extra: 1342/1074,
  44183. bottom: 111/1453
  44184. }
  44185. },
  44186. },
  44187. [
  44188. {
  44189. name: "Normal",
  44190. height: math.unit(8 + 2/12, "feet"),
  44191. default: true
  44192. },
  44193. ]
  44194. ))
  44195. characterMakers.push(() => makeCharacter(
  44196. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  44197. {
  44198. front: {
  44199. height: math.unit(4, "feet"),
  44200. name: "Front",
  44201. image: {
  44202. source: "./media/characters/kali/front.svg",
  44203. extra: 1921/1357,
  44204. bottom: 70/1991
  44205. }
  44206. },
  44207. },
  44208. [
  44209. {
  44210. name: "Normal",
  44211. height: math.unit(4, "feet"),
  44212. default: true
  44213. },
  44214. {
  44215. name: "Macro",
  44216. height: math.unit(32, "meters")
  44217. },
  44218. {
  44219. name: "Macro+",
  44220. height: math.unit(150, "meters")
  44221. },
  44222. {
  44223. name: "Megamacro",
  44224. height: math.unit(7500, "meters")
  44225. },
  44226. {
  44227. name: "Megamacro+",
  44228. height: math.unit(80, "kilometers")
  44229. },
  44230. ]
  44231. ))
  44232. characterMakers.push(() => makeCharacter(
  44233. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  44234. {
  44235. side: {
  44236. height: math.unit(5 + 11/12, "feet"),
  44237. weight: math.unit(236, "lb"),
  44238. name: "Side",
  44239. image: {
  44240. source: "./media/characters/gapp/side.svg",
  44241. extra: 775/340,
  44242. bottom: 58/833
  44243. }
  44244. },
  44245. mouth: {
  44246. height: math.unit(2.98, "feet"),
  44247. name: "Mouth",
  44248. image: {
  44249. source: "./media/characters/gapp/mouth.svg"
  44250. }
  44251. },
  44252. },
  44253. [
  44254. {
  44255. name: "Normal",
  44256. height: math.unit(5 + 1/12, "feet"),
  44257. default: true
  44258. },
  44259. ]
  44260. ))
  44261. characterMakers.push(() => makeCharacter(
  44262. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  44263. {
  44264. front: {
  44265. height: math.unit(6, "feet"),
  44266. name: "Front",
  44267. image: {
  44268. source: "./media/characters/persephone/front.svg",
  44269. extra: 1895/1717,
  44270. bottom: 96/1991
  44271. }
  44272. },
  44273. back: {
  44274. height: math.unit(6, "feet"),
  44275. name: "Back",
  44276. image: {
  44277. source: "./media/characters/persephone/back.svg",
  44278. extra: 1868/1679,
  44279. bottom: 26/1894
  44280. }
  44281. },
  44282. casual: {
  44283. height: math.unit(6, "feet"),
  44284. name: "Casual",
  44285. image: {
  44286. source: "./media/characters/persephone/casual.svg",
  44287. extra: 1713/1541,
  44288. bottom: 76/1789
  44289. }
  44290. },
  44291. },
  44292. [
  44293. {
  44294. name: "Human Size",
  44295. height: math.unit(6, "feet")
  44296. },
  44297. {
  44298. name: "Big Steppy",
  44299. height: math.unit(600, "meters"),
  44300. default: true
  44301. },
  44302. {
  44303. name: "Galaxy Brain",
  44304. height: math.unit(1, "zettameter")
  44305. },
  44306. ]
  44307. ))
  44308. characterMakers.push(() => makeCharacter(
  44309. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  44310. {
  44311. front: {
  44312. height: math.unit(1.85, "meters"),
  44313. name: "Front",
  44314. image: {
  44315. source: "./media/characters/riley-foxthing/front.svg",
  44316. extra: 1495/1354,
  44317. bottom: 122/1617
  44318. }
  44319. },
  44320. frontAlt: {
  44321. height: math.unit(1.85, "meters"),
  44322. name: "Front (Alt)",
  44323. image: {
  44324. source: "./media/characters/riley-foxthing/front-alt.svg",
  44325. extra: 1572/1389,
  44326. bottom: 116/1688
  44327. }
  44328. },
  44329. },
  44330. [
  44331. {
  44332. name: "Normal Sized",
  44333. height: math.unit(1.85, "meters"),
  44334. default: true
  44335. },
  44336. {
  44337. name: "Quite Sizable",
  44338. height: math.unit(5, "meters")
  44339. },
  44340. {
  44341. name: "Rather Large",
  44342. height: math.unit(20, "meters")
  44343. },
  44344. {
  44345. name: "Macro",
  44346. height: math.unit(450, "meters")
  44347. },
  44348. {
  44349. name: "Giga",
  44350. height: math.unit(5, "km")
  44351. },
  44352. ]
  44353. ))
  44354. characterMakers.push(() => makeCharacter(
  44355. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  44356. {
  44357. front: {
  44358. height: math.unit(6, "feet"),
  44359. weight: math.unit(200, "lb"),
  44360. name: "Front",
  44361. image: {
  44362. source: "./media/characters/blizzard/front.svg",
  44363. extra: 1136/990,
  44364. bottom: 136/1272
  44365. }
  44366. },
  44367. back: {
  44368. height: math.unit(6, "feet"),
  44369. weight: math.unit(200, "lb"),
  44370. name: "Back",
  44371. image: {
  44372. source: "./media/characters/blizzard/back.svg",
  44373. extra: 1175/1034,
  44374. bottom: 97/1272
  44375. }
  44376. },
  44377. sitting: {
  44378. height: math.unit(3.725, "feet"),
  44379. weight: math.unit(200, "lb"),
  44380. name: "Sitting",
  44381. image: {
  44382. source: "./media/characters/blizzard/sitting.svg",
  44383. extra: 581/485,
  44384. bottom: 90/671
  44385. }
  44386. },
  44387. frontWizard: {
  44388. height: math.unit(7.9, "feet"),
  44389. weight: math.unit(200, "lb"),
  44390. name: "Front (Wizard)",
  44391. image: {
  44392. source: "./media/characters/blizzard/front-wizard.svg"
  44393. }
  44394. },
  44395. backWizard: {
  44396. height: math.unit(7.9, "feet"),
  44397. weight: math.unit(200, "lb"),
  44398. name: "Back (Wizard)",
  44399. image: {
  44400. source: "./media/characters/blizzard/back-wizard.svg"
  44401. }
  44402. },
  44403. frontNsfw: {
  44404. height: math.unit(6, "feet"),
  44405. weight: math.unit(200, "lb"),
  44406. name: "Front (NSFW)",
  44407. image: {
  44408. source: "./media/characters/blizzard/front-nsfw.svg",
  44409. extra: 1136/990,
  44410. bottom: 136/1272
  44411. }
  44412. },
  44413. backNsfw: {
  44414. height: math.unit(6, "feet"),
  44415. weight: math.unit(200, "lb"),
  44416. name: "Back (NSFW)",
  44417. image: {
  44418. source: "./media/characters/blizzard/back-nsfw.svg",
  44419. extra: 1175/1034,
  44420. bottom: 97/1272
  44421. }
  44422. },
  44423. sittingNsfw: {
  44424. height: math.unit(3.725, "feet"),
  44425. weight: math.unit(200, "lb"),
  44426. name: "Sitting (NSFW)",
  44427. image: {
  44428. source: "./media/characters/blizzard/sitting-nsfw.svg",
  44429. extra: 581/485,
  44430. bottom: 90/671
  44431. }
  44432. },
  44433. wizardFrontNsfw: {
  44434. height: math.unit(7.9, "feet"),
  44435. weight: math.unit(200, "lb"),
  44436. name: "Wizard (Front, NSFW)",
  44437. image: {
  44438. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  44439. }
  44440. },
  44441. },
  44442. [
  44443. {
  44444. name: "Normal",
  44445. height: math.unit(6, "feet"),
  44446. default: true
  44447. },
  44448. ]
  44449. ))
  44450. characterMakers.push(() => makeCharacter(
  44451. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  44452. {
  44453. front: {
  44454. height: math.unit(5 + 2/12, "feet"),
  44455. name: "Front",
  44456. image: {
  44457. source: "./media/characters/lumi/front.svg",
  44458. extra: 1328/1268,
  44459. bottom: 103/1431
  44460. }
  44461. },
  44462. back: {
  44463. height: math.unit(5 + 2/12, "feet"),
  44464. name: "Back",
  44465. image: {
  44466. source: "./media/characters/lumi/back.svg",
  44467. extra: 1381/1327,
  44468. bottom: 43/1424
  44469. }
  44470. },
  44471. },
  44472. [
  44473. {
  44474. name: "Normal",
  44475. height: math.unit(5 + 2/12, "feet"),
  44476. default: true
  44477. },
  44478. ]
  44479. ))
  44480. characterMakers.push(() => makeCharacter(
  44481. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  44482. {
  44483. front: {
  44484. height: math.unit(5 + 9/12, "feet"),
  44485. name: "Front",
  44486. image: {
  44487. source: "./media/characters/aliya-cotton/front.svg",
  44488. extra: 577/564,
  44489. bottom: 29/606
  44490. }
  44491. },
  44492. },
  44493. [
  44494. {
  44495. name: "Normal",
  44496. height: math.unit(5 + 9/12, "feet"),
  44497. default: true
  44498. },
  44499. ]
  44500. ))
  44501. characterMakers.push(() => makeCharacter(
  44502. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  44503. {
  44504. front: {
  44505. height: math.unit(2.7, "meters"),
  44506. weight: math.unit(25000, "lb"),
  44507. name: "Front",
  44508. image: {
  44509. source: "./media/characters/noah-luxray/front.svg",
  44510. extra: 1644/825,
  44511. bottom: 339/1983
  44512. }
  44513. },
  44514. side: {
  44515. height: math.unit(2.97, "meters"),
  44516. weight: math.unit(25000, "lb"),
  44517. name: "Side",
  44518. image: {
  44519. source: "./media/characters/noah-luxray/side.svg",
  44520. extra: 1319/650,
  44521. bottom: 163/1482
  44522. }
  44523. },
  44524. dick: {
  44525. height: math.unit(7.4, "feet"),
  44526. weight: math.unit(2500, "lb"),
  44527. name: "Dick",
  44528. image: {
  44529. source: "./media/characters/noah-luxray/dick.svg"
  44530. }
  44531. },
  44532. dickAlt: {
  44533. height: math.unit(10.83, "feet"),
  44534. weight: math.unit(2500, "lb"),
  44535. name: "Dick-alt",
  44536. image: {
  44537. source: "./media/characters/noah-luxray/dick-alt.svg"
  44538. }
  44539. },
  44540. },
  44541. [
  44542. {
  44543. name: "BIG",
  44544. height: math.unit(2.7, "meters"),
  44545. default: true
  44546. },
  44547. ]
  44548. ))
  44549. characterMakers.push(() => makeCharacter(
  44550. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  44551. {
  44552. standing: {
  44553. height: math.unit(183, "cm"),
  44554. weight: math.unit(68, "kg"),
  44555. name: "Standing",
  44556. image: {
  44557. source: "./media/characters/arion/standing.svg",
  44558. extra: 1869/1807,
  44559. bottom: 93/1962
  44560. }
  44561. },
  44562. reclining: {
  44563. height: math.unit(70.5, "cm"),
  44564. weight: math.unit(68, "lb"),
  44565. name: "Reclining",
  44566. image: {
  44567. source: "./media/characters/arion/reclining.svg",
  44568. extra: 937/870,
  44569. bottom: 63/1000
  44570. }
  44571. },
  44572. },
  44573. [
  44574. {
  44575. name: "Colossus Size, Low",
  44576. height: math.unit(33, "meters"),
  44577. default: true
  44578. },
  44579. {
  44580. name: "Colossus Size, Mid",
  44581. height: math.unit(52, "meters")
  44582. },
  44583. {
  44584. name: "Colossus Size, High",
  44585. height: math.unit(60, "meters")
  44586. },
  44587. {
  44588. name: "Titan Size, Low",
  44589. height: math.unit(91, "meters"),
  44590. },
  44591. {
  44592. name: "Titan Size, Mid",
  44593. height: math.unit(122, "meters")
  44594. },
  44595. {
  44596. name: "Titan Size, High",
  44597. height: math.unit(162, "meters")
  44598. },
  44599. ]
  44600. ))
  44601. characterMakers.push(() => makeCharacter(
  44602. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  44603. {
  44604. front: {
  44605. height: math.unit(53, "meters"),
  44606. name: "Front",
  44607. image: {
  44608. source: "./media/characters/stellar-marbey/front.svg",
  44609. extra: 1913/1805,
  44610. bottom: 92/2005
  44611. }
  44612. },
  44613. back: {
  44614. height: math.unit(53, "meters"),
  44615. name: "Back",
  44616. image: {
  44617. source: "./media/characters/stellar-marbey/back.svg",
  44618. extra: 1960/1851,
  44619. bottom: 28/1988
  44620. }
  44621. },
  44622. mouth: {
  44623. height: math.unit(3.5, "meters"),
  44624. name: "Mouth",
  44625. image: {
  44626. source: "./media/characters/stellar-marbey/mouth.svg"
  44627. }
  44628. },
  44629. },
  44630. [
  44631. {
  44632. name: "Macro",
  44633. height: math.unit(53, "meters"),
  44634. default: true
  44635. },
  44636. ]
  44637. ))
  44638. characterMakers.push(() => makeCharacter(
  44639. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  44640. {
  44641. front: {
  44642. height: math.unit(8 + 1/12, "feet"),
  44643. weight: math.unit(233, "lb"),
  44644. name: "Front",
  44645. image: {
  44646. source: "./media/characters/matsu/front.svg",
  44647. extra: 832/772,
  44648. bottom: 40/872
  44649. }
  44650. },
  44651. back: {
  44652. height: math.unit(8 + 1/12, "feet"),
  44653. weight: math.unit(233, "lb"),
  44654. name: "Back",
  44655. image: {
  44656. source: "./media/characters/matsu/back.svg",
  44657. extra: 839/780,
  44658. bottom: 47/886
  44659. }
  44660. },
  44661. },
  44662. [
  44663. {
  44664. name: "Normal",
  44665. height: math.unit(8 + 1/12, "feet"),
  44666. default: true
  44667. },
  44668. ]
  44669. ))
  44670. characterMakers.push(() => makeCharacter(
  44671. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  44672. {
  44673. front: {
  44674. height: math.unit(4, "feet"),
  44675. weight: math.unit(148, "lb"),
  44676. name: "Front",
  44677. image: {
  44678. source: "./media/characters/thiz/front.svg",
  44679. extra: 1913/1748,
  44680. bottom: 62/1975
  44681. }
  44682. },
  44683. },
  44684. [
  44685. {
  44686. name: "Normal",
  44687. height: math.unit(4, "feet"),
  44688. default: true
  44689. },
  44690. ]
  44691. ))
  44692. characterMakers.push(() => makeCharacter(
  44693. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  44694. {
  44695. front: {
  44696. height: math.unit(7 + 6/12, "feet"),
  44697. weight: math.unit(267, "lb"),
  44698. name: "Front",
  44699. image: {
  44700. source: "./media/characters/marcel/front.svg",
  44701. extra: 1221/1096,
  44702. bottom: 76/1297
  44703. }
  44704. },
  44705. },
  44706. [
  44707. {
  44708. name: "Normal",
  44709. height: math.unit(7 + 6/12, "feet"),
  44710. default: true
  44711. },
  44712. ]
  44713. ))
  44714. characterMakers.push(() => makeCharacter(
  44715. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  44716. {
  44717. side: {
  44718. height: math.unit(42, "meters"),
  44719. name: "Side",
  44720. image: {
  44721. source: "./media/characters/flake/side.svg",
  44722. extra: 1525/1306,
  44723. bottom: 209/1734
  44724. }
  44725. },
  44726. },
  44727. [
  44728. {
  44729. name: "Normal",
  44730. height: math.unit(42, "meters"),
  44731. default: true
  44732. },
  44733. ]
  44734. ))
  44735. characterMakers.push(() => makeCharacter(
  44736. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  44737. {
  44738. dressed: {
  44739. height: math.unit(6 + 4/12, "feet"),
  44740. weight: math.unit(520, "lb"),
  44741. name: "Dressed",
  44742. image: {
  44743. source: "./media/characters/someonne/dressed.svg",
  44744. extra: 1020/1010,
  44745. bottom: 178/1198
  44746. }
  44747. },
  44748. undressed: {
  44749. height: math.unit(6 + 4/12, "feet"),
  44750. weight: math.unit(520, "lb"),
  44751. name: "Undressed",
  44752. image: {
  44753. source: "./media/characters/someonne/undressed.svg",
  44754. extra: 1019/1014,
  44755. bottom: 169/1188
  44756. }
  44757. },
  44758. },
  44759. [
  44760. {
  44761. name: "Normal",
  44762. height: math.unit(6 + 4/12, "feet"),
  44763. default: true
  44764. },
  44765. ]
  44766. ))
  44767. characterMakers.push(() => makeCharacter(
  44768. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  44769. {
  44770. front: {
  44771. height: math.unit(3, "feet"),
  44772. weight: math.unit(30, "lb"),
  44773. name: "Front",
  44774. image: {
  44775. source: "./media/characters/till/front.svg",
  44776. extra: 892/823,
  44777. bottom: 55/947
  44778. }
  44779. },
  44780. },
  44781. [
  44782. {
  44783. name: "Normal",
  44784. height: math.unit(3, "feet"),
  44785. default: true
  44786. },
  44787. ]
  44788. ))
  44789. characterMakers.push(() => makeCharacter(
  44790. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  44791. {
  44792. front: {
  44793. height: math.unit(9 + 8/12, "feet"),
  44794. weight: math.unit(800, "lb"),
  44795. name: "Front",
  44796. image: {
  44797. source: "./media/characters/sydney-heki/front.svg",
  44798. extra: 1360/1300,
  44799. bottom: 22/1382
  44800. }
  44801. },
  44802. back: {
  44803. height: math.unit(9 + 8/12, "feet"),
  44804. weight: math.unit(800, "lb"),
  44805. name: "Back",
  44806. image: {
  44807. source: "./media/characters/sydney-heki/back.svg",
  44808. extra: 1356/1293,
  44809. bottom: 12/1368
  44810. }
  44811. },
  44812. frontDressed: {
  44813. height: math.unit(9 + 8/12, "feet"),
  44814. weight: math.unit(800, "lb"),
  44815. name: "Front-dressed",
  44816. image: {
  44817. source: "./media/characters/sydney-heki/front-dressed.svg",
  44818. extra: 1360/1300,
  44819. bottom: 22/1382
  44820. }
  44821. },
  44822. },
  44823. [
  44824. {
  44825. name: "Normal",
  44826. height: math.unit(9 + 8/12, "feet"),
  44827. default: true
  44828. },
  44829. {
  44830. name: "Macro",
  44831. height: math.unit(500, "feet")
  44832. },
  44833. {
  44834. name: "Megamacro",
  44835. height: math.unit(3.6, "miles")
  44836. },
  44837. ]
  44838. ))
  44839. characterMakers.push(() => makeCharacter(
  44840. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  44841. {
  44842. front: {
  44843. height: math.unit(200, "cm"),
  44844. weight: math.unit(250, "lb"),
  44845. name: "Front",
  44846. image: {
  44847. source: "./media/characters/fowler-karlsson/front.svg",
  44848. extra: 897/845,
  44849. bottom: 123/1020
  44850. }
  44851. },
  44852. back: {
  44853. height: math.unit(200, "cm"),
  44854. weight: math.unit(250, "lb"),
  44855. name: "Back",
  44856. image: {
  44857. source: "./media/characters/fowler-karlsson/back.svg",
  44858. extra: 999/944,
  44859. bottom: 26/1025
  44860. }
  44861. },
  44862. dick: {
  44863. height: math.unit(1.92, "feet"),
  44864. weight: math.unit(150, "lb"),
  44865. name: "Dick",
  44866. image: {
  44867. source: "./media/characters/fowler-karlsson/dick.svg"
  44868. }
  44869. },
  44870. },
  44871. [
  44872. {
  44873. name: "Normal",
  44874. height: math.unit(200, "cm"),
  44875. default: true
  44876. },
  44877. {
  44878. name: "Smaller Macro",
  44879. height: math.unit(90, "m")
  44880. },
  44881. {
  44882. name: "Macro",
  44883. height: math.unit(150, "m")
  44884. },
  44885. {
  44886. name: "Bigger Macro",
  44887. height: math.unit(300, "m")
  44888. },
  44889. ]
  44890. ))
  44891. characterMakers.push(() => makeCharacter(
  44892. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  44893. {
  44894. side: {
  44895. height: math.unit(8 + 2/12, "feet"),
  44896. weight: math.unit(1, "tonne"),
  44897. name: "Side",
  44898. image: {
  44899. source: "./media/characters/rylide/side.svg",
  44900. extra: 1318/1034,
  44901. bottom: 106/1424
  44902. }
  44903. },
  44904. sitting: {
  44905. height: math.unit(303, "cm"),
  44906. weight: math.unit(1, "tonne"),
  44907. name: "Sitting",
  44908. image: {
  44909. source: "./media/characters/rylide/sitting.svg",
  44910. extra: 1303/1103,
  44911. bottom: 36/1339
  44912. }
  44913. },
  44914. },
  44915. [
  44916. {
  44917. name: "Normal",
  44918. height: math.unit(8 + 2/12, "feet"),
  44919. default: true
  44920. },
  44921. ]
  44922. ))
  44923. characterMakers.push(() => makeCharacter(
  44924. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  44925. {
  44926. front: {
  44927. height: math.unit(5 + 10/12, "feet"),
  44928. weight: math.unit(160, "lb"),
  44929. name: "Front",
  44930. image: {
  44931. source: "./media/characters/pudask/front.svg",
  44932. extra: 1616/1590,
  44933. bottom: 161/1777
  44934. }
  44935. },
  44936. },
  44937. [
  44938. {
  44939. name: "Ferret Height",
  44940. height: math.unit(2 + 5/12, "feet")
  44941. },
  44942. {
  44943. name: "Canon Height",
  44944. height: math.unit(5 + 10/12, "feet"),
  44945. default: true
  44946. },
  44947. ]
  44948. ))
  44949. characterMakers.push(() => makeCharacter(
  44950. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  44951. {
  44952. front: {
  44953. height: math.unit(3 + 6/12, "feet"),
  44954. weight: math.unit(60, "lb"),
  44955. name: "Front",
  44956. image: {
  44957. source: "./media/characters/ramita/front.svg",
  44958. extra: 1402/1232,
  44959. bottom: 62/1464
  44960. }
  44961. },
  44962. dressed: {
  44963. height: math.unit(3 + 6/12, "feet"),
  44964. weight: math.unit(60, "lb"),
  44965. name: "Dressed",
  44966. image: {
  44967. source: "./media/characters/ramita/dressed.svg",
  44968. extra: 1534/1249,
  44969. bottom: 50/1584
  44970. }
  44971. },
  44972. },
  44973. [
  44974. {
  44975. name: "Normal",
  44976. height: math.unit(3 + 6/12, "feet"),
  44977. default: true
  44978. },
  44979. ]
  44980. ))
  44981. characterMakers.push(() => makeCharacter(
  44982. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  44983. {
  44984. front: {
  44985. height: math.unit(8, "feet"),
  44986. name: "Front",
  44987. image: {
  44988. source: "./media/characters/ark/front.svg",
  44989. extra: 772/693,
  44990. bottom: 45/817
  44991. }
  44992. },
  44993. },
  44994. [
  44995. {
  44996. name: "Normal",
  44997. height: math.unit(8, "feet"),
  44998. default: true
  44999. },
  45000. ]
  45001. ))
  45002. characterMakers.push(() => makeCharacter(
  45003. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  45004. {
  45005. front: {
  45006. height: math.unit(6, "feet"),
  45007. weight: math.unit(250, "lb"),
  45008. volume: math.unit(5/8, "gallons"),
  45009. name: "Front",
  45010. image: {
  45011. source: "./media/characters/ludwig-horn/front.svg",
  45012. extra: 1782/1635,
  45013. bottom: 96/1878
  45014. }
  45015. },
  45016. back: {
  45017. height: math.unit(6, "feet"),
  45018. weight: math.unit(250, "lb"),
  45019. volume: math.unit(5/8, "gallons"),
  45020. name: "Back",
  45021. image: {
  45022. source: "./media/characters/ludwig-horn/back.svg",
  45023. extra: 1874/1729,
  45024. bottom: 27/1901
  45025. }
  45026. },
  45027. dick: {
  45028. height: math.unit(1.05, "feet"),
  45029. weight: math.unit(15, "lb"),
  45030. volume: math.unit(5/8, "gallons"),
  45031. name: "Dick",
  45032. image: {
  45033. source: "./media/characters/ludwig-horn/dick.svg"
  45034. }
  45035. },
  45036. },
  45037. [
  45038. {
  45039. name: "Small",
  45040. height: math.unit(6, "feet")
  45041. },
  45042. {
  45043. name: "Typical",
  45044. height: math.unit(12, "feet"),
  45045. default: true
  45046. },
  45047. {
  45048. name: "Building",
  45049. height: math.unit(80, "feet")
  45050. },
  45051. {
  45052. name: "Town",
  45053. height: math.unit(800, "feet")
  45054. },
  45055. {
  45056. name: "Kingdom",
  45057. height: math.unit(80000, "feet")
  45058. },
  45059. {
  45060. name: "Planet",
  45061. height: math.unit(8000000, "feet")
  45062. },
  45063. {
  45064. name: "Universe",
  45065. height: math.unit(8000000000, "feet")
  45066. },
  45067. {
  45068. name: "Transcended",
  45069. height: math.unit(8e27, "feet")
  45070. },
  45071. ]
  45072. ))
  45073. characterMakers.push(() => makeCharacter(
  45074. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  45075. {
  45076. front: {
  45077. height: math.unit(5, "feet"),
  45078. weight: math.unit(50, "kg"),
  45079. name: "Front",
  45080. image: {
  45081. source: "./media/characters/biot-avery/front.svg",
  45082. extra: 1295/1232,
  45083. bottom: 86/1381
  45084. }
  45085. },
  45086. },
  45087. [
  45088. {
  45089. name: "Normal",
  45090. height: math.unit(5, "feet"),
  45091. default: true
  45092. },
  45093. ]
  45094. ))
  45095. characterMakers.push(() => makeCharacter(
  45096. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  45097. {
  45098. front: {
  45099. height: math.unit(6, "feet"),
  45100. name: "Front",
  45101. image: {
  45102. source: "./media/characters/kitsune-kiro/front.svg",
  45103. extra: 1270/1158,
  45104. bottom: 42/1312
  45105. }
  45106. },
  45107. frontAlt: {
  45108. height: math.unit(6, "feet"),
  45109. name: "Front-alt",
  45110. image: {
  45111. source: "./media/characters/kitsune-kiro/front-alt.svg",
  45112. extra: 1130/1081,
  45113. bottom: 36/1166
  45114. }
  45115. },
  45116. },
  45117. [
  45118. {
  45119. name: "Smol",
  45120. height: math.unit(3, "feet")
  45121. },
  45122. {
  45123. name: "Normal",
  45124. height: math.unit(6, "feet"),
  45125. default: true
  45126. },
  45127. ]
  45128. ))
  45129. characterMakers.push(() => makeCharacter(
  45130. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  45131. {
  45132. front: {
  45133. height: math.unit(6, "feet"),
  45134. weight: math.unit(125, "lb"),
  45135. name: "Front",
  45136. image: {
  45137. source: "./media/characters/jack-thatcher/front.svg",
  45138. extra: 1474/1370,
  45139. bottom: 26/1500
  45140. }
  45141. },
  45142. back: {
  45143. height: math.unit(6, "feet"),
  45144. weight: math.unit(125, "lb"),
  45145. name: "Back",
  45146. image: {
  45147. source: "./media/characters/jack-thatcher/back.svg",
  45148. extra: 1489/1384,
  45149. bottom: 18/1507
  45150. }
  45151. },
  45152. },
  45153. [
  45154. {
  45155. name: "Normal",
  45156. height: math.unit(6, "feet"),
  45157. default: true
  45158. },
  45159. {
  45160. name: "Macro",
  45161. height: math.unit(75, "feet")
  45162. },
  45163. {
  45164. name: "Macro-er",
  45165. height: math.unit(250, "feet")
  45166. },
  45167. ]
  45168. ))
  45169. characterMakers.push(() => makeCharacter(
  45170. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  45171. {
  45172. front: {
  45173. height: math.unit(7, "feet"),
  45174. weight: math.unit(110, "kg"),
  45175. name: "Front",
  45176. image: {
  45177. source: "./media/characters/max-hyper/front.svg",
  45178. extra: 1969/1881,
  45179. bottom: 49/2018
  45180. }
  45181. },
  45182. },
  45183. [
  45184. {
  45185. name: "Normal",
  45186. height: math.unit(7, "feet"),
  45187. default: true
  45188. },
  45189. ]
  45190. ))
  45191. characterMakers.push(() => makeCharacter(
  45192. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  45193. {
  45194. front: {
  45195. height: math.unit(5 + 5/12, "feet"),
  45196. weight: math.unit(160, "lb"),
  45197. name: "Front",
  45198. image: {
  45199. source: "./media/characters/spook/front.svg",
  45200. extra: 794/791,
  45201. bottom: 54/848
  45202. }
  45203. },
  45204. back: {
  45205. height: math.unit(5 + 5/12, "feet"),
  45206. weight: math.unit(160, "lb"),
  45207. name: "Back",
  45208. image: {
  45209. source: "./media/characters/spook/back.svg",
  45210. extra: 812/798,
  45211. bottom: 32/844
  45212. }
  45213. },
  45214. },
  45215. [
  45216. {
  45217. name: "Normal",
  45218. height: math.unit(5 + 5/12, "feet"),
  45219. default: true
  45220. },
  45221. ]
  45222. ))
  45223. characterMakers.push(() => makeCharacter(
  45224. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  45225. {
  45226. front: {
  45227. height: math.unit(18, "feet"),
  45228. name: "Front",
  45229. image: {
  45230. source: "./media/characters/xeaduulix/front.svg",
  45231. extra: 1380/1166,
  45232. bottom: 110/1490
  45233. }
  45234. },
  45235. back: {
  45236. height: math.unit(18, "feet"),
  45237. name: "Back",
  45238. image: {
  45239. source: "./media/characters/xeaduulix/back.svg",
  45240. extra: 1592/1170,
  45241. bottom: 128/1720
  45242. }
  45243. },
  45244. frontNsfw: {
  45245. height: math.unit(18, "feet"),
  45246. name: "Front (NSFW)",
  45247. image: {
  45248. source: "./media/characters/xeaduulix/front-nsfw.svg",
  45249. extra: 1380/1166,
  45250. bottom: 110/1490
  45251. }
  45252. },
  45253. backNsfw: {
  45254. height: math.unit(18, "feet"),
  45255. name: "Back (NSFW)",
  45256. image: {
  45257. source: "./media/characters/xeaduulix/back-nsfw.svg",
  45258. extra: 1592/1170,
  45259. bottom: 128/1720
  45260. }
  45261. },
  45262. },
  45263. [
  45264. {
  45265. name: "Normal",
  45266. height: math.unit(18, "feet"),
  45267. default: true
  45268. },
  45269. ]
  45270. ))
  45271. characterMakers.push(() => makeCharacter(
  45272. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  45273. {
  45274. spreadWings: {
  45275. height: math.unit(20, "feet"),
  45276. name: "Spread Wings",
  45277. image: {
  45278. source: "./media/characters/fledge/spread-wings.svg",
  45279. extra: 693/635,
  45280. bottom: 26/719
  45281. }
  45282. },
  45283. front: {
  45284. height: math.unit(20, "feet"),
  45285. name: "Front",
  45286. image: {
  45287. source: "./media/characters/fledge/front.svg",
  45288. extra: 684/637,
  45289. bottom: 18/702
  45290. }
  45291. },
  45292. frontAlt: {
  45293. height: math.unit(20, "feet"),
  45294. name: "Front (Alt)",
  45295. image: {
  45296. source: "./media/characters/fledge/front-alt.svg",
  45297. extra: 708/664,
  45298. bottom: 13/721
  45299. }
  45300. },
  45301. back: {
  45302. height: math.unit(20, "feet"),
  45303. name: "Back",
  45304. image: {
  45305. source: "./media/characters/fledge/back.svg",
  45306. extra: 718/634,
  45307. bottom: 22/740
  45308. }
  45309. },
  45310. head: {
  45311. height: math.unit(5.55, "feet"),
  45312. name: "Head",
  45313. image: {
  45314. source: "./media/characters/fledge/head.svg"
  45315. }
  45316. },
  45317. headAlt: {
  45318. height: math.unit(5.1, "feet"),
  45319. name: "Head (Alt)",
  45320. image: {
  45321. source: "./media/characters/fledge/head-alt.svg"
  45322. }
  45323. },
  45324. },
  45325. [
  45326. {
  45327. name: "Small",
  45328. height: math.unit(6 + 2/12, "feet")
  45329. },
  45330. {
  45331. name: "Big",
  45332. height: math.unit(20, "feet"),
  45333. default: true
  45334. },
  45335. {
  45336. name: "Giant",
  45337. height: math.unit(100, "feet")
  45338. },
  45339. {
  45340. name: "Macro",
  45341. height: math.unit(200, "feet")
  45342. },
  45343. ]
  45344. ))
  45345. characterMakers.push(() => makeCharacter(
  45346. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  45347. {
  45348. front: {
  45349. height: math.unit(1, "meter"),
  45350. name: "Front",
  45351. image: {
  45352. source: "./media/characters/atlas-morenai/front.svg",
  45353. extra: 1275/1043,
  45354. bottom: 19/1294
  45355. }
  45356. },
  45357. back: {
  45358. height: math.unit(1, "meter"),
  45359. name: "Back",
  45360. image: {
  45361. source: "./media/characters/atlas-morenai/back.svg",
  45362. extra: 1141/1001,
  45363. bottom: 25/1166
  45364. }
  45365. },
  45366. },
  45367. [
  45368. {
  45369. name: "Normal",
  45370. height: math.unit(1, "meter"),
  45371. default: true
  45372. },
  45373. {
  45374. name: "Magic-Infused",
  45375. height: math.unit(5, "meters")
  45376. },
  45377. ]
  45378. ))
  45379. characterMakers.push(() => makeCharacter(
  45380. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  45381. {
  45382. front: {
  45383. height: math.unit(5, "meters"),
  45384. name: "Front",
  45385. image: {
  45386. source: "./media/characters/cintia/front.svg",
  45387. extra: 1312/1228,
  45388. bottom: 38/1350
  45389. }
  45390. },
  45391. back: {
  45392. height: math.unit(5, "meters"),
  45393. name: "Back",
  45394. image: {
  45395. source: "./media/characters/cintia/back.svg",
  45396. extra: 1260/1166,
  45397. bottom: 98/1358
  45398. }
  45399. },
  45400. frontDick: {
  45401. height: math.unit(5, "meters"),
  45402. name: "Front (Dick)",
  45403. image: {
  45404. source: "./media/characters/cintia/front-dick.svg",
  45405. extra: 1312/1228,
  45406. bottom: 38/1350
  45407. }
  45408. },
  45409. backDick: {
  45410. height: math.unit(5, "meters"),
  45411. name: "Back (Dick)",
  45412. image: {
  45413. source: "./media/characters/cintia/back-dick.svg",
  45414. extra: 1260/1166,
  45415. bottom: 98/1358
  45416. }
  45417. },
  45418. bust: {
  45419. height: math.unit(1.97, "meters"),
  45420. name: "Bust",
  45421. image: {
  45422. source: "./media/characters/cintia/bust.svg",
  45423. extra: 617/565,
  45424. bottom: 0/617
  45425. }
  45426. },
  45427. },
  45428. [
  45429. {
  45430. name: "Normal",
  45431. height: math.unit(5, "meters"),
  45432. default: true
  45433. },
  45434. ]
  45435. ))
  45436. characterMakers.push(() => makeCharacter(
  45437. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  45438. {
  45439. side: {
  45440. height: math.unit(100, "feet"),
  45441. name: "Side",
  45442. image: {
  45443. source: "./media/characters/denora/side.svg",
  45444. extra: 875/803,
  45445. bottom: 9/884
  45446. }
  45447. },
  45448. },
  45449. [
  45450. {
  45451. name: "Standard",
  45452. height: math.unit(100, "feet"),
  45453. default: true
  45454. },
  45455. {
  45456. name: "Grand",
  45457. height: math.unit(1000, "feet")
  45458. },
  45459. {
  45460. name: "Conquering",
  45461. height: math.unit(10000, "feet")
  45462. },
  45463. ]
  45464. ))
  45465. characterMakers.push(() => makeCharacter(
  45466. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  45467. {
  45468. dressed: {
  45469. height: math.unit(8 + 5/12, "feet"),
  45470. weight: math.unit(700, "lb"),
  45471. name: "Dressed",
  45472. image: {
  45473. source: "./media/characters/kiva/dressed.svg",
  45474. extra: 1102/1055,
  45475. bottom: 60/1162
  45476. }
  45477. },
  45478. nude: {
  45479. height: math.unit(8 + 5/12, "feet"),
  45480. weight: math.unit(700, "lb"),
  45481. name: "Nude",
  45482. image: {
  45483. source: "./media/characters/kiva/nude.svg",
  45484. extra: 1102/1055,
  45485. bottom: 60/1162
  45486. }
  45487. },
  45488. },
  45489. [
  45490. {
  45491. name: "Base Height",
  45492. height: math.unit(8 + 5/12, "feet"),
  45493. default: true
  45494. },
  45495. {
  45496. name: "Macro",
  45497. height: math.unit(100, "feet")
  45498. },
  45499. {
  45500. name: "Max",
  45501. height: math.unit(3280, "feet")
  45502. },
  45503. ]
  45504. ))
  45505. characterMakers.push(() => makeCharacter(
  45506. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  45507. {
  45508. front: {
  45509. height: math.unit(6 + 8/12, "feet"),
  45510. weight: math.unit(250, "lb"),
  45511. name: "Front",
  45512. image: {
  45513. source: "./media/characters/ztragon/front.svg",
  45514. extra: 1825/1684,
  45515. bottom: 98/1923
  45516. }
  45517. },
  45518. },
  45519. [
  45520. {
  45521. name: "Normal",
  45522. height: math.unit(6 + 8/12, "feet"),
  45523. default: true
  45524. },
  45525. {
  45526. name: "Macro",
  45527. height: math.unit(80, "feet")
  45528. },
  45529. ]
  45530. ))
  45531. characterMakers.push(() => makeCharacter(
  45532. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  45533. {
  45534. front: {
  45535. height: math.unit(10.4, "feet"),
  45536. weight: math.unit(2, "tons"),
  45537. name: "Front",
  45538. image: {
  45539. source: "./media/characters/yesenia/front.svg",
  45540. extra: 1479/1474,
  45541. bottom: 233/1712
  45542. }
  45543. },
  45544. },
  45545. [
  45546. {
  45547. name: "Normal",
  45548. height: math.unit(10.4, "feet"),
  45549. default: true
  45550. },
  45551. ]
  45552. ))
  45553. characterMakers.push(() => makeCharacter(
  45554. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  45555. {
  45556. normal: {
  45557. height: math.unit(6 + 1/12, "feet"),
  45558. weight: math.unit(180, "lb"),
  45559. name: "Normal",
  45560. image: {
  45561. source: "./media/characters/leanne-lycheborne/normal.svg",
  45562. extra: 1748/1660,
  45563. bottom: 98/1846
  45564. }
  45565. },
  45566. were: {
  45567. height: math.unit(12, "feet"),
  45568. weight: math.unit(1600, "lb"),
  45569. name: "Were",
  45570. image: {
  45571. source: "./media/characters/leanne-lycheborne/were.svg",
  45572. extra: 1485/1432,
  45573. bottom: 66/1551
  45574. }
  45575. },
  45576. },
  45577. [
  45578. {
  45579. name: "Normal",
  45580. height: math.unit(6 + 1/12, "feet"),
  45581. default: true
  45582. },
  45583. ]
  45584. ))
  45585. characterMakers.push(() => makeCharacter(
  45586. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  45587. {
  45588. side: {
  45589. height: math.unit(13, "feet"),
  45590. name: "Side",
  45591. image: {
  45592. source: "./media/characters/kira-tyler/side.svg",
  45593. extra: 693/393,
  45594. bottom: 58/751
  45595. }
  45596. },
  45597. },
  45598. [
  45599. {
  45600. name: "Normal",
  45601. height: math.unit(13, "feet"),
  45602. default: true
  45603. },
  45604. ]
  45605. ))
  45606. characterMakers.push(() => makeCharacter(
  45607. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  45608. {
  45609. front: {
  45610. height: math.unit(10.3, "feet"),
  45611. weight: math.unit(150, "lb"),
  45612. name: "Front",
  45613. image: {
  45614. source: "./media/characters/blaze/front.svg",
  45615. extra: 1378/1286,
  45616. bottom: 172/1550
  45617. }
  45618. },
  45619. },
  45620. [
  45621. {
  45622. name: "Normal",
  45623. height: math.unit(10.3, "feet"),
  45624. default: true
  45625. },
  45626. ]
  45627. ))
  45628. characterMakers.push(() => makeCharacter(
  45629. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  45630. {
  45631. side: {
  45632. height: math.unit(2, "meters"),
  45633. weight: math.unit(400, "kg"),
  45634. name: "Side",
  45635. image: {
  45636. source: "./media/characters/anu/side.svg",
  45637. extra: 506/394,
  45638. bottom: 18/524
  45639. }
  45640. },
  45641. },
  45642. [
  45643. {
  45644. name: "Humanoid",
  45645. height: math.unit(2, "meters")
  45646. },
  45647. {
  45648. name: "Normal",
  45649. height: math.unit(5, "meters"),
  45650. default: true
  45651. },
  45652. ]
  45653. ))
  45654. characterMakers.push(() => makeCharacter(
  45655. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  45656. {
  45657. front: {
  45658. height: math.unit(5 + 5/12, "feet"),
  45659. weight: math.unit(170, "lb"),
  45660. name: "Front",
  45661. image: {
  45662. source: "./media/characters/synx-the-lynx/front.svg",
  45663. extra: 1893/1745,
  45664. bottom: 17/1910
  45665. }
  45666. },
  45667. side: {
  45668. height: math.unit(5 + 5/12, "feet"),
  45669. weight: math.unit(170, "lb"),
  45670. name: "Side",
  45671. image: {
  45672. source: "./media/characters/synx-the-lynx/side.svg",
  45673. extra: 1884/1740,
  45674. bottom: 39/1923
  45675. }
  45676. },
  45677. back: {
  45678. height: math.unit(5 + 5/12, "feet"),
  45679. weight: math.unit(170, "lb"),
  45680. name: "Back",
  45681. image: {
  45682. source: "./media/characters/synx-the-lynx/back.svg",
  45683. extra: 1903/1755,
  45684. bottom: 14/1917
  45685. }
  45686. },
  45687. },
  45688. [
  45689. {
  45690. name: "Normal",
  45691. height: math.unit(5 + 5/12, "feet"),
  45692. default: true
  45693. },
  45694. ]
  45695. ))
  45696. characterMakers.push(() => makeCharacter(
  45697. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  45698. {
  45699. back: {
  45700. height: math.unit(15, "feet"),
  45701. name: "Back",
  45702. image: {
  45703. source: "./media/characters/nadezda-fex/back.svg",
  45704. extra: 1695/1481,
  45705. bottom: 25/1720
  45706. }
  45707. },
  45708. },
  45709. [
  45710. {
  45711. name: "Normal",
  45712. height: math.unit(15, "feet"),
  45713. default: true
  45714. },
  45715. {
  45716. name: "Macro",
  45717. height: math.unit(2.5, "miles")
  45718. },
  45719. {
  45720. name: "Goddess",
  45721. height: math.unit(2, "multiverses")
  45722. },
  45723. ]
  45724. ))
  45725. characterMakers.push(() => makeCharacter(
  45726. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  45727. {
  45728. front: {
  45729. height: math.unit(216, "cm"),
  45730. name: "Front",
  45731. image: {
  45732. source: "./media/characters/lev/front.svg",
  45733. extra: 1728/1670,
  45734. bottom: 82/1810
  45735. }
  45736. },
  45737. back: {
  45738. height: math.unit(216, "cm"),
  45739. name: "Back",
  45740. image: {
  45741. source: "./media/characters/lev/back.svg",
  45742. extra: 1738/1675,
  45743. bottom: 24/1762
  45744. }
  45745. },
  45746. dressed: {
  45747. height: math.unit(216, "cm"),
  45748. name: "Dressed",
  45749. image: {
  45750. source: "./media/characters/lev/dressed.svg",
  45751. extra: 1397/1351,
  45752. bottom: 73/1470
  45753. }
  45754. },
  45755. head: {
  45756. height: math.unit(0.51, "meter"),
  45757. name: "Head",
  45758. image: {
  45759. source: "./media/characters/lev/head.svg"
  45760. }
  45761. },
  45762. },
  45763. [
  45764. {
  45765. name: "Normal",
  45766. height: math.unit(216, "cm"),
  45767. default: true
  45768. },
  45769. {
  45770. name: "Relatively Macro",
  45771. height: math.unit(80, "meters")
  45772. },
  45773. {
  45774. name: "Megamacro",
  45775. height: math.unit(21600, "meters")
  45776. },
  45777. {
  45778. name: "Megamacro+",
  45779. height: math.unit(64800, "meters")
  45780. },
  45781. ]
  45782. ))
  45783. characterMakers.push(() => makeCharacter(
  45784. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  45785. {
  45786. front: {
  45787. height: math.unit(2, "meters"),
  45788. weight: math.unit(80, "kg"),
  45789. name: "Front",
  45790. image: {
  45791. source: "./media/characters/moka/front.svg",
  45792. extra: 1337/1255,
  45793. bottom: 58/1395
  45794. }
  45795. },
  45796. },
  45797. [
  45798. {
  45799. name: "Micro",
  45800. height: math.unit(15, "cm")
  45801. },
  45802. {
  45803. name: "Normal",
  45804. height: math.unit(2, "meters"),
  45805. default: true
  45806. },
  45807. {
  45808. name: "Macro",
  45809. height: math.unit(20, "meters"),
  45810. },
  45811. ]
  45812. ))
  45813. characterMakers.push(() => makeCharacter(
  45814. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  45815. {
  45816. front: {
  45817. height: math.unit(9, "feet"),
  45818. weight: math.unit(240, "lb"),
  45819. name: "Front",
  45820. image: {
  45821. source: "./media/characters/kuzco/front.svg",
  45822. extra: 1593/1487,
  45823. bottom: 32/1625
  45824. }
  45825. },
  45826. side: {
  45827. height: math.unit(9, "feet"),
  45828. weight: math.unit(240, "lb"),
  45829. name: "Side",
  45830. image: {
  45831. source: "./media/characters/kuzco/side.svg",
  45832. extra: 1575/1485,
  45833. bottom: 30/1605
  45834. }
  45835. },
  45836. back: {
  45837. height: math.unit(9, "feet"),
  45838. weight: math.unit(240, "lb"),
  45839. name: "Back",
  45840. image: {
  45841. source: "./media/characters/kuzco/back.svg",
  45842. extra: 1603/1514,
  45843. bottom: 14/1617
  45844. }
  45845. },
  45846. },
  45847. [
  45848. {
  45849. name: "Normal",
  45850. height: math.unit(9, "feet"),
  45851. default: true
  45852. },
  45853. ]
  45854. ))
  45855. characterMakers.push(() => makeCharacter(
  45856. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  45857. {
  45858. side: {
  45859. height: math.unit(2, "meters"),
  45860. weight: math.unit(300, "kg"),
  45861. name: "Side",
  45862. image: {
  45863. source: "./media/characters/ceruleus/side.svg",
  45864. extra: 1068/974,
  45865. bottom: 126/1194
  45866. }
  45867. },
  45868. },
  45869. [
  45870. {
  45871. name: "Normal",
  45872. height: math.unit(16, "meters"),
  45873. default: true
  45874. },
  45875. ]
  45876. ))
  45877. characterMakers.push(() => makeCharacter(
  45878. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  45879. {
  45880. front: {
  45881. height: math.unit(9, "feet"),
  45882. weight: math.unit(500, "kg"),
  45883. name: "Front",
  45884. image: {
  45885. source: "./media/characters/acouya/front.svg",
  45886. extra: 1660/1473,
  45887. bottom: 28/1688
  45888. }
  45889. },
  45890. },
  45891. [
  45892. {
  45893. name: "Normal",
  45894. height: math.unit(9, "feet"),
  45895. default: true
  45896. },
  45897. ]
  45898. ))
  45899. characterMakers.push(() => makeCharacter(
  45900. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  45901. {
  45902. front: {
  45903. height: math.unit(5 + 6/12, "feet"),
  45904. weight: math.unit(195, "lb"),
  45905. name: "Front",
  45906. image: {
  45907. source: "./media/characters/vant/front.svg",
  45908. extra: 1396/1320,
  45909. bottom: 20/1416
  45910. }
  45911. },
  45912. back: {
  45913. height: math.unit(5 + 6/12, "feet"),
  45914. weight: math.unit(195, "lb"),
  45915. name: "Back",
  45916. image: {
  45917. source: "./media/characters/vant/back.svg",
  45918. extra: 1396/1320,
  45919. bottom: 20/1416
  45920. }
  45921. },
  45922. maw: {
  45923. height: math.unit(0.75, "feet"),
  45924. name: "Maw",
  45925. image: {
  45926. source: "./media/characters/vant/maw.svg"
  45927. }
  45928. },
  45929. paw: {
  45930. height: math.unit(1.07, "feet"),
  45931. name: "Paw",
  45932. image: {
  45933. source: "./media/characters/vant/paw.svg"
  45934. }
  45935. },
  45936. },
  45937. [
  45938. {
  45939. name: "Micro",
  45940. height: math.unit(0.25, "inches")
  45941. },
  45942. {
  45943. name: "Normal",
  45944. height: math.unit(5 + 6/12, "feet"),
  45945. default: true
  45946. },
  45947. {
  45948. name: "Macro",
  45949. height: math.unit(75, "feet")
  45950. },
  45951. ]
  45952. ))
  45953. characterMakers.push(() => makeCharacter(
  45954. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  45955. {
  45956. front: {
  45957. height: math.unit(30, "meters"),
  45958. weight: math.unit(363, "tons"),
  45959. name: "Front",
  45960. image: {
  45961. source: "./media/characters/ahra/front.svg",
  45962. extra: 1914/1814,
  45963. bottom: 46/1960
  45964. }
  45965. },
  45966. },
  45967. [
  45968. {
  45969. name: "Macro",
  45970. height: math.unit(30, "meters"),
  45971. default: true
  45972. },
  45973. ]
  45974. ))
  45975. characterMakers.push(() => makeCharacter(
  45976. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  45977. {
  45978. undressed: {
  45979. height: math.unit(2, "m"),
  45980. weight: math.unit(250, "kg"),
  45981. name: "Undressed",
  45982. image: {
  45983. source: "./media/characters/coriander/undressed.svg",
  45984. extra: 1757/1606,
  45985. bottom: 107/1864
  45986. }
  45987. },
  45988. dressed: {
  45989. height: math.unit(2, "m"),
  45990. weight: math.unit(250, "kg"),
  45991. name: "Dressed",
  45992. image: {
  45993. source: "./media/characters/coriander/dressed.svg",
  45994. extra: 1757/1606,
  45995. bottom: 107/1864
  45996. }
  45997. },
  45998. },
  45999. [
  46000. {
  46001. name: "Normal",
  46002. height: math.unit(4, "meters"),
  46003. default: true
  46004. },
  46005. {
  46006. name: "XL",
  46007. height: math.unit(6, "meters")
  46008. },
  46009. {
  46010. name: "XXL",
  46011. height: math.unit(8, "meters")
  46012. },
  46013. ]
  46014. ))
  46015. characterMakers.push(() => makeCharacter(
  46016. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  46017. {
  46018. front: {
  46019. height: math.unit(6, "feet"),
  46020. name: "Front",
  46021. image: {
  46022. source: "./media/characters/syrinx/front.svg",
  46023. extra: 1557/1259,
  46024. bottom: 171/1728
  46025. }
  46026. },
  46027. },
  46028. [
  46029. {
  46030. name: "Normal",
  46031. height: math.unit(6 + 3/12, "feet"),
  46032. default: true
  46033. },
  46034. ]
  46035. ))
  46036. characterMakers.push(() => makeCharacter(
  46037. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  46038. {
  46039. front: {
  46040. height: math.unit(11 + 6/12, "feet"),
  46041. weight: math.unit(1.5, "tons"),
  46042. name: "Front",
  46043. image: {
  46044. source: "./media/characters/bor/front.svg",
  46045. extra: 1189/1109,
  46046. bottom: 170/1359
  46047. }
  46048. },
  46049. },
  46050. [
  46051. {
  46052. name: "Normal",
  46053. height: math.unit(11 + 6/12, "feet"),
  46054. default: true
  46055. },
  46056. {
  46057. name: "Macro",
  46058. height: math.unit(32 + 9/12, "feet")
  46059. },
  46060. ]
  46061. ))
  46062. characterMakers.push(() => makeCharacter(
  46063. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  46064. {
  46065. anthro: {
  46066. height: math.unit(9, "feet"),
  46067. weight: math.unit(2076, "lb"),
  46068. name: "Anthro",
  46069. image: {
  46070. source: "./media/characters/abacus/anthro.svg",
  46071. extra: 1540/1494,
  46072. bottom: 233/1773
  46073. }
  46074. },
  46075. pigeon: {
  46076. height: math.unit(1, "feet"),
  46077. name: "Pigeon",
  46078. image: {
  46079. source: "./media/characters/abacus/pigeon.svg",
  46080. extra: 528/525,
  46081. bottom: 46/574
  46082. }
  46083. },
  46084. },
  46085. [
  46086. {
  46087. name: "Normal",
  46088. height: math.unit(9, "feet"),
  46089. default: true
  46090. },
  46091. ]
  46092. ))
  46093. characterMakers.push(() => makeCharacter(
  46094. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  46095. {
  46096. side: {
  46097. height: math.unit(6, "feet"),
  46098. name: "Side",
  46099. image: {
  46100. source: "./media/characters/delkhan/side.svg",
  46101. extra: 1884/1786,
  46102. bottom: 308/2192
  46103. }
  46104. },
  46105. head: {
  46106. height: math.unit(3.38, "feet"),
  46107. name: "Head",
  46108. image: {
  46109. source: "./media/characters/delkhan/head.svg"
  46110. }
  46111. },
  46112. },
  46113. [
  46114. {
  46115. name: "Normal",
  46116. height: math.unit(72, "feet"),
  46117. default: true
  46118. },
  46119. {
  46120. name: "Giant",
  46121. height: math.unit(172, "feet")
  46122. },
  46123. ]
  46124. ))
  46125. characterMakers.push(() => makeCharacter(
  46126. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  46127. {
  46128. standing: {
  46129. height: math.unit(6, "feet"),
  46130. name: "Standing",
  46131. image: {
  46132. source: "./media/characters/euchidat/standing.svg",
  46133. extra: 1612/1553,
  46134. bottom: 116/1728
  46135. }
  46136. },
  46137. leaning: {
  46138. height: math.unit(6, "feet"),
  46139. name: "Leaning",
  46140. image: {
  46141. source: "./media/characters/euchidat/leaning.svg",
  46142. extra: 1719/1674,
  46143. bottom: 27/1746
  46144. }
  46145. },
  46146. },
  46147. [
  46148. {
  46149. name: "Normal",
  46150. height: math.unit(175, "feet"),
  46151. default: true
  46152. },
  46153. {
  46154. name: "Megamacro",
  46155. height: math.unit(190, "miles")
  46156. },
  46157. {
  46158. name: "Gigamacro",
  46159. height: math.unit(190000, "miles")
  46160. },
  46161. ]
  46162. ))
  46163. characterMakers.push(() => makeCharacter(
  46164. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  46165. {
  46166. front: {
  46167. height: math.unit(6, "feet"),
  46168. weight: math.unit(150, "lb"),
  46169. name: "Front",
  46170. image: {
  46171. source: "./media/characters/rebecca-stack/front.svg",
  46172. extra: 1256/1201,
  46173. bottom: 18/1274
  46174. }
  46175. },
  46176. },
  46177. [
  46178. {
  46179. name: "Normal",
  46180. height: math.unit(5 + 8/12, "feet"),
  46181. default: true
  46182. },
  46183. {
  46184. name: "Demolitionist",
  46185. height: math.unit(200, "feet")
  46186. },
  46187. {
  46188. name: "Out of Control",
  46189. height: math.unit(2, "miles")
  46190. },
  46191. {
  46192. name: "Giga",
  46193. height: math.unit(7200, "miles")
  46194. },
  46195. ]
  46196. ))
  46197. characterMakers.push(() => makeCharacter(
  46198. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  46199. {
  46200. front: {
  46201. height: math.unit(6, "feet"),
  46202. weight: math.unit(150, "lb"),
  46203. name: "Front",
  46204. image: {
  46205. source: "./media/characters/jenny-cartwright/front.svg",
  46206. extra: 1384/1376,
  46207. bottom: 58/1442
  46208. }
  46209. },
  46210. },
  46211. [
  46212. {
  46213. name: "Normal",
  46214. height: math.unit(6 + 7/12, "feet"),
  46215. default: true
  46216. },
  46217. {
  46218. name: "Librarian",
  46219. height: math.unit(55, "feet")
  46220. },
  46221. {
  46222. name: "Sightseer",
  46223. height: math.unit(50, "miles")
  46224. },
  46225. {
  46226. name: "Giga",
  46227. height: math.unit(30000, "miles")
  46228. },
  46229. ]
  46230. ))
  46231. characterMakers.push(() => makeCharacter(
  46232. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  46233. {
  46234. nude: {
  46235. height: math.unit(8, "feet"),
  46236. weight: math.unit(225, "lb"),
  46237. name: "Nude",
  46238. image: {
  46239. source: "./media/characters/marvy/nude.svg",
  46240. extra: 1900/1683,
  46241. bottom: 89/1989
  46242. }
  46243. },
  46244. dressed: {
  46245. height: math.unit(8, "feet"),
  46246. weight: math.unit(225, "lb"),
  46247. name: "Dressed",
  46248. image: {
  46249. source: "./media/characters/marvy/dressed.svg",
  46250. extra: 1900/1683,
  46251. bottom: 89/1989
  46252. }
  46253. },
  46254. head: {
  46255. height: math.unit(2.85, "feet"),
  46256. name: "Head",
  46257. image: {
  46258. source: "./media/characters/marvy/head.svg"
  46259. }
  46260. },
  46261. },
  46262. [
  46263. {
  46264. name: "Normal",
  46265. height: math.unit(8, "feet"),
  46266. default: true
  46267. },
  46268. ]
  46269. ))
  46270. characterMakers.push(() => makeCharacter(
  46271. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  46272. {
  46273. front: {
  46274. height: math.unit(8, "feet"),
  46275. weight: math.unit(250, "lb"),
  46276. name: "Front",
  46277. image: {
  46278. source: "./media/characters/leah/front.svg",
  46279. extra: 1257/1149,
  46280. bottom: 109/1366
  46281. }
  46282. },
  46283. },
  46284. [
  46285. {
  46286. name: "Normal",
  46287. height: math.unit(8, "feet"),
  46288. default: true
  46289. },
  46290. {
  46291. name: "Minimacro",
  46292. height: math.unit(40, "feet")
  46293. },
  46294. {
  46295. name: "Macro",
  46296. height: math.unit(124, "feet")
  46297. },
  46298. {
  46299. name: "Megamacro",
  46300. height: math.unit(850, "feet")
  46301. },
  46302. ]
  46303. ))
  46304. characterMakers.push(() => makeCharacter(
  46305. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  46306. {
  46307. side: {
  46308. height: math.unit(13 + 6/12, "feet"),
  46309. weight: math.unit(3200, "lb"),
  46310. name: "Side",
  46311. image: {
  46312. source: "./media/characters/alvir/side.svg",
  46313. extra: 896/589,
  46314. bottom: 26/922
  46315. }
  46316. },
  46317. },
  46318. [
  46319. {
  46320. name: "Normal",
  46321. height: math.unit(13 + 6/12, "feet"),
  46322. default: true
  46323. },
  46324. ]
  46325. ))
  46326. characterMakers.push(() => makeCharacter(
  46327. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  46328. {
  46329. front: {
  46330. height: math.unit(5 + 4/12, "feet"),
  46331. weight: math.unit(236, "lb"),
  46332. name: "Front",
  46333. image: {
  46334. source: "./media/characters/zaina-khalil/front.svg",
  46335. extra: 1533/1485,
  46336. bottom: 94/1627
  46337. }
  46338. },
  46339. side: {
  46340. height: math.unit(5 + 4/12, "feet"),
  46341. weight: math.unit(236, "lb"),
  46342. name: "Side",
  46343. image: {
  46344. source: "./media/characters/zaina-khalil/side.svg",
  46345. extra: 1537/1498,
  46346. bottom: 66/1603
  46347. }
  46348. },
  46349. back: {
  46350. height: math.unit(5 + 4/12, "feet"),
  46351. weight: math.unit(236, "lb"),
  46352. name: "Back",
  46353. image: {
  46354. source: "./media/characters/zaina-khalil/back.svg",
  46355. extra: 1546/1494,
  46356. bottom: 89/1635
  46357. }
  46358. },
  46359. },
  46360. [
  46361. {
  46362. name: "Normal",
  46363. height: math.unit(5 + 4/12, "feet"),
  46364. default: true
  46365. },
  46366. ]
  46367. ))
  46368. characterMakers.push(() => makeCharacter(
  46369. { name: "Terry", species: ["husky"], tags: ["taur"] },
  46370. {
  46371. side: {
  46372. height: math.unit(12, "feet"),
  46373. weight: math.unit(4000, "lb"),
  46374. name: "Side",
  46375. image: {
  46376. source: "./media/characters/terry/side.svg",
  46377. extra: 1518/1439,
  46378. bottom: 149/1667
  46379. }
  46380. },
  46381. },
  46382. [
  46383. {
  46384. name: "Normal",
  46385. height: math.unit(12, "feet"),
  46386. default: true
  46387. },
  46388. ]
  46389. ))
  46390. characterMakers.push(() => makeCharacter(
  46391. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  46392. {
  46393. front: {
  46394. height: math.unit(12, "feet"),
  46395. weight: math.unit(1500, "lb"),
  46396. name: "Front",
  46397. image: {
  46398. source: "./media/characters/kahea/front.svg",
  46399. extra: 1722/1617,
  46400. bottom: 179/1901
  46401. }
  46402. },
  46403. },
  46404. [
  46405. {
  46406. name: "Normal",
  46407. height: math.unit(12, "feet"),
  46408. default: true
  46409. },
  46410. ]
  46411. ))
  46412. characterMakers.push(() => makeCharacter(
  46413. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  46414. {
  46415. demonFront: {
  46416. height: math.unit(36, "feet"),
  46417. name: "Front",
  46418. image: {
  46419. source: "./media/characters/alex-xuria/demon-front.svg",
  46420. extra: 1705/1673,
  46421. bottom: 198/1903
  46422. },
  46423. form: "demon",
  46424. default: true
  46425. },
  46426. demonBack: {
  46427. height: math.unit(36, "feet"),
  46428. name: "Back",
  46429. image: {
  46430. source: "./media/characters/alex-xuria/demon-back.svg",
  46431. extra: 1725/1693,
  46432. bottom: 70/1795
  46433. },
  46434. form: "demon"
  46435. },
  46436. demonHead: {
  46437. height: math.unit(2.14, "meters"),
  46438. name: "Head",
  46439. image: {
  46440. source: "./media/characters/alex-xuria/demon-head.svg"
  46441. },
  46442. form: "demon"
  46443. },
  46444. demonHand: {
  46445. height: math.unit(1.61, "meters"),
  46446. name: "Hand",
  46447. image: {
  46448. source: "./media/characters/alex-xuria/demon-hand.svg"
  46449. },
  46450. form: "demon"
  46451. },
  46452. demonPaw: {
  46453. height: math.unit(1.35, "meters"),
  46454. name: "Paw",
  46455. image: {
  46456. source: "./media/characters/alex-xuria/demon-paw.svg"
  46457. },
  46458. form: "demon"
  46459. },
  46460. demonFoot: {
  46461. height: math.unit(2.2, "meters"),
  46462. name: "Foot",
  46463. image: {
  46464. source: "./media/characters/alex-xuria/demon-foot.svg"
  46465. },
  46466. form: "demon"
  46467. },
  46468. demonCock: {
  46469. height: math.unit(1.74, "meters"),
  46470. name: "Cock",
  46471. image: {
  46472. source: "./media/characters/alex-xuria/demon-cock.svg"
  46473. },
  46474. form: "demon"
  46475. },
  46476. demonTailClosed: {
  46477. height: math.unit(1.47, "meters"),
  46478. name: "Tail (Closed)",
  46479. image: {
  46480. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  46481. },
  46482. form: "demon"
  46483. },
  46484. demonTailOpen: {
  46485. height: math.unit(2.85, "meters"),
  46486. name: "Tail (Open)",
  46487. image: {
  46488. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  46489. },
  46490. form: "demon"
  46491. },
  46492. incubusFront: {
  46493. height: math.unit(12, "feet"),
  46494. name: "Front",
  46495. image: {
  46496. source: "./media/characters/alex-xuria/incubus-front.svg",
  46497. extra: 1754/1677,
  46498. bottom: 125/1879
  46499. },
  46500. form: "incubus",
  46501. default: true
  46502. },
  46503. incubusBack: {
  46504. height: math.unit(12, "feet"),
  46505. name: "Back",
  46506. image: {
  46507. source: "./media/characters/alex-xuria/incubus-back.svg",
  46508. extra: 1702/1647,
  46509. bottom: 30/1732
  46510. },
  46511. form: "incubus"
  46512. },
  46513. incubusHead: {
  46514. height: math.unit(3.45, "feet"),
  46515. name: "Head",
  46516. image: {
  46517. source: "./media/characters/alex-xuria/incubus-head.svg"
  46518. },
  46519. form: "incubus"
  46520. },
  46521. rabbitFront: {
  46522. height: math.unit(6, "feet"),
  46523. name: "Front",
  46524. image: {
  46525. source: "./media/characters/alex-xuria/rabbit-front.svg",
  46526. extra: 1369/1349,
  46527. bottom: 45/1414
  46528. },
  46529. form: "rabbit",
  46530. default: true
  46531. },
  46532. rabbitSide: {
  46533. height: math.unit(6, "feet"),
  46534. name: "Side",
  46535. image: {
  46536. source: "./media/characters/alex-xuria/rabbit-side.svg",
  46537. extra: 1370/1356,
  46538. bottom: 37/1407
  46539. },
  46540. form: "rabbit"
  46541. },
  46542. rabbitBack: {
  46543. height: math.unit(6, "feet"),
  46544. name: "Back",
  46545. image: {
  46546. source: "./media/characters/alex-xuria/rabbit-back.svg",
  46547. extra: 1375/1358,
  46548. bottom: 43/1418
  46549. },
  46550. form: "rabbit"
  46551. },
  46552. },
  46553. [
  46554. {
  46555. name: "Normal",
  46556. height: math.unit(6, "feet"),
  46557. default: true,
  46558. form: "rabbit"
  46559. },
  46560. {
  46561. name: "Incubus",
  46562. height: math.unit(12, "feet"),
  46563. default: true,
  46564. form: "incubus"
  46565. },
  46566. {
  46567. name: "Demon",
  46568. height: math.unit(36, "feet"),
  46569. default: true,
  46570. form: "demon"
  46571. }
  46572. ],
  46573. {
  46574. "demon": {
  46575. name: "Demon",
  46576. default: true
  46577. },
  46578. "incubus": {
  46579. name: "Incubus",
  46580. },
  46581. "rabbit": {
  46582. name: "Rabbit"
  46583. }
  46584. }
  46585. ))
  46586. characterMakers.push(() => makeCharacter(
  46587. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  46588. {
  46589. front: {
  46590. height: math.unit(7 + 5/12, "feet"),
  46591. weight: math.unit(510, "lb"),
  46592. name: "Front",
  46593. image: {
  46594. source: "./media/characters/syrup/front.svg",
  46595. extra: 932/916,
  46596. bottom: 26/958
  46597. }
  46598. },
  46599. },
  46600. [
  46601. {
  46602. name: "Normal",
  46603. height: math.unit(7 + 5/12, "feet"),
  46604. default: true
  46605. },
  46606. {
  46607. name: "Big",
  46608. height: math.unit(50, "feet")
  46609. },
  46610. {
  46611. name: "Macro",
  46612. height: math.unit(300, "feet")
  46613. },
  46614. {
  46615. name: "Megamacro",
  46616. height: math.unit(1, "mile")
  46617. },
  46618. ]
  46619. ))
  46620. characterMakers.push(() => makeCharacter(
  46621. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  46622. {
  46623. front: {
  46624. height: math.unit(6 + 9/12, "feet"),
  46625. name: "Front",
  46626. image: {
  46627. source: "./media/characters/zeimne/front.svg",
  46628. extra: 1969/1806,
  46629. bottom: 53/2022
  46630. }
  46631. },
  46632. },
  46633. [
  46634. {
  46635. name: "Normal",
  46636. height: math.unit(6 + 9/12, "feet"),
  46637. default: true
  46638. },
  46639. {
  46640. name: "Giant",
  46641. height: math.unit(550, "feet")
  46642. },
  46643. {
  46644. name: "Mega",
  46645. height: math.unit(3, "miles")
  46646. },
  46647. {
  46648. name: "Giga",
  46649. height: math.unit(250, "miles")
  46650. },
  46651. {
  46652. name: "Tera",
  46653. height: math.unit(1, "AU")
  46654. },
  46655. ]
  46656. ))
  46657. characterMakers.push(() => makeCharacter(
  46658. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  46659. {
  46660. front: {
  46661. height: math.unit(5 + 2/12, "feet"),
  46662. name: "Front",
  46663. image: {
  46664. source: "./media/characters/grar/front.svg",
  46665. extra: 1331/1119,
  46666. bottom: 60/1391
  46667. }
  46668. },
  46669. back: {
  46670. height: math.unit(5 + 2/12, "feet"),
  46671. name: "Back",
  46672. image: {
  46673. source: "./media/characters/grar/back.svg",
  46674. extra: 1385/1169,
  46675. bottom: 23/1408
  46676. }
  46677. },
  46678. },
  46679. [
  46680. {
  46681. name: "Normal",
  46682. height: math.unit(5 + 2/12, "feet"),
  46683. default: true
  46684. },
  46685. ]
  46686. ))
  46687. characterMakers.push(() => makeCharacter(
  46688. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  46689. {
  46690. front: {
  46691. height: math.unit(13 + 7/12, "feet"),
  46692. weight: math.unit(2200, "lb"),
  46693. name: "Front",
  46694. image: {
  46695. source: "./media/characters/endraya/front.svg",
  46696. extra: 1289/1215,
  46697. bottom: 50/1339
  46698. }
  46699. },
  46700. nude: {
  46701. height: math.unit(13 + 7/12, "feet"),
  46702. weight: math.unit(2200, "lb"),
  46703. name: "Nude",
  46704. image: {
  46705. source: "./media/characters/endraya/nude.svg",
  46706. extra: 1247/1171,
  46707. bottom: 40/1287
  46708. }
  46709. },
  46710. head: {
  46711. height: math.unit(2.6, "feet"),
  46712. name: "Head",
  46713. image: {
  46714. source: "./media/characters/endraya/head.svg"
  46715. }
  46716. },
  46717. slit: {
  46718. height: math.unit(3.4, "feet"),
  46719. name: "Slit",
  46720. image: {
  46721. source: "./media/characters/endraya/slit.svg"
  46722. }
  46723. },
  46724. },
  46725. [
  46726. {
  46727. name: "Normal",
  46728. height: math.unit(13 + 7/12, "feet"),
  46729. default: true
  46730. },
  46731. {
  46732. name: "Macro",
  46733. height: math.unit(200, "feet")
  46734. },
  46735. ]
  46736. ))
  46737. characterMakers.push(() => makeCharacter(
  46738. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  46739. {
  46740. front: {
  46741. height: math.unit(1.81, "meters"),
  46742. weight: math.unit(69, "kg"),
  46743. name: "Front",
  46744. image: {
  46745. source: "./media/characters/rodryana/front.svg",
  46746. extra: 2002/1921,
  46747. bottom: 53/2055
  46748. }
  46749. },
  46750. back: {
  46751. height: math.unit(1.81, "meters"),
  46752. weight: math.unit(69, "kg"),
  46753. name: "Back",
  46754. image: {
  46755. source: "./media/characters/rodryana/back.svg",
  46756. extra: 1993/1926,
  46757. bottom: 48/2041
  46758. }
  46759. },
  46760. maw: {
  46761. height: math.unit(0.19769417475, "meters"),
  46762. name: "Maw",
  46763. image: {
  46764. source: "./media/characters/rodryana/maw.svg"
  46765. }
  46766. },
  46767. slit: {
  46768. height: math.unit(0.31631067961, "meters"),
  46769. name: "Slit",
  46770. image: {
  46771. source: "./media/characters/rodryana/slit.svg"
  46772. }
  46773. },
  46774. },
  46775. [
  46776. {
  46777. name: "Normal",
  46778. height: math.unit(1.81, "meters")
  46779. },
  46780. {
  46781. name: "Mini Macro",
  46782. height: math.unit(181, "meters")
  46783. },
  46784. {
  46785. name: "Macro",
  46786. height: math.unit(452, "meters"),
  46787. default: true
  46788. },
  46789. {
  46790. name: "Mega Macro",
  46791. height: math.unit(1.375, "km")
  46792. },
  46793. {
  46794. name: "Giga Macro",
  46795. height: math.unit(13.575, "km")
  46796. },
  46797. ]
  46798. ))
  46799. characterMakers.push(() => makeCharacter(
  46800. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  46801. {
  46802. front: {
  46803. height: math.unit(6, "feet"),
  46804. weight: math.unit(1000, "lb"),
  46805. name: "Front",
  46806. image: {
  46807. source: "./media/characters/asaya/front.svg",
  46808. extra: 1460/1200,
  46809. bottom: 71/1531
  46810. }
  46811. },
  46812. },
  46813. [
  46814. {
  46815. name: "Normal",
  46816. height: math.unit(8, "km"),
  46817. default: true
  46818. },
  46819. ]
  46820. ))
  46821. characterMakers.push(() => makeCharacter(
  46822. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  46823. {
  46824. front: {
  46825. height: math.unit(3.5, "meters"),
  46826. name: "Front",
  46827. image: {
  46828. source: "./media/characters/sarzu-and-israz/front.svg",
  46829. extra: 1570/1558,
  46830. bottom: 150/1720
  46831. },
  46832. },
  46833. back: {
  46834. height: math.unit(3.5, "meters"),
  46835. name: "Back",
  46836. image: {
  46837. source: "./media/characters/sarzu-and-israz/back.svg",
  46838. extra: 1523/1509,
  46839. bottom: 132/1655
  46840. },
  46841. },
  46842. frontFemale: {
  46843. height: math.unit(3.5, "meters"),
  46844. name: "Front (Female)",
  46845. image: {
  46846. source: "./media/characters/sarzu-and-israz/front-female.svg",
  46847. extra: 1570/1558,
  46848. bottom: 150/1720
  46849. },
  46850. },
  46851. frontHerm: {
  46852. height: math.unit(3.5, "meters"),
  46853. name: "Front (Herm)",
  46854. image: {
  46855. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  46856. extra: 1570/1558,
  46857. bottom: 150/1720
  46858. },
  46859. },
  46860. },
  46861. [
  46862. {
  46863. name: "Normal",
  46864. height: math.unit(3.5, "meters"),
  46865. default: true,
  46866. },
  46867. {
  46868. name: "Macro",
  46869. height: math.unit(65.5, "meters"),
  46870. },
  46871. ],
  46872. ))
  46873. characterMakers.push(() => makeCharacter(
  46874. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  46875. {
  46876. front: {
  46877. height: math.unit(6, "feet"),
  46878. weight: math.unit(250, "lb"),
  46879. name: "Front",
  46880. image: {
  46881. source: "./media/characters/zenimma/front.svg",
  46882. extra: 1346/1320,
  46883. bottom: 58/1404
  46884. }
  46885. },
  46886. back: {
  46887. height: math.unit(6, "feet"),
  46888. weight: math.unit(250, "lb"),
  46889. name: "Back",
  46890. image: {
  46891. source: "./media/characters/zenimma/back.svg",
  46892. extra: 1324/1308,
  46893. bottom: 44/1368
  46894. }
  46895. },
  46896. dick: {
  46897. height: math.unit(1.44, "feet"),
  46898. name: "Dick",
  46899. image: {
  46900. source: "./media/characters/zenimma/dick.svg"
  46901. }
  46902. },
  46903. },
  46904. [
  46905. {
  46906. name: "Canon Height",
  46907. height: math.unit(66, "miles"),
  46908. default: true
  46909. },
  46910. ]
  46911. ))
  46912. characterMakers.push(() => makeCharacter(
  46913. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  46914. {
  46915. nude: {
  46916. height: math.unit(6, "feet"),
  46917. weight: math.unit(150, "lb"),
  46918. name: "Nude",
  46919. image: {
  46920. source: "./media/characters/shavon/nude.svg",
  46921. extra: 1242/1096,
  46922. bottom: 98/1340
  46923. }
  46924. },
  46925. dressed: {
  46926. height: math.unit(6, "feet"),
  46927. weight: math.unit(150, "lb"),
  46928. name: "Dressed",
  46929. image: {
  46930. source: "./media/characters/shavon/dressed.svg",
  46931. extra: 1242/1096,
  46932. bottom: 98/1340
  46933. }
  46934. },
  46935. },
  46936. [
  46937. {
  46938. name: "Macro",
  46939. height: math.unit(255, "feet"),
  46940. default: true
  46941. },
  46942. ]
  46943. ))
  46944. characterMakers.push(() => makeCharacter(
  46945. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  46946. {
  46947. front: {
  46948. height: math.unit(6, "feet"),
  46949. name: "Front",
  46950. image: {
  46951. source: "./media/characters/steph/front.svg",
  46952. extra: 1430/1330,
  46953. bottom: 54/1484
  46954. }
  46955. },
  46956. },
  46957. [
  46958. {
  46959. name: "Normal",
  46960. height: math.unit(6, "feet"),
  46961. default: true
  46962. },
  46963. ]
  46964. ))
  46965. characterMakers.push(() => makeCharacter(
  46966. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  46967. {
  46968. front: {
  46969. height: math.unit(9, "feet"),
  46970. weight: math.unit(400, "lb"),
  46971. name: "Front",
  46972. image: {
  46973. source: "./media/characters/kil'aman/front.svg",
  46974. extra: 1210/1159,
  46975. bottom: 109/1319
  46976. }
  46977. },
  46978. head: {
  46979. height: math.unit(2.14, "feet"),
  46980. name: "Head",
  46981. image: {
  46982. source: "./media/characters/kil'aman/head.svg"
  46983. }
  46984. },
  46985. maw: {
  46986. height: math.unit(1.21, "feet"),
  46987. name: "Maw",
  46988. image: {
  46989. source: "./media/characters/kil'aman/maw.svg"
  46990. }
  46991. },
  46992. foot: {
  46993. height: math.unit(1.7, "feet"),
  46994. name: "Foot",
  46995. image: {
  46996. source: "./media/characters/kil'aman/foot.svg"
  46997. }
  46998. },
  46999. dick: {
  47000. height: math.unit(2.1, "feet"),
  47001. name: "Dick",
  47002. image: {
  47003. source: "./media/characters/kil'aman/dick.svg"
  47004. }
  47005. },
  47006. },
  47007. [
  47008. {
  47009. name: "Normal",
  47010. height: math.unit(9, "feet")
  47011. },
  47012. {
  47013. name: "Canon Height",
  47014. height: math.unit(10, "miles"),
  47015. default: true
  47016. },
  47017. {
  47018. name: "Maximum",
  47019. height: math.unit(6e9, "miles")
  47020. },
  47021. ]
  47022. ))
  47023. characterMakers.push(() => makeCharacter(
  47024. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  47025. {
  47026. front: {
  47027. height: math.unit(90, "feet"),
  47028. weight: math.unit(675000, "lb"),
  47029. name: "Front",
  47030. image: {
  47031. source: "./media/characters/qadan/front.svg",
  47032. extra: 1012/1004,
  47033. bottom: 78/1090
  47034. }
  47035. },
  47036. back: {
  47037. height: math.unit(90, "feet"),
  47038. weight: math.unit(675000, "lb"),
  47039. name: "Back",
  47040. image: {
  47041. source: "./media/characters/qadan/back.svg",
  47042. extra: 1042/1031,
  47043. bottom: 55/1097
  47044. }
  47045. },
  47046. armored: {
  47047. height: math.unit(90, "feet"),
  47048. weight: math.unit(675000, "lb"),
  47049. name: "Armored",
  47050. image: {
  47051. source: "./media/characters/qadan/armored.svg",
  47052. extra: 1047/1037,
  47053. bottom: 48/1095
  47054. }
  47055. },
  47056. },
  47057. [
  47058. {
  47059. name: "Normal",
  47060. height: math.unit(90, "feet"),
  47061. default: true
  47062. },
  47063. ]
  47064. ))
  47065. characterMakers.push(() => makeCharacter(
  47066. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  47067. {
  47068. front: {
  47069. height: math.unit(6, "feet"),
  47070. weight: math.unit(225, "lb"),
  47071. name: "Front",
  47072. image: {
  47073. source: "./media/characters/brooke/front.svg",
  47074. extra: 1050/1010,
  47075. bottom: 66/1116
  47076. }
  47077. },
  47078. back: {
  47079. height: math.unit(6, "feet"),
  47080. weight: math.unit(225, "lb"),
  47081. name: "Back",
  47082. image: {
  47083. source: "./media/characters/brooke/back.svg",
  47084. extra: 1053/1013,
  47085. bottom: 41/1094
  47086. }
  47087. },
  47088. dressed: {
  47089. height: math.unit(6, "feet"),
  47090. weight: math.unit(225, "lb"),
  47091. name: "Dressed",
  47092. image: {
  47093. source: "./media/characters/brooke/dressed.svg",
  47094. extra: 1050/1010,
  47095. bottom: 66/1116
  47096. }
  47097. },
  47098. },
  47099. [
  47100. {
  47101. name: "Canon Height",
  47102. height: math.unit(500, "miles"),
  47103. default: true
  47104. },
  47105. ]
  47106. ))
  47107. characterMakers.push(() => makeCharacter(
  47108. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  47109. {
  47110. front: {
  47111. height: math.unit(6 + 2/12, "feet"),
  47112. weight: math.unit(210, "lb"),
  47113. name: "Front",
  47114. image: {
  47115. source: "./media/characters/wubs/front.svg",
  47116. extra: 1345/1325,
  47117. bottom: 70/1415
  47118. }
  47119. },
  47120. back: {
  47121. height: math.unit(6 + 2/12, "feet"),
  47122. weight: math.unit(210, "lb"),
  47123. name: "Back",
  47124. image: {
  47125. source: "./media/characters/wubs/back.svg",
  47126. extra: 1296/1275,
  47127. bottom: 58/1354
  47128. }
  47129. },
  47130. },
  47131. [
  47132. {
  47133. name: "Normal",
  47134. height: math.unit(6 + 2/12, "feet"),
  47135. default: true
  47136. },
  47137. {
  47138. name: "Macro",
  47139. height: math.unit(1000, "feet")
  47140. },
  47141. {
  47142. name: "Megamacro",
  47143. height: math.unit(1, "mile")
  47144. },
  47145. ]
  47146. ))
  47147. characterMakers.push(() => makeCharacter(
  47148. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  47149. {
  47150. front: {
  47151. height: math.unit(4, "feet"),
  47152. weight: math.unit(120, "lb"),
  47153. name: "Front",
  47154. image: {
  47155. source: "./media/characters/blue/front.svg",
  47156. extra: 1636/1525,
  47157. bottom: 43/1679
  47158. }
  47159. },
  47160. back: {
  47161. height: math.unit(4, "feet"),
  47162. weight: math.unit(120, "lb"),
  47163. name: "Back",
  47164. image: {
  47165. source: "./media/characters/blue/back.svg",
  47166. extra: 1660/1560,
  47167. bottom: 57/1717
  47168. }
  47169. },
  47170. paws: {
  47171. height: math.unit(0.826, "feet"),
  47172. name: "Paws",
  47173. image: {
  47174. source: "./media/characters/blue/paws.svg"
  47175. }
  47176. },
  47177. },
  47178. [
  47179. {
  47180. name: "Micro",
  47181. height: math.unit(3, "inches")
  47182. },
  47183. {
  47184. name: "Normal",
  47185. height: math.unit(4, "feet"),
  47186. default: true
  47187. },
  47188. {
  47189. name: "Femenine Form",
  47190. height: math.unit(14, "feet")
  47191. },
  47192. {
  47193. name: "Werebat Form",
  47194. height: math.unit(18, "feet")
  47195. },
  47196. ]
  47197. ))
  47198. characterMakers.push(() => makeCharacter(
  47199. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  47200. {
  47201. female: {
  47202. height: math.unit(7 + 4/12, "feet"),
  47203. weight: math.unit(243, "lb"),
  47204. name: "Female",
  47205. image: {
  47206. source: "./media/characters/kaya/female.svg",
  47207. extra: 975/898,
  47208. bottom: 34/1009
  47209. }
  47210. },
  47211. herm: {
  47212. height: math.unit(7 + 4/12, "feet"),
  47213. weight: math.unit(243, "lb"),
  47214. name: "Herm",
  47215. image: {
  47216. source: "./media/characters/kaya/herm.svg",
  47217. extra: 975/898,
  47218. bottom: 34/1009
  47219. }
  47220. },
  47221. },
  47222. [
  47223. {
  47224. name: "Normal",
  47225. height: math.unit(7 + 4/12, "feet"),
  47226. default: true
  47227. },
  47228. ]
  47229. ))
  47230. characterMakers.push(() => makeCharacter(
  47231. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  47232. {
  47233. female: {
  47234. height: math.unit(9 + 4/12, "feet"),
  47235. weight: math.unit(398, "lb"),
  47236. name: "Female",
  47237. image: {
  47238. source: "./media/characters/kassandra/female.svg",
  47239. extra: 908/839,
  47240. bottom: 61/969
  47241. }
  47242. },
  47243. intersex: {
  47244. height: math.unit(9 + 4/12, "feet"),
  47245. weight: math.unit(398, "lb"),
  47246. name: "Intersex",
  47247. image: {
  47248. source: "./media/characters/kassandra/intersex.svg",
  47249. extra: 908/839,
  47250. bottom: 61/969
  47251. }
  47252. },
  47253. },
  47254. [
  47255. {
  47256. name: "Normal",
  47257. height: math.unit(9 + 4/12, "feet"),
  47258. default: true
  47259. },
  47260. ]
  47261. ))
  47262. characterMakers.push(() => makeCharacter(
  47263. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  47264. {
  47265. front: {
  47266. height: math.unit(3, "meters"),
  47267. name: "Front",
  47268. image: {
  47269. source: "./media/characters/amy/front.svg",
  47270. extra: 1380/1343,
  47271. bottom: 70/1450
  47272. }
  47273. },
  47274. back: {
  47275. height: math.unit(3, "meters"),
  47276. name: "Back",
  47277. image: {
  47278. source: "./media/characters/amy/back.svg",
  47279. extra: 1380/1347,
  47280. bottom: 66/1446
  47281. }
  47282. },
  47283. },
  47284. [
  47285. {
  47286. name: "Normal",
  47287. height: math.unit(3, "meters"),
  47288. default: true
  47289. },
  47290. ]
  47291. ))
  47292. characterMakers.push(() => makeCharacter(
  47293. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  47294. {
  47295. side: {
  47296. height: math.unit(47, "cm"),
  47297. weight: math.unit(10.8, "kg"),
  47298. name: "Side",
  47299. image: {
  47300. source: "./media/characters/alphaschakal/side.svg",
  47301. extra: 1058/568,
  47302. bottom: 62/1120
  47303. }
  47304. },
  47305. back: {
  47306. height: math.unit(78, "cm"),
  47307. weight: math.unit(10.8, "kg"),
  47308. name: "Back",
  47309. image: {
  47310. source: "./media/characters/alphaschakal/back.svg",
  47311. extra: 1102/942,
  47312. bottom: 185/1287
  47313. }
  47314. },
  47315. head: {
  47316. height: math.unit(28, "cm"),
  47317. name: "Head",
  47318. image: {
  47319. source: "./media/characters/alphaschakal/head.svg",
  47320. extra: 696/508,
  47321. bottom: 0/696
  47322. }
  47323. },
  47324. paw: {
  47325. height: math.unit(16, "cm"),
  47326. name: "Paw",
  47327. image: {
  47328. source: "./media/characters/alphaschakal/paw.svg"
  47329. }
  47330. },
  47331. },
  47332. [
  47333. {
  47334. name: "Normal",
  47335. height: math.unit(47, "cm"),
  47336. default: true
  47337. },
  47338. {
  47339. name: "Macro",
  47340. height: math.unit(340, "cm")
  47341. },
  47342. ]
  47343. ))
  47344. characterMakers.push(() => makeCharacter(
  47345. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  47346. {
  47347. front: {
  47348. height: math.unit(36, "earths"),
  47349. name: "Front",
  47350. image: {
  47351. source: "./media/characters/ecobyss/front.svg",
  47352. extra: 1282/1215,
  47353. bottom: 11/1293
  47354. }
  47355. },
  47356. back: {
  47357. height: math.unit(36, "earths"),
  47358. name: "Back",
  47359. image: {
  47360. source: "./media/characters/ecobyss/back.svg",
  47361. extra: 1291/1222,
  47362. bottom: 8/1299
  47363. }
  47364. },
  47365. },
  47366. [
  47367. {
  47368. name: "Normal",
  47369. height: math.unit(36, "earths"),
  47370. default: true
  47371. },
  47372. ]
  47373. ))
  47374. characterMakers.push(() => makeCharacter(
  47375. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  47376. {
  47377. front: {
  47378. height: math.unit(12, "feet"),
  47379. name: "Front",
  47380. image: {
  47381. source: "./media/characters/vasuk/front.svg",
  47382. extra: 1326/1207,
  47383. bottom: 64/1390
  47384. }
  47385. },
  47386. },
  47387. [
  47388. {
  47389. name: "Normal",
  47390. height: math.unit(12, "feet"),
  47391. default: true
  47392. },
  47393. ]
  47394. ))
  47395. characterMakers.push(() => makeCharacter(
  47396. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  47397. {
  47398. side: {
  47399. height: math.unit(100, "feet"),
  47400. name: "Side",
  47401. image: {
  47402. source: "./media/characters/linneaus/side.svg",
  47403. extra: 987/807,
  47404. bottom: 47/1034
  47405. }
  47406. },
  47407. },
  47408. [
  47409. {
  47410. name: "Macro",
  47411. height: math.unit(100, "feet"),
  47412. default: true
  47413. },
  47414. ]
  47415. ))
  47416. characterMakers.push(() => makeCharacter(
  47417. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  47418. {
  47419. front: {
  47420. height: math.unit(8, "feet"),
  47421. weight: math.unit(1200, "lb"),
  47422. name: "Front",
  47423. image: {
  47424. source: "./media/characters/nyterious-daligdig/front.svg",
  47425. extra: 1284/1094,
  47426. bottom: 84/1368
  47427. }
  47428. },
  47429. back: {
  47430. height: math.unit(8, "feet"),
  47431. weight: math.unit(1200, "lb"),
  47432. name: "Back",
  47433. image: {
  47434. source: "./media/characters/nyterious-daligdig/back.svg",
  47435. extra: 1301/1121,
  47436. bottom: 129/1430
  47437. }
  47438. },
  47439. mouth: {
  47440. height: math.unit(1.464, "feet"),
  47441. name: "Mouth",
  47442. image: {
  47443. source: "./media/characters/nyterious-daligdig/mouth.svg"
  47444. }
  47445. },
  47446. },
  47447. [
  47448. {
  47449. name: "Small",
  47450. height: math.unit(8, "feet"),
  47451. default: true
  47452. },
  47453. {
  47454. name: "Normal",
  47455. height: math.unit(15, "feet")
  47456. },
  47457. {
  47458. name: "Macro",
  47459. height: math.unit(90, "feet")
  47460. },
  47461. ]
  47462. ))
  47463. characterMakers.push(() => makeCharacter(
  47464. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  47465. {
  47466. front: {
  47467. height: math.unit(7 + 4/12, "feet"),
  47468. weight: math.unit(252, "lb"),
  47469. name: "Front",
  47470. image: {
  47471. source: "./media/characters/bandel/front.svg",
  47472. extra: 1946/1775,
  47473. bottom: 26/1972
  47474. }
  47475. },
  47476. back: {
  47477. height: math.unit(7 + 4/12, "feet"),
  47478. weight: math.unit(252, "lb"),
  47479. name: "Back",
  47480. image: {
  47481. source: "./media/characters/bandel/back.svg",
  47482. extra: 1940/1770,
  47483. bottom: 25/1965
  47484. }
  47485. },
  47486. maw: {
  47487. height: math.unit(2.15, "feet"),
  47488. name: "Maw",
  47489. image: {
  47490. source: "./media/characters/bandel/maw.svg"
  47491. }
  47492. },
  47493. stomach: {
  47494. height: math.unit(1.95, "feet"),
  47495. name: "Stomach",
  47496. image: {
  47497. source: "./media/characters/bandel/stomach.svg"
  47498. }
  47499. },
  47500. },
  47501. [
  47502. {
  47503. name: "Normal",
  47504. height: math.unit(7 + 4/12, "feet"),
  47505. default: true
  47506. },
  47507. ]
  47508. ))
  47509. characterMakers.push(() => makeCharacter(
  47510. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  47511. {
  47512. front: {
  47513. height: math.unit(10 + 5/12, "feet"),
  47514. weight: math.unit(773.5, "kg"),
  47515. name: "Front",
  47516. image: {
  47517. source: "./media/characters/zed/front.svg",
  47518. extra: 987/941,
  47519. bottom: 52/1039
  47520. }
  47521. },
  47522. },
  47523. [
  47524. {
  47525. name: "Short",
  47526. height: math.unit(5 + 4/12, "feet")
  47527. },
  47528. {
  47529. name: "Average",
  47530. height: math.unit(10 + 5/12, "feet"),
  47531. default: true
  47532. },
  47533. {
  47534. name: "Mini-Macro",
  47535. height: math.unit(24 + 9/12, "feet")
  47536. },
  47537. {
  47538. name: "Macro",
  47539. height: math.unit(249, "feet")
  47540. },
  47541. {
  47542. name: "Mega-Macro",
  47543. height: math.unit(12490, "feet")
  47544. },
  47545. {
  47546. name: "Giga-Macro",
  47547. height: math.unit(24.9, "miles")
  47548. },
  47549. {
  47550. name: "Tera-Macro",
  47551. height: math.unit(24900, "miles")
  47552. },
  47553. {
  47554. name: "Cosmic Scale",
  47555. height: math.unit(38.9, "lightyears")
  47556. },
  47557. {
  47558. name: "Universal Scale",
  47559. height: math.unit(138e12, "lightyears")
  47560. },
  47561. ]
  47562. ))
  47563. characterMakers.push(() => makeCharacter(
  47564. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  47565. {
  47566. front: {
  47567. height: math.unit(1561, "inches"),
  47568. name: "Front",
  47569. image: {
  47570. source: "./media/characters/ivan/front.svg",
  47571. extra: 1126/1071,
  47572. bottom: 26/1152
  47573. }
  47574. },
  47575. back: {
  47576. height: math.unit(1561, "inches"),
  47577. name: "Back",
  47578. image: {
  47579. source: "./media/characters/ivan/back.svg",
  47580. extra: 1134/1079,
  47581. bottom: 30/1164
  47582. }
  47583. },
  47584. },
  47585. [
  47586. {
  47587. name: "Normal",
  47588. height: math.unit(1561, "inches"),
  47589. default: true
  47590. },
  47591. ]
  47592. ))
  47593. characterMakers.push(() => makeCharacter(
  47594. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  47595. {
  47596. front: {
  47597. height: math.unit(5 + 7/12, "feet"),
  47598. weight: math.unit(150, "lb"),
  47599. name: "Front",
  47600. image: {
  47601. source: "./media/characters/robin-arctic-hare/front.svg",
  47602. extra: 1148/974,
  47603. bottom: 20/1168
  47604. }
  47605. },
  47606. },
  47607. [
  47608. {
  47609. name: "Normal",
  47610. height: math.unit(5 + 7/12, "feet"),
  47611. default: true
  47612. },
  47613. ]
  47614. ))
  47615. characterMakers.push(() => makeCharacter(
  47616. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  47617. {
  47618. side: {
  47619. height: math.unit(5, "feet"),
  47620. name: "Side",
  47621. image: {
  47622. source: "./media/characters/birch/side.svg",
  47623. extra: 985/796,
  47624. bottom: 111/1096
  47625. }
  47626. },
  47627. },
  47628. [
  47629. {
  47630. name: "Normal",
  47631. height: math.unit(5, "feet"),
  47632. default: true
  47633. },
  47634. ]
  47635. ))
  47636. characterMakers.push(() => makeCharacter(
  47637. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  47638. {
  47639. front: {
  47640. height: math.unit(4, "feet"),
  47641. name: "Front",
  47642. image: {
  47643. source: "./media/characters/rasp/front.svg",
  47644. extra: 561/478,
  47645. bottom: 74/635
  47646. }
  47647. },
  47648. },
  47649. [
  47650. {
  47651. name: "Normal",
  47652. height: math.unit(4, "feet"),
  47653. default: true
  47654. },
  47655. ]
  47656. ))
  47657. characterMakers.push(() => makeCharacter(
  47658. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  47659. {
  47660. front: {
  47661. height: math.unit(4 + 6/12, "feet"),
  47662. name: "Front",
  47663. image: {
  47664. source: "./media/characters/agatha/front.svg",
  47665. extra: 947/933,
  47666. bottom: 42/989
  47667. }
  47668. },
  47669. back: {
  47670. height: math.unit(4 + 6/12, "feet"),
  47671. name: "Back",
  47672. image: {
  47673. source: "./media/characters/agatha/back.svg",
  47674. extra: 935/922,
  47675. bottom: 48/983
  47676. }
  47677. },
  47678. },
  47679. [
  47680. {
  47681. name: "Normal",
  47682. height: math.unit(4 + 6 /12, "feet"),
  47683. default: true
  47684. },
  47685. {
  47686. name: "Max Size",
  47687. height: math.unit(500, "feet")
  47688. },
  47689. ]
  47690. ))
  47691. characterMakers.push(() => makeCharacter(
  47692. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  47693. {
  47694. side: {
  47695. height: math.unit(30, "feet"),
  47696. name: "Side",
  47697. image: {
  47698. source: "./media/characters/roggy/side.svg",
  47699. extra: 909/643,
  47700. bottom: 63/972
  47701. }
  47702. },
  47703. lounging: {
  47704. height: math.unit(20, "feet"),
  47705. name: "Lounging",
  47706. image: {
  47707. source: "./media/characters/roggy/lounging.svg",
  47708. extra: 643/479,
  47709. bottom: 145/788
  47710. }
  47711. },
  47712. handpaw: {
  47713. height: math.unit(13.1, "feet"),
  47714. name: "Handpaw",
  47715. image: {
  47716. source: "./media/characters/roggy/handpaw.svg"
  47717. }
  47718. },
  47719. footpaw: {
  47720. height: math.unit(15.8, "feet"),
  47721. name: "Footpaw",
  47722. image: {
  47723. source: "./media/characters/roggy/footpaw.svg"
  47724. }
  47725. },
  47726. },
  47727. [
  47728. {
  47729. name: "Menacing",
  47730. height: math.unit(30, "feet"),
  47731. default: true
  47732. },
  47733. ]
  47734. ))
  47735. characterMakers.push(() => makeCharacter(
  47736. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  47737. {
  47738. front: {
  47739. height: math.unit(5 + 7/12, "feet"),
  47740. weight: math.unit(135, "lb"),
  47741. name: "Front",
  47742. image: {
  47743. source: "./media/characters/naomi/front.svg",
  47744. extra: 1209/1154,
  47745. bottom: 129/1338
  47746. }
  47747. },
  47748. back: {
  47749. height: math.unit(5 + 7/12, "feet"),
  47750. weight: math.unit(135, "lb"),
  47751. name: "Back",
  47752. image: {
  47753. source: "./media/characters/naomi/back.svg",
  47754. extra: 1252/1190,
  47755. bottom: 23/1275
  47756. }
  47757. },
  47758. },
  47759. [
  47760. {
  47761. name: "Normal",
  47762. height: math.unit(5 + 7 /12, "feet"),
  47763. default: true
  47764. },
  47765. ]
  47766. ))
  47767. characterMakers.push(() => makeCharacter(
  47768. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  47769. {
  47770. side: {
  47771. height: math.unit(35, "meters"),
  47772. name: "Side",
  47773. image: {
  47774. source: "./media/characters/kimpi/side.svg",
  47775. extra: 419/382,
  47776. bottom: 63/482
  47777. }
  47778. },
  47779. hand: {
  47780. height: math.unit(8.96, "meters"),
  47781. name: "Hand",
  47782. image: {
  47783. source: "./media/characters/kimpi/hand.svg"
  47784. }
  47785. },
  47786. },
  47787. [
  47788. {
  47789. name: "Normal",
  47790. height: math.unit(35, "meters"),
  47791. default: true
  47792. },
  47793. ]
  47794. ))
  47795. characterMakers.push(() => makeCharacter(
  47796. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  47797. {
  47798. front: {
  47799. height: math.unit(4 + 4/12, "feet"),
  47800. name: "Front",
  47801. image: {
  47802. source: "./media/characters/pepper-purrloin/front.svg",
  47803. extra: 1141/1024,
  47804. bottom: 21/1162
  47805. }
  47806. },
  47807. },
  47808. [
  47809. {
  47810. name: "Normal",
  47811. height: math.unit(4 + 4/12, "feet"),
  47812. default: true
  47813. },
  47814. ]
  47815. ))
  47816. characterMakers.push(() => makeCharacter(
  47817. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  47818. {
  47819. front: {
  47820. height: math.unit(6 + 2/12, "feet"),
  47821. name: "Front",
  47822. image: {
  47823. source: "./media/characters/raphael/front.svg",
  47824. extra: 1101/962,
  47825. bottom: 59/1160
  47826. }
  47827. },
  47828. },
  47829. [
  47830. {
  47831. name: "Normal",
  47832. height: math.unit(6 + 2/12, "feet"),
  47833. default: true
  47834. },
  47835. ]
  47836. ))
  47837. characterMakers.push(() => makeCharacter(
  47838. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  47839. {
  47840. front: {
  47841. height: math.unit(6, "feet"),
  47842. weight: math.unit(150, "lb"),
  47843. name: "Front",
  47844. image: {
  47845. source: "./media/characters/victor-williams/front.svg",
  47846. extra: 1894/1825,
  47847. bottom: 67/1961
  47848. }
  47849. },
  47850. },
  47851. [
  47852. {
  47853. name: "Normal",
  47854. height: math.unit(6, "feet"),
  47855. default: true
  47856. },
  47857. ]
  47858. ))
  47859. characterMakers.push(() => makeCharacter(
  47860. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  47861. {
  47862. front: {
  47863. height: math.unit(5 + 8/12, "feet"),
  47864. weight: math.unit(150, "lb"),
  47865. name: "Front",
  47866. image: {
  47867. source: "./media/characters/rachel/front.svg",
  47868. extra: 1902/1787,
  47869. bottom: 46/1948
  47870. }
  47871. },
  47872. },
  47873. [
  47874. {
  47875. name: "Base Height",
  47876. height: math.unit(5 + 8/12, "feet"),
  47877. default: true
  47878. },
  47879. {
  47880. name: "Macro",
  47881. height: math.unit(200, "feet")
  47882. },
  47883. {
  47884. name: "Mega Macro",
  47885. height: math.unit(1, "mile")
  47886. },
  47887. {
  47888. name: "Giga Macro",
  47889. height: math.unit(1500, "miles")
  47890. },
  47891. {
  47892. name: "Tera Macro",
  47893. height: math.unit(8000, "miles")
  47894. },
  47895. {
  47896. name: "Tera Macro+",
  47897. height: math.unit(2e5, "miles")
  47898. },
  47899. ]
  47900. ))
  47901. characterMakers.push(() => makeCharacter(
  47902. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  47903. {
  47904. front: {
  47905. height: math.unit(6.5, "feet"),
  47906. name: "Front",
  47907. image: {
  47908. source: "./media/characters/svetlana-rozovskaya/front.svg",
  47909. extra: 860/819,
  47910. bottom: 307/1167
  47911. }
  47912. },
  47913. back: {
  47914. height: math.unit(6.5, "feet"),
  47915. name: "Back",
  47916. image: {
  47917. source: "./media/characters/svetlana-rozovskaya/back.svg",
  47918. extra: 880/837,
  47919. bottom: 395/1275
  47920. }
  47921. },
  47922. sleeping: {
  47923. height: math.unit(2.79, "feet"),
  47924. name: "Sleeping",
  47925. image: {
  47926. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  47927. extra: 465/383,
  47928. bottom: 263/728
  47929. }
  47930. },
  47931. maw: {
  47932. height: math.unit(2.52, "feet"),
  47933. name: "Maw",
  47934. image: {
  47935. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  47936. }
  47937. },
  47938. },
  47939. [
  47940. {
  47941. name: "Normal",
  47942. height: math.unit(6.5, "feet"),
  47943. default: true
  47944. },
  47945. ]
  47946. ))
  47947. characterMakers.push(() => makeCharacter(
  47948. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  47949. {
  47950. front: {
  47951. height: math.unit(5, "feet"),
  47952. name: "Front",
  47953. image: {
  47954. source: "./media/characters/nova-nerium/front.svg",
  47955. extra: 1548/1392,
  47956. bottom: 374/1922
  47957. }
  47958. },
  47959. back: {
  47960. height: math.unit(5, "feet"),
  47961. name: "Back",
  47962. image: {
  47963. source: "./media/characters/nova-nerium/back.svg",
  47964. extra: 1658/1468,
  47965. bottom: 257/1915
  47966. }
  47967. },
  47968. },
  47969. [
  47970. {
  47971. name: "Normal",
  47972. height: math.unit(5, "feet"),
  47973. default: true
  47974. },
  47975. ]
  47976. ))
  47977. characterMakers.push(() => makeCharacter(
  47978. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  47979. {
  47980. front: {
  47981. height: math.unit(5 + 4/12, "feet"),
  47982. name: "Front",
  47983. image: {
  47984. source: "./media/characters/ashe-pyriph/front.svg",
  47985. extra: 1935/1747,
  47986. bottom: 60/1995
  47987. }
  47988. },
  47989. },
  47990. [
  47991. {
  47992. name: "Normal",
  47993. height: math.unit(5 + 4/12, "feet"),
  47994. default: true
  47995. },
  47996. ]
  47997. ))
  47998. characterMakers.push(() => makeCharacter(
  47999. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  48000. {
  48001. front: {
  48002. height: math.unit(8.7, "feet"),
  48003. name: "Front",
  48004. image: {
  48005. source: "./media/characters/flicker-wisp/front.svg",
  48006. extra: 1835/1613,
  48007. bottom: 449/2284
  48008. }
  48009. },
  48010. side: {
  48011. height: math.unit(8.7, "feet"),
  48012. name: "Side",
  48013. image: {
  48014. source: "./media/characters/flicker-wisp/side.svg",
  48015. extra: 1841/1642,
  48016. bottom: 336/2177
  48017. },
  48018. default: true
  48019. },
  48020. maw: {
  48021. height: math.unit(3.35, "feet"),
  48022. name: "Maw",
  48023. image: {
  48024. source: "./media/characters/flicker-wisp/maw.svg",
  48025. extra: 2338/1506,
  48026. bottom: 0/2338
  48027. }
  48028. },
  48029. ovipositor: {
  48030. height: math.unit(4.95, "feet"),
  48031. name: "Ovipositor",
  48032. image: {
  48033. source: "./media/characters/flicker-wisp/ovipositor.svg"
  48034. }
  48035. },
  48036. egg: {
  48037. height: math.unit(0.385, "feet"),
  48038. weight: math.unit(2, "lb"),
  48039. name: "Egg",
  48040. image: {
  48041. source: "./media/characters/flicker-wisp/egg.svg"
  48042. }
  48043. },
  48044. },
  48045. [
  48046. {
  48047. name: "Normal",
  48048. height: math.unit(8.7, "feet"),
  48049. default: true
  48050. },
  48051. ]
  48052. ))
  48053. characterMakers.push(() => makeCharacter(
  48054. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  48055. {
  48056. side: {
  48057. height: math.unit(11, "feet"),
  48058. name: "Side",
  48059. image: {
  48060. source: "./media/characters/faefnul/side.svg",
  48061. extra: 1100/1007,
  48062. bottom: 0/1100
  48063. }
  48064. },
  48065. },
  48066. [
  48067. {
  48068. name: "Normal",
  48069. height: math.unit(11, "feet"),
  48070. default: true
  48071. },
  48072. ]
  48073. ))
  48074. characterMakers.push(() => makeCharacter(
  48075. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  48076. {
  48077. front: {
  48078. height: math.unit(6 + 2/12, "feet"),
  48079. name: "Front",
  48080. image: {
  48081. source: "./media/characters/shady/front.svg",
  48082. extra: 502/461,
  48083. bottom: 9/511
  48084. }
  48085. },
  48086. kneeling: {
  48087. height: math.unit(4.6, "feet"),
  48088. name: "Kneeling",
  48089. image: {
  48090. source: "./media/characters/shady/kneeling.svg",
  48091. extra: 1328/1219,
  48092. bottom: 117/1445
  48093. }
  48094. },
  48095. maw: {
  48096. height: math.unit(2, "feet"),
  48097. name: "Maw",
  48098. image: {
  48099. source: "./media/characters/shady/maw.svg"
  48100. }
  48101. },
  48102. },
  48103. [
  48104. {
  48105. name: "Nano",
  48106. height: math.unit(1, "mm")
  48107. },
  48108. {
  48109. name: "Micro",
  48110. height: math.unit(12, "mm")
  48111. },
  48112. {
  48113. name: "Tiny",
  48114. height: math.unit(3, "inches")
  48115. },
  48116. {
  48117. name: "Normal",
  48118. height: math.unit(6 + 2/12, "feet"),
  48119. default: true
  48120. },
  48121. {
  48122. name: "Big",
  48123. height: math.unit(15, "feet")
  48124. },
  48125. {
  48126. name: "Macro",
  48127. height: math.unit(150, "feet")
  48128. },
  48129. {
  48130. name: "Titanic",
  48131. height: math.unit(500, "feet")
  48132. },
  48133. ]
  48134. ))
  48135. characterMakers.push(() => makeCharacter(
  48136. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  48137. {
  48138. front: {
  48139. height: math.unit(12, "feet"),
  48140. name: "Front",
  48141. image: {
  48142. source: "./media/characters/fenrir/front.svg",
  48143. extra: 968/875,
  48144. bottom: 22/990
  48145. }
  48146. },
  48147. },
  48148. [
  48149. {
  48150. name: "Big",
  48151. height: math.unit(12, "feet"),
  48152. default: true
  48153. },
  48154. ]
  48155. ))
  48156. characterMakers.push(() => makeCharacter(
  48157. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  48158. {
  48159. front: {
  48160. height: math.unit(5 + 4/12, "feet"),
  48161. name: "Front",
  48162. image: {
  48163. source: "./media/characters/makar/front.svg",
  48164. extra: 1181/1112,
  48165. bottom: 78/1259
  48166. }
  48167. },
  48168. },
  48169. [
  48170. {
  48171. name: "Normal",
  48172. height: math.unit(5 + 4/12, "feet"),
  48173. default: true
  48174. },
  48175. ]
  48176. ))
  48177. characterMakers.push(() => makeCharacter(
  48178. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  48179. {
  48180. front: {
  48181. height: math.unit(5 + 7/12, "feet"),
  48182. name: "Front",
  48183. image: {
  48184. source: "./media/characters/callow/front.svg",
  48185. extra: 1482/1304,
  48186. bottom: 23/1505
  48187. }
  48188. },
  48189. back: {
  48190. height: math.unit(5 + 7/12, "feet"),
  48191. name: "Back",
  48192. image: {
  48193. source: "./media/characters/callow/back.svg",
  48194. extra: 1484/1296,
  48195. bottom: 25/1509
  48196. }
  48197. },
  48198. },
  48199. [
  48200. {
  48201. name: "Micro",
  48202. height: math.unit(3, "inches"),
  48203. default: true
  48204. },
  48205. {
  48206. name: "Normal",
  48207. height: math.unit(5 + 7/12, "feet")
  48208. },
  48209. ]
  48210. ))
  48211. characterMakers.push(() => makeCharacter(
  48212. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  48213. {
  48214. front: {
  48215. height: math.unit(6 + 2/12, "feet"),
  48216. name: "Front",
  48217. image: {
  48218. source: "./media/characters/natel/front.svg",
  48219. extra: 1833/1692,
  48220. bottom: 166/1999
  48221. }
  48222. },
  48223. },
  48224. [
  48225. {
  48226. name: "Normal",
  48227. height: math.unit(6 + 2/12, "feet"),
  48228. default: true
  48229. },
  48230. ]
  48231. ))
  48232. characterMakers.push(() => makeCharacter(
  48233. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  48234. {
  48235. front: {
  48236. height: math.unit(1.75, "meters"),
  48237. name: "Front",
  48238. image: {
  48239. source: "./media/characters/misu/front.svg",
  48240. extra: 1690/1558,
  48241. bottom: 234/1924
  48242. }
  48243. },
  48244. back: {
  48245. height: math.unit(1.75, "meters"),
  48246. name: "Back",
  48247. image: {
  48248. source: "./media/characters/misu/back.svg",
  48249. extra: 1762/1618,
  48250. bottom: 146/1908
  48251. }
  48252. },
  48253. frontNude: {
  48254. height: math.unit(1.75, "meters"),
  48255. name: "Front (Nude)",
  48256. image: {
  48257. source: "./media/characters/misu/front-nude.svg",
  48258. extra: 1690/1558,
  48259. bottom: 234/1924
  48260. }
  48261. },
  48262. backNude: {
  48263. height: math.unit(1.75, "meters"),
  48264. name: "Back (Nude)",
  48265. image: {
  48266. source: "./media/characters/misu/back-nude.svg",
  48267. extra: 1762/1618,
  48268. bottom: 146/1908
  48269. }
  48270. },
  48271. frontErect: {
  48272. height: math.unit(1.75, "meters"),
  48273. name: "Front (Erect)",
  48274. image: {
  48275. source: "./media/characters/misu/front-erect.svg",
  48276. extra: 1690/1558,
  48277. bottom: 234/1924
  48278. }
  48279. },
  48280. maw: {
  48281. height: math.unit(0.47, "meters"),
  48282. name: "Maw",
  48283. image: {
  48284. source: "./media/characters/misu/maw.svg"
  48285. }
  48286. },
  48287. head: {
  48288. height: math.unit(0.35, "meters"),
  48289. name: "Head",
  48290. image: {
  48291. source: "./media/characters/misu/head.svg"
  48292. }
  48293. },
  48294. rear: {
  48295. height: math.unit(0.47, "meters"),
  48296. name: "Rear",
  48297. image: {
  48298. source: "./media/characters/misu/rear.svg"
  48299. }
  48300. },
  48301. },
  48302. [
  48303. {
  48304. name: "Normal",
  48305. height: math.unit(1.75, "meters")
  48306. },
  48307. {
  48308. name: "Not good for the people",
  48309. height: math.unit(42, "meters")
  48310. },
  48311. {
  48312. name: "Not good for the neighborhood",
  48313. height: math.unit(135, "meters")
  48314. },
  48315. {
  48316. name: "Bit bigger problem",
  48317. height: math.unit(380, "meters"),
  48318. default: true
  48319. },
  48320. {
  48321. name: "Not good for the city",
  48322. height: math.unit(1.5, "km")
  48323. },
  48324. {
  48325. name: "Not good for the county",
  48326. height: math.unit(5.5, "km")
  48327. },
  48328. {
  48329. name: "Not good for the state",
  48330. height: math.unit(25, "km")
  48331. },
  48332. {
  48333. name: "Not good for the country",
  48334. height: math.unit(125, "km")
  48335. },
  48336. {
  48337. name: "Not good for the continent",
  48338. height: math.unit(2100, "km")
  48339. },
  48340. {
  48341. name: "Not good for the planet",
  48342. height: math.unit(35000, "km")
  48343. },
  48344. {
  48345. name: "Just no",
  48346. height: math.unit(8.5e18, "km")
  48347. },
  48348. ]
  48349. ))
  48350. characterMakers.push(() => makeCharacter(
  48351. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  48352. {
  48353. front: {
  48354. height: math.unit(6.5, "feet"),
  48355. name: "Front",
  48356. image: {
  48357. source: "./media/characters/poppy/front.svg",
  48358. extra: 1878/1812,
  48359. bottom: 43/1921
  48360. }
  48361. },
  48362. feet: {
  48363. height: math.unit(1.06, "feet"),
  48364. name: "Feet",
  48365. image: {
  48366. source: "./media/characters/poppy/feet.svg",
  48367. extra: 1083/1083,
  48368. bottom: 87/1170
  48369. }
  48370. },
  48371. },
  48372. [
  48373. {
  48374. name: "Human",
  48375. height: math.unit(6.5, "feet")
  48376. },
  48377. {
  48378. name: "Default",
  48379. height: math.unit(300, "feet"),
  48380. default: true
  48381. },
  48382. {
  48383. name: "Huge",
  48384. height: math.unit(850, "feet")
  48385. },
  48386. {
  48387. name: "Mega",
  48388. height: math.unit(8000, "feet")
  48389. },
  48390. {
  48391. name: "Giga",
  48392. height: math.unit(300, "miles")
  48393. },
  48394. ]
  48395. ))
  48396. characterMakers.push(() => makeCharacter(
  48397. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  48398. {
  48399. bipedal: {
  48400. height: math.unit(7, "feet"),
  48401. name: "Bipedal",
  48402. image: {
  48403. source: "./media/characters/zener/bipedal.svg",
  48404. extra: 874/805,
  48405. bottom: 109/983
  48406. }
  48407. },
  48408. quadrupedal: {
  48409. height: math.unit(4.64, "feet"),
  48410. name: "Quadrupedal",
  48411. image: {
  48412. source: "./media/characters/zener/quadrupedal.svg",
  48413. extra: 638/507,
  48414. bottom: 190/828
  48415. }
  48416. },
  48417. cock: {
  48418. height: math.unit(18, "inches"),
  48419. name: "Cock",
  48420. image: {
  48421. source: "./media/characters/zener/cock.svg"
  48422. }
  48423. },
  48424. },
  48425. [
  48426. {
  48427. name: "Normal",
  48428. height: math.unit(7, "feet"),
  48429. default: true
  48430. },
  48431. ]
  48432. ))
  48433. characterMakers.push(() => makeCharacter(
  48434. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  48435. {
  48436. nude: {
  48437. height: math.unit(5 + 6/12, "feet"),
  48438. name: "Nude",
  48439. image: {
  48440. source: "./media/characters/charlie-dog/nude.svg",
  48441. extra: 768/734,
  48442. bottom: 26/794
  48443. }
  48444. },
  48445. dressed: {
  48446. height: math.unit(5 + 6/12, "feet"),
  48447. name: "Dressed",
  48448. image: {
  48449. source: "./media/characters/charlie-dog/dressed.svg",
  48450. extra: 768/734,
  48451. bottom: 26/794
  48452. }
  48453. },
  48454. },
  48455. [
  48456. {
  48457. name: "Normal",
  48458. height: math.unit(5 + 6/12, "feet"),
  48459. default: true
  48460. },
  48461. ]
  48462. ))
  48463. characterMakers.push(() => makeCharacter(
  48464. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  48465. {
  48466. front: {
  48467. height: math.unit(6 + 4/12, "feet"),
  48468. name: "Front",
  48469. image: {
  48470. source: "./media/characters/ir'istrasz/front.svg",
  48471. extra: 1014/977,
  48472. bottom: 65/1079
  48473. }
  48474. },
  48475. back: {
  48476. height: math.unit(6 + 4/12, "feet"),
  48477. name: "Back",
  48478. image: {
  48479. source: "./media/characters/ir'istrasz/back.svg",
  48480. extra: 1024/992,
  48481. bottom: 34/1058
  48482. }
  48483. },
  48484. },
  48485. [
  48486. {
  48487. name: "Normal",
  48488. height: math.unit(6 + 4/12, "feet"),
  48489. default: true
  48490. },
  48491. ]
  48492. ))
  48493. characterMakers.push(() => makeCharacter(
  48494. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  48495. {
  48496. front: {
  48497. height: math.unit(5 + 8/12, "feet"),
  48498. name: "Front",
  48499. image: {
  48500. source: "./media/characters/dee-ditto/front.svg",
  48501. extra: 1874/1785,
  48502. bottom: 68/1942
  48503. }
  48504. },
  48505. back: {
  48506. height: math.unit(5 + 8/12, "feet"),
  48507. name: "Back",
  48508. image: {
  48509. source: "./media/characters/dee-ditto/back.svg",
  48510. extra: 1870/1783,
  48511. bottom: 77/1947
  48512. }
  48513. },
  48514. },
  48515. [
  48516. {
  48517. name: "Normal",
  48518. height: math.unit(5 + 8/12, "feet"),
  48519. default: true
  48520. },
  48521. ]
  48522. ))
  48523. characterMakers.push(() => makeCharacter(
  48524. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  48525. {
  48526. front: {
  48527. height: math.unit(7 + 6/12, "feet"),
  48528. name: "Front",
  48529. image: {
  48530. source: "./media/characters/fey/front.svg",
  48531. extra: 995/979,
  48532. bottom: 30/1025
  48533. }
  48534. },
  48535. back: {
  48536. height: math.unit(7 + 6/12, "feet"),
  48537. name: "Back",
  48538. image: {
  48539. source: "./media/characters/fey/back.svg",
  48540. extra: 1079/1008,
  48541. bottom: 5/1084
  48542. }
  48543. },
  48544. dressed: {
  48545. height: math.unit(7 + 6/12, "feet"),
  48546. name: "Dressed",
  48547. image: {
  48548. source: "./media/characters/fey/dressed.svg",
  48549. extra: 995/979,
  48550. bottom: 30/1025
  48551. }
  48552. },
  48553. },
  48554. [
  48555. {
  48556. name: "Normal",
  48557. height: math.unit(7 + 6/12, "feet"),
  48558. default: true
  48559. },
  48560. ]
  48561. ))
  48562. characterMakers.push(() => makeCharacter(
  48563. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  48564. {
  48565. standing: {
  48566. height: math.unit(17, "feet"),
  48567. name: "Standing",
  48568. image: {
  48569. source: "./media/characters/aster/standing.svg",
  48570. extra: 1798/1598,
  48571. bottom: 117/1915
  48572. }
  48573. },
  48574. },
  48575. [
  48576. {
  48577. name: "Normal",
  48578. height: math.unit(17, "feet"),
  48579. default: true
  48580. },
  48581. {
  48582. name: "Homewrecker",
  48583. height: math.unit(95, "feet")
  48584. },
  48585. {
  48586. name: "Planet Devourer",
  48587. height: math.unit(1008000, "miles")
  48588. },
  48589. ]
  48590. ))
  48591. characterMakers.push(() => makeCharacter(
  48592. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  48593. {
  48594. front: {
  48595. height: math.unit(6 + 5/12, "feet"),
  48596. weight: math.unit(265, "lb"),
  48597. name: "Front",
  48598. image: {
  48599. source: "./media/characters/devon-childs/front.svg",
  48600. extra: 1795/1721,
  48601. bottom: 41/1836
  48602. }
  48603. },
  48604. side: {
  48605. height: math.unit(6 + 5/12, "feet"),
  48606. weight: math.unit(265, "lb"),
  48607. name: "Side",
  48608. image: {
  48609. source: "./media/characters/devon-childs/side.svg",
  48610. extra: 1812/1738,
  48611. bottom: 30/1842
  48612. }
  48613. },
  48614. back: {
  48615. height: math.unit(6 + 5/12, "feet"),
  48616. weight: math.unit(265, "lb"),
  48617. name: "Back",
  48618. image: {
  48619. source: "./media/characters/devon-childs/back.svg",
  48620. extra: 1808/1735,
  48621. bottom: 23/1831
  48622. }
  48623. },
  48624. hand: {
  48625. height: math.unit(1.464, "feet"),
  48626. name: "Hand",
  48627. image: {
  48628. source: "./media/characters/devon-childs/hand.svg"
  48629. }
  48630. },
  48631. foot: {
  48632. height: math.unit(1.6, "feet"),
  48633. name: "Foot",
  48634. image: {
  48635. source: "./media/characters/devon-childs/foot.svg"
  48636. }
  48637. },
  48638. },
  48639. [
  48640. {
  48641. name: "Micro",
  48642. height: math.unit(7, "cm")
  48643. },
  48644. {
  48645. name: "Normal",
  48646. height: math.unit(6 + 5/12, "feet"),
  48647. default: true
  48648. },
  48649. {
  48650. name: "Macro",
  48651. height: math.unit(154, "feet")
  48652. },
  48653. ]
  48654. ))
  48655. characterMakers.push(() => makeCharacter(
  48656. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  48657. {
  48658. front: {
  48659. height: math.unit(6, "feet"),
  48660. weight: math.unit(180, "lb"),
  48661. name: "Front",
  48662. image: {
  48663. source: "./media/characters/lydemox-vir/front.svg",
  48664. extra: 1632/1435,
  48665. bottom: 58/1690
  48666. }
  48667. },
  48668. frontSFW: {
  48669. height: math.unit(6, "feet"),
  48670. weight: math.unit(180, "lb"),
  48671. name: "Front (SFW)",
  48672. image: {
  48673. source: "./media/characters/lydemox-vir/front-sfw.svg",
  48674. extra: 1632/1435,
  48675. bottom: 58/1690
  48676. }
  48677. },
  48678. back: {
  48679. height: math.unit(6, "feet"),
  48680. weight: math.unit(180, "lb"),
  48681. name: "Back",
  48682. image: {
  48683. source: "./media/characters/lydemox-vir/back.svg",
  48684. extra: 1593/1408,
  48685. bottom: 31/1624
  48686. }
  48687. },
  48688. paw: {
  48689. height: math.unit(1.85, "feet"),
  48690. name: "Paw",
  48691. image: {
  48692. source: "./media/characters/lydemox-vir/paw.svg"
  48693. }
  48694. },
  48695. dick: {
  48696. height: math.unit(1.8, "feet"),
  48697. name: "Dick",
  48698. image: {
  48699. source: "./media/characters/lydemox-vir/dick.svg"
  48700. }
  48701. },
  48702. },
  48703. [
  48704. {
  48705. name: "Macro",
  48706. height: math.unit(100, "feet"),
  48707. default: true
  48708. },
  48709. {
  48710. name: "Teramacro",
  48711. height: math.unit(1, "earth")
  48712. },
  48713. {
  48714. name: "Planetary",
  48715. height: math.unit(20, "earths")
  48716. },
  48717. ]
  48718. ))
  48719. characterMakers.push(() => makeCharacter(
  48720. { name: "Mia", species: ["panda"], tags: ["anthro"] },
  48721. {
  48722. front: {
  48723. height: math.unit(15 + 8/12, "feet"),
  48724. weight: math.unit(1237, "kg"),
  48725. name: "Front",
  48726. image: {
  48727. source: "./media/characters/mia/front.svg",
  48728. extra: 1573/1446,
  48729. bottom: 58/1631
  48730. }
  48731. },
  48732. },
  48733. [
  48734. {
  48735. name: "Small",
  48736. height: math.unit(9 + 5/12, "feet")
  48737. },
  48738. {
  48739. name: "Normal",
  48740. height: math.unit(15 + 8/12, "feet"),
  48741. default: true
  48742. },
  48743. ]
  48744. ))
  48745. characterMakers.push(() => makeCharacter(
  48746. { name: "Mr. Graves", species: ["wolf"], tags: ["anthro"] },
  48747. {
  48748. front: {
  48749. height: math.unit(10 + 6/12, "feet"),
  48750. weight: math.unit(1.3, "tons"),
  48751. name: "Front",
  48752. image: {
  48753. source: "./media/characters/mr-graves/front.svg",
  48754. extra: 1779/1695,
  48755. bottom: 198/1977
  48756. }
  48757. },
  48758. },
  48759. [
  48760. {
  48761. name: "Normal",
  48762. height: math.unit(10 + 6 /12, "feet"),
  48763. default: true
  48764. },
  48765. ]
  48766. ))
  48767. characterMakers.push(() => makeCharacter(
  48768. { name: "Jess", species: ["human"], tags: ["anthro"] },
  48769. {
  48770. dressedFront: {
  48771. height: math.unit(5 + 8/12, "feet"),
  48772. weight: math.unit(125, "lb"),
  48773. name: "Dressed (Front)",
  48774. image: {
  48775. source: "./media/characters/jess/dressed-front.svg",
  48776. extra: 1176/1152,
  48777. bottom: 42/1218
  48778. }
  48779. },
  48780. dressedSide: {
  48781. height: math.unit(5 + 8/12, "feet"),
  48782. weight: math.unit(125, "lb"),
  48783. name: "Dressed (Side)",
  48784. image: {
  48785. source: "./media/characters/jess/dressed-side.svg",
  48786. extra: 1204/1190,
  48787. bottom: 6/1210
  48788. }
  48789. },
  48790. nudeFront: {
  48791. height: math.unit(5 + 8/12, "feet"),
  48792. weight: math.unit(125, "lb"),
  48793. name: "Nude (Front)",
  48794. image: {
  48795. source: "./media/characters/jess/nude-front.svg",
  48796. extra: 1176/1152,
  48797. bottom: 42/1218
  48798. }
  48799. },
  48800. nudeSide: {
  48801. height: math.unit(5 + 8/12, "feet"),
  48802. weight: math.unit(125, "lb"),
  48803. name: "Nude (Side)",
  48804. image: {
  48805. source: "./media/characters/jess/nude-side.svg",
  48806. extra: 1204/1190,
  48807. bottom: 6/1210
  48808. }
  48809. },
  48810. organsFront: {
  48811. height: math.unit(2.83799342105, "feet"),
  48812. name: "Organs (Front)",
  48813. image: {
  48814. source: "./media/characters/jess/organs-front.svg"
  48815. }
  48816. },
  48817. organsSide: {
  48818. height: math.unit(2.64225290474, "feet"),
  48819. name: "Organs (Side)",
  48820. image: {
  48821. source: "./media/characters/jess/organs-side.svg"
  48822. }
  48823. },
  48824. digestiveTractFront: {
  48825. height: math.unit(2.8106580871, "feet"),
  48826. name: "Digestive Tract (Front)",
  48827. image: {
  48828. source: "./media/characters/jess/digestive-tract-front.svg"
  48829. }
  48830. },
  48831. digestiveTractSide: {
  48832. height: math.unit(2.54365045014, "feet"),
  48833. name: "Digestive Tract (Side)",
  48834. image: {
  48835. source: "./media/characters/jess/digestive-tract-side.svg"
  48836. }
  48837. },
  48838. respiratorySystemFront: {
  48839. height: math.unit(1.11196233456, "feet"),
  48840. name: "Respiratory System (Front)",
  48841. image: {
  48842. source: "./media/characters/jess/respiratory-system-front.svg"
  48843. }
  48844. },
  48845. respiratorySystemSide: {
  48846. height: math.unit(0.89327966297, "feet"),
  48847. name: "Respiratory System (Side)",
  48848. image: {
  48849. source: "./media/characters/jess/respiratory-system-side.svg"
  48850. }
  48851. },
  48852. urinaryTractFront: {
  48853. height: math.unit(1.16126356186, "feet"),
  48854. name: "Urinary Tract (Front)",
  48855. image: {
  48856. source: "./media/characters/jess/urinary-tract-front.svg"
  48857. }
  48858. },
  48859. urinaryTractSide: {
  48860. height: math.unit(1.20910039627, "feet"),
  48861. name: "Urinary Tract (Side)",
  48862. image: {
  48863. source: "./media/characters/jess/urinary-tract-side.svg"
  48864. }
  48865. },
  48866. reproductiveOrgansFront: {
  48867. height: math.unit(0.48422591566, "feet"),
  48868. name: "Reproductive Organs (Front)",
  48869. image: {
  48870. source: "./media/characters/jess/reproductive-organs-front.svg"
  48871. }
  48872. },
  48873. reproductiveOrgansSide: {
  48874. height: math.unit(0.61553314481, "feet"),
  48875. name: "Reproductive Organs (Side)",
  48876. image: {
  48877. source: "./media/characters/jess/reproductive-organs-side.svg"
  48878. }
  48879. },
  48880. breastsFront: {
  48881. height: math.unit(0.47690395121, "feet"),
  48882. name: "Breasts (Front)",
  48883. image: {
  48884. source: "./media/characters/jess/breasts-front.svg"
  48885. }
  48886. },
  48887. breastsSide: {
  48888. height: math.unit(0.30556998307, "feet"),
  48889. name: "Breasts (Side)",
  48890. image: {
  48891. source: "./media/characters/jess/breasts-side.svg"
  48892. }
  48893. },
  48894. heartFront: {
  48895. height: math.unit(0.53011022622, "feet"),
  48896. name: "Heart (Front)",
  48897. image: {
  48898. source: "./media/characters/jess/heart-front.svg"
  48899. }
  48900. },
  48901. heartSide: {
  48902. height: math.unit(0.51790695213, "feet"),
  48903. name: "Heart (Side)",
  48904. image: {
  48905. source: "./media/characters/jess/heart-side.svg"
  48906. }
  48907. },
  48908. earsAndNoseFront: {
  48909. height: math.unit(0.29385483995, "feet"),
  48910. name: "Ears and Nose (Front)",
  48911. image: {
  48912. source: "./media/characters/jess/ears-and-nose-front.svg"
  48913. }
  48914. },
  48915. earsAndNoseSide: {
  48916. height: math.unit(0.18109658741, "feet"),
  48917. name: "Ears and Nose (Side)",
  48918. image: {
  48919. source: "./media/characters/jess/ears-and-nose-side.svg"
  48920. }
  48921. },
  48922. },
  48923. [
  48924. {
  48925. name: "Normal",
  48926. height: math.unit(5 + 8/12, "feet"),
  48927. default: true
  48928. },
  48929. ]
  48930. ))
  48931. characterMakers.push(() => makeCharacter(
  48932. { name: "Wimpering", species: ["human"], tags: ["anthro"] },
  48933. {
  48934. front: {
  48935. height: math.unit(6, "feet"),
  48936. weight: math.unit(6.64467e-7, "grams"),
  48937. name: "Front",
  48938. image: {
  48939. source: "./media/characters/wimpering/front.svg",
  48940. extra: 597/587,
  48941. bottom: 34/631
  48942. }
  48943. },
  48944. },
  48945. [
  48946. {
  48947. name: "Micro",
  48948. height: math.unit(0.4, "mm"),
  48949. default: true
  48950. },
  48951. ]
  48952. ))
  48953. characterMakers.push(() => makeCharacter(
  48954. { name: "Keltre", species: ["dog"], tags: ["anthro"] },
  48955. {
  48956. front: {
  48957. height: math.unit(5 + 2/12, "feet"),
  48958. weight: math.unit(110, "lb"),
  48959. name: "Front",
  48960. image: {
  48961. source: "./media/characters/keltre/front.svg",
  48962. extra: 1099/1057,
  48963. bottom: 22/1121
  48964. }
  48965. },
  48966. back: {
  48967. height: math.unit(5 + 2/12, "feet"),
  48968. weight: math.unit(110, "lb"),
  48969. name: "Back",
  48970. image: {
  48971. source: "./media/characters/keltre/back.svg",
  48972. extra: 1095/1053,
  48973. bottom: 17/1112
  48974. }
  48975. },
  48976. dressed: {
  48977. height: math.unit(5 + 2/12, "feet"),
  48978. weight: math.unit(110, "lb"),
  48979. name: "Dressed",
  48980. image: {
  48981. source: "./media/characters/keltre/dressed.svg",
  48982. extra: 1099/1057,
  48983. bottom: 22/1121
  48984. }
  48985. },
  48986. winter: {
  48987. height: math.unit(5 + 2/12, "feet"),
  48988. weight: math.unit(110, "lb"),
  48989. name: "Winter",
  48990. image: {
  48991. source: "./media/characters/keltre/winter.svg",
  48992. extra: 1099/1057,
  48993. bottom: 22/1121
  48994. }
  48995. },
  48996. head: {
  48997. height: math.unit(1.61 * 0.86, "feet"),
  48998. name: "Head",
  48999. image: {
  49000. source: "./media/characters/keltre/head.svg",
  49001. extra: 534/421,
  49002. bottom: 0/534
  49003. }
  49004. },
  49005. hand: {
  49006. height: math.unit(1.3 * 0.86, "feet"),
  49007. name: "Hand",
  49008. image: {
  49009. source: "./media/characters/keltre/hand.svg"
  49010. }
  49011. },
  49012. foot: {
  49013. height: math.unit(1.8 * 0.86, "feet"),
  49014. name: "Foot",
  49015. image: {
  49016. source: "./media/characters/keltre/foot.svg"
  49017. }
  49018. },
  49019. },
  49020. [
  49021. {
  49022. name: "Fine",
  49023. height: math.unit(1, "inch")
  49024. },
  49025. {
  49026. name: "Dimnutive",
  49027. height: math.unit(4, "inches")
  49028. },
  49029. {
  49030. name: "Tiny",
  49031. height: math.unit(1, "foot")
  49032. },
  49033. {
  49034. name: "Small",
  49035. height: math.unit(3, "feet")
  49036. },
  49037. {
  49038. name: "Normal",
  49039. height: math.unit(5 + 2/12, "feet"),
  49040. default: true
  49041. },
  49042. ]
  49043. ))
  49044. characterMakers.push(() => makeCharacter(
  49045. { name: "Nox", species: ["cat"], tags: ["anthro"] },
  49046. {
  49047. front: {
  49048. height: math.unit(6 + 2/12, "feet"),
  49049. name: "Front",
  49050. image: {
  49051. source: "./media/characters/nox/front.svg",
  49052. extra: 1917/1830,
  49053. bottom: 74/1991
  49054. }
  49055. },
  49056. back: {
  49057. height: math.unit(6 + 2/12, "feet"),
  49058. name: "Back",
  49059. image: {
  49060. source: "./media/characters/nox/back.svg",
  49061. extra: 1896/1815,
  49062. bottom: 21/1917
  49063. }
  49064. },
  49065. head: {
  49066. height: math.unit(1.1, "feet"),
  49067. name: "Head",
  49068. image: {
  49069. source: "./media/characters/nox/head.svg",
  49070. extra: 874/704,
  49071. bottom: 0/874
  49072. }
  49073. },
  49074. tattoo: {
  49075. height: math.unit(0.729, "feet"),
  49076. name: "Tattoo",
  49077. image: {
  49078. source: "./media/characters/nox/tattoo.svg"
  49079. }
  49080. },
  49081. },
  49082. [
  49083. {
  49084. name: "Normal",
  49085. height: math.unit(6 + 2/12, "feet")
  49086. },
  49087. {
  49088. name: "Gigamacro",
  49089. height: math.unit(2, "earths"),
  49090. default: true
  49091. },
  49092. {
  49093. name: "Cosmic",
  49094. height: math.unit(867, "yottameters")
  49095. },
  49096. ]
  49097. ))
  49098. characterMakers.push(() => makeCharacter(
  49099. { name: "Caspian", species: ["ferret"], tags: ["anthro"] },
  49100. {
  49101. front: {
  49102. height: math.unit(6, "feet"),
  49103. weight: math.unit(150, "lb"),
  49104. name: "Front",
  49105. image: {
  49106. source: "./media/characters/caspian/front.svg",
  49107. extra: 1443/1359,
  49108. bottom: 0/1443
  49109. }
  49110. },
  49111. back: {
  49112. height: math.unit(6, "feet"),
  49113. weight: math.unit(150, "lb"),
  49114. name: "Back",
  49115. image: {
  49116. source: "./media/characters/caspian/back.svg",
  49117. extra: 1379/1309,
  49118. bottom: 0/1379
  49119. }
  49120. },
  49121. head: {
  49122. height: math.unit(0.9, "feet"),
  49123. name: "Head",
  49124. image: {
  49125. source: "./media/characters/caspian/head.svg",
  49126. extra: 692/492,
  49127. bottom: 0/692
  49128. }
  49129. },
  49130. headAlt: {
  49131. height: math.unit(0.95, "feet"),
  49132. name: "Head (Alt)",
  49133. image: {
  49134. source: "./media/characters/caspian/head-alt.svg",
  49135. extra: 668/508,
  49136. bottom: 0/668
  49137. }
  49138. },
  49139. hand: {
  49140. height: math.unit(0.8, "feet"),
  49141. name: "Hand",
  49142. image: {
  49143. source: "./media/characters/caspian/hand.svg"
  49144. }
  49145. },
  49146. paw: {
  49147. height: math.unit(0.95, "feet"),
  49148. name: "Paw",
  49149. image: {
  49150. source: "./media/characters/caspian/paw.svg"
  49151. }
  49152. },
  49153. },
  49154. [
  49155. {
  49156. name: "Normal",
  49157. height: math.unit(162, "feet"),
  49158. default: true
  49159. },
  49160. ]
  49161. ))
  49162. characterMakers.push(() => makeCharacter(
  49163. { name: "Myra Aisling", species: ["coyote"], tags: ["anthro"] },
  49164. {
  49165. front: {
  49166. height: math.unit(6, "feet"),
  49167. name: "Front",
  49168. image: {
  49169. source: "./media/characters/myra-aisling/front.svg",
  49170. extra: 1268/1166,
  49171. bottom: 73/1341
  49172. }
  49173. },
  49174. back: {
  49175. height: math.unit(6, "feet"),
  49176. name: "Back",
  49177. image: {
  49178. source: "./media/characters/myra-aisling/back.svg",
  49179. extra: 1249/1149,
  49180. bottom: 79/1328
  49181. }
  49182. },
  49183. dressed: {
  49184. height: math.unit(6, "feet"),
  49185. name: "Dressed",
  49186. image: {
  49187. source: "./media/characters/myra-aisling/dressed.svg",
  49188. extra: 1290/1189,
  49189. bottom: 47/1337
  49190. }
  49191. },
  49192. hand: {
  49193. height: math.unit(1.1, "feet"),
  49194. name: "Hand",
  49195. image: {
  49196. source: "./media/characters/myra-aisling/hand.svg"
  49197. }
  49198. },
  49199. paw: {
  49200. height: math.unit(1.23, "feet"),
  49201. name: "Paw",
  49202. image: {
  49203. source: "./media/characters/myra-aisling/paw.svg"
  49204. }
  49205. },
  49206. },
  49207. [
  49208. {
  49209. name: "Normal",
  49210. height: math.unit(160, "feet"),
  49211. default: true
  49212. },
  49213. ]
  49214. ))
  49215. characterMakers.push(() => makeCharacter(
  49216. { name: "Tenley Sidero", species: ["lycanroc"], tags: ["anthro"] },
  49217. {
  49218. front: {
  49219. height: math.unit(6, "feet"),
  49220. name: "Front",
  49221. image: {
  49222. source: "./media/characters/tenley-sidero/front.svg",
  49223. extra: 1365/1276,
  49224. bottom: 47/1412
  49225. }
  49226. },
  49227. back: {
  49228. height: math.unit(6, "feet"),
  49229. name: "Back",
  49230. image: {
  49231. source: "./media/characters/tenley-sidero/back.svg",
  49232. extra: 1383/1283,
  49233. bottom: 35/1418
  49234. }
  49235. },
  49236. dressed: {
  49237. height: math.unit(6, "feet"),
  49238. name: "Dressed",
  49239. image: {
  49240. source: "./media/characters/tenley-sidero/dressed.svg",
  49241. extra: 1364/1275,
  49242. bottom: 42/1406
  49243. }
  49244. },
  49245. head: {
  49246. height: math.unit(1.47, "feet"),
  49247. name: "Head",
  49248. image: {
  49249. source: "./media/characters/tenley-sidero/head.svg",
  49250. extra: 610/490,
  49251. bottom: 0/610
  49252. }
  49253. },
  49254. },
  49255. [
  49256. {
  49257. name: "Normal",
  49258. height: math.unit(154, "feet"),
  49259. default: true
  49260. },
  49261. ]
  49262. ))
  49263. characterMakers.push(() => makeCharacter(
  49264. { name: "Mallory", species: ["rabbit"], tags: ["anthro"] },
  49265. {
  49266. front: {
  49267. height: math.unit(5, "inches"),
  49268. name: "Front",
  49269. image: {
  49270. source: "./media/characters/mallory/front.svg",
  49271. extra: 1919/1678,
  49272. bottom: 29/1948
  49273. }
  49274. },
  49275. hand: {
  49276. height: math.unit(0.73, "inches"),
  49277. name: "Hand",
  49278. image: {
  49279. source: "./media/characters/mallory/hand.svg"
  49280. }
  49281. },
  49282. paw: {
  49283. height: math.unit(0.68, "inches"),
  49284. name: "Paw",
  49285. image: {
  49286. source: "./media/characters/mallory/paw.svg"
  49287. }
  49288. },
  49289. },
  49290. [
  49291. {
  49292. name: "Small",
  49293. height: math.unit(5, "inches"),
  49294. default: true
  49295. },
  49296. ]
  49297. ))
  49298. characterMakers.push(() => makeCharacter(
  49299. { name: "Mab", species: ["opossum"], tags: ["anthro"] },
  49300. {
  49301. naked: {
  49302. height: math.unit(6, "feet"),
  49303. name: "Naked",
  49304. image: {
  49305. source: "./media/characters/mab/naked.svg",
  49306. extra: 1855/1757,
  49307. bottom: 208/2063
  49308. }
  49309. },
  49310. outside: {
  49311. height: math.unit(6, "feet"),
  49312. name: "Outside",
  49313. image: {
  49314. source: "./media/characters/mab/outside.svg",
  49315. extra: 1855/1757,
  49316. bottom: 208/2063
  49317. }
  49318. },
  49319. party: {
  49320. height: math.unit(6, "feet"),
  49321. name: "Party",
  49322. image: {
  49323. source: "./media/characters/mab/party.svg",
  49324. extra: 1855/1757,
  49325. bottom: 208/2063
  49326. }
  49327. },
  49328. },
  49329. [
  49330. {
  49331. name: "Normal",
  49332. height: math.unit(165, "feet"),
  49333. default: true
  49334. },
  49335. ]
  49336. ))
  49337. characterMakers.push(() => makeCharacter(
  49338. { name: "Winter", species: ["arcanine"], tags: ["feral"] },
  49339. {
  49340. front: {
  49341. height: math.unit(12, "feet"),
  49342. weight: math.unit(4000, "lb"),
  49343. name: "Front",
  49344. image: {
  49345. source: "./media/characters/winter/front.svg",
  49346. extra: 1286/943,
  49347. bottom: 112/1398
  49348. }
  49349. },
  49350. frontNsfw: {
  49351. height: math.unit(12, "feet"),
  49352. weight: math.unit(4000, "lb"),
  49353. name: "Front (NSFW)",
  49354. image: {
  49355. source: "./media/characters/winter/front-nsfw.svg",
  49356. extra: 1286/943,
  49357. bottom: 112/1398
  49358. }
  49359. },
  49360. dick: {
  49361. height: math.unit(3.79, "feet"),
  49362. name: "Dick",
  49363. image: {
  49364. source: "./media/characters/winter/dick.svg"
  49365. }
  49366. },
  49367. },
  49368. [
  49369. {
  49370. name: "Big",
  49371. height: math.unit(12, "feet"),
  49372. default: true
  49373. },
  49374. ]
  49375. ))
  49376. characterMakers.push(() => makeCharacter(
  49377. { name: "Alto", species: ["mouse", "chinchilla"], tags: ["anthro"] },
  49378. {
  49379. front: {
  49380. height: math.unit(4.1, "inches"),
  49381. name: "Front",
  49382. image: {
  49383. source: "./media/characters/alto/front.svg",
  49384. extra: 736/627,
  49385. bottom: 90/826
  49386. }
  49387. },
  49388. },
  49389. [
  49390. {
  49391. name: "Normal",
  49392. height: math.unit(4.1, "inches"),
  49393. default: true
  49394. },
  49395. ]
  49396. ))
  49397. characterMakers.push(() => makeCharacter(
  49398. { name: "Ratstrid V", species: ["opossum"], tags: ["anthro"] },
  49399. {
  49400. sitting: {
  49401. height: math.unit(3, "feet"),
  49402. name: "Sitting",
  49403. image: {
  49404. source: "./media/characters/ratstrid-v/sitting.svg",
  49405. extra: 355/310,
  49406. bottom: 136/491
  49407. }
  49408. },
  49409. },
  49410. [
  49411. {
  49412. name: "Normal",
  49413. height: math.unit(3, "feet"),
  49414. default: true
  49415. },
  49416. ]
  49417. ))
  49418. characterMakers.push(() => makeCharacter(
  49419. { name: "Siz", species: ["cinderace"], tags: ["anthro"] },
  49420. {
  49421. back: {
  49422. height: math.unit(6, "feet"),
  49423. weight: math.unit(350, "lb"),
  49424. name: "Back",
  49425. image: {
  49426. source: "./media/characters/siz/back.svg",
  49427. extra: 1449/1274,
  49428. bottom: 13/1462
  49429. }
  49430. },
  49431. },
  49432. [
  49433. {
  49434. name: "Over-Overcompressed",
  49435. height: math.unit(8, "feet")
  49436. },
  49437. {
  49438. name: "Overcompressed",
  49439. height: math.unit(32, "feet")
  49440. },
  49441. {
  49442. name: "Compressed",
  49443. height: math.unit(128, "feet"),
  49444. default: true
  49445. },
  49446. {
  49447. name: "Half-Compressed",
  49448. height: math.unit(512, "feet")
  49449. },
  49450. {
  49451. name: "Quarter-Compressed",
  49452. height: math.unit(2048, "feet")
  49453. },
  49454. {
  49455. name: "Uncompressed?",
  49456. height: math.unit(8192, "feet")
  49457. },
  49458. ]
  49459. ))
  49460. characterMakers.push(() => makeCharacter(
  49461. { name: "Ven", species: ["raven"], tags: ["anthro"] },
  49462. {
  49463. front: {
  49464. height: math.unit(5 + 9/12, "feet"),
  49465. weight: math.unit(150, "lb"),
  49466. name: "Front",
  49467. image: {
  49468. source: "./media/characters/ven/front.svg",
  49469. extra: 1372/1320,
  49470. bottom: 73/1445
  49471. }
  49472. },
  49473. side: {
  49474. height: math.unit(5 + 9/12, "feet"),
  49475. weight: math.unit(1150, "lb"),
  49476. name: "Side",
  49477. image: {
  49478. source: "./media/characters/ven/side.svg",
  49479. extra: 1119/1070,
  49480. bottom: 42/1161
  49481. },
  49482. default: true
  49483. },
  49484. },
  49485. [
  49486. {
  49487. name: "Normal",
  49488. height: math.unit(5 + 9/12, "feet"),
  49489. default: true
  49490. },
  49491. ]
  49492. ))
  49493. characterMakers.push(() => makeCharacter(
  49494. { name: "Maple", species: ["caudin"], tags: ["anthro"] },
  49495. {
  49496. front: {
  49497. height: math.unit(12, "feet"),
  49498. weight: math.unit(1000, "kg"),
  49499. name: "Front",
  49500. image: {
  49501. source: "./media/characters/maple/front.svg",
  49502. extra: 1193/1081,
  49503. bottom: 22/1215
  49504. }
  49505. },
  49506. },
  49507. [
  49508. {
  49509. name: "Compressed",
  49510. height: math.unit(7, "feet")
  49511. },
  49512. {
  49513. name: "Normal",
  49514. height: math.unit(12, "feet"),
  49515. default: true
  49516. },
  49517. ]
  49518. ))
  49519. characterMakers.push(() => makeCharacter(
  49520. { name: "Nora", species: ["blaziken"], tags: ["anthro"] },
  49521. {
  49522. front: {
  49523. height: math.unit(9, "feet"),
  49524. weight: math.unit(1500, "lb"),
  49525. name: "Front",
  49526. image: {
  49527. source: "./media/characters/nora/front.svg",
  49528. extra: 1348/1286,
  49529. bottom: 218/1566
  49530. }
  49531. },
  49532. erect: {
  49533. height: math.unit(9, "feet"),
  49534. weight: math.unit(11500, "lb"),
  49535. name: "Erect",
  49536. image: {
  49537. source: "./media/characters/nora/erect.svg",
  49538. extra: 1488/1433,
  49539. bottom: 133/1621
  49540. }
  49541. },
  49542. },
  49543. [
  49544. {
  49545. name: "Normal",
  49546. height: math.unit(9, "feet"),
  49547. default: true
  49548. },
  49549. ]
  49550. ))
  49551. characterMakers.push(() => makeCharacter(
  49552. { name: "North (Caudin)", species: ["caudin"], tags: ["anthro"] },
  49553. {
  49554. front: {
  49555. height: math.unit(25, "feet"),
  49556. weight: math.unit(27500, "lb"),
  49557. name: "Front",
  49558. image: {
  49559. source: "./media/characters/north-caudin/front.svg",
  49560. extra: 1184/1082,
  49561. bottom: 23/1207
  49562. }
  49563. },
  49564. },
  49565. [
  49566. {
  49567. name: "Compressed",
  49568. height: math.unit(10, "feet")
  49569. },
  49570. {
  49571. name: "Normal",
  49572. height: math.unit(25, "feet"),
  49573. default: true
  49574. },
  49575. ]
  49576. ))
  49577. characterMakers.push(() => makeCharacter(
  49578. { name: "Merrian", species: ["caudin", "avian"], tags: ["anthro"] },
  49579. {
  49580. front: {
  49581. height: math.unit(9, "feet"),
  49582. weight: math.unit(1250, "lb"),
  49583. name: "Front",
  49584. image: {
  49585. source: "./media/characters/merrian/front.svg",
  49586. extra: 2393/2304,
  49587. bottom: 40/2433
  49588. }
  49589. },
  49590. },
  49591. [
  49592. {
  49593. name: "Normal",
  49594. height: math.unit(9, "feet"),
  49595. default: true
  49596. },
  49597. ]
  49598. ))
  49599. characterMakers.push(() => makeCharacter(
  49600. { name: "Hazel", species: ["red-winged-blackbird"], tags: ["anthro"] },
  49601. {
  49602. front: {
  49603. height: math.unit(9, "feet"),
  49604. weight: math.unit(1000, "lb"),
  49605. name: "Front",
  49606. image: {
  49607. source: "./media/characters/hazel/front.svg",
  49608. extra: 2351/2298,
  49609. bottom: 38/2389
  49610. }
  49611. },
  49612. },
  49613. [
  49614. {
  49615. name: "Normal",
  49616. height: math.unit(9, "feet"),
  49617. default: true
  49618. },
  49619. ]
  49620. ))
  49621. characterMakers.push(() => makeCharacter(
  49622. { name: "Emma", species: ["caudin"], tags: ["anthro"] },
  49623. {
  49624. front: {
  49625. height: math.unit(13, "feet"),
  49626. weight: math.unit(3200, "lb"),
  49627. name: "Front",
  49628. image: {
  49629. source: "./media/characters/emma/front.svg",
  49630. extra: 2263/2029,
  49631. bottom: 68/2331
  49632. }
  49633. },
  49634. },
  49635. [
  49636. {
  49637. name: "Normal",
  49638. height: math.unit(13, "feet"),
  49639. default: true
  49640. },
  49641. ]
  49642. ))
  49643. characterMakers.push(() => makeCharacter(
  49644. { name: "Ilumina", species: ["hooded-wheater"], tags: ["anthro"] },
  49645. {
  49646. front: {
  49647. height: math.unit(11 + 9/12, "feet"),
  49648. weight: math.unit(2500, "lb"),
  49649. name: "Front",
  49650. image: {
  49651. source: "./media/characters/ilumina/front.svg",
  49652. extra: 2248/2209,
  49653. bottom: 164/2412
  49654. }
  49655. },
  49656. },
  49657. [
  49658. {
  49659. name: "Normal",
  49660. height: math.unit(11 + 9/12, "feet"),
  49661. default: true
  49662. },
  49663. ]
  49664. ))
  49665. characterMakers.push(() => makeCharacter(
  49666. { name: "Moonshine", species: ["caudin"], tags: ["anthro"] },
  49667. {
  49668. front: {
  49669. height: math.unit(8 + 10/12, "feet"),
  49670. weight: math.unit(1350, "lb"),
  49671. name: "Front",
  49672. image: {
  49673. source: "./media/characters/moonshine/front.svg",
  49674. extra: 2395/2288,
  49675. bottom: 40/2435
  49676. }
  49677. },
  49678. },
  49679. [
  49680. {
  49681. name: "Normal",
  49682. height: math.unit(8 + 10/12, "feet"),
  49683. default: true
  49684. },
  49685. ]
  49686. ))
  49687. characterMakers.push(() => makeCharacter(
  49688. { name: "Aletia", species: ["caudin"], tags: ["anthro"] },
  49689. {
  49690. front: {
  49691. height: math.unit(14, "feet"),
  49692. weight: math.unit(3400, "lb"),
  49693. name: "Front",
  49694. image: {
  49695. source: "./media/characters/aletia/front.svg",
  49696. extra: 1185/1052,
  49697. bottom: 21/1206
  49698. }
  49699. },
  49700. },
  49701. [
  49702. {
  49703. name: "Compressed",
  49704. height: math.unit(8, "feet")
  49705. },
  49706. {
  49707. name: "Normal",
  49708. height: math.unit(14, "feet"),
  49709. default: true
  49710. },
  49711. ]
  49712. ))
  49713. characterMakers.push(() => makeCharacter(
  49714. { name: "Deidra", species: ["caudin"], tags: ["anthro"] },
  49715. {
  49716. front: {
  49717. height: math.unit(17, "feet"),
  49718. weight: math.unit(6500, "lb"),
  49719. name: "Front",
  49720. image: {
  49721. source: "./media/characters/deidra/front.svg",
  49722. extra: 1201/1081,
  49723. bottom: 16/1217
  49724. }
  49725. },
  49726. },
  49727. [
  49728. {
  49729. name: "Compressed",
  49730. height: math.unit(9 + 6/12, "feet")
  49731. },
  49732. {
  49733. name: "Normal",
  49734. height: math.unit(17, "feet"),
  49735. default: true
  49736. },
  49737. ]
  49738. ))
  49739. characterMakers.push(() => makeCharacter(
  49740. { name: "Freki Yrmori", species: ["folf"], tags: ["anthro"] },
  49741. {
  49742. front: {
  49743. height: math.unit(7 + 4/12, "feet"),
  49744. weight: math.unit(280, "lb"),
  49745. name: "Front",
  49746. image: {
  49747. source: "./media/characters/freki-yrmori/front.svg",
  49748. extra: 1286/1182,
  49749. bottom: 29/1315
  49750. }
  49751. },
  49752. maw: {
  49753. height: math.unit(0.9, "feet"),
  49754. name: "Maw",
  49755. image: {
  49756. source: "./media/characters/freki-yrmori/maw.svg"
  49757. }
  49758. },
  49759. },
  49760. [
  49761. {
  49762. name: "Normal",
  49763. height: math.unit(7 + 4/12, "feet"),
  49764. default: true
  49765. },
  49766. {
  49767. name: "Macro",
  49768. height: math.unit(38.5, "meters")
  49769. },
  49770. ]
  49771. ))
  49772. characterMakers.push(() => makeCharacter(
  49773. { name: "Aetherios", species: ["dragon"], tags: ["feral"] },
  49774. {
  49775. side: {
  49776. height: math.unit(47.2, "meters"),
  49777. weight: math.unit(10000, "tons"),
  49778. name: "Side",
  49779. image: {
  49780. source: "./media/characters/aetherios/side.svg",
  49781. extra: 2363/642,
  49782. bottom: 221/2584
  49783. }
  49784. },
  49785. top: {
  49786. height: math.unit(240, "meters"),
  49787. weight: math.unit(10000, "tons"),
  49788. name: "Top",
  49789. image: {
  49790. source: "./media/characters/aetherios/top.svg"
  49791. }
  49792. },
  49793. bottom: {
  49794. height: math.unit(240, "meters"),
  49795. weight: math.unit(10000, "tons"),
  49796. name: "Bottom",
  49797. image: {
  49798. source: "./media/characters/aetherios/bottom.svg"
  49799. }
  49800. },
  49801. head: {
  49802. height: math.unit(38.6, "meters"),
  49803. name: "Head",
  49804. image: {
  49805. source: "./media/characters/aetherios/head.svg",
  49806. extra: 1335/1112,
  49807. bottom: 0/1335
  49808. }
  49809. },
  49810. front: {
  49811. height: math.unit(29, "meters"),
  49812. name: "Front",
  49813. image: {
  49814. source: "./media/characters/aetherios/front.svg",
  49815. extra: 1266/953,
  49816. bottom: 158/1424
  49817. }
  49818. },
  49819. maw: {
  49820. height: math.unit(16.37, "meters"),
  49821. name: "Maw",
  49822. image: {
  49823. source: "./media/characters/aetherios/maw.svg",
  49824. extra: 748/637,
  49825. bottom: 0/748
  49826. },
  49827. extraAttributes: {
  49828. preyCapacity: {
  49829. name: "Capacity",
  49830. power: 3,
  49831. type: "volume",
  49832. base: math.unit(1000, "people")
  49833. },
  49834. tongueSize: {
  49835. name: "Tongue Size",
  49836. power: 2,
  49837. type: "area",
  49838. base: math.unit(21, "m^2")
  49839. }
  49840. }
  49841. },
  49842. forepaw: {
  49843. height: math.unit(18, "meters"),
  49844. name: "Forepaw",
  49845. image: {
  49846. source: "./media/characters/aetherios/forepaw.svg"
  49847. }
  49848. },
  49849. hindpaw: {
  49850. height: math.unit(23, "meters"),
  49851. name: "Hindpaw",
  49852. image: {
  49853. source: "./media/characters/aetherios/hindpaw.svg"
  49854. }
  49855. },
  49856. genitals: {
  49857. height: math.unit(42, "meters"),
  49858. name: "Genitals",
  49859. image: {
  49860. source: "./media/characters/aetherios/genitals.svg"
  49861. }
  49862. },
  49863. },
  49864. [
  49865. {
  49866. name: "Normal",
  49867. height: math.unit(47.2, "meters"),
  49868. default: true
  49869. },
  49870. {
  49871. name: "Macro",
  49872. height: math.unit(160, "meters")
  49873. },
  49874. {
  49875. name: "Mega",
  49876. height: math.unit(1.87, "km")
  49877. },
  49878. {
  49879. name: "Giga",
  49880. height: math.unit(40000, "km")
  49881. },
  49882. {
  49883. name: "Stellar",
  49884. height: math.unit(158000000, "km")
  49885. },
  49886. {
  49887. name: "Cosmic",
  49888. height: math.unit(9.46e12, "km")
  49889. },
  49890. ]
  49891. ))
  49892. characterMakers.push(() => makeCharacter(
  49893. { name: "Mizu (Gieeg)", species: ["gieeg"], tags: ["anthro"] },
  49894. {
  49895. front: {
  49896. height: math.unit(5 + 4/12, "feet"),
  49897. weight: math.unit(80, "lb"),
  49898. name: "Front",
  49899. image: {
  49900. source: "./media/characters/mizu-gieeg/front.svg",
  49901. extra: 850/709,
  49902. bottom: 52/902
  49903. }
  49904. },
  49905. back: {
  49906. height: math.unit(5 + 4/12, "feet"),
  49907. weight: math.unit(80, "lb"),
  49908. name: "Back",
  49909. image: {
  49910. source: "./media/characters/mizu-gieeg/back.svg",
  49911. extra: 882/745,
  49912. bottom: 25/907
  49913. }
  49914. },
  49915. },
  49916. [
  49917. {
  49918. name: "Normal",
  49919. height: math.unit(5 + 4/12, "feet"),
  49920. default: true
  49921. },
  49922. ]
  49923. ))
  49924. characterMakers.push(() => makeCharacter(
  49925. { name: "Roselle St. Papier", species: ["ringtail"], tags: ["anthro"] },
  49926. {
  49927. front: {
  49928. height: math.unit(6, "feet"),
  49929. name: "Front",
  49930. image: {
  49931. source: "./media/characters/roselle-st-papier/front.svg",
  49932. extra: 1430/1280,
  49933. bottom: 37/1467
  49934. }
  49935. },
  49936. back: {
  49937. height: math.unit(6, "feet"),
  49938. name: "Back",
  49939. image: {
  49940. source: "./media/characters/roselle-st-papier/back.svg",
  49941. extra: 1491/1296,
  49942. bottom: 23/1514
  49943. }
  49944. },
  49945. ear: {
  49946. height: math.unit(1.26, "feet"),
  49947. name: "Ear",
  49948. image: {
  49949. source: "./media/characters/roselle-st-papier/ear.svg"
  49950. }
  49951. },
  49952. },
  49953. [
  49954. {
  49955. name: "Normal",
  49956. height: math.unit(150, "feet"),
  49957. default: true
  49958. },
  49959. ]
  49960. ))
  49961. characterMakers.push(() => makeCharacter(
  49962. { name: "Valargent", species: ["fox"], tags: ["anthro"] },
  49963. {
  49964. front: {
  49965. height: math.unit(1, "inches"),
  49966. name: "Front",
  49967. image: {
  49968. source: "./media/characters/valargent/front.svg",
  49969. extra: 1825/1694,
  49970. bottom: 62/1887
  49971. }
  49972. },
  49973. back: {
  49974. height: math.unit(1, "inches"),
  49975. name: "Back",
  49976. image: {
  49977. source: "./media/characters/valargent/back.svg",
  49978. extra: 1775/1682,
  49979. bottom: 88/1863
  49980. }
  49981. },
  49982. },
  49983. [
  49984. {
  49985. name: "Micro",
  49986. height: math.unit(1, "inch"),
  49987. default: true
  49988. },
  49989. ]
  49990. ))
  49991. characterMakers.push(() => makeCharacter(
  49992. { name: "Zarina", species: ["hisuian-zoroark"], tags: ["anthro"] },
  49993. {
  49994. front: {
  49995. height: math.unit(3.4, "meters"),
  49996. name: "Front",
  49997. image: {
  49998. source: "./media/characters/zarina/front.svg",
  49999. extra: 1733/1425,
  50000. bottom: 93/1826
  50001. }
  50002. },
  50003. squatting: {
  50004. height: math.unit(2.14, "meters"),
  50005. name: "Squatting",
  50006. image: {
  50007. source: "./media/characters/zarina/squatting.svg",
  50008. extra: 1073/788,
  50009. bottom: 63/1136
  50010. }
  50011. },
  50012. back: {
  50013. height: math.unit(2.14, "meters"),
  50014. name: "Back",
  50015. image: {
  50016. source: "./media/characters/zarina/back.svg",
  50017. extra: 1128/885,
  50018. bottom: 0/1128
  50019. }
  50020. },
  50021. },
  50022. [
  50023. {
  50024. name: "Normal",
  50025. height: math.unit(3.4, "meters"),
  50026. default: true
  50027. },
  50028. {
  50029. name: "Big",
  50030. height: math.unit(5, "meters")
  50031. },
  50032. {
  50033. name: "Macro",
  50034. height: math.unit(110, "meters")
  50035. },
  50036. ]
  50037. ))
  50038. characterMakers.push(() => makeCharacter(
  50039. { name: "VentusAstroFox", species: ["fox"], tags: ["anthro"] },
  50040. {
  50041. front: {
  50042. height: math.unit(7, "feet"),
  50043. name: "Front",
  50044. image: {
  50045. source: "./media/characters/ventus-astro-fox/front.svg",
  50046. extra: 1792/1623,
  50047. bottom: 28/1820
  50048. }
  50049. },
  50050. back: {
  50051. height: math.unit(7, "feet"),
  50052. name: "Back",
  50053. image: {
  50054. source: "./media/characters/ventus-astro-fox/back.svg",
  50055. extra: 1789/1620,
  50056. bottom: 31/1820
  50057. }
  50058. },
  50059. outfit: {
  50060. height: math.unit(7, "feet"),
  50061. name: "Outfit",
  50062. image: {
  50063. source: "./media/characters/ventus-astro-fox/outfit.svg",
  50064. extra: 1054/925,
  50065. bottom: 15/1069
  50066. }
  50067. },
  50068. head: {
  50069. height: math.unit(1.12, "feet"),
  50070. name: "Head",
  50071. image: {
  50072. source: "./media/characters/ventus-astro-fox/head.svg",
  50073. extra: 866/504,
  50074. bottom: 0/866
  50075. }
  50076. },
  50077. hand: {
  50078. height: math.unit(1, "feet"),
  50079. name: "Hand",
  50080. image: {
  50081. source: "./media/characters/ventus-astro-fox/hand.svg"
  50082. }
  50083. },
  50084. paw: {
  50085. height: math.unit(1.5, "feet"),
  50086. name: "Paw",
  50087. image: {
  50088. source: "./media/characters/ventus-astro-fox/paw.svg"
  50089. }
  50090. },
  50091. },
  50092. [
  50093. {
  50094. name: "Normal",
  50095. height: math.unit(7, "feet"),
  50096. default: true
  50097. },
  50098. {
  50099. name: "Macro",
  50100. height: math.unit(200, "feet")
  50101. },
  50102. {
  50103. name: "Cosmic",
  50104. height: math.unit(3, "universes")
  50105. },
  50106. ]
  50107. ))
  50108. characterMakers.push(() => makeCharacter(
  50109. { name: "CORE-T", species: ["cybeast"], tags: ["anthro"] },
  50110. {
  50111. front: {
  50112. height: math.unit(3, "meters"),
  50113. weight: math.unit(7000, "lb"),
  50114. name: "Front",
  50115. image: {
  50116. source: "./media/characters/core-t/front.svg",
  50117. extra: 5729/4941,
  50118. bottom: 1129/6858
  50119. }
  50120. },
  50121. },
  50122. [
  50123. {
  50124. name: "Big",
  50125. height: math.unit(3, "meters"),
  50126. default: true
  50127. },
  50128. ]
  50129. ))
  50130. characterMakers.push(() => makeCharacter(
  50131. { name: "Cadbunny", species: ["cinderace"], tags: ["anthro"] },
  50132. {
  50133. normal: {
  50134. height: math.unit(6 + 6/12, "feet"),
  50135. weight: math.unit(275, "lb"),
  50136. name: "Front",
  50137. image: {
  50138. source: "./media/characters/cadbunny/normal.svg",
  50139. extra: 1129/947,
  50140. bottom: 93/1222
  50141. },
  50142. default: true,
  50143. form: "normal"
  50144. },
  50145. gigantamax: {
  50146. height: math.unit(26, "feet"),
  50147. weight: math.unit(16000, "lb"),
  50148. name: "Front",
  50149. image: {
  50150. source: "./media/characters/cadbunny/gigantamax.svg",
  50151. extra: 1133/944,
  50152. bottom: 90/1223
  50153. },
  50154. default: true,
  50155. form: "gigantamax"
  50156. },
  50157. },
  50158. [
  50159. {
  50160. name: "Normal",
  50161. height: math.unit(6 + 6/12, "feet"),
  50162. default: true,
  50163. form: "normal"
  50164. },
  50165. {
  50166. name: "Small",
  50167. height: math.unit(26, "feet"),
  50168. default: true,
  50169. form: "gigantamax"
  50170. },
  50171. {
  50172. name: "Large",
  50173. height: math.unit(78, "feet"),
  50174. form: "gigantamax"
  50175. },
  50176. ],
  50177. {
  50178. "normal": {
  50179. name: "Normal",
  50180. default: true
  50181. },
  50182. "gigantamax": {
  50183. name: "Gigantamax"
  50184. }
  50185. }
  50186. ))
  50187. characterMakers.push(() => makeCharacter(
  50188. { name: "Blitz Dunkelheit", species: ["wolf"], tags: ["anthro", "feral"] },
  50189. {
  50190. anthroFront: {
  50191. height: math.unit(8, "feet"),
  50192. weight: math.unit(300, "lb"),
  50193. name: "Front",
  50194. image: {
  50195. source: "./media/characters/blitz-dunkelheit/anthro-front.svg",
  50196. extra: 1272/1176,
  50197. bottom: 53/1325
  50198. },
  50199. form: "anthro",
  50200. default: true
  50201. },
  50202. feralSide: {
  50203. height: math.unit(4, "feet"),
  50204. weight: math.unit(250, "lb"),
  50205. name: "Side",
  50206. image: {
  50207. source: "./media/characters/blitz-dunkelheit/feral-side.svg",
  50208. extra: 731/621,
  50209. bottom: 0/731
  50210. },
  50211. form: "feral",
  50212. default: true
  50213. },
  50214. },
  50215. [
  50216. {
  50217. name: "Regular",
  50218. height: math.unit(8, "feet"),
  50219. form: "anthro"
  50220. },
  50221. {
  50222. name: "Macro",
  50223. height: math.unit(250, "feet"),
  50224. form: "anthro",
  50225. default: true
  50226. },
  50227. {
  50228. name: "Regular",
  50229. height: math.unit(4, "feet"),
  50230. form: "feral"
  50231. },
  50232. {
  50233. name: "Macro",
  50234. height: math.unit(125, "feet"),
  50235. form: "feral",
  50236. default: true
  50237. },
  50238. ],
  50239. {
  50240. "anthro": {
  50241. name: "Anthro",
  50242. default: true
  50243. },
  50244. "feral": {
  50245. name: "Feral",
  50246. },
  50247. }
  50248. ))
  50249. characterMakers.push(() => makeCharacter(
  50250. { name: "Maple (Javira Dragon)", species: ["javira-dragon"], tags: ["feral"] },
  50251. {
  50252. front: {
  50253. height: math.unit(11 + 10/12, "feet"),
  50254. weight: math.unit(1587, "kg"),
  50255. name: "Front",
  50256. image: {
  50257. source: "./media/characters/maple-javira-dragon/front.svg",
  50258. extra: 1136/744,
  50259. bottom: 73/1209
  50260. }
  50261. },
  50262. side: {
  50263. height: math.unit(11 + 10/12, "feet"),
  50264. weight: math.unit(1587, "kg"),
  50265. name: "Side",
  50266. image: {
  50267. source: "./media/characters/maple-javira-dragon/side.svg",
  50268. extra: 712/505,
  50269. bottom: 17/729
  50270. }
  50271. },
  50272. head: {
  50273. height: math.unit(8.05, "feet"),
  50274. name: "Head",
  50275. image: {
  50276. source: "./media/characters/maple-javira-dragon/head.svg",
  50277. extra: 1420/1344,
  50278. bottom: 0/1420
  50279. }
  50280. },
  50281. },
  50282. [
  50283. {
  50284. name: "Normal",
  50285. height: math.unit(11 + 10/12, "feet"),
  50286. default: true
  50287. },
  50288. ]
  50289. ))
  50290. characterMakers.push(() => makeCharacter(
  50291. { name: "Sonia Wyverntail", species: ["kobold"], tags: ["anthro"] },
  50292. {
  50293. front: {
  50294. height: math.unit(117, "cm"),
  50295. weight: math.unit(50, "kg"),
  50296. name: "Front",
  50297. image: {
  50298. source: "./media/characters/sonia-wyverntail/front.svg",
  50299. extra: 708/592,
  50300. bottom: 25/733
  50301. }
  50302. },
  50303. },
  50304. [
  50305. {
  50306. name: "Normal",
  50307. height: math.unit(117, "cm"),
  50308. default: true
  50309. },
  50310. ]
  50311. ))
  50312. characterMakers.push(() => makeCharacter(
  50313. { name: "Micah", species: ["moth"], tags: ["anthro"] },
  50314. {
  50315. front: {
  50316. height: math.unit(6 + 5/12, "feet"),
  50317. name: "Front",
  50318. image: {
  50319. source: "./media/characters/micah/front.svg",
  50320. extra: 1758/1546,
  50321. bottom: 214/1972
  50322. }
  50323. },
  50324. },
  50325. [
  50326. {
  50327. name: "Normal",
  50328. height: math.unit(6 + 5/12, "feet"),
  50329. default: true
  50330. },
  50331. ]
  50332. ))
  50333. characterMakers.push(() => makeCharacter(
  50334. { name: "Zarya", species: ["raccoon"], tags: ["anthro"] },
  50335. {
  50336. front: {
  50337. height: math.unit(5 + 10/12, "feet"),
  50338. weight: math.unit(220, "lb"),
  50339. name: "Front",
  50340. image: {
  50341. source: "./media/characters/zarya/front.svg",
  50342. extra: 593/572,
  50343. bottom: 50/643
  50344. }
  50345. },
  50346. back: {
  50347. height: math.unit(5 + 10/12, "feet"),
  50348. weight: math.unit(220, "lb"),
  50349. name: "Back",
  50350. image: {
  50351. source: "./media/characters/zarya/back.svg",
  50352. extra: 603/582,
  50353. bottom: 38/641
  50354. }
  50355. },
  50356. },
  50357. [
  50358. {
  50359. name: "Normal",
  50360. height: math.unit(5 + 10/12, "feet"),
  50361. default: true
  50362. },
  50363. ]
  50364. ))
  50365. characterMakers.push(() => makeCharacter(
  50366. { name: "Sven Hatisson", species: ["wolf"], tags: ["anthro"] },
  50367. {
  50368. front: {
  50369. height: math.unit(7.5, "feet"),
  50370. name: "Front",
  50371. image: {
  50372. source: "./media/characters/sven-hatisson/front.svg",
  50373. extra: 917/857,
  50374. bottom: 42/959
  50375. }
  50376. },
  50377. back: {
  50378. height: math.unit(7.5, "feet"),
  50379. name: "Back",
  50380. image: {
  50381. source: "./media/characters/sven-hatisson/back.svg",
  50382. extra: 903/856,
  50383. bottom: 15/918
  50384. }
  50385. },
  50386. },
  50387. [
  50388. {
  50389. name: "Base Height",
  50390. height: math.unit(7.5, "feet")
  50391. },
  50392. {
  50393. name: "Usual Height",
  50394. height: math.unit(13.5, "feet"),
  50395. default: true
  50396. },
  50397. {
  50398. name: "Smaller Macro",
  50399. height: math.unit(85, "feet")
  50400. },
  50401. {
  50402. name: "Moderate Macro",
  50403. height: math.unit(320, "feet")
  50404. },
  50405. {
  50406. name: "Large Macro",
  50407. height: math.unit(1000, "feet")
  50408. },
  50409. {
  50410. name: "Largest Size",
  50411. height: math.unit(2, "miles")
  50412. },
  50413. ]
  50414. ))
  50415. characterMakers.push(() => makeCharacter(
  50416. { name: "Terra", species: ["dragon", "otter"], tags: ["feral"] },
  50417. {
  50418. side: {
  50419. height: math.unit(1.8, "meters"),
  50420. weight: math.unit(275, "kg"),
  50421. name: "Side",
  50422. image: {
  50423. source: "./media/characters/terra/side.svg",
  50424. extra: 1273/1147,
  50425. bottom: 0/1273
  50426. }
  50427. },
  50428. },
  50429. [
  50430. {
  50431. name: "Normal",
  50432. height: math.unit(16.2, "meters"),
  50433. default: true
  50434. },
  50435. ]
  50436. ))
  50437. characterMakers.push(() => makeCharacter(
  50438. { name: "Rae", species: ["borzoi", "werewolf"], tags: ["anthro"] },
  50439. {
  50440. borzoiFront: {
  50441. height: math.unit(6 + 9/12, "feet"),
  50442. name: "Front",
  50443. image: {
  50444. source: "./media/characters/rae/borzoi-front.svg",
  50445. extra: 1161/1098,
  50446. bottom: 31/1192
  50447. },
  50448. form: "borzoi",
  50449. default: true
  50450. },
  50451. werewolfFront: {
  50452. height: math.unit(8 + 7/12, "feet"),
  50453. name: "Front",
  50454. image: {
  50455. source: "./media/characters/rae/werewolf-front.svg",
  50456. extra: 1411/1334,
  50457. bottom: 127/1538
  50458. },
  50459. form: "werewolf",
  50460. default: true
  50461. },
  50462. },
  50463. [
  50464. {
  50465. name: "Normal",
  50466. height: math.unit(6 + 9/12, "feet"),
  50467. default: true,
  50468. form: "borzoi"
  50469. },
  50470. {
  50471. name: "Normal",
  50472. height: math.unit(8 + 7/12, "feet"),
  50473. default: true,
  50474. form: "werewolf"
  50475. },
  50476. ],
  50477. {
  50478. "borzoi": {
  50479. name: "Borzoi",
  50480. default: true
  50481. },
  50482. "werewolf": {
  50483. name: "Werewolf",
  50484. },
  50485. }
  50486. ))
  50487. characterMakers.push(() => makeCharacter(
  50488. { name: "Kit", species: ["kitsune"], tags: ["anthro"] },
  50489. {
  50490. front: {
  50491. height: math.unit(8 + 7/12, "feet"),
  50492. weight: math.unit(482, "lb"),
  50493. name: "Front",
  50494. image: {
  50495. source: "./media/characters/kit/front.svg",
  50496. extra: 1247/1103,
  50497. bottom: 41/1288
  50498. }
  50499. },
  50500. back: {
  50501. height: math.unit(8 + 7/12, "feet"),
  50502. weight: math.unit(482, "lb"),
  50503. name: "Back",
  50504. image: {
  50505. source: "./media/characters/kit/back.svg",
  50506. extra: 1252/1123,
  50507. bottom: 21/1273
  50508. }
  50509. },
  50510. paw: {
  50511. height: math.unit(1.46, "feet"),
  50512. name: "Paw",
  50513. image: {
  50514. source: "./media/characters/kit/paw.svg"
  50515. }
  50516. },
  50517. },
  50518. [
  50519. {
  50520. name: "Normal",
  50521. height: math.unit(2.61, "meters"),
  50522. default: true
  50523. },
  50524. {
  50525. name: "\"Tall\"",
  50526. height: math.unit(8.21, "meters")
  50527. },
  50528. {
  50529. name: "Tall",
  50530. height: math.unit(19.6, "meters")
  50531. },
  50532. {
  50533. name: "Very Tall",
  50534. height: math.unit(57.91, "meters")
  50535. },
  50536. {
  50537. name: "Semi-Macro",
  50538. height: math.unit(138.64, "meters")
  50539. },
  50540. {
  50541. name: "Macro",
  50542. height: math.unit(831.99, "meters")
  50543. },
  50544. {
  50545. name: "EX-Macro",
  50546. height: math.unit(96451121, "meters")
  50547. },
  50548. {
  50549. name: "S1-Omnipotent",
  50550. height: math.unit(4.42074e+9, "meters")
  50551. },
  50552. {
  50553. name: "S2-Omnipotent",
  50554. height: math.unit(9.42074e+17, "meters")
  50555. },
  50556. {
  50557. name: "Omnipotent",
  50558. height: math.unit(4.23112e+24, "meters")
  50559. },
  50560. {
  50561. name: "Hypergod",
  50562. height: math.unit(5.05176e+27, "meters")
  50563. },
  50564. {
  50565. name: "Hypergod-EX",
  50566. height: math.unit(9.45532e+49, "meters")
  50567. },
  50568. {
  50569. name: "Hypergod-SP",
  50570. height: math.unit(9.45532e+195, "meters")
  50571. },
  50572. ]
  50573. ))
  50574. characterMakers.push(() => makeCharacter(
  50575. { name: "Celeste", species: ["raptor", "alien"], tags: ["feral"] },
  50576. {
  50577. side: {
  50578. height: math.unit(0.6, "meters"),
  50579. weight: math.unit(24, "kg"),
  50580. name: "Side",
  50581. image: {
  50582. source: "./media/characters/celeste/side.svg",
  50583. extra: 810/517,
  50584. bottom: 53/863
  50585. }
  50586. },
  50587. },
  50588. [
  50589. {
  50590. name: "Velociraptor",
  50591. height: math.unit(0.6, "meters"),
  50592. default: true
  50593. },
  50594. {
  50595. name: "Utahraptor",
  50596. height: math.unit(1.8, "meters")
  50597. },
  50598. {
  50599. name: "Gallimimus",
  50600. height: math.unit(4.0, "meters")
  50601. },
  50602. {
  50603. name: "Large",
  50604. height: math.unit(20, "meters")
  50605. },
  50606. {
  50607. name: "Planetary",
  50608. height: math.unit(50, "megameters")
  50609. },
  50610. {
  50611. name: "Stellar",
  50612. height: math.unit(1.5, "gigameters")
  50613. },
  50614. {
  50615. name: "Galactic",
  50616. height: math.unit(100, "exameters")
  50617. },
  50618. ]
  50619. ))
  50620. characterMakers.push(() => makeCharacter(
  50621. { name: "Glacia", species: ["koopew"], tags: ["anthro"] },
  50622. {
  50623. front: {
  50624. height: math.unit(6, "feet"),
  50625. weight: math.unit(210, "lb"),
  50626. name: "Front",
  50627. image: {
  50628. source: "./media/characters/glacia/front.svg",
  50629. extra: 958/901,
  50630. bottom: 45/1003
  50631. }
  50632. },
  50633. },
  50634. [
  50635. {
  50636. name: "Macro",
  50637. height: math.unit(1000, "meters"),
  50638. default: true
  50639. },
  50640. ]
  50641. ))
  50642. characterMakers.push(() => makeCharacter(
  50643. { name: "Giri", species: ["giraffe"], tags: ["anthro"] },
  50644. {
  50645. front: {
  50646. height: math.unit(4, "meters"),
  50647. name: "Front",
  50648. image: {
  50649. source: "./media/characters/giri/front.svg",
  50650. extra: 966/894,
  50651. bottom: 21/987
  50652. }
  50653. },
  50654. },
  50655. [
  50656. {
  50657. name: "Normal",
  50658. height: math.unit(4, "meters"),
  50659. default: true
  50660. },
  50661. ]
  50662. ))
  50663. characterMakers.push(() => makeCharacter(
  50664. { name: "Tin", species: ["nevrean"], tags: ["anthro"] },
  50665. {
  50666. back: {
  50667. height: math.unit(4, "feet"),
  50668. weight: math.unit(37, "lb"),
  50669. name: "Back",
  50670. image: {
  50671. source: "./media/characters/tin/back.svg",
  50672. extra: 845/780,
  50673. bottom: 28/873
  50674. }
  50675. },
  50676. },
  50677. [
  50678. {
  50679. name: "Normal",
  50680. height: math.unit(4, "feet"),
  50681. default: true
  50682. },
  50683. ]
  50684. ))
  50685. characterMakers.push(() => makeCharacter(
  50686. { name: "Cadenza Vivace", species: ["titanoboa"], tags: ["feral"] },
  50687. {
  50688. front: {
  50689. height: math.unit(25, "feet"),
  50690. name: "Front",
  50691. image: {
  50692. source: "./media/characters/cadenza-vivace/front.svg",
  50693. extra: 1842/1578,
  50694. bottom: 30/1872
  50695. }
  50696. },
  50697. },
  50698. [
  50699. {
  50700. name: "Macro",
  50701. height: math.unit(25, "feet"),
  50702. default: true
  50703. },
  50704. ]
  50705. ))
  50706. characterMakers.push(() => makeCharacter(
  50707. { name: "Zain", species: ["kangaroo"], tags: ["anthro"] },
  50708. {
  50709. front: {
  50710. height: math.unit(10, "feet"),
  50711. weight: math.unit(625, "kg"),
  50712. name: "Front",
  50713. image: {
  50714. source: "./media/characters/zain/front.svg",
  50715. extra: 1682/1498,
  50716. bottom: 223/1905
  50717. }
  50718. },
  50719. back: {
  50720. height: math.unit(10, "feet"),
  50721. weight: math.unit(625, "kg"),
  50722. name: "Back",
  50723. image: {
  50724. source: "./media/characters/zain/back.svg",
  50725. extra: 1814/1657,
  50726. bottom: 152/1966
  50727. }
  50728. },
  50729. head: {
  50730. height: math.unit(10, "feet"),
  50731. weight: math.unit(625, "kg"),
  50732. name: "Head",
  50733. image: {
  50734. source: "./media/characters/zain/head.svg",
  50735. extra: 1059/762,
  50736. bottom: 0/1059
  50737. }
  50738. },
  50739. },
  50740. [
  50741. {
  50742. name: "Normal",
  50743. height: math.unit(10, "feet"),
  50744. default: true
  50745. },
  50746. ]
  50747. ))
  50748. characterMakers.push(() => makeCharacter(
  50749. { name: "Ruchex", species: ["raichu"], tags: ["anthro"] },
  50750. {
  50751. front: {
  50752. height: math.unit(6 + 5/12, "feet"),
  50753. weight: math.unit(750, "lb"),
  50754. name: "Front",
  50755. image: {
  50756. source: "./media/characters/ruchex/front.svg",
  50757. extra: 877/820,
  50758. bottom: 17/894
  50759. },
  50760. extraAttributes: {
  50761. "width": {
  50762. name: "Width",
  50763. power: 1,
  50764. type: "length",
  50765. base: math.unit(4.757, "feet")
  50766. },
  50767. }
  50768. },
  50769. },
  50770. [
  50771. {
  50772. name: "Normal",
  50773. height: math.unit(6 + 5/12, "feet"),
  50774. default: true
  50775. },
  50776. ]
  50777. ))
  50778. characterMakers.push(() => makeCharacter(
  50779. { name: "Buster", species: ["sergal", "goo"], tags: ["anthro"] },
  50780. {
  50781. dressedFront: {
  50782. height: math.unit(191, "cm"),
  50783. weight: math.unit(80, "kg"),
  50784. name: "Front",
  50785. image: {
  50786. source: "./media/characters/buster/dressed-front.svg",
  50787. extra: 1022/973,
  50788. bottom: 69/1091
  50789. }
  50790. },
  50791. dressedBack: {
  50792. height: math.unit(191, "cm"),
  50793. weight: math.unit(80, "kg"),
  50794. name: "Back",
  50795. image: {
  50796. source: "./media/characters/buster/dressed-back.svg",
  50797. extra: 1018/970,
  50798. bottom: 55/1073
  50799. }
  50800. },
  50801. nudeFront: {
  50802. height: math.unit(191, "cm"),
  50803. weight: math.unit(80, "kg"),
  50804. name: "Front (Nude)",
  50805. image: {
  50806. source: "./media/characters/buster/nude-front.svg",
  50807. extra: 1022/973,
  50808. bottom: 69/1091
  50809. }
  50810. },
  50811. nudeBack: {
  50812. height: math.unit(191, "cm"),
  50813. weight: math.unit(80, "kg"),
  50814. name: "Back (Nude)",
  50815. image: {
  50816. source: "./media/characters/buster/nude-back.svg",
  50817. extra: 1018/970,
  50818. bottom: 55/1073
  50819. }
  50820. },
  50821. dick: {
  50822. height: math.unit(2.59, "feet"),
  50823. name: "Dick",
  50824. image: {
  50825. source: "./media/characters/buster/dick.svg"
  50826. }
  50827. },
  50828. ass: {
  50829. height: math.unit(1.2, "feet"),
  50830. name: "Ass",
  50831. image: {
  50832. source: "./media/characters/buster/ass.svg"
  50833. }
  50834. },
  50835. },
  50836. [
  50837. {
  50838. name: "Normal",
  50839. height: math.unit(191, "cm"),
  50840. default: true
  50841. },
  50842. ]
  50843. ))
  50844. characterMakers.push(() => makeCharacter(
  50845. { name: "Sonya", species: ["suicune"], tags: ["feral"] },
  50846. {
  50847. side: {
  50848. height: math.unit(8.1, "feet"),
  50849. weight: math.unit(3500, "lb"),
  50850. name: "Side",
  50851. image: {
  50852. source: "./media/characters/sonya/side.svg",
  50853. extra: 1730/1317,
  50854. bottom: 86/1816
  50855. }
  50856. },
  50857. },
  50858. [
  50859. {
  50860. name: "Normal",
  50861. height: math.unit(8.1, "feet"),
  50862. default: true
  50863. },
  50864. ]
  50865. ))
  50866. characterMakers.push(() => makeCharacter(
  50867. { name: "Cadence Andrysiak", species: ["civet"], tags: ["anthro"] },
  50868. {
  50869. front: {
  50870. height: math.unit(6, "feet"),
  50871. weight: math.unit(150, "lb"),
  50872. name: "Front",
  50873. image: {
  50874. source: "./media/characters/cadence-andrysiak/front.svg",
  50875. extra: 1164/1121,
  50876. bottom: 60/1224
  50877. }
  50878. },
  50879. back: {
  50880. height: math.unit(6, "feet"),
  50881. weight: math.unit(150, "lb"),
  50882. name: "Back",
  50883. image: {
  50884. source: "./media/characters/cadence-andrysiak/back.svg",
  50885. extra: 1200/1165,
  50886. bottom: 9/1209
  50887. }
  50888. },
  50889. dressed: {
  50890. height: math.unit(6, "feet"),
  50891. weight: math.unit(150, "lb"),
  50892. name: "Dressed",
  50893. image: {
  50894. source: "./media/characters/cadence-andrysiak/dressed.svg",
  50895. extra: 1164/1121,
  50896. bottom: 60/1224
  50897. }
  50898. },
  50899. },
  50900. [
  50901. {
  50902. name: "Micro",
  50903. height: math.unit(1, "mm")
  50904. },
  50905. {
  50906. name: "Normal",
  50907. height: math.unit(6, "feet"),
  50908. default: true
  50909. },
  50910. ]
  50911. ))
  50912. characterMakers.push(() => makeCharacter(
  50913. { name: "PENNY", species: ["lynx" ,"computer-virus"], tags: ["anthro"] },
  50914. {
  50915. front: {
  50916. height: math.unit(60, "inches"),
  50917. weight: math.unit(16, "lb"),
  50918. preyCapacity: math.unit(80, "liters"),
  50919. name: "Front",
  50920. image: {
  50921. source: "./media/characters/penny-lynx/front.svg",
  50922. extra: 1959/1769,
  50923. bottom: 49/2008
  50924. }
  50925. },
  50926. },
  50927. [
  50928. {
  50929. name: "Nokia",
  50930. height: math.unit(2, "inches")
  50931. },
  50932. {
  50933. name: "Desktop",
  50934. height: math.unit(24, "inches")
  50935. },
  50936. {
  50937. name: "TV",
  50938. height: math.unit(60, "inches")
  50939. },
  50940. {
  50941. name: "Jumbotron",
  50942. height: math.unit(12, "feet")
  50943. },
  50944. {
  50945. name: "Billboard",
  50946. height: math.unit(48, "feet"),
  50947. default: true
  50948. },
  50949. {
  50950. name: "IMAX",
  50951. height: math.unit(96, "feet")
  50952. },
  50953. {
  50954. name: "SINGULARITY",
  50955. height: math.unit(864938, "miles")
  50956. },
  50957. ]
  50958. ))
  50959. //characters
  50960. function makeCharacters() {
  50961. const results = [];
  50962. characterMakers.forEach(character => {
  50963. results.push(character());
  50964. });
  50965. return results;
  50966. }